diff -Nru gnupg2-2.2.40/agent/trustlist.c gnupg2-2.2.41/agent/trustlist.c --- gnupg2-2.2.40/agent/trustlist.c 2022-07-27 14:46:49.000000000 +0000 +++ gnupg2-2.2.41/agent/trustlist.c 2022-11-25 12:56:27.000000000 +0000 @@ -646,7 +646,7 @@ if (!fname) return gpg_error_from_syserror (); - if ((ec = access (fname, W_OK)) && ec != GPG_ERR_ENOENT) + if ((ec = gnupg_access (fname, W_OK)) && ec != GPG_ERR_ENOENT) { xfree (fname); return gpg_error (GPG_ERR_EPERM); diff -Nru gnupg2-2.2.40/build-aux/speedo.mk gnupg2-2.2.41/build-aux/speedo.mk --- gnupg2-2.2.40/build-aux/speedo.mk 2022-10-10 10:31:49.000000000 +0000 +++ gnupg2-2.2.41/build-aux/speedo.mk 2022-12-07 15:07:35.000000000 +0000 @@ -80,6 +80,9 @@ # AUTHENTICODE_KEY=/home/foo/.gnupg/my-authenticode-key.p12 # AUTHENTICODE_CERTS=/home/foo/.gnupg/my-authenticode-certs.pem # +# If a tarball has not been published while building a release it +# may be stored in a directory specified by: +# OVERRIDE_TARBALLS=/home/foo/override-tarballs #--8<---------------cut here---------------end--------------->8--- @@ -132,7 +135,10 @@ @echo '' @echo 'Afterwards w32-release will build also a wixlib.' - +# NB: we can't use +$(MAKE) here because we would need to define the +# dependencies of our packages. This does not make much sense given that +# we have a clear order in how they are build and concurrent builds +# would anyway clutter up the logs. SPEEDOMAKE := $(MAKE) -f $(SPEEDO_MK) UPD_SWDB=1 native: check-tools @@ -223,7 +229,7 @@ # external packages. TARBALLS=$(shell pwd)/../tarballs -# Number of parallel make jobs +# Number of parallel make jobs in each package MAKE_J=3 # Name to use for the w32 installer and sources @@ -246,6 +252,7 @@ $(eval $(call READ_AUTOGEN_template,OSSLSIGNCODE)) $(eval $(call READ_AUTOGEN_template,OSSLPKCS11ENGINE)) $(eval $(call READ_AUTOGEN_template,SCUTEMODULE)) +$(eval $(call READ_AUTOGEN_template,OVERRIDE_TARBALLS)) # All files given in AUTHENTICODE_FILES are signed before # they are put into the installer. @@ -489,7 +496,7 @@ gitrep = ${HOME}/s # The tarball directories -pkgrep = ftp://ftp.gnupg.org/gcrypt +pkgrep = https://gnupg.org/ftp/gcrypt pkg10rep = ftp://ftp.g10code.com/g10code pkg2rep = $(TARBALLS) @@ -873,17 +880,18 @@ # The playground area is our scratch area, where we unpack, build and # install the packages. $(stampdir)/stamp-directories: - $(MKDIR) $(root) || true - $(MKDIR) $(stampdir) || true - $(MKDIR) $(sdir) || true - $(MKDIR) $(bdir) || true - $(MKDIR) $(idir) || true + $(MKDIR) -p $(root) + $(MKDIR) -p $(stampdir) + $(MKDIR) -p $(sdir) + $(MKDIR) -p $(bdir) + $(MKDIR) -p $(idir) ifeq ($(TARGETOS),w32) - $(MKDIR) $(bdir6) || true - $(MKDIR) $(idir6) || true + $(MKDIR) -p $(bdir6) + $(MKDIR) -p $(idir6) endif touch $(stampdir)/stamp-directories + # Frob the name $1 by converting all '-' and '+' characters to '_'. define FROB_macro $(subst +,_,$(subst -,_,$(1))) @@ -977,7 +985,7 @@ # define SPKG_template -$(stampdir)/stamp-$(1)-00-unpack: $(stampdir)/stamp-directories +$(stampdir)/stamp-$(1)-00-unpack: @echo "speedo: /*" @echo "speedo: * $(1)" @echo "speedo: */" @@ -999,6 +1007,13 @@ cd "$$$${pkg}"; \ AUTOGEN_SH_SILENT=1 ./autogen.sh; \ elif [ -n "$$$${tar}" ]; then \ + tar2="$(OVERRIDE_TARBALLS)/$$$$(basename $$$${tar})";\ + if [ -f "$$$${tar2}" ]; then \ + tar="$$$$tar2"; \ + echo "speedo: /*"; \ + echo "speedo: * Note: using an override"; \ + echo "speedo: */"; \ + fi; \ echo "speedo: unpacking $(1) from $$$${tar}"; \ case "$$$${tar}" in \ *.gz) pretar=zcat ;; \ @@ -1245,7 +1260,7 @@ # Insert the template for each source package. $(foreach spkg, $(speedo_spkgs), $(eval $(call SPKG_template,$(spkg)))) -$(stampdir)/stamp-final: $(stampdir)/stamp-directories clean-pkg-versions +$(stampdir)/stamp-final: clean-pkg-versions ifeq ($(TARGETOS),w32) $(stampdir)/stamp-final: $(addprefix $(stampdir)/stamp-w64-final-,$(speedo_w64_build_list)) endif @@ -1524,9 +1539,9 @@ # -# Check availibility of standard tools +# Check availibility of standard tools and prepare everything. # -check-tools: +check-tools: $(stampdir)/stamp-directories # diff -Nru gnupg2-2.2.40/ChangeLog gnupg2-2.2.41/ChangeLog --- gnupg2-2.2.40/ChangeLog 2022-10-10 11:58:05.000000000 +0000 +++ gnupg2-2.2.41/ChangeLog 2022-12-09 08:48:42.000000000 +0000 @@ -1,3 +1,419 @@ +2022-12-09 Werner Koch + + Release 2.2.41. + + commit 75ad0ea6dcad2d0e7ffff06a91fc3f519b448404 + + +2022-12-08 Werner Koch + + scd:p15: Skip deleted records. + + commit e778c9ce8926c05f35fcc38cc7d863dc0d0242f3 + * scd/app-p15.c (select_and_read_record): Special case deleted + records. Support 3 byte TLVs. + (read_ef_prkdf): Skip deleted records. + (read_ef_pukdf): Ditto. + (read_ef_cdf): Ditto. + (read_ef_aodf): Ditto. + +2022-12-06 Werner Koch + + wkd: Do not send/install/mirror expired user ids. + + commit 115cc4d37c184e90100407b57d170259adf18b6c + * tools/gpg-wks.h (struct uidinfo_list_s): Add fields expired and + revoked. + * tools/wks-util.c (append_to_uidinfo_list): Add args expired and + revoked. + (set_expired_revoked): New. + (wks_list_key): Set expired and revoked. + (wks_cmd_install_key): Skip expired uids. + * tools/gpg-wks-client.c (command_check): Print flags. + (command_send): Ignore expired keys. + (mirror_one_key): Ditto. + + * g10/export.c (do_export_stream): Silence warning. + + gpgsm: Silence the "non-critical certificate policy not allowed". + + commit d9271d594b5b81cc4242de141ef99767390e83a5 + * sm/certchain.c (check_cert_policy): Print non-critical policy + warning only in verbose mode. + + (cherry picked from commit 4f1b9e3abb337470e5e4809b3a7f2df33f5a63a4) + +2022-11-30 Werner Koch + + wkd: New option --add-revocs and some fixes. + + commit 2f4492f3be6a6b9d553da07705a1b5cd48aee80b + * tools/gpg-wks.h (opt): Add add_revocs. + * tools/wks-util.c (wks_get_key): Add arg 'binary'. + (wks_armor_key): New. + (wks_find_add_revocs): New. + (wks_cmd_install_key): Get key in binary mode and add revocations if + enabled. + * tools/gpg-wks-client.c (oAddRevocs): New. + (opts): Add --add-revocs. + (parse_arguments): Set option, + (command_send): Get key in binary mode, add revocations if enabled, + and explictly armor key. Remove kludge to skip the Content-type line + in no_encrypt mode. + + (mirror_one_keys_userid): Always filter the key to get rid of the + armor as received from dirmngr. Add revocations from the local + keyring. + + wkd: Make use of --debug extprog. + + commit deac3e91eb68dd1e1a1d25a68f4f8139f06a56d9 + * tools/wks-util.c (debug_gpg_invocation): New. + (get_key_status_cb): Enable debug output. + (wks_get_key): Show gpg invocation. + (wks_list_key): Ditto. + (wks_filter_uid): Ditto. + + gpg: New export-filter export-revocs. + + commit edbe30c1528ca8c5d46a7d2718e3085e55ebde64 + * g10/options.h (EXPORT_REVOCS): New. + * g10/export.c (export_select_filter): New. + (struct export_filter_attic_s): Add field. + (cleanup_export_globals): Cleanup. + (parse_export_options): Add option "export-revocs". + (parse_and_set_export_filter): Parse the select type. + (do_export_revocs): New. + (do_export_stream): Add a way to select things for export. + +2022-11-30 NIIBE Yutaka + + gpg: Fix double-free in gpg --card-edit. + + commit cd29ab0435d38dbda7a4aa7a0ed53ffb06460afa + * g10/card-util.c (change_name): Don't free ISONAME here. + +2022-11-29 Werner Koch + + gpg: use iobuf_read for higher detached signing speed. + + commit 2302e180c010dffe0b792063955938cd3599e8fe + * g10/sign.c (sign_file): Use iobuf_read instead of iobuf_get for + reading data from detached file. + +2022-11-29 Jussi Kivilinna + + g10/plaintext: do_hash: use iobuf_read for higher performance. + + commit 15b8d100c9c8d0dc65706451d7edaef8b4abaafc + * g10/plaintext.c (do_hash): Use iobuf_read instead of iobuf_get for + reading data; Use gcry_md_write instead of gcry_md_putc for hash data. + +2022-11-28 Werner Koch + + gpg: Make --require-compliance work with out --status-fd. + + commit 11f3232716716511ff9ea8c9c15c984ce4614d83 + * g10/mainproc.c (proc_encrypted): Set complaince_de_vs also if + require-compliance is set. + +2022-11-25 NIIBE Yutaka + + w32: Fix for make check. + + commit ff266aef29119b365576617c06614f2cc0af0bf2 + * tests/gpgsm/Makefile.am: Add $(EXEEXT). + + tests: Fix to support --enable-all-tests and variants. + + commit 8b1061a5dec787de063a83db334edd7349ab77d8 + * tests/gpgscm/tests.scm (test::scm): Add VARIANT argument. + (tests::new): Likewise. + (open-log-file, report): Support VARIANT. + * tests/gpgme/all-tests.scm (setup-c, setup-py): Follow the change. + * tests/gpgsm/all-tests.scm (setup): Likewise. + * tests/gpgsm/run-tests.scm: Likewise. + * tests/migrations/all-tests.scm: Likewise. + * tests/migrations/run-tests.scm: Likewise. + * tests/openpgp/all-tests.scm: Likewise. + * tests/openpgp/run-tests.scm: Likewise. + + tests:w32: Fix for non-dot file name for Windows. + + commit ddfc90e5242ec751bf5275c6acbe12dc51d64b6d + * tests/migrations/from-classic.scm (assert-migrated): Handle the case + on Windows. + + tests:gpgscm:w32: Fix for GetTempPath. + + commit 4ea7f03c1013f886e51c7740a06afaa9060dada7 + * tests/gpgscm/ffi.c (do_get_temp_path): Remove the last backslash. + + tests: Keep .log files in objdir. + + commit 44cbe6fbc0627ef33918e8f489bb2a379cb4f347 + * tests/gpgscm/tests.scm (open-log-file): Keep the log file in objdir. + + tests: Use 233 for invalid value of FD. + + commit b94fe0e0077f1b8a1622eb67eac85675e6c24198 + * tests/openpgp/issue2941.scm: Use 233. + + w32: Exclude tests with HOME. + + commit 1e62c4b7c24f50d043b74ce6fad36a615ec65757 + * common/t-session-env.c [HAVE_W32_SYSTEM] (test_all): HOME is not + defined, so, exclude the tests. + + w32: Fix for make check. + + commit b13c0b595ebdddc7760eeab901ee5a6d0e8daa10 + * common/Makefile.am (module_tests): Exclude t-exechelp and + t-exectool. + * common/t-stringhelp.c (mygetcwd): Convert '\' to '/'. + * tests/gpgme/Makefile.am: Add $(EXEEXT). + * tests/migrations/Makefile.am: Likewise. + * tests/openpgp/Makefile.am: Likewise. + +2022-11-25 Werner Koch + + scd: Redact --debug cardio output of a VERIFY APDU. + + commit 2e18c371d2417b86c34f986d075a2ef6a374ab92 + * scd/apdu.c (pcsc_send_apdu) [DBG_CARD_IO]: Detect and redact a + VERIFY. + (send_apdu_ccid): Ditto. + + gpg: Add a notation to encryption subkeys in de-vs mode. + + commit ce50dea7cfe16ab4acf2600b1ef40d47635c93d8 + * g10/keygen.c (struct opaque_data_usage_and_pk): Add cpl_notation. + (do_add_notation): New. + (keygen_add_key_flags_and_expire): Set cpl@gnupg.org notation if + requested. + (write_keybinding): Request notation for subkeys in de-vs mode. + + scd:nks: Fix ECC signing if key not given by keygrip. + + commit 84aba39491c29b3b65e4746a7301cb13cde43c8d + * scd/app-nks.c (keygripstr_from_pk_file): Set r_algo if not in cache. + + agent: Allow trustlist on Windows in Unicode homedirs. + + commit 6ba5b6b85451ef6374656b101ab3d4551e11b97b + * agent/trustlist.c (agent_marktrusted): Use gnupg_access. + + gpg: Fix trusted introducer for user-ids with only the mbox. + + commit c1f5fcff42315345e40e445d8d6d8e0a10e23ad0 + * g10/trustdb.c (check_regexp): Kludge to match user-ids with only an + mbox. + + gpg: Import stray revocation certificates. + + commit 290f458ad66f4ffacea140fe03be9b36e46831d5 + * g10/kbnode.c (new_kbnode2): New. + * g10/import.c (delete_inv_parts): New arg r_otherrevsigs to store + misplaced revocations. + (import_revoke_cert): Allow to pass an entire list. + (import_one): Import revocations found by delete_inv_parts. + + gpg: Make --list-packets work w/o --no-armor for plain OCB packets. + + commit af1d4ff2eadc4d4175ccc24f88d38dc9d48dcfca + * g10/armor.c (is_armored): Add PKT_ENCRYPTED_AEAD. + + gpg: New option --compatibility-flags. + + commit 865386c0cf0b5975b4da66b8da4a5f77a0610081 + * g10/gpg.c (oCompatibilityFlags): New. + (opts): Add option. + (compatibility_flags): New list. + (main): Set flags and print help. + * g10/options.h (opt): Add field compatibility_flags. + + scd:nks: Support non-ESIGN signing with the Signature Card v2. + + commit adbe5a35a5f85a2231f378988edbc79c6ec42f72 + * scd/app-nks.c (do_sign): Handle ECC for NKS cards + + scd: Use APP_LEARN_FLAG_KEYPAIRINFO with more apps. + + commit ea222a0d9c7359430dfe9be36f4446a3b60a64df + * scd/app-nks.c (do_learn_status_core): Use new flag. + * scd/app-sc-hsm.c (do_learn_status): Ditto. + +2022-11-25 NIIBE Yutaka + + build: Update gpg-error.m4. + + commit 44dc253c4c5342f5eda70ebf04ca9700e70c300c + * m4/gpg-error.m4: Update from libgpg-error 1.46. + +2022-10-20 Werner Koch + + scd:nks: Don't flag the ESIGN keypair EF as encryption capable. + + commit 1e69676981ac4849bc687c975da0925d65ee03a8 + * scd/app-nks.c (filelist): Tweak 0x4531. + + scd:nks: Some code cleanup. + + commit f24904ee35409dd2b1e728f62519319536b4286b + * scd/app-nks.c (find_fid_by_keyref): Factor keyref parsing out to ... + (parse_keyref): new. + (do_readcert): Use new function instead of partly duplicated code. + Make detection of keygrip more robust. + (do_readkey): Make detection of keygrip more robust. + (do_with_keygrip): Use get_nks_tag. + + scd:nks: Support the Telesec ESIGN application. + + commit 5cd25f4ca48573207db25d6d01a7c5c60aa773f2 + * scd/app-nks.c (find_fid_by_keyref): Disable the cache for now. + (readcert_from_ef): Considere an all zero certificate as not found. + (do_sign): Support ECC and the ESIGN application. + +2022-10-20 NIIBE Yutaka + + scd:nks: Return USAGE information for KEYINFO command. + + commit b19958278931e474acb266c9698839118b04f7f1 + * scd/app-nks.c (set_usage_string): New. + (do_learn_status_core, do_readkey): Use set_usage_string. + (do_with_keygrip): Add USAGE to call send_keyinfo, + using set_usage_string. + * scd/command.c (send_keyinfo): Add arg usage. + +2022-10-20 Werner Koch + + scd:nks: Handle APP_READKEY_FLAG_INFO. + + commit 77b008d1e74bae048efc26eace49994deea13b65 + * scd/app-nks.c (keygripstr_from_pk_file): Fix ignored error. + (get_nks_tag): New. + (do_learn_status_core): Use it. Make sure not to mange the + KEYPAIRINFO line if no usage is known. + (do_readkey): Output the KEYPAIRINFO for the keygrip case. + +2022-10-20 Ingo Klöcker + + scd:nks: Add support for signing plain SHA-2 digests. + + commit 8bccd95b38f2eb7f9c27dcd24b7e1adcdee0303d + * scd/app-nks.c (do_sign): Handle plain SHA-2 digests and verify + encoding of ASN.1 encoded hashes. + +2022-10-20 NIIBE Yutaka + + scd:nks: Support READKEY with keygrip and for "NKS-IDLM" keyref. + + commit 3c1acb7b9fa4edd43a5b2bf957d8cae9dfcdd5bc + * scd/app-nks.c (do_readkey): Allow KEYGRIP access. + Support NKS-IDLM.XXXX keyref. + + scd:nks: Factor out pubkey retrieval from keygrip handling. + + commit 0979ae3491316ca180faeb336565c56f1dbebd2e + * scd/app-nks.c (pubkey_from_pk_file): New. + (keygripstr_from_pk_file): Use pubkey_from_pk_file. + + (cherry picked from commit b7c087375d84c31ab8a645cd81e6b1e6185cb30d) + + scd:nks: Add support of KEYGRIP for do_readcert. + + commit 1f2823e0beee8567461d509ad6e59002718b4271 + * scd/app-nks.c (do_readcert): Support KEYGRIP. + + scd:nks: Factor out iteration over filelist. + + commit ea7234d2f5918a6c27202e437d7666d25deebdab + * scd/app-nks.c (iterate_over_filelist): New. + (do_with_keygrip): Use iterate_over_filelist. + + (cherry picked from commit 6c4365847666cefac73ccc743a99fac473da2186) + + scd:nks: Fix caching keygrip (more). + + commit c9eb4c0632318270dea7cc4c22957539648a3707 + * scd/app-nks.c (keygripstr_from_pk_file): Distinguish by APP_ID. + +2022-10-20 Werner Koch + + scd:nks: Minor additions to the basic IDLM application support. + + commit cf5f6896f810ea92443ba43e384b0a319bc73467 + * scd/app-nks.c (filelist): Use special value -1 for IDLM pubkeys. + (keygripstr_from_pk_file): Handle special value. + (do_readcert): Ditto. + (do_writecert): Ditto. + +2022-10-20 NIIBE Yutaka + + scd,nks: Fix caching keygrip. + + commit f1bd7369a7543f14cf27fed9ddff2e3d535a44fb + * scd/app-nks.c (keygripstr_from_pk_file): Identify by cfid if + available. + +2022-10-20 Werner Koch + + scd:nks: Emit the algo string with KEYPAIRINFO. + + commit c1c3331cf96542d3ab6704a41ac85ccf2c064d5d + * scd/app-nks.c (do_learn_status_core): Emit the algo string as part + of a KEYPAIRINFO. + (struct fid_cache_s): Add field algostr. + (flush_fid_cache): Release it. + (keygripstr_from_pk_file): Fill it and add it to the cache. Use a + single exit label. Set algostr. + + scd:nks: Implement writecert for the Signature card v2. + + commit fe698586b5d4b14fecf0295945f341e1de795c71 + * scd/iso7816.c (CMD_UPDATE_BINARY): New. + (iso7816_update_binary): New. + * scd/app-nks.c (do_deinit): Factor some code out to... + (flush_fid_cache): new. + (do_writecert): New. + (app_select_nks): Register new handler. + + scd:nks: Fix certificate read problem with TCOS signature card v2. + + commit c99870f790c61db85ba8209e1983eab8447e3f96 + * scd/app-nks.c (filelist): Add a dedicated key entry for ESIGN. + (do_readcert): Test for the app_id. + + scd:nks: Fix remaining tries warning in --reset mode. + + commit a974d8aefab1fe69b34dabc4a31105de6f70bac8 + * scd/app-nks.c (do_change_pin): Change computation of 'remaining'. + + scd:nks: Add framework to support IDKey cards. + + commit 60ba61e78ea36ce662b485ac8d3102c866f08caf + * scd/app-nks.c (NKS_APP_IDLM): New. + (struct app_local_s): Replace NKS_VERSION by the global APPVERSION. + (do_learn_status): Always send CHV-STATUS. + (find_fid_by_keyref): Basic support for IDLM only use. + (do_learn_status_core): Ditto. + (do_readcert): Ditto. + (verify_pin): Ditto. + (parse_pwidstr): Ditto. + (do_with_keygrip): Ditto. + (switch_application): Ditto. + (app_select_nks): Fallback to IDLM. + + scd:nks: Get the PIN prompts right for the Signature Card. + + commit a83281176c2bad81b4a10c1ce9be62fbec2bc690 + * scd/app-nks.c (get_dispserialno): Move more to the top. + (do_getattr): Add $DISPSERIALNO and SERIALNO. Make CHV-STATUS work + with NKS15. + (verify_pin): Use dedicated min. PIN lengths. + (parse_pwidstr): Support NKS15 + + scd:nks: Support decryption using ECDH. + + commit bbef2d17902b9bebcec2e073e0f4ac5826c2544c + * scd/app-nks.c (struct fid_cache_s): Add field 'algo'. + (keygripstr_from_pk_file): Add arg 'r_algo' to return the algo. + (find_fid_by_keyref): Ditto. + (get_dispserialno): New. + (make_prompt): New. + (verify_pin): Provide better prompts. + (do_decipher): Support ECDH. + (parse_pwidstr): Add hack tospecify any pwid.. + (do_change_pin): Support Signature Card V2.0 (NKS15) style NullPIN. + Provide a better prompt. + + scd:nks: Add do_with_keygrip and implement a cache. + + commit f5e0469d6e744983c21a7de55bd74b674e47d1af + * scd/app-nks.c (struct fid_cache_s): New. + (struct app_local_s): Add field 'fid_cache'. + (do_deinit): Release the cache. + (keygripstr_from_pk_file): Implement the cache. + (find_fid_by_keyref): New + (do_sign, do_decipher): Use new function. + (do_with_keygrip): New. + + scd:nks: Allow retrieving certificates from a Signature Card v.20. + + commit 471e610fcd63db0271929ce9a134907a57e9c5de + * scd/app-nks.c: Major rework to support non-RSA cards. + +2022-10-18 NIIBE Yutaka + + gpg: Move NETLIBS after GPG_ERROR_LIBS (another). + + commit 256b3c05789d8026b62f594bd592199a90b1b446 + * g10/Makefile.am (t_keydb_LDADD): Add NETLIBS after GPG_ERROR_LIBS. + + dirmngr: Fix build with no LDAP support. + + commit a5c3821664886ffffbe6a83aac088a6e0088a607 + * dirmngr/server.c [USE_LDAP] (start_command_handler): Conditionalize. + + gpg: Move NETLIBS after GPG_ERROR_LIBS. + + commit b26bb03ed96f380ad603f7ad902862625233c931 + * g10/Makefile.am (LDADD): Remove NETLIBS. + (gpg_LDADD, gpgv_LDADD): Add NETLIBS after GPG_ERROR_LIBS. + (gpgcompose_LDADD, t_keydb_get_keyblock_LDADD): Likewise. + (t_stutter_LDADD): Likewise. + +2022-10-13 NIIBE Yutaka + + gpg: Report an error for receiving key from agent. + + commit 6f0066db2c87e6362473d17c0621011ed1e1eae6 + * g10/export.c (do_export_one_keyblock): Report an error. + 2022-10-10 Werner Koch Release 2.2.40. diff -Nru gnupg2-2.2.40/common/Makefile.am gnupg2-2.2.41/common/Makefile.am --- gnupg2-2.2.40/common/Makefile.am 2022-07-05 15:13:26.000000000 +0000 +++ gnupg2-2.2.41/common/Makefile.am 2022-11-25 12:59:10.000000000 +0000 @@ -169,11 +169,10 @@ t-session-env t-openpgp-oid t-ssh-utils \ t-mapstrings t-zb32 t-mbox-util t-iobuf t-strlist \ t-name-value t-ccparray t-recsel t-w32-cmdline -if !HAVE_W32CE_SYSTEM -module_tests += t-exechelp t-exectool -endif if HAVE_W32_SYSTEM module_tests += t-w32-reg +else +module_tests += t-exechelp t-exectool endif if MAINTAINER_MODE diff -Nru gnupg2-2.2.40/common/Makefile.in gnupg2-2.2.41/common/Makefile.in --- gnupg2-2.2.40/common/Makefile.in 2022-10-10 11:57:17.000000000 +0000 +++ gnupg2-2.2.41/common/Makefile.in 2022-12-09 08:47:54.000000000 +0000 @@ -152,8 +152,8 @@ @HAVE_W32CE_SYSTEM_TRUE@@HAVE_W32_SYSTEM_TRUE@am__append_10 = exechelp-w32ce.c @HAVE_W32CE_SYSTEM_FALSE@@HAVE_W32_SYSTEM_TRUE@am__append_11 = exechelp-w32.c @HAVE_W32_SYSTEM_FALSE@am__append_12 = exechelp-posix.c -@HAVE_W32CE_SYSTEM_FALSE@am__append_13 = t-exechelp t-exectool -@HAVE_W32_SYSTEM_TRUE@am__append_14 = t-w32-reg +@HAVE_W32_SYSTEM_TRUE@am__append_13 = t-w32-reg +@HAVE_W32_SYSTEM_FALSE@am__append_14 = t-exechelp t-exectool subdir = common ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/autobuild.m4 \ @@ -177,9 +177,9 @@ CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = w32info-rc.h CONFIG_CLEAN_VPATH_FILES = -@HAVE_W32CE_SYSTEM_FALSE@am__EXEEXT_1 = t-exechelp$(EXEEXT) \ -@HAVE_W32CE_SYSTEM_FALSE@ t-exectool$(EXEEXT) -@HAVE_W32_SYSTEM_TRUE@am__EXEEXT_2 = t-w32-reg$(EXEEXT) +@HAVE_W32_SYSTEM_TRUE@am__EXEEXT_1 = t-w32-reg$(EXEEXT) +@HAVE_W32_SYSTEM_FALSE@am__EXEEXT_2 = t-exechelp$(EXEEXT) \ +@HAVE_W32_SYSTEM_FALSE@ t-exectool$(EXEEXT) am__EXEEXT_3 = t-stringhelp$(EXEEXT) t-timestuff$(EXEEXT) \ t-convert$(EXEEXT) t-percent$(EXEEXT) t-gettime$(EXEEXT) \ t-sysutils$(EXEEXT) t-sexputil$(EXEEXT) t-session-env$(EXEEXT) \ diff -Nru gnupg2-2.2.40/common/t-session-env.c gnupg2-2.2.41/common/t-session-env.c --- gnupg2-2.2.40/common/t-session-env.c 2017-08-28 10:22:54.000000000 +0000 +++ gnupg2-2.2.41/common/t-session-env.c 2022-11-25 12:59:13.000000000 +0000 @@ -154,6 +154,7 @@ listall (se); +#ifndef HAVE_W32_SYSTEM /* Retrieve a default one. */ s = session_env_getenv_or_default (se, "HOME", NULL); if (!s) @@ -161,14 +162,17 @@ fprintf (stderr, "failed to get default of HOME\n"); exit (1); } +#endif s = session_env_getenv (se, "HOME"); if (s) fail(0); /* This is a default value, thus we should not see it. */ +#ifndef HAVE_W32_SYSTEM s = session_env_getenv_or_default (se, "HOME", NULL); if (!s) fail(0); /* But here we should see it. */ +#endif /* Add a few more. */ err = session_env_putenv (se, "X1=A value"); diff -Nru gnupg2-2.2.40/common/t-stringhelp.c gnupg2-2.2.41/common/t-stringhelp.c --- gnupg2-2.2.40/common/t-stringhelp.c 2022-02-24 13:06:37.000000000 +0000 +++ gnupg2-2.2.41/common/t-stringhelp.c 2022-11-25 12:59:10.000000000 +0000 @@ -89,7 +89,15 @@ return buffer; #else if (getcwd (buffer, size) == buffer) - return buffer; + { +#ifdef HAVE_W32_SYSTEM + char *p; + for (p = buffer; *p; p++) + if (*p == '\\') + *p = '/'; +#endif + return buffer; + } xfree (buffer); if (errno != ERANGE) { diff -Nru gnupg2-2.2.40/configure gnupg2-2.2.41/configure --- gnupg2-2.2.40/configure 2022-10-10 11:57:19.000000000 +0000 +++ gnupg2-2.2.41/configure 2022-12-09 08:47:56.000000000 +0000 @@ -1,6 +1,6 @@ #! /bin/sh # Guess values for system-dependent variables and create Makefiles. -# Generated by GNU Autoconf 2.69 for gnupg 2.2.40. +# Generated by GNU Autoconf 2.69 for gnupg 2.2.41. # # Report bugs to . # @@ -580,8 +580,8 @@ # Identity of this package. PACKAGE_NAME='gnupg' PACKAGE_TARNAME='gnupg' -PACKAGE_VERSION='2.2.40' -PACKAGE_STRING='gnupg 2.2.40' +PACKAGE_VERSION='2.2.41' +PACKAGE_STRING='gnupg 2.2.41' PACKAGE_BUGREPORT='https://bugs.gnupg.org' PACKAGE_URL='' @@ -1537,7 +1537,7 @@ # Omit some internal or obsolete options to make the list less imposing. # This message is too long to be a string in the A/UX 3.1 sh. cat <<_ACEOF -\`configure' configures gnupg 2.2.40 to adapt to many kinds of systems. +\`configure' configures gnupg 2.2.41 to adapt to many kinds of systems. Usage: $0 [OPTION]... [VAR=VALUE]... @@ -1608,7 +1608,7 @@ if test -n "$ac_init_help"; then case $ac_init_help in - short | recursive ) echo "Configuration of gnupg 2.2.40:";; + short | recursive ) echo "Configuration of gnupg 2.2.41:";; esac cat <<\_ACEOF @@ -1825,7 +1825,7 @@ test -n "$ac_init_help" && exit $ac_status if $ac_init_version; then cat <<\_ACEOF -gnupg configure 2.2.40 +gnupg configure 2.2.41 generated by GNU Autoconf 2.69 Copyright (C) 2012 Free Software Foundation, Inc. @@ -2534,7 +2534,7 @@ This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. -It was created by gnupg $as_me 2.2.40, which was +It was created by gnupg $as_me 2.2.41, which was generated by GNU Autoconf 2.69. Invocation command line was $ $0 $@ @@ -3433,7 +3433,7 @@ # Define the identity of the package. PACKAGE='gnupg' - VERSION='2.2.40' + VERSION='2.2.41' cat >>confdefs.h <<_ACEOF @@ -8469,6 +8469,10 @@ fi if test -n "$gpgrt_libdir"; then break; fi done + if test -z "$libdir_candidates"; then + # No valid pkgconfig dir in any of the system directories, fallback + gpgrt_libdir=${possible_libdir1} + fi else # When we cannot determine system libdir-format, use this: gpgrt_libdir=${possible_libdir1} @@ -16321,7 +16325,7 @@ # # Provide information about the build. # -BUILD_REVISION="2e9f8a511" +BUILD_REVISION="75ad0ea6d" cat >>confdefs.h <<_ACEOF @@ -16330,7 +16334,7 @@ BUILD_VERSION=`echo "$VERSION" | sed 's/\([0-9.]*\).*/\1./'` -BUILD_VERSION="${BUILD_VERSION}11935" +BUILD_VERSION="${BUILD_VERSION}30125" BUILD_FILEVERSION=`echo "${BUILD_VERSION}" | tr . ,` @@ -17190,7 +17194,7 @@ # report actual input values of CONFIG_FILES etc. instead of their # values after options handling. ac_log=" -This file was extended by gnupg $as_me 2.2.40, which was +This file was extended by gnupg $as_me 2.2.41, which was generated by GNU Autoconf 2.69. Invocation command line was CONFIG_FILES = $CONFIG_FILES @@ -17256,7 +17260,7 @@ cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`" ac_cs_version="\\ -gnupg config.status 2.2.40 +gnupg config.status 2.2.41 configured by $0, generated by GNU Autoconf 2.69, with options \\"\$ac_cs_config\\" @@ -18276,7 +18280,7 @@ echo " GnuPG v${VERSION} has been configured as follows: - Revision: 2e9f8a511 (11935) + Revision: 75ad0ea6d (30125) Platform: $PRINTABLE_OS_NAME ($host) OpenPGP: $build_gpg diff -Nru gnupg2-2.2.40/configure.ac gnupg2-2.2.41/configure.ac --- gnupg2-2.2.40/configure.ac 2022-09-02 13:36:40.000000000 +0000 +++ gnupg2-2.2.41/configure.ac 2022-10-13 15:02:05.000000000 +0000 @@ -29,7 +29,7 @@ m4_define([mym4_package],[gnupg]) m4_define([mym4_major], [2]) m4_define([mym4_minor], [2]) -m4_define([mym4_micro], [40]) +m4_define([mym4_micro], [41]) # To start a new development series, i.e a new major or minor number # you need to mark an arbitrary commit before the first beta release diff -Nru gnupg2-2.2.40/debian/changelog gnupg2-2.2.41/debian/changelog --- gnupg2-2.2.40/debian/changelog 2022-10-17 23:56:06.000000000 +0000 +++ gnupg2-2.2.41/debian/changelog 2022-12-29 20:09:22.000000000 +0000 @@ -1,3 +1,49 @@ +gnupg2 (2.2.41-0ubuntu1~22.04.sav0) jammy; urgency=medium + + * New upstream LTS release + - Various bugfixes and improvements (see https://dev.gnupg.org/T6280) + * Merge some changes from Ubuntu 2.2.40-1ubuntu1 package: + - refresh patches [this includes using hkps://keys.openpgp.org instead of + hkps://keyserver.ubuntu.com as default key server through re-enabling + Use-hkps-keys.openpgp.org-as-the-default-keyserver.patch, per Debian] + - drop stale NEWS files for dirmngr and gpg-agent + - refresh upstream signing keys from g10/distsigkey.gpg + - add additional lintian override for version of lintian used on + ftp-master + - Standards-Version: bump to 4.6.1 (no changes needed) + - clean up lintian-overrides + - Building for Windows requires libgpg-error 1.45 + - [ Christoph Biedl ] Remove myself from uploaders + - add upstream metadata + - d/copyright: update years + * debian/patches/: Drop fix-linking-with-new-libgpg-error.patch (upstreamed) + - Rebase gpg-allow-import-of-previously-known-keys-even-without-UI.patch + + -- Rob Savoury Thu, 29 Dec 2022 12:09:22 -0800 + +gnupg2 (2.2.40-1ubuntu1) lunar; urgency=low + + * Merge from Debian unstable. Remaining changes: + - Drop the gpgv-win32 test + - Honor http_proxy= environment variables by default in the systemd + user session dirmngr service. + (debian/patches/dirmngr-honor-http-proxy.patch) + - Export GPG_AGENT_INFO in the systemd-environment-generator too. + - Don't declare diffutils as a test dependency, this package is + essential so always installed; and the dependency declaration breaks + cross-arch testing. + + -- Steve Langasek Fri, 04 Nov 2022 19:58:52 +0100 + +gnupg2 (2.2.40-1) unstable; urgency=medium + + * new upstream version + * refresh patches + * import post-release cleanup patches from upstream + * drop stale NEWS files for dirmngr and gpg-agent + + -- Daniel Kahn Gillmor Wed, 19 Oct 2022 11:09:42 -0400 + gnupg2 (2.2.40-0ubuntu1~22.04.sav0) jammy; urgency=medium * New upstream LTS release @@ -7,6 +53,14 @@ -- Rob Savoury Mon, 17 Oct 2022 16:56:06 -0700 +gnupg2 (2.2.39-1) unstable; urgency=medium + + * refresh upstream signing keys from g10/distsigkey.gpg + * add additional lintian override for version of lintian used on + ftp-master + + -- Daniel Kahn Gillmor Tue, 06 Sep 2022 16:47:57 -0400 + gnupg2 (2.2.39-0ubuntu1~22.04.sav0) jammy; urgency=medium * New upstream LTS release @@ -14,6 +68,13 @@ -- Rob Savoury Tue, 06 Sep 2022 09:45:31 -0700 +gnupg2 (2.2.38-1) unstable; urgency=medium + + * new upstream version + * refresh patches (dropping those already upstream) + + -- Daniel Kahn Gillmor Thu, 01 Sep 2022 18:25:24 -0400 + gnupg2 (2.2.36-0ubuntu1~22.04.sav0) jammy; urgency=medium * New upstream LTS release @@ -21,6 +82,47 @@ -- Rob Savoury Thu, 07 Jul 2022 12:20:45 -0700 +gnupg2 (2.2.35-3ubuntu1) kinetic; urgency=low + + * Merge from Debian unstable. Remaining changes: + - Drop the gpgv-win32 test + - Honor http_proxy= environment variables by default in the systemd + user session dirmngr service. + (debian/patches/dirmngr-honor-http-proxy.patch) + - Export GPG_AGENT_INFO in the systemd-environment-generator too. + - Don't declare diffutils as a test dependency, this package is + essential so always installed; and the dependency declaration breaks + cross-arch testing. + * Dropped changes, included upstream: + - debian/patches/CVE-2022-34903.patch: Fix garbled status messages in + NOTATION_DATA in g10/cpr.c. + + -- Steve Langasek Mon, 15 Aug 2022 18:01:56 -0700 + +gnupg2 (2.2.35-3) unstable; urgency=high + + * fix security error from large notations (Thanks, Demi Marie Obenour) + (Closes: #1014157) + * Standards-Version: bump to 4.6.1 (no changes needed) + * clean up lintian-overrides + + -- Daniel Kahn Gillmor Fri, 01 Jul 2022 02:01:17 -0400 + +gnupg2 (2.2.35-2) unstable; urgency=medium + + * Only enable wine32 test on i386 + + -- Daniel Kahn Gillmor Fri, 29 Apr 2022 16:53:05 -0400 + +gnupg2 (2.2.35-1) unstable; urgency=medium + + * New upstream release. + * refresh patches. + * Correct handling of 256-bit Ed25519 secret keys (Closes: #1010171). + * Building for Windows requires libgpg-error 1.45 + + -- Daniel Kahn Gillmor Wed, 27 Apr 2022 17:09:01 -0400 + gnupg2 (2.2.35-0ubuntu1~22.04.sav0) jammy; urgency=medium * New upstream LTS release @@ -28,6 +130,15 @@ -- Rob Savoury Mon, 02 May 2022 16:22:37 -0700 +gnupg2 (2.2.34-1) unstable; urgency=medium + + * New upstream release + * Refresh patches. + * ship gpg-check-pattern.1 from upstream + * override another pedantic lintian warning + + -- Daniel Kahn Gillmor Fri, 22 Apr 2022 18:43:25 -0400 + gnupg2 (2.2.34-0ubuntu1~22.04.sav0) jammy; urgency=medium * New upstream LTS release @@ -49,6 +160,36 @@ -- Rob Savoury Sat, 22 Jan 2022 22:19:23 -0800 +gnupg2 (2.2.27-4) unstable; urgency=medium + + [ Christoph Biedl ] + * Remove myself from uploaders + + [ Daniel Kahn Gillmor ] + * Replace Werner Koch's signing key + * convert to DEP-14 branch name + * standards-version: bump to 4.6.0 (no changes needed) + * add upstream metadata + * gpgv-static: fix up lintian-override + * d/copyright: update years + + -- Daniel Kahn Gillmor Wed, 20 Apr 2022 19:03:29 -0400 + +gnupg2 (2.2.27-3ubuntu3) kinetic; urgency=medium + + * SECURITY UPDATE: signature forgery via injection into the status line + - debian/patches/CVE-2022-34903.patch: Fix garbled status messages in + NOTATION_DATA in g10/cpr.c. + - CVE-2022-34903 + + -- Marc Deslauriers Mon, 04 Jul 2022 12:17:43 -0400 + +gnupg2 (2.2.27-3ubuntu2) jammy; urgency=medium + + * No-change rebuild for ppc64el baseline bump. + + -- Łukasz 'sil2100' Zemczak Wed, 23 Mar 2022 14:55:24 +0100 + gnupg2 (2.2.27-3ubuntu1) jammy; urgency=low * Merge from Debian unstable. Remaining changes: diff -Nru gnupg2-2.2.40/debian/control gnupg2-2.2.41/debian/control --- gnupg2-2.2.40/debian/control 2021-12-18 21:45:14.000000000 +0000 +++ gnupg2-2.2.41/debian/control 2022-12-29 20:01:47.000000000 +0000 @@ -6,8 +6,7 @@ Uploaders: Eric Dorland , Daniel Kahn Gillmor , - Christoph Biedl , -Standards-Version: 4.5.1 +Standards-Version: 4.6.1 Build-Depends: automake, autopoint, @@ -38,7 +37,7 @@ binutils-multiarch [!amd64 !i386], libassuan-mingw-w64-dev (>= 2.5.0), libgcrypt-mingw-w64-dev (>= 1.8.0), - libgpg-error-mingw-w64-dev (>= 1.26-2~), + libgpg-error-mingw-w64-dev (>= 1.45), libksba-mingw-w64-dev (>= 1.3.5), libnpth-mingw-w64-dev (>= 1.2), libz-mingw-w64-dev, diff -Nru gnupg2-2.2.40/debian/copyright gnupg2-2.2.41/debian/copyright --- gnupg2-2.2.40/debian/copyright 2021-12-18 21:45:15.000000000 +0000 +++ gnupg2-2.2.41/debian/copyright 2022-10-19 21:18:48.000000000 +0000 @@ -70,7 +70,7 @@ License: TinySCHEME Files: debian/* -Copyright: 1998-2020 Debian GnuPG packagers, including +Copyright: 1998-2022 Debian GnuPG packagers, including Eric Dorland Daniel Kahn Gillmor NIIBE Yutaka diff -Nru gnupg2-2.2.40/debian/dirmngr.NEWS gnupg2-2.2.41/debian/dirmngr.NEWS --- gnupg2-2.2.40/debian/dirmngr.NEWS 2021-12-18 21:45:15.000000000 +0000 +++ gnupg2-2.2.41/debian/dirmngr.NEWS 1970-01-01 00:00:00.000000000 +0000 @@ -1,49 +0,0 @@ -dirmngr (2.1.18-1) unstable; urgency=medium - - If your machine is configured with system user session management, - dirmngr will be managed automatically by systemd's user sessions on - machines configured with use systemd. Please consider installing the - packages that the dirmngr package Suggests:, and see - /usr/share/doc/dirmngr/README.Debian for more details. - - -- Daniel Kahn Gillmor Mon, 23 Jan 2017 22:50:34 -0500 - -dirmngr (2.1.13-3) experimental; urgency=medium - - gpg and most related processes will auto-launch dirmngr if needed. - - Any user who wants to launch dirmngr manually should do so with: - - gpgconf --launch dirmngr - - and may want to terminate dirmngr when their session ends with: - - gpgconf --kill dirmngr - - Users on machines with systemd can ensure that dirmngr is always - running for their session (and that it gets terminated at logout) - with: - - gpgconf --kill dirmngr - systemctl --user enable dirmngr - systemctl --user start dirmngr - - -- Daniel Kahn Gillmor Tue, 28 Jun 2016 17:55:15 -0400 - -dirmngr (2.1.0~beta895-1) experimental; urgency=medium - - No more dirmngr system service! - =============================== - - As of the 2.1.0 beta series, dirmngr is a local daemon that works - closely with gnupg2. It is launched on its own, per-user, and - listens on a standard socket (usually ~/.gnupg/S.dirmngr). There is - no more system-wide dirmngr process. - - If there is a special case where a dirmngr system process is - actually needed, please report a bug in dirmngr, and we can sort out - a way to set one up for that case so that everyone with dirmngr - installed doesn't need to have it running. - - -- Daniel Kahn Gillmor Tue, 07 Oct 2014 10:33:52 -0400 - diff -Nru gnupg2-2.2.40/debian/gbp.conf gnupg2-2.2.41/debian/gbp.conf --- gnupg2-2.2.40/debian/gbp.conf 2021-12-18 21:45:14.000000000 +0000 +++ gnupg2-2.2.41/debian/gbp.conf 2022-10-19 21:18:48.000000000 +0000 @@ -1,5 +1,5 @@ [DEFAULT] -debian-branch = debian/main +debian-branch = debian/unstable pristine-tar = True upstream-vcs-tag = gnupg-%(version)s diff -Nru gnupg2-2.2.40/debian/gnupg-l10n.lintian-overrides gnupg2-2.2.41/debian/gnupg-l10n.lintian-overrides --- gnupg2-2.2.40/debian/gnupg-l10n.lintian-overrides 2021-12-18 21:45:15.000000000 +0000 +++ gnupg2-2.2.41/debian/gnupg-l10n.lintian-overrides 2022-10-19 21:18:48.000000000 +0000 @@ -1,2 +1,2 @@ # these files are how GnuPG distributes localized help text -gnupg-l10n: package-contains-documentation-outside-usr-share-doc usr/share/gnupg/help.*txt +gnupg-l10n: package-contains-documentation-outside-usr-share-doc [usr/share/gnupg/help.*txt] diff -Nru gnupg2-2.2.40/debian/gpg-agent.lintian-overrides gnupg2-2.2.41/debian/gpg-agent.lintian-overrides --- gnupg2-2.2.40/debian/gpg-agent.lintian-overrides 2021-12-18 21:45:14.000000000 +0000 +++ gnupg2-2.2.41/debian/gpg-agent.lintian-overrides 2022-10-19 21:18:47.000000000 +0000 @@ -1,3 +1,3 @@ # these binaries are stored in /usr/lib/gnupg, as recommended by upstream: -gpg-agent: spare-manual-page usr/share/man/man1/gpg-check-pattern.1.gz -gpg-agent: spare-manual-page usr/share/man/man1/gpg-preset-passphrase.1.gz +gpg-agent: spare-manual-page [usr/share/man/man1/gpg-check-pattern.1.gz] +gpg-agent: spare-manual-page [usr/share/man/man1/gpg-preset-passphrase.1.gz] diff -Nru gnupg2-2.2.40/debian/gpg-agent.NEWS gnupg2-2.2.41/debian/gpg-agent.NEWS --- gnupg2-2.2.40/debian/gpg-agent.NEWS 2021-12-18 21:45:15.000000000 +0000 +++ gnupg2-2.2.41/debian/gpg-agent.NEWS 1970-01-01 00:00:00.000000000 +0000 @@ -1,19 +0,0 @@ -gnupg-agent (2.1.18-1) unstable; urgency=medium - - If your machine is configured with system user session management, - gpg-agent will be managed automatically by systemd's user sessions on - machines configured with use systemd. Please consider installing the - packages that the gnupg-agent package Suggests:, and see - /usr/share/doc/gnupg-agent/README.Debian for more details. - - -- Daniel Kahn Gillmor Mon, 23 Jan 2017 22:54:48 -0500 - -gnupg-agent (2.1.13-3) experimental; urgency=medium - - gpg-agent is no longer auto-launched by - /etc/X11/Xsession.d/90gpg-agent. Please read - /usr/share/doc/gnupg-agent/README.Debian for details about system - integration. - - -- Daniel Kahn Gillmor Tue, 28 Jun 2016 17:29:46 -0400 - diff -Nru gnupg2-2.2.40/debian/gpgv-static.lintian-overrides gnupg2-2.2.41/debian/gpgv-static.lintian-overrides --- gnupg2-2.2.40/debian/gpgv-static.lintian-overrides 2021-12-18 21:45:14.000000000 +0000 +++ gnupg2-2.2.41/debian/gpgv-static.lintian-overrides 2022-10-19 21:18:47.000000000 +0000 @@ -1,3 +1,3 @@ # gpgv-static is deliberately built statically. We cannot avoid # embedding zlib. -gpgv-static: embedded-library usr/bin/gpgv-static: zlib +gpgv-static: embedded-library zlib [usr/bin/gpgv-static] diff -Nru gnupg2-2.2.40/debian/gpg-wks-client.lintian-overrides gnupg2-2.2.41/debian/gpg-wks-client.lintian-overrides --- gnupg2-2.2.40/debian/gpg-wks-client.lintian-overrides 2021-12-18 21:45:14.000000000 +0000 +++ gnupg2-2.2.41/debian/gpg-wks-client.lintian-overrides 2022-10-19 21:18:47.000000000 +0000 @@ -1,2 +1,2 @@ # these binaries are stored in /usr/lib/gnupg, as recommended by upstream: -gpg-wks-client: spare-manual-page usr/share/man/man1/gpg-wks-client.1.gz +gpg-wks-client: spare-manual-page [usr/share/man/man1/gpg-wks-client.1.gz] diff -Nru gnupg2-2.2.40/debian/patches/block-ptrace-on-secret-daemons/Avoid-simple-memory-dumps-via-ptrace.patch gnupg2-2.2.41/debian/patches/block-ptrace-on-secret-daemons/Avoid-simple-memory-dumps-via-ptrace.patch --- gnupg2-2.2.40/debian/patches/block-ptrace-on-secret-daemons/Avoid-simple-memory-dumps-via-ptrace.patch 2022-03-02 17:19:03.000000000 +0000 +++ gnupg2-2.2.41/debian/patches/block-ptrace-on-secret-daemons/Avoid-simple-memory-dumps-via-ptrace.patch 2022-10-19 21:18:48.000000000 +0000 @@ -22,7 +22,7 @@ 3 files changed, 18 insertions(+), 1 deletion(-) diff --git a/agent/gpg-agent.c b/agent/gpg-agent.c -index 9aa7ae0..da7e51a 100644 +index 53b86dd..3f7aaae 100644 --- a/agent/gpg-agent.c +++ b/agent/gpg-agent.c @@ -50,6 +50,9 @@ @@ -35,7 +35,7 @@ #define INCLUDED_BY_MAIN_MODULE 1 #define GNUPG_COMMON_NEED_AFLOCAL -@@ -1066,6 +1069,11 @@ main (int argc, char **argv ) +@@ -1078,6 +1081,11 @@ main (int argc, char **argv ) early_system_init (); @@ -48,7 +48,7 @@ file descriptors and the signal mask. This info is required to do the exec call properly. We don't need it on Windows. */ diff --git a/configure.ac b/configure.ac -index 35822fe..8b1b935 100644 +index 4638f99..6e44af2 100644 --- a/configure.ac +++ b/configure.ac @@ -1404,7 +1404,7 @@ AC_CHECK_FUNCS([atexit canonicalize_file_name clock_gettime ctermid \ @@ -61,7 +61,7 @@ stat stpcpy strcasecmp strerror strftime stricmp \ strlwr strncasecmp strpbrk strsep strtol strtoul \ diff --git a/scd/scdaemon.c b/scd/scdaemon.c -index 3cda69b..006074e 100644 +index b62f5b6..d804fcb 100644 --- a/scd/scdaemon.c +++ b/scd/scdaemon.c @@ -38,6 +38,9 @@ @@ -74,7 +74,7 @@ #define INCLUDED_BY_MAIN_MODULE 1 #define GNUPG_COMMON_NEED_AFLOCAL -@@ -460,6 +463,12 @@ main (int argc, char **argv ) +@@ -461,6 +464,12 @@ main (int argc, char **argv ) npth_t pipecon_handler; early_system_init (); diff -Nru gnupg2-2.2.40/debian/patches/debian-packaging/avoid-regenerating-defsincdate-use-shipped-file.patch gnupg2-2.2.41/debian/patches/debian-packaging/avoid-regenerating-defsincdate-use-shipped-file.patch --- gnupg2-2.2.40/debian/patches/debian-packaging/avoid-regenerating-defsincdate-use-shipped-file.patch 2022-03-02 17:19:03.000000000 +0000 +++ gnupg2-2.2.41/debian/patches/debian-packaging/avoid-regenerating-defsincdate-use-shipped-file.patch 2022-10-19 21:18:48.000000000 +0000 @@ -18,10 +18,10 @@ 1 file changed, 9 deletions(-) diff --git a/doc/Makefile.am b/doc/Makefile.am -index 8bb7333..fec00ed 100644 +index aba09b9..13beb10 100644 --- a/doc/Makefile.am +++ b/doc/Makefile.am -@@ -179,15 +179,6 @@ $(myman_pages) gnupg.7 : yat2m-stamp defs.inc +@@ -180,15 +180,6 @@ $(myman_pages) gnupg.7 : yat2m-stamp defs.inc dist-hook: defsincdate diff -Nru gnupg2-2.2.40/debian/patches/dirmngr-idling/dirmngr-Avoid-automatically-checking-upstream-swdb.patch gnupg2-2.2.41/debian/patches/dirmngr-idling/dirmngr-Avoid-automatically-checking-upstream-swdb.patch --- gnupg2-2.2.40/debian/patches/dirmngr-idling/dirmngr-Avoid-automatically-checking-upstream-swdb.patch 2022-03-02 17:19:03.000000000 +0000 +++ gnupg2-2.2.41/debian/patches/dirmngr-idling/dirmngr-Avoid-automatically-checking-upstream-swdb.patch 2022-10-19 21:18:48.000000000 +0000 @@ -15,10 +15,10 @@ 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/dirmngr/dirmngr.c b/dirmngr/dirmngr.c -index 8be2cd8..d76c4ee 100644 +index c04a287..26d136d 100644 --- a/dirmngr/dirmngr.c +++ b/dirmngr/dirmngr.c -@@ -2044,8 +2044,6 @@ housekeeping_thread (void *arg) +@@ -2051,8 +2051,6 @@ housekeeping_thread (void *arg) if (network_activity_seen) { network_activity_seen = 0; @@ -28,7 +28,7 @@ } else diff --git a/doc/dirmngr.texi b/doc/dirmngr.texi -index e47f39c..4e7052e 100644 +index d6ef375..ab831de 100644 --- a/doc/dirmngr.texi +++ b/doc/dirmngr.texi @@ -294,9 +294,10 @@ Set the size of the queue for pending connections. The default is 64. diff -Nru gnupg2-2.2.40/debian/patches/dirmngr-idling/dirmngr-Avoid-need-for-hkp-housekeeping.patch gnupg2-2.2.41/debian/patches/dirmngr-idling/dirmngr-Avoid-need-for-hkp-housekeeping.patch --- gnupg2-2.2.40/debian/patches/dirmngr-idling/dirmngr-Avoid-need-for-hkp-housekeeping.patch 2022-03-02 17:19:03.000000000 +0000 +++ gnupg2-2.2.41/debian/patches/dirmngr-idling/dirmngr-Avoid-need-for-hkp-housekeeping.patch 2022-10-19 21:18:48.000000000 +0000 @@ -30,10 +30,10 @@ 3 files changed, 35 insertions(+), 41 deletions(-) diff --git a/dirmngr/dirmngr.c b/dirmngr/dirmngr.c -index fa10c28..8be2cd8 100644 +index e287194..c04a287 100644 --- a/dirmngr/dirmngr.c +++ b/dirmngr/dirmngr.c -@@ -2024,12 +2024,10 @@ static void * +@@ -2031,12 +2031,10 @@ static void * housekeeping_thread (void *arg) { static int sentinel; @@ -46,7 +46,7 @@ if (sentinel) { log_info ("housekeeping is already going on\n"); -@@ -2043,7 +2041,6 @@ housekeeping_thread (void *arg) +@@ -2050,7 +2048,6 @@ housekeeping_thread (void *arg) dirmngr_init_default_ctrl (&ctrlbuf); dns_stuff_housekeeping (); @@ -55,10 +55,10 @@ { network_activity_seen = 0; diff --git a/dirmngr/dirmngr.h b/dirmngr/dirmngr.h -index 159fab4..2f5c3d6 100644 +index fed4599..0e1fbd9 100644 --- a/dirmngr/dirmngr.h +++ b/dirmngr/dirmngr.h -@@ -227,7 +227,6 @@ int dirmngr_use_tor (void); +@@ -234,7 +234,6 @@ int dirmngr_use_tor (void); int dirmngr_never_use_tor_p (void); /*-- Various housekeeping functions. --*/ @@ -67,7 +67,7 @@ diff --git a/dirmngr/ks-engine-hkp.c b/dirmngr/ks-engine-hkp.c -index a1dece5..b5d7a29 100644 +index 5793f07..91f1c63 100644 --- a/dirmngr/ks-engine-hkp.c +++ b/dirmngr/ks-engine-hkp.c @@ -218,6 +218,24 @@ host_in_pool_p (hostinfo_t hi, int tblidx) diff -Nru gnupg2-2.2.40/debian/patches/dirmngr-idling/dirmngr-hkp-Avoid-potential-race-condition-when-some.patch gnupg2-2.2.41/debian/patches/dirmngr-idling/dirmngr-hkp-Avoid-potential-race-condition-when-some.patch --- gnupg2-2.2.40/debian/patches/dirmngr-idling/dirmngr-hkp-Avoid-potential-race-condition-when-some.patch 2022-03-02 17:19:03.000000000 +0000 +++ gnupg2-2.2.41/debian/patches/dirmngr-idling/dirmngr-hkp-Avoid-potential-race-condition-when-some.patch 2022-10-19 21:18:48.000000000 +0000 @@ -36,7 +36,7 @@ 1 file changed, 10 insertions(+), 13 deletions(-) diff --git a/dirmngr/ks-engine-hkp.c b/dirmngr/ks-engine-hkp.c -index 611e536..a1dece5 100644 +index ef7a717..5793f07 100644 --- a/dirmngr/ks-engine-hkp.c +++ b/dirmngr/ks-engine-hkp.c @@ -225,29 +225,26 @@ host_in_pool_p (hostinfo_t hi, int tblidx) diff -Nru gnupg2-2.2.40/debian/patches/dirmngr-Only-use-SKS-pool-CA-for-SKS-pool.patch gnupg2-2.2.41/debian/patches/dirmngr-Only-use-SKS-pool-CA-for-SKS-pool.patch --- gnupg2-2.2.40/debian/patches/dirmngr-Only-use-SKS-pool-CA-for-SKS-pool.patch 2021-07-02 20:58:25.000000000 +0000 +++ gnupg2-2.2.41/debian/patches/dirmngr-Only-use-SKS-pool-CA-for-SKS-pool.patch 1970-01-01 00:00:00.000000000 +0000 @@ -1,29 +0,0 @@ -From: Daniel Kahn Gillmor -Date: Sun, 30 Jun 2019 11:54:35 -0400 -Subject: dirmngr: Only use SKS pool CA for SKS pool - -* dirmngr/http.c (http_session_new): when checking whether the -keyserver is the HKPS pool, check specifically against the pool name, -as ./configure might have been used to select a different default -keyserver. It makes no sense to apply Kristian's certificate -authority to anything other than the literal host -hkps.pool.sks-keyservers.net. - -Signed-off-by: Daniel Kahn Gillmor ---- - dirmngr/http.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/dirmngr/http.c b/dirmngr/http.c -index f3f820f..f039f03 100644 ---- a/dirmngr/http.c -+++ b/dirmngr/http.c -@@ -768,7 +768,7 @@ http_session_new (http_session_t *r_session, - - is_hkps_pool = (intended_hostname - && !ascii_strcasecmp (intended_hostname, -- get_default_keyserver (1))); -+ "hkps.pool.sks-keyservers.net")); - - /* If we are looking for the hkps pool from sks-keyservers.net, - * then forcefully use its dedicated certificate authority. */ diff -Nru gnupg2-2.2.40/debian/patches/fix-linking-with-new-libgpg-error.patch gnupg2-2.2.41/debian/patches/fix-linking-with-new-libgpg-error.patch --- gnupg2-2.2.40/debian/patches/fix-linking-with-new-libgpg-error.patch 2022-10-17 23:54:43.000000000 +0000 +++ gnupg2-2.2.41/debian/patches/fix-linking-with-new-libgpg-error.patch 1970-01-01 00:00:00.000000000 +0000 @@ -1,41 +0,0 @@ -From: Rob Savoury -Date: Mon, 17 Oct 2022 16:51:28 -0700 -Subject: Fix linking with new libgpg-error - -Building against latest libgpg-error 1.46 results in FTBFS due link error: - - i686-w64-mingw32-gcc -I/usr/i686-w64-mingw32/include - -I/usr/i686-w64-mingw32/include -I/usr/i686-w64-mingw32/include -Wall - -Wno-format-zero-length -Wno-pointer-sign -Wpointer-arith -g -Os -Xlinker - --no-insert-timestamp -static -o gpgv.exe gpgv.o build-packet.o compress.o - free-packet.o getkey.o keydb.o keyring.o seskey.o kbnode.o mainproc.o - armor.o mdfilter.o textfilter.o progress.o misc.o rmd160.o openfile.o - keyid.o parse-packet.o cpr.o plaintext.o sig-check.o keylist.o pkglue.o - ecdh.o verify.o ../kbx/libkeybox.a ../common/libcommon.a - ../regexp/libregexp.a ../common/libgpgrl.a -lz -lws2_32 - -L/usr/i686-w64-mingw32/lib -lgcrypt -L/usr/i686-w64-mingw32/lib -lgpg-error - gpgv-w32info.o - /usr/bin/i686-w64-mingw32-ld: /usr/i686-w64-mingw32/lib/libgpg-error.a - (libgpg_error_la-estream.o): in function `func_sock_ioctl': - ./build-i686-w64-mingw32/src/../../src/estream.c:1342: undefined reference to - `_imp__ioctlsocket@12' - collect2: error: ld returned 1 exit status - -Fix the link error by including ws2_32 (via NETLIBS variable) where required. ---- - g10/Makefile.am | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/g10/Makefile.am b/g10/Makefile.am -index f885673..941228e 100644 ---- a/g10/Makefile.am -+++ b/g10/Makefile.am -@@ -186,7 +186,7 @@ gpg_LDADD = $(LDADD) $(LIBGCRYPT_LIBS) $(SQLITE3_LIBS) $(LIBREADLINE) \ - $(LIBICONV) $(gpg_robjs) $(extra_sys_libs) - gpg_LDFLAGS = $(extra_bin_ldflags) - gpgv_LDADD = $(LDADD) $(LIBGCRYPT_LIBS) \ -- $(GPG_ERROR_LIBS) \ -+ $(GPG_ERROR_LIBS) $(NETLIBS) \ - $(LIBICONV) $(gpgv_robjs) $(extra_sys_libs) - gpgv_LDFLAGS = $(extra_bin_ldflags) - diff -Nru gnupg2-2.2.40/debian/patches/from-master/common-Fix-the-previous-commit.patch gnupg2-2.2.41/debian/patches/from-master/common-Fix-the-previous-commit.patch --- gnupg2-2.2.40/debian/patches/from-master/common-Fix-the-previous-commit.patch 1970-01-01 00:00:00.000000000 +0000 +++ gnupg2-2.2.41/debian/patches/from-master/common-Fix-the-previous-commit.patch 2022-10-19 21:18:48.000000000 +0000 @@ -0,0 +1,54 @@ +From: NIIBE Yutaka +Date: Wed, 24 Jul 2019 15:32:13 +0900 +Subject: common: Fix the previous commit. + +* common/asshelp.c [HAVE_W32_SYSTEM] (start_new_gpg_agent): Use +gnupg_spawn_process_detached. +(start_new_dirmngr): Likewise. + +Signed-off-by: NIIBE Yutaka +(cherry picked from commit 044379772fc5b0f39c6a36809722e702808b6ec3) +--- + common/asshelp.c | 9 +++++++++ + 1 file changed, 9 insertions(+) + +diff --git a/common/asshelp.c b/common/asshelp.c +index 73f159d..9f269ab 100644 +--- a/common/asshelp.c ++++ b/common/asshelp.c +@@ -477,6 +477,10 @@ start_new_gpg_agent (assuan_context_t *r_ctx, + if (!(err = lock_spawning (&lock, gnupg_homedir (), "agent", verbose)) + && assuan_socket_connect (ctx, sockname, 0, 0)) + { ++#ifdef HAVE_W32_SYSTEM ++ err = gnupg_spawn_process_detached (program? program : agent_program, ++ argv, NULL); ++#else + pid_t pid; + + err = gnupg_spawn_process_fd (program? program : agent_program, +@@ -484,6 +488,7 @@ start_new_gpg_agent (assuan_context_t *r_ctx, + if (!err) + err = gnupg_wait_process (program? program : agent_program, + pid, 1, NULL); ++#endif + if (err) + log_error ("failed to start agent '%s': %s\n", + agent_program, gpg_strerror (err)); +@@ -617,12 +622,16 @@ start_new_dirmngr (assuan_context_t *r_ctx, + if (!(err = lock_spawning (&lock, gnupg_homedir (), "dirmngr", verbose)) + && assuan_socket_connect (ctx, sockname, 0, 0)) + { ++#ifdef HAVE_W32_SYSTEM ++ err = gnupg_spawn_process_detached (dirmngr_program, argv, NULL); ++#else + pid_t pid; + + err = gnupg_spawn_process_fd (dirmngr_program, argv, + -1, -1, -1, &pid); + if (!err) + err = gnupg_wait_process (dirmngr_program, pid, 1, NULL); ++#endif + if (err) + log_error ("failed to start the dirmngr '%s': %s\n", + dirmngr_program, gpg_strerror (err)); diff -Nru gnupg2-2.2.40/debian/patches/from-master/common-Use-gnupg_spawn_process_fd-to-invoke-gpg-agent-dir.patch gnupg2-2.2.41/debian/patches/from-master/common-Use-gnupg_spawn_process_fd-to-invoke-gpg-agent-dir.patch --- gnupg2-2.2.40/debian/patches/from-master/common-Use-gnupg_spawn_process_fd-to-invoke-gpg-agent-dir.patch 1970-01-01 00:00:00.000000000 +0000 +++ gnupg2-2.2.41/debian/patches/from-master/common-Use-gnupg_spawn_process_fd-to-invoke-gpg-agent-dir.patch 2022-10-19 21:18:48.000000000 +0000 @@ -0,0 +1,52 @@ +From: NIIBE Yutaka +Date: Wed, 24 Jul 2019 15:15:32 +0900 +Subject: common: Use gnupg_spawn_process_fd to invoke gpg-agent/dirmngr. + +* common/asshelp.c (start_new_gpg_agent): Call gnupg_spawn_process_fd +and gnupg_wait_process. +(start_new_dirmngr): Likewise. + +-- + +With --daemon option, gpg-agent/dirmngr detaches by itself. + +Signed-off-by: NIIBE Yutaka +(cherry picked from commit b1c56cf9e2bb51abfd47747128bd2a6285ed1623) +--- + common/asshelp.c | 16 +++++++++++++--- + 1 file changed, 13 insertions(+), 3 deletions(-) + +diff --git a/common/asshelp.c b/common/asshelp.c +index d87017e..73f159d 100644 +--- a/common/asshelp.c ++++ b/common/asshelp.c +@@ -477,8 +477,13 @@ start_new_gpg_agent (assuan_context_t *r_ctx, + if (!(err = lock_spawning (&lock, gnupg_homedir (), "agent", verbose)) + && assuan_socket_connect (ctx, sockname, 0, 0)) + { +- err = gnupg_spawn_process_detached (program? program : agent_program, +- argv, NULL); ++ pid_t pid; ++ ++ err = gnupg_spawn_process_fd (program? program : agent_program, ++ argv, -1, -1, -1, &pid); ++ if (!err) ++ err = gnupg_wait_process (program? program : agent_program, ++ pid, 1, NULL); + if (err) + log_error ("failed to start agent '%s': %s\n", + agent_program, gpg_strerror (err)); +@@ -612,7 +617,12 @@ start_new_dirmngr (assuan_context_t *r_ctx, + if (!(err = lock_spawning (&lock, gnupg_homedir (), "dirmngr", verbose)) + && assuan_socket_connect (ctx, sockname, 0, 0)) + { +- err = gnupg_spawn_process_detached (dirmngr_program, argv, NULL); ++ pid_t pid; ++ ++ err = gnupg_spawn_process_fd (dirmngr_program, argv, ++ -1, -1, -1, &pid); ++ if (!err) ++ err = gnupg_wait_process (dirmngr_program, pid, 1, NULL); + if (err) + log_error ("failed to start the dirmngr '%s': %s\n", + dirmngr_program, gpg_strerror (err)); diff -Nru gnupg2-2.2.40/debian/patches/from-master/gpg-change-agent-spawn-2019-07-24-v2.patch gnupg2-2.2.41/debian/patches/from-master/gpg-change-agent-spawn-2019-07-24-v2.patch --- gnupg2-2.2.40/debian/patches/from-master/gpg-change-agent-spawn-2019-07-24-v2.patch 2021-07-02 20:58:25.000000000 +0000 +++ gnupg2-2.2.41/debian/patches/from-master/gpg-change-agent-spawn-2019-07-24-v2.patch 1970-01-01 00:00:00.000000000 +0000 @@ -1,50 +0,0 @@ -From: NIIBE Yutaka -Date: Thu, 22 Oct 2020 11:32:00 +0900 -Subject: buildd: sbuild randomly fails to sign changes file despite valid - signature keys - -Forwarded: https://dev.gnupg.org/rGb1c56cf9e2bb51abfd47747128bd2a6285ed1623 ---- - common/asshelp.c | 19 +++++++++++++++++++ - 1 file changed, 19 insertions(+) - -diff --git a/common/asshelp.c b/common/asshelp.c -index d87017e..9f269ab 100644 ---- a/common/asshelp.c -+++ b/common/asshelp.c -@@ -477,8 +477,18 @@ start_new_gpg_agent (assuan_context_t *r_ctx, - if (!(err = lock_spawning (&lock, gnupg_homedir (), "agent", verbose)) - && assuan_socket_connect (ctx, sockname, 0, 0)) - { -+#ifdef HAVE_W32_SYSTEM - err = gnupg_spawn_process_detached (program? program : agent_program, - argv, NULL); -+#else -+ pid_t pid; -+ -+ err = gnupg_spawn_process_fd (program? program : agent_program, -+ argv, -1, -1, -1, &pid); -+ if (!err) -+ err = gnupg_wait_process (program? program : agent_program, -+ pid, 1, NULL); -+#endif - if (err) - log_error ("failed to start agent '%s': %s\n", - agent_program, gpg_strerror (err)); -@@ -612,7 +622,16 @@ start_new_dirmngr (assuan_context_t *r_ctx, - if (!(err = lock_spawning (&lock, gnupg_homedir (), "dirmngr", verbose)) - && assuan_socket_connect (ctx, sockname, 0, 0)) - { -+#ifdef HAVE_W32_SYSTEM - err = gnupg_spawn_process_detached (dirmngr_program, argv, NULL); -+#else -+ pid_t pid; -+ -+ err = gnupg_spawn_process_fd (dirmngr_program, argv, -+ -1, -1, -1, &pid); -+ if (!err) -+ err = gnupg_wait_process (dirmngr_program, pid, 1, NULL); -+#endif - if (err) - log_error ("failed to start the dirmngr '%s': %s\n", - dirmngr_program, gpg_strerror (err)); diff -Nru gnupg2-2.2.40/debian/patches/from-master/gpg-default-to-3072-bit-keys.patch gnupg2-2.2.41/debian/patches/from-master/gpg-default-to-3072-bit-keys.patch --- gnupg2-2.2.40/debian/patches/from-master/gpg-default-to-3072-bit-keys.patch 2022-03-02 17:19:03.000000000 +0000 +++ gnupg2-2.2.41/debian/patches/from-master/gpg-default-to-3072-bit-keys.patch 2022-10-19 21:18:48.000000000 +0000 @@ -25,7 +25,7 @@ 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/agent/command.c b/agent/command.c -index e22e2fa..d42866c 100644 +index b682c55..ea65290 100644 --- a/agent/command.c +++ b/agent/command.c @@ -843,7 +843,7 @@ static const char hlp_genkey[] = @@ -38,10 +38,10 @@ " S: D (public-key\n" " S: D (rsa (n 326487324683264) (e 10001)))\n" diff --git a/doc/wks.texi b/doc/wks.texi -index b0cd5df..3ad91a6 100644 +index e398ccb..68ed117 100644 --- a/doc/wks.texi +++ b/doc/wks.texi -@@ -412,10 +412,10 @@ the submission address: +@@ -447,10 +447,10 @@ the submission address: The output of the last command looks similar to this: @example @@ -55,7 +55,7 @@ Take the fingerprint from that output and manually publish the key: diff --git a/g10/keygen.c b/g10/keygen.c -index fee7523..1b3575a 100644 +index 80d65c4..5b4a785 100644 --- a/g10/keygen.c +++ b/g10/keygen.c @@ -1436,7 +1436,7 @@ gen_elg (int algo, unsigned int nbits, KBNODE pub_root, diff -Nru gnupg2-2.2.40/debian/patches/from-master/gpg-default-to-AES-256.patch gnupg2-2.2.41/debian/patches/from-master/gpg-default-to-AES-256.patch --- gnupg2-2.2.40/debian/patches/from-master/gpg-default-to-AES-256.patch 2021-07-02 20:58:25.000000000 +0000 +++ gnupg2-2.2.41/debian/patches/from-master/gpg-default-to-AES-256.patch 2022-10-19 21:18:48.000000000 +0000 @@ -19,7 +19,7 @@ 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/g10/main.h b/g10/main.h -index 68360e2..1983e42 100644 +index 273ddaa..d1a54db 100644 --- a/g10/main.h +++ b/g10/main.h @@ -31,7 +31,9 @@ diff -Nru gnupg2-2.2.40/debian/patches/gpg-agent-idling/agent-Allow-threads-to-interrupt-main-select-loop-wi.patch gnupg2-2.2.41/debian/patches/gpg-agent-idling/agent-Allow-threads-to-interrupt-main-select-loop-wi.patch --- gnupg2-2.2.40/debian/patches/gpg-agent-idling/agent-Allow-threads-to-interrupt-main-select-loop-wi.patch 2022-03-02 17:19:03.000000000 +0000 +++ gnupg2-2.2.41/debian/patches/gpg-agent-idling/agent-Allow-threads-to-interrupt-main-select-loop-wi.patch 2022-10-19 21:18:48.000000000 +0000 @@ -21,10 +21,10 @@ 2 files changed, 17 insertions(+) diff --git a/agent/agent.h b/agent/agent.h -index d84bb95..9ff145c 100644 +index 56e13ec..d1abf26 100644 --- a/agent/agent.h +++ b/agent/agent.h -@@ -383,6 +383,7 @@ void *get_agent_scd_notify_event (void); +@@ -391,6 +391,7 @@ void *get_agent_scd_notify_event (void); #endif void agent_sighup_action (void); int map_pk_openpgp_to_gcry (int openpgp_algo); @@ -33,10 +33,10 @@ /*-- command.c --*/ gpg_error_t agent_inq_pinentry_launched (ctrl_t ctrl, unsigned long pid, diff --git a/agent/gpg-agent.c b/agent/gpg-agent.c -index 57eeee1..85691e3 100644 +index 309e87c..2882767 100644 --- a/agent/gpg-agent.c +++ b/agent/gpg-agent.c -@@ -458,6 +458,9 @@ static int have_homedir_inotify; +@@ -462,6 +462,9 @@ static int have_homedir_inotify; * works reliable. */ static int reliable_homedir_inotify; @@ -46,7 +46,7 @@ /* Number of active connections. */ static int active_connections; -@@ -2458,6 +2461,10 @@ handle_signal (int signo) +@@ -2470,6 +2473,10 @@ handle_signal (int signo) agent_sigusr2_action (); break; @@ -57,7 +57,7 @@ case SIGTERM: if (!shutdown_pending) log_info ("SIGTERM received - shutting down ...\n"); -@@ -2796,6 +2803,13 @@ start_connection_thread_ssh (void *arg) +@@ -2808,6 +2815,13 @@ start_connection_thread_ssh (void *arg) } @@ -71,7 +71,7 @@ /* helper function for readability: test whether a given struct timespec is set to all-zeros */ static inline int -@@ -2865,8 +2879,10 @@ handle_connections (gnupg_fd_t listen_fd, +@@ -2877,8 +2891,10 @@ handle_connections (gnupg_fd_t listen_fd, npth_sigev_add (SIGUSR1); npth_sigev_add (SIGUSR2); npth_sigev_add (SIGINT); diff -Nru gnupg2-2.2.40/debian/patches/gpg-agent-idling/agent-Avoid-scheduled-checks-on-socket-when-inotify-.patch gnupg2-2.2.41/debian/patches/gpg-agent-idling/agent-Avoid-scheduled-checks-on-socket-when-inotify-.patch --- gnupg2-2.2.40/debian/patches/gpg-agent-idling/agent-Avoid-scheduled-checks-on-socket-when-inotify-.patch 2022-03-02 17:19:03.000000000 +0000 +++ gnupg2-2.2.41/debian/patches/gpg-agent-idling/agent-Avoid-scheduled-checks-on-socket-when-inotify-.patch 2022-10-19 21:18:48.000000000 +0000 @@ -12,10 +12,10 @@ 1 file changed, 2 insertions(+) diff --git a/agent/gpg-agent.c b/agent/gpg-agent.c -index de8063c..330cf3d 100644 +index 0801449..45d2e87 100644 --- a/agent/gpg-agent.c +++ b/agent/gpg-agent.c -@@ -3032,6 +3032,8 @@ handle_connections (gnupg_fd_t listen_fd, +@@ -3044,6 +3044,8 @@ handle_connections (gnupg_fd_t listen_fd, /* avoid a fine-grained timer if we don't need one: */ timertbl[0].interval.tv_sec = need_tick () ? TIMERTICK_INTERVAL : 0; diff -Nru gnupg2-2.2.40/debian/patches/gpg-agent-idling/agent-Avoid-tight-timer-tick-when-possible.patch gnupg2-2.2.41/debian/patches/gpg-agent-idling/agent-Avoid-tight-timer-tick-when-possible.patch --- gnupg2-2.2.40/debian/patches/gpg-agent-idling/agent-Avoid-tight-timer-tick-when-possible.patch 2022-03-02 17:19:03.000000000 +0000 +++ gnupg2-2.2.41/debian/patches/gpg-agent-idling/agent-Avoid-tight-timer-tick-when-possible.patch 2022-10-19 21:18:48.000000000 +0000 @@ -26,7 +26,7 @@ 2 files changed, 29 insertions(+), 2 deletions(-) diff --git a/agent/call-scd.c b/agent/call-scd.c -index 6438693..ee69bb4 100644 +index c5b95f4..762de82 100644 --- a/agent/call-scd.c +++ b/agent/call-scd.c @@ -414,6 +414,8 @@ start_scd (ctrl_t ctrl) @@ -39,10 +39,10 @@ leave: xfree (abs_homedir); diff --git a/agent/gpg-agent.c b/agent/gpg-agent.c -index 85691e3..de8063c 100644 +index 2882767..0801449 100644 --- a/agent/gpg-agent.c +++ b/agent/gpg-agent.c -@@ -2362,6 +2362,26 @@ create_directories (void) +@@ -2374,6 +2374,26 @@ create_directories (void) } @@ -69,7 +69,7 @@ /* This is the worker for the ticker. It is called every few seconds and may only do fast operations. */ -@@ -2718,7 +2738,8 @@ do_start_connection_thread (ctrl_t ctrl) +@@ -2730,7 +2750,8 @@ do_start_connection_thread (ctrl_t ctrl) agent_deinit_default_ctrl (ctrl); xfree (ctrl); @@ -79,7 +79,7 @@ return NULL; } -@@ -2798,7 +2819,8 @@ start_connection_thread_ssh (void *arg) +@@ -2810,7 +2831,8 @@ start_connection_thread_ssh (void *arg) agent_deinit_default_ctrl (ctrl); xfree (ctrl); @@ -89,7 +89,7 @@ return NULL; } -@@ -3008,6 +3030,9 @@ handle_connections (gnupg_fd_t listen_fd, +@@ -3020,6 +3042,9 @@ handle_connections (gnupg_fd_t listen_fd, thus a simple assignment is fine to copy the entire set. */ read_fdset = fdset; diff -Nru gnupg2-2.2.40/debian/patches/gpg-agent-idling/agent-Create-framework-of-scheduled-timers.patch gnupg2-2.2.41/debian/patches/gpg-agent-idling/agent-Create-framework-of-scheduled-timers.patch --- gnupg2-2.2.40/debian/patches/gpg-agent-idling/agent-Create-framework-of-scheduled-timers.patch 2022-03-02 17:19:03.000000000 +0000 +++ gnupg2-2.2.41/debian/patches/gpg-agent-idling/agent-Create-framework-of-scheduled-timers.patch 2022-10-19 21:18:48.000000000 +0000 @@ -31,10 +31,10 @@ 1 file changed, 57 insertions(+), 27 deletions(-) diff --git a/agent/gpg-agent.c b/agent/gpg-agent.c -index da7e51a..57eeee1 100644 +index 3f7aaae..309e87c 100644 --- a/agent/gpg-agent.c +++ b/agent/gpg-agent.c -@@ -2365,12 +2365,8 @@ create_directories (void) +@@ -2377,12 +2377,8 @@ create_directories (void) static void handle_tick (void) { @@ -47,7 +47,7 @@ /* Check whether the scdaemon has died and cleanup in this case. */ agent_scd_check_aliveness (); -@@ -2390,15 +2386,6 @@ handle_tick (void) +@@ -2402,15 +2398,6 @@ handle_tick (void) } #endif /*HAVE_W32_SYSTEM*/ @@ -63,7 +63,7 @@ /* Need to check for expired cache entries. */ agent_cache_housekeeping (); -@@ -2809,6 +2796,15 @@ start_connection_thread_ssh (void *arg) +@@ -2821,6 +2808,15 @@ start_connection_thread_ssh (void *arg) } @@ -79,7 +79,7 @@ /* Connection handler loop. Wait for connection requests and spawn a thread after accepting a connection. */ static void -@@ -2826,9 +2822,11 @@ handle_connections (gnupg_fd_t listen_fd, +@@ -2838,9 +2834,11 @@ handle_connections (gnupg_fd_t listen_fd, gnupg_fd_t fd; int nfd; int saved_errno; @@ -91,7 +91,7 @@ #ifdef HAVE_W32_SYSTEM HANDLE events[2]; unsigned int events_set; -@@ -2845,6 +2843,14 @@ handle_connections (gnupg_fd_t listen_fd, +@@ -2857,6 +2855,14 @@ handle_connections (gnupg_fd_t listen_fd, { "browser", start_connection_thread_browser }, { "ssh", start_connection_thread_ssh } }; @@ -106,7 +106,7 @@ ret = npth_attr_init(&tattr); -@@ -2952,9 +2958,6 @@ handle_connections (gnupg_fd_t listen_fd, +@@ -2964,9 +2970,6 @@ handle_connections (gnupg_fd_t listen_fd, listentbl[2].l_fd = listen_fd_browser; listentbl[3].l_fd = listen_fd_ssh; @@ -116,7 +116,7 @@ for (;;) { /* Shutdown test. */ -@@ -2989,18 +2992,46 @@ handle_connections (gnupg_fd_t listen_fd, +@@ -3001,18 +3004,46 @@ handle_connections (gnupg_fd_t listen_fd, thus a simple assignment is fine to copy the entire set. */ read_fdset = fdset; @@ -172,7 +172,7 @@ npth_sigev_sigmask ()); saved_errno = errno; -@@ -3010,7 +3041,7 @@ handle_connections (gnupg_fd_t listen_fd, +@@ -3022,7 +3053,7 @@ handle_connections (gnupg_fd_t listen_fd, handle_signal (signo); } #else @@ -181,7 +181,7 @@ events, &events_set); saved_errno = errno; -@@ -3055,7 +3086,6 @@ handle_connections (gnupg_fd_t listen_fd, +@@ -3067,7 +3098,6 @@ handle_connections (gnupg_fd_t listen_fd, if (!shutdown_pending) { diff -Nru gnupg2-2.2.40/debian/patches/gpg-drop-import-clean-from-default-keyserver-import-optio.patch gnupg2-2.2.41/debian/patches/gpg-drop-import-clean-from-default-keyserver-import-optio.patch --- gnupg2-2.2.40/debian/patches/gpg-drop-import-clean-from-default-keyserver-import-optio.patch 2022-03-02 17:19:03.000000000 +0000 +++ gnupg2-2.2.41/debian/patches/gpg-drop-import-clean-from-default-keyserver-import-optio.patch 2022-10-19 21:18:48.000000000 +0000 @@ -21,7 +21,7 @@ 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/doc/gpg.texi b/doc/gpg.texi -index 3399e24..77c950a 100644 +index 39c996b..fd0baab 100644 --- a/doc/gpg.texi +++ b/doc/gpg.texi @@ -2005,7 +2005,7 @@ are available for all keyserver types, some common options are: @@ -34,10 +34,10 @@ honor-pka-record". However, if the actual used source is an LDAP server "no-self-sigs-only" is diff --git a/g10/gpg.c b/g10/gpg.c -index eb18521..6f764bd 100644 +index bd65612..d77c757 100644 --- a/g10/gpg.c +++ b/g10/gpg.c -@@ -2379,8 +2379,7 @@ main (int argc, char **argv) +@@ -2383,8 +2383,7 @@ main (int argc, char **argv) opt.export_options = EXPORT_ATTRIBUTES; opt.keyserver_options.import_options = (IMPORT_REPAIR_KEYS | IMPORT_REPAIR_PKS_SUBKEY_BUG diff -Nru gnupg2-2.2.40/debian/patches/import-merge-without-userid/gpg-allow-import-of-previously-known-keys-even-without-UI.patch gnupg2-2.2.41/debian/patches/import-merge-without-userid/gpg-allow-import-of-previously-known-keys-even-without-UI.patch --- gnupg2-2.2.40/debian/patches/import-merge-without-userid/gpg-allow-import-of-previously-known-keys-even-without-UI.patch 2021-07-02 20:58:25.000000000 +0000 +++ gnupg2-2.2.41/debian/patches/import-merge-without-userid/gpg-allow-import-of-previously-known-keys-even-without-UI.patch 2022-12-29 19:09:55.000000000 +0000 @@ -12,15 +12,17 @@ GnuPG-Bug-id: 4393 Signed-off-by: Daniel Kahn Gillmor + +Last-Update: 2022-12-29 --- - g10/import.c | 44 +++++++++++--------------------------------- - 1 file changed, 11 insertions(+), 33 deletions(-) + g10/import.c | 45 +++++++++++---------------------------------- + 1 file changed, 11 insertions(+), 34 deletions(-) diff --git a/g10/import.c b/g10/import.c -index b2d5c1d..078a78c 100644 +index cd3363f..c58c7cd 100644 --- a/g10/import.c +++ b/g10/import.c -@@ -1855,7 +1855,6 @@ import_one_real (ctrl_t ctrl, +@@ -1858,7 +1858,6 @@ import_one_real (ctrl_t ctrl, size_t an; char pkstrbuf[PUBKEY_STRING_SIZE]; int merge_keys_done = 0; @@ -28,7 +30,7 @@ KEYDB_HANDLE hd = NULL; if (r_valid) -@@ -1892,14 +1891,6 @@ import_one_real (ctrl_t ctrl, +@@ -1895,14 +1894,6 @@ import_one_real (ctrl_t ctrl, log_printf ("\n"); } @@ -43,11 +45,12 @@ if (screener && screener (keyblock, screener_arg)) { log_error (_("key %s: %s\n"), keystr_from_pk (pk), -@@ -1974,17 +1965,10 @@ import_one_real (ctrl_t ctrl, +@@ -1977,18 +1968,10 @@ import_one_real (ctrl_t ctrl, } } -- if (!delete_inv_parts (ctrl, keyblock, keyid, options ) ) +- /* Delete invalid parts and bail out if there are no user ids left. */ +- if (!delete_inv_parts (ctrl, keyblock, keyid, options, otherrevsigs)) - { - if (!silent) - { @@ -61,11 +64,11 @@ + /* Delete invalid parts, and note if we have any valid ones left. + * We will later abort import if this key is new but contains + * no valid uids. */ -+ delete_inv_parts (ctrl, keyblock, keyid, options); ++ delete_inv_parts (ctrl, keyblock, keyid, options, otherrevsigs); /* Get rid of deleted nodes. */ commit_kbnode (&keyblock); -@@ -1994,24 +1978,11 @@ import_one_real (ctrl_t ctrl, +@@ -1998,24 +1981,11 @@ import_one_real (ctrl_t ctrl, { apply_keep_uid_filter (ctrl, keyblock, import_filter.keep_uid); commit_kbnode (&keyblock); @@ -90,7 +93,7 @@ } /* The keyblock is valid and ready for real import. */ -@@ -2069,6 +2040,13 @@ import_one_real (ctrl_t ctrl, +@@ -2073,6 +2043,13 @@ import_one_real (ctrl_t ctrl, err = 0; stats->skipped_new_keys++; } diff -Nru gnupg2-2.2.40/debian/patches/series gnupg2-2.2.41/debian/patches/series --- gnupg2-2.2.40/debian/patches/series 2022-10-17 23:55:27.000000000 +0000 +++ gnupg2-2.2.41/debian/patches/series 2022-12-29 19:48:22.000000000 +0000 @@ -15,12 +15,9 @@ import-merge-without-userid/tests-add-test-cases-for-import-without-uid.patch import-merge-without-userid/gpg-allow-import-of-previously-known-keys-even-without-UI.patch import-merge-without-userid/gpg-accept-subkeys-with-a-good-revocation-but-no-self-sig.patch -# disable next patch due shutdown of the SKS keyserver pools -#dirmngr-Only-use-SKS-pool-CA-for-SKS-pool.patch -# disable next patch due new (temporary) default hkps://keyserver.ubuntu.com -#Use-hkps-keys.openpgp.org-as-the-default-keyserver.patch +Use-hkps-keys.openpgp.org-as-the-default-keyserver.patch Make-gpg-zip-use-tar-from-PATH.patch gpg-drop-import-clean-from-default-keyserver-import-optio.patch -from-master/gpg-change-agent-spawn-2019-07-24-v2.patch +from-master/common-Use-gnupg_spawn_process_fd-to-invoke-gpg-agent-dir.patch +from-master/common-Fix-the-previous-commit.patch dirmngr-honor-http-proxy.patch -fix-linking-with-new-libgpg-error.patch diff -Nru gnupg2-2.2.40/debian/patches/update-defaults/gpg-Default-to-SHA-512-for-all-signature-types-on-RS.patch gnupg2-2.2.41/debian/patches/update-defaults/gpg-Default-to-SHA-512-for-all-signature-types-on-RS.patch --- gnupg2-2.2.40/debian/patches/update-defaults/gpg-Default-to-SHA-512-for-all-signature-types-on-RS.patch 2022-03-02 17:19:03.000000000 +0000 +++ gnupg2-2.2.41/debian/patches/update-defaults/gpg-Default-to-SHA-512-for-all-signature-types-on-RS.patch 2022-10-19 21:18:48.000000000 +0000 @@ -20,7 +20,7 @@ 3 files changed, 3 insertions(+), 6 deletions(-) diff --git a/configure.ac b/configure.ac -index 8b1b935..52ee303 100644 +index 6e44af2..0a4ae1e 100644 --- a/configure.ac +++ b/configure.ac @@ -317,7 +317,7 @@ GNUPG_GPG_DISABLE_ALGO([rmd160],[RIPE-MD160 hash]) @@ -33,7 +33,7 @@ # Allow disabling of zip support. diff --git a/g10/main.h b/g10/main.h -index 1983e42..388eae3 100644 +index d1a54db..50ebad0 100644 --- a/g10/main.h +++ b/g10/main.h @@ -41,7 +41,7 @@ @@ -46,10 +46,10 @@ #ifdef HAVE_ZIP # define DEFAULT_COMPRESS_ALGO COMPRESS_ALGO_ZIP diff --git a/g10/misc.c b/g10/misc.c -index 634d303..6fc2d58 100644 +index 0b19e1a..79c285c 100644 --- a/g10/misc.c +++ b/g10/misc.c -@@ -849,11 +849,8 @@ map_md_openpgp_to_gcry (digest_algo_t algo) +@@ -867,11 +867,8 @@ map_md_openpgp_to_gcry (digest_algo_t algo) case DIGEST_ALGO_SHA384: return 0; #endif diff -Nru gnupg2-2.2.40/debian/patches/update-defaults/gpg-Prefer-SHA-512-and-SHA-384-in-personal-digest.patch gnupg2-2.2.41/debian/patches/update-defaults/gpg-Prefer-SHA-512-and-SHA-384-in-personal-digest.patch --- gnupg2-2.2.40/debian/patches/update-defaults/gpg-Prefer-SHA-512-and-SHA-384-in-personal-digest.patch 2022-03-02 17:19:03.000000000 +0000 +++ gnupg2-2.2.41/debian/patches/update-defaults/gpg-Prefer-SHA-512-and-SHA-384-in-personal-digest.patch 2022-10-19 21:18:48.000000000 +0000 @@ -19,7 +19,7 @@ 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/g10/keygen.c b/g10/keygen.c -index 1b3575a..3c81176 100644 +index 5b4a785..2066bf1 100644 --- a/g10/keygen.c +++ b/g10/keygen.c @@ -391,16 +391,16 @@ keygen_set_std_prefs (const char *string,int personal) diff -Nru gnupg2-2.2.40/debian/patches/Use-hkps-keys.openpgp.org-as-the-default-keyserver.patch gnupg2-2.2.41/debian/patches/Use-hkps-keys.openpgp.org-as-the-default-keyserver.patch --- gnupg2-2.2.40/debian/patches/Use-hkps-keys.openpgp.org-as-the-default-keyserver.patch 2021-07-02 20:58:25.000000000 +0000 +++ gnupg2-2.2.41/debian/patches/Use-hkps-keys.openpgp.org-as-the-default-keyserver.patch 2022-10-19 21:18:48.000000000 +0000 @@ -40,31 +40,31 @@ 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac -index d3dc2ae..c2b2410 100644 +index 0a4ae1e..c48cb8c 100644 --- a/configure.ac +++ b/configure.ac -@@ -1859,7 +1859,7 @@ AC_DEFINE_UNQUOTED(SCDAEMON_SOCK_NAME, "S.scdaemon", +@@ -1837,7 +1837,7 @@ AC_DEFINE_UNQUOTED(SCDAEMON_SOCK_NAME, "S.scdaemon", AC_DEFINE_UNQUOTED(DIRMNGR_SOCK_NAME, "S.dirmngr", [The name of the dirmngr socket]) AC_DEFINE_UNQUOTED(DIRMNGR_DEFAULT_KEYSERVER, -- "hkps://hkps.pool.sks-keyservers.net", +- "hkps://keyserver.ubuntu.com", + "hkps://keys.openpgp.org", [The default keyserver for dirmngr to use, if none is explicitly given]) AC_DEFINE_UNQUOTED(GPGEXT_GPG, "gpg", [The standard binary file suffix]) diff --git a/doc/dirmngr.texi b/doc/dirmngr.texi -index ef9ab9f..03c7b32 100644 +index ab831de..f7c7672 100644 --- a/doc/dirmngr.texi +++ b/doc/dirmngr.texi -@@ -332,7 +332,11 @@ whether Tor is locally running or not. The check for a running Tor is +@@ -331,7 +331,11 @@ whether Tor is locally running or not. The check for a running Tor is done for each new connection. If no keyserver is explicitly configured, dirmngr will use the --built-in default of @code{hkps://hkps.pool.sks-keyservers.net}. -+built-in default of @code{hkps://keys.openpgp.org}. +-built-in default of @code{https://keyserver.ubuntu.com}. ++built-in default of @code{https://keys.openpgp.org}. + +Note that the above default is a Debian-specific choice. Upstream -+GnuPG prefers @code{hkps://hkps.pool.sks-keyservers.net}. See ++GnuPG prefers @code{hkps://keyserver.ubuntu.com}. See +/usr/share/doc/gpgconf/NEWS.Debian.gz for more details. Windows users with a keyserver running on their Active Directory diff -Nru gnupg2-2.2.40/debian/scdaemon.lintian-overrides gnupg2-2.2.41/debian/scdaemon.lintian-overrides --- gnupg2-2.2.40/debian/scdaemon.lintian-overrides 2021-12-18 21:45:14.000000000 +0000 +++ gnupg2-2.2.41/debian/scdaemon.lintian-overrides 2022-10-19 21:18:47.000000000 +0000 @@ -1,2 +1,2 @@ # these binaries are stored in /usr/lib/gnupg, as recommended by upstream: -scdaemon: spare-manual-page usr/share/man/man1/scdaemon.1.gz +scdaemon: spare-manual-page [usr/share/man/man1/scdaemon.1.gz] diff -Nru gnupg2-2.2.40/debian/source/lintian-overrides gnupg2-2.2.41/debian/source/lintian-overrides --- gnupg2-2.2.40/debian/source/lintian-overrides 2021-12-18 21:45:15.000000000 +0000 +++ gnupg2-2.2.41/debian/source/lintian-overrides 2022-10-19 21:18:48.000000000 +0000 @@ -1,2 +1,4 @@ # doc merely references / cites IETF RFC: +gnupg2 source: license-problem-non-free-RFC [doc/OpenPGP] +# for the older version of lintian used on ftp-master gnupg2 source: license-problem-non-free-RFC doc/OpenPGP diff -Nru gnupg2-2.2.40/debian/upstream/metadata gnupg2-2.2.41/debian/upstream/metadata --- gnupg2-2.2.40/debian/upstream/metadata 1970-01-01 00:00:00.000000000 +0000 +++ gnupg2-2.2.41/debian/upstream/metadata 2022-10-19 21:18:48.000000000 +0000 @@ -0,0 +1,5 @@ +--- +Bug-Database: https://dev.gnupg.org/maniphest/ +Bug-Submit: https://dev.gnupg.org/maniphest/task/edit/form/3/ +Repository: https://dev.gnupg.org/source/gnupg.git +Repository-Browse: https://dev.gnupg.org/source/gnupg/ diff -Nru gnupg2-2.2.40/debian/upstream/signing-key.asc gnupg2-2.2.41/debian/upstream/signing-key.asc --- gnupg2-2.2.40/debian/upstream/signing-key.asc 2022-04-07 09:40:31.000000000 +0000 +++ gnupg2-2.2.41/debian/upstream/signing-key.asc 2022-10-19 21:18:48.000000000 +0000 @@ -28,59 +28,16 @@ sAtsFCjmbRbOMiASzklnUJPbSz5kfLloDWZmrUScjbzmsXehGyt433JGyRhZJl4x /jPbzKhaaAHsGd+fRao6vlLOwFywDDVMp6JuyK7UeUb7I8ekTbSkGFA+l2Oa3O6/ Y7PYhq7hwwAFuZckYI98IpHNCG1fS9W07FyKdvQbK1PbF1JFRKfsUCWYMKqDnbqE -o5jivPEHZImw6iYhhXcyEYl8fjcb9T6/S+wOP7aviQGzBBABCAAdFiEElKXJoDwv -5co7CV2OH99yPPRitrEFAljLv5sACgkQH99yPPRitrFw4gv/XFMFN+/LHsn9hJOP -4rCwl1yUuxXuYmZgc0sRoY3EpeQkJVyKurQuqqKoy2VuoMiF0O1kAQmGoFtVPUk7 -b8hCoutqB5GyeyKcoLP+WINgVhB2gXg7TSp3MPLBKkgqvSDvPitgRxBqFb4LW8LJ -bDbfwGrzIvXfDV3WvsrHVPbc2fhlWdL8d+3AE6mFiXF3eTpgmV3ApSBQV12MkkCk -icLIPmp+ZxZON+OP52ZXkRtfMgOy4Oa/41agrViDAZdMOGeGkhPertQheQZgXzmo -GF5Wz498HPM80Kv35X91l3iGzL+icEtO+tWea2YscsZ6qpRe2lfVPHk3B+anlmCj -m4kM4cBd39xa4HHSVh/bRHbZNtgVr7slQCKxlHgQOGVI5vCxPCwEsgJ2KBk03Nk/ -IA9EKO+czfh3/bHW6uMbEqrYDCnt+hmzZrpKDSGcwS/KOhvMUIMlb7/8vDKum6mp -/8xAtVZ6IAxYZNt3qg7Y7aLRtzCTyqm8rJQrZPtRaQcgLoEimDMEX0PliRYJKwYB -BAHaRw8BAQdAz75Hlekc16JhhfI0MKdEVxLdkxhcMCO0ZG6WMBAmNpe0H1dlcm5l -ciBLb2NoIChkaXN0IHNpZ25pbmcgMjAyMCmImgQTFgoAQhYhBG2qbmSnbShAVxtJ -AlKIl7gmQDraBQJfQ+w1AhsDBQkShccRBQsJCAcCAyICAQYVCgkICwIEFgIDAQIe -BwIXgAAKCRBSiJe4JkA62nmuAP9uL/HOdB0gvwWrH+FpURJLs4bnaZaPIk9ARrU0 -EXRgJgD/YCGfHQXpIPT0ZaXuwJexK04Z+qMFR/bM1q1Leo5CjgaIbQQQEQsAHRYh -BIBhWHD1utaQMzaG0PKthaweQrNnBQJfQ/HmAAoJEPKthaweQrNnIZkA3jG6LcZv -V/URn8Y8OJqsyYa4C3NI4nN+OhEvYhgA4PHzMnALeXIpA2gblvjFIPJPAhDBAU37 -c5PA6+6IdQQQFggAHRYhBK6oTtzwGthsRwHIXGMROuhmWH0KBQJfQ/IlAAoJEGMR -OuhmWH0K1+MA/0uJ5AHcnSfIBEWHNJwwVVLGyrxAWtS2U+zeymp/UvlPAQDErCLZ -l0dBiPG3vlowFx5TNep7tanBs6ZJn8F1ao1tAIkBMwQQAQgAHRYhBNhpISPEBl3q -Xg86tSSbOdJPJeO2BQJfQ/OuAAoJECSbOdJPJeO2DVoH/0o9if66ph6FJrgr+A/W -HNVeHxmM5tUQhpL1wpRS70SKcsJgolf5CxO5iTQf3HlZe544xGbIU/aCTJsWw9zi -UE8KmhAtKV4eL/7oQ7xx4nxPnABLpudtM8A44nsM1x/XiYrJnnDm29QjYEGd2Hi8 -7npc7VWKzLoj+I/WcXquynJi5O9TUxW9Bknd1pjpxFkf8v+msjBzCD5VKJgr0CR8 -wA6peQBWeGZX2HacosMIZH4TfL0r0TFla6LJIkNBz9DyIm1yL4L8oRH0950hQljP -C7TM3L7aRpX+4Kph6llFz6g7MALGFP95kyJ6o+XED9ORuuQVZMBMIkNC0tXOu10V -bdqIdQQQFgoAHRYhBMHTS2khnkruwLocIeP9/yGORbcrBQJfQ/P8AAoJEOP9/yGO -Rbcr3lQBAMas8Vl3Hdl3g2I283lz1uHiGvlwcnk2TLeB+U4zIwC9AQCy0nnazVNt -VQPID1ZCMoaOX7AzOjaqQDLf4j+dVTxgBJgzBGCkgocWCSsGAQQB2kcPAQEHQJmd -fwp8jEN5P3eEjhQiWk6zQi8utvgOvYD57XmE+H8+tCBOaWliZSBZdXRha2EgKEdu -dVBHIFJlbGVhc2UgS2V5KYiaBBMWCgBCFiEErI4RW/c+LY1H+pkI6Y6bLRnGyL0F -AmCkgocCGwMFCQsNBpkFCwkIBwIDIgIBBhUKCQgLAgQWAgMBAh4HAheAAAoJEOmO -my0Zxsi9/4IA/1rvSr3MU+Sv4jhNDzD+CeC3gmHkPew6pi9VHEsEwdgmAQD2BtiX -7w1sJL/CBylGWv5jxj4345mP9YfZm0RsgzPjDIh1BBAWCAAdFiEEJJyzdxdQdF1c -3TI84mewUjZPAo0FAmFAQ54ACgkQ4mewUjZPAo1CiAD+KTT1UVdQTGHMyvHwZocS -QjU8xhcZrTet+dvvjrE5+4MA/RBdJPZgFevUKu68NEy0Lo+RbkeCtmQJ/c8v5ieF -vW0AiQEzBBABCAAdFiEEEkEkvTtIYq96CkLxALRevUynur4FAmFAQ7cACgkQALRe -vUynur4kaAgAolPR8TNWVS0vXMKrr0k0l2M/8QkZTaLZx1GT9Nx1yb4WJKY7ElPM -YkhGDxetvFBETx0pH/6R3jtj6Crmur+NKHVSRY+rCYpFPDn6ciIOryssRx2G4kCZ -t+nFB9JyDbBOZAR8DK4pN1mAxG/yLDt4oKcUQsP2xlEFum+phxyR8KyYCpkwKRxY -eK+6lfilQuveoUwp/Xx5wXPNUy6q4eOOovCW7gS7I7288NGHCa2ul8sD6vA9C4mM -4Zxaole9P9wwJe1zZFtCIy88zHM9vqv+YM9DxMCaW24+rUztr7eD4bCRdG+QlSh+ -7R/TaqSxY1eAAd1J5tma9CNJO73pTKU+/JhTBGFpSqMTCSskAwMCCAEBBwIDBF6X -D9NmUQDgiyYNbhs1DMJ14mIw812wY1HVx/4QWYWiBunhrvSFxVbzsjD7/Wv+v3bm -MPrL+M2DLyFiSewNmcS0JEdudVBHLmNvbSAoUmVsZWFzZSBTaWduaW5nIEtleSAy -MDIxKYiaBBMTCABCFiEEAvON/3Mf+XywOaHaVJ5pXpBboggFAmFpSqMCGwMFCQ9x -14oFCwkIBwIDIgIBBhUKCQgLAgQWAgMBAh4HAheAAAoJEFSeaV6QW6IITkoA/RYa -jaTl1eEBU/Gdm12o3jrI55N5xZK2XTqSx25clVyjAP0XwMW/Og5+ND1ri3bAqADV -WlBDUswz8wYxsb0C4kYBkoh1BBAWCgAdFiEEbapuZKdtKEBXG0kCUoiXuCZAOtoF -AmFpTvEACgkQUoiXuCZAOtrJQAEAh7YyykjAy/Qs1yC3ji8iBfIVnPXvblrIx3SR -RyDwRC8BAKtZbEuKTtPlgkLUgMleTcZJ/vEhJE+GvfQ9o5gWCqEFiHUEEBYKAB0W -IQTB00tpIZ5K7sC6HCHj/f8hjkW3KwUCYWlPWgAKCRDj/f8hjkW3Kx4eAQDp6aGS -N/fU4xLl8RSvQUVjVA+aCTrMQR3hRwqw8liF2wEA3O3ECxz6e1+DoItYoJBBLKLw -eiInsGZ/+h5XYrpXTgA= -=4+Sn +o5jivPEHZImw6iYhhXcyEYl8fjcb9T6/S+wOP7avmDMEX0PliRYJKwYBBAHaRw8B +AQdAz75Hlekc16JhhfI0MKdEVxLdkxhcMCO0ZG6WMBAmNpe0H1dlcm5lciBLb2No +IChkaXN0IHNpZ25pbmcgMjAyMCmImgQTFgoAQhYhBG2qbmSnbShAVxtJAlKIl7gm +QDraBQJfQ+w1AhsDBQkShccRBQsJCAcCAyICAQYVCgkICwIEFgIDAQIeBwIXgAAK +CRBSiJe4JkA62nmuAP9uL/HOdB0gvwWrH+FpURJLs4bnaZaPIk9ARrU0EXRgJgD/ +YCGfHQXpIPT0ZaXuwJexK04Z+qMFR/bM1q1Leo5CjgaYMwRgpIKHFgkrBgEEAdpH +DwEBB0CZnX8KfIxDeT93hI4UIlpOs0IvLrb4Dr2A+e15hPh/PrQgTmlpYmUgWXV0 +YWthIChHbnVQRyBSZWxlYXNlIEtleSmImgQTFgoAQhYhBKyOEVv3Pi2NR/qZCOmO +my0Zxsi9BQJgpIKHAhsDBQkLDQaZBQsJCAcCAyICAQYVCgkICwIEFgIDAQIeBwIX +gAAKCRDpjpstGcbIvf+CAP9a70q9zFPkr+I4TQ8w/gngt4Jh5D3sOqYvVRxLBMHY +JgEA9gbYl+8NbCS/wgcpRlr+Y8Y+N+OZj/WH2ZtEbIMz4ww= +=ISI5 -----END PGP PUBLIC KEY BLOCK----- diff -Nru gnupg2-2.2.40/dirmngr/server.c gnupg2-2.2.41/dirmngr/server.c --- gnupg2-2.2.40/dirmngr/server.c 2022-10-07 11:51:30.000000000 +0000 +++ gnupg2-2.2.41/dirmngr/server.c 2022-10-20 10:22:07.000000000 +0000 @@ -3135,8 +3135,10 @@ ctrl->refcount); else { +#if USE_LDAP ks_ldap_free_state (ctrl->ks_get_state); ctrl->ks_get_state = NULL; +#endif release_ctrl_ocsp_certs (ctrl); xfree (ctrl->server_local); dirmngr_deinit_default_ctrl (ctrl); diff -Nru gnupg2-2.2.40/doc/defsincdate gnupg2-2.2.41/doc/defsincdate --- gnupg2-2.2.40/doc/defsincdate 2022-10-10 11:58:02.000000000 +0000 +++ gnupg2-2.2.41/doc/defsincdate 2022-12-09 08:48:40.000000000 +0000 @@ -1 +1 @@ -1665157484 +1669803936 diff -Nru gnupg2-2.2.40/doc/DETAILS gnupg2-2.2.41/doc/DETAILS --- gnupg2-2.2.40/doc/DETAILS 2022-02-24 13:06:37.000000000 +0000 +++ gnupg2-2.2.41/doc/DETAILS 2022-11-25 12:56:27.000000000 +0000 @@ -1540,6 +1540,37 @@ * Miscellaneous notes +** List of useful RFCs and I-D. + - RFC-1423 :: PEM, Part III: Algorithms, Modes, and Identifiers + - RFC-1750 :: Randomness Recommendations for Security + - RFC-1991 :: PGP Message Exchange Formats (obsolete) + - RFC-2144 :: The CAST-128 Encryption Algorithm + - RFC-2279 :: UTF-8, a transformation format of ISO 10646 + - RFC-2440 :: OpenPGP (obsolete). + - RFC-3156 :: MIME Security with Pretty Good Privacy (PGP). + - RFC-3447 :: PKCS #1: RSA Cryptography Specifications Version 2.1 + - RFC-4880 :: OpenPGP + - RFC-5083 :: CMS - Authenticated-Enveloped-Data + - RFC-5084 :: CMS - AES-GCM + - RFC-5280 :: X.509 PKI Certificate and CRL Profile + - RFC-5480 :: ECC Subject Public Key Information + - RFC-5639 :: ECC Brainpool Standard Curves + - RFC-5652 :: CMS (STD0070) + - RFC-5753 :: ECC in CMS + - RFC-5758 :: CMS - Additional Algorithms for DSA and ECDSA + - RFC-6818 :: Updates to the X.509 PKI Certificate and CRL Profile + - RFC-6960 :: Online Certificate Status Protocol - OCSP + - RFC-8954 :: Online Certificate Status Protocol (OCSP) Nonce Extension + - RFC-8398 :: Internationalized Email Addresses in X.509 Certificates + - RFC-8399 :: Internationalization Updates to RFC 5280 + - RFC-8813 :: Clarifications for ECC Subject Public Key + - RFC-5915 :: ECC Private Key Structure + - RFC-5958 :: Asymmetric Key Packages + - RFC-6337 :: ECC in OpenPGP + - RFC-7292 :: PKCS #12: Personal Information Exchange Syntax v1.1 + - RFC-8351 :: The PKCS #8 EncryptedPrivateKeyInfo Media Type + + - draft-koch-openpgp-2015-rfc4880bis :: Updates to RFC-4880 ** v3 fingerprints For packet version 3 we calculate the keyids this way: Binary files /tmp/tmpp8wxn021/8c8sKM9mxi/gnupg2-2.2.40/doc/gnupg-card-architecture.pdf and /tmp/tmpp8wxn021/sgn7BhUbzZ/gnupg2-2.2.41/doc/gnupg-card-architecture.pdf differ diff -Nru gnupg2-2.2.40/doc/gnupg.info gnupg2-2.2.41/doc/gnupg.info --- gnupg2-2.2.40/doc/gnupg.info 2022-10-07 15:44:54.000000000 +0000 +++ gnupg2-2.2.41/doc/gnupg.info 2022-11-30 10:25:56.000000000 +0000 @@ -1,7 +1,7 @@ This is gnupg.info, produced by makeinfo version 6.5 from gnupg.texi. -This is the 'The GNU Privacy Guard Manual' (version 2.2.40-beta3, -October 2022). +This is the 'The GNU Privacy Guard Manual' (version 2.2.41-beta63, +November 2022). (C) 2002, 2004, 2005, 2006, 2007, 2010 Free Software Foundation, Inc. (C) 2013, 2014, 2015 Werner Koch. @@ -23,202 +23,202 @@  Indirect: -gnupg.info-1: 990 -gnupg.info-2: 305399 +gnupg.info-1: 992 +gnupg.info-2: 301104  Tag Table: (Indirect) -Node: Top990 -Node: Installation2917 -Node: Invoking GPG-AGENT5266 -Node: Agent Commands7032 -Node: Agent Options8836 -Ref: option --options9116 -Ref: option --homedir9442 -Ref: option --log-file14860 -Ref: option --no-allow-mark-trusted15233 -Ref: option --no-user-trustlist15437 -Ref: option --allow-preset-passphrase15903 -Ref: option --no-allow-loopback-pinentry16056 -Ref: option --extra-socket24409 -Ref: option --enable-ssh-support25875 -Ref: option --ssh-fingerprint-digest28212 -Node: Agent Configuration29869 -Node: Agent Signals35359 -Node: Agent Examples36819 -Node: Agent Protocol37386 -Node: Agent PKDECRYPT39540 -Node: Agent PKSIGN41452 -Node: Agent GENKEY43756 -Node: Agent IMPORT45653 -Node: Agent EXPORT46097 -Node: Agent ISTRUSTED46312 -Node: Agent GET_PASSPHRASE48687 -Node: Agent CLEAR_PASSPHRASE51128 -Node: Agent PRESET_PASSPHRASE51519 -Node: Agent GET_CONFIRMATION52357 -Node: Agent HAVEKEY53029 -Node: Agent LEARN53661 -Node: Agent PASSWD53959 -Node: Agent UPDATESTARTUPTTY54425 -Node: Agent GETEVENTCOUNTER54903 -Node: Agent GETINFO55705 -Node: Agent OPTION56409 -Node: Invoking DIRMNGR59467 -Node: Dirmngr Commands60365 -Node: Dirmngr Options62818 -Ref: Dirmngr Options-Footnote-181071 -Node: Dirmngr Configuration81206 -Node: Dirmngr Signals84336 -Node: Dirmngr Examples85364 -Node: Dirmngr Protocol86046 -Node: Dirmngr LOOKUP86696 -Node: Dirmngr ISVALID88067 -Node: Dirmngr CHECKCRL90640 -Node: Dirmngr CHECKOCSP91697 -Node: Dirmngr CACHECERT93003 -Node: Dirmngr VALIDATE93842 -Node: Invoking GPG94410 -Node: GPG Commands95640 -Node: General GPG Commands96534 -Node: Operational GPG Commands97223 -Ref: option --export-ownertrust114524 -Node: OpenPGP Key Management116637 -Node: GPG Options138596 -Node: GPG Configuration Options139929 -Ref: gpg-option --options153467 -Ref: trust-model-tofu158035 -Node: GPG Key related Options178353 -Node: GPG Input and Output183549 -Node: OpenPGP Options197253 -Node: Compliance Options201981 -Node: GPG Esoteric Options205925 -Ref: GPG Esoteric Options-Footnote-1233647 -Node: Deprecated Options233801 -Node: GPG Configuration235304 -Node: GPG Examples241192 -Node: Unattended Usage of GPG250002 -Node: Programmatic use of GnuPG250633 -Node: Ephemeral home directories251184 -Node: The quick key manipulation interface252491 -Node: Unattended GPG key generation253078 -Node: Invoking GPGSM262397 -Node: GPGSM Commands263266 -Node: General GPGSM Commands263704 -Node: Operational GPGSM Commands264392 -Node: Certificate Management266426 -Node: GPGSM Options271402 -Node: Configuration Options271976 -Ref: gpgsm-option --options272245 -Node: Certificate Options275368 -Ref: gpgsm-option --validation-model278972 -Node: Input and Output279952 -Ref: option --p12-charset280535 -Ref: gpgsm-option --with-key-data281779 -Ref: gpgsm-option --with-validation282053 -Node: CMS Options282931 -Node: Esoteric Options283951 -Node: GPGSM Configuration291184 -Node: GPGSM Examples296852 -Node: Unattended Usage297049 -Node: Automated signature checking297640 -Node: CSR and certificate creation299463 -Node: GPGSM Protocol305399 -Node: GPGSM ENCRYPT306655 -Node: GPGSM DECRYPT309330 -Node: GPGSM SIGN310166 -Node: GPGSM VERIFY311622 -Node: GPGSM GENKEY312138 -Node: GPGSM LISTKEYS313153 -Ref: gpgsm-cmd listkeys313312 -Node: GPGSM EXPORT314065 -Node: GPGSM IMPORT315029 -Node: GPGSM DELETE315770 -Node: GPGSM GETAUDITLOG316277 -Ref: gpgsm-cmd getauditlog316446 -Node: GPGSM GETINFO316790 -Node: GPGSM OPTION317639 -Node: Invoking SCDAEMON320992 -Node: Scdaemon Commands321666 -Node: Scdaemon Options322794 -Node: Card applications332236 -Node: OpenPGP Card332901 -Node: NKS Card333374 -Node: DINSIG Card333700 -Node: PKCS#15 Card334076 -Node: Geldkarte Card334346 -Node: SmartCard-HSM334737 -Node: Undefined Card335333 -Node: Scdaemon Configuration335746 -Node: Scdaemon Examples336784 -Node: Scdaemon Protocol336967 -Node: Scdaemon SERIALNO338486 -Node: Scdaemon LEARN339332 -Node: Scdaemon READCERT340179 -Node: Scdaemon READKEY340581 -Node: Scdaemon PKSIGN340867 -Node: Scdaemon PKDECRYPT341593 -Node: Scdaemon GETATTR342343 -Node: Scdaemon SETATTR342545 -Node: Scdaemon WRITEKEY342750 -Node: Scdaemon GENKEY343452 -Node: Scdaemon RANDOM343655 -Node: Scdaemon PASSWD343878 -Node: Scdaemon CHECKPIN344269 -Node: Scdaemon RESTART345272 -Node: Scdaemon APDU345805 -Node: Specify a User ID346778 -Ref: how-to-specify-a-user-id346936 -Node: Trust Values351794 -Ref: trust-values351923 -Node: Helper Tools352528 -Node: watchgnupg353380 -Ref: option watchgnupg --tcp354202 -Node: gpgv355780 -Node: addgnupghome360979 -Node: gpgconf361675 -Ref: gpgconf-Footnote-1363862 -Node: Invoking gpgconf364160 -Node: Format conventions370852 -Node: Listing components376183 -Node: Checking programs378266 -Node: Listing options381004 -Node: Changing options388710 -Node: Listing global options390412 -Node: Querying versions392392 -Node: Files used by gpgconf395090 -Node: applygnupgdefaults395696 -Node: gpg-preset-passphrase396566 -Node: Invoking gpg-preset-passphrase397601 -Node: gpg-connect-agent399003 -Node: Invoking gpg-connect-agent399717 -Node: Controlling gpg-connect-agent403263 -Node: dirmngr-client409736 -Node: gpgparsemail413087 -Node: gpgtar413400 -Node: gpg-check-pattern418128 -Node: Web Key Service420430 -Node: gpg-wks-client420743 -Node: gpg-wks-server426549 -Node: Howtos431906 -Node: Howto Create a Server Cert432178 -Node: System Notes440591 -Node: W32 Notes441802 -Node: Debugging442224 -Node: Debugging Tools443052 -Node: kbxutil443332 -Node: Debugging Hints444863 -Node: Common Problems445994 -Node: Architecture Details451231 -Node: Component interaction451541 -Ref: fig:moduleoverview451727 -Node: GnuPG-1 and GnuPG-2451834 -Ref: fig:cardarchitecture452124 -Node: Copying452239 -Node: Contributors489763 -Node: Glossary496018 -Node: Option Index498537 -Node: Environment Index579841 -Node: Index585434 +Node: Top992 +Node: Installation2921 +Node: Invoking GPG-AGENT5270 +Node: Agent Commands7036 +Node: Agent Options8840 +Ref: option --options9120 +Ref: option --homedir9446 +Ref: option --log-file14864 +Ref: option --no-allow-mark-trusted15237 +Ref: option --no-user-trustlist15441 +Ref: option --allow-preset-passphrase15927 +Ref: option --no-allow-loopback-pinentry16080 +Ref: option --extra-socket24443 +Ref: option --enable-ssh-support25909 +Ref: option --ssh-fingerprint-digest28246 +Node: Agent Configuration29903 +Node: Agent Signals35413 +Node: Agent Examples36873 +Node: Agent Protocol37440 +Node: Agent PKDECRYPT39594 +Node: Agent PKSIGN41506 +Node: Agent GENKEY43810 +Node: Agent IMPORT45707 +Node: Agent EXPORT46151 +Node: Agent ISTRUSTED46366 +Node: Agent GET_PASSPHRASE48741 +Node: Agent CLEAR_PASSPHRASE51182 +Node: Agent PRESET_PASSPHRASE51573 +Node: Agent GET_CONFIRMATION52411 +Node: Agent HAVEKEY53083 +Node: Agent LEARN53715 +Node: Agent PASSWD54013 +Node: Agent UPDATESTARTUPTTY54479 +Node: Agent GETEVENTCOUNTER54957 +Node: Agent GETINFO55759 +Node: Agent OPTION56463 +Node: Invoking DIRMNGR59521 +Node: Dirmngr Commands60419 +Node: Dirmngr Options62872 +Ref: Dirmngr Options-Footnote-181125 +Node: Dirmngr Configuration81260 +Node: Dirmngr Signals84390 +Node: Dirmngr Examples85418 +Node: Dirmngr Protocol86100 +Node: Dirmngr LOOKUP86750 +Node: Dirmngr ISVALID88121 +Node: Dirmngr CHECKCRL90694 +Node: Dirmngr CHECKOCSP91751 +Node: Dirmngr CACHECERT93057 +Node: Dirmngr VALIDATE93896 +Node: Invoking GPG94464 +Node: GPG Commands95694 +Node: General GPG Commands96588 +Node: Operational GPG Commands97277 +Ref: option --export-ownertrust114578 +Node: OpenPGP Key Management116691 +Node: GPG Options138650 +Node: GPG Configuration Options139983 +Ref: gpg-option --options153521 +Ref: trust-model-tofu158089 +Node: GPG Key related Options178407 +Node: GPG Input and Output183603 +Node: OpenPGP Options197494 +Node: Compliance Options202222 +Node: GPG Esoteric Options206166 +Ref: GPG Esoteric Options-Footnote-1234271 +Node: Deprecated Options234425 +Node: GPG Configuration235928 +Node: GPG Examples241826 +Node: Unattended Usage of GPG250636 +Node: Programmatic use of GnuPG251267 +Node: Ephemeral home directories251818 +Node: The quick key manipulation interface253125 +Node: Unattended GPG key generation253712 +Node: Invoking GPGSM263031 +Node: GPGSM Commands263900 +Node: General GPGSM Commands264338 +Node: Operational GPGSM Commands265026 +Node: Certificate Management267060 +Node: GPGSM Options272036 +Node: Configuration Options272610 +Ref: gpgsm-option --options272879 +Node: Certificate Options276002 +Ref: gpgsm-option --validation-model279606 +Node: Input and Output280586 +Ref: option --p12-charset281169 +Ref: gpgsm-option --with-key-data282413 +Ref: gpgsm-option --with-validation282687 +Node: CMS Options283565 +Node: Esoteric Options284585 +Node: GPGSM Configuration291818 +Node: GPGSM Examples297501 +Node: Unattended Usage297698 +Node: Automated signature checking298289 +Node: CSR and certificate creation301104 +Node: GPGSM Protocol306050 +Node: GPGSM ENCRYPT307306 +Node: GPGSM DECRYPT309981 +Node: GPGSM SIGN310817 +Node: GPGSM VERIFY312273 +Node: GPGSM GENKEY312789 +Node: GPGSM LISTKEYS313804 +Ref: gpgsm-cmd listkeys313963 +Node: GPGSM EXPORT314716 +Node: GPGSM IMPORT315680 +Node: GPGSM DELETE316421 +Node: GPGSM GETAUDITLOG316928 +Ref: gpgsm-cmd getauditlog317097 +Node: GPGSM GETINFO317441 +Node: GPGSM OPTION318290 +Node: Invoking SCDAEMON321643 +Node: Scdaemon Commands322317 +Node: Scdaemon Options323445 +Node: Card applications332887 +Node: OpenPGP Card333552 +Node: NKS Card334025 +Node: DINSIG Card334351 +Node: PKCS#15 Card334727 +Node: Geldkarte Card334997 +Node: SmartCard-HSM335388 +Node: Undefined Card335984 +Node: Scdaemon Configuration336397 +Node: Scdaemon Examples337435 +Node: Scdaemon Protocol337618 +Node: Scdaemon SERIALNO339147 +Node: Scdaemon LEARN339993 +Node: Scdaemon READCERT340840 +Node: Scdaemon READKEY341242 +Node: Scdaemon PKSIGN341528 +Node: Scdaemon PKDECRYPT342254 +Node: Scdaemon GETATTR343004 +Node: Scdaemon SETATTR343206 +Node: Scdaemon WRITEKEY343411 +Node: Scdaemon GENKEY344113 +Node: Scdaemon RANDOM344316 +Node: Scdaemon PASSWD344539 +Node: Scdaemon CHECKPIN344930 +Node: Scdaemon RESTART345933 +Node: Scdaemon APDU346466 +Node: Specify a User ID347439 +Ref: how-to-specify-a-user-id347597 +Node: Trust Values352455 +Ref: trust-values352584 +Node: Helper Tools353189 +Node: watchgnupg354041 +Ref: option watchgnupg --tcp354863 +Node: gpgv356441 +Node: addgnupghome361640 +Node: gpgconf362336 +Ref: gpgconf-Footnote-1364523 +Node: Invoking gpgconf364821 +Node: Format conventions371513 +Node: Listing components376844 +Node: Checking programs378927 +Node: Listing options381665 +Node: Changing options389371 +Node: Listing global options391073 +Node: Querying versions393053 +Node: Files used by gpgconf395751 +Node: applygnupgdefaults396357 +Node: gpg-preset-passphrase397227 +Node: Invoking gpg-preset-passphrase398262 +Node: gpg-connect-agent399664 +Node: Invoking gpg-connect-agent400378 +Node: Controlling gpg-connect-agent403924 +Node: dirmngr-client410397 +Node: gpgparsemail413748 +Node: gpgtar414061 +Node: gpg-check-pattern418789 +Node: Web Key Service421091 +Node: gpg-wks-client421404 +Node: gpg-wks-server427547 +Node: Howtos432904 +Node: Howto Create a Server Cert433176 +Node: System Notes441589 +Node: W32 Notes442800 +Node: Debugging443222 +Node: Debugging Tools444050 +Node: kbxutil444330 +Node: Debugging Hints445861 +Node: Common Problems446992 +Node: Architecture Details452229 +Node: Component interaction452539 +Ref: fig:moduleoverview452725 +Node: GnuPG-1 and GnuPG-2452832 +Ref: fig:cardarchitecture453122 +Node: Copying453237 +Node: Contributors490761 +Node: Glossary497016 +Node: Option Index499535 +Node: Environment Index581048 +Node: Index586641  End Tag Table diff -Nru gnupg2-2.2.40/doc/gnupg.info-1 gnupg2-2.2.41/doc/gnupg.info-1 --- gnupg2-2.2.40/doc/gnupg.info-1 2022-10-07 15:44:54.000000000 +0000 +++ gnupg2-2.2.41/doc/gnupg.info-1 2022-11-30 10:25:56.000000000 +0000 @@ -1,7 +1,7 @@ This is gnupg.info, produced by makeinfo version 6.5 from gnupg.texi. -This is the 'The GNU Privacy Guard Manual' (version 2.2.40-beta3, -October 2022). +This is the 'The GNU Privacy Guard Manual' (version 2.2.41-beta63, +November 2022). (C) 2002, 2004, 2005, 2006, 2007, 2010 Free Software Foundation, Inc. (C) 2013, 2014, 2015 Werner Koch. @@ -27,8 +27,8 @@ Using the GNU Privacy Guard *************************** -This is the 'The GNU Privacy Guard Manual' (version 2.2.40-beta3, -October 2022). +This is the 'The GNU Privacy Guard Manual' (version 2.2.41-beta63, +November 2022). (C) 2002, 2004, 2005, 2006, 2007, 2010 Free Software Foundation, Inc. (C) 2013, 2014, 2015 Werner Koch. @@ -396,14 +396,14 @@ '--no-user-trustlist' Entirely ignore the user trust list and consider only the global - trustlist ('/etc/gnupg/trustlist.txt'). This implies the *note - option --no-allow-mark-trusted::. + trustlist ('/usr/local/etc/gnupg/trustlist.txt'). This implies the + *note option --no-allow-mark-trusted::. '--sys-trustlist-name FILE' Changes the default name for the global trustlist from "trustlist.txt" to FILE. If FILE does not contain any slashes and does not start with "~/" it is searched in the system configuration - directory ('/etc/gnupg'). + directory ('/usr/local/etc/gnupg'). '--allow-preset-passphrase' This option allows the use of 'gpg-preset-passphrase' to seed the @@ -487,10 +487,10 @@ entering a new passphrase matching one of these pattern a warning will be displayed. If FILE does not contain any slashes and does not start with "~/" it is searched in the system configuration - directory ('/etc/gnupg'). The default is not to use any pattern - file. The second version of this option is only used when creating - a new symmetric key to allow the use of different patterns for such - passphrases. + directory ('/usr/local/etc/gnupg'). The default is not to use any + pattern file. The second version of this option is only used when + creating a new symmetric key to allow the use of different patterns + for such passphrases. Security note: It is known that checking a passphrase against a list of pattern or even against a complete dictionary is not very @@ -766,10 +766,10 @@ changed inadvertently. As a special feature a line 'include-default' will include a global - list of trusted certificates (e.g. '/etc/gnupg/trustlist.txt'). - This global list is also used if the local list is not available; - the *note option --no-user-trustlist:: enforces the use of only - this global list. + list of trusted certificates (e.g. + '/usr/local/etc/gnupg/trustlist.txt'). This global list is also + used if the local list is not available; the *note option + --no-user-trustlist:: enforces the use of only this global list. It is possible to add further flags after the 'S' for use by the caller: @@ -824,9 +824,10 @@ directory and take great care to keep this backup closed away. Note that on larger installations, it is useful to put predefined -files into the directory '/etc/skel/.gnupg' so that newly created users -start up with a working configuration. For existing users the a small -helper script is provided to create these files (*note addgnupghome::). +files into the directory '/usr/local/etc/skel/.gnupg' so that newly +created users start up with a working configuration. For existing users +the a small helper script is provided to create these files (*note +addgnupghome::).  File: gnupg.info, Node: Agent Signals, Next: Agent Examples, Prev: Agent Configuration, Up: Invoking GPG-AGENT @@ -4593,6 +4594,11 @@ printed before each record to allow diverting the records to the corresponding zone file. + export-revocs + Export only standalone revocation certificates of the key. + This option does not export revocations of 3rd party + certificate revocations. + export-dane Instead of outputting the key material output OpenPGP DANE records suitable to put into DNS zone files. An ORIGIN line @@ -4858,6 +4864,14 @@ '--interactive' Prompt before overwriting any files. +'--compatibility-flags FLAGS' + Set compatibility flags to work around problems due to + non-compliant keys or data. The FLAGS are given as a comma + separated list of flag names and are OR-ed together. The special + flag "none" clears the list and allows to start over with an empty + list. To get a list of available flags the sole word "help" can be + used. + '--debug-level LEVEL' Select the debug level for investigating problems. LEVEL may be a numeric value or by a keyword: @@ -5514,9 +5528,10 @@ --options::). You should backup this file. Note that on larger installations, it is useful to put predefined -files into the directory '/etc/skel/.gnupg' so that newly created users -start up with a working configuration. For existing users a small -helper script is provided to create these files (*note addgnupghome::). +files into the directory '/usr/local/etc/skel/.gnupg' so that newly +created users start up with a working configuration. For existing users +a small helper script is provided to create these files (*note +addgnupghome::). For internal purposes 'gpg' creates and maintains a few other files; They all live in the current home directory (*note option --homedir::). @@ -6946,8 +6961,9 @@ files in the data directory (e.g. '/usr/local/share/gnupg/gnupg/help.de.txt') and allows overriding of any help item by help files stored in the system configuration - directory (e.g. '/etc/gnupg/help.de.txt'). For a reference of the - help file's syntax, please see the installed 'help.txt' file. + directory (e.g. '/usr/local/etc/gnupg/help.de.txt'). For a + reference of the help file's syntax, please see the installed + 'help.txt' file. 'com-certs.pem' This file is a collection of common certificates used to populated @@ -7048,125 +7064,3 @@ cannot be decided whether the signature is valid or invalid. A common reason for this is a missing certificate. - -File: gnupg.info, Node: CSR and certificate creation, Prev: Automated signature checking, Up: Unattended Usage - -5.5.2 CSR and certificate creation ----------------------------------- - -The command '--generate-key' may be used along with the option '--batch' -to either create a certificate signing request (CSR) or an X.509 -certificate. This is controlled by a parameter file; the format of this -file is as follows: - - * Text only, line length is limited to about 1000 characters. - * UTF-8 encoding must be used to specify non-ASCII characters. - * Empty lines are ignored. - * Leading and trailing while space is ignored. - * A hash sign as the first non white space character indicates a - comment line. - * Control statements are indicated by a leading percent sign, the - arguments are separated by white space from the keyword. - * Parameters are specified by a keyword, followed by a colon. - Arguments are separated by white space. - * The first parameter must be 'Key-Type', control statements may be - placed anywhere. - * The order of the parameters does not matter except for 'Key-Type' - which must be the first parameter. The parameters are only used - for the generated CSR/certificate; parameters from previous sets - are not used. Some syntactically checks may be performed. - * Key generation takes place when either the end of the parameter - file is reached, the next 'Key-Type' parameter is encountered or at - the control statement '%commit' is encountered. - -Control statements: - -%echo TEXT - Print TEXT as diagnostic. - -%dry-run - Suppress actual key generation (useful for syntax checking). - -%commit - Perform the key generation. Note that an implicit commit is done - at the next Key-Type parameter. - -General Parameters: - -Key-Type: ALGO - Starts a new parameter block by giving the type of the primary key. - The algorithm must be capable of signing. This is a required - parameter. The only supported value for ALGO is 'rsa'. - -Key-Length: NBITS - The requested length of a generated key in bits. Defaults to 3072. - -Key-Grip: HEXSTRING - This is optional and used to generate a CSR or certificate for an - already existing key. Key-Length will be ignored when given. - -Key-Usage: USAGE-LIST - Space or comma delimited list of key usage, allowed values are - 'encrypt', 'sign' and 'cert'. This is used to generate the - keyUsage extension. Please make sure that the algorithm is capable - of this usage. Default is to allow encrypt and sign. - -Name-DN: SUBJECT-NAME - This is the Distinguished Name (DN) of the subject in RFC-2253 - format. - -Name-Email: STRING - This is an email address for the altSubjectName. This parameter is - optional but may occur several times to add several email addresses - to a certificate. - -Name-DNS: STRING - The is an DNS name for the altSubjectName. This parameter is - optional but may occur several times to add several DNS names to a - certificate. - -Name-URI: STRING - This is an URI for the altSubjectName. This parameter is optional - but may occur several times to add several URIs to a certificate. - -Additional parameters used to create a certificate (in contrast to a -certificate signing request): - -Serial: SN - If this parameter is given an X.509 certificate will be generated. - SN is expected to be a hex string representing an unsigned integer - of arbitrary length. The special value 'random' can be used to - create a 64 bit random serial number. - -Issuer-DN: ISSUER-NAME - This is the DN name of the issuer in RFC-2253 format. If it is not - set it will default to the subject DN and a special GnuPG extension - will be included in the certificate to mark it as a standalone - certificate. - -Creation-Date: ISO-DATE -Not-Before: ISO-DATE - Set the notBefore date of the certificate. Either a date like - '1986-04-26' or '1986-04-26 12:00' or a standard ISO timestamp like - '19860426T042640' may be used. The time is considered to be UTC. - If it is not given the current date is used. - -Expire-Date: ISO-DATE -Not-After: ISO-DATE - Set the notAfter date of the certificate. Either a date like - '2063-04-05' or '2063-04-05 17:00' or a standard ISO timestamp like - '20630405T170000' may be used. The time is considered to be UTC. - If it is not given a default value in the not too far future is - used. - -Signing-Key: KEYGRIP - This gives the keygrip of the key used to sign the certificate. If - it is not given a self-signed certificate will be created. For - compatibility with future versions, it is suggested to prefix the - keygrip with a '&'. - -Hash-Algo: HASH-ALGO - Use HASH-ALGO for this CSR or certificate. The supported hash - algorithms are: 'sha1', 'sha256', 'sha384' and 'sha512'; they may - also be specified with uppercase letters. The default is 'sha256'. - diff -Nru gnupg2-2.2.40/doc/gnupg.info-2 gnupg2-2.2.41/doc/gnupg.info-2 --- gnupg2-2.2.40/doc/gnupg.info-2 2022-10-07 15:44:54.000000000 +0000 +++ gnupg2-2.2.41/doc/gnupg.info-2 2022-11-30 10:25:56.000000000 +0000 @@ -1,7 +1,7 @@ This is gnupg.info, produced by makeinfo version 6.5 from gnupg.texi. -This is the 'The GNU Privacy Guard Manual' (version 2.2.40-beta3, -October 2022). +This is the 'The GNU Privacy Guard Manual' (version 2.2.41-beta63, +November 2022). (C) 2002, 2004, 2005, 2006, 2007, 2010 Free Software Foundation, Inc. (C) 2013, 2014, 2015 Werner Koch. @@ -22,6 +22,128 @@ END-INFO-DIR-ENTRY  +File: gnupg.info, Node: CSR and certificate creation, Prev: Automated signature checking, Up: Unattended Usage + +5.5.2 CSR and certificate creation +---------------------------------- + +The command '--generate-key' may be used along with the option '--batch' +to either create a certificate signing request (CSR) or an X.509 +certificate. This is controlled by a parameter file; the format of this +file is as follows: + + * Text only, line length is limited to about 1000 characters. + * UTF-8 encoding must be used to specify non-ASCII characters. + * Empty lines are ignored. + * Leading and trailing while space is ignored. + * A hash sign as the first non white space character indicates a + comment line. + * Control statements are indicated by a leading percent sign, the + arguments are separated by white space from the keyword. + * Parameters are specified by a keyword, followed by a colon. + Arguments are separated by white space. + * The first parameter must be 'Key-Type', control statements may be + placed anywhere. + * The order of the parameters does not matter except for 'Key-Type' + which must be the first parameter. The parameters are only used + for the generated CSR/certificate; parameters from previous sets + are not used. Some syntactically checks may be performed. + * Key generation takes place when either the end of the parameter + file is reached, the next 'Key-Type' parameter is encountered or at + the control statement '%commit' is encountered. + +Control statements: + +%echo TEXT + Print TEXT as diagnostic. + +%dry-run + Suppress actual key generation (useful for syntax checking). + +%commit + Perform the key generation. Note that an implicit commit is done + at the next Key-Type parameter. + +General Parameters: + +Key-Type: ALGO + Starts a new parameter block by giving the type of the primary key. + The algorithm must be capable of signing. This is a required + parameter. The only supported value for ALGO is 'rsa'. + +Key-Length: NBITS + The requested length of a generated key in bits. Defaults to 3072. + +Key-Grip: HEXSTRING + This is optional and used to generate a CSR or certificate for an + already existing key. Key-Length will be ignored when given. + +Key-Usage: USAGE-LIST + Space or comma delimited list of key usage, allowed values are + 'encrypt', 'sign' and 'cert'. This is used to generate the + keyUsage extension. Please make sure that the algorithm is capable + of this usage. Default is to allow encrypt and sign. + +Name-DN: SUBJECT-NAME + This is the Distinguished Name (DN) of the subject in RFC-2253 + format. + +Name-Email: STRING + This is an email address for the altSubjectName. This parameter is + optional but may occur several times to add several email addresses + to a certificate. + +Name-DNS: STRING + The is an DNS name for the altSubjectName. This parameter is + optional but may occur several times to add several DNS names to a + certificate. + +Name-URI: STRING + This is an URI for the altSubjectName. This parameter is optional + but may occur several times to add several URIs to a certificate. + +Additional parameters used to create a certificate (in contrast to a +certificate signing request): + +Serial: SN + If this parameter is given an X.509 certificate will be generated. + SN is expected to be a hex string representing an unsigned integer + of arbitrary length. The special value 'random' can be used to + create a 64 bit random serial number. + +Issuer-DN: ISSUER-NAME + This is the DN name of the issuer in RFC-2253 format. If it is not + set it will default to the subject DN and a special GnuPG extension + will be included in the certificate to mark it as a standalone + certificate. + +Creation-Date: ISO-DATE +Not-Before: ISO-DATE + Set the notBefore date of the certificate. Either a date like + '1986-04-26' or '1986-04-26 12:00' or a standard ISO timestamp like + '19860426T042640' may be used. The time is considered to be UTC. + If it is not given the current date is used. + +Expire-Date: ISO-DATE +Not-After: ISO-DATE + Set the notAfter date of the certificate. Either a date like + '2063-04-05' or '2063-04-05 17:00' or a standard ISO timestamp like + '20630405T170000' may be used. The time is considered to be UTC. + If it is not given a default value in the not too far future is + used. + +Signing-Key: KEYGRIP + This gives the keygrip of the key used to sign the certificate. If + it is not given a self-signed certificate will be created. For + compatibility with future versions, it is suggested to prefix the + keygrip with a '&'. + +Hash-Algo: HASH-ALGO + Use HASH-ALGO for this CSR or certificate. The supported hash + algorithms are: 'sha1', 'sha256', 'sha384' and 'sha512'; they may + also be specified with uppercase letters. The default is 'sha256'. + + File: gnupg.info, Node: GPGSM Protocol, Prev: Unattended Usage, Up: Invoking GPGSM 5.6 The Protocol the Server Mode Uses @@ -871,7 +993,7 @@ A client connects to the SC-Daemon by connecting to the socket named '/usr/local/var/run/gnupg/scdaemon/socket', configuration information is -read from /ETC/GNUPG/SCDAEMON.CONF +read from /USR/LOCAL/ETC/GNUPG/SCDAEMON.CONF Each connection acts as one session, SC-Daemon takes care of synchronizing access to a token between sessions. @@ -3280,6 +3402,13 @@ addrspec, e.g. "postel@isi.edu") per line. Empty lines and lines starting with a '#' are ignored. +'--add-revocs' + If enabled append revocation certificates for the same addrspec as + used in the WKD to the key. Modern gpg version are able to import + and apply them for existing keys. Note that when used with the + '--mirror' command the revocation are searched in the local keyring + and not in an LDAP directory. + '--verbose' Enable extra informational output. @@ -4860,7 +4989,8 @@ * Menu: * --override-compliance-check: GPG Esoteric Options. - (line 424) + (line 432) +* add-revocs: gpg-wks-client. (line 132) * add-servers: Dirmngr Options. (line 313) * agent-program: GPG Configuration Options. (line 755) @@ -4871,38 +5001,38 @@ * allow-admin: Scdaemon Options. (line 204) * allow-emacs-pinentry: Agent Options. (line 206) * allow-freeform-uid: GPG Esoteric Options. - (line 367) + (line 375) * allow-loopback-pinentry: Agent Options. (line 188) * allow-multiple-messages: GPG Esoteric Options. - (line 560) + (line 568) * allow-non-selfsigned-uid: GPG Esoteric Options. - (line 362) + (line 370) * allow-ocsp: Dirmngr Options. (line 330) * allow-preset-passphrase: Agent Options. (line 183) * allow-secret-key-import: GPG Esoteric Options. - (line 556) + (line 564) * allow-version-check: Dirmngr Options. (line 138) * allow-weak-digest-algos: GPG Esoteric Options. - (line 403) + (line 411) * allow-weak-key-signatures: GPG Esoteric Options. - (line 419) + (line 427) * always-trust: Deprecated Options. (line 21) * armor: GPG Input and Output. (line 8) * armor <1>: Input and Output. (line 8) * ask-cert-expire: GPG Esoteric Options. - (line 521) + (line 529) * ask-cert-level: GPG Configuration Options. (line 360) * ask-sig-expire: GPG Esoteric Options. - (line 507) + (line 515) * assume-armor: Input and Output. (line 14) * assume-base64: Input and Output. (line 18) * assume-binary: Input and Output. (line 21) * attribute-fd: GPG Esoteric Options. - (line 92) + (line 100) * attribute-file: GPG Esoteric Options. - (line 98) + (line 106) * auto-check-trustdb: GPG Configuration Options. (line 742) * auto-expand-secmem: Agent Options. (line 456) @@ -4935,11 +5065,11 @@ (line 216) * card-timeout: Scdaemon Options. (line 180) * cert-digest-algo: GPG Esoteric Options. - (line 238) + (line 246) * cert-notation: GPG Esoteric Options. - (line 124) + (line 132) * cert-policy-url: GPG Esoteric Options. - (line 160) + (line 168) * change-passphrase: OpenPGP Key Management. (line 452) * change-passphrase <1>: Certificate Management. @@ -4956,7 +5086,7 @@ * check-trustdb: Operational GPG Commands. (line 349) * cipher-algo: GPG Esoteric Options. - (line 199) + (line 207) * cipher-algo <1>: CMS Options. (line 13) * clear-sign: Operational GPG Commands. (line 17) @@ -4964,18 +5094,20 @@ (line 18) * cms: gpgtar. (line 99) * command-fd: GPG Esoteric Options. - (line 350) + (line 358) * command-file: GPG Esoteric Options. - (line 357) + (line 365) * comment: GPG Esoteric Options. - (line 103) -* compatibility-flags: Esoteric Options. (line 57) + (line 111) +* compatibility-flags: GPG Esoteric Options. + (line 22) +* compatibility-flags <1>: Esoteric Options. (line 57) * compliance: Compliance Options. (line 67) * compliance <1>: Esoteric Options. (line 18) * compliant-needed: GPG Configuration Options. (line 717) * compress-algo: GPG Esoteric Options. - (line 215) + (line 223) * compress-level: GPG Configuration Options. (line 334) * connect-quick-timeout: Dirmngr Options. (line 125) @@ -4993,13 +5125,13 @@ * debug: Agent Options. (line 82) * debug <1>: Dirmngr Options. (line 59) * debug <2>: GPG Esoteric Options. - (line 47) + (line 55) * debug <3>: Esoteric Options. (line 90) * debug <4>: Scdaemon Options. (line 69) * debug-all: Agent Options. (line 106) * debug-all <1>: Dirmngr Options. (line 66) * debug-all <2>: GPG Esoteric Options. - (line 53) + (line 61) * debug-all <3>: Esoteric Options. (line 117) * debug-all <4>: Scdaemon Options. (line 96) * debug-allow-core-dump: Esoteric Options. (line 120) @@ -5008,11 +5140,11 @@ * debug-disable-ticker: Scdaemon Options. (line 109) * debug-ignore-expiration: Esoteric Options. (line 131) * debug-iolbf: GPG Esoteric Options. - (line 56) + (line 64) * debug-level: Agent Options. (line 57) * debug-level <1>: Dirmngr Options. (line 34) * debug-level <2>: GPG Esoteric Options. - (line 22) + (line 30) * debug-level <3>: Esoteric Options. (line 65) * debug-level <4>: Scdaemon Options. (line 40) * debug-log-tid: Scdaemon Options. (line 119) @@ -5035,24 +5167,24 @@ * default-cache-ttl: Agent Options. (line 217) * default-cache-ttl <1>: Agent Options. (line 226) * default-cert-expire: GPG Esoteric Options. - (line 527) + (line 535) * default-cert-level: GPG Configuration Options. (line 368) * default-key: GPG Configuration Options. (line 10) * default-key <1>: Input and Output. (line 34) * default-keyserver-url: GPG Esoteric Options. - (line 589) + (line 597) * default-new-key-algo STRING: GPG Esoteric Options. - (line 534) + (line 542) * default-preference-list: GPG Esoteric Options. - (line 584) + (line 592) * default-recipient: GPG Configuration Options. (line 19) * default-recipient-self: GPG Configuration Options. (line 23) * default-sig-expire: GPG Esoteric Options. - (line 513) + (line 521) * delete-keys: Operational GPG Commands. (line 224) * delete-keys <1>: Certificate Management. @@ -5067,7 +5199,7 @@ * detach-sign: Operational GPG Commands. (line 28) * digest-algo: GPG Esoteric Options. - (line 208) + (line 216) * directory: gpgtar. (line 76) * directory <1>: gpg-wks-client. (line 122) * directory <2>: gpg-wks-server. (line 50) @@ -5084,7 +5216,7 @@ * disable-check-own-socket: Agent Options. (line 342) * disable-check-own-socket <1>: Dirmngr Options. (line 79) * disable-cipher-algo: GPG Esoteric Options. - (line 246) + (line 254) * disable-crl-checks: Certificate Options. (line 13) * disable-dsa2: GPG Configuration Options. (line 196) @@ -5100,7 +5232,7 @@ * disable-pinpad: Scdaemon Options. (line 201) * disable-policy-checks: Certificate Options. (line 8) * disable-pubkey-algo: GPG Esoteric Options. - (line 251) + (line 259) * disable-scdaemon: Agent Options. (line 336) * disable-signer-uid: OpenPGP Options. (line 31) * disable-trusted-cert-crl-check: Certificate Options. (line 24) @@ -5142,7 +5274,7 @@ * edit-key: OpenPGP Key Management. (line 139) * emit-version: GPG Esoteric Options. - (line 114) + (line 122) * enable-crl-checks: Certificate Options. (line 13) * enable-dsa2: GPG Configuration Options. (line 196) @@ -5155,10 +5287,10 @@ * enable-pinpad-varlen: Scdaemon Options. (line 193) * enable-policy-checks: Certificate Options. (line 8) * enable-progress-filter: GPG Esoteric Options. - (line 69) + (line 77) * enable-putty-support: Agent Options. (line 402) * enable-special-filenames: GPG Esoteric Options. - (line 571) + (line 579) * enable-special-filenames <1>: gpgv. (line 97) * enable-ssh-support: Agent Options. (line 402) * enable-trusted-cert-crl-check: Certificate Options. (line 24) @@ -5175,7 +5307,7 @@ (line 35) * enforce-passphrase-constraints: Agent Options. (line 244) * escape-from-lines: GPG Esoteric Options. - (line 276) + (line 284) * exec: Invoking gpg-connect-agent. (line 65) * exec-path: GPG Configuration Options. @@ -5211,29 +5343,29 @@ * extract: gpgtar. (line 19) * faked-system-time: Agent Options. (line 52) * faked-system-time <1>: GPG Esoteric Options. - (line 60) + (line 68) * faked-system-time <2>: Esoteric Options. (line 46) * fast-list-mode: GPG Esoteric Options. - (line 462) + (line 470) * fetch-crl: Dirmngr Commands. (line 52) * fetch-keys: Operational GPG Commands. (line 333) * fingerprint: Operational GPG Commands. (line 194) * fixed-list-mode: GPG Input and Output. - (line 284) + (line 289) * flush: Dirmngr Commands. (line 62) * for-your-eyes-only: GPG Esoteric Options. - (line 185) + (line 193) * forbid-gen-key: GPG Esoteric Options. - (line 551) + (line 559) * force: Dirmngr Options. (line 93) * force <1>: watchgnupg. (line 23) * force-crl-refresh: Certificate Options. (line 35) * force-default-responder: dirmngr-client. (line 64) * force-mdc: OpenPGP Options. (line 25) * force-sign-key: GPG Esoteric Options. - (line 545) + (line 553) * forget: Invoking gpg-preset-passphrase. (line 26) * from: gpg-wks-server. (line 54) @@ -5265,9 +5397,9 @@ (line 752) * gpg-args: gpgtar. (line 138) * gpgconf-list: GPG Esoteric Options. - (line 605) + (line 613) * gpgconf-test: GPG Esoteric Options. - (line 609) + (line 617) * grab: Agent Options. (line 153) * group: GPG Key related Options. (line 55) @@ -5282,7 +5414,7 @@ * help <5>: watchgnupg. (line 39) * help <6>: dirmngr-client. (line 44) * help <7>: gpgtar. (line 150) -* help <8>: gpg-wks-client. (line 141) +* help <8>: gpg-wks-client. (line 148) * help <9>: gpg-wks-server. (line 87) * hex: Invoking gpg-connect-agent. (line 91) @@ -5310,17 +5442,17 @@ * ignore-cert-extension <1>: Certificate Options. (line 82) * ignore-cert-with-oid: Esoteric Options. (line 37) * ignore-crc-error: GPG Esoteric Options. - (line 387) + (line 395) * ignore-http-dp: Dirmngr Options. (line 220) * ignore-ldap-dp: Dirmngr Options. (line 227) * ignore-mdc-error: GPG Esoteric Options. - (line 394) + (line 402) * ignore-ocsp-service-url: Dirmngr Options. (line 232) * ignore-time-conflict: GPG Esoteric Options. - (line 373) + (line 381) * ignore-time-conflict <1>: gpgv. (line 63) * ignore-valid-from: GPG Esoteric Options. - (line 380) + (line 388) * import: Operational GPG Commands. (line 304) * import <1>: Certificate Management. @@ -5435,7 +5567,7 @@ (line 655) * kill: Invoking gpgconf. (line 89) * known-notation: GPG Esoteric Options. - (line 151) + (line 159) * launch: Invoking gpgconf. (line 80) * lc-ctype: Agent Options. (line 360) * lc-messages: Agent Options. (line 360) @@ -5446,17 +5578,17 @@ * learn-card: Certificate Management. (line 104) * legacy-list-mode: GPG Input and Output. - (line 290) + (line 295) * limit-card-insert-tries: GPG Configuration Options. (line 800) * list-archive: gpgtar. (line 39) * list-chain: Certificate Management. (line 32) * list-config: GPG Esoteric Options. - (line 594) + (line 602) * list-crls: Dirmngr Commands. (line 40) * list-gcrypt-config: GPG Esoteric Options. - (line 602) + (line 610) * list-keys: Operational GPG Commands. (line 119) * list-keys <1>: Certificate Management. @@ -5502,9 +5634,9 @@ * list-secret-keys <1>: Certificate Management. (line 24) * list-signatures: GPG Esoteric Options. - (line 450) + (line 458) * list-sigs: GPG Esoteric Options. - (line 451) + (line 459) * listen-backlog: Agent Options. (line 370) * listen-backlog <1>: Dirmngr Options. (line 134) * listen-backlog <2>: Scdaemon Options. (line 135) @@ -5527,13 +5659,13 @@ * log-file: Agent Options. (line 159) * log-file <1>: Dirmngr Options. (line 30) * log-file <2>: GPG Esoteric Options. - (line 86) + (line 94) * log-file <3>: Configuration Options. (line 80) * log-file <4>: Scdaemon Options. (line 140) * log-file <5>: gpgv. (line 59) * logger-fd: GPG Esoteric Options. - (line 82) + (line 90) * logger-fd <1>: gpgv. (line 56) * lookup: dirmngr-client. (line 86) * lsign-key: OpenPGP Key Management. @@ -5582,7 +5714,7 @@ (line 45) * no-common-certs-import: Esoteric Options. (line 168) * no-default-keyring: GPG Esoteric Options. - (line 432) + (line 440) * no-default-recipient: GPG Configuration Options. (line 29) * no-detach: Agent Options. (line 131) @@ -5590,7 +5722,7 @@ * no-encrypt-to: GPG Key related Options. (line 51) * no-expensive-trust-checks: GPG Esoteric Options. - (line 576) + (line 584) * no-ext-connect: Invoking gpg-connect-agent. (line 72) * no-grab: Agent Options. (line 153) @@ -5599,9 +5731,9 @@ * no-groups: GPG Key related Options. (line 73) * no-keyring: GPG Esoteric Options. - (line 438) + (line 446) * no-literal: GPG Esoteric Options. - (line 470) + (line 478) * no-mangle-dos-filenames: GPG Configuration Options. (line 352) * no-options: GPG Configuration Options. @@ -5617,7 +5749,7 @@ * no-skip-hidden-recipients: GPG Key related Options. (line 108) * no-symkey-cache: GPG Esoteric Options. - (line 337) + (line 345) * no-tty: GPG Configuration Options. (line 58) * no-use-standard-socket: Agent Options. (line 350) @@ -5626,7 +5758,7 @@ * no-verbose: GPG Configuration Options. (line 37) * not-dash-escaped: GPG Esoteric Options. - (line 266) + (line 274) * null: gpgtar. (line 86) * null <1>: gpg-check-pattern. (line 59) * ocsp: dirmngr-client. (line 61) @@ -5654,19 +5786,19 @@ * output <4>: gpg-wks-client. (line 111) * output <5>: gpg-wks-server. (line 65) * override-session-key: GPG Esoteric Options. - (line 494) + (line 502) * p12-charset: Input and Output. (line 24) * passphrase: GPG Esoteric Options. - (line 312) + (line 320) * passphrase <1>: Invoking gpg-preset-passphrase. (line 36) * passphrase-fd: GPG Esoteric Options. - (line 291) + (line 299) * passphrase-fd <1>: Esoteric Options. (line 136) * passphrase-file: GPG Esoteric Options. - (line 301) + (line 309) * passphrase-repeat: GPG Esoteric Options. - (line 283) + (line 291) * passwd: OpenPGP Key Management. (line 453) * passwd <1>: Certificate Management. @@ -5687,7 +5819,7 @@ * pinentry-formatted-passphrase: Agent Options. (line 297) * pinentry-invisible-char: Agent Options. (line 286) * pinentry-mode: GPG Esoteric Options. - (line 322) + (line 330) * pinentry-mode <1>: Esoteric Options. (line 145) * pinentry-program: Agent Options. (line 310) * pinentry-timeout: Agent Options. (line 291) @@ -5698,7 +5830,7 @@ * prefer-system-dirmngr: Configuration Options. (line 63) * preserve-permissions: GPG Esoteric Options. - (line 579) + (line 587) * preset: Invoking gpg-preset-passphrase. (line 22) * primary-keyring: GPG Configuration Options. @@ -5736,7 +5868,7 @@ (line 18) * quiet <5>: dirmngr-client. (line 48) * quiet <6>: gpgtar. (line 65) -* quiet <7>: gpg-wks-client. (line 135) +* quiet <7>: gpg-wks-client. (line 142) * quiet <8>: gpg-wks-server. (line 81) * raw-socket: Invoking gpg-connect-agent. (line 59) @@ -5759,7 +5891,7 @@ * reload: Invoking gpgconf. (line 74) * remove-socketdir: Invoking gpgconf. (line 102) * request-origin: GPG Esoteric Options. - (line 342) + (line 350) * request-origin <1>: Esoteric Options. (line 160) * require-compliance: Compliance Options. (line 77) * require-compliance <1>: Esoteric Options. (line 27) @@ -5798,14 +5930,14 @@ (line 24) * server <3>: Scdaemon Commands. (line 22) * set-filename: GPG Esoteric Options. - (line 178) + (line 186) * set-filename <1>: gpgtar. (line 129) * set-filesize: GPG Esoteric Options. - (line 474) + (line 482) * set-notation: GPG Esoteric Options. - (line 124) + (line 132) * set-policy-url: GPG Esoteric Options. - (line 160) + (line 168) * sh: Agent Options. (line 146) * sh <1>: Dirmngr Options. (line 87) * show-keyring: Deprecated Options. (line 16) @@ -5815,14 +5947,14 @@ * show-photos: Deprecated Options. (line 8) * show-policy-url: Deprecated Options. (line 33) * show-session-key: GPG Esoteric Options. - (line 478) + (line 486) * shutdown: Dirmngr Commands. (line 58) * sig-keyserver-url: GPG Esoteric Options. - (line 170) + (line 178) * sig-notation: GPG Esoteric Options. - (line 124) + (line 132) * sig-policy-url: GPG Esoteric Options. - (line 160) + (line 168) * sign: Operational GPG Commands. (line 8) * sign <1>: Operational GPGSM Commands. @@ -5833,18 +5965,18 @@ * skip-hidden-recipients: GPG Key related Options. (line 108) * skip-verify: GPG Esoteric Options. - (line 442) + (line 450) * squid-mode: dirmngr-client. (line 101) * ssh-fingerprint-digest: Agent Options. (line 450) * standard-resolver: Dirmngr Options. (line 110) * status-fd: GPG Esoteric Options. - (line 74) + (line 82) * status-fd <1>: gpgv. (line 52) * status-fd <2>: Invoking gpgconf. (line 158) * status-fd <3>: gpgtar. (line 120) * status-fd <4>: gpg-wks-client. (line 115) * status-file: GPG Esoteric Options. - (line 78) + (line 86) * steal-socket: Agent Options. (line 135) * store: Operational GPG Commands. (line 55) @@ -5858,7 +5990,7 @@ * tar-args: gpgtar. (line 141) * textmode: OpenPGP Options. (line 8) * throw-keyids: GPG Esoteric Options. - (line 257) + (line 265) * time-only: watchgnupg. (line 30) * tls-debug: Dirmngr Options. (line 69) * tofu-default-policy: GPG Configuration Options. @@ -5900,7 +6032,7 @@ * use-agent: GPG Configuration Options. (line 749) * use-embedded-filename: GPG Esoteric Options. - (line 194) + (line 202) * use-standard-socket: Agent Options. (line 350) * use-standard-socket-p: Agent Options. (line 350) * use-tor: Dirmngr Options. (line 98) @@ -5930,7 +6062,7 @@ * verbose <9>: dirmngr-client. (line 53) * verbose <10>: gpgtar. (line 61) * verbose <11>: gpg-check-pattern. (line 53) -* verbose <12>: gpg-wks-client. (line 132) +* verbose <12>: gpg-wks-client. (line 139) * verbose <13>: gpg-wks-server. (line 78) * verify: Operational GPG Commands. (line 67) @@ -5972,41 +6104,41 @@ * version <5>: watchgnupg. (line 36) * version <6>: dirmngr-client. (line 40) * version <7>: gpgtar. (line 147) -* version <8>: gpg-wks-client. (line 138) +* version <8>: gpg-wks-client. (line 145) * version <9>: gpg-wks-server. (line 84) * warranty: General GPG Commands. (line 17) * warranty <1>: General GPGSM Commands. (line 15) * weak-digest: GPG Esoteric Options. - (line 411) + (line 419) * weak-digest <1>: gpgv. (line 90) * with-colons: GPG Input and Output. - (line 276) + (line 281) * with-colons <1>: gpg-wks-client. (line 76) * with-dir: gpg-wks-server. (line 69) * with-ephemeral-keys: Esoteric Options. (line 52) * with-file: gpg-wks-server. (line 73) * with-fingerprint: GPG Input and Output. - (line 296) + (line 301) * with-icao-spelling: GPG Input and Output. - (line 307) + (line 312) * with-key-data: GPG Esoteric Options. - (line 446) + (line 454) * with-key-data <1>: Input and Output. (line 54) * with-key-origin: GPG Input and Output. - (line 315) + (line 320) * with-keygrip: GPG Input and Output. - (line 311) + (line 316) * with-log: gpgtar. (line 124) * with-secret: GPG Input and Output. - (line 326) + (line 331) * with-secret <1>: Input and Output. (line 78) * with-subkey-fingerprint: GPG Input and Output. - (line 300) + (line 305) * with-validation: Input and Output. (line 60) * with-wkd-hash: GPG Input and Output. - (line 321) + (line 326) * xauthority: Agent Options. (line 360) * yes: GPG Configuration Options. (line 63) @@ -6021,18 +6153,18 @@ [index] * Menu: -* .gpg-v21-migrated: GPG Configuration. (line 77) -* ~/.gnupg: GPG Configuration. (line 27) +* .gpg-v21-migrated: GPG Configuration. (line 78) +* ~/.gnupg: GPG Configuration. (line 28) * ASSUAN_DEBUG: Scdaemon Options. (line 122) -* COLUMNS: GPG Configuration. (line 118) -* com-certs.pem: GPGSM Configuration. (line 84) +* COLUMNS: GPG Configuration. (line 119) +* com-certs.pem: GPGSM Configuration. (line 85) * dirmngr.conf: Dirmngr Configuration. (line 12) * DISPLAY: GPGSM OPTION. (line 21) * GNUPGHOME: Agent Options. (line 17) * GNUPGHOME <1>: GPG Configuration Options. (line 260) -* GNUPGHOME <2>: GPG Configuration. (line 106) +* GNUPGHOME <2>: GPG Configuration. (line 107) * GNUPGHOME <3>: Configuration Options. (line 16) * GNUPGHOME <4>: Scdaemon Options. (line 13) @@ -6040,8 +6172,8 @@ * GNUPGHOME <6>: Invoking gpgconf. (line 120) * GNUPGHOME <7>: Invoking gpg-connect-agent. (line 21) -* GNUPG_BUILD_ROOT: GPG Configuration. (line 130) -* GNUPG_EXEC_DEBUG_FLAGS: GPG Configuration. (line 135) +* GNUPG_BUILD_ROOT: GPG Configuration. (line 131) +* GNUPG_EXEC_DEBUG_FLAGS: GPG Configuration. (line 136) * gpg-agent.conf: Agent Configuration. (line 11) * gpg.conf: GPG Configuration. (line 11) * gpgconf.ctl: Agent Options. (line 28) @@ -6069,31 +6201,31 @@ * HKCU\Software\GNU\GnuPG:HomeDir <5>: Invoking gpgconf. (line 120) * HKCU\Software\GNU\GnuPG:HomeDir <6>: Invoking gpg-connect-agent. (line 21) -* HOME: GPG Configuration. (line 103) +* HOME: GPG Configuration. (line 104) * http_proxy: Dirmngr Options. (line 240) -* LANGUAGE: GPG Configuration. (line 121) +* LANGUAGE: GPG Configuration. (line 122) * LC_CTYPE: GPGSM OPTION. (line 27) * LC_MESSAGES: GPGSM OPTION. (line 29) -* LINES: GPG Configuration. (line 118) -* openpgp-revocs.d: GPG Configuration. (line 91) +* LINES: GPG Configuration. (line 119) +* openpgp-revocs.d: GPG Configuration. (line 92) * PATH: GPG Configuration Options. (line 225) -* PINENTRY_USER_DATA: GPG Configuration. (line 113) +* PINENTRY_USER_DATA: GPG Configuration. (line 114) * PINENTRY_USER_DATA <1>: GPGSM OPTION. (line 33) * policies.txt: GPGSM Configuration. (line 18) * private-keys-v1.d: Agent Configuration. (line 106) -* pubring.gpg: GPG Configuration. (line 32) -* pubring.kbx: GPG Configuration. (line 50) -* pubring.kbx <1>: GPGSM Configuration. (line 100) +* pubring.gpg: GPG Configuration. (line 33) +* pubring.kbx: GPG Configuration. (line 51) +* pubring.kbx <1>: GPGSM Configuration. (line 101) * qualified.txt: GPGSM Configuration. (line 33) -* random_seed: GPG Configuration. (line 88) -* random_seed <1>: GPGSM Configuration. (line 106) -* S.gpg-agent: GPGSM Configuration. (line 111) -* secring.gpg: GPG Configuration. (line 69) +* random_seed: GPG Configuration. (line 89) +* random_seed <1>: GPGSM Configuration. (line 107) +* S.gpg-agent: GPGSM Configuration. (line 112) +* secring.gpg: GPG Configuration. (line 70) * SHELL: Agent Options. (line 146) * sshcontrol: Agent Configuration. (line 76) * TERM: GPGSM OPTION. (line 25) -* trustdb.gpg: GPG Configuration. (line 80) +* trustdb.gpg: GPG Configuration. (line 81) * trustlist.txt: Agent Configuration. (line 20) * XAUTHORITY: GPGSM OPTION. (line 31) diff -Nru gnupg2-2.2.40/doc/gnupg-module-overview.pdf gnupg2-2.2.41/doc/gnupg-module-overview.pdf --- gnupg2-2.2.40/doc/gnupg-module-overview.pdf 2022-10-10 11:58:03.000000000 +0000 +++ gnupg2-2.2.41/doc/gnupg-module-overview.pdf 2022-12-09 08:48:40.000000000 +0000 @@ -344,8 +344,8 @@ 17 0 obj << /Title (gnupg-module-overview) -/CreationDate (D:20221010135803) -/ModDate (D:20221010135803) +/CreationDate (D:20221209094840) +/ModDate (D:20221209094840) /Producer (https://imagemagick.org) >> endobj Binary files /tmp/tmpp8wxn021/8c8sKM9mxi/gnupg2-2.2.40/doc/gnupg-module-overview.png and /tmp/tmpp8wxn021/sgn7BhUbzZ/gnupg2-2.2.41/doc/gnupg-module-overview.png differ diff -Nru gnupg2-2.2.40/doc/gpg.texi gnupg2-2.2.41/doc/gpg.texi --- gnupg2-2.2.40/doc/gpg.texi 2022-08-03 09:12:16.000000000 +0000 +++ gnupg2-2.2.41/doc/gpg.texi 2022-11-30 10:25:36.000000000 +0000 @@ -2611,6 +2611,11 @@ to put into DNS zone files. An ORIGIN line is printed before each record to allow diverting the records to the corresponding zone file. + @item export-revocs + Export only standalone revocation certificates of the key. This + option does not export revocations of 3rd party certificate + revocations. + @item export-dane Instead of outputting the key material output OpenPGP DANE records suitable to put into DNS zone files. An ORIGIN line is printed before @@ -2928,6 +2933,14 @@ @opindex interactive Prompt before overwriting any files. +@item --compatibility-flags @var{flags} +@opindex compatibility-flags +Set compatibility flags to work around problems due to non-compliant +keys or data. The @var{flags} are given as a comma separated +list of flag names and are OR-ed together. The special flag "none" +clears the list and allows to start over with an empty list. To get a +list of available flags the sole word "help" can be used. + @item --debug-level @var{level} @opindex debug-level Select the debug level for investigating problems. @var{level} may be diff -Nru gnupg2-2.2.40/doc/Makefile.am gnupg2-2.2.41/doc/Makefile.am --- gnupg2-2.2.40/doc/Makefile.am 2022-08-03 07:24:37.000000000 +0000 +++ gnupg2-2.2.41/doc/Makefile.am 2022-11-25 12:55:10.000000000 +0000 @@ -206,8 +206,8 @@ if echo "@PACKAGE_VERSION@" | grep -- "-beta" >/dev/null; then \ dashdevel="-devel" ; \ else \ - rsync -v gnupg.pdf $${user}@$${webhost}:webspace/manuals/ ; \ + rsync -v gnupg.pdf $${user}@$${webhost}:webspace/manuals/gnupg-2.2.pdf ; \ fi ; \ cd gnupg.html ; \ rsync -vr --exclude='.git' . \ - $${user}@$${webhost}:webspace/manuals/gnupg$${dashdevel}/ + $${user}@$${webhost}:webspace/manuals/gnupg-2.2$${dashdevel}/ diff -Nru gnupg2-2.2.40/doc/Makefile.in gnupg2-2.2.41/doc/Makefile.in --- gnupg2-2.2.40/doc/Makefile.in 2022-10-10 11:57:18.000000000 +0000 +++ gnupg2-2.2.41/doc/Makefile.in 2022-12-09 08:47:54.000000000 +0000 @@ -1262,11 +1262,11 @@ if echo "@PACKAGE_VERSION@" | grep -- "-beta" >/dev/null; then \ dashdevel="-devel" ; \ else \ - rsync -v gnupg.pdf $${user}@$${webhost}:webspace/manuals/ ; \ + rsync -v gnupg.pdf $${user}@$${webhost}:webspace/manuals/gnupg-2.2.pdf ; \ fi ; \ cd gnupg.html ; \ rsync -vr --exclude='.git' . \ - $${user}@$${webhost}:webspace/manuals/gnupg$${dashdevel}/ + $${user}@$${webhost}:webspace/manuals/gnupg-2.2$${dashdevel}/ # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. diff -Nru gnupg2-2.2.40/doc/wks.texi gnupg2-2.2.41/doc/wks.texi --- gnupg2-2.2.40/doc/wks.texi 2022-10-07 15:44:44.000000000 +0000 +++ gnupg2-2.2.41/doc/wks.texi 2022-11-30 10:25:36.000000000 +0000 @@ -222,6 +222,14 @@ addrspec, e.g. "postel@@isi.edu") per line. Empty lines and lines starting with a '#' are ignored. +@item --add-revocs +@opindex add-revocs +If enabled append revocation certificates for the same addrspec as +used in the WKD to the key. Modern gpg version are able to import and +apply them for existing keys. Note that when used with the +@option{--mirror} command the revocation are searched in the local +keyring and not in an LDAP directory. + @item --verbose @opindex verbose Enable extra informational output. diff -Nru gnupg2-2.2.40/g10/armor.c gnupg2-2.2.41/g10/armor.c --- gnupg2-2.2.40/g10/armor.c 2022-02-24 13:06:37.000000000 +0000 +++ gnupg2-2.2.41/g10/armor.c 2022-11-25 12:56:15.000000000 +0000 @@ -233,6 +233,7 @@ case PKT_COMPRESSED: case PKT_ENCRYPTED: case PKT_ENCRYPTED_MDC: + case PKT_ENCRYPTED_AEAD: case PKT_PLAINTEXT: case PKT_OLD_COMMENT: case PKT_COMMENT: diff -Nru gnupg2-2.2.40/g10/card-util.c gnupg2-2.2.41/g10/card-util.c --- gnupg2-2.2.40/g10/card-util.c 2022-08-16 14:40:00.000000000 +0000 +++ gnupg2-2.2.41/g10/card-util.c 2022-11-30 10:25:36.000000000 +0000 @@ -801,7 +801,6 @@ { tty_printf (_("Error: Combined name too long " "(limit is %d characters).\n"), 39); - xfree (isoname); rc = gpg_error (GPG_ERR_TOO_LARGE); goto leave; } diff -Nru gnupg2-2.2.40/g10/export.c gnupg2-2.2.41/g10/export.c --- gnupg2-2.2.40/g10/export.c 2022-02-24 13:06:37.000000000 +0000 +++ gnupg2-2.2.41/g10/export.c 2022-12-06 08:25:32.000000000 +0000 @@ -62,15 +62,17 @@ }; -/* A global variable to store the selector created from +/* Global variables to store the selectors created from * --export-filter keep-uid=EXPR. * --export-filter drop-subkey=EXPR. + * --export-filter select=EXPR. * * FIXME: We should put this into the CTRL object but that requires a * lot more changes right now. */ static recsel_expr_t export_keep_uid; static recsel_expr_t export_drop_subkey; +static recsel_expr_t export_select_filter; /* An object used for a linked list to implement the @@ -80,6 +82,7 @@ struct export_filter_attic_s *next; recsel_expr_t export_keep_uid; recsel_expr_t export_drop_subkey; + recsel_expr_t export_select_filter; }; static struct export_filter_attic_s *export_filter_attic; @@ -105,6 +108,8 @@ export_keep_uid = NULL; recsel_release (export_drop_subkey); export_drop_subkey = NULL; + recsel_release (export_select_filter); + export_select_filter = NULL; } @@ -129,6 +134,9 @@ {"export-pka", EXPORT_PKA_FORMAT, NULL, NULL }, {"export-dane", EXPORT_DANE_FORMAT, NULL, NULL }, + {"export-revocs", EXPORT_REVOCS, NULL, + N_("export only revocation certificates") }, + {"backup", EXPORT_BACKUP, NULL, N_("use the GnuPG key backup format")}, {"export-backup", EXPORT_BACKUP, NULL, NULL }, @@ -181,6 +189,8 @@ * * - secret :: 1 for a secret subkey, else 0. * - key_algo :: Public key algorithm id + * + * - select :: The key is only exported if the filter returns true. */ gpg_error_t parse_and_set_export_filter (const char *string) @@ -194,6 +204,8 @@ err = recsel_parse_expr (&export_keep_uid, string+9); else if (!strncmp (string, "drop-subkey=", 12)) err = recsel_parse_expr (&export_drop_subkey, string+12); + else if (!strncmp (string, "select=", 7)) + err = recsel_parse_expr (&export_select_filter, string+7); else err = gpg_error (GPG_ERR_INV_NAME); @@ -214,6 +226,8 @@ export_keep_uid = NULL; item->export_drop_subkey = export_drop_subkey; export_drop_subkey = NULL; + item->export_select_filter = export_select_filter; + export_select_filter = NULL; item->next = export_filter_attic; export_filter_attic = item; } @@ -232,6 +246,7 @@ cleanup_export_globals (); export_keep_uid = item->export_keep_uid; export_drop_subkey = item->export_drop_subkey; + export_select_filter = item->export_select_filter; } @@ -1814,6 +1829,7 @@ { if (gpg_err_code (err) == GPG_ERR_FULLY_CANCELED) goto leave; + write_status_error ("export_keys.secret", err); skip_until_subkey = 1; err = 0; } @@ -1884,6 +1900,78 @@ } +/* Helper for do_export_stream which writes the own revocations + * certificates (if any) from KEYBLOCK to OUT. */ +static gpg_error_t +do_export_revocs (ctrl_t ctrl, kbnode_t keyblock, u32 *keyid, + iobuf_t out, unsigned int options, int *any) +{ + gpg_error_t err = 0; + kbnode_t kbctx, node; + PKT_signature *sig; + + (void)ctrl; + + /* NB: walk_kbnode skips packets marked as deleted. */ + for (kbctx=NULL; (node = walk_kbnode (keyblock, &kbctx, 0)); ) + { + if (node->pkt->pkttype != PKT_SIGNATURE) + continue; + sig = node->pkt->pkt.signature; + + /* We are only interested in revocation certifcates. */ + if (!(IS_KEY_REV (sig) || IS_UID_REV (sig) || IS_SUBKEY_REV (sig))) + continue; + + if (!(sig->keyid[0] == keyid[0] && sig->keyid[1] == keyid[1])) + continue; /* Not a self-signature. */ + + /* Do not export signature packets which are marked as not + * exportable. */ + if (!(options & EXPORT_LOCAL_SIGS) + && !sig->flags.exportable) + continue; /* not exportable */ + + /* Do not export packets with a "sensitive" revocation key + * unless the user wants us to. */ + if (!(options & EXPORT_SENSITIVE_REVKEYS) + && sig->revkey) + { + int i; + + for (i = 0; i < sig->numrevkeys; i++) + if ((sig->revkey[i].class & 0x40)) + break; + if (i < sig->numrevkeys) + continue; + } + + if (!sig->flags.checked) + { + log_info ("signature not marked as checked - ignored\n"); + continue; + } + if (!sig->flags.valid) + { + log_info ("signature not not valid - ignored\n"); + continue; + } + + err = build_packet (out, node->pkt); + if (err) + { + log_error ("build_packet(%d) failed: %s\n", + node->pkt->pkttype, gpg_strerror (err)); + goto leave; + } + *any = 1; + } + + leave: + return err; +} + + /* Export the keys identified by the list of strings in USERS to the stream OUT. If SECRET is false public keys will be exported. With secret true secret keys will be exported; in this case 1 means the @@ -2069,6 +2157,32 @@ NULL, NULL); commit_kbnode (&keyblock); } + else if (export_keep_uid || export_drop_subkey || export_select_filter) + { + /* Need to merge so that for example the "usage" property + * has been setup. */ + merge_keys_and_selfsig (ctrl, keyblock); + } + + + if (export_select_filter) + { + int selected = 0; + struct impex_filter_parm_s parm; + parm.ctrl = ctrl; + + for (parm.node = keyblock; parm.node; parm.node = parm.node->next) + { + if (recsel_select (export_select_filter, + impex_filter_getval, &parm)) + { + selected = 1; + break; + } + } + if (!selected) + continue; /* Skip this keyblock. */ + } if (export_keep_uid) { @@ -2085,10 +2199,15 @@ } /* And write it. */ - err = do_export_one_keyblock (ctrl, keyblock, keyid, - out_help? out_help : out, - secret, options, stats, any, - desc, ndesc, descindex, cipherhd); + if ((options & EXPORT_REVOCS)) + err = do_export_revocs (ctrl, keyblock, keyid, + out_help? out_help : out, + options, any); + else + err = do_export_one_keyblock (ctrl, keyblock, keyid, + out_help? out_help : out, + secret, options, stats, any, + desc, ndesc, descindex, cipherhd); if (err) break; @@ -2131,8 +2250,8 @@ keydb_release (kdbhd); if (err || !keyblock_out) release_kbnode( keyblock ); - if( !*any ) - log_info(_("WARNING: nothing exported\n")); + if( !*any && !opt.quiet) + log_info (_("WARNING: nothing exported\n")); return err; } diff -Nru gnupg2-2.2.40/g10/gpg.c gnupg2-2.2.41/g10/gpg.c --- gnupg2-2.2.40/g10/gpg.c 2022-08-31 16:00:58.000000000 +0000 +++ gnupg2-2.2.41/g10/gpg.c 2022-11-30 10:01:41.000000000 +0000 @@ -431,6 +431,7 @@ oForceSignKey, oForbidGenKey, oRequireCompliance, + oCompatibilityFlags, oNoop }; @@ -894,6 +895,7 @@ ARGPARSE_s_n (oNoAutostart, "no-autostart", "@"), ARGPARSE_s_n (oForbidGenKey, "forbid-gen-key", "@"), ARGPARSE_s_n (oRequireCompliance, "require-compliance", "@"), + ARGPARSE_s_s (oCompatibilityFlags, "compatibility-flags", "@"), /* Options which can be used in special circumstances. They are not * published and we hope they are never required. */ ARGPARSE_s_n (oUseOnlyOpenPGPCard, "use-only-openpgp-card", "@"), @@ -986,6 +988,13 @@ }; +/* The list of compatibility flags. */ +static struct compatibility_flags_s compatibility_flags [] = + { + { 0, NULL } + }; + + #ifdef ENABLE_SELINUX_HACKS #define ALWAYS_ADD_KEYRINGS 1 #else @@ -2736,6 +2745,15 @@ case oDebugIOLBF: break; /* Already set in pre-parse step. */ + case oCompatibilityFlags: + if (parse_compatibility_flags (pargs.r.ret_str, &opt.compat_flags, + compatibility_flags)) + { + pargs.r_opt = ARGPARSE_INVALID_ARG; + pargs.err = ARGPARSE_PRINT_ERROR; + } + break; + case oStatusFD: set_status_fd ( translate_sys2libc_fd_int (pargs.r.ret_int, 1) ); break; @@ -3772,6 +3790,8 @@ } set_debug (debug_level); + if (opt.verbose) /* Print the compatibility flags. */ + parse_compatibility_flags (NULL, &opt.compat_flags, compatibility_flags); gnupg_set_compliance_extra_info (opt.min_rsa_length); if (DBG_CLOCK) log_clock ("start"); diff -Nru gnupg2-2.2.40/g10/import.c gnupg2-2.2.41/g10/import.c --- gnupg2-2.2.40/g10/import.c 2022-02-24 13:06:37.000000000 +0000 +++ gnupg2-2.2.41/g10/import.c 2022-11-25 12:56:22.000000000 +0000 @@ -126,7 +126,8 @@ static int chk_self_sigs (ctrl_t ctrl, kbnode_t keyblock, u32 *keyid, int *non_self); static int delete_inv_parts (ctrl_t ctrl, kbnode_t keyblock, - u32 *keyid, unsigned int options); + u32 *keyid, unsigned int options, + kbnode_t *r_otherrevsigs); static int any_uid_left (kbnode_t keyblock); static void remove_all_non_self_sigs (kbnode_t *keyblock, u32 *keyid); static int merge_blocks (ctrl_t ctrl, unsigned int options, @@ -420,7 +421,7 @@ goto leave; } - if (!delete_inv_parts (ctrl, keyblock, keyid, 0) ) + if (!delete_inv_parts (ctrl, keyblock, keyid, 0, NULL) ) { err = gpg_error (GPG_ERR_NO_USER_ID); goto leave; @@ -1830,8 +1831,9 @@ * even most error messages are suppressed. ORIGIN is the origin of * the key (0 for unknown) and URL the corresponding URL. FROM_SK * indicates that the key has been made from a secret key. If R_SAVED - * is not NULL a boolean will be stored indicating whether the keyblock - * has valid parts. + * is not NULL a boolean will be stored indicating whether the + * keyblock has valid parts. Unless OTHERREVSIGS is NULL it is + * updated with encountered new revocation signatures. */ static gpg_error_t import_one_real (ctrl_t ctrl, @@ -1839,7 +1841,8 @@ unsigned char **fpr, size_t *fpr_len, unsigned int options, int from_sk, int silent, import_screener_t screener, void *screener_arg, - int origin, const char *url, int *r_valid) + int origin, const char *url, int *r_valid, + kbnode_t *otherrevsigs) { gpg_error_t err = 0; PKT_public_key *pk; @@ -1974,7 +1977,8 @@ } } - if (!delete_inv_parts (ctrl, keyblock, keyid, options ) ) + /* Delete invalid parts and bail out if there are no user ids left. */ + if (!delete_inv_parts (ctrl, keyblock, keyid, options, otherrevsigs)) { if (!silent) { @@ -2366,10 +2370,12 @@ int origin, const char *url, int *r_valid) { gpg_error_t err; + kbnode_t otherrevsigs = NULL; + kbnode_t node; err = import_one_real (ctrl, keyblock, stats, fpr, fpr_len, options, from_sk, silent, screener, screener_arg, - origin, url, r_valid); + origin, url, r_valid, &otherrevsigs); if (gpg_err_code (err) == GPG_ERR_TOO_LARGE && gpg_err_source (err) == GPG_ERR_SOURCE_KEYBOX && ((options & (IMPORT_SELF_SIGS_ONLY | IMPORT_CLEAN)) @@ -2385,8 +2391,17 @@ options |= IMPORT_SELF_SIGS_ONLY | IMPORT_CLEAN; err = import_one_real (ctrl, keyblock, stats, fpr, fpr_len, options, from_sk, silent, screener, screener_arg, - origin, url, r_valid); + origin, url, r_valid, &otherrevsigs); } + + /* Finally try to import other revocation certificates. For example + * those of a former key appended to the current key. */ + if (!err) + { + for (node = otherrevsigs; node; node = node->next) + import_revoke_cert (ctrl, node, options, stats); + } + release_kbnode (otherrevsigs); return err; } @@ -3358,9 +3373,8 @@ } -/**************** - * Import a revocation certificate; this is a single signature packet. - */ +/* Import a revocation certificate; only the first packet in the + * NODE-list is considered. */ static int import_revoke_cert (ctrl_t ctrl, kbnode_t node, unsigned int options, struct import_stats_s *stats) @@ -3377,10 +3391,12 @@ /* No error output for --show-keys. */ silent = (options & (IMPORT_SHOW | IMPORT_DRY_RUN)); - log_assert (!node->next ); log_assert (node->pkt->pkttype == PKT_SIGNATURE ); log_assert (IS_KEY_REV (node->pkt->pkt.signature)); + /* FIXME: We can do better here by using the issuer fingerprint if + * available. We should also make use of get_keyblock_byfprint_fast. */ + keyid[0] = node->pkt->pkt.signature->keyid[0]; keyid[1] = node->pkt->pkt.signature->keyid[1]; @@ -3726,12 +3742,15 @@ /* Delete all parts which are invalid and those signatures whose * public key algorithm is not available in this implementation; but * consider RSA as valid, because parse/build_packets knows about it. + * If R_OTHERREVSIGS is not NULL, it is used to return a list of + * revocation certificates which have been deleted from KEYBLOCK but + * should be handled later. * * Returns: True if at least one valid user-id is left over. */ static int delete_inv_parts (ctrl_t ctrl, kbnode_t keyblock, u32 *keyid, - unsigned int options) + unsigned int options, kbnode_t *r_otherrevsigs) { kbnode_t node; int nvalid=0, uid_seen=0, subkey_seen=0; @@ -3820,6 +3839,16 @@ if(opt.verbose) log_info( _("key %s: revocation certificate" " at wrong place - skipped\n"),keystr(keyid)); + if (r_otherrevsigs) + { + PACKET *pkt; + + pkt = xcalloc (1, sizeof *pkt); + pkt->pkttype = PKT_SIGNATURE; + pkt->pkt.signature = copy_signature + (NULL, node->pkt->pkt.signature); + *r_otherrevsigs = new_kbnode2 (*r_otherrevsigs, pkt); + } delete_kbnode( node ); } else @@ -3842,6 +3871,16 @@ delete_kbnode( node ); } } + else if (r_otherrevsigs) + { + PACKET *pkt; + + pkt = xcalloc (1, sizeof *pkt); + pkt->pkttype = PKT_SIGNATURE; + pkt->pkt.signature = copy_signature + (NULL, node->pkt->pkt.signature); + *r_otherrevsigs = new_kbnode2 (*r_otherrevsigs, pkt); + } } } else if (node->pkt->pkttype == PKT_SIGNATURE diff -Nru gnupg2-2.2.40/g10/kbnode.c gnupg2-2.2.41/g10/kbnode.c --- gnupg2-2.2.40/g10/kbnode.c 2022-02-24 13:06:37.000000000 +0000 +++ gnupg2-2.2.41/g10/kbnode.c 2022-11-25 12:56:22.000000000 +0000 @@ -98,6 +98,19 @@ } +/* Same as new_kbnode but insert the new node in front of LIST. Returns + * the new list. */ +kbnode_t +new_kbnode2 (kbnode_t list, PACKET *pkt) +{ + kbnode_t n; + + n = new_kbnode (pkt); + n->next = list; + return n; +} + + KBNODE clone_kbnode( KBNODE node ) { diff -Nru gnupg2-2.2.40/g10/keydb.h gnupg2-2.2.41/g10/keydb.h --- gnupg2-2.2.40/g10/keydb.h 2022-02-24 13:06:37.000000000 +0000 +++ gnupg2-2.2.41/g10/keydb.h 2022-11-30 10:01:41.000000000 +0000 @@ -552,6 +552,7 @@ /*-- kbnode.c --*/ KBNODE new_kbnode( PACKET *pkt ); +kbnode_t new_kbnode2 (kbnode_t list, PACKET *pkt); KBNODE clone_kbnode( KBNODE node ); void release_kbnode( KBNODE n ); void delete_kbnode( KBNODE node ); diff -Nru gnupg2-2.2.40/g10/keygen.c gnupg2-2.2.41/g10/keygen.c --- gnupg2-2.2.40/g10/keygen.c 2022-07-25 13:17:42.000000000 +0000 +++ gnupg2-2.2.41/g10/keygen.c 2022-11-30 10:01:41.000000000 +0000 @@ -121,9 +121,11 @@ }; -struct opaque_data_usage_and_pk { - unsigned int usage; - PKT_public_key *pk; +struct opaque_data_usage_and_pk +{ + unsigned int usage; + const char *cpl_notation; + PKT_public_key *pk; }; @@ -151,6 +153,9 @@ u32 expireval); static unsigned int get_keysize_range (int algo, unsigned int *min, unsigned int *max); +static void do_add_notation (PKT_signature *sig, + const char *name, const char *value, + int critical); @@ -301,12 +306,16 @@ } +/* This is only used to write the key binding signature. It is not + * used for the primary key. */ static int keygen_add_key_flags_and_expire (PKT_signature *sig, void *opaque) { struct opaque_data_usage_and_pk *oduap = opaque; do_add_key_flags (sig, oduap->usage); + if (oduap->cpl_notation) + do_add_notation (sig, "cpl@gnupg.org", oduap->cpl_notation, 0); return keygen_add_key_expire (sig, oduap->pk); } @@ -789,6 +798,44 @@ return 0; } + +/* This function is used to add a notations to a signature. In + * general the caller should have cleared exiting notations before + * adding new ones. For example by calling: + * + * delete_sig_subpkt(sig->hashed,SIGSUBPKT_NOTATION); + * delete_sig_subpkt(sig->unhashed,SIGSUBPKT_NOTATION); + * + * Only human readable notaions may be added. NAME and value are + * expected to be UTF-* strings. + */ +static void +do_add_notation (PKT_signature *sig, const char *name, const char *value, + int critical) +{ + unsigned char *buf; + unsigned int n1,n2; + + n1 = strlen (name); + n2 = strlen (value); + + buf = xmalloc (8 + n1 + n2); + + buf[0] = 0x80; /* human readable. */ + buf[1] = buf[2] = buf[3] = 0; + buf[4] = n1 >> 8; + buf[5] = n1; + buf[6] = n2 >> 8; + buf[7] = n2; + memcpy (buf+8, name, n1); + memcpy (buf+8+n1, value, n2); + build_sig_subpkt (sig, + (SIGSUBPKT_NOTATION|(critical?SIGSUBPKT_FLAG_CRITICAL:0)), + buf, 8+n1+n2 ); + xfree (buf); +} + + int keygen_add_notations(PKT_signature *sig,void *opaque) { @@ -838,6 +885,7 @@ return 0; } + int keygen_add_revkey (PKT_signature *sig, void *opaque) { @@ -1096,6 +1144,12 @@ /* Make the signature. */ oduap.usage = use; + if ((use & PUBKEY_USAGE_ENC) + && opt.compliance == CO_DE_VS + && gnupg_rng_is_compliant (CO_DE_VS)) + oduap.cpl_notation = "de-vs"; + else + oduap.cpl_notation = NULL; oduap.pk = sub_pk; err = make_keysig_packet (ctrl, &sig, pri_pk, NULL, sub_pk, pri_psk, 0x18, 0, timestamp, 0, diff -Nru gnupg2-2.2.40/g10/mainproc.c gnupg2-2.2.41/g10/mainproc.c --- gnupg2-2.2.40/g10/mainproc.c 2022-09-22 08:25:27.000000000 +0000 +++ gnupg2-2.2.41/g10/mainproc.c 2022-11-30 10:01:41.000000000 +0000 @@ -765,7 +765,7 @@ result = GPG_ERR_NO_SECKEY; /* Compute compliance with CO_DE_VS. */ - if (!result && is_status_enabled () + if (!result && (is_status_enabled () || opt.flags.require_compliance) /* Overriding session key voids compliance. */ && !opt.override_session_key /* Check symmetric cipher. */ diff -Nru gnupg2-2.2.40/g10/Makefile.am gnupg2-2.2.41/g10/Makefile.am --- gnupg2-2.2.40/g10/Makefile.am 2022-08-30 14:20:10.000000000 +0000 +++ gnupg2-2.2.41/g10/Makefile.am 2022-10-20 10:22:07.000000000 +0000 @@ -180,18 +180,18 @@ # $(common_source) LDADD = $(needed_libs) ../common/libgpgrl.a \ - $(ZLIBS) $(LIBINTL) $(CAPLIBS) $(NETLIBS) + $(ZLIBS) $(LIBINTL) $(CAPLIBS) gpg_LDADD = $(LDADD) $(LIBGCRYPT_LIBS) $(SQLITE3_LIBS) $(LIBREADLINE) \ - $(LIBASSUAN_LIBS) $(GPG_ERROR_LIBS) \ + $(LIBASSUAN_LIBS) $(GPG_ERROR_LIBS) $(NETLIBS) \ $(LIBICONV) $(gpg_robjs) $(extra_sys_libs) gpg_LDFLAGS = $(extra_bin_ldflags) gpgv_LDADD = $(LDADD) $(LIBGCRYPT_LIBS) \ - $(GPG_ERROR_LIBS) \ + $(GPG_ERROR_LIBS) $(NETLIBS) \ $(LIBICONV) $(gpgv_robjs) $(extra_sys_libs) gpgv_LDFLAGS = $(extra_bin_ldflags) gpgcompose_LDADD = $(LDADD) $(SQLITE3_LIBS) $(LIBGCRYPT_LIBS) $(LIBREADLINE) \ - $(LIBASSUAN_LIBS) $(GPG_ERROR_LIBS) \ + $(LIBASSUAN_LIBS) $(GPG_ERROR_LIBS) $(NETLIBS) \ $(LIBICONV) $(extra_sys_libs) gpgcompose_LDFLAGS = $(extra_bin_ldflags) @@ -200,15 +200,15 @@ t_rmd160_SOURCES = t-rmd160.c rmd160.c t_rmd160_LDADD = $(t_common_ldadd) t_keydb_SOURCES = t-keydb.c test-stubs.c $(common_source) -t_keydb_LDADD = $(LDADD) $(LIBGCRYPT_LIBS) $(GPG_ERROR_LIBS) \ +t_keydb_LDADD = $(LDADD) $(LIBGCRYPT_LIBS) $(GPG_ERROR_LIBS) $(NETLIBS) \ $(LIBICONV) $(t_common_ldadd) t_keydb_get_keyblock_SOURCES = t-keydb-get-keyblock.c test-stubs.c \ $(common_source) t_keydb_get_keyblock_LDADD = $(LDADD) $(LIBGCRYPT_LIBS) $(GPG_ERROR_LIBS) \ - $(LIBICONV) $(t_common_ldadd) + $(NETLIBS) $(LIBICONV) $(t_common_ldadd) t_stutter_SOURCES = t-stutter.c test-stubs.c \ $(common_source) -t_stutter_LDADD = $(LDADD) $(LIBGCRYPT_LIBS) $(GPG_ERROR_LIBS) \ +t_stutter_LDADD = $(LDADD) $(LIBGCRYPT_LIBS) $(GPG_ERROR_LIBS) $(NETLIBS) \ $(LIBICONV) $(t_common_ldadd) diff -Nru gnupg2-2.2.40/g10/Makefile.in gnupg2-2.2.41/g10/Makefile.in --- gnupg2-2.2.40/g10/Makefile.in 2022-10-10 11:57:18.000000000 +0000 +++ gnupg2-2.2.41/g10/Makefile.in 2022-12-09 08:47:54.000000000 +0000 @@ -218,15 +218,14 @@ gpg_OBJECTS = $(am_gpg_OBJECTS) am__DEPENDENCIES_1 = am__DEPENDENCIES_2 = $(needed_libs) ../common/libgpgrl.a \ - $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \ - $(am__DEPENDENCIES_1) + $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) @HAVE_W32_SYSTEM_TRUE@am__DEPENDENCIES_3 = $(am__DEPENDENCIES_1) \ @HAVE_W32_SYSTEM_TRUE@ gpg-w32info.o gpg_DEPENDENCIES = $(am__DEPENDENCIES_2) $(am__DEPENDENCIES_1) \ $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \ $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \ - $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_3) \ - $(am__DEPENDENCIES_1) + $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \ + $(am__DEPENDENCIES_3) $(am__DEPENDENCIES_1) gpg_LINK = $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(gpg_LDFLAGS) $(LDFLAGS) -o \ $@ am__gpgcompose_SOURCES_DIST = gpgcompose.c server.c gpg.h dek.h \ @@ -249,7 +248,8 @@ gpgcompose_DEPENDENCIES = $(am__DEPENDENCIES_2) $(am__DEPENDENCIES_1) \ $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \ $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \ - $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) + $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \ + $(am__DEPENDENCIES_1) gpgcompose_LINK = $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(gpgcompose_LDFLAGS) \ $(LDFLAGS) -o $@ am__gpgv_SOURCES_DIST = gpgv.c gpg.h dek.h build-packet.c compress.c \ @@ -265,7 +265,8 @@ @HAVE_W32_SYSTEM_TRUE@ gpgv-w32info.o gpgv_DEPENDENCIES = $(am__DEPENDENCIES_2) $(am__DEPENDENCIES_1) \ $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \ - $(am__DEPENDENCIES_4) $(am__DEPENDENCIES_1) + $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_4) \ + $(am__DEPENDENCIES_1) gpgv_LINK = $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(gpgv_LDFLAGS) $(LDFLAGS) \ -o $@ am__t_keydb_SOURCES_DIST = t-keydb.c test-stubs.c gpg.h dek.h \ @@ -280,7 +281,7 @@ t_keydb_OBJECTS = $(am_t_keydb_OBJECTS) t_keydb_DEPENDENCIES = $(am__DEPENDENCIES_2) $(am__DEPENDENCIES_1) \ $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \ - $(am__DEPENDENCIES_1) + $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) am__t_keydb_get_keyblock_SOURCES_DIST = t-keydb-get-keyblock.c \ test-stubs.c gpg.h dek.h build-packet.c compress.c \ compress-bz2.c filter.h free-packet.c getkey.c keydb.c keydb.h \ @@ -294,7 +295,8 @@ t_keydb_get_keyblock_OBJECTS = $(am_t_keydb_get_keyblock_OBJECTS) t_keydb_get_keyblock_DEPENDENCIES = $(am__DEPENDENCIES_2) \ $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \ - $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) + $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \ + $(am__DEPENDENCIES_1) am_t_rmd160_OBJECTS = t-rmd160.$(OBJEXT) rmd160.$(OBJEXT) t_rmd160_OBJECTS = $(am_t_rmd160_OBJECTS) t_rmd160_DEPENDENCIES = $(am__DEPENDENCIES_1) @@ -310,7 +312,7 @@ t_stutter_OBJECTS = $(am_t_stutter_OBJECTS) t_stutter_DEPENDENCIES = $(am__DEPENDENCIES_2) $(am__DEPENDENCIES_1) \ $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \ - $(am__DEPENDENCIES_1) + $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false @@ -755,20 +757,20 @@ # ks-db.h \ # $(common_source) LDADD = $(needed_libs) ../common/libgpgrl.a \ - $(ZLIBS) $(LIBINTL) $(CAPLIBS) $(NETLIBS) + $(ZLIBS) $(LIBINTL) $(CAPLIBS) gpg_LDADD = $(LDADD) $(LIBGCRYPT_LIBS) $(SQLITE3_LIBS) $(LIBREADLINE) \ - $(LIBASSUAN_LIBS) $(GPG_ERROR_LIBS) \ + $(LIBASSUAN_LIBS) $(GPG_ERROR_LIBS) $(NETLIBS) \ $(LIBICONV) $(gpg_robjs) $(extra_sys_libs) gpg_LDFLAGS = $(extra_bin_ldflags) gpgv_LDADD = $(LDADD) $(LIBGCRYPT_LIBS) \ - $(GPG_ERROR_LIBS) \ + $(GPG_ERROR_LIBS) $(NETLIBS) \ $(LIBICONV) $(gpgv_robjs) $(extra_sys_libs) gpgv_LDFLAGS = $(extra_bin_ldflags) gpgcompose_LDADD = $(LDADD) $(SQLITE3_LIBS) $(LIBGCRYPT_LIBS) $(LIBREADLINE) \ - $(LIBASSUAN_LIBS) $(GPG_ERROR_LIBS) \ + $(LIBASSUAN_LIBS) $(GPG_ERROR_LIBS) $(NETLIBS) \ $(LIBICONV) $(extra_sys_libs) gpgcompose_LDFLAGS = $(extra_bin_ldflags) @@ -777,19 +779,19 @@ t_rmd160_SOURCES = t-rmd160.c rmd160.c t_rmd160_LDADD = $(t_common_ldadd) t_keydb_SOURCES = t-keydb.c test-stubs.c $(common_source) -t_keydb_LDADD = $(LDADD) $(LIBGCRYPT_LIBS) $(GPG_ERROR_LIBS) \ +t_keydb_LDADD = $(LDADD) $(LIBGCRYPT_LIBS) $(GPG_ERROR_LIBS) $(NETLIBS) \ $(LIBICONV) $(t_common_ldadd) t_keydb_get_keyblock_SOURCES = t-keydb-get-keyblock.c test-stubs.c \ $(common_source) t_keydb_get_keyblock_LDADD = $(LDADD) $(LIBGCRYPT_LIBS) $(GPG_ERROR_LIBS) \ - $(LIBICONV) $(t_common_ldadd) + $(NETLIBS) $(LIBICONV) $(t_common_ldadd) t_stutter_SOURCES = t-stutter.c test-stubs.c \ $(common_source) -t_stutter_LDADD = $(LDADD) $(LIBGCRYPT_LIBS) $(GPG_ERROR_LIBS) \ +t_stutter_LDADD = $(LDADD) $(LIBGCRYPT_LIBS) $(GPG_ERROR_LIBS) $(NETLIBS) \ $(LIBICONV) $(t_common_ldadd) all: all-am diff -Nru gnupg2-2.2.40/g10/options.h gnupg2-2.2.41/g10/options.h --- gnupg2-2.2.40/g10/options.h 2022-03-08 16:39:25.000000000 +0000 +++ gnupg2-2.2.41/g10/options.h 2022-11-30 10:25:36.000000000 +0000 @@ -290,6 +290,9 @@ int only_sign_text_ids; int no_symkey_cache; /* Disable the cache used for --symmetric. */ + + /* Compatibility flags (COMPAT_FLAG_xxxx). */ + unsigned int compat_flags; } opt; /* CTRL is used to keep some global variables we currently can't @@ -346,8 +349,11 @@ EXTERN_UNLESS_MAIN_MODULE int memory_debug_mode; EXTERN_UNLESS_MAIN_MODULE int memory_stat_debug_mode; +/* Compatibility flags */ +/* #define COMPAT_FOO 1 */ + -/* Compatibility flags. */ +/* Compliance test macors. */ #define GNUPG (opt.compliance==CO_GNUPG || opt.compliance==CO_DE_VS) #define RFC2440 (opt.compliance==CO_RFC2440) #define RFC4880 (opt.compliance==CO_RFC4880) @@ -384,6 +390,7 @@ #define EXPORT_PKA_FORMAT (1<<6) #define EXPORT_DANE_FORMAT (1<<7) #define EXPORT_BACKUP (1<<10) +#define EXPORT_REVOCS (1<<11) #define LIST_SHOW_PHOTOS (1<<0) #define LIST_SHOW_POLICY_URLS (1<<1) diff -Nru gnupg2-2.2.40/g10/plaintext.c gnupg2-2.2.41/g10/plaintext.c --- gnupg2-2.2.40/g10/plaintext.c 2022-02-24 13:06:37.000000000 +0000 +++ gnupg2-2.2.41/g10/plaintext.c 2022-11-30 10:01:41.000000000 +0000 @@ -584,11 +584,16 @@ } else { - while ((c = iobuf_get (fp)) != -1) + byte *buffer = xmalloc (32768); + int ret; + + while ((ret = iobuf_read (fp, buffer, 32768)) != -1) { if (md) - gcry_md_putc (md, c); + gcry_md_write (md, buffer, ret); } + + xfree (buffer); } } diff -Nru gnupg2-2.2.40/g10/sign.c gnupg2-2.2.41/g10/sign.c --- gnupg2-2.2.40/g10/sign.c 2022-08-30 16:36:02.000000000 +0000 +++ gnupg2-2.2.41/g10/sign.c 2022-11-30 10:01:41.000000000 +0000 @@ -1211,8 +1211,8 @@ iobuf_push_filter( inp, text_filter, &tfx ); } iobuf_push_filter( inp, md_filter, &mfx ); - while( iobuf_get(inp) != -1 ) - ; + while (iobuf_read (inp, NULL, 1<<30) != -1 ) + ; iobuf_close(inp); inp = NULL; } if( opt.verbose ) @@ -1220,8 +1220,8 @@ } else { /* read, so that the filter can calculate the digest */ - while( iobuf_get(inp) != -1 ) - ; + while (iobuf_read (inp, NULL, 1<<30) != -1 ) + ; } } else { diff -Nru gnupg2-2.2.40/g10/trustdb.c gnupg2-2.2.41/g10/trustdb.c --- gnupg2-2.2.40/g10/trustdb.c 2022-02-24 13:06:37.000000000 +0000 +++ gnupg2-2.2.41/g10/trustdb.c 2022-11-25 12:56:24.000000000 +0000 @@ -1669,38 +1669,50 @@ return new; } + /* Used by validate_one_keyblock to confirm a regexp within a trust - signature. Returns 1 for match, and 0 for no match or regex - error. */ + * signature. Returns 1 for match, and 0 for no match or regex + * error. */ static int -check_regexp(const char *expr,const char *string) +check_regexp (const char *expr,const char *string) { int ret; char *regexp; + char *stringbuf = NULL; + regex_t pat; - regexp=sanitize_regexp(expr); - - { - regex_t pat; + regexp = sanitize_regexp (expr); - ret=regcomp(&pat,regexp,REG_ICASE|REG_EXTENDED); - if(ret==0) - { - ret=regexec(&pat,string,0,NULL,0); - regfree(&pat); - } - ret=(ret==0); - } - - if(DBG_TRUST) - log_debug("regexp '%s' ('%s') on '%s': %s\n", - regexp,expr,string,ret?"YES":"NO"); - - xfree(regexp); + ret = regcomp (&pat, regexp, (REG_ICASE|REG_EXTENDED)); + if (!ret) + { + if (*regexp == '<' && !strchr (string, '<') + && is_valid_mailbox (string)) + { + /* The R.E. starts with an angle bracket but STRING seems to + * be a plain mailbox (e.g. "foo@example.org"). The + * commonly used R.E. pattern "<[^>]+[@.]example\.org>$" + * won't be able to detect this. Thus we enclose STRING + * into angle brackets for checking. */ + stringbuf = xstrconcat ("<", string, ">", NULL); + string = stringbuf; + } + ret = regexec (&pat, string, 0, NULL, 0); + regfree (&pat); + } + + ret = !ret; + + if (DBG_TRUST) + log_debug ("regexp '%s' ('%s') on '%s'%s: %s\n", + regexp, expr, string, stringbuf? " (fixed)":"", ret? "YES":"NO"); + xfree (regexp); + xfree (stringbuf); return ret; } + /* * Return true if the key is signed by one of the keys in the given * key ID list. User IDs with a valid signature are marked by node diff -Nru gnupg2-2.2.40/m4/gpg-error.m4 gnupg2-2.2.41/m4/gpg-error.m4 --- gnupg2-2.2.40/m4/gpg-error.m4 2022-09-16 14:54:20.000000000 +0000 +++ gnupg2-2.2.41/m4/gpg-error.m4 2022-11-25 12:55:00.000000000 +0000 @@ -10,7 +10,7 @@ # WITHOUT ANY WARRANTY, to the extent permitted by law; without even the # implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. # -# Last-changed: 2022-02-15 +# Last-changed: 2022-09-21 dnl AM_PATH_GPG_ERROR([MINIMUM-VERSION, @@ -120,6 +120,10 @@ fi if test -n "$gpgrt_libdir"; then break; fi done + if test -z "$libdir_candidates"; then + # No valid pkgconfig dir in any of the system directories, fallback + gpgrt_libdir=${possible_libdir1} + fi else # When we cannot determine system libdir-format, use this: gpgrt_libdir=${possible_libdir1} diff -Nru gnupg2-2.2.40/Makefile.am gnupg2-2.2.41/Makefile.am --- gnupg2-2.2.40/Makefile.am 2022-02-24 13:06:37.000000000 +0000 +++ gnupg2-2.2.41/Makefile.am 2022-12-07 12:00:10.000000000 +0000 @@ -189,10 +189,25 @@ ./autogen.sh --force; \ cd $(abs_top_builddir); \ rm -rf dist; mkdir dist ; cd dist ; \ + mkopt=""; \ + if [ -n "$$CUSTOM_SWDB" ]; then \ + mkopt="CUSTOM_SWB=1"; \ + x=$$(grep '^OVERRIDE_TARBALLS=' \ + $$HOME/.gnupg-autogen.rc|cut -d= -f2);\ + if [ -f "$$x/swdb.lst" ]; then \ + echo "/* Copying swdb.lst from the overrides directory */"; \ + cp "$$x/swdb.lst" . ; \ + cp "$$x/swdb.lst.sig" . ; \ + fi; \ + fi; \ + echo "/* Running configure */";\ $(abs_top_srcdir)/configure --enable-maintainer-mode; \ + echo "/* Running make distcheck */";\ $(MAKE) distcheck TESTFLAGS=--parallel; \ + echo "/* Unpacking release */";\ $(TAR) xjf $(RELEASE_NAME).tar.bz2 ;\ - $(MAKE) -f $(RELEASE_NAME)/build-aux/speedo.mk w32-release ;\ + echo "/* Running $(MAKE) -f $(RELEASE_NAME)/build-aux/speedo.mk w32-release $$mkopt";\ + $(MAKE) -f $(RELEASE_NAME)/build-aux/speedo.mk w32-release $$mkopt;\ echo "/* Build finished at $$(date -uIseconds) */" ;\ echo "/*" ;\ echo " * Please run the final step interactivly:" ;\ diff -Nru gnupg2-2.2.40/Makefile.in gnupg2-2.2.41/Makefile.in --- gnupg2-2.2.40/Makefile.in 2022-10-10 11:57:17.000000000 +0000 +++ gnupg2-2.2.41/Makefile.in 2022-12-09 08:47:53.000000000 +0000 @@ -1109,10 +1109,25 @@ ./autogen.sh --force; \ cd $(abs_top_builddir); \ rm -rf dist; mkdir dist ; cd dist ; \ + mkopt=""; \ + if [ -n "$$CUSTOM_SWDB" ]; then \ + mkopt="CUSTOM_SWB=1"; \ + x=$$(grep '^OVERRIDE_TARBALLS=' \ + $$HOME/.gnupg-autogen.rc|cut -d= -f2);\ + if [ -f "$$x/swdb.lst" ]; then \ + echo "/* Copying swdb.lst from the overrides directory */"; \ + cp "$$x/swdb.lst" . ; \ + cp "$$x/swdb.lst.sig" . ; \ + fi; \ + fi; \ + echo "/* Running configure */";\ $(abs_top_srcdir)/configure --enable-maintainer-mode; \ + echo "/* Running make distcheck */";\ $(MAKE) distcheck TESTFLAGS=--parallel; \ + echo "/* Unpacking release */";\ $(TAR) xjf $(RELEASE_NAME).tar.bz2 ;\ - $(MAKE) -f $(RELEASE_NAME)/build-aux/speedo.mk w32-release ;\ + echo "/* Running $(MAKE) -f $(RELEASE_NAME)/build-aux/speedo.mk w32-release $$mkopt";\ + $(MAKE) -f $(RELEASE_NAME)/build-aux/speedo.mk w32-release $$mkopt;\ echo "/* Build finished at $$(date -uIseconds) */" ;\ echo "/*" ;\ echo " * Please run the final step interactivly:" ;\ diff -Nru gnupg2-2.2.40/NEWS gnupg2-2.2.41/NEWS --- gnupg2-2.2.40/NEWS 2022-10-10 09:54:07.000000000 +0000 +++ gnupg2-2.2.41/NEWS 2022-12-09 08:38:42.000000000 +0000 @@ -1,3 +1,35 @@ +Noteworthy changes in version 2.2.41 (2022-12-09) +------------------------------------------------- + + * gpg: Add a notation to encryption subkeys in de-vs mode. [T6279] + + * gpg: Fix trusted introducer for mbox only user-ids. [T6238] + + * gpg: Report an error via status-fd for receiving a key from the + agent. [T5151] + + * gpg: Make --require-compliance work without the --status-fd + option. [r11f3232716] + + * gpg: Improve signature verification speed by a factor of more than + four. Double detached signing speed. [T5826] + + * gpg: New --export-filter export-revocs. [rGedbe30c152] + + * gpg: Import stray revocation certificates to improve WKD + usability. [rGbd825ead36af] + + * wkd: New option --add-revocs for gpg-wks-client. [rG2f4492f3be] + + * wkd: Ignore expired user-ids in gpg-wks-client. [T6292] + + * scd: Support the Telesec Signature Card v2.0. [T6252] + + * Fix build regression depending on libgpg-error version. [T6244] + + Release-info: https://dev.gnupg.org/T6280 + + Noteworthy changes in version 2.2.40 (2022-10-10) ------------------------------------------------- diff -Nru gnupg2-2.2.40/po/ca.po gnupg2-2.2.41/po/ca.po --- gnupg2-2.2.40/po/ca.po 2022-10-10 09:58:25.000000000 +0000 +++ gnupg2-2.2.41/po/ca.po 2022-12-09 08:48:34.000000000 +0000 @@ -27,7 +27,7 @@ msgstr "" "Project-Id-Version: gnupg 1.4.0\n" "Report-Msgid-Bugs-To: translations@gnupg.org\n" -"POT-Creation-Date: 2022-10-10 11:58+0200\n" +"POT-Creation-Date: 2022-12-09 09:48+0100\n" "PO-Revision-Date: 2005-02-04 02:04+0100\n" "Last-Translator: Jordi Mallach \n" "Language-Team: Catalan \n" @@ -245,8 +245,8 @@ msgid "ssh keys greater than %d bits are not supported\n" msgstr "l'algoritme de protecció %d%s no està suportat\n" -#: agent/command-ssh.c:862 common/dotlock.c:856 g10/card-util.c:947 -#: g10/exec.c:554 g10/export.c:1320 g10/gpg.c:1400 g10/keygen.c:4998 +#: agent/command-ssh.c:862 common/dotlock.c:856 g10/card-util.c:946 +#: g10/exec.c:554 g10/export.c:1335 g10/gpg.c:1409 g10/keygen.c:5052 #: g10/keyring.c:1322 g10/keyring.c:1637 g10/openfile.c:291 g10/sign.c:1008 #: g10/sign.c:1322 g10/tdbio.c:753 #, fuzzy, c-format @@ -254,12 +254,12 @@ msgid "can't create '%s': %s\n" msgstr "no s'ha pogut crear «%s»: %s\n" -#: agent/command-ssh.c:874 common/helpfile.c:57 g10/card-util.c:904 +#: agent/command-ssh.c:874 common/helpfile.c:57 g10/card-util.c:903 #: g10/dearmor.c:59 g10/dearmor.c:106 g10/decrypt.c:65 g10/decrypt.c:136 -#: g10/decrypt.c:153 g10/encrypt.c:239 g10/encrypt.c:678 g10/gpg.c:1401 -#: g10/import.c:364 g10/import.c:548 g10/import.c:776 g10/keygen.c:4036 +#: g10/decrypt.c:153 g10/encrypt.c:239 g10/encrypt.c:678 g10/gpg.c:1410 +#: g10/import.c:365 g10/import.c:549 g10/import.c:777 g10/keygen.c:4090 #: g10/keyring.c:1663 g10/openfile.c:195 g10/openfile.c:209 g10/plaintext.c:128 -#: g10/plaintext.c:649 g10/sign.c:990 g10/sign.c:1201 g10/sign.c:1306 +#: g10/plaintext.c:654 g10/sign.c:990 g10/sign.c:1201 g10/sign.c:1306 #: g10/sign.c:1451 g10/tdbdump.c:145 g10/tdbdump.c:153 g10/tdbio.c:758 #: g10/tdbio.c:829 g10/verify.c:96 g10/verify.c:160 sm/gpgsm.c:2160 #: sm/gpgsm.c:2190 sm/gpgsm.c:2228 sm/qualified.c:66 dirmngr/certcache.c:420 @@ -489,35 +489,35 @@ msgid "csh-style command output" msgstr "" -#: agent/gpg-agent.c:185 g10/gpg.c:579 scd/scdaemon.c:126 sm/gpgsm.c:410 +#: agent/gpg-agent.c:185 g10/gpg.c:580 scd/scdaemon.c:126 sm/gpgsm.c:410 #: dirmngr/dirmngr.c:192 #, fuzzy msgid "|FILE|read options from FILE" msgstr "|FITXER|carrega el mòdul d'extensió especificat" -#: agent/gpg-agent.c:189 g10/gpg.c:566 scd/scdaemon.c:130 sm/gpgsm.c:259 +#: agent/gpg-agent.c:189 g10/gpg.c:567 scd/scdaemon.c:130 sm/gpgsm.c:259 #: dirmngr/dirmngr.c:196 msgid "Options controlling the diagnostic output" msgstr "" # Un dels dos és en la llista d'opcions amb --help. Urgh. jm -#: agent/gpg-agent.c:191 g10/gpg.c:568 g10/gpgv.c:78 kbx/kbxutil.c:88 +#: agent/gpg-agent.c:191 g10/gpg.c:569 g10/gpgv.c:78 kbx/kbxutil.c:88 #: scd/scdaemon.c:132 sm/gpgsm.c:261 dirmngr/dirmngr-client.c:70 #: dirmngr/dirmngr.c:198 tools/gpg-connect-agent.c:78 tools/gpgconf.c:110 msgid "verbose" msgstr "detall" -#: agent/gpg-agent.c:192 g10/gpg.c:570 g10/gpgv.c:79 kbx/kbxutil.c:89 +#: agent/gpg-agent.c:192 g10/gpg.c:571 g10/gpgv.c:79 kbx/kbxutil.c:89 #: scd/scdaemon.c:133 sm/gpgsm.c:263 dirmngr/dirmngr-client.c:71 #: dirmngr/dirmngr.c:199 msgid "be somewhat more quiet" msgstr "una mica més silenciós" -#: agent/gpg-agent.c:200 g10/gpg.c:583 sm/gpgsm.c:276 dirmngr/dirmngr.c:209 +#: agent/gpg-agent.c:200 g10/gpg.c:584 sm/gpgsm.c:276 dirmngr/dirmngr.c:209 msgid "|FILE|write server mode logs to FILE" msgstr "" -#: agent/gpg-agent.c:204 g10/gpg.c:589 scd/scdaemon.c:147 sm/gpgsm.c:283 +#: agent/gpg-agent.c:204 g10/gpg.c:590 scd/scdaemon.c:147 sm/gpgsm.c:283 #: dirmngr/dirmngr.c:213 msgid "Options controlling the configuration" msgstr "" @@ -567,7 +567,7 @@ msgid "enable putty support" msgstr "no és suportat" -#: agent/gpg-agent.c:237 g10/gpg.c:831 scd/scdaemon.c:175 sm/gpgsm.c:369 +#: agent/gpg-agent.c:237 g10/gpg.c:832 scd/scdaemon.c:175 sm/gpgsm.c:369 msgid "Options controlling the security" msgstr "" @@ -669,7 +669,7 @@ #. reporting address. This is so that we can change the #. reporting address without breaking the translations. #: agent/gpg-agent.c:563 agent/preset-passphrase.c:100 agent/protect-tool.c:155 -#: g10/gpg.c:1108 g10/gpgv.c:149 kbx/kbxutil.c:113 scd/scdaemon.c:313 +#: g10/gpg.c:1117 g10/gpgv.c:149 kbx/kbxutil.c:113 scd/scdaemon.c:313 #: sm/gpgsm.c:600 dirmngr/dirmngr-client.c:168 dirmngr/dirmngr.c:458 #: tools/gpg-connect-agent.c:205 tools/gpgconf.c:154 #: tools/gpg-check-pattern.c:143 @@ -688,27 +688,27 @@ "Secret key management for @GNUPG@\n" msgstr "" -#: agent/gpg-agent.c:619 g10/gpg.c:1304 scd/scdaemon.c:385 sm/gpgsm.c:748 +#: agent/gpg-agent.c:619 g10/gpg.c:1313 scd/scdaemon.c:385 sm/gpgsm.c:748 #: dirmngr/dirmngr.c:542 #, c-format msgid "invalid debug-level '%s' given\n" msgstr "" -#: agent/gpg-agent.c:988 g10/gpg.c:3810 g10/gpg.c:3834 sm/gpgsm.c:1585 +#: agent/gpg-agent.c:988 g10/gpg.c:3830 g10/gpg.c:3854 sm/gpgsm.c:1585 #: sm/gpgsm.c:1591 #, c-format msgid "selected digest algorithm is invalid\n" msgstr "l'algorisme de resum seleccionat no és vàlid\n" #: agent/gpg-agent.c:1216 agent/gpg-agent.c:2029 common/argparse.c:1766 -#: common/argparse.c:1858 g10/gpg.c:2517 scd/scdaemon.c:547 sm/gpgsm.c:1007 +#: common/argparse.c:1858 g10/gpg.c:2526 scd/scdaemon.c:547 sm/gpgsm.c:1007 #: dirmngr/dirmngr.c:1081 dirmngr/dirmngr.c:1937 #, fuzzy, c-format #| msgid "reading options from `%s'\n" msgid "reading options from '%s'\n" msgstr "s'estan llegint opcions de «%s»\n" -#: agent/gpg-agent.c:1332 g10/gpg.c:3751 scd/scdaemon.c:671 sm/gpgsm.c:1522 +#: agent/gpg-agent.c:1332 g10/gpg.c:3769 scd/scdaemon.c:671 sm/gpgsm.c:1522 #: dirmngr/dirmngr.c:1190 tools/gpg-connect-agent.c:1244 tools/gpgconf.c:677 #, fuzzy, c-format #| msgid "WARNING: \"%s\" is a deprecated option\n" @@ -841,7 +841,7 @@ "Password cache maintenance\n" msgstr "" -#: agent/protect-tool.c:108 g10/gpg.c:441 kbx/kbxutil.c:71 sm/gpgsm.c:210 +#: agent/protect-tool.c:108 g10/gpg.c:442 kbx/kbxutil.c:71 sm/gpgsm.c:210 #: dirmngr/dirmngr.c:171 tools/gpgconf.c:80 msgid "" "@Commands:\n" @@ -1063,7 +1063,7 @@ msgid "secret key parts are not available\n" msgstr "parts de la clau secreta no estan disponbles\n" -#: agent/cvt-openpgp.c:344 g10/card-util.c:1556 +#: agent/cvt-openpgp.c:344 g10/card-util.c:1555 #, fuzzy, c-format #| msgid "protection algorithm %d%s is not supported\n" msgid "public key algorithm %d (%s) is not supported\n" @@ -1226,7 +1226,7 @@ msgid "out of core while allocating %lu bytes" msgstr "" -#: common/miscellaneous.c:115 g10/card-util.c:911 tools/no-libgcrypt.c:30 +#: common/miscellaneous.c:115 g10/card-util.c:910 tools/no-libgcrypt.c:30 #, fuzzy, c-format msgid "error allocating enough memory: %s\n" msgstr "error en crear l'anell «%s»: %s\n" @@ -1362,7 +1362,7 @@ # i s'ha dit que és erroni, igual que «suportat» :) Les alternatives # encara no m'agraden massa... jm #: common/audit.c:774 common/audit.c:776 common/audit.c:921 common/audit.c:923 -#: scd/app-openpgp.c:3557 +#: scd/app-openpgp.c:3566 #, fuzzy, c-format msgid "unsupported algorithm: %s" msgstr "" @@ -1451,12 +1451,12 @@ "No s'han trobat certificats amb confiança no definida.\n" "\n" -#: common/audit.c:1112 sm/certchain.c:1235 +#: common/audit.c:1112 sm/certchain.c:1236 #, fuzzy msgid "no CRL found for certificate" msgstr "Certificat correcte" -#: common/audit.c:1115 sm/certchain.c:1245 +#: common/audit.c:1115 sm/certchain.c:1246 #, fuzzy msgid "the available CRL is too old" msgstr "La clau és disponible en: " @@ -1602,7 +1602,7 @@ msgid "missing argument for option \"%.50s\"\n" msgstr "" -#: common/argparse.c:558 g10/gpg.c:3525 +#: common/argparse.c:558 g10/gpg.c:3543 #, fuzzy, c-format msgid "invalid argument for option \"%.50s\"\n" msgstr "opcions d'importació no vàlides\n" @@ -1703,95 +1703,95 @@ msgid "%s is too old (need %s, have %s)\n" msgstr "" -#: g10/armor.c:423 +#: g10/armor.c:424 #, c-format msgid "armor: %s\n" msgstr "armadura: %s\n" -#: g10/armor.c:462 +#: g10/armor.c:463 #, c-format msgid "invalid armor header: " msgstr "la capçalera d'armadura és invàlida: " -#: g10/armor.c:473 +#: g10/armor.c:474 #, c-format msgid "armor header: " msgstr "capçalera d'armadura: " -#: g10/armor.c:486 +#: g10/armor.c:487 #, c-format msgid "invalid clearsig header\n" msgstr "la capçalera de signatura clara és invàlida\n" -#: g10/armor.c:499 +#: g10/armor.c:500 #, fuzzy, c-format msgid "unknown armor header: " msgstr "capçalera d'armadura: " # És un missatge d'error? ivb # «Anidada» és un castellanisme. Niuades? Imbricades (SC)?? ivb -#: g10/armor.c:552 +#: g10/armor.c:553 #, c-format msgid "nested clear text signatures\n" msgstr "signatures en text pla imbricades\n" # FIXME: un-indiar. jm -#: g10/armor.c:687 +#: g10/armor.c:688 #, fuzzy, c-format msgid "unexpected armor: " msgstr "armadura inesperada:" -#: g10/armor.c:700 +#: g10/armor.c:701 #, c-format msgid "invalid dash escaped line: " msgstr "la línia escapada amb guió és invàlida: " -#: g10/armor.c:872 g10/armor.c:1492 +#: g10/armor.c:873 g10/armor.c:1493 #, fuzzy, c-format msgid "invalid radix64 character %02X skipped\n" msgstr "el caràcter radix64 %02x invàlid s'ha omés\n" -#: g10/armor.c:915 +#: g10/armor.c:916 #, c-format msgid "premature eof (no CRC)\n" msgstr "fi de fitxer prematur (no CRC)\n" -#: g10/armor.c:949 +#: g10/armor.c:950 #, c-format msgid "premature eof (in CRC)\n" msgstr "fi de fitxer prematur (en CRC)\n" -#: g10/armor.c:957 +#: g10/armor.c:958 #, c-format msgid "malformed CRC\n" msgstr "CRC malformat\n" -#: g10/armor.c:961 g10/armor.c:1529 +#: g10/armor.c:962 g10/armor.c:1530 #, fuzzy, c-format msgid "CRC error; %06lX - %06lX\n" msgstr "error de CRC; %06lx - %06lx\n" -#: g10/armor.c:981 +#: g10/armor.c:982 #, fuzzy, c-format msgid "premature eof (in trailer)\n" msgstr "fí de fitxer prematur (al final)\n" -#: g10/armor.c:985 +#: g10/armor.c:986 #, c-format msgid "error in trailer line\n" msgstr "error en l'última línia\n" -#: g10/armor.c:1305 +#: g10/armor.c:1306 #, c-format msgid "no valid OpenPGP data found.\n" msgstr "no s'han trobat dades OpenPGP vàlides.\n" -#: g10/armor.c:1310 +#: g10/armor.c:1311 #, c-format msgid "invalid armor: line longer than %d characters\n" msgstr "l'armadura és invàlida: la línia és més llarga que %d caràcters\n" -#: g10/armor.c:1314 +#: g10/armor.c:1315 #, c-format msgid "" "quoted printable character in armor - probably a buggy MTA has been used\n" @@ -1943,26 +1943,26 @@ msgid "server uses an invalid certificate" msgstr "genera un certificat de revocació" -#: g10/call-dirmngr.c:462 g10/gpg.c:4458 +#: g10/call-dirmngr.c:462 g10/gpg.c:4478 #, fuzzy, c-format #| msgid "armor: %s\n" msgid "Note: %s\n" msgstr "armadura: %s\n" -#: g10/card-util.c:86 g10/card-util.c:366 g10/card-util.c:1918 +#: g10/card-util.c:86 g10/card-util.c:366 g10/card-util.c:1917 #, fuzzy, c-format msgid "OpenPGP card not available: %s\n" msgstr "la clau secreta no està disponible" -#: g10/card-util.c:91 g10/card-util.c:1924 +#: g10/card-util.c:91 g10/card-util.c:1923 #, c-format msgid "OpenPGP card no. %s detected\n" msgstr "" # Destès? ivb # Desatès, sí. jm -#: g10/card-util.c:97 g10/card-util.c:2253 g10/delkey.c:160 g10/keyedit.c:1423 -#: g10/keygen.c:4466 g10/revoke.c:214 g10/revoke.c:636 +#: g10/card-util.c:97 g10/card-util.c:2252 g10/delkey.c:160 g10/keyedit.c:1423 +#: g10/keygen.c:4520 g10/revoke.c:214 g10/revoke.c:636 #, fuzzy, c-format msgid "can't do this in batch mode\n" msgstr "no es pot fet això en mode desatès\n" @@ -1973,14 +1973,14 @@ msgstr "Aquesta ordre no està permesa mentre s'està en mode %s.\n" # Parts? Peces? ivb -#: g10/card-util.c:107 scd/app-openpgp.c:2866 +#: g10/card-util.c:107 scd/app-openpgp.c:2869 #, fuzzy, c-format msgid "Reset Code not or not anymore available\n" msgstr "parts de la clau secreta no estan disponbles\n" -#: g10/card-util.c:140 g10/card-util.c:1442 g10/card-util.c:1704 -#: g10/card-util.c:1796 g10/keyedit.c:394 g10/keyedit.c:415 g10/keyedit.c:429 -#: g10/keygen.c:1808 g10/keygen.c:1980 g10/keygen.c:2186 g10/keygen.c:2477 +#: g10/card-util.c:140 g10/card-util.c:1441 g10/card-util.c:1703 +#: g10/card-util.c:1795 g10/keyedit.c:394 g10/keyedit.c:415 g10/keyedit.c:429 +#: g10/keygen.c:1862 g10/keygen.c:2034 g10/keygen.c:2240 g10/keygen.c:2531 #: sm/certreqgen-ui.c:165 sm/certreqgen-ui.c:291 sm/certreqgen-ui.c:325 msgid "Your selection? " msgstr "La vostra selecció? " @@ -2034,13 +2034,13 @@ msgid "Error: Combined name too long (limit is %d characters).\n" msgstr "" -#: g10/card-util.c:826 +#: g10/card-util.c:825 #, fuzzy msgid "URL to retrieve public key: " msgstr "no hi ha cap clau pública corresponent: %s\n" -#: g10/card-util.c:920 g10/decrypt-data.c:509 g10/import.c:399 g10/import.c:746 -#: g10/import.c:798 dirmngr/crlcache.c:655 dirmngr/crlcache.c:660 +#: g10/card-util.c:919 g10/decrypt-data.c:509 g10/import.c:400 g10/import.c:747 +#: g10/import.c:799 dirmngr/crlcache.c:655 dirmngr/crlcache.c:660 #: dirmngr/crlcache.c:914 dirmngr/crlcache.c:920 dirmngr/dirmngr.c:1748 #: tools/gpgconf.c:483 tools/gpgconf.c:529 #, fuzzy, c-format @@ -2048,174 +2048,174 @@ msgid "error reading '%s': %s\n" msgstr "error en la lectura de «%s»: %s\n" -#: g10/card-util.c:953 g10/decrypt-data.c:512 g10/export.c:2467 +#: g10/card-util.c:952 g10/decrypt-data.c:512 g10/export.c:2586 #: dirmngr/crlcache.c:925 #, fuzzy, c-format msgid "error writing '%s': %s\n" msgstr "error mentre s'escrivia l'anell «%s»: %s\n" -#: g10/card-util.c:980 +#: g10/card-util.c:979 msgid "Login data (account name): " msgstr "" -#: g10/card-util.c:1018 +#: g10/card-util.c:1017 msgid "Private DO data: " msgstr "" -#: g10/card-util.c:1103 +#: g10/card-util.c:1102 #, fuzzy msgid "Language preferences: " msgstr "preferències actualitzades" -#: g10/card-util.c:1111 +#: g10/card-util.c:1110 #, fuzzy msgid "Error: invalid length of preference string.\n" msgstr "hi ha un caràcter invàlid en la cadena de preferència\n" -#: g10/card-util.c:1120 +#: g10/card-util.c:1119 #, fuzzy msgid "Error: invalid characters in preference string.\n" msgstr "hi ha un caràcter invàlid en la cadena de preferència\n" -#: g10/card-util.c:1142 +#: g10/card-util.c:1141 msgid "Salutation (M = Mr., F = Ms., or space): " msgstr "" -#: g10/card-util.c:1156 +#: g10/card-util.c:1155 #, fuzzy msgid "Error: invalid response.\n" msgstr "error: l'empremta digital és invàlida\n" -#: g10/card-util.c:1178 +#: g10/card-util.c:1177 #, fuzzy msgid "CA fingerprint: " msgstr "Empremta digital:" -#: g10/card-util.c:1201 +#: g10/card-util.c:1200 #, fuzzy msgid "Error: invalid formatted fingerprint.\n" msgstr "error: l'empremta digital és invàlida\n" -#: g10/card-util.c:1252 +#: g10/card-util.c:1251 #, fuzzy, c-format msgid "key operation not possible: %s\n" msgstr "La generació de claus ha fallat: %s\n" -#: g10/card-util.c:1253 +#: g10/card-util.c:1252 #, fuzzy msgid "not an OpenPGP card" msgstr "no s'han trobat dades OpenPGP vàlides.\n" -#: g10/card-util.c:1266 g10/keygen.c:4486 g10/keygen.c:5562 +#: g10/card-util.c:1265 g10/keygen.c:4540 g10/keygen.c:5616 #, fuzzy, c-format msgid "error getting current key info: %s\n" msgstr "s'ha produït un error mentre s'escrivia l'anell secret «%s»: %s\n" -#: g10/card-util.c:1351 +#: g10/card-util.c:1350 msgid "Replace existing key? (y/N) " msgstr "" -#: g10/card-util.c:1368 +#: g10/card-util.c:1367 msgid "" "Note: There is no guarantee that the card supports the requested size.\n" " If the key generation does not succeed, please check the\n" " documentation of your card to see what sizes are allowed.\n" msgstr "" -#: g10/card-util.c:1390 g10/keygen.c:2363 sm/certreqgen-ui.c:179 +#: g10/card-util.c:1389 g10/keygen.c:2417 sm/certreqgen-ui.c:179 #, fuzzy, c-format msgid "What keysize do you want? (%u) " msgstr "Quina grandària voleu? (1024) " -#: g10/card-util.c:1400 g10/keygen.c:2286 g10/keygen.c:2318 +#: g10/card-util.c:1399 g10/keygen.c:2340 g10/keygen.c:2372 #: sm/certreqgen-ui.c:194 #, c-format msgid "rounded up to %u bits\n" msgstr "arrodonida fins a %u bits\n" -#: g10/card-util.c:1408 g10/keygen.c:2371 sm/certreqgen-ui.c:184 +#: g10/card-util.c:1407 g10/keygen.c:2425 sm/certreqgen-ui.c:184 #, c-format msgid "%s keysizes must be in the range %u-%u\n" msgstr "" -#: g10/card-util.c:1427 +#: g10/card-util.c:1426 msgid "Changing card key attribute for: " msgstr "" -#: g10/card-util.c:1429 +#: g10/card-util.c:1428 #, fuzzy msgid "Signature key\n" msgstr "Aquesta signatura va caducar el %s\n" -#: g10/card-util.c:1431 +#: g10/card-util.c:1430 #, fuzzy msgid "Encryption key\n" msgstr " (%d) RSA (només xifrar)\n" -#: g10/card-util.c:1433 +#: g10/card-util.c:1432 msgid "Authentication key\n" msgstr "" -#: g10/card-util.c:1435 g10/keygen.c:1926 sm/certreqgen-ui.c:157 +#: g10/card-util.c:1434 g10/keygen.c:1980 sm/certreqgen-ui.c:157 msgid "Please select what kind of key you want:\n" msgstr "Seleccioneu quin tipus de clau voleu:\n" -#: g10/card-util.c:1436 sm/certreqgen-ui.c:158 +#: g10/card-util.c:1435 sm/certreqgen-ui.c:158 #, fuzzy, c-format msgid " (%d) RSA\n" msgstr " (%d) RSA (només signar)\n" -#: g10/card-util.c:1437 +#: g10/card-util.c:1436 #, fuzzy, c-format msgid " (%d) ECC\n" msgstr " (%d) DSA i ElGamal (predeterminat)\n" -#: g10/card-util.c:1449 g10/card-util.c:1716 g10/card-util.c:1816 -#: g10/keyedit.c:900 g10/keygen.c:1834 g10/keygen.c:1862 g10/keygen.c:1987 -#: g10/keygen.c:2222 g10/keygen.c:2505 g10/revoke.c:838 +#: g10/card-util.c:1448 g10/card-util.c:1715 g10/card-util.c:1815 +#: g10/keyedit.c:900 g10/keygen.c:1888 g10/keygen.c:1916 g10/keygen.c:2041 +#: g10/keygen.c:2276 g10/keygen.c:2559 g10/revoke.c:838 msgid "Invalid selection.\n" msgstr "La selecció és invàlida.\n" -#: g10/card-util.c:1522 +#: g10/card-util.c:1521 #, c-format msgid "The card will now be re-configured to generate a key of %u bits\n" msgstr "" -#: g10/card-util.c:1527 +#: g10/card-util.c:1526 #, c-format msgid "The card will now be re-configured to generate a key of type: %s\n" msgstr "" -#: g10/card-util.c:1563 +#: g10/card-util.c:1562 #, fuzzy, c-format msgid "error changing key attribute for key %d: %s\n" msgstr "error mentre s'enviava a «%s»: %s\n" -#: g10/card-util.c:1579 g10/card-util.c:2106 +#: g10/card-util.c:1578 g10/card-util.c:2105 #, fuzzy, c-format msgid "error getting card info: %s\n" msgstr "s'ha produït un error mentre s'escrivia l'anell secret «%s»: %s\n" -#: g10/card-util.c:1585 g10/card-util.c:1930 g10/card-util.c:2112 +#: g10/card-util.c:1584 g10/card-util.c:1929 g10/card-util.c:2111 #, fuzzy, c-format #| msgid "This command is not allowed while in %s mode.\n" msgid "This command is not supported by this card\n" msgstr "Aquesta ordre no està permesa mentre s'està en mode %s.\n" -#: g10/card-util.c:1631 +#: g10/card-util.c:1630 msgid "Make off-card backup of encryption key? (Y/n) " msgstr "" -#: g10/card-util.c:1645 +#: g10/card-util.c:1644 #, fuzzy, c-format msgid "Note: keys are already stored on the card!\n" msgstr "es descarta: la clau secreta ja és present\n" -#: g10/card-util.c:1648 +#: g10/card-util.c:1647 msgid "Replace existing keys? (y/N) " msgstr "" -#: g10/card-util.c:1660 +#: g10/card-util.c:1659 #, c-format msgid "" "Please note that the factory settings of the PINs are\n" @@ -2223,159 +2223,159 @@ "You should change them using the command --change-pin\n" msgstr "" -#: g10/card-util.c:1695 +#: g10/card-util.c:1694 #, fuzzy msgid "Please select the type of key to generate:\n" msgstr "Seleccioneu quin tipus de clau voleu:\n" -#: g10/card-util.c:1697 g10/card-util.c:1787 +#: g10/card-util.c:1696 g10/card-util.c:1786 msgid " (1) Signature key\n" msgstr "" -#: g10/card-util.c:1698 g10/card-util.c:1789 +#: g10/card-util.c:1697 g10/card-util.c:1788 #, fuzzy msgid " (2) Encryption key\n" msgstr " (%d) RSA (només xifrar)\n" -#: g10/card-util.c:1699 g10/card-util.c:1791 +#: g10/card-util.c:1698 g10/card-util.c:1790 msgid " (3) Authentication key\n" msgstr "" -#: g10/card-util.c:1784 +#: g10/card-util.c:1783 #, fuzzy msgid "Please select where to store the key:\n" msgstr "Seleccioneu la raó de la revocació:\n" -#: g10/card-util.c:1830 +#: g10/card-util.c:1829 #, fuzzy, c-format msgid "KEYTOCARD failed: %s\n" msgstr "ha fallat l'actualització: %s\n" -#: g10/card-util.c:1935 +#: g10/card-util.c:1934 #, fuzzy, c-format msgid "Note: This command destroys all keys stored on the card!\n" msgstr "es descarta: la clau secreta ja és present\n" -#: g10/card-util.c:1938 +#: g10/card-util.c:1937 #, fuzzy msgid "Continue? (y/N) " msgstr "Signar realment? " -#: g10/card-util.c:1943 +#: g10/card-util.c:1942 msgid "Really do a factory reset? (enter \"yes\") " msgstr "" -#: g10/card-util.c:2129 +#: g10/card-util.c:2128 #, fuzzy, c-format msgid "error for setup KDF: %s\n" msgstr "error en la lectura de «%s»: %s\n" -#: g10/card-util.c:2158 g10/keyedit.c:1260 +#: g10/card-util.c:2157 g10/keyedit.c:1260 msgid "quit this menu" msgstr "ix del menú" -#: g10/card-util.c:2160 +#: g10/card-util.c:2159 #, fuzzy msgid "show admin commands" msgstr "les ordres entren en conflicte\n" # «pantalla» o «ajuda»? ivb # «ajuda», evidentment. jm -#: g10/card-util.c:2161 g10/keyedit.c:1263 +#: g10/card-util.c:2160 g10/keyedit.c:1263 msgid "show this help" msgstr "mostra aquesta ajuda" -#: g10/card-util.c:2163 +#: g10/card-util.c:2162 #, fuzzy msgid "list all available data" msgstr "La clau és disponible en: " -#: g10/card-util.c:2166 +#: g10/card-util.c:2165 msgid "change card holder's name" msgstr "" -#: g10/card-util.c:2167 +#: g10/card-util.c:2166 msgid "change URL to retrieve key" msgstr "" -#: g10/card-util.c:2168 +#: g10/card-util.c:2167 msgid "fetch the key specified in the card URL" msgstr "" -#: g10/card-util.c:2169 +#: g10/card-util.c:2168 #, fuzzy msgid "change the login name" msgstr "canvia la data de caducitat" -#: g10/card-util.c:2170 +#: g10/card-util.c:2169 #, fuzzy msgid "change the language preferences" msgstr "canvia la confiança" -#: g10/card-util.c:2171 +#: g10/card-util.c:2170 msgid "change card holder's salutation" msgstr "" -#: g10/card-util.c:2173 +#: g10/card-util.c:2172 #, fuzzy msgid "change a CA fingerprint" msgstr "mostra empremta" -#: g10/card-util.c:2174 +#: g10/card-util.c:2173 msgid "toggle the signature force PIN flag" msgstr "" -#: g10/card-util.c:2175 +#: g10/card-util.c:2174 #, fuzzy msgid "generate new keys" msgstr "genera un nou parell de claus" -#: g10/card-util.c:2176 +#: g10/card-util.c:2175 msgid "menu to change or unblock the PIN" msgstr "" -#: g10/card-util.c:2177 +#: g10/card-util.c:2176 msgid "verify the PIN and list all data" msgstr "" -#: g10/card-util.c:2178 +#: g10/card-util.c:2177 msgid "unblock the PIN using a Reset Code" msgstr "" -#: g10/card-util.c:2179 +#: g10/card-util.c:2178 msgid "destroy all keys and data" msgstr "" -#: g10/card-util.c:2180 +#: g10/card-util.c:2179 #, fuzzy #| msgid "|NAME|use NAME as default recipient" msgid "setup KDF for PIN authentication" msgstr "|NOM|usa NOM com a destinatari predeterminat" -#: g10/card-util.c:2181 +#: g10/card-util.c:2180 #, fuzzy #| msgid "change the ownertrust" msgid "change the key attribute" msgstr "canvia la confiança" -#: g10/card-util.c:2305 +#: g10/card-util.c:2304 msgid "gpg/card> " msgstr "" -#: g10/card-util.c:2346 +#: g10/card-util.c:2345 #, fuzzy msgid "Admin-only command\n" msgstr "les ordres entren en conflicte\n" -#: g10/card-util.c:2377 +#: g10/card-util.c:2376 msgid "Admin commands are allowed\n" msgstr "" -#: g10/card-util.c:2379 +#: g10/card-util.c:2378 msgid "Admin commands are not allowed\n" msgstr "" -#: g10/card-util.c:2482 g10/keyedit.c:2229 +#: g10/card-util.c:2481 g10/keyedit.c:2229 msgid "Invalid command (try \"help\")\n" msgstr "L'ordre no és vàlida (proveu «help»)\n" @@ -2384,22 +2384,22 @@ msgid "--output doesn't work for this command\n" msgstr "--output no funciona per a aquesta ordre\n" -#: g10/decrypt.c:247 g10/gpg.c:5155 g10/keyring.c:399 g10/keyring.c:750 +#: g10/decrypt.c:247 g10/gpg.c:5175 g10/keyring.c:399 g10/keyring.c:750 #, fuzzy, c-format #| msgid "can't open `%s'\n" msgid "can't open '%s'\n" msgstr "no s'ha pogut obrir «%s»\n" -#: g10/delkey.c:83 g10/export.c:1947 g10/export.c:2230 g10/export.c:2351 -#: g10/getkey.c:2108 g10/gpg.c:5100 g10/keyedit.c:1445 g10/keyedit.c:2335 +#: g10/delkey.c:83 g10/export.c:2035 g10/export.c:2349 g10/export.c:2470 +#: g10/getkey.c:2108 g10/gpg.c:5120 g10/keyedit.c:1445 g10/keyedit.c:2335 #: g10/keyedit.c:2637 g10/keyedit.c:4600 g10/keylist.c:693 g10/keyserver.c:1092 #: g10/revoke.c:230 g10/tofu.c:2165 #, fuzzy, c-format msgid "key \"%s\" not found: %s\n" msgstr "no s'ha trobat la clau «%s»: %s\n" -#: g10/delkey.c:92 g10/export.c:2015 g10/getkey.c:2116 g10/getkey.c:4517 -#: g10/gpg.c:5109 g10/keyedit.c:2308 g10/keyserver.c:1110 g10/revoke.c:236 +#: g10/delkey.c:92 g10/export.c:2103 g10/getkey.c:2116 g10/getkey.c:4517 +#: g10/gpg.c:5129 g10/keyedit.c:2308 g10/keyserver.c:1110 g10/revoke.c:236 #: g10/revoke.c:663 g10/tofu.c:2173 #, c-format msgid "error reading keyblock: %s\n" @@ -2524,13 +2524,13 @@ msgid "WARNING: '%s' is an empty file\n" msgstr "AVÍS: «%s» és un fitxer buit\n" -#: g10/encrypt.c:446 g10/encrypt.c:521 g10/decrypt-data.c:266 g10/gpg.c:3959 -#: g10/gpg.c:3999 sm/decrypt.c:826 sm/encrypt.c:416 sm/gpgsm.c:1609 +#: g10/encrypt.c:446 g10/encrypt.c:521 g10/decrypt-data.c:266 g10/gpg.c:3979 +#: g10/gpg.c:4019 sm/decrypt.c:826 sm/encrypt.c:416 sm/gpgsm.c:1609 #, fuzzy, c-format msgid "cipher algorithm '%s' may not be used in %s mode\n" msgstr "no podeu usar l'algorisme de xifratge «%s» mentre esteu en mode %s\n" -#: g10/encrypt.c:455 g10/gpg.c:3965 g10/gpg.c:4011 g10/sig-check.c:175 +#: g10/encrypt.c:455 g10/gpg.c:3985 g10/gpg.c:4031 g10/sig-check.c:175 #: g10/sign.c:391 sm/gpgsm.c:1619 sm/gpgsm.c:1629 sm/sign.c:478 sm/verify.c:506 #, fuzzy, c-format msgid "digest algorithm '%s' may not be used in %s mode\n" @@ -2655,71 +2655,77 @@ msgid "WARNING: unable to remove temp directory '%s': %s\n" msgstr "AVÍS: no s'ha pogut eliminar el directori temporal «%s»: %s\n" -#: g10/export.c:119 +#: g10/export.c:124 #, fuzzy msgid "export signatures that are marked as local-only" msgstr "" "\n" "La signatura es marcarà com a irrevocable.\n" -#: g10/export.c:121 +#: g10/export.c:126 msgid "export attribute user IDs (generally photo IDs)" msgstr "" -#: g10/export.c:123 +#: g10/export.c:128 #, fuzzy msgid "export revocation keys marked as \"sensitive\"" msgstr "no s'han ttrobat claus de revocació per a «%s»\n" -#: g10/export.c:125 +#: g10/export.c:130 #, fuzzy msgid "remove unusable parts from key during export" msgstr "la clau secreta és inusable" -#: g10/export.c:127 +#: g10/export.c:132 msgid "remove as much as possible from key during export" msgstr "" -#: g10/export.c:133 +#: g10/export.c:138 +#, fuzzy +#| msgid "generate a revocation certificate" +msgid "export only revocation certificates" +msgstr "genera un certificat de revocació" + +#: g10/export.c:141 msgid "use the GnuPG key backup format" msgstr "" -#: g10/export.c:1291 +#: g10/export.c:1306 #, fuzzy #| msgid "%s: skipped: %s\n" msgid " - skipped" msgstr "%s: es descarta: %s\n" -#: g10/export.c:1324 g10/import.c:2085 g10/openfile.c:200 g10/openfile.c:294 +#: g10/export.c:1339 g10/import.c:2089 g10/openfile.c:200 g10/openfile.c:294 #: g10/sign.c:1012 g10/sign.c:1326 #, fuzzy, c-format #| msgid "writing to `%s'\n" msgid "writing to '%s'\n" msgstr "s'està escrivint en «%s»\n" -#: g10/export.c:1769 +#: g10/export.c:1784 #, fuzzy, c-format msgid "key %s: key material on-card - skipped\n" msgstr "" "clau %08lX: la signatura de la subclau és en el lloc equivocat - es " "descarta\n" -#: g10/export.c:1964 +#: g10/export.c:2052 #, fuzzy, c-format msgid "exporting secret keys not allowed\n" msgstr "s'està escrivint la clau secreta a «%s»\n" -#: g10/export.c:2041 +#: g10/export.c:2129 #, fuzzy, c-format msgid "key %s: PGP 2.x style key - skipped\n" msgstr "clau %08lX: clau d'estil PGP 2.x - es descarta\n" -#: g10/export.c:2135 +#: g10/export.c:2254 #, c-format msgid "WARNING: nothing exported\n" msgstr "AVÍS: no s'ha exportat res\n" -#: g10/export.c:2432 g10/plaintext.c:153 g10/plaintext.c:162 +#: g10/export.c:2551 g10/plaintext.c:153 g10/plaintext.c:162 #: g10/plaintext.c:168 g10/plaintext.c:191 #, fuzzy, c-format #| msgid "error creating `%s': %s\n" @@ -2789,300 +2795,300 @@ msgid "using subkey %s instead of primary key %s\n" msgstr "s'usarà la clau secundària %08lX en lloc de la primària %08lX\n" -#: g10/getkey.c:4446 g10/gpg.c:2137 +#: g10/getkey.c:4446 g10/gpg.c:2146 #, fuzzy, c-format msgid "valid values for option '%s':\n" msgstr "opcions d'importació no vàlides\n" -#: g10/gpg.c:443 sm/gpgsm.c:212 +#: g10/gpg.c:444 sm/gpgsm.c:212 #, fuzzy msgid "make a signature" msgstr "|[fitxer]|crea una signatura" -#: g10/gpg.c:444 +#: g10/gpg.c:445 #, fuzzy msgid "make a clear text signature" msgstr "|[fitxer]|crea una signatura en text clar" -#: g10/gpg.c:446 sm/gpgsm.c:214 +#: g10/gpg.c:447 sm/gpgsm.c:214 msgid "make a detached signature" msgstr "crea una signatura separada" -#: g10/gpg.c:447 sm/gpgsm.c:215 +#: g10/gpg.c:448 sm/gpgsm.c:215 msgid "encrypt data" msgstr "xifra dades" -#: g10/gpg.c:449 +#: g10/gpg.c:450 msgid "encryption only with symmetric cipher" msgstr "xifra només amb xifratge simètric" -#: g10/gpg.c:451 sm/gpgsm.c:217 +#: g10/gpg.c:452 sm/gpgsm.c:217 msgid "decrypt data (default)" msgstr "desxifra dades (predeterminat)" -#: g10/gpg.c:453 sm/gpgsm.c:218 +#: g10/gpg.c:454 sm/gpgsm.c:218 msgid "verify a signature" msgstr "verifica una signatura" -#: g10/gpg.c:455 sm/gpgsm.c:219 +#: g10/gpg.c:456 sm/gpgsm.c:219 msgid "list keys" msgstr "llista claus" -#: g10/gpg.c:457 +#: g10/gpg.c:458 msgid "list keys and signatures" msgstr "llista claus i signatures" # «de les claus» o «de la clau»? ivb -#: g10/gpg.c:460 +#: g10/gpg.c:461 #, fuzzy msgid "list and check key signatures" msgstr "comprova les signatures de la claus" # «dactilars» o «digitals»? ivb -#: g10/gpg.c:462 sm/gpgsm.c:224 +#: g10/gpg.c:463 sm/gpgsm.c:224 msgid "list keys and fingerprints" msgstr "llista claus i empremtes digitals" -#: g10/gpg.c:463 sm/gpgsm.c:222 +#: g10/gpg.c:464 sm/gpgsm.c:222 msgid "list secret keys" msgstr "llista claus secretes" -#: g10/gpg.c:465 sm/gpgsm.c:225 +#: g10/gpg.c:466 sm/gpgsm.c:225 msgid "generate a new key pair" msgstr "genera un nou parell de claus" -#: g10/gpg.c:468 +#: g10/gpg.c:469 #, fuzzy #| msgid "generate a new key pair" msgid "quickly generate a new key pair" msgstr "genera un nou parell de claus" -#: g10/gpg.c:471 +#: g10/gpg.c:472 #, fuzzy #| msgid "generate a new key pair" msgid "quickly add a new user-id" msgstr "genera un nou parell de claus" -#: g10/gpg.c:476 +#: g10/gpg.c:477 #, fuzzy #| msgid "generate a new key pair" msgid "quickly revoke a user-id" msgstr "genera un nou parell de claus" -#: g10/gpg.c:479 +#: g10/gpg.c:480 #, fuzzy #| msgid "generate a new key pair" msgid "quickly set a new expiration date" msgstr "genera un nou parell de claus" -#: g10/gpg.c:482 +#: g10/gpg.c:483 msgid "full featured key pair generation" msgstr "" -#: g10/gpg.c:485 +#: g10/gpg.c:486 msgid "generate a revocation certificate" msgstr "genera un certificat de revocació" -#: g10/gpg.c:488 sm/gpgsm.c:228 +#: g10/gpg.c:489 sm/gpgsm.c:228 msgid "remove keys from the public keyring" msgstr "elimina claus de l'anell públic" -#: g10/gpg.c:490 +#: g10/gpg.c:491 msgid "remove keys from the secret keyring" msgstr "elimina claus de l'anell secret" -#: g10/gpg.c:492 +#: g10/gpg.c:493 #, fuzzy #| msgid "sign a key" msgid "quickly sign a key" msgstr "signa una clau" -#: g10/gpg.c:494 +#: g10/gpg.c:495 #, fuzzy #| msgid "sign a key locally" msgid "quickly sign a key locally" msgstr "signa una clau localment" -#: g10/gpg.c:496 +#: g10/gpg.c:497 #, fuzzy #| msgid "generate a new key pair" msgid "quickly revoke a key signature" msgstr "genera un nou parell de claus" -#: g10/gpg.c:497 +#: g10/gpg.c:498 msgid "sign a key" msgstr "signa una clau" -#: g10/gpg.c:498 +#: g10/gpg.c:499 msgid "sign a key locally" msgstr "signa una clau localment" -#: g10/gpg.c:499 +#: g10/gpg.c:500 msgid "sign or edit a key" msgstr "signa o edita una clau" -#: g10/gpg.c:501 sm/gpgsm.c:246 +#: g10/gpg.c:502 sm/gpgsm.c:246 #, fuzzy msgid "change a passphrase" msgstr "canvia la contrasenya" -#: g10/gpg.c:505 +#: g10/gpg.c:506 msgid "export keys" msgstr "exporta claus" -#: g10/gpg.c:506 +#: g10/gpg.c:507 msgid "export keys to a keyserver" msgstr "exporta claus a un servidor de claus" -#: g10/gpg.c:507 +#: g10/gpg.c:508 msgid "import keys from a keyserver" msgstr "importa claus d'un servidor de claus" -#: g10/gpg.c:510 +#: g10/gpg.c:511 msgid "search for keys on a keyserver" msgstr "cerca claus en un servidor de claus" -#: g10/gpg.c:512 +#: g10/gpg.c:513 msgid "update all keys from a keyserver" msgstr "actualitza totes les claus des d'un servidor de claus" -#: g10/gpg.c:520 +#: g10/gpg.c:521 msgid "import/merge keys" msgstr "importa/fon claus" -#: g10/gpg.c:523 +#: g10/gpg.c:524 msgid "print the card status" msgstr "" -#: g10/gpg.c:524 +#: g10/gpg.c:525 msgid "change data on a card" msgstr "" -#: g10/gpg.c:526 +#: g10/gpg.c:527 msgid "change a card's PIN" msgstr "" -#: g10/gpg.c:538 +#: g10/gpg.c:539 msgid "update the trust database" msgstr "actualitza la base de dades de confiança" -#: g10/gpg.c:548 +#: g10/gpg.c:549 #, fuzzy msgid "print message digests" msgstr "|algo [fitxers]|imprimeix resums de missatges" -#: g10/gpg.c:552 sm/gpgsm.c:241 +#: g10/gpg.c:553 sm/gpgsm.c:241 msgid "run in server mode" msgstr "" -#: g10/gpg.c:554 +#: g10/gpg.c:555 msgid "|VALUE|set the TOFU policy for a key" msgstr "" -#: g10/gpg.c:594 +#: g10/gpg.c:595 msgid "|NAME|use NAME as default secret key" msgstr "|NOM|usa NOM com a clau secreta predeterminada" -#: g10/gpg.c:596 sm/gpgsm.c:332 +#: g10/gpg.c:597 sm/gpgsm.c:332 #, fuzzy msgid "|NAME|encrypt to user ID NAME as well" msgstr "|NOM|xifra per a NOM" -#: g10/gpg.c:604 +#: g10/gpg.c:605 msgid "|SPEC|set up email aliases" msgstr "" -#: g10/gpg.c:616 +#: g10/gpg.c:617 msgid "use strict OpenPGP behavior" msgstr "" -#: g10/gpg.c:641 kbx/kbxutil.c:90 sm/gpgsm.c:412 tools/gpgconf.c:112 +#: g10/gpg.c:642 kbx/kbxutil.c:90 sm/gpgsm.c:412 tools/gpgconf.c:112 msgid "do not make any changes" msgstr "no fa cap canvi" -#: g10/gpg.c:642 +#: g10/gpg.c:643 msgid "prompt before overwriting" msgstr "pregunta abans de sobreescriure" -#: g10/gpg.c:689 sm/gpgsm.c:304 +#: g10/gpg.c:690 sm/gpgsm.c:304 msgid "Options controlling the input" msgstr "" -#: g10/gpg.c:707 sm/gpgsm.c:314 +#: g10/gpg.c:708 sm/gpgsm.c:314 msgid "Options controlling the output" msgstr "" -#: g10/gpg.c:709 sm/gpgsm.c:316 +#: g10/gpg.c:710 sm/gpgsm.c:316 msgid "create ascii armored output" msgstr "crea eixida amb armadura ascii" -#: g10/gpg.c:713 g10/gpgv.c:82 sm/gpgsm.c:321 +#: g10/gpg.c:714 g10/gpgv.c:82 sm/gpgsm.c:321 #, fuzzy msgid "|FILE|write output to FILE" msgstr "|FITXER|carrega el mòdul d'extensió especificat" -#: g10/gpg.c:726 +#: g10/gpg.c:727 msgid "use canonical text mode" msgstr "usa el mode de text canònic" -#: g10/gpg.c:743 +#: g10/gpg.c:744 #, fuzzy msgid "|N|set compress level to N (0 disables)" msgstr "|N|nivell de compressió N (0 no comprimeix)" -#: g10/gpg.c:750 sm/gpgsm.c:347 +#: g10/gpg.c:751 sm/gpgsm.c:347 msgid "Options controlling key import and export" msgstr "" -#: g10/gpg.c:753 +#: g10/gpg.c:754 msgid "|MECHANISMS|use MECHANISMS to locate keys by mail address" msgstr "" -#: g10/gpg.c:756 +#: g10/gpg.c:757 #, fuzzy #| msgid "import keys from a keyserver" msgid "import missing key from a signature" msgstr "importa claus d'un servidor de claus" # «de les claus» o «de la clau»? ivb -#: g10/gpg.c:761 +#: g10/gpg.c:762 #, fuzzy msgid "include the public key in signatures" msgstr "comprova les signatures de la claus" -#: g10/gpg.c:764 sm/gpgsm.c:350 +#: g10/gpg.c:765 sm/gpgsm.c:350 msgid "disable all access to the dirmngr" msgstr "" -#: g10/gpg.c:776 sm/gpgsm.c:357 +#: g10/gpg.c:777 sm/gpgsm.c:357 msgid "Options controlling key listings" msgstr "" -#: g10/gpg.c:805 sm/gpgsm.c:324 +#: g10/gpg.c:806 sm/gpgsm.c:324 #, fuzzy #| msgid "list secret keys" msgid "Options to specify keys" msgstr "llista claus secretes" -#: g10/gpg.c:807 sm/gpgsm.c:326 +#: g10/gpg.c:808 sm/gpgsm.c:326 #, fuzzy msgid "|USER-ID|encrypt for USER-ID" msgstr "|NOM|xifra per a NOM" -#: g10/gpg.c:815 sm/gpgsm.c:328 +#: g10/gpg.c:816 sm/gpgsm.c:328 #, fuzzy msgid "|USER-ID|use USER-ID to sign or decrypt" msgstr "usa aquest id per a signar o desxifrar" -#: g10/gpg.c:866 sm/gpgsm.c:396 +#: g10/gpg.c:867 sm/gpgsm.c:396 msgid "Options for unattended use" msgstr "" -#: g10/gpg.c:885 sm/gpgsm.c:408 dirmngr/dirmngr.c:294 +#: g10/gpg.c:886 sm/gpgsm.c:408 dirmngr/dirmngr.c:294 msgid "Other options" msgstr "" -#: g10/gpg.c:953 sm/gpgsm.c:440 +#: g10/gpg.c:955 sm/gpgsm.c:440 msgid "" "@\n" "(See the man page for a complete listing of all commands and options)\n" @@ -3093,7 +3099,7 @@ # Crec q (A)lice (orig.), (B)ob (dest.), etc. són noms usats pel Zimmerman # en el manual original de PGP. A, B, C... ivb # En efecte. Idem per a Mallory més endavant. Els deixe com a l'original. jm -#: g10/gpg.c:956 +#: g10/gpg.c:958 #, fuzzy #| msgid "" #| "@\n" @@ -3123,13 +3129,13 @@ " --list-keys [noms] mostra claus\n" " --fingerprint [noms] mostra empremtes digitals\n" -#: g10/gpg.c:1130 +#: g10/gpg.c:1139 #, fuzzy #| msgid "Usage: gpg [options] [files] (-h for help)" msgid "Usage: @GPG@ [options] [files] (-h for help)" msgstr "Forma d'ús: gpg [opcions] [fitxers] (-h per a veure l'ajuda)" -#: g10/gpg.c:1133 +#: g10/gpg.c:1142 #, fuzzy #| msgid "" #| "Syntax: gpg [options] [files]\n" @@ -3149,7 +3155,7 @@ # Precissament acabem de parlar d'«implementat a la llista del GNOME # i s'ha dit que és erroni, igual que «suportat» :) Les alternatives # encara no m'agraden massa... jm -#: g10/gpg.c:1144 sm/gpgsm.c:624 +#: g10/gpg.c:1153 sm/gpgsm.c:624 msgid "" "\n" "Supported algorithms:\n" @@ -3157,557 +3163,557 @@ "\n" "Algoritmes suportats:\n" -#: g10/gpg.c:1147 +#: g10/gpg.c:1156 msgid "Pubkey: " msgstr "Clau pública: " -#: g10/gpg.c:1154 g10/keyedit.c:3338 +#: g10/gpg.c:1163 g10/keyedit.c:3338 msgid "Cipher: " msgstr "Xifratge: " -#: g10/gpg.c:1161 +#: g10/gpg.c:1170 msgid "Hash: " msgstr "Dispersió: " -#: g10/gpg.c:1168 g10/keyedit.c:3404 +#: g10/gpg.c:1177 g10/keyedit.c:3404 msgid "Compression: " msgstr "Compressió: " -#: g10/gpg.c:1241 sm/gpgsm.c:698 +#: g10/gpg.c:1250 sm/gpgsm.c:698 #, fuzzy, c-format msgid "usage: %s [options] %s\n" msgstr "forma d'ús: gpg [opcions] " -#: g10/gpg.c:1436 sm/gpgsm.c:791 +#: g10/gpg.c:1445 sm/gpgsm.c:791 #, c-format msgid "conflicting commands\n" msgstr "les ordres entren en conflicte\n" -#: g10/gpg.c:1454 +#: g10/gpg.c:1463 #, fuzzy, c-format #| msgid "no = sign found in group definition `%s'\n" msgid "no = sign found in group definition '%s'\n" msgstr "no s'ha trobat cap signe = a la definició de grup «%s»\n" # Indi. ivb -#: g10/gpg.c:1652 +#: g10/gpg.c:1661 #, fuzzy, c-format msgid "WARNING: unsafe ownership on homedir '%s'\n" msgstr "AVÍS: el propietari és insegur en %s «%s»\n" # Indi. ivb -#: g10/gpg.c:1655 +#: g10/gpg.c:1664 #, fuzzy, c-format msgid "WARNING: unsafe ownership on configuration file '%s'\n" msgstr "AVÍS: el propietari és insegur en %s «%s»\n" # Indi. ivb -#: g10/gpg.c:1658 +#: g10/gpg.c:1667 #, fuzzy, c-format msgid "WARNING: unsafe ownership on extension '%s'\n" msgstr "AVÍS: el propietari és insegur en %s «%s»\n" -#: g10/gpg.c:1664 +#: g10/gpg.c:1673 #, fuzzy, c-format msgid "WARNING: unsafe permissions on homedir '%s'\n" msgstr "AVÍS: els permissos són insegurs en %s «%s»\n" -#: g10/gpg.c:1667 +#: g10/gpg.c:1676 #, fuzzy, c-format msgid "WARNING: unsafe permissions on configuration file '%s'\n" msgstr "AVÍS: els permissos són insegurs en %s «%s»\n" -#: g10/gpg.c:1670 +#: g10/gpg.c:1679 #, fuzzy, c-format msgid "WARNING: unsafe permissions on extension '%s'\n" msgstr "AVÍS: els permissos són insegurs en %s «%s»\n" -#: g10/gpg.c:1676 +#: g10/gpg.c:1685 #, fuzzy, c-format msgid "WARNING: unsafe enclosing directory ownership on homedir '%s'\n" msgstr "AVÍS: el propietari del directori envoltant és insegur en %s «%s»\n" -#: g10/gpg.c:1679 +#: g10/gpg.c:1688 #, fuzzy, c-format msgid "" "WARNING: unsafe enclosing directory ownership on configuration file '%s'\n" msgstr "AVÍS: el propietari del directori envoltant és insegur en %s «%s»\n" -#: g10/gpg.c:1682 +#: g10/gpg.c:1691 #, fuzzy, c-format msgid "WARNING: unsafe enclosing directory ownership on extension '%s'\n" msgstr "AVÍS: el propietari del directori envoltant és insegur en %s «%s»\n" -#: g10/gpg.c:1688 +#: g10/gpg.c:1697 #, fuzzy, c-format msgid "WARNING: unsafe enclosing directory permissions on homedir '%s'\n" msgstr "AVÍS: els permissos del directori envoltant són insegurs en %s «%s»\n" -#: g10/gpg.c:1691 +#: g10/gpg.c:1700 #, fuzzy, c-format msgid "" "WARNING: unsafe enclosing directory permissions on configuration file '%s'\n" msgstr "AVÍS: els permissos del directori envoltant són insegurs en %s «%s»\n" -#: g10/gpg.c:1694 +#: g10/gpg.c:1703 #, fuzzy, c-format msgid "WARNING: unsafe enclosing directory permissions on extension '%s'\n" msgstr "AVÍS: els permissos del directori envoltant són insegurs en %s «%s»\n" -#: g10/gpg.c:1910 +#: g10/gpg.c:1919 #, fuzzy, c-format msgid "unknown configuration item '%s'\n" msgstr "s'ha creat el nou fitxer d'opcions «%s»\n" -#: g10/gpg.c:2009 +#: g10/gpg.c:2018 msgid "display photo IDs during key listings" msgstr "" -#: g10/gpg.c:2011 +#: g10/gpg.c:2020 #, fuzzy msgid "show key usage information during key listings" msgstr "No hi ha cap signatura corresponent en l'anell secret\n" -#: g10/gpg.c:2013 +#: g10/gpg.c:2022 msgid "show policy URLs during signature listings" msgstr "" -#: g10/gpg.c:2015 +#: g10/gpg.c:2024 #, fuzzy msgid "show all notations during signature listings" msgstr "No hi ha cap signatura corresponent en l'anell secret\n" -#: g10/gpg.c:2017 +#: g10/gpg.c:2026 msgid "show IETF standard notations during signature listings" msgstr "" -#: g10/gpg.c:2021 +#: g10/gpg.c:2030 msgid "show user-supplied notations during signature listings" msgstr "" -#: g10/gpg.c:2023 +#: g10/gpg.c:2032 #, fuzzy msgid "show preferred keyserver URLs during signature listings" msgstr "la URL de política de signatura donada no és vàlida\n" -#: g10/gpg.c:2025 +#: g10/gpg.c:2034 msgid "show user ID validity during key listings" msgstr "" -#: g10/gpg.c:2027 +#: g10/gpg.c:2036 msgid "show revoked and expired user IDs in key listings" msgstr "" -#: g10/gpg.c:2029 +#: g10/gpg.c:2038 msgid "show revoked and expired subkeys in key listings" msgstr "" -#: g10/gpg.c:2031 +#: g10/gpg.c:2040 #, fuzzy msgid "show the keyring name in key listings" msgstr "mostra en quin anell de claus està una clau llistada" -#: g10/gpg.c:2033 +#: g10/gpg.c:2042 #, fuzzy msgid "show expiration dates during signature listings" msgstr "No hi ha cap signatura corresponent en l'anell secret\n" -#: g10/gpg.c:2148 +#: g10/gpg.c:2157 #, fuzzy, c-format msgid "unknown TOFU policy '%s'\n" msgstr "el destinatari predeterminat és desconegut «%s»\n" -#: g10/gpg.c:2150 +#: g10/gpg.c:2159 #, c-format msgid "(use \"help\" to list choices)\n" msgstr "" -#: g10/gpg.c:2240 g10/keyedit.c:1719 +#: g10/gpg.c:2249 g10/keyedit.c:1719 #, c-format msgid "This command is not allowed while in %s mode.\n" msgstr "Aquesta ordre no està permesa mentre s'està en mode %s.\n" -#: g10/gpg.c:2878 g10/gpg.c:3718 g10/gpg.c:3730 +#: g10/gpg.c:2896 g10/gpg.c:3736 g10/gpg.c:3748 #, fuzzy, c-format #| msgid "NOTE: %s is not for normal use!\n" msgid "Note: %s is not for normal use!\n" msgstr "NOTA: %s no és per a ús normal!\n" -#: g10/gpg.c:3053 g10/gpg.c:3065 +#: g10/gpg.c:3071 g10/gpg.c:3083 #, fuzzy, c-format msgid "'%s' is not a valid signature expiration\n" msgstr "%s no és un joc de caràcters vàlid\n" -#: g10/gpg.c:3087 +#: g10/gpg.c:3105 #, fuzzy, c-format msgid "\"%s\" is not a proper mail address\n" msgstr "No és una adreça vàlida\n" -#: g10/gpg.c:3119 sm/gpgsm.c:1121 +#: g10/gpg.c:3137 sm/gpgsm.c:1121 #, fuzzy, c-format msgid "invalid pinentry mode '%s'\n" msgstr "l'algoritme de dispersió és invàlid «%s»\n" -#: g10/gpg.c:3125 sm/gpgsm.c:1127 +#: g10/gpg.c:3143 sm/gpgsm.c:1127 #, fuzzy, c-format msgid "invalid request origin '%s'\n" msgstr "opcions d'importació no vàlides\n" -#: g10/gpg.c:3179 +#: g10/gpg.c:3197 #, fuzzy, c-format msgid "'%s' is not a valid character set\n" msgstr "%s no és un joc de caràcters vàlid\n" -#: g10/gpg.c:3201 g10/gpg.c:3415 g10/keyedit.c:5338 +#: g10/gpg.c:3219 g10/gpg.c:3433 g10/keyedit.c:5338 #, fuzzy, c-format msgid "could not parse keyserver URL\n" msgstr "no s'ha pogut analitzar sintàcticament la URI del servidor de claus\n" -#: g10/gpg.c:3219 +#: g10/gpg.c:3237 #, fuzzy, c-format msgid "%s:%d: invalid keyserver options\n" msgstr "%s:%d opcions d'exportació no vàlides\n" -#: g10/gpg.c:3222 +#: g10/gpg.c:3240 #, fuzzy, c-format msgid "invalid keyserver options\n" msgstr "opcions d'exportació no vàlides\n" -#: g10/gpg.c:3229 +#: g10/gpg.c:3247 #, c-format msgid "%s:%d: invalid import options\n" msgstr "%s:%d: opcions d'importanció no vàlides\n" -#: g10/gpg.c:3232 +#: g10/gpg.c:3250 #, c-format msgid "invalid import options\n" msgstr "opcions d'importació no vàlides\n" -#: g10/gpg.c:3238 g10/gpg.c:3253 +#: g10/gpg.c:3256 g10/gpg.c:3271 #, fuzzy, c-format msgid "invalid filter option: %s\n" msgstr "opcions d'importació no vàlides\n" -#: g10/gpg.c:3244 +#: g10/gpg.c:3262 #, c-format msgid "%s:%d: invalid export options\n" msgstr "%s:%d opcions d'exportació no vàlides\n" -#: g10/gpg.c:3247 +#: g10/gpg.c:3265 #, c-format msgid "invalid export options\n" msgstr "opcions d'exportació no vàlides\n" -#: g10/gpg.c:3259 +#: g10/gpg.c:3277 #, fuzzy, c-format msgid "%s:%d: invalid list options\n" msgstr "%s:%d: opcions d'importanció no vàlides\n" -#: g10/gpg.c:3262 +#: g10/gpg.c:3280 #, fuzzy, c-format msgid "invalid list options\n" msgstr "opcions d'importació no vàlides\n" -#: g10/gpg.c:3270 +#: g10/gpg.c:3288 msgid "display photo IDs during signature verification" msgstr "" -#: g10/gpg.c:3272 +#: g10/gpg.c:3290 msgid "show policy URLs during signature verification" msgstr "" -#: g10/gpg.c:3274 +#: g10/gpg.c:3292 #, fuzzy msgid "show all notations during signature verification" msgstr "%s no és un joc de caràcters vàlid\n" -#: g10/gpg.c:3276 +#: g10/gpg.c:3294 msgid "show IETF standard notations during signature verification" msgstr "" -#: g10/gpg.c:3280 +#: g10/gpg.c:3298 msgid "show user-supplied notations during signature verification" msgstr "" -#: g10/gpg.c:3282 +#: g10/gpg.c:3300 #, fuzzy msgid "show preferred keyserver URLs during signature verification" msgstr "la URL de política de signatura donada no és vàlida\n" -#: g10/gpg.c:3284 +#: g10/gpg.c:3302 #, fuzzy msgid "show user ID validity during signature verification" msgstr "%s no és un joc de caràcters vàlid\n" -#: g10/gpg.c:3286 +#: g10/gpg.c:3304 msgid "show revoked and expired user IDs in signature verification" msgstr "" -#: g10/gpg.c:3288 +#: g10/gpg.c:3306 #, fuzzy msgid "show only the primary user ID in signature verification" msgstr "%s no és un joc de caràcters vàlid\n" -#: g10/gpg.c:3290 +#: g10/gpg.c:3308 msgid "validate signatures with PKA data" msgstr "" -#: g10/gpg.c:3292 +#: g10/gpg.c:3310 msgid "elevate the trust of signatures with valid PKA data" msgstr "" -#: g10/gpg.c:3299 +#: g10/gpg.c:3317 #, fuzzy, c-format msgid "%s:%d: invalid verify options\n" msgstr "%s:%d opcions d'exportació no vàlides\n" -#: g10/gpg.c:3302 +#: g10/gpg.c:3320 #, fuzzy, c-format msgid "invalid verify options\n" msgstr "opcions d'exportació no vàlides\n" -#: g10/gpg.c:3309 +#: g10/gpg.c:3327 #, c-format msgid "unable to set exec-path to %s\n" msgstr "no s'ha pogut fixar l'exec-path a %s\n" -#: g10/gpg.c:3513 +#: g10/gpg.c:3531 #, fuzzy, c-format msgid "%s:%d: invalid auto-key-locate list\n" msgstr "%s:%d opcions d'exportació no vàlides\n" -#: g10/gpg.c:3516 +#: g10/gpg.c:3534 #, c-format msgid "invalid auto-key-locate list\n" msgstr "" -#: g10/gpg.c:3700 sm/gpgsm.c:1492 +#: g10/gpg.c:3718 sm/gpgsm.c:1492 #, c-format msgid "WARNING: program may create a core file!\n" msgstr "AVÍS: el programa podria crear un fitxer core!\n" # FIXME: preferència? jm # Ho discutírem en la llista, segur. Deu ser als arxius. ivb -#: g10/gpg.c:3711 +#: g10/gpg.c:3729 #, c-format msgid "WARNING: %s overrides %s\n" msgstr "AVÍS: %s té preferència sobre %s\n" -#: g10/gpg.c:3720 +#: g10/gpg.c:3738 #, c-format msgid "%s not allowed with %s!\n" msgstr "%s no és permés amb %s!\n" -#: g10/gpg.c:3723 +#: g10/gpg.c:3741 #, c-format msgid "%s makes no sense with %s!\n" msgstr "%s no té sentit amb %s!\n" -#: g10/gpg.c:3738 sm/gpgsm.c:1509 dirmngr/dirmngr.c:1205 +#: g10/gpg.c:3756 sm/gpgsm.c:1509 dirmngr/dirmngr.c:1205 #, c-format msgid "WARNING: running with faked system time: " msgstr "" -#: g10/gpg.c:3759 +#: g10/gpg.c:3777 #, fuzzy, c-format msgid "will not run with insecure memory due to %s\n" msgstr "s'està escrivint la clau secreta a «%s»\n" -#: g10/gpg.c:3804 g10/gpg.c:3828 sm/gpgsm.c:1579 +#: g10/gpg.c:3824 g10/gpg.c:3848 sm/gpgsm.c:1579 #, c-format msgid "selected cipher algorithm is invalid\n" msgstr "l'algorisme de xifratge triat no és vàlid\n" -#: g10/gpg.c:3816 +#: g10/gpg.c:3836 #, fuzzy, c-format msgid "selected compression algorithm is invalid\n" msgstr "l'algorisme de xifratge triat no és vàlid\n" -#: g10/gpg.c:3822 +#: g10/gpg.c:3842 #, c-format msgid "selected certification digest algorithm is invalid\n" msgstr "l'algorisme de resum de certificació seleccionat no és vàlid\n" -#: g10/gpg.c:3837 +#: g10/gpg.c:3857 #, c-format msgid "completes-needed must be greater than 0\n" msgstr "completes-needed ha de ser major que 0\n" -#: g10/gpg.c:3839 +#: g10/gpg.c:3859 #, c-format msgid "marginals-needed must be greater than 1\n" msgstr "marginals-needed ha de ser major que 1\n" -#: g10/gpg.c:3841 +#: g10/gpg.c:3861 #, fuzzy, c-format msgid "max-cert-depth must be in the range from 1 to 255\n" msgstr "max-cert-depth ha d'estar en el rang 1 a 255\n" -#: g10/gpg.c:3843 +#: g10/gpg.c:3863 #, fuzzy, c-format msgid "invalid default-cert-level; must be 0, 1, 2, or 3\n" msgstr "default-check-level és invàlid; ha de ser 0, 1, 2 o 3\n" -#: g10/gpg.c:3845 +#: g10/gpg.c:3865 #, fuzzy, c-format msgid "invalid min-cert-level; must be 1, 2, or 3\n" msgstr "default-check-level és invàlid; ha de ser 0, 1, 2 o 3\n" -#: g10/gpg.c:3849 +#: g10/gpg.c:3869 #, fuzzy, c-format #| msgid "NOTE: simple S2K mode (0) is strongly discouraged\n" msgid "Note: simple S2K mode (0) is strongly discouraged\n" msgstr "NOTA: el mode S2K simple (0) no és gens recomanable\n" -#: g10/gpg.c:3853 +#: g10/gpg.c:3873 #, c-format msgid "invalid S2K mode; must be 0, 1 or 3\n" msgstr "el mode S2K és invàlid; ha de ser 0, 1 o 3\n" -#: g10/gpg.c:3860 +#: g10/gpg.c:3880 #, c-format msgid "invalid default preferences\n" msgstr "les preferències per defecte són invàlides\n" -#: g10/gpg.c:3864 +#: g10/gpg.c:3884 #, c-format msgid "invalid personal cipher preferences\n" msgstr "les preferències personals de xifrat són invàlides\n" -#: g10/gpg.c:3868 +#: g10/gpg.c:3888 #, c-format msgid "invalid personal digest preferences\n" msgstr "les preferències personals de digest són invàlides\n" -#: g10/gpg.c:3872 +#: g10/gpg.c:3892 #, c-format msgid "invalid personal compress preferences\n" msgstr "les preferències personals de compressió són invàlides\n" -#: g10/gpg.c:3908 +#: g10/gpg.c:3928 #, c-format msgid "%s does not yet work with %s\n" msgstr "%s encara no funciona amb %s\n" -#: g10/gpg.c:3971 +#: g10/gpg.c:3991 #, fuzzy, c-format msgid "compression algorithm '%s' may not be used in %s mode\n" msgstr "no podeu usar l'algorisme de compressió %s mentre esteu en mode %s\n" -#: g10/gpg.c:4115 +#: g10/gpg.c:4135 #, c-format msgid "failed to initialize the TrustDB: %s\n" msgstr "no s'ha pogut inicialitzar la base de dades de confiança: %s\n" -#: g10/gpg.c:4127 +#: g10/gpg.c:4147 #, c-format msgid "WARNING: recipients (-r) given without using public key encryption\n" msgstr "" "AVÍS: s'han donat destinataris (-r) sense usar xifratge de clau pública\n" -#: g10/gpg.c:4199 +#: g10/gpg.c:4219 #, fuzzy, c-format msgid "symmetric encryption of '%s' failed: %s\n" msgstr "ha fallat el desxifratge: %s\n" -#: g10/gpg.c:4228 +#: g10/gpg.c:4248 #, c-format msgid "you cannot use --symmetric --encrypt with --s2k-mode 0\n" msgstr "" -#: g10/gpg.c:4231 +#: g10/gpg.c:4251 #, fuzzy, c-format msgid "you cannot use --symmetric --encrypt in %s mode\n" msgstr "no podeu usar %s mentre esteu en mode %s\n" -#: g10/gpg.c:4289 +#: g10/gpg.c:4309 #, c-format msgid "you cannot use --symmetric --sign --encrypt with --s2k-mode 0\n" msgstr "" -#: g10/gpg.c:4292 +#: g10/gpg.c:4312 #, fuzzy, c-format msgid "you cannot use --symmetric --sign --encrypt in %s mode\n" msgstr "no podeu usar %s mentre esteu en mode %s\n" -#: g10/gpg.c:4692 g10/keyserver.c:1648 +#: g10/gpg.c:4712 g10/keyserver.c:1648 #, c-format msgid "keyserver send failed: %s\n" msgstr "l'enviament al servidor de claus ha fallat: %s\n" -#: g10/gpg.c:4697 +#: g10/gpg.c:4717 #, c-format msgid "keyserver receive failed: %s\n" msgstr "la recepció des del servidor de claus ha fallat: %s\n" -#: g10/gpg.c:4703 +#: g10/gpg.c:4723 #, c-format msgid "key export failed: %s\n" msgstr "l'exportació de la clau ha fallat: %s\n" -#: g10/gpg.c:4716 +#: g10/gpg.c:4736 #, fuzzy, c-format #| msgid "key export failed: %s\n" msgid "export as ssh key failed: %s\n" msgstr "l'exportació de la clau ha fallat: %s\n" -#: g10/gpg.c:4728 +#: g10/gpg.c:4748 #, c-format msgid "keyserver search failed: %s\n" msgstr "ha fallat la cerca al servidor de claus: %s\n" -#: g10/gpg.c:4741 +#: g10/gpg.c:4761 #, c-format msgid "keyserver refresh failed: %s\n" msgstr "ha fallat el refresc des del servidor de claus: %s\n" -#: g10/gpg.c:4810 +#: g10/gpg.c:4830 #, c-format msgid "dearmoring failed: %s\n" msgstr "no s'ha pogut llevar l'armadura: %s\n" -#: g10/gpg.c:4821 +#: g10/gpg.c:4841 #, c-format msgid "enarmoring failed: %s\n" msgstr "no s'ha pogut crear l'armadura: %s\n" -#: g10/gpg.c:4913 +#: g10/gpg.c:4933 #, fuzzy, c-format #| msgid "invalid hash algorithm `%s'\n" msgid "invalid hash algorithm '%s'\n" msgstr "l'algoritme de dispersió és invàlid «%s»\n" -#: g10/gpg.c:5065 g10/tofu.c:2153 +#: g10/gpg.c:5085 g10/tofu.c:2153 #, fuzzy, c-format msgid "error parsing key specification '%s': %s\n" msgstr "error en la creació de la contrasenya: %s\n" -#: g10/gpg.c:5078 +#: g10/gpg.c:5098 #, c-format msgid "'%s' does not appear to be a valid key ID, fingerprint or keygrip\n" msgstr "" -#: g10/gpg.c:5134 +#: g10/gpg.c:5154 #, c-format msgid "WARNING: no command supplied. Trying to guess what you mean ...\n" msgstr "" -#: g10/gpg.c:5145 +#: g10/gpg.c:5165 #, c-format msgid "Go ahead and type your message ...\n" msgstr "Endavant, escriviu el missatge...\n" -#: g10/gpg.c:5490 +#: g10/gpg.c:5510 #, c-format msgid "the given certification policy URL is invalid\n" msgstr "la URL de política de certificació donada no és vàlida\n" -#: g10/gpg.c:5492 +#: g10/gpg.c:5512 #, c-format msgid "the given signature policy URL is invalid\n" msgstr "la URL de política de signatura donada no és vàlida\n" -#: g10/gpg.c:5525 +#: g10/gpg.c:5545 #, fuzzy, c-format msgid "the given preferred keyserver URL is invalid\n" msgstr "la URL de política de signatura donada no és vàlida\n" @@ -3753,319 +3759,319 @@ msgid "No help available for '%s'" msgstr "No hi ha ajuda disponible per a `%s'" -#: g10/import.c:169 +#: g10/import.c:170 msgid "import signatures that are marked as local-only" msgstr "" -#: g10/import.c:172 +#: g10/import.c:173 msgid "repair damage from the pks keyserver during import" msgstr "" -#: g10/import.c:175 +#: g10/import.c:176 #, fuzzy msgid "do not clear the ownertrust values during import" msgstr "actualitza la base de dades de confiança" -#: g10/import.c:178 +#: g10/import.c:179 #, fuzzy msgid "do not update the trustdb after import" msgstr "actualitza la base de dades de confiança" -#: g10/import.c:181 +#: g10/import.c:182 #, fuzzy msgid "show key during import" msgstr "mostra empremta" -#: g10/import.c:184 +#: g10/import.c:185 msgid "only accept updates to existing keys" msgstr "" -#: g10/import.c:187 +#: g10/import.c:188 #, fuzzy msgid "remove unusable parts from key after import" msgstr "la clau secreta és inusable" -#: g10/import.c:190 +#: g10/import.c:191 msgid "remove as much as possible from key after import" msgstr "" -#: g10/import.c:193 +#: g10/import.c:194 msgid "ignore key-signatures which are not self-signatures" msgstr "" -#: g10/import.c:196 +#: g10/import.c:197 msgid "run import filters and export key immediately" msgstr "" -#: g10/import.c:199 +#: g10/import.c:200 msgid "assume the GnuPG key backup format" msgstr "" -#: g10/import.c:203 +#: g10/import.c:204 #, fuzzy msgid "repair keys on import" msgstr "mostra empremta" -#: g10/import.c:392 g10/import.c:711 +#: g10/import.c:393 g10/import.c:712 #, c-format msgid "skipping block of type %d\n" msgstr "es descarta un bloc de tipus %d\n" -#: g10/import.c:728 +#: g10/import.c:729 #, fuzzy, c-format msgid "%lu keys processed so far\n" msgstr "fins ara s'han processat %lu claus\n" -#: g10/import.c:814 +#: g10/import.c:815 #, c-format msgid "Total number processed: %lu\n" msgstr "Nombre total processat: %lu\n" -#: g10/import.c:817 +#: g10/import.c:818 #, fuzzy, c-format #| msgid " skipped new keys: %lu\n" msgid " skipped PGP-2 keys: %lu\n" msgstr " claus noves descartades: %lu\n" -#: g10/import.c:819 +#: g10/import.c:820 #, c-format msgid " skipped new keys: %lu\n" msgstr " claus noves descartades: %lu\n" -#: g10/import.c:822 +#: g10/import.c:823 #, c-format msgid " w/o user IDs: %lu\n" msgstr " sense ID: %lu\n" -#: g10/import.c:825 sm/import.c:130 +#: g10/import.c:826 sm/import.c:130 #, c-format msgid " imported: %lu" msgstr " importades: %lu" -#: g10/import.c:829 sm/import.c:134 +#: g10/import.c:830 sm/import.c:134 #, c-format msgid " unchanged: %lu\n" msgstr " no modificades: %lu\n" -#: g10/import.c:831 +#: g10/import.c:832 #, c-format msgid " new user IDs: %lu\n" msgstr " ID d'usuaris nous: %lu\n" -#: g10/import.c:833 +#: g10/import.c:834 #, c-format msgid " new subkeys: %lu\n" msgstr " subclaus noves: %lu\n" -#: g10/import.c:835 +#: g10/import.c:836 #, c-format msgid " new signatures: %lu\n" msgstr " signatures noves: %lu\n" -#: g10/import.c:837 +#: g10/import.c:838 #, c-format msgid " new key revocations: %lu\n" msgstr " noves revocacions: %lu\n" -#: g10/import.c:839 sm/import.c:136 +#: g10/import.c:840 sm/import.c:136 #, c-format msgid " secret keys read: %lu\n" msgstr " claus privades llegides: %lu\n" -#: g10/import.c:841 sm/import.c:138 +#: g10/import.c:842 sm/import.c:138 #, c-format msgid " secret keys imported: %lu\n" msgstr "claus privades importades: %lu\n" -#: g10/import.c:843 sm/import.c:140 +#: g10/import.c:844 sm/import.c:140 #, c-format msgid " secret keys unchanged: %lu\n" msgstr "claus privades no canviades: %lu\n" -#: g10/import.c:845 sm/import.c:142 +#: g10/import.c:846 sm/import.c:142 #, c-format msgid " not imported: %lu\n" msgstr " importades: %lu\n" -#: g10/import.c:847 +#: g10/import.c:848 #, fuzzy, c-format msgid " signatures cleaned: %lu\n" msgstr " signatures noves: %lu\n" -#: g10/import.c:849 +#: g10/import.c:850 #, fuzzy, c-format msgid " user IDs cleaned: %lu\n" msgstr " claus privades llegides: %lu\n" -#: g10/import.c:1276 +#: g10/import.c:1277 #, c-format msgid "" "WARNING: key %s contains preferences for unavailable\n" "algorithms on these user IDs:\n" msgstr "" -#: g10/import.c:1318 +#: g10/import.c:1319 #, c-format msgid " \"%s\": preference for cipher algorithm %s\n" msgstr "" -#: g10/import.c:1333 +#: g10/import.c:1334 #, fuzzy, c-format msgid " \"%s\": preference for digest algorithm %s\n" msgstr "signatura %s, algorisme de resum %s\n" -#: g10/import.c:1345 +#: g10/import.c:1346 #, c-format msgid " \"%s\": preference for compression algorithm %s\n" msgstr "" -#: g10/import.c:1358 +#: g10/import.c:1359 #, c-format msgid "it is strongly suggested that you update your preferences and\n" msgstr "" -#: g10/import.c:1360 +#: g10/import.c:1361 #, c-format msgid "re-distribute this key to avoid potential algorithm mismatch problems\n" msgstr "" -#: g10/import.c:1385 +#: g10/import.c:1386 #, c-format msgid "you can update your preferences with: gpg --edit-key %s updpref save\n" msgstr "" -#: g10/import.c:1899 g10/import.c:3013 +#: g10/import.c:1902 g10/import.c:3028 #, fuzzy, c-format msgid "key %s: no user ID\n" msgstr "clau %08lX: sense ID\n" -#: g10/import.c:1905 +#: g10/import.c:1908 #, fuzzy, c-format msgid "key %s: %s\n" msgstr "es descarta «%s»: %s\n" -#: g10/import.c:1906 g10/import.c:2985 +#: g10/import.c:1909 g10/import.c:3000 msgid "rejected by import screener" msgstr "" -#: g10/import.c:1950 +#: g10/import.c:1953 #, fuzzy, c-format msgid "key %s: PKS subkey corruption repaired\n" msgstr "clau %08lX: corrupció de la subclau HKP reparada\n" -#: g10/import.c:1971 +#: g10/import.c:1974 #, fuzzy, c-format msgid "key %s: accepted non self-signed user ID \"%s\"\n" msgstr "clau %08lX: s'ha acceptat la ID d'usuari no autosignada «%s»\n" -#: g10/import.c:1981 g10/import.c:2012 +#: g10/import.c:1985 g10/import.c:2016 #, fuzzy, c-format msgid "key %s: no valid user IDs\n" msgstr "clau %08lX: l'ID no és vàlid\n" -#: g10/import.c:1983 +#: g10/import.c:1987 #, c-format msgid "this may be caused by a missing self-signature\n" msgstr "açò pot ser causat per l'absència d'autosignatura\n" -#: g10/import.c:2062 g10/import.c:3399 +#: g10/import.c:2066 g10/import.c:3415 #, fuzzy, c-format msgid "key %s: public key not found: %s\n" msgstr "clau %08lX: no s'ha trobat la clau pública: %s\n" -#: g10/import.c:2068 +#: g10/import.c:2072 #, fuzzy, c-format msgid "key %s: new key - skipped\n" msgstr "clau %08lX: clau nova - es descarta \n" -#: g10/import.c:2080 +#: g10/import.c:2084 #, c-format msgid "no writable keyring found: %s\n" msgstr "no s'ha trobat cap anell escrivible: %s\n" -#: g10/import.c:2112 g10/import.c:2214 g10/import.c:3476 +#: g10/import.c:2116 g10/import.c:2218 g10/import.c:3492 #, fuzzy, c-format #| msgid "error writing keyring `%s': %s\n" msgid "error writing keyring '%s': %s\n" msgstr "error mentre s'escrivia l'anell «%s»: %s\n" -#: g10/import.c:2135 +#: g10/import.c:2139 #, fuzzy, c-format msgid "key %s: public key \"%s\" imported\n" msgstr "clau %08lX: s'ha importat la clau pública «%s»\n" -#: g10/import.c:2162 +#: g10/import.c:2166 #, fuzzy, c-format msgid "key %s: doesn't match our copy\n" msgstr "clau %08lX: no correspon a la nostra còpia\n" -#: g10/import.c:2230 +#: g10/import.c:2234 #, fuzzy, c-format msgid "key %s: \"%s\" 1 new user ID\n" msgstr "clau %08lX: «%s» 1 ID d'usuari nou\n" -#: g10/import.c:2233 +#: g10/import.c:2237 #, fuzzy, c-format msgid "key %s: \"%s\" %d new user IDs\n" msgstr "clau %08lX: «%s» %d ID d'usuari nous\n" -#: g10/import.c:2236 +#: g10/import.c:2240 #, fuzzy, c-format msgid "key %s: \"%s\" 1 new signature\n" msgstr "clau %08lX: «%s» 1 signatura nova\n" -#: g10/import.c:2239 +#: g10/import.c:2243 #, fuzzy, c-format msgid "key %s: \"%s\" %d new signatures\n" msgstr "clau %08lX: «%s» %d signatures noves\n" -#: g10/import.c:2242 +#: g10/import.c:2246 #, fuzzy, c-format msgid "key %s: \"%s\" 1 new subkey\n" msgstr "clau %08lX: «%s» 1 subclau nova\n" -#: g10/import.c:2245 +#: g10/import.c:2249 #, fuzzy, c-format msgid "key %s: \"%s\" %d new subkeys\n" msgstr "clau %08lX: «%s» %d subclaus noves\n" -#: g10/import.c:2248 +#: g10/import.c:2252 #, fuzzy, c-format msgid "key %s: \"%s\" %d signature cleaned\n" msgstr "clau %08lX: «%s» %d signatures noves\n" -#: g10/import.c:2251 +#: g10/import.c:2255 #, fuzzy, c-format msgid "key %s: \"%s\" %d signatures cleaned\n" msgstr "clau %08lX: «%s» %d signatures noves\n" -#: g10/import.c:2254 +#: g10/import.c:2258 #, fuzzy, c-format msgid "key %s: \"%s\" %d user ID cleaned\n" msgstr "clau %08lX: «%s» %d ID d'usuari nous\n" -#: g10/import.c:2257 +#: g10/import.c:2261 #, fuzzy, c-format msgid "key %s: \"%s\" %d user IDs cleaned\n" msgstr "clau %08lX: «%s» %d ID d'usuari nous\n" -#: g10/import.c:2293 +#: g10/import.c:2297 #, fuzzy, c-format msgid "key %s: \"%s\" not changed\n" msgstr "clau %08lX: «%s» no ha estat modificada\n" -#: g10/import.c:2652 g10/import.c:2847 +#: g10/import.c:2667 g10/import.c:2862 #, fuzzy, c-format msgid "key %s: secret key imported\n" msgstr "clau %08lX: s'ha importat la clau secreta\n" -#: g10/import.c:2660 +#: g10/import.c:2675 #, fuzzy, c-format #| msgid "skipped: secret key already present\n" msgid "key %s: secret key already exists\n" msgstr "es descarta: la clau secreta ja és present\n" -#: g10/import.c:2668 +#: g10/import.c:2683 #, fuzzy, c-format msgid "key %s: error sending to agent: %s\n" msgstr "error mentre s'enviava a «%s»: %s\n" @@ -4078,69 +4084,69 @@ #. * Instead, user should be suggested to run 'gpg --card-status', #. * then, references to a card will be automatically created #. * again. -#: g10/import.c:2837 +#: g10/import.c:2852 #, c-format msgid "To migrate '%s', with each smartcard, run: %s\n" msgstr "" -#: g10/import.c:2984 +#: g10/import.c:2999 #, fuzzy, c-format msgid "secret key %s: %s\n" msgstr "no s'ha trobat la clau secreta «%s»: %s\n" -#: g10/import.c:3005 g10/import.c:3044 +#: g10/import.c:3020 g10/import.c:3059 #, fuzzy, c-format msgid "importing secret keys not allowed\n" msgstr "s'està escrivint la clau secreta a «%s»\n" -#: g10/import.c:3032 +#: g10/import.c:3047 #, fuzzy, c-format msgid "key %s: secret key with invalid cipher %d - skipped\n" msgstr "clau %08lX: clau secreta amb xifrat %d no vàlid - es descarta\n" -#: g10/import.c:3194 g10/pkclist.c:72 g10/revoke.c:776 +#: g10/import.c:3209 g10/pkclist.c:72 g10/revoke.c:776 msgid "No reason specified" msgstr "No s'ha especificat cap raó" -#: g10/import.c:3195 g10/pkclist.c:74 g10/revoke.c:778 +#: g10/import.c:3210 g10/pkclist.c:74 g10/revoke.c:778 msgid "Key is superseded" msgstr "La clau ha estat substituïda" -#: g10/import.c:3196 g10/pkclist.c:76 g10/revoke.c:777 +#: g10/import.c:3211 g10/pkclist.c:76 g10/revoke.c:777 msgid "Key has been compromised" msgstr "La clau ha estat compromesa" -#: g10/import.c:3197 g10/pkclist.c:78 g10/revoke.c:779 +#: g10/import.c:3212 g10/pkclist.c:78 g10/revoke.c:779 msgid "Key is no longer used" msgstr "La clau ja no s'usa" -#: g10/import.c:3198 g10/pkclist.c:80 g10/revoke.c:780 +#: g10/import.c:3213 g10/pkclist.c:80 g10/revoke.c:780 msgid "User ID is no longer valid" msgstr "L'ID d'usuari ja no és vàlid" -#: g10/import.c:3323 g10/keylist.c:1258 g10/pkclist.c:84 +#: g10/import.c:3338 g10/keylist.c:1258 g10/pkclist.c:84 #, c-format msgid "reason for revocation: " msgstr "raó de la revocació: " -#: g10/import.c:3342 g10/keylist.c:1277 g10/pkclist.c:100 +#: g10/import.c:3357 g10/keylist.c:1277 g10/pkclist.c:100 #, c-format msgid "revocation comment: " msgstr "comentari de la revocació: " -#: g10/import.c:3392 +#: g10/import.c:3408 #, fuzzy, c-format msgid "key %s: no public key - can't apply revocation certificate\n" msgstr "" "clau %08lX: falta la clau pública: no es pot aplicar el certificat\n" "de revocació\n" -#: g10/import.c:3423 +#: g10/import.c:3439 #, fuzzy, c-format msgid "key %s: can't locate original keyblock: %s\n" msgstr "clau %08lX: no s'ha trobat el bloc de claus original: %s\n" -#: g10/import.c:3430 +#: g10/import.c:3446 #, fuzzy, c-format msgid "key %s: can't read original keyblock: %s\n" msgstr "clau %08lX: no s'ha pogut llegir el bloc de claus original: %s\n" @@ -4148,22 +4154,22 @@ # O «rebutjara»? ivb # Per tots els canvis d'anglicisme «ignorat» -> «es descarta», # «es rebutja» està bé. jm -#: g10/import.c:3450 +#: g10/import.c:3466 #, fuzzy, c-format msgid "key %s: invalid revocation certificate: %s - rejected\n" msgstr "clau %08lX: el certificat de revocació és invàlid: %s: es rebutja\n" -#: g10/import.c:3485 +#: g10/import.c:3501 #, fuzzy, c-format msgid "key %s: \"%s\" revocation certificate imported\n" msgstr "clau %08lX: s'ha importat el certificat de revocació «%s»\n" -#: g10/import.c:3571 +#: g10/import.c:3587 #, fuzzy, c-format msgid "key %s: no user ID for signature\n" msgstr "clau %08lX: no hi ha ID per a la signatura\n" -#: g10/import.c:3588 +#: g10/import.c:3604 #, fuzzy, c-format msgid "key %s: unsupported public key algorithm on user ID \"%s\"\n" msgstr "" @@ -4171,116 +4177,116 @@ "«%s»\n" "\n" -#: g10/import.c:3590 +#: g10/import.c:3606 #, fuzzy, c-format msgid "key %s: invalid self-signature on user ID \"%s\"\n" msgstr "clau %08lX: l'autosignatura no és vàlida en l'id d'usuari «%s»\n" -#: g10/import.c:3607 g10/import.c:3635 g10/import.c:3691 +#: g10/import.c:3623 g10/import.c:3651 g10/import.c:3707 #, fuzzy, c-format msgid "key %s: unsupported public key algorithm\n" msgstr "clau %08lX: l'algoritme de clau pública no és suportat\n" -#: g10/import.c:3608 +#: g10/import.c:3624 #, fuzzy, c-format msgid "key %s: invalid direct key signature\n" msgstr "clau %08lX: s'ha afegit la signatura de clau directa\n" -#: g10/import.c:3622 +#: g10/import.c:3638 #, fuzzy, c-format msgid "key %s: no subkey for key binding\n" msgstr "clau %08lX: no hi ha una subclau per a l'enllaç de la clau\n" -#: g10/import.c:3637 +#: g10/import.c:3653 #, fuzzy, c-format msgid "key %s: invalid subkey binding\n" msgstr "clau %08lX: l'enllaç de subclau és invàlid\n" -#: g10/import.c:3656 +#: g10/import.c:3672 #, fuzzy, c-format msgid "key %s: removed multiple subkey binding\n" msgstr "clau %08lX: s'ha eliminat un enllaç de subclau múltiple\n" -#: g10/import.c:3680 +#: g10/import.c:3696 #, fuzzy, c-format msgid "key %s: no subkey for key revocation\n" msgstr "clau %08lX: no hi ha una subclau per a la clau de revocació\n" -#: g10/import.c:3693 +#: g10/import.c:3709 #, fuzzy, c-format msgid "key %s: invalid subkey revocation\n" msgstr "clau %08lX: Subclau de revocació no vàlida\n" -#: g10/import.c:3708 +#: g10/import.c:3724 #, fuzzy, c-format msgid "key %s: removed multiple subkey revocation\n" msgstr "clau %08lX: s'han eliminat subclaus de revocació múltiples\n" -#: g10/import.c:3752 +#: g10/import.c:3771 #, fuzzy, c-format msgid "key %s: skipped user ID \"%s\"\n" msgstr "clau %08lX: es descarta l'ID d'usuari '" -#: g10/import.c:3779 +#: g10/import.c:3798 #, fuzzy, c-format msgid "key %s: skipped subkey\n" msgstr "clau %08lX: es descarta la subclau\n" -#: g10/import.c:3810 +#: g10/import.c:3829 #, fuzzy, c-format msgid "key %s: non exportable signature (class 0x%02X) - skipped\n" msgstr "clau %08lX: la signatura és inexportable (classe %02x) - es descarta\n" -#: g10/import.c:3821 +#: g10/import.c:3840 #, fuzzy, c-format msgid "key %s: revocation certificate at wrong place - skipped\n" msgstr "" "clau %08lX: el certificat de revocació és en el lloc equivocat - es " "descarta\n" -#: g10/import.c:3839 +#: g10/import.c:3868 #, fuzzy, c-format msgid "key %s: invalid revocation certificate: %s - skipped\n" msgstr "clau %08lX: el certificat de revocació és invàlid: %s - es descarta\n" -#: g10/import.c:3853 +#: g10/import.c:3892 #, fuzzy, c-format msgid "key %s: subkey signature in wrong place - skipped\n" msgstr "" "clau %08lX: la signatura de la subclau és en el lloc equivocat - es " "descarta\n" -#: g10/import.c:3861 +#: g10/import.c:3900 #, fuzzy, c-format msgid "key %s: unexpected signature class (0x%02X) - skipped\n" msgstr "" "clau %08lX: la classe de signatura és inesperada (0x%02x) - es descarta\n" -#: g10/import.c:4034 +#: g10/import.c:4073 #, fuzzy, c-format msgid "key %s: duplicated user ID detected - merged\n" msgstr "clau %08lX: s'ha detectat un ID d'usuari duplicat - es fusiona\n" -#: g10/import.c:4099 +#: g10/import.c:4138 #, fuzzy, c-format msgid "WARNING: key %s may be revoked: fetching revocation key %s\n" msgstr "" "AVÍS: la clau %08lX pot estar revocada: s'adquireix la clau de revocació " "%08lX\n" -#: g10/import.c:4115 +#: g10/import.c:4154 #, fuzzy, c-format msgid "WARNING: key %s may be revoked: revocation key %s not present.\n" msgstr "" "AVÍS: la clau %08lX pot estar revocada: la clau de revocació %08lX no està " "present.\n" -#: g10/import.c:4181 +#: g10/import.c:4220 #, fuzzy, c-format msgid "key %s: \"%s\" revocation certificate added\n" msgstr "clau %08lX: s'hi ha afegit el certificat de revocació «%s»\n" -#: g10/import.c:4219 +#: g10/import.c:4258 #, fuzzy, c-format msgid "key %s: direct key signature added\n" msgstr "clau %08lX: s'ha afegit la signatura de clau directa\n" @@ -5234,7 +5240,7 @@ msgid "You may not add a photo ID to a PGP2-style key.\n" msgstr "No podeu afegir un photo ID a una clau d'estil PGP2.\n" -#: g10/keyedit.c:4293 g10/keygen.c:2899 +#: g10/keyedit.c:4293 g10/keygen.c:2953 msgid "Such a user ID already exists on this key!\n" msgstr "" @@ -5534,83 +5540,83 @@ msgstr "" "S'està mostrant el photo ID %s de mida %ld per a la clau 0x%08lX (uid %d)\n" -#: g10/keygen.c:169 +#: g10/keygen.c:174 #, fuzzy, c-format msgid "invalid value for option '%s'\n" msgstr "opcions d'importació no vàlides\n" -#: g10/keygen.c:322 +#: g10/keygen.c:331 #, fuzzy, c-format msgid "preference '%s' duplicated\n" msgstr "la preferència %c%lu és duplicada\n" -#: g10/keygen.c:329 +#: g10/keygen.c:338 #, fuzzy, c-format msgid "too many cipher preferences\n" msgstr "hi ha massa preferències «%c»\n" -#: g10/keygen.c:331 +#: g10/keygen.c:340 #, fuzzy, c-format msgid "too many digest preferences\n" msgstr "hi ha massa preferències «%c»\n" -#: g10/keygen.c:333 +#: g10/keygen.c:342 #, fuzzy, c-format msgid "too many compression preferences\n" msgstr "hi ha massa preferències «%c»\n" -#: g10/keygen.c:493 +#: g10/keygen.c:502 #, fuzzy, c-format msgid "invalid item '%s' in preference string\n" msgstr "hi ha un caràcter invàlid en la cadena de preferència\n" -#: g10/keygen.c:972 +#: g10/keygen.c:1020 #, c-format msgid "writing direct signature\n" msgstr "s'està escrivint una signatura directa\n" -#: g10/keygen.c:1018 +#: g10/keygen.c:1066 #, c-format msgid "writing self signature\n" msgstr "s'està escrivint l'autosignatura\n" -#: g10/keygen.c:1075 +#: g10/keygen.c:1123 #, c-format msgid "writing key binding signature\n" msgstr "s'està escrivint la signatura de comprovació de la clau\n" -#: g10/keygen.c:1440 g10/keygen.c:1445 g10/keygen.c:1497 g10/keygen.c:1502 -#: g10/keygen.c:1656 g10/keygen.c:1661 +#: g10/keygen.c:1494 g10/keygen.c:1499 g10/keygen.c:1551 g10/keygen.c:1556 +#: g10/keygen.c:1710 g10/keygen.c:1715 #, c-format msgid "keysize invalid; using %u bits\n" msgstr "la mida de la clau és invàlida; s'hi usaran %u bits\n" -#: g10/keygen.c:1451 g10/keygen.c:1508 g10/keygen.c:1516 g10/keygen.c:1667 +#: g10/keygen.c:1505 g10/keygen.c:1562 g10/keygen.c:1570 g10/keygen.c:1721 #, c-format msgid "keysize rounded up to %u bits\n" msgstr "la mida de la clau ha estat arrodonida fins a %u bits\n" -#: g10/keygen.c:1542 +#: g10/keygen.c:1596 #, c-format msgid "" "WARNING: some OpenPGP programs can't handle a DSA key with this digest size\n" msgstr "" -#: g10/keygen.c:1723 +#: g10/keygen.c:1777 #, fuzzy msgid "Sign" msgstr "sign" -#: g10/keygen.c:1726 +#: g10/keygen.c:1780 msgid "Certify" msgstr "" -#: g10/keygen.c:1729 +#: g10/keygen.c:1783 #, fuzzy msgid "Encrypt" msgstr "xifra dades" -#: g10/keygen.c:1732 +#: g10/keygen.c:1786 msgid "Authenticate" msgstr "" @@ -5624,169 +5630,169 @@ #. * a = Toggle authentication capability #. * q = Finish #. -#: g10/keygen.c:1753 +#: g10/keygen.c:1807 msgid "SsEeAaQq" msgstr "" -#: g10/keygen.c:1784 +#: g10/keygen.c:1838 #, c-format msgid "Possible actions for a %s key: " msgstr "" -#: g10/keygen.c:1790 +#: g10/keygen.c:1844 msgid "Current allowed actions: " msgstr "" -#: g10/keygen.c:1795 +#: g10/keygen.c:1849 #, c-format msgid " (%c) Toggle the sign capability\n" msgstr "" -#: g10/keygen.c:1798 +#: g10/keygen.c:1852 #, c-format msgid " (%c) Toggle the encrypt capability\n" msgstr "" -#: g10/keygen.c:1801 +#: g10/keygen.c:1855 #, c-format msgid " (%c) Toggle the authenticate capability\n" msgstr "" -#: g10/keygen.c:1804 +#: g10/keygen.c:1858 #, c-format msgid " (%c) Finished\n" msgstr "" -#: g10/keygen.c:1930 +#: g10/keygen.c:1984 #, fuzzy, c-format msgid " (%d) RSA and RSA (default)\n" msgstr " (%d) DSA i ElGamal (predeterminat)\n" -#: g10/keygen.c:1934 +#: g10/keygen.c:1988 #, fuzzy, c-format msgid " (%d) DSA and Elgamal\n" msgstr " (%d) DSA i ElGamal (predeterminat)\n" -#: g10/keygen.c:1937 +#: g10/keygen.c:1991 #, c-format msgid " (%d) DSA (sign only)\n" msgstr " (%d) DSA (només signar)\n" -#: g10/keygen.c:1939 +#: g10/keygen.c:1993 #, c-format msgid " (%d) RSA (sign only)\n" msgstr " (%d) RSA (només signar)\n" -#: g10/keygen.c:1945 +#: g10/keygen.c:1999 #, fuzzy, c-format msgid " (%d) Elgamal (encrypt only)\n" msgstr " (%d) ElGamal (només xifrar)\n" -#: g10/keygen.c:1947 +#: g10/keygen.c:2001 #, c-format msgid " (%d) RSA (encrypt only)\n" msgstr " (%d) RSA (només xifrar)\n" -#: g10/keygen.c:1953 +#: g10/keygen.c:2007 #, fuzzy, c-format msgid " (%d) DSA (set your own capabilities)\n" msgstr " (%d) DSA (només signar)\n" -#: g10/keygen.c:1955 +#: g10/keygen.c:2009 #, fuzzy, c-format msgid " (%d) RSA (set your own capabilities)\n" msgstr " (%d) RSA (només xifrar)\n" -#: g10/keygen.c:1961 +#: g10/keygen.c:2015 #, fuzzy, c-format msgid " (%d) ECC and ECC\n" msgstr " (%d) DSA i ElGamal (predeterminat)\n" -#: g10/keygen.c:1963 +#: g10/keygen.c:2017 #, fuzzy, c-format #| msgid " (%d) DSA (sign only)\n" msgid " (%d) ECC (sign only)\n" msgstr " (%d) DSA (només signar)\n" -#: g10/keygen.c:1965 +#: g10/keygen.c:2019 #, fuzzy, c-format msgid " (%d) ECC (set your own capabilities)\n" msgstr " (%d) DSA (només signar)\n" -#: g10/keygen.c:1967 +#: g10/keygen.c:2021 #, fuzzy, c-format #| msgid " (%d) RSA (encrypt only)\n" msgid " (%d) ECC (encrypt only)\n" msgstr " (%d) RSA (només xifrar)\n" -#: g10/keygen.c:1971 +#: g10/keygen.c:2025 #, fuzzy, c-format msgid " (%d) Existing key\n" msgstr " (%d) RSA (només xifrar)\n" -#: g10/keygen.c:1973 +#: g10/keygen.c:2027 #, fuzzy, c-format msgid " (%d) Existing key from card\n" msgstr " (%d) RSA (només xifrar)\n" -#: g10/keygen.c:2069 sm/certreqgen-ui.c:202 +#: g10/keygen.c:2123 sm/certreqgen-ui.c:202 #, fuzzy msgid "Enter the keygrip: " msgstr "Notació de signatura: " -#: g10/keygen.c:2082 sm/certreqgen-ui.c:210 +#: g10/keygen.c:2136 sm/certreqgen-ui.c:210 msgid "Not a valid keygrip (expecting 40 hex digits)\n" msgstr "" -#: g10/keygen.c:2084 sm/certreqgen-ui.c:212 +#: g10/keygen.c:2138 sm/certreqgen-ui.c:212 #, fuzzy msgid "No key with this keygrip\n" msgstr "No hi ha cap ID amb l'índex %d\n" -#: g10/keygen.c:2103 g10/keygen.c:2113 g10/keygen.c:3216 g10/keygen.c:3227 +#: g10/keygen.c:2157 g10/keygen.c:2167 g10/keygen.c:3270 g10/keygen.c:3281 #: sm/certreqgen-ui.c:230 sm/certreqgen-ui.c:239 #, fuzzy, c-format msgid "error reading the card: %s\n" msgstr "%s: error en llegir el registre lliure: %s\n" -#: g10/keygen.c:2107 g10/keygen.c:3220 sm/certreqgen-ui.c:233 +#: g10/keygen.c:2161 g10/keygen.c:3274 sm/certreqgen-ui.c:233 #, fuzzy, c-format msgid "Serial number of the card: %s\n" msgstr "error en la creació de la contrasenya: %s\n" -#: g10/keygen.c:2120 sm/certreqgen-ui.c:245 +#: g10/keygen.c:2174 sm/certreqgen-ui.c:245 #, fuzzy msgid "Available keys:\n" msgstr "desactiva una clau" -#: g10/keygen.c:2297 g10/keygen.c:2311 +#: g10/keygen.c:2351 g10/keygen.c:2365 #, fuzzy, c-format #| msgid "rounded up to %u bits\n" msgid "rounded to %u bits\n" msgstr "arrodonida fins a %u bits\n" -#: g10/keygen.c:2352 +#: g10/keygen.c:2406 #, c-format msgid "%s keys may be between %u and %u bits long.\n" msgstr "" -#: g10/keygen.c:2360 +#: g10/keygen.c:2414 #, fuzzy, c-format msgid "What keysize do you want for the subkey? (%u) " msgstr "Quina grandària voleu? (1024) " -#: g10/keygen.c:2377 sm/certreqgen-ui.c:189 +#: g10/keygen.c:2431 sm/certreqgen-ui.c:189 #, c-format msgid "Requested keysize is %u bits\n" msgstr "La grandària sol·licitada és %u bits\n" -#: g10/keygen.c:2423 +#: g10/keygen.c:2477 #, fuzzy #| msgid "Please select what kind of key you want:\n" msgid "Please select which elliptic curve you want:\n" msgstr "Seleccioneu quin tipus de clau voleu:\n" -#: g10/keygen.c:2611 +#: g10/keygen.c:2665 msgid "" "Please specify how long the key should be valid.\n" " 0 = key does not expire\n" @@ -5802,7 +5808,7 @@ " m = la clau caduca als n mesos\n" " y = la clau caduca als n anys\n" -#: g10/keygen.c:2622 +#: g10/keygen.c:2676 msgid "" "Please specify how long the signature should be valid.\n" " 0 = signature does not expire\n" @@ -5818,42 +5824,42 @@ " m = la signatura caduca als n mesos\n" " y = la signatura caduca als n anys\n" -#: g10/keygen.c:2645 +#: g10/keygen.c:2699 msgid "Key is valid for? (0) " msgstr "Indiqueu la validesa de la clau (0) " -#: g10/keygen.c:2650 +#: g10/keygen.c:2704 #, fuzzy, c-format msgid "Signature is valid for? (%s) " msgstr "Indiqueu la validesa de la signatura (0) " -#: g10/keygen.c:2663 g10/keygen.c:2688 +#: g10/keygen.c:2717 g10/keygen.c:2742 msgid "invalid value\n" msgstr "el valor no és vàlid\n" -#: g10/keygen.c:2670 +#: g10/keygen.c:2724 #, fuzzy msgid "Key does not expire at all\n" msgstr "%s no caduca en absolut\n" -#: g10/keygen.c:2671 +#: g10/keygen.c:2725 #, fuzzy msgid "Signature does not expire at all\n" msgstr "%s no caduca en absolut\n" -#: g10/keygen.c:2676 +#: g10/keygen.c:2730 #, fuzzy, c-format msgid "Key expires at %s\n" msgstr "%s caduca el %s\n" -#: g10/keygen.c:2677 +#: g10/keygen.c:2731 #, fuzzy, c-format msgid "Signature expires at %s\n" msgstr "Aquesta signatura caduca el %s\n" # Amb «it» es refereix a les dates? ivb # Això vaig entendre jo. jm -#: g10/keygen.c:2681 +#: g10/keygen.c:2735 msgid "" "Your system can't display dates beyond 2038.\n" "However, it will be correctly handled up to 2106.\n" @@ -5861,12 +5867,12 @@ "El vostre sistema no pot representar dates posteriors a l'any 2038.\n" "Tanmateix, les tractarà bé fins l'any 2106.\n" -#: g10/keygen.c:2694 +#: g10/keygen.c:2748 #, fuzzy msgid "Is this correct? (y/N) " msgstr "És correcte? (s/n)" -#: g10/keygen.c:2762 +#: g10/keygen.c:2816 msgid "" "\n" "GnuPG needs to construct a user ID to identify your key.\n" @@ -5877,7 +5883,7 @@ #. but you should keep your existing translation. In case #. the new string is not translated this old string will #. be used. -#: g10/keygen.c:2777 +#: g10/keygen.c:2831 #, fuzzy msgid "" "\n" @@ -5894,50 +5900,50 @@ " \"Heinrich Heine (Der Dichter) \"\n" "\n" -#: g10/keygen.c:2796 +#: g10/keygen.c:2850 msgid "Real name: " msgstr "Nom i cognoms: " -#: g10/keygen.c:2805 +#: g10/keygen.c:2859 msgid "Invalid character in name\n" msgstr "Hi ha un caràcter invàlid en el camp *nom*\n" -#: g10/keygen.c:2806 +#: g10/keygen.c:2860 #, c-format msgid "The characters '%s' and '%s' may not appear in name\n" msgstr "" -#: g10/keygen.c:2810 +#: g10/keygen.c:2864 msgid "Name may not start with a digit\n" msgstr "El nom no pot començar amb un dígit\n" -#: g10/keygen.c:2813 +#: g10/keygen.c:2867 msgid "Name must be at least 5 characters long\n" msgstr "El nom ha de tenir, si més no, 5 caràcters\n" -#: g10/keygen.c:2823 +#: g10/keygen.c:2877 msgid "Email address: " msgstr "Adreça electrònica: " -#: g10/keygen.c:2829 +#: g10/keygen.c:2883 msgid "Not a valid email address\n" msgstr "No és una adreça vàlida\n" -#: g10/keygen.c:2838 +#: g10/keygen.c:2892 msgid "Comment: " msgstr "Comentari: " -#: g10/keygen.c:2844 +#: g10/keygen.c:2898 msgid "Invalid character in comment\n" msgstr "Hi ha un caràcter invàlid en el camp *comentari*\n" -#: g10/keygen.c:2880 +#: g10/keygen.c:2934 #, fuzzy, c-format #| msgid "You are using the `%s' character set.\n" msgid "You are using the '%s' character set.\n" msgstr "Esteu usant el joc de caràcters `%s'.\n" -#: g10/keygen.c:2886 +#: g10/keygen.c:2940 #, c-format msgid "" "You selected this USER-ID:\n" @@ -5948,7 +5954,7 @@ " \"%s\"\n" "\n" -#: g10/keygen.c:2891 +#: g10/keygen.c:2945 msgid "Please don't put the email address into the real name or the comment\n" msgstr "No inclogueu l'adreça ni en el camp *nom* ni en el camp *comentari*\n" @@ -5965,35 +5971,35 @@ #. o = Okay (ready, continue) #. q = Quit #. -#: g10/keygen.c:2916 +#: g10/keygen.c:2970 msgid "NnCcEeOoQq" msgstr "NnCcEeOoXx" -#: g10/keygen.c:2926 +#: g10/keygen.c:2980 msgid "Change (N)ame, (C)omment, (E)mail or (Q)uit? " msgstr "Canvia (N)om, (C)omentari, (E)mail o (X) ix " -#: g10/keygen.c:2927 +#: g10/keygen.c:2981 msgid "Change (N)ame, (C)omment, (E)mail or (O)kay/(Q)uit? " msgstr "Canvia (N)om, (C)omentari, (E)mail o (O) d'acord / (X) ix" -#: g10/keygen.c:2932 +#: g10/keygen.c:2986 #, fuzzy #| msgid "Change (N)ame, (C)omment, (E)mail or (Q)uit? " msgid "Change (N)ame, (E)mail, or (Q)uit? " msgstr "Canvia (N)om, (C)omentari, (E)mail o (X) ix " -#: g10/keygen.c:2933 +#: g10/keygen.c:2987 #, fuzzy #| msgid "Change (N)ame, (C)omment, (E)mail or (O)kay/(Q)uit? " msgid "Change (N)ame, (E)mail, or (O)kay/(Q)uit? " msgstr "Canvia (N)om, (C)omentari, (E)mail o (O) d'acord / (X) ix" -#: g10/keygen.c:2952 +#: g10/keygen.c:3006 msgid "Please correct the error first\n" msgstr "Corregiu l'error primer\n" -#: g10/keygen.c:2998 +#: g10/keygen.c:3052 msgid "" "We need to generate a lot of random bytes. It is a good idea to perform\n" "some other action (type on the keyboard, move the mouse, utilize the\n" @@ -6005,13 +6011,13 @@ "nombres primers; açò dóna oportunitat al generador de nombres aleatoris\n" "d'aconseguir prou entropia.\n" -#: g10/keygen.c:4278 g10/keygen.c:4349 g10/keygen.c:4367 g10/keygen.c:4395 -#: g10/keygen.c:4739 g10/keygen.c:5239 g10/keygen.c:5534 g10/keygen.c:5639 +#: g10/keygen.c:4332 g10/keygen.c:4403 g10/keygen.c:4421 g10/keygen.c:4449 +#: g10/keygen.c:4793 g10/keygen.c:5293 g10/keygen.c:5588 g10/keygen.c:5693 #, c-format msgid "Key generation failed: %s\n" msgstr "La generació de claus ha fallat: %s\n" -#: g10/keygen.c:4287 +#: g10/keygen.c:4341 #, c-format msgid "" "About to create a key for:\n" @@ -6019,70 +6025,70 @@ "\n" msgstr "" -#: g10/keygen.c:4289 +#: g10/keygen.c:4343 msgid "Continue? (Y/n) " msgstr "" -#: g10/keygen.c:4310 +#: g10/keygen.c:4364 #, fuzzy, c-format msgid "A key for \"%s\" already exists\n" msgstr "«%s» ja està comprimida\n" -#: g10/keygen.c:4315 +#: g10/keygen.c:4369 #, fuzzy #| msgid "Create anyway? " msgid "Create anyway? (y/N) " msgstr "Voleu crear la clau de tota manera? " -#: g10/keygen.c:4321 +#: g10/keygen.c:4375 #, fuzzy, c-format #| msgid "Create anyway? " msgid "creating anyway\n" msgstr "Voleu crear la clau de tota manera? " -#: g10/keygen.c:4722 +#: g10/keygen.c:4776 #, c-format msgid "Note: Use \"%s %s\" for a full featured key generation dialog.\n" msgstr "" -#: g10/keygen.c:4771 +#: g10/keygen.c:4825 #, c-format msgid "Key generation canceled.\n" msgstr "La generació de claus ha estat cancel·lada.\n" -#: g10/keygen.c:4831 +#: g10/keygen.c:4885 #, fuzzy, c-format msgid "can't create backup file '%s': %s\n" msgstr "no s'ha pogut crear «%s»: %s\n" -#: g10/keygen.c:4851 +#: g10/keygen.c:4905 #, c-format msgid "Note: backup of card key saved to '%s'\n" msgstr "" -#: g10/keygen.c:5010 g10/keygen.c:5172 +#: g10/keygen.c:5064 g10/keygen.c:5226 #, fuzzy, c-format #| msgid "writing public key to `%s'\n" msgid "writing public key to '%s'\n" msgstr "s'està escrivint la clau pública a «%s»\n" # Potser no hi haja cap anell! ivb -#: g10/keygen.c:5166 +#: g10/keygen.c:5220 #, c-format msgid "no writable public keyring found: %s\n" msgstr "no s'ha trobat cap anell públic escrivible: %s\n" -#: g10/keygen.c:5180 +#: g10/keygen.c:5234 #, fuzzy, c-format #| msgid "error writing public keyring `%s': %s\n" msgid "error writing public keyring '%s': %s\n" msgstr "s'ha produït un error mentre s'escrivia l'anell públic «%s»: %s\n" -#: g10/keygen.c:5210 +#: g10/keygen.c:5264 msgid "public and secret key created and signed.\n" msgstr "s'han creat i signat les claus pública i secreta.\n" -#: g10/keygen.c:5226 +#: g10/keygen.c:5280 #, fuzzy msgid "" "Note that this key cannot be used for encryption. You may want to use\n" @@ -6092,7 +6098,7 @@ "\"--edit-key\" per a generar una clau secundària per a tal propòsit.\n" # Werner FIXME: Use ngettext. jm -#: g10/keygen.c:5401 g10/keygen.c:5590 +#: g10/keygen.c:5455 g10/keygen.c:5644 #, c-format msgid "" "key has been created %lu second in future (time warp or clock problem)\n" @@ -6101,7 +6107,7 @@ "amb el rellotge)\n" # Werner FIXME: use ngettext. jm -#: g10/keygen.c:5403 g10/keygen.c:5592 +#: g10/keygen.c:5457 g10/keygen.c:5646 #, c-format msgid "" "key has been created %lu seconds in future (time warp or clock problem)\n" @@ -6109,23 +6115,23 @@ "la clau s'ha creat %lu segons en el futur (salt en el temps o problemes\n" "amb el rellotge)\n" -#: g10/keygen.c:5414 g10/keygen.c:5603 +#: g10/keygen.c:5468 g10/keygen.c:5657 #, fuzzy, c-format #| msgid "NOTE: creating subkeys for v3 keys is not OpenPGP compliant\n" msgid "Note: creating subkeys for v3 keys is not OpenPGP compliant\n" msgstr "NOTA: crear subclaus per a claus v3 no és conforme amb OpenPGP\n" -#: g10/keygen.c:5426 g10/keygen.c:5428 +#: g10/keygen.c:5480 g10/keygen.c:5482 #, c-format msgid "Secret parts of primary key are not available.\n" msgstr "Les parts secretes de la clau primària no estan disponibles.\n" -#: g10/keygen.c:5435 g10/keygen.c:5437 +#: g10/keygen.c:5489 g10/keygen.c:5491 #, fuzzy, c-format msgid "Secret parts of primary key are stored on-card.\n" msgstr "Les parts secretes de la clau primària no estan disponibles.\n" -#: g10/keygen.c:5456 g10/keygen.c:5617 +#: g10/keygen.c:5510 g10/keygen.c:5671 #, fuzzy msgid "Really create? (y/N) " msgstr "Crear realment? " @@ -7249,31 +7255,31 @@ # Indi? ivb # Em pense que no. jm -#: g10/plaintext.c:615 +#: g10/plaintext.c:620 msgid "Detached signature.\n" msgstr "Signatura separada.\n" -#: g10/plaintext.c:623 +#: g10/plaintext.c:628 msgid "Please enter name of data file: " msgstr "Introduïu el nom del fitxer de dades: " -#: g10/plaintext.c:660 +#: g10/plaintext.c:665 #, c-format msgid "reading stdin ...\n" msgstr "s'està llegint d'stdin...\n" -#: g10/plaintext.c:705 +#: g10/plaintext.c:710 #, c-format msgid "no signed data\n" msgstr "no hi ha dades signades\n" -#: g10/plaintext.c:723 +#: g10/plaintext.c:728 #, fuzzy, c-format #| msgid "can't open signed data `%s'\n" msgid "can't open signed data '%s'\n" msgstr "no s'han pogut obrir les dades signades `%s'\n" -#: g10/plaintext.c:758 +#: g10/plaintext.c:763 #, fuzzy, c-format msgid "can't open signed data fd=%d: %s\n" msgstr "no s'han pogut obrir les dades signades `%s'\n" @@ -8311,7 +8317,7 @@ "no és necessària una comprovació de la base de dades de confiança\n" "\n" -#: g10/trustdb.c:631 g10/trustdb.c:2326 +#: g10/trustdb.c:631 g10/trustdb.c:2338 #, c-format msgid "next trustdb check due at %s\n" msgstr "la pròxima comprovació de la base de dades de confiança serà el %s\n" @@ -8345,14 +8351,14 @@ msgid "checking the trustdb\n" msgstr "s'està comprovant la base de dades de confiança\n" -#: g10/trustdb.c:2047 +#: g10/trustdb.c:2059 #, fuzzy, c-format msgid "%d key processed" msgid_plural "%d keys processed" msgstr[0] "fins ara s'han processat %lu claus\n" msgstr[1] "fins ara s'han processat %lu claus\n" -#: g10/trustdb.c:2050 +#: g10/trustdb.c:2062 #, fuzzy, c-format #| msgid "%d keys processed (%d validity counts cleared)\n" msgid " (%d validity count cleared)\n" @@ -8360,24 +8366,24 @@ msgstr[0] "s'han processat %d claus (s'han netejat %d comptes de validesa)\n" msgstr[1] "s'han processat %d claus (s'han netejat %d comptes de validesa)\n" -#: g10/trustdb.c:2120 +#: g10/trustdb.c:2132 #, c-format msgid "no ultimately trusted keys found\n" msgstr "no s'han trobat claus amb confiança absoluta\n" -#: g10/trustdb.c:2134 +#: g10/trustdb.c:2146 #, fuzzy, c-format msgid "public key of ultimately trusted key %s not found\n" msgstr "" "no s'ha trobat la clau pública de la clau amb confiança absoluta %08lX\n" -#: g10/trustdb.c:2252 +#: g10/trustdb.c:2264 #, c-format msgid "" "depth: %d valid: %3d signed: %3d trust: %d-, %dq, %dn, %dm, %df, %du\n" msgstr "" -#: g10/trustdb.c:2333 +#: g10/trustdb.c:2345 #, fuzzy, c-format msgid "unable to update trustdb version record: write failed: %s\n" msgstr "registre de confiança %lu, tipus %d: no s'ha pogut escriure: %s\n" @@ -8496,88 +8502,94 @@ #. TRANSLATORS: Put a \x1f right before a colon. This can be #. * used by pinentry to nicely align the names and values. Keep #. * the %s at the start and end of the string. -#: scd/app-p15.c:5116 scd/app-openpgp.c:2154 +#: scd/app-p15.c:5145 scd/app-nks.c:1541 scd/app-openpgp.c:2154 #, c-format msgid "%sNumber: %s%%0AHolder: %s%s" msgstr "" #. TRANSLATORS: This is the number of remaining attempts to #. * enter a PIN. Use %%0A (double-percent,0A) for a linefeed. -#: scd/app-p15.c:5135 scd/app-openpgp.c:2170 +#: scd/app-p15.c:5164 scd/app-nks.c:1560 scd/app-openpgp.c:2170 #, c-format msgid "Remaining attempts: %d" msgstr "" -#: scd/app-p15.c:5214 scd/app-nks.c:1113 +#: scd/app-p15.c:5243 scd/app-nks.c:2112 msgid "||Please enter the PIN for the key to create qualified signatures." msgstr "" #. TRANSLATORS: Do not translate the "|A|" prefix but keep it at #. the start of the string. Use %0A (single percent) for a linefeed. -#: scd/app-p15.c:5217 scd/app-openpgp.c:2464 +#: scd/app-p15.c:5246 scd/app-openpgp.c:2465 #, fuzzy msgid "|A|Please enter the Admin PIN" msgstr "canvia la contrasenya" -#: scd/app-p15.c:5219 scd/app-nks.c:1103 +#: scd/app-p15.c:5248 scd/app-nks.c:2102 #, fuzzy msgid "|P|Please enter the PIN Unblocking Code (PUK) for the standard keys." msgstr "Seleccioneu la raó de la revocació:\n" -#: scd/app-p15.c:5222 scd/app-nks.c:1095 +#: scd/app-p15.c:5251 scd/app-nks.c:2093 #, fuzzy msgid "||Please enter the PIN for the standard keys." msgstr "canvia la contrasenya" -#: scd/app-nks.c:709 scd/app-openpgp.c:3666 +#: scd/app-nks.c:1479 scd/app-openpgp.c:3675 #, c-format msgid "RSA modulus missing or not of size %d bits\n" msgstr "" -#: scd/app-nks.c:717 scd/app-openpgp.c:3678 +#: scd/app-nks.c:1487 scd/app-openpgp.c:3687 #, c-format msgid "RSA public exponent missing or larger than %d bits\n" msgstr "" -#: scd/app-nks.c:797 scd/app-openpgp.c:2327 scd/app-openpgp.c:2346 -#: scd/app-openpgp.c:2513 scd/app-openpgp.c:2531 scd/app-openpgp.c:2829 -#: scd/app-openpgp.c:2876 scd/app-openpgp.c:2991 scd/app-dinsig.c:302 +#: scd/app-nks.c:1660 +#, fuzzy +#| msgid "Note: This key has been disabled.\n" +msgid "Note: PIN has not yet been enabled." +msgstr "Nota: Aquesta clau ha estat desactivada.\n" + +#: scd/app-nks.c:1671 scd/app-openpgp.c:2327 scd/app-openpgp.c:2346 +#: scd/app-openpgp.c:2515 scd/app-openpgp.c:2533 scd/app-openpgp.c:2832 +#: scd/app-openpgp.c:2879 scd/app-openpgp.c:3000 scd/app-dinsig.c:303 #, c-format msgid "PIN callback returned error: %s\n" msgstr "" -#: scd/app-nks.c:830 +#: scd/app-nks.c:1707 #, c-format msgid "the NullPIN has not yet been changed\n" msgstr "" -#: scd/app-nks.c:1094 +#: scd/app-nks.c:2092 #, fuzzy msgid "|N|Please enter a new PIN for the standard keys." msgstr "canvia la contrasenya" -#: scd/app-nks.c:1101 +#: scd/app-nks.c:2100 #, fuzzy msgid "|NP|Please enter a new PIN Unblocking Code (PUK) for the standard keys." msgstr "Seleccioneu la raó de la revocació:\n" -#: scd/app-nks.c:1111 +#: scd/app-nks.c:2110 msgid "|N|Please enter a new PIN for the key to create qualified signatures." msgstr "" -#: scd/app-nks.c:1121 +#: scd/app-nks.c:2120 msgid "" "|NP|Please enter a new PIN Unblocking Code (PUK) for the key to create " "qualified signatures." msgstr "" -#: scd/app-nks.c:1123 +#: scd/app-nks.c:2122 msgid "" "|P|Please enter the PIN Unblocking Code (PUK) for the key to create " "qualified signatures." msgstr "" -#: scd/app-nks.c:1230 scd/app-openpgp.c:2910 scd/app-dinsig.c:532 +#: scd/app-nks.c:2295 scd/app-openpgp.c:2913 scd/app-dinsig.c:535 #, fuzzy, c-format msgid "error getting new PIN: %s\n" msgstr "error en crear «%s»: %s\n" @@ -8592,7 +8604,7 @@ msgid "failed to store the creation date: %s\n" msgstr "no s'ha pogut reconstruir la memòria cau de l'anell: %s\n" -#: scd/app-openpgp.c:1271 scd/app-openpgp.c:2857 scd/app-openpgp.c:5041 +#: scd/app-openpgp.c:1271 scd/app-openpgp.c:2860 scd/app-openpgp.c:5051 #, c-format msgid "error retrieving CHV status from card\n" msgstr "" @@ -8613,7 +8625,7 @@ msgid "response does not contain the EC public key\n" msgstr "elimina claus de l'anell públic" -#: scd/app-openpgp.c:1664 scd/app-openpgp.c:4286 +#: scd/app-openpgp.c:1664 scd/app-openpgp.c:4295 #, c-format msgid "response does not contain the public key data\n" msgstr "" @@ -8646,23 +8658,23 @@ msgid "||Please unlock the card" msgstr "canvia la contrasenya" -#: scd/app-openpgp.c:2353 scd/app-openpgp.c:2538 scd/app-openpgp.c:2836 +#: scd/app-openpgp.c:2353 scd/app-openpgp.c:2540 scd/app-openpgp.c:2839 #, c-format msgid "PIN for CHV%d is too short; minimum length is %d\n" msgstr "" -#: scd/app-openpgp.c:2367 scd/app-openpgp.c:2414 scd/app-openpgp.c:2552 -#: scd/app-openpgp.c:4644 +#: scd/app-openpgp.c:2368 scd/app-openpgp.c:2415 scd/app-openpgp.c:2554 +#: scd/app-openpgp.c:4654 #, 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:2450 scd/app-openpgp.c:5050 +#: scd/app-openpgp.c:2451 scd/app-openpgp.c:5060 #, c-format msgid "card is permanently locked!\n" msgstr "" -#: scd/app-openpgp.c:2454 +#: scd/app-openpgp.c:2455 #, c-format msgid "%d Admin PIN attempt remaining before card is permanently locked\n" msgid_plural "" @@ -8670,22 +8682,22 @@ msgstr[0] "" msgstr[1] "" -#: scd/app-openpgp.c:2485 +#: scd/app-openpgp.c:2486 #, c-format msgid "access to admin commands is not configured\n" msgstr "" -#: scd/app-openpgp.c:2823 +#: scd/app-openpgp.c:2826 #, fuzzy msgid "||Please enter the PIN" msgstr "canvia la contrasenya" -#: scd/app-openpgp.c:2872 +#: scd/app-openpgp.c:2875 #, fuzzy msgid "||Please enter the Reset Code for the card" msgstr "Seleccioneu la raó de la revocació:\n" -#: scd/app-openpgp.c:2882 scd/app-openpgp.c:2943 +#: scd/app-openpgp.c:2885 scd/app-openpgp.c:2946 #, c-format msgid "Reset Code is too short; minimum length is %d\n" msgstr "" @@ -8693,129 +8705,129 @@ #. 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:2905 +#: scd/app-openpgp.c:2908 msgid "|RN|New Reset Code" msgstr "" -#: scd/app-openpgp.c:2906 +#: scd/app-openpgp.c:2909 msgid "|AN|New Admin PIN" msgstr "" -#: scd/app-openpgp.c:2906 +#: scd/app-openpgp.c:2909 msgid "|N|New PIN" msgstr "" -#: scd/app-openpgp.c:2987 +#: scd/app-openpgp.c:2996 #, fuzzy msgid "||Please enter the Admin PIN and New Admin PIN" msgstr "canvia la contrasenya" -#: scd/app-openpgp.c:2988 +#: scd/app-openpgp.c:2997 #, fuzzy msgid "||Please enter the PIN and New PIN" msgstr "canvia la contrasenya" -#: scd/app-openpgp.c:3050 scd/app-openpgp.c:4346 +#: scd/app-openpgp.c:3059 scd/app-openpgp.c:4355 #, fuzzy, c-format 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:3056 scd/app-openpgp.c:4353 +#: scd/app-openpgp.c:3065 scd/app-openpgp.c:4362 #, fuzzy, c-format msgid "error reading fingerprint DO\n" msgstr "error: l'empremta digital és invàlida\n" -#: scd/app-openpgp.c:3066 +#: scd/app-openpgp.c:3075 #, fuzzy, c-format msgid "key already exists\n" msgstr "«%s» ja està comprimida\n" -#: scd/app-openpgp.c:3070 +#: scd/app-openpgp.c:3079 #, c-format msgid "existing key will be replaced\n" msgstr "" -#: scd/app-openpgp.c:3072 +#: scd/app-openpgp.c:3081 #, fuzzy, c-format msgid "generating new key\n" msgstr "genera un nou parell de claus" -#: scd/app-openpgp.c:3074 +#: scd/app-openpgp.c:3083 #, fuzzy, c-format msgid "writing new key\n" msgstr "genera un nou parell de claus" -#: scd/app-openpgp.c:3647 scd/app-openpgp.c:3999 +#: scd/app-openpgp.c:3656 scd/app-openpgp.c:4008 #, c-format msgid "creation timestamp missing\n" msgstr "" -#: scd/app-openpgp.c:3688 scd/app-openpgp.c:3696 +#: scd/app-openpgp.c:3697 scd/app-openpgp.c:3705 #, c-format msgid "RSA prime %s missing or not of size %d bits\n" msgstr "" -#: scd/app-openpgp.c:3829 scd/app-openpgp.c:4106 +#: scd/app-openpgp.c:3838 scd/app-openpgp.c:4115 #, 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" # Ídem. ivb -#: scd/app-openpgp.c:3993 +#: scd/app-openpgp.c:4002 #, fuzzy, c-format #| msgid "unsupported URI" msgid "unsupported curve\n" msgstr "l'URI no és suportada" -#: scd/app-openpgp.c:4263 +#: scd/app-openpgp.c:4272 #, c-format msgid "please wait while key is being generated ...\n" msgstr "" -#: scd/app-openpgp.c:4271 +#: scd/app-openpgp.c:4280 #, fuzzy, c-format msgid "generating key failed\n" msgstr "La generació de claus ha fallat: %s\n" -#: scd/app-openpgp.c:4277 +#: scd/app-openpgp.c:4286 #, fuzzy, c-format msgid "key generation completed (%d second)\n" msgid_plural "key generation completed (%d seconds)\n" msgstr[0] "La generació de claus ha fallat: %s\n" msgstr[1] "La generació de claus ha fallat: %s\n" -#: scd/app-openpgp.c:4311 +#: scd/app-openpgp.c:4320 #, c-format msgid "invalid structure of OpenPGP card (DO 0x93)\n" msgstr "" -#: scd/app-openpgp.c:4361 +#: scd/app-openpgp.c:4370 #, c-format msgid "fingerprint on card does not match requested one\n" msgstr "" -#: scd/app-openpgp.c:4560 +#: scd/app-openpgp.c:4569 #, fuzzy, c-format msgid "card does not support digest algorithm %s\n" msgstr "signatura %s, algorisme de resum %s\n" -#: scd/app-openpgp.c:4618 +#: scd/app-openpgp.c:4627 #, c-format msgid "signatures created so far: %lu\n" msgstr "" -#: scd/app-openpgp.c:5055 +#: scd/app-openpgp.c:5065 #, c-format msgid "" "verification of Admin PIN is currently prohibited through this command\n" msgstr "" -#: scd/app-openpgp.c:5386 scd/app-openpgp.c:5398 +#: scd/app-openpgp.c:5396 scd/app-openpgp.c:5408 #, c-format msgid "can't access %s - invalid OpenPGP card?\n" msgstr "" -#: scd/app-dinsig.c:298 +#: scd/app-dinsig.c:299 #, fuzzy msgid "||Please enter your PIN at the reader's pinpad" msgstr "canvia la contrasenya" @@ -8823,7 +8835,7 @@ #. 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-dinsig.c:529 +#: scd/app-dinsig.c:532 #, fuzzy msgid "|N|Initial New PIN" msgstr "Introduïu el nom d'usuari: " @@ -8914,11 +8926,11 @@ msgid "validation model requested by certificate: %s" msgstr "" -#: sm/certchain.c:199 sm/certchain.c:2164 +#: sm/certchain.c:199 sm/certchain.c:2165 msgid "chain" msgstr "" -#: sm/certchain.c:200 sm/certchain.c:2164 +#: sm/certchain.c:200 sm/certchain.c:2165 #, fuzzy msgid "shell" msgstr "ajuda" @@ -8942,248 +8954,248 @@ msgid "failed to open '%s': %s\n" msgstr "no s'ha pogut obrir «%s»: %s\n" -#: sm/certchain.c:355 sm/certchain.c:384 dirmngr/validate.c:204 +#: sm/certchain.c:355 sm/certchain.c:385 dirmngr/validate.c:204 #, fuzzy, c-format msgid "Note: non-critical certificate policy not allowed" msgstr "s'està escrivint la clau secreta a «%s»\n" -#: sm/certchain.c:359 sm/certchain.c:388 dirmngr/validate.c:209 +#: sm/certchain.c:359 sm/certchain.c:389 dirmngr/validate.c:209 #, fuzzy, c-format msgid "certificate policy not allowed" msgstr "s'està escrivint la clau secreta a «%s»\n" -#: sm/certchain.c:595 sm/keydb.c:1084 sm/keydb.c:1171 +#: sm/certchain.c:596 sm/keydb.c:1084 sm/keydb.c:1171 #, fuzzy, c-format msgid "failed to get the fingerprint\n" msgstr "no s'ha pogut emmagatzemar l'empremta digital: %s\n" -#: sm/certchain.c:624 +#: sm/certchain.c:625 #, c-format msgid "looking up issuer at external location\n" msgstr "" -#: sm/certchain.c:644 +#: sm/certchain.c:645 #, c-format msgid "number of issuers matching: %d\n" msgstr "" -#: sm/certchain.c:723 dirmngr/ocsp.c:685 +#: sm/certchain.c:724 dirmngr/ocsp.c:685 #, fuzzy, c-format #| msgid "%s: can't access: %s\n" msgid "can't get authorityInfoAccess: %s\n" msgstr "%s: no s'ha pogut accedir: %s\n" -#: sm/certchain.c:791 +#: sm/certchain.c:792 #, c-format msgid "looking up issuer from the Dirmngr cache\n" msgstr "" -#: sm/certchain.c:816 +#: sm/certchain.c:817 #, fuzzy, c-format msgid "number of matching certificates: %d\n" msgstr "error en la creació de la contrasenya: %s\n" -#: sm/certchain.c:819 +#: sm/certchain.c:820 #, fuzzy, c-format msgid "dirmngr cache-only key lookup failed: %s\n" msgstr "no s'ha pogut eliminar el bloc de claus: %s\n" -#: sm/certchain.c:1041 sm/certchain.c:1554 sm/certchain.c:2192 sm/decrypt.c:728 +#: sm/certchain.c:1042 sm/certchain.c:1555 sm/certchain.c:2193 sm/decrypt.c:728 #: sm/encrypt.c:345 sm/import.c:415 sm/keydb.c:1091 sm/keydb.c:1178 #: sm/sign.c:337 sm/verify.c:118 #, fuzzy, c-format msgid "failed to allocate keyDB handle\n" msgstr "no s'ha pogut inicialitzar la base de dades de confiança: %s\n" -#: sm/certchain.c:1225 +#: sm/certchain.c:1226 #, fuzzy msgid "certificate has been revoked" msgstr "NOTA: aquesta clau ha estat revocada!" -#: sm/certchain.c:1240 +#: sm/certchain.c:1241 msgid "the status of the certificate is unknown" msgstr "" -#: sm/certchain.c:1247 +#: sm/certchain.c:1248 #, c-format msgid "please make sure that the \"dirmngr\" is properly installed\n" msgstr "" -#: sm/certchain.c:1253 +#: sm/certchain.c:1254 #, fuzzy, c-format msgid "checking the CRL failed: %s" msgstr "no s'ha pogut comprovar la signatura creada: %s\n" -#: sm/certchain.c:1282 sm/certchain.c:1350 dirmngr/validate.c:497 +#: sm/certchain.c:1283 sm/certchain.c:1351 dirmngr/validate.c:497 #, fuzzy, c-format msgid "certificate with invalid validity: %s" msgstr "problema en la lectura del certificat: %s\n" -#: sm/certchain.c:1297 sm/certchain.c:1382 dirmngr/validate.c:515 +#: sm/certchain.c:1298 sm/certchain.c:1383 dirmngr/validate.c:515 #, fuzzy, c-format msgid "certificate not yet valid" msgstr "Certificat de revocació vàlid" -#: sm/certchain.c:1298 sm/certchain.c:1383 +#: sm/certchain.c:1299 sm/certchain.c:1384 #, fuzzy msgid "root certificate not yet valid" msgstr "Certificat de revocació vàlid" -#: sm/certchain.c:1299 sm/certchain.c:1384 +#: sm/certchain.c:1300 sm/certchain.c:1385 #, fuzzy msgid "intermediate certificate not yet valid" msgstr "Certificat de revocació vàlid" -#: sm/certchain.c:1312 dirmngr/validate.c:526 +#: sm/certchain.c:1313 dirmngr/validate.c:526 #, fuzzy, c-format msgid "certificate has expired" msgstr "problema en la lectura del certificat: %s\n" -#: sm/certchain.c:1313 +#: sm/certchain.c:1314 #, fuzzy msgid "root certificate has expired" msgstr "problema en la lectura del certificat: %s\n" -#: sm/certchain.c:1314 +#: sm/certchain.c:1315 #, fuzzy msgid "intermediate certificate has expired" msgstr "problema en la lectura del certificat: %s\n" -#: sm/certchain.c:1356 +#: sm/certchain.c:1357 #, c-format msgid "required certificate attributes missing: %s%s%s" msgstr "" -#: sm/certchain.c:1365 +#: sm/certchain.c:1366 #, fuzzy msgid "certificate with invalid validity" msgstr "problema en la lectura del certificat: %s\n" -#: sm/certchain.c:1402 +#: sm/certchain.c:1403 msgid "signature not created during lifetime of certificate" msgstr "" -#: sm/certchain.c:1404 +#: sm/certchain.c:1405 msgid "certificate not created during lifetime of issuer" msgstr "" -#: sm/certchain.c:1405 +#: sm/certchain.c:1406 msgid "intermediate certificate not created during lifetime of issuer" msgstr "" -#: sm/certchain.c:1409 +#: sm/certchain.c:1410 #, fuzzy, c-format msgid " ( signature created at " msgstr " signatures noves: %lu\n" -#: sm/certchain.c:1410 +#: sm/certchain.c:1411 #, fuzzy, c-format msgid " (certificate created at " msgstr "S'ha creat el certificat de revocació.\n" -#: sm/certchain.c:1413 +#: sm/certchain.c:1414 #, fuzzy, c-format msgid " (certificate valid from " msgstr "Certificat de revocació vàlid" -#: sm/certchain.c:1414 +#: sm/certchain.c:1415 #, c-format msgid " ( issuer valid from " msgstr "" -#: sm/certchain.c:1444 dirmngr/validate.c:577 +#: sm/certchain.c:1445 dirmngr/validate.c:577 #, fuzzy, c-format msgid "fingerprint=%s\n" msgstr "Empremta digital:" -#: sm/certchain.c:1453 +#: sm/certchain.c:1454 #, fuzzy, c-format msgid "root certificate has now been marked as trusted\n" msgstr "" "No s'han trobat certificats amb confiança no definida.\n" "\n" -#: sm/certchain.c:1466 +#: sm/certchain.c:1467 #, c-format msgid "interactive marking as trusted not enabled in gpg-agent\n" msgstr "" -#: sm/certchain.c:1472 +#: sm/certchain.c:1473 #, c-format msgid "interactive marking as trusted disabled for this session\n" msgstr "" -#: sm/certchain.c:1531 +#: sm/certchain.c:1532 msgid "WARNING: creation time of signature not known - assuming current time" msgstr "" -#: sm/certchain.c:1595 +#: sm/certchain.c:1596 #, fuzzy msgid "no issuer found in certificate" msgstr "Certificat correcte" -#: sm/certchain.c:1673 +#: sm/certchain.c:1674 msgid "self-signed certificate has a BAD signature" msgstr "" -#: sm/certchain.c:1742 dirmngr/validate.c:575 +#: sm/certchain.c:1743 dirmngr/validate.c:575 #, fuzzy, c-format msgid "root certificate is not marked trusted" msgstr "" "No s'han trobat certificats amb confiança no definida.\n" "\n" -#: sm/certchain.c:1758 +#: sm/certchain.c:1759 #, fuzzy, c-format msgid "checking the trust list failed: %s\n" msgstr "no s'ha pogut comprovar la signatura creada: %s\n" -#: sm/certchain.c:1789 sm/import.c:176 sm/keylist.c:1396 dirmngr/validate.c:630 +#: sm/certchain.c:1790 sm/import.c:176 sm/keylist.c:1396 dirmngr/validate.c:630 #, fuzzy, c-format msgid "certificate chain too long\n" msgstr "Certificat de revocació vàlid" -#: sm/certchain.c:1801 dirmngr/validate.c:642 +#: sm/certchain.c:1802 dirmngr/validate.c:642 #, fuzzy, c-format msgid "issuer certificate not found" msgstr "Certificat de revocació vàlid" -#: sm/certchain.c:1834 dirmngr/validate.c:668 +#: sm/certchain.c:1835 dirmngr/validate.c:668 #, fuzzy, c-format msgid "certificate has a BAD signature" msgstr "verifica una signatura" -#: sm/certchain.c:1866 dirmngr/validate.c:692 +#: sm/certchain.c:1867 dirmngr/validate.c:692 msgid "found another possible matching CA certificate - trying again" msgstr "" -#: sm/certchain.c:1925 dirmngr/validate.c:717 +#: sm/certchain.c:1926 dirmngr/validate.c:717 #, c-format msgid "certificate chain longer than allowed by CA (%d)" msgstr "" -#: sm/certchain.c:1967 sm/certchain.c:2263 dirmngr/validate.c:747 +#: sm/certchain.c:1968 sm/certchain.c:2264 dirmngr/validate.c:747 #, fuzzy, c-format msgid "certificate is good\n" msgstr "Certificat de revocació vàlid" -#: sm/certchain.c:1968 +#: sm/certchain.c:1969 #, fuzzy, c-format msgid "intermediate certificate is good\n" msgstr "certificat duplicat: esborrat" -#: sm/certchain.c:1969 +#: sm/certchain.c:1970 #, fuzzy, c-format msgid "root certificate is good\n" msgstr "" "No s'han trobat certificats amb confiança no definida.\n" "\n" -#: sm/certchain.c:2151 +#: sm/certchain.c:2152 msgid "switching to chain model" msgstr "" -#: sm/certchain.c:2160 +#: sm/certchain.c:2161 #, c-format msgid "validation model used: %s" msgstr "" diff -Nru gnupg2-2.2.40/po/cs.po gnupg2-2.2.41/po/cs.po --- gnupg2-2.2.40/po/cs.po 2022-10-10 09:58:25.000000000 +0000 +++ gnupg2-2.2.41/po/cs.po 2022-12-09 08:48:34.000000000 +0000 @@ -38,7 +38,7 @@ msgstr "" "Project-Id-Version: gnupg2 2.2.22\n" "Report-Msgid-Bugs-To: translations@gnupg.org\n" -"POT-Creation-Date: 2022-10-10 11:58+0200\n" +"POT-Creation-Date: 2022-12-09 09:48+0100\n" "PO-Revision-Date: 2020-08-31 18:53+02:00\n" "Last-Translator: Petr Pisar \n" "Language-Team: Czech \n" @@ -259,20 +259,20 @@ msgid "ssh keys greater than %d bits are not supported\n" msgstr "SSH klíče delší než %d bitů nejsou podporovány\n" -#: agent/command-ssh.c:862 common/dotlock.c:856 g10/card-util.c:947 -#: g10/exec.c:554 g10/export.c:1320 g10/gpg.c:1400 g10/keygen.c:4998 +#: agent/command-ssh.c:862 common/dotlock.c:856 g10/card-util.c:946 +#: g10/exec.c:554 g10/export.c:1335 g10/gpg.c:1409 g10/keygen.c:5052 #: g10/keyring.c:1322 g10/keyring.c:1637 g10/openfile.c:291 g10/sign.c:1008 #: g10/sign.c:1322 g10/tdbio.c:753 #, c-format msgid "can't create '%s': %s\n" msgstr "nelze vytvořit „%s“: %s\n" -#: agent/command-ssh.c:874 common/helpfile.c:57 g10/card-util.c:904 +#: agent/command-ssh.c:874 common/helpfile.c:57 g10/card-util.c:903 #: g10/dearmor.c:59 g10/dearmor.c:106 g10/decrypt.c:65 g10/decrypt.c:136 -#: g10/decrypt.c:153 g10/encrypt.c:239 g10/encrypt.c:678 g10/gpg.c:1401 -#: g10/import.c:364 g10/import.c:548 g10/import.c:776 g10/keygen.c:4036 +#: g10/decrypt.c:153 g10/encrypt.c:239 g10/encrypt.c:678 g10/gpg.c:1410 +#: g10/import.c:365 g10/import.c:549 g10/import.c:777 g10/keygen.c:4090 #: g10/keyring.c:1663 g10/openfile.c:195 g10/openfile.c:209 g10/plaintext.c:128 -#: g10/plaintext.c:649 g10/sign.c:990 g10/sign.c:1201 g10/sign.c:1306 +#: g10/plaintext.c:654 g10/sign.c:990 g10/sign.c:1201 g10/sign.c:1306 #: g10/sign.c:1451 g10/tdbdump.c:145 g10/tdbdump.c:153 g10/tdbio.c:758 #: g10/tdbio.c:829 g10/verify.c:96 g10/verify.c:160 sm/gpgsm.c:2160 #: sm/gpgsm.c:2190 sm/gpgsm.c:2228 sm/qualified.c:66 dirmngr/certcache.c:420 @@ -497,33 +497,33 @@ msgid "csh-style command output" msgstr "vypisovat příkazy ve stylu csh" -#: agent/gpg-agent.c:185 g10/gpg.c:579 scd/scdaemon.c:126 sm/gpgsm.c:410 +#: agent/gpg-agent.c:185 g10/gpg.c:580 scd/scdaemon.c:126 sm/gpgsm.c:410 #: dirmngr/dirmngr.c:192 msgid "|FILE|read options from FILE" msgstr "|SOUBOR|načíst volby ze SOUBORU" -#: agent/gpg-agent.c:189 g10/gpg.c:566 scd/scdaemon.c:130 sm/gpgsm.c:259 +#: agent/gpg-agent.c:189 g10/gpg.c:567 scd/scdaemon.c:130 sm/gpgsm.c:259 #: dirmngr/dirmngr.c:196 msgid "Options controlling the diagnostic output" msgstr "Volby ovlivňující diagnostický výstup" -#: agent/gpg-agent.c:191 g10/gpg.c:568 g10/gpgv.c:78 kbx/kbxutil.c:88 +#: agent/gpg-agent.c:191 g10/gpg.c:569 g10/gpgv.c:78 kbx/kbxutil.c:88 #: scd/scdaemon.c:132 sm/gpgsm.c:261 dirmngr/dirmngr-client.c:70 #: dirmngr/dirmngr.c:198 tools/gpg-connect-agent.c:78 tools/gpgconf.c:110 msgid "verbose" msgstr "upovídaný režim" -#: agent/gpg-agent.c:192 g10/gpg.c:570 g10/gpgv.c:79 kbx/kbxutil.c:89 +#: agent/gpg-agent.c:192 g10/gpg.c:571 g10/gpgv.c:79 kbx/kbxutil.c:89 #: scd/scdaemon.c:133 sm/gpgsm.c:263 dirmngr/dirmngr-client.c:71 #: dirmngr/dirmngr.c:199 msgid "be somewhat more quiet" msgstr "být o trochu víc tichý" -#: agent/gpg-agent.c:200 g10/gpg.c:583 sm/gpgsm.c:276 dirmngr/dirmngr.c:209 +#: agent/gpg-agent.c:200 g10/gpg.c:584 sm/gpgsm.c:276 dirmngr/dirmngr.c:209 msgid "|FILE|write server mode logs to FILE" msgstr "|SOUBOR|protokol z režimu serveru se zapíše do SOUBORU" -#: agent/gpg-agent.c:204 g10/gpg.c:589 scd/scdaemon.c:147 sm/gpgsm.c:283 +#: agent/gpg-agent.c:204 g10/gpg.c:590 scd/scdaemon.c:147 sm/gpgsm.c:283 #: dirmngr/dirmngr.c:213 msgid "Options controlling the configuration" msgstr "Volby ovlivňující nastavení" @@ -560,7 +560,7 @@ msgid "enable putty support" msgstr "zapnout podporu pro PuTTY" -#: agent/gpg-agent.c:237 g10/gpg.c:831 scd/scdaemon.c:175 sm/gpgsm.c:369 +#: agent/gpg-agent.c:237 g10/gpg.c:832 scd/scdaemon.c:175 sm/gpgsm.c:369 msgid "Options controlling the security" msgstr "Volby ovlivňující bezpečnost" @@ -660,7 +660,7 @@ #. reporting address. This is so that we can change the #. reporting address without breaking the translations. #: agent/gpg-agent.c:563 agent/preset-passphrase.c:100 agent/protect-tool.c:155 -#: g10/gpg.c:1108 g10/gpgv.c:149 kbx/kbxutil.c:113 scd/scdaemon.c:313 +#: g10/gpg.c:1117 g10/gpgv.c:149 kbx/kbxutil.c:113 scd/scdaemon.c:313 #: sm/gpgsm.c:600 dirmngr/dirmngr-client.c:168 dirmngr/dirmngr.c:458 #: tools/gpg-connect-agent.c:205 tools/gpgconf.c:154 #: tools/gpg-check-pattern.c:143 @@ -681,26 +681,26 @@ "Syntaxe: @GPG_AGENT@ [volby] [příkaz [argumenty]]\n" "Správa tajných klíčů pro @GNUPG@\n" -#: agent/gpg-agent.c:619 g10/gpg.c:1304 scd/scdaemon.c:385 sm/gpgsm.c:748 +#: agent/gpg-agent.c:619 g10/gpg.c:1313 scd/scdaemon.c:385 sm/gpgsm.c:748 #: dirmngr/dirmngr.c:542 #, c-format msgid "invalid debug-level '%s' given\n" msgstr "zadána neplatná úroveň ladění „%s“\n" -#: agent/gpg-agent.c:988 g10/gpg.c:3810 g10/gpg.c:3834 sm/gpgsm.c:1585 +#: agent/gpg-agent.c:988 g10/gpg.c:3830 g10/gpg.c:3854 sm/gpgsm.c:1585 #: sm/gpgsm.c:1591 #, c-format msgid "selected digest algorithm is invalid\n" msgstr "vybraný hashovací algoritmus je neplatný\n" #: agent/gpg-agent.c:1216 agent/gpg-agent.c:2029 common/argparse.c:1766 -#: common/argparse.c:1858 g10/gpg.c:2517 scd/scdaemon.c:547 sm/gpgsm.c:1007 +#: common/argparse.c:1858 g10/gpg.c:2526 scd/scdaemon.c:547 sm/gpgsm.c:1007 #: dirmngr/dirmngr.c:1081 dirmngr/dirmngr.c:1937 #, c-format msgid "reading options from '%s'\n" msgstr "čtou se možnosti z „%s“\n" -#: agent/gpg-agent.c:1332 g10/gpg.c:3751 scd/scdaemon.c:671 sm/gpgsm.c:1522 +#: agent/gpg-agent.c:1332 g10/gpg.c:3769 scd/scdaemon.c:671 sm/gpgsm.c:1522 #: dirmngr/dirmngr.c:1190 tools/gpg-connect-agent.c:1244 tools/gpgconf.c:677 #, c-format msgid "Note: '%s' is not considered an option\n" @@ -830,7 +830,7 @@ "Syntaxe: gpg-preset-passphrase [volby] KEYGRIP\n" "Správa dočasné paměti pro hesla\n" -#: agent/protect-tool.c:108 g10/gpg.c:441 kbx/kbxutil.c:71 sm/gpgsm.c:210 +#: agent/protect-tool.c:108 g10/gpg.c:442 kbx/kbxutil.c:71 sm/gpgsm.c:210 #: dirmngr/dirmngr.c:171 tools/gpgconf.c:80 msgid "" "@Commands:\n" @@ -1055,7 +1055,7 @@ msgid "secret key parts are not available\n" msgstr "tajné části klíče nejsou dostupné\n" -#: agent/cvt-openpgp.c:344 g10/card-util.c:1556 +#: agent/cvt-openpgp.c:344 g10/card-util.c:1555 #, c-format msgid "public key algorithm %d (%s) is not supported\n" msgstr "algoritmus %d (%s) veřejného klíče není podporován\n" @@ -1212,7 +1212,7 @@ msgid "out of core while allocating %lu bytes" msgstr "při pokusu alokovat %lu bajtů došla paměť" -#: common/miscellaneous.c:115 g10/card-util.c:911 tools/no-libgcrypt.c:30 +#: common/miscellaneous.c:115 g10/card-util.c:910 tools/no-libgcrypt.c:30 #, c-format msgid "error allocating enough memory: %s\n" msgstr "chyba při alokování dostatečného množství paměti: %s\n" @@ -1325,7 +1325,7 @@ msgstr "algoritmus: %s" #: common/audit.c:774 common/audit.c:776 common/audit.c:921 common/audit.c:923 -#: scd/app-openpgp.c:3557 +#: scd/app-openpgp.c:3566 #, c-format msgid "unsupported algorithm: %s" msgstr "nepodporovaný algoritmus: %s" @@ -1400,11 +1400,11 @@ msgid "Root certificate trustworthy" msgstr "Kořenový certifikát je důvěryhodný" -#: common/audit.c:1112 sm/certchain.c:1235 +#: common/audit.c:1112 sm/certchain.c:1236 msgid "no CRL found for certificate" msgstr "pro certifikát nebyl nalezen žádný CRL" -#: common/audit.c:1115 sm/certchain.c:1245 +#: common/audit.c:1115 sm/certchain.c:1246 msgid "the available CRL is too old" msgstr "dostupný CRL je příliš starý" @@ -1533,7 +1533,7 @@ msgid "missing argument for option \"%.50s\"\n" msgstr "postrádám argument u volby „%.50s“\n" -#: common/argparse.c:558 g10/gpg.c:3525 +#: common/argparse.c:558 g10/gpg.c:3543 #, c-format msgid "invalid argument for option \"%.50s\"\n" msgstr "neplatný argument u volby „%.50s“\n" @@ -1633,92 +1633,92 @@ msgid "%s is too old (need %s, have %s)\n" msgstr "%s je příliš stará (potřeba %s, přítomna %s)\n" -#: g10/armor.c:423 +#: g10/armor.c:424 #, c-format msgid "armor: %s\n" msgstr "ASCII kódování: %s\n" -#: g10/armor.c:462 +#: g10/armor.c:463 #, c-format msgid "invalid armor header: " msgstr "neplatná hlavička ASCII kódování: " -#: g10/armor.c:473 +#: g10/armor.c:474 #, c-format msgid "armor header: " msgstr "ASCII hlavička: " -#: g10/armor.c:486 +#: g10/armor.c:487 #, c-format msgid "invalid clearsig header\n" msgstr "neplatná hlavička podpisu v čitelném formátu\n" -#: g10/armor.c:499 +#: g10/armor.c:500 #, c-format msgid "unknown armor header: " msgstr "neznámá ASCII hlavička: " -#: g10/armor.c:552 +#: g10/armor.c:553 #, c-format msgid "nested clear text signatures\n" msgstr "vnořené podpisy v čitelném formátu\n" -#: g10/armor.c:687 +#: g10/armor.c:688 #, c-format msgid "unexpected armor: " msgstr "neočekávaný ASCII armor: " -#: g10/armor.c:700 +#: g10/armor.c:701 #, c-format msgid "invalid dash escaped line: " msgstr "nesprávné označení řádku mínusy: " -#: g10/armor.c:872 g10/armor.c:1492 +#: g10/armor.c:873 g10/armor.c:1493 #, c-format msgid "invalid radix64 character %02X skipped\n" msgstr "neplatný radix64 znak %02X byl přeskočen\n" -#: g10/armor.c:915 +#: g10/armor.c:916 #, c-format msgid "premature eof (no CRC)\n" msgstr "předčasný konec souboru (žádné CRC)\n" -#: g10/armor.c:949 +#: g10/armor.c:950 #, c-format msgid "premature eof (in CRC)\n" msgstr "předčasný konec souboru (žádné CRC)\n" -#: g10/armor.c:957 +#: g10/armor.c:958 #, c-format msgid "malformed CRC\n" msgstr "špatný formát CRC\n" -#: g10/armor.c:961 g10/armor.c:1529 +#: g10/armor.c:962 g10/armor.c:1530 #, c-format msgid "CRC error; %06lX - %06lX\n" msgstr "Chyba CRC; %06lX - %06lX\n" -#: g10/armor.c:981 +#: g10/armor.c:982 #, c-format msgid "premature eof (in trailer)\n" msgstr "předčasný konec souboru (v patičce)\n" -#: g10/armor.c:985 +#: g10/armor.c:986 #, c-format msgid "error in trailer line\n" msgstr "chyba v patičce\n" -#: g10/armor.c:1305 +#: g10/armor.c:1306 #, c-format msgid "no valid OpenPGP data found.\n" msgstr "nenalezena žádná platná data ve formátu OpenPGP.\n" -#: g10/armor.c:1310 +#: g10/armor.c:1311 #, c-format msgid "invalid armor: line longer than %d characters\n" msgstr "neplatné kódování ASCII: řádek je delší než %d znaků\n" -#: g10/armor.c:1314 +#: g10/armor.c:1315 #, c-format msgid "" "quoted printable character in armor - probably a buggy MTA has been used\n" @@ -1855,23 +1855,23 @@ msgid "server uses an invalid certificate" msgstr "server používá neplatný certifikát" -#: g10/call-dirmngr.c:462 g10/gpg.c:4458 +#: g10/call-dirmngr.c:462 g10/gpg.c:4478 #, c-format msgid "Note: %s\n" msgstr "Poznámka: %s\n" -#: g10/card-util.c:86 g10/card-util.c:366 g10/card-util.c:1918 +#: g10/card-util.c:86 g10/card-util.c:366 g10/card-util.c:1917 #, c-format msgid "OpenPGP card not available: %s\n" msgstr "OpenPGP karta není dostupná: %s\n" -#: g10/card-util.c:91 g10/card-util.c:1924 +#: g10/card-util.c:91 g10/card-util.c:1923 #, c-format msgid "OpenPGP card no. %s detected\n" msgstr "Nalezena OpenPGP karta číslo %s\n" -#: g10/card-util.c:97 g10/card-util.c:2253 g10/delkey.c:160 g10/keyedit.c:1423 -#: g10/keygen.c:4466 g10/revoke.c:214 g10/revoke.c:636 +#: g10/card-util.c:97 g10/card-util.c:2252 g10/delkey.c:160 g10/keyedit.c:1423 +#: g10/keygen.c:4520 g10/revoke.c:214 g10/revoke.c:636 #, c-format msgid "can't do this in batch mode\n" msgstr "nelze provést v dávkovém režimu\n" @@ -1881,14 +1881,14 @@ msgid "This command is only available for version 2 cards\n" msgstr "Tento příkaz je dostupný pouze pro karty verze 2\n" -#: g10/card-util.c:107 scd/app-openpgp.c:2866 +#: g10/card-util.c:107 scd/app-openpgp.c:2869 #, c-format msgid "Reset Code not or not anymore available\n" msgstr "Resetační kód není nebo už není dostupný\n" -#: g10/card-util.c:140 g10/card-util.c:1442 g10/card-util.c:1704 -#: g10/card-util.c:1796 g10/keyedit.c:394 g10/keyedit.c:415 g10/keyedit.c:429 -#: g10/keygen.c:1808 g10/keygen.c:1980 g10/keygen.c:2186 g10/keygen.c:2477 +#: g10/card-util.c:140 g10/card-util.c:1441 g10/card-util.c:1703 +#: g10/card-util.c:1795 g10/keyedit.c:394 g10/keyedit.c:415 g10/keyedit.c:429 +#: g10/keygen.c:1862 g10/keygen.c:2034 g10/keygen.c:2240 g10/keygen.c:2531 #: sm/certreqgen-ui.c:165 sm/certreqgen-ui.c:291 sm/certreqgen-ui.c:325 msgid "Your selection? " msgstr "Váš výběr? " @@ -1938,79 +1938,79 @@ msgid "Error: Combined name too long (limit is %d characters).\n" msgstr "Chyba: jméno a příjmení je příliš dlouhé (limit je %d znaků).\n" -#: g10/card-util.c:826 +#: g10/card-util.c:825 msgid "URL to retrieve public key: " msgstr "URL pro získání veřejného klíče: " -#: g10/card-util.c:920 g10/decrypt-data.c:509 g10/import.c:399 g10/import.c:746 -#: g10/import.c:798 dirmngr/crlcache.c:655 dirmngr/crlcache.c:660 +#: g10/card-util.c:919 g10/decrypt-data.c:509 g10/import.c:400 g10/import.c:747 +#: g10/import.c:799 dirmngr/crlcache.c:655 dirmngr/crlcache.c:660 #: dirmngr/crlcache.c:914 dirmngr/crlcache.c:920 dirmngr/dirmngr.c:1748 #: tools/gpgconf.c:483 tools/gpgconf.c:529 #, c-format msgid "error reading '%s': %s\n" msgstr "chyba při čtení „%s“: %s\n" -#: g10/card-util.c:953 g10/decrypt-data.c:512 g10/export.c:2467 +#: g10/card-util.c:952 g10/decrypt-data.c:512 g10/export.c:2586 #: dirmngr/crlcache.c:925 #, c-format msgid "error writing '%s': %s\n" msgstr "chyba při zápisu do „%s“: %s\n" -#: g10/card-util.c:980 +#: g10/card-util.c:979 msgid "Login data (account name): " msgstr "Login (jménu účtu): " -#: g10/card-util.c:1018 +#: g10/card-util.c:1017 msgid "Private DO data: " msgstr "Privátní DO data: " -#: g10/card-util.c:1103 +#: g10/card-util.c:1102 msgid "Language preferences: " msgstr "Jazykové předvolby: " -#: g10/card-util.c:1111 +#: g10/card-util.c:1110 msgid "Error: invalid length of preference string.\n" msgstr "Chyba: neplatná délka řetězce s předvolbami.\n" -#: g10/card-util.c:1120 +#: g10/card-util.c:1119 msgid "Error: invalid characters in preference string.\n" msgstr "Chyba: neplatný znak v řetězci s předvolbami\n" -#: g10/card-util.c:1142 +#: g10/card-util.c:1141 msgid "Salutation (M = Mr., F = Ms., or space): " msgstr "Oslovení (M = Pan, F = Paní, nebo mezera): " -#: g10/card-util.c:1156 +#: g10/card-util.c:1155 msgid "Error: invalid response.\n" msgstr "Chyba: neplatná odpověď.\n" -#: g10/card-util.c:1178 +#: g10/card-util.c:1177 msgid "CA fingerprint: " msgstr "Otisk CA: " -#: g10/card-util.c:1201 +#: g10/card-util.c:1200 msgid "Error: invalid formatted fingerprint.\n" msgstr "Chyba: chybně utvořené otisk.\n" -#: g10/card-util.c:1252 +#: g10/card-util.c:1251 #, c-format msgid "key operation not possible: %s\n" msgstr "operace s klíčem není možná: %s\n" -#: g10/card-util.c:1253 +#: g10/card-util.c:1252 msgid "not an OpenPGP card" msgstr "toto není OpenPGP karta" -#: g10/card-util.c:1266 g10/keygen.c:4486 g10/keygen.c:5562 +#: g10/card-util.c:1265 g10/keygen.c:4540 g10/keygen.c:5616 #, c-format msgid "error getting current key info: %s\n" msgstr "chyba při získání informací o aktuálním klíči: %s\n" -#: g10/card-util.c:1351 +#: g10/card-util.c:1350 msgid "Replace existing key? (y/N) " msgstr "Přepsat existující klíč? (a/N) " -#: g10/card-util.c:1368 +#: g10/card-util.c:1367 msgid "" "Note: There is no guarantee that the card supports the requested size.\n" " If the key generation does not succeed, please check the\n" @@ -2021,97 +2021,97 @@ "dokumentace\n" " své karty, kde se dozvíte, jaké velikosti jsou dovoleny.\n" -#: g10/card-util.c:1390 g10/keygen.c:2363 sm/certreqgen-ui.c:179 +#: g10/card-util.c:1389 g10/keygen.c:2417 sm/certreqgen-ui.c:179 #, c-format msgid "What keysize do you want? (%u) " msgstr "Jakou délku klíče si přejete? (%u) " -#: g10/card-util.c:1400 g10/keygen.c:2286 g10/keygen.c:2318 +#: g10/card-util.c:1399 g10/keygen.c:2340 g10/keygen.c:2372 #: sm/certreqgen-ui.c:194 #, c-format msgid "rounded up to %u bits\n" msgstr "zaokrouhleno na %u bitů\n" -#: g10/card-util.c:1408 g10/keygen.c:2371 sm/certreqgen-ui.c:184 +#: g10/card-util.c:1407 g10/keygen.c:2425 sm/certreqgen-ui.c:184 #, c-format msgid "%s keysizes must be in the range %u-%u\n" msgstr "velikost klíče %s musí být v intervalu %u-%u\n" -#: g10/card-util.c:1427 +#: g10/card-util.c:1426 msgid "Changing card key attribute for: " msgstr "Mění se atribut kartového klíče pro: " -#: g10/card-util.c:1429 +#: g10/card-util.c:1428 msgid "Signature key\n" msgstr "Podepisovací klíč\n" -#: g10/card-util.c:1431 +#: g10/card-util.c:1430 msgid "Encryption key\n" msgstr "Šifrovací klíč\n" -#: g10/card-util.c:1433 +#: g10/card-util.c:1432 msgid "Authentication key\n" msgstr "Autentizační klíč\n" -#: g10/card-util.c:1435 g10/keygen.c:1926 sm/certreqgen-ui.c:157 +#: g10/card-util.c:1434 g10/keygen.c:1980 sm/certreqgen-ui.c:157 msgid "Please select what kind of key you want:\n" msgstr "Prosím, vyberte druh klíče, který chcete:\n" -#: g10/card-util.c:1436 sm/certreqgen-ui.c:158 +#: g10/card-util.c:1435 sm/certreqgen-ui.c:158 #, c-format msgid " (%d) RSA\n" msgstr " (%d) RSA\n" -#: g10/card-util.c:1437 +#: g10/card-util.c:1436 #, c-format msgid " (%d) ECC\n" msgstr " (%d) ECC\n" -#: g10/card-util.c:1449 g10/card-util.c:1716 g10/card-util.c:1816 -#: g10/keyedit.c:900 g10/keygen.c:1834 g10/keygen.c:1862 g10/keygen.c:1987 -#: g10/keygen.c:2222 g10/keygen.c:2505 g10/revoke.c:838 +#: g10/card-util.c:1448 g10/card-util.c:1715 g10/card-util.c:1815 +#: g10/keyedit.c:900 g10/keygen.c:1888 g10/keygen.c:1916 g10/keygen.c:2041 +#: g10/keygen.c:2276 g10/keygen.c:2559 g10/revoke.c:838 msgid "Invalid selection.\n" msgstr "Neplatný výběr.\n" -#: g10/card-util.c:1522 +#: g10/card-util.c:1521 #, c-format msgid "The card will now be re-configured to generate a key of %u bits\n" msgstr "Karta bude nyní přenastavena na generování klíče dlouhého %u bitů\n" -#: g10/card-util.c:1527 +#: g10/card-util.c:1526 #, c-format msgid "The card will now be re-configured to generate a key of type: %s\n" msgstr "Karta bude nyní přenastavena na generování klíče typu: %s\n" -#: g10/card-util.c:1563 +#: g10/card-util.c:1562 #, c-format msgid "error changing key attribute for key %d: %s\n" msgstr "chyba při změně atributu klíče %d: %s\n" -#: g10/card-util.c:1579 g10/card-util.c:2106 +#: g10/card-util.c:1578 g10/card-util.c:2105 #, c-format msgid "error getting card info: %s\n" msgstr "chyba při získání informací o kartě: %s\n" -#: g10/card-util.c:1585 g10/card-util.c:1930 g10/card-util.c:2112 +#: g10/card-util.c:1584 g10/card-util.c:1929 g10/card-util.c:2111 #, c-format msgid "This command is not supported by this card\n" msgstr "Tento příkaz není touto kartou podporován\n" -#: g10/card-util.c:1631 +#: g10/card-util.c:1630 msgid "Make off-card backup of encryption key? (Y/n) " msgstr "Vytvořit zálohu šifrovacího klíče mimo kartu? (A/n) " -#: g10/card-util.c:1645 +#: g10/card-util.c:1644 #, c-format msgid "Note: keys are already stored on the card!\n" msgstr "Poznámka: na kartě jsou již klíče uloženy!\n" -#: g10/card-util.c:1648 +#: g10/card-util.c:1647 msgid "Replace existing keys? (y/N) " msgstr "Přepsat existující klíče? (a/N) " -#: g10/card-util.c:1660 +#: g10/card-util.c:1659 #, c-format msgid "" "Please note that the factory settings of the PINs are\n" @@ -2122,143 +2122,143 @@ " PIN = „%s“ PIN správce = „%s“\n" "Měli byste je změnit příkazem --change-pin\n" -#: g10/card-util.c:1695 +#: g10/card-util.c:1694 msgid "Please select the type of key to generate:\n" msgstr "Prosím, vyberte druh klíče, který chcete generovat:\n" -#: g10/card-util.c:1697 g10/card-util.c:1787 +#: g10/card-util.c:1696 g10/card-util.c:1786 msgid " (1) Signature key\n" msgstr " (1) Podepisovací klíč\n" -#: g10/card-util.c:1698 g10/card-util.c:1789 +#: g10/card-util.c:1697 g10/card-util.c:1788 msgid " (2) Encryption key\n" msgstr " (2) Šifrovací klíč\n" -#: g10/card-util.c:1699 g10/card-util.c:1791 +#: g10/card-util.c:1698 g10/card-util.c:1790 msgid " (3) Authentication key\n" msgstr " (3) Autentizační klíč\n" -#: g10/card-util.c:1784 +#: g10/card-util.c:1783 msgid "Please select where to store the key:\n" msgstr "Prosím vyberte, kam uložit klíč:\n" -#: g10/card-util.c:1830 +#: g10/card-util.c:1829 #, c-format msgid "KEYTOCARD failed: %s\n" msgstr "Volání KEYTOCARD selhalo: %s\n" -#: g10/card-util.c:1935 +#: g10/card-util.c:1934 #, c-format msgid "Note: This command destroys all keys stored on the card!\n" msgstr "Poznámka: Tento příkaz zničí všechny klíče uložené na kartě!\n" -#: g10/card-util.c:1938 +#: g10/card-util.c:1937 msgid "Continue? (y/N) " msgstr "Pokračovat (a/N) " # The code expects non-localized "yes" -#: g10/card-util.c:1943 +#: g10/card-util.c:1942 msgid "Really do a factory reset? (enter \"yes\") " msgstr "Opravdu obnovit tovární nastavení (zadejte „yes“) " -#: g10/card-util.c:2129 +#: g10/card-util.c:2128 #, c-format msgid "error for setup KDF: %s\n" msgstr "chyba při nastavování KDF: %s\n" -#: g10/card-util.c:2158 g10/keyedit.c:1260 +#: g10/card-util.c:2157 g10/keyedit.c:1260 msgid "quit this menu" msgstr "ukončit toto menu" -#: g10/card-util.c:2160 +#: g10/card-util.c:2159 msgid "show admin commands" msgstr "zobraz příkazy správce" -#: g10/card-util.c:2161 g10/keyedit.c:1263 +#: g10/card-util.c:2160 g10/keyedit.c:1263 msgid "show this help" msgstr "ukázat tuto pomoc" -#: g10/card-util.c:2163 +#: g10/card-util.c:2162 msgid "list all available data" msgstr "vypiš všechna dostupná data" -#: g10/card-util.c:2166 +#: g10/card-util.c:2165 msgid "change card holder's name" msgstr "změní jméno majitele karty" -#: g10/card-util.c:2167 +#: g10/card-util.c:2166 msgid "change URL to retrieve key" msgstr "změní URL pro získání klíče" -#: g10/card-util.c:2168 +#: g10/card-util.c:2167 msgid "fetch the key specified in the card URL" msgstr "získá klíč specifikovaný v URL karty" -#: g10/card-util.c:2169 +#: g10/card-util.c:2168 msgid "change the login name" msgstr "změnit login name" -#: g10/card-util.c:2170 +#: g10/card-util.c:2169 msgid "change the language preferences" msgstr "změnit jazykové předvolby" -#: g10/card-util.c:2171 +#: g10/card-util.c:2170 msgid "change card holder's salutation" msgstr "změní oslovení držitele karty" -#: g10/card-util.c:2173 +#: g10/card-util.c:2172 msgid "change a CA fingerprint" msgstr "vypsat otisk certifikační autority" -#: g10/card-util.c:2174 +#: g10/card-util.c:2173 msgid "toggle the signature force PIN flag" msgstr "zapnout/vypnout požadování PINu při každé self-sign operaci" -#: g10/card-util.c:2175 +#: g10/card-util.c:2174 msgid "generate new keys" msgstr "vytvořit nový pár klíčů" -#: g10/card-util.c:2176 +#: g10/card-util.c:2175 msgid "menu to change or unblock the PIN" msgstr "nabídka pro změnu anebo odblokování PINu" -#: g10/card-util.c:2177 +#: g10/card-util.c:2176 msgid "verify the PIN and list all data" msgstr "ověř PIN a vypiš všechna data" -#: g10/card-util.c:2178 +#: g10/card-util.c:2177 msgid "unblock the PIN using a Reset Code" msgstr "odblokovat PIN pomocí resetačního kódu" -#: g10/card-util.c:2179 +#: g10/card-util.c:2178 msgid "destroy all keys and data" msgstr "zničit všechny klíče a data" -#: g10/card-util.c:2180 +#: g10/card-util.c:2179 msgid "setup KDF for PIN authentication" msgstr "nastavit KDF pro autentizaci kódem PIN" -#: g10/card-util.c:2181 +#: g10/card-util.c:2180 msgid "change the key attribute" msgstr "změnit atribut klíče" -#: g10/card-util.c:2305 +#: g10/card-util.c:2304 msgid "gpg/card> " msgstr "gpg/karta> " -#: g10/card-util.c:2346 +#: g10/card-util.c:2345 msgid "Admin-only command\n" msgstr "pouze příkazy správce\n" -#: g10/card-util.c:2377 +#: g10/card-util.c:2376 msgid "Admin commands are allowed\n" msgstr "příkazy správce jsou povoleny\n" -#: g10/card-util.c:2379 +#: g10/card-util.c:2378 msgid "Admin commands are not allowed\n" msgstr "příkazy správce nejsou povoleny\n" -#: g10/card-util.c:2482 g10/keyedit.c:2229 +#: g10/card-util.c:2481 g10/keyedit.c:2229 msgid "Invalid command (try \"help\")\n" msgstr "Neplatný příkaz (zkuste „help“)\n" @@ -2267,21 +2267,21 @@ msgid "--output doesn't work for this command\n" msgstr "--output pro tento příkaz není platný\n" -#: g10/decrypt.c:247 g10/gpg.c:5155 g10/keyring.c:399 g10/keyring.c:750 +#: g10/decrypt.c:247 g10/gpg.c:5175 g10/keyring.c:399 g10/keyring.c:750 #, c-format msgid "can't open '%s'\n" msgstr "„%s“ nelze otevřít\n" -#: g10/delkey.c:83 g10/export.c:1947 g10/export.c:2230 g10/export.c:2351 -#: g10/getkey.c:2108 g10/gpg.c:5100 g10/keyedit.c:1445 g10/keyedit.c:2335 +#: g10/delkey.c:83 g10/export.c:2035 g10/export.c:2349 g10/export.c:2470 +#: g10/getkey.c:2108 g10/gpg.c:5120 g10/keyedit.c:1445 g10/keyedit.c:2335 #: g10/keyedit.c:2637 g10/keyedit.c:4600 g10/keylist.c:693 g10/keyserver.c:1092 #: g10/revoke.c:230 g10/tofu.c:2165 #, c-format msgid "key \"%s\" not found: %s\n" msgstr "klíč „%s“ nenalezen: %s\n" -#: g10/delkey.c:92 g10/export.c:2015 g10/getkey.c:2116 g10/getkey.c:4517 -#: g10/gpg.c:5109 g10/keyedit.c:2308 g10/keyserver.c:1110 g10/revoke.c:236 +#: g10/delkey.c:92 g10/export.c:2103 g10/getkey.c:2116 g10/getkey.c:4517 +#: g10/gpg.c:5129 g10/keyedit.c:2308 g10/keyserver.c:1110 g10/revoke.c:236 #: g10/revoke.c:663 g10/tofu.c:2173 #, c-format msgid "error reading keyblock: %s\n" @@ -2404,13 +2404,13 @@ msgid "WARNING: '%s' is an empty file\n" msgstr "VAROVÁNÍ: soubor „%s“ je prázdný\n" -#: g10/encrypt.c:446 g10/encrypt.c:521 g10/decrypt-data.c:266 g10/gpg.c:3959 -#: g10/gpg.c:3999 sm/decrypt.c:826 sm/encrypt.c:416 sm/gpgsm.c:1609 +#: g10/encrypt.c:446 g10/encrypt.c:521 g10/decrypt-data.c:266 g10/gpg.c:3979 +#: g10/gpg.c:4019 sm/decrypt.c:826 sm/encrypt.c:416 sm/gpgsm.c:1609 #, c-format msgid "cipher algorithm '%s' may not be used in %s mode\n" msgstr "šifrovací algoritmus „%s“ se nesmí používat v režimu %s\n" -#: g10/encrypt.c:455 g10/gpg.c:3965 g10/gpg.c:4011 g10/sig-check.c:175 +#: g10/encrypt.c:455 g10/gpg.c:3985 g10/gpg.c:4031 g10/sig-check.c:175 #: g10/sign.c:391 sm/gpgsm.c:1619 sm/gpgsm.c:1629 sm/sign.c:478 sm/verify.c:506 #, c-format msgid "digest algorithm '%s' may not be used in %s mode\n" @@ -2526,62 +2526,68 @@ msgid "WARNING: unable to remove temp directory '%s': %s\n" msgstr "VAROVÁNÍ: nelze smazat dočasný adresář „%s“: %s\n" -#: g10/export.c:119 +#: g10/export.c:124 msgid "export signatures that are marked as local-only" msgstr "exportovat podpisy, které jsou označeny jako jen místní (local-only)" -#: g10/export.c:121 +#: g10/export.c:126 msgid "export attribute user IDs (generally photo IDs)" msgstr "exportovat atributy uživatelských ID (obecně ID fotografií)" -#: g10/export.c:123 +#: g10/export.c:128 msgid "export revocation keys marked as \"sensitive\"" msgstr "exportovat revokační klíče označené jako „citlivé“" -#: g10/export.c:125 +#: g10/export.c:130 msgid "remove unusable parts from key during export" msgstr "odstranit nepoužitelné části z klíče při exportu" -#: g10/export.c:127 +#: g10/export.c:132 msgid "remove as much as possible from key during export" msgstr "odstranit při exportu z klíče vše, co lze" -#: g10/export.c:133 +#: g10/export.c:138 +#, fuzzy +#| msgid "generate a revocation certificate" +msgid "export only revocation certificates" +msgstr "vytvořit revokační certifikát" + +#: g10/export.c:141 msgid "use the GnuPG key backup format" msgstr "použít záložní formát klíče GnuPG" -#: g10/export.c:1291 +#: g10/export.c:1306 msgid " - skipped" msgstr " – přeskočeno" # g10/import.c:766 g10/openfile.c:261#, c-format -#: g10/export.c:1324 g10/import.c:2085 g10/openfile.c:200 g10/openfile.c:294 +#: g10/export.c:1339 g10/import.c:2089 g10/openfile.c:200 g10/openfile.c:294 #: g10/sign.c:1012 g10/sign.c:1326 #, c-format msgid "writing to '%s'\n" msgstr "zapisuje se do „%s“\n" -#: g10/export.c:1769 +#: g10/export.c:1784 #, c-format msgid "key %s: key material on-card - skipped\n" msgstr "klíč %s: tělo klíče je na kartě – přeskočeno\n" -#: g10/export.c:1964 +#: g10/export.c:2052 #, c-format msgid "exporting secret keys not allowed\n" msgstr "exportování tajného klíče není povoleno\n" -#: g10/export.c:2041 +#: g10/export.c:2129 #, c-format msgid "key %s: PGP 2.x style key - skipped\n" msgstr "klíč %s: PGP 2.x klíč – přeskočeno\n" -#: g10/export.c:2135 +#: g10/export.c:2254 #, c-format msgid "WARNING: nothing exported\n" msgstr "VAROVÁNÍ: nebylo nic vyexportováno\n" -#: g10/export.c:2432 g10/plaintext.c:153 g10/plaintext.c:162 +#: g10/export.c:2551 g10/plaintext.c:153 g10/plaintext.c:162 #: g10/plaintext.c:168 g10/plaintext.c:191 #, c-format msgid "error creating '%s': %s\n" @@ -2646,280 +2652,280 @@ msgid "using subkey %s instead of primary key %s\n" msgstr "používám podklíč %s místo primárního klíče %s\n" -#: g10/getkey.c:4446 g10/gpg.c:2137 +#: g10/getkey.c:4446 g10/gpg.c:2146 #, c-format msgid "valid values for option '%s':\n" msgstr "platné hodnoty pro volbu „%s“:\n" -#: g10/gpg.c:443 sm/gpgsm.c:212 +#: g10/gpg.c:444 sm/gpgsm.c:212 msgid "make a signature" msgstr "vytvořit podpis" -#: g10/gpg.c:444 +#: g10/gpg.c:445 msgid "make a clear text signature" msgstr "vytvořit podpis v čitelném dokumentu" -#: g10/gpg.c:446 sm/gpgsm.c:214 +#: g10/gpg.c:447 sm/gpgsm.c:214 msgid "make a detached signature" msgstr "vytvořit podpis oddělený od dokumentu" -#: g10/gpg.c:447 sm/gpgsm.c:215 +#: g10/gpg.c:448 sm/gpgsm.c:215 msgid "encrypt data" msgstr "šifrovat data" -#: g10/gpg.c:449 +#: g10/gpg.c:450 msgid "encryption only with symmetric cipher" msgstr "šifrování pouze se symetrickou šifrou" -#: g10/gpg.c:451 sm/gpgsm.c:217 +#: g10/gpg.c:452 sm/gpgsm.c:217 msgid "decrypt data (default)" msgstr "dešifrovat data (implicitně)" -#: g10/gpg.c:453 sm/gpgsm.c:218 +#: g10/gpg.c:454 sm/gpgsm.c:218 msgid "verify a signature" msgstr "verifikovat podpis" -#: g10/gpg.c:455 sm/gpgsm.c:219 +#: g10/gpg.c:456 sm/gpgsm.c:219 msgid "list keys" msgstr "vypsat seznam klíčů" -#: g10/gpg.c:457 +#: g10/gpg.c:458 msgid "list keys and signatures" msgstr "vypsat seznam klíčů a podpisů" -#: g10/gpg.c:460 +#: g10/gpg.c:461 msgid "list and check key signatures" msgstr "vypsat a zkontrolovat podpisy klíčů" -#: g10/gpg.c:462 sm/gpgsm.c:224 +#: g10/gpg.c:463 sm/gpgsm.c:224 msgid "list keys and fingerprints" msgstr "vypsat seznam klíčů a otisků" -#: g10/gpg.c:463 sm/gpgsm.c:222 +#: g10/gpg.c:464 sm/gpgsm.c:222 msgid "list secret keys" msgstr "vypsat seznam tajných klíčů" -#: g10/gpg.c:465 sm/gpgsm.c:225 +#: g10/gpg.c:466 sm/gpgsm.c:225 msgid "generate a new key pair" msgstr "vytvořit nový pár klíčů" -#: g10/gpg.c:468 +#: g10/gpg.c:469 msgid "quickly generate a new key pair" msgstr "rychle vytvořit nový pár klíčů" -#: g10/gpg.c:471 +#: g10/gpg.c:472 msgid "quickly add a new user-id" msgstr "rychle přidat novou identitu uživatele" -#: g10/gpg.c:476 +#: g10/gpg.c:477 msgid "quickly revoke a user-id" msgstr "rychle odvolat identitu uživatele" -#: g10/gpg.c:479 +#: g10/gpg.c:480 msgid "quickly set a new expiration date" msgstr "rychle nastavit nové datum konce platnosti" -#: g10/gpg.c:482 +#: g10/gpg.c:483 msgid "full featured key pair generation" msgstr "komplexní vytvoření páru klíčů" -#: g10/gpg.c:485 +#: g10/gpg.c:486 msgid "generate a revocation certificate" msgstr "vytvořit revokační certifikát" -#: g10/gpg.c:488 sm/gpgsm.c:228 +#: g10/gpg.c:489 sm/gpgsm.c:228 msgid "remove keys from the public keyring" msgstr "odstranit klíč ze souboru veřejných klíčů" -#: g10/gpg.c:490 +#: g10/gpg.c:491 msgid "remove keys from the secret keyring" msgstr "odstranit klíč ze souboru tajných klíčů" -#: g10/gpg.c:492 +#: g10/gpg.c:493 msgid "quickly sign a key" msgstr "rychle podepsat klíč" -#: g10/gpg.c:494 +#: g10/gpg.c:495 msgid "quickly sign a key locally" msgstr "rychle lokálně podepsat klíč" -#: g10/gpg.c:496 +#: g10/gpg.c:497 #, fuzzy #| msgid "quickly revoke a user-id" msgid "quickly revoke a key signature" msgstr "rychle odvolat identitu uživatele" -#: g10/gpg.c:497 +#: g10/gpg.c:498 msgid "sign a key" msgstr "podepsat klíč" -#: g10/gpg.c:498 +#: g10/gpg.c:499 msgid "sign a key locally" msgstr "podepsat klíč lokálně" -#: g10/gpg.c:499 +#: g10/gpg.c:500 msgid "sign or edit a key" msgstr "podepsat nebo modifikovat klíč" -#: g10/gpg.c:501 sm/gpgsm.c:246 +#: g10/gpg.c:502 sm/gpgsm.c:246 msgid "change a passphrase" msgstr "změnit heslo" -#: g10/gpg.c:505 +#: g10/gpg.c:506 msgid "export keys" msgstr "exportovat klíče" -#: g10/gpg.c:506 +#: g10/gpg.c:507 msgid "export keys to a keyserver" msgstr "exportovat klíče na server klíčů" -#: g10/gpg.c:507 +#: g10/gpg.c:508 msgid "import keys from a keyserver" msgstr "importovat klíče ze serveru klíčů" -#: g10/gpg.c:510 +#: g10/gpg.c:511 msgid "search for keys on a keyserver" msgstr "vyhledat klíče na serveru klíčů" -#: g10/gpg.c:512 +#: g10/gpg.c:513 msgid "update all keys from a keyserver" msgstr "aktualizovat všechny klíče ze serveru klíčů" -#: g10/gpg.c:520 +#: g10/gpg.c:521 msgid "import/merge keys" msgstr "importovat/sloučit klíče" -#: g10/gpg.c:523 +#: g10/gpg.c:524 msgid "print the card status" msgstr "vytisknout stav karty" -#: g10/gpg.c:524 +#: g10/gpg.c:525 msgid "change data on a card" msgstr "změnit data na kartě" -#: g10/gpg.c:526 +#: g10/gpg.c:527 msgid "change a card's PIN" msgstr "změnit PIN karty" -#: g10/gpg.c:538 +#: g10/gpg.c:539 msgid "update the trust database" msgstr "aktualizovat databázi důvěry" -#: g10/gpg.c:548 +#: g10/gpg.c:549 msgid "print message digests" msgstr "vypsat hash zprávy" -#: g10/gpg.c:552 sm/gpgsm.c:241 +#: g10/gpg.c:553 sm/gpgsm.c:241 msgid "run in server mode" msgstr "pracovat v režimu serveru" -#: g10/gpg.c:554 +#: g10/gpg.c:555 msgid "|VALUE|set the TOFU policy for a key" msgstr "|HODNOTA|nastavit TOFU politiku klíči" -#: g10/gpg.c:594 +#: g10/gpg.c:595 msgid "|NAME|use NAME as default secret key" msgstr "|NÁZEV|použít NÁZEV jako implicitní tajný klíč" -#: g10/gpg.c:596 sm/gpgsm.c:332 +#: g10/gpg.c:597 sm/gpgsm.c:332 msgid "|NAME|encrypt to user ID NAME as well" msgstr "|JMÉNO|šifrovat rovněž pro uživatele s ID JMÉNO" -#: g10/gpg.c:604 +#: g10/gpg.c:605 msgid "|SPEC|set up email aliases" msgstr "|SPEC|nastavit e-mailový alias" -#: g10/gpg.c:616 +#: g10/gpg.c:617 msgid "use strict OpenPGP behavior" msgstr "použít chování striktně podle OpenPGP" -#: g10/gpg.c:641 kbx/kbxutil.c:90 sm/gpgsm.c:412 tools/gpgconf.c:112 +#: g10/gpg.c:642 kbx/kbxutil.c:90 sm/gpgsm.c:412 tools/gpgconf.c:112 msgid "do not make any changes" msgstr "neprovádět žádné změny" -#: g10/gpg.c:642 +#: g10/gpg.c:643 msgid "prompt before overwriting" msgstr "vyžádat potvrzení před přepsáním" -#: g10/gpg.c:689 sm/gpgsm.c:304 +#: g10/gpg.c:690 sm/gpgsm.c:304 #, fuzzy #| msgid "Options controlling the security" msgid "Options controlling the input" msgstr "Volby ovlivňující bezpečnost" -#: g10/gpg.c:707 sm/gpgsm.c:314 +#: g10/gpg.c:708 sm/gpgsm.c:314 #, fuzzy #| msgid "Options controlling the diagnostic output" msgid "Options controlling the output" msgstr "Volby ovlivňující diagnostický výstup" -#: g10/gpg.c:709 sm/gpgsm.c:316 +#: g10/gpg.c:710 sm/gpgsm.c:316 msgid "create ascii armored output" msgstr "vytvořit výstup zapsaný v ASCII" -#: g10/gpg.c:713 g10/gpgv.c:82 sm/gpgsm.c:321 +#: g10/gpg.c:714 g10/gpgv.c:82 sm/gpgsm.c:321 msgid "|FILE|write output to FILE" msgstr "|SOUBOR|zapsat výstup do SOUBORU" -#: g10/gpg.c:726 +#: g10/gpg.c:727 msgid "use canonical text mode" msgstr "použít kanonický textový režim" -#: g10/gpg.c:743 +#: g10/gpg.c:744 msgid "|N|set compress level to N (0 disables)" msgstr "|N|nastavit úroveň komprese na N (0 – žádná)" -#: g10/gpg.c:750 sm/gpgsm.c:347 +#: g10/gpg.c:751 sm/gpgsm.c:347 #, fuzzy #| msgid "Options controlling the interactivity and enforcement" msgid "Options controlling key import and export" msgstr "Volby ovlivňující interaktivitu a vymáhání" -#: g10/gpg.c:753 +#: g10/gpg.c:754 msgid "|MECHANISMS|use MECHANISMS to locate keys by mail address" msgstr "|METODA|používat METODU pro dohledávání klíčů podle e-mailové adresy" -#: g10/gpg.c:756 +#: g10/gpg.c:757 msgid "import missing key from a signature" msgstr "importovat chybějící klíč z podpisu" -#: g10/gpg.c:761 +#: g10/gpg.c:762 msgid "include the public key in signatures" msgstr "zahrnovat veřejný klíč do podpisů" -#: g10/gpg.c:764 sm/gpgsm.c:350 +#: g10/gpg.c:765 sm/gpgsm.c:350 msgid "disable all access to the dirmngr" msgstr "zakázat veškerý přístup k dirmngr" -#: g10/gpg.c:776 sm/gpgsm.c:357 +#: g10/gpg.c:777 sm/gpgsm.c:357 #, fuzzy #| msgid "Options controlling the configuration" msgid "Options controlling key listings" msgstr "Volby ovlivňující nastavení" -#: g10/gpg.c:805 sm/gpgsm.c:324 +#: g10/gpg.c:806 sm/gpgsm.c:324 #, fuzzy #| msgid "list secret keys" msgid "Options to specify keys" msgstr "vypsat seznam tajných klíčů" -#: g10/gpg.c:807 sm/gpgsm.c:326 +#: g10/gpg.c:808 sm/gpgsm.c:326 msgid "|USER-ID|encrypt for USER-ID" msgstr "|ID_UŽIVATELE|šifrovat pro ID_UŽIVATELE" -#: g10/gpg.c:815 sm/gpgsm.c:328 +#: g10/gpg.c:816 sm/gpgsm.c:328 msgid "|USER-ID|use USER-ID to sign or decrypt" msgstr "|ID_UŽIVATELE|použít toto ID_UŽIVATELE pro podepsání nebo dešifrování" -#: g10/gpg.c:866 sm/gpgsm.c:396 +#: g10/gpg.c:867 sm/gpgsm.c:396 msgid "Options for unattended use" msgstr "" -#: g10/gpg.c:885 sm/gpgsm.c:408 dirmngr/dirmngr.c:294 +#: g10/gpg.c:886 sm/gpgsm.c:408 dirmngr/dirmngr.c:294 msgid "Other options" msgstr "" -#: g10/gpg.c:953 sm/gpgsm.c:440 +#: g10/gpg.c:955 sm/gpgsm.c:440 msgid "" "@\n" "(See the man page for a complete listing of all commands and options)\n" @@ -2927,7 +2933,7 @@ "@\n" "(Pro úplný seznam všech příkazů a voleb nahlédněte do manuálové stránky.)\n" -#: g10/gpg.c:956 +#: g10/gpg.c:958 msgid "" "@\n" "Examples:\n" @@ -2947,11 +2953,11 @@ " --list-keys [jména] ukázat klíče\n" " --fingerprint [jména] ukázat otisky\n" -#: g10/gpg.c:1130 +#: g10/gpg.c:1139 msgid "Usage: @GPG@ [options] [files] (-h for help)" msgstr "Použití: @GPG@ [možnosti] [soubory] (-h pro nápovědu)" -#: g10/gpg.c:1133 +#: g10/gpg.c:1142 msgid "" "Syntax: @GPG@ [options] [files]\n" "Sign, check, encrypt or decrypt\n" @@ -2961,7 +2967,7 @@ "Podepisuje, ověřuje, šifruje nebo dešifruje.\n" "Výchozí operace závisí na vstupních datech.\n" -#: g10/gpg.c:1144 sm/gpgsm.c:624 +#: g10/gpg.c:1153 sm/gpgsm.c:624 msgid "" "\n" "Supported algorithms:\n" @@ -2969,79 +2975,79 @@ "\n" "Podporované algoritmy:\n" -#: g10/gpg.c:1147 +#: g10/gpg.c:1156 msgid "Pubkey: " msgstr "Veřejný klíč: " -#: g10/gpg.c:1154 g10/keyedit.c:3338 +#: g10/gpg.c:1163 g10/keyedit.c:3338 msgid "Cipher: " msgstr "Šifra: " -#: g10/gpg.c:1161 +#: g10/gpg.c:1170 msgid "Hash: " msgstr "Hash: " -#: g10/gpg.c:1168 g10/keyedit.c:3404 +#: g10/gpg.c:1177 g10/keyedit.c:3404 msgid "Compression: " msgstr "Komprese: " -#: g10/gpg.c:1241 sm/gpgsm.c:698 +#: g10/gpg.c:1250 sm/gpgsm.c:698 #, c-format msgid "usage: %s [options] %s\n" msgstr "použití: %s [přepínače] %s\n" -#: g10/gpg.c:1436 sm/gpgsm.c:791 +#: g10/gpg.c:1445 sm/gpgsm.c:791 #, c-format msgid "conflicting commands\n" msgstr "konfliktní příkazy\n" -#: g10/gpg.c:1454 +#: g10/gpg.c:1463 #, c-format msgid "no = sign found in group definition '%s'\n" msgstr "no = podpis nalezen v definici skupiny „%s“\n" -#: g10/gpg.c:1652 +#: g10/gpg.c:1661 #, c-format msgid "WARNING: unsafe ownership on homedir '%s'\n" msgstr "" "VAROVÁNÍ: vlastnictví domovského adresáře „%s“ není nastaveno bezpečně\n" -#: g10/gpg.c:1655 +#: g10/gpg.c:1664 #, c-format msgid "WARNING: unsafe ownership on configuration file '%s'\n" msgstr "" "VAROVÁNÍ: vlastnictví konfiguračního souboru „%s“ není nastaveno bezpečně\n" -#: g10/gpg.c:1658 +#: g10/gpg.c:1667 #, c-format msgid "WARNING: unsafe ownership on extension '%s'\n" msgstr "" "VAROVÁNÍ: vlastnictví rozšiřujícího modulu „%s“ není nastaveno bezpečně\n" -#: g10/gpg.c:1664 +#: g10/gpg.c:1673 #, c-format msgid "WARNING: unsafe permissions on homedir '%s'\n" msgstr "VAROVÁNÍ: přístupová práva pro domovský adresář „%s“ nejsou bezpečná\n" -#: g10/gpg.c:1667 +#: g10/gpg.c:1676 #, c-format msgid "WARNING: unsafe permissions on configuration file '%s'\n" msgstr "" "VAROVÁNÍ: přístupová práva pro konfigurační soubor „%s“ nejsou bezpečná\n" -#: g10/gpg.c:1670 +#: g10/gpg.c:1679 #, c-format msgid "WARNING: unsafe permissions on extension '%s'\n" msgstr "VAROVÁNÍ: přístupová práva rozšiřujícímu modulu „%s“ nejsou bezpečná\n" -#: g10/gpg.c:1676 +#: g10/gpg.c:1685 #, c-format msgid "WARNING: unsafe enclosing directory ownership on homedir '%s'\n" msgstr "" "VAROVÁNÍ: vlastnictví adresáře s domovským adresářem „%s“ není nastaveno " "nebezpečně\n" -#: g10/gpg.c:1679 +#: g10/gpg.c:1688 #, c-format msgid "" "WARNING: unsafe enclosing directory ownership on configuration file '%s'\n" @@ -3049,21 +3055,21 @@ "VAROVÁNÍ: vlastnictví adresáře „%s“ s konfiguračním souborem není nastaveno " "nebezpečně\n" -#: g10/gpg.c:1682 +#: g10/gpg.c:1691 #, c-format msgid "WARNING: unsafe enclosing directory ownership on extension '%s'\n" msgstr "" "VAROVÁNÍ: vlastnictví adresáře „%s“ s rozšiřujícím modulem není nastaveno " "nebezpečně\n" -#: g10/gpg.c:1688 +#: g10/gpg.c:1697 #, c-format msgid "WARNING: unsafe enclosing directory permissions on homedir '%s'\n" msgstr "" "VAROVÁNÍ: přístupová práva k adresáři „%s“ s domovským adresářem nejsou " "nastavena bezpečně\n" -#: g10/gpg.c:1691 +#: g10/gpg.c:1700 #, c-format msgid "" "WARNING: unsafe enclosing directory permissions on configuration file '%s'\n" @@ -3071,7 +3077,7 @@ "VAROVÁNÍ: přístupová práva k adresáři „%s“ s konfiguračním souborem nejsou " "nastavena bezpečně\n" -#: g10/gpg.c:1694 +#: g10/gpg.c:1703 #, c-format msgid "WARNING: unsafe enclosing directory permissions on extension '%s'\n" msgstr "" @@ -3079,449 +3085,449 @@ "nastavena bezpečně\n" # c-format -#: g10/gpg.c:1910 +#: g10/gpg.c:1919 #, c-format msgid "unknown configuration item '%s'\n" msgstr "neznámá konfigurační položka „%s“\n" -#: g10/gpg.c:2009 +#: g10/gpg.c:2018 msgid "display photo IDs during key listings" msgstr "zobrazovat ID fotografií během výpisu klíčů" -#: g10/gpg.c:2011 +#: g10/gpg.c:2020 msgid "show key usage information during key listings" msgstr "ukazovat údaje o účelu klíče při výpisu klíčů" -#: g10/gpg.c:2013 +#: g10/gpg.c:2022 msgid "show policy URLs during signature listings" msgstr "ukazovat URL politik během výpisu podpisů" -#: g10/gpg.c:2015 +#: g10/gpg.c:2024 msgid "show all notations during signature listings" msgstr "ukazovat všechny poznámky během výpisu podpisů" -#: g10/gpg.c:2017 +#: g10/gpg.c:2026 msgid "show IETF standard notations during signature listings" msgstr "ukazovat poznámky IETF standardu během vypisování podpisů" -#: g10/gpg.c:2021 +#: g10/gpg.c:2030 msgid "show user-supplied notations during signature listings" msgstr "ukazovat uživatelské poznámky během výpisu podpisů" -#: g10/gpg.c:2023 +#: g10/gpg.c:2032 msgid "show preferred keyserver URLs during signature listings" msgstr "ukazovat URL upřednostňovaného serveru klíčů při výpisu podpisů" -#: g10/gpg.c:2025 +#: g10/gpg.c:2034 msgid "show user ID validity during key listings" msgstr "ukazovat platnost ID uživatelů při výpisu klíčů" -#: g10/gpg.c:2027 +#: g10/gpg.c:2036 msgid "show revoked and expired user IDs in key listings" msgstr "ukazovat odvolané a prošlé ID uživatelů při výpisu klíčů" -#: g10/gpg.c:2029 +#: g10/gpg.c:2038 msgid "show revoked and expired subkeys in key listings" msgstr "ukazovat odvolané a prošlé podklíče při výpisu klíčů" -#: g10/gpg.c:2031 +#: g10/gpg.c:2040 msgid "show the keyring name in key listings" msgstr "ukazovat název souboru s klíči při výpisu klíčů" -#: g10/gpg.c:2033 +#: g10/gpg.c:2042 msgid "show expiration dates during signature listings" msgstr "ukazovat data expirace během výpisu podpisů" -#: g10/gpg.c:2148 +#: g10/gpg.c:2157 #, c-format msgid "unknown TOFU policy '%s'\n" msgstr "neznámá TOFU politika „%s“\n" -#: g10/gpg.c:2150 +#: g10/gpg.c:2159 #, c-format msgid "(use \"help\" to list choices)\n" msgstr "(možnosti lze vypsat příkazem „help“)\n" -#: g10/gpg.c:2240 g10/keyedit.c:1719 +#: g10/gpg.c:2249 g10/keyedit.c:1719 #, c-format msgid "This command is not allowed while in %s mode.\n" msgstr "Tento příkaz není v režimu %s dovolen.\n" -#: g10/gpg.c:2878 g10/gpg.c:3718 g10/gpg.c:3730 +#: g10/gpg.c:2896 g10/gpg.c:3736 g10/gpg.c:3748 #, c-format msgid "Note: %s is not for normal use!\n" msgstr "Poznámka: %s není pro normální použití!\n" -#: g10/gpg.c:3053 g10/gpg.c:3065 +#: g10/gpg.c:3071 g10/gpg.c:3083 #, c-format msgid "'%s' is not a valid signature expiration\n" msgstr "„%s“ není platná doba expirace podpisu\n" -#: g10/gpg.c:3087 +#: g10/gpg.c:3105 #, c-format msgid "\"%s\" is not a proper mail address\n" msgstr "„%s“ není správná e-mailová adresa\n" -#: g10/gpg.c:3119 sm/gpgsm.c:1121 +#: g10/gpg.c:3137 sm/gpgsm.c:1121 #, c-format msgid "invalid pinentry mode '%s'\n" msgstr "neplatný režim pinentry „%s“\n" -#: g10/gpg.c:3125 sm/gpgsm.c:1127 +#: g10/gpg.c:3143 sm/gpgsm.c:1127 #, c-format msgid "invalid request origin '%s'\n" msgstr "neplatný původ požadavku „%s“\n" -#: g10/gpg.c:3179 +#: g10/gpg.c:3197 #, c-format msgid "'%s' is not a valid character set\n" msgstr "„%s“ není platná znaková sada\n" -#: g10/gpg.c:3201 g10/gpg.c:3415 g10/keyedit.c:5338 +#: g10/gpg.c:3219 g10/gpg.c:3433 g10/keyedit.c:5338 #, c-format msgid "could not parse keyserver URL\n" msgstr "nelze zpracovat URL serveru klíčů\n" -#: g10/gpg.c:3219 +#: g10/gpg.c:3237 #, c-format msgid "%s:%d: invalid keyserver options\n" msgstr "%s:%d: neplatný parametr pro server klíčů\n" -#: g10/gpg.c:3222 +#: g10/gpg.c:3240 #, c-format msgid "invalid keyserver options\n" msgstr "neplatný parametr pro server klíčů\n" -#: g10/gpg.c:3229 +#: g10/gpg.c:3247 #, c-format msgid "%s:%d: invalid import options\n" msgstr "%s:%d: neplatný parametr pro import\n" -#: g10/gpg.c:3232 +#: g10/gpg.c:3250 #, c-format msgid "invalid import options\n" msgstr "neplatný parametr pro import\n" -#: g10/gpg.c:3238 g10/gpg.c:3253 +#: g10/gpg.c:3256 g10/gpg.c:3271 #, c-format msgid "invalid filter option: %s\n" msgstr "neplatná volba filtru: %s\n" -#: g10/gpg.c:3244 +#: g10/gpg.c:3262 #, c-format msgid "%s:%d: invalid export options\n" msgstr "%s:%d: neplatný parametr pro export\n" -#: g10/gpg.c:3247 +#: g10/gpg.c:3265 #, c-format msgid "invalid export options\n" msgstr "neplatný parametr pro export\n" -#: g10/gpg.c:3259 +#: g10/gpg.c:3277 #, c-format msgid "%s:%d: invalid list options\n" msgstr "%s:%d: neplatný parametr pro výpis\n" -#: g10/gpg.c:3262 +#: g10/gpg.c:3280 #, c-format msgid "invalid list options\n" msgstr "neplatný parametr pro výpis\n" -#: g10/gpg.c:3270 +#: g10/gpg.c:3288 msgid "display photo IDs during signature verification" msgstr "zobrazovat ID fotografií při ověřování podpisu" -#: g10/gpg.c:3272 +#: g10/gpg.c:3290 msgid "show policy URLs during signature verification" msgstr "ukazovat URL politik při ověřování podpisu" -#: g10/gpg.c:3274 +#: g10/gpg.c:3292 msgid "show all notations during signature verification" msgstr "ukazovat všechny poznámky při ověřování podpisu" -#: g10/gpg.c:3276 +#: g10/gpg.c:3294 msgid "show IETF standard notations during signature verification" msgstr "ukazovat poznámky IETF standardu při ověřování podpisu" -#: g10/gpg.c:3280 +#: g10/gpg.c:3298 msgid "show user-supplied notations during signature verification" msgstr "ukazovat uživatelské poznámky při ověřování podpisu" -#: g10/gpg.c:3282 +#: g10/gpg.c:3300 msgid "show preferred keyserver URLs during signature verification" msgstr "ukazovat URL upřednostňovaného serveru klíčů při ověřování podpisu" -#: g10/gpg.c:3284 +#: g10/gpg.c:3302 msgid "show user ID validity during signature verification" msgstr "ukazovat platnost ID uživatele při ověřování podpisu" -#: g10/gpg.c:3286 +#: g10/gpg.c:3304 msgid "show revoked and expired user IDs in signature verification" msgstr "ukazovat odvolané a prošlé ID uživatelů při ověřování podpisů" -#: g10/gpg.c:3288 +#: g10/gpg.c:3306 msgid "show only the primary user ID in signature verification" msgstr "ukazovat jen primární ID uživatele při ověřování podpisu" -#: g10/gpg.c:3290 +#: g10/gpg.c:3308 msgid "validate signatures with PKA data" msgstr "ověřovat podpisy s daty PKA" -#: g10/gpg.c:3292 +#: g10/gpg.c:3310 msgid "elevate the trust of signatures with valid PKA data" msgstr "vyzvednout důvěru podpisů s platnými daty PKA" -#: g10/gpg.c:3299 +#: g10/gpg.c:3317 #, c-format msgid "%s:%d: invalid verify options\n" msgstr "%s:%d: neplatný parametr pro ověření\n" -#: g10/gpg.c:3302 +#: g10/gpg.c:3320 #, c-format msgid "invalid verify options\n" msgstr "neplatný parametr pro ověření\n" -#: g10/gpg.c:3309 +#: g10/gpg.c:3327 #, c-format msgid "unable to set exec-path to %s\n" msgstr "nelze nastavit exec-path na %s\n" -#: g10/gpg.c:3513 +#: g10/gpg.c:3531 #, c-format msgid "%s:%d: invalid auto-key-locate list\n" msgstr "%s:%d: neplatný seznam auto-key-locate\n" -#: g10/gpg.c:3516 +#: g10/gpg.c:3534 #, c-format msgid "invalid auto-key-locate list\n" msgstr "neplatný seznam auto-key-locate\n" -#: g10/gpg.c:3700 sm/gpgsm.c:1492 +#: g10/gpg.c:3718 sm/gpgsm.c:1492 #, c-format msgid "WARNING: program may create a core file!\n" msgstr "VAROVÁNÍ: program může vytvořit soubor core!\n" -#: g10/gpg.c:3711 +#: g10/gpg.c:3729 #, c-format msgid "WARNING: %s overrides %s\n" msgstr "VAROVÁNÍ: %s přepíše %s\n" -#: g10/gpg.c:3720 +#: g10/gpg.c:3738 #, c-format msgid "%s not allowed with %s!\n" msgstr "Není dovoleno používat %s s %s!\n" -#: g10/gpg.c:3723 +#: g10/gpg.c:3741 #, c-format msgid "%s makes no sense with %s!\n" msgstr "%s nedává s %s smysl!\n" -#: g10/gpg.c:3738 sm/gpgsm.c:1509 dirmngr/dirmngr.c:1205 +#: g10/gpg.c:3756 sm/gpgsm.c:1509 dirmngr/dirmngr.c:1205 #, c-format msgid "WARNING: running with faked system time: " msgstr "VAROVÁNÍ: pracuji s podvrženým systémovým časem: " -#: g10/gpg.c:3759 +#: g10/gpg.c:3777 #, c-format msgid "will not run with insecure memory due to %s\n" msgstr "nelze spustit s nebezpečnou pamětí vzhledem k %s\n" -#: g10/gpg.c:3804 g10/gpg.c:3828 sm/gpgsm.c:1579 +#: g10/gpg.c:3824 g10/gpg.c:3848 sm/gpgsm.c:1579 #, c-format msgid "selected cipher algorithm is invalid\n" msgstr "vybraný šifrovací algoritmus je neplatný\n" -#: g10/gpg.c:3816 +#: g10/gpg.c:3836 #, c-format msgid "selected compression algorithm is invalid\n" msgstr "vybraný kompresní algoritmus je neplatný\n" -#: g10/gpg.c:3822 +#: g10/gpg.c:3842 #, c-format msgid "selected certification digest algorithm is invalid\n" msgstr "vybraný hashovací algoritmus je neplatný\n" -#: g10/gpg.c:3837 +#: g10/gpg.c:3857 #, c-format msgid "completes-needed must be greater than 0\n" msgstr "položka completes-needed musí být větší než 0\n" -#: g10/gpg.c:3839 +#: g10/gpg.c:3859 #, c-format msgid "marginals-needed must be greater than 1\n" msgstr "položka marginals-needed musí být větší než 1\n" -#: g10/gpg.c:3841 +#: g10/gpg.c:3861 #, c-format msgid "max-cert-depth must be in the range from 1 to 255\n" msgstr "položka max-cert-depth musí být v rozmezí od 1 do 255\n" -#: g10/gpg.c:3843 +#: g10/gpg.c:3863 #, c-format msgid "invalid default-cert-level; must be 0, 1, 2, or 3\n" msgstr "" "neplatná implicitní úroveň certifikace (default-cert-level); musí být 0, 1, " "2 nebo 3\n" -#: g10/gpg.c:3845 +#: g10/gpg.c:3865 #, c-format msgid "invalid min-cert-level; must be 1, 2, or 3\n" msgstr "" "neplatná minimální úroveň certifikace (min-cert-level); musí být 0, 1, 2 " "nebo 3\n" -#: g10/gpg.c:3849 +#: g10/gpg.c:3869 #, c-format msgid "Note: simple S2K mode (0) is strongly discouraged\n" msgstr "Poznámka: jednoduchý režim S2K (0) je důrazně nedoporučován\n" -#: g10/gpg.c:3853 +#: g10/gpg.c:3873 #, c-format msgid "invalid S2K mode; must be 0, 1 or 3\n" msgstr "neplatný režim S2K; musí být 0, 1 nebo 3\n" -#: g10/gpg.c:3860 +#: g10/gpg.c:3880 #, c-format msgid "invalid default preferences\n" msgstr "neplatné implicitní předvolby\n" -#: g10/gpg.c:3864 +#: g10/gpg.c:3884 #, c-format msgid "invalid personal cipher preferences\n" msgstr "neplatné uživatelské předvolby pro šifrování\n" -#: g10/gpg.c:3868 +#: g10/gpg.c:3888 #, c-format msgid "invalid personal digest preferences\n" msgstr "neplatné uživatelské předvolby pro hashování\n" -#: g10/gpg.c:3872 +#: g10/gpg.c:3892 #, c-format msgid "invalid personal compress preferences\n" msgstr "neplatné uživatelské předvolby pro komprimaci\n" -#: g10/gpg.c:3908 +#: g10/gpg.c:3928 #, c-format msgid "%s does not yet work with %s\n" msgstr "%s dosud není funkční s %s\n" -#: g10/gpg.c:3971 +#: g10/gpg.c:3991 #, c-format msgid "compression algorithm '%s' may not be used in %s mode\n" msgstr "kompresní algoritmus „%s“ se nesmí používat v režimu %s\n" -#: g10/gpg.c:4115 +#: g10/gpg.c:4135 #, c-format msgid "failed to initialize the TrustDB: %s\n" msgstr "nemohu inicializovat databázi důvěry: %s\n" -#: g10/gpg.c:4127 +#: g10/gpg.c:4147 #, c-format msgid "WARNING: recipients (-r) given without using public key encryption\n" msgstr "" "VAROVÁNÍ: specifikován adresát (-r) bez použití šifrování s veřejným klíčem\n" -#: g10/gpg.c:4199 +#: g10/gpg.c:4219 #, c-format msgid "symmetric encryption of '%s' failed: %s\n" msgstr "symetrické šifrování „%s“ se nepovedlo: %s\n" -#: g10/gpg.c:4228 +#: g10/gpg.c:4248 #, c-format msgid "you cannot use --symmetric --encrypt with --s2k-mode 0\n" msgstr "nelze použít --symmetric --encrypt s příkazem --s2k-mode 0\n" -#: g10/gpg.c:4231 +#: g10/gpg.c:4251 #, c-format msgid "you cannot use --symmetric --encrypt in %s mode\n" msgstr "nelze použít --symmetric --encrypt v režimu %s\n" -#: g10/gpg.c:4289 +#: g10/gpg.c:4309 #, c-format msgid "you cannot use --symmetric --sign --encrypt with --s2k-mode 0\n" msgstr "nelze použít --symmetric --sign --encrypt s příkazem --s2k-mode 0\n" -#: g10/gpg.c:4292 +#: g10/gpg.c:4312 #, c-format msgid "you cannot use --symmetric --sign --encrypt in %s mode\n" msgstr "nelze použít --symmetric --sign --encrypt v režimu %s\n" -#: g10/gpg.c:4692 g10/keyserver.c:1648 +#: g10/gpg.c:4712 g10/keyserver.c:1648 #, c-format msgid "keyserver send failed: %s\n" msgstr "odeslání na keyserver se nezdařilo: %s\n" -#: g10/gpg.c:4697 +#: g10/gpg.c:4717 #, c-format msgid "keyserver receive failed: %s\n" msgstr "získání dat z serveru klíčů se nezdařilo: %s\n" -#: g10/gpg.c:4703 +#: g10/gpg.c:4723 #, c-format msgid "key export failed: %s\n" msgstr "export klíče se nepodařil: %s\n" -#: g10/gpg.c:4716 +#: g10/gpg.c:4736 #, c-format msgid "export as ssh key failed: %s\n" msgstr "export jako SSH klíč se nepodařil: %s\n" -#: g10/gpg.c:4728 +#: g10/gpg.c:4748 #, c-format msgid "keyserver search failed: %s\n" msgstr "hledání na serveru klíčů se nezdařilo: %s\n" -#: g10/gpg.c:4741 +#: g10/gpg.c:4761 #, c-format msgid "keyserver refresh failed: %s\n" msgstr "obnovení dat na serveru klíčů se nezdařilo: %s\n" -#: g10/gpg.c:4810 +#: g10/gpg.c:4830 #, c-format msgid "dearmoring failed: %s\n" msgstr "dekódování z ASCII formátu selhalo: %s\n" -#: g10/gpg.c:4821 +#: g10/gpg.c:4841 #, c-format msgid "enarmoring failed: %s\n" msgstr "kódování do ASCII formátu selhalo: %s\n" -#: g10/gpg.c:4913 +#: g10/gpg.c:4933 #, c-format msgid "invalid hash algorithm '%s'\n" msgstr "neplatný hashovací algoritmus „%s“\n" -#: g10/gpg.c:5065 g10/tofu.c:2153 +#: g10/gpg.c:5085 g10/tofu.c:2153 #, c-format msgid "error parsing key specification '%s': %s\n" msgstr "chyba při rozboru názvu klíče „%s“: %s\n" -#: g10/gpg.c:5078 +#: g10/gpg.c:5098 #, c-format msgid "'%s' does not appear to be a valid key ID, fingerprint or keygrip\n" msgstr "„%s“ nevypadá jako platné ID klíče, otisk klíče nebo keygrip\n" -#: g10/gpg.c:5134 +#: g10/gpg.c:5154 #, c-format msgid "WARNING: no command supplied. Trying to guess what you mean ...\n" msgstr "POZOR: nezadán žádný příkaz. Váš záměr bude odhadnut…\n" -#: g10/gpg.c:5145 +#: g10/gpg.c:5165 #, c-format msgid "Go ahead and type your message ...\n" msgstr "Začněte psát svou zprávu…\n" -#: g10/gpg.c:5490 +#: g10/gpg.c:5510 #, c-format msgid "the given certification policy URL is invalid\n" msgstr "zadané URL pro certifikační politiku je neplatné\n" -#: g10/gpg.c:5492 +#: g10/gpg.c:5512 #, c-format msgid "the given signature policy URL is invalid\n" msgstr "zadané URL pro podepisovací politiku je neplatné\n" -#: g10/gpg.c:5525 +#: g10/gpg.c:5545 #, c-format msgid "the given preferred keyserver URL is invalid\n" msgstr "zadané URL preferovaného serveru klíčů je neplatné\n" @@ -3563,145 +3569,145 @@ msgid "No help available for '%s'" msgstr "Pro „%s“ není dostupná žádná nápověda" -#: g10/import.c:169 +#: g10/import.c:170 msgid "import signatures that are marked as local-only" msgstr "importovat podpisy, které jsou označeny jen jako místní" -#: g10/import.c:172 +#: g10/import.c:173 msgid "repair damage from the pks keyserver during import" msgstr "opravit poškození vzniklá při importu z PKS serveru" -#: g10/import.c:175 +#: g10/import.c:176 msgid "do not clear the ownertrust values during import" msgstr "nemazat údaje o důvěře během importu" -#: g10/import.c:178 +#: g10/import.c:179 msgid "do not update the trustdb after import" msgstr "neaktualizovat databázi důvěry po importu" -#: g10/import.c:181 +#: g10/import.c:182 msgid "show key during import" msgstr "při importu ukázat klíč" -#: g10/import.c:184 +#: g10/import.c:185 msgid "only accept updates to existing keys" msgstr "přijímat aktualizace pouze u existujících klíčů" -#: g10/import.c:187 +#: g10/import.c:188 msgid "remove unusable parts from key after import" msgstr "odstranit z klíče po importu nepoužitelné části" -#: g10/import.c:190 +#: g10/import.c:191 msgid "remove as much as possible from key after import" msgstr "odstranit po importu z klíče vše, co lze" -#: g10/import.c:193 +#: g10/import.c:194 msgid "ignore key-signatures which are not self-signatures" msgstr "ignorovat podpisy klíče, které nepodepisují samy sebe" -#: g10/import.c:196 +#: g10/import.c:197 msgid "run import filters and export key immediately" msgstr "spustit importní filtry a exportovat klíč okamžitě" -#: g10/import.c:199 +#: g10/import.c:200 msgid "assume the GnuPG key backup format" msgstr "předpokládat vstup ve formátu zálohy klíčů GnuPG" -#: g10/import.c:203 +#: g10/import.c:204 msgid "repair keys on import" msgstr "při importu opravit klíče" -#: g10/import.c:392 g10/import.c:711 +#: g10/import.c:393 g10/import.c:712 #, c-format msgid "skipping block of type %d\n" msgstr "blok typu %d byl přeskočen\n" -#: g10/import.c:728 +#: g10/import.c:729 #, c-format msgid "%lu keys processed so far\n" msgstr "%lu klíče byly doposud zpracovány\n" -#: g10/import.c:814 +#: g10/import.c:815 #, c-format msgid "Total number processed: %lu\n" msgstr "Celkový počet zpracovaných klíčů: %lu\n" -#: g10/import.c:817 +#: g10/import.c:818 #, c-format msgid " skipped PGP-2 keys: %lu\n" msgstr " přeskočeny klíče PGP2: %lu\n" -#: g10/import.c:819 +#: g10/import.c:820 #, c-format msgid " skipped new keys: %lu\n" msgstr " přeskočeny nové klíče: %lu\n" -#: g10/import.c:822 +#: g10/import.c:823 #, c-format msgid " w/o user IDs: %lu\n" msgstr " bez ID uživatele: %lu\n" -#: g10/import.c:825 sm/import.c:130 +#: g10/import.c:826 sm/import.c:130 #, c-format msgid " imported: %lu" msgstr " importováno: %lu" -#: g10/import.c:829 sm/import.c:134 +#: g10/import.c:830 sm/import.c:134 #, c-format msgid " unchanged: %lu\n" msgstr " beze změn: %lu\n" -#: g10/import.c:831 +#: g10/import.c:832 #, c-format msgid " new user IDs: %lu\n" msgstr " nová ID uživatelů: %lu\n" -#: g10/import.c:833 +#: g10/import.c:834 #, c-format msgid " new subkeys: %lu\n" msgstr " nové podklíče: %lu\n" -#: g10/import.c:835 +#: g10/import.c:836 #, c-format msgid " new signatures: %lu\n" msgstr " nové podpisy: %lu\n" -#: g10/import.c:837 +#: g10/import.c:838 #, c-format msgid " new key revocations: %lu\n" msgstr " nové revokace klíčů: %lu\n" -#: g10/import.c:839 sm/import.c:136 +#: g10/import.c:840 sm/import.c:136 #, c-format msgid " secret keys read: %lu\n" msgstr " přečtené tajné klíče: %lu\n" -#: g10/import.c:841 sm/import.c:138 +#: g10/import.c:842 sm/import.c:138 #, c-format msgid " secret keys imported: %lu\n" msgstr " importované tajné klíče: %lu\n" -#: g10/import.c:843 sm/import.c:140 +#: g10/import.c:844 sm/import.c:140 #, c-format msgid " secret keys unchanged: %lu\n" msgstr " tajné klíče nezměněny: %lu\n" -#: g10/import.c:845 sm/import.c:142 +#: g10/import.c:846 sm/import.c:142 #, c-format msgid " not imported: %lu\n" msgstr " neimportováno: %lu\n" -#: g10/import.c:847 +#: g10/import.c:848 #, c-format msgid " signatures cleaned: %lu\n" msgstr " odstraněné podpisy: %lu\n" -#: g10/import.c:849 +#: g10/import.c:850 #, c-format msgid " user IDs cleaned: %lu\n" msgstr " odstraněné uživatelské ID: %lu\n" -#: g10/import.c:1276 +#: g10/import.c:1277 #, c-format msgid "" "WARNING: key %s contains preferences for unavailable\n" @@ -3710,168 +3716,168 @@ "VAROVÁNÍ: klíč %s obsahuje předvolby pro nedostupné\n" "algoritmy na těchto ID uživatelů:\n" -#: g10/import.c:1318 +#: g10/import.c:1319 #, c-format msgid " \"%s\": preference for cipher algorithm %s\n" msgstr " \"%s\": předvolby pro šifrovací algoritmus %s\n" -#: g10/import.c:1333 +#: g10/import.c:1334 #, c-format msgid " \"%s\": preference for digest algorithm %s\n" msgstr " \"%s\": předvolby pro podepisovací algoritmus %s\n" -#: g10/import.c:1345 +#: g10/import.c:1346 #, c-format msgid " \"%s\": preference for compression algorithm %s\n" msgstr " \"%s\": předvolby pro komprimační algoritmus %s\n" -#: g10/import.c:1358 +#: g10/import.c:1359 #, c-format msgid "it is strongly suggested that you update your preferences and\n" msgstr "velmi doporučujeme aktualizaci nastavení vašich preferencí a\n" -#: g10/import.c:1360 +#: g10/import.c:1361 #, c-format msgid "re-distribute this key to avoid potential algorithm mismatch problems\n" msgstr "" "distribuci tohoto klíče aby jste předešel problémům s neshodou algoritmů\n" -#: g10/import.c:1385 +#: g10/import.c:1386 #, c-format msgid "you can update your preferences with: gpg --edit-key %s updpref save\n" msgstr "nelze aktualizovat předvolby s: gpg --edit-key %s updpref save\n" -#: g10/import.c:1899 g10/import.c:3013 +#: g10/import.c:1902 g10/import.c:3028 #, c-format msgid "key %s: no user ID\n" msgstr "klíč %s: chybí identifikátor uživatele\n" -#: g10/import.c:1905 +#: g10/import.c:1908 #, c-format msgid "key %s: %s\n" msgstr "klíč %s: %s\n" -#: g10/import.c:1906 g10/import.c:2985 +#: g10/import.c:1909 g10/import.c:3000 msgid "rejected by import screener" msgstr "zamítnut kontrolou při importu" -#: g10/import.c:1950 +#: g10/import.c:1953 #, c-format msgid "key %s: PKS subkey corruption repaired\n" msgstr "klíč %s: poškození PKS podklíče opraveno\n" # c-format -#: g10/import.c:1971 +#: g10/import.c:1974 #, c-format msgid "key %s: accepted non self-signed user ID \"%s\"\n" msgstr "klíč %s: přijat id uživatele \"%s\",který není podepsán jím samým\n" -#: g10/import.c:1981 g10/import.c:2012 +#: g10/import.c:1985 g10/import.c:2016 #, c-format msgid "key %s: no valid user IDs\n" msgstr "klíč %s: chybí platný identifikátor uživatele\n" -#: g10/import.c:1983 +#: g10/import.c:1987 #, c-format msgid "this may be caused by a missing self-signature\n" msgstr "může to být způsobeno chybějícím podpisem klíče jím samým\n" -#: g10/import.c:2062 g10/import.c:3399 +#: g10/import.c:2066 g10/import.c:3415 #, c-format msgid "key %s: public key not found: %s\n" msgstr "klíč %s: veřejný klíč nenalezen: %s\n" -#: g10/import.c:2068 +#: g10/import.c:2072 #, c-format msgid "key %s: new key - skipped\n" msgstr "klíč %s: nový klíč - přeskočen\n" -#: g10/import.c:2080 +#: g10/import.c:2084 #, c-format msgid "no writable keyring found: %s\n" msgstr "nenalezen zapisovatelný soubor klíčů (keyring): %s\n" -#: g10/import.c:2112 g10/import.c:2214 g10/import.c:3476 +#: g10/import.c:2116 g10/import.c:2218 g10/import.c:3492 #, c-format msgid "error writing keyring '%s': %s\n" msgstr "chyba při zápisu souboru klíčů (keyring) „%s“: %s\n" -#: g10/import.c:2135 +#: g10/import.c:2139 #, c-format msgid "key %s: public key \"%s\" imported\n" msgstr "klíč %s: veřejný klíč „%s“ importován\n" -#: g10/import.c:2162 +#: g10/import.c:2166 #, c-format msgid "key %s: doesn't match our copy\n" msgstr "klíč %s: neodpovídá naší kopii\n" -#: g10/import.c:2230 +#: g10/import.c:2234 #, c-format msgid "key %s: \"%s\" 1 new user ID\n" msgstr "klíč %s: „%s“ 1 nový identifikátor uživatele\n" -#: g10/import.c:2233 +#: g10/import.c:2237 #, c-format msgid "key %s: \"%s\" %d new user IDs\n" msgstr "klíč %s: „%s“ %d nových identifikátorů uživatele\n" -#: g10/import.c:2236 +#: g10/import.c:2240 #, c-format msgid "key %s: \"%s\" 1 new signature\n" msgstr "klíč %s: „%s“ 1 nový podpis\n" -#: g10/import.c:2239 +#: g10/import.c:2243 #, c-format msgid "key %s: \"%s\" %d new signatures\n" msgstr "klíč %s: „%s“ %d nových podpisů\n" -#: g10/import.c:2242 +#: g10/import.c:2246 #, c-format msgid "key %s: \"%s\" 1 new subkey\n" msgstr "klíč %s: „%s“ 1 nový podklíč\n" -#: g10/import.c:2245 +#: g10/import.c:2249 #, c-format msgid "key %s: \"%s\" %d new subkeys\n" msgstr "klíč %s: „%s“ %d nových podklíčů\n" -#: g10/import.c:2248 +#: g10/import.c:2252 #, c-format msgid "key %s: \"%s\" %d signature cleaned\n" msgstr "klíč %s: „%s“ %d podpisů odstraněno\n" -#: g10/import.c:2251 +#: g10/import.c:2255 #, c-format msgid "key %s: \"%s\" %d signatures cleaned\n" msgstr "klíč %s: „%s“ %d podpisů odstraněno\n" -#: g10/import.c:2254 +#: g10/import.c:2258 #, c-format msgid "key %s: \"%s\" %d user ID cleaned\n" msgstr "klíč %s: „%s“ %d ID uživatele odstraněno\n" -#: g10/import.c:2257 +#: g10/import.c:2261 #, c-format msgid "key %s: \"%s\" %d user IDs cleaned\n" msgstr "klíč %s: „%s“ %d ID uživatele odstraněno\n" -#: g10/import.c:2293 +#: g10/import.c:2297 #, c-format msgid "key %s: \"%s\" not changed\n" msgstr "klíč %s: „%s“ beze změn\n" -#: g10/import.c:2652 g10/import.c:2847 +#: g10/import.c:2667 g10/import.c:2862 #, c-format msgid "key %s: secret key imported\n" msgstr "klíč %s: tajný klíč importován\n" -#: g10/import.c:2660 +#: g10/import.c:2675 #, c-format msgid "key %s: secret key already exists\n" msgstr "klíč %s: tajný klíč již existuje\n" -#: g10/import.c:2668 +#: g10/import.c:2683 #, c-format msgid "key %s: error sending to agent: %s\n" msgstr "klíč %s: chyba při odesílání dat agentovi: %s\n" @@ -3884,193 +3890,193 @@ #. * Instead, user should be suggested to run 'gpg --card-status', #. * then, references to a card will be automatically created #. * again. -#: g10/import.c:2837 +#: g10/import.c:2852 #, c-format msgid "To migrate '%s', with each smartcard, run: %s\n" msgstr "Pro migraci „%s“ u každé karty spusťte: %s\n" -#: g10/import.c:2984 +#: g10/import.c:2999 #, c-format msgid "secret key %s: %s\n" msgstr "tajný klíč %s: %s\n" -#: g10/import.c:3005 g10/import.c:3044 +#: g10/import.c:3020 g10/import.c:3059 #, c-format msgid "importing secret keys not allowed\n" msgstr "import tajných klíčů není povolen\n" -#: g10/import.c:3032 +#: g10/import.c:3047 #, c-format msgid "key %s: secret key with invalid cipher %d - skipped\n" msgstr "klíč %s: tajný klíč s neplatnou šifrou %d – přeskočeno\n" -#: g10/import.c:3194 g10/pkclist.c:72 g10/revoke.c:776 +#: g10/import.c:3209 g10/pkclist.c:72 g10/revoke.c:776 msgid "No reason specified" msgstr "Důvod nebyl specifikován" -#: g10/import.c:3195 g10/pkclist.c:74 g10/revoke.c:778 +#: g10/import.c:3210 g10/pkclist.c:74 g10/revoke.c:778 msgid "Key is superseded" msgstr "Klíč je nahrazen" -#: g10/import.c:3196 g10/pkclist.c:76 g10/revoke.c:777 +#: g10/import.c:3211 g10/pkclist.c:76 g10/revoke.c:777 msgid "Key has been compromised" msgstr "Klíč byl zkompromitován" -#: g10/import.c:3197 g10/pkclist.c:78 g10/revoke.c:779 +#: g10/import.c:3212 g10/pkclist.c:78 g10/revoke.c:779 msgid "Key is no longer used" msgstr "Klíč se již nepoužívá" -#: g10/import.c:3198 g10/pkclist.c:80 g10/revoke.c:780 +#: g10/import.c:3213 g10/pkclist.c:80 g10/revoke.c:780 msgid "User ID is no longer valid" msgstr "Identifikátor uživatele již neplatí" -#: g10/import.c:3323 g10/keylist.c:1258 g10/pkclist.c:84 +#: g10/import.c:3338 g10/keylist.c:1258 g10/pkclist.c:84 #, c-format msgid "reason for revocation: " msgstr "důvod pro revokaci: " -#: g10/import.c:3342 g10/keylist.c:1277 g10/pkclist.c:100 +#: g10/import.c:3357 g10/keylist.c:1277 g10/pkclist.c:100 #, c-format msgid "revocation comment: " msgstr "revokační poznámka: " -#: g10/import.c:3392 +#: g10/import.c:3408 #, c-format msgid "key %s: no public key - can't apply revocation certificate\n" msgstr "klíč %s: chybí veřejný klíč – nemohu aplikovat revokační certifikát\n" -#: g10/import.c:3423 +#: g10/import.c:3439 #, c-format msgid "key %s: can't locate original keyblock: %s\n" msgstr "klíč %s: nemohu najít originální blok klíče: %s\n" -#: g10/import.c:3430 +#: g10/import.c:3446 #, c-format msgid "key %s: can't read original keyblock: %s\n" msgstr "klíč %s: nemohu číst originální blok klíče: %s\n" -#: g10/import.c:3450 +#: g10/import.c:3466 #, c-format msgid "key %s: invalid revocation certificate: %s - rejected\n" msgstr "klíč %s: neplatný revokační certifikát: %s – zamítnuto\n" -#: g10/import.c:3485 +#: g10/import.c:3501 #, c-format msgid "key %s: \"%s\" revocation certificate imported\n" msgstr "klíč %s: „%s“ revokační certifikát importován\n" -#: g10/import.c:3571 +#: g10/import.c:3587 #, c-format msgid "key %s: no user ID for signature\n" msgstr "klíč %s: neexistuje id uživatele pro podpis\n" -#: g10/import.c:3588 +#: g10/import.c:3604 #, c-format msgid "key %s: unsupported public key algorithm on user ID \"%s\"\n" msgstr "" "klíč %s: nepodporovaný algoritmus veřejného klíče u uživatelského ID „%s“\n" -#: g10/import.c:3590 +#: g10/import.c:3606 #, c-format msgid "key %s: invalid self-signature on user ID \"%s\"\n" msgstr "klíč %s neplatný podpis klíče jím samým u uživatelského ID „%s“\n" -#: g10/import.c:3607 g10/import.c:3635 g10/import.c:3691 +#: g10/import.c:3623 g10/import.c:3651 g10/import.c:3707 #, c-format msgid "key %s: unsupported public key algorithm\n" msgstr "klíč %s: nepodporovaný algoritmus veřejného klíče\n" -#: g10/import.c:3608 +#: g10/import.c:3624 #, c-format msgid "key %s: invalid direct key signature\n" msgstr "klíč %s: neplatný podpis klíče jím samým (direct key signature)\n" -#: g10/import.c:3622 +#: g10/import.c:3638 #, c-format msgid "key %s: no subkey for key binding\n" msgstr "klíč %s: neexistuje podklíč pro vázání klíčů\n" -#: g10/import.c:3637 +#: g10/import.c:3653 #, c-format msgid "key %s: invalid subkey binding\n" msgstr "klíč %s: neplatná vazba podklíče\n" -#: g10/import.c:3656 +#: g10/import.c:3672 #, c-format msgid "key %s: removed multiple subkey binding\n" msgstr "klíč %s: smazána vícenásobná vazba podklíče\n" -#: g10/import.c:3680 +#: g10/import.c:3696 #, c-format msgid "key %s: no subkey for key revocation\n" msgstr "klíč %s: neexistuje podklíč pro odvolání klíče\n" -#: g10/import.c:3693 +#: g10/import.c:3709 #, c-format msgid "key %s: invalid subkey revocation\n" msgstr "klíč %s: neplatný odvolací podklíč\n" -#: g10/import.c:3708 +#: g10/import.c:3724 #, c-format msgid "key %s: removed multiple subkey revocation\n" msgstr "klíč %s: vícenásobná odvolání podklíče smazáno\n" -#: g10/import.c:3752 +#: g10/import.c:3771 #, c-format msgid "key %s: skipped user ID \"%s\"\n" msgstr "klíč %s: přeskočen identifikátor uživatele „%s“\n" -#: g10/import.c:3779 +#: g10/import.c:3798 #, c-format msgid "key %s: skipped subkey\n" msgstr "klíč %s: podklíč přeskočen\n" -#: g10/import.c:3810 +#: g10/import.c:3829 #, c-format msgid "key %s: non exportable signature (class 0x%02X) - skipped\n" msgstr "klíč %s: podpis není exportovatelný (třída %02X) - přeskočeno\n" -#: g10/import.c:3821 +#: g10/import.c:3840 #, c-format msgid "key %s: revocation certificate at wrong place - skipped\n" msgstr "klíč %s: revokační certifikát na špatném místě - přeskočeno \n" -#: g10/import.c:3839 +#: g10/import.c:3868 #, c-format msgid "key %s: invalid revocation certificate: %s - skipped\n" msgstr "klíč %s: neplatný revokační certifikát: %s - přeskočen\n" -#: g10/import.c:3853 +#: g10/import.c:3892 #, c-format msgid "key %s: subkey signature in wrong place - skipped\n" msgstr "klíč %s: podpis podklíče na špatném místě - přeskočeno \n" -#: g10/import.c:3861 +#: g10/import.c:3900 #, c-format msgid "key %s: unexpected signature class (0x%02X) - skipped\n" msgstr "klíč %s: neočekávaná podpisová třída (0x%02X) - přeskočeno\n" -#: g10/import.c:4034 +#: g10/import.c:4073 #, c-format msgid "key %s: duplicated user ID detected - merged\n" msgstr "klíč %s: objeven duplikovaný identifikátor uživatele - sloučen\n" -#: g10/import.c:4099 +#: g10/import.c:4138 #, c-format msgid "WARNING: key %s may be revoked: fetching revocation key %s\n" msgstr "VAROVÁNÍ: klíč %s může být odvolán: zkouším získat revokační klíč %s\n" -#: g10/import.c:4115 +#: g10/import.c:4154 #, c-format msgid "WARNING: key %s may be revoked: revocation key %s not present.\n" msgstr "VAROVÁNÍ: klíč %s může být odvolán: revokační klíč %s nenalezen.\n" -#: g10/import.c:4181 +#: g10/import.c:4220 #, c-format msgid "key %s: \"%s\" revocation certificate added\n" msgstr "klíč %s: „%s“ přidán revokační certifikát\n" -#: g10/import.c:4219 +#: g10/import.c:4258 #, c-format msgid "key %s: direct key signature added\n" msgstr "klíč %s: podpis klíče jím samým (direct key signature) přidán\n" @@ -4946,7 +4952,7 @@ msgid "You may not add a photo ID to a PGP2-style key.\n" msgstr "Neměli by jste přidávat fotografický ID k PGP2 klíči.\n" -#: g10/keyedit.c:4293 g10/keygen.c:2899 +#: g10/keyedit.c:4293 g10/keygen.c:2953 msgid "Such a user ID already exists on this key!\n" msgstr "Takový identifikátor uživatele již u tohoto klíče existuje!\n" @@ -5222,63 +5228,63 @@ msgid "Displaying %s photo ID of size %ld for key %s (uid %d)\n" msgstr "Zobrazuji %s fotografický ID o velikosti %ld pro klíč %s (uid %d)\n" -#: g10/keygen.c:169 +#: g10/keygen.c:174 #, c-format msgid "invalid value for option '%s'\n" msgstr "neplatný argument u volby „%s“\n" -#: g10/keygen.c:322 +#: g10/keygen.c:331 #, c-format msgid "preference '%s' duplicated\n" msgstr "duplicita předvolby „%s“\n" -#: g10/keygen.c:329 +#: g10/keygen.c:338 #, c-format msgid "too many cipher preferences\n" msgstr "příliš mnoho předvoleb pro šifrování\n" -#: g10/keygen.c:331 +#: g10/keygen.c:340 #, c-format msgid "too many digest preferences\n" msgstr "příliš mnoho předvoleb pro vzorkování\n" -#: g10/keygen.c:333 +#: g10/keygen.c:342 #, c-format msgid "too many compression preferences\n" msgstr "příliš mnoho předvoleb pro komprimaci\n" -#: g10/keygen.c:493 +#: g10/keygen.c:502 #, c-format msgid "invalid item '%s' in preference string\n" msgstr "neplatná položka „%s“ v řetězci s předvolbami\n" -#: g10/keygen.c:972 +#: g10/keygen.c:1020 #, c-format msgid "writing direct signature\n" msgstr "zapisuji podpis klíče jím samým (direct signature)\n" -#: g10/keygen.c:1018 +#: g10/keygen.c:1066 #, c-format msgid "writing self signature\n" msgstr "zapisuji podpis klíče sebou samým\n" -#: g10/keygen.c:1075 +#: g10/keygen.c:1123 #, c-format msgid "writing key binding signature\n" msgstr "zapisuji „key-binding“ podpis\n" -#: g10/keygen.c:1440 g10/keygen.c:1445 g10/keygen.c:1497 g10/keygen.c:1502 -#: g10/keygen.c:1656 g10/keygen.c:1661 +#: g10/keygen.c:1494 g10/keygen.c:1499 g10/keygen.c:1551 g10/keygen.c:1556 +#: g10/keygen.c:1710 g10/keygen.c:1715 #, c-format msgid "keysize invalid; using %u bits\n" msgstr "neplatná délka klíče; použiji %u bitů\n" -#: g10/keygen.c:1451 g10/keygen.c:1508 g10/keygen.c:1516 g10/keygen.c:1667 +#: g10/keygen.c:1505 g10/keygen.c:1562 g10/keygen.c:1570 g10/keygen.c:1721 #, c-format msgid "keysize rounded up to %u bits\n" msgstr "délka klíče zaokrouhlena na %u bitů\n" -#: g10/keygen.c:1542 +#: g10/keygen.c:1596 #, c-format msgid "" "WARNING: some OpenPGP programs can't handle a DSA key with this digest size\n" @@ -5286,19 +5292,19 @@ "VAROVÁNÍ: některé OpenPGP programy nedokáží zacházet s DSA klíčem s takto " "dlouhým hashem\n" -#: g10/keygen.c:1723 +#: g10/keygen.c:1777 msgid "Sign" msgstr "Podepisování" -#: g10/keygen.c:1726 +#: g10/keygen.c:1780 msgid "Certify" msgstr "Certifikování" -#: g10/keygen.c:1729 +#: g10/keygen.c:1783 msgid "Encrypt" msgstr "Šifrování" -#: g10/keygen.c:1732 +#: g10/keygen.c:1786 msgid "Authenticate" msgstr "Autentizace" @@ -5312,161 +5318,161 @@ #. * a = Toggle authentication capability #. * q = Finish #. -#: g10/keygen.c:1753 +#: g10/keygen.c:1807 msgid "SsEeAaQq" msgstr "SsEeAaQq" -#: g10/keygen.c:1784 +#: g10/keygen.c:1838 #, c-format msgid "Possible actions for a %s key: " msgstr "Pro klíč %s lze provést: " -#: g10/keygen.c:1790 +#: g10/keygen.c:1844 msgid "Current allowed actions: " msgstr "Aktuálně povolené akce: " -#: g10/keygen.c:1795 +#: g10/keygen.c:1849 #, c-format msgid " (%c) Toggle the sign capability\n" msgstr " (%c) Zapnout/vypnout schopnost podepisovat\n" -#: g10/keygen.c:1798 +#: g10/keygen.c:1852 #, c-format msgid " (%c) Toggle the encrypt capability\n" msgstr " (%c) Zapnout/vypnout schopnost šifrovat\n" -#: g10/keygen.c:1801 +#: g10/keygen.c:1855 #, c-format msgid " (%c) Toggle the authenticate capability\n" msgstr " (%c) Zapnout/vypnout schopnost autentizovat\n" -#: g10/keygen.c:1804 +#: g10/keygen.c:1858 #, c-format msgid " (%c) Finished\n" msgstr " (%c) Konec\n" -#: g10/keygen.c:1930 +#: g10/keygen.c:1984 #, c-format msgid " (%d) RSA and RSA (default)\n" msgstr " (%d) RSA a RSA (implicitní)\n" -#: g10/keygen.c:1934 +#: g10/keygen.c:1988 #, c-format msgid " (%d) DSA and Elgamal\n" msgstr " (%d) DSA a Elgamal\n" -#: g10/keygen.c:1937 +#: g10/keygen.c:1991 #, c-format msgid " (%d) DSA (sign only)\n" msgstr " (%d) DSA (pouze pro podpis)\n" -#: g10/keygen.c:1939 +#: g10/keygen.c:1993 #, c-format msgid " (%d) RSA (sign only)\n" msgstr " (%d) RSA (pouze pro podpis)\n" -#: g10/keygen.c:1945 +#: g10/keygen.c:1999 #, c-format msgid " (%d) Elgamal (encrypt only)\n" msgstr " (%d) Elgamal (pouze pro šifrování)\n" -#: g10/keygen.c:1947 +#: g10/keygen.c:2001 #, c-format msgid " (%d) RSA (encrypt only)\n" msgstr " (%d) RSA (pouze pro šifrování)\n" -#: g10/keygen.c:1953 +#: g10/keygen.c:2007 #, c-format msgid " (%d) DSA (set your own capabilities)\n" msgstr " (%d) DSA (nastavit si vlastní použití)\n" -#: g10/keygen.c:1955 +#: g10/keygen.c:2009 #, c-format msgid " (%d) RSA (set your own capabilities)\n" msgstr " (%d) RSA (nastavit si vlastní použití)\n" -#: g10/keygen.c:1961 +#: g10/keygen.c:2015 #, c-format msgid " (%d) ECC and ECC\n" msgstr " (%d) ECC a ECC\n" -#: g10/keygen.c:1963 +#: g10/keygen.c:2017 #, c-format msgid " (%d) ECC (sign only)\n" msgstr " (%d) ECC (pouze pro podpis)\n" -#: g10/keygen.c:1965 +#: g10/keygen.c:2019 #, c-format msgid " (%d) ECC (set your own capabilities)\n" msgstr " (%d) ECC (nastavit si vlastní použití)\n" -#: g10/keygen.c:1967 +#: g10/keygen.c:2021 #, c-format msgid " (%d) ECC (encrypt only)\n" msgstr " (%d) ECC (pouze pro šifrování)\n" -#: g10/keygen.c:1971 +#: g10/keygen.c:2025 #, c-format msgid " (%d) Existing key\n" msgstr " (%d) Existující klíč\n" -#: g10/keygen.c:1973 +#: g10/keygen.c:2027 #, c-format msgid " (%d) Existing key from card\n" msgstr " (%d) Klíč existující na kartě\n" -#: g10/keygen.c:2069 sm/certreqgen-ui.c:202 +#: g10/keygen.c:2123 sm/certreqgen-ui.c:202 msgid "Enter the keygrip: " msgstr "Vložte keygrip: " -#: g10/keygen.c:2082 sm/certreqgen-ui.c:210 +#: g10/keygen.c:2136 sm/certreqgen-ui.c:210 msgid "Not a valid keygrip (expecting 40 hex digits)\n" msgstr "Není platným keygripem (očekáváno 40 šestnáctkových číslic)\n" -#: g10/keygen.c:2084 sm/certreqgen-ui.c:212 +#: g10/keygen.c:2138 sm/certreqgen-ui.c:212 msgid "No key with this keygrip\n" msgstr "Klíč s takovým keygripem neexistuje\n" -#: g10/keygen.c:2103 g10/keygen.c:2113 g10/keygen.c:3216 g10/keygen.c:3227 +#: g10/keygen.c:2157 g10/keygen.c:2167 g10/keygen.c:3270 g10/keygen.c:3281 #: sm/certreqgen-ui.c:230 sm/certreqgen-ui.c:239 #, c-format msgid "error reading the card: %s\n" msgstr "chyba při čtení z karty: %s\n" -#: g10/keygen.c:2107 g10/keygen.c:3220 sm/certreqgen-ui.c:233 +#: g10/keygen.c:2161 g10/keygen.c:3274 sm/certreqgen-ui.c:233 #, c-format msgid "Serial number of the card: %s\n" msgstr "Sériové číslo karty: %s\n" -#: g10/keygen.c:2120 sm/certreqgen-ui.c:245 +#: g10/keygen.c:2174 sm/certreqgen-ui.c:245 msgid "Available keys:\n" msgstr "Dostupné klíče:\n" -#: g10/keygen.c:2297 g10/keygen.c:2311 +#: g10/keygen.c:2351 g10/keygen.c:2365 #, c-format msgid "rounded to %u bits\n" msgstr "zaokrouhleno na %u bitů\n" -#: g10/keygen.c:2352 +#: g10/keygen.c:2406 #, c-format msgid "%s keys may be between %u and %u bits long.\n" msgstr "klíč %s může mít délku v intervalu %u až %u bitů.\n" -#: g10/keygen.c:2360 +#: g10/keygen.c:2414 #, c-format msgid "What keysize do you want for the subkey? (%u) " msgstr "Jakou délku podklíče si přejete? (%u) " -#: g10/keygen.c:2377 sm/certreqgen-ui.c:189 +#: g10/keygen.c:2431 sm/certreqgen-ui.c:189 #, c-format msgid "Requested keysize is %u bits\n" msgstr "Požadovaná délka klíče je %u bitů.\n" -#: g10/keygen.c:2423 +#: g10/keygen.c:2477 msgid "Please select which elliptic curve you want:\n" msgstr "Prosím, vyberte, kterou eliptickou křivku chcete:\n" -#: g10/keygen.c:2611 +#: g10/keygen.c:2665 msgid "" "Please specify how long the key should be valid.\n" " 0 = key does not expire\n" @@ -5482,7 +5488,7 @@ " m = doba platnosti klíče skončí za n měsíců\n" " y = doba platnosti klíče skončí za n let\n" -#: g10/keygen.c:2622 +#: g10/keygen.c:2676 msgid "" "Please specify how long the signature should be valid.\n" " 0 = signature does not expire\n" @@ -5498,38 +5504,38 @@ " m = doba platnosti podpisu skončí za n měsíců\n" " y = doba platnosti podpisu skončí za n let\n" -#: g10/keygen.c:2645 +#: g10/keygen.c:2699 msgid "Key is valid for? (0) " msgstr "Klíč je platný po? (0) " -#: g10/keygen.c:2650 +#: g10/keygen.c:2704 #, c-format msgid "Signature is valid for? (%s) " msgstr "Podpis je platný pro? (%s) " -#: g10/keygen.c:2663 g10/keygen.c:2688 +#: g10/keygen.c:2717 g10/keygen.c:2742 msgid "invalid value\n" msgstr "neplatná hodnota\n" -#: g10/keygen.c:2670 +#: g10/keygen.c:2724 msgid "Key does not expire at all\n" msgstr "Platnost klíče nikdy neskončí\n" -#: g10/keygen.c:2671 +#: g10/keygen.c:2725 msgid "Signature does not expire at all\n" msgstr "Platnost podpisu nikdy neskončí\n" -#: g10/keygen.c:2676 +#: g10/keygen.c:2730 #, c-format msgid "Key expires at %s\n" msgstr "Platnost klíče skončí v %s\n" -#: g10/keygen.c:2677 +#: g10/keygen.c:2731 #, c-format msgid "Signature expires at %s\n" msgstr "Platnost podpisu skončí v %s\n" -#: g10/keygen.c:2681 +#: g10/keygen.c:2735 msgid "" "Your system can't display dates beyond 2038.\n" "However, it will be correctly handled up to 2106.\n" @@ -5537,11 +5543,11 @@ "Váš systém neumí zobrazit data po roce 2038.\n" "V každém případě budou data korektně zpracovávána do roku 2106.\n" -#: g10/keygen.c:2694 +#: g10/keygen.c:2748 msgid "Is this correct? (y/N) " msgstr "Je to správně (a/N)? " -#: g10/keygen.c:2762 +#: g10/keygen.c:2816 msgid "" "\n" "GnuPG needs to construct a user ID to identify your key.\n" @@ -5556,7 +5562,7 @@ #. but you should keep your existing translation. In case #. the new string is not translated this old string will #. be used. -#: g10/keygen.c:2777 +#: g10/keygen.c:2831 msgid "" "\n" "You need a user ID to identify your key; the software constructs the user " @@ -5572,49 +5578,49 @@ " „Magda Prochazkova (student) “\n" "\n" -#: g10/keygen.c:2796 +#: g10/keygen.c:2850 msgid "Real name: " msgstr "Jméno a příjmení: " -#: g10/keygen.c:2805 +#: g10/keygen.c:2859 msgid "Invalid character in name\n" msgstr "Neplatný znak ve jméně\n" -#: g10/keygen.c:2806 +#: g10/keygen.c:2860 #, c-format msgid "The characters '%s' and '%s' may not appear in name\n" msgstr "Znaky „%s“ a „%s“ se ve jméně nesmí objevit\n" -#: g10/keygen.c:2810 +#: g10/keygen.c:2864 msgid "Name may not start with a digit\n" msgstr "Jméno nemůže začínat číslicí\n" -#: g10/keygen.c:2813 +#: g10/keygen.c:2867 msgid "Name must be at least 5 characters long\n" msgstr "Jméno musí být dlouhé alespoň 5 znaků\n" -#: g10/keygen.c:2823 +#: g10/keygen.c:2877 msgid "Email address: " msgstr "E-mailová adresa: " -#: g10/keygen.c:2829 +#: g10/keygen.c:2883 msgid "Not a valid email address\n" msgstr "Neplatná e-mailová adresa\n" -#: g10/keygen.c:2838 +#: g10/keygen.c:2892 msgid "Comment: " msgstr "Komentář: " -#: g10/keygen.c:2844 +#: g10/keygen.c:2898 msgid "Invalid character in comment\n" msgstr "Neplatný znak v komentáři\n" -#: g10/keygen.c:2880 +#: g10/keygen.c:2934 #, c-format msgid "You are using the '%s' character set.\n" msgstr "Používáte znakovou sadu „%s“.\n" -#: g10/keygen.c:2886 +#: g10/keygen.c:2940 #, c-format msgid "" "You selected this USER-ID:\n" @@ -5625,7 +5631,7 @@ " „%s“\n" "\n" -#: g10/keygen.c:2891 +#: g10/keygen.c:2945 msgid "Please don't put the email address into the real name or the comment\n" msgstr "Do pole jméno nebo komentář nepište, prosím, e-mailovou adresu.\n" @@ -5640,33 +5646,33 @@ #. o = Okay (ready, continue) #. q = Quit #. -#: g10/keygen.c:2916 +#: g10/keygen.c:2970 msgid "NnCcEeOoQq" msgstr "jJkKeEPpUu" -#: g10/keygen.c:2926 +#: g10/keygen.c:2980 msgid "Change (N)ame, (C)omment, (E)mail or (Q)uit? " msgstr "Změnit (J)méno, (K)omentář, (E)-mail nebo (U)končit? " -#: g10/keygen.c:2927 +#: g10/keygen.c:2981 msgid "Change (N)ame, (C)omment, (E)mail or (O)kay/(Q)uit? " msgstr "" "Změnit (J)méno, (K)omentář, (E)-mail, (P)okračovat dál nebo (U)končit " "program? " -#: g10/keygen.c:2932 +#: g10/keygen.c:2986 msgid "Change (N)ame, (E)mail, or (Q)uit? " msgstr "Změnit (J)méno, (E)-mail nebo (U)končit? " -#: g10/keygen.c:2933 +#: g10/keygen.c:2987 msgid "Change (N)ame, (E)mail, or (O)kay/(Q)uit? " msgstr "Změnit (J)méno, (E)-mail, (P)okračovat dál nebo (U)končit? " -#: g10/keygen.c:2952 +#: g10/keygen.c:3006 msgid "Please correct the error first\n" msgstr "Nejdřív, prosím, opravte chybu\n" -#: g10/keygen.c:2998 +#: g10/keygen.c:3052 msgid "" "We need to generate a lot of random bytes. It is a good idea to perform\n" "some other action (type on the keyboard, move the mouse, utilize the\n" @@ -5679,13 +5685,13 @@ "používat disky); díky tomu má generátor lepší šanci získat dostatek " "entropie.\n" -#: g10/keygen.c:4278 g10/keygen.c:4349 g10/keygen.c:4367 g10/keygen.c:4395 -#: g10/keygen.c:4739 g10/keygen.c:5239 g10/keygen.c:5534 g10/keygen.c:5639 +#: g10/keygen.c:4332 g10/keygen.c:4403 g10/keygen.c:4421 g10/keygen.c:4449 +#: g10/keygen.c:4793 g10/keygen.c:5293 g10/keygen.c:5588 g10/keygen.c:5693 #, c-format msgid "Key generation failed: %s\n" msgstr "Vytvoření klíče se nepodařilo: %s\n" -#: g10/keygen.c:4287 +#: g10/keygen.c:4341 #, c-format msgid "" "About to create a key for:\n" @@ -5696,64 +5702,64 @@ " „%s“\n" "\n" -#: g10/keygen.c:4289 +#: g10/keygen.c:4343 msgid "Continue? (Y/n) " msgstr "Pokračovat (A/n) " -#: g10/keygen.c:4310 +#: g10/keygen.c:4364 #, c-format msgid "A key for \"%s\" already exists\n" msgstr "Klíč pro „%s“ již existuje\n" -#: g10/keygen.c:4315 +#: g10/keygen.c:4369 msgid "Create anyway? (y/N) " msgstr "Přesto vytvořit? (a/N) " -#: g10/keygen.c:4321 +#: g10/keygen.c:4375 #, c-format msgid "creating anyway\n" msgstr "přesto se vytváří\n" -#: g10/keygen.c:4722 +#: g10/keygen.c:4776 #, c-format msgid "Note: Use \"%s %s\" for a full featured key generation dialog.\n" msgstr "Poznámka: Pro komplexní tvorbu klíče použijte „%s %s“.\n" -#: g10/keygen.c:4771 +#: g10/keygen.c:4825 #, c-format msgid "Key generation canceled.\n" msgstr "Vytváření klíče bylo zrušeno.\n" -#: g10/keygen.c:4831 +#: g10/keygen.c:4885 #, c-format msgid "can't create backup file '%s': %s\n" msgstr "záložní soubor „%s“ nelze vytvořit: %s\n" -#: g10/keygen.c:4851 +#: g10/keygen.c:4905 #, c-format 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/keygen.c:5010 g10/keygen.c:5172 +#: g10/keygen.c:5064 g10/keygen.c:5226 #, c-format msgid "writing public key to '%s'\n" msgstr "veřejný klíč se zapisuje do „%s“\n" -#: g10/keygen.c:5166 +#: g10/keygen.c:5220 #, c-format msgid "no writable public keyring found: %s\n" msgstr "nenalezen zapisovatelný soubor veřejných klíčů (pubring): %s\n" -#: g10/keygen.c:5180 +#: g10/keygen.c:5234 #, c-format msgid "error writing public keyring '%s': %s\n" msgstr "chyba při zápisu do souboru veřejných klíčů „%s“: %s\n" -#: g10/keygen.c:5210 +#: g10/keygen.c:5264 msgid "public and secret key created and signed.\n" msgstr "veřejný a tajný klíč byly vytvořeny a podepsány.\n" -#: g10/keygen.c:5226 +#: g10/keygen.c:5280 msgid "" "Note that this key cannot be used for encryption. You may want to use\n" "the command \"--edit-key\" to generate a subkey for this purpose.\n" @@ -5761,7 +5767,7 @@ "Tento klíč nemůže být použitý pro šifrování. K vytvoření\n" "sekundárního klíče pro tento účel můžete použít příkaz „--edit-key“.\n" -#: g10/keygen.c:5401 g10/keygen.c:5590 +#: g10/keygen.c:5455 g10/keygen.c:5644 #, c-format msgid "" "key has been created %lu second in future (time warp or clock problem)\n" @@ -5769,7 +5775,7 @@ "klíč byl vytvořen %lu sekund v budoucnosti (došlo ke změně času nebo\n" "je problém se systémovým časem)\n" -#: g10/keygen.c:5403 g10/keygen.c:5592 +#: g10/keygen.c:5457 g10/keygen.c:5646 #, c-format msgid "" "key has been created %lu seconds in future (time warp or clock problem)\n" @@ -5777,22 +5783,22 @@ "klíč byl vytvořen %lu sekund v budoucnosti (došlo ke změně času nebo\n" "je problém se systémovým časem)\n" -#: g10/keygen.c:5414 g10/keygen.c:5603 +#: g10/keygen.c:5468 g10/keygen.c:5657 #, c-format msgid "Note: creating subkeys for v3 keys is not OpenPGP compliant\n" msgstr "Poznámka: vytvoření podklíčů pro klíče v3 není v souladu s OpenPGP\n" -#: g10/keygen.c:5426 g10/keygen.c:5428 +#: g10/keygen.c:5480 g10/keygen.c:5482 #, c-format msgid "Secret parts of primary key are not available.\n" msgstr "Tajné části primárního klíče nejsou dostupné.\n" -#: g10/keygen.c:5435 g10/keygen.c:5437 +#: g10/keygen.c:5489 g10/keygen.c:5491 #, c-format msgid "Secret parts of primary key are stored on-card.\n" msgstr "Tajná část primárního klíče jsou uloženy na kartě.\n" -#: g10/keygen.c:5456 g10/keygen.c:5617 +#: g10/keygen.c:5510 g10/keygen.c:5671 msgid "Really create? (y/N) " msgstr "Opravdu vytvořit? (a/N) " @@ -6876,30 +6882,30 @@ msgstr "" "data nebyla uložena; k jejich uložení použijte parametr příkazu „--output“\n" -#: g10/plaintext.c:615 +#: g10/plaintext.c:620 msgid "Detached signature.\n" msgstr "Podpis oddělený od dokumentu.\n" -#: g10/plaintext.c:623 +#: g10/plaintext.c:628 msgid "Please enter name of data file: " msgstr "Prosím, vložte název datového souboru: " -#: g10/plaintext.c:660 +#: g10/plaintext.c:665 #, c-format msgid "reading stdin ...\n" msgstr "čtu standardní vstup…\n" -#: g10/plaintext.c:705 +#: g10/plaintext.c:710 #, c-format msgid "no signed data\n" msgstr "chybí podepsaná data\n" -#: g10/plaintext.c:723 +#: g10/plaintext.c:728 #, c-format msgid "can't open signed data '%s'\n" msgstr "nelze otevřít podepsaná data „%s“\n" -#: g10/plaintext.c:758 +#: g10/plaintext.c:763 #, c-format msgid "can't open signed data fd=%d: %s\n" msgstr "nelze otevřít podepsaná data na deskriptoru=%d: %s\n" @@ -7949,7 +7955,7 @@ msgid "no need for a trustdb check\n" msgstr "není nutné kontrolovat databázi důvěry\n" -#: g10/trustdb.c:631 g10/trustdb.c:2326 +#: g10/trustdb.c:631 g10/trustdb.c:2338 #, c-format msgid "next trustdb check due at %s\n" msgstr "další kontrola databáze důvěry v %s\n" @@ -7979,7 +7985,7 @@ msgid "checking the trustdb\n" msgstr "kontroluji databázi důvěry\n" -#: g10/trustdb.c:2047 +#: g10/trustdb.c:2059 #, c-format msgid "%d key processed" msgid_plural "%d keys processed" @@ -7987,7 +7993,7 @@ msgstr[1] "zpracovány %d klíče" msgstr[2] "zpracováno %d klíčů" -#: g10/trustdb.c:2050 +#: g10/trustdb.c:2062 #, c-format msgid " (%d validity count cleared)\n" msgid_plural " (%d validity counts cleared)\n" @@ -7995,17 +8001,17 @@ msgstr[1] " (vymazána %d počítadla platnosti)\n" msgstr[2] " (vymazáno %d počítadel platnosti)\n" -#: g10/trustdb.c:2120 +#: g10/trustdb.c:2132 #, c-format msgid "no ultimately trusted keys found\n" msgstr "žádný absolutně důvěryhodný klíč nebyl nalezen\n" -#: g10/trustdb.c:2134 +#: g10/trustdb.c:2146 #, c-format msgid "public key of ultimately trusted key %s not found\n" msgstr "veřejný klíč k absolutně důvěryhodnému klíči %s nebyl nalezen\n" -#: g10/trustdb.c:2252 +#: g10/trustdb.c:2264 #, c-format msgid "" "depth: %d valid: %3d signed: %3d trust: %d-, %dq, %dn, %dm, %df, %du\n" @@ -8013,7 +8019,7 @@ "hloubka: %d platných: %3d podepsaných: %3d důvěra: %d-, %dq, %dn, %dm, " "%df, %du\n" -#: g10/trustdb.c:2333 +#: g10/trustdb.c:2345 #, c-format msgid "unable to update trustdb version record: write failed: %s\n" msgstr "nelze aktualizovat záznam v databázi důvěry: chyba při zápisu: %s\n" @@ -8127,75 +8133,81 @@ #. TRANSLATORS: Put a \x1f right before a colon. This can be #. * used by pinentry to nicely align the names and values. Keep #. * the %s at the start and end of the string. -#: scd/app-p15.c:5116 scd/app-openpgp.c:2154 +#: scd/app-p15.c:5145 scd/app-nks.c:1541 scd/app-openpgp.c:2154 #, c-format msgid "%sNumber: %s%%0AHolder: %s%s" msgstr "%sČíslo: %s%%0ADržitel: %s%s" #. TRANSLATORS: This is the number of remaining attempts to #. * enter a PIN. Use %%0A (double-percent,0A) for a linefeed. -#: scd/app-p15.c:5135 scd/app-openpgp.c:2170 +#: scd/app-p15.c:5164 scd/app-nks.c:1560 scd/app-openpgp.c:2170 #, c-format msgid "Remaining attempts: %d" msgstr "Zbývá pokusů: %d" -#: scd/app-p15.c:5214 scd/app-nks.c:1113 +#: scd/app-p15.c:5243 scd/app-nks.c:2112 msgid "||Please enter the PIN for the key to create qualified signatures." msgstr "" "||Prosím, zadejte PIN klíče určeného na tvorbu kvalifikovaných podpisů." #. TRANSLATORS: Do not translate the "|A|" prefix but keep it at #. the start of the string. Use %0A (single percent) for a linefeed. -#: scd/app-p15.c:5217 scd/app-openpgp.c:2464 +#: scd/app-p15.c:5246 scd/app-openpgp.c:2465 msgid "|A|Please enter the Admin PIN" msgstr "|A|Prosím, zadejte PIN správce" -#: scd/app-p15.c:5219 scd/app-nks.c:1103 +#: scd/app-p15.c:5248 scd/app-nks.c:2102 msgid "|P|Please enter the PIN Unblocking Code (PUK) for the standard keys." msgstr "|P|Prosím, zadejte kód pro odblokování (PUK) standardních klíčů." -#: scd/app-p15.c:5222 scd/app-nks.c:1095 +#: scd/app-p15.c:5251 scd/app-nks.c:2093 msgid "||Please enter the PIN for the standard keys." msgstr "||Prosím, zadejte PIN pro standardní klíče." -#: scd/app-nks.c:709 scd/app-openpgp.c:3666 +#: scd/app-nks.c:1479 scd/app-openpgp.c:3675 #, 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-nks.c:717 scd/app-openpgp.c:3678 +#: scd/app-nks.c:1487 scd/app-openpgp.c:3687 #, 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-nks.c:797 scd/app-openpgp.c:2327 scd/app-openpgp.c:2346 -#: scd/app-openpgp.c:2513 scd/app-openpgp.c:2531 scd/app-openpgp.c:2829 -#: scd/app-openpgp.c:2876 scd/app-openpgp.c:2991 scd/app-dinsig.c:302 +#: scd/app-nks.c:1660 +#, fuzzy +#| msgid "the NullPIN has not yet been changed\n" +msgid "Note: PIN has not yet been enabled." +msgstr "NullPIN ještě nebyl změněn\n" + +#: scd/app-nks.c:1671 scd/app-openpgp.c:2327 scd/app-openpgp.c:2346 +#: scd/app-openpgp.c:2515 scd/app-openpgp.c:2533 scd/app-openpgp.c:2832 +#: scd/app-openpgp.c:2879 scd/app-openpgp.c:3000 scd/app-dinsig.c:303 #, c-format msgid "PIN callback returned error: %s\n" msgstr "funkce PIN callback skončila chybou: %s\n" -#: scd/app-nks.c:830 +#: scd/app-nks.c:1707 #, c-format msgid "the NullPIN has not yet been changed\n" msgstr "NullPIN ještě nebyl změněn\n" # TRANSLATORS: Do not translate the "|*|" prefixes but keep # them verbatim at the start of the string. */ -#: scd/app-nks.c:1094 +#: scd/app-nks.c:2092 msgid "|N|Please enter a new PIN for the standard keys." msgstr "|N|Prosím, zadejte nový PIN pro standardní klíče." -#: scd/app-nks.c:1101 +#: scd/app-nks.c:2100 msgid "|NP|Please enter a new PIN Unblocking Code (PUK) for the standard keys." msgstr "|NP|Prosím, zadejte nový kód pro odblokování (PUK) standardních klíčů." -#: scd/app-nks.c:1111 +#: scd/app-nks.c:2110 msgid "|N|Please enter a new PIN for the key to create qualified signatures." msgstr "" "|N|Prosím, zadejte nový PIN klíče určeného na tvorbu kvalifikovaných podpisů." -#: scd/app-nks.c:1121 +#: scd/app-nks.c:2120 msgid "" "|NP|Please enter a new PIN Unblocking Code (PUK) for the key to create " "qualified signatures." @@ -8203,7 +8215,7 @@ "|NP|Prosím, zadejte nový kód pro odblokování (PUK) klíče určeného na tvorbu " "kvalifikovaných podpisů." -#: scd/app-nks.c:1123 +#: scd/app-nks.c:2122 msgid "" "|P|Please enter the PIN Unblocking Code (PUK) for the key to create " "qualified signatures." @@ -8211,7 +8223,7 @@ "|NP|Prosím, zadejte kód pro odblokování (PUK) klíče určeného na tvorbu " "kvalifikovaných podpisů." -#: scd/app-nks.c:1230 scd/app-openpgp.c:2910 scd/app-dinsig.c:532 +#: scd/app-nks.c:2295 scd/app-openpgp.c:2913 scd/app-dinsig.c:535 #, c-format msgid "error getting new PIN: %s\n" msgstr "chyba při získání nového PINu: %s\n" @@ -8226,7 +8238,7 @@ msgid "failed to store the creation date: %s\n" msgstr "uložení data vytvoření se nezdařilo: %s\n" -#: scd/app-openpgp.c:1271 scd/app-openpgp.c:2857 scd/app-openpgp.c:5041 +#: scd/app-openpgp.c:1271 scd/app-openpgp.c:2860 scd/app-openpgp.c:5051 #, c-format msgid "error retrieving CHV status from card\n" msgstr "chyba při získání CHV z karty\n" @@ -8246,7 +8258,7 @@ msgid "response does not contain the EC public key\n" msgstr "odpověď neobsahuje veřejný klíč EC\n" -#: scd/app-openpgp.c:1664 scd/app-openpgp.c:4286 +#: scd/app-openpgp.c:1664 scd/app-openpgp.c:4295 #, c-format msgid "response does not contain the public key data\n" msgstr "odpověď neobsahuje veřejný klíč\n" @@ -8279,23 +8291,23 @@ msgid "||Please unlock the card" msgstr "||Prosím, odemkněte kartu" -#: scd/app-openpgp.c:2353 scd/app-openpgp.c:2538 scd/app-openpgp.c:2836 +#: scd/app-openpgp.c:2353 scd/app-openpgp.c:2540 scd/app-openpgp.c:2839 #, 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:2367 scd/app-openpgp.c:2414 scd/app-openpgp.c:2552 -#: scd/app-openpgp.c:4644 +#: scd/app-openpgp.c:2368 scd/app-openpgp.c:2415 scd/app-openpgp.c:2554 +#: scd/app-openpgp.c:4654 #, c-format msgid "verify CHV%d failed: %s\n" msgstr "ověření CHV%d se nezdařilo: %s\n" -#: scd/app-openpgp.c:2450 scd/app-openpgp.c:5050 +#: scd/app-openpgp.c:2451 scd/app-openpgp.c:5060 #, c-format msgid "card is permanently locked!\n" msgstr "karta je trvale uzamčena!\n" -#: scd/app-openpgp.c:2454 +#: scd/app-openpgp.c:2455 #, c-format msgid "%d Admin PIN attempt remaining before card is permanently locked\n" msgid_plural "" @@ -8307,20 +8319,20 @@ msgstr[2] "" "Do trvalého uzamčení karty zůstává %d pokusů na zadání PINu správce\n" -#: scd/app-openpgp.c:2485 +#: scd/app-openpgp.c:2486 #, c-format msgid "access to admin commands is not configured\n" msgstr "přístup k příkazům správce není nakonfigurován\n" -#: scd/app-openpgp.c:2823 +#: scd/app-openpgp.c:2826 msgid "||Please enter the PIN" msgstr "||Prosím vložte PIN" -#: scd/app-openpgp.c:2872 +#: scd/app-openpgp.c:2875 msgid "||Please enter the Reset Code for the card" msgstr "||Prosím, zadejte resetační kód karty" -#: scd/app-openpgp.c:2882 scd/app-openpgp.c:2943 +#: scd/app-openpgp.c:2885 scd/app-openpgp.c:2946 #, c-format msgid "Reset Code is too short; minimum length is %d\n" msgstr "Resetační kód je příliš krátký; minimální délka je %d\n" @@ -8328,87 +8340,87 @@ #. 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:2905 +#: scd/app-openpgp.c:2908 msgid "|RN|New Reset Code" msgstr "|RN|Nový resetační kód" -#: scd/app-openpgp.c:2906 +#: scd/app-openpgp.c:2909 msgid "|AN|New Admin PIN" msgstr "|AN|Nový PIN správce" -#: scd/app-openpgp.c:2906 +#: scd/app-openpgp.c:2909 msgid "|N|New PIN" msgstr "|N|Nový PIN" -#: scd/app-openpgp.c:2987 +#: scd/app-openpgp.c:2996 msgid "||Please enter the Admin PIN and New Admin PIN" msgstr "||Prosím, zadejte PIN správce a nový PIN správce" -#: scd/app-openpgp.c:2988 +#: scd/app-openpgp.c:2997 msgid "||Please enter the PIN and New PIN" msgstr "||Prosím, zadejte PIN a nový PIN" -#: scd/app-openpgp.c:3050 scd/app-openpgp.c:4346 +#: scd/app-openpgp.c:3059 scd/app-openpgp.c:4355 #, c-format msgid "error reading application data\n" msgstr "chyba při čtení aplikačních dat\n" -#: scd/app-openpgp.c:3056 scd/app-openpgp.c:4353 +#: scd/app-openpgp.c:3065 scd/app-openpgp.c:4362 #, c-format msgid "error reading fingerprint DO\n" msgstr "chyba při čtení otisku DO\n" -#: scd/app-openpgp.c:3066 +#: scd/app-openpgp.c:3075 #, c-format msgid "key already exists\n" msgstr "klíč již existuje\n" -#: scd/app-openpgp.c:3070 +#: scd/app-openpgp.c:3079 #, c-format msgid "existing key will be replaced\n" msgstr "existující klíč bude přepsán\n" -#: scd/app-openpgp.c:3072 +#: scd/app-openpgp.c:3081 #, c-format msgid "generating new key\n" msgstr "generování nového klíče\n" -#: scd/app-openpgp.c:3074 +#: scd/app-openpgp.c:3083 #, c-format msgid "writing new key\n" msgstr "nový klíč se zapisuje\n" -#: scd/app-openpgp.c:3647 scd/app-openpgp.c:3999 +#: scd/app-openpgp.c:3656 scd/app-openpgp.c:4008 #, c-format msgid "creation timestamp missing\n" msgstr "chybí časové razítko vytvoření\n" -#: scd/app-openpgp.c:3688 scd/app-openpgp.c:3696 +#: scd/app-openpgp.c:3697 scd/app-openpgp.c:3705 #, 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:3829 scd/app-openpgp.c:4106 +#: scd/app-openpgp.c:3838 scd/app-openpgp.c:4115 #, c-format msgid "failed to store the key: %s\n" msgstr "nelze uložit klíč: %s\n" -#: scd/app-openpgp.c:3993 +#: scd/app-openpgp.c:4002 #, c-format msgid "unsupported curve\n" msgstr "nepodporovaná křivka\n" -#: scd/app-openpgp.c:4263 +#: scd/app-openpgp.c:4272 #, c-format msgid "please wait while key is being generated ...\n" msgstr "prosím počkejte než bude klíč vygenerován…\n" -#: scd/app-openpgp.c:4271 +#: scd/app-openpgp.c:4280 #, c-format msgid "generating key failed\n" msgstr "generování klíče se nezdařilo\n" -#: scd/app-openpgp.c:4277 +#: scd/app-openpgp.c:4286 #, c-format msgid "key generation completed (%d second)\n" msgid_plural "key generation completed (%d seconds)\n" @@ -8416,45 +8428,45 @@ msgstr[1] "generování klíče dokončeno (%d sekundy)\n" msgstr[2] "generování klíče dokončeno (%d sekund)\n" -#: scd/app-openpgp.c:4311 +#: scd/app-openpgp.c:4320 #, c-format msgid "invalid structure of OpenPGP card (DO 0x93)\n" msgstr "neplatná struktura OpenPGP karty (DO 0x93)\n" -#: scd/app-openpgp.c:4361 +#: scd/app-openpgp.c:4370 #, c-format msgid "fingerprint on card does not match requested one\n" msgstr "otisk na kartě se neshoduje s požadovaným\n" -#: scd/app-openpgp.c:4560 +#: scd/app-openpgp.c:4569 #, c-format msgid "card does not support digest algorithm %s\n" msgstr "karta nepodporuje hashovací algoritmus %s\n" -#: scd/app-openpgp.c:4618 +#: scd/app-openpgp.c:4627 #, c-format msgid "signatures created so far: %lu\n" msgstr "dosud vytvořené podpisy: %lu\n" -#: scd/app-openpgp.c:5055 +#: scd/app-openpgp.c:5065 #, c-format msgid "" "verification of Admin PIN is currently prohibited through this command\n" msgstr "ověření PIN správce je nyní prostřednictvím tohoto příkazu zakázáno\n" -#: scd/app-openpgp.c:5386 scd/app-openpgp.c:5398 +#: scd/app-openpgp.c:5396 scd/app-openpgp.c:5408 #, c-format msgid "can't access %s - invalid OpenPGP card?\n" msgstr "přístup na %s se nezdařil – vadná OpenPGP karta?\n" -#: scd/app-dinsig.c:298 +#: scd/app-dinsig.c:299 msgid "||Please enter your PIN at the reader's pinpad" msgstr "||Prosím, zadejte svůj PIN na klávesnici čtečky" #. 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-dinsig.c:529 +#: scd/app-dinsig.c:532 msgid "|N|Initial New PIN" msgstr "|N|Prvotní nový PIN" @@ -8541,11 +8553,11 @@ msgid "validation model requested by certificate: %s" msgstr "certifikátem vyžadovaný ověřovací model: %s" -#: sm/certchain.c:199 sm/certchain.c:2164 +#: sm/certchain.c:199 sm/certchain.c:2165 msgid "chain" msgstr "řetězený" -#: sm/certchain.c:200 sm/certchain.c:2164 +#: sm/certchain.c:200 sm/certchain.c:2165 msgid "shell" msgstr "jednovrstvý" @@ -8568,234 +8580,234 @@ msgid "failed to open '%s': %s\n" msgstr "„%s“ nebylo možné otevřít: %s\n" -#: sm/certchain.c:355 sm/certchain.c:384 dirmngr/validate.c:204 +#: sm/certchain.c:355 sm/certchain.c:385 dirmngr/validate.c:204 #, c-format msgid "Note: non-critical certificate policy not allowed" msgstr "Poznámka: nekritické certifikační politiky nejsou dovoleny" -#: sm/certchain.c:359 sm/certchain.c:388 dirmngr/validate.c:209 +#: sm/certchain.c:359 sm/certchain.c:389 dirmngr/validate.c:209 #, c-format msgid "certificate policy not allowed" msgstr "certifikační politika není dovolena" -#: sm/certchain.c:595 sm/keydb.c:1084 sm/keydb.c:1171 +#: sm/certchain.c:596 sm/keydb.c:1084 sm/keydb.c:1171 #, c-format msgid "failed to get the fingerprint\n" msgstr "otisk se nepodařilo získat\n" -#: sm/certchain.c:624 +#: sm/certchain.c:625 #, c-format msgid "looking up issuer at external location\n" msgstr "hledám vydavatele na jiném místě\n" -#: sm/certchain.c:644 +#: sm/certchain.c:645 #, c-format msgid "number of issuers matching: %d\n" msgstr "počet odpovídajících vydavatelů: %d\n" -#: sm/certchain.c:723 dirmngr/ocsp.c:685 +#: sm/certchain.c:724 dirmngr/ocsp.c:685 #, c-format msgid "can't get authorityInfoAccess: %s\n" msgstr "authorityInfoAccess nelze získat: %s\n" -#: sm/certchain.c:791 +#: sm/certchain.c:792 #, c-format msgid "looking up issuer from the Dirmngr cache\n" msgstr "hledám vydavatele ve vyrovnávací paměti Dirmngr\n" -#: sm/certchain.c:816 +#: sm/certchain.c:817 #, c-format msgid "number of matching certificates: %d\n" msgstr "počet odpovídajících certifikátů: %d\n" -#: sm/certchain.c:819 +#: sm/certchain.c:820 #, c-format msgid "dirmngr cache-only key lookup failed: %s\n" msgstr "hledání klíče pouze ve vyrovnávací paměti dirmngr neuspělo: %s\n" -#: sm/certchain.c:1041 sm/certchain.c:1554 sm/certchain.c:2192 sm/decrypt.c:728 +#: sm/certchain.c:1042 sm/certchain.c:1555 sm/certchain.c:2193 sm/decrypt.c:728 #: sm/encrypt.c:345 sm/import.c:415 sm/keydb.c:1091 sm/keydb.c:1178 #: sm/sign.c:337 sm/verify.c:118 #, c-format msgid "failed to allocate keyDB handle\n" msgstr "alokace popisovače keyDB se nezdařila\n" -#: sm/certchain.c:1225 +#: sm/certchain.c:1226 msgid "certificate has been revoked" msgstr "certifikát byl odvolán" -#: sm/certchain.c:1240 +#: sm/certchain.c:1241 msgid "the status of the certificate is unknown" msgstr "status certifikáty není znám" -#: sm/certchain.c:1247 +#: sm/certchain.c:1248 #, c-format msgid "please make sure that the \"dirmngr\" is properly installed\n" msgstr "prosím, ujistěte se, že „dirmngr“ je správně nainstalován\n" -#: sm/certchain.c:1253 +#: sm/certchain.c:1254 #, c-format msgid "checking the CRL failed: %s" msgstr "kontrola CRL se nezdařila: %s" -#: sm/certchain.c:1282 sm/certchain.c:1350 dirmngr/validate.c:497 +#: sm/certchain.c:1283 sm/certchain.c:1351 dirmngr/validate.c:497 #, c-format msgid "certificate with invalid validity: %s" msgstr "certifikát s chybnou platností: %s" -#: sm/certchain.c:1297 sm/certchain.c:1382 dirmngr/validate.c:515 +#: sm/certchain.c:1298 sm/certchain.c:1383 dirmngr/validate.c:515 #, c-format msgid "certificate not yet valid" msgstr "certifikát ještě nenabyl platnosti" -#: sm/certchain.c:1298 sm/certchain.c:1383 +#: sm/certchain.c:1299 sm/certchain.c:1384 msgid "root certificate not yet valid" msgstr "kořenový certifikát ještě nezačal platit" -#: sm/certchain.c:1299 sm/certchain.c:1384 +#: sm/certchain.c:1300 sm/certchain.c:1385 msgid "intermediate certificate not yet valid" msgstr "mezilehlý certifikát ještě nezačal platit" -#: sm/certchain.c:1312 dirmngr/validate.c:526 +#: sm/certchain.c:1313 dirmngr/validate.c:526 #, c-format msgid "certificate has expired" msgstr "certifikátu vypršela platnost" -#: sm/certchain.c:1313 +#: sm/certchain.c:1314 msgid "root certificate has expired" msgstr "kořenový certifikát je prošlý" -#: sm/certchain.c:1314 +#: sm/certchain.c:1315 msgid "intermediate certificate has expired" msgstr "mezilehlý certifikát je prošlý" -#: sm/certchain.c:1356 +#: sm/certchain.c:1357 #, c-format msgid "required certificate attributes missing: %s%s%s" msgstr "chybí povinné atributy certifikátu: %s%s%s" -#: sm/certchain.c:1365 +#: sm/certchain.c:1366 msgid "certificate with invalid validity" msgstr "certifikát s neplatnou platností" -#: sm/certchain.c:1402 +#: sm/certchain.c:1403 msgid "signature not created during lifetime of certificate" msgstr "podpis nebyl vytvořen v době životnosti certifikátu" -#: sm/certchain.c:1404 +#: sm/certchain.c:1405 msgid "certificate not created during lifetime of issuer" msgstr "certifikát nebyl vytvořen v době životnosti vydavatele" -#: sm/certchain.c:1405 +#: sm/certchain.c:1406 msgid "intermediate certificate not created during lifetime of issuer" msgstr "mezilehlý certifikát nebyl vytvořen v době životnosti vydavatele" -#: sm/certchain.c:1409 +#: sm/certchain.c:1410 #, c-format msgid " ( signature created at " msgstr " ( podpis vytvořen " -#: sm/certchain.c:1410 +#: sm/certchain.c:1411 #, c-format msgid " (certificate created at " msgstr " ( certifikát vytvořen " -#: sm/certchain.c:1413 +#: sm/certchain.c:1414 #, c-format msgid " (certificate valid from " msgstr " ( certifikát planý od " -#: sm/certchain.c:1414 +#: sm/certchain.c:1415 #, c-format msgid " ( issuer valid from " msgstr " ( vydavatel platný od " -#: sm/certchain.c:1444 dirmngr/validate.c:577 +#: sm/certchain.c:1445 dirmngr/validate.c:577 #, c-format msgid "fingerprint=%s\n" msgstr "otisk=%s\n" -#: sm/certchain.c:1453 +#: sm/certchain.c:1454 #, c-format msgid "root certificate has now been marked as trusted\n" msgstr "kořenový certifikát byl nyní označen za důvěryhodný\n" -#: sm/certchain.c:1466 +#: sm/certchain.c:1467 #, c-format msgid "interactive marking as trusted not enabled in gpg-agent\n" msgstr "v gpg-agentu není povoleno interaktivní označování za důvěryhodný\n" -#: sm/certchain.c:1472 +#: sm/certchain.c:1473 #, c-format msgid "interactive marking as trusted disabled for this session\n" msgstr "interaktivní označovaní jako důvěryhodný je pro tuto relaci zakázáno\n" -#: sm/certchain.c:1531 +#: sm/certchain.c:1532 msgid "WARNING: creation time of signature not known - assuming current time" msgstr "VAROVÁNÍ: datum vytvoření podpisu není známo – předpokládám současnost" -#: sm/certchain.c:1595 +#: sm/certchain.c:1596 msgid "no issuer found in certificate" msgstr "v certifikátu nebyl nalezen vydavatel" -#: sm/certchain.c:1673 +#: sm/certchain.c:1674 msgid "self-signed certificate has a BAD signature" msgstr "certifikát podepsaný sám sebou má ŠPATNÝ podpis" -#: sm/certchain.c:1742 dirmngr/validate.c:575 +#: sm/certchain.c:1743 dirmngr/validate.c:575 #, c-format msgid "root certificate is not marked trusted" msgstr "kořenový certifikát není označen jako důvěryhodný" -#: sm/certchain.c:1758 +#: sm/certchain.c:1759 #, c-format msgid "checking the trust list failed: %s\n" msgstr "kontrola seznamu důvěry se nepodařila: %s\n" -#: sm/certchain.c:1789 sm/import.c:176 sm/keylist.c:1396 dirmngr/validate.c:630 +#: sm/certchain.c:1790 sm/import.c:176 sm/keylist.c:1396 dirmngr/validate.c:630 #, c-format msgid "certificate chain too long\n" msgstr "řetěz certifikátů je příliš dlouhý\n" -#: sm/certchain.c:1801 dirmngr/validate.c:642 +#: sm/certchain.c:1802 dirmngr/validate.c:642 #, c-format msgid "issuer certificate not found" msgstr "certifikát vydavatele nebyl nalezen" -#: sm/certchain.c:1834 dirmngr/validate.c:668 +#: sm/certchain.c:1835 dirmngr/validate.c:668 #, c-format msgid "certificate has a BAD signature" msgstr "certifikát má ŠPATNÝ podpis" -#: sm/certchain.c:1866 dirmngr/validate.c:692 +#: sm/certchain.c:1867 dirmngr/validate.c:692 msgid "found another possible matching CA certificate - trying again" msgstr "nalezen jiný možný odpovídající certifikát autority – zkusí se znovu" -#: sm/certchain.c:1925 dirmngr/validate.c:717 +#: sm/certchain.c:1926 dirmngr/validate.c:717 #, c-format msgid "certificate chain longer than allowed by CA (%d)" msgstr "řetěz certifikátů je delší než dovoluje CA (%d)" -#: sm/certchain.c:1967 sm/certchain.c:2263 dirmngr/validate.c:747 +#: sm/certchain.c:1968 sm/certchain.c:2264 dirmngr/validate.c:747 #, c-format msgid "certificate is good\n" msgstr "certifikát je v pořádku\n" -#: sm/certchain.c:1968 +#: sm/certchain.c:1969 #, c-format msgid "intermediate certificate is good\n" msgstr "mezilehlý certifikát je v pořádku\n" -#: sm/certchain.c:1969 +#: sm/certchain.c:1970 #, c-format msgid "root certificate is good\n" msgstr "kořenový certifikát je v pořádku\n" -#: sm/certchain.c:2151 +#: sm/certchain.c:2152 msgid "switching to chain model" msgstr "přepínám do řetězeného modelu" -#: sm/certchain.c:2160 +#: sm/certchain.c:2161 #, c-format msgid "validation model used: %s" msgstr "použit ověřovací model: %s" diff -Nru gnupg2-2.2.40/po/da.po gnupg2-2.2.41/po/da.po --- gnupg2-2.2.40/po/da.po 2022-10-10 09:58:25.000000000 +0000 +++ gnupg2-2.2.41/po/da.po 2022-12-09 08:48:34.000000000 +0000 @@ -14,7 +14,7 @@ msgstr "" "Project-Id-Version: gnupg\n" "Report-Msgid-Bugs-To: translations@gnupg.org\n" -"POT-Creation-Date: 2022-10-10 11:58+0200\n" +"POT-Creation-Date: 2022-12-09 09:48+0100\n" "PO-Revision-Date: 2017-11-02 17:39+0100\n" "Last-Translator: Joe Hansen \n" "Language-Team: Danish \n" @@ -253,8 +253,8 @@ msgid "ssh keys greater than %d bits are not supported\n" msgstr "ssh-nøgler større end %d bit er ikke understøttet\n" -#: agent/command-ssh.c:862 common/dotlock.c:856 g10/card-util.c:947 -#: g10/exec.c:554 g10/export.c:1320 g10/gpg.c:1400 g10/keygen.c:4998 +#: agent/command-ssh.c:862 common/dotlock.c:856 g10/card-util.c:946 +#: g10/exec.c:554 g10/export.c:1335 g10/gpg.c:1409 g10/keygen.c:5052 #: g10/keyring.c:1322 g10/keyring.c:1637 g10/openfile.c:291 g10/sign.c:1008 #: g10/sign.c:1322 g10/tdbio.c:753 #, fuzzy, c-format @@ -262,12 +262,12 @@ msgid "can't create '%s': %s\n" msgstr "kan ikke oprette »%s«: %s\n" -#: agent/command-ssh.c:874 common/helpfile.c:57 g10/card-util.c:904 +#: agent/command-ssh.c:874 common/helpfile.c:57 g10/card-util.c:903 #: g10/dearmor.c:59 g10/dearmor.c:106 g10/decrypt.c:65 g10/decrypt.c:136 -#: g10/decrypt.c:153 g10/encrypt.c:239 g10/encrypt.c:678 g10/gpg.c:1401 -#: g10/import.c:364 g10/import.c:548 g10/import.c:776 g10/keygen.c:4036 +#: g10/decrypt.c:153 g10/encrypt.c:239 g10/encrypt.c:678 g10/gpg.c:1410 +#: g10/import.c:365 g10/import.c:549 g10/import.c:777 g10/keygen.c:4090 #: g10/keyring.c:1663 g10/openfile.c:195 g10/openfile.c:209 g10/plaintext.c:128 -#: g10/plaintext.c:649 g10/sign.c:990 g10/sign.c:1201 g10/sign.c:1306 +#: g10/plaintext.c:654 g10/sign.c:990 g10/sign.c:1201 g10/sign.c:1306 #: g10/sign.c:1451 g10/tdbdump.c:145 g10/tdbdump.c:153 g10/tdbio.c:758 #: g10/tdbio.c:829 g10/verify.c:96 g10/verify.c:160 sm/gpgsm.c:2160 #: sm/gpgsm.c:2190 sm/gpgsm.c:2228 sm/qualified.c:66 dirmngr/certcache.c:420 @@ -521,33 +521,33 @@ msgid "csh-style command output" msgstr "kommandoresultat i csh-stil" -#: agent/gpg-agent.c:185 g10/gpg.c:579 scd/scdaemon.c:126 sm/gpgsm.c:410 +#: agent/gpg-agent.c:185 g10/gpg.c:580 scd/scdaemon.c:126 sm/gpgsm.c:410 #: dirmngr/dirmngr.c:192 msgid "|FILE|read options from FILE" msgstr "|FIL|læs tilvalg fra FIL" -#: agent/gpg-agent.c:189 g10/gpg.c:566 scd/scdaemon.c:130 sm/gpgsm.c:259 +#: agent/gpg-agent.c:189 g10/gpg.c:567 scd/scdaemon.c:130 sm/gpgsm.c:259 #: dirmngr/dirmngr.c:196 msgid "Options controlling the diagnostic output" msgstr "Tilvalg der kontrollerer det diagnostiske resultat" -#: agent/gpg-agent.c:191 g10/gpg.c:568 g10/gpgv.c:78 kbx/kbxutil.c:88 +#: agent/gpg-agent.c:191 g10/gpg.c:569 g10/gpgv.c:78 kbx/kbxutil.c:88 #: scd/scdaemon.c:132 sm/gpgsm.c:261 dirmngr/dirmngr-client.c:70 #: dirmngr/dirmngr.c:198 tools/gpg-connect-agent.c:78 tools/gpgconf.c:110 msgid "verbose" msgstr "uddybende" -#: agent/gpg-agent.c:192 g10/gpg.c:570 g10/gpgv.c:79 kbx/kbxutil.c:89 +#: agent/gpg-agent.c:192 g10/gpg.c:571 g10/gpgv.c:79 kbx/kbxutil.c:89 #: scd/scdaemon.c:133 sm/gpgsm.c:263 dirmngr/dirmngr-client.c:71 #: dirmngr/dirmngr.c:199 msgid "be somewhat more quiet" msgstr "vær mindre uddybende" -#: agent/gpg-agent.c:200 g10/gpg.c:583 sm/gpgsm.c:276 dirmngr/dirmngr.c:209 +#: agent/gpg-agent.c:200 g10/gpg.c:584 sm/gpgsm.c:276 dirmngr/dirmngr.c:209 msgid "|FILE|write server mode logs to FILE" msgstr "|FILE|skriv servertilstandslogge til FIL" -#: agent/gpg-agent.c:204 g10/gpg.c:589 scd/scdaemon.c:147 sm/gpgsm.c:283 +#: agent/gpg-agent.c:204 g10/gpg.c:590 scd/scdaemon.c:147 sm/gpgsm.c:283 #: dirmngr/dirmngr.c:213 msgid "Options controlling the configuration" msgstr "Tilvalg der kontrollerer konfigurationen" @@ -588,7 +588,7 @@ msgid "enable putty support" msgstr "" -#: agent/gpg-agent.c:237 g10/gpg.c:831 scd/scdaemon.c:175 sm/gpgsm.c:369 +#: agent/gpg-agent.c:237 g10/gpg.c:832 scd/scdaemon.c:175 sm/gpgsm.c:369 msgid "Options controlling the security" msgstr "Tilvalg der kontrollerer sikkerheden" @@ -694,7 +694,7 @@ #. reporting address. This is so that we can change the #. reporting address without breaking the translations. #: agent/gpg-agent.c:563 agent/preset-passphrase.c:100 agent/protect-tool.c:155 -#: g10/gpg.c:1108 g10/gpgv.c:149 kbx/kbxutil.c:113 scd/scdaemon.c:313 +#: g10/gpg.c:1117 g10/gpgv.c:149 kbx/kbxutil.c:113 scd/scdaemon.c:313 #: sm/gpgsm.c:600 dirmngr/dirmngr-client.c:168 dirmngr/dirmngr.c:458 #: tools/gpg-connect-agent.c:205 tools/gpgconf.c:154 #: tools/gpg-check-pattern.c:143 @@ -719,28 +719,28 @@ "Syntaks: gpg-agent [tilvalg] [kommando [parametre]]\n" "Hemmelig nøglehåndtering for GnuPG\n" -#: agent/gpg-agent.c:619 g10/gpg.c:1304 scd/scdaemon.c:385 sm/gpgsm.c:748 +#: agent/gpg-agent.c:619 g10/gpg.c:1313 scd/scdaemon.c:385 sm/gpgsm.c:748 #: dirmngr/dirmngr.c:542 #, fuzzy, c-format #| msgid "invalid debug-level `%s' given\n" msgid "invalid debug-level '%s' given\n" msgstr "ugyldigt fejlsøgningsniveau »%s« angivet\n" -#: agent/gpg-agent.c:988 g10/gpg.c:3810 g10/gpg.c:3834 sm/gpgsm.c:1585 +#: agent/gpg-agent.c:988 g10/gpg.c:3830 g10/gpg.c:3854 sm/gpgsm.c:1585 #: sm/gpgsm.c:1591 #, c-format msgid "selected digest algorithm is invalid\n" msgstr "valgt sammendragsalgoritme er ugyldig\n" #: agent/gpg-agent.c:1216 agent/gpg-agent.c:2029 common/argparse.c:1766 -#: common/argparse.c:1858 g10/gpg.c:2517 scd/scdaemon.c:547 sm/gpgsm.c:1007 +#: common/argparse.c:1858 g10/gpg.c:2526 scd/scdaemon.c:547 sm/gpgsm.c:1007 #: dirmngr/dirmngr.c:1081 dirmngr/dirmngr.c:1937 #, fuzzy, c-format #| msgid "reading options from `%s'\n" msgid "reading options from '%s'\n" msgstr "læser tilvalg fra »%s«\n" -#: agent/gpg-agent.c:1332 g10/gpg.c:3751 scd/scdaemon.c:671 sm/gpgsm.c:1522 +#: agent/gpg-agent.c:1332 g10/gpg.c:3769 scd/scdaemon.c:671 sm/gpgsm.c:1522 #: dirmngr/dirmngr.c:1190 tools/gpg-connect-agent.c:1244 tools/gpgconf.c:677 #, fuzzy, c-format #| msgid "WARNING: \"%s\" is a deprecated option\n" @@ -880,7 +880,7 @@ "Syntaks: gpg-preset-passphrase [tilvalg] KEYGRIP\n" "Adgangskode for mellemlagervedligeholdelse\n" -#: agent/protect-tool.c:108 g10/gpg.c:441 kbx/kbxutil.c:71 sm/gpgsm.c:210 +#: agent/protect-tool.c:108 g10/gpg.c:442 kbx/kbxutil.c:71 sm/gpgsm.c:210 #: dirmngr/dirmngr.c:171 tools/gpgconf.c:80 msgid "" "@Commands:\n" @@ -1118,7 +1118,7 @@ msgid "secret key parts are not available\n" msgstr "hemmelige nøgledele er ikke tilgængelige\n" -#: agent/cvt-openpgp.c:344 g10/card-util.c:1556 +#: agent/cvt-openpgp.c:344 g10/card-util.c:1555 #, fuzzy, c-format #| msgid "protection algorithm %d%s is not supported\n" msgid "public key algorithm %d (%s) is not supported\n" @@ -1284,7 +1284,7 @@ msgid "out of core while allocating %lu bytes" msgstr "ikke nok kerne under allokering af %lu byte" -#: common/miscellaneous.c:115 g10/card-util.c:911 tools/no-libgcrypt.c:30 +#: common/miscellaneous.c:115 g10/card-util.c:910 tools/no-libgcrypt.c:30 #, c-format msgid "error allocating enough memory: %s\n" msgstr "fejl ved allokering af nok hukommelse: %s\n" @@ -1403,7 +1403,7 @@ msgstr "algoritme: %s" #: common/audit.c:774 common/audit.c:776 common/audit.c:921 common/audit.c:923 -#: scd/app-openpgp.c:3557 +#: scd/app-openpgp.c:3566 #, c-format msgid "unsupported algorithm: %s" msgstr "ikke understøttet algoritme: %s" @@ -1478,11 +1478,11 @@ msgid "Root certificate trustworthy" msgstr "Rodcertifikat er troværdigt" -#: common/audit.c:1112 sm/certchain.c:1235 +#: common/audit.c:1112 sm/certchain.c:1236 msgid "no CRL found for certificate" msgstr "ingen CRL fundet for certifikat" -#: common/audit.c:1115 sm/certchain.c:1245 +#: common/audit.c:1115 sm/certchain.c:1246 msgid "the available CRL is too old" msgstr "den tilgængelige CRL er for gammel" @@ -1614,7 +1614,7 @@ msgid "missing argument for option \"%.50s\"\n" msgstr "manglende parameter for indstilling »%.50s«\n" -#: common/argparse.c:558 g10/gpg.c:3525 +#: common/argparse.c:558 g10/gpg.c:3543 #, fuzzy, c-format #| msgid "missing argument for option \"%.50s\"\n" msgid "invalid argument for option \"%.50s\"\n" @@ -1721,92 +1721,92 @@ msgid "%s is too old (need %s, have %s)\n" msgstr "%s er for gammel (kræver %s, har %s)\n" -#: g10/armor.c:423 +#: g10/armor.c:424 #, c-format msgid "armor: %s\n" msgstr "panser: %s\n" -#: g10/armor.c:462 +#: g10/armor.c:463 #, c-format msgid "invalid armor header: " msgstr "ugyldigt panserhoved: " -#: g10/armor.c:473 +#: g10/armor.c:474 #, c-format msgid "armor header: " msgstr "panserhoved: " -#: g10/armor.c:486 +#: g10/armor.c:487 #, c-format msgid "invalid clearsig header\n" msgstr "ugyldigt clearsig-hoved\n" -#: g10/armor.c:499 +#: g10/armor.c:500 #, c-format msgid "unknown armor header: " msgstr "ukendt panserhoved: " -#: g10/armor.c:552 +#: g10/armor.c:553 #, c-format msgid "nested clear text signatures\n" msgstr "indlejrede underskrifter i klartekst\n" -#: g10/armor.c:687 +#: g10/armor.c:688 #, c-format msgid "unexpected armor: " msgstr "uventet panser: " -#: g10/armor.c:700 +#: g10/armor.c:701 #, c-format msgid "invalid dash escaped line: " msgstr "ugyldig striplet undvegen linje: " -#: g10/armor.c:872 g10/armor.c:1492 +#: g10/armor.c:873 g10/armor.c:1493 #, c-format msgid "invalid radix64 character %02X skipped\n" msgstr "ugyldigt radix64-tegn %02x udeladt\n" -#: g10/armor.c:915 +#: g10/armor.c:916 #, c-format msgid "premature eof (no CRC)\n" msgstr "for tidlig eof (ingen CRC)\n" -#: g10/armor.c:949 +#: g10/armor.c:950 #, c-format msgid "premature eof (in CRC)\n" msgstr "for tidlig eof (i CRC)\n" -#: g10/armor.c:957 +#: g10/armor.c:958 #, c-format msgid "malformed CRC\n" msgstr "ugyldig udformet CRC\n" -#: g10/armor.c:961 g10/armor.c:1529 +#: g10/armor.c:962 g10/armor.c:1530 #, c-format msgid "CRC error; %06lX - %06lX\n" msgstr "CRC-fejl; %06lx - %06lx\n" -#: g10/armor.c:981 +#: g10/armor.c:982 #, c-format msgid "premature eof (in trailer)\n" msgstr "for tidlig eof (i trailer)\n" -#: g10/armor.c:985 +#: g10/armor.c:986 #, c-format msgid "error in trailer line\n" msgstr "fejl i trailerlinje\n" -#: g10/armor.c:1305 +#: g10/armor.c:1306 #, c-format msgid "no valid OpenPGP data found.\n" msgstr "ingen gyldige OpenPGP-data fundet.\n" -#: g10/armor.c:1310 +#: g10/armor.c:1311 #, c-format msgid "invalid armor: line longer than %d characters\n" msgstr "ugyldigt panser: linje længere end %d tegn\n" -#: g10/armor.c:1314 +#: g10/armor.c:1315 #, c-format msgid "" "quoted printable character in armor - probably a buggy MTA has been used\n" @@ -1961,24 +1961,24 @@ msgid "server uses an invalid certificate" msgstr "opret et tilbagekaldscertifikat" -#: g10/call-dirmngr.c:462 g10/gpg.c:4458 +#: g10/call-dirmngr.c:462 g10/gpg.c:4478 #, fuzzy, c-format #| msgid "armor: %s\n" msgid "Note: %s\n" msgstr "panser: %s\n" -#: g10/card-util.c:86 g10/card-util.c:366 g10/card-util.c:1918 +#: g10/card-util.c:86 g10/card-util.c:366 g10/card-util.c:1917 #, c-format msgid "OpenPGP card not available: %s\n" msgstr "OpenPGP-kort er ikke tilgængeligt: %s\n" -#: g10/card-util.c:91 g10/card-util.c:1924 +#: g10/card-util.c:91 g10/card-util.c:1923 #, c-format msgid "OpenPGP card no. %s detected\n" msgstr "OpenPGP-kortnr. %s detekteret\n" -#: g10/card-util.c:97 g10/card-util.c:2253 g10/delkey.c:160 g10/keyedit.c:1423 -#: g10/keygen.c:4466 g10/revoke.c:214 g10/revoke.c:636 +#: g10/card-util.c:97 g10/card-util.c:2252 g10/delkey.c:160 g10/keyedit.c:1423 +#: g10/keygen.c:4520 g10/revoke.c:214 g10/revoke.c:636 #, c-format msgid "can't do this in batch mode\n" msgstr "kan ikke udføre dette i jobtilstand\n" @@ -1988,14 +1988,14 @@ msgid "This command is only available for version 2 cards\n" msgstr "Denne kommando er kun tilgængelig for version 2-kort\n" -#: g10/card-util.c:107 scd/app-openpgp.c:2866 +#: g10/card-util.c:107 scd/app-openpgp.c:2869 #, c-format msgid "Reset Code not or not anymore available\n" msgstr "Nulstillingskode er ikke eller ikke mere tilgængelig\n" -#: g10/card-util.c:140 g10/card-util.c:1442 g10/card-util.c:1704 -#: g10/card-util.c:1796 g10/keyedit.c:394 g10/keyedit.c:415 g10/keyedit.c:429 -#: g10/keygen.c:1808 g10/keygen.c:1980 g10/keygen.c:2186 g10/keygen.c:2477 +#: g10/card-util.c:140 g10/card-util.c:1441 g10/card-util.c:1703 +#: g10/card-util.c:1795 g10/keyedit.c:394 g10/keyedit.c:415 g10/keyedit.c:429 +#: g10/keygen.c:1862 g10/keygen.c:2034 g10/keygen.c:2240 g10/keygen.c:2531 #: sm/certreqgen-ui.c:165 sm/certreqgen-ui.c:291 sm/certreqgen-ui.c:325 msgid "Your selection? " msgstr "Dit valg? " @@ -2045,12 +2045,12 @@ msgid "Error: Combined name too long (limit is %d characters).\n" msgstr "Fejl: Kombineret navn er for langt (begrænsningen er på %d tegn).\n" -#: g10/card-util.c:826 +#: g10/card-util.c:825 msgid "URL to retrieve public key: " msgstr "Adresse hvor offentlig nøgle skal hentes: " -#: g10/card-util.c:920 g10/decrypt-data.c:509 g10/import.c:399 g10/import.c:746 -#: g10/import.c:798 dirmngr/crlcache.c:655 dirmngr/crlcache.c:660 +#: g10/card-util.c:919 g10/decrypt-data.c:509 g10/import.c:400 g10/import.c:747 +#: g10/import.c:799 dirmngr/crlcache.c:655 dirmngr/crlcache.c:660 #: dirmngr/crlcache.c:914 dirmngr/crlcache.c:920 dirmngr/dirmngr.c:1748 #: tools/gpgconf.c:483 tools/gpgconf.c:529 #, fuzzy, c-format @@ -2058,68 +2058,68 @@ msgid "error reading '%s': %s\n" msgstr "fejl ved læsning af »%s«: %s\n" -#: g10/card-util.c:953 g10/decrypt-data.c:512 g10/export.c:2467 +#: g10/card-util.c:952 g10/decrypt-data.c:512 g10/export.c:2586 #: dirmngr/crlcache.c:925 #, fuzzy, c-format #| msgid "error writing `%s': %s\n" msgid "error writing '%s': %s\n" msgstr "fejl ved skrivning af »%s«: %s\n" -#: g10/card-util.c:980 +#: g10/card-util.c:979 msgid "Login data (account name): " msgstr "Loginddata (kontonavn): " -#: g10/card-util.c:1018 +#: g10/card-util.c:1017 msgid "Private DO data: " msgstr "Private DO-data: " -#: g10/card-util.c:1103 +#: g10/card-util.c:1102 msgid "Language preferences: " msgstr "Sprogpræferencer: " -#: g10/card-util.c:1111 +#: g10/card-util.c:1110 msgid "Error: invalid length of preference string.\n" msgstr "Fejl: ugyldig længde for præferencestreng.\n" -#: g10/card-util.c:1120 +#: g10/card-util.c:1119 msgid "Error: invalid characters in preference string.\n" msgstr "Fejl: ugyldige tegn i præferencestreng.\n" -#: g10/card-util.c:1142 +#: g10/card-util.c:1141 msgid "Salutation (M = Mr., F = Ms., or space): " msgstr "" -#: g10/card-util.c:1156 +#: g10/card-util.c:1155 msgid "Error: invalid response.\n" msgstr "Fejl: ugyldigt svar.\n" -#: g10/card-util.c:1178 +#: g10/card-util.c:1177 msgid "CA fingerprint: " msgstr "CA-fingeraftryk: " -#: g10/card-util.c:1201 +#: g10/card-util.c:1200 msgid "Error: invalid formatted fingerprint.\n" msgstr "Fejl: Ugyldigt formateret fingeraftryk.\n" -#: g10/card-util.c:1252 +#: g10/card-util.c:1251 #, c-format msgid "key operation not possible: %s\n" msgstr "nøglehandling er ikke mulig: %s\n" -#: g10/card-util.c:1253 +#: g10/card-util.c:1252 msgid "not an OpenPGP card" msgstr "ikke et OpenPGP-kort" -#: g10/card-util.c:1266 g10/keygen.c:4486 g10/keygen.c:5562 +#: g10/card-util.c:1265 g10/keygen.c:4540 g10/keygen.c:5616 #, c-format msgid "error getting current key info: %s\n" msgstr "fejl ved indhentelse af aktuel nøgleinformation: %s\n" -#: g10/card-util.c:1351 +#: g10/card-util.c:1350 msgid "Replace existing key? (y/N) " msgstr "Erstat eksisterende nøgle? (j/N) " -#: g10/card-util.c:1368 +#: g10/card-util.c:1367 msgid "" "Note: There is no guarantee that the card supports the requested size.\n" " If the key generation does not succeed, please check the\n" @@ -2130,110 +2130,110 @@ " dokumentationen for dit kort for at se hvilke størrelser, der\n" " er tilladt.\n" -#: g10/card-util.c:1390 g10/keygen.c:2363 sm/certreqgen-ui.c:179 +#: g10/card-util.c:1389 g10/keygen.c:2417 sm/certreqgen-ui.c:179 #, c-format msgid "What keysize do you want? (%u) " msgstr "Hvilken nøglestørrelse ønsker du? (%u) " -#: g10/card-util.c:1400 g10/keygen.c:2286 g10/keygen.c:2318 +#: g10/card-util.c:1399 g10/keygen.c:2340 g10/keygen.c:2372 #: sm/certreqgen-ui.c:194 #, c-format msgid "rounded up to %u bits\n" msgstr "afrundet op til %u bit\n" -#: g10/card-util.c:1408 g10/keygen.c:2371 sm/certreqgen-ui.c:184 +#: g10/card-util.c:1407 g10/keygen.c:2425 sm/certreqgen-ui.c:184 #, c-format msgid "%s keysizes must be in the range %u-%u\n" msgstr "%s nøglestørrelser skal være i intervallet %u-%u\n" -#: g10/card-util.c:1427 +#: g10/card-util.c:1426 msgid "Changing card key attribute for: " msgstr "" -#: g10/card-util.c:1429 +#: g10/card-util.c:1428 #, fuzzy #| msgid " (1) Signature key\n" msgid "Signature key\n" msgstr " (1) Underskriftsnøgle\n" -#: g10/card-util.c:1431 +#: g10/card-util.c:1430 #, fuzzy #| msgid " (2) Encryption key\n" msgid "Encryption key\n" msgstr " (2) Krypteringsnøgle\n" -#: g10/card-util.c:1433 +#: g10/card-util.c:1432 #, fuzzy #| msgid " (3) Authentication key\n" msgid "Authentication key\n" msgstr " (3) Godkendelsesnøgle\n" -#: g10/card-util.c:1435 g10/keygen.c:1926 sm/certreqgen-ui.c:157 +#: g10/card-util.c:1434 g10/keygen.c:1980 sm/certreqgen-ui.c:157 msgid "Please select what kind of key you want:\n" msgstr "Vælg venligst hvilken slags nøgle du vil have:\n" -#: g10/card-util.c:1436 sm/certreqgen-ui.c:158 +#: g10/card-util.c:1435 sm/certreqgen-ui.c:158 #, c-format msgid " (%d) RSA\n" msgstr " (%d) RSA\n" -#: g10/card-util.c:1437 +#: g10/card-util.c:1436 #, fuzzy, c-format #| msgid " (%d) DSA and Elgamal\n" msgid " (%d) ECC\n" msgstr " (%d) DSA og Elgamal\n" -#: g10/card-util.c:1449 g10/card-util.c:1716 g10/card-util.c:1816 -#: g10/keyedit.c:900 g10/keygen.c:1834 g10/keygen.c:1862 g10/keygen.c:1987 -#: g10/keygen.c:2222 g10/keygen.c:2505 g10/revoke.c:838 +#: g10/card-util.c:1448 g10/card-util.c:1715 g10/card-util.c:1815 +#: g10/keyedit.c:900 g10/keygen.c:1888 g10/keygen.c:1916 g10/keygen.c:2041 +#: g10/keygen.c:2276 g10/keygen.c:2559 g10/revoke.c:838 msgid "Invalid selection.\n" msgstr "Ugyldigt valg.\n" -#: g10/card-util.c:1522 +#: g10/card-util.c:1521 #, c-format msgid "The card will now be re-configured to generate a key of %u bits\n" msgstr "Kortet vil nu blive omkonfigureret til at oprette en nøgle på %u bit\n" -#: g10/card-util.c:1527 +#: g10/card-util.c:1526 #, fuzzy, c-format #| msgid "The card will now be re-configured to generate a key of %u bits\n" msgid "The card will now be re-configured to generate a key of type: %s\n" msgstr "Kortet vil nu blive omkonfigureret til at oprette en nøgle på %u bit\n" -#: g10/card-util.c:1563 +#: g10/card-util.c:1562 #, fuzzy, c-format #| msgid "error changing size of key %d to %u bits: %s\n" msgid "error changing key attribute for key %d: %s\n" msgstr "fejl ved ændring af størrelsen på nøglen %d til %u bit: %s\n" -#: g10/card-util.c:1579 g10/card-util.c:2106 +#: g10/card-util.c:1578 g10/card-util.c:2105 #, fuzzy, c-format #| msgid "error getting current key info: %s\n" msgid "error getting card info: %s\n" msgstr "fejl ved indhentelse af aktuel nøgleinformation: %s\n" -#: g10/card-util.c:1585 g10/card-util.c:1930 g10/card-util.c:2112 +#: g10/card-util.c:1584 g10/card-util.c:1929 g10/card-util.c:2111 #, fuzzy, c-format #| msgid "This command is not allowed while in %s mode.\n" msgid "This command is not supported by this card\n" msgstr "Denne kommando er ikke tilladt i tilstanden %s.\n" -#: g10/card-util.c:1631 +#: g10/card-util.c:1630 msgid "Make off-card backup of encryption key? (Y/n) " msgstr "" "Lav sikkerhedskopi et andet sted end på kortet for krypteringsnøglen? (J/n) " -#: g10/card-util.c:1645 +#: g10/card-util.c:1644 #, fuzzy, c-format #| msgid "NOTE: keys are already stored on the card!\n" msgid "Note: keys are already stored on the card!\n" msgstr "BEMÆRK: Nøgler er allerede gemt på kortet!\n" -#: g10/card-util.c:1648 +#: g10/card-util.c:1647 msgid "Replace existing keys? (y/N) " msgstr "Erstat eksisterende nøgler (j/N) " -#: g10/card-util.c:1660 +#: g10/card-util.c:1659 #, fuzzy, c-format #| msgid "" #| "Please note that the factory settings of the PINs are\n" @@ -2248,151 +2248,151 @@ " PIN = »%s« Admin-PIN = »%s«\n" "Du bør ændre dem med kommandoen --change-pin\n" -#: g10/card-util.c:1695 +#: g10/card-util.c:1694 msgid "Please select the type of key to generate:\n" msgstr "Vælg venligst hvilken slags nøgle der skal oprettes:\n" -#: g10/card-util.c:1697 g10/card-util.c:1787 +#: g10/card-util.c:1696 g10/card-util.c:1786 msgid " (1) Signature key\n" msgstr " (1) Underskriftsnøgle\n" -#: g10/card-util.c:1698 g10/card-util.c:1789 +#: g10/card-util.c:1697 g10/card-util.c:1788 msgid " (2) Encryption key\n" msgstr " (2) Krypteringsnøgle\n" -#: g10/card-util.c:1699 g10/card-util.c:1791 +#: g10/card-util.c:1698 g10/card-util.c:1790 msgid " (3) Authentication key\n" msgstr " (3) Godkendelsesnøgle\n" -#: g10/card-util.c:1784 +#: g10/card-util.c:1783 msgid "Please select where to store the key:\n" msgstr "Vælg venligst hvor nøglen skal gemmes:\n" -#: g10/card-util.c:1830 +#: g10/card-util.c:1829 #, fuzzy, c-format #| msgid "read failed: %s\n" msgid "KEYTOCARD failed: %s\n" msgstr "læsning mislykkedes: %s\n" -#: g10/card-util.c:1935 +#: g10/card-util.c:1934 #, fuzzy, c-format #| msgid "NOTE: keys are already stored on the card!\n" msgid "Note: This command destroys all keys stored on the card!\n" msgstr "BEMÆRK: Nøgler er allerede gemt på kortet!\n" -#: g10/card-util.c:1938 +#: g10/card-util.c:1937 #, fuzzy #| msgid "Sign it? (y/N) " msgid "Continue? (y/N) " msgstr "Underskriv? (j/N) " -#: g10/card-util.c:1943 +#: g10/card-util.c:1942 msgid "Really do a factory reset? (enter \"yes\") " msgstr "" -#: g10/card-util.c:2129 +#: g10/card-util.c:2128 #, fuzzy, c-format #| msgid "error closing %s: %s\n" msgid "error for setup KDF: %s\n" msgstr "fejl ved lukning af %s: %s\n" -#: g10/card-util.c:2158 g10/keyedit.c:1260 +#: g10/card-util.c:2157 g10/keyedit.c:1260 msgid "quit this menu" msgstr "afslut denne menu" -#: g10/card-util.c:2160 +#: g10/card-util.c:2159 msgid "show admin commands" msgstr "vis administratorkommandoer" -#: g10/card-util.c:2161 g10/keyedit.c:1263 +#: g10/card-util.c:2160 g10/keyedit.c:1263 msgid "show this help" msgstr "vis denne hjælpetekst" -#: g10/card-util.c:2163 +#: g10/card-util.c:2162 msgid "list all available data" msgstr "vis alle tilgængelige data" -#: g10/card-util.c:2166 +#: g10/card-util.c:2165 msgid "change card holder's name" msgstr "ændr kortholders navn" -#: g10/card-util.c:2167 +#: g10/card-util.c:2166 msgid "change URL to retrieve key" msgstr "ændr adresse for at indhente nøgle" -#: g10/card-util.c:2168 +#: g10/card-util.c:2167 msgid "fetch the key specified in the card URL" msgstr "hent nøglen angivet i kortadressen" -#: g10/card-util.c:2169 +#: g10/card-util.c:2168 msgid "change the login name" msgstr "ændr logindnavnet" -#: g10/card-util.c:2170 +#: g10/card-util.c:2169 msgid "change the language preferences" msgstr "ændr sprogpræferencerne" -#: g10/card-util.c:2171 +#: g10/card-util.c:2170 #, fuzzy #| msgid "change card holder's sex" msgid "change card holder's salutation" msgstr "ændr kortholders køn" -#: g10/card-util.c:2173 +#: g10/card-util.c:2172 msgid "change a CA fingerprint" msgstr "ændr et CA-fingeraftryk" -#: g10/card-util.c:2174 +#: g10/card-util.c:2173 msgid "toggle the signature force PIN flag" msgstr "skift force PIN-flag for underskriften" -#: g10/card-util.c:2175 +#: g10/card-util.c:2174 msgid "generate new keys" msgstr "opret nye nøgler" -#: g10/card-util.c:2176 +#: g10/card-util.c:2175 msgid "menu to change or unblock the PIN" msgstr "menu til at ændre eller fjerne blokering for PIN'en" -#: g10/card-util.c:2177 +#: g10/card-util.c:2176 msgid "verify the PIN and list all data" msgstr "verificer PIN'en og vis alle data" -#: g10/card-util.c:2178 +#: g10/card-util.c:2177 msgid "unblock the PIN using a Reset Code" msgstr "fjern blokering for PIN'en med en nulstillingskode" -#: g10/card-util.c:2179 +#: g10/card-util.c:2178 msgid "destroy all keys and data" msgstr "" -#: g10/card-util.c:2180 +#: g10/card-util.c:2179 msgid "setup KDF for PIN authentication" msgstr "" -#: g10/card-util.c:2181 +#: g10/card-util.c:2180 #, fuzzy #| msgid "change the ownertrust" msgid "change the key attribute" msgstr "ændr ejertroværdigheden" -#: g10/card-util.c:2305 +#: g10/card-util.c:2304 msgid "gpg/card> " msgstr "gpg/card> " -#: g10/card-util.c:2346 +#: g10/card-util.c:2345 msgid "Admin-only command\n" msgstr "Kommandoer kun for administratoren\n" -#: g10/card-util.c:2377 +#: g10/card-util.c:2376 msgid "Admin commands are allowed\n" msgstr "Administratorkommandoer er tilladt\n" -#: g10/card-util.c:2379 +#: g10/card-util.c:2378 msgid "Admin commands are not allowed\n" msgstr "Administratorkommandoer er ikke tilladt\n" -#: g10/card-util.c:2482 g10/keyedit.c:2229 +#: g10/card-util.c:2481 g10/keyedit.c:2229 msgid "Invalid command (try \"help\")\n" msgstr "Ugyldig kommando (prøv »help«)\n" @@ -2401,22 +2401,22 @@ msgid "--output doesn't work for this command\n" msgstr "--output virker ikke for denne kommando\n" -#: g10/decrypt.c:247 g10/gpg.c:5155 g10/keyring.c:399 g10/keyring.c:750 +#: g10/decrypt.c:247 g10/gpg.c:5175 g10/keyring.c:399 g10/keyring.c:750 #, fuzzy, c-format #| msgid "can't open `%s'\n" msgid "can't open '%s'\n" msgstr "kan ikke åbne »%s«\n" -#: g10/delkey.c:83 g10/export.c:1947 g10/export.c:2230 g10/export.c:2351 -#: g10/getkey.c:2108 g10/gpg.c:5100 g10/keyedit.c:1445 g10/keyedit.c:2335 +#: g10/delkey.c:83 g10/export.c:2035 g10/export.c:2349 g10/export.c:2470 +#: g10/getkey.c:2108 g10/gpg.c:5120 g10/keyedit.c:1445 g10/keyedit.c:2335 #: g10/keyedit.c:2637 g10/keyedit.c:4600 g10/keylist.c:693 g10/keyserver.c:1092 #: g10/revoke.c:230 g10/tofu.c:2165 #, c-format msgid "key \"%s\" not found: %s\n" msgstr "nøglen »%s« blev ikke fundet: %s\n" -#: g10/delkey.c:92 g10/export.c:2015 g10/getkey.c:2116 g10/getkey.c:4517 -#: g10/gpg.c:5109 g10/keyedit.c:2308 g10/keyserver.c:1110 g10/revoke.c:236 +#: g10/delkey.c:92 g10/export.c:2103 g10/getkey.c:2116 g10/getkey.c:4517 +#: g10/gpg.c:5129 g10/keyedit.c:2308 g10/keyserver.c:1110 g10/revoke.c:236 #: g10/revoke.c:663 g10/tofu.c:2173 #, c-format msgid "error reading keyblock: %s\n" @@ -2540,14 +2540,14 @@ msgid "WARNING: '%s' is an empty file\n" msgstr "ADVARSEL: »%s« er en tom fil\n" -#: g10/encrypt.c:446 g10/encrypt.c:521 g10/decrypt-data.c:266 g10/gpg.c:3959 -#: g10/gpg.c:3999 sm/decrypt.c:826 sm/encrypt.c:416 sm/gpgsm.c:1609 +#: g10/encrypt.c:446 g10/encrypt.c:521 g10/decrypt-data.c:266 g10/gpg.c:3979 +#: g10/gpg.c:4019 sm/decrypt.c:826 sm/encrypt.c:416 sm/gpgsm.c:1609 #, fuzzy, c-format #| msgid "you may not use cipher algorithm `%s' while in %s mode\n" msgid "cipher algorithm '%s' may not be used in %s mode\n" msgstr "du må ikke bruge chifferalgoritmen »%s« i tilstanden %s\n" -#: g10/encrypt.c:455 g10/gpg.c:3965 g10/gpg.c:4011 g10/sig-check.c:175 +#: g10/encrypt.c:455 g10/gpg.c:3985 g10/gpg.c:4031 g10/sig-check.c:175 #: g10/sign.c:391 sm/gpgsm.c:1619 sm/gpgsm.c:1629 sm/sign.c:478 sm/verify.c:506 #, fuzzy, c-format #| msgid "you may not use digest algorithm `%s' while in %s mode\n" @@ -2672,64 +2672,70 @@ msgid "WARNING: unable to remove temp directory '%s': %s\n" msgstr "ADVARSEL: kan ikke fjerne midlertidig mappe »%s«: %s\n" -#: g10/export.c:119 +#: g10/export.c:124 msgid "export signatures that are marked as local-only" msgstr "eksportunderskrifter som er markeret som kun lokale" -#: g10/export.c:121 +#: g10/export.c:126 msgid "export attribute user IDs (generally photo IDs)" msgstr "bruger-id'er for eksportattributter (normalt billed-id'er)" -#: g10/export.c:123 +#: g10/export.c:128 msgid "export revocation keys marked as \"sensitive\"" msgstr "tilbagekaldsnøgler for eksport markeret som »sensitive«" -#: g10/export.c:125 +#: g10/export.c:130 msgid "remove unusable parts from key during export" msgstr "fjern nøgledele der ikke kan bruges under eksport" -#: g10/export.c:127 +#: g10/export.c:132 msgid "remove as much as possible from key during export" msgstr "fjern så meget som muligt fra nøglen under eksport" -#: g10/export.c:133 +#: g10/export.c:138 +#, fuzzy +#| msgid "generate a revocation certificate" +msgid "export only revocation certificates" +msgstr "opret et tilbagekaldscertifikat" + +#: g10/export.c:141 msgid "use the GnuPG key backup format" msgstr "" -#: g10/export.c:1291 +#: g10/export.c:1306 #, fuzzy #| msgid "%s: skipped: %s\n" msgid " - skipped" msgstr "%s: udelod: %s\n" -#: g10/export.c:1324 g10/import.c:2085 g10/openfile.c:200 g10/openfile.c:294 +#: g10/export.c:1339 g10/import.c:2089 g10/openfile.c:200 g10/openfile.c:294 #: g10/sign.c:1012 g10/sign.c:1326 #, fuzzy, c-format #| msgid "writing to `%s'\n" msgid "writing to '%s'\n" msgstr "skriver til »%s«\n" -#: g10/export.c:1769 +#: g10/export.c:1784 #, c-format msgid "key %s: key material on-card - skipped\n" msgstr "nøgle %s: nøglemateriale på kort - udeladt\n" -#: g10/export.c:1964 +#: g10/export.c:2052 #, c-format msgid "exporting secret keys not allowed\n" msgstr "eksport af hemmelige nøgler er ikke tilladt\n" -#: g10/export.c:2041 +#: g10/export.c:2129 #, c-format msgid "key %s: PGP 2.x style key - skipped\n" msgstr "nøgle %s: nøgle i PGP 2.x-stil - udeladt\n" -#: g10/export.c:2135 +#: g10/export.c:2254 #, c-format msgid "WARNING: nothing exported\n" msgstr "ADVARSEL: intet blev eksporteret\n" -#: g10/export.c:2432 g10/plaintext.c:153 g10/plaintext.c:162 +#: g10/export.c:2551 g10/plaintext.c:153 g10/plaintext.c:162 #: g10/plaintext.c:168 g10/plaintext.c:191 #, fuzzy, c-format #| msgid "error creating `%s': %s\n" @@ -2799,297 +2805,297 @@ msgid "using subkey %s instead of primary key %s\n" msgstr "bruger undernøgle %s i stedet for primær nøgle %s\n" -#: g10/getkey.c:4446 g10/gpg.c:2137 +#: g10/getkey.c:4446 g10/gpg.c:2146 #, fuzzy, c-format #| msgid "missing argument for option \"%.50s\"\n" msgid "valid values for option '%s':\n" msgstr "manglende parameter for indstilling »%.50s«\n" -#: g10/gpg.c:443 sm/gpgsm.c:212 +#: g10/gpg.c:444 sm/gpgsm.c:212 msgid "make a signature" msgstr "opret en underskrift" -#: g10/gpg.c:444 +#: g10/gpg.c:445 msgid "make a clear text signature" msgstr "opret en underskrift i klartekst" -#: g10/gpg.c:446 sm/gpgsm.c:214 +#: g10/gpg.c:447 sm/gpgsm.c:214 msgid "make a detached signature" msgstr "opret en separat underskrift" -#: g10/gpg.c:447 sm/gpgsm.c:215 +#: g10/gpg.c:448 sm/gpgsm.c:215 msgid "encrypt data" msgstr "krypter data" -#: g10/gpg.c:449 +#: g10/gpg.c:450 msgid "encryption only with symmetric cipher" msgstr "krypter kun med symmetrisk chiffer" -#: g10/gpg.c:451 sm/gpgsm.c:217 +#: g10/gpg.c:452 sm/gpgsm.c:217 msgid "decrypt data (default)" msgstr "afkrypter data (standard)" -#: g10/gpg.c:453 sm/gpgsm.c:218 +#: g10/gpg.c:454 sm/gpgsm.c:218 msgid "verify a signature" msgstr "godkend en underskrift" -#: g10/gpg.c:455 sm/gpgsm.c:219 +#: g10/gpg.c:456 sm/gpgsm.c:219 msgid "list keys" msgstr "vis nøgler" -#: g10/gpg.c:457 +#: g10/gpg.c:458 msgid "list keys and signatures" msgstr "vis nøgler og underskrifter" -#: g10/gpg.c:460 +#: g10/gpg.c:461 msgid "list and check key signatures" msgstr "vis og kontroller nøgleunderskrifter" -#: g10/gpg.c:462 sm/gpgsm.c:224 +#: g10/gpg.c:463 sm/gpgsm.c:224 msgid "list keys and fingerprints" msgstr "vis nøgler og fingeraftryk" -#: g10/gpg.c:463 sm/gpgsm.c:222 +#: g10/gpg.c:464 sm/gpgsm.c:222 msgid "list secret keys" msgstr "vis hemmelige nøgler" -#: g10/gpg.c:465 sm/gpgsm.c:225 +#: g10/gpg.c:466 sm/gpgsm.c:225 msgid "generate a new key pair" msgstr "opret et nyt nøglepar" -#: g10/gpg.c:468 +#: g10/gpg.c:469 #, fuzzy #| msgid "generate a new key pair" msgid "quickly generate a new key pair" msgstr "opret et nyt nøglepar" -#: g10/gpg.c:471 +#: g10/gpg.c:472 #, fuzzy #| msgid "generate a new key pair" msgid "quickly add a new user-id" msgstr "opret et nyt nøglepar" -#: g10/gpg.c:476 +#: g10/gpg.c:477 #, fuzzy #| msgid "generate a new key pair" msgid "quickly revoke a user-id" msgstr "opret et nyt nøglepar" -#: g10/gpg.c:479 +#: g10/gpg.c:480 #, fuzzy #| msgid "generate a new key pair" msgid "quickly set a new expiration date" msgstr "opret et nyt nøglepar" -#: g10/gpg.c:482 +#: g10/gpg.c:483 msgid "full featured key pair generation" msgstr "" -#: g10/gpg.c:485 +#: g10/gpg.c:486 msgid "generate a revocation certificate" msgstr "opret et tilbagekaldscertifikat" -#: g10/gpg.c:488 sm/gpgsm.c:228 +#: g10/gpg.c:489 sm/gpgsm.c:228 msgid "remove keys from the public keyring" msgstr "fjern nøgler fra den offentlige nøglering" -#: g10/gpg.c:490 +#: g10/gpg.c:491 msgid "remove keys from the secret keyring" msgstr "fjern nøgler fra den hemmelige nøglering" -#: g10/gpg.c:492 +#: g10/gpg.c:493 #, fuzzy #| msgid "sign a key" msgid "quickly sign a key" msgstr "underskriv en nøgle" -#: g10/gpg.c:494 +#: g10/gpg.c:495 #, fuzzy #| msgid "sign a key locally" msgid "quickly sign a key locally" msgstr "underskriv en nøgle lokalt" -#: g10/gpg.c:496 +#: g10/gpg.c:497 #, fuzzy #| msgid "generate a new key pair" msgid "quickly revoke a key signature" msgstr "opret et nyt nøglepar" -#: g10/gpg.c:497 +#: g10/gpg.c:498 msgid "sign a key" msgstr "underskriv en nøgle" -#: g10/gpg.c:498 +#: g10/gpg.c:499 msgid "sign a key locally" msgstr "underskriv en nøgle lokalt" -#: g10/gpg.c:499 +#: g10/gpg.c:500 msgid "sign or edit a key" msgstr "underskriv eller rediger en nøgle" -#: g10/gpg.c:501 sm/gpgsm.c:246 +#: g10/gpg.c:502 sm/gpgsm.c:246 msgid "change a passphrase" msgstr "ændr en adgangsfrase" -#: g10/gpg.c:505 +#: g10/gpg.c:506 msgid "export keys" msgstr "eksporter nøgler" -#: g10/gpg.c:506 +#: g10/gpg.c:507 msgid "export keys to a keyserver" msgstr "eksporter nøgler til en nøgletjener" -#: g10/gpg.c:507 +#: g10/gpg.c:508 msgid "import keys from a keyserver" msgstr "importer nøgler fra en nøgleserver" -#: g10/gpg.c:510 +#: g10/gpg.c:511 msgid "search for keys on a keyserver" msgstr "søg efter nøgler på en nøgleserver" -#: g10/gpg.c:512 +#: g10/gpg.c:513 msgid "update all keys from a keyserver" msgstr "opdater alle nøgler fra en nøgleserver" -#: g10/gpg.c:520 +#: g10/gpg.c:521 msgid "import/merge keys" msgstr "importer/sammenføj nøgler" -#: g10/gpg.c:523 +#: g10/gpg.c:524 msgid "print the card status" msgstr "udskriv kortstatus" -#: g10/gpg.c:524 +#: g10/gpg.c:525 msgid "change data on a card" msgstr "ændr data på et kort" -#: g10/gpg.c:526 +#: g10/gpg.c:527 msgid "change a card's PIN" msgstr "ændr et korts PIN" -#: g10/gpg.c:538 +#: g10/gpg.c:539 msgid "update the trust database" msgstr "opdater troværdighedsdatabasen" -#: g10/gpg.c:548 +#: g10/gpg.c:549 msgid "print message digests" msgstr "vis beskedsammendrag" -#: g10/gpg.c:552 sm/gpgsm.c:241 +#: g10/gpg.c:553 sm/gpgsm.c:241 msgid "run in server mode" msgstr "kør i servertilstand" -#: g10/gpg.c:554 +#: g10/gpg.c:555 msgid "|VALUE|set the TOFU policy for a key" msgstr "" -#: g10/gpg.c:594 +#: g10/gpg.c:595 msgid "|NAME|use NAME as default secret key" msgstr "|NAME|brug NAVN som hemmelig standardnøgle" -#: g10/gpg.c:596 sm/gpgsm.c:332 +#: g10/gpg.c:597 sm/gpgsm.c:332 msgid "|NAME|encrypt to user ID NAME as well" msgstr "|NAME|krypter også til bruger-id-NAVN" -#: g10/gpg.c:604 +#: g10/gpg.c:605 msgid "|SPEC|set up email aliases" msgstr "|SPEC|opsæt e-post-aliasser" -#: g10/gpg.c:616 +#: g10/gpg.c:617 msgid "use strict OpenPGP behavior" msgstr "brug streng OpenPGP-opførsel" -#: g10/gpg.c:641 kbx/kbxutil.c:90 sm/gpgsm.c:412 tools/gpgconf.c:112 +#: g10/gpg.c:642 kbx/kbxutil.c:90 sm/gpgsm.c:412 tools/gpgconf.c:112 msgid "do not make any changes" msgstr "lav ingen ændringer" -#: g10/gpg.c:642 +#: g10/gpg.c:643 msgid "prompt before overwriting" msgstr "spørg før overskrivning" -#: g10/gpg.c:689 sm/gpgsm.c:304 +#: g10/gpg.c:690 sm/gpgsm.c:304 #, fuzzy #| msgid "Options controlling the security" msgid "Options controlling the input" msgstr "Tilvalg der kontrollerer sikkerheden" -#: g10/gpg.c:707 sm/gpgsm.c:314 +#: g10/gpg.c:708 sm/gpgsm.c:314 #, fuzzy #| msgid "Options controlling the diagnostic output" msgid "Options controlling the output" msgstr "Tilvalg der kontrollerer det diagnostiske resultat" -#: g10/gpg.c:709 sm/gpgsm.c:316 +#: g10/gpg.c:710 sm/gpgsm.c:316 msgid "create ascii armored output" msgstr "opret ascii-pansrede uddata" -#: g10/gpg.c:713 g10/gpgv.c:82 sm/gpgsm.c:321 +#: g10/gpg.c:714 g10/gpgv.c:82 sm/gpgsm.c:321 msgid "|FILE|write output to FILE" msgstr "|FILE|skriv resultat til FIL" -#: g10/gpg.c:726 +#: g10/gpg.c:727 msgid "use canonical text mode" msgstr "brug kanonisk teksttilstand" -#: g10/gpg.c:743 +#: g10/gpg.c:744 msgid "|N|set compress level to N (0 disables)" msgstr "|N|sæt komprimeringsniveauet til N (0 deaktiverer)" -#: g10/gpg.c:750 sm/gpgsm.c:347 +#: g10/gpg.c:751 sm/gpgsm.c:347 #, fuzzy #| msgid "Options controlling the interactivity and enforcement" msgid "Options controlling key import and export" msgstr "Tilvalg der kontrollerer interaktiviteten og tvang" -#: g10/gpg.c:753 +#: g10/gpg.c:754 msgid "|MECHANISMS|use MECHANISMS to locate keys by mail address" msgstr "|MECHANISMS|brug MEKANISMER til at finde nøgler efter postadresser" -#: g10/gpg.c:756 +#: g10/gpg.c:757 #, fuzzy #| msgid "import keys from a keyserver" msgid "import missing key from a signature" msgstr "importer nøgler fra en nøgleserver" -#: g10/gpg.c:761 +#: g10/gpg.c:762 #, fuzzy #| msgid "list and check key signatures" msgid "include the public key in signatures" msgstr "vis og kontroller nøgleunderskrifter" -#: g10/gpg.c:764 sm/gpgsm.c:350 +#: g10/gpg.c:765 sm/gpgsm.c:350 msgid "disable all access to the dirmngr" msgstr "deaktiver al adgang til dirmngr" -#: g10/gpg.c:776 sm/gpgsm.c:357 +#: g10/gpg.c:777 sm/gpgsm.c:357 #, fuzzy #| msgid "Options controlling the configuration" msgid "Options controlling key listings" msgstr "Tilvalg der kontrollerer konfigurationen" -#: g10/gpg.c:805 sm/gpgsm.c:324 +#: g10/gpg.c:806 sm/gpgsm.c:324 #, fuzzy #| msgid "list secret keys" msgid "Options to specify keys" msgstr "vis hemmelige nøgler" -#: g10/gpg.c:807 sm/gpgsm.c:326 +#: g10/gpg.c:808 sm/gpgsm.c:326 msgid "|USER-ID|encrypt for USER-ID" msgstr "|USER-ID|krypter for BRUGER-ID" -#: g10/gpg.c:815 sm/gpgsm.c:328 +#: g10/gpg.c:816 sm/gpgsm.c:328 msgid "|USER-ID|use USER-ID to sign or decrypt" msgstr "|USER-ID|brug BRUGER-ID til at underskrive eller afkryptere" -#: g10/gpg.c:866 sm/gpgsm.c:396 +#: g10/gpg.c:867 sm/gpgsm.c:396 msgid "Options for unattended use" msgstr "" -#: g10/gpg.c:885 sm/gpgsm.c:408 dirmngr/dirmngr.c:294 +#: g10/gpg.c:886 sm/gpgsm.c:408 dirmngr/dirmngr.c:294 msgid "Other options" msgstr "" -#: g10/gpg.c:953 sm/gpgsm.c:440 +#: g10/gpg.c:955 sm/gpgsm.c:440 msgid "" "@\n" "(See the man page for a complete listing of all commands and options)\n" @@ -3097,7 +3103,7 @@ "@\n" "(Se manualsiden for en fuldstændig liste over alle kommandoer og tilvalg)\n" -#: g10/gpg.c:956 +#: g10/gpg.c:958 #, fuzzy #| msgid "" #| "@\n" @@ -3127,14 +3133,14 @@ " --list-keys [navne] vis nøgler\n" " --fingerprint [navne] vis fingeraftryk\n" -#: g10/gpg.c:1130 +#: g10/gpg.c:1139 #, fuzzy #| msgid "Usage: gpg [options] [files] (-h for help)" msgid "Usage: @GPG@ [options] [files] (-h for help)" msgstr "Brug: gpg [flag] [filer] (-h for hjælp)" # Skal alt dette oversættes eller er det tilvalgene? -#: g10/gpg.c:1133 +#: g10/gpg.c:1142 #, fuzzy #| msgid "" #| "Syntax: gpg [options] [files]\n" @@ -3149,7 +3155,7 @@ "Sign, check, encrypt eller decrypt\n" "standardhandling afhænger af inddata\n" -#: g10/gpg.c:1144 sm/gpgsm.c:624 +#: g10/gpg.c:1153 sm/gpgsm.c:624 msgid "" "\n" "Supported algorithms:\n" @@ -3157,82 +3163,82 @@ "\n" "Understøttede algoritmer:\n" -#: g10/gpg.c:1147 +#: g10/gpg.c:1156 msgid "Pubkey: " msgstr "Pubkey: " -#: g10/gpg.c:1154 g10/keyedit.c:3338 +#: g10/gpg.c:1163 g10/keyedit.c:3338 msgid "Cipher: " msgstr "Chiffer: " -#: g10/gpg.c:1161 +#: g10/gpg.c:1170 msgid "Hash: " msgstr "Hash: " -#: g10/gpg.c:1168 g10/keyedit.c:3404 +#: g10/gpg.c:1177 g10/keyedit.c:3404 msgid "Compression: " msgstr "Komprimering: " -#: g10/gpg.c:1241 sm/gpgsm.c:698 +#: g10/gpg.c:1250 sm/gpgsm.c:698 #, fuzzy, c-format #| msgid "usage: gpgsm [options] " msgid "usage: %s [options] %s\n" msgstr "brug: gpgsm [tilvalg] " -#: g10/gpg.c:1436 sm/gpgsm.c:791 +#: g10/gpg.c:1445 sm/gpgsm.c:791 #, c-format msgid "conflicting commands\n" msgstr "kommandoer er i konflikt\n" -#: g10/gpg.c:1454 +#: g10/gpg.c:1463 #, fuzzy, c-format #| msgid "no = sign found in group definition `%s'\n" msgid "no = sign found in group definition '%s'\n" msgstr "ingen = tegn fundet i gruppedefinition »%s«\n" -#: g10/gpg.c:1652 +#: g10/gpg.c:1661 #, fuzzy, c-format #| msgid "WARNING: unsafe ownership on homedir `%s'\n" msgid "WARNING: unsafe ownership on homedir '%s'\n" msgstr "ADVARSEL: Usikker ejerskab af hjemmemappe »%s«\n" -#: g10/gpg.c:1655 +#: g10/gpg.c:1664 #, fuzzy, c-format #| msgid "WARNING: unsafe ownership on configuration file `%s'\n" msgid "WARNING: unsafe ownership on configuration file '%s'\n" msgstr "ADVARSEL: Usikker ejerskab på konfigurationsfil »%s«\n" -#: g10/gpg.c:1658 +#: g10/gpg.c:1667 #, fuzzy, c-format #| msgid "WARNING: unsafe ownership on extension `%s'\n" msgid "WARNING: unsafe ownership on extension '%s'\n" msgstr "ADVARSEL: Usikker ejerskab på udvidelse »%s«\n" -#: g10/gpg.c:1664 +#: g10/gpg.c:1673 #, fuzzy, c-format #| msgid "WARNING: unsafe permissions on homedir `%s'\n" msgid "WARNING: unsafe permissions on homedir '%s'\n" msgstr "ADVARSEL: Usikre rettigheder på hjemmemappe »%s«\n" -#: g10/gpg.c:1667 +#: g10/gpg.c:1676 #, fuzzy, c-format #| msgid "WARNING: unsafe permissions on configuration file `%s'\n" msgid "WARNING: unsafe permissions on configuration file '%s'\n" msgstr "ADVARSEL: Usikre rettigheder på konfigurationsfil »%s«\n" -#: g10/gpg.c:1670 +#: g10/gpg.c:1679 #, fuzzy, c-format #| msgid "WARNING: unsafe permissions on extension `%s'\n" msgid "WARNING: unsafe permissions on extension '%s'\n" msgstr "ADVARSEL: Usikre rettigheder på udvidelse »%s«\n" -#: g10/gpg.c:1676 +#: g10/gpg.c:1685 #, fuzzy, c-format #| msgid "WARNING: unsafe enclosing directory ownership on homedir `%s'\n" msgid "WARNING: unsafe enclosing directory ownership on homedir '%s'\n" msgstr "ADVARSEL: Usikkert indelukket mappeejerskab på hjemmemappe »%s«\n" -#: g10/gpg.c:1679 +#: g10/gpg.c:1688 #, fuzzy, c-format #| msgid "" #| "WARNING: unsafe enclosing directory ownership on configuration file `%s'\n" @@ -3241,19 +3247,19 @@ msgstr "" "ADVARSEL: Usikkert indelukket mappeejerskab på konfigurationsfil »%s«\n" -#: g10/gpg.c:1682 +#: g10/gpg.c:1691 #, fuzzy, c-format #| msgid "WARNING: unsafe enclosing directory ownership on extension `%s'\n" msgid "WARNING: unsafe enclosing directory ownership on extension '%s'\n" msgstr "ADVARSEL: Usikkert indelukket mappeejerskab på udvidelse »%s«\n" -#: g10/gpg.c:1688 +#: g10/gpg.c:1697 #, fuzzy, c-format #| msgid "WARNING: unsafe enclosing directory permissions on homedir `%s'\n" msgid "WARNING: unsafe enclosing directory permissions on homedir '%s'\n" msgstr "ADVARSEL: Usikre indelukkede mapperettigheder på hjemmemappe »%s«\n" -#: g10/gpg.c:1691 +#: g10/gpg.c:1700 #, fuzzy, c-format #| msgid "" #| "WARNING: unsafe enclosing directory permissions on configuration file `" @@ -3263,470 +3269,470 @@ msgstr "" "ADVARSEL: Usikre indelukkede mapperettigheder på konfigurationsfil »%s«\n" -#: g10/gpg.c:1694 +#: g10/gpg.c:1703 #, fuzzy, c-format #| msgid "WARNING: unsafe enclosing directory permissions on extension `%s'\n" msgid "WARNING: unsafe enclosing directory permissions on extension '%s'\n" msgstr "ADVARSEL: Usikkert indelukket mapperettigheder på udvidelse »%s«\n" -#: g10/gpg.c:1910 +#: g10/gpg.c:1919 #, fuzzy, c-format #| msgid "unknown configuration item `%s'\n" msgid "unknown configuration item '%s'\n" msgstr "ukendt konfigurationspunkt »%s«\n" -#: g10/gpg.c:2009 +#: g10/gpg.c:2018 msgid "display photo IDs during key listings" msgstr "vis billed-id'er under nøglevisninger" -#: g10/gpg.c:2011 +#: g10/gpg.c:2020 #, fuzzy #| msgid "show user ID validity during key listings" msgid "show key usage information during key listings" msgstr "vis bruger-id-validitet under nøglevisninger" -#: g10/gpg.c:2013 +#: g10/gpg.c:2022 msgid "show policy URLs during signature listings" msgstr "vil politikadresser under underskriftvisninger" -#: g10/gpg.c:2015 +#: g10/gpg.c:2024 msgid "show all notations during signature listings" msgstr "vis alle notationer under underskriftvisninger" -#: g10/gpg.c:2017 +#: g10/gpg.c:2026 msgid "show IETF standard notations during signature listings" msgstr "vis IETF-standardnotationer under underskriftvisninger" -#: g10/gpg.c:2021 +#: g10/gpg.c:2030 msgid "show user-supplied notations during signature listings" msgstr "vis brugerangivne notationer under underskriftvisninger" -#: g10/gpg.c:2023 +#: g10/gpg.c:2032 msgid "show preferred keyserver URLs during signature listings" msgstr "vis foretrukne nøgleserveradresser under underskriftvisninger" -#: g10/gpg.c:2025 +#: g10/gpg.c:2034 msgid "show user ID validity during key listings" msgstr "vis bruger-id-validitet under nøglevisninger" -#: g10/gpg.c:2027 +#: g10/gpg.c:2036 msgid "show revoked and expired user IDs in key listings" msgstr "vis tilbagekaldte og udløbne bruger-id'er i nøglevisninger" -#: g10/gpg.c:2029 +#: g10/gpg.c:2038 msgid "show revoked and expired subkeys in key listings" msgstr "vis tilbagekaldte og udløbne undernøgler i nøglevisninger" -#: g10/gpg.c:2031 +#: g10/gpg.c:2040 msgid "show the keyring name in key listings" msgstr "vis nøgleringsnavnet i nøglevisninger" -#: g10/gpg.c:2033 +#: g10/gpg.c:2042 msgid "show expiration dates during signature listings" msgstr "vis udløbsdatoer under underskriftvisninger" -#: g10/gpg.c:2148 +#: g10/gpg.c:2157 #, fuzzy, c-format #| msgid "unknown option `%s'\n" msgid "unknown TOFU policy '%s'\n" msgstr "ukendt tilvalg »%s«\n" -#: g10/gpg.c:2150 +#: g10/gpg.c:2159 #, c-format msgid "(use \"help\" to list choices)\n" msgstr "" -#: g10/gpg.c:2240 g10/keyedit.c:1719 +#: g10/gpg.c:2249 g10/keyedit.c:1719 #, c-format msgid "This command is not allowed while in %s mode.\n" msgstr "Denne kommando er ikke tilladt i tilstanden %s.\n" -#: g10/gpg.c:2878 g10/gpg.c:3718 g10/gpg.c:3730 +#: g10/gpg.c:2896 g10/gpg.c:3736 g10/gpg.c:3748 #, fuzzy, c-format #| msgid "NOTE: %s is not for normal use!\n" msgid "Note: %s is not for normal use!\n" msgstr "BEMÆRK: %s er ikke til normal brug!\n" -#: g10/gpg.c:3053 g10/gpg.c:3065 +#: g10/gpg.c:3071 g10/gpg.c:3083 #, fuzzy, c-format #| msgid "`%s' is not a valid signature expiration\n" msgid "'%s' is not a valid signature expiration\n" msgstr "»%s« er ikke et gyldigt underskriftudløb\n" -#: g10/gpg.c:3087 +#: g10/gpg.c:3105 #, fuzzy, c-format #| msgid "line %d: not a valid email address\n" msgid "\"%s\" is not a proper mail address\n" msgstr "linje %d: ikke en gyldig e-post-adresse\n" -#: g10/gpg.c:3119 sm/gpgsm.c:1121 +#: g10/gpg.c:3137 sm/gpgsm.c:1121 #, fuzzy, c-format #| msgid "invalid country code in `%s', line %d\n" msgid "invalid pinentry mode '%s'\n" msgstr "ugyldig landekode i »%s«, linje %d\n" -#: g10/gpg.c:3125 sm/gpgsm.c:1127 +#: g10/gpg.c:3143 sm/gpgsm.c:1127 #, fuzzy, c-format #| msgid "missing argument for option \"%.50s\"\n" msgid "invalid request origin '%s'\n" msgstr "manglende parameter for indstilling »%.50s«\n" -#: g10/gpg.c:3179 +#: g10/gpg.c:3197 #, fuzzy, c-format #| msgid "`%s' is not a valid character set\n" msgid "'%s' is not a valid character set\n" msgstr "»%s« er ikke et gyldigt tegnsæt\n" -#: g10/gpg.c:3201 g10/gpg.c:3415 g10/keyedit.c:5338 +#: g10/gpg.c:3219 g10/gpg.c:3433 g10/keyedit.c:5338 #, c-format msgid "could not parse keyserver URL\n" msgstr "kunne ikke fortolke nøgleserveradresse\n" -#: g10/gpg.c:3219 +#: g10/gpg.c:3237 #, c-format msgid "%s:%d: invalid keyserver options\n" msgstr "%s:%d: ugyldige indstillinger for nøgleserver\n" -#: g10/gpg.c:3222 +#: g10/gpg.c:3240 #, c-format msgid "invalid keyserver options\n" msgstr "ugyldige indstillinger for nøgleserver\n" -#: g10/gpg.c:3229 +#: g10/gpg.c:3247 #, c-format msgid "%s:%d: invalid import options\n" msgstr "%s:%d: ugyldige importindstillinger\n" -#: g10/gpg.c:3232 +#: g10/gpg.c:3250 #, c-format msgid "invalid import options\n" msgstr "ugyldige importindstillinger\n" -#: g10/gpg.c:3238 g10/gpg.c:3253 +#: g10/gpg.c:3256 g10/gpg.c:3271 #, fuzzy, c-format #| msgid "invalid list options\n" msgid "invalid filter option: %s\n" msgstr "ugyldige listeindstillinger\n" -#: g10/gpg.c:3244 +#: g10/gpg.c:3262 #, c-format msgid "%s:%d: invalid export options\n" msgstr "%s:%d: ugyldige eksportindstillinger\n" -#: g10/gpg.c:3247 +#: g10/gpg.c:3265 #, c-format msgid "invalid export options\n" msgstr "ugyldige eksportindstillinger\n" -#: g10/gpg.c:3259 +#: g10/gpg.c:3277 #, c-format msgid "%s:%d: invalid list options\n" msgstr "%s:%d: ugyldige listeindstillinger\n" -#: g10/gpg.c:3262 +#: g10/gpg.c:3280 #, c-format msgid "invalid list options\n" msgstr "ugyldige listeindstillinger\n" -#: g10/gpg.c:3270 +#: g10/gpg.c:3288 msgid "display photo IDs during signature verification" msgstr "vis billed-id'er under underskriftverificering" -#: g10/gpg.c:3272 +#: g10/gpg.c:3290 msgid "show policy URLs during signature verification" msgstr "vis politikadresser under underskriftverificering" -#: g10/gpg.c:3274 +#: g10/gpg.c:3292 msgid "show all notations during signature verification" msgstr "vis alle notationer under underskriftverificering" -#: g10/gpg.c:3276 +#: g10/gpg.c:3294 msgid "show IETF standard notations during signature verification" msgstr "vis IETF-standardnotationer under underskriftverificering" -#: g10/gpg.c:3280 +#: g10/gpg.c:3298 msgid "show user-supplied notations during signature verification" msgstr "vis brugerangivne notationer under underskriftverificering" -#: g10/gpg.c:3282 +#: g10/gpg.c:3300 msgid "show preferred keyserver URLs during signature verification" msgstr "vis foretrukne nøgleserveradresser under underskriftverificering" -#: g10/gpg.c:3284 +#: g10/gpg.c:3302 msgid "show user ID validity during signature verification" msgstr "vis bruger-id-validitet under underskriftverificering" -#: g10/gpg.c:3286 +#: g10/gpg.c:3304 msgid "show revoked and expired user IDs in signature verification" msgstr "vis tilbagekaldte og udløbne bruger-id'er i underskriftverificering" -#: g10/gpg.c:3288 +#: g10/gpg.c:3306 msgid "show only the primary user ID in signature verification" msgstr "vis kun den primære bruger-id i underskriftverificering" -#: g10/gpg.c:3290 +#: g10/gpg.c:3308 msgid "validate signatures with PKA data" msgstr "valider underskrifter med PKA-data" -#: g10/gpg.c:3292 +#: g10/gpg.c:3310 msgid "elevate the trust of signatures with valid PKA data" msgstr "hæv troværdigheden for underskrifter med gyldige PKA-data" -#: g10/gpg.c:3299 +#: g10/gpg.c:3317 #, c-format msgid "%s:%d: invalid verify options\n" msgstr "%s:%d: ugyldige verificeringsindstillinger\n" -#: g10/gpg.c:3302 +#: g10/gpg.c:3320 #, c-format msgid "invalid verify options\n" msgstr "ugyldige verificeringsindstillinger\n" -#: g10/gpg.c:3309 +#: g10/gpg.c:3327 #, c-format msgid "unable to set exec-path to %s\n" msgstr "kunne ikke angive kørselssti til %s\n" -#: g10/gpg.c:3513 +#: g10/gpg.c:3531 #, c-format msgid "%s:%d: invalid auto-key-locate list\n" msgstr "%s:%d: ugyldig liste for auto-key-locate\n" -#: g10/gpg.c:3516 +#: g10/gpg.c:3534 #, c-format msgid "invalid auto-key-locate list\n" msgstr "ugyldig liste for auto-key-locate\n" -#: g10/gpg.c:3700 sm/gpgsm.c:1492 +#: g10/gpg.c:3718 sm/gpgsm.c:1492 #, c-format msgid "WARNING: program may create a core file!\n" msgstr "ADVARSEL: program kan oprette en kernefil!\n" -#: g10/gpg.c:3711 +#: g10/gpg.c:3729 #, c-format msgid "WARNING: %s overrides %s\n" msgstr "ADVARSEL: %s overskriver %s\n" -#: g10/gpg.c:3720 +#: g10/gpg.c:3738 #, c-format msgid "%s not allowed with %s!\n" msgstr "%s ikke tilladt med %s!\n" -#: g10/gpg.c:3723 +#: g10/gpg.c:3741 #, c-format msgid "%s makes no sense with %s!\n" msgstr "%s er meningsløs sammen med %s!\n" -#: g10/gpg.c:3738 sm/gpgsm.c:1509 dirmngr/dirmngr.c:1205 +#: g10/gpg.c:3756 sm/gpgsm.c:1509 dirmngr/dirmngr.c:1205 #, c-format msgid "WARNING: running with faked system time: " msgstr "ADVARSEL: kører med forfalsket systemtid: " -#: g10/gpg.c:3759 +#: g10/gpg.c:3777 #, c-format msgid "will not run with insecure memory due to %s\n" msgstr "vil ikke køre med usikker hukommelse på grund af %s\n" -#: g10/gpg.c:3804 g10/gpg.c:3828 sm/gpgsm.c:1579 +#: g10/gpg.c:3824 g10/gpg.c:3848 sm/gpgsm.c:1579 #, c-format msgid "selected cipher algorithm is invalid\n" msgstr "valgt chifferalgoritme er ugyldig\n" -#: g10/gpg.c:3816 +#: g10/gpg.c:3836 #, c-format msgid "selected compression algorithm is invalid\n" msgstr "valgt komprimeringsalgoritme er ugyldig\n" -#: g10/gpg.c:3822 +#: g10/gpg.c:3842 #, c-format msgid "selected certification digest algorithm is invalid\n" msgstr "valgt algoritme for certifikationssammendrag er ugyldig\n" -#: g10/gpg.c:3837 +#: g10/gpg.c:3857 #, c-format msgid "completes-needed must be greater than 0\n" msgstr "completes-needed skal være større end 0\n" -#: g10/gpg.c:3839 +#: g10/gpg.c:3859 #, c-format msgid "marginals-needed must be greater than 1\n" msgstr "marginals-needed skal være større end 1\n" -#: g10/gpg.c:3841 +#: g10/gpg.c:3861 #, c-format msgid "max-cert-depth must be in the range from 1 to 255\n" msgstr "max-cert-depth skal være i intervallet fra 1 til 255\n" -#: g10/gpg.c:3843 +#: g10/gpg.c:3863 #, c-format msgid "invalid default-cert-level; must be 0, 1, 2, or 3\n" msgstr "ugyldigt default-cert-level; skal være 0, 1, 2 eller 3\n" -#: g10/gpg.c:3845 +#: g10/gpg.c:3865 #, c-format msgid "invalid min-cert-level; must be 1, 2, or 3\n" msgstr "ugyldigt min-cert-level; skal være 1, 2 eller 3\n" -#: g10/gpg.c:3849 +#: g10/gpg.c:3869 #, fuzzy, c-format #| msgid "NOTE: simple S2K mode (0) is strongly discouraged\n" msgid "Note: simple S2K mode (0) is strongly discouraged\n" msgstr "BEMÆRK: simpel S2K-tilstand (0) frarådes på det skarpeste\n" -#: g10/gpg.c:3853 +#: g10/gpg.c:3873 #, c-format msgid "invalid S2K mode; must be 0, 1 or 3\n" msgstr "ugyldig S2K-tilstand; skal være 0, 1 eller 3\n" -#: g10/gpg.c:3860 +#: g10/gpg.c:3880 #, c-format msgid "invalid default preferences\n" msgstr "ugyldige standardpræferencer\n" -#: g10/gpg.c:3864 +#: g10/gpg.c:3884 #, c-format msgid "invalid personal cipher preferences\n" msgstr "ugyldige præferencer for personlig chiffer\n" -#: g10/gpg.c:3868 +#: g10/gpg.c:3888 #, c-format msgid "invalid personal digest preferences\n" msgstr "ugyldige præferencer for personlig sammendrag\n" -#: g10/gpg.c:3872 +#: g10/gpg.c:3892 #, c-format msgid "invalid personal compress preferences\n" msgstr "ugyldige præferencer for personlig komprimering\n" -#: g10/gpg.c:3908 +#: g10/gpg.c:3928 #, c-format msgid "%s does not yet work with %s\n" msgstr "%s virker endnu ikke med %s\n" -#: g10/gpg.c:3971 +#: g10/gpg.c:3991 #, fuzzy, c-format #| msgid "you may not use compression algorithm `%s' while in %s mode\n" msgid "compression algorithm '%s' may not be used in %s mode\n" msgstr "du må ikke bruge komprimeringsalgoritmen »%s« i tilstanden %s\n" -#: g10/gpg.c:4115 +#: g10/gpg.c:4135 #, c-format msgid "failed to initialize the TrustDB: %s\n" msgstr "kunne ikke initialisere TrustDB: %s\n" -#: g10/gpg.c:4127 +#: g10/gpg.c:4147 #, c-format msgid "WARNING: recipients (-r) given without using public key encryption\n" msgstr "" "ADVARSEL: modtagere (-r) angivet uden brug af offentlig nøglekryptering\n" -#: g10/gpg.c:4199 +#: g10/gpg.c:4219 #, fuzzy, c-format #| msgid "symmetric encryption of `%s' failed: %s\n" msgid "symmetric encryption of '%s' failed: %s\n" msgstr "symmetrisk kryptering af »%s« mislykkedes: %s\n" -#: g10/gpg.c:4228 +#: g10/gpg.c:4248 #, c-format msgid "you cannot use --symmetric --encrypt with --s2k-mode 0\n" msgstr "du kan ikke bruge --symmetric --encrypt med --s2k-mode 0\n" -#: g10/gpg.c:4231 +#: g10/gpg.c:4251 #, fuzzy, c-format #| msgid "you cannot use --symmetric --encrypt while in %s mode\n" msgid "you cannot use --symmetric --encrypt in %s mode\n" msgstr "du kan ikke bruge --symmetric --encrypt i tilstanden %s\n" -#: g10/gpg.c:4289 +#: g10/gpg.c:4309 #, c-format msgid "you cannot use --symmetric --sign --encrypt with --s2k-mode 0\n" msgstr "du kan ikke bruge --symmetric --sign --encrypt med --s2k-mode 0\n" -#: g10/gpg.c:4292 +#: g10/gpg.c:4312 #, fuzzy, c-format #| msgid "you cannot use --symmetric --sign --encrypt while in %s mode\n" msgid "you cannot use --symmetric --sign --encrypt in %s mode\n" msgstr "du kan ikke bruge --symmetric --sign --encrypt i tilstanden %s\n" -#: g10/gpg.c:4692 g10/keyserver.c:1648 +#: g10/gpg.c:4712 g10/keyserver.c:1648 #, c-format msgid "keyserver send failed: %s\n" msgstr "nøgleserver send mislykkedes: %s\n" -#: g10/gpg.c:4697 +#: g10/gpg.c:4717 #, c-format msgid "keyserver receive failed: %s\n" msgstr "nøgleserver modtag mislykkedes: %s\n" -#: g10/gpg.c:4703 +#: g10/gpg.c:4723 #, c-format msgid "key export failed: %s\n" msgstr "nøgleeksport mislykkedes: %s\n" -#: g10/gpg.c:4716 +#: g10/gpg.c:4736 #, fuzzy, c-format #| msgid "key export failed: %s\n" msgid "export as ssh key failed: %s\n" msgstr "nøgleeksport mislykkedes: %s\n" -#: g10/gpg.c:4728 +#: g10/gpg.c:4748 #, c-format msgid "keyserver search failed: %s\n" msgstr "nøgleserver søg mislykkedes: %s\n" -#: g10/gpg.c:4741 +#: g10/gpg.c:4761 #, c-format msgid "keyserver refresh failed: %s\n" msgstr "nøgleserver opdater mislykkedes: %s\n" -#: g10/gpg.c:4810 +#: g10/gpg.c:4830 #, c-format msgid "dearmoring failed: %s\n" msgstr "fjernelse af panser mislykkedes: %s\n" -#: g10/gpg.c:4821 +#: g10/gpg.c:4841 #, c-format msgid "enarmoring failed: %s\n" msgstr "påklædning af panser mislykkedes: %s\n" -#: g10/gpg.c:4913 +#: g10/gpg.c:4933 #, fuzzy, c-format #| msgid "invalid hash algorithm `%s'\n" msgid "invalid hash algorithm '%s'\n" msgstr "ugyldig hash-algoritme »%s«\n" -#: g10/gpg.c:5065 g10/tofu.c:2153 +#: g10/gpg.c:5085 g10/tofu.c:2153 #, fuzzy, c-format #| msgid "error storing certificate: %s\n" msgid "error parsing key specification '%s': %s\n" msgstr "fejl ved lagring af certifikat: %s\n" -#: g10/gpg.c:5078 +#: g10/gpg.c:5098 #, c-format msgid "'%s' does not appear to be a valid key ID, fingerprint or keygrip\n" msgstr "" -#: g10/gpg.c:5134 +#: g10/gpg.c:5154 #, c-format msgid "WARNING: no command supplied. Trying to guess what you mean ...\n" msgstr "" -#: g10/gpg.c:5145 +#: g10/gpg.c:5165 #, c-format msgid "Go ahead and type your message ...\n" msgstr "Gå til sagen og skriv meddelelsen ...\n" -#: g10/gpg.c:5490 +#: g10/gpg.c:5510 #, c-format msgid "the given certification policy URL is invalid\n" msgstr "den angivne adresse for certifikatpolitik er ugyldig\n" -#: g10/gpg.c:5492 +#: g10/gpg.c:5512 #, c-format msgid "the given signature policy URL is invalid\n" msgstr "den angivne adresse for underskriftpolitik er ugyldig\n" -#: g10/gpg.c:5525 +#: g10/gpg.c:5545 #, c-format msgid "the given preferred keyserver URL is invalid\n" msgstr "den angivne adresse for foretrukken nøgleserver er ugyldig\n" @@ -3769,154 +3775,154 @@ msgid "No help available for '%s'" msgstr "Ingen hjælp tilgængelig for »%s«" -#: g10/import.c:169 +#: g10/import.c:170 msgid "import signatures that are marked as local-only" msgstr "importer underskrifter som er markeret som local-only" -#: g10/import.c:172 +#: g10/import.c:173 msgid "repair damage from the pks keyserver during import" msgstr "reparer skade fra pks-nøgleserveren under import" -#: g10/import.c:175 +#: g10/import.c:176 #, fuzzy #| msgid "do not update the trustdb after import" msgid "do not clear the ownertrust values during import" msgstr "opdater ikke trustdb efter import" -#: g10/import.c:178 +#: g10/import.c:179 msgid "do not update the trustdb after import" msgstr "opdater ikke trustdb efter import" -#: g10/import.c:181 +#: g10/import.c:182 #, fuzzy #| msgid "show key fingerprint" msgid "show key during import" msgstr "vis nøglefingeraftryk" -#: g10/import.c:184 +#: g10/import.c:185 msgid "only accept updates to existing keys" msgstr "accepter kun opdateringer til eksisterende nøgler" -#: g10/import.c:187 +#: g10/import.c:188 msgid "remove unusable parts from key after import" msgstr "fjern ubrugelige dele fra nøgle efter import" -#: g10/import.c:190 +#: g10/import.c:191 msgid "remove as much as possible from key after import" msgstr "fjern så meget som muligt fra nøgle efter import" -#: g10/import.c:193 +#: g10/import.c:194 msgid "ignore key-signatures which are not self-signatures" msgstr "" -#: g10/import.c:196 +#: g10/import.c:197 msgid "run import filters and export key immediately" msgstr "" -#: g10/import.c:199 +#: g10/import.c:200 #, fuzzy #| msgid "assume input is in binary format" msgid "assume the GnuPG key backup format" msgstr "antag inddata er i binært format" -#: g10/import.c:203 +#: g10/import.c:204 #, fuzzy #| msgid "show key fingerprint" msgid "repair keys on import" msgstr "vis nøglefingeraftryk" -#: g10/import.c:392 g10/import.c:711 +#: g10/import.c:393 g10/import.c:712 #, c-format msgid "skipping block of type %d\n" msgstr " udelader bloktype %d\n" -#: g10/import.c:728 +#: g10/import.c:729 #, c-format msgid "%lu keys processed so far\n" msgstr " %lu-nøgler behandlet\n" -#: g10/import.c:814 +#: g10/import.c:815 #, c-format msgid "Total number processed: %lu\n" msgstr " Totalt antal behandl.: %lu\n" -#: g10/import.c:817 +#: g10/import.c:818 #, fuzzy, c-format #| msgid " skipped new keys: %lu\n" msgid " skipped PGP-2 keys: %lu\n" msgstr " udeladte nye nøgler: %lu\n" -#: g10/import.c:819 +#: g10/import.c:820 #, c-format msgid " skipped new keys: %lu\n" msgstr " udeladte nye nøgler: %lu\n" -#: g10/import.c:822 +#: g10/import.c:823 #, c-format msgid " w/o user IDs: %lu\n" msgstr " w/o bruger-id'er: %lu\n" -#: g10/import.c:825 sm/import.c:130 +#: g10/import.c:826 sm/import.c:130 #, c-format msgid " imported: %lu" msgstr " importerede: %lu" -#: g10/import.c:829 sm/import.c:134 +#: g10/import.c:830 sm/import.c:134 #, c-format msgid " unchanged: %lu\n" msgstr " uændrede: %lu\n" -#: g10/import.c:831 +#: g10/import.c:832 #, c-format msgid " new user IDs: %lu\n" msgstr " nye bruger-id'er: %lu\n" -#: g10/import.c:833 +#: g10/import.c:834 #, c-format msgid " new subkeys: %lu\n" msgstr " nye undernøgler: %lu\n" -#: g10/import.c:835 +#: g10/import.c:836 #, c-format msgid " new signatures: %lu\n" msgstr " nye underskrifter: %lu\n" -#: g10/import.c:837 +#: g10/import.c:838 #, c-format msgid " new key revocations: %lu\n" msgstr " nye nøgletilbagekald: %lu\n" -#: g10/import.c:839 sm/import.c:136 +#: g10/import.c:840 sm/import.c:136 #, c-format msgid " secret keys read: %lu\n" msgstr " hemmelige nøgler læst: %lu\n" -#: g10/import.c:841 sm/import.c:138 +#: g10/import.c:842 sm/import.c:138 #, c-format msgid " secret keys imported: %lu\n" msgstr " hemmel. nøgler import: %lu\n" -#: g10/import.c:843 sm/import.c:140 +#: g10/import.c:844 sm/import.c:140 #, c-format msgid " secret keys unchanged: %lu\n" msgstr "hemmel. nøgler uændret: %lu\n" -#: g10/import.c:845 sm/import.c:142 +#: g10/import.c:846 sm/import.c:142 #, c-format msgid " not imported: %lu\n" msgstr " ikke importerede: %lu\n" -#: g10/import.c:847 +#: g10/import.c:848 #, c-format msgid " signatures cleaned: %lu\n" msgstr " underskrifter ryddet: %lu\n" -#: g10/import.c:849 +#: g10/import.c:850 #, c-format msgid " user IDs cleaned: %lu\n" msgstr " bruger-id'er ryddet: %lu\n" -#: g10/import.c:1276 +#: g10/import.c:1277 #, c-format msgid "" "WARNING: key %s contains preferences for unavailable\n" @@ -3925,171 +3931,171 @@ "ADVARSEL: nøgle %s indeholder præferencer for utilgængelige\n" "algoritmer på disse bruger-id'er:\n" -#: g10/import.c:1318 +#: g10/import.c:1319 #, c-format msgid " \"%s\": preference for cipher algorithm %s\n" msgstr " »%s«: præference for chifferalgoritme %s\n" -#: g10/import.c:1333 +#: g10/import.c:1334 #, c-format msgid " \"%s\": preference for digest algorithm %s\n" msgstr " »%s«: præference for sammendragsalgortime %s\n" -#: g10/import.c:1345 +#: g10/import.c:1346 #, c-format msgid " \"%s\": preference for compression algorithm %s\n" msgstr " »%s«: præference for komprimeringsalgortime %s\n" -#: g10/import.c:1358 +#: g10/import.c:1359 #, c-format msgid "it is strongly suggested that you update your preferences and\n" msgstr "det anbefales på det stærkeste, at du opdaterer dine præferencer og\n" -#: g10/import.c:1360 +#: g10/import.c:1361 #, c-format msgid "re-distribute this key to avoid potential algorithm mismatch problems\n" msgstr "" "gendistribuerer denne nøgle for at undgå potentielle problemer med rod i\n" "algoritmen\n" -#: g10/import.c:1385 +#: g10/import.c:1386 #, c-format msgid "you can update your preferences with: gpg --edit-key %s updpref save\n" msgstr "du kan opdatere dine præferencer med: gpg --edit-key %s updpref save\n" -#: g10/import.c:1899 g10/import.c:3013 +#: g10/import.c:1902 g10/import.c:3028 #, c-format msgid "key %s: no user ID\n" msgstr "nøgle %s: ingen bruger-id\n" -#: g10/import.c:1905 +#: g10/import.c:1908 #, fuzzy, c-format #| msgid "skipped \"%s\": %s\n" msgid "key %s: %s\n" msgstr "udelod »%s«: %s\n" -#: g10/import.c:1906 g10/import.c:2985 +#: g10/import.c:1909 g10/import.c:3000 msgid "rejected by import screener" msgstr "" -#: g10/import.c:1950 +#: g10/import.c:1953 #, c-format msgid "key %s: PKS subkey corruption repaired\n" msgstr "nøgle %s: korruption af PKS-undernøgle er repareret!\n" -#: g10/import.c:1971 +#: g10/import.c:1974 #, c-format msgid "key %s: accepted non self-signed user ID \"%s\"\n" msgstr "nøgle %s: accepteret ikke egenunderskrevet bruger-id »%s«\n" -#: g10/import.c:1981 g10/import.c:2012 +#: g10/import.c:1985 g10/import.c:2016 #, c-format msgid "key %s: no valid user IDs\n" msgstr "nøgle %s: ingen gyldige bruger-id'er\n" -#: g10/import.c:1983 +#: g10/import.c:1987 #, c-format msgid "this may be caused by a missing self-signature\n" msgstr "dette kan skyldes en manglende egenunderskrift\n" -#: g10/import.c:2062 g10/import.c:3399 +#: g10/import.c:2066 g10/import.c:3415 #, c-format msgid "key %s: public key not found: %s\n" msgstr "nøgle %s: offentlig nøgle blev ikke fundet: %s\n" -#: g10/import.c:2068 +#: g10/import.c:2072 #, c-format msgid "key %s: new key - skipped\n" msgstr "nøgle %s: ny nøgle - udeladt\n" -#: g10/import.c:2080 +#: g10/import.c:2084 #, c-format msgid "no writable keyring found: %s\n" msgstr "ingen skrivbar nøglering fundet: %s\n" -#: g10/import.c:2112 g10/import.c:2214 g10/import.c:3476 +#: g10/import.c:2116 g10/import.c:2218 g10/import.c:3492 #, fuzzy, c-format #| msgid "error writing keyring `%s': %s\n" msgid "error writing keyring '%s': %s\n" msgstr "fejl ved skrivning af nøglering »%s«: %s\n" -#: g10/import.c:2135 +#: g10/import.c:2139 #, c-format msgid "key %s: public key \"%s\" imported\n" msgstr "nøgle %s: offentlig nøgle »%s« importeret\n" -#: g10/import.c:2162 +#: g10/import.c:2166 #, c-format msgid "key %s: doesn't match our copy\n" msgstr "nøgle %s: stemmer ikke med vores kopi\n" -#: g10/import.c:2230 +#: g10/import.c:2234 #, c-format msgid "key %s: \"%s\" 1 new user ID\n" msgstr "nøgle %s: »%s« 1 ny bruger-id\n" -#: g10/import.c:2233 +#: g10/import.c:2237 #, c-format msgid "key %s: \"%s\" %d new user IDs\n" msgstr "nøgle %s: »%s« %d nye bruger-id'er\n" -#: g10/import.c:2236 +#: g10/import.c:2240 #, c-format msgid "key %s: \"%s\" 1 new signature\n" msgstr "nøgle %s: »%s« 1 ny underskrift\n" -#: g10/import.c:2239 +#: g10/import.c:2243 #, c-format msgid "key %s: \"%s\" %d new signatures\n" msgstr "nøgle %s: »%s« %d nye underskrifter\n" -#: g10/import.c:2242 +#: g10/import.c:2246 #, c-format msgid "key %s: \"%s\" 1 new subkey\n" msgstr "nøgle %s: »%s« 1 ny undernøgle\n" -#: g10/import.c:2245 +#: g10/import.c:2249 #, c-format msgid "key %s: \"%s\" %d new subkeys\n" msgstr "nøgle %s: »%s« %d nye undernøgler\n" -#: g10/import.c:2248 +#: g10/import.c:2252 #, c-format msgid "key %s: \"%s\" %d signature cleaned\n" msgstr "nøgle %s: »%s« %d underskrift renset\n" -#: g10/import.c:2251 +#: g10/import.c:2255 #, c-format msgid "key %s: \"%s\" %d signatures cleaned\n" msgstr "nøgle %s: »%s« %d underskrifter renset\n" -#: g10/import.c:2254 +#: g10/import.c:2258 #, c-format msgid "key %s: \"%s\" %d user ID cleaned\n" msgstr "nøgle %s: »%s« %d bruger-id renset\n" -#: g10/import.c:2257 +#: g10/import.c:2261 #, c-format msgid "key %s: \"%s\" %d user IDs cleaned\n" msgstr "nøgle %s: »%s« %d bruger-id'er renset\n" -#: g10/import.c:2293 +#: g10/import.c:2297 #, c-format msgid "key %s: \"%s\" not changed\n" msgstr "nøgle %s: »%s« ikke ændret\n" -#: g10/import.c:2652 g10/import.c:2847 +#: g10/import.c:2667 g10/import.c:2862 #, c-format msgid "key %s: secret key imported\n" msgstr "nøgle %s: hemmelig nøgle importeret\n" -#: g10/import.c:2660 +#: g10/import.c:2675 #, fuzzy, c-format #| msgid "skipped: secret key already present\n" msgid "key %s: secret key already exists\n" msgstr "udelod: hemmelig nøgle er allerede til stede\n" -#: g10/import.c:2668 +#: g10/import.c:2683 #, fuzzy, c-format #| msgid "error sending %s command: %s\n" msgid "key %s: error sending to agent: %s\n" @@ -4103,198 +4109,198 @@ #. * Instead, user should be suggested to run 'gpg --card-status', #. * then, references to a card will be automatically created #. * again. -#: g10/import.c:2837 +#: g10/import.c:2852 #, c-format msgid "To migrate '%s', with each smartcard, run: %s\n" msgstr "" -#: g10/import.c:2984 +#: g10/import.c:2999 #, fuzzy, c-format #| msgid "secret key \"%s\" not found: %s\n" msgid "secret key %s: %s\n" msgstr "hemmelig nøgle »%s« blev ikke fundet: %s\n" -#: g10/import.c:3005 g10/import.c:3044 +#: g10/import.c:3020 g10/import.c:3059 #, c-format msgid "importing secret keys not allowed\n" msgstr "import af hemmelige nøgler er ikke tilladt\n" -#: g10/import.c:3032 +#: g10/import.c:3047 #, c-format msgid "key %s: secret key with invalid cipher %d - skipped\n" msgstr "nøgle %s: hemmelig nøgle med ugyldig chiffer %d - udeladt\n" -#: g10/import.c:3194 g10/pkclist.c:72 g10/revoke.c:776 +#: g10/import.c:3209 g10/pkclist.c:72 g10/revoke.c:776 msgid "No reason specified" msgstr "Ingen årsag angivet" -#: g10/import.c:3195 g10/pkclist.c:74 g10/revoke.c:778 +#: g10/import.c:3210 g10/pkclist.c:74 g10/revoke.c:778 msgid "Key is superseded" msgstr "Nøglen er blevet afløst" -#: g10/import.c:3196 g10/pkclist.c:76 g10/revoke.c:777 +#: g10/import.c:3211 g10/pkclist.c:76 g10/revoke.c:777 msgid "Key has been compromised" msgstr "Nøglen er blevet kompromitteret" -#: g10/import.c:3197 g10/pkclist.c:78 g10/revoke.c:779 +#: g10/import.c:3212 g10/pkclist.c:78 g10/revoke.c:779 msgid "Key is no longer used" msgstr "Nøglen bruges ikke længere" -#: g10/import.c:3198 g10/pkclist.c:80 g10/revoke.c:780 +#: g10/import.c:3213 g10/pkclist.c:80 g10/revoke.c:780 msgid "User ID is no longer valid" msgstr "Bruger-id er ikke længere gyldigt" -#: g10/import.c:3323 g10/keylist.c:1258 g10/pkclist.c:84 +#: g10/import.c:3338 g10/keylist.c:1258 g10/pkclist.c:84 #, c-format msgid "reason for revocation: " msgstr "årsag for tilbagekald: " -#: g10/import.c:3342 g10/keylist.c:1277 g10/pkclist.c:100 +#: g10/import.c:3357 g10/keylist.c:1277 g10/pkclist.c:100 #, c-format msgid "revocation comment: " msgstr "tilbagekaldskommentar: " -#: g10/import.c:3392 +#: g10/import.c:3408 #, c-format msgid "key %s: no public key - can't apply revocation certificate\n" msgstr "" "nøgle %s: ingen offentlig nøgle - kan ikke anvende tilbagekaldscertifikat\n" -#: g10/import.c:3423 +#: g10/import.c:3439 #, c-format msgid "key %s: can't locate original keyblock: %s\n" msgstr "nøgle %s: kan ikke lokalisere original nøgleblok: %s\n" -#: g10/import.c:3430 +#: g10/import.c:3446 #, c-format msgid "key %s: can't read original keyblock: %s\n" msgstr "nøgle %s: kan ikke læse original nøgleblok: %s\n" -#: g10/import.c:3450 +#: g10/import.c:3466 #, c-format msgid "key %s: invalid revocation certificate: %s - rejected\n" msgstr "nøgle %s: ugyldigt tilbagekaldscertifikat: %s - afvist\n" -#: g10/import.c:3485 +#: g10/import.c:3501 #, c-format msgid "key %s: \"%s\" revocation certificate imported\n" msgstr "nøgle %s: »%s« tilbagekaldscertifikat importeret\n" -#: g10/import.c:3571 +#: g10/import.c:3587 #, c-format msgid "key %s: no user ID for signature\n" msgstr "nøgle %s: ingen bruger-id for underskrift\n" -#: g10/import.c:3588 +#: g10/import.c:3604 #, c-format msgid "key %s: unsupported public key algorithm on user ID \"%s\"\n" msgstr "" "nøgle %s: ikke understøttet offentlig nøglealgoritme på bruger-id »%s«\n" -#: g10/import.c:3590 +#: g10/import.c:3606 #, c-format msgid "key %s: invalid self-signature on user ID \"%s\"\n" msgstr "nøgle %s: ugyldig egenunderskrift på bruger-id »%s«\n" -#: g10/import.c:3607 g10/import.c:3635 g10/import.c:3691 +#: g10/import.c:3623 g10/import.c:3651 g10/import.c:3707 #, c-format msgid "key %s: unsupported public key algorithm\n" msgstr "nøgle %s: ikke understøttet offentlig nøglealgoritme\n" -#: g10/import.c:3608 +#: g10/import.c:3624 #, c-format msgid "key %s: invalid direct key signature\n" msgstr "nøgle %s: ugyldig direkte nøgleunderskrift\n" -#: g10/import.c:3622 +#: g10/import.c:3638 #, c-format msgid "key %s: no subkey for key binding\n" msgstr "nøgle %s: ingen undernøgle for nøglebinding\n" -#: g10/import.c:3637 +#: g10/import.c:3653 #, c-format msgid "key %s: invalid subkey binding\n" msgstr "nøgle %s: ugyldig undernøglebinding\n" -#: g10/import.c:3656 +#: g10/import.c:3672 #, c-format msgid "key %s: removed multiple subkey binding\n" msgstr "nøgle %s: fjernet flerundernøglebinding\n" -#: g10/import.c:3680 +#: g10/import.c:3696 #, c-format msgid "key %s: no subkey for key revocation\n" msgstr "nøgle %s: ingen undernøgle for nøgletilbagekald\n" -#: g10/import.c:3693 +#: g10/import.c:3709 #, c-format msgid "key %s: invalid subkey revocation\n" msgstr "nøgle %s: ugyldig undernøgletilbagekald\n" -#: g10/import.c:3708 +#: g10/import.c:3724 #, c-format msgid "key %s: removed multiple subkey revocation\n" msgstr "nøgle %s: fjernet flerundernøgletilbagekald\n" -#: g10/import.c:3752 +#: g10/import.c:3771 #, c-format msgid "key %s: skipped user ID \"%s\"\n" msgstr "nøgle %s: udeladt bruger-id »%s«\n" -#: g10/import.c:3779 +#: g10/import.c:3798 #, c-format msgid "key %s: skipped subkey\n" msgstr "nøgle %s: udeladt undernøgle\n" -#: g10/import.c:3810 +#: g10/import.c:3829 #, c-format msgid "key %s: non exportable signature (class 0x%02X) - skipped\n" msgstr "" "nøgle %s: underskrift der ikke kan eksporteres (klasse 0x%02X) - udeladt\n" -#: g10/import.c:3821 +#: g10/import.c:3840 #, c-format msgid "key %s: revocation certificate at wrong place - skipped\n" msgstr "nøgle %s: tilbagekaldscertifikat på forkert sted - udeladt\n" -#: g10/import.c:3839 +#: g10/import.c:3868 #, c-format msgid "key %s: invalid revocation certificate: %s - skipped\n" msgstr "nøgle %s: ugyldigt tilbagekaldscertifikat: %s - udeladt\n" -#: g10/import.c:3853 +#: g10/import.c:3892 #, c-format msgid "key %s: subkey signature in wrong place - skipped\n" msgstr "nøgle %s: undernøgleunderskrift på forkert sted - udeladt\n" -#: g10/import.c:3861 +#: g10/import.c:3900 #, c-format msgid "key %s: unexpected signature class (0x%02X) - skipped\n" msgstr "nøgle %s: uventet underskriftklasse (0x%02X) - udeladt\n" -#: g10/import.c:4034 +#: g10/import.c:4073 #, c-format msgid "key %s: duplicated user ID detected - merged\n" msgstr "nøgle %s: duplikeret bruger-id detekteret - sammenføjet\n" -#: g10/import.c:4099 +#: g10/import.c:4138 #, c-format msgid "WARNING: key %s may be revoked: fetching revocation key %s\n" msgstr "ADVARSEL: nøgle %s kan tilbagekaldes: henter tilbagekaldsnøgle %s\n" -#: g10/import.c:4115 +#: g10/import.c:4154 #, c-format msgid "WARNING: key %s may be revoked: revocation key %s not present.\n" msgstr "" "ADVARSEL: nøgle %s kan tilbagekaldes: tilbagekaldsnøgle %s er ikke til " "stede.\n" -#: g10/import.c:4181 +#: g10/import.c:4220 #, c-format msgid "key %s: \"%s\" revocation certificate added\n" msgstr "nøgle %s: »%s« tilbagekaldscertifikat tilføjet\n" -#: g10/import.c:4219 +#: g10/import.c:4258 #, c-format msgid "key %s: direct key signature added\n" msgstr "nøgle %s: direkte nøgleunderskrift tilføjet\n" @@ -5220,7 +5226,7 @@ msgid "You may not add a photo ID to a PGP2-style key.\n" msgstr "Du må ikke tilføje et billed-id til en nøgle i PGP2-stil.\n" -#: g10/keyedit.c:4293 g10/keygen.c:2899 +#: g10/keyedit.c:4293 g10/keygen.c:2953 msgid "Such a user ID already exists on this key!\n" msgstr "Sådant et bruger-id findes allerede på denne nøgle!\n" @@ -5514,66 +5520,66 @@ msgid "Displaying %s photo ID of size %ld for key %s (uid %d)\n" msgstr "Viser %s billed'id med størrelse %ld for nøgle %s (uid %d)\n" -#: g10/keygen.c:169 +#: g10/keygen.c:174 #, fuzzy, c-format #| msgid "missing argument for option \"%.50s\"\n" msgid "invalid value for option '%s'\n" msgstr "manglende parameter for indstilling »%.50s«\n" -#: g10/keygen.c:322 +#: g10/keygen.c:331 #, fuzzy, c-format #| msgid "preference `%s' duplicated\n" msgid "preference '%s' duplicated\n" msgstr "præference »%s« duplikeret\n" -#: g10/keygen.c:329 +#: g10/keygen.c:338 #, c-format msgid "too many cipher preferences\n" msgstr "for mange chifferpræferencer\n" -#: g10/keygen.c:331 +#: g10/keygen.c:340 #, c-format msgid "too many digest preferences\n" msgstr "for mange sammendragpræferencer\n" -#: g10/keygen.c:333 +#: g10/keygen.c:342 #, c-format msgid "too many compression preferences\n" msgstr "for mange komprimeringspræferencer\n" -#: g10/keygen.c:493 +#: g10/keygen.c:502 #, fuzzy, c-format #| msgid "invalid item `%s' in preference string\n" msgid "invalid item '%s' in preference string\n" msgstr "ugyldigt punkt »%s« i præferencestreng\n" -#: g10/keygen.c:972 +#: g10/keygen.c:1020 #, c-format msgid "writing direct signature\n" msgstr "skriver direkte underskrift\n" -#: g10/keygen.c:1018 +#: g10/keygen.c:1066 #, c-format msgid "writing self signature\n" msgstr "skriver egenunderskrift\n" -#: g10/keygen.c:1075 +#: g10/keygen.c:1123 #, c-format msgid "writing key binding signature\n" msgstr "skriver underskrift for nøglebinding\n" -#: g10/keygen.c:1440 g10/keygen.c:1445 g10/keygen.c:1497 g10/keygen.c:1502 -#: g10/keygen.c:1656 g10/keygen.c:1661 +#: g10/keygen.c:1494 g10/keygen.c:1499 g10/keygen.c:1551 g10/keygen.c:1556 +#: g10/keygen.c:1710 g10/keygen.c:1715 #, c-format msgid "keysize invalid; using %u bits\n" msgstr "nøglestørrelse er ugyldig; bruger %u bit\n" -#: g10/keygen.c:1451 g10/keygen.c:1508 g10/keygen.c:1516 g10/keygen.c:1667 +#: g10/keygen.c:1505 g10/keygen.c:1562 g10/keygen.c:1570 g10/keygen.c:1721 #, c-format msgid "keysize rounded up to %u bits\n" msgstr "nøglestørrelse afrundet op til %u bit\n" -#: g10/keygen.c:1542 +#: g10/keygen.c:1596 #, c-format msgid "" "WARNING: some OpenPGP programs can't handle a DSA key with this digest size\n" @@ -5581,19 +5587,19 @@ "ADVARSEL: Nogle OpenPGP-programmer kan ikke håndtere en DS-nøgle med denne\n" "sammendragsstørrelse\n" -#: g10/keygen.c:1723 +#: g10/keygen.c:1777 msgid "Sign" msgstr "Underskriv" -#: g10/keygen.c:1726 +#: g10/keygen.c:1780 msgid "Certify" msgstr "Certificer" -#: g10/keygen.c:1729 +#: g10/keygen.c:1783 msgid "Encrypt" msgstr "Krypter" -#: g10/keygen.c:1732 +#: g10/keygen.c:1786 msgid "Authenticate" msgstr "Godkend" @@ -5607,110 +5613,110 @@ #. * a = Toggle authentication capability #. * q = Finish #. -#: g10/keygen.c:1753 +#: g10/keygen.c:1807 msgid "SsEeAaQq" msgstr "UuKkGfAa" -#: g10/keygen.c:1784 +#: g10/keygen.c:1838 #, c-format msgid "Possible actions for a %s key: " msgstr "Mulige handligner for en %s-nøgle: " -#: g10/keygen.c:1790 +#: g10/keygen.c:1844 msgid "Current allowed actions: " msgstr "Aktuelt tilladte handlinger: " -#: g10/keygen.c:1795 +#: g10/keygen.c:1849 #, c-format msgid " (%c) Toggle the sign capability\n" msgstr " (%c) Skift evnen til at underskrive\n" -#: g10/keygen.c:1798 +#: g10/keygen.c:1852 #, c-format msgid " (%c) Toggle the encrypt capability\n" msgstr " (%c) Skift evnen til at kryptere\n" -#: g10/keygen.c:1801 +#: g10/keygen.c:1855 #, c-format msgid " (%c) Toggle the authenticate capability\n" msgstr " (%c) Skift evnen til at godkende\n" -#: g10/keygen.c:1804 +#: g10/keygen.c:1858 #, c-format msgid " (%c) Finished\n" msgstr " (%c) Afsluttet\n" -#: g10/keygen.c:1930 +#: g10/keygen.c:1984 #, c-format msgid " (%d) RSA and RSA (default)\n" msgstr " (%d) RSA og RSA (standard)\n" -#: g10/keygen.c:1934 +#: g10/keygen.c:1988 #, c-format msgid " (%d) DSA and Elgamal\n" msgstr " (%d) DSA og Elgamal\n" -#: g10/keygen.c:1937 +#: g10/keygen.c:1991 #, c-format msgid " (%d) DSA (sign only)\n" msgstr " (%d) DSA (kun underskriv)\n" -#: g10/keygen.c:1939 +#: g10/keygen.c:1993 #, c-format msgid " (%d) RSA (sign only)\n" msgstr " (%d) RSA (kun underskriv)\n" -#: g10/keygen.c:1945 +#: g10/keygen.c:1999 #, c-format msgid " (%d) Elgamal (encrypt only)\n" msgstr " (%d) Elgamal (kun krypter)\n" -#: g10/keygen.c:1947 +#: g10/keygen.c:2001 #, c-format msgid " (%d) RSA (encrypt only)\n" msgstr " (%d) RSA (kun krypter)\n" -#: g10/keygen.c:1953 +#: g10/keygen.c:2007 #, c-format msgid " (%d) DSA (set your own capabilities)\n" msgstr " (%d) DSA (angiv dine egne evner)\n" -#: g10/keygen.c:1955 +#: g10/keygen.c:2009 #, c-format msgid " (%d) RSA (set your own capabilities)\n" msgstr " (%d) RSA (angiv dine egne evner)\n" -#: g10/keygen.c:1961 +#: g10/keygen.c:2015 #, fuzzy, c-format #| msgid " (%d) DSA and Elgamal\n" msgid " (%d) ECC and ECC\n" msgstr " (%d) DSA og Elgamal\n" -#: g10/keygen.c:1963 +#: g10/keygen.c:2017 #, fuzzy, c-format #| msgid " (%d) DSA (sign only)\n" msgid " (%d) ECC (sign only)\n" msgstr " (%d) DSA (kun underskriv)\n" -#: g10/keygen.c:1965 +#: g10/keygen.c:2019 #, fuzzy, c-format #| msgid " (%d) DSA (set your own capabilities)\n" msgid " (%d) ECC (set your own capabilities)\n" msgstr " (%d) DSA (angiv dine egne evner)\n" -#: g10/keygen.c:1967 +#: g10/keygen.c:2021 #, fuzzy, c-format #| msgid " (%d) RSA (encrypt only)\n" msgid " (%d) ECC (encrypt only)\n" msgstr " (%d) RSA (kun krypter)\n" -#: g10/keygen.c:1971 +#: g10/keygen.c:2025 #, fuzzy, c-format #| msgid " (%d) Existing key\n" msgid " (%d) Existing key\n" msgstr " (%d) Eksisterende nøgle\n" -#: g10/keygen.c:1973 +#: g10/keygen.c:2027 #, fuzzy, c-format #| msgid " (%d) Existing key from card\n" msgid " (%d) Existing key from card\n" @@ -5719,61 +5725,61 @@ # key grip # chiefly ( US ) See also grip the person in charge of moving and setting up camera # tracks and scenery in a film or television studio -#: g10/keygen.c:2069 sm/certreqgen-ui.c:202 +#: g10/keygen.c:2123 sm/certreqgen-ui.c:202 msgid "Enter the keygrip: " msgstr "Indtst nøglegrebet: " -#: g10/keygen.c:2082 sm/certreqgen-ui.c:210 +#: g10/keygen.c:2136 sm/certreqgen-ui.c:210 msgid "Not a valid keygrip (expecting 40 hex digits)\n" msgstr "Ikke et gyldigt nøglegreb (forventer 40 hex cifre)\n" -#: g10/keygen.c:2084 sm/certreqgen-ui.c:212 +#: g10/keygen.c:2138 sm/certreqgen-ui.c:212 msgid "No key with this keygrip\n" msgstr "Ingen nøgle med dette nøglegreb\n" -#: g10/keygen.c:2103 g10/keygen.c:2113 g10/keygen.c:3216 g10/keygen.c:3227 +#: g10/keygen.c:2157 g10/keygen.c:2167 g10/keygen.c:3270 g10/keygen.c:3281 #: sm/certreqgen-ui.c:230 sm/certreqgen-ui.c:239 #, c-format msgid "error reading the card: %s\n" msgstr "fejl ved læsning af kort: %s\n" -#: g10/keygen.c:2107 g10/keygen.c:3220 sm/certreqgen-ui.c:233 +#: g10/keygen.c:2161 g10/keygen.c:3274 sm/certreqgen-ui.c:233 #, c-format msgid "Serial number of the card: %s\n" msgstr "Serielnummer for kortet: %s\n" -#: g10/keygen.c:2120 sm/certreqgen-ui.c:245 +#: g10/keygen.c:2174 sm/certreqgen-ui.c:245 msgid "Available keys:\n" msgstr "Tilgængelige nøgler:\n" -#: g10/keygen.c:2297 g10/keygen.c:2311 +#: g10/keygen.c:2351 g10/keygen.c:2365 #, fuzzy, c-format #| msgid "rounded up to %u bits\n" msgid "rounded to %u bits\n" msgstr "afrundet op til %u bit\n" -#: g10/keygen.c:2352 +#: g10/keygen.c:2406 #, c-format msgid "%s keys may be between %u and %u bits long.\n" msgstr "%s nøgler kan være mellem %u og %u bit lange.\n" -#: g10/keygen.c:2360 +#: g10/keygen.c:2414 #, c-format msgid "What keysize do you want for the subkey? (%u) " msgstr "Hvilken nøglestørrelse ønsker du for undernøglen? (%u) " -#: g10/keygen.c:2377 sm/certreqgen-ui.c:189 +#: g10/keygen.c:2431 sm/certreqgen-ui.c:189 #, c-format msgid "Requested keysize is %u bits\n" msgstr "Ønsket nøglestørrelse er %u bit\n" -#: g10/keygen.c:2423 +#: g10/keygen.c:2477 #, fuzzy #| msgid "Please select what kind of key you want:\n" msgid "Please select which elliptic curve you want:\n" msgstr "Vælg venligst hvilken slags nøgle du vil have:\n" -#: g10/keygen.c:2611 +#: g10/keygen.c:2665 msgid "" "Please specify how long the key should be valid.\n" " 0 = key does not expire\n" @@ -5789,7 +5795,7 @@ " m = nøgle udløber om n måneder\n" " y = nøgle udløber om n år\n" -#: g10/keygen.c:2622 +#: g10/keygen.c:2676 msgid "" "Please specify how long the signature should be valid.\n" " 0 = signature does not expire\n" @@ -5805,38 +5811,38 @@ " m = underskriften udløber om n måneder\n" " y = underskriften udløber om n år\n" -#: g10/keygen.c:2645 +#: g10/keygen.c:2699 msgid "Key is valid for? (0) " msgstr "Nøgle er gyldig for? (0) " -#: g10/keygen.c:2650 +#: g10/keygen.c:2704 #, c-format msgid "Signature is valid for? (%s) " msgstr "Underskrift er gyldig for? (%s) " -#: g10/keygen.c:2663 g10/keygen.c:2688 +#: g10/keygen.c:2717 g10/keygen.c:2742 msgid "invalid value\n" msgstr "ugyldig værdi\n" -#: g10/keygen.c:2670 +#: g10/keygen.c:2724 msgid "Key does not expire at all\n" msgstr "Nøglen udløber aldrig\n" -#: g10/keygen.c:2671 +#: g10/keygen.c:2725 msgid "Signature does not expire at all\n" msgstr "Underskriften udløber aldrig\n" -#: g10/keygen.c:2676 +#: g10/keygen.c:2730 #, c-format msgid "Key expires at %s\n" msgstr "Nøglen udløber den %s\n" -#: g10/keygen.c:2677 +#: g10/keygen.c:2731 #, c-format msgid "Signature expires at %s\n" msgstr "Underskriften udløber den %s\n" -#: g10/keygen.c:2681 +#: g10/keygen.c:2735 msgid "" "Your system can't display dates beyond 2038.\n" "However, it will be correctly handled up to 2106.\n" @@ -5844,11 +5850,11 @@ "Dit system kan ikke vise datoer efter 2038.\n" "Det vil dog blive korrekt håndteret op til 2106.\n" -#: g10/keygen.c:2694 +#: g10/keygen.c:2748 msgid "Is this correct? (y/N) " msgstr "Er dette korrekt? (j/N) " -#: g10/keygen.c:2762 +#: g10/keygen.c:2816 msgid "" "\n" "GnuPG needs to construct a user ID to identify your key.\n" @@ -5862,7 +5868,7 @@ #. but you should keep your existing translation. In case #. the new string is not translated this old string will #. be used. -#: g10/keygen.c:2777 +#: g10/keygen.c:2831 msgid "" "\n" "You need a user ID to identify your key; the software constructs the user " @@ -5878,50 +5884,50 @@ " »Heinrich Heine (digteren) «\n" "\n" -#: g10/keygen.c:2796 +#: g10/keygen.c:2850 msgid "Real name: " msgstr "Fødselsnavn: " -#: g10/keygen.c:2805 +#: g10/keygen.c:2859 msgid "Invalid character in name\n" msgstr "Ugyldige bogstaver i navn\n" -#: g10/keygen.c:2806 +#: g10/keygen.c:2860 #, c-format msgid "The characters '%s' and '%s' may not appear in name\n" msgstr "" -#: g10/keygen.c:2810 +#: g10/keygen.c:2864 msgid "Name may not start with a digit\n" msgstr "Navn må ikke starte med et tal\n" -#: g10/keygen.c:2813 +#: g10/keygen.c:2867 msgid "Name must be at least 5 characters long\n" msgstr "Navn skal være mindst 5 bogstaver langt\n" -#: g10/keygen.c:2823 +#: g10/keygen.c:2877 msgid "Email address: " msgstr "E-post-adresse: " -#: g10/keygen.c:2829 +#: g10/keygen.c:2883 msgid "Not a valid email address\n" msgstr "Ikke en gyldig e-post-adresse\n" -#: g10/keygen.c:2838 +#: g10/keygen.c:2892 msgid "Comment: " msgstr "Kommentar: " -#: g10/keygen.c:2844 +#: g10/keygen.c:2898 msgid "Invalid character in comment\n" msgstr "Ugyldigt tegn i kommentar\n" -#: g10/keygen.c:2880 +#: g10/keygen.c:2934 #, fuzzy, c-format #| msgid "You are using the `%s' character set.\n" msgid "You are using the '%s' character set.\n" msgstr "Du bruger tegnsættet »%s«.\n" -#: g10/keygen.c:2886 +#: g10/keygen.c:2940 #, c-format msgid "" "You selected this USER-ID:\n" @@ -5932,7 +5938,7 @@ " \"%s\"\n" "\n" -#: g10/keygen.c:2891 +#: g10/keygen.c:2945 msgid "Please don't put the email address into the real name or the comment\n" msgstr "Placer ikke e-post-adressen i fødselsnavnet eller kommentaren\n" @@ -5947,35 +5953,35 @@ #. o = Okay (ready, continue) #. q = Quit #. -#: g10/keygen.c:2916 +#: g10/keygen.c:2970 msgid "NnCcEeOoQq" msgstr "NnCcEeOoQq" -#: g10/keygen.c:2926 +#: g10/keygen.c:2980 msgid "Change (N)ame, (C)omment, (E)mail or (Q)uit? " msgstr "Ændr (N)avn, (K)ommentar, (E)-post eller afslut(Q)? " -#: g10/keygen.c:2927 +#: g10/keygen.c:2981 msgid "Change (N)ame, (C)omment, (E)mail or (O)kay/(Q)uit? " msgstr "Ændr (N)avn, (K)ommentar, (E)post eller (O)kay/afslut(Q)? " -#: g10/keygen.c:2932 +#: g10/keygen.c:2986 #, fuzzy #| msgid "Change (N)ame, (C)omment, (E)mail or (Q)uit? " msgid "Change (N)ame, (E)mail, or (Q)uit? " msgstr "Ændr (N)avn, (K)ommentar, (E)-post eller afslut(Q)? " -#: g10/keygen.c:2933 +#: g10/keygen.c:2987 #, fuzzy #| msgid "Change (N)ame, (C)omment, (E)mail or (O)kay/(Q)uit? " msgid "Change (N)ame, (E)mail, or (O)kay/(Q)uit? " msgstr "Ændr (N)avn, (K)ommentar, (E)post eller (O)kay/afslut(Q)? " -#: g10/keygen.c:2952 +#: g10/keygen.c:3006 msgid "Please correct the error first\n" msgstr "Ret venligst fejlen først\n" -#: g10/keygen.c:2998 +#: g10/keygen.c:3052 msgid "" "We need to generate a lot of random bytes. It is a good idea to perform\n" "some other action (type on the keyboard, move the mouse, utilize the\n" @@ -5987,13 +5993,13 @@ "under oprettelse af primtallet; dette giver det vilkårlig\n" "taloprettelsesprogram en bedre mulighed for at opnå nok entropi.\n" -#: g10/keygen.c:4278 g10/keygen.c:4349 g10/keygen.c:4367 g10/keygen.c:4395 -#: g10/keygen.c:4739 g10/keygen.c:5239 g10/keygen.c:5534 g10/keygen.c:5639 +#: g10/keygen.c:4332 g10/keygen.c:4403 g10/keygen.c:4421 g10/keygen.c:4449 +#: g10/keygen.c:4793 g10/keygen.c:5293 g10/keygen.c:5588 g10/keygen.c:5693 #, c-format msgid "Key generation failed: %s\n" msgstr "Nøgleoprettelse mislykkedes: %s\n" -#: g10/keygen.c:4287 +#: g10/keygen.c:4341 #, c-format msgid "" "About to create a key for:\n" @@ -6001,72 +6007,72 @@ "\n" msgstr "" -#: g10/keygen.c:4289 +#: g10/keygen.c:4343 msgid "Continue? (Y/n) " msgstr "" -#: g10/keygen.c:4310 +#: g10/keygen.c:4364 #, fuzzy, c-format #| msgid "key already exists\n" msgid "A key for \"%s\" already exists\n" msgstr "nøgle findes allerede\n" -#: g10/keygen.c:4315 +#: g10/keygen.c:4369 #, fuzzy #| msgid "Use this key anyway? (y/N) " msgid "Create anyway? (y/N) " msgstr "Brug denne nøgle alligevel? (j/N) " -#: g10/keygen.c:4321 +#: g10/keygen.c:4375 #, fuzzy, c-format #| msgid "generating new key\n" msgid "creating anyway\n" msgstr "opretter ny nøgle\n" -#: g10/keygen.c:4722 +#: g10/keygen.c:4776 #, c-format msgid "Note: Use \"%s %s\" for a full featured key generation dialog.\n" msgstr "" -#: g10/keygen.c:4771 +#: g10/keygen.c:4825 #, c-format msgid "Key generation canceled.\n" msgstr "Nøgleoprettelse annulleret.\n" -#: g10/keygen.c:4831 +#: g10/keygen.c:4885 #, fuzzy, c-format #| msgid "can't create backup file `%s': %s\n" msgid "can't create backup file '%s': %s\n" msgstr "kan ikke oprette sikkerhedskopifil »%s«: %s\n" -#: g10/keygen.c:4851 +#: g10/keygen.c:4905 #, fuzzy, c-format #| msgid "NOTE: backup of card key saved to `%s'\n" msgid "Note: backup of card key saved to '%s'\n" msgstr "BEMÆRK: sikkerhedskopi af kortnøgle gemt på »%s«\n" -#: g10/keygen.c:5010 g10/keygen.c:5172 +#: g10/keygen.c:5064 g10/keygen.c:5226 #, fuzzy, c-format #| msgid "writing public key to `%s'\n" msgid "writing public key to '%s'\n" msgstr "skriver offentlig nøgle til »%s«\n" -#: g10/keygen.c:5166 +#: g10/keygen.c:5220 #, c-format msgid "no writable public keyring found: %s\n" msgstr "ingen skrivbar offentlig nøglering fundet: %s\n" -#: g10/keygen.c:5180 +#: g10/keygen.c:5234 #, fuzzy, c-format #| msgid "error writing public keyring `%s': %s\n" msgid "error writing public keyring '%s': %s\n" msgstr "fejl ved skrivning af offentlig nøglering »%s«: %s\n" -#: g10/keygen.c:5210 +#: g10/keygen.c:5264 msgid "public and secret key created and signed.\n" msgstr "offentlig og hemmelig nøgle oprettet og underskrevet.\n" -#: g10/keygen.c:5226 +#: g10/keygen.c:5280 msgid "" "Note that this key cannot be used for encryption. You may want to use\n" "the command \"--edit-key\" to generate a subkey for this purpose.\n" @@ -6074,7 +6080,7 @@ "Bemærk at denne nøgle ikke kan bruges til kryptering. Du kan bruge\n" "kommandoen »--edit-key« til at oprette en undernøgle til dette formål.\n" -#: g10/keygen.c:5401 g10/keygen.c:5590 +#: g10/keygen.c:5455 g10/keygen.c:5644 #, c-format msgid "" "key has been created %lu second in future (time warp or clock problem)\n" @@ -6082,7 +6088,7 @@ "nøgle er blevet oprettet %lu sekund i fremtiden (tidsforskydning eller " "urproblem)\n" -#: g10/keygen.c:5403 g10/keygen.c:5592 +#: g10/keygen.c:5457 g10/keygen.c:5646 #, c-format msgid "" "key has been created %lu seconds in future (time warp or clock problem)\n" @@ -6090,24 +6096,24 @@ "nøgle er blevet oprettet %lu sekunder i fremtiden (tidsforskydning eller " "urproblem)\n" -#: g10/keygen.c:5414 g10/keygen.c:5603 +#: g10/keygen.c:5468 g10/keygen.c:5657 #, fuzzy, c-format #| msgid "NOTE: creating subkeys for v3 keys is not OpenPGP compliant\n" msgid "Note: creating subkeys for v3 keys is not OpenPGP compliant\n" msgstr "" "BEMÆRK: Oprettelse af undernøgler for v3-nøgler overholder ikke OpenPGP\n" -#: g10/keygen.c:5426 g10/keygen.c:5428 +#: g10/keygen.c:5480 g10/keygen.c:5482 #, c-format msgid "Secret parts of primary key are not available.\n" msgstr "Hemmelige dele for primær nøgle er ikke tilgængelige.\n" -#: g10/keygen.c:5435 g10/keygen.c:5437 +#: g10/keygen.c:5489 g10/keygen.c:5491 #, c-format msgid "Secret parts of primary key are stored on-card.\n" msgstr "Hemmelige dele for primær nøgle gemmes på kortet.\n" -#: g10/keygen.c:5456 g10/keygen.c:5617 +#: g10/keygen.c:5510 g10/keygen.c:5671 msgid "Really create? (y/N) " msgstr "Vil du virkelig oprette? (j/N) " @@ -7238,31 +7244,31 @@ msgid "data not saved; use option \"--output\" to save it\n" msgstr "data ej gemt; brug tilvalg »--output« for at gemme\n" -#: g10/plaintext.c:615 +#: g10/plaintext.c:620 msgid "Detached signature.\n" msgstr "Frakoblet underskrift.\n" -#: g10/plaintext.c:623 +#: g10/plaintext.c:628 msgid "Please enter name of data file: " msgstr "Indtast navn for datafil: " -#: g10/plaintext.c:660 +#: g10/plaintext.c:665 #, c-format msgid "reading stdin ...\n" msgstr "læser stdin ...\n" -#: g10/plaintext.c:705 +#: g10/plaintext.c:710 #, c-format msgid "no signed data\n" msgstr "ingen underskrevne data\n" -#: g10/plaintext.c:723 +#: g10/plaintext.c:728 #, fuzzy, c-format #| msgid "can't open signed data `%s'\n" msgid "can't open signed data '%s'\n" msgstr "kan ikke åbne underskrevne data »%s«\n" -#: g10/plaintext.c:758 +#: g10/plaintext.c:763 #, c-format msgid "can't open signed data fd=%d: %s\n" msgstr "kan ikke åbne underskrevne data fd=%d: %s\n" @@ -8300,7 +8306,7 @@ msgid "no need for a trustdb check\n" msgstr "intet behov for kontrol af trustdb\n" -#: g10/trustdb.c:631 g10/trustdb.c:2326 +#: g10/trustdb.c:631 g10/trustdb.c:2338 #, c-format msgid "next trustdb check due at %s\n" msgstr "næste kontrol af trustdb sker den %s\n" @@ -8333,7 +8339,7 @@ msgid "checking the trustdb\n" msgstr "kontrollerer trustdb\n" -#: g10/trustdb.c:2047 +#: g10/trustdb.c:2059 #, fuzzy, c-format #| msgid "%lu keys processed so far\n" msgid "%d key processed" @@ -8341,7 +8347,7 @@ msgstr[0] " %lu-nøgler behandlet\n" msgstr[1] " %lu-nøgler behandlet\n" -#: g10/trustdb.c:2050 +#: g10/trustdb.c:2062 #, fuzzy, c-format #| msgid "%d keys processed (%d validity counts cleared)\n" msgid " (%d validity count cleared)\n" @@ -8349,17 +8355,17 @@ msgstr[0] "%d nøgler behandlet (%d validiteter ryddet)\n" msgstr[1] "%d nøgler behandlet (%d validiteter ryddet)\n" -#: g10/trustdb.c:2120 +#: g10/trustdb.c:2132 #, c-format msgid "no ultimately trusted keys found\n" msgstr "ingen ultimativ troværdige nøgler fundet\n" -#: g10/trustdb.c:2134 +#: g10/trustdb.c:2146 #, c-format msgid "public key of ultimately trusted key %s not found\n" msgstr "offentlig nøgle for ultimativ troværdig nøgle %s blev ikke fundet\n" -#: g10/trustdb.c:2252 +#: g10/trustdb.c:2264 #, c-format msgid "" "depth: %d valid: %3d signed: %3d trust: %d-, %dq, %dn, %dm, %df, %du\n" @@ -8367,7 +8373,7 @@ "dybde: %d gyldig: %3d underskrevet: %3d troværdighed: %d-, %dq, %dn, %dm, " "%df, %du\n" -#: g10/trustdb.c:2333 +#: g10/trustdb.c:2345 #, c-format msgid "unable to update trustdb version record: write failed: %s\n" msgstr "kan ikke opdatere trustdb-versionspost: skrivning mislykkedes: %s\n" @@ -8484,19 +8490,19 @@ #. TRANSLATORS: Put a \x1f right before a colon. This can be #. * used by pinentry to nicely align the names and values. Keep #. * the %s at the start and end of the string. -#: scd/app-p15.c:5116 scd/app-openpgp.c:2154 +#: scd/app-p15.c:5145 scd/app-nks.c:1541 scd/app-openpgp.c:2154 #, c-format msgid "%sNumber: %s%%0AHolder: %s%s" msgstr "" #. TRANSLATORS: This is the number of remaining attempts to #. * enter a PIN. Use %%0A (double-percent,0A) for a linefeed. -#: scd/app-p15.c:5135 scd/app-openpgp.c:2170 +#: scd/app-p15.c:5164 scd/app-nks.c:1560 scd/app-openpgp.c:2170 #, c-format msgid "Remaining attempts: %d" msgstr "" -#: scd/app-p15.c:5214 scd/app-nks.c:1113 +#: scd/app-p15.c:5243 scd/app-nks.c:2112 msgid "||Please enter the PIN for the key to create qualified signatures." msgstr "" "||Indtast venligst PIN'en for nøglen til at oprette kvalificerede " @@ -8504,56 +8510,62 @@ #. TRANSLATORS: Do not translate the "|A|" prefix but keep it at #. the start of the string. Use %0A (single percent) for a linefeed. -#: scd/app-p15.c:5217 scd/app-openpgp.c:2464 +#: scd/app-p15.c:5246 scd/app-openpgp.c:2465 msgid "|A|Please enter the Admin PIN" msgstr "|A|Indtast venligst administrator-PIN'en" -#: scd/app-p15.c:5219 scd/app-nks.c:1103 +#: scd/app-p15.c:5248 scd/app-nks.c:2102 msgid "|P|Please enter the PIN Unblocking Code (PUK) for the standard keys." msgstr "|P|Indtast venligst PIN Unblocking Code (PUK) for standardnøglerne." -#: scd/app-p15.c:5222 scd/app-nks.c:1095 +#: scd/app-p15.c:5251 scd/app-nks.c:2093 msgid "||Please enter the PIN for the standard keys." msgstr "||Indtast venligst PIn'en for standardnøglerne." -#: scd/app-nks.c:709 scd/app-openpgp.c:3666 +#: scd/app-nks.c:1479 scd/app-openpgp.c:3675 #, c-format msgid "RSA modulus missing or not of size %d bits\n" msgstr "RSA-modulus mangler eller har ikke størrelsen %d bit\n" -#: scd/app-nks.c:717 scd/app-openpgp.c:3678 +#: scd/app-nks.c:1487 scd/app-openpgp.c:3687 #, c-format msgid "RSA public exponent missing or larger than %d bits\n" msgstr "RSA offentlig eksponent mangler eller større end %d bit\n" -#: scd/app-nks.c:797 scd/app-openpgp.c:2327 scd/app-openpgp.c:2346 -#: scd/app-openpgp.c:2513 scd/app-openpgp.c:2531 scd/app-openpgp.c:2829 -#: scd/app-openpgp.c:2876 scd/app-openpgp.c:2991 scd/app-dinsig.c:302 +#: scd/app-nks.c:1660 +#, fuzzy +#| msgid "the NullPIN has not yet been changed\n" +msgid "Note: PIN has not yet been enabled." +msgstr "NullPIN'en er endnu ikke ændret\n" + +#: scd/app-nks.c:1671 scd/app-openpgp.c:2327 scd/app-openpgp.c:2346 +#: scd/app-openpgp.c:2515 scd/app-openpgp.c:2533 scd/app-openpgp.c:2832 +#: scd/app-openpgp.c:2879 scd/app-openpgp.c:3000 scd/app-dinsig.c:303 #, c-format msgid "PIN callback returned error: %s\n" msgstr "PIN-tilbagekald returnerede fejl: %s\n" -#: scd/app-nks.c:830 +#: scd/app-nks.c:1707 #, c-format msgid "the NullPIN has not yet been changed\n" msgstr "NullPIN'en er endnu ikke ændret\n" -#: scd/app-nks.c:1094 +#: scd/app-nks.c:2092 msgid "|N|Please enter a new PIN for the standard keys." msgstr "|N|Indtast venligst en ny PIN for standardnøglerne." -#: scd/app-nks.c:1101 +#: scd/app-nks.c:2100 msgid "|NP|Please enter a new PIN Unblocking Code (PUK) for the standard keys." msgstr "" "|NP|Indtast venligst en ny PIN Unblocking Code (PUK) for standardnøglerne." -#: scd/app-nks.c:1111 +#: scd/app-nks.c:2110 msgid "|N|Please enter a new PIN for the key to create qualified signatures." msgstr "" "|N|Indtast venligst en ny PIN for nøglen til at oprette kvalificerede " "underskrifter." -#: scd/app-nks.c:1121 +#: scd/app-nks.c:2120 msgid "" "|NP|Please enter a new PIN Unblocking Code (PUK) for the key to create " "qualified signatures." @@ -8561,7 +8573,7 @@ "|NP|Indtast venligst en ny PIN Unblocking Code (PUK) for nøglen til at " "oprette kvalificerede underskrifter." -#: scd/app-nks.c:1123 +#: scd/app-nks.c:2122 msgid "" "|P|Please enter the PIN Unblocking Code (PUK) for the key to create " "qualified signatures." @@ -8569,7 +8581,7 @@ "|P|Indtast venligst PIN Unblocking Code (PUK) for nøglen til at oprette " "kvalificerede underskrifter." -#: scd/app-nks.c:1230 scd/app-openpgp.c:2910 scd/app-dinsig.c:532 +#: scd/app-nks.c:2295 scd/app-openpgp.c:2913 scd/app-dinsig.c:535 #, c-format msgid "error getting new PIN: %s\n" msgstr "fejl ved indhentelse af ny PIN: %s\n" @@ -8584,7 +8596,7 @@ msgid "failed to store the creation date: %s\n" msgstr "kunne ikke gemme oprettelsesdatoen: %s\n" -#: scd/app-openpgp.c:1271 scd/app-openpgp.c:2857 scd/app-openpgp.c:5041 +#: scd/app-openpgp.c:1271 scd/app-openpgp.c:2860 scd/app-openpgp.c:5051 #, c-format msgid "error retrieving CHV status from card\n" msgstr "fejl ved indhentelse af CHV-status fra kort\n" @@ -8605,7 +8617,7 @@ msgid "response does not contain the EC public key\n" msgstr "svar indeholder ikke den RSA-offentlige eksponent\n" -#: scd/app-openpgp.c:1664 scd/app-openpgp.c:4286 +#: scd/app-openpgp.c:1664 scd/app-openpgp.c:4295 #, c-format msgid "response does not contain the public key data\n" msgstr "svar indeholder ikke data for offentlig nøgle\n" @@ -8641,23 +8653,23 @@ msgid "||Please unlock the card" msgstr "||Indtast venligst PIN'en" -#: scd/app-openpgp.c:2353 scd/app-openpgp.c:2538 scd/app-openpgp.c:2836 +#: scd/app-openpgp.c:2353 scd/app-openpgp.c:2540 scd/app-openpgp.c:2839 #, c-format msgid "PIN for CHV%d is too short; minimum length is %d\n" msgstr "PIN for CHV%d er for kort; minimumlængde er %d\n" -#: scd/app-openpgp.c:2367 scd/app-openpgp.c:2414 scd/app-openpgp.c:2552 -#: scd/app-openpgp.c:4644 +#: scd/app-openpgp.c:2368 scd/app-openpgp.c:2415 scd/app-openpgp.c:2554 +#: scd/app-openpgp.c:4654 #, c-format msgid "verify CHV%d failed: %s\n" msgstr "verificering af CHV%d mislykkedes: %s\n" -#: scd/app-openpgp.c:2450 scd/app-openpgp.c:5050 +#: scd/app-openpgp.c:2451 scd/app-openpgp.c:5060 #, c-format msgid "card is permanently locked!\n" msgstr "kort er permanent låst!\n" -#: scd/app-openpgp.c:2454 +#: scd/app-openpgp.c:2455 #, fuzzy, c-format #| msgid "%d Admin PIN attempts remaining before card is permanently locked\n" msgid "%d Admin PIN attempt remaining before card is permanently locked\n" @@ -8666,20 +8678,20 @@ msgstr[0] "%d PIN-forsøg for administrator før kort permanent låses\n" msgstr[1] "%d PIN-forsøg for administrator før kort permanent låses\n" -#: scd/app-openpgp.c:2485 +#: scd/app-openpgp.c:2486 #, c-format msgid "access to admin commands is not configured\n" msgstr "adgang til administratorkommandoer er ikke konfigureret\n" -#: scd/app-openpgp.c:2823 +#: scd/app-openpgp.c:2826 msgid "||Please enter the PIN" msgstr "||Indtast venligst PIN'en" -#: scd/app-openpgp.c:2872 +#: scd/app-openpgp.c:2875 msgid "||Please enter the Reset Code for the card" msgstr "||Indtast venligst nulstillingskoden for kortet" -#: scd/app-openpgp.c:2882 scd/app-openpgp.c:2943 +#: scd/app-openpgp.c:2885 scd/app-openpgp.c:2946 #, c-format msgid "Reset Code is too short; minimum length is %d\n" msgstr "Nulstillingskode er for kort; minimumlængde er %d\n" @@ -8687,88 +8699,88 @@ #. 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:2905 +#: scd/app-openpgp.c:2908 msgid "|RN|New Reset Code" msgstr "|RN|Ny nulstillingskode" -#: scd/app-openpgp.c:2906 +#: scd/app-openpgp.c:2909 msgid "|AN|New Admin PIN" msgstr "|AN|Ny administrator-PIN" -#: scd/app-openpgp.c:2906 +#: scd/app-openpgp.c:2909 msgid "|N|New PIN" msgstr "|N|Ny PIN" -#: scd/app-openpgp.c:2987 +#: scd/app-openpgp.c:2996 msgid "||Please enter the Admin PIN and New Admin PIN" msgstr "||Indtast venligst administrator-PIN'en og ny administrator-PIN" -#: scd/app-openpgp.c:2988 +#: scd/app-openpgp.c:2997 msgid "||Please enter the PIN and New PIN" msgstr "||Indtast venligst PIN'en og ny PIN" -#: scd/app-openpgp.c:3050 scd/app-openpgp.c:4346 +#: scd/app-openpgp.c:3059 scd/app-openpgp.c:4355 #, c-format msgid "error reading application data\n" msgstr "fejl ved læsning af programdata\n" -#: scd/app-openpgp.c:3056 scd/app-openpgp.c:4353 +#: scd/app-openpgp.c:3065 scd/app-openpgp.c:4362 #, c-format msgid "error reading fingerprint DO\n" msgstr "fejl ved læsning af fingeraftryk DO\n" -#: scd/app-openpgp.c:3066 +#: scd/app-openpgp.c:3075 #, c-format msgid "key already exists\n" msgstr "nøgle findes allerede\n" -#: scd/app-openpgp.c:3070 +#: scd/app-openpgp.c:3079 #, c-format msgid "existing key will be replaced\n" msgstr "eksisterende nøgle vil blive erstattet\n" -#: scd/app-openpgp.c:3072 +#: scd/app-openpgp.c:3081 #, c-format msgid "generating new key\n" msgstr "opretter ny nøgle\n" -#: scd/app-openpgp.c:3074 +#: scd/app-openpgp.c:3083 #, c-format msgid "writing new key\n" msgstr "skriver ny nøgle\n" -#: scd/app-openpgp.c:3647 scd/app-openpgp.c:3999 +#: scd/app-openpgp.c:3656 scd/app-openpgp.c:4008 #, c-format msgid "creation timestamp missing\n" msgstr "oprettelsestidsstempel mangler\n" -#: scd/app-openpgp.c:3688 scd/app-openpgp.c:3696 +#: scd/app-openpgp.c:3697 scd/app-openpgp.c:3705 #, c-format msgid "RSA prime %s missing or not of size %d bits\n" msgstr "RSA-primtal %s mangler eller har ikke størrelsen %d bit\n" -#: scd/app-openpgp.c:3829 scd/app-openpgp.c:4106 +#: scd/app-openpgp.c:3838 scd/app-openpgp.c:4115 #, c-format msgid "failed to store the key: %s\n" msgstr "kunne ikke gemme nøglen: %s\n" -#: scd/app-openpgp.c:3993 +#: scd/app-openpgp.c:4002 #, fuzzy, c-format #| msgid "unsupported algorithm: %s" msgid "unsupported curve\n" msgstr "ikke understøttet algoritme: %s" -#: scd/app-openpgp.c:4263 +#: scd/app-openpgp.c:4272 #, c-format msgid "please wait while key is being generated ...\n" msgstr "vent venligst mens nøglen bliver oprettet ...\n" -#: scd/app-openpgp.c:4271 +#: scd/app-openpgp.c:4280 #, c-format msgid "generating key failed\n" msgstr "oprettelse af nøgle mislykkedes\n" -#: scd/app-openpgp.c:4277 +#: scd/app-openpgp.c:4286 #, fuzzy, c-format #| msgid "key generation completed (%d seconds)\n" msgid "key generation completed (%d second)\n" @@ -8776,27 +8788,27 @@ msgstr[0] "nøgleoprettelse færdig (%d sekunder)\n" msgstr[1] "nøgleoprettelse færdig (%d sekunder)\n" -#: scd/app-openpgp.c:4311 +#: scd/app-openpgp.c:4320 #, c-format msgid "invalid structure of OpenPGP card (DO 0x93)\n" msgstr "ugyldig struktur for OpenPGP-kort (DO 0x93)\n" -#: scd/app-openpgp.c:4361 +#: scd/app-openpgp.c:4370 #, c-format msgid "fingerprint on card does not match requested one\n" msgstr "fingeraftryk på kort matcher ikke den anmodte\n" -#: scd/app-openpgp.c:4560 +#: scd/app-openpgp.c:4569 #, c-format msgid "card does not support digest algorithm %s\n" msgstr "kort understøtter ikke sammendragsalgoritme %s\n" -#: scd/app-openpgp.c:4618 +#: scd/app-openpgp.c:4627 #, c-format msgid "signatures created so far: %lu\n" msgstr "underskrifter oprettet indtil videre: %lu\n" -#: scd/app-openpgp.c:5055 +#: scd/app-openpgp.c:5065 #, c-format msgid "" "verification of Admin PIN is currently prohibited through this command\n" @@ -8804,19 +8816,19 @@ "verifikation af administrator-PIN er i øjeblikket forbudt via denne " "kommando\n" -#: scd/app-openpgp.c:5386 scd/app-openpgp.c:5398 +#: scd/app-openpgp.c:5396 scd/app-openpgp.c:5408 #, c-format msgid "can't access %s - invalid OpenPGP card?\n" msgstr "kan ikke tilgå %s - ugyldig OpenPGP-kort?\n" -#: scd/app-dinsig.c:298 +#: scd/app-dinsig.c:299 msgid "||Please enter your PIN at the reader's pinpad" msgstr "||Indtast venligst din PIN på læserens numeriske tastatur" #. 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-dinsig.c:529 +#: scd/app-dinsig.c:532 msgid "|N|Initial New PIN" msgstr "|N|Oprindelig ny PIN" @@ -8911,11 +8923,11 @@ msgid "validation model requested by certificate: %s" msgstr "anmodt om valideringsmodel af certifikat: %s" -#: sm/certchain.c:199 sm/certchain.c:2164 +#: sm/certchain.c:199 sm/certchain.c:2165 msgid "chain" msgstr "kæde" -#: sm/certchain.c:200 sm/certchain.c:2164 +#: sm/certchain.c:200 sm/certchain.c:2165 msgid "shell" msgstr "skal" @@ -8939,239 +8951,239 @@ msgid "failed to open '%s': %s\n" msgstr "kan ikke åbne »%s«: %s\n" -#: sm/certchain.c:355 sm/certchain.c:384 dirmngr/validate.c:204 +#: sm/certchain.c:355 sm/certchain.c:385 dirmngr/validate.c:204 #, fuzzy, c-format #| msgid "note: non-critical certificate policy not allowed" msgid "Note: non-critical certificate policy not allowed" msgstr "bemærk: ikkekritisk certifikatpolitik er ikke tilladt" -#: sm/certchain.c:359 sm/certchain.c:388 dirmngr/validate.c:209 +#: sm/certchain.c:359 sm/certchain.c:389 dirmngr/validate.c:209 #, c-format msgid "certificate policy not allowed" msgstr "certifikatpolitik er ikke tilladt" -#: sm/certchain.c:595 sm/keydb.c:1084 sm/keydb.c:1171 +#: sm/certchain.c:596 sm/keydb.c:1084 sm/keydb.c:1171 #, c-format msgid "failed to get the fingerprint\n" msgstr "kunne ikke indhente fingeraftrykket\n" -#: sm/certchain.c:624 +#: sm/certchain.c:625 #, c-format msgid "looking up issuer at external location\n" msgstr "slår udsteder op på ekstern placering\n" -#: sm/certchain.c:644 +#: sm/certchain.c:645 #, c-format msgid "number of issuers matching: %d\n" msgstr "antallet af udstedere der matcher: %d\n" -#: sm/certchain.c:723 dirmngr/ocsp.c:685 +#: sm/certchain.c:724 dirmngr/ocsp.c:685 #, fuzzy, c-format #| msgid "can't access `%s': %s\n" msgid "can't get authorityInfoAccess: %s\n" msgstr "kan ikke tilgå »%s«: %s\n" -#: sm/certchain.c:791 +#: sm/certchain.c:792 #, c-format msgid "looking up issuer from the Dirmngr cache\n" msgstr "slår udsteder op fra Dirmngr-mellemlageret\n" -#: sm/certchain.c:816 +#: sm/certchain.c:817 #, c-format msgid "number of matching certificates: %d\n" msgstr "antallet af matchende certifikater: %d\n" -#: sm/certchain.c:819 +#: sm/certchain.c:820 #, c-format msgid "dirmngr cache-only key lookup failed: %s\n" msgstr "dirmngr cache-only-nøgleopslag mislykkedes: %s\n" -#: sm/certchain.c:1041 sm/certchain.c:1554 sm/certchain.c:2192 sm/decrypt.c:728 +#: sm/certchain.c:1042 sm/certchain.c:1555 sm/certchain.c:2193 sm/decrypt.c:728 #: sm/encrypt.c:345 sm/import.c:415 sm/keydb.c:1091 sm/keydb.c:1178 #: sm/sign.c:337 sm/verify.c:118 #, c-format msgid "failed to allocate keyDB handle\n" msgstr "kunne ikke allokere keyDB-håndtag\n" -#: sm/certchain.c:1225 +#: sm/certchain.c:1226 msgid "certificate has been revoked" msgstr "certifikat er blevet tilbagekaldt" -#: sm/certchain.c:1240 +#: sm/certchain.c:1241 msgid "the status of the certificate is unknown" msgstr "status for certifikatet er ukendt" -#: sm/certchain.c:1247 +#: sm/certchain.c:1248 #, c-format msgid "please make sure that the \"dirmngr\" is properly installed\n" msgstr "sikr dig at »dirmngr« er korrekt installeret\n" -#: sm/certchain.c:1253 +#: sm/certchain.c:1254 #, c-format msgid "checking the CRL failed: %s" msgstr "kontrol af CRL'en mislykkedes: %s" -#: sm/certchain.c:1282 sm/certchain.c:1350 dirmngr/validate.c:497 +#: sm/certchain.c:1283 sm/certchain.c:1351 dirmngr/validate.c:497 #, c-format msgid "certificate with invalid validity: %s" msgstr "certifikat med ugyldig validitet: %s" -#: sm/certchain.c:1297 sm/certchain.c:1382 dirmngr/validate.c:515 +#: sm/certchain.c:1298 sm/certchain.c:1383 dirmngr/validate.c:515 #, c-format msgid "certificate not yet valid" msgstr "certifikat er endnu ikke gyldigt" -#: sm/certchain.c:1298 sm/certchain.c:1383 +#: sm/certchain.c:1299 sm/certchain.c:1384 msgid "root certificate not yet valid" msgstr "rodcertifikat er endnu ikke gyldigt" -#: sm/certchain.c:1299 sm/certchain.c:1384 +#: sm/certchain.c:1300 sm/certchain.c:1385 msgid "intermediate certificate not yet valid" msgstr "mellemliggende certifikat er endnu ikke gyldigt" -#: sm/certchain.c:1312 dirmngr/validate.c:526 +#: sm/certchain.c:1313 dirmngr/validate.c:526 #, c-format msgid "certificate has expired" msgstr "certifikat er udløbet" -#: sm/certchain.c:1313 +#: sm/certchain.c:1314 msgid "root certificate has expired" msgstr "rodcertifikat er udløbet" -#: sm/certchain.c:1314 +#: sm/certchain.c:1315 msgid "intermediate certificate has expired" msgstr "mellemliggende certifikat er udløbet" -#: sm/certchain.c:1356 +#: sm/certchain.c:1357 #, c-format msgid "required certificate attributes missing: %s%s%s" msgstr "krævede certifikatattributter mangler: %s%s%s" -#: sm/certchain.c:1365 +#: sm/certchain.c:1366 msgid "certificate with invalid validity" msgstr "certifikat med ugyldig validitet" -#: sm/certchain.c:1402 +#: sm/certchain.c:1403 msgid "signature not created during lifetime of certificate" msgstr "underskrift blev ikke oprettet under certifikatets livsforløb" -#: sm/certchain.c:1404 +#: sm/certchain.c:1405 msgid "certificate not created during lifetime of issuer" msgstr "certifikat blev ikke oprettet under udsteders livsforløb" -#: sm/certchain.c:1405 +#: sm/certchain.c:1406 msgid "intermediate certificate not created during lifetime of issuer" msgstr "" "mellemliggende certifikat blev ikke oprettet under udsteders livsforløb" -#: sm/certchain.c:1409 +#: sm/certchain.c:1410 #, c-format msgid " ( signature created at " msgstr " (underskr. oprettet den " -#: sm/certchain.c:1410 +#: sm/certchain.c:1411 #, c-format msgid " (certificate created at " msgstr " (certifkat oprettet den " -#: sm/certchain.c:1413 +#: sm/certchain.c:1414 #, c-format msgid " (certificate valid from " msgstr " (certifikat gyldigt fra " -#: sm/certchain.c:1414 +#: sm/certchain.c:1415 #, c-format msgid " ( issuer valid from " msgstr " ( udsteder gyldig fra " -#: sm/certchain.c:1444 dirmngr/validate.c:577 +#: sm/certchain.c:1445 dirmngr/validate.c:577 #, c-format msgid "fingerprint=%s\n" msgstr "fingeraftryk=%s\n" -#: sm/certchain.c:1453 +#: sm/certchain.c:1454 #, c-format msgid "root certificate has now been marked as trusted\n" msgstr "rodcertifikat er nu blevet markeret som troværdig\n" -#: sm/certchain.c:1466 +#: sm/certchain.c:1467 #, c-format msgid "interactive marking as trusted not enabled in gpg-agent\n" msgstr "interaktiv markering som troværdig er ikke aktiveret i gpg-agent\n" -#: sm/certchain.c:1472 +#: sm/certchain.c:1473 #, c-format msgid "interactive marking as trusted disabled for this session\n" msgstr "interaktiv markering som troværdig deaktiveret for denne session\n" -#: sm/certchain.c:1531 +#: sm/certchain.c:1532 msgid "WARNING: creation time of signature not known - assuming current time" msgstr "" "ADVARSEL: oprettelsestidspunkt for underskrift er ukendt - antager aktuelt " "tidspunkt" -#: sm/certchain.c:1595 +#: sm/certchain.c:1596 msgid "no issuer found in certificate" msgstr "ingen udsteder fundet i certifikat" -#: sm/certchain.c:1673 +#: sm/certchain.c:1674 msgid "self-signed certificate has a BAD signature" msgstr "egenunderskrevet certifikat har en UGYLDIG underskrift" -#: sm/certchain.c:1742 dirmngr/validate.c:575 +#: sm/certchain.c:1743 dirmngr/validate.c:575 #, c-format msgid "root certificate is not marked trusted" msgstr "rodcertifikat er ikke markeret som troværdig" -#: sm/certchain.c:1758 +#: sm/certchain.c:1759 #, c-format msgid "checking the trust list failed: %s\n" msgstr "kontrol af troværdighedslisten mislykkedes: %s\n" -#: sm/certchain.c:1789 sm/import.c:176 sm/keylist.c:1396 dirmngr/validate.c:630 +#: sm/certchain.c:1790 sm/import.c:176 sm/keylist.c:1396 dirmngr/validate.c:630 #, c-format msgid "certificate chain too long\n" msgstr "certifikatkæde er for lang\n" -#: sm/certchain.c:1801 dirmngr/validate.c:642 +#: sm/certchain.c:1802 dirmngr/validate.c:642 #, c-format msgid "issuer certificate not found" msgstr "udstedercertifikat blev ikke fundet" -#: sm/certchain.c:1834 dirmngr/validate.c:668 +#: sm/certchain.c:1835 dirmngr/validate.c:668 #, c-format msgid "certificate has a BAD signature" msgstr "certifikat har en UGYLDIG underskrift" -#: sm/certchain.c:1866 dirmngr/validate.c:692 +#: sm/certchain.c:1867 dirmngr/validate.c:692 msgid "found another possible matching CA certificate - trying again" msgstr "fandt et andet mulig matchende CA-certifikat - prøver igen" -#: sm/certchain.c:1925 dirmngr/validate.c:717 +#: sm/certchain.c:1926 dirmngr/validate.c:717 #, c-format msgid "certificate chain longer than allowed by CA (%d)" msgstr "certifikatkæde er længere end tilladt af CA (%d)" -#: sm/certchain.c:1967 sm/certchain.c:2263 dirmngr/validate.c:747 +#: sm/certchain.c:1968 sm/certchain.c:2264 dirmngr/validate.c:747 #, c-format msgid "certificate is good\n" msgstr "certifikat er gyldigt\n" -#: sm/certchain.c:1968 +#: sm/certchain.c:1969 #, c-format msgid "intermediate certificate is good\n" msgstr "mellemliggende certifikat er gyldigt\n" -#: sm/certchain.c:1969 +#: sm/certchain.c:1970 #, c-format msgid "root certificate is good\n" msgstr "rodcertifikat er gyldigt\n" -#: sm/certchain.c:2151 +#: sm/certchain.c:2152 msgid "switching to chain model" msgstr "skifter til kædemodel" -#: sm/certchain.c:2160 +#: sm/certchain.c:2161 #, c-format msgid "validation model used: %s" msgstr "valideringsmodel brugt: %s" Binary files /tmp/tmpp8wxn021/8c8sKM9mxi/gnupg2-2.2.40/po/de.gmo and /tmp/tmpp8wxn021/sgn7BhUbzZ/gnupg2-2.2.41/po/de.gmo differ diff -Nru gnupg2-2.2.40/po/de.po gnupg2-2.2.41/po/de.po --- gnupg2-2.2.40/po/de.po 2022-10-10 09:58:25.000000000 +0000 +++ gnupg2-2.2.41/po/de.po 2022-12-09 08:48:34.000000000 +0000 @@ -9,8 +9,8 @@ msgstr "" "Project-Id-Version: gnupg-2.1.0\n" "Report-Msgid-Bugs-To: translations@gnupg.org\n" -"POT-Creation-Date: 2022-10-10 11:58+0200\n" -"PO-Revision-Date: 2022-04-25 18:05+0200\n" +"POT-Creation-Date: 2022-12-09 09:48+0100\n" +"PO-Revision-Date: 2022-12-09 09:06+0100\n" "Last-Translator: Werner Koch \n" "Language-Team: German \n" "Language: de\n" @@ -228,20 +228,20 @@ msgid "ssh keys greater than %d bits are not supported\n" msgstr "SSH Schlüssel von mehr als %d Bits werden nicht unterstützt\n" -#: agent/command-ssh.c:862 common/dotlock.c:856 g10/card-util.c:947 -#: g10/exec.c:554 g10/export.c:1320 g10/gpg.c:1400 g10/keygen.c:4998 +#: agent/command-ssh.c:862 common/dotlock.c:856 g10/card-util.c:946 +#: g10/exec.c:554 g10/export.c:1335 g10/gpg.c:1409 g10/keygen.c:5052 #: g10/keyring.c:1322 g10/keyring.c:1637 g10/openfile.c:291 g10/sign.c:1008 #: g10/sign.c:1322 g10/tdbio.c:753 #, c-format msgid "can't create '%s': %s\n" msgstr "'%s' kann nicht erzeugt werden: %s\n" -#: agent/command-ssh.c:874 common/helpfile.c:57 g10/card-util.c:904 +#: agent/command-ssh.c:874 common/helpfile.c:57 g10/card-util.c:903 #: g10/dearmor.c:59 g10/dearmor.c:106 g10/decrypt.c:65 g10/decrypt.c:136 -#: g10/decrypt.c:153 g10/encrypt.c:239 g10/encrypt.c:678 g10/gpg.c:1401 -#: g10/import.c:364 g10/import.c:548 g10/import.c:776 g10/keygen.c:4036 +#: g10/decrypt.c:153 g10/encrypt.c:239 g10/encrypt.c:678 g10/gpg.c:1410 +#: g10/import.c:365 g10/import.c:549 g10/import.c:777 g10/keygen.c:4090 #: g10/keyring.c:1663 g10/openfile.c:195 g10/openfile.c:209 g10/plaintext.c:128 -#: g10/plaintext.c:649 g10/sign.c:990 g10/sign.c:1201 g10/sign.c:1306 +#: g10/plaintext.c:654 g10/sign.c:990 g10/sign.c:1201 g10/sign.c:1306 #: g10/sign.c:1451 g10/tdbdump.c:145 g10/tdbdump.c:153 g10/tdbio.c:758 #: g10/tdbio.c:829 g10/verify.c:96 g10/verify.c:160 sm/gpgsm.c:2160 #: sm/gpgsm.c:2190 sm/gpgsm.c:2228 sm/qualified.c:66 dirmngr/certcache.c:420 @@ -468,33 +468,33 @@ msgid "csh-style command output" msgstr "Ausgabe für /bin/csh" -#: agent/gpg-agent.c:185 g10/gpg.c:579 scd/scdaemon.c:126 sm/gpgsm.c:410 +#: agent/gpg-agent.c:185 g10/gpg.c:580 scd/scdaemon.c:126 sm/gpgsm.c:410 #: dirmngr/dirmngr.c:192 msgid "|FILE|read options from FILE" msgstr "|DATEI|Konfigurationsoptionen aus DATEI lesen" -#: agent/gpg-agent.c:189 g10/gpg.c:566 scd/scdaemon.c:130 sm/gpgsm.c:259 +#: agent/gpg-agent.c:189 g10/gpg.c:567 scd/scdaemon.c:130 sm/gpgsm.c:259 #: dirmngr/dirmngr.c:196 msgid "Options controlling the diagnostic output" msgstr "Optionen zur Einstellung der Diagnoseausgaben" -#: agent/gpg-agent.c:191 g10/gpg.c:568 g10/gpgv.c:78 kbx/kbxutil.c:88 +#: agent/gpg-agent.c:191 g10/gpg.c:569 g10/gpgv.c:78 kbx/kbxutil.c:88 #: scd/scdaemon.c:132 sm/gpgsm.c:261 dirmngr/dirmngr-client.c:70 #: dirmngr/dirmngr.c:198 tools/gpg-connect-agent.c:78 tools/gpgconf.c:110 msgid "verbose" msgstr "Detaillierte Informationen" -#: agent/gpg-agent.c:192 g10/gpg.c:570 g10/gpgv.c:79 kbx/kbxutil.c:89 +#: agent/gpg-agent.c:192 g10/gpg.c:571 g10/gpgv.c:79 kbx/kbxutil.c:89 #: scd/scdaemon.c:133 sm/gpgsm.c:263 dirmngr/dirmngr-client.c:71 #: dirmngr/dirmngr.c:199 msgid "be somewhat more quiet" msgstr "Reduzierte Informationen" -#: agent/gpg-agent.c:200 g10/gpg.c:583 sm/gpgsm.c:276 dirmngr/dirmngr.c:209 +#: agent/gpg-agent.c:200 g10/gpg.c:584 sm/gpgsm.c:276 dirmngr/dirmngr.c:209 msgid "|FILE|write server mode logs to FILE" msgstr "|DATEI|Schreibe im Servermodus Logs auf DATEI" -#: agent/gpg-agent.c:204 g10/gpg.c:589 scd/scdaemon.c:147 sm/gpgsm.c:283 +#: agent/gpg-agent.c:204 g10/gpg.c:590 scd/scdaemon.c:147 sm/gpgsm.c:283 #: dirmngr/dirmngr.c:213 msgid "Options controlling the configuration" msgstr "Optionen zur Einstellung der Konfiguration" @@ -531,7 +531,7 @@ msgid "enable putty support" msgstr "PuTTY Unterstützung einschalten" -#: agent/gpg-agent.c:237 g10/gpg.c:831 scd/scdaemon.c:175 sm/gpgsm.c:369 +#: agent/gpg-agent.c:237 g10/gpg.c:832 scd/scdaemon.c:175 sm/gpgsm.c:369 msgid "Options controlling the security" msgstr "Optionen zur Einstellung der Sicherheit" @@ -627,7 +627,7 @@ #. reporting address. This is so that we can change the #. reporting address without breaking the translations. #: agent/gpg-agent.c:563 agent/preset-passphrase.c:100 agent/protect-tool.c:155 -#: g10/gpg.c:1108 g10/gpgv.c:149 kbx/kbxutil.c:113 scd/scdaemon.c:313 +#: g10/gpg.c:1117 g10/gpgv.c:149 kbx/kbxutil.c:113 scd/scdaemon.c:313 #: sm/gpgsm.c:600 dirmngr/dirmngr-client.c:168 dirmngr/dirmngr.c:458 #: tools/gpg-connect-agent.c:205 tools/gpgconf.c:154 #: tools/gpg-check-pattern.c:143 @@ -648,26 +648,26 @@ "Syntax: @GPG_AGENT@ [Optionen] [Befehl [Argumente]]\n" "Verwaltung von geheimen Schlüsseln für @GNUPG@\n" -#: agent/gpg-agent.c:619 g10/gpg.c:1304 scd/scdaemon.c:385 sm/gpgsm.c:748 +#: agent/gpg-agent.c:619 g10/gpg.c:1313 scd/scdaemon.c:385 sm/gpgsm.c:748 #: dirmngr/dirmngr.c:542 #, c-format msgid "invalid debug-level '%s' given\n" msgstr "ungültige Debugebene `%s' angegeben\n" -#: agent/gpg-agent.c:988 g10/gpg.c:3810 g10/gpg.c:3834 sm/gpgsm.c:1585 +#: agent/gpg-agent.c:988 g10/gpg.c:3830 g10/gpg.c:3854 sm/gpgsm.c:1585 #: sm/gpgsm.c:1591 #, c-format msgid "selected digest algorithm is invalid\n" msgstr "Das ausgewählte Hashverfahren ist ungültig\n" #: agent/gpg-agent.c:1216 agent/gpg-agent.c:2029 common/argparse.c:1766 -#: common/argparse.c:1858 g10/gpg.c:2517 scd/scdaemon.c:547 sm/gpgsm.c:1007 +#: common/argparse.c:1858 g10/gpg.c:2526 scd/scdaemon.c:547 sm/gpgsm.c:1007 #: dirmngr/dirmngr.c:1081 dirmngr/dirmngr.c:1937 #, c-format msgid "reading options from '%s'\n" msgstr "Optionen werden aus '%s' gelesen\n" -#: agent/gpg-agent.c:1332 g10/gpg.c:3751 scd/scdaemon.c:671 sm/gpgsm.c:1522 +#: agent/gpg-agent.c:1332 g10/gpg.c:3769 scd/scdaemon.c:671 sm/gpgsm.c:1522 #: dirmngr/dirmngr.c:1190 tools/gpg-connect-agent.c:1244 tools/gpgconf.c:677 #, c-format msgid "Note: '%s' is not considered an option\n" @@ -797,7 +797,7 @@ "Syntax: gpg-preset-passphrase [Optionen] KEYGRIP\n" "Pflege des Passwortpuffers\n" -#: agent/protect-tool.c:108 g10/gpg.c:441 kbx/kbxutil.c:71 sm/gpgsm.c:210 +#: agent/protect-tool.c:108 g10/gpg.c:442 kbx/kbxutil.c:71 sm/gpgsm.c:210 #: dirmngr/dirmngr.c:171 tools/gpgconf.c:80 msgid "" "@Commands:\n" @@ -1035,7 +1035,7 @@ msgid "secret key parts are not available\n" msgstr "Teile des geheimen Schlüssels sind nicht vorhanden\n" -#: agent/cvt-openpgp.c:344 g10/card-util.c:1556 +#: agent/cvt-openpgp.c:344 g10/card-util.c:1555 #, c-format msgid "public key algorithm %d (%s) is not supported\n" msgstr "Public-Key-Verfahren %d (%s) wird nicht unterstützt\n" @@ -1191,7 +1191,7 @@ msgid "out of core while allocating %lu bytes" msgstr "Kein Speicher mehr vorhanden, als %lu Byte zugewiesen werden sollten" -#: common/miscellaneous.c:115 g10/card-util.c:911 tools/no-libgcrypt.c:30 +#: common/miscellaneous.c:115 g10/card-util.c:910 tools/no-libgcrypt.c:30 #, c-format msgid "error allocating enough memory: %s\n" msgstr "Fehler beim Zuteilen genügenden Speichers: %s\n" @@ -1304,7 +1304,7 @@ msgstr "Verfahren: %s" #: common/audit.c:774 common/audit.c:776 common/audit.c:921 common/audit.c:923 -#: scd/app-openpgp.c:3557 +#: scd/app-openpgp.c:3566 #, c-format msgid "unsupported algorithm: %s" msgstr "Nicht unterstütztes Verfahren: %s" @@ -1379,11 +1379,11 @@ msgid "Root certificate trustworthy" msgstr "Wurzelzertifikat vertrauenswürdig" -#: common/audit.c:1112 sm/certchain.c:1235 +#: common/audit.c:1112 sm/certchain.c:1236 msgid "no CRL found for certificate" msgstr "Keine CRL für das Zertifikat gefunden" -#: common/audit.c:1115 sm/certchain.c:1245 +#: common/audit.c:1115 sm/certchain.c:1246 msgid "the available CRL is too old" msgstr "Die vorhandene CRL ist zu alt" @@ -1508,7 +1508,7 @@ msgid "missing argument for option \"%.50s\"\n" msgstr "Fehlendes Argument für Option \"%.50s\"\n" -#: common/argparse.c:558 g10/gpg.c:3525 +#: common/argparse.c:558 g10/gpg.c:3543 #, c-format msgid "invalid argument for option \"%.50s\"\n" msgstr "Ungültiges Argument für Option \"%.50s\"\n" @@ -1608,92 +1608,92 @@ msgid "%s is too old (need %s, have %s)\n" msgstr "Die Bibliothek %s ist nicht aktuell (benötige %s, habe %s)\n" -#: g10/armor.c:423 +#: g10/armor.c:424 #, c-format msgid "armor: %s\n" msgstr "ASCII-Hülle: %s\n" -#: g10/armor.c:462 +#: g10/armor.c:463 #, c-format msgid "invalid armor header: " msgstr "Ungültige ASCII-Hülle" -#: g10/armor.c:473 +#: g10/armor.c:474 #, c-format msgid "armor header: " msgstr "ASCII-Hülle: " -#: g10/armor.c:486 +#: g10/armor.c:487 #, c-format msgid "invalid clearsig header\n" msgstr "Ungültige Klartextsignatur-Einleitung\n" -#: g10/armor.c:499 +#: g10/armor.c:500 #, c-format msgid "unknown armor header: " msgstr "Unbekannter Header in der ASCII-Hülle: " -#: g10/armor.c:552 +#: g10/armor.c:553 #, c-format msgid "nested clear text signatures\n" msgstr "verschachtelte Klartextsignatur\n" -#: g10/armor.c:687 +#: g10/armor.c:688 #, c-format msgid "unexpected armor: " msgstr "Unerwartete ASCII-Hülle: " -#: g10/armor.c:700 +#: g10/armor.c:701 #, c-format msgid "invalid dash escaped line: " msgstr "Ungültige mit Bindestrich \"escapte\" Zeile: " -#: g10/armor.c:872 g10/armor.c:1492 +#: g10/armor.c:873 g10/armor.c:1493 #, c-format msgid "invalid radix64 character %02X skipped\n" msgstr "Ungültiges \"radix64\" Zeichen %02x übersprungen\n" -#: g10/armor.c:915 +#: g10/armor.c:916 #, c-format msgid "premature eof (no CRC)\n" msgstr "vorzeitiges Dateiende (keine Prüfsumme)\n" -#: g10/armor.c:949 +#: g10/armor.c:950 #, c-format msgid "premature eof (in CRC)\n" msgstr "vorzeitiges Dateiende (innerhalb der Prüfsumme)\n" -#: g10/armor.c:957 +#: g10/armor.c:958 #, c-format msgid "malformed CRC\n" msgstr "Falsch aufgebaute Prüfsumme\n" -#: g10/armor.c:961 g10/armor.c:1529 +#: g10/armor.c:962 g10/armor.c:1530 #, c-format msgid "CRC error; %06lX - %06lX\n" msgstr "Prüfsummenfehler; %06lx - %06lx\n" -#: g10/armor.c:981 +#: g10/armor.c:982 #, c-format msgid "premature eof (in trailer)\n" msgstr "vorzeitiges Dateiende (im Nachsatz)\n" -#: g10/armor.c:985 +#: g10/armor.c:986 #, c-format msgid "error in trailer line\n" msgstr "Fehler in der Nachsatzzeile\n" -#: g10/armor.c:1305 +#: g10/armor.c:1306 #, c-format msgid "no valid OpenPGP data found.\n" msgstr "Keine gültigen OpenPGP-Daten gefunden.\n" -#: g10/armor.c:1310 +#: g10/armor.c:1311 #, c-format msgid "invalid armor: line longer than %d characters\n" msgstr "ungültige ASCII-Hülle: Zeile ist länger als %d Zeichen\n" -#: g10/armor.c:1314 +#: g10/armor.c:1315 #, c-format msgid "" "quoted printable character in armor - probably a buggy MTA has been used\n" @@ -1831,23 +1831,23 @@ msgid "server uses an invalid certificate" msgstr "Der Server benutzt eine ungültiges Zertifikat" -#: g10/call-dirmngr.c:462 g10/gpg.c:4458 +#: g10/call-dirmngr.c:462 g10/gpg.c:4478 #, c-format msgid "Note: %s\n" msgstr "Hinweis: %s\n" -#: g10/card-util.c:86 g10/card-util.c:366 g10/card-util.c:1918 +#: g10/card-util.c:86 g10/card-util.c:366 g10/card-util.c:1917 #, c-format msgid "OpenPGP card not available: %s\n" msgstr "OpenPGP Karte ist nicht vorhanden: %s\n" -#: g10/card-util.c:91 g10/card-util.c:1924 +#: g10/card-util.c:91 g10/card-util.c:1923 #, c-format msgid "OpenPGP card no. %s detected\n" msgstr "OpenPGP Karte Nr. %s erkannt\n" -#: g10/card-util.c:97 g10/card-util.c:2253 g10/delkey.c:160 g10/keyedit.c:1423 -#: g10/keygen.c:4466 g10/revoke.c:214 g10/revoke.c:636 +#: g10/card-util.c:97 g10/card-util.c:2252 g10/delkey.c:160 g10/keyedit.c:1423 +#: g10/keygen.c:4520 g10/revoke.c:214 g10/revoke.c:636 #, c-format msgid "can't do this in batch mode\n" msgstr "Dies kann im Batchmodus nicht durchgeführt werden.\n" @@ -1857,14 +1857,14 @@ msgid "This command is only available for version 2 cards\n" msgstr "Dieser Befehl ist nur für Karten ab Version 2 möglich.\n" -#: g10/card-util.c:107 scd/app-openpgp.c:2866 +#: g10/card-util.c:107 scd/app-openpgp.c:2869 #, c-format msgid "Reset Code not or not anymore available\n" msgstr "Der Rückstellcode ist nicht vorhanden\n" -#: g10/card-util.c:140 g10/card-util.c:1442 g10/card-util.c:1704 -#: g10/card-util.c:1796 g10/keyedit.c:394 g10/keyedit.c:415 g10/keyedit.c:429 -#: g10/keygen.c:1808 g10/keygen.c:1980 g10/keygen.c:2186 g10/keygen.c:2477 +#: g10/card-util.c:140 g10/card-util.c:1441 g10/card-util.c:1703 +#: g10/card-util.c:1795 g10/keyedit.c:394 g10/keyedit.c:415 g10/keyedit.c:429 +#: g10/keygen.c:1862 g10/keygen.c:2034 g10/keygen.c:2240 g10/keygen.c:2531 #: sm/certreqgen-ui.c:165 sm/certreqgen-ui.c:291 sm/certreqgen-ui.c:325 msgid "Your selection? " msgstr "Ihre Auswahl? " @@ -1915,79 +1915,79 @@ msgstr "" "Fehler: Der zusammengesetzte Name ist zu lang (Grenze beträgt %d Zeichen).\n" -#: g10/card-util.c:826 +#: g10/card-util.c:825 msgid "URL to retrieve public key: " msgstr "URL um den öffentlichen Schlüssel zu holen: " -#: g10/card-util.c:920 g10/decrypt-data.c:509 g10/import.c:399 g10/import.c:746 -#: g10/import.c:798 dirmngr/crlcache.c:655 dirmngr/crlcache.c:660 +#: g10/card-util.c:919 g10/decrypt-data.c:509 g10/import.c:400 g10/import.c:747 +#: g10/import.c:799 dirmngr/crlcache.c:655 dirmngr/crlcache.c:660 #: dirmngr/crlcache.c:914 dirmngr/crlcache.c:920 dirmngr/dirmngr.c:1748 #: tools/gpgconf.c:483 tools/gpgconf.c:529 #, c-format msgid "error reading '%s': %s\n" msgstr "Fehler beim Lesen von `%s': %s\n" -#: g10/card-util.c:953 g10/decrypt-data.c:512 g10/export.c:2467 +#: g10/card-util.c:952 g10/decrypt-data.c:512 g10/export.c:2586 #: dirmngr/crlcache.c:925 #, c-format msgid "error writing '%s': %s\n" msgstr "Fehler beim Schreiben von %s: %s\n" -#: g10/card-util.c:980 +#: g10/card-util.c:979 msgid "Login data (account name): " msgstr "Logindaten (Kontenname): " -#: g10/card-util.c:1018 +#: g10/card-util.c:1017 msgid "Private DO data: " msgstr "Geheime DO-Daten: " -#: g10/card-util.c:1103 +#: g10/card-util.c:1102 msgid "Language preferences: " msgstr "Spracheinstellungen" -#: g10/card-util.c:1111 +#: g10/card-util.c:1110 msgid "Error: invalid length of preference string.\n" msgstr "Fehler: Ungültige Länge der Einstellungs-Zeichenfolge.\n" -#: g10/card-util.c:1120 +#: g10/card-util.c:1119 msgid "Error: invalid characters in preference string.\n" msgstr "Fehler: Ungültige Zeichen in der Einstellungs-Zeichenfolge\n" -#: g10/card-util.c:1142 +#: g10/card-util.c:1141 msgid "Salutation (M = Mr., F = Ms., or space): " msgstr "Anrede (M=Hr., F=Fr. oder Leerzeichen): " -#: g10/card-util.c:1156 +#: g10/card-util.c:1155 msgid "Error: invalid response.\n" msgstr "Fehler: ungültige Antwort.\n" -#: g10/card-util.c:1178 +#: g10/card-util.c:1177 msgid "CA fingerprint: " msgstr "CA-Fingerabdruck: " -#: g10/card-util.c:1201 +#: g10/card-util.c:1200 msgid "Error: invalid formatted fingerprint.\n" msgstr "Fehler: ungültig geformter Fingerabdruck.\n" -#: g10/card-util.c:1252 +#: g10/card-util.c:1251 #, c-format msgid "key operation not possible: %s\n" msgstr "Schlüsseloperation nicht möglich: %s\n" -#: g10/card-util.c:1253 +#: g10/card-util.c:1252 msgid "not an OpenPGP card" msgstr "Keine gültige OpenPGP-Karte" -#: g10/card-util.c:1266 g10/keygen.c:4486 g10/keygen.c:5562 +#: g10/card-util.c:1265 g10/keygen.c:4540 g10/keygen.c:5616 #, c-format msgid "error getting current key info: %s\n" msgstr "Fehler beim Holen der aktuellen Schlüsselinfo: %s\n" -#: g10/card-util.c:1351 +#: g10/card-util.c:1350 msgid "Replace existing key? (y/N) " msgstr "Vorhandenen Schlüssel ersetzen? (j/N) " -#: g10/card-util.c:1368 +#: g10/card-util.c:1367 msgid "" "Note: There is no guarantee that the card supports the requested size.\n" " If the key generation does not succeed, please check the\n" @@ -1999,100 +1999,100 @@ " fehlschlagen, so ziehen Sie bitte die Dokumentation Ihrer Karte\n" " zu Rate.\n" -#: g10/card-util.c:1390 g10/keygen.c:2363 sm/certreqgen-ui.c:179 +#: g10/card-util.c:1389 g10/keygen.c:2417 sm/certreqgen-ui.c:179 #, c-format msgid "What keysize do you want? (%u) " msgstr "Welche Schlüssellänge wünschen Sie? (%u) " -#: g10/card-util.c:1400 g10/keygen.c:2286 g10/keygen.c:2318 +#: g10/card-util.c:1399 g10/keygen.c:2340 g10/keygen.c:2372 #: sm/certreqgen-ui.c:194 #, c-format msgid "rounded up to %u bits\n" msgstr "aufgerundet auf %u Bit\n" -#: g10/card-util.c:1408 g10/keygen.c:2371 sm/certreqgen-ui.c:184 +#: g10/card-util.c:1407 g10/keygen.c:2425 sm/certreqgen-ui.c:184 #, c-format msgid "%s keysizes must be in the range %u-%u\n" msgstr "%s-Schlüssellängen müssen im Bereich %u-%u sein\n" -#: g10/card-util.c:1427 +#: g10/card-util.c:1426 msgid "Changing card key attribute for: " msgstr "Ändern des Schlüsselattributs für den: " -#: g10/card-util.c:1429 +#: g10/card-util.c:1428 msgid "Signature key\n" msgstr "Signatur-Schlüssel\n" -#: g10/card-util.c:1431 +#: g10/card-util.c:1430 msgid "Encryption key\n" msgstr "Verschlüsselungs-Schlüssel\n" -#: g10/card-util.c:1433 +#: g10/card-util.c:1432 msgid "Authentication key\n" msgstr "Authentisierungs-Schlüssel\n" -#: g10/card-util.c:1435 g10/keygen.c:1926 sm/certreqgen-ui.c:157 +#: g10/card-util.c:1434 g10/keygen.c:1980 sm/certreqgen-ui.c:157 msgid "Please select what kind of key you want:\n" msgstr "Bitte wählen Sie, welche Art von Schlüssel Sie möchten:\n" -#: g10/card-util.c:1436 sm/certreqgen-ui.c:158 +#: g10/card-util.c:1435 sm/certreqgen-ui.c:158 #, c-format msgid " (%d) RSA\n" msgstr " (%d) RSA\n" -#: g10/card-util.c:1437 +#: g10/card-util.c:1436 #, c-format msgid " (%d) ECC\n" msgstr " (%d) ECC\n" -#: g10/card-util.c:1449 g10/card-util.c:1716 g10/card-util.c:1816 -#: g10/keyedit.c:900 g10/keygen.c:1834 g10/keygen.c:1862 g10/keygen.c:1987 -#: g10/keygen.c:2222 g10/keygen.c:2505 g10/revoke.c:838 +#: g10/card-util.c:1448 g10/card-util.c:1715 g10/card-util.c:1815 +#: g10/keyedit.c:900 g10/keygen.c:1888 g10/keygen.c:1916 g10/keygen.c:2041 +#: g10/keygen.c:2276 g10/keygen.c:2559 g10/revoke.c:838 msgid "Invalid selection.\n" msgstr "Ungültige Auswahl.\n" -#: g10/card-util.c:1522 +#: g10/card-util.c:1521 #, c-format msgid "The card will now be re-configured to generate a key of %u bits\n" msgstr "" "Die Karte wird nun rekonfiguriert, um einen Schlüssel von %u Bit zu " "erzeugen\n" -#: g10/card-util.c:1527 +#: g10/card-util.c:1526 #, c-format msgid "The card will now be re-configured to generate a key of type: %s\n" msgstr "Die Karte wird nun rekonfiguriert für einen Schlüssel des Typs: %s\n" -#: g10/card-util.c:1563 +#: g10/card-util.c:1562 #, c-format msgid "error changing key attribute for key %d: %s\n" msgstr "Fehler beim Ändern der Attributs des Schlüssels %d: %s\n" -#: g10/card-util.c:1579 g10/card-util.c:2106 +#: g10/card-util.c:1578 g10/card-util.c:2105 #, c-format msgid "error getting card info: %s\n" msgstr "Fehler beim Holen der aktuellen Schlüsselinfo: %s\n" -#: g10/card-util.c:1585 g10/card-util.c:1930 g10/card-util.c:2112 +#: g10/card-util.c:1584 g10/card-util.c:1929 g10/card-util.c:2111 #, c-format msgid "This command is not supported by this card\n" msgstr "Dieser Befehl wird von dieser Karte nicht unterstützt.\n" -#: g10/card-util.c:1631 +#: g10/card-util.c:1630 msgid "Make off-card backup of encryption key? (Y/n) " msgstr "" "Sicherung des Verschlüsselungsschlüssel außerhalb der Karte erstellen? (J/n) " -#: g10/card-util.c:1645 +#: g10/card-util.c:1644 #, c-format msgid "Note: keys are already stored on the card!\n" msgstr "Hinweis: Auf der Karte sind bereits Schlüssel gespeichert!\n" -#: g10/card-util.c:1648 +#: g10/card-util.c:1647 msgid "Replace existing keys? (y/N) " msgstr "Vorhandene Schlüssel ersetzen? (j/N) " -#: g10/card-util.c:1660 +#: g10/card-util.c:1659 #, c-format msgid "" "Please note that the factory settings of the PINs are\n" @@ -2103,144 +2103,144 @@ " PIN = '%s' Admin-PIN = '%s'\n" "Sie sollten sie mittels des Befehls --change-pin ändern\n" -#: g10/card-util.c:1695 +#: g10/card-util.c:1694 msgid "Please select the type of key to generate:\n" msgstr "Bitte wählen Sie die Art des Schlüssel, der erzeugt werden soll:\n" -#: g10/card-util.c:1697 g10/card-util.c:1787 +#: g10/card-util.c:1696 g10/card-util.c:1786 msgid " (1) Signature key\n" msgstr " (1) Signatur-Schlüssel\n" -#: g10/card-util.c:1698 g10/card-util.c:1789 +#: g10/card-util.c:1697 g10/card-util.c:1788 msgid " (2) Encryption key\n" msgstr " (2) Verschlüsselungs-Schlüssel\n" -#: g10/card-util.c:1699 g10/card-util.c:1791 +#: g10/card-util.c:1698 g10/card-util.c:1790 msgid " (3) Authentication key\n" msgstr " (3) Authentisierungs-Schlüssel\n" -#: g10/card-util.c:1784 +#: g10/card-util.c:1783 msgid "Please select where to store the key:\n" msgstr "Wählen Sie den Speicherort für den Schlüssel:\n" -#: g10/card-util.c:1830 +#: g10/card-util.c:1829 #, c-format msgid "KEYTOCARD failed: %s\n" msgstr "Das KEYTOCARD Kommando schlug fehl: %s\n" -#: g10/card-util.c:1935 +#: g10/card-util.c:1934 #, c-format msgid "Note: This command destroys all keys stored on the card!\n" msgstr "" "Hinweis: Dieses Kommando zerstört alle auf der Karte gespeicherten " "Schlüssel!\n" -#: g10/card-util.c:1938 +#: g10/card-util.c:1937 msgid "Continue? (y/N) " msgstr "Fortsetzen? (j/N) " -#: g10/card-util.c:1943 +#: g10/card-util.c:1942 msgid "Really do a factory reset? (enter \"yes\") " msgstr "Möchten Sie die Karte wirklich komplett löschen? (\"yes\" eingeben) " -#: g10/card-util.c:2129 +#: g10/card-util.c:2128 #, c-format msgid "error for setup KDF: %s\n" msgstr "Fehler beim Einstellen der KDF: %s\n" -#: g10/card-util.c:2158 g10/keyedit.c:1260 +#: g10/card-util.c:2157 g10/keyedit.c:1260 msgid "quit this menu" msgstr "Menü verlassen" -#: g10/card-util.c:2160 +#: g10/card-util.c:2159 msgid "show admin commands" msgstr "Zeige Admin-Befehle" -#: g10/card-util.c:2161 g10/keyedit.c:1263 +#: g10/card-util.c:2160 g10/keyedit.c:1263 msgid "show this help" msgstr "Diese Hilfe zeigen" -#: g10/card-util.c:2163 +#: g10/card-util.c:2162 msgid "list all available data" msgstr "Alle vorhandenen Daten auflisten" -#: g10/card-util.c:2166 +#: g10/card-util.c:2165 msgid "change card holder's name" msgstr "Kartenbesitzernamen ändern" -#: g10/card-util.c:2167 +#: g10/card-util.c:2166 msgid "change URL to retrieve key" msgstr "Schlüssel-holen-URL ändern" -#: g10/card-util.c:2168 +#: g10/card-util.c:2167 msgid "fetch the key specified in the card URL" msgstr "Holen des Schlüssels mittels der URL auf der Karte" -#: g10/card-util.c:2169 +#: g10/card-util.c:2168 msgid "change the login name" msgstr "Ändern der Logindaten" -#: g10/card-util.c:2170 +#: g10/card-util.c:2169 msgid "change the language preferences" msgstr "Ändern der Spracheinstellungen" -#: g10/card-util.c:2171 +#: g10/card-util.c:2170 msgid "change card holder's salutation" msgstr "Ändern der Anrede des Kartenbesitzers" -#: g10/card-util.c:2173 +#: g10/card-util.c:2172 msgid "change a CA fingerprint" msgstr "Ändern des CA-Fingerabdrucks" -#: g10/card-util.c:2174 +#: g10/card-util.c:2173 msgid "toggle the signature force PIN flag" msgstr "Umschalten des \"Signature-force-PIN\"-Schalters" -#: g10/card-util.c:2175 +#: g10/card-util.c:2174 msgid "generate new keys" msgstr "neue Schlüssel erzeugen" -#: g10/card-util.c:2176 +#: g10/card-util.c:2175 msgid "menu to change or unblock the PIN" msgstr "Menü für Ändern oder Entsperren der PIN" -#: g10/card-util.c:2177 +#: g10/card-util.c:2176 msgid "verify the PIN and list all data" msgstr "überprüfe die PIN und liste alle Daten auf" -#: g10/card-util.c:2178 +#: g10/card-util.c:2177 msgid "unblock the PIN using a Reset Code" msgstr "die PIN mit dem Rückstellcode wieder freigeben" -#: g10/card-util.c:2179 +#: g10/card-util.c:2178 msgid "destroy all keys and data" msgstr "alle Schlüssel und Daten löschen" -#: g10/card-util.c:2180 +#: g10/card-util.c:2179 msgid "setup KDF for PIN authentication" msgstr "Einrichten der KDF zur Authentifizierung" -#: g10/card-util.c:2181 +#: g10/card-util.c:2180 msgid "change the key attribute" msgstr "Das Schlüsselattribut ändern" -#: g10/card-util.c:2305 +#: g10/card-util.c:2304 msgid "gpg/card> " msgstr "gpg/card> " -#: g10/card-util.c:2346 +#: g10/card-util.c:2345 msgid "Admin-only command\n" msgstr "nur-Admin Befehl\n" -#: g10/card-util.c:2377 +#: g10/card-util.c:2376 msgid "Admin commands are allowed\n" msgstr "Admin-Befehle sind erlaubt\n" -#: g10/card-util.c:2379 +#: g10/card-util.c:2378 msgid "Admin commands are not allowed\n" msgstr "Admin-Befehle sind nicht erlaubt\n" -#: g10/card-util.c:2482 g10/keyedit.c:2229 +#: g10/card-util.c:2481 g10/keyedit.c:2229 msgid "Invalid command (try \"help\")\n" msgstr "Ungültiger Befehl (versuchen Sie's mal mit \"help\")\n" @@ -2249,21 +2249,21 @@ msgid "--output doesn't work for this command\n" msgstr "--output funktioniert nicht bei diesem Befehl\n" -#: g10/decrypt.c:247 g10/gpg.c:5155 g10/keyring.c:399 g10/keyring.c:750 +#: g10/decrypt.c:247 g10/gpg.c:5175 g10/keyring.c:399 g10/keyring.c:750 #, c-format msgid "can't open '%s'\n" msgstr "'%s' kann nicht geöffnet werden\n" -#: g10/delkey.c:83 g10/export.c:1947 g10/export.c:2230 g10/export.c:2351 -#: g10/getkey.c:2108 g10/gpg.c:5100 g10/keyedit.c:1445 g10/keyedit.c:2335 +#: g10/delkey.c:83 g10/export.c:2035 g10/export.c:2349 g10/export.c:2470 +#: g10/getkey.c:2108 g10/gpg.c:5120 g10/keyedit.c:1445 g10/keyedit.c:2335 #: g10/keyedit.c:2637 g10/keyedit.c:4600 g10/keylist.c:693 g10/keyserver.c:1092 #: g10/revoke.c:230 g10/tofu.c:2165 #, c-format msgid "key \"%s\" not found: %s\n" msgstr "Schlüssel \"%s\" nicht gefunden: %s\n" -#: g10/delkey.c:92 g10/export.c:2015 g10/getkey.c:2116 g10/getkey.c:4517 -#: g10/gpg.c:5109 g10/keyedit.c:2308 g10/keyserver.c:1110 g10/revoke.c:236 +#: g10/delkey.c:92 g10/export.c:2103 g10/getkey.c:2116 g10/getkey.c:4517 +#: g10/gpg.c:5129 g10/keyedit.c:2308 g10/keyserver.c:1110 g10/revoke.c:236 #: g10/revoke.c:663 g10/tofu.c:2173 #, c-format msgid "error reading keyblock: %s\n" @@ -2392,14 +2392,14 @@ msgid "WARNING: '%s' is an empty file\n" msgstr "WARNUNG: '%s' ist eine leere Datei.\n" -#: g10/encrypt.c:446 g10/encrypt.c:521 g10/decrypt-data.c:266 g10/gpg.c:3959 -#: g10/gpg.c:3999 sm/decrypt.c:826 sm/encrypt.c:416 sm/gpgsm.c:1609 +#: g10/encrypt.c:446 g10/encrypt.c:521 g10/decrypt-data.c:266 g10/gpg.c:3979 +#: g10/gpg.c:4019 sm/decrypt.c:826 sm/encrypt.c:416 sm/gpgsm.c:1609 #, c-format msgid "cipher algorithm '%s' may not be used in %s mode\n" msgstr "" "Das Verschlüsselungsverfahren %s darf im %s Modus nicht verwendet werden.\n" -#: g10/encrypt.c:455 g10/gpg.c:3965 g10/gpg.c:4011 g10/sig-check.c:175 +#: g10/encrypt.c:455 g10/gpg.c:3985 g10/gpg.c:4031 g10/sig-check.c:175 #: g10/sign.c:391 sm/gpgsm.c:1619 sm/gpgsm.c:1629 sm/sign.c:478 sm/verify.c:506 #, c-format msgid "digest algorithm '%s' may not be used in %s mode\n" @@ -2518,61 +2518,65 @@ msgid "WARNING: unable to remove temp directory '%s': %s\n" msgstr "WARNUNG: Temporäres Verzeichnis `%s' kann nicht entfernt werden: %s\n" -#: g10/export.c:119 +#: g10/export.c:124 msgid "export signatures that are marked as local-only" msgstr "Exportiere auch Signaturen die als nicht exportfähig markiert sind" -#: g10/export.c:121 +#: g10/export.c:126 msgid "export attribute user IDs (generally photo IDs)" msgstr "Exportiere Attribute von User-IDs (i.A. Foto-IDs)" -#: g10/export.c:123 +#: g10/export.c:128 msgid "export revocation keys marked as \"sensitive\"" msgstr "Exportiere Widerrufsschlüssel die als \"sensitiv\" markiert sind" -#: g10/export.c:125 +#: g10/export.c:130 msgid "remove unusable parts from key during export" msgstr "Unbrauchbare Teile des Schlüssel während des Exports entfernen" -#: g10/export.c:127 +#: g10/export.c:132 msgid "remove as much as possible from key during export" msgstr "Während des Exports soviel wie möglich vom Schlüssel entfernen" -#: g10/export.c:133 +#: g10/export.c:138 +msgid "export only revocation certificates" +msgstr "Nur Schlüsselwiderruf-Zertifikate exportieren" + +#: g10/export.c:141 msgid "use the GnuPG key backup format" msgstr "Das GnuPG Datensicherungsformat für Schlüssel benutzen" -#: g10/export.c:1291 +#: g10/export.c:1306 msgid " - skipped" msgstr " - übersprungen" -#: g10/export.c:1324 g10/import.c:2085 g10/openfile.c:200 g10/openfile.c:294 +#: g10/export.c:1339 g10/import.c:2089 g10/openfile.c:200 g10/openfile.c:294 #: g10/sign.c:1012 g10/sign.c:1326 #, c-format msgid "writing to '%s'\n" msgstr "Schreiben nach '%s'\n" -#: g10/export.c:1769 +#: g10/export.c:1784 #, c-format msgid "key %s: key material on-card - skipped\n" msgstr "Schlüssel %s: Schlüsselmaterial ist auf einer Karte - übersprungen\n" -#: g10/export.c:1964 +#: g10/export.c:2052 #, c-format msgid "exporting secret keys not allowed\n" msgstr "Exportieren geheimer Schlüssel ist nicht erlaubt\n" -#: g10/export.c:2041 +#: g10/export.c:2129 #, c-format msgid "key %s: PGP 2.x style key - skipped\n" msgstr "Schlüssel %s: PGP 2.x-artiger Schlüssel - übersprungen\n" -#: g10/export.c:2135 +#: g10/export.c:2254 #, c-format msgid "WARNING: nothing exported\n" msgstr "WARNUNG: Nichts exportiert\n" -#: g10/export.c:2432 g10/plaintext.c:153 g10/plaintext.c:162 +#: g10/export.c:2551 g10/plaintext.c:153 g10/plaintext.c:162 #: g10/plaintext.c:168 g10/plaintext.c:191 #, c-format msgid "error creating '%s': %s\n" @@ -2640,270 +2644,270 @@ msgid "using subkey %s instead of primary key %s\n" msgstr "der Unterschlüssel %s wird anstelle des Hauptschlüssels %s verwendet\n" -#: g10/getkey.c:4446 g10/gpg.c:2137 +#: g10/getkey.c:4446 g10/gpg.c:2146 #, c-format msgid "valid values for option '%s':\n" msgstr "Gültige Argumente für Option '%s':\n" -#: g10/gpg.c:443 sm/gpgsm.c:212 +#: g10/gpg.c:444 sm/gpgsm.c:212 msgid "make a signature" msgstr "Eine Signatur erzeugen" -#: g10/gpg.c:444 +#: g10/gpg.c:445 msgid "make a clear text signature" msgstr "Eine Klartextsignatur erzeugen" -#: g10/gpg.c:446 sm/gpgsm.c:214 +#: g10/gpg.c:447 sm/gpgsm.c:214 msgid "make a detached signature" msgstr "Eine abgetrennte Signatur erzeugen" -#: g10/gpg.c:447 sm/gpgsm.c:215 +#: g10/gpg.c:448 sm/gpgsm.c:215 msgid "encrypt data" msgstr "Daten verschlüsseln" -#: g10/gpg.c:449 +#: g10/gpg.c:450 msgid "encryption only with symmetric cipher" msgstr "Daten symmetrisch verschlüsseln" -#: g10/gpg.c:451 sm/gpgsm.c:217 +#: g10/gpg.c:452 sm/gpgsm.c:217 msgid "decrypt data (default)" msgstr "Daten entschlüsseln (Voreinstellung)" -#: g10/gpg.c:453 sm/gpgsm.c:218 +#: g10/gpg.c:454 sm/gpgsm.c:218 msgid "verify a signature" msgstr "Signatur prüfen" -#: g10/gpg.c:455 sm/gpgsm.c:219 +#: g10/gpg.c:456 sm/gpgsm.c:219 msgid "list keys" msgstr "Liste der Schlüssel" -#: g10/gpg.c:457 +#: g10/gpg.c:458 msgid "list keys and signatures" msgstr "Liste der Schlüssel und ihrer Signaturen" -#: g10/gpg.c:460 +#: g10/gpg.c:461 msgid "list and check key signatures" msgstr "Signaturen der Schlüssel auflisten und prüfen" -#: g10/gpg.c:462 sm/gpgsm.c:224 +#: g10/gpg.c:463 sm/gpgsm.c:224 msgid "list keys and fingerprints" msgstr "Liste der Schlüssel und ihrer \"Fingerabdrücke\"" -#: g10/gpg.c:463 sm/gpgsm.c:222 +#: g10/gpg.c:464 sm/gpgsm.c:222 msgid "list secret keys" msgstr "Liste der geheimen Schlüssel" -#: g10/gpg.c:465 sm/gpgsm.c:225 +#: g10/gpg.c:466 sm/gpgsm.c:225 msgid "generate a new key pair" msgstr "Ein neues Schlüsselpaar erzeugen" -#: g10/gpg.c:468 +#: g10/gpg.c:469 msgid "quickly generate a new key pair" msgstr "Schnell ein neues Schlüsselpaar erzeugen" -#: g10/gpg.c:471 +#: g10/gpg.c:472 msgid "quickly add a new user-id" msgstr "Schnell eine neue User-ID anfügen" -#: g10/gpg.c:476 +#: g10/gpg.c:477 msgid "quickly revoke a user-id" msgstr "Schnell eine User-ID widerrufen" -#: g10/gpg.c:479 +#: g10/gpg.c:480 msgid "quickly set a new expiration date" msgstr "Schnell ein neues Ablaufdatum setzen" -#: g10/gpg.c:482 +#: g10/gpg.c:483 msgid "full featured key pair generation" msgstr "Ein neues Schlüsselpaar erzeugen (alle Optionen)" -#: g10/gpg.c:485 +#: g10/gpg.c:486 msgid "generate a revocation certificate" msgstr "Ein Schlüsselwiderruf-Zertifikat erzeugen" -#: g10/gpg.c:488 sm/gpgsm.c:228 +#: g10/gpg.c:489 sm/gpgsm.c:228 msgid "remove keys from the public keyring" msgstr "Schlüssel aus dem öff. Schlüsselbund entfernen" -#: g10/gpg.c:490 +#: g10/gpg.c:491 msgid "remove keys from the secret keyring" msgstr "Schlüssel aus dem geh. Schlüsselbund entfernen" -#: g10/gpg.c:492 +#: g10/gpg.c:493 msgid "quickly sign a key" msgstr "Schlüssel schnell signieren" -#: g10/gpg.c:494 +#: g10/gpg.c:495 msgid "quickly sign a key locally" msgstr "Schlüssel schnell nur für diesen Rechner signieren" -#: g10/gpg.c:496 +#: g10/gpg.c:497 msgid "quickly revoke a key signature" msgstr "Schnell eine Schlüsselsignatur widerrufen" -#: g10/gpg.c:497 +#: g10/gpg.c:498 msgid "sign a key" msgstr "Schlüssel signieren" -#: g10/gpg.c:498 +#: g10/gpg.c:499 msgid "sign a key locally" msgstr "Schlüssel nur für diesen Rechner signieren" -#: g10/gpg.c:499 +#: g10/gpg.c:500 msgid "sign or edit a key" msgstr "Signieren oder bearbeiten eines Schlüssels" -#: g10/gpg.c:501 sm/gpgsm.c:246 +#: g10/gpg.c:502 sm/gpgsm.c:246 msgid "change a passphrase" msgstr "Das Passwort ändern" -#: g10/gpg.c:505 +#: g10/gpg.c:506 msgid "export keys" msgstr "Schlüssel exportieren" -#: g10/gpg.c:506 +#: g10/gpg.c:507 msgid "export keys to a keyserver" msgstr "Schlüssel zu einem Schlü.server exportieren" -#: g10/gpg.c:507 +#: g10/gpg.c:508 msgid "import keys from a keyserver" msgstr "Schlüssel von einem Schlü.server importieren" -#: g10/gpg.c:510 +#: g10/gpg.c:511 msgid "search for keys on a keyserver" msgstr "Schlüssel auf einem Schlü.server suchen" -#: g10/gpg.c:512 +#: g10/gpg.c:513 msgid "update all keys from a keyserver" msgstr "alle Schlüssel per Schlü.server aktualisieren" -#: g10/gpg.c:520 +#: g10/gpg.c:521 msgid "import/merge keys" msgstr "Schlüssel importieren/kombinieren" -#: g10/gpg.c:523 +#: g10/gpg.c:524 msgid "print the card status" msgstr "den Karten-Status ausgeben" -#: g10/gpg.c:524 +#: g10/gpg.c:525 msgid "change data on a card" msgstr "Daten auf einer Karte ändern" -#: g10/gpg.c:526 +#: g10/gpg.c:527 msgid "change a card's PIN" msgstr "PIN einer Karte ändern" -#: g10/gpg.c:538 +#: g10/gpg.c:539 msgid "update the trust database" msgstr "Ändern der \"Trust\"-Datenbank" -#: g10/gpg.c:548 +#: g10/gpg.c:549 msgid "print message digests" msgstr "Hashwerte für die Dateien ausgeben" -#: g10/gpg.c:552 sm/gpgsm.c:241 +#: g10/gpg.c:553 sm/gpgsm.c:241 msgid "run in server mode" msgstr "Im Server Modus ausführen" -#: g10/gpg.c:554 +#: g10/gpg.c:555 msgid "|VALUE|set the TOFU policy for a key" msgstr "|WERT|Setze die TOFU-Politik für einen Schlüssel" -#: g10/gpg.c:594 +#: g10/gpg.c:595 msgid "|NAME|use NAME as default secret key" msgstr "|NAME|NAME als voreingestellten Schlüssel benutzen" -#: g10/gpg.c:596 sm/gpgsm.c:332 +#: g10/gpg.c:597 sm/gpgsm.c:332 msgid "|NAME|encrypt to user ID NAME as well" msgstr "|NAME|Auch an NAME verschlüsseln" -#: g10/gpg.c:604 +#: g10/gpg.c:605 msgid "|SPEC|set up email aliases" msgstr "|SPEC|Email Alias festlegen" -#: g10/gpg.c:616 +#: g10/gpg.c:617 msgid "use strict OpenPGP behavior" msgstr "OpenPGP-Verhalten strikt beachten" -#: g10/gpg.c:641 kbx/kbxutil.c:90 sm/gpgsm.c:412 tools/gpgconf.c:112 +#: g10/gpg.c:642 kbx/kbxutil.c:90 sm/gpgsm.c:412 tools/gpgconf.c:112 msgid "do not make any changes" msgstr "Keine wirklichen Änderungen durchführen" -#: g10/gpg.c:642 +#: g10/gpg.c:643 msgid "prompt before overwriting" msgstr "vor Überschreiben nachfragen" -#: g10/gpg.c:689 sm/gpgsm.c:304 +#: g10/gpg.c:690 sm/gpgsm.c:304 msgid "Options controlling the input" msgstr "Optionen für die Eingabe" -#: g10/gpg.c:707 sm/gpgsm.c:314 +#: g10/gpg.c:708 sm/gpgsm.c:314 msgid "Options controlling the output" msgstr "Optionen für die Ausgabe" -#: g10/gpg.c:709 sm/gpgsm.c:316 +#: g10/gpg.c:710 sm/gpgsm.c:316 msgid "create ascii armored output" msgstr "Ausgabe mit ASCII-Hülle versehen" -#: g10/gpg.c:713 g10/gpgv.c:82 sm/gpgsm.c:321 +#: g10/gpg.c:714 g10/gpgv.c:82 sm/gpgsm.c:321 msgid "|FILE|write output to FILE" msgstr "|DATEI|Ausgabe auf DATEI schreiben" -#: g10/gpg.c:726 +#: g10/gpg.c:727 msgid "use canonical text mode" msgstr "Textmodus benutzen" -#: g10/gpg.c:743 +#: g10/gpg.c:744 msgid "|N|set compress level to N (0 disables)" msgstr "|N|Kompressionsstufe auf N setzen (0=keine)" -#: g10/gpg.c:750 sm/gpgsm.c:347 +#: g10/gpg.c:751 sm/gpgsm.c:347 msgid "Options controlling key import and export" msgstr "Optionen für den Schlüsselimport und -export" -#: g10/gpg.c:753 +#: g10/gpg.c:754 msgid "|MECHANISMS|use MECHANISMS to locate keys by mail address" msgstr "" "|MECHANISMEN|Benutze MECHANISMEN um Schlüssel über die Mailadresse " "aufzufinden." -#: g10/gpg.c:756 +#: g10/gpg.c:757 msgid "import missing key from a signature" msgstr "Schlüssel aus der Signatur importieren" -#: g10/gpg.c:761 +#: g10/gpg.c:762 msgid "include the public key in signatures" msgstr "Schlüssel mit in die Signatur packen" -#: g10/gpg.c:764 sm/gpgsm.c:350 +#: g10/gpg.c:765 sm/gpgsm.c:350 msgid "disable all access to the dirmngr" msgstr "Jeglichen Zugriff auf den Dirmngr verhindern" -#: g10/gpg.c:776 sm/gpgsm.c:357 +#: g10/gpg.c:777 sm/gpgsm.c:357 msgid "Options controlling key listings" msgstr "Optionen für das Auflisten der Schlüssel" -#: g10/gpg.c:805 sm/gpgsm.c:324 +#: g10/gpg.c:806 sm/gpgsm.c:324 msgid "Options to specify keys" msgstr "Optionen zur Auswahl der Schlüssel" -#: g10/gpg.c:807 sm/gpgsm.c:326 +#: g10/gpg.c:808 sm/gpgsm.c:326 msgid "|USER-ID|encrypt for USER-ID" msgstr "|USER-ID|Verschlüsseln für USER-ID" -#: g10/gpg.c:815 sm/gpgsm.c:328 +#: g10/gpg.c:816 sm/gpgsm.c:328 msgid "|USER-ID|use USER-ID to sign or decrypt" msgstr "|USER-ID|Mit USER-ID signieren bzw. entschlüsseln" -#: g10/gpg.c:866 sm/gpgsm.c:396 +#: g10/gpg.c:867 sm/gpgsm.c:396 msgid "Options for unattended use" msgstr "Optionen für die Verwendung in Scripts" -#: g10/gpg.c:885 sm/gpgsm.c:408 dirmngr/dirmngr.c:294 +#: g10/gpg.c:886 sm/gpgsm.c:408 dirmngr/dirmngr.c:294 msgid "Other options" msgstr "Weitere Optionen" -#: g10/gpg.c:953 sm/gpgsm.c:440 +#: g10/gpg.c:955 sm/gpgsm.c:440 msgid "" "@\n" "(See the man page for a complete listing of all commands and options)\n" @@ -2912,7 +2916,7 @@ "(Auf der \"man\"-Seite ist eine vollständige Liste aller Befehle und " "Optionen)\n" -#: g10/gpg.c:956 +#: g10/gpg.c:958 msgid "" "@\n" "Examples:\n" @@ -2932,11 +2936,11 @@ " --list-keys [Namen] Schlüssel anzeigen\n" " --fingerprint [Namen] \"Fingerabdrücke\" anzeigen\n" -#: g10/gpg.c:1130 +#: g10/gpg.c:1139 msgid "Usage: @GPG@ [options] [files] (-h for help)" msgstr "Aufruf: @GPG@ [Optionen] [Dateien] (-h für Hilfe)" -#: g10/gpg.c:1133 +#: g10/gpg.c:1142 msgid "" "Syntax: @GPG@ [options] [files]\n" "Sign, check, encrypt or decrypt\n" @@ -2946,7 +2950,7 @@ "Signieren, prüfen, verschlüsseln, entschlüsseln.\n" "Die voreingestellte Operation ist abhängig von den Eingabedaten\n" -#: g10/gpg.c:1144 sm/gpgsm.c:624 +#: g10/gpg.c:1153 sm/gpgsm.c:624 msgid "" "\n" "Supported algorithms:\n" @@ -2954,75 +2958,75 @@ "\n" "Unterstützte Verfahren:\n" -#: g10/gpg.c:1147 +#: g10/gpg.c:1156 msgid "Pubkey: " msgstr "Öff. Schlüssel: " -#: g10/gpg.c:1154 g10/keyedit.c:3338 +#: g10/gpg.c:1163 g10/keyedit.c:3338 msgid "Cipher: " msgstr "Verschlü.: " -#: g10/gpg.c:1161 +#: g10/gpg.c:1170 msgid "Hash: " msgstr "Hash: " -#: g10/gpg.c:1168 g10/keyedit.c:3404 +#: g10/gpg.c:1177 g10/keyedit.c:3404 msgid "Compression: " msgstr "Komprimierung: " -#: g10/gpg.c:1241 sm/gpgsm.c:698 +#: g10/gpg.c:1250 sm/gpgsm.c:698 #, c-format msgid "usage: %s [options] %s\n" msgstr "Aufruf: %s [Optionen] %s\n" -#: g10/gpg.c:1436 sm/gpgsm.c:791 +#: g10/gpg.c:1445 sm/gpgsm.c:791 #, c-format msgid "conflicting commands\n" msgstr "Widersprüchliche Befehle\n" -#: g10/gpg.c:1454 +#: g10/gpg.c:1463 #, c-format msgid "no = sign found in group definition '%s'\n" msgstr "Kein '='-Zeichen in der Gruppendefinition gefunden `%s'\n" -#: g10/gpg.c:1652 +#: g10/gpg.c:1661 #, c-format msgid "WARNING: unsafe ownership on homedir '%s'\n" msgstr "WARNUNG: Unsicheres Besitzverhältnis des Home-Verzeichnis `%s'\n" -#: g10/gpg.c:1655 +#: g10/gpg.c:1664 #, c-format msgid "WARNING: unsafe ownership on configuration file '%s'\n" msgstr "WARNUNG: Unsicheres Besitzverhältnis der Konfigurationsdatei `%s'\n" -#: g10/gpg.c:1658 +#: g10/gpg.c:1667 #, c-format msgid "WARNING: unsafe ownership on extension '%s'\n" msgstr "WARNUNG: Unsicheres Besitzverhältnis auf die Erweiterung `%s'\n" -#: g10/gpg.c:1664 +#: g10/gpg.c:1673 #, c-format msgid "WARNING: unsafe permissions on homedir '%s'\n" msgstr "WARNUNG: Unsichere Zugriffsrechte des Home-Verzeichnis `%s'\n" -#: g10/gpg.c:1667 +#: g10/gpg.c:1676 #, c-format msgid "WARNING: unsafe permissions on configuration file '%s'\n" msgstr "WARNUNG: Unsichere Zugriffsrechte der Konfigurationsdatei `%s'\n" -#: g10/gpg.c:1670 +#: g10/gpg.c:1679 #, c-format msgid "WARNING: unsafe permissions on extension '%s'\n" msgstr "WARNUNG: Unsichere Zugriffsrechte auf die Erweiterung `%s'\n" -#: g10/gpg.c:1676 +#: g10/gpg.c:1685 #, c-format msgid "WARNING: unsafe enclosing directory ownership on homedir '%s'\n" msgstr "" "WARNUNG: Unsicheres Besitzverhältnis des umgebenden Verzeichnisses für Home-" "Verzeichnis `%s'\n" -#: g10/gpg.c:1679 +#: g10/gpg.c:1688 #, c-format msgid "" "WARNING: unsafe enclosing directory ownership on configuration file '%s'\n" @@ -3030,20 +3034,20 @@ "WARNUNG: Unsicheres Besitzverhältnis des umgebenden Verzeichnisses der " "Konfigurationsdatei '%s'\n" -#: g10/gpg.c:1682 +#: g10/gpg.c:1691 #, c-format msgid "WARNING: unsafe enclosing directory ownership on extension '%s'\n" msgstr "" "WARNUNG: Unsicheres Besitzverhältnis des umgebenden Verzeichnisses `%s'\n" -#: g10/gpg.c:1688 +#: g10/gpg.c:1697 #, c-format msgid "WARNING: unsafe enclosing directory permissions on homedir '%s'\n" msgstr "" "WARNUNG: Unsichere Zugriffsrechte des umgebenden Verzeichnisses des Home-" "Verzeichnisses `%s'\n" -#: g10/gpg.c:1691 +#: g10/gpg.c:1700 #, c-format msgid "" "WARNING: unsafe enclosing directory permissions on configuration file '%s'\n" @@ -3051,462 +3055,462 @@ "WARNUNG: Unsichere Zugriffsrechte des umgebenden Verzeichnisses der " "Konfigurationsdatei '%s'\n" -#: g10/gpg.c:1694 +#: g10/gpg.c:1703 #, c-format msgid "WARNING: unsafe enclosing directory permissions on extension '%s'\n" msgstr "" "WARNUNG: Unsichere Zugriffsrechte des umgebenden Verzeichnisses auf " "Erweiterung `%s'\n" -#: g10/gpg.c:1910 +#: g10/gpg.c:1919 #, c-format msgid "unknown configuration item '%s'\n" msgstr "Unbekanntes Konfigurationselement `%s'\n" -#: g10/gpg.c:2009 +#: g10/gpg.c:2018 msgid "display photo IDs during key listings" msgstr "Anzeigen der Foto-ID in den Schlüssellisten" -#: g10/gpg.c:2011 +#: g10/gpg.c:2020 msgid "show key usage information during key listings" msgstr "Schlüsselverwendungszwecke mit den Schlüsseln anlisten" -#: g10/gpg.c:2013 +#: g10/gpg.c:2022 msgid "show policy URLs during signature listings" msgstr "Richtlinien-URL mit den Signaturen anlisten" -#: g10/gpg.c:2015 +#: g10/gpg.c:2024 msgid "show all notations during signature listings" msgstr "Alle Notationen mit den Signaturen anlisten" -#: g10/gpg.c:2017 +#: g10/gpg.c:2026 msgid "show IETF standard notations during signature listings" msgstr "Standard Notationen mit den Signaturen anlisten" -#: g10/gpg.c:2021 +#: g10/gpg.c:2030 msgid "show user-supplied notations during signature listings" msgstr "Benutzer-Notationen mit den Signaturen anlisten" -#: g10/gpg.c:2023 +#: g10/gpg.c:2032 msgid "show preferred keyserver URLs during signature listings" msgstr "Bevorzugten Schlüsselserver mit den Signaturen anlisten" -#: g10/gpg.c:2025 +#: g10/gpg.c:2034 msgid "show user ID validity during key listings" msgstr "Zeige Gültigkeit der User-ID in den Schlüssellisten" -#: g10/gpg.c:2027 +#: g10/gpg.c:2036 msgid "show revoked and expired user IDs in key listings" msgstr "Zeige widerrufene und verfallene User-ID in den Schlüssellisten" -#: g10/gpg.c:2029 +#: g10/gpg.c:2038 msgid "show revoked and expired subkeys in key listings" msgstr "Zeige widerrufene und verfallene Unterschlüssel in den Schlüssellisten" -#: g10/gpg.c:2031 +#: g10/gpg.c:2040 msgid "show the keyring name in key listings" msgstr "Anzeigen des Schlüsselbundes, in dem ein Schlüssel drin ist" -#: g10/gpg.c:2033 +#: g10/gpg.c:2042 msgid "show expiration dates during signature listings" msgstr "Das Ablaufdatum mit den Signaturen anlisten" -#: g10/gpg.c:2148 +#: g10/gpg.c:2157 #, c-format msgid "unknown TOFU policy '%s'\n" msgstr "Unbekannte TOFU Regel '%s'\n" -#: g10/gpg.c:2150 +#: g10/gpg.c:2159 #, c-format msgid "(use \"help\" to list choices)\n" msgstr "(\"help\" um mögliche Werte anzuzeigen)\n" -#: g10/gpg.c:2240 g10/keyedit.c:1719 +#: g10/gpg.c:2249 g10/keyedit.c:1719 #, c-format msgid "This command is not allowed while in %s mode.\n" msgstr "Dieser Befehl ist im %s-Modus nicht erlaubt.\n" -#: g10/gpg.c:2878 g10/gpg.c:3718 g10/gpg.c:3730 +#: g10/gpg.c:2896 g10/gpg.c:3736 g10/gpg.c:3748 #, c-format msgid "Note: %s is not for normal use!\n" msgstr "Hinweis: %s ist nicht für den üblichen Gebrauch gedacht!\n" -#: g10/gpg.c:3053 g10/gpg.c:3065 +#: g10/gpg.c:3071 g10/gpg.c:3083 #, c-format msgid "'%s' is not a valid signature expiration\n" msgstr "`%s' ist kein gültiges Signaturablaufdatum\n" -#: g10/gpg.c:3087 +#: g10/gpg.c:3105 #, c-format msgid "\"%s\" is not a proper mail address\n" msgstr "\"%s\" ist keine gültige E-Mailadresse\n" -#: g10/gpg.c:3119 sm/gpgsm.c:1121 +#: g10/gpg.c:3137 sm/gpgsm.c:1121 #, c-format msgid "invalid pinentry mode '%s'\n" msgstr "Ungültiger Subjekt-Name '%s'\n" -#: g10/gpg.c:3125 sm/gpgsm.c:1127 +#: g10/gpg.c:3143 sm/gpgsm.c:1127 #, c-format msgid "invalid request origin '%s'\n" msgstr "Ungültiges \"Herkunft\"-Argument '%s'\n" -#: g10/gpg.c:3179 +#: g10/gpg.c:3197 #, c-format msgid "'%s' is not a valid character set\n" msgstr "`%s' ist kein gültiger Zeichensatz\n" -#: g10/gpg.c:3201 g10/gpg.c:3415 g10/keyedit.c:5338 +#: g10/gpg.c:3219 g10/gpg.c:3433 g10/keyedit.c:5338 #, c-format msgid "could not parse keyserver URL\n" msgstr "Schlüsselserver-URL konnte nicht analysiert werden\n" -#: g10/gpg.c:3219 +#: g10/gpg.c:3237 #, c-format msgid "%s:%d: invalid keyserver options\n" msgstr "%s:%d: ungültige Schlüsselserver-Option\n" -#: g10/gpg.c:3222 +#: g10/gpg.c:3240 #, c-format msgid "invalid keyserver options\n" msgstr "Ungültige Schlüsselserver-Option\n" -#: g10/gpg.c:3229 +#: g10/gpg.c:3247 #, c-format msgid "%s:%d: invalid import options\n" msgstr "%s:%d: ungültige Import-Option\n" -#: g10/gpg.c:3232 +#: g10/gpg.c:3250 #, c-format msgid "invalid import options\n" msgstr "Ungültige Import-Option\n" -#: g10/gpg.c:3238 g10/gpg.c:3253 +#: g10/gpg.c:3256 g10/gpg.c:3271 #, c-format msgid "invalid filter option: %s\n" msgstr "Ungültige Filter-Option: %s\n" -#: g10/gpg.c:3244 +#: g10/gpg.c:3262 #, c-format msgid "%s:%d: invalid export options\n" msgstr "%s:%d: ungültige Export-Option.\n" -#: g10/gpg.c:3247 +#: g10/gpg.c:3265 #, c-format msgid "invalid export options\n" msgstr "Ungültige Export-Option\n" -#: g10/gpg.c:3259 +#: g10/gpg.c:3277 #, c-format msgid "%s:%d: invalid list options\n" msgstr "%s:%d: ungültige Listen-Option.\n" -#: g10/gpg.c:3262 +#: g10/gpg.c:3280 #, c-format msgid "invalid list options\n" msgstr "Ungültige Listen-Option\n" -#: g10/gpg.c:3270 +#: g10/gpg.c:3288 msgid "display photo IDs during signature verification" msgstr "Foto-ID während der Signaturprüfung anzeigen" -#: g10/gpg.c:3272 +#: g10/gpg.c:3290 msgid "show policy URLs during signature verification" msgstr "Richtlinien-URLs während der Signaturprüfung anzeigen" -#: g10/gpg.c:3274 +#: g10/gpg.c:3292 msgid "show all notations during signature verification" msgstr "Alle Notationen während der Signaturprüfung anzeigen" -#: g10/gpg.c:3276 +#: g10/gpg.c:3294 msgid "show IETF standard notations during signature verification" msgstr "Standard-Notationen während der Signaturprüfung anzeigen" -#: g10/gpg.c:3280 +#: g10/gpg.c:3298 msgid "show user-supplied notations during signature verification" msgstr "Benutzer-Notationen während der Signaturprüfung anzeigen" -#: g10/gpg.c:3282 +#: g10/gpg.c:3300 msgid "show preferred keyserver URLs during signature verification" msgstr "" "Die URL für den bevorzugten Schlüsselserver während der Signaturprüfung " "anzeigen" -#: g10/gpg.c:3284 +#: g10/gpg.c:3302 msgid "show user ID validity during signature verification" msgstr "Die Gültigkeit der User-ID während der Signaturprüfung anzeigen" -#: g10/gpg.c:3286 +#: g10/gpg.c:3304 msgid "show revoked and expired user IDs in signature verification" msgstr "Zeige widerrufene und verfallene User-IDs während der Signaturprüfung" -#: g10/gpg.c:3288 +#: g10/gpg.c:3306 msgid "show only the primary user ID in signature verification" msgstr "Zeige nur die Haupt-User-ID während der Signaturprüfung" -#: g10/gpg.c:3290 +#: g10/gpg.c:3308 msgid "validate signatures with PKA data" msgstr "Prüfe Signaturgültigkeit mittels PKA-Daten" -#: g10/gpg.c:3292 +#: g10/gpg.c:3310 msgid "elevate the trust of signatures with valid PKA data" msgstr "Werte das Vertrauen zu Signaturen durch gültige PKA-Daten auf" -#: g10/gpg.c:3299 +#: g10/gpg.c:3317 #, c-format msgid "%s:%d: invalid verify options\n" msgstr "%s:%d: ungültige Überprüfungs-Option.\n" -#: g10/gpg.c:3302 +#: g10/gpg.c:3320 #, c-format msgid "invalid verify options\n" msgstr "Ungültige Überprüfungs-Option\n" -#: g10/gpg.c:3309 +#: g10/gpg.c:3327 #, c-format msgid "unable to set exec-path to %s\n" msgstr "Der Ausführungspfad konnte nicht auf %s gesetzt werden.\n" -#: g10/gpg.c:3513 +#: g10/gpg.c:3531 #, c-format msgid "%s:%d: invalid auto-key-locate list\n" msgstr "%s:%d: ungültige \"auto-key-locate\"-Liste\n" -#: g10/gpg.c:3516 +#: g10/gpg.c:3534 #, c-format msgid "invalid auto-key-locate list\n" msgstr "ungültige \"auto-key-locate\"-Liste\n" -#: g10/gpg.c:3700 sm/gpgsm.c:1492 +#: g10/gpg.c:3718 sm/gpgsm.c:1492 #, c-format msgid "WARNING: program may create a core file!\n" msgstr "WARNUNG: Programm könnte eine core-dump-Datei schreiben!\n" -#: g10/gpg.c:3711 +#: g10/gpg.c:3729 #, c-format msgid "WARNING: %s overrides %s\n" msgstr "WARNUNG: %s ersetzt %s\n" -#: g10/gpg.c:3720 +#: g10/gpg.c:3738 #, c-format msgid "%s not allowed with %s!\n" msgstr "%s zusammen mit %s ist nicht erlaubt!\n" -#: g10/gpg.c:3723 +#: g10/gpg.c:3741 #, c-format msgid "%s makes no sense with %s!\n" msgstr "%s zusammen mit %s ist nicht sinnvoll!\n" -#: g10/gpg.c:3738 sm/gpgsm.c:1509 dirmngr/dirmngr.c:1205 +#: g10/gpg.c:3756 sm/gpgsm.c:1509 dirmngr/dirmngr.c:1205 #, c-format msgid "WARNING: running with faked system time: " msgstr "WARNUNG: Ausführung mit gefälschter Systemzeit: " -#: g10/gpg.c:3759 +#: g10/gpg.c:3777 #, c-format msgid "will not run with insecure memory due to %s\n" msgstr "Startet nicht mit unsicherem Speicher, wegen Option %s\n" -#: g10/gpg.c:3804 g10/gpg.c:3828 sm/gpgsm.c:1579 +#: g10/gpg.c:3824 g10/gpg.c:3848 sm/gpgsm.c:1579 #, c-format msgid "selected cipher algorithm is invalid\n" msgstr "Das ausgewählte Verschlüsselungsverfahren ist ungültig\n" -#: g10/gpg.c:3816 +#: g10/gpg.c:3836 #, c-format msgid "selected compression algorithm is invalid\n" msgstr "Das ausgewählte Komprimierungsverfahren ist ungültig\n" -#: g10/gpg.c:3822 +#: g10/gpg.c:3842 #, c-format msgid "selected certification digest algorithm is invalid\n" msgstr "Das ausgewählte Hashverfahren ist ungültig\n" -#: g10/gpg.c:3837 +#: g10/gpg.c:3857 #, c-format msgid "completes-needed must be greater than 0\n" msgstr "completes-needed müssen größer als 0 sein\n" -#: g10/gpg.c:3839 +#: g10/gpg.c:3859 #, c-format msgid "marginals-needed must be greater than 1\n" msgstr "marginals-needed müssen größer als 1 sein\n" -#: g10/gpg.c:3841 +#: g10/gpg.c:3861 #, c-format msgid "max-cert-depth must be in the range from 1 to 255\n" msgstr "max-cert-depth muß im Bereich 1 bis 255 liegen\n" -#: g10/gpg.c:3843 +#: g10/gpg.c:3863 #, c-format msgid "invalid default-cert-level; must be 0, 1, 2, or 3\n" msgstr "ungültiger \"default-cert-level\"; Wert muß 0, 1, 2 oder 3 sein\n" -#: g10/gpg.c:3845 +#: g10/gpg.c:3865 #, c-format msgid "invalid min-cert-level; must be 1, 2, or 3\n" msgstr "ungültiger \"min-cert-level\"; Wert muß 0, 1, 2 oder 3 sein\n" -#: g10/gpg.c:3849 +#: g10/gpg.c:3869 #, c-format msgid "Note: simple S2K mode (0) is strongly discouraged\n" msgstr "Hinweis: Vom \"simple S2K\"-Modus (0) ist strikt abzuraten\n" -#: g10/gpg.c:3853 +#: g10/gpg.c:3873 #, c-format msgid "invalid S2K mode; must be 0, 1 or 3\n" msgstr "ungültiger \"simple S2K\"-Modus; Wert muß 0, 1 oder 3 sein\n" -#: g10/gpg.c:3860 +#: g10/gpg.c:3880 #, c-format msgid "invalid default preferences\n" msgstr "ungültige Standard-Voreinstellungen\n" -#: g10/gpg.c:3864 +#: g10/gpg.c:3884 #, c-format msgid "invalid personal cipher preferences\n" msgstr "ungültige private Verschlüsselungsvoreinstellungen\n" -#: g10/gpg.c:3868 +#: g10/gpg.c:3888 #, c-format msgid "invalid personal digest preferences\n" msgstr "ungültige private Hashvoreinstellungen\n" -#: g10/gpg.c:3872 +#: g10/gpg.c:3892 #, c-format msgid "invalid personal compress preferences\n" msgstr "ungültige private Komprimierungsvoreinstellungen\n" -#: g10/gpg.c:3908 +#: g10/gpg.c:3928 #, c-format msgid "%s does not yet work with %s\n" msgstr "%s arbeitet noch nicht mit %s zusammen\n" -#: g10/gpg.c:3971 +#: g10/gpg.c:3991 #, c-format msgid "compression algorithm '%s' may not be used in %s mode\n" msgstr "" "Die Benutzung des Komprimierverfahren %s ist im %s Modus nicht erlaubt.\n" -#: g10/gpg.c:4115 +#: g10/gpg.c:4135 #, c-format msgid "failed to initialize the TrustDB: %s\n" msgstr "Die Trust-DB kann nicht initialisiert werden: %s\n" -#: g10/gpg.c:4127 +#: g10/gpg.c:4147 #, c-format msgid "WARNING: recipients (-r) given without using public key encryption\n" msgstr "" "WARNUNG: Empfänger (-r) angegeben ohne Verwendung von Public-Key-Verfahren\n" -#: g10/gpg.c:4199 +#: g10/gpg.c:4219 #, c-format msgid "symmetric encryption of '%s' failed: %s\n" msgstr "Symmetrische Entschlüsselung von `%s' fehlgeschlagen: %s\n" -#: g10/gpg.c:4228 +#: g10/gpg.c:4248 #, c-format msgid "you cannot use --symmetric --encrypt with --s2k-mode 0\n" msgstr "" "--symmetric --encrypt kann nicht zusammen mit --s2k-mode 0 verwendet werden\n" -#: g10/gpg.c:4231 +#: g10/gpg.c:4251 #, c-format msgid "you cannot use --symmetric --encrypt in %s mode\n" msgstr "Im %s Modus kann --symmetric --encrypt nicht verwendet werden.\n" -#: g10/gpg.c:4289 +#: g10/gpg.c:4309 #, c-format msgid "you cannot use --symmetric --sign --encrypt with --s2k-mode 0\n" msgstr "" "--symmetric --sign --encrypt kann nicht zusammen mit --s2k-mode 0 verwendet " "werden\n" -#: g10/gpg.c:4292 +#: g10/gpg.c:4312 #, c-format msgid "you cannot use --symmetric --sign --encrypt in %s mode\n" msgstr "" "Im %s Modus kann --symmetric --sign --encrypt nicht verwendet werden.\n" -#: g10/gpg.c:4692 g10/keyserver.c:1648 +#: g10/gpg.c:4712 g10/keyserver.c:1648 #, c-format msgid "keyserver send failed: %s\n" msgstr "Senden an Schlüsselserver fehlgeschlagen: %s\n" -#: g10/gpg.c:4697 +#: g10/gpg.c:4717 #, c-format msgid "keyserver receive failed: %s\n" msgstr "Empfangen vom Schlüsselserver fehlgeschlagen: %s\n" -#: g10/gpg.c:4703 +#: g10/gpg.c:4723 #, c-format msgid "key export failed: %s\n" msgstr "Schlüsselexport fehlgeschlagen: %s\n" -#: g10/gpg.c:4716 +#: g10/gpg.c:4736 #, c-format msgid "export as ssh key failed: %s\n" msgstr "Schlüsselexport im SSH Format fehlgeschlagen: %s\n" -#: g10/gpg.c:4728 +#: g10/gpg.c:4748 #, c-format msgid "keyserver search failed: %s\n" msgstr "Suche auf dem Schlüsselserver fehlgeschlagen: %s\n" -#: g10/gpg.c:4741 +#: g10/gpg.c:4761 #, c-format msgid "keyserver refresh failed: %s\n" msgstr "Refresh vom Schlüsselserver fehlgeschlagen: %s\n" -#: g10/gpg.c:4810 +#: g10/gpg.c:4830 #, c-format msgid "dearmoring failed: %s\n" msgstr "Entfernen der ASCII-Hülle ist fehlgeschlagen: %s\n" -#: g10/gpg.c:4821 +#: g10/gpg.c:4841 #, c-format msgid "enarmoring failed: %s\n" msgstr "Anbringen der ASCII-Hülle ist fehlgeschlagen: %s\n" -#: g10/gpg.c:4913 +#: g10/gpg.c:4933 #, c-format msgid "invalid hash algorithm '%s'\n" msgstr "Ungültiges Hashverfahren '%s'\n" -#: g10/gpg.c:5065 g10/tofu.c:2153 +#: g10/gpg.c:5085 g10/tofu.c:2153 #, c-format msgid "error parsing key specification '%s': %s\n" msgstr "Fehler in der Schlüsselangabe '%s': %s\n" -#: g10/gpg.c:5078 +#: g10/gpg.c:5098 #, c-format msgid "'%s' does not appear to be a valid key ID, fingerprint or keygrip\n" msgstr "" "'%s\" sieht nicht nach einer gültigen Schlüssel-ID, einem Fingerabdruck oder " "einem \"Keygrip\" aus\n" -#: g10/gpg.c:5134 +#: g10/gpg.c:5154 #, c-format msgid "WARNING: no command supplied. Trying to guess what you mean ...\n" msgstr "" "WARNING: Kein Kommando angegeben. Versuche zu raten was gemeint ist ...\n" -#: g10/gpg.c:5145 +#: g10/gpg.c:5165 #, c-format msgid "Go ahead and type your message ...\n" msgstr "Auf geht's - Botschaft eintippen ...\n" -#: g10/gpg.c:5490 +#: g10/gpg.c:5510 #, c-format msgid "the given certification policy URL is invalid\n" msgstr "Die angegebene Zertifikat-Richtlinien-URL ist ungültig\n" -#: g10/gpg.c:5492 +#: g10/gpg.c:5512 #, c-format msgid "the given signature policy URL is invalid\n" msgstr "Die angegebene Signatur-Richtlinien-URL ist ungültig\n" -#: g10/gpg.c:5525 +#: g10/gpg.c:5545 #, c-format msgid "the given preferred keyserver URL is invalid\n" msgstr "Die angegebene URL des bevorzugten Schlüsselserver ist ungültig\n" @@ -3548,145 +3552,145 @@ msgid "No help available for '%s'" msgstr "Keine Hilfe für '%s' vorhanden." -#: g10/import.c:169 +#: g10/import.c:170 msgid "import signatures that are marked as local-only" msgstr "Importiere Signaturen, die als nicht exportfähig markiert sind" -#: g10/import.c:172 +#: g10/import.c:173 msgid "repair damage from the pks keyserver during import" msgstr "Beseitige Beschädigung durch den Schlüsselserver während des Imports" -#: g10/import.c:175 +#: g10/import.c:176 msgid "do not clear the ownertrust values during import" msgstr "die \"Ownertrust\" Werte beim Import nicht löschen" -#: g10/import.c:178 +#: g10/import.c:179 msgid "do not update the trustdb after import" msgstr "ändern Sie die \"Trust\"-Datenbank nach dem Import nicht" -#: g10/import.c:181 +#: g10/import.c:182 msgid "show key during import" msgstr "Schlüssel beim Import anzeigen" -#: g10/import.c:184 +#: g10/import.c:185 msgid "only accept updates to existing keys" msgstr "Nur Änderungen bereits existierender Schlüssel vornehmen" -#: g10/import.c:187 +#: g10/import.c:188 msgid "remove unusable parts from key after import" msgstr "entferne nach dem Import unbrauchbare Teile des Schlüssels" -#: g10/import.c:190 +#: g10/import.c:191 msgid "remove as much as possible from key after import" msgstr "nach dem Import soviel wie möglich aus dem Schlüssel entfernen" -#: g10/import.c:193 +#: g10/import.c:194 msgid "ignore key-signatures which are not self-signatures" msgstr "Ignoriere Signaturen die keine Eigenbeglaubigungen sind" -#: g10/import.c:196 +#: g10/import.c:197 msgid "run import filters and export key immediately" msgstr "Import-Filter anwenden und Schlüssel direkt exportieren" -#: g10/import.c:199 +#: g10/import.c:200 msgid "assume the GnuPG key backup format" msgstr "Eingabedaten sind im GnuPG Datensicherungsformat für Schlüssel" -#: g10/import.c:203 +#: g10/import.c:204 msgid "repair keys on import" msgstr "Schlüssel beim Import reparieren" -#: g10/import.c:392 g10/import.c:711 +#: g10/import.c:393 g10/import.c:712 #, c-format msgid "skipping block of type %d\n" msgstr "überspringe den Block vom Typ %d\n" -#: g10/import.c:728 +#: g10/import.c:729 #, c-format msgid "%lu keys processed so far\n" msgstr "%lu Schlüssel bislang bearbeitet\n" -#: g10/import.c:814 +#: g10/import.c:815 #, c-format msgid "Total number processed: %lu\n" msgstr "Anzahl insgesamt bearbeiteter Schlüssel: %lu\n" -#: g10/import.c:817 +#: g10/import.c:818 #, c-format msgid " skipped PGP-2 keys: %lu\n" msgstr " ignorierte PGP-2 Schlüssel: %lu\n" -#: g10/import.c:819 +#: g10/import.c:820 #, c-format msgid " skipped new keys: %lu\n" msgstr " ignorierte neue Schlüssel: %lu\n" -#: g10/import.c:822 +#: g10/import.c:823 #, c-format msgid " w/o user IDs: %lu\n" msgstr " ohne User-ID: %lu\n" -#: g10/import.c:825 sm/import.c:130 +#: g10/import.c:826 sm/import.c:130 #, c-format msgid " imported: %lu" msgstr " importiert: %lu" -#: g10/import.c:829 sm/import.c:134 +#: g10/import.c:830 sm/import.c:134 #, c-format msgid " unchanged: %lu\n" msgstr " unverändert: %lu\n" -#: g10/import.c:831 +#: g10/import.c:832 #, c-format msgid " new user IDs: %lu\n" msgstr " neue User-IDs: %lu\n" -#: g10/import.c:833 +#: g10/import.c:834 #, c-format msgid " new subkeys: %lu\n" msgstr " neue Unterschlüssel: %lu\n" -#: g10/import.c:835 +#: g10/import.c:836 #, c-format msgid " new signatures: %lu\n" msgstr " neue Signaturen: %lu\n" -#: g10/import.c:837 +#: g10/import.c:838 #, c-format msgid " new key revocations: %lu\n" msgstr " neue Schlüsselwiderrufe: %lu\n" -#: g10/import.c:839 sm/import.c:136 +#: g10/import.c:840 sm/import.c:136 #, c-format msgid " secret keys read: %lu\n" msgstr " gelesene geheime Schlüssel: %lu\n" -#: g10/import.c:841 sm/import.c:138 +#: g10/import.c:842 sm/import.c:138 #, c-format msgid " secret keys imported: %lu\n" msgstr " geheime Schlüssel importiert: %lu\n" -#: g10/import.c:843 sm/import.c:140 +#: g10/import.c:844 sm/import.c:140 #, c-format msgid " secret keys unchanged: %lu\n" msgstr " unveränderte geh. Schl.: %lu\n" -#: g10/import.c:845 sm/import.c:142 +#: g10/import.c:846 sm/import.c:142 #, c-format msgid " not imported: %lu\n" msgstr " nicht importiert: %lu\n" -#: g10/import.c:847 +#: g10/import.c:848 #, c-format msgid " signatures cleaned: %lu\n" msgstr " Signaturen bereinigt: %lu\n" -#: g10/import.c:849 +#: g10/import.c:850 #, c-format msgid " user IDs cleaned: %lu\n" msgstr " User-IDs bereinigt: %lu\n" -#: g10/import.c:1276 +#: g10/import.c:1277 #, c-format msgid "" "WARNING: key %s contains preferences for unavailable\n" @@ -3695,170 +3699,170 @@ "WARNUNG: Schlüssel %s hat Einstellungen zu nicht verfügbaren\n" "Verfahren für folgende User-ID:\n" -#: g10/import.c:1318 +#: g10/import.c:1319 #, c-format msgid " \"%s\": preference for cipher algorithm %s\n" msgstr " \"%s\": Einstellungen des Verschlüsselungsverfahren %s\n" -#: g10/import.c:1333 +#: g10/import.c:1334 #, c-format msgid " \"%s\": preference for digest algorithm %s\n" msgstr " \"%s\": Einstellungen der Hashmethode %s\n" -#: g10/import.c:1345 +#: g10/import.c:1346 #, c-format msgid " \"%s\": preference for compression algorithm %s\n" msgstr " \"%s\": Einstellungen der Komprimierungsverfahren %s\n" -#: g10/import.c:1358 +#: g10/import.c:1359 #, c-format msgid "it is strongly suggested that you update your preferences and\n" msgstr "es ist extrem empfehlenswert Ihre Einstellungen zu ändern und\n" -#: g10/import.c:1360 +#: g10/import.c:1361 #, c-format msgid "re-distribute this key to avoid potential algorithm mismatch problems\n" msgstr "" "diesen Schlüssel wieder zu verteilen, um mögliche Probleme durch unpassende " "Verfahrenskombinationen zu vermeiden\n" -#: g10/import.c:1385 +#: g10/import.c:1386 #, c-format msgid "you can update your preferences with: gpg --edit-key %s updpref save\n" msgstr "" "Sie können Ihren Einstellungen mittels \"gpg --edit-key %s updpref save\" " "ändern\n" -#: g10/import.c:1899 g10/import.c:3013 +#: g10/import.c:1902 g10/import.c:3028 #, c-format msgid "key %s: no user ID\n" msgstr "Schlüssel %s: Keine User-ID\n" -#: g10/import.c:1905 +#: g10/import.c:1908 #, c-format msgid "key %s: %s\n" msgstr "Schlüssel %s: %s\n" -#: g10/import.c:1906 g10/import.c:2985 +#: g10/import.c:1909 g10/import.c:3000 msgid "rejected by import screener" msgstr "vom Import-Aufpasser zurückgewiesen" -#: g10/import.c:1950 +#: g10/import.c:1953 #, c-format msgid "key %s: PKS subkey corruption repaired\n" msgstr "Schlüssel %s: PKS Unterschlüsseldefekt repariert\n" -#: g10/import.c:1971 +#: g10/import.c:1974 #, c-format msgid "key %s: accepted non self-signed user ID \"%s\"\n" msgstr "Schlüssel %s: Nicht eigenbeglaubigte User-ID `%s' übernommen\n" -#: g10/import.c:1981 g10/import.c:2012 +#: g10/import.c:1985 g10/import.c:2016 #, c-format msgid "key %s: no valid user IDs\n" msgstr "Schlüssel %s: Keine gültigen User-IDs\n" -#: g10/import.c:1983 +#: g10/import.c:1987 #, c-format msgid "this may be caused by a missing self-signature\n" msgstr "dies könnte durch fehlende Eigenbeglaubigung verursacht worden sein\n" -#: g10/import.c:2062 g10/import.c:3399 +#: g10/import.c:2066 g10/import.c:3415 #, c-format msgid "key %s: public key not found: %s\n" msgstr "Schlüssel %s: Öffentlicher Schlüssel nicht gefunden: %s\n" -#: g10/import.c:2068 +#: g10/import.c:2072 #, c-format msgid "key %s: new key - skipped\n" msgstr "Schlüssel %s: neuer Schlüssel - übersprungen\n" -#: g10/import.c:2080 +#: g10/import.c:2084 #, c-format msgid "no writable keyring found: %s\n" msgstr "kein schreibbarer Schlüsselbund gefunden: %s\n" -#: g10/import.c:2112 g10/import.c:2214 g10/import.c:3476 +#: g10/import.c:2116 g10/import.c:2218 g10/import.c:3492 #, c-format msgid "error writing keyring '%s': %s\n" msgstr "Fehler beim Schreiben des Schlüsselbundes `%s': %s\n" -#: g10/import.c:2135 +#: g10/import.c:2139 #, c-format msgid "key %s: public key \"%s\" imported\n" msgstr "Schlüssel %s: Öffentlicher Schlüssel \"%s\" importiert\n" -#: g10/import.c:2162 +#: g10/import.c:2166 #, c-format msgid "key %s: doesn't match our copy\n" msgstr "Schlüssel %s: Stimmt nicht mit unserer Kopie überein\n" -#: g10/import.c:2230 +#: g10/import.c:2234 #, c-format msgid "key %s: \"%s\" 1 new user ID\n" msgstr "Schlüssel %s: \"%s\" 1 neue User-ID\n" -#: g10/import.c:2233 +#: g10/import.c:2237 #, c-format msgid "key %s: \"%s\" %d new user IDs\n" msgstr "Schlüssel %s: \"%s\" %d neue User-IDs\n" -#: g10/import.c:2236 +#: g10/import.c:2240 #, c-format msgid "key %s: \"%s\" 1 new signature\n" msgstr "Schlüssel %s: \"%s\" 1 neue Signatur\n" -#: g10/import.c:2239 +#: g10/import.c:2243 #, c-format msgid "key %s: \"%s\" %d new signatures\n" msgstr "Schlüssel %s: \"%s\" %d neue Signaturen\n" -#: g10/import.c:2242 +#: g10/import.c:2246 #, c-format msgid "key %s: \"%s\" 1 new subkey\n" msgstr "Schlüssel %s: \"%s\" 1 neuer Unterschlüssel\n" -#: g10/import.c:2245 +#: g10/import.c:2249 #, c-format msgid "key %s: \"%s\" %d new subkeys\n" msgstr "Schlüssel %s: \"%s\" %d neue Unterschlüssel\n" -#: g10/import.c:2248 +#: g10/import.c:2252 #, c-format msgid "key %s: \"%s\" %d signature cleaned\n" msgstr "Schlüssel %s: \"%s\" %d Signaturen bereinigt\n" -#: g10/import.c:2251 +#: g10/import.c:2255 #, c-format msgid "key %s: \"%s\" %d signatures cleaned\n" msgstr "Schlüssel %s: \"%s\" %d Signaturen bereinigt\n" -#: g10/import.c:2254 +#: g10/import.c:2258 #, c-format msgid "key %s: \"%s\" %d user ID cleaned\n" msgstr "Schlüssel %s: \"%s\" %d User-ID bereinigt\n" -#: g10/import.c:2257 +#: g10/import.c:2261 #, c-format msgid "key %s: \"%s\" %d user IDs cleaned\n" msgstr "Schlüssel %s: \"%s\" %d User-IDs bereinigt\n" -#: g10/import.c:2293 +#: g10/import.c:2297 #, c-format msgid "key %s: \"%s\" not changed\n" msgstr "Schlüssel %s: \"%s\" nicht geändert\n" -#: g10/import.c:2652 g10/import.c:2847 +#: g10/import.c:2667 g10/import.c:2862 #, c-format msgid "key %s: secret key imported\n" msgstr "Schlüssel %s: geheimer Schlüssel importiert\n" -#: g10/import.c:2660 +#: g10/import.c:2675 #, c-format msgid "key %s: secret key already exists\n" msgstr "Schlüssel %s: geheimer Schlüssel bereits vorhanden\n" -#: g10/import.c:2668 +#: g10/import.c:2683 #, c-format msgid "key %s: error sending to agent: %s\n" msgstr "Schlüssel %s: Fehler beim Senden zum gpg-agent: %s\n" @@ -3871,203 +3875,203 @@ #. * Instead, user should be suggested to run 'gpg --card-status', #. * then, references to a card will be automatically created #. * again. -#: g10/import.c:2837 +#: g10/import.c:2852 #, c-format msgid "To migrate '%s', with each smartcard, run: %s\n" msgstr "" "Um '%s' zu migrieren sollte für jede Smartcard \"%s\" aufgerufen werden.\n" -#: g10/import.c:2984 +#: g10/import.c:2999 #, c-format msgid "secret key %s: %s\n" msgstr "Geheimer Schlüssel %s: %s\n" -#: g10/import.c:3005 g10/import.c:3044 +#: g10/import.c:3020 g10/import.c:3059 #, c-format msgid "importing secret keys not allowed\n" msgstr "Importieren geheimer Schlüssel ist nicht erlaubt\n" -#: g10/import.c:3032 +#: g10/import.c:3047 #, c-format msgid "key %s: secret key with invalid cipher %d - skipped\n" msgstr "" "Schlüssel %s: geheimer Schlüssel mit ungültiger Verschlüsselung %d - " "übersprungen\n" -#: g10/import.c:3194 g10/pkclist.c:72 g10/revoke.c:776 +#: g10/import.c:3209 g10/pkclist.c:72 g10/revoke.c:776 msgid "No reason specified" msgstr "Kein Grund angegeben" -#: g10/import.c:3195 g10/pkclist.c:74 g10/revoke.c:778 +#: g10/import.c:3210 g10/pkclist.c:74 g10/revoke.c:778 msgid "Key is superseded" msgstr "Schlüssel ist überholt" -#: g10/import.c:3196 g10/pkclist.c:76 g10/revoke.c:777 +#: g10/import.c:3211 g10/pkclist.c:76 g10/revoke.c:777 msgid "Key has been compromised" msgstr "Hinweis: Dieser Schlüssel ist nicht mehr sicher" -#: g10/import.c:3197 g10/pkclist.c:78 g10/revoke.c:779 +#: g10/import.c:3212 g10/pkclist.c:78 g10/revoke.c:779 msgid "Key is no longer used" msgstr "Schlüssel wird nicht mehr benutzt" -#: g10/import.c:3198 g10/pkclist.c:80 g10/revoke.c:780 +#: g10/import.c:3213 g10/pkclist.c:80 g10/revoke.c:780 msgid "User ID is no longer valid" msgstr "User-ID ist nicht mehr gültig" -#: g10/import.c:3323 g10/keylist.c:1258 g10/pkclist.c:84 +#: g10/import.c:3338 g10/keylist.c:1258 g10/pkclist.c:84 #, c-format msgid "reason for revocation: " msgstr "Grund für Widerruf: " -#: g10/import.c:3342 g10/keylist.c:1277 g10/pkclist.c:100 +#: g10/import.c:3357 g10/keylist.c:1277 g10/pkclist.c:100 #, c-format msgid "revocation comment: " msgstr "Widerruf-Bemerkung: " -#: g10/import.c:3392 +#: g10/import.c:3408 #, c-format msgid "key %s: no public key - can't apply revocation certificate\n" msgstr "" "Schlüssel %s: Kein öffentlicher Schlüssel - der Schlüsselwiderruf kann nicht " "angebracht werden\n" -#: g10/import.c:3423 +#: g10/import.c:3439 #, c-format msgid "key %s: can't locate original keyblock: %s\n" msgstr "Schlüssel %s: der originale Schlüsselblock wurde nicht gefunden: %s\n" -#: g10/import.c:3430 +#: g10/import.c:3446 #, c-format msgid "key %s: can't read original keyblock: %s\n" msgstr "Schlüssel %s: Lesefehler im originalen Schlüsselblock: %s\n" -#: g10/import.c:3450 +#: g10/import.c:3466 #, c-format msgid "key %s: invalid revocation certificate: %s - rejected\n" msgstr "Schlüssel %s: Ungültiges Widerrufzertifikat: %s - zurückgewiesen\n" -#: g10/import.c:3485 +#: g10/import.c:3501 #, c-format msgid "key %s: \"%s\" revocation certificate imported\n" msgstr "Schlüssel %s: \"%s\" Widerrufzertifikat importiert\n" -#: g10/import.c:3571 +#: g10/import.c:3587 #, c-format msgid "key %s: no user ID for signature\n" msgstr "Schlüssel %s: Keine User-ID für Signatur\n" -#: g10/import.c:3588 +#: g10/import.c:3604 #, c-format msgid "key %s: unsupported public key algorithm on user ID \"%s\"\n" msgstr "" "Schlüssel %s: Nicht unterstütztes Public-Key-Verfahren für User-ID \"%s\"\n" -#: g10/import.c:3590 +#: g10/import.c:3606 #, c-format msgid "key %s: invalid self-signature on user ID \"%s\"\n" msgstr "Schlüssel %s: Ungültige Eigenbeglaubigung für User-ID \"%s\"\n" -#: g10/import.c:3607 g10/import.c:3635 g10/import.c:3691 +#: g10/import.c:3623 g10/import.c:3651 g10/import.c:3707 #, c-format msgid "key %s: unsupported public key algorithm\n" msgstr "Schlüssel %s: Nicht unterstütztes Public-Key-Verfahren\n" -#: g10/import.c:3608 +#: g10/import.c:3624 #, c-format msgid "key %s: invalid direct key signature\n" msgstr "Schlüssel %s: Ungültige \"direct-key\"-Signatur\n" -#: g10/import.c:3622 +#: g10/import.c:3638 #, c-format msgid "key %s: no subkey for key binding\n" msgstr "Schlüssel %s: Kein Unterschlüssel für die Unterschlüsselanbindung\n" -#: g10/import.c:3637 +#: g10/import.c:3653 #, c-format msgid "key %s: invalid subkey binding\n" msgstr "Schlüssel %s: Ungültige Unterschlüssel-Anbindung\n" -#: g10/import.c:3656 +#: g10/import.c:3672 #, c-format msgid "key %s: removed multiple subkey binding\n" msgstr "Schlüssel %s: Mehrfache Unterschlüssel-Anbindung entfernt\n" -#: g10/import.c:3680 +#: g10/import.c:3696 #, c-format msgid "key %s: no subkey for key revocation\n" msgstr "Schlüssel %s: Kein Unterschlüssel für Schlüsselwiderruf\n" -#: g10/import.c:3693 +#: g10/import.c:3709 #, c-format msgid "key %s: invalid subkey revocation\n" msgstr "Schlüssel %s: Ungültiger Unterschlüsselwiderruf\n" -#: g10/import.c:3708 +#: g10/import.c:3724 #, c-format msgid "key %s: removed multiple subkey revocation\n" msgstr "Schlüssel %s: Mehrfacher Unterschlüsselwiderruf entfernt\n" -#: g10/import.c:3752 +#: g10/import.c:3771 #, c-format msgid "key %s: skipped user ID \"%s\"\n" msgstr "Schlüssel %s: User-ID übersprungen \"%s\"\n" -#: g10/import.c:3779 +#: g10/import.c:3798 #, c-format msgid "key %s: skipped subkey\n" msgstr "Schlüssel %s: Unterschlüssel übersprungen\n" -#: g10/import.c:3810 +#: g10/import.c:3829 #, c-format msgid "key %s: non exportable signature (class 0x%02X) - skipped\n" msgstr "" "Schlüssel %s: Nicht exportfähige Signatur (Klasse %02x) - übersprungen\n" -#: g10/import.c:3821 +#: g10/import.c:3840 #, c-format msgid "key %s: revocation certificate at wrong place - skipped\n" msgstr "Schlüssel %s: Widerrufzertifikat an falschem Platz - übersprungen\n" -#: g10/import.c:3839 +#: g10/import.c:3868 #, c-format msgid "key %s: invalid revocation certificate: %s - skipped\n" msgstr "Schlüssel %s: Ungültiges Widerrufzertifikat: %s - übersprungen\n" -#: g10/import.c:3853 +#: g10/import.c:3892 #, c-format msgid "key %s: subkey signature in wrong place - skipped\n" msgstr "" "Schlüssel %s: Unterschlüssel-Widerrufzertifikat an falschem Platz - " "übersprungen\n" -#: g10/import.c:3861 +#: g10/import.c:3900 #, c-format msgid "key %s: unexpected signature class (0x%02X) - skipped\n" msgstr "Schlüssel %s: unerwartete Signaturklasse (0x%02x) - übersprungen\n" -#: g10/import.c:4034 +#: g10/import.c:4073 #, c-format msgid "key %s: duplicated user ID detected - merged\n" msgstr "Schlüssel %s: Doppelte User-ID entdeckt - zusammengeführt\n" -#: g10/import.c:4099 +#: g10/import.c:4138 #, c-format msgid "WARNING: key %s may be revoked: fetching revocation key %s\n" msgstr "WARNUNG: Schlüssel %s ist u.U. widerrufen: hole Widerrufschlüssel %s\n" -#: g10/import.c:4115 +#: g10/import.c:4154 #, c-format msgid "WARNING: key %s may be revoked: revocation key %s not present.\n" msgstr "" "WARNUNG: Schlüssel %s ist u.U. widerrufen: Widerrufschlüssel %s ist nicht " "vorhanden\n" -#: g10/import.c:4181 +#: g10/import.c:4220 #, c-format msgid "key %s: \"%s\" revocation certificate added\n" msgstr "Schlüssel %s: \"%s\" Widerrufzertifikat hinzugefügt\n" -#: g10/import.c:4219 +#: g10/import.c:4258 #, c-format msgid "key %s: direct key signature added\n" msgstr "Schlüssel %s: \"direct-key\"-Signaturen hinzugefügt\n" @@ -4951,7 +4955,7 @@ msgid "You may not add a photo ID to a PGP2-style key.\n" msgstr "Sie können einem PGP2-artigen Schlüssel keine Foto-ID hinzufügen.\n" -#: g10/keyedit.c:4293 g10/keygen.c:2899 +#: g10/keyedit.c:4293 g10/keygen.c:2953 msgid "Such a user ID already exists on this key!\n" msgstr "Solch eine User-ID ist bereits für den Schlüssel vorhanden!\n" @@ -5237,63 +5241,63 @@ msgid "Displaying %s photo ID of size %ld for key %s (uid %d)\n" msgstr "Anzeigen einer %s Foto-ID (Größe %ld) für Schlüssel %s (User-ID %d)\n" -#: g10/keygen.c:169 +#: g10/keygen.c:174 #, c-format msgid "invalid value for option '%s'\n" msgstr "Ungültiges Argument für Option '%s'\n" -#: g10/keygen.c:322 +#: g10/keygen.c:331 #, c-format msgid "preference '%s' duplicated\n" msgstr "Voreinstellung `%s' ist doppelt\n" -#: g10/keygen.c:329 +#: g10/keygen.c:338 #, c-format msgid "too many cipher preferences\n" msgstr "zu viele Verschlüsselungeinstellungen\n" -#: g10/keygen.c:331 +#: g10/keygen.c:340 #, c-format msgid "too many digest preferences\n" msgstr "zu viele Hashvoreinstellungen\n" -#: g10/keygen.c:333 +#: g10/keygen.c:342 #, c-format msgid "too many compression preferences\n" msgstr "zu viele Komprimierungsvoreinstellungen\n" -#: g10/keygen.c:493 +#: g10/keygen.c:502 #, c-format msgid "invalid item '%s' in preference string\n" msgstr "Ungültiges Feld `%s' in der Voreinstellungszeichenkette\n" -#: g10/keygen.c:972 +#: g10/keygen.c:1020 #, c-format msgid "writing direct signature\n" msgstr "Die \"Direct Key Signature\" wird geschrieben\n" -#: g10/keygen.c:1018 +#: g10/keygen.c:1066 #, c-format msgid "writing self signature\n" msgstr "Die Eigenbeglaubigung wird geschrieben\n" -#: g10/keygen.c:1075 +#: g10/keygen.c:1123 #, c-format msgid "writing key binding signature\n" msgstr "Schreiben der \"key-binding\" Signatur\n" -#: g10/keygen.c:1440 g10/keygen.c:1445 g10/keygen.c:1497 g10/keygen.c:1502 -#: g10/keygen.c:1656 g10/keygen.c:1661 +#: g10/keygen.c:1494 g10/keygen.c:1499 g10/keygen.c:1551 g10/keygen.c:1556 +#: g10/keygen.c:1710 g10/keygen.c:1715 #, c-format msgid "keysize invalid; using %u bits\n" msgstr "Ungültige Schlüssellänge; %u Bit werden verwendet\n" -#: g10/keygen.c:1451 g10/keygen.c:1508 g10/keygen.c:1516 g10/keygen.c:1667 +#: g10/keygen.c:1505 g10/keygen.c:1562 g10/keygen.c:1570 g10/keygen.c:1721 #, c-format msgid "keysize rounded up to %u bits\n" msgstr "Schlüssellänge auf %u Bit aufgerundet\n" -#: g10/keygen.c:1542 +#: g10/keygen.c:1596 #, c-format msgid "" "WARNING: some OpenPGP programs can't handle a DSA key with this digest size\n" @@ -5301,19 +5305,19 @@ "WARNUNG: Einige OpenPGP-Programme können einen DSA-Schlüssel dieser " "Digestlänge nicht verwenden\n" -#: g10/keygen.c:1723 +#: g10/keygen.c:1777 msgid "Sign" msgstr "Signieren" -#: g10/keygen.c:1726 +#: g10/keygen.c:1780 msgid "Certify" msgstr "Zertif." -#: g10/keygen.c:1729 +#: g10/keygen.c:1783 msgid "Encrypt" msgstr "Verschl." -#: g10/keygen.c:1732 +#: g10/keygen.c:1786 msgid "Authenticate" msgstr "Authentisierung" @@ -5327,161 +5331,161 @@ #. * a = Toggle authentication capability #. * q = Finish #. -#: g10/keygen.c:1753 +#: g10/keygen.c:1807 msgid "SsEeAaQq" msgstr "SsVvAaQq" -#: g10/keygen.c:1784 +#: g10/keygen.c:1838 #, c-format msgid "Possible actions for a %s key: " msgstr "Mögliche Vorgänge eines %s-Schlüssels: " -#: g10/keygen.c:1790 +#: g10/keygen.c:1844 msgid "Current allowed actions: " msgstr "Derzeit erlaubte Vorgänge: " -#: g10/keygen.c:1795 +#: g10/keygen.c:1849 #, c-format msgid " (%c) Toggle the sign capability\n" msgstr " (%c) Umschalten der Signaturnutzbarkeit\n" -#: g10/keygen.c:1798 +#: g10/keygen.c:1852 #, c-format msgid " (%c) Toggle the encrypt capability\n" msgstr " (%c) Umschalten der Verschlüsselungsnutzbarkeit\n" -#: g10/keygen.c:1801 +#: g10/keygen.c:1855 #, c-format msgid " (%c) Toggle the authenticate capability\n" msgstr " (%c) Umschalten der Authentisierungsnutzbarkeit\n" -#: g10/keygen.c:1804 +#: g10/keygen.c:1858 #, c-format msgid " (%c) Finished\n" msgstr " (%c) Beenden\n" -#: g10/keygen.c:1930 +#: g10/keygen.c:1984 #, c-format msgid " (%d) RSA and RSA (default)\n" msgstr " (%d) RSA und RSA (voreingestellt)\n" -#: g10/keygen.c:1934 +#: g10/keygen.c:1988 #, c-format msgid " (%d) DSA and Elgamal\n" msgstr " (%d) DSA und Elgamal\n" -#: g10/keygen.c:1937 +#: g10/keygen.c:1991 #, c-format msgid " (%d) DSA (sign only)\n" msgstr " (%d) DSA (nur signieren/beglaubigen)\n" -#: g10/keygen.c:1939 +#: g10/keygen.c:1993 #, c-format msgid " (%d) RSA (sign only)\n" msgstr " (%d) RSA (nur signieren/beglaubigen)\n" -#: g10/keygen.c:1945 +#: g10/keygen.c:1999 #, c-format msgid " (%d) Elgamal (encrypt only)\n" msgstr " (%d) Elgamal (nur verschlüsseln)\n" -#: g10/keygen.c:1947 +#: g10/keygen.c:2001 #, c-format msgid " (%d) RSA (encrypt only)\n" msgstr " (%d) RSA (nur verschlüsseln)\n" -#: g10/keygen.c:1953 +#: g10/keygen.c:2007 #, c-format msgid " (%d) DSA (set your own capabilities)\n" msgstr " (%d) DSA (Nutzung selber einstellbar)\n" -#: g10/keygen.c:1955 +#: g10/keygen.c:2009 #, c-format msgid " (%d) RSA (set your own capabilities)\n" msgstr " (%d) RSA (Nutzung selber einstellbar)\n" -#: g10/keygen.c:1961 +#: g10/keygen.c:2015 #, c-format msgid " (%d) ECC and ECC\n" msgstr " (%d) ECC und ECC\n" -#: g10/keygen.c:1963 +#: g10/keygen.c:2017 #, c-format msgid " (%d) ECC (sign only)\n" msgstr " (%d) ECC (nur signieren)\n" -#: g10/keygen.c:1965 +#: g10/keygen.c:2019 #, c-format msgid " (%d) ECC (set your own capabilities)\n" msgstr " (%d) ECC (Nutzung selber einstellbar)\n" -#: g10/keygen.c:1967 +#: g10/keygen.c:2021 #, c-format msgid " (%d) ECC (encrypt only)\n" msgstr " (%d) ECC (nur verschlüsseln)\n" -#: g10/keygen.c:1971 +#: g10/keygen.c:2025 #, c-format msgid " (%d) Existing key\n" msgstr " (%d) Vorhandener Schlüssel\n" -#: g10/keygen.c:1973 +#: g10/keygen.c:2027 #, c-format msgid " (%d) Existing key from card\n" msgstr " (%d) Vorhandener Schlüssel auf der Karte\n" -#: g10/keygen.c:2069 sm/certreqgen-ui.c:202 +#: g10/keygen.c:2123 sm/certreqgen-ui.c:202 msgid "Enter the keygrip: " msgstr "Geben Sie den \"Keygrip\" ein: " -#: g10/keygen.c:2082 sm/certreqgen-ui.c:210 +#: g10/keygen.c:2136 sm/certreqgen-ui.c:210 msgid "Not a valid keygrip (expecting 40 hex digits)\n" msgstr "Kein gültiger \"Keygrip\" (40 Hex-Ziffern werden erwartet)\n" -#: g10/keygen.c:2084 sm/certreqgen-ui.c:212 +#: g10/keygen.c:2138 sm/certreqgen-ui.c:212 msgid "No key with this keygrip\n" msgstr "Kein Schlüssel mit diesem \"Keygrip\"\n" -#: g10/keygen.c:2103 g10/keygen.c:2113 g10/keygen.c:3216 g10/keygen.c:3227 +#: g10/keygen.c:2157 g10/keygen.c:2167 g10/keygen.c:3270 g10/keygen.c:3281 #: sm/certreqgen-ui.c:230 sm/certreqgen-ui.c:239 #, c-format msgid "error reading the card: %s\n" msgstr "Fehler beim Lesen von der Karte: %s\n" -#: g10/keygen.c:2107 g10/keygen.c:3220 sm/certreqgen-ui.c:233 +#: g10/keygen.c:2161 g10/keygen.c:3274 sm/certreqgen-ui.c:233 #, c-format msgid "Serial number of the card: %s\n" msgstr "Karten-Seriennummer: %s\n" -#: g10/keygen.c:2120 sm/certreqgen-ui.c:245 +#: g10/keygen.c:2174 sm/certreqgen-ui.c:245 msgid "Available keys:\n" msgstr "Vorhandene Schlüssel:\n" -#: g10/keygen.c:2297 g10/keygen.c:2311 +#: g10/keygen.c:2351 g10/keygen.c:2365 #, c-format msgid "rounded to %u bits\n" msgstr "gerundet auf %u Bit\n" -#: g10/keygen.c:2352 +#: g10/keygen.c:2406 #, c-format msgid "%s keys may be between %u and %u bits long.\n" msgstr "%s-Schlüssel können zwischen %u und %u Bit lang sein.\n" -#: g10/keygen.c:2360 +#: g10/keygen.c:2414 #, c-format msgid "What keysize do you want for the subkey? (%u) " msgstr "Welche Schlüssellänge wünschen Sie für den Unterschlüssel? (%u) " -#: g10/keygen.c:2377 sm/certreqgen-ui.c:189 +#: g10/keygen.c:2431 sm/certreqgen-ui.c:189 #, c-format msgid "Requested keysize is %u bits\n" msgstr "Die verlangte Schlüssellänge beträgt %u Bit\n" -#: g10/keygen.c:2423 +#: g10/keygen.c:2477 msgid "Please select which elliptic curve you want:\n" msgstr "Bitte wählen Sie, welche elliptische Kurve Sie möchten:\n" -#: g10/keygen.c:2611 +#: g10/keygen.c:2665 msgid "" "Please specify how long the key should be valid.\n" " 0 = key does not expire\n" @@ -5497,7 +5501,7 @@ " m = Schlüssel verfällt nach n Monaten\n" " y = Schlüssel verfällt nach n Jahren\n" -#: g10/keygen.c:2622 +#: g10/keygen.c:2676 msgid "" "Please specify how long the signature should be valid.\n" " 0 = signature does not expire\n" @@ -5513,38 +5517,38 @@ " m = Schlüssel verfällt nach n Monaten\n" " y = Schlüssel verfällt nach n Jahren\n" -#: g10/keygen.c:2645 +#: g10/keygen.c:2699 msgid "Key is valid for? (0) " msgstr "Wie lange bleibt der Schlüssel gültig? (0) " -#: g10/keygen.c:2650 +#: g10/keygen.c:2704 #, c-format msgid "Signature is valid for? (%s) " msgstr "Wie lange bleibt die Beglaubigung gültig? (%s) " -#: g10/keygen.c:2663 g10/keygen.c:2688 +#: g10/keygen.c:2717 g10/keygen.c:2742 msgid "invalid value\n" msgstr "Ungültiger Wert.\n" -#: g10/keygen.c:2670 +#: g10/keygen.c:2724 msgid "Key does not expire at all\n" msgstr "Schlüssel verfällt nie\n" -#: g10/keygen.c:2671 +#: g10/keygen.c:2725 msgid "Signature does not expire at all\n" msgstr "Signature verfällt nie\n" -#: g10/keygen.c:2676 +#: g10/keygen.c:2730 #, c-format msgid "Key expires at %s\n" msgstr "Key verfällt am %s\n" -#: g10/keygen.c:2677 +#: g10/keygen.c:2731 #, c-format msgid "Signature expires at %s\n" msgstr "Signatur verfällt am %s\n" -#: g10/keygen.c:2681 +#: g10/keygen.c:2735 msgid "" "Your system can't display dates beyond 2038.\n" "However, it will be correctly handled up to 2106.\n" @@ -5552,11 +5556,11 @@ "Ihr Rechner kann Daten jenseits des Jahres 2038 nicht anzeigen.\n" "Trotzdem werden Daten bis 2106 korrekt verarbeitet.\n" -#: g10/keygen.c:2694 +#: g10/keygen.c:2748 msgid "Is this correct? (y/N) " msgstr "Ist dies richtig? (j/N) " -#: g10/keygen.c:2762 +#: g10/keygen.c:2816 msgid "" "\n" "GnuPG needs to construct a user ID to identify your key.\n" @@ -5570,7 +5574,7 @@ #. but you should keep your existing translation. In case #. the new string is not translated this old string will #. be used. -#: g10/keygen.c:2777 +#: g10/keygen.c:2831 msgid "" "\n" "You need a user ID to identify your key; the software constructs the user " @@ -5586,49 +5590,49 @@ " \"Heinrich Heine (Der Dichter) \"\n" "\n" -#: g10/keygen.c:2796 +#: g10/keygen.c:2850 msgid "Real name: " msgstr "Ihr Name (\"Vorname Nachname\"): " -#: g10/keygen.c:2805 +#: g10/keygen.c:2859 msgid "Invalid character in name\n" msgstr "Ungültiges Zeichen im Namen\n" -#: g10/keygen.c:2806 +#: g10/keygen.c:2860 #, c-format msgid "The characters '%s' and '%s' may not appear in name\n" msgstr "Die Zeichen '%s' und '%s' dürfen in einem Namen nicht vorkommen\n" -#: g10/keygen.c:2810 +#: g10/keygen.c:2864 msgid "Name may not start with a digit\n" msgstr "Der Name darf nicht mit einer Ziffer beginnen.\n" -#: g10/keygen.c:2813 +#: g10/keygen.c:2867 msgid "Name must be at least 5 characters long\n" msgstr "Der Name muß min. 5 Zeichen lang sein.\n" -#: g10/keygen.c:2823 +#: g10/keygen.c:2877 msgid "Email address: " msgstr "Email-Adresse: " -#: g10/keygen.c:2829 +#: g10/keygen.c:2883 msgid "Not a valid email address\n" msgstr "Diese Email-Adresse ist ungültig\n" -#: g10/keygen.c:2838 +#: g10/keygen.c:2892 msgid "Comment: " msgstr "Kommentar: " -#: g10/keygen.c:2844 +#: g10/keygen.c:2898 msgid "Invalid character in comment\n" msgstr "Ungültiges Zeichen im Kommentar.\n" -#: g10/keygen.c:2880 +#: g10/keygen.c:2934 #, c-format msgid "You are using the '%s' character set.\n" msgstr "Sie benutzen den Zeichensatz `%s'\n" -#: g10/keygen.c:2886 +#: g10/keygen.c:2940 #, c-format msgid "" "You selected this USER-ID:\n" @@ -5639,7 +5643,7 @@ " \"%s\"\n" "\n" -#: g10/keygen.c:2891 +#: g10/keygen.c:2945 msgid "Please don't put the email address into the real name or the comment\n" msgstr "Bitte keine Emailadressen als Namen oder Kommentar verwenden\n" @@ -5654,31 +5658,31 @@ #. o = Okay (ready, continue) #. q = Quit #. -#: g10/keygen.c:2916 +#: g10/keygen.c:2970 msgid "NnCcEeOoQq" msgstr "NnKkEeFfAa" -#: g10/keygen.c:2926 +#: g10/keygen.c:2980 msgid "Change (N)ame, (C)omment, (E)mail or (Q)uit? " msgstr "Ändern: (N)ame, (K)ommentar, (E)-Mail oder (A)bbrechen? " -#: g10/keygen.c:2927 +#: g10/keygen.c:2981 msgid "Change (N)ame, (C)omment, (E)mail or (O)kay/(Q)uit? " msgstr "Ändern: (N)ame, (K)ommentar, (E)-Mail oder (F)ertig/(A)bbrechen? " -#: g10/keygen.c:2932 +#: g10/keygen.c:2986 msgid "Change (N)ame, (E)mail, or (Q)uit? " msgstr "Ändern: (N)ame, (E)-Mail oder (A)bbrechen? " -#: g10/keygen.c:2933 +#: g10/keygen.c:2987 msgid "Change (N)ame, (E)mail, or (O)kay/(Q)uit? " msgstr "Ändern: (N)ame, (E)-Mail oder (F)ertig/(A)bbrechen? " -#: g10/keygen.c:2952 +#: g10/keygen.c:3006 msgid "Please correct the error first\n" msgstr "Bitte beseitigen Sie zuerst den Fehler\n" -#: g10/keygen.c:2998 +#: g10/keygen.c:3052 msgid "" "We need to generate a lot of random bytes. It is a good idea to perform\n" "some other action (type on the keyboard, move the mouse, utilize the\n" @@ -5689,13 +5693,13 @@ "unterstützen, indem Sie z.B. in einem anderen Fenster/Konsole irgendetwas\n" "tippen, die Maus verwenden oder irgendwelche anderen Programme benutzen.\n" -#: g10/keygen.c:4278 g10/keygen.c:4349 g10/keygen.c:4367 g10/keygen.c:4395 -#: g10/keygen.c:4739 g10/keygen.c:5239 g10/keygen.c:5534 g10/keygen.c:5639 +#: g10/keygen.c:4332 g10/keygen.c:4403 g10/keygen.c:4421 g10/keygen.c:4449 +#: g10/keygen.c:4793 g10/keygen.c:5293 g10/keygen.c:5588 g10/keygen.c:5693 #, c-format msgid "Key generation failed: %s\n" msgstr "Schlüsselerzeugung fehlgeschlagen: %s\n" -#: g10/keygen.c:4287 +#: g10/keygen.c:4341 #, c-format msgid "" "About to create a key for:\n" @@ -5706,64 +5710,64 @@ " \"%s\"\n" "\n" -#: g10/keygen.c:4289 +#: g10/keygen.c:4343 msgid "Continue? (Y/n) " msgstr "Fortsetzen? (J/n) " -#: g10/keygen.c:4310 +#: g10/keygen.c:4364 #, c-format msgid "A key for \"%s\" already exists\n" msgstr "Ein Schlüssel für \"%s\" existiert bereits\n" -#: g10/keygen.c:4315 +#: g10/keygen.c:4369 msgid "Create anyway? (y/N) " msgstr "Trotzdem erzeugen? (j/N) " -#: g10/keygen.c:4321 +#: g10/keygen.c:4375 #, c-format msgid "creating anyway\n" msgstr "wird trotzdem erzeugt\n" -#: g10/keygen.c:4722 +#: g10/keygen.c:4776 #, c-format msgid "Note: Use \"%s %s\" for a full featured key generation dialog.\n" msgstr "Hinweis: \"%s %s\" ruft den erweiterten Dialog auf.\n" -#: g10/keygen.c:4771 +#: g10/keygen.c:4825 #, c-format msgid "Key generation canceled.\n" msgstr "Schlüsselerzeugung abgebrochen.\n" -#: g10/keygen.c:4831 +#: g10/keygen.c:4885 #, c-format msgid "can't create backup file '%s': %s\n" msgstr "Sicherungsdatei '%s' kann nicht erzeugt werden: %s\n" -#: g10/keygen.c:4851 +#: g10/keygen.c:4905 #, c-format msgid "Note: backup of card key saved to '%s'\n" msgstr "Hinweis: Sicherung des Kartenschlüssels wurde auf `%s' gespeichert\n" -#: g10/keygen.c:5010 g10/keygen.c:5172 +#: g10/keygen.c:5064 g10/keygen.c:5226 #, c-format msgid "writing public key to '%s'\n" msgstr "schreiben des öffentlichen Schlüssels nach '%s'\n" -#: g10/keygen.c:5166 +#: g10/keygen.c:5220 #, c-format msgid "no writable public keyring found: %s\n" msgstr "kein schreibbarer öffentlicher Schlüsselbund gefunden: %s\n" -#: g10/keygen.c:5180 +#: g10/keygen.c:5234 #, c-format msgid "error writing public keyring '%s': %s\n" msgstr "Fehler beim Schreiben des öff. Schlüsselbundes `%s': %s\n" -#: g10/keygen.c:5210 +#: g10/keygen.c:5264 msgid "public and secret key created and signed.\n" msgstr "Öffentlichen und geheimen Schlüssel erzeugt und signiert.\n" -#: g10/keygen.c:5226 +#: g10/keygen.c:5280 msgid "" "Note that this key cannot be used for encryption. You may want to use\n" "the command \"--edit-key\" to generate a subkey for this purpose.\n" @@ -5772,7 +5776,7 @@ "werden kann. Sie können aber mit dem Befehl \"--edit-key\" einen\n" "Unterschlüssel für diesem Zweck erzeugen.\n" -#: g10/keygen.c:5401 g10/keygen.c:5590 +#: g10/keygen.c:5455 g10/keygen.c:5644 #, c-format msgid "" "key has been created %lu second in future (time warp or clock problem)\n" @@ -5780,7 +5784,7 @@ "Der Schlüssel wurde %lu Sekunde in der Zukunft erzeugt (Zeitreise oder Uhren " "stimmen nicht überein)\n" -#: g10/keygen.c:5403 g10/keygen.c:5592 +#: g10/keygen.c:5457 g10/keygen.c:5646 #, c-format msgid "" "key has been created %lu seconds in future (time warp or clock problem)\n" @@ -5788,22 +5792,22 @@ "Der Schlüssel wurde %lu Sekunden in der Zukunft erzeugt (Zeitreise oder " "Uhren stimmen nicht überein)\n" -#: g10/keygen.c:5414 g10/keygen.c:5603 +#: g10/keygen.c:5468 g10/keygen.c:5657 #, c-format msgid "Note: creating subkeys for v3 keys is not OpenPGP compliant\n" msgstr "Hinweis: Unterschlüssel für v3-Schlüssel sind nicht OpenPGP-konform\n" -#: g10/keygen.c:5426 g10/keygen.c:5428 +#: g10/keygen.c:5480 g10/keygen.c:5482 #, c-format msgid "Secret parts of primary key are not available.\n" msgstr "Geheime Teile des Hauptschlüssels sind nicht vorhanden.\n" -#: g10/keygen.c:5435 g10/keygen.c:5437 +#: g10/keygen.c:5489 g10/keygen.c:5491 #, c-format msgid "Secret parts of primary key are stored on-card.\n" msgstr "Geheime Teile des Hauptschlüssels sind auf der Karte gespeichert.\n" -#: g10/keygen.c:5456 g10/keygen.c:5617 +#: g10/keygen.c:5510 g10/keygen.c:5671 msgid "Really create? (y/N) " msgstr "Wirklich erzeugen? (j/N) " @@ -6917,30 +6921,30 @@ msgstr "" "Daten wurden nicht gespeichert; verwenden Sie dafür die Option \"--output\"\n" -#: g10/plaintext.c:615 +#: g10/plaintext.c:620 msgid "Detached signature.\n" msgstr "Abgetrennte Beglaubigungen.\n" -#: g10/plaintext.c:623 +#: g10/plaintext.c:628 msgid "Please enter name of data file: " msgstr "Bitte geben Sie den Namen der Datendatei ein: " -#: g10/plaintext.c:660 +#: g10/plaintext.c:665 #, c-format msgid "reading stdin ...\n" msgstr "lese stdin ...\n" -#: g10/plaintext.c:705 +#: g10/plaintext.c:710 #, c-format msgid "no signed data\n" msgstr "keine signierten Daten\n" -#: g10/plaintext.c:723 +#: g10/plaintext.c:728 #, c-format msgid "can't open signed data '%s'\n" msgstr "kann signierte Datei '%s' nicht öffnen.\n" -#: g10/plaintext.c:758 +#: g10/plaintext.c:763 #, c-format msgid "can't open signed data fd=%d: %s\n" msgstr "kann signierte Daten auf fd=%d nicht öffnen: %s\n" @@ -8002,7 +8006,7 @@ msgid "no need for a trustdb check\n" msgstr "\"Trust-DB\"-Überprüfung nicht nötig\n" -#: g10/trustdb.c:631 g10/trustdb.c:2326 +#: g10/trustdb.c:631 g10/trustdb.c:2338 #, c-format msgid "next trustdb check due at %s\n" msgstr "nächste \"Trust-DB\"-Pflichtüberprüfung am %s\n" @@ -8032,7 +8036,7 @@ msgid "checking the trustdb\n" msgstr "\"Trust-DB\" wird überprüft\n" -#: g10/trustdb.c:2047 +#: g10/trustdb.c:2059 #, c-format msgid "%d key processed" msgid_plural "%d keys processed" @@ -8040,24 +8044,24 @@ msgstr[1] "%d Schlüssel bislang bearbeitet" # translated by wk -#: g10/trustdb.c:2050 +#: g10/trustdb.c:2062 #, c-format msgid " (%d validity count cleared)\n" msgid_plural " (%d validity counts cleared)\n" msgstr[0] " (%d Validity Zähler gelöscht)\n" msgstr[1] " (%d Validity Zähler gelöscht)\n" -#: g10/trustdb.c:2120 +#: g10/trustdb.c:2132 #, c-format msgid "no ultimately trusted keys found\n" msgstr "keine ultimativ vertrauenswürdigen Schlüssel gefunden\n" -#: g10/trustdb.c:2134 +#: g10/trustdb.c:2146 #, c-format msgid "public key of ultimately trusted key %s not found\n" msgstr "öff. Schlüssel des ultimativ vertrauten Schlüssel %s nicht gefunden\n" -#: g10/trustdb.c:2252 +#: g10/trustdb.c:2264 #, c-format msgid "" "depth: %d valid: %3d signed: %3d trust: %d-, %dq, %dn, %dm, %df, %du\n" @@ -8065,7 +8069,7 @@ "Tiefe: %d gültig: %3d signiert: %3d Vertrauen: %d-, %dq, %dn, %dm, %df, " "%du\n" -#: g10/trustdb.c:2333 +#: g10/trustdb.c:2345 #, c-format msgid "unable to update trustdb version record: write failed: %s\n" msgstr "" @@ -8180,19 +8184,19 @@ #. TRANSLATORS: Put a \x1f right before a colon. This can be #. * used by pinentry to nicely align the names and values. Keep #. * the %s at the start and end of the string. -#: scd/app-p15.c:5116 scd/app-openpgp.c:2154 +#: scd/app-p15.c:5145 scd/app-nks.c:1541 scd/app-openpgp.c:2154 #, c-format msgid "%sNumber: %s%%0AHolder: %s%s" msgstr "%sNummer: %s%%0ABesitzer: %s%s" #. TRANSLATORS: This is the number of remaining attempts to #. * enter a PIN. Use %%0A (double-percent,0A) for a linefeed. -#: scd/app-p15.c:5135 scd/app-openpgp.c:2170 +#: scd/app-p15.c:5164 scd/app-nks.c:1560 scd/app-openpgp.c:2170 #, c-format msgid "Remaining attempts: %d" msgstr "Verbliebene Versuche: %d" -#: scd/app-p15.c:5214 scd/app-nks.c:1113 +#: scd/app-p15.c:5243 scd/app-nks.c:2112 msgid "||Please enter the PIN for the key to create qualified signatures." msgstr "" "||Bitte geben Sie die PIN für den Schlüssel zur Erstellung qualifizierter " @@ -8200,58 +8204,62 @@ #. TRANSLATORS: Do not translate the "|A|" prefix but keep it at #. the start of the string. Use %0A (single percent) for a linefeed. -#: scd/app-p15.c:5217 scd/app-openpgp.c:2464 +#: scd/app-p15.c:5246 scd/app-openpgp.c:2465 msgid "|A|Please enter the Admin PIN" msgstr "|A|Bitte die Admin-PIN eingeben." -#: scd/app-p15.c:5219 scd/app-nks.c:1103 +#: scd/app-p15.c:5248 scd/app-nks.c:2102 msgid "|P|Please enter the PIN Unblocking Code (PUK) for the standard keys." msgstr "" "|P|Bitte geben Sie den PIN Entsperrcode (PUK) für den Standard-Schlüssel ein." -#: scd/app-p15.c:5222 scd/app-nks.c:1095 +#: scd/app-p15.c:5251 scd/app-nks.c:2093 msgid "||Please enter the PIN for the standard keys." msgstr "||Bitte die PIN für den Standard-Schlüssel eingeben." -#: scd/app-nks.c:709 scd/app-openpgp.c:3666 +#: scd/app-nks.c:1479 scd/app-openpgp.c:3675 #, 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-nks.c:717 scd/app-openpgp.c:3678 +#: scd/app-nks.c:1487 scd/app-openpgp.c:3687 #, 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-nks.c:797 scd/app-openpgp.c:2327 scd/app-openpgp.c:2346 -#: scd/app-openpgp.c:2513 scd/app-openpgp.c:2531 scd/app-openpgp.c:2829 -#: scd/app-openpgp.c:2876 scd/app-openpgp.c:2991 scd/app-dinsig.c:302 +#: scd/app-nks.c:1660 +msgid "Note: PIN has not yet been enabled." +msgstr "Hinweis: Die Null-PIN wurde noch nicht geändert" + +#: scd/app-nks.c:1671 scd/app-openpgp.c:2327 scd/app-openpgp.c:2346 +#: scd/app-openpgp.c:2515 scd/app-openpgp.c:2533 scd/app-openpgp.c:2832 +#: scd/app-openpgp.c:2879 scd/app-openpgp.c:3000 scd/app-dinsig.c:303 #, c-format msgid "PIN callback returned error: %s\n" msgstr "PIN-Callback meldete Fehler: %s\n" -#: scd/app-nks.c:830 +#: scd/app-nks.c:1707 #, c-format msgid "the NullPIN has not yet been changed\n" -msgstr "Die Nullpin wurde noch nicht geändert\n" +msgstr "Die Null-PIN wurde noch nicht geändert\n" -#: scd/app-nks.c:1094 +#: scd/app-nks.c:2092 msgid "|N|Please enter a new PIN for the standard keys." msgstr "|N|Bitte eine neue PIN für den Standard-Schlüssel eingeben." -#: scd/app-nks.c:1101 +#: scd/app-nks.c:2100 msgid "|NP|Please enter a new PIN Unblocking Code (PUK) for the standard keys." msgstr "" "|NP|Bitte geben Sie einen neuen PIN Entsperrcode (PUK) für den Standard-" "Schlüssel ein." -#: scd/app-nks.c:1111 +#: scd/app-nks.c:2110 msgid "|N|Please enter a new PIN for the key to create qualified signatures." msgstr "" "|N|Bitte geben Sie eine neue PIN für den Schlüssel zur Erstellung " "qualifizierter Signaturen ein." -#: scd/app-nks.c:1121 +#: scd/app-nks.c:2120 msgid "" "|NP|Please enter a new PIN Unblocking Code (PUK) for the key to create " "qualified signatures." @@ -8259,7 +8267,7 @@ "|NP|Bitte geben Sie einen neuen PIN Entsperrcode (PUK) für den Schlüssel zur " "Erstellung qualifizierter Signaturen ein." -#: scd/app-nks.c:1123 +#: scd/app-nks.c:2122 msgid "" "|P|Please enter the PIN Unblocking Code (PUK) for the key to create " "qualified signatures." @@ -8267,7 +8275,7 @@ "|N|Bitte geben Sie den PIN Entsperrcode (PUK) für den Schlüssel zur " "Erstellung qualifizierter Signaturen ein." -#: scd/app-nks.c:1230 scd/app-openpgp.c:2910 scd/app-dinsig.c:532 +#: scd/app-nks.c:2295 scd/app-openpgp.c:2913 scd/app-dinsig.c:535 #, c-format msgid "error getting new PIN: %s\n" msgstr "Fehler beim Abfragen einer neuen PIN: %s\n" @@ -8282,7 +8290,7 @@ msgid "failed to store the creation date: %s\n" msgstr "Das Erzeugungsdatum konnte nicht gespeichert werden: %s\n" -#: scd/app-openpgp.c:1271 scd/app-openpgp.c:2857 scd/app-openpgp.c:5041 +#: scd/app-openpgp.c:1271 scd/app-openpgp.c:2860 scd/app-openpgp.c:5051 #, c-format msgid "error retrieving CHV status from card\n" msgstr "Fehler beim Holen des CHV-Status' von der Karte\n" @@ -8302,7 +8310,7 @@ msgid "response does not contain the EC public key\n" msgstr "Der EC Schlüssel fehlt in der Antwort\n" -#: scd/app-openpgp.c:1664 scd/app-openpgp.c:4286 +#: scd/app-openpgp.c:1664 scd/app-openpgp.c:4295 #, c-format msgid "response does not contain the public key data\n" msgstr "Die Antwort enthält keine öffentliche Schlüssel-Daten\n" @@ -8336,23 +8344,23 @@ msgid "||Please unlock the card" msgstr "||Bitte entsperren Sie die Karte" -#: scd/app-openpgp.c:2353 scd/app-openpgp.c:2538 scd/app-openpgp.c:2836 +#: scd/app-openpgp.c:2353 scd/app-openpgp.c:2540 scd/app-openpgp.c:2839 #, 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:2367 scd/app-openpgp.c:2414 scd/app-openpgp.c:2552 -#: scd/app-openpgp.c:4644 +#: scd/app-openpgp.c:2368 scd/app-openpgp.c:2415 scd/app-openpgp.c:2554 +#: scd/app-openpgp.c:4654 #, c-format msgid "verify CHV%d failed: %s\n" msgstr "Prüfung des CHV%d fehlgeschlagen: %s\n" -#: scd/app-openpgp.c:2450 scd/app-openpgp.c:5050 +#: scd/app-openpgp.c:2451 scd/app-openpgp.c:5060 #, c-format msgid "card is permanently locked!\n" msgstr "Karte ist dauerhaft gesperrt!\n" -#: scd/app-openpgp.c:2454 +#: scd/app-openpgp.c:2455 #, c-format msgid "%d Admin PIN attempt remaining before card is permanently locked\n" msgid_plural "" @@ -8360,20 +8368,20 @@ msgstr[0] "Noch %d Admin-PIN-Versuch, bis die Karte dauerhaft gesperrt ist\n" msgstr[1] "Noch %d Admin-PIN-Versuche, bis die Karte dauerhaft gesperrt ist\n" -#: scd/app-openpgp.c:2485 +#: scd/app-openpgp.c:2486 #, c-format msgid "access to admin commands is not configured\n" msgstr "Zugriff auf Admin-Befehle ist nicht eingerichtet\n" -#: scd/app-openpgp.c:2823 +#: scd/app-openpgp.c:2826 msgid "||Please enter the PIN" msgstr "||Bitte die PIN eingeben" -#: scd/app-openpgp.c:2872 +#: scd/app-openpgp.c:2875 msgid "||Please enter the Reset Code for the card" msgstr "Bitte geben Sie den Rückstellcode für diese Karte ein" -#: scd/app-openpgp.c:2882 scd/app-openpgp.c:2943 +#: scd/app-openpgp.c:2885 scd/app-openpgp.c:2946 #, c-format msgid "Reset Code is too short; minimum length is %d\n" msgstr "Der Rückstellcode ist zu kurz; die Mindestlänge beträgt %d\n" @@ -8381,114 +8389,114 @@ #. 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:2905 +#: scd/app-openpgp.c:2908 msgid "|RN|New Reset Code" msgstr "|RN|Neuer Rückstellcode" -#: scd/app-openpgp.c:2906 +#: scd/app-openpgp.c:2909 msgid "|AN|New Admin PIN" msgstr "|AN|Neue Admin-PIN" -#: scd/app-openpgp.c:2906 +#: scd/app-openpgp.c:2909 msgid "|N|New PIN" msgstr "|N|Neue PIN" -#: scd/app-openpgp.c:2987 +#: scd/app-openpgp.c:2996 msgid "||Please enter the Admin PIN and New Admin PIN" msgstr "|A|Bitte die Admin-PIN sowie die neue Admin-PIN eingeben." -#: scd/app-openpgp.c:2988 +#: scd/app-openpgp.c:2997 msgid "||Please enter the PIN and New PIN" msgstr "||Bitte die PIN sowie die neue PIN eingeben" -#: scd/app-openpgp.c:3050 scd/app-openpgp.c:4346 +#: scd/app-openpgp.c:3059 scd/app-openpgp.c:4355 #, c-format msgid "error reading application data\n" msgstr "Fehler beim Lesen der Anwendungsdaten\n" -#: scd/app-openpgp.c:3056 scd/app-openpgp.c:4353 +#: scd/app-openpgp.c:3065 scd/app-openpgp.c:4362 #, c-format msgid "error reading fingerprint DO\n" msgstr "Fehler beim Lesen des Fingerabdrucks DO\n" -#: scd/app-openpgp.c:3066 +#: scd/app-openpgp.c:3075 #, c-format msgid "key already exists\n" msgstr "Schlüssel existiert bereits\n" -#: scd/app-openpgp.c:3070 +#: scd/app-openpgp.c:3079 #, c-format msgid "existing key will be replaced\n" msgstr "Existierender Schlüssel wird ersetzt werden\n" -#: scd/app-openpgp.c:3072 +#: scd/app-openpgp.c:3081 #, c-format msgid "generating new key\n" msgstr "neue Schlüssel werden erzeugt\n" -#: scd/app-openpgp.c:3074 +#: scd/app-openpgp.c:3083 #, c-format msgid "writing new key\n" msgstr "der neue Schlüssel wird geschrieben\n" -#: scd/app-openpgp.c:3647 scd/app-openpgp.c:3999 +#: scd/app-openpgp.c:3656 scd/app-openpgp.c:4008 #, c-format msgid "creation timestamp missing\n" msgstr "Erzeugungsdatum fehlt\n" -#: scd/app-openpgp.c:3688 scd/app-openpgp.c:3696 +#: scd/app-openpgp.c:3697 scd/app-openpgp.c:3705 #, 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:3829 scd/app-openpgp.c:4106 +#: scd/app-openpgp.c:3838 scd/app-openpgp.c:4115 #, c-format msgid "failed to store the key: %s\n" msgstr "Speichern des Schlüssels fehlgeschlagen: %s\n" -#: scd/app-openpgp.c:3993 +#: scd/app-openpgp.c:4002 #, c-format msgid "unsupported curve\n" msgstr "Nicht unterstützte Kurve\n" -#: scd/app-openpgp.c:4263 +#: scd/app-openpgp.c:4272 #, c-format msgid "please wait while key is being generated ...\n" msgstr "Bitte warten, der Schlüssel wird erzeugt ...\n" -#: scd/app-openpgp.c:4271 +#: scd/app-openpgp.c:4280 #, c-format msgid "generating key failed\n" msgstr "Schlüsselerzeugung fehlgeschlagen\n" -#: scd/app-openpgp.c:4277 +#: scd/app-openpgp.c:4286 #, c-format msgid "key generation completed (%d second)\n" msgid_plural "key generation completed (%d seconds)\n" msgstr[0] "Schlüsselerzeugung abgeschlossen (%d Sekunde)\n" msgstr[1] "Schlüsselerzeugung abgeschlossen (%d Sekunden)\n" -#: scd/app-openpgp.c:4311 +#: scd/app-openpgp.c:4320 #, c-format msgid "invalid structure of OpenPGP card (DO 0x93)\n" msgstr "Ungültige Struktur der OpenPGP-Karte (DO 0x93)\n" -#: scd/app-openpgp.c:4361 +#: scd/app-openpgp.c:4370 #, c-format msgid "fingerprint on card does not match requested one\n" msgstr "Der Fingerabdruck auf der Karte entspricht nicht dem angeforderten.\n" -#: scd/app-openpgp.c:4560 +#: scd/app-openpgp.c:4569 #, 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:4618 +#: scd/app-openpgp.c:4627 #, c-format msgid "signatures created so far: %lu\n" msgstr "Anzahl bereits erzeugter Signaturen: %lu\n" -#: scd/app-openpgp.c:5055 +#: scd/app-openpgp.c:5065 #, c-format msgid "" "verification of Admin PIN is currently prohibited through this command\n" @@ -8496,19 +8504,19 @@ "Die Überprüfung der Admin PIN ist momentan durch einen Befehl verboten " "worden\n" -#: scd/app-openpgp.c:5386 scd/app-openpgp.c:5398 +#: scd/app-openpgp.c:5396 scd/app-openpgp.c:5408 #, c-format msgid "can't access %s - invalid OpenPGP card?\n" msgstr "Kann auf %s nicht zugreifen - ungültige OpenPGP-Karte?\n" -#: scd/app-dinsig.c:298 +#: scd/app-dinsig.c:299 msgid "||Please enter your PIN at the reader's pinpad" msgstr "||Bitte die PIN auf der Tastatur des Kartenlesers eingeben" #. 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-dinsig.c:529 +#: scd/app-dinsig.c:532 msgid "|N|Initial New PIN" msgstr "|N|Erstmalige neue PIN" @@ -8596,11 +8604,11 @@ msgid "validation model requested by certificate: %s" msgstr "Durch Zertifikat angefordertes Gültigkeitsmodell: %s" -#: sm/certchain.c:199 sm/certchain.c:2164 +#: sm/certchain.c:199 sm/certchain.c:2165 msgid "chain" msgstr "Kette" -#: sm/certchain.c:200 sm/certchain.c:2164 +#: sm/certchain.c:200 sm/certchain.c:2165 msgid "shell" msgstr "Schale" @@ -8623,245 +8631,245 @@ msgid "failed to open '%s': %s\n" msgstr "Datei `%s' kann nicht geöffnet werden: %s\n" -#: sm/certchain.c:355 sm/certchain.c:384 dirmngr/validate.c:204 +#: sm/certchain.c:355 sm/certchain.c:385 dirmngr/validate.c:204 #, c-format msgid "Note: non-critical certificate policy not allowed" msgstr "Hinweis: Die unkritische Zertifikatsrichtlinie ist nicht erlaubt" -#: sm/certchain.c:359 sm/certchain.c:388 dirmngr/validate.c:209 +#: sm/certchain.c:359 sm/certchain.c:389 dirmngr/validate.c:209 #, c-format msgid "certificate policy not allowed" msgstr "Die Zertifikatsrichtlinie ist nicht erlaubt" -#: sm/certchain.c:595 sm/keydb.c:1084 sm/keydb.c:1171 +#: sm/certchain.c:596 sm/keydb.c:1084 sm/keydb.c:1171 #, c-format msgid "failed to get the fingerprint\n" msgstr "Kann den Fingerprint nicht ermitteln\n" -#: sm/certchain.c:624 +#: sm/certchain.c:625 #, c-format msgid "looking up issuer at external location\n" msgstr "Der Herausgeber wird von einer externen Stelle gesucht\n" -#: sm/certchain.c:644 +#: sm/certchain.c:645 #, c-format msgid "number of issuers matching: %d\n" msgstr "Anzahl der übereinstimmenden Herausgeber: %d\n" -#: sm/certchain.c:723 dirmngr/ocsp.c:685 +#: sm/certchain.c:724 dirmngr/ocsp.c:685 #, c-format msgid "can't get authorityInfoAccess: %s\n" msgstr "authorityInfoAccess kann nicht geholt werden: %s\n" -#: sm/certchain.c:791 +#: sm/certchain.c:792 #, c-format msgid "looking up issuer from the Dirmngr cache\n" msgstr "Der Herausgeber wird im Cache des Dirmngr gesucht\n" -#: sm/certchain.c:816 +#: sm/certchain.c:817 #, c-format msgid "number of matching certificates: %d\n" msgstr "Anzahl der übereinstimmenden Zertifikate: %d\n" -#: sm/certchain.c:819 +#: sm/certchain.c:820 #, c-format msgid "dirmngr cache-only key lookup failed: %s\n" msgstr "Schlüsselsuche im Cache des Dirmngr schlug fehl: %s\n" -#: sm/certchain.c:1041 sm/certchain.c:1554 sm/certchain.c:2192 sm/decrypt.c:728 +#: sm/certchain.c:1042 sm/certchain.c:1555 sm/certchain.c:2193 sm/decrypt.c:728 #: sm/encrypt.c:345 sm/import.c:415 sm/keydb.c:1091 sm/keydb.c:1178 #: sm/sign.c:337 sm/verify.c:118 #, c-format msgid "failed to allocate keyDB handle\n" msgstr "Kann keinen KeyDB Handler bereitstellen\n" -#: sm/certchain.c:1225 +#: sm/certchain.c:1226 msgid "certificate has been revoked" msgstr "Das Zertifikat wurde widerrufen" -#: sm/certchain.c:1240 +#: sm/certchain.c:1241 msgid "the status of the certificate is unknown" msgstr "Der Status des Zertifikats ist nicht bekannt" -#: sm/certchain.c:1247 +#: sm/certchain.c:1248 #, c-format msgid "please make sure that the \"dirmngr\" is properly installed\n" msgstr "" "Bitte vergewissern Sie sich, daß der \"dirmngr\" richtig installiert ist\n" -#: sm/certchain.c:1253 +#: sm/certchain.c:1254 #, c-format msgid "checking the CRL failed: %s" msgstr "Die CRL konnte nicht geprüft werden: %s" -#: sm/certchain.c:1282 sm/certchain.c:1350 dirmngr/validate.c:497 +#: sm/certchain.c:1283 sm/certchain.c:1351 dirmngr/validate.c:497 #, c-format msgid "certificate with invalid validity: %s" msgstr "Zertifikat mit unzulässiger Gültigkeit: %s" -#: sm/certchain.c:1297 sm/certchain.c:1382 dirmngr/validate.c:515 +#: sm/certchain.c:1298 sm/certchain.c:1383 dirmngr/validate.c:515 #, c-format msgid "certificate not yet valid" msgstr "Das Zertifikat ist noch nicht gültig" -#: sm/certchain.c:1298 sm/certchain.c:1383 +#: sm/certchain.c:1299 sm/certchain.c:1384 msgid "root certificate not yet valid" msgstr "Das Wurzelzertifikat ist noch nicht gültig" -#: sm/certchain.c:1299 sm/certchain.c:1384 +#: sm/certchain.c:1300 sm/certchain.c:1385 msgid "intermediate certificate not yet valid" msgstr "Das Zwischenzertifikat ist noch nicht gültig" -#: sm/certchain.c:1312 dirmngr/validate.c:526 +#: sm/certchain.c:1313 dirmngr/validate.c:526 #, c-format msgid "certificate has expired" msgstr "Das Zertifikat ist abgelaufen" -#: sm/certchain.c:1313 +#: sm/certchain.c:1314 msgid "root certificate has expired" msgstr "Das Wurzelzertifikat ist abgelaufen" -#: sm/certchain.c:1314 +#: sm/certchain.c:1315 msgid "intermediate certificate has expired" msgstr "Das Zwischenzertifikat ist abgelaufen" -#: sm/certchain.c:1356 +#: sm/certchain.c:1357 #, c-format msgid "required certificate attributes missing: %s%s%s" msgstr "Notwendige Zertifikatattribute fehlen: %s%s%s" -#: sm/certchain.c:1365 +#: sm/certchain.c:1366 msgid "certificate with invalid validity" msgstr "Zertifikat mit unzulässiger Gültigkeit" -#: sm/certchain.c:1402 +#: sm/certchain.c:1403 msgid "signature not created during lifetime of certificate" msgstr "Die Signatur wurde nicht in der Gültigkeitszeit des Zertifikat erzeugt" -#: sm/certchain.c:1404 +#: sm/certchain.c:1405 msgid "certificate not created during lifetime of issuer" msgstr "" "Das Zertifikat wurde nicht während der Gültigkeitszeit des Herausgebers " "erzeugt" -#: sm/certchain.c:1405 +#: sm/certchain.c:1406 msgid "intermediate certificate not created during lifetime of issuer" msgstr "" "Das Zwischenzertifikat wurde nicht während der Gültigkeitszeit des " "Herausgebers erzeugt" -#: sm/certchain.c:1409 +#: sm/certchain.c:1410 #, c-format msgid " ( signature created at " msgstr " ( Signatur erzeugt am " -#: sm/certchain.c:1410 +#: sm/certchain.c:1411 #, c-format msgid " (certificate created at " msgstr " ( Zertifikat erzeugt am " -#: sm/certchain.c:1413 +#: sm/certchain.c:1414 #, c-format msgid " (certificate valid from " msgstr " ( Zertifikat gültig von " -#: sm/certchain.c:1414 +#: sm/certchain.c:1415 #, c-format msgid " ( issuer valid from " msgstr " ( Herausgeber gültig von " -#: sm/certchain.c:1444 dirmngr/validate.c:577 +#: sm/certchain.c:1445 dirmngr/validate.c:577 #, c-format msgid "fingerprint=%s\n" msgstr "Fingerprint=%s\n" -#: sm/certchain.c:1453 +#: sm/certchain.c:1454 #, c-format msgid "root certificate has now been marked as trusted\n" msgstr "Das Wurzelzertifikat wurde nun als vertrauenswürdig markiert\n" -#: sm/certchain.c:1466 +#: sm/certchain.c:1467 #, c-format msgid "interactive marking as trusted not enabled in gpg-agent\n" msgstr "" "Interaktives vertrauenswürdig-Markieren ist in gpg-agent ausgeschaltet\n" -#: sm/certchain.c:1472 +#: sm/certchain.c:1473 #, c-format msgid "interactive marking as trusted disabled for this session\n" msgstr "" "Interaktives vertrauenswürdig-Markieren ist in dieser Sitzung ausgeschaltet\n" -#: sm/certchain.c:1531 +#: sm/certchain.c:1532 msgid "WARNING: creation time of signature not known - assuming current time" msgstr "" "WARNUNG: Der Erzeugungszeitpunkt der Signatur ist nicht bekannt - Nehme die " "aktuelle Zeit an" -#: sm/certchain.c:1595 +#: sm/certchain.c:1596 msgid "no issuer found in certificate" msgstr "Im Zertifikat ist kein Herausgeber enthalten" -#: sm/certchain.c:1673 +#: sm/certchain.c:1674 msgid "self-signed certificate has a BAD signature" msgstr "Das eigenbeglaubigte Zertifikat hat eine FALSCHE Signatur" -#: sm/certchain.c:1742 dirmngr/validate.c:575 +#: sm/certchain.c:1743 dirmngr/validate.c:575 #, c-format msgid "root certificate is not marked trusted" msgstr "Das Wurzelzertifikat ist nicht als vertrauenswürdig markiert" -#: sm/certchain.c:1758 +#: sm/certchain.c:1759 #, c-format msgid "checking the trust list failed: %s\n" msgstr "Fehler beim Prüfen der vertrauenswürdigen Zertifikate: %s\n" -#: sm/certchain.c:1789 sm/import.c:176 sm/keylist.c:1396 dirmngr/validate.c:630 +#: sm/certchain.c:1790 sm/import.c:176 sm/keylist.c:1396 dirmngr/validate.c:630 #, c-format msgid "certificate chain too long\n" msgstr "Der Zertifikatkette ist zu lang\n" -#: sm/certchain.c:1801 dirmngr/validate.c:642 +#: sm/certchain.c:1802 dirmngr/validate.c:642 #, c-format msgid "issuer certificate not found" msgstr "Herausgeberzertifikat nicht gefunden" -#: sm/certchain.c:1834 dirmngr/validate.c:668 +#: sm/certchain.c:1835 dirmngr/validate.c:668 #, c-format msgid "certificate has a BAD signature" msgstr "Das Zertifikat hat eine FALSCHE Signatur" -#: sm/certchain.c:1866 dirmngr/validate.c:692 +#: sm/certchain.c:1867 dirmngr/validate.c:692 msgid "found another possible matching CA certificate - trying again" msgstr "" "Eine anderes möglicherweise passendes CA-Zertifikat gefunden - versuche " "nochmal" -#: sm/certchain.c:1925 dirmngr/validate.c:717 +#: sm/certchain.c:1926 dirmngr/validate.c:717 #, c-format msgid "certificate chain longer than allowed by CA (%d)" msgstr "Die Zertifikatkette ist länger als von der CA erlaubt (%d)" -#: sm/certchain.c:1967 sm/certchain.c:2263 dirmngr/validate.c:747 +#: sm/certchain.c:1968 sm/certchain.c:2264 dirmngr/validate.c:747 #, c-format msgid "certificate is good\n" msgstr "Das Zertifikat ist korrekt\n" -#: sm/certchain.c:1968 +#: sm/certchain.c:1969 #, c-format msgid "intermediate certificate is good\n" msgstr "Das Zwischenzertifikat ist korrekt\n" -#: sm/certchain.c:1969 +#: sm/certchain.c:1970 #, c-format msgid "root certificate is good\n" msgstr "Das Wurzelzertifikat ist korrekt\n" -#: sm/certchain.c:2151 +#: sm/certchain.c:2152 msgid "switching to chain model" msgstr "Umgeschaltet auf das Kettenmodell" -#: sm/certchain.c:2160 +#: sm/certchain.c:2161 #, c-format msgid "validation model used: %s" msgstr "Benutztes Gültigkeitsmodell: %s" @@ -11480,10 +11488,9 @@ #~ msgid " using certificate ID 0x%08lX\n" #~ msgstr " mittels Zertifikat ID 0x%08lX\n" -#, fuzzy #~ msgid "" #~ "keyserver option \"honor-keyserver-url\" may not be used in Tor mode\n" -#~ msgstr "Die Schlüsselserveroption \"%s\" ist im %s-Modus nicht erlaubt.\n" +#~ msgstr "Die Schlüsselserveroption \"%s\" ist im Tor-Modus nicht erlaubt.\n" #~ msgid "male" #~ msgstr "männlich" @@ -11500,53 +11507,6 @@ #~ msgid "only SHA-1 is supported for OCSP responses\n" #~ msgstr "Lediglich SHA-1 wird bei OCSP Antworten unterstützt\n" -#, fuzzy -#~| msgid "error creating temporary file: %s\n" -#~ msgid "error creating 'ultimately_trusted_keys' TOFU table: %s\n" -#~ msgstr "Fehler beim Erstellen einer temporären Datei: %s\n" - -#, fuzzy -#~| msgid "error creating temporary file: %s\n" -#~ msgid "error creating 'encryptions' TOFU table: %s\n" -#~ msgstr "Fehler beim Erstellen einer temporären Datei: %s\n" - -#, fuzzy -#~| msgid "error writing key: %s\n" -#~ msgid "resetting keydb: %s\n" -#~ msgstr "Fehler beim Schreiben des Schlüssels: %s\n" - -#, fuzzy -#~| msgid "" -#~| "Verified %ld message signed by \"%s\"\n" -#~| "in the past %s." -#~| msgid_plural "" -#~| "Verified %ld messages signed by \"%s\"\n" -#~| "in the past %s." -#~ msgid "%s: Verified %ld~signature in the past %s." -#~ msgid_plural "%s: Verified %ld~signatures in the past %s." -#~ msgstr[0] "" -#~ "%ld überprüfte Nachricht von \"%s\"\n" -#~ "in den letzten %s." -#~ msgstr[1] "" -#~ "%ld überprüfte Nachrichten von \"%s\"\n" -#~ "in den letzten %s." - -#, fuzzy -#~| msgid "" -#~| "Verified %ld message signed by \"%s\"\n" -#~| "in the past %s." -#~| msgid_plural "" -#~| "Verified %ld messages signed by \"%s\"\n" -#~| "in the past %s." -#~ msgid "Encrypted %ld~message in the past %s." -#~ msgid_plural "Encrypted %ld~messages in the past %s." -#~ msgstr[0] "" -#~ "%ld überprüfte Nachricht von \"%s\"\n" -#~ "in den letzten %s." -#~ msgstr[1] "" -#~ "%ld überprüfte Nachrichten von \"%s\"\n" -#~ "in den letzten %s." - #~ msgid "no keyserver known (use option --keyserver)\n" #~ msgstr "Kein Schlüsselserver bekannt (Option --keyserver verwenden)\n" diff -Nru gnupg2-2.2.40/po/el.po gnupg2-2.2.41/po/el.po --- gnupg2-2.2.40/po/el.po 2022-10-10 09:58:25.000000000 +0000 +++ gnupg2-2.2.41/po/el.po 2022-12-09 08:48:34.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: gnupg-1.1.92\n" "Report-Msgid-Bugs-To: translations@gnupg.org\n" -"POT-Creation-Date: 2022-10-10 11:58+0200\n" +"POT-Creation-Date: 2022-12-09 09:48+0100\n" "PO-Revision-Date: 2017-09-14 21:14+0300\n" "Last-Translator: Dimitris Maroulidis \n" "Language-Team: team@gnome.gr\n" @@ -226,8 +226,8 @@ msgid "ssh keys greater than %d bits are not supported\n" msgstr "δεν υποστηρίζεται ο αλγόριθμος προστασίας %d%s\n" -#: agent/command-ssh.c:862 common/dotlock.c:856 g10/card-util.c:947 -#: g10/exec.c:554 g10/export.c:1320 g10/gpg.c:1400 g10/keygen.c:4998 +#: agent/command-ssh.c:862 common/dotlock.c:856 g10/card-util.c:946 +#: g10/exec.c:554 g10/export.c:1335 g10/gpg.c:1409 g10/keygen.c:5052 #: g10/keyring.c:1322 g10/keyring.c:1637 g10/openfile.c:291 g10/sign.c:1008 #: g10/sign.c:1322 g10/tdbio.c:753 #, fuzzy, c-format @@ -235,12 +235,12 @@ msgid "can't create '%s': %s\n" msgstr "αδυναμία δημιουργίας του `%s': %s\n" -#: agent/command-ssh.c:874 common/helpfile.c:57 g10/card-util.c:904 +#: agent/command-ssh.c:874 common/helpfile.c:57 g10/card-util.c:903 #: g10/dearmor.c:59 g10/dearmor.c:106 g10/decrypt.c:65 g10/decrypt.c:136 -#: g10/decrypt.c:153 g10/encrypt.c:239 g10/encrypt.c:678 g10/gpg.c:1401 -#: g10/import.c:364 g10/import.c:548 g10/import.c:776 g10/keygen.c:4036 +#: g10/decrypt.c:153 g10/encrypt.c:239 g10/encrypt.c:678 g10/gpg.c:1410 +#: g10/import.c:365 g10/import.c:549 g10/import.c:777 g10/keygen.c:4090 #: g10/keyring.c:1663 g10/openfile.c:195 g10/openfile.c:209 g10/plaintext.c:128 -#: g10/plaintext.c:649 g10/sign.c:990 g10/sign.c:1201 g10/sign.c:1306 +#: g10/plaintext.c:654 g10/sign.c:990 g10/sign.c:1201 g10/sign.c:1306 #: g10/sign.c:1451 g10/tdbdump.c:145 g10/tdbdump.c:153 g10/tdbio.c:758 #: g10/tdbio.c:829 g10/verify.c:96 g10/verify.c:160 sm/gpgsm.c:2160 #: sm/gpgsm.c:2190 sm/gpgsm.c:2228 sm/qualified.c:66 dirmngr/certcache.c:420 @@ -467,34 +467,34 @@ msgid "csh-style command output" msgstr "" -#: agent/gpg-agent.c:185 g10/gpg.c:579 scd/scdaemon.c:126 sm/gpgsm.c:410 +#: agent/gpg-agent.c:185 g10/gpg.c:580 scd/scdaemon.c:126 sm/gpgsm.c:410 #: dirmngr/dirmngr.c:192 #, fuzzy msgid "|FILE|read options from FILE" msgstr "|ΑΡΧΕΙΟ|φόρτωμα του αρθρώματος επέκτασης ΑΡΧΕΙΟ" -#: agent/gpg-agent.c:189 g10/gpg.c:566 scd/scdaemon.c:130 sm/gpgsm.c:259 +#: agent/gpg-agent.c:189 g10/gpg.c:567 scd/scdaemon.c:130 sm/gpgsm.c:259 #: dirmngr/dirmngr.c:196 msgid "Options controlling the diagnostic output" msgstr "" -#: agent/gpg-agent.c:191 g10/gpg.c:568 g10/gpgv.c:78 kbx/kbxutil.c:88 +#: agent/gpg-agent.c:191 g10/gpg.c:569 g10/gpgv.c:78 kbx/kbxutil.c:88 #: scd/scdaemon.c:132 sm/gpgsm.c:261 dirmngr/dirmngr-client.c:70 #: dirmngr/dirmngr.c:198 tools/gpg-connect-agent.c:78 tools/gpgconf.c:110 msgid "verbose" msgstr "αναλυτικά" -#: agent/gpg-agent.c:192 g10/gpg.c:570 g10/gpgv.c:79 kbx/kbxutil.c:89 +#: agent/gpg-agent.c:192 g10/gpg.c:571 g10/gpgv.c:79 kbx/kbxutil.c:89 #: scd/scdaemon.c:133 sm/gpgsm.c:263 dirmngr/dirmngr-client.c:71 #: dirmngr/dirmngr.c:199 msgid "be somewhat more quiet" msgstr "ήσυχη έξοδος" -#: agent/gpg-agent.c:200 g10/gpg.c:583 sm/gpgsm.c:276 dirmngr/dirmngr.c:209 +#: agent/gpg-agent.c:200 g10/gpg.c:584 sm/gpgsm.c:276 dirmngr/dirmngr.c:209 msgid "|FILE|write server mode logs to FILE" msgstr "" -#: agent/gpg-agent.c:204 g10/gpg.c:589 scd/scdaemon.c:147 sm/gpgsm.c:283 +#: agent/gpg-agent.c:204 g10/gpg.c:590 scd/scdaemon.c:147 sm/gpgsm.c:283 #: dirmngr/dirmngr.c:213 msgid "Options controlling the configuration" msgstr "" @@ -538,7 +538,7 @@ msgid "enable putty support" msgstr "δεν υποστηρίζεται" -#: agent/gpg-agent.c:237 g10/gpg.c:831 scd/scdaemon.c:175 sm/gpgsm.c:369 +#: agent/gpg-agent.c:237 g10/gpg.c:832 scd/scdaemon.c:175 sm/gpgsm.c:369 msgid "Options controlling the security" msgstr "" @@ -640,7 +640,7 @@ #. reporting address. This is so that we can change the #. reporting address without breaking the translations. #: agent/gpg-agent.c:563 agent/preset-passphrase.c:100 agent/protect-tool.c:155 -#: g10/gpg.c:1108 g10/gpgv.c:149 kbx/kbxutil.c:113 scd/scdaemon.c:313 +#: g10/gpg.c:1117 g10/gpgv.c:149 kbx/kbxutil.c:113 scd/scdaemon.c:313 #: sm/gpgsm.c:600 dirmngr/dirmngr-client.c:168 dirmngr/dirmngr.c:458 #: tools/gpg-connect-agent.c:205 tools/gpgconf.c:154 #: tools/gpg-check-pattern.c:143 @@ -659,27 +659,27 @@ "Secret key management for @GNUPG@\n" msgstr "" -#: agent/gpg-agent.c:619 g10/gpg.c:1304 scd/scdaemon.c:385 sm/gpgsm.c:748 +#: agent/gpg-agent.c:619 g10/gpg.c:1313 scd/scdaemon.c:385 sm/gpgsm.c:748 #: dirmngr/dirmngr.c:542 #, c-format msgid "invalid debug-level '%s' given\n" msgstr "" -#: agent/gpg-agent.c:988 g10/gpg.c:3810 g10/gpg.c:3834 sm/gpgsm.c:1585 +#: agent/gpg-agent.c:988 g10/gpg.c:3830 g10/gpg.c:3854 sm/gpgsm.c:1585 #: sm/gpgsm.c:1591 #, c-format msgid "selected digest algorithm is invalid\n" msgstr "ο επιλεγμένος αλγόριθμος περίληψης δεν είναι έγκυρος\n" #: agent/gpg-agent.c:1216 agent/gpg-agent.c:2029 common/argparse.c:1766 -#: common/argparse.c:1858 g10/gpg.c:2517 scd/scdaemon.c:547 sm/gpgsm.c:1007 +#: common/argparse.c:1858 g10/gpg.c:2526 scd/scdaemon.c:547 sm/gpgsm.c:1007 #: dirmngr/dirmngr.c:1081 dirmngr/dirmngr.c:1937 #, fuzzy, c-format #| msgid "reading options from `%s'\n" msgid "reading options from '%s'\n" msgstr "ανάγνωση επιλογών από `%s'\n" -#: agent/gpg-agent.c:1332 g10/gpg.c:3751 scd/scdaemon.c:671 sm/gpgsm.c:1522 +#: agent/gpg-agent.c:1332 g10/gpg.c:3769 scd/scdaemon.c:671 sm/gpgsm.c:1522 #: dirmngr/dirmngr.c:1190 tools/gpg-connect-agent.c:1244 tools/gpgconf.c:677 #, fuzzy, c-format #| msgid "WARNING: \"%s\" is a deprecated option\n" @@ -812,7 +812,7 @@ "Password cache maintenance\n" msgstr "" -#: agent/protect-tool.c:108 g10/gpg.c:441 kbx/kbxutil.c:71 sm/gpgsm.c:210 +#: agent/protect-tool.c:108 g10/gpg.c:442 kbx/kbxutil.c:71 sm/gpgsm.c:210 #: dirmngr/dirmngr.c:171 tools/gpgconf.c:80 msgid "" "@Commands:\n" @@ -1032,7 +1032,7 @@ msgid "secret key parts are not available\n" msgstr "τμήματα του μυστικού κλειδιού δεν είναι διαθέσιμα\n" -#: agent/cvt-openpgp.c:344 g10/card-util.c:1556 +#: agent/cvt-openpgp.c:344 g10/card-util.c:1555 #, fuzzy, c-format #| msgid "protection algorithm %d%s is not supported\n" msgid "public key algorithm %d (%s) is not supported\n" @@ -1192,7 +1192,7 @@ msgid "out of core while allocating %lu bytes" msgstr "" -#: common/miscellaneous.c:115 g10/card-util.c:911 tools/no-libgcrypt.c:30 +#: common/miscellaneous.c:115 g10/card-util.c:910 tools/no-libgcrypt.c:30 #, fuzzy, c-format msgid "error allocating enough memory: %s\n" msgstr "αδυναμία δημιουργίας της κλειδοθήκης `%s': %s\n" @@ -1315,7 +1315,7 @@ msgstr "θωράκιση: %s\n" #: common/audit.c:774 common/audit.c:776 common/audit.c:921 common/audit.c:923 -#: scd/app-openpgp.c:3557 +#: scd/app-openpgp.c:3566 #, fuzzy, c-format msgid "unsupported algorithm: %s" msgstr "" @@ -1399,12 +1399,12 @@ msgid "Root certificate trustworthy" msgstr "κακό πιστοποιητικό" -#: common/audit.c:1112 sm/certchain.c:1235 +#: common/audit.c:1112 sm/certchain.c:1236 #, fuzzy msgid "no CRL found for certificate" msgstr "κακό πιστοποιητικό" -#: common/audit.c:1115 sm/certchain.c:1245 +#: common/audit.c:1115 sm/certchain.c:1246 #, fuzzy msgid "the available CRL is too old" msgstr "Κλειδί διαθέσιμο στο: " @@ -1547,7 +1547,7 @@ msgid "missing argument for option \"%.50s\"\n" msgstr "" -#: common/argparse.c:558 g10/gpg.c:3525 +#: common/argparse.c:558 g10/gpg.c:3543 #, fuzzy, c-format msgid "invalid argument for option \"%.50s\"\n" msgstr "μη έγκυρες επιλογές ειγαγωγής\n" @@ -1648,92 +1648,92 @@ msgid "%s is too old (need %s, have %s)\n" msgstr "" -#: g10/armor.c:423 +#: g10/armor.c:424 #, c-format msgid "armor: %s\n" msgstr "θωράκιση: %s\n" -#: g10/armor.c:462 +#: g10/armor.c:463 #, c-format msgid "invalid armor header: " msgstr "μη έγκυρη επικεφαλίδα θωράκισης: " -#: g10/armor.c:473 +#: g10/armor.c:474 #, c-format msgid "armor header: " msgstr "επικεφαλίδα θωράκισης: " -#: g10/armor.c:486 +#: g10/armor.c:487 #, c-format msgid "invalid clearsig header\n" msgstr "μη έγκυρη επικεφαλίδα clearsig\n" -#: g10/armor.c:499 +#: g10/armor.c:500 #, fuzzy, c-format msgid "unknown armor header: " msgstr "επικεφαλίδα θωράκισης: " -#: g10/armor.c:552 +#: g10/armor.c:553 #, c-format msgid "nested clear text signatures\n" msgstr "φωλιασμένες μη κρυπτογραφημένες υπογραφές\n" -#: g10/armor.c:687 +#: g10/armor.c:688 #, fuzzy, c-format msgid "unexpected armor: " msgstr "μη αναμενόμενη θωράκιση:" -#: g10/armor.c:700 +#: g10/armor.c:701 #, c-format msgid "invalid dash escaped line: " msgstr "μη έγκυρη dash escaped γραμμή: " -#: g10/armor.c:872 g10/armor.c:1492 +#: g10/armor.c:873 g10/armor.c:1493 #, fuzzy, c-format msgid "invalid radix64 character %02X skipped\n" msgstr "μη έγκυρος radix64 χαρακτήρας %02x παράβλεψη\n" -#: g10/armor.c:915 +#: g10/armor.c:916 #, c-format msgid "premature eof (no CRC)\n" msgstr "πρόωρο τέλος αρχείου (απουσία CRC)\n" -#: g10/armor.c:949 +#: g10/armor.c:950 #, c-format msgid "premature eof (in CRC)\n" msgstr "πρόωρο τέλος αρχείου (εντός CRC)\n" -#: g10/armor.c:957 +#: g10/armor.c:958 #, c-format msgid "malformed CRC\n" msgstr "λάθος μορφή CRC\n" -#: g10/armor.c:961 g10/armor.c:1529 +#: g10/armor.c:962 g10/armor.c:1530 #, fuzzy, c-format msgid "CRC error; %06lX - %06lX\n" msgstr "σφάλμα CRC: %06lx - %06lx\n" -#: g10/armor.c:981 +#: g10/armor.c:982 #, fuzzy, c-format msgid "premature eof (in trailer)\n" msgstr "πρόωρο τέλος αρχείου (στο Τrailer)\n" -#: g10/armor.c:985 +#: g10/armor.c:986 #, c-format msgid "error in trailer line\n" msgstr "σφάλμα στη γραμμή trailer\n" -#: g10/armor.c:1305 +#: g10/armor.c:1306 #, c-format msgid "no valid OpenPGP data found.\n" msgstr "δε βρέθηκαν έγκυρα OpenPGP δεδομένα.\n" -#: g10/armor.c:1310 +#: g10/armor.c:1311 #, c-format msgid "invalid armor: line longer than %d characters\n" msgstr "μη έγκυρη θωράκιση: η γραμμή είναι πάνω από %d χαρακτήρες\n" -#: g10/armor.c:1314 +#: g10/armor.c:1315 #, c-format msgid "" "quoted printable character in armor - probably a buggy MTA has been used\n" @@ -1883,24 +1883,24 @@ msgid "server uses an invalid certificate" msgstr "δημιουργία ενός πιστοποιητικού ανάκλησης" -#: g10/call-dirmngr.c:462 g10/gpg.c:4458 +#: g10/call-dirmngr.c:462 g10/gpg.c:4478 #, fuzzy, c-format #| msgid "armor: %s\n" msgid "Note: %s\n" msgstr "θωράκιση: %s\n" -#: g10/card-util.c:86 g10/card-util.c:366 g10/card-util.c:1918 +#: g10/card-util.c:86 g10/card-util.c:366 g10/card-util.c:1917 #, fuzzy, c-format msgid "OpenPGP card not available: %s\n" msgstr "το μυστικό κλειδί δεν είναι διαθέσιμο" -#: g10/card-util.c:91 g10/card-util.c:1924 +#: g10/card-util.c:91 g10/card-util.c:1923 #, c-format msgid "OpenPGP card no. %s detected\n" msgstr "" -#: g10/card-util.c:97 g10/card-util.c:2253 g10/delkey.c:160 g10/keyedit.c:1423 -#: g10/keygen.c:4466 g10/revoke.c:214 g10/revoke.c:636 +#: g10/card-util.c:97 g10/card-util.c:2252 g10/delkey.c:160 g10/keyedit.c:1423 +#: g10/keygen.c:4520 g10/revoke.c:214 g10/revoke.c:636 #, fuzzy, c-format msgid "can't do this in batch mode\n" msgstr "δεν μπορεί να γίνει αυτό σε κατάσταση δέσμης (batchmode)\n" @@ -1910,14 +1910,14 @@ msgid "This command is only available for version 2 cards\n" msgstr "Αυτή η εντολή απαγορεύετε σε αυτή την κατάσταση %s.\n" -#: g10/card-util.c:107 scd/app-openpgp.c:2866 +#: g10/card-util.c:107 scd/app-openpgp.c:2869 #, fuzzy, c-format msgid "Reset Code not or not anymore available\n" msgstr "τμήματα του μυστικού κλειδιού δεν είναι διαθέσιμα\n" -#: g10/card-util.c:140 g10/card-util.c:1442 g10/card-util.c:1704 -#: g10/card-util.c:1796 g10/keyedit.c:394 g10/keyedit.c:415 g10/keyedit.c:429 -#: g10/keygen.c:1808 g10/keygen.c:1980 g10/keygen.c:2186 g10/keygen.c:2477 +#: g10/card-util.c:140 g10/card-util.c:1441 g10/card-util.c:1703 +#: g10/card-util.c:1795 g10/keyedit.c:394 g10/keyedit.c:415 g10/keyedit.c:429 +#: g10/keygen.c:1862 g10/keygen.c:2034 g10/keygen.c:2240 g10/keygen.c:2531 #: sm/certreqgen-ui.c:165 sm/certreqgen-ui.c:291 sm/certreqgen-ui.c:325 msgid "Your selection? " msgstr "Η επιλογή σας; " @@ -1968,13 +1968,13 @@ msgid "Error: Combined name too long (limit is %d characters).\n" msgstr "" -#: g10/card-util.c:826 +#: g10/card-util.c:825 #, fuzzy msgid "URL to retrieve public key: " msgstr "κανένα αντίστιχο δημόσιο κλειδί: %s\n" -#: g10/card-util.c:920 g10/decrypt-data.c:509 g10/import.c:399 g10/import.c:746 -#: g10/import.c:798 dirmngr/crlcache.c:655 dirmngr/crlcache.c:660 +#: g10/card-util.c:919 g10/decrypt-data.c:509 g10/import.c:400 g10/import.c:747 +#: g10/import.c:799 dirmngr/crlcache.c:655 dirmngr/crlcache.c:660 #: dirmngr/crlcache.c:914 dirmngr/crlcache.c:920 dirmngr/dirmngr.c:1748 #: tools/gpgconf.c:483 tools/gpgconf.c:529 #, fuzzy, c-format @@ -1982,174 +1982,174 @@ msgid "error reading '%s': %s\n" msgstr "σφάλμα κατά την ανάγνωση του `%s': %s\n" -#: g10/card-util.c:953 g10/decrypt-data.c:512 g10/export.c:2467 +#: g10/card-util.c:952 g10/decrypt-data.c:512 g10/export.c:2586 #: dirmngr/crlcache.c:925 #, fuzzy, c-format msgid "error writing '%s': %s\n" msgstr "αδυναμία εγγραφής της κλειδοθήκης `%s': %s\n" -#: g10/card-util.c:980 +#: g10/card-util.c:979 msgid "Login data (account name): " msgstr "" -#: g10/card-util.c:1018 +#: g10/card-util.c:1017 msgid "Private DO data: " msgstr "" -#: g10/card-util.c:1103 +#: g10/card-util.c:1102 #, fuzzy msgid "Language preferences: " msgstr "αναωεωμένες επιλογές" -#: g10/card-util.c:1111 +#: g10/card-util.c:1110 #, fuzzy msgid "Error: invalid length of preference string.\n" msgstr "μη έγκυρος χαρακτήρας στο \"κορδόνι\" της επιλογής\n" -#: g10/card-util.c:1120 +#: g10/card-util.c:1119 #, fuzzy msgid "Error: invalid characters in preference string.\n" msgstr "μη έγκυρος χαρακτήρας στο \"κορδόνι\" της επιλογής\n" -#: g10/card-util.c:1142 +#: g10/card-util.c:1141 msgid "Salutation (M = Mr., F = Ms., or space): " msgstr "" -#: g10/card-util.c:1156 +#: g10/card-util.c:1155 #, fuzzy msgid "Error: invalid response.\n" msgstr "σφάλμα: μη έγκυρο αποτύπωμα\n" -#: g10/card-util.c:1178 +#: g10/card-util.c:1177 #, fuzzy msgid "CA fingerprint: " msgstr "απεικόνιση του fingerprint" -#: g10/card-util.c:1201 +#: g10/card-util.c:1200 #, fuzzy msgid "Error: invalid formatted fingerprint.\n" msgstr "σφάλμα: μη έγκυρο αποτύπωμα\n" -#: g10/card-util.c:1252 +#: g10/card-util.c:1251 #, fuzzy, c-format msgid "key operation not possible: %s\n" msgstr "Η δημιουργία κλειδιού απέτυχε: %s\n" -#: g10/card-util.c:1253 +#: g10/card-util.c:1252 #, fuzzy msgid "not an OpenPGP card" msgstr "δε βρέθηκαν έγκυρα OpenPGP δεδομένα.\n" -#: g10/card-util.c:1266 g10/keygen.c:4486 g10/keygen.c:5562 +#: g10/card-util.c:1265 g10/keygen.c:4540 g10/keygen.c:5616 #, fuzzy, c-format msgid "error getting current key info: %s\n" msgstr "αδυναμία εγγραφής μυστικής κλειδοθήκης `%s': %s\n" -#: g10/card-util.c:1351 +#: g10/card-util.c:1350 msgid "Replace existing key? (y/N) " msgstr "" -#: g10/card-util.c:1368 +#: g10/card-util.c:1367 msgid "" "Note: There is no guarantee that the card supports the requested size.\n" " If the key generation does not succeed, please check the\n" " documentation of your card to see what sizes are allowed.\n" msgstr "" -#: g10/card-util.c:1390 g10/keygen.c:2363 sm/certreqgen-ui.c:179 +#: g10/card-util.c:1389 g10/keygen.c:2417 sm/certreqgen-ui.c:179 #, fuzzy, c-format msgid "What keysize do you want? (%u) " msgstr "Τι μέγεθος κλειδιού θα θέλατε; (1024) " -#: g10/card-util.c:1400 g10/keygen.c:2286 g10/keygen.c:2318 +#: g10/card-util.c:1399 g10/keygen.c:2340 g10/keygen.c:2372 #: sm/certreqgen-ui.c:194 #, c-format msgid "rounded up to %u bits\n" msgstr "στρογγυλοποιήθηκε έως τα %u bits\n" -#: g10/card-util.c:1408 g10/keygen.c:2371 sm/certreqgen-ui.c:184 +#: g10/card-util.c:1407 g10/keygen.c:2425 sm/certreqgen-ui.c:184 #, c-format msgid "%s keysizes must be in the range %u-%u\n" msgstr "" -#: g10/card-util.c:1427 +#: g10/card-util.c:1426 msgid "Changing card key attribute for: " msgstr "" -#: g10/card-util.c:1429 +#: g10/card-util.c:1428 #, fuzzy msgid "Signature key\n" msgstr "Υπογραφή έληξε στις %s.\n" -#: g10/card-util.c:1431 +#: g10/card-util.c:1430 #, fuzzy msgid "Encryption key\n" msgstr " (%d) RSA (για κρυπτογράφηση μόνο)\n" -#: g10/card-util.c:1433 +#: g10/card-util.c:1432 msgid "Authentication key\n" msgstr "" -#: g10/card-util.c:1435 g10/keygen.c:1926 sm/certreqgen-ui.c:157 +#: g10/card-util.c:1434 g10/keygen.c:1980 sm/certreqgen-ui.c:157 msgid "Please select what kind of key you want:\n" msgstr "Παρακαλώ επιλέξτε τον τύπο του κλειδιού που θέλετε:\n" -#: g10/card-util.c:1436 sm/certreqgen-ui.c:158 +#: g10/card-util.c:1435 sm/certreqgen-ui.c:158 #, fuzzy, c-format msgid " (%d) RSA\n" msgstr " (%d) RSA (για υπογραφή μόνο)\n" -#: g10/card-util.c:1437 +#: g10/card-util.c:1436 #, fuzzy, c-format msgid " (%d) ECC\n" msgstr " (%d) DSA και ElGamal (προκαθορισμένο)\n" -#: g10/card-util.c:1449 g10/card-util.c:1716 g10/card-util.c:1816 -#: g10/keyedit.c:900 g10/keygen.c:1834 g10/keygen.c:1862 g10/keygen.c:1987 -#: g10/keygen.c:2222 g10/keygen.c:2505 g10/revoke.c:838 +#: g10/card-util.c:1448 g10/card-util.c:1715 g10/card-util.c:1815 +#: g10/keyedit.c:900 g10/keygen.c:1888 g10/keygen.c:1916 g10/keygen.c:2041 +#: g10/keygen.c:2276 g10/keygen.c:2559 g10/revoke.c:838 msgid "Invalid selection.\n" msgstr "Μη έγκυρη επιλογή.\n" -#: g10/card-util.c:1522 +#: g10/card-util.c:1521 #, c-format msgid "The card will now be re-configured to generate a key of %u bits\n" msgstr "" -#: g10/card-util.c:1527 +#: g10/card-util.c:1526 #, c-format msgid "The card will now be re-configured to generate a key of type: %s\n" msgstr "" -#: g10/card-util.c:1563 +#: g10/card-util.c:1562 #, fuzzy, c-format msgid "error changing key attribute for key %d: %s\n" msgstr "σφάλμα στη αποστολή προς το `%s': %s\n" -#: g10/card-util.c:1579 g10/card-util.c:2106 +#: g10/card-util.c:1578 g10/card-util.c:2105 #, fuzzy, c-format msgid "error getting card info: %s\n" msgstr "αδυναμία εγγραφής μυστικής κλειδοθήκης `%s': %s\n" -#: g10/card-util.c:1585 g10/card-util.c:1930 g10/card-util.c:2112 +#: g10/card-util.c:1584 g10/card-util.c:1929 g10/card-util.c:2111 #, fuzzy, c-format #| msgid "This command is not allowed while in %s mode.\n" msgid "This command is not supported by this card\n" msgstr "Αυτή η εντολή απαγορεύετε σε αυτή την κατάσταση %s.\n" -#: g10/card-util.c:1631 +#: g10/card-util.c:1630 msgid "Make off-card backup of encryption key? (Y/n) " msgstr "" -#: g10/card-util.c:1645 +#: g10/card-util.c:1644 #, fuzzy, c-format msgid "Note: keys are already stored on the card!\n" msgstr "παραλείφθηκε: μυστικό κλειδί ήδη παρών\n" -#: g10/card-util.c:1648 +#: g10/card-util.c:1647 msgid "Replace existing keys? (y/N) " msgstr "" -#: g10/card-util.c:1660 +#: g10/card-util.c:1659 #, c-format msgid "" "Please note that the factory settings of the PINs are\n" @@ -2157,160 +2157,160 @@ "You should change them using the command --change-pin\n" msgstr "" -#: g10/card-util.c:1695 +#: g10/card-util.c:1694 #, fuzzy msgid "Please select the type of key to generate:\n" msgstr "Παρακαλώ επιλέξτε τον τύπο του κλειδιού που θέλετε:\n" -#: g10/card-util.c:1697 g10/card-util.c:1787 +#: g10/card-util.c:1696 g10/card-util.c:1786 #, fuzzy msgid " (1) Signature key\n" msgstr "Υπογραφή έληξε στις %s.\n" -#: g10/card-util.c:1698 g10/card-util.c:1789 +#: g10/card-util.c:1697 g10/card-util.c:1788 #, fuzzy msgid " (2) Encryption key\n" msgstr " (%d) RSA (για κρυπτογράφηση μόνο)\n" -#: g10/card-util.c:1699 g10/card-util.c:1791 +#: g10/card-util.c:1698 g10/card-util.c:1790 msgid " (3) Authentication key\n" msgstr "" -#: g10/card-util.c:1784 +#: g10/card-util.c:1783 #, fuzzy msgid "Please select where to store the key:\n" msgstr "Παρακαλώ επιλέξτε την αιτία για την ανάκληση:\n" -#: g10/card-util.c:1830 +#: g10/card-util.c:1829 #, fuzzy, c-format msgid "KEYTOCARD failed: %s\n" msgstr "η ενημέρωση απέτυχε: %s\n" -#: g10/card-util.c:1935 +#: g10/card-util.c:1934 #, fuzzy, c-format msgid "Note: This command destroys all keys stored on the card!\n" msgstr "παραλείφθηκε: μυστικό κλειδί ήδη παρών\n" -#: g10/card-util.c:1938 +#: g10/card-util.c:1937 #, fuzzy msgid "Continue? (y/N) " msgstr "Σίγουρα να υπογραφεί; " -#: g10/card-util.c:1943 +#: g10/card-util.c:1942 msgid "Really do a factory reset? (enter \"yes\") " msgstr "" -#: g10/card-util.c:2129 +#: g10/card-util.c:2128 #, fuzzy, c-format msgid "error for setup KDF: %s\n" msgstr "σφάλμα κατά την ανάγνωση του `%s': %s\n" -#: g10/card-util.c:2158 g10/keyedit.c:1260 +#: g10/card-util.c:2157 g10/keyedit.c:1260 msgid "quit this menu" msgstr "τερματισμός αυτού του μενού" -#: g10/card-util.c:2160 +#: g10/card-util.c:2159 #, fuzzy msgid "show admin commands" msgstr "συγκρουόμενες εντολές\n" -#: g10/card-util.c:2161 g10/keyedit.c:1263 +#: g10/card-util.c:2160 g10/keyedit.c:1263 msgid "show this help" msgstr "απεικόνιση αυτής της βοήθειας" -#: g10/card-util.c:2163 +#: g10/card-util.c:2162 #, fuzzy msgid "list all available data" msgstr "Κλειδί διαθέσιμο στο: " -#: g10/card-util.c:2166 +#: g10/card-util.c:2165 msgid "change card holder's name" msgstr "" -#: g10/card-util.c:2167 +#: g10/card-util.c:2166 msgid "change URL to retrieve key" msgstr "" -#: g10/card-util.c:2168 +#: g10/card-util.c:2167 msgid "fetch the key specified in the card URL" msgstr "" -#: g10/card-util.c:2169 +#: g10/card-util.c:2168 #, fuzzy msgid "change the login name" msgstr "αλλαγή της ημερομηνίας λήξης" -#: g10/card-util.c:2170 +#: g10/card-util.c:2169 #, fuzzy msgid "change the language preferences" msgstr "αλλαγή της εμπιστοσύνης ιδιοκτήτη" -#: g10/card-util.c:2171 +#: g10/card-util.c:2170 msgid "change card holder's salutation" msgstr "" -#: g10/card-util.c:2173 +#: g10/card-util.c:2172 #, fuzzy msgid "change a CA fingerprint" msgstr "απεικόνιση του fingerprint" -#: g10/card-util.c:2174 +#: g10/card-util.c:2173 msgid "toggle the signature force PIN flag" msgstr "" -#: g10/card-util.c:2175 +#: g10/card-util.c:2174 #, fuzzy msgid "generate new keys" msgstr "δημιουργία ενός νέου ζεύγους κλειδιών" -#: g10/card-util.c:2176 +#: g10/card-util.c:2175 msgid "menu to change or unblock the PIN" msgstr "" -#: g10/card-util.c:2177 +#: g10/card-util.c:2176 msgid "verify the PIN and list all data" msgstr "" -#: g10/card-util.c:2178 +#: g10/card-util.c:2177 msgid "unblock the PIN using a Reset Code" msgstr "" -#: g10/card-util.c:2179 +#: g10/card-util.c:2178 msgid "destroy all keys and data" msgstr "" -#: g10/card-util.c:2180 +#: g10/card-util.c:2179 #, fuzzy #| msgid "|NAME|use NAME as default recipient" msgid "setup KDF for PIN authentication" msgstr "|ΟΝΟΜΑ|χρήση του ΟΝΟΜΑτος ως προκαθορισμένου παραλήπτη" -#: g10/card-util.c:2181 +#: g10/card-util.c:2180 #, fuzzy #| msgid "change the ownertrust" msgid "change the key attribute" msgstr "αλλαγή της εμπιστοσύνης ιδιοκτήτη" -#: g10/card-util.c:2305 +#: g10/card-util.c:2304 msgid "gpg/card> " msgstr "" -#: g10/card-util.c:2346 +#: g10/card-util.c:2345 #, fuzzy msgid "Admin-only command\n" msgstr "συγκρουόμενες εντολές\n" -#: g10/card-util.c:2377 +#: g10/card-util.c:2376 #, fuzzy msgid "Admin commands are allowed\n" msgstr "συγκρουόμενες εντολές\n" -#: g10/card-util.c:2379 +#: g10/card-util.c:2378 #, fuzzy msgid "Admin commands are not allowed\n" msgstr "εγγραφή του μυστικού κλειδιού στο `%s'\n" -#: g10/card-util.c:2482 g10/keyedit.c:2229 +#: g10/card-util.c:2481 g10/keyedit.c:2229 msgid "Invalid command (try \"help\")\n" msgstr "Μη έγκυρη εντολή (δοκιμάστε \"help\")\n" @@ -2319,22 +2319,22 @@ msgid "--output doesn't work for this command\n" msgstr "--output δεν λειτουργεί για αυτή την εντολή\n" -#: g10/decrypt.c:247 g10/gpg.c:5155 g10/keyring.c:399 g10/keyring.c:750 +#: g10/decrypt.c:247 g10/gpg.c:5175 g10/keyring.c:399 g10/keyring.c:750 #, fuzzy, c-format #| msgid "can't open `%s'\n" msgid "can't open '%s'\n" msgstr "αδυναμία πρόσβασης του `%s'\n" -#: g10/delkey.c:83 g10/export.c:1947 g10/export.c:2230 g10/export.c:2351 -#: g10/getkey.c:2108 g10/gpg.c:5100 g10/keyedit.c:1445 g10/keyedit.c:2335 +#: g10/delkey.c:83 g10/export.c:2035 g10/export.c:2349 g10/export.c:2470 +#: g10/getkey.c:2108 g10/gpg.c:5120 g10/keyedit.c:1445 g10/keyedit.c:2335 #: g10/keyedit.c:2637 g10/keyedit.c:4600 g10/keylist.c:693 g10/keyserver.c:1092 #: g10/revoke.c:230 g10/tofu.c:2165 #, fuzzy, c-format msgid "key \"%s\" not found: %s\n" msgstr "το κλειδί '%s' δε βρέθηκε: %s\n" -#: g10/delkey.c:92 g10/export.c:2015 g10/getkey.c:2116 g10/getkey.c:4517 -#: g10/gpg.c:5109 g10/keyedit.c:2308 g10/keyserver.c:1110 g10/revoke.c:236 +#: g10/delkey.c:92 g10/export.c:2103 g10/getkey.c:2116 g10/getkey.c:4517 +#: g10/gpg.c:5129 g10/keyedit.c:2308 g10/keyserver.c:1110 g10/revoke.c:236 #: g10/revoke.c:663 g10/tofu.c:2173 #, c-format msgid "error reading keyblock: %s\n" @@ -2459,13 +2459,13 @@ msgid "WARNING: '%s' is an empty file\n" msgstr "ΠΡΟΕΙΔΟΠΟΙΗΣΗ: `%s' είναι ένα άδειο αρχείο\n" -#: g10/encrypt.c:446 g10/encrypt.c:521 g10/decrypt-data.c:266 g10/gpg.c:3959 -#: g10/gpg.c:3999 sm/decrypt.c:826 sm/encrypt.c:416 sm/gpgsm.c:1609 +#: g10/encrypt.c:446 g10/encrypt.c:521 g10/decrypt-data.c:266 g10/gpg.c:3979 +#: g10/gpg.c:4019 sm/decrypt.c:826 sm/encrypt.c:416 sm/gpgsm.c:1609 #, fuzzy, c-format msgid "cipher algorithm '%s' may not be used in %s mode\n" msgstr "απαγορεύετε η χρήση του κρυπταλγόριθμου \"%s\" στην κατάσταση %s\n" -#: g10/encrypt.c:455 g10/gpg.c:3965 g10/gpg.c:4011 g10/sig-check.c:175 +#: g10/encrypt.c:455 g10/gpg.c:3985 g10/gpg.c:4031 g10/sig-check.c:175 #: g10/sign.c:391 sm/gpgsm.c:1619 sm/gpgsm.c:1629 sm/sign.c:478 sm/verify.c:506 #, fuzzy, c-format msgid "digest algorithm '%s' may not be used in %s mode\n" @@ -2587,7 +2587,7 @@ msgid "WARNING: unable to remove temp directory '%s': %s\n" msgstr "ΠΡΟΕΙΔΟΠΟΙΗΣΗ: αδυναμία διαγραφής προσωρινού φακέλου `%s': %s\n" -#: g10/export.c:119 +#: g10/export.c:124 #, fuzzy msgid "export signatures that are marked as local-only" msgstr "" @@ -2595,63 +2595,69 @@ "Η υπογραφή θα σημειωθεί σαν μη-ανακαλέσιμη.\n" "\n" -#: g10/export.c:121 +#: g10/export.c:126 msgid "export attribute user IDs (generally photo IDs)" msgstr "" -#: g10/export.c:123 +#: g10/export.c:128 #, fuzzy msgid "export revocation keys marked as \"sensitive\"" msgstr "δε βρέθηκαν κλειδιά ανάκλησης για το `%s'\n" -#: g10/export.c:125 +#: g10/export.c:130 #, fuzzy msgid "remove unusable parts from key during export" msgstr "μη χρησιμοποιήσιμο μυστικό κλειδί" -#: g10/export.c:127 +#: g10/export.c:132 msgid "remove as much as possible from key during export" msgstr "" -#: g10/export.c:133 +#: g10/export.c:138 +#, fuzzy +#| msgid "generate a revocation certificate" +msgid "export only revocation certificates" +msgstr "δημιουργία ενός πιστοποιητικού ανάκλησης" + +#: g10/export.c:141 msgid "use the GnuPG key backup format" msgstr "" -#: g10/export.c:1291 +#: g10/export.c:1306 #, fuzzy #| msgid "%s: skipped: %s\n" msgid " - skipped" msgstr "%s: παραλείφθηκε: %s\n" -#: g10/export.c:1324 g10/import.c:2085 g10/openfile.c:200 g10/openfile.c:294 +#: g10/export.c:1339 g10/import.c:2089 g10/openfile.c:200 g10/openfile.c:294 #: g10/sign.c:1012 g10/sign.c:1326 #, fuzzy, c-format #| msgid "writing to `%s'\n" msgid "writing to '%s'\n" msgstr "εγγραφή στο `%s'\n" -#: g10/export.c:1769 +#: g10/export.c:1784 #, fuzzy, c-format msgid "key %s: key material on-card - skipped\n" msgstr "" "κλειδί %08lX: η υπογραφή του υποκλειδιού σε λάθος σημείο - παραλείφθηκε\n" -#: g10/export.c:1964 +#: g10/export.c:2052 #, fuzzy, c-format msgid "exporting secret keys not allowed\n" msgstr "εγγραφή του μυστικού κλειδιού στο `%s'\n" -#: g10/export.c:2041 +#: g10/export.c:2129 #, fuzzy, c-format msgid "key %s: PGP 2.x style key - skipped\n" msgstr "κλειδί %08lX: κλειδί τύπου PGP 2.x - παραλείφθηκε\n" -#: g10/export.c:2135 +#: g10/export.c:2254 #, c-format msgid "WARNING: nothing exported\n" msgstr "ΠΡΟΕΙΔΟΠΟΙΗΣΗ: δεν έγινε καμμία εξαγωγή\n" -#: g10/export.c:2432 g10/plaintext.c:153 g10/plaintext.c:162 +#: g10/export.c:2551 g10/plaintext.c:153 g10/plaintext.c:162 #: g10/plaintext.c:168 g10/plaintext.c:191 #, fuzzy, c-format #| msgid "error creating `%s': %s\n" @@ -2721,297 +2727,297 @@ msgid "using subkey %s instead of primary key %s\n" msgstr "χρήση του δευτερεύοντος κλειδιού %08lX αντί του πρωτεύοντος %08lX\n" -#: g10/getkey.c:4446 g10/gpg.c:2137 +#: g10/getkey.c:4446 g10/gpg.c:2146 #, fuzzy, c-format msgid "valid values for option '%s':\n" msgstr "μη έγκυρες επιλογές ειγαγωγής\n" -#: g10/gpg.c:443 sm/gpgsm.c:212 +#: g10/gpg.c:444 sm/gpgsm.c:212 #, fuzzy msgid "make a signature" msgstr "δημιουργία μιας μη προσαρτημένης υπογραφής" -#: g10/gpg.c:444 +#: g10/gpg.c:445 #, fuzzy msgid "make a clear text signature" msgstr "|[αρχείο]|δημιουργία μιας μη κρυπτογραφημένης υπογραφής" -#: g10/gpg.c:446 sm/gpgsm.c:214 +#: g10/gpg.c:447 sm/gpgsm.c:214 msgid "make a detached signature" msgstr "δημιουργία μιας μη προσαρτημένης υπογραφής" -#: g10/gpg.c:447 sm/gpgsm.c:215 +#: g10/gpg.c:448 sm/gpgsm.c:215 msgid "encrypt data" msgstr "κρυπτογράφηση δεδομένων" -#: g10/gpg.c:449 +#: g10/gpg.c:450 msgid "encryption only with symmetric cipher" msgstr "κρυπτογράφηση με χρήση μόνο συμμετρικών αλγορίθμων" -#: g10/gpg.c:451 sm/gpgsm.c:217 +#: g10/gpg.c:452 sm/gpgsm.c:217 msgid "decrypt data (default)" msgstr "αποκρυπτογράφηση δεδομένων (προκαθορισμένο)" -#: g10/gpg.c:453 sm/gpgsm.c:218 +#: g10/gpg.c:454 sm/gpgsm.c:218 msgid "verify a signature" msgstr "επαλήθευση μιας υπογραφής" -#: g10/gpg.c:455 sm/gpgsm.c:219 +#: g10/gpg.c:456 sm/gpgsm.c:219 msgid "list keys" msgstr "απεικόνιση της λίστας κλειδιών" -#: g10/gpg.c:457 +#: g10/gpg.c:458 msgid "list keys and signatures" msgstr "απεικόνιση της λίστας κλειδιών και υπογραφών" -#: g10/gpg.c:460 +#: g10/gpg.c:461 #, fuzzy msgid "list and check key signatures" msgstr "έλεγχος υπογραφής κλειδιού" -#: g10/gpg.c:462 sm/gpgsm.c:224 +#: g10/gpg.c:463 sm/gpgsm.c:224 msgid "list keys and fingerprints" msgstr "απεικόνιση της λίστας κλειδιών και αποτυπωμάτων (fingerprints)" -#: g10/gpg.c:463 sm/gpgsm.c:222 +#: g10/gpg.c:464 sm/gpgsm.c:222 msgid "list secret keys" msgstr "απεικόνιση της λίστας μυστικών κλειδιών" -#: g10/gpg.c:465 sm/gpgsm.c:225 +#: g10/gpg.c:466 sm/gpgsm.c:225 msgid "generate a new key pair" msgstr "δημιουργία ενός νέου ζεύγους κλειδιών" -#: g10/gpg.c:468 +#: g10/gpg.c:469 #, fuzzy #| msgid "generate a new key pair" msgid "quickly generate a new key pair" msgstr "δημιουργία ενός νέου ζεύγους κλειδιών" -#: g10/gpg.c:471 +#: g10/gpg.c:472 #, fuzzy #| msgid "generate a new key pair" msgid "quickly add a new user-id" msgstr "δημιουργία ενός νέου ζεύγους κλειδιών" -#: g10/gpg.c:476 +#: g10/gpg.c:477 #, fuzzy #| msgid "generate a new key pair" msgid "quickly revoke a user-id" msgstr "δημιουργία ενός νέου ζεύγους κλειδιών" -#: g10/gpg.c:479 +#: g10/gpg.c:480 #, fuzzy #| msgid "generate a new key pair" msgid "quickly set a new expiration date" msgstr "δημιουργία ενός νέου ζεύγους κλειδιών" -#: g10/gpg.c:482 +#: g10/gpg.c:483 msgid "full featured key pair generation" msgstr "" -#: g10/gpg.c:485 +#: g10/gpg.c:486 msgid "generate a revocation certificate" msgstr "δημιουργία ενός πιστοποιητικού ανάκλησης" -#: g10/gpg.c:488 sm/gpgsm.c:228 +#: g10/gpg.c:489 sm/gpgsm.c:228 msgid "remove keys from the public keyring" msgstr "αφαίρεση των κλειδιών από τη δημόσια κλειδοθήκη" -#: g10/gpg.c:490 +#: g10/gpg.c:491 msgid "remove keys from the secret keyring" msgstr "αφαίρεση των κλειδιών από τη μυστική κλειδοθήκη" -#: g10/gpg.c:492 +#: g10/gpg.c:493 #, fuzzy #| msgid "sign a key" msgid "quickly sign a key" msgstr "υπογραφή ενός κλειδιού" -#: g10/gpg.c:494 +#: g10/gpg.c:495 #, fuzzy #| msgid "sign a key locally" msgid "quickly sign a key locally" msgstr "υπογραφή ενός κλειδιού τοπικά" -#: g10/gpg.c:496 +#: g10/gpg.c:497 #, fuzzy #| msgid "generate a new key pair" msgid "quickly revoke a key signature" msgstr "δημιουργία ενός νέου ζεύγους κλειδιών" -#: g10/gpg.c:497 +#: g10/gpg.c:498 msgid "sign a key" msgstr "υπογραφή ενός κλειδιού" -#: g10/gpg.c:498 +#: g10/gpg.c:499 msgid "sign a key locally" msgstr "υπογραφή ενός κλειδιού τοπικά" -#: g10/gpg.c:499 +#: g10/gpg.c:500 msgid "sign or edit a key" msgstr "υπογραφή ή επεξεργασία ενός κλειδιού" -#: g10/gpg.c:501 sm/gpgsm.c:246 +#: g10/gpg.c:502 sm/gpgsm.c:246 #, fuzzy msgid "change a passphrase" msgstr "αλλαγή της φράσης κλειδί" -#: g10/gpg.c:505 +#: g10/gpg.c:506 msgid "export keys" msgstr "εξαγωγή κλειδιών" -#: g10/gpg.c:506 +#: g10/gpg.c:507 msgid "export keys to a keyserver" msgstr "εξαγωγή κλειδιών σε ένα διακομιστή κλειδιών" -#: g10/gpg.c:507 +#: g10/gpg.c:508 msgid "import keys from a keyserver" msgstr "εισαγωγή κλειδιών από ένα διακομιστή κλειδιών" -#: g10/gpg.c:510 +#: g10/gpg.c:511 msgid "search for keys on a keyserver" msgstr "αναζήτηση κλειδιών σε ένα διακομιστή κλειδιών" -#: g10/gpg.c:512 +#: g10/gpg.c:513 msgid "update all keys from a keyserver" msgstr "ανανέωση όλων των κλειδιών από ένα διακομιστή κλειδιών" -#: g10/gpg.c:520 +#: g10/gpg.c:521 msgid "import/merge keys" msgstr "εισαγωγή/συγχώνευση κλειδιών" -#: g10/gpg.c:523 +#: g10/gpg.c:524 msgid "print the card status" msgstr "" -#: g10/gpg.c:524 +#: g10/gpg.c:525 msgid "change data on a card" msgstr "" -#: g10/gpg.c:526 +#: g10/gpg.c:527 msgid "change a card's PIN" msgstr "" -#: g10/gpg.c:538 +#: g10/gpg.c:539 msgid "update the trust database" msgstr "ανανέωση της βάσης δεδομένων εμπιστοσύνης" -#: g10/gpg.c:548 +#: g10/gpg.c:549 #, fuzzy msgid "print message digests" msgstr "|αλγόρ [αρχεία]| απεικόνιση περιλήψεων των μηνυμάτων" -#: g10/gpg.c:552 sm/gpgsm.c:241 +#: g10/gpg.c:553 sm/gpgsm.c:241 msgid "run in server mode" msgstr "" -#: g10/gpg.c:554 +#: g10/gpg.c:555 msgid "|VALUE|set the TOFU policy for a key" msgstr "" -#: g10/gpg.c:594 +#: g10/gpg.c:595 msgid "|NAME|use NAME as default secret key" msgstr "|ΟΝΟΜΑ|χρήση ΟΝΟΜΑτος σαν προκαθορισμένο μυστικό κλειδί" -#: g10/gpg.c:596 sm/gpgsm.c:332 +#: g10/gpg.c:597 sm/gpgsm.c:332 #, fuzzy msgid "|NAME|encrypt to user ID NAME as well" msgstr "|ΟΝΟΜΑ|κρυπτογράφηση για ΟΝΟΜΑ" -#: g10/gpg.c:604 +#: g10/gpg.c:605 msgid "|SPEC|set up email aliases" msgstr "" -#: g10/gpg.c:616 +#: g10/gpg.c:617 msgid "use strict OpenPGP behavior" msgstr "" -#: g10/gpg.c:641 kbx/kbxutil.c:90 sm/gpgsm.c:412 tools/gpgconf.c:112 +#: g10/gpg.c:642 kbx/kbxutil.c:90 sm/gpgsm.c:412 tools/gpgconf.c:112 msgid "do not make any changes" msgstr "να μη γίνει καμμία αλλαγή" -#: g10/gpg.c:642 +#: g10/gpg.c:643 msgid "prompt before overwriting" msgstr "ερώτηση πριν την επικάλυψη" -#: g10/gpg.c:689 sm/gpgsm.c:304 +#: g10/gpg.c:690 sm/gpgsm.c:304 msgid "Options controlling the input" msgstr "" -#: g10/gpg.c:707 sm/gpgsm.c:314 +#: g10/gpg.c:708 sm/gpgsm.c:314 msgid "Options controlling the output" msgstr "" -#: g10/gpg.c:709 sm/gpgsm.c:316 +#: g10/gpg.c:710 sm/gpgsm.c:316 msgid "create ascii armored output" msgstr "δημιουργία ascii θωρακισμένης εξόδου" -#: g10/gpg.c:713 g10/gpgv.c:82 sm/gpgsm.c:321 +#: g10/gpg.c:714 g10/gpgv.c:82 sm/gpgsm.c:321 #, fuzzy msgid "|FILE|write output to FILE" msgstr "|ΑΡΧΕΙΟ|φόρτωμα του αρθρώματος επέκτασης ΑΡΧΕΙΟ" -#: g10/gpg.c:726 +#: g10/gpg.c:727 msgid "use canonical text mode" msgstr "χρήση κανονικής κατάστασης κειμένου" -#: g10/gpg.c:743 +#: g10/gpg.c:744 #, fuzzy msgid "|N|set compress level to N (0 disables)" msgstr "|N|καθορισμός επιπέδου συμπίεσης N (0 απενεργοποιεί)" -#: g10/gpg.c:750 sm/gpgsm.c:347 +#: g10/gpg.c:751 sm/gpgsm.c:347 msgid "Options controlling key import and export" msgstr "" -#: g10/gpg.c:753 +#: g10/gpg.c:754 msgid "|MECHANISMS|use MECHANISMS to locate keys by mail address" msgstr "" -#: g10/gpg.c:756 +#: g10/gpg.c:757 #, fuzzy #| msgid "import keys from a keyserver" msgid "import missing key from a signature" msgstr "εισαγωγή κλειδιών από ένα διακομιστή κλειδιών" -#: g10/gpg.c:761 +#: g10/gpg.c:762 #, fuzzy msgid "include the public key in signatures" msgstr "έλεγχος υπογραφής κλειδιού" -#: g10/gpg.c:764 sm/gpgsm.c:350 +#: g10/gpg.c:765 sm/gpgsm.c:350 msgid "disable all access to the dirmngr" msgstr "" -#: g10/gpg.c:776 sm/gpgsm.c:357 +#: g10/gpg.c:777 sm/gpgsm.c:357 msgid "Options controlling key listings" msgstr "" -#: g10/gpg.c:805 sm/gpgsm.c:324 +#: g10/gpg.c:806 sm/gpgsm.c:324 #, fuzzy #| msgid "list secret keys" msgid "Options to specify keys" msgstr "απεικόνιση της λίστας μυστικών κλειδιών" -#: g10/gpg.c:807 sm/gpgsm.c:326 +#: g10/gpg.c:808 sm/gpgsm.c:326 #, fuzzy msgid "|USER-ID|encrypt for USER-ID" msgstr "|ΟΝΟΜΑ|κρυπτογράφηση για ΟΝΟΜΑ" -#: g10/gpg.c:815 sm/gpgsm.c:328 +#: g10/gpg.c:816 sm/gpgsm.c:328 #, fuzzy msgid "|USER-ID|use USER-ID to sign or decrypt" msgstr "χρήση αυτής της ταυτότητας (user id) για υπογραφή ή αποκρυπτογράφηση" -#: g10/gpg.c:866 sm/gpgsm.c:396 +#: g10/gpg.c:867 sm/gpgsm.c:396 msgid "Options for unattended use" msgstr "" -#: g10/gpg.c:885 sm/gpgsm.c:408 dirmngr/dirmngr.c:294 +#: g10/gpg.c:886 sm/gpgsm.c:408 dirmngr/dirmngr.c:294 msgid "Other options" msgstr "" -#: g10/gpg.c:953 sm/gpgsm.c:440 +#: g10/gpg.c:955 sm/gpgsm.c:440 msgid "" "@\n" "(See the man page for a complete listing of all commands and options)\n" @@ -3019,7 +3025,7 @@ "@\n" "(δείτε τη σελίδα man για μια πλήρη λίστα εντολών και επιλογών)\n" -#: g10/gpg.c:956 +#: g10/gpg.c:958 #, fuzzy #| msgid "" #| "@\n" @@ -3049,13 +3055,13 @@ " --list-keys [ονόματα] απεικόνιση κλειδιών\n" " --fingerprint [ονόματα] απεικόνιση αποτυπωμάτων (fingerprints)\n" -#: g10/gpg.c:1130 +#: g10/gpg.c:1139 #, fuzzy #| msgid "Usage: gpg [options] [files] (-h for help)" msgid "Usage: @GPG@ [options] [files] (-h for help)" msgstr "Χρήση: gpg [επιλογές] [αρχεία] (-h για βοήθεια)" -#: g10/gpg.c:1133 +#: g10/gpg.c:1142 #, fuzzy #| msgid "" #| "Syntax: gpg [options] [files]\n" @@ -3070,7 +3076,7 @@ "υπογραφή, έλεγχος, κρυπτογράφηση ή αποκρυπτογράφηση\n" "η προκαθορισμένη λειτουργία εξαρτάται από τα δεδομένα εισόδου\n" -#: g10/gpg.c:1144 sm/gpgsm.c:624 +#: g10/gpg.c:1153 sm/gpgsm.c:624 msgid "" "\n" "Supported algorithms:\n" @@ -3078,558 +3084,558 @@ "\n" "Υποστηριζόμενοι αλγόριθμοι:\n" -#: g10/gpg.c:1147 +#: g10/gpg.c:1156 msgid "Pubkey: " msgstr "ΔημοσΚλειδί:" -#: g10/gpg.c:1154 g10/keyedit.c:3338 +#: g10/gpg.c:1163 g10/keyedit.c:3338 msgid "Cipher: " msgstr "Κρυπταλγόριθμος: " -#: g10/gpg.c:1161 +#: g10/gpg.c:1170 msgid "Hash: " msgstr "Hash: " -#: g10/gpg.c:1168 g10/keyedit.c:3404 +#: g10/gpg.c:1177 g10/keyedit.c:3404 msgid "Compression: " msgstr "Συμπίεση: " -#: g10/gpg.c:1241 sm/gpgsm.c:698 +#: g10/gpg.c:1250 sm/gpgsm.c:698 #, fuzzy, c-format msgid "usage: %s [options] %s\n" msgstr "χρήση: gpg [επιλογές] " -#: g10/gpg.c:1436 sm/gpgsm.c:791 +#: g10/gpg.c:1445 sm/gpgsm.c:791 #, c-format msgid "conflicting commands\n" msgstr "συγκρουόμενες εντολές\n" -#: g10/gpg.c:1454 +#: g10/gpg.c:1463 #, fuzzy, c-format msgid "no = sign found in group definition '%s'\n" msgstr "δεν βρέθηκε το σύμβολο = στον ορισμό της ομάδας \"%s\"\n" -#: g10/gpg.c:1652 +#: g10/gpg.c:1661 #, fuzzy, c-format msgid "WARNING: unsafe ownership on homedir '%s'\n" msgstr "ΠΡΟΕΙΔΟΠΟΙΗΣΗ: μη ασφαλής ιδιοκτησία στο %s \"%s\"\n" -#: g10/gpg.c:1655 +#: g10/gpg.c:1664 #, fuzzy, c-format msgid "WARNING: unsafe ownership on configuration file '%s'\n" msgstr "ΠΡΟΕΙΔΟΠΟΙΗΣΗ: μη ασφαλής ιδιοκτησία στο %s \"%s\"\n" -#: g10/gpg.c:1658 +#: g10/gpg.c:1667 #, fuzzy, c-format msgid "WARNING: unsafe ownership on extension '%s'\n" msgstr "ΠΡΟΕΙΔΟΠΟΙΗΣΗ: μη ασφαλής ιδιοκτησία στο %s \"%s\"\n" -#: g10/gpg.c:1664 +#: g10/gpg.c:1673 #, fuzzy, c-format msgid "WARNING: unsafe permissions on homedir '%s'\n" msgstr "ΠΡΟΕΙΔΟΠΟΙΗΣΗ: μη ασφαλείς άδειες στο %s \"%s\"\n" -#: g10/gpg.c:1667 +#: g10/gpg.c:1676 #, fuzzy, c-format msgid "WARNING: unsafe permissions on configuration file '%s'\n" msgstr "ΠΡΟΕΙΔΟΠΟΙΗΣΗ: μη ασφαλείς άδειες στο %s \"%s\"\n" -#: g10/gpg.c:1670 +#: g10/gpg.c:1679 #, fuzzy, c-format msgid "WARNING: unsafe permissions on extension '%s'\n" msgstr "ΠΡΟΕΙΔΟΠΟΙΗΣΗ: μη ασφαλείς άδειες στο %s \"%s\"\n" -#: g10/gpg.c:1676 +#: g10/gpg.c:1685 #, fuzzy, c-format msgid "WARNING: unsafe enclosing directory ownership on homedir '%s'\n" msgstr "" "ΠΡΟΕΙΔΟΠΟΙΗΣΗ: μη ασφαλής ιδιοκτησίαεσώκλειστου φακέλου στο %s \"%s\"\n" -#: g10/gpg.c:1679 +#: g10/gpg.c:1688 #, fuzzy, c-format msgid "" "WARNING: unsafe enclosing directory ownership on configuration file '%s'\n" msgstr "" "ΠΡΟΕΙΔΟΠΟΙΗΣΗ: μη ασφαλής ιδιοκτησίαεσώκλειστου φακέλου στο %s \"%s\"\n" -#: g10/gpg.c:1682 +#: g10/gpg.c:1691 #, fuzzy, c-format msgid "WARNING: unsafe enclosing directory ownership on extension '%s'\n" msgstr "" "ΠΡΟΕΙΔΟΠΟΙΗΣΗ: μη ασφαλής ιδιοκτησίαεσώκλειστου φακέλου στο %s \"%s\"\n" -#: g10/gpg.c:1688 +#: g10/gpg.c:1697 #, fuzzy, c-format msgid "WARNING: unsafe enclosing directory permissions on homedir '%s'\n" msgstr "ΠΡΟΕΙΔΟΠΟΙΗΣΗ: μη ασφαλείς άδειες εσώκλειστου φακέλου στο %s \"%s\"\n" -#: g10/gpg.c:1691 +#: g10/gpg.c:1700 #, fuzzy, c-format msgid "" "WARNING: unsafe enclosing directory permissions on configuration file '%s'\n" msgstr "ΠΡΟΕΙΔΟΠΟΙΗΣΗ: μη ασφαλείς άδειες εσώκλειστου φακέλου στο %s \"%s\"\n" -#: g10/gpg.c:1694 +#: g10/gpg.c:1703 #, fuzzy, c-format msgid "WARNING: unsafe enclosing directory permissions on extension '%s'\n" msgstr "ΠΡΟΕΙΔΟΠΟΙΗΣΗ: μη ασφαλείς άδειες εσώκλειστου φακέλου στο %s \"%s\"\n" -#: g10/gpg.c:1910 +#: g10/gpg.c:1919 #, fuzzy, c-format msgid "unknown configuration item '%s'\n" msgstr "άγνωστο αντικείμενο ρυθμίσεως \"%s\"\n" -#: g10/gpg.c:2009 +#: g10/gpg.c:2018 msgid "display photo IDs during key listings" msgstr "" -#: g10/gpg.c:2011 +#: g10/gpg.c:2020 #, fuzzy msgid "show key usage information during key listings" msgstr "Δεν βρέθηκε αντίστοιχη υπογραφή στη μυστική κλειδοθήκη\n" -#: g10/gpg.c:2013 +#: g10/gpg.c:2022 msgid "show policy URLs during signature listings" msgstr "" -#: g10/gpg.c:2015 +#: g10/gpg.c:2024 #, fuzzy msgid "show all notations during signature listings" msgstr "Δεν βρέθηκε αντίστοιχη υπογραφή στη μυστική κλειδοθήκη\n" -#: g10/gpg.c:2017 +#: g10/gpg.c:2026 msgid "show IETF standard notations during signature listings" msgstr "" -#: g10/gpg.c:2021 +#: g10/gpg.c:2030 msgid "show user-supplied notations during signature listings" msgstr "" -#: g10/gpg.c:2023 +#: g10/gpg.c:2032 #, fuzzy msgid "show preferred keyserver URLs during signature listings" msgstr "το URL πολιτικής υπογραφής που δόθηκε δεν είναι έγκυρο\n" -#: g10/gpg.c:2025 +#: g10/gpg.c:2034 msgid "show user ID validity during key listings" msgstr "" -#: g10/gpg.c:2027 +#: g10/gpg.c:2036 msgid "show revoked and expired user IDs in key listings" msgstr "" -#: g10/gpg.c:2029 +#: g10/gpg.c:2038 msgid "show revoked and expired subkeys in key listings" msgstr "" -#: g10/gpg.c:2031 +#: g10/gpg.c:2040 #, fuzzy msgid "show the keyring name in key listings" msgstr "απεικόνιση της κλειδοθήκης στην οποία αναφέρετε το κλειδί" -#: g10/gpg.c:2033 +#: g10/gpg.c:2042 #, fuzzy msgid "show expiration dates during signature listings" msgstr "Δεν βρέθηκε αντίστοιχη υπογραφή στη μυστική κλειδοθήκη\n" -#: g10/gpg.c:2148 +#: g10/gpg.c:2157 #, fuzzy, c-format msgid "unknown TOFU policy '%s'\n" msgstr "άγνωστος προκαθορισμένος παραλήπτης `%s'\n" -#: g10/gpg.c:2150 +#: g10/gpg.c:2159 #, c-format msgid "(use \"help\" to list choices)\n" msgstr "" -#: g10/gpg.c:2240 g10/keyedit.c:1719 +#: g10/gpg.c:2249 g10/keyedit.c:1719 #, c-format msgid "This command is not allowed while in %s mode.\n" msgstr "Αυτή η εντολή απαγορεύετε σε αυτή την κατάσταση %s.\n" -#: g10/gpg.c:2878 g10/gpg.c:3718 g10/gpg.c:3730 +#: g10/gpg.c:2896 g10/gpg.c:3736 g10/gpg.c:3748 #, fuzzy, c-format #| msgid "NOTE: %s is not for normal use!\n" msgid "Note: %s is not for normal use!\n" msgstr "ΣΗΜΕΙΩΣΗ: το %s δεν είναι για κανονική χρήση!\n" -#: g10/gpg.c:3053 g10/gpg.c:3065 +#: g10/gpg.c:3071 g10/gpg.c:3083 #, fuzzy, c-format msgid "'%s' is not a valid signature expiration\n" msgstr "το %s δεν είναι έγκυρο σετ χαρακτήρων\n" -#: g10/gpg.c:3087 +#: g10/gpg.c:3105 #, fuzzy, c-format msgid "\"%s\" is not a proper mail address\n" msgstr "Μη έγκυρη διεύθυνση Email\n" -#: g10/gpg.c:3119 sm/gpgsm.c:1121 +#: g10/gpg.c:3137 sm/gpgsm.c:1121 #, fuzzy, c-format msgid "invalid pinentry mode '%s'\n" msgstr "μη έγκυρος αλγόριθμος hash `%s'\n" -#: g10/gpg.c:3125 sm/gpgsm.c:1127 +#: g10/gpg.c:3143 sm/gpgsm.c:1127 #, fuzzy, c-format msgid "invalid request origin '%s'\n" msgstr "μη έγκυρες επιλογές ειγαγωγής\n" -#: g10/gpg.c:3179 +#: g10/gpg.c:3197 #, fuzzy, c-format msgid "'%s' is not a valid character set\n" msgstr "το %s δεν είναι έγκυρο σετ χαρακτήρων\n" -#: g10/gpg.c:3201 g10/gpg.c:3415 g10/keyedit.c:5338 +#: g10/gpg.c:3219 g10/gpg.c:3433 g10/keyedit.c:5338 #, fuzzy, c-format msgid "could not parse keyserver URL\n" msgstr "αδυναμία επεξεργασίας του URI του διακομιση κλειδιών\n" -#: g10/gpg.c:3219 +#: g10/gpg.c:3237 #, fuzzy, c-format msgid "%s:%d: invalid keyserver options\n" msgstr "%s:%d: μη έγκυρες επιλογές εξαγωγής\n" -#: g10/gpg.c:3222 +#: g10/gpg.c:3240 #, fuzzy, c-format msgid "invalid keyserver options\n" msgstr "μη έγκυρες επιλογές εξαγωγής\n" -#: g10/gpg.c:3229 +#: g10/gpg.c:3247 #, c-format msgid "%s:%d: invalid import options\n" msgstr "%s:%d: μη έγκυρες επιλογές ειγαγωγής\n" -#: g10/gpg.c:3232 +#: g10/gpg.c:3250 #, c-format msgid "invalid import options\n" msgstr "μη έγκυρες επιλογές ειγαγωγής\n" -#: g10/gpg.c:3238 g10/gpg.c:3253 +#: g10/gpg.c:3256 g10/gpg.c:3271 #, fuzzy, c-format msgid "invalid filter option: %s\n" msgstr "μη έγκυρες επιλογές ειγαγωγής\n" -#: g10/gpg.c:3244 +#: g10/gpg.c:3262 #, c-format msgid "%s:%d: invalid export options\n" msgstr "%s:%d: μη έγκυρες επιλογές εξαγωγής\n" -#: g10/gpg.c:3247 +#: g10/gpg.c:3265 #, c-format msgid "invalid export options\n" msgstr "μη έγκυρες επιλογές εξαγωγής\n" -#: g10/gpg.c:3259 +#: g10/gpg.c:3277 #, fuzzy, c-format msgid "%s:%d: invalid list options\n" msgstr "%s:%d: μη έγκυρες επιλογές ειγαγωγής\n" -#: g10/gpg.c:3262 +#: g10/gpg.c:3280 #, fuzzy, c-format msgid "invalid list options\n" msgstr "μη έγκυρες επιλογές ειγαγωγής\n" -#: g10/gpg.c:3270 +#: g10/gpg.c:3288 msgid "display photo IDs during signature verification" msgstr "" -#: g10/gpg.c:3272 +#: g10/gpg.c:3290 msgid "show policy URLs during signature verification" msgstr "" -#: g10/gpg.c:3274 +#: g10/gpg.c:3292 #, fuzzy msgid "show all notations during signature verification" msgstr "το %s δεν είναι έγκυρο σετ χαρακτήρων\n" -#: g10/gpg.c:3276 +#: g10/gpg.c:3294 msgid "show IETF standard notations during signature verification" msgstr "" -#: g10/gpg.c:3280 +#: g10/gpg.c:3298 msgid "show user-supplied notations during signature verification" msgstr "" -#: g10/gpg.c:3282 +#: g10/gpg.c:3300 #, fuzzy msgid "show preferred keyserver URLs during signature verification" msgstr "το URL πολιτικής υπογραφής που δόθηκε δεν είναι έγκυρο\n" -#: g10/gpg.c:3284 +#: g10/gpg.c:3302 #, fuzzy msgid "show user ID validity during signature verification" msgstr "το %s δεν είναι έγκυρο σετ χαρακτήρων\n" -#: g10/gpg.c:3286 +#: g10/gpg.c:3304 msgid "show revoked and expired user IDs in signature verification" msgstr "" -#: g10/gpg.c:3288 +#: g10/gpg.c:3306 #, fuzzy msgid "show only the primary user ID in signature verification" msgstr "το %s δεν είναι έγκυρο σετ χαρακτήρων\n" -#: g10/gpg.c:3290 +#: g10/gpg.c:3308 msgid "validate signatures with PKA data" msgstr "" -#: g10/gpg.c:3292 +#: g10/gpg.c:3310 msgid "elevate the trust of signatures with valid PKA data" msgstr "" -#: g10/gpg.c:3299 +#: g10/gpg.c:3317 #, fuzzy, c-format msgid "%s:%d: invalid verify options\n" msgstr "%s:%d: μη έγκυρες επιλογές εξαγωγής\n" -#: g10/gpg.c:3302 +#: g10/gpg.c:3320 #, fuzzy, c-format msgid "invalid verify options\n" msgstr "μη έγκυρες επιλογές εξαγωγής\n" -#: g10/gpg.c:3309 +#: g10/gpg.c:3327 #, c-format msgid "unable to set exec-path to %s\n" msgstr "αδυναμία ορισμού του exec-path σε %s\n" -#: g10/gpg.c:3513 +#: g10/gpg.c:3531 #, fuzzy, c-format msgid "%s:%d: invalid auto-key-locate list\n" msgstr "%s:%d: μη έγκυρες επιλογές εξαγωγής\n" -#: g10/gpg.c:3516 +#: g10/gpg.c:3534 #, c-format msgid "invalid auto-key-locate list\n" msgstr "" -#: g10/gpg.c:3700 sm/gpgsm.c:1492 +#: g10/gpg.c:3718 sm/gpgsm.c:1492 #, c-format msgid "WARNING: program may create a core file!\n" msgstr "ΠΡΟΕΙΔΟΠΟΙΗΣΗ: το πρόγραμμα ίσως δημιουργήσει αρχείο core!\n" -#: g10/gpg.c:3711 +#: g10/gpg.c:3729 #, c-format msgid "WARNING: %s overrides %s\n" msgstr "ΠΡΟΕΙΔΟΠΟΙΗΣΗ: το %s παρακάμπτει το %s\n" -#: g10/gpg.c:3720 +#: g10/gpg.c:3738 #, c-format msgid "%s not allowed with %s!\n" msgstr "το %s δεν επιτρέπεται με το %s!\n" -#: g10/gpg.c:3723 +#: g10/gpg.c:3741 #, c-format msgid "%s makes no sense with %s!\n" msgstr "το %s δεν έχει καμμία έννοια μαζί με το %s!\n" -#: g10/gpg.c:3738 sm/gpgsm.c:1509 dirmngr/dirmngr.c:1205 +#: g10/gpg.c:3756 sm/gpgsm.c:1509 dirmngr/dirmngr.c:1205 #, c-format msgid "WARNING: running with faked system time: " msgstr "" -#: g10/gpg.c:3759 +#: g10/gpg.c:3777 #, fuzzy, c-format msgid "will not run with insecure memory due to %s\n" msgstr "εγγραφή του μυστικού κλειδιού στο `%s'\n" -#: g10/gpg.c:3804 g10/gpg.c:3828 sm/gpgsm.c:1579 +#: g10/gpg.c:3824 g10/gpg.c:3848 sm/gpgsm.c:1579 #, c-format msgid "selected cipher algorithm is invalid\n" msgstr "ο επιλεγμένος αλγόριθμος κρυπτογράφησης δεν είναι έγκυρος\n" -#: g10/gpg.c:3816 +#: g10/gpg.c:3836 #, fuzzy, c-format msgid "selected compression algorithm is invalid\n" msgstr "ο επιλεγμένος αλγόριθμος κρυπτογράφησης δεν είναι έγκυρος\n" -#: g10/gpg.c:3822 +#: g10/gpg.c:3842 #, c-format msgid "selected certification digest algorithm is invalid\n" msgstr "" "ο επιλεγμένος αλγόριθμος περίληψης για πιστοποίηση\n" "δεν είναι έγκυρος\n" -#: g10/gpg.c:3837 +#: g10/gpg.c:3857 #, c-format msgid "completes-needed must be greater than 0\n" msgstr "completes-needed πρέπει να είναι μεγαλύτερα από 0\n" -#: g10/gpg.c:3839 +#: g10/gpg.c:3859 #, c-format msgid "marginals-needed must be greater than 1\n" msgstr "marginals-needed πρέπει να είναι μεγαλύτερα από 1\n" -#: g10/gpg.c:3841 +#: g10/gpg.c:3861 #, fuzzy, c-format msgid "max-cert-depth must be in the range from 1 to 255\n" msgstr "max-cert-depth πρέπει να είναι μεταξύ 1 και 255\n" -#: g10/gpg.c:3843 +#: g10/gpg.c:3863 #, c-format 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:3845 +#: g10/gpg.c:3865 #, c-format msgid "invalid min-cert-level; must be 1, 2, or 3\n" msgstr "μη έγκυρο min-cert-level· πρέπει να είναι 0, 1, 2, ή 3\n" -#: g10/gpg.c:3849 +#: g10/gpg.c:3869 #, fuzzy, c-format #| msgid "NOTE: simple S2K mode (0) is strongly discouraged\n" msgid "Note: simple S2K mode (0) is strongly discouraged\n" msgstr "ΣΗΜΕΙΩΣΗ: η απλή S2K κατάσταση (0) πρέπει να αποφεύγεται\n" -#: g10/gpg.c:3853 +#: g10/gpg.c:3873 #, c-format msgid "invalid S2K mode; must be 0, 1 or 3\n" msgstr "μη έγκυρη κατάσταση S2K; πρέπει να είναι 0, 1 ή 3\n" -#: g10/gpg.c:3860 +#: g10/gpg.c:3880 #, c-format msgid "invalid default preferences\n" msgstr "μη έγκυρες προεπιλογές\n" -#: g10/gpg.c:3864 +#: g10/gpg.c:3884 #, c-format msgid "invalid personal cipher preferences\n" msgstr "μη έγκυρες προεπιλογές προσωπικού κρυπταλγόριθμου\n" -#: g10/gpg.c:3868 +#: g10/gpg.c:3888 #, c-format msgid "invalid personal digest preferences\n" msgstr "μη έγκυρες προεπιλογές προσωπικού αλγόριθμου περίληψης\n" -#: g10/gpg.c:3872 +#: g10/gpg.c:3892 #, c-format msgid "invalid personal compress preferences\n" msgstr "μη έγκυρες προεπιλογές προσωπικού αλγόριθμου συμπίεσης\n" -#: g10/gpg.c:3908 +#: g10/gpg.c:3928 #, c-format msgid "%s does not yet work with %s\n" msgstr "το %s ακόμα δε λειτουργεί μαζί με το %s\n" -#: g10/gpg.c:3971 +#: g10/gpg.c:3991 #, fuzzy, c-format msgid "compression algorithm '%s' may not be used in %s mode\n" msgstr "" "απαγορεύετε η χρήση του αλγόριθμου συμπίεσης \"%s\" στην κατάσταση %s\n" -#: g10/gpg.c:4115 +#: g10/gpg.c:4135 #, c-format msgid "failed to initialize the TrustDB: %s\n" msgstr "αποτυχία αρχικοποίησης της TrustDB: %s\n" -#: g10/gpg.c:4127 +#: g10/gpg.c:4147 #, c-format msgid "WARNING: recipients (-r) given without using public key encryption\n" msgstr "" "ΠΡΟΕΙΔΟΠΟΙΗΣΗ: δώθηκαν παραλήπτες (-r) χώρις χρήση κρυπτογράφησης\n" "δημοσίου κλειδιού\n" -#: g10/gpg.c:4199 +#: g10/gpg.c:4219 #, fuzzy, c-format msgid "symmetric encryption of '%s' failed: %s\n" msgstr "αποκρυπτογράφηση απέτυχε: %s\n" -#: g10/gpg.c:4228 +#: g10/gpg.c:4248 #, c-format msgid "you cannot use --symmetric --encrypt with --s2k-mode 0\n" msgstr "" -#: g10/gpg.c:4231 +#: g10/gpg.c:4251 #, fuzzy, c-format msgid "you cannot use --symmetric --encrypt in %s mode\n" msgstr "απαγορεύετε η χρήση του %s στην κατάσταση %s.\n" -#: g10/gpg.c:4289 +#: g10/gpg.c:4309 #, c-format msgid "you cannot use --symmetric --sign --encrypt with --s2k-mode 0\n" msgstr "" -#: g10/gpg.c:4292 +#: g10/gpg.c:4312 #, fuzzy, c-format msgid "you cannot use --symmetric --sign --encrypt in %s mode\n" msgstr "απαγορεύετε η χρήση του %s στην κατάσταση %s.\n" -#: g10/gpg.c:4692 g10/keyserver.c:1648 +#: g10/gpg.c:4712 g10/keyserver.c:1648 #, c-format msgid "keyserver send failed: %s\n" msgstr "keyserver αποστολή απέτυχε: %s\n" -#: g10/gpg.c:4697 +#: g10/gpg.c:4717 #, c-format msgid "keyserver receive failed: %s\n" msgstr "keyserver λήψη απέτυχε: %s\n" -#: g10/gpg.c:4703 +#: g10/gpg.c:4723 #, c-format msgid "key export failed: %s\n" msgstr "εξαγωγή κλειδιού απέτυχε: %s\n" -#: g10/gpg.c:4716 +#: g10/gpg.c:4736 #, fuzzy, c-format #| msgid "key export failed: %s\n" msgid "export as ssh key failed: %s\n" msgstr "εξαγωγή κλειδιού απέτυχε: %s\n" -#: g10/gpg.c:4728 +#: g10/gpg.c:4748 #, c-format msgid "keyserver search failed: %s\n" msgstr "keyserver αναζήτηση απέτυχε: %s\n" -#: g10/gpg.c:4741 +#: g10/gpg.c:4761 #, c-format msgid "keyserver refresh failed: %s\n" msgstr "keyserver ανανέωση απέτυχε: %s\n" -#: g10/gpg.c:4810 +#: g10/gpg.c:4830 #, c-format msgid "dearmoring failed: %s\n" msgstr "αποθωράκιση απέτυχε: %s\n" -#: g10/gpg.c:4821 +#: g10/gpg.c:4841 #, c-format msgid "enarmoring failed: %s\n" msgstr "θωράκιση απέτυχε: %s\n" -#: g10/gpg.c:4913 +#: g10/gpg.c:4933 #, fuzzy, c-format #| msgid "invalid hash algorithm `%s'\n" msgid "invalid hash algorithm '%s'\n" msgstr "μη έγκυρος αλγόριθμος hash `%s'\n" -#: g10/gpg.c:5065 g10/tofu.c:2153 +#: g10/gpg.c:5085 g10/tofu.c:2153 #, fuzzy, c-format msgid "error parsing key specification '%s': %s\n" msgstr "σφάλμα στη δημιουργία της φράσης κλειδί: %s\n" -#: g10/gpg.c:5078 +#: g10/gpg.c:5098 #, c-format msgid "'%s' does not appear to be a valid key ID, fingerprint or keygrip\n" msgstr "" -#: g10/gpg.c:5134 +#: g10/gpg.c:5154 #, c-format msgid "WARNING: no command supplied. Trying to guess what you mean ...\n" msgstr "" -#: g10/gpg.c:5145 +#: g10/gpg.c:5165 #, c-format msgid "Go ahead and type your message ...\n" msgstr "Μπορείτε τώρα να εισαγάγετε το μήνυμα σας ...\n" -#: g10/gpg.c:5490 +#: g10/gpg.c:5510 #, c-format msgid "the given certification policy URL is invalid\n" msgstr "το URL πολιτικής πιστοποιητικού που δόθηκε δεν είναι έγκυρο\n" -#: g10/gpg.c:5492 +#: g10/gpg.c:5512 #, c-format msgid "the given signature policy URL is invalid\n" msgstr "το URL πολιτικής υπογραφής που δόθηκε δεν είναι έγκυρο\n" -#: g10/gpg.c:5525 +#: g10/gpg.c:5545 #, fuzzy, c-format msgid "the given preferred keyserver URL is invalid\n" msgstr "το URL πολιτικής υπογραφής που δόθηκε δεν είναι έγκυρο\n" @@ -3674,319 +3680,319 @@ msgid "No help available for '%s'" msgstr "Δεν υπάρχει διαθέσιμη βοήθεια για `%s'" -#: g10/import.c:169 +#: g10/import.c:170 msgid "import signatures that are marked as local-only" msgstr "" -#: g10/import.c:172 +#: g10/import.c:173 msgid "repair damage from the pks keyserver during import" msgstr "" -#: g10/import.c:175 +#: g10/import.c:176 #, fuzzy msgid "do not clear the ownertrust values during import" msgstr "ανανέωση της βάσης δεδομένων εμπιστοσύνης" -#: g10/import.c:178 +#: g10/import.c:179 #, fuzzy msgid "do not update the trustdb after import" msgstr "ανανέωση της βάσης δεδομένων εμπιστοσύνης" -#: g10/import.c:181 +#: g10/import.c:182 #, fuzzy msgid "show key during import" msgstr "απεικόνιση του fingerprint" -#: g10/import.c:184 +#: g10/import.c:185 msgid "only accept updates to existing keys" msgstr "" -#: g10/import.c:187 +#: g10/import.c:188 #, fuzzy msgid "remove unusable parts from key after import" msgstr "μη χρησιμοποιήσιμο μυστικό κλειδί" -#: g10/import.c:190 +#: g10/import.c:191 msgid "remove as much as possible from key after import" msgstr "" -#: g10/import.c:193 +#: g10/import.c:194 msgid "ignore key-signatures which are not self-signatures" msgstr "" -#: g10/import.c:196 +#: g10/import.c:197 msgid "run import filters and export key immediately" msgstr "" -#: g10/import.c:199 +#: g10/import.c:200 msgid "assume the GnuPG key backup format" msgstr "" -#: g10/import.c:203 +#: g10/import.c:204 #, fuzzy msgid "repair keys on import" msgstr "απεικόνιση του fingerprint" -#: g10/import.c:392 g10/import.c:711 +#: g10/import.c:393 g10/import.c:712 #, c-format msgid "skipping block of type %d\n" msgstr "παράλειψη τμήματος του τύπου %d\n" -#: g10/import.c:728 +#: g10/import.c:729 #, fuzzy, c-format msgid "%lu keys processed so far\n" msgstr "%lu κλειδιά έχουν μέχρι τώρα επεξεργαστεί\n" -#: g10/import.c:814 +#: g10/import.c:815 #, c-format msgid "Total number processed: %lu\n" msgstr "Συνολικός αριθμός που επεξεργάστηκαν: %lu\n" -#: g10/import.c:817 +#: g10/import.c:818 #, fuzzy, c-format #| msgid " skipped new keys: %lu\n" msgid " skipped PGP-2 keys: %lu\n" msgstr " νέα κλειδιά που παραλείφθηκαν: %lu\n" -#: g10/import.c:819 +#: g10/import.c:820 #, c-format msgid " skipped new keys: %lu\n" msgstr " νέα κλειδιά που παραλείφθηκαν: %lu\n" -#: g10/import.c:822 +#: g10/import.c:823 #, c-format msgid " w/o user IDs: %lu\n" msgstr " χωρίς user ID: %lu\n" -#: g10/import.c:825 sm/import.c:130 +#: g10/import.c:826 sm/import.c:130 #, c-format msgid " imported: %lu" msgstr " εισαχθέντα: %lu" -#: g10/import.c:829 sm/import.c:134 +#: g10/import.c:830 sm/import.c:134 #, c-format msgid " unchanged: %lu\n" msgstr " αμετάβλητα: %lu\n" -#: g10/import.c:831 +#: g10/import.c:832 #, c-format msgid " new user IDs: %lu\n" msgstr " νέα user ID: %lu\n" -#: g10/import.c:833 +#: g10/import.c:834 #, c-format msgid " new subkeys: %lu\n" msgstr " νέα υποκλειδιά: %lu\n" -#: g10/import.c:835 +#: g10/import.c:836 #, c-format msgid " new signatures: %lu\n" msgstr " νέες υπογραφές: %lu\n" -#: g10/import.c:837 +#: g10/import.c:838 #, c-format msgid " new key revocations: %lu\n" msgstr " νέες ανακλήσεις κλειδιών: %lu\n" -#: g10/import.c:839 sm/import.c:136 +#: g10/import.c:840 sm/import.c:136 #, c-format msgid " secret keys read: %lu\n" msgstr " αναγνωσμένα μυστικά κλειδιά: %lu\n" -#: g10/import.c:841 sm/import.c:138 +#: g10/import.c:842 sm/import.c:138 #, c-format msgid " secret keys imported: %lu\n" msgstr " εισαχθέντα μυστικά κλειδιά: %lu\n" -#: g10/import.c:843 sm/import.c:140 +#: g10/import.c:844 sm/import.c:140 #, c-format msgid " secret keys unchanged: %lu\n" msgstr " αμετάβλητα μυστικά κλειδιά: %lu\n" -#: g10/import.c:845 sm/import.c:142 +#: g10/import.c:846 sm/import.c:142 #, c-format msgid " not imported: %lu\n" msgstr " μη εισαχθέντα: %lu\n" -#: g10/import.c:847 +#: g10/import.c:848 #, fuzzy, c-format msgid " signatures cleaned: %lu\n" msgstr " νέες υπογραφές: %lu\n" -#: g10/import.c:849 +#: g10/import.c:850 #, fuzzy, c-format msgid " user IDs cleaned: %lu\n" msgstr " αναγνωσμένα μυστικά κλειδιά: %lu\n" -#: g10/import.c:1276 +#: g10/import.c:1277 #, c-format msgid "" "WARNING: key %s contains preferences for unavailable\n" "algorithms on these user IDs:\n" msgstr "" -#: g10/import.c:1318 +#: g10/import.c:1319 #, c-format msgid " \"%s\": preference for cipher algorithm %s\n" msgstr "" -#: g10/import.c:1333 +#: g10/import.c:1334 #, fuzzy, c-format msgid " \"%s\": preference for digest algorithm %s\n" msgstr "%s υπογραφή, αλγόριθμος περίληψης %s\n" -#: g10/import.c:1345 +#: g10/import.c:1346 #, c-format msgid " \"%s\": preference for compression algorithm %s\n" msgstr "" -#: g10/import.c:1358 +#: g10/import.c:1359 #, c-format msgid "it is strongly suggested that you update your preferences and\n" msgstr "" -#: g10/import.c:1360 +#: g10/import.c:1361 #, c-format msgid "re-distribute this key to avoid potential algorithm mismatch problems\n" msgstr "" -#: g10/import.c:1385 +#: g10/import.c:1386 #, c-format msgid "you can update your preferences with: gpg --edit-key %s updpref save\n" msgstr "" -#: g10/import.c:1899 g10/import.c:3013 +#: g10/import.c:1902 g10/import.c:3028 #, fuzzy, c-format msgid "key %s: no user ID\n" msgstr "κλειδί %08lX: δεν υπάρχει αυτό το user ID\n" -#: g10/import.c:1905 +#: g10/import.c:1908 #, fuzzy, c-format msgid "key %s: %s\n" msgstr "παραλείφθηκε `%s': %s\n" -#: g10/import.c:1906 g10/import.c:2985 +#: g10/import.c:1909 g10/import.c:3000 msgid "rejected by import screener" msgstr "" -#: g10/import.c:1950 +#: g10/import.c:1953 #, fuzzy, c-format msgid "key %s: PKS subkey corruption repaired\n" msgstr "κλειδί %08lX: επιδιόρθωση φθαρμένου υποκλειδιού HKP\n" -#: g10/import.c:1971 +#: g10/import.c:1974 #, fuzzy, c-format msgid "key %s: accepted non self-signed user ID \"%s\"\n" msgstr "κλειδί %08lX: δεκτό μη ιδιο-υπογεγραμμένο user ID '%s'\n" -#: g10/import.c:1981 g10/import.c:2012 +#: g10/import.c:1985 g10/import.c:2016 #, fuzzy, c-format msgid "key %s: no valid user IDs\n" msgstr "κλειδί %08lX: δεν έχει έγκυρα user ID\n" -#: g10/import.c:1983 +#: g10/import.c:1987 #, c-format msgid "this may be caused by a missing self-signature\n" msgstr "αυτό μπορεί να συνέβει από μια απούσα ιδιοϋπογραφή\n" -#: g10/import.c:2062 g10/import.c:3399 +#: g10/import.c:2066 g10/import.c:3415 #, fuzzy, c-format msgid "key %s: public key not found: %s\n" msgstr "κλειδί %08lX: μυστικό κλειδί που δε βρέθηκε: %s\n" -#: g10/import.c:2068 +#: g10/import.c:2072 #, fuzzy, c-format msgid "key %s: new key - skipped\n" msgstr "κλειδί %08lX: νέο κλειδί - παραλείφθηκε\n" -#: g10/import.c:2080 +#: g10/import.c:2084 #, c-format msgid "no writable keyring found: %s\n" msgstr "δεν βρεθηκε εγγράψιμη κλειδοθήκη: %s\n" -#: g10/import.c:2112 g10/import.c:2214 g10/import.c:3476 +#: g10/import.c:2116 g10/import.c:2218 g10/import.c:3492 #, fuzzy, c-format #| msgid "error writing keyring `%s': %s\n" msgid "error writing keyring '%s': %s\n" msgstr "αδυναμία εγγραφής της κλειδοθήκης `%s': %s\n" -#: g10/import.c:2135 +#: g10/import.c:2139 #, fuzzy, c-format msgid "key %s: public key \"%s\" imported\n" msgstr "κλειδί %08lX: το δημόσιο κλειδί \"%s\" έχει εισαχθεί\n" -#: g10/import.c:2162 +#: g10/import.c:2166 #, fuzzy, c-format msgid "key %s: doesn't match our copy\n" msgstr "κλειδί %08lX: δεν ταιριάζει με το αντίγραφο μας\n" -#: g10/import.c:2230 +#: g10/import.c:2234 #, fuzzy, c-format msgid "key %s: \"%s\" 1 new user ID\n" msgstr "κλειδί %08lX: \"%s\" 1 νέο user ID\n" -#: g10/import.c:2233 +#: g10/import.c:2237 #, fuzzy, c-format msgid "key %s: \"%s\" %d new user IDs\n" msgstr "κλειδί %08lX: \"%s\" %d νέα user ID\n" -#: g10/import.c:2236 +#: g10/import.c:2240 #, fuzzy, c-format msgid "key %s: \"%s\" 1 new signature\n" msgstr "κλειδί %08lX: \"%s\" 1 νέα υπογραφή\n" -#: g10/import.c:2239 +#: g10/import.c:2243 #, fuzzy, c-format msgid "key %s: \"%s\" %d new signatures\n" msgstr "κλειδί %08lX: \"%s\" %d νέες υπογραφές\n" -#: g10/import.c:2242 +#: g10/import.c:2246 #, fuzzy, c-format msgid "key %s: \"%s\" 1 new subkey\n" msgstr "κλειδί %08lX: \"%s\" 1 νέο υποκλειδί\n" -#: g10/import.c:2245 +#: g10/import.c:2249 #, fuzzy, c-format msgid "key %s: \"%s\" %d new subkeys\n" msgstr "κλειδί %08lX: \"%s\" %d νέα υποκλειδιά\n" -#: g10/import.c:2248 +#: g10/import.c:2252 #, fuzzy, c-format msgid "key %s: \"%s\" %d signature cleaned\n" msgstr "κλειδί %08lX: \"%s\" %d νέες υπογραφές\n" -#: g10/import.c:2251 +#: g10/import.c:2255 #, fuzzy, c-format msgid "key %s: \"%s\" %d signatures cleaned\n" msgstr "κλειδί %08lX: \"%s\" %d νέες υπογραφές\n" -#: g10/import.c:2254 +#: g10/import.c:2258 #, fuzzy, c-format msgid "key %s: \"%s\" %d user ID cleaned\n" msgstr "κλειδί %08lX: \"%s\" %d νέα user ID\n" -#: g10/import.c:2257 +#: g10/import.c:2261 #, fuzzy, c-format msgid "key %s: \"%s\" %d user IDs cleaned\n" msgstr "κλειδί %08lX: \"%s\" %d νέα user ID\n" -#: g10/import.c:2293 +#: g10/import.c:2297 #, fuzzy, c-format msgid "key %s: \"%s\" not changed\n" msgstr "κλειδί %08lX: \"%s\" αμετάβλητο\n" -#: g10/import.c:2652 g10/import.c:2847 +#: g10/import.c:2667 g10/import.c:2862 #, fuzzy, c-format msgid "key %s: secret key imported\n" msgstr "κλειδί %08lX: μυστικό κλειδί εισήχθηκε\n" -#: g10/import.c:2660 +#: g10/import.c:2675 #, fuzzy, c-format #| msgid "skipped: secret key already present\n" msgid "key %s: secret key already exists\n" msgstr "παραλείφθηκε: μυστικό κλειδί ήδη παρών\n" -#: g10/import.c:2668 +#: g10/import.c:2683 #, fuzzy, c-format msgid "key %s: error sending to agent: %s\n" msgstr "σφάλμα στη αποστολή προς το `%s': %s\n" @@ -3999,202 +4005,202 @@ #. * Instead, user should be suggested to run 'gpg --card-status', #. * then, references to a card will be automatically created #. * again. -#: g10/import.c:2837 +#: g10/import.c:2852 #, c-format msgid "To migrate '%s', with each smartcard, run: %s\n" msgstr "" -#: g10/import.c:2984 +#: g10/import.c:2999 #, fuzzy, c-format msgid "secret key %s: %s\n" msgstr "το μυστικό κλειδί `%s' δε βρέθηκε: %s\n" -#: g10/import.c:3005 g10/import.c:3044 +#: g10/import.c:3020 g10/import.c:3059 #, fuzzy, c-format msgid "importing secret keys not allowed\n" msgstr "εγγραφή του μυστικού κλειδιού στο `%s'\n" -#: g10/import.c:3032 +#: g10/import.c:3047 #, fuzzy, c-format msgid "key %s: secret key with invalid cipher %d - skipped\n" msgstr "κλειδί %08lX: μυστικό κλειδί με άκυρο κρυπταλγ. %d - παραλείφθηκε\n" -#: g10/import.c:3194 g10/pkclist.c:72 g10/revoke.c:776 +#: g10/import.c:3209 g10/pkclist.c:72 g10/revoke.c:776 msgid "No reason specified" msgstr "Δεν έχει οριστεί αιτία" -#: g10/import.c:3195 g10/pkclist.c:74 g10/revoke.c:778 +#: g10/import.c:3210 g10/pkclist.c:74 g10/revoke.c:778 msgid "Key is superseded" msgstr "Το κλειδί έχει παρακαμθεί" -#: g10/import.c:3196 g10/pkclist.c:76 g10/revoke.c:777 +#: g10/import.c:3211 g10/pkclist.c:76 g10/revoke.c:777 msgid "Key has been compromised" msgstr "Το κλειδί έχει εκτεθεί" -#: g10/import.c:3197 g10/pkclist.c:78 g10/revoke.c:779 +#: g10/import.c:3212 g10/pkclist.c:78 g10/revoke.c:779 msgid "Key is no longer used" msgstr "Το κλειδί δε χρησιμοποιείται πλέον" -#: g10/import.c:3198 g10/pkclist.c:80 g10/revoke.c:780 +#: g10/import.c:3213 g10/pkclist.c:80 g10/revoke.c:780 msgid "User ID is no longer valid" msgstr "Το User ID δεν είναι πλέον έγκυρο" -#: g10/import.c:3323 g10/keylist.c:1258 g10/pkclist.c:84 +#: g10/import.c:3338 g10/keylist.c:1258 g10/pkclist.c:84 #, c-format msgid "reason for revocation: " msgstr "αιτία για ανάκληση:" -#: g10/import.c:3342 g10/keylist.c:1277 g10/pkclist.c:100 +#: g10/import.c:3357 g10/keylist.c:1277 g10/pkclist.c:100 #, c-format msgid "revocation comment: " msgstr "σχόλιο ανάκλησης:" -#: g10/import.c:3392 +#: g10/import.c:3408 #, fuzzy, c-format msgid "key %s: no public key - can't apply revocation certificate\n" msgstr "" "κλειδί %08lX: όχι δημόσιο κλειδί - αδυναμία εφαρμογής πιστοποιητικού " "ανάκλησης\n" -#: g10/import.c:3423 +#: g10/import.c:3439 #, fuzzy, c-format msgid "key %s: can't locate original keyblock: %s\n" msgstr "κλειδί %08lX: αδυναμία εντοπισμού του αρχικού τμήματος κλειδιού: %s\n" -#: g10/import.c:3430 +#: g10/import.c:3446 #, fuzzy, c-format msgid "key %s: can't read original keyblock: %s\n" msgstr "κλειδί %08lX: αδυναμία ανάγνωσης του αρχικού τμήματος κλειδιού: %s\n" -#: g10/import.c:3450 +#: g10/import.c:3466 #, fuzzy, c-format msgid "key %s: invalid revocation certificate: %s - rejected\n" msgstr "κλειδί %08lX: μη έγκυρο πιστοποιητικό ανάκλησης: %s - απόρριψη\n" -#: g10/import.c:3485 +#: g10/import.c:3501 #, fuzzy, c-format msgid "key %s: \"%s\" revocation certificate imported\n" msgstr "κλειδί %08lX: \"%s\" πιστοποιητικό ανάκλησης εισήχθηκε\n" -#: g10/import.c:3571 +#: g10/import.c:3587 #, fuzzy, c-format msgid "key %s: no user ID for signature\n" msgstr "κλειδί %08lX: δεν υπάρχει user ID για την υπογραφή\n" -#: g10/import.c:3588 +#: g10/import.c:3604 #, fuzzy, c-format msgid "key %s: unsupported public key algorithm on user ID \"%s\"\n" msgstr "" "κλειδί %08lX: μη υποστηριζόμενος αλγόριθμος δημοσίου κλειδιού στο user id " "\"%s\"\n" -#: g10/import.c:3590 +#: g10/import.c:3606 #, fuzzy, c-format msgid "key %s: invalid self-signature on user ID \"%s\"\n" msgstr "κλειδί %08lX: μη έγκυρη ιδιο-υπογραφή στο user id \"%s\"\n" -#: g10/import.c:3607 g10/import.c:3635 g10/import.c:3691 +#: g10/import.c:3623 g10/import.c:3651 g10/import.c:3707 #, fuzzy, c-format msgid "key %s: unsupported public key algorithm\n" msgstr "κλειδί %08lX: μη υποστηριζόμενος αλγόριθμος δημοσίου κλειδιού\n" -#: g10/import.c:3608 +#: g10/import.c:3624 #, fuzzy, c-format msgid "key %s: invalid direct key signature\n" msgstr "κλειδί %08lX: άμεση υπογραφή κλειδιού προστέθηκε\n" -#: g10/import.c:3622 +#: g10/import.c:3638 #, fuzzy, c-format msgid "key %s: no subkey for key binding\n" msgstr "κλειδί %08lX: δεν υπάρχει υποκλειδί για τη δέσμευση κλειδιού\n" -#: g10/import.c:3637 +#: g10/import.c:3653 #, fuzzy, c-format msgid "key %s: invalid subkey binding\n" msgstr "κλειδί %08lX: μη έγκυρη δέσμευση υποκλειδιού\n" -#: g10/import.c:3656 +#: g10/import.c:3672 #, fuzzy, c-format msgid "key %s: removed multiple subkey binding\n" msgstr "κλειδί %08lX: αφαιρέθηκε η δέσμευση πολλαπλού υποκλειδιού\n" -#: g10/import.c:3680 +#: g10/import.c:3696 #, fuzzy, c-format msgid "key %s: no subkey for key revocation\n" msgstr "κλειδί %08lX: δεν υπάρχει υποκλειδί για την ανάκληση κλειδιού\n" -#: g10/import.c:3693 +#: g10/import.c:3709 #, fuzzy, c-format msgid "key %s: invalid subkey revocation\n" msgstr "κλειδί %08lX: μη έγκυρη ανάκληση υποκλειδιού\n" -#: g10/import.c:3708 +#: g10/import.c:3724 #, fuzzy, c-format msgid "key %s: removed multiple subkey revocation\n" msgstr "κλειδί %08lX: αφαιρέθηκε η ανάκληση πολλαπλού υποκλειδιού\n" -#: g10/import.c:3752 +#: g10/import.c:3771 #, fuzzy, c-format msgid "key %s: skipped user ID \"%s\"\n" msgstr "κλειδί %08lX: παραλείφθηκε user ID '" -#: g10/import.c:3779 +#: g10/import.c:3798 #, fuzzy, c-format msgid "key %s: skipped subkey\n" msgstr "κλειδί %08lX: παραλείφθηκε υποκλειδί\n" -#: g10/import.c:3810 +#: g10/import.c:3829 #, fuzzy, c-format msgid "key %s: non exportable signature (class 0x%02X) - skipped\n" msgstr "κλειδί %08lX: μη εξαγόμενη υπογραφή (κλάση %02x) - παραλείφθηκε\n" -#: g10/import.c:3821 +#: g10/import.c:3840 #, fuzzy, c-format msgid "key %s: revocation certificate at wrong place - skipped\n" msgstr "" "κλειδί %08lX: το πιστοποιητικό ανάκλησης σε λάθος σημείο - παραλείφθηκε\n" -#: g10/import.c:3839 +#: g10/import.c:3868 #, fuzzy, c-format msgid "key %s: invalid revocation certificate: %s - skipped\n" msgstr "κλειδί %08lX: μη έγκυρο πιστοποιητικό ανάκλησης: %s - παραλείφθηκε\n" -#: g10/import.c:3853 +#: g10/import.c:3892 #, fuzzy, c-format msgid "key %s: subkey signature in wrong place - skipped\n" msgstr "" "κλειδί %08lX: η υπογραφή του υποκλειδιού σε λάθος σημείο - παραλείφθηκε\n" -#: g10/import.c:3861 +#: g10/import.c:3900 #, fuzzy, c-format msgid "key %s: unexpected signature class (0x%02X) - skipped\n" msgstr "κλειδί %08lX: μη αναμενώμενη κλάση υπογραφής (0x%02x) - παραλείφθηκε\n" -#: g10/import.c:4034 +#: g10/import.c:4073 #, fuzzy, c-format msgid "key %s: duplicated user ID detected - merged\n" msgstr "κλειδί %08lX: εντοπίστηκε διπλό user ID - ενώθηκαν\n" -#: g10/import.c:4099 +#: g10/import.c:4138 #, fuzzy, c-format msgid "WARNING: key %s may be revoked: fetching revocation key %s\n" msgstr "" "ΠΡΟΕΙΔΟΠΟΙΗΣΗ: κλειδί %08lX μπορεί να ανακληθεί: λήψη κλειδιού ανάκλησης " "%08lX\n" -#: g10/import.c:4115 +#: g10/import.c:4154 #, fuzzy, c-format msgid "WARNING: key %s may be revoked: revocation key %s not present.\n" msgstr "" "ΠΡΟΕΙΔΟΠΟΙΗΣΗ: κλειδί %08lX μπορεί να ανακληθεί: το κλειδί ανάκλησης %08lX\n" "δεν είναι παρών.\n" -#: g10/import.c:4181 +#: g10/import.c:4220 #, fuzzy, c-format msgid "key %s: \"%s\" revocation certificate added\n" msgstr "κλειδί %08lX: \"%s\" πιστοποιητικό ανάκλησης προστέθηκε\n" -#: g10/import.c:4219 +#: g10/import.c:4258 #, fuzzy, c-format msgid "key %s: direct key signature added\n" msgstr "κλειδί %08lX: άμεση υπογραφή κλειδιού προστέθηκε\n" @@ -5134,7 +5140,7 @@ msgid "You may not add a photo ID to a PGP2-style key.\n" msgstr "Δεν μπορείτε να προσθέσετε μια photo ID σε ένα κλειδί τύπου PGP2.\n" -#: g10/keyedit.c:4293 g10/keygen.c:2899 +#: g10/keyedit.c:4293 g10/keygen.c:2953 msgid "Such a user ID already exists on this key!\n" msgstr "" @@ -5435,83 +5441,83 @@ msgid "Displaying %s photo ID of size %ld for key %s (uid %d)\n" msgstr "Απεικόνιση %s photo ID μεγέθους %ld για το κλειδί 0x%08lX (uid %d)\n" -#: g10/keygen.c:169 +#: g10/keygen.c:174 #, fuzzy, c-format msgid "invalid value for option '%s'\n" msgstr "μη έγκυρες επιλογές ειγαγωγής\n" -#: g10/keygen.c:322 +#: g10/keygen.c:331 #, fuzzy, c-format msgid "preference '%s' duplicated\n" msgstr "η προεπιλογή %c%lu αντιγράφτηκε\n" -#: g10/keygen.c:329 +#: g10/keygen.c:338 #, fuzzy, c-format msgid "too many cipher preferences\n" msgstr "πάρα πολλές `%c' προεπιλογές\n" -#: g10/keygen.c:331 +#: g10/keygen.c:340 #, fuzzy, c-format msgid "too many digest preferences\n" msgstr "πάρα πολλές `%c' προεπιλογές\n" -#: g10/keygen.c:333 +#: g10/keygen.c:342 #, fuzzy, c-format msgid "too many compression preferences\n" msgstr "πάρα πολλές `%c' προεπιλογές\n" -#: g10/keygen.c:493 +#: g10/keygen.c:502 #, fuzzy, c-format msgid "invalid item '%s' in preference string\n" msgstr "μη έγκυρος χαρακτήρας στο \"κορδόνι\" της επιλογής\n" -#: g10/keygen.c:972 +#: g10/keygen.c:1020 #, c-format msgid "writing direct signature\n" msgstr "εγγραφή άμεσης υπογραφής\n" -#: g10/keygen.c:1018 +#: g10/keygen.c:1066 #, c-format msgid "writing self signature\n" msgstr "εγγραφή ιδιο-υπογραφής\n" -#: g10/keygen.c:1075 +#: g10/keygen.c:1123 #, c-format msgid "writing key binding signature\n" msgstr "εγγραφή υπογραφής \"δέσιμου\" κλειδιού\n" -#: g10/keygen.c:1440 g10/keygen.c:1445 g10/keygen.c:1497 g10/keygen.c:1502 -#: g10/keygen.c:1656 g10/keygen.c:1661 +#: g10/keygen.c:1494 g10/keygen.c:1499 g10/keygen.c:1551 g10/keygen.c:1556 +#: g10/keygen.c:1710 g10/keygen.c:1715 #, c-format msgid "keysize invalid; using %u bits\n" msgstr "μη έγκυρο μέγεθος κλειδιού, χρήση %u bits\n" -#: g10/keygen.c:1451 g10/keygen.c:1508 g10/keygen.c:1516 g10/keygen.c:1667 +#: g10/keygen.c:1505 g10/keygen.c:1562 g10/keygen.c:1570 g10/keygen.c:1721 #, c-format msgid "keysize rounded up to %u bits\n" msgstr "στρογγυλοποίηση του μέγεθος κλειδιού έως %u bits\n" -#: g10/keygen.c:1542 +#: g10/keygen.c:1596 #, c-format msgid "" "WARNING: some OpenPGP programs can't handle a DSA key with this digest size\n" msgstr "" -#: g10/keygen.c:1723 +#: g10/keygen.c:1777 #, fuzzy msgid "Sign" msgstr "sign" -#: g10/keygen.c:1726 +#: g10/keygen.c:1780 msgid "Certify" msgstr "" -#: g10/keygen.c:1729 +#: g10/keygen.c:1783 #, fuzzy msgid "Encrypt" msgstr "κρυπτογράφηση δεδομένων" -#: g10/keygen.c:1732 +#: g10/keygen.c:1786 msgid "Authenticate" msgstr "" @@ -5525,169 +5531,169 @@ #. * a = Toggle authentication capability #. * q = Finish #. -#: g10/keygen.c:1753 +#: g10/keygen.c:1807 msgid "SsEeAaQq" msgstr "" -#: g10/keygen.c:1784 +#: g10/keygen.c:1838 #, c-format msgid "Possible actions for a %s key: " msgstr "" -#: g10/keygen.c:1790 +#: g10/keygen.c:1844 msgid "Current allowed actions: " msgstr "" -#: g10/keygen.c:1795 +#: g10/keygen.c:1849 #, c-format msgid " (%c) Toggle the sign capability\n" msgstr "" -#: g10/keygen.c:1798 +#: g10/keygen.c:1852 #, fuzzy, c-format msgid " (%c) Toggle the encrypt capability\n" msgstr " (%d) ElGamal (για κρυπτογράφηση μόνο)\n" -#: g10/keygen.c:1801 +#: g10/keygen.c:1855 #, c-format msgid " (%c) Toggle the authenticate capability\n" msgstr "" -#: g10/keygen.c:1804 +#: g10/keygen.c:1858 #, c-format msgid " (%c) Finished\n" msgstr "" -#: g10/keygen.c:1930 +#: g10/keygen.c:1984 #, fuzzy, c-format msgid " (%d) RSA and RSA (default)\n" msgstr " (%d) DSA και ElGamal (προκαθορισμένο)\n" -#: g10/keygen.c:1934 +#: g10/keygen.c:1988 #, fuzzy, c-format msgid " (%d) DSA and Elgamal\n" msgstr " (%d) DSA και ElGamal (προκαθορισμένο)\n" -#: g10/keygen.c:1937 +#: g10/keygen.c:1991 #, c-format msgid " (%d) DSA (sign only)\n" msgstr " (%d) DSA (για υπογραφή μόνο)\n" -#: g10/keygen.c:1939 +#: g10/keygen.c:1993 #, c-format msgid " (%d) RSA (sign only)\n" msgstr " (%d) RSA (για υπογραφή μόνο)\n" -#: g10/keygen.c:1945 +#: g10/keygen.c:1999 #, fuzzy, c-format msgid " (%d) Elgamal (encrypt only)\n" msgstr " (%d) ElGamal (για κρυπτογράφηση μόνο)\n" -#: g10/keygen.c:1947 +#: g10/keygen.c:2001 #, c-format msgid " (%d) RSA (encrypt only)\n" msgstr " (%d) RSA (για κρυπτογράφηση μόνο)\n" -#: g10/keygen.c:1953 +#: g10/keygen.c:2007 #, fuzzy, c-format msgid " (%d) DSA (set your own capabilities)\n" msgstr " (%d) RSA (για κρυπτογράφηση μόνο)\n" -#: g10/keygen.c:1955 +#: g10/keygen.c:2009 #, fuzzy, c-format msgid " (%d) RSA (set your own capabilities)\n" msgstr " (%d) RSA (για κρυπτογράφηση μόνο)\n" -#: g10/keygen.c:1961 +#: g10/keygen.c:2015 #, fuzzy, c-format msgid " (%d) ECC and ECC\n" msgstr " (%d) DSA και ElGamal (προκαθορισμένο)\n" -#: g10/keygen.c:1963 +#: g10/keygen.c:2017 #, fuzzy, c-format #| msgid " (%d) DSA (sign only)\n" msgid " (%d) ECC (sign only)\n" msgstr " (%d) DSA (για υπογραφή μόνο)\n" -#: g10/keygen.c:1965 +#: g10/keygen.c:2019 #, fuzzy, c-format msgid " (%d) ECC (set your own capabilities)\n" msgstr " (%d) RSA (για κρυπτογράφηση μόνο)\n" -#: g10/keygen.c:1967 +#: g10/keygen.c:2021 #, fuzzy, c-format #| msgid " (%d) RSA (encrypt only)\n" msgid " (%d) ECC (encrypt only)\n" msgstr " (%d) RSA (για κρυπτογράφηση μόνο)\n" -#: g10/keygen.c:1971 +#: g10/keygen.c:2025 #, fuzzy, c-format msgid " (%d) Existing key\n" msgstr " (%d) RSA (για κρυπτογράφηση μόνο)\n" -#: g10/keygen.c:1973 +#: g10/keygen.c:2027 #, fuzzy, c-format msgid " (%d) Existing key from card\n" msgstr " (%d) RSA (για κρυπτογράφηση μόνο)\n" -#: g10/keygen.c:2069 sm/certreqgen-ui.c:202 +#: g10/keygen.c:2123 sm/certreqgen-ui.c:202 #, fuzzy msgid "Enter the keygrip: " msgstr "Σημείωση υπογραφής: " -#: g10/keygen.c:2082 sm/certreqgen-ui.c:210 +#: g10/keygen.c:2136 sm/certreqgen-ui.c:210 msgid "Not a valid keygrip (expecting 40 hex digits)\n" msgstr "" -#: g10/keygen.c:2084 sm/certreqgen-ui.c:212 +#: g10/keygen.c:2138 sm/certreqgen-ui.c:212 #, fuzzy msgid "No key with this keygrip\n" msgstr "Δεν υπάρχει user ID με δείκτη %d\n" -#: g10/keygen.c:2103 g10/keygen.c:2113 g10/keygen.c:3216 g10/keygen.c:3227 +#: g10/keygen.c:2157 g10/keygen.c:2167 g10/keygen.c:3270 g10/keygen.c:3281 #: sm/certreqgen-ui.c:230 sm/certreqgen-ui.c:239 #, fuzzy, c-format msgid "error reading the card: %s\n" msgstr "%s: σφάλμα στην ανάγνωση της εγγραφής free : %s\n" -#: g10/keygen.c:2107 g10/keygen.c:3220 sm/certreqgen-ui.c:233 +#: g10/keygen.c:2161 g10/keygen.c:3274 sm/certreqgen-ui.c:233 #, fuzzy, c-format msgid "Serial number of the card: %s\n" msgstr "σφάλμα στη δημιουργία της φράσης κλειδί: %s\n" -#: g10/keygen.c:2120 sm/certreqgen-ui.c:245 +#: g10/keygen.c:2174 sm/certreqgen-ui.c:245 #, fuzzy msgid "Available keys:\n" msgstr "απενεργοποιεί ένα κλειδί" -#: g10/keygen.c:2297 g10/keygen.c:2311 +#: g10/keygen.c:2351 g10/keygen.c:2365 #, fuzzy, c-format #| msgid "rounded up to %u bits\n" msgid "rounded to %u bits\n" msgstr "στρογγυλοποιήθηκε έως τα %u bits\n" -#: g10/keygen.c:2352 +#: g10/keygen.c:2406 #, c-format msgid "%s keys may be between %u and %u bits long.\n" msgstr "" -#: g10/keygen.c:2360 +#: g10/keygen.c:2414 #, fuzzy, c-format msgid "What keysize do you want for the subkey? (%u) " msgstr "Τι μέγεθος κλειδιού θα θέλατε; (1024) " -#: g10/keygen.c:2377 sm/certreqgen-ui.c:189 +#: g10/keygen.c:2431 sm/certreqgen-ui.c:189 #, c-format msgid "Requested keysize is %u bits\n" msgstr "Το μέγεθος κλειδιού που ζητήθηκε είναι %u bits\n" -#: g10/keygen.c:2423 +#: g10/keygen.c:2477 #, fuzzy #| msgid "Please select what kind of key you want:\n" msgid "Please select which elliptic curve you want:\n" msgstr "Παρακαλώ επιλέξτε τον τύπο του κλειδιού που θέλετε:\n" -#: g10/keygen.c:2611 +#: g10/keygen.c:2665 msgid "" "Please specify how long the key should be valid.\n" " 0 = key does not expire\n" @@ -5703,7 +5709,7 @@ " m = το κλειδί λήγει σε n μήνες\n" " y = το κλειδί λήγει σε n έτη\n" -#: g10/keygen.c:2622 +#: g10/keygen.c:2676 msgid "" "Please specify how long the signature should be valid.\n" " 0 = signature does not expire\n" @@ -5719,40 +5725,40 @@ " m = το κλειδί λήγει σε n μήνες\n" " y = το κλειδί λήγει σε n έτη\n" -#: g10/keygen.c:2645 +#: g10/keygen.c:2699 msgid "Key is valid for? (0) " msgstr "Το κλειδί είναι έγκυρο για; (0) " -#: g10/keygen.c:2650 +#: g10/keygen.c:2704 #, fuzzy, c-format msgid "Signature is valid for? (%s) " msgstr "Η υπογραφή έιναι έγκυρη για; (0) " -#: g10/keygen.c:2663 g10/keygen.c:2688 +#: g10/keygen.c:2717 g10/keygen.c:2742 msgid "invalid value\n" msgstr "μη έγκυρη τιμή\n" -#: g10/keygen.c:2670 +#: g10/keygen.c:2724 #, fuzzy msgid "Key does not expire at all\n" msgstr "το %s δεν λήγει ποτέ\n" -#: g10/keygen.c:2671 +#: g10/keygen.c:2725 #, fuzzy msgid "Signature does not expire at all\n" msgstr "το %s δεν λήγει ποτέ\n" -#: g10/keygen.c:2676 +#: g10/keygen.c:2730 #, fuzzy, c-format msgid "Key expires at %s\n" msgstr "το %s λήγει στις %s\n" -#: g10/keygen.c:2677 +#: g10/keygen.c:2731 #, fuzzy, c-format msgid "Signature expires at %s\n" msgstr "Υπογραφή λήγει στις %s.\n" -#: g10/keygen.c:2681 +#: g10/keygen.c:2735 msgid "" "Your system can't display dates beyond 2038.\n" "However, it will be correctly handled up to 2106.\n" @@ -5760,12 +5766,12 @@ "Το σύστημα σας δεν μπορεί να απεικονίσει ημερομηνίες πέρα του 2038.\n" "Όμως, θα χειρίζονται σωστά έως το 2106.\n" -#: g10/keygen.c:2694 +#: g10/keygen.c:2748 #, fuzzy msgid "Is this correct? (y/N) " msgstr "Είναι αυτό σωστό (y/n); " -#: g10/keygen.c:2762 +#: g10/keygen.c:2816 msgid "" "\n" "GnuPG needs to construct a user ID to identify your key.\n" @@ -5776,7 +5782,7 @@ #. but you should keep your existing translation. In case #. the new string is not translated this old string will #. be used. -#: g10/keygen.c:2777 +#: g10/keygen.c:2831 #, fuzzy msgid "" "\n" @@ -5793,50 +5799,50 @@ " \"Nikolaoy Nikos (toy Ioanni) \"\n" "\n" -#: g10/keygen.c:2796 +#: g10/keygen.c:2850 msgid "Real name: " msgstr "Αληθινό Όνομα: " -#: g10/keygen.c:2805 +#: g10/keygen.c:2859 msgid "Invalid character in name\n" msgstr "Μη έγκυρος χαρακτήρας στο όνομα\n" -#: g10/keygen.c:2806 +#: g10/keygen.c:2860 #, c-format msgid "The characters '%s' and '%s' may not appear in name\n" msgstr "" -#: g10/keygen.c:2810 +#: g10/keygen.c:2864 msgid "Name may not start with a digit\n" msgstr "Το όνομα δεν επιτρέπεται να ξεκινά με αριθμητικό ψηφίο\n" -#: g10/keygen.c:2813 +#: g10/keygen.c:2867 msgid "Name must be at least 5 characters long\n" msgstr "Το όνομα πρέπει να έχει τουλάχιστον 5 χαρακτήρες\n" -#: g10/keygen.c:2823 +#: g10/keygen.c:2877 msgid "Email address: " msgstr "Διεύθυνση Email: " -#: g10/keygen.c:2829 +#: g10/keygen.c:2883 msgid "Not a valid email address\n" msgstr "Μη έγκυρη διεύθυνση Email\n" -#: g10/keygen.c:2838 +#: g10/keygen.c:2892 msgid "Comment: " msgstr "Σχόλιο: " -#: g10/keygen.c:2844 +#: g10/keygen.c:2898 msgid "Invalid character in comment\n" msgstr "Μη έγκυρος χαρακτήρας στο σχόλιο\n" -#: g10/keygen.c:2880 +#: g10/keygen.c:2934 #, fuzzy, c-format #| msgid "You are using the `%s' character set.\n" msgid "You are using the '%s' character set.\n" msgstr "Χρησιμοποιείτε το `%s' σετ χαρακτήρων.\n" -#: g10/keygen.c:2886 +#: g10/keygen.c:2940 #, c-format msgid "" "You selected this USER-ID:\n" @@ -5847,7 +5853,7 @@ " \"%s\"\n" "\n" -#: g10/keygen.c:2891 +#: g10/keygen.c:2945 msgid "Please don't put the email address into the real name or the comment\n" msgstr "Παρακαλώ μην τοποθετείτε την διεύθυνση email στο όνομα ή στο σχόλιο\n" @@ -5862,35 +5868,35 @@ #. o = Okay (ready, continue) #. q = Quit #. -#: g10/keygen.c:2916 +#: g10/keygen.c:2970 msgid "NnCcEeOoQq" msgstr "NnCcEeOoQq" -#: g10/keygen.c:2926 +#: g10/keygen.c:2980 msgid "Change (N)ame, (C)omment, (E)mail or (Q)uit? " msgstr "Αλλαγή (N)όνομα, (C)σχόλιο, (E)mail ή (Q)τερματισμός; " -#: g10/keygen.c:2927 +#: g10/keygen.c:2981 msgid "Change (N)ame, (C)omment, (E)mail or (O)kay/(Q)uit? " msgstr "Αλλαγή (N)όνομα, (C)σχόλιο, (E)mail ή (O)εντάξει/(Q)τερματισμός; " -#: g10/keygen.c:2932 +#: g10/keygen.c:2986 #, fuzzy #| msgid "Change (N)ame, (C)omment, (E)mail or (Q)uit? " msgid "Change (N)ame, (E)mail, or (Q)uit? " msgstr "Αλλαγή (N)όνομα, (C)σχόλιο, (E)mail ή (Q)τερματισμός; " -#: g10/keygen.c:2933 +#: g10/keygen.c:2987 #, fuzzy #| msgid "Change (N)ame, (C)omment, (E)mail or (O)kay/(Q)uit? " msgid "Change (N)ame, (E)mail, or (O)kay/(Q)uit? " msgstr "Αλλαγή (N)όνομα, (C)σχόλιο, (E)mail ή (O)εντάξει/(Q)τερματισμός; " -#: g10/keygen.c:2952 +#: g10/keygen.c:3006 msgid "Please correct the error first\n" msgstr "Παρακαλώ, διορθώστε πρώτα το σφάλμα\n" -#: g10/keygen.c:2998 +#: g10/keygen.c:3052 msgid "" "We need to generate a lot of random bytes. It is a good idea to perform\n" "some other action (type on the keyboard, move the mouse, utilize the\n" @@ -5902,13 +5908,13 @@ "τους δίσκους) κατα τη διάρκεια υπολογισμού πρώτων αριθμών. Αυτό δίνει\n" "στη γεννήτρια τυχαίων αριθμών μια ευκαιρία να μαζέψει αρκετή εντροπία.\n" -#: g10/keygen.c:4278 g10/keygen.c:4349 g10/keygen.c:4367 g10/keygen.c:4395 -#: g10/keygen.c:4739 g10/keygen.c:5239 g10/keygen.c:5534 g10/keygen.c:5639 +#: g10/keygen.c:4332 g10/keygen.c:4403 g10/keygen.c:4421 g10/keygen.c:4449 +#: g10/keygen.c:4793 g10/keygen.c:5293 g10/keygen.c:5588 g10/keygen.c:5693 #, c-format msgid "Key generation failed: %s\n" msgstr "Η δημιουργία κλειδιού απέτυχε: %s\n" -#: g10/keygen.c:4287 +#: g10/keygen.c:4341 #, c-format msgid "" "About to create a key for:\n" @@ -5916,67 +5922,67 @@ "\n" msgstr "" -#: g10/keygen.c:4289 +#: g10/keygen.c:4343 msgid "Continue? (Y/n) " msgstr "" -#: g10/keygen.c:4310 +#: g10/keygen.c:4364 #, fuzzy, c-format msgid "A key for \"%s\" already exists\n" msgstr "`%s' ήδη συμπιέστηκε\n" -#: g10/keygen.c:4315 +#: g10/keygen.c:4369 #, fuzzy msgid "Create anyway? (y/N) " msgstr "Χρήση οπωσδήποτε αυτού του κλειδιού; " -#: g10/keygen.c:4321 +#: g10/keygen.c:4375 #, fuzzy, c-format msgid "creating anyway\n" msgstr "δημιουργία ενός νέου ζεύγους κλειδιών" -#: g10/keygen.c:4722 +#: g10/keygen.c:4776 #, c-format msgid "Note: Use \"%s %s\" for a full featured key generation dialog.\n" msgstr "" -#: g10/keygen.c:4771 +#: g10/keygen.c:4825 #, c-format msgid "Key generation canceled.\n" msgstr "Η δημιουργία κλειδιού αναβλήθηκε.\n" -#: g10/keygen.c:4831 +#: g10/keygen.c:4885 #, fuzzy, c-format msgid "can't create backup file '%s': %s\n" msgstr "αδυναμία δημιουργίας του `%s': %s\n" -#: g10/keygen.c:4851 +#: g10/keygen.c:4905 #, fuzzy, c-format msgid "Note: backup of card key saved to '%s'\n" msgstr "ΣΗΜΕΙΩΣΗ: το μυστικό κλειδί %08lX έληξε στις %s\n" -#: g10/keygen.c:5010 g10/keygen.c:5172 +#: g10/keygen.c:5064 g10/keygen.c:5226 #, fuzzy, c-format #| msgid "writing public key to `%s'\n" msgid "writing public key to '%s'\n" msgstr "εγγραφή του δημοσίου κλειδιού στο `%s'\n" -#: g10/keygen.c:5166 +#: g10/keygen.c:5220 #, c-format msgid "no writable public keyring found: %s\n" msgstr "δε βρέθηκε εγγράψιμη δημόσια κλειδοθήκη: %s\n" -#: g10/keygen.c:5180 +#: g10/keygen.c:5234 #, fuzzy, c-format #| msgid "error writing public keyring `%s': %s\n" msgid "error writing public keyring '%s': %s\n" msgstr "αδυναμία εγγραφής δημόσιας κλειδοθήκης `%s': %s\n" -#: g10/keygen.c:5210 +#: g10/keygen.c:5264 msgid "public and secret key created and signed.\n" msgstr "το δημόσιο και το μυστικό κλειδί δημιουργήθηκαν και υπογράφηκαν.\n" -#: g10/keygen.c:5226 +#: g10/keygen.c:5280 #, fuzzy msgid "" "Note that this key cannot be used for encryption. You may want to use\n" @@ -5987,7 +5993,7 @@ "Μπορείτε να χρησιμοποιήσετε την εντολή \"--edit-key\" για να δημιουργηθεί\n" "ένα δευτερεύον κλειδί για αυτό το λόγο.\n" -#: g10/keygen.c:5401 g10/keygen.c:5590 +#: g10/keygen.c:5455 g10/keygen.c:5644 #, c-format msgid "" "key has been created %lu second in future (time warp or clock problem)\n" @@ -5995,7 +6001,7 @@ "το κλειδί δημιουργήθηκε %lu δευτερόλεπτο στο μέλλον (χρονοδίνη ή\n" "απλώς πρόβλημα στο ρολόι)\n" -#: g10/keygen.c:5403 g10/keygen.c:5592 +#: g10/keygen.c:5457 g10/keygen.c:5646 #, c-format msgid "" "key has been created %lu seconds in future (time warp or clock problem)\n" @@ -6003,7 +6009,7 @@ "το κλειδί δημιουργήθηκε %lu δευτερόλεπτα στο μέλλον (χρονοδίνη ή\n" "απλώς πρόβλημα στο ρολόι)\n" -#: g10/keygen.c:5414 g10/keygen.c:5603 +#: g10/keygen.c:5468 g10/keygen.c:5657 #, fuzzy, c-format #| msgid "NOTE: creating subkeys for v3 keys is not OpenPGP compliant\n" msgid "Note: creating subkeys for v3 keys is not OpenPGP compliant\n" @@ -6011,17 +6017,17 @@ "ΣΗΜΕΙΩΣΗ: η δημιουργία υποκλειδιών για κλειδιά v3 δεν είναι σύμφωνο\n" "με το OpenPGP\n" -#: g10/keygen.c:5426 g10/keygen.c:5428 +#: g10/keygen.c:5480 g10/keygen.c:5482 #, c-format msgid "Secret parts of primary key are not available.\n" msgstr "Μυστικά τμήματα του κύριου κλειδιού δεν είναι διαθέσιμα.\n" -#: g10/keygen.c:5435 g10/keygen.c:5437 +#: g10/keygen.c:5489 g10/keygen.c:5491 #, fuzzy, c-format msgid "Secret parts of primary key are stored on-card.\n" msgstr "Μυστικά τμήματα του κύριου κλειδιού δεν είναι διαθέσιμα.\n" -#: g10/keygen.c:5456 g10/keygen.c:5617 +#: g10/keygen.c:5510 g10/keygen.c:5671 #, fuzzy msgid "Really create? (y/N) " msgstr "Σίγουρα να δημιουργηθεί; " @@ -7136,31 +7142,31 @@ msgid "data not saved; use option \"--output\" to save it\n" msgstr "δεδομένα δεν αποθηκεύτηκαν. Αποθήκευση με την επιλογή \"--output\"\n" -#: g10/plaintext.c:615 +#: g10/plaintext.c:620 msgid "Detached signature.\n" msgstr "Αποκομμένη υπογραφή.\n" -#: g10/plaintext.c:623 +#: g10/plaintext.c:628 msgid "Please enter name of data file: " msgstr "Εισάγετε το όνομα αρχείου δεδομένων: " -#: g10/plaintext.c:660 +#: g10/plaintext.c:665 #, c-format msgid "reading stdin ...\n" msgstr "ανάγνωση της stdin ...\n" -#: g10/plaintext.c:705 +#: g10/plaintext.c:710 #, c-format msgid "no signed data\n" msgstr "δεν υπάρχουν υπογεγραμμένα δεδομένα\n" -#: g10/plaintext.c:723 +#: g10/plaintext.c:728 #, fuzzy, c-format #| msgid "can't open signed data `%s'\n" msgid "can't open signed data '%s'\n" msgstr "αδυναμία πρόσβασης υπογεγραμμένων δεδομένων `%s'\n" -#: g10/plaintext.c:758 +#: g10/plaintext.c:763 #, fuzzy, c-format msgid "can't open signed data fd=%d: %s\n" msgstr "αδυναμία πρόσβασης υπογεγραμμένων δεδομένων `%s'\n" @@ -8184,7 +8190,7 @@ msgid "no need for a trustdb check\n" msgstr "δεν υπάρχει ανάγκη για έλεγχο της trustdb\n" -#: g10/trustdb.c:631 g10/trustdb.c:2326 +#: g10/trustdb.c:631 g10/trustdb.c:2338 #, c-format msgid "next trustdb check due at %s\n" msgstr "επόμενος έλεγχος της trustdb θα γίνει στις %s\n" @@ -8214,14 +8220,14 @@ msgid "checking the trustdb\n" msgstr "έλεγχος της trustdb\n" -#: g10/trustdb.c:2047 +#: g10/trustdb.c:2059 #, fuzzy, c-format msgid "%d key processed" msgid_plural "%d keys processed" msgstr[0] "%lu κλειδιά έχουν μέχρι τώρα επεξεργαστεί\n" msgstr[1] "%lu κλειδιά έχουν μέχρι τώρα επεξεργαστεί\n" -#: g10/trustdb.c:2050 +#: g10/trustdb.c:2062 #, fuzzy, c-format #| msgid "%d keys processed (%d validity counts cleared)\n" msgid " (%d validity count cleared)\n" @@ -8229,24 +8235,24 @@ msgstr[0] "%d κλειδιά επεξεργάστηκαν (%d μετρήσεις εγγυρότητας πέρασαν)\n" msgstr[1] "%d κλειδιά επεξεργάστηκαν (%d μετρήσεις εγγυρότητας πέρασαν)\n" -#: g10/trustdb.c:2120 +#: g10/trustdb.c:2132 #, c-format msgid "no ultimately trusted keys found\n" msgstr "δε βρέθηκαν απόλυτα εμπιστεύσιμα κλειδιά\n" -#: g10/trustdb.c:2134 +#: g10/trustdb.c:2146 #, fuzzy, c-format msgid "public key of ultimately trusted key %s not found\n" msgstr "" "δε βρέθηκε το δημόσιο κλειδί του απόλυτα εμπιστεύσιμου κλειδιού %08lX\n" -#: g10/trustdb.c:2252 +#: g10/trustdb.c:2264 #, c-format msgid "" "depth: %d valid: %3d signed: %3d trust: %d-, %dq, %dn, %dm, %df, %du\n" msgstr "" -#: g10/trustdb.c:2333 +#: g10/trustdb.c:2345 #, fuzzy, c-format msgid "unable to update trustdb version record: write failed: %s\n" msgstr "εγγραφή trust %lu, τύπος %d: write απέτυχε: %s\n" @@ -8364,88 +8370,94 @@ #. TRANSLATORS: Put a \x1f right before a colon. This can be #. * used by pinentry to nicely align the names and values. Keep #. * the %s at the start and end of the string. -#: scd/app-p15.c:5116 scd/app-openpgp.c:2154 +#: scd/app-p15.c:5145 scd/app-nks.c:1541 scd/app-openpgp.c:2154 #, c-format msgid "%sNumber: %s%%0AHolder: %s%s" msgstr "" #. TRANSLATORS: This is the number of remaining attempts to #. * enter a PIN. Use %%0A (double-percent,0A) for a linefeed. -#: scd/app-p15.c:5135 scd/app-openpgp.c:2170 +#: scd/app-p15.c:5164 scd/app-nks.c:1560 scd/app-openpgp.c:2170 #, c-format msgid "Remaining attempts: %d" msgstr "" -#: scd/app-p15.c:5214 scd/app-nks.c:1113 +#: scd/app-p15.c:5243 scd/app-nks.c:2112 msgid "||Please enter the PIN for the key to create qualified signatures." msgstr "" #. TRANSLATORS: Do not translate the "|A|" prefix but keep it at #. the start of the string. Use %0A (single percent) for a linefeed. -#: scd/app-p15.c:5217 scd/app-openpgp.c:2464 +#: scd/app-p15.c:5246 scd/app-openpgp.c:2465 #, fuzzy msgid "|A|Please enter the Admin PIN" msgstr "αλλαγή της φράσης κλειδί" -#: scd/app-p15.c:5219 scd/app-nks.c:1103 +#: scd/app-p15.c:5248 scd/app-nks.c:2102 #, fuzzy msgid "|P|Please enter the PIN Unblocking Code (PUK) for the standard keys." msgstr "Παρακαλώ επιλέξτε την αιτία για την ανάκληση:\n" -#: scd/app-p15.c:5222 scd/app-nks.c:1095 +#: scd/app-p15.c:5251 scd/app-nks.c:2093 #, fuzzy msgid "||Please enter the PIN for the standard keys." msgstr "αλλαγή της φράσης κλειδί" -#: scd/app-nks.c:709 scd/app-openpgp.c:3666 +#: scd/app-nks.c:1479 scd/app-openpgp.c:3675 #, c-format msgid "RSA modulus missing or not of size %d bits\n" msgstr "" -#: scd/app-nks.c:717 scd/app-openpgp.c:3678 +#: scd/app-nks.c:1487 scd/app-openpgp.c:3687 #, c-format msgid "RSA public exponent missing or larger than %d bits\n" msgstr "" -#: scd/app-nks.c:797 scd/app-openpgp.c:2327 scd/app-openpgp.c:2346 -#: scd/app-openpgp.c:2513 scd/app-openpgp.c:2531 scd/app-openpgp.c:2829 -#: scd/app-openpgp.c:2876 scd/app-openpgp.c:2991 scd/app-dinsig.c:302 +#: scd/app-nks.c:1660 +#, fuzzy +#| msgid "Note: This key has been disabled.\n" +msgid "Note: PIN has not yet been enabled." +msgstr "Σημείωση: Αυτό το κλειδί έχει απενεργοποιηθεί.\n" + +#: scd/app-nks.c:1671 scd/app-openpgp.c:2327 scd/app-openpgp.c:2346 +#: scd/app-openpgp.c:2515 scd/app-openpgp.c:2533 scd/app-openpgp.c:2832 +#: scd/app-openpgp.c:2879 scd/app-openpgp.c:3000 scd/app-dinsig.c:303 #, c-format msgid "PIN callback returned error: %s\n" msgstr "" -#: scd/app-nks.c:830 +#: scd/app-nks.c:1707 #, c-format msgid "the NullPIN has not yet been changed\n" msgstr "" -#: scd/app-nks.c:1094 +#: scd/app-nks.c:2092 #, fuzzy msgid "|N|Please enter a new PIN for the standard keys." msgstr "αλλαγή της φράσης κλειδί" -#: scd/app-nks.c:1101 +#: scd/app-nks.c:2100 #, fuzzy msgid "|NP|Please enter a new PIN Unblocking Code (PUK) for the standard keys." msgstr "Παρακαλώ επιλέξτε την αιτία για την ανάκληση:\n" -#: scd/app-nks.c:1111 +#: scd/app-nks.c:2110 msgid "|N|Please enter a new PIN for the key to create qualified signatures." msgstr "" -#: scd/app-nks.c:1121 +#: scd/app-nks.c:2120 msgid "" "|NP|Please enter a new PIN Unblocking Code (PUK) for the key to create " "qualified signatures." msgstr "" -#: scd/app-nks.c:1123 +#: scd/app-nks.c:2122 msgid "" "|P|Please enter the PIN Unblocking Code (PUK) for the key to create " "qualified signatures." msgstr "" -#: scd/app-nks.c:1230 scd/app-openpgp.c:2910 scd/app-dinsig.c:532 +#: scd/app-nks.c:2295 scd/app-openpgp.c:2913 scd/app-dinsig.c:535 #, fuzzy, c-format msgid "error getting new PIN: %s\n" msgstr "σφάλμα στη δημιουργία της φράσης κλειδί: %s\n" @@ -8460,7 +8472,7 @@ msgid "failed to store the creation date: %s\n" msgstr "αποτυχία επαναδόμησης της cache κλειδοθήκης: %s\n" -#: scd/app-openpgp.c:1271 scd/app-openpgp.c:2857 scd/app-openpgp.c:5041 +#: scd/app-openpgp.c:1271 scd/app-openpgp.c:2860 scd/app-openpgp.c:5051 #, c-format msgid "error retrieving CHV status from card\n" msgstr "" @@ -8481,7 +8493,7 @@ msgid "response does not contain the EC public key\n" msgstr "αφαίρεση των κλειδιών από τη δημόσια κλειδοθήκη" -#: scd/app-openpgp.c:1664 scd/app-openpgp.c:4286 +#: scd/app-openpgp.c:1664 scd/app-openpgp.c:4295 #, c-format msgid "response does not contain the public key data\n" msgstr "" @@ -8514,23 +8526,23 @@ msgid "||Please unlock the card" msgstr "αλλαγή της φράσης κλειδί" -#: scd/app-openpgp.c:2353 scd/app-openpgp.c:2538 scd/app-openpgp.c:2836 +#: scd/app-openpgp.c:2353 scd/app-openpgp.c:2540 scd/app-openpgp.c:2839 #, c-format msgid "PIN for CHV%d is too short; minimum length is %d\n" msgstr "" -#: scd/app-openpgp.c:2367 scd/app-openpgp.c:2414 scd/app-openpgp.c:2552 -#: scd/app-openpgp.c:4644 +#: scd/app-openpgp.c:2368 scd/app-openpgp.c:2415 scd/app-openpgp.c:2554 +#: scd/app-openpgp.c:4654 #, fuzzy, c-format msgid "verify CHV%d failed: %s\n" msgstr "keyserver αποστολή απέτυχε: %s\n" -#: scd/app-openpgp.c:2450 scd/app-openpgp.c:5050 +#: scd/app-openpgp.c:2451 scd/app-openpgp.c:5060 #, c-format msgid "card is permanently locked!\n" msgstr "" -#: scd/app-openpgp.c:2454 +#: scd/app-openpgp.c:2455 #, c-format msgid "%d Admin PIN attempt remaining before card is permanently locked\n" msgid_plural "" @@ -8538,22 +8550,22 @@ msgstr[0] "" msgstr[1] "" -#: scd/app-openpgp.c:2485 +#: scd/app-openpgp.c:2486 #, c-format msgid "access to admin commands is not configured\n" msgstr "" -#: scd/app-openpgp.c:2823 +#: scd/app-openpgp.c:2826 #, fuzzy msgid "||Please enter the PIN" msgstr "αλλαγή της φράσης κλειδί" -#: scd/app-openpgp.c:2872 +#: scd/app-openpgp.c:2875 #, fuzzy msgid "||Please enter the Reset Code for the card" msgstr "Παρακαλώ επιλέξτε την αιτία για την ανάκληση:\n" -#: scd/app-openpgp.c:2882 scd/app-openpgp.c:2943 +#: scd/app-openpgp.c:2885 scd/app-openpgp.c:2946 #, c-format msgid "Reset Code is too short; minimum length is %d\n" msgstr "" @@ -8561,128 +8573,128 @@ #. 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:2905 +#: scd/app-openpgp.c:2908 msgid "|RN|New Reset Code" msgstr "" -#: scd/app-openpgp.c:2906 +#: scd/app-openpgp.c:2909 msgid "|AN|New Admin PIN" msgstr "" -#: scd/app-openpgp.c:2906 +#: scd/app-openpgp.c:2909 msgid "|N|New PIN" msgstr "" -#: scd/app-openpgp.c:2987 +#: scd/app-openpgp.c:2996 #, fuzzy msgid "||Please enter the Admin PIN and New Admin PIN" msgstr "αλλαγή της φράσης κλειδί" -#: scd/app-openpgp.c:2988 +#: scd/app-openpgp.c:2997 #, fuzzy msgid "||Please enter the PIN and New PIN" msgstr "αλλαγή της φράσης κλειδί" -#: scd/app-openpgp.c:3050 scd/app-openpgp.c:4346 +#: scd/app-openpgp.c:3059 scd/app-openpgp.c:4355 #, fuzzy, c-format msgid "error reading application data\n" msgstr "σφάλμα κατά την ανάγνωση του μπλοκ κλειδιών: %s\n" -#: scd/app-openpgp.c:3056 scd/app-openpgp.c:4353 +#: scd/app-openpgp.c:3065 scd/app-openpgp.c:4362 #, fuzzy, c-format msgid "error reading fingerprint DO\n" msgstr "%s: σφάλμα στην ανάγνωση της εγγραφής free : %s\n" -#: scd/app-openpgp.c:3066 +#: scd/app-openpgp.c:3075 #, fuzzy, c-format msgid "key already exists\n" msgstr "`%s' ήδη συμπιέστηκε\n" -#: scd/app-openpgp.c:3070 +#: scd/app-openpgp.c:3079 #, c-format msgid "existing key will be replaced\n" msgstr "" -#: scd/app-openpgp.c:3072 +#: scd/app-openpgp.c:3081 #, fuzzy, c-format msgid "generating new key\n" msgstr "δημιουργία ενός νέου ζεύγους κλειδιών" -#: scd/app-openpgp.c:3074 +#: scd/app-openpgp.c:3083 #, fuzzy, c-format msgid "writing new key\n" msgstr "δημιουργία ενός νέου ζεύγους κλειδιών" -#: scd/app-openpgp.c:3647 scd/app-openpgp.c:3999 +#: scd/app-openpgp.c:3656 scd/app-openpgp.c:4008 #, c-format msgid "creation timestamp missing\n" msgstr "" -#: scd/app-openpgp.c:3688 scd/app-openpgp.c:3696 +#: scd/app-openpgp.c:3697 scd/app-openpgp.c:3705 #, c-format msgid "RSA prime %s missing or not of size %d bits\n" msgstr "" -#: scd/app-openpgp.c:3829 scd/app-openpgp.c:4106 +#: scd/app-openpgp.c:3838 scd/app-openpgp.c:4115 #, fuzzy, c-format msgid "failed to store the key: %s\n" msgstr "αποτυχία αρχικοποίησης της TrustDB: %s\n" -#: scd/app-openpgp.c:3993 +#: scd/app-openpgp.c:4002 #, fuzzy, c-format #| msgid "unsupported URI" msgid "unsupported curve\n" msgstr "μη υποστηριζόμενο URI" -#: scd/app-openpgp.c:4263 +#: scd/app-openpgp.c:4272 #, c-format msgid "please wait while key is being generated ...\n" msgstr "" -#: scd/app-openpgp.c:4271 +#: scd/app-openpgp.c:4280 #, fuzzy, c-format msgid "generating key failed\n" msgstr "διαγραφή block κλειδιών απέτυχε: %s\n" -#: scd/app-openpgp.c:4277 +#: scd/app-openpgp.c:4286 #, fuzzy, c-format msgid "key generation completed (%d second)\n" msgid_plural "key generation completed (%d seconds)\n" msgstr[0] "Η δημιουργία κλειδιού απέτυχε: %s\n" msgstr[1] "Η δημιουργία κλειδιού απέτυχε: %s\n" -#: scd/app-openpgp.c:4311 +#: scd/app-openpgp.c:4320 #, c-format msgid "invalid structure of OpenPGP card (DO 0x93)\n" msgstr "" -#: scd/app-openpgp.c:4361 +#: scd/app-openpgp.c:4370 #, c-format msgid "fingerprint on card does not match requested one\n" msgstr "" -#: scd/app-openpgp.c:4560 +#: scd/app-openpgp.c:4569 #, fuzzy, c-format msgid "card does not support digest algorithm %s\n" msgstr "%s υπογραφή, αλγόριθμος περίληψης %s\n" -#: scd/app-openpgp.c:4618 +#: scd/app-openpgp.c:4627 #, c-format msgid "signatures created so far: %lu\n" msgstr "" -#: scd/app-openpgp.c:5055 +#: scd/app-openpgp.c:5065 #, c-format msgid "" "verification of Admin PIN is currently prohibited through this command\n" msgstr "" -#: scd/app-openpgp.c:5386 scd/app-openpgp.c:5398 +#: scd/app-openpgp.c:5396 scd/app-openpgp.c:5408 #, fuzzy, c-format msgid "can't access %s - invalid OpenPGP card?\n" msgstr "δε βρέθηκαν έγκυρα OpenPGP δεδομένα.\n" -#: scd/app-dinsig.c:298 +#: scd/app-dinsig.c:299 #, fuzzy msgid "||Please enter your PIN at the reader's pinpad" msgstr "αλλαγή της φράσης κλειδί" @@ -8690,7 +8702,7 @@ #. 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-dinsig.c:529 +#: scd/app-dinsig.c:532 msgid "|N|Initial New PIN" msgstr "" @@ -8780,11 +8792,11 @@ msgid "validation model requested by certificate: %s" msgstr "" -#: sm/certchain.c:199 sm/certchain.c:2164 +#: sm/certchain.c:199 sm/certchain.c:2165 msgid "chain" msgstr "" -#: sm/certchain.c:200 sm/certchain.c:2164 +#: sm/certchain.c:200 sm/certchain.c:2165 #, fuzzy msgid "shell" msgstr "help" @@ -8808,241 +8820,241 @@ msgid "failed to open '%s': %s\n" msgstr "αδυναμία πρόσβασης στο `%s': %s\n" -#: sm/certchain.c:355 sm/certchain.c:384 dirmngr/validate.c:204 +#: sm/certchain.c:355 sm/certchain.c:385 dirmngr/validate.c:204 #, fuzzy, c-format msgid "Note: non-critical certificate policy not allowed" msgstr "εγγραφή του μυστικού κλειδιού στο `%s'\n" -#: sm/certchain.c:359 sm/certchain.c:388 dirmngr/validate.c:209 +#: sm/certchain.c:359 sm/certchain.c:389 dirmngr/validate.c:209 #, fuzzy, c-format msgid "certificate policy not allowed" msgstr "εγγραφή του μυστικού κλειδιού στο `%s'\n" -#: sm/certchain.c:595 sm/keydb.c:1084 sm/keydb.c:1171 +#: sm/certchain.c:596 sm/keydb.c:1084 sm/keydb.c:1171 #, fuzzy, c-format msgid "failed to get the fingerprint\n" msgstr "αποτυχία αρχικοποίησης της TrustDB: %s\n" -#: sm/certchain.c:624 +#: sm/certchain.c:625 #, c-format msgid "looking up issuer at external location\n" msgstr "" -#: sm/certchain.c:644 +#: sm/certchain.c:645 #, c-format msgid "number of issuers matching: %d\n" msgstr "" -#: sm/certchain.c:723 dirmngr/ocsp.c:685 +#: sm/certchain.c:724 dirmngr/ocsp.c:685 #, fuzzy, c-format #| msgid "%s: can't access: %s\n" msgid "can't get authorityInfoAccess: %s\n" msgstr "%s: αδυναμία πρόσβασης: %s\n" -#: sm/certchain.c:791 +#: sm/certchain.c:792 #, c-format msgid "looking up issuer from the Dirmngr cache\n" msgstr "" -#: sm/certchain.c:816 +#: sm/certchain.c:817 #, fuzzy, c-format msgid "number of matching certificates: %d\n" msgstr "σφάλμα στη δημιουργία της φράσης κλειδί: %s\n" -#: sm/certchain.c:819 +#: sm/certchain.c:820 #, fuzzy, c-format msgid "dirmngr cache-only key lookup failed: %s\n" msgstr "διαγραφή block κλειδιών απέτυχε: %s\n" -#: sm/certchain.c:1041 sm/certchain.c:1554 sm/certchain.c:2192 sm/decrypt.c:728 +#: sm/certchain.c:1042 sm/certchain.c:1555 sm/certchain.c:2193 sm/decrypt.c:728 #: sm/encrypt.c:345 sm/import.c:415 sm/keydb.c:1091 sm/keydb.c:1178 #: sm/sign.c:337 sm/verify.c:118 #, fuzzy, c-format msgid "failed to allocate keyDB handle\n" msgstr "αποτυχία αρχικοποίησης της TrustDB: %s\n" -#: sm/certchain.c:1225 +#: sm/certchain.c:1226 #, fuzzy msgid "certificate has been revoked" msgstr "ΣΗΜΕΙΩΣΗ: το κλειδί έχει ανακληθεί" -#: sm/certchain.c:1240 +#: sm/certchain.c:1241 msgid "the status of the certificate is unknown" msgstr "" -#: sm/certchain.c:1247 +#: sm/certchain.c:1248 #, c-format msgid "please make sure that the \"dirmngr\" is properly installed\n" msgstr "" -#: sm/certchain.c:1253 +#: sm/certchain.c:1254 #, fuzzy, c-format msgid "checking the CRL failed: %s" msgstr "απέτυχε ο έλεγχος της υπογραφής που δημιουργήθηκε: %s\n" -#: sm/certchain.c:1282 sm/certchain.c:1350 dirmngr/validate.c:497 +#: sm/certchain.c:1283 sm/certchain.c:1351 dirmngr/validate.c:497 #, c-format msgid "certificate with invalid validity: %s" msgstr "" -#: sm/certchain.c:1297 sm/certchain.c:1382 dirmngr/validate.c:515 +#: sm/certchain.c:1298 sm/certchain.c:1383 dirmngr/validate.c:515 #, c-format msgid "certificate not yet valid" msgstr "" -#: sm/certchain.c:1298 sm/certchain.c:1383 +#: sm/certchain.c:1299 sm/certchain.c:1384 #, fuzzy msgid "root certificate not yet valid" msgstr "εγγραφή του μυστικού κλειδιού στο `%s'\n" -#: sm/certchain.c:1299 sm/certchain.c:1384 +#: sm/certchain.c:1300 sm/certchain.c:1385 msgid "intermediate certificate not yet valid" msgstr "" -#: sm/certchain.c:1312 dirmngr/validate.c:526 +#: sm/certchain.c:1313 dirmngr/validate.c:526 #, fuzzy, c-format msgid "certificate has expired" msgstr "Αυτό το κλειδί έχει λήξει!" -#: sm/certchain.c:1313 +#: sm/certchain.c:1314 #, fuzzy msgid "root certificate has expired" msgstr "Αυτό το κλειδί έχει λήξει!" -#: sm/certchain.c:1314 +#: sm/certchain.c:1315 #, fuzzy msgid "intermediate certificate has expired" msgstr "Αυτό το κλειδί έχει λήξει!" -#: sm/certchain.c:1356 +#: sm/certchain.c:1357 #, c-format msgid "required certificate attributes missing: %s%s%s" msgstr "" -#: sm/certchain.c:1365 +#: sm/certchain.c:1366 #, fuzzy msgid "certificate with invalid validity" msgstr "Αυτό το κλειδί έχει λήξει!" -#: sm/certchain.c:1402 +#: sm/certchain.c:1403 msgid "signature not created during lifetime of certificate" msgstr "" -#: sm/certchain.c:1404 +#: sm/certchain.c:1405 msgid "certificate not created during lifetime of issuer" msgstr "" -#: sm/certchain.c:1405 +#: sm/certchain.c:1406 msgid "intermediate certificate not created during lifetime of issuer" msgstr "" -#: sm/certchain.c:1409 +#: sm/certchain.c:1410 #, fuzzy, c-format msgid " ( signature created at " msgstr " νέες υπογραφές: %lu\n" -#: sm/certchain.c:1410 +#: sm/certchain.c:1411 #, fuzzy, c-format msgid " (certificate created at " msgstr "Πιστοποιητικό ανάκλησης δημιουργήθηκε.\n" -#: sm/certchain.c:1413 +#: sm/certchain.c:1414 #, fuzzy, c-format msgid " (certificate valid from " msgstr "κακό πιστοποιητικό" -#: sm/certchain.c:1414 +#: sm/certchain.c:1415 #, c-format msgid " ( issuer valid from " msgstr "" -#: sm/certchain.c:1444 dirmngr/validate.c:577 +#: sm/certchain.c:1445 dirmngr/validate.c:577 #, fuzzy, c-format msgid "fingerprint=%s\n" msgstr "απεικόνιση του fingerprint" -#: sm/certchain.c:1453 +#: sm/certchain.c:1454 #, c-format msgid "root certificate has now been marked as trusted\n" msgstr "" -#: sm/certchain.c:1466 +#: sm/certchain.c:1467 #, c-format msgid "interactive marking as trusted not enabled in gpg-agent\n" msgstr "" -#: sm/certchain.c:1472 +#: sm/certchain.c:1473 #, c-format msgid "interactive marking as trusted disabled for this session\n" msgstr "" -#: sm/certchain.c:1531 +#: sm/certchain.c:1532 msgid "WARNING: creation time of signature not known - assuming current time" msgstr "" -#: sm/certchain.c:1595 +#: sm/certchain.c:1596 #, fuzzy msgid "no issuer found in certificate" msgstr "δημιουργία ενός πιστοποιητικού ανάκλησης" -#: sm/certchain.c:1673 +#: sm/certchain.c:1674 msgid "self-signed certificate has a BAD signature" msgstr "" -#: sm/certchain.c:1742 dirmngr/validate.c:575 +#: sm/certchain.c:1743 dirmngr/validate.c:575 #, c-format msgid "root certificate is not marked trusted" msgstr "" -#: sm/certchain.c:1758 +#: sm/certchain.c:1759 #, fuzzy, c-format msgid "checking the trust list failed: %s\n" msgstr "απέτυχε ο έλεγχος της υπογραφής που δημιουργήθηκε: %s\n" -#: sm/certchain.c:1789 sm/import.c:176 sm/keylist.c:1396 dirmngr/validate.c:630 +#: sm/certchain.c:1790 sm/import.c:176 sm/keylist.c:1396 dirmngr/validate.c:630 #, c-format msgid "certificate chain too long\n" msgstr "" -#: sm/certchain.c:1801 dirmngr/validate.c:642 +#: sm/certchain.c:1802 dirmngr/validate.c:642 #, c-format msgid "issuer certificate not found" msgstr "" -#: sm/certchain.c:1834 dirmngr/validate.c:668 +#: sm/certchain.c:1835 dirmngr/validate.c:668 #, fuzzy, c-format msgid "certificate has a BAD signature" msgstr "επαλήθευση μιας υπογραφής" -#: sm/certchain.c:1866 dirmngr/validate.c:692 +#: sm/certchain.c:1867 dirmngr/validate.c:692 msgid "found another possible matching CA certificate - trying again" msgstr "" -#: sm/certchain.c:1925 dirmngr/validate.c:717 +#: sm/certchain.c:1926 dirmngr/validate.c:717 #, c-format msgid "certificate chain longer than allowed by CA (%d)" msgstr "" -#: sm/certchain.c:1967 sm/certchain.c:2263 dirmngr/validate.c:747 +#: sm/certchain.c:1968 sm/certchain.c:2264 dirmngr/validate.c:747 #, fuzzy, c-format msgid "certificate is good\n" msgstr "η προεπιλογή %c%lu αντιγράφτηκε\n" -#: sm/certchain.c:1968 +#: sm/certchain.c:1969 #, fuzzy, c-format msgid "intermediate certificate is good\n" msgstr "Πιστοποιητικό ανάκλησης δημιουργήθηκε.\n" -#: sm/certchain.c:1969 +#: sm/certchain.c:1970 #, fuzzy, c-format msgid "root certificate is good\n" msgstr "κακό πιστοποιητικό" -#: sm/certchain.c:2151 +#: sm/certchain.c:2152 msgid "switching to chain model" msgstr "" -#: sm/certchain.c:2160 +#: sm/certchain.c:2161 #, c-format msgid "validation model used: %s" msgstr "" Binary files /tmp/tmpp8wxn021/8c8sKM9mxi/gnupg2-2.2.40/po/en@boldquot.gmo and /tmp/tmpp8wxn021/sgn7BhUbzZ/gnupg2-2.2.41/po/en@boldquot.gmo differ diff -Nru gnupg2-2.2.40/po/en@boldquot.po gnupg2-2.2.41/po/en@boldquot.po --- gnupg2-2.2.40/po/en@boldquot.po 2022-10-10 09:58:29.000000000 +0000 +++ gnupg2-2.2.41/po/en@boldquot.po 2022-12-09 08:48:38.000000000 +0000 @@ -30,10 +30,10 @@ # msgid "" msgstr "" -"Project-Id-Version: GNU gnupg 2.2.40\n" +"Project-Id-Version: GNU gnupg 2.2.41\n" "Report-Msgid-Bugs-To: translations@gnupg.org\n" -"POT-Creation-Date: 2022-10-10 11:58+0200\n" -"PO-Revision-Date: 2022-10-10 11:58+0200\n" +"POT-Creation-Date: 2022-12-09 09:48+0100\n" +"PO-Revision-Date: 2022-12-09 09:48+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "Language: en\n" @@ -246,20 +246,20 @@ msgid "ssh keys greater than %d bits are not supported\n" msgstr "ssh keys greater than %d bits are not supported\n" -#: agent/command-ssh.c:862 common/dotlock.c:856 g10/card-util.c:947 -#: g10/exec.c:554 g10/export.c:1320 g10/gpg.c:1400 g10/keygen.c:4998 +#: agent/command-ssh.c:862 common/dotlock.c:856 g10/card-util.c:946 +#: g10/exec.c:554 g10/export.c:1335 g10/gpg.c:1409 g10/keygen.c:5052 #: g10/keyring.c:1322 g10/keyring.c:1637 g10/openfile.c:291 g10/sign.c:1008 #: g10/sign.c:1322 g10/tdbio.c:753 #, c-format msgid "can't create '%s': %s\n" msgstr "can't create '%s': %s\n" -#: agent/command-ssh.c:874 common/helpfile.c:57 g10/card-util.c:904 +#: agent/command-ssh.c:874 common/helpfile.c:57 g10/card-util.c:903 #: g10/dearmor.c:59 g10/dearmor.c:106 g10/decrypt.c:65 g10/decrypt.c:136 -#: g10/decrypt.c:153 g10/encrypt.c:239 g10/encrypt.c:678 g10/gpg.c:1401 -#: g10/import.c:364 g10/import.c:548 g10/import.c:776 g10/keygen.c:4036 +#: g10/decrypt.c:153 g10/encrypt.c:239 g10/encrypt.c:678 g10/gpg.c:1410 +#: g10/import.c:365 g10/import.c:549 g10/import.c:777 g10/keygen.c:4090 #: g10/keyring.c:1663 g10/openfile.c:195 g10/openfile.c:209 g10/plaintext.c:128 -#: g10/plaintext.c:649 g10/sign.c:990 g10/sign.c:1201 g10/sign.c:1306 +#: g10/plaintext.c:654 g10/sign.c:990 g10/sign.c:1201 g10/sign.c:1306 #: g10/sign.c:1451 g10/tdbdump.c:145 g10/tdbdump.c:153 g10/tdbio.c:758 #: g10/tdbio.c:829 g10/verify.c:96 g10/verify.c:160 sm/gpgsm.c:2160 #: sm/gpgsm.c:2190 sm/gpgsm.c:2228 sm/qualified.c:66 dirmngr/certcache.c:420 @@ -480,33 +480,33 @@ msgid "csh-style command output" msgstr "csh-style command output" -#: agent/gpg-agent.c:185 g10/gpg.c:579 scd/scdaemon.c:126 sm/gpgsm.c:410 +#: agent/gpg-agent.c:185 g10/gpg.c:580 scd/scdaemon.c:126 sm/gpgsm.c:410 #: dirmngr/dirmngr.c:192 msgid "|FILE|read options from FILE" msgstr "|FILE|read options from FILE" -#: agent/gpg-agent.c:189 g10/gpg.c:566 scd/scdaemon.c:130 sm/gpgsm.c:259 +#: agent/gpg-agent.c:189 g10/gpg.c:567 scd/scdaemon.c:130 sm/gpgsm.c:259 #: dirmngr/dirmngr.c:196 msgid "Options controlling the diagnostic output" msgstr "Options controlling the diagnostic output" -#: agent/gpg-agent.c:191 g10/gpg.c:568 g10/gpgv.c:78 kbx/kbxutil.c:88 +#: agent/gpg-agent.c:191 g10/gpg.c:569 g10/gpgv.c:78 kbx/kbxutil.c:88 #: scd/scdaemon.c:132 sm/gpgsm.c:261 dirmngr/dirmngr-client.c:70 #: dirmngr/dirmngr.c:198 tools/gpg-connect-agent.c:78 tools/gpgconf.c:110 msgid "verbose" msgstr "verbose" -#: agent/gpg-agent.c:192 g10/gpg.c:570 g10/gpgv.c:79 kbx/kbxutil.c:89 +#: agent/gpg-agent.c:192 g10/gpg.c:571 g10/gpgv.c:79 kbx/kbxutil.c:89 #: scd/scdaemon.c:133 sm/gpgsm.c:263 dirmngr/dirmngr-client.c:71 #: dirmngr/dirmngr.c:199 msgid "be somewhat more quiet" msgstr "be somewhat more quiet" -#: agent/gpg-agent.c:200 g10/gpg.c:583 sm/gpgsm.c:276 dirmngr/dirmngr.c:209 +#: agent/gpg-agent.c:200 g10/gpg.c:584 sm/gpgsm.c:276 dirmngr/dirmngr.c:209 msgid "|FILE|write server mode logs to FILE" msgstr "|FILE|write server mode logs to FILE" -#: agent/gpg-agent.c:204 g10/gpg.c:589 scd/scdaemon.c:147 sm/gpgsm.c:283 +#: agent/gpg-agent.c:204 g10/gpg.c:590 scd/scdaemon.c:147 sm/gpgsm.c:283 #: dirmngr/dirmngr.c:213 msgid "Options controlling the configuration" msgstr "Options controlling the configuration" @@ -543,7 +543,7 @@ msgid "enable putty support" msgstr "enable putty support" -#: agent/gpg-agent.c:237 g10/gpg.c:831 scd/scdaemon.c:175 sm/gpgsm.c:369 +#: agent/gpg-agent.c:237 g10/gpg.c:832 scd/scdaemon.c:175 sm/gpgsm.c:369 msgid "Options controlling the security" msgstr "Options controlling the security" @@ -639,7 +639,7 @@ #. reporting address. This is so that we can change the #. reporting address without breaking the translations. #: agent/gpg-agent.c:563 agent/preset-passphrase.c:100 agent/protect-tool.c:155 -#: g10/gpg.c:1108 g10/gpgv.c:149 kbx/kbxutil.c:113 scd/scdaemon.c:313 +#: g10/gpg.c:1117 g10/gpgv.c:149 kbx/kbxutil.c:113 scd/scdaemon.c:313 #: sm/gpgsm.c:600 dirmngr/dirmngr-client.c:168 dirmngr/dirmngr.c:458 #: tools/gpg-connect-agent.c:205 tools/gpgconf.c:154 #: tools/gpg-check-pattern.c:143 @@ -658,26 +658,26 @@ "Syntax: @GPG_AGENT@ [options] [command [args]]\n" "Secret key management for @GNUPG@\n" -#: agent/gpg-agent.c:619 g10/gpg.c:1304 scd/scdaemon.c:385 sm/gpgsm.c:748 +#: agent/gpg-agent.c:619 g10/gpg.c:1313 scd/scdaemon.c:385 sm/gpgsm.c:748 #: dirmngr/dirmngr.c:542 #, c-format msgid "invalid debug-level '%s' given\n" msgstr "invalid debug-level ‘%s’ given\n" -#: agent/gpg-agent.c:988 g10/gpg.c:3810 g10/gpg.c:3834 sm/gpgsm.c:1585 +#: agent/gpg-agent.c:988 g10/gpg.c:3830 g10/gpg.c:3854 sm/gpgsm.c:1585 #: sm/gpgsm.c:1591 #, c-format msgid "selected digest algorithm is invalid\n" msgstr "selected digest algorithm is invalid\n" #: agent/gpg-agent.c:1216 agent/gpg-agent.c:2029 common/argparse.c:1766 -#: common/argparse.c:1858 g10/gpg.c:2517 scd/scdaemon.c:547 sm/gpgsm.c:1007 +#: common/argparse.c:1858 g10/gpg.c:2526 scd/scdaemon.c:547 sm/gpgsm.c:1007 #: dirmngr/dirmngr.c:1081 dirmngr/dirmngr.c:1937 #, c-format msgid "reading options from '%s'\n" msgstr "reading options from ‘%s’\n" -#: agent/gpg-agent.c:1332 g10/gpg.c:3751 scd/scdaemon.c:671 sm/gpgsm.c:1522 +#: agent/gpg-agent.c:1332 g10/gpg.c:3769 scd/scdaemon.c:671 sm/gpgsm.c:1522 #: dirmngr/dirmngr.c:1190 tools/gpg-connect-agent.c:1244 tools/gpgconf.c:677 #, c-format msgid "Note: '%s' is not considered an option\n" @@ -807,7 +807,7 @@ "Syntax: gpg-preset-passphrase [options] KEYGRIP\n" "Password cache maintenance\n" -#: agent/protect-tool.c:108 g10/gpg.c:441 kbx/kbxutil.c:71 sm/gpgsm.c:210 +#: agent/protect-tool.c:108 g10/gpg.c:442 kbx/kbxutil.c:71 sm/gpgsm.c:210 #: dirmngr/dirmngr.c:171 tools/gpgconf.c:80 msgid "" "@Commands:\n" @@ -1036,7 +1036,7 @@ msgid "secret key parts are not available\n" msgstr "secret key parts are not available\n" -#: agent/cvt-openpgp.c:344 g10/card-util.c:1556 +#: agent/cvt-openpgp.c:344 g10/card-util.c:1555 #, c-format msgid "public key algorithm %d (%s) is not supported\n" msgstr "public key algorithm %d (%s) is not supported\n" @@ -1191,7 +1191,7 @@ msgid "out of core while allocating %lu bytes" msgstr "out of core while allocating %lu bytes" -#: common/miscellaneous.c:115 g10/card-util.c:911 tools/no-libgcrypt.c:30 +#: common/miscellaneous.c:115 g10/card-util.c:910 tools/no-libgcrypt.c:30 #, c-format msgid "error allocating enough memory: %s\n" msgstr "error allocating enough memory: %s\n" @@ -1304,7 +1304,7 @@ msgstr "algorithm: %s" #: common/audit.c:774 common/audit.c:776 common/audit.c:921 common/audit.c:923 -#: scd/app-openpgp.c:3557 +#: scd/app-openpgp.c:3566 #, c-format msgid "unsupported algorithm: %s" msgstr "unsupported algorithm: %s" @@ -1379,11 +1379,11 @@ msgid "Root certificate trustworthy" msgstr "Root certificate trustworthy" -#: common/audit.c:1112 sm/certchain.c:1235 +#: common/audit.c:1112 sm/certchain.c:1236 msgid "no CRL found for certificate" msgstr "no CRL found for certificate" -#: common/audit.c:1115 sm/certchain.c:1245 +#: common/audit.c:1115 sm/certchain.c:1246 msgid "the available CRL is too old" msgstr "the available CRL is too old" @@ -1506,7 +1506,7 @@ msgid "missing argument for option \"%.50s\"\n" msgstr "missing argument for option “%.50s”\n" -#: common/argparse.c:558 g10/gpg.c:3525 +#: common/argparse.c:558 g10/gpg.c:3543 #, c-format msgid "invalid argument for option \"%.50s\"\n" msgstr "invalid argument for option “%.50s”\n" @@ -1605,92 +1605,92 @@ msgid "%s is too old (need %s, have %s)\n" msgstr "%s is too old (need %s, have %s)\n" -#: g10/armor.c:423 +#: g10/armor.c:424 #, c-format msgid "armor: %s\n" msgstr "armor: %s\n" -#: g10/armor.c:462 +#: g10/armor.c:463 #, c-format msgid "invalid armor header: " msgstr "invalid armor header: " -#: g10/armor.c:473 +#: g10/armor.c:474 #, c-format msgid "armor header: " msgstr "armor header: " -#: g10/armor.c:486 +#: g10/armor.c:487 #, c-format msgid "invalid clearsig header\n" msgstr "invalid clearsig header\n" -#: g10/armor.c:499 +#: g10/armor.c:500 #, c-format msgid "unknown armor header: " msgstr "unknown armor header: " -#: g10/armor.c:552 +#: g10/armor.c:553 #, c-format msgid "nested clear text signatures\n" msgstr "nested clear text signatures\n" -#: g10/armor.c:687 +#: g10/armor.c:688 #, c-format msgid "unexpected armor: " msgstr "unexpected armor: " -#: g10/armor.c:700 +#: g10/armor.c:701 #, c-format msgid "invalid dash escaped line: " msgstr "invalid dash escaped line: " -#: g10/armor.c:872 g10/armor.c:1492 +#: g10/armor.c:873 g10/armor.c:1493 #, c-format msgid "invalid radix64 character %02X skipped\n" msgstr "invalid radix64 character %02X skipped\n" -#: g10/armor.c:915 +#: g10/armor.c:916 #, c-format msgid "premature eof (no CRC)\n" msgstr "premature eof (no CRC)\n" -#: g10/armor.c:949 +#: g10/armor.c:950 #, c-format msgid "premature eof (in CRC)\n" msgstr "premature eof (in CRC)\n" -#: g10/armor.c:957 +#: g10/armor.c:958 #, c-format msgid "malformed CRC\n" msgstr "malformed CRC\n" -#: g10/armor.c:961 g10/armor.c:1529 +#: g10/armor.c:962 g10/armor.c:1530 #, c-format msgid "CRC error; %06lX - %06lX\n" msgstr "CRC error; %06lX - %06lX\n" -#: g10/armor.c:981 +#: g10/armor.c:982 #, c-format msgid "premature eof (in trailer)\n" msgstr "premature eof (in trailer)\n" -#: g10/armor.c:985 +#: g10/armor.c:986 #, c-format msgid "error in trailer line\n" msgstr "error in trailer line\n" -#: g10/armor.c:1305 +#: g10/armor.c:1306 #, c-format msgid "no valid OpenPGP data found.\n" msgstr "no valid OpenPGP data found.\n" -#: g10/armor.c:1310 +#: g10/armor.c:1311 #, c-format msgid "invalid armor: line longer than %d characters\n" msgstr "invalid armor: line longer than %d characters\n" -#: g10/armor.c:1314 +#: g10/armor.c:1315 #, c-format msgid "" "quoted printable character in armor - probably a buggy MTA has been used\n" @@ -1824,23 +1824,23 @@ msgid "server uses an invalid certificate" msgstr "server uses an invalid certificate" -#: g10/call-dirmngr.c:462 g10/gpg.c:4458 +#: g10/call-dirmngr.c:462 g10/gpg.c:4478 #, c-format msgid "Note: %s\n" msgstr "Note: %s\n" -#: g10/card-util.c:86 g10/card-util.c:366 g10/card-util.c:1918 +#: g10/card-util.c:86 g10/card-util.c:366 g10/card-util.c:1917 #, c-format msgid "OpenPGP card not available: %s\n" msgstr "OpenPGP card not available: %s\n" -#: g10/card-util.c:91 g10/card-util.c:1924 +#: g10/card-util.c:91 g10/card-util.c:1923 #, c-format msgid "OpenPGP card no. %s detected\n" msgstr "OpenPGP card no. %s detected\n" -#: g10/card-util.c:97 g10/card-util.c:2253 g10/delkey.c:160 g10/keyedit.c:1423 -#: g10/keygen.c:4466 g10/revoke.c:214 g10/revoke.c:636 +#: g10/card-util.c:97 g10/card-util.c:2252 g10/delkey.c:160 g10/keyedit.c:1423 +#: g10/keygen.c:4520 g10/revoke.c:214 g10/revoke.c:636 #, c-format msgid "can't do this in batch mode\n" msgstr "can't do this in batch mode\n" @@ -1850,14 +1850,14 @@ msgid "This command is only available for version 2 cards\n" msgstr "This command is only available for version 2 cards\n" -#: g10/card-util.c:107 scd/app-openpgp.c:2866 +#: g10/card-util.c:107 scd/app-openpgp.c:2869 #, c-format msgid "Reset Code not or not anymore available\n" msgstr "Reset Code not or not anymore available\n" -#: g10/card-util.c:140 g10/card-util.c:1442 g10/card-util.c:1704 -#: g10/card-util.c:1796 g10/keyedit.c:394 g10/keyedit.c:415 g10/keyedit.c:429 -#: g10/keygen.c:1808 g10/keygen.c:1980 g10/keygen.c:2186 g10/keygen.c:2477 +#: g10/card-util.c:140 g10/card-util.c:1441 g10/card-util.c:1703 +#: g10/card-util.c:1795 g10/keyedit.c:394 g10/keyedit.c:415 g10/keyedit.c:429 +#: g10/keygen.c:1862 g10/keygen.c:2034 g10/keygen.c:2240 g10/keygen.c:2531 #: sm/certreqgen-ui.c:165 sm/certreqgen-ui.c:291 sm/certreqgen-ui.c:325 msgid "Your selection? " msgstr "Your selection? " @@ -1907,79 +1907,79 @@ msgid "Error: Combined name too long (limit is %d characters).\n" msgstr "Error: Combined name too long (limit is %d characters).\n" -#: g10/card-util.c:826 +#: g10/card-util.c:825 msgid "URL to retrieve public key: " msgstr "URL to retrieve public key: " -#: g10/card-util.c:920 g10/decrypt-data.c:509 g10/import.c:399 g10/import.c:746 -#: g10/import.c:798 dirmngr/crlcache.c:655 dirmngr/crlcache.c:660 +#: g10/card-util.c:919 g10/decrypt-data.c:509 g10/import.c:400 g10/import.c:747 +#: g10/import.c:799 dirmngr/crlcache.c:655 dirmngr/crlcache.c:660 #: dirmngr/crlcache.c:914 dirmngr/crlcache.c:920 dirmngr/dirmngr.c:1748 #: tools/gpgconf.c:483 tools/gpgconf.c:529 #, c-format msgid "error reading '%s': %s\n" msgstr "error reading '%s': %s\n" -#: g10/card-util.c:953 g10/decrypt-data.c:512 g10/export.c:2467 +#: g10/card-util.c:952 g10/decrypt-data.c:512 g10/export.c:2586 #: dirmngr/crlcache.c:925 #, c-format msgid "error writing '%s': %s\n" msgstr "error writing '%s': %s\n" -#: g10/card-util.c:980 +#: g10/card-util.c:979 msgid "Login data (account name): " msgstr "Login data (account name): " -#: g10/card-util.c:1018 +#: g10/card-util.c:1017 msgid "Private DO data: " msgstr "Private DO data: " -#: g10/card-util.c:1103 +#: g10/card-util.c:1102 msgid "Language preferences: " msgstr "Language preferences: " -#: g10/card-util.c:1111 +#: g10/card-util.c:1110 msgid "Error: invalid length of preference string.\n" msgstr "Error: invalid length of preference string.\n" -#: g10/card-util.c:1120 +#: g10/card-util.c:1119 msgid "Error: invalid characters in preference string.\n" msgstr "Error: invalid characters in preference string.\n" -#: g10/card-util.c:1142 +#: g10/card-util.c:1141 msgid "Salutation (M = Mr., F = Ms., or space): " msgstr "Salutation (M = Mr., F = Ms., or space): " -#: g10/card-util.c:1156 +#: g10/card-util.c:1155 msgid "Error: invalid response.\n" msgstr "Error: invalid response.\n" -#: g10/card-util.c:1178 +#: g10/card-util.c:1177 msgid "CA fingerprint: " msgstr "CA fingerprint: " -#: g10/card-util.c:1201 +#: g10/card-util.c:1200 msgid "Error: invalid formatted fingerprint.\n" msgstr "Error: invalid formatted fingerprint.\n" -#: g10/card-util.c:1252 +#: g10/card-util.c:1251 #, c-format msgid "key operation not possible: %s\n" msgstr "key operation not possible: %s\n" -#: g10/card-util.c:1253 +#: g10/card-util.c:1252 msgid "not an OpenPGP card" msgstr "not an OpenPGP card" -#: g10/card-util.c:1266 g10/keygen.c:4486 g10/keygen.c:5562 +#: g10/card-util.c:1265 g10/keygen.c:4540 g10/keygen.c:5616 #, c-format msgid "error getting current key info: %s\n" msgstr "error getting current key info: %s\n" -#: g10/card-util.c:1351 +#: g10/card-util.c:1350 msgid "Replace existing key? (y/N) " msgstr "Replace existing key? (y/N) " -#: g10/card-util.c:1368 +#: g10/card-util.c:1367 msgid "" "Note: There is no guarantee that the card supports the requested size.\n" " If the key generation does not succeed, please check the\n" @@ -1989,97 +1989,97 @@ " If the key generation does not succeed, please check the\n" " documentation of your card to see what sizes are allowed.\n" -#: g10/card-util.c:1390 g10/keygen.c:2363 sm/certreqgen-ui.c:179 +#: g10/card-util.c:1389 g10/keygen.c:2417 sm/certreqgen-ui.c:179 #, c-format msgid "What keysize do you want? (%u) " msgstr "What keysize do you want? (%u) " -#: g10/card-util.c:1400 g10/keygen.c:2286 g10/keygen.c:2318 +#: g10/card-util.c:1399 g10/keygen.c:2340 g10/keygen.c:2372 #: sm/certreqgen-ui.c:194 #, c-format msgid "rounded up to %u bits\n" msgstr "rounded up to %u bits\n" -#: g10/card-util.c:1408 g10/keygen.c:2371 sm/certreqgen-ui.c:184 +#: g10/card-util.c:1407 g10/keygen.c:2425 sm/certreqgen-ui.c:184 #, c-format msgid "%s keysizes must be in the range %u-%u\n" msgstr "%s keysizes must be in the range %u-%u\n" -#: g10/card-util.c:1427 +#: g10/card-util.c:1426 msgid "Changing card key attribute for: " msgstr "Changing card key attribute for: " -#: g10/card-util.c:1429 +#: g10/card-util.c:1428 msgid "Signature key\n" msgstr "Signature key\n" -#: g10/card-util.c:1431 +#: g10/card-util.c:1430 msgid "Encryption key\n" msgstr "Encryption key\n" -#: g10/card-util.c:1433 +#: g10/card-util.c:1432 msgid "Authentication key\n" msgstr "Authentication key\n" -#: g10/card-util.c:1435 g10/keygen.c:1926 sm/certreqgen-ui.c:157 +#: g10/card-util.c:1434 g10/keygen.c:1980 sm/certreqgen-ui.c:157 msgid "Please select what kind of key you want:\n" msgstr "Please select what kind of key you want:\n" -#: g10/card-util.c:1436 sm/certreqgen-ui.c:158 +#: g10/card-util.c:1435 sm/certreqgen-ui.c:158 #, c-format msgid " (%d) RSA\n" msgstr " (%d) RSA\n" -#: g10/card-util.c:1437 +#: g10/card-util.c:1436 #, c-format msgid " (%d) ECC\n" msgstr " (%d) ECC\n" -#: g10/card-util.c:1449 g10/card-util.c:1716 g10/card-util.c:1816 -#: g10/keyedit.c:900 g10/keygen.c:1834 g10/keygen.c:1862 g10/keygen.c:1987 -#: g10/keygen.c:2222 g10/keygen.c:2505 g10/revoke.c:838 +#: g10/card-util.c:1448 g10/card-util.c:1715 g10/card-util.c:1815 +#: g10/keyedit.c:900 g10/keygen.c:1888 g10/keygen.c:1916 g10/keygen.c:2041 +#: g10/keygen.c:2276 g10/keygen.c:2559 g10/revoke.c:838 msgid "Invalid selection.\n" msgstr "Invalid selection.\n" -#: g10/card-util.c:1522 +#: g10/card-util.c:1521 #, c-format msgid "The card will now be re-configured to generate a key of %u bits\n" msgstr "The card will now be re-configured to generate a key of %u bits\n" -#: g10/card-util.c:1527 +#: g10/card-util.c:1526 #, c-format msgid "The card will now be re-configured to generate a key of type: %s\n" msgstr "The card will now be re-configured to generate a key of type: %s\n" -#: g10/card-util.c:1563 +#: g10/card-util.c:1562 #, c-format msgid "error changing key attribute for key %d: %s\n" msgstr "error changing key attribute for key %d: %s\n" -#: g10/card-util.c:1579 g10/card-util.c:2106 +#: g10/card-util.c:1578 g10/card-util.c:2105 #, c-format msgid "error getting card info: %s\n" msgstr "error getting card info: %s\n" -#: g10/card-util.c:1585 g10/card-util.c:1930 g10/card-util.c:2112 +#: g10/card-util.c:1584 g10/card-util.c:1929 g10/card-util.c:2111 #, c-format msgid "This command is not supported by this card\n" msgstr "This command is not supported by this card\n" -#: g10/card-util.c:1631 +#: g10/card-util.c:1630 msgid "Make off-card backup of encryption key? (Y/n) " msgstr "Make off-card backup of encryption key? (Y/n) " -#: g10/card-util.c:1645 +#: g10/card-util.c:1644 #, c-format msgid "Note: keys are already stored on the card!\n" msgstr "Note: keys are already stored on the card!\n" -#: g10/card-util.c:1648 +#: g10/card-util.c:1647 msgid "Replace existing keys? (y/N) " msgstr "Replace existing keys? (y/N) " -#: g10/card-util.c:1660 +#: g10/card-util.c:1659 #, c-format msgid "" "Please note that the factory settings of the PINs are\n" @@ -2090,142 +2090,142 @@ " PIN = ‘%s’ Admin PIN = ‘%s’\n" "You should change them using the command --change-pin\n" -#: g10/card-util.c:1695 +#: g10/card-util.c:1694 msgid "Please select the type of key to generate:\n" msgstr "Please select the type of key to generate:\n" -#: g10/card-util.c:1697 g10/card-util.c:1787 +#: g10/card-util.c:1696 g10/card-util.c:1786 msgid " (1) Signature key\n" msgstr " (1) Signature key\n" -#: g10/card-util.c:1698 g10/card-util.c:1789 +#: g10/card-util.c:1697 g10/card-util.c:1788 msgid " (2) Encryption key\n" msgstr " (2) Encryption key\n" -#: g10/card-util.c:1699 g10/card-util.c:1791 +#: g10/card-util.c:1698 g10/card-util.c:1790 msgid " (3) Authentication key\n" msgstr " (3) Authentication key\n" -#: g10/card-util.c:1784 +#: g10/card-util.c:1783 msgid "Please select where to store the key:\n" msgstr "Please select where to store the key:\n" -#: g10/card-util.c:1830 +#: g10/card-util.c:1829 #, c-format msgid "KEYTOCARD failed: %s\n" msgstr "KEYTOCARD failed: %s\n" -#: g10/card-util.c:1935 +#: g10/card-util.c:1934 #, c-format msgid "Note: This command destroys all keys stored on the card!\n" msgstr "Note: This command destroys all keys stored on the card!\n" -#: g10/card-util.c:1938 +#: g10/card-util.c:1937 msgid "Continue? (y/N) " msgstr "Continue? (y/N) " -#: g10/card-util.c:1943 +#: g10/card-util.c:1942 msgid "Really do a factory reset? (enter \"yes\") " msgstr "Really do a factory reset? (enter “yes”) " -#: g10/card-util.c:2129 +#: g10/card-util.c:2128 #, c-format msgid "error for setup KDF: %s\n" msgstr "error for setup KDF: %s\n" -#: g10/card-util.c:2158 g10/keyedit.c:1260 +#: g10/card-util.c:2157 g10/keyedit.c:1260 msgid "quit this menu" msgstr "quit this menu" -#: g10/card-util.c:2160 +#: g10/card-util.c:2159 msgid "show admin commands" msgstr "show admin commands" -#: g10/card-util.c:2161 g10/keyedit.c:1263 +#: g10/card-util.c:2160 g10/keyedit.c:1263 msgid "show this help" msgstr "show this help" -#: g10/card-util.c:2163 +#: g10/card-util.c:2162 msgid "list all available data" msgstr "list all available data" -#: g10/card-util.c:2166 +#: g10/card-util.c:2165 msgid "change card holder's name" msgstr "change card holder's name" -#: g10/card-util.c:2167 +#: g10/card-util.c:2166 msgid "change URL to retrieve key" msgstr "change URL to retrieve key" -#: g10/card-util.c:2168 +#: g10/card-util.c:2167 msgid "fetch the key specified in the card URL" msgstr "fetch the key specified in the card URL" -#: g10/card-util.c:2169 +#: g10/card-util.c:2168 msgid "change the login name" msgstr "change the login name" -#: g10/card-util.c:2170 +#: g10/card-util.c:2169 msgid "change the language preferences" msgstr "change the language preferences" -#: g10/card-util.c:2171 +#: g10/card-util.c:2170 msgid "change card holder's salutation" msgstr "change card holder's salutation" -#: g10/card-util.c:2173 +#: g10/card-util.c:2172 msgid "change a CA fingerprint" msgstr "change a CA fingerprint" -#: g10/card-util.c:2174 +#: g10/card-util.c:2173 msgid "toggle the signature force PIN flag" msgstr "toggle the signature force PIN flag" -#: g10/card-util.c:2175 +#: g10/card-util.c:2174 msgid "generate new keys" msgstr "generate new keys" -#: g10/card-util.c:2176 +#: g10/card-util.c:2175 msgid "menu to change or unblock the PIN" msgstr "menu to change or unblock the PIN" -#: g10/card-util.c:2177 +#: g10/card-util.c:2176 msgid "verify the PIN and list all data" msgstr "verify the PIN and list all data" -#: g10/card-util.c:2178 +#: g10/card-util.c:2177 msgid "unblock the PIN using a Reset Code" msgstr "unblock the PIN using a Reset Code" -#: g10/card-util.c:2179 +#: g10/card-util.c:2178 msgid "destroy all keys and data" msgstr "destroy all keys and data" -#: g10/card-util.c:2180 +#: g10/card-util.c:2179 msgid "setup KDF for PIN authentication" msgstr "setup KDF for PIN authentication" -#: g10/card-util.c:2181 +#: g10/card-util.c:2180 msgid "change the key attribute" msgstr "change the key attribute" -#: g10/card-util.c:2305 +#: g10/card-util.c:2304 msgid "gpg/card> " msgstr "gpg/card> " -#: g10/card-util.c:2346 +#: g10/card-util.c:2345 msgid "Admin-only command\n" msgstr "Admin-only command\n" -#: g10/card-util.c:2377 +#: g10/card-util.c:2376 msgid "Admin commands are allowed\n" msgstr "Admin commands are allowed\n" -#: g10/card-util.c:2379 +#: g10/card-util.c:2378 msgid "Admin commands are not allowed\n" msgstr "Admin commands are not allowed\n" -#: g10/card-util.c:2482 g10/keyedit.c:2229 +#: g10/card-util.c:2481 g10/keyedit.c:2229 msgid "Invalid command (try \"help\")\n" msgstr "Invalid command (try “help”)\n" @@ -2234,21 +2234,21 @@ msgid "--output doesn't work for this command\n" msgstr "--output doesn't work for this command\n" -#: g10/decrypt.c:247 g10/gpg.c:5155 g10/keyring.c:399 g10/keyring.c:750 +#: g10/decrypt.c:247 g10/gpg.c:5175 g10/keyring.c:399 g10/keyring.c:750 #, c-format msgid "can't open '%s'\n" msgstr "can't open ‘%s’\n" -#: g10/delkey.c:83 g10/export.c:1947 g10/export.c:2230 g10/export.c:2351 -#: g10/getkey.c:2108 g10/gpg.c:5100 g10/keyedit.c:1445 g10/keyedit.c:2335 +#: g10/delkey.c:83 g10/export.c:2035 g10/export.c:2349 g10/export.c:2470 +#: g10/getkey.c:2108 g10/gpg.c:5120 g10/keyedit.c:1445 g10/keyedit.c:2335 #: g10/keyedit.c:2637 g10/keyedit.c:4600 g10/keylist.c:693 g10/keyserver.c:1092 #: g10/revoke.c:230 g10/tofu.c:2165 #, c-format msgid "key \"%s\" not found: %s\n" msgstr "key “%s” not found: %s\n" -#: g10/delkey.c:92 g10/export.c:2015 g10/getkey.c:2116 g10/getkey.c:4517 -#: g10/gpg.c:5109 g10/keyedit.c:2308 g10/keyserver.c:1110 g10/revoke.c:236 +#: g10/delkey.c:92 g10/export.c:2103 g10/getkey.c:2116 g10/getkey.c:4517 +#: g10/gpg.c:5129 g10/keyedit.c:2308 g10/keyserver.c:1110 g10/revoke.c:236 #: g10/revoke.c:663 g10/tofu.c:2173 #, c-format msgid "error reading keyblock: %s\n" @@ -2365,13 +2365,13 @@ msgid "WARNING: '%s' is an empty file\n" msgstr "WARNING: ‘%s’ is an empty file\n" -#: g10/encrypt.c:446 g10/encrypt.c:521 g10/decrypt-data.c:266 g10/gpg.c:3959 -#: g10/gpg.c:3999 sm/decrypt.c:826 sm/encrypt.c:416 sm/gpgsm.c:1609 +#: g10/encrypt.c:446 g10/encrypt.c:521 g10/decrypt-data.c:266 g10/gpg.c:3979 +#: g10/gpg.c:4019 sm/decrypt.c:826 sm/encrypt.c:416 sm/gpgsm.c:1609 #, c-format msgid "cipher algorithm '%s' may not be used in %s mode\n" msgstr "cipher algorithm ‘%s’ may not be used in %s mode\n" -#: g10/encrypt.c:455 g10/gpg.c:3965 g10/gpg.c:4011 g10/sig-check.c:175 +#: g10/encrypt.c:455 g10/gpg.c:3985 g10/gpg.c:4031 g10/sig-check.c:175 #: g10/sign.c:391 sm/gpgsm.c:1619 sm/gpgsm.c:1629 sm/sign.c:478 sm/verify.c:506 #, c-format msgid "digest algorithm '%s' may not be used in %s mode\n" @@ -2486,61 +2486,65 @@ msgid "WARNING: unable to remove temp directory '%s': %s\n" msgstr "WARNING: unable to remove temp directory '%s': %s\n" -#: g10/export.c:119 +#: g10/export.c:124 msgid "export signatures that are marked as local-only" msgstr "export signatures that are marked as local-only" -#: g10/export.c:121 +#: g10/export.c:126 msgid "export attribute user IDs (generally photo IDs)" msgstr "export attribute user IDs (generally photo IDs)" -#: g10/export.c:123 +#: g10/export.c:128 msgid "export revocation keys marked as \"sensitive\"" msgstr "export revocation keys marked as “sensitive”" -#: g10/export.c:125 +#: g10/export.c:130 msgid "remove unusable parts from key during export" msgstr "remove unusable parts from key during export" -#: g10/export.c:127 +#: g10/export.c:132 msgid "remove as much as possible from key during export" msgstr "remove as much as possible from key during export" -#: g10/export.c:133 +#: g10/export.c:138 +msgid "export only revocation certificates" +msgstr "export only revocation certificates" + +#: g10/export.c:141 msgid "use the GnuPG key backup format" msgstr "use the GnuPG key backup format" -#: g10/export.c:1291 +#: g10/export.c:1306 msgid " - skipped" msgstr " - skipped" -#: g10/export.c:1324 g10/import.c:2085 g10/openfile.c:200 g10/openfile.c:294 +#: g10/export.c:1339 g10/import.c:2089 g10/openfile.c:200 g10/openfile.c:294 #: g10/sign.c:1012 g10/sign.c:1326 #, c-format msgid "writing to '%s'\n" msgstr "writing to ‘%s’\n" -#: g10/export.c:1769 +#: g10/export.c:1784 #, c-format msgid "key %s: key material on-card - skipped\n" msgstr "key %s: key material on-card - skipped\n" -#: g10/export.c:1964 +#: g10/export.c:2052 #, c-format msgid "exporting secret keys not allowed\n" msgstr "exporting secret keys not allowed\n" -#: g10/export.c:2041 +#: g10/export.c:2129 #, c-format msgid "key %s: PGP 2.x style key - skipped\n" msgstr "key %s: PGP 2.x style key - skipped\n" -#: g10/export.c:2135 +#: g10/export.c:2254 #, c-format msgid "WARNING: nothing exported\n" msgstr "WARNING: nothing exported\n" -#: g10/export.c:2432 g10/plaintext.c:153 g10/plaintext.c:162 +#: g10/export.c:2551 g10/plaintext.c:153 g10/plaintext.c:162 #: g10/plaintext.c:168 g10/plaintext.c:191 #, c-format msgid "error creating '%s': %s\n" @@ -2604,268 +2608,268 @@ msgid "using subkey %s instead of primary key %s\n" msgstr "using subkey %s instead of primary key %s\n" -#: g10/getkey.c:4446 g10/gpg.c:2137 +#: g10/getkey.c:4446 g10/gpg.c:2146 #, c-format msgid "valid values for option '%s':\n" msgstr "valid values for option '%s':\n" -#: g10/gpg.c:443 sm/gpgsm.c:212 +#: g10/gpg.c:444 sm/gpgsm.c:212 msgid "make a signature" msgstr "make a signature" -#: g10/gpg.c:444 +#: g10/gpg.c:445 msgid "make a clear text signature" msgstr "make a clear text signature" -#: g10/gpg.c:446 sm/gpgsm.c:214 +#: g10/gpg.c:447 sm/gpgsm.c:214 msgid "make a detached signature" msgstr "make a detached signature" -#: g10/gpg.c:447 sm/gpgsm.c:215 +#: g10/gpg.c:448 sm/gpgsm.c:215 msgid "encrypt data" msgstr "encrypt data" -#: g10/gpg.c:449 +#: g10/gpg.c:450 msgid "encryption only with symmetric cipher" msgstr "encryption only with symmetric cipher" -#: g10/gpg.c:451 sm/gpgsm.c:217 +#: g10/gpg.c:452 sm/gpgsm.c:217 msgid "decrypt data (default)" msgstr "decrypt data (default)" -#: g10/gpg.c:453 sm/gpgsm.c:218 +#: g10/gpg.c:454 sm/gpgsm.c:218 msgid "verify a signature" msgstr "verify a signature" -#: g10/gpg.c:455 sm/gpgsm.c:219 +#: g10/gpg.c:456 sm/gpgsm.c:219 msgid "list keys" msgstr "list keys" -#: g10/gpg.c:457 +#: g10/gpg.c:458 msgid "list keys and signatures" msgstr "list keys and signatures" -#: g10/gpg.c:460 +#: g10/gpg.c:461 msgid "list and check key signatures" msgstr "list and check key signatures" -#: g10/gpg.c:462 sm/gpgsm.c:224 +#: g10/gpg.c:463 sm/gpgsm.c:224 msgid "list keys and fingerprints" msgstr "list keys and fingerprints" -#: g10/gpg.c:463 sm/gpgsm.c:222 +#: g10/gpg.c:464 sm/gpgsm.c:222 msgid "list secret keys" msgstr "list secret keys" -#: g10/gpg.c:465 sm/gpgsm.c:225 +#: g10/gpg.c:466 sm/gpgsm.c:225 msgid "generate a new key pair" msgstr "generate a new key pair" -#: g10/gpg.c:468 +#: g10/gpg.c:469 msgid "quickly generate a new key pair" msgstr "quickly generate a new key pair" -#: g10/gpg.c:471 +#: g10/gpg.c:472 msgid "quickly add a new user-id" msgstr "quickly add a new user-id" -#: g10/gpg.c:476 +#: g10/gpg.c:477 msgid "quickly revoke a user-id" msgstr "quickly revoke a user-id" -#: g10/gpg.c:479 +#: g10/gpg.c:480 msgid "quickly set a new expiration date" msgstr "quickly set a new expiration date" -#: g10/gpg.c:482 +#: g10/gpg.c:483 msgid "full featured key pair generation" msgstr "full featured key pair generation" -#: g10/gpg.c:485 +#: g10/gpg.c:486 msgid "generate a revocation certificate" msgstr "generate a revocation certificate" -#: g10/gpg.c:488 sm/gpgsm.c:228 +#: g10/gpg.c:489 sm/gpgsm.c:228 msgid "remove keys from the public keyring" msgstr "remove keys from the public keyring" -#: g10/gpg.c:490 +#: g10/gpg.c:491 msgid "remove keys from the secret keyring" msgstr "remove keys from the secret keyring" -#: g10/gpg.c:492 +#: g10/gpg.c:493 msgid "quickly sign a key" msgstr "quickly sign a key" -#: g10/gpg.c:494 +#: g10/gpg.c:495 msgid "quickly sign a key locally" msgstr "quickly sign a key locally" -#: g10/gpg.c:496 +#: g10/gpg.c:497 msgid "quickly revoke a key signature" msgstr "quickly revoke a key signature" -#: g10/gpg.c:497 +#: g10/gpg.c:498 msgid "sign a key" msgstr "sign a key" -#: g10/gpg.c:498 +#: g10/gpg.c:499 msgid "sign a key locally" msgstr "sign a key locally" -#: g10/gpg.c:499 +#: g10/gpg.c:500 msgid "sign or edit a key" msgstr "sign or edit a key" -#: g10/gpg.c:501 sm/gpgsm.c:246 +#: g10/gpg.c:502 sm/gpgsm.c:246 msgid "change a passphrase" msgstr "change a passphrase" -#: g10/gpg.c:505 +#: g10/gpg.c:506 msgid "export keys" msgstr "export keys" -#: g10/gpg.c:506 +#: g10/gpg.c:507 msgid "export keys to a keyserver" msgstr "export keys to a keyserver" -#: g10/gpg.c:507 +#: g10/gpg.c:508 msgid "import keys from a keyserver" msgstr "import keys from a keyserver" -#: g10/gpg.c:510 +#: g10/gpg.c:511 msgid "search for keys on a keyserver" msgstr "search for keys on a keyserver" -#: g10/gpg.c:512 +#: g10/gpg.c:513 msgid "update all keys from a keyserver" msgstr "update all keys from a keyserver" -#: g10/gpg.c:520 +#: g10/gpg.c:521 msgid "import/merge keys" msgstr "import/merge keys" -#: g10/gpg.c:523 +#: g10/gpg.c:524 msgid "print the card status" msgstr "print the card status" -#: g10/gpg.c:524 +#: g10/gpg.c:525 msgid "change data on a card" msgstr "change data on a card" -#: g10/gpg.c:526 +#: g10/gpg.c:527 msgid "change a card's PIN" msgstr "change a card's PIN" -#: g10/gpg.c:538 +#: g10/gpg.c:539 msgid "update the trust database" msgstr "update the trust database" -#: g10/gpg.c:548 +#: g10/gpg.c:549 msgid "print message digests" msgstr "print message digests" -#: g10/gpg.c:552 sm/gpgsm.c:241 +#: g10/gpg.c:553 sm/gpgsm.c:241 msgid "run in server mode" msgstr "run in server mode" -#: g10/gpg.c:554 +#: g10/gpg.c:555 msgid "|VALUE|set the TOFU policy for a key" msgstr "|VALUE|set the TOFU policy for a key" -#: g10/gpg.c:594 +#: g10/gpg.c:595 msgid "|NAME|use NAME as default secret key" msgstr "|NAME|use NAME as default secret key" -#: g10/gpg.c:596 sm/gpgsm.c:332 +#: g10/gpg.c:597 sm/gpgsm.c:332 msgid "|NAME|encrypt to user ID NAME as well" msgstr "|NAME|encrypt to user ID NAME as well" -#: g10/gpg.c:604 +#: g10/gpg.c:605 msgid "|SPEC|set up email aliases" msgstr "|SPEC|set up email aliases" -#: g10/gpg.c:616 +#: g10/gpg.c:617 msgid "use strict OpenPGP behavior" msgstr "use strict OpenPGP behavior" -#: g10/gpg.c:641 kbx/kbxutil.c:90 sm/gpgsm.c:412 tools/gpgconf.c:112 +#: g10/gpg.c:642 kbx/kbxutil.c:90 sm/gpgsm.c:412 tools/gpgconf.c:112 msgid "do not make any changes" msgstr "do not make any changes" -#: g10/gpg.c:642 +#: g10/gpg.c:643 msgid "prompt before overwriting" msgstr "prompt before overwriting" -#: g10/gpg.c:689 sm/gpgsm.c:304 +#: g10/gpg.c:690 sm/gpgsm.c:304 msgid "Options controlling the input" msgstr "Options controlling the input" -#: g10/gpg.c:707 sm/gpgsm.c:314 +#: g10/gpg.c:708 sm/gpgsm.c:314 msgid "Options controlling the output" msgstr "Options controlling the output" -#: g10/gpg.c:709 sm/gpgsm.c:316 +#: g10/gpg.c:710 sm/gpgsm.c:316 msgid "create ascii armored output" msgstr "create ascii armored output" -#: g10/gpg.c:713 g10/gpgv.c:82 sm/gpgsm.c:321 +#: g10/gpg.c:714 g10/gpgv.c:82 sm/gpgsm.c:321 msgid "|FILE|write output to FILE" msgstr "|FILE|write output to FILE" -#: g10/gpg.c:726 +#: g10/gpg.c:727 msgid "use canonical text mode" msgstr "use canonical text mode" -#: g10/gpg.c:743 +#: g10/gpg.c:744 msgid "|N|set compress level to N (0 disables)" msgstr "|N|set compress level to N (0 disables)" -#: g10/gpg.c:750 sm/gpgsm.c:347 +#: g10/gpg.c:751 sm/gpgsm.c:347 msgid "Options controlling key import and export" msgstr "Options controlling key import and export" -#: g10/gpg.c:753 +#: g10/gpg.c:754 msgid "|MECHANISMS|use MECHANISMS to locate keys by mail address" msgstr "|MECHANISMS|use MECHANISMS to locate keys by mail address" -#: g10/gpg.c:756 +#: g10/gpg.c:757 msgid "import missing key from a signature" msgstr "import missing key from a signature" -#: g10/gpg.c:761 +#: g10/gpg.c:762 msgid "include the public key in signatures" msgstr "include the public key in signatures" -#: g10/gpg.c:764 sm/gpgsm.c:350 +#: g10/gpg.c:765 sm/gpgsm.c:350 msgid "disable all access to the dirmngr" msgstr "disable all access to the dirmngr" -#: g10/gpg.c:776 sm/gpgsm.c:357 +#: g10/gpg.c:777 sm/gpgsm.c:357 msgid "Options controlling key listings" msgstr "Options controlling key listings" -#: g10/gpg.c:805 sm/gpgsm.c:324 +#: g10/gpg.c:806 sm/gpgsm.c:324 msgid "Options to specify keys" msgstr "Options to specify keys" -#: g10/gpg.c:807 sm/gpgsm.c:326 +#: g10/gpg.c:808 sm/gpgsm.c:326 msgid "|USER-ID|encrypt for USER-ID" msgstr "|USER-ID|encrypt for USER-ID" -#: g10/gpg.c:815 sm/gpgsm.c:328 +#: g10/gpg.c:816 sm/gpgsm.c:328 msgid "|USER-ID|use USER-ID to sign or decrypt" msgstr "|USER-ID|use USER-ID to sign or decrypt" -#: g10/gpg.c:866 sm/gpgsm.c:396 +#: g10/gpg.c:867 sm/gpgsm.c:396 msgid "Options for unattended use" msgstr "Options for unattended use" -#: g10/gpg.c:885 sm/gpgsm.c:408 dirmngr/dirmngr.c:294 +#: g10/gpg.c:886 sm/gpgsm.c:408 dirmngr/dirmngr.c:294 msgid "Other options" msgstr "Other options" -#: g10/gpg.c:953 sm/gpgsm.c:440 +#: g10/gpg.c:955 sm/gpgsm.c:440 msgid "" "@\n" "(See the man page for a complete listing of all commands and options)\n" @@ -2873,7 +2877,7 @@ "@\n" "(See the man page for a complete listing of all commands and options)\n" -#: g10/gpg.c:956 +#: g10/gpg.c:958 msgid "" "@\n" "Examples:\n" @@ -2893,11 +2897,11 @@ " --list-keys [names] show keys\n" " --fingerprint [names] show fingerprints\n" -#: g10/gpg.c:1130 +#: g10/gpg.c:1139 msgid "Usage: @GPG@ [options] [files] (-h for help)" msgstr "Usage: @GPG@ [options] [files] (-h for help)" -#: g10/gpg.c:1133 +#: g10/gpg.c:1142 msgid "" "Syntax: @GPG@ [options] [files]\n" "Sign, check, encrypt or decrypt\n" @@ -2907,7 +2911,7 @@ "Sign, check, encrypt or decrypt\n" "Default operation depends on the input data\n" -#: g10/gpg.c:1144 sm/gpgsm.c:624 +#: g10/gpg.c:1153 sm/gpgsm.c:624 msgid "" "\n" "Supported algorithms:\n" @@ -2915,73 +2919,73 @@ "\n" "Supported algorithms:\n" -#: g10/gpg.c:1147 +#: g10/gpg.c:1156 msgid "Pubkey: " msgstr "Pubkey: " -#: g10/gpg.c:1154 g10/keyedit.c:3338 +#: g10/gpg.c:1163 g10/keyedit.c:3338 msgid "Cipher: " msgstr "Cipher: " -#: g10/gpg.c:1161 +#: g10/gpg.c:1170 msgid "Hash: " msgstr "Hash: " -#: g10/gpg.c:1168 g10/keyedit.c:3404 +#: g10/gpg.c:1177 g10/keyedit.c:3404 msgid "Compression: " msgstr "Compression: " -#: g10/gpg.c:1241 sm/gpgsm.c:698 +#: g10/gpg.c:1250 sm/gpgsm.c:698 #, c-format msgid "usage: %s [options] %s\n" msgstr "usage: %s [options] %s\n" -#: g10/gpg.c:1436 sm/gpgsm.c:791 +#: g10/gpg.c:1445 sm/gpgsm.c:791 #, c-format msgid "conflicting commands\n" msgstr "conflicting commands\n" -#: g10/gpg.c:1454 +#: g10/gpg.c:1463 #, c-format msgid "no = sign found in group definition '%s'\n" msgstr "no = sign found in group definition ‘%s’\n" -#: g10/gpg.c:1652 +#: g10/gpg.c:1661 #, c-format msgid "WARNING: unsafe ownership on homedir '%s'\n" msgstr "WARNING: unsafe ownership on homedir ‘%s’\n" -#: g10/gpg.c:1655 +#: g10/gpg.c:1664 #, c-format msgid "WARNING: unsafe ownership on configuration file '%s'\n" msgstr "WARNING: unsafe ownership on configuration file ‘%s’\n" -#: g10/gpg.c:1658 +#: g10/gpg.c:1667 #, c-format msgid "WARNING: unsafe ownership on extension '%s'\n" msgstr "WARNING: unsafe ownership on extension ‘%s’\n" -#: g10/gpg.c:1664 +#: g10/gpg.c:1673 #, c-format msgid "WARNING: unsafe permissions on homedir '%s'\n" msgstr "WARNING: unsafe permissions on homedir ‘%s’\n" -#: g10/gpg.c:1667 +#: g10/gpg.c:1676 #, c-format msgid "WARNING: unsafe permissions on configuration file '%s'\n" msgstr "WARNING: unsafe permissions on configuration file ‘%s’\n" -#: g10/gpg.c:1670 +#: g10/gpg.c:1679 #, c-format msgid "WARNING: unsafe permissions on extension '%s'\n" msgstr "WARNING: unsafe permissions on extension ‘%s’\n" -#: g10/gpg.c:1676 +#: g10/gpg.c:1685 #, c-format msgid "WARNING: unsafe enclosing directory ownership on homedir '%s'\n" msgstr "WARNING: unsafe enclosing directory ownership on homedir ‘%s’\n" -#: g10/gpg.c:1679 +#: g10/gpg.c:1688 #, c-format msgid "" "WARNING: unsafe enclosing directory ownership on configuration file '%s'\n" @@ -2989,19 +2993,19 @@ "WARNING: unsafe enclosing directory ownership on configuration file ‘" "%s’\n" -#: g10/gpg.c:1682 +#: g10/gpg.c:1691 #, c-format msgid "WARNING: unsafe enclosing directory ownership on extension '%s'\n" msgstr "" "WARNING: unsafe enclosing directory ownership on extension ‘%s’\n" -#: g10/gpg.c:1688 +#: g10/gpg.c:1697 #, c-format msgid "WARNING: unsafe enclosing directory permissions on homedir '%s'\n" msgstr "" "WARNING: unsafe enclosing directory permissions on homedir ‘%s’\n" -#: g10/gpg.c:1691 +#: g10/gpg.c:1700 #, c-format msgid "" "WARNING: unsafe enclosing directory permissions on configuration file '%s'\n" @@ -3009,451 +3013,451 @@ "WARNING: unsafe enclosing directory permissions on configuration file ‘" "%s’\n" -#: g10/gpg.c:1694 +#: g10/gpg.c:1703 #, c-format msgid "WARNING: unsafe enclosing directory permissions on extension '%s'\n" msgstr "" "WARNING: unsafe enclosing directory permissions on extension ‘%s’\n" -#: g10/gpg.c:1910 +#: g10/gpg.c:1919 #, c-format msgid "unknown configuration item '%s'\n" msgstr "unknown configuration item ‘%s’\n" -#: g10/gpg.c:2009 +#: g10/gpg.c:2018 msgid "display photo IDs during key listings" msgstr "display photo IDs during key listings" -#: g10/gpg.c:2011 +#: g10/gpg.c:2020 msgid "show key usage information during key listings" msgstr "show key usage information during key listings" -#: g10/gpg.c:2013 +#: g10/gpg.c:2022 msgid "show policy URLs during signature listings" msgstr "show policy URLs during signature listings" -#: g10/gpg.c:2015 +#: g10/gpg.c:2024 msgid "show all notations during signature listings" msgstr "show all notations during signature listings" -#: g10/gpg.c:2017 +#: g10/gpg.c:2026 msgid "show IETF standard notations during signature listings" msgstr "show IETF standard notations during signature listings" -#: g10/gpg.c:2021 +#: g10/gpg.c:2030 msgid "show user-supplied notations during signature listings" msgstr "show user-supplied notations during signature listings" -#: g10/gpg.c:2023 +#: g10/gpg.c:2032 msgid "show preferred keyserver URLs during signature listings" msgstr "show preferred keyserver URLs during signature listings" -#: g10/gpg.c:2025 +#: g10/gpg.c:2034 msgid "show user ID validity during key listings" msgstr "show user ID validity during key listings" -#: g10/gpg.c:2027 +#: g10/gpg.c:2036 msgid "show revoked and expired user IDs in key listings" msgstr "show revoked and expired user IDs in key listings" -#: g10/gpg.c:2029 +#: g10/gpg.c:2038 msgid "show revoked and expired subkeys in key listings" msgstr "show revoked and expired subkeys in key listings" -#: g10/gpg.c:2031 +#: g10/gpg.c:2040 msgid "show the keyring name in key listings" msgstr "show the keyring name in key listings" -#: g10/gpg.c:2033 +#: g10/gpg.c:2042 msgid "show expiration dates during signature listings" msgstr "show expiration dates during signature listings" -#: g10/gpg.c:2148 +#: g10/gpg.c:2157 #, c-format msgid "unknown TOFU policy '%s'\n" msgstr "unknown TOFU policy ‘%s’\n" -#: g10/gpg.c:2150 +#: g10/gpg.c:2159 #, c-format msgid "(use \"help\" to list choices)\n" msgstr "(use “help” to list choices)\n" -#: g10/gpg.c:2240 g10/keyedit.c:1719 +#: g10/gpg.c:2249 g10/keyedit.c:1719 #, c-format msgid "This command is not allowed while in %s mode.\n" msgstr "This command is not allowed while in %s mode.\n" -#: g10/gpg.c:2878 g10/gpg.c:3718 g10/gpg.c:3730 +#: g10/gpg.c:2896 g10/gpg.c:3736 g10/gpg.c:3748 #, c-format msgid "Note: %s is not for normal use!\n" msgstr "Note: %s is not for normal use!\n" -#: g10/gpg.c:3053 g10/gpg.c:3065 +#: g10/gpg.c:3071 g10/gpg.c:3083 #, c-format msgid "'%s' is not a valid signature expiration\n" msgstr "‘%s’ is not a valid signature expiration\n" -#: g10/gpg.c:3087 +#: g10/gpg.c:3105 #, c-format msgid "\"%s\" is not a proper mail address\n" msgstr "“%s” is not a proper mail address\n" -#: g10/gpg.c:3119 sm/gpgsm.c:1121 +#: g10/gpg.c:3137 sm/gpgsm.c:1121 #, c-format msgid "invalid pinentry mode '%s'\n" msgstr "invalid pinentry mode ‘%s’\n" -#: g10/gpg.c:3125 sm/gpgsm.c:1127 +#: g10/gpg.c:3143 sm/gpgsm.c:1127 #, c-format msgid "invalid request origin '%s'\n" msgstr "invalid request origin ‘%s’\n" -#: g10/gpg.c:3179 +#: g10/gpg.c:3197 #, c-format msgid "'%s' is not a valid character set\n" msgstr "‘%s’ is not a valid character set\n" -#: g10/gpg.c:3201 g10/gpg.c:3415 g10/keyedit.c:5338 +#: g10/gpg.c:3219 g10/gpg.c:3433 g10/keyedit.c:5338 #, c-format msgid "could not parse keyserver URL\n" msgstr "could not parse keyserver URL\n" -#: g10/gpg.c:3219 +#: g10/gpg.c:3237 #, c-format msgid "%s:%d: invalid keyserver options\n" msgstr "%s:%d: invalid keyserver options\n" -#: g10/gpg.c:3222 +#: g10/gpg.c:3240 #, c-format msgid "invalid keyserver options\n" msgstr "invalid keyserver options\n" -#: g10/gpg.c:3229 +#: g10/gpg.c:3247 #, c-format msgid "%s:%d: invalid import options\n" msgstr "%s:%d: invalid import options\n" -#: g10/gpg.c:3232 +#: g10/gpg.c:3250 #, c-format msgid "invalid import options\n" msgstr "invalid import options\n" -#: g10/gpg.c:3238 g10/gpg.c:3253 +#: g10/gpg.c:3256 g10/gpg.c:3271 #, c-format msgid "invalid filter option: %s\n" msgstr "invalid filter option: %s\n" -#: g10/gpg.c:3244 +#: g10/gpg.c:3262 #, c-format msgid "%s:%d: invalid export options\n" msgstr "%s:%d: invalid export options\n" -#: g10/gpg.c:3247 +#: g10/gpg.c:3265 #, c-format msgid "invalid export options\n" msgstr "invalid export options\n" -#: g10/gpg.c:3259 +#: g10/gpg.c:3277 #, c-format msgid "%s:%d: invalid list options\n" msgstr "%s:%d: invalid list options\n" -#: g10/gpg.c:3262 +#: g10/gpg.c:3280 #, c-format msgid "invalid list options\n" msgstr "invalid list options\n" -#: g10/gpg.c:3270 +#: g10/gpg.c:3288 msgid "display photo IDs during signature verification" msgstr "display photo IDs during signature verification" -#: g10/gpg.c:3272 +#: g10/gpg.c:3290 msgid "show policy URLs during signature verification" msgstr "show policy URLs during signature verification" -#: g10/gpg.c:3274 +#: g10/gpg.c:3292 msgid "show all notations during signature verification" msgstr "show all notations during signature verification" -#: g10/gpg.c:3276 +#: g10/gpg.c:3294 msgid "show IETF standard notations during signature verification" msgstr "show IETF standard notations during signature verification" -#: g10/gpg.c:3280 +#: g10/gpg.c:3298 msgid "show user-supplied notations during signature verification" msgstr "show user-supplied notations during signature verification" -#: g10/gpg.c:3282 +#: g10/gpg.c:3300 msgid "show preferred keyserver URLs during signature verification" msgstr "show preferred keyserver URLs during signature verification" -#: g10/gpg.c:3284 +#: g10/gpg.c:3302 msgid "show user ID validity during signature verification" msgstr "show user ID validity during signature verification" -#: g10/gpg.c:3286 +#: g10/gpg.c:3304 msgid "show revoked and expired user IDs in signature verification" msgstr "show revoked and expired user IDs in signature verification" -#: g10/gpg.c:3288 +#: g10/gpg.c:3306 msgid "show only the primary user ID in signature verification" msgstr "show only the primary user ID in signature verification" -#: g10/gpg.c:3290 +#: g10/gpg.c:3308 msgid "validate signatures with PKA data" msgstr "validate signatures with PKA data" -#: g10/gpg.c:3292 +#: g10/gpg.c:3310 msgid "elevate the trust of signatures with valid PKA data" msgstr "elevate the trust of signatures with valid PKA data" -#: g10/gpg.c:3299 +#: g10/gpg.c:3317 #, c-format msgid "%s:%d: invalid verify options\n" msgstr "%s:%d: invalid verify options\n" -#: g10/gpg.c:3302 +#: g10/gpg.c:3320 #, c-format msgid "invalid verify options\n" msgstr "invalid verify options\n" -#: g10/gpg.c:3309 +#: g10/gpg.c:3327 #, c-format msgid "unable to set exec-path to %s\n" msgstr "unable to set exec-path to %s\n" -#: g10/gpg.c:3513 +#: g10/gpg.c:3531 #, c-format msgid "%s:%d: invalid auto-key-locate list\n" msgstr "%s:%d: invalid auto-key-locate list\n" -#: g10/gpg.c:3516 +#: g10/gpg.c:3534 #, c-format msgid "invalid auto-key-locate list\n" msgstr "invalid auto-key-locate list\n" -#: g10/gpg.c:3700 sm/gpgsm.c:1492 +#: g10/gpg.c:3718 sm/gpgsm.c:1492 #, c-format msgid "WARNING: program may create a core file!\n" msgstr "WARNING: program may create a core file!\n" -#: g10/gpg.c:3711 +#: g10/gpg.c:3729 #, c-format msgid "WARNING: %s overrides %s\n" msgstr "WARNING: %s overrides %s\n" -#: g10/gpg.c:3720 +#: g10/gpg.c:3738 #, c-format msgid "%s not allowed with %s!\n" msgstr "%s not allowed with %s!\n" -#: g10/gpg.c:3723 +#: g10/gpg.c:3741 #, c-format msgid "%s makes no sense with %s!\n" msgstr "%s makes no sense with %s!\n" -#: g10/gpg.c:3738 sm/gpgsm.c:1509 dirmngr/dirmngr.c:1205 +#: g10/gpg.c:3756 sm/gpgsm.c:1509 dirmngr/dirmngr.c:1205 #, c-format msgid "WARNING: running with faked system time: " msgstr "WARNING: running with faked system time: " -#: g10/gpg.c:3759 +#: g10/gpg.c:3777 #, c-format msgid "will not run with insecure memory due to %s\n" msgstr "will not run with insecure memory due to %s\n" -#: g10/gpg.c:3804 g10/gpg.c:3828 sm/gpgsm.c:1579 +#: g10/gpg.c:3824 g10/gpg.c:3848 sm/gpgsm.c:1579 #, c-format msgid "selected cipher algorithm is invalid\n" msgstr "selected cipher algorithm is invalid\n" -#: g10/gpg.c:3816 +#: g10/gpg.c:3836 #, c-format msgid "selected compression algorithm is invalid\n" msgstr "selected compression algorithm is invalid\n" -#: g10/gpg.c:3822 +#: g10/gpg.c:3842 #, c-format msgid "selected certification digest algorithm is invalid\n" msgstr "selected certification digest algorithm is invalid\n" -#: g10/gpg.c:3837 +#: g10/gpg.c:3857 #, c-format msgid "completes-needed must be greater than 0\n" msgstr "completes-needed must be greater than 0\n" -#: g10/gpg.c:3839 +#: g10/gpg.c:3859 #, c-format msgid "marginals-needed must be greater than 1\n" msgstr "marginals-needed must be greater than 1\n" -#: g10/gpg.c:3841 +#: g10/gpg.c:3861 #, c-format msgid "max-cert-depth must be in the range from 1 to 255\n" msgstr "max-cert-depth must be in the range from 1 to 255\n" -#: g10/gpg.c:3843 +#: g10/gpg.c:3863 #, c-format msgid "invalid default-cert-level; must be 0, 1, 2, or 3\n" msgstr "invalid default-cert-level; must be 0, 1, 2, or 3\n" -#: g10/gpg.c:3845 +#: g10/gpg.c:3865 #, c-format msgid "invalid min-cert-level; must be 1, 2, or 3\n" msgstr "invalid min-cert-level; must be 1, 2, or 3\n" -#: g10/gpg.c:3849 +#: g10/gpg.c:3869 #, c-format msgid "Note: simple S2K mode (0) is strongly discouraged\n" msgstr "Note: simple S2K mode (0) is strongly discouraged\n" -#: g10/gpg.c:3853 +#: g10/gpg.c:3873 #, c-format msgid "invalid S2K mode; must be 0, 1 or 3\n" msgstr "invalid S2K mode; must be 0, 1 or 3\n" -#: g10/gpg.c:3860 +#: g10/gpg.c:3880 #, c-format msgid "invalid default preferences\n" msgstr "invalid default preferences\n" -#: g10/gpg.c:3864 +#: g10/gpg.c:3884 #, c-format msgid "invalid personal cipher preferences\n" msgstr "invalid personal cipher preferences\n" -#: g10/gpg.c:3868 +#: g10/gpg.c:3888 #, c-format msgid "invalid personal digest preferences\n" msgstr "invalid personal digest preferences\n" -#: g10/gpg.c:3872 +#: g10/gpg.c:3892 #, c-format msgid "invalid personal compress preferences\n" msgstr "invalid personal compress preferences\n" -#: g10/gpg.c:3908 +#: g10/gpg.c:3928 #, c-format msgid "%s does not yet work with %s\n" msgstr "%s does not yet work with %s\n" -#: g10/gpg.c:3971 +#: g10/gpg.c:3991 #, c-format msgid "compression algorithm '%s' may not be used in %s mode\n" msgstr "compression algorithm ‘%s’ may not be used in %s mode\n" -#: g10/gpg.c:4115 +#: g10/gpg.c:4135 #, c-format msgid "failed to initialize the TrustDB: %s\n" msgstr "failed to initialize the TrustDB: %s\n" -#: g10/gpg.c:4127 +#: g10/gpg.c:4147 #, c-format msgid "WARNING: recipients (-r) given without using public key encryption\n" msgstr "WARNING: recipients (-r) given without using public key encryption\n" -#: g10/gpg.c:4199 +#: g10/gpg.c:4219 #, c-format msgid "symmetric encryption of '%s' failed: %s\n" msgstr "symmetric encryption of ‘%s’ failed: %s\n" -#: g10/gpg.c:4228 +#: g10/gpg.c:4248 #, c-format msgid "you cannot use --symmetric --encrypt with --s2k-mode 0\n" msgstr "you cannot use --symmetric --encrypt with --s2k-mode 0\n" -#: g10/gpg.c:4231 +#: g10/gpg.c:4251 #, c-format msgid "you cannot use --symmetric --encrypt in %s mode\n" msgstr "you cannot use --symmetric --encrypt in %s mode\n" -#: g10/gpg.c:4289 +#: g10/gpg.c:4309 #, c-format msgid "you cannot use --symmetric --sign --encrypt with --s2k-mode 0\n" msgstr "you cannot use --symmetric --sign --encrypt with --s2k-mode 0\n" -#: g10/gpg.c:4292 +#: g10/gpg.c:4312 #, c-format msgid "you cannot use --symmetric --sign --encrypt in %s mode\n" msgstr "you cannot use --symmetric --sign --encrypt in %s mode\n" -#: g10/gpg.c:4692 g10/keyserver.c:1648 +#: g10/gpg.c:4712 g10/keyserver.c:1648 #, c-format msgid "keyserver send failed: %s\n" msgstr "keyserver send failed: %s\n" -#: g10/gpg.c:4697 +#: g10/gpg.c:4717 #, c-format msgid "keyserver receive failed: %s\n" msgstr "keyserver receive failed: %s\n" -#: g10/gpg.c:4703 +#: g10/gpg.c:4723 #, c-format msgid "key export failed: %s\n" msgstr "key export failed: %s\n" -#: g10/gpg.c:4716 +#: g10/gpg.c:4736 #, c-format msgid "export as ssh key failed: %s\n" msgstr "export as ssh key failed: %s\n" -#: g10/gpg.c:4728 +#: g10/gpg.c:4748 #, c-format msgid "keyserver search failed: %s\n" msgstr "keyserver search failed: %s\n" -#: g10/gpg.c:4741 +#: g10/gpg.c:4761 #, c-format msgid "keyserver refresh failed: %s\n" msgstr "keyserver refresh failed: %s\n" -#: g10/gpg.c:4810 +#: g10/gpg.c:4830 #, c-format msgid "dearmoring failed: %s\n" msgstr "dearmoring failed: %s\n" -#: g10/gpg.c:4821 +#: g10/gpg.c:4841 #, c-format msgid "enarmoring failed: %s\n" msgstr "enarmoring failed: %s\n" -#: g10/gpg.c:4913 +#: g10/gpg.c:4933 #, c-format msgid "invalid hash algorithm '%s'\n" msgstr "invalid hash algorithm ‘%s’\n" -#: g10/gpg.c:5065 g10/tofu.c:2153 +#: g10/gpg.c:5085 g10/tofu.c:2153 #, c-format msgid "error parsing key specification '%s': %s\n" msgstr "error parsing key specification '%s': %s\n" -#: g10/gpg.c:5078 +#: g10/gpg.c:5098 #, c-format msgid "'%s' does not appear to be a valid key ID, fingerprint or keygrip\n" msgstr "" "‘%s’ does not appear to be a valid key ID, fingerprint or keygrip\n" -#: g10/gpg.c:5134 +#: g10/gpg.c:5154 #, c-format msgid "WARNING: no command supplied. Trying to guess what you mean ...\n" msgstr "WARNING: no command supplied. Trying to guess what you mean ...\n" -#: g10/gpg.c:5145 +#: g10/gpg.c:5165 #, c-format msgid "Go ahead and type your message ...\n" msgstr "Go ahead and type your message ...\n" -#: g10/gpg.c:5490 +#: g10/gpg.c:5510 #, c-format msgid "the given certification policy URL is invalid\n" msgstr "the given certification policy URL is invalid\n" -#: g10/gpg.c:5492 +#: g10/gpg.c:5512 #, c-format msgid "the given signature policy URL is invalid\n" msgstr "the given signature policy URL is invalid\n" -#: g10/gpg.c:5525 +#: g10/gpg.c:5545 #, c-format msgid "the given preferred keyserver URL is invalid\n" msgstr "the given preferred keyserver URL is invalid\n" @@ -3495,145 +3499,145 @@ msgid "No help available for '%s'" msgstr "No help available for ‘%s’" -#: g10/import.c:169 +#: g10/import.c:170 msgid "import signatures that are marked as local-only" msgstr "import signatures that are marked as local-only" -#: g10/import.c:172 +#: g10/import.c:173 msgid "repair damage from the pks keyserver during import" msgstr "repair damage from the pks keyserver during import" -#: g10/import.c:175 +#: g10/import.c:176 msgid "do not clear the ownertrust values during import" msgstr "do not clear the ownertrust values during import" -#: g10/import.c:178 +#: g10/import.c:179 msgid "do not update the trustdb after import" msgstr "do not update the trustdb after import" -#: g10/import.c:181 +#: g10/import.c:182 msgid "show key during import" msgstr "show key during import" -#: g10/import.c:184 +#: g10/import.c:185 msgid "only accept updates to existing keys" msgstr "only accept updates to existing keys" -#: g10/import.c:187 +#: g10/import.c:188 msgid "remove unusable parts from key after import" msgstr "remove unusable parts from key after import" -#: g10/import.c:190 +#: g10/import.c:191 msgid "remove as much as possible from key after import" msgstr "remove as much as possible from key after import" -#: g10/import.c:193 +#: g10/import.c:194 msgid "ignore key-signatures which are not self-signatures" msgstr "ignore key-signatures which are not self-signatures" -#: g10/import.c:196 +#: g10/import.c:197 msgid "run import filters and export key immediately" msgstr "run import filters and export key immediately" -#: g10/import.c:199 +#: g10/import.c:200 msgid "assume the GnuPG key backup format" msgstr "assume the GnuPG key backup format" -#: g10/import.c:203 +#: g10/import.c:204 msgid "repair keys on import" msgstr "repair keys on import" -#: g10/import.c:392 g10/import.c:711 +#: g10/import.c:393 g10/import.c:712 #, c-format msgid "skipping block of type %d\n" msgstr "skipping block of type %d\n" -#: g10/import.c:728 +#: g10/import.c:729 #, c-format msgid "%lu keys processed so far\n" msgstr "%lu keys processed so far\n" -#: g10/import.c:814 +#: g10/import.c:815 #, c-format msgid "Total number processed: %lu\n" msgstr "Total number processed: %lu\n" -#: g10/import.c:817 +#: g10/import.c:818 #, c-format msgid " skipped PGP-2 keys: %lu\n" msgstr " skipped PGP-2 keys: %lu\n" -#: g10/import.c:819 +#: g10/import.c:820 #, c-format msgid " skipped new keys: %lu\n" msgstr " skipped new keys: %lu\n" -#: g10/import.c:822 +#: g10/import.c:823 #, c-format msgid " w/o user IDs: %lu\n" msgstr " w/o user IDs: %lu\n" -#: g10/import.c:825 sm/import.c:130 +#: g10/import.c:826 sm/import.c:130 #, c-format msgid " imported: %lu" msgstr " imported: %lu" -#: g10/import.c:829 sm/import.c:134 +#: g10/import.c:830 sm/import.c:134 #, c-format msgid " unchanged: %lu\n" msgstr " unchanged: %lu\n" -#: g10/import.c:831 +#: g10/import.c:832 #, c-format msgid " new user IDs: %lu\n" msgstr " new user IDs: %lu\n" -#: g10/import.c:833 +#: g10/import.c:834 #, c-format msgid " new subkeys: %lu\n" msgstr " new subkeys: %lu\n" -#: g10/import.c:835 +#: g10/import.c:836 #, c-format msgid " new signatures: %lu\n" msgstr " new signatures: %lu\n" -#: g10/import.c:837 +#: g10/import.c:838 #, c-format msgid " new key revocations: %lu\n" msgstr " new key revocations: %lu\n" -#: g10/import.c:839 sm/import.c:136 +#: g10/import.c:840 sm/import.c:136 #, c-format msgid " secret keys read: %lu\n" msgstr " secret keys read: %lu\n" -#: g10/import.c:841 sm/import.c:138 +#: g10/import.c:842 sm/import.c:138 #, c-format msgid " secret keys imported: %lu\n" msgstr " secret keys imported: %lu\n" -#: g10/import.c:843 sm/import.c:140 +#: g10/import.c:844 sm/import.c:140 #, c-format msgid " secret keys unchanged: %lu\n" msgstr " secret keys unchanged: %lu\n" -#: g10/import.c:845 sm/import.c:142 +#: g10/import.c:846 sm/import.c:142 #, c-format msgid " not imported: %lu\n" msgstr " not imported: %lu\n" -#: g10/import.c:847 +#: g10/import.c:848 #, c-format msgid " signatures cleaned: %lu\n" msgstr " signatures cleaned: %lu\n" -#: g10/import.c:849 +#: g10/import.c:850 #, c-format msgid " user IDs cleaned: %lu\n" msgstr " user IDs cleaned: %lu\n" -#: g10/import.c:1276 +#: g10/import.c:1277 #, c-format msgid "" "WARNING: key %s contains preferences for unavailable\n" @@ -3642,167 +3646,167 @@ "WARNING: key %s contains preferences for unavailable\n" "algorithms on these user IDs:\n" -#: g10/import.c:1318 +#: g10/import.c:1319 #, c-format msgid " \"%s\": preference for cipher algorithm %s\n" msgstr " “%s”: preference for cipher algorithm %s\n" -#: g10/import.c:1333 +#: g10/import.c:1334 #, c-format msgid " \"%s\": preference for digest algorithm %s\n" msgstr " “%s”: preference for digest algorithm %s\n" -#: g10/import.c:1345 +#: g10/import.c:1346 #, c-format msgid " \"%s\": preference for compression algorithm %s\n" msgstr " “%s”: preference for compression algorithm %s\n" -#: g10/import.c:1358 +#: g10/import.c:1359 #, c-format msgid "it is strongly suggested that you update your preferences and\n" msgstr "it is strongly suggested that you update your preferences and\n" -#: g10/import.c:1360 +#: g10/import.c:1361 #, c-format msgid "re-distribute this key to avoid potential algorithm mismatch problems\n" msgstr "" "re-distribute this key to avoid potential algorithm mismatch problems\n" -#: g10/import.c:1385 +#: g10/import.c:1386 #, c-format msgid "you can update your preferences with: gpg --edit-key %s updpref save\n" msgstr "you can update your preferences with: gpg --edit-key %s updpref save\n" -#: g10/import.c:1899 g10/import.c:3013 +#: g10/import.c:1902 g10/import.c:3028 #, c-format msgid "key %s: no user ID\n" msgstr "key %s: no user ID\n" -#: g10/import.c:1905 +#: g10/import.c:1908 #, c-format msgid "key %s: %s\n" msgstr "key %s: %s\n" -#: g10/import.c:1906 g10/import.c:2985 +#: g10/import.c:1909 g10/import.c:3000 msgid "rejected by import screener" msgstr "rejected by import screener" -#: g10/import.c:1950 +#: g10/import.c:1953 #, c-format msgid "key %s: PKS subkey corruption repaired\n" msgstr "key %s: PKS subkey corruption repaired\n" -#: g10/import.c:1971 +#: g10/import.c:1974 #, c-format msgid "key %s: accepted non self-signed user ID \"%s\"\n" msgstr "key %s: accepted non self-signed user ID “%s”\n" -#: g10/import.c:1981 g10/import.c:2012 +#: g10/import.c:1985 g10/import.c:2016 #, c-format msgid "key %s: no valid user IDs\n" msgstr "key %s: no valid user IDs\n" -#: g10/import.c:1983 +#: g10/import.c:1987 #, c-format msgid "this may be caused by a missing self-signature\n" msgstr "this may be caused by a missing self-signature\n" -#: g10/import.c:2062 g10/import.c:3399 +#: g10/import.c:2066 g10/import.c:3415 #, c-format msgid "key %s: public key not found: %s\n" msgstr "key %s: public key not found: %s\n" -#: g10/import.c:2068 +#: g10/import.c:2072 #, c-format msgid "key %s: new key - skipped\n" msgstr "key %s: new key - skipped\n" -#: g10/import.c:2080 +#: g10/import.c:2084 #, c-format msgid "no writable keyring found: %s\n" msgstr "no writable keyring found: %s\n" -#: g10/import.c:2112 g10/import.c:2214 g10/import.c:3476 +#: g10/import.c:2116 g10/import.c:2218 g10/import.c:3492 #, c-format msgid "error writing keyring '%s': %s\n" msgstr "error writing keyring '%s': %s\n" -#: g10/import.c:2135 +#: g10/import.c:2139 #, c-format msgid "key %s: public key \"%s\" imported\n" msgstr "key %s: public key “%s” imported\n" -#: g10/import.c:2162 +#: g10/import.c:2166 #, c-format msgid "key %s: doesn't match our copy\n" msgstr "key %s: doesn't match our copy\n" -#: g10/import.c:2230 +#: g10/import.c:2234 #, c-format msgid "key %s: \"%s\" 1 new user ID\n" msgstr "key %s: “%s” 1 new user ID\n" -#: g10/import.c:2233 +#: g10/import.c:2237 #, c-format msgid "key %s: \"%s\" %d new user IDs\n" msgstr "key %s: “%s” %d new user IDs\n" -#: g10/import.c:2236 +#: g10/import.c:2240 #, c-format msgid "key %s: \"%s\" 1 new signature\n" msgstr "key %s: “%s” 1 new signature\n" -#: g10/import.c:2239 +#: g10/import.c:2243 #, c-format msgid "key %s: \"%s\" %d new signatures\n" msgstr "key %s: “%s” %d new signatures\n" -#: g10/import.c:2242 +#: g10/import.c:2246 #, c-format msgid "key %s: \"%s\" 1 new subkey\n" msgstr "key %s: “%s” 1 new subkey\n" -#: g10/import.c:2245 +#: g10/import.c:2249 #, c-format msgid "key %s: \"%s\" %d new subkeys\n" msgstr "key %s: “%s” %d new subkeys\n" -#: g10/import.c:2248 +#: g10/import.c:2252 #, c-format msgid "key %s: \"%s\" %d signature cleaned\n" msgstr "key %s: “%s” %d signature cleaned\n" -#: g10/import.c:2251 +#: g10/import.c:2255 #, c-format msgid "key %s: \"%s\" %d signatures cleaned\n" msgstr "key %s: “%s” %d signatures cleaned\n" -#: g10/import.c:2254 +#: g10/import.c:2258 #, c-format msgid "key %s: \"%s\" %d user ID cleaned\n" msgstr "key %s: “%s” %d user ID cleaned\n" -#: g10/import.c:2257 +#: g10/import.c:2261 #, c-format msgid "key %s: \"%s\" %d user IDs cleaned\n" msgstr "key %s: “%s” %d user IDs cleaned\n" -#: g10/import.c:2293 +#: g10/import.c:2297 #, c-format msgid "key %s: \"%s\" not changed\n" msgstr "key %s: “%s” not changed\n" -#: g10/import.c:2652 g10/import.c:2847 +#: g10/import.c:2667 g10/import.c:2862 #, c-format msgid "key %s: secret key imported\n" msgstr "key %s: secret key imported\n" -#: g10/import.c:2660 +#: g10/import.c:2675 #, c-format msgid "key %s: secret key already exists\n" msgstr "key %s: secret key already exists\n" -#: g10/import.c:2668 +#: g10/import.c:2683 #, c-format msgid "key %s: error sending to agent: %s\n" msgstr "key %s: error sending to agent: %s\n" @@ -3815,192 +3819,192 @@ #. * Instead, user should be suggested to run 'gpg --card-status', #. * then, references to a card will be automatically created #. * again. -#: g10/import.c:2837 +#: g10/import.c:2852 #, c-format msgid "To migrate '%s', with each smartcard, run: %s\n" msgstr "To migrate '%s', with each smartcard, run: %s\n" -#: g10/import.c:2984 +#: g10/import.c:2999 #, c-format msgid "secret key %s: %s\n" msgstr "secret key %s: %s\n" -#: g10/import.c:3005 g10/import.c:3044 +#: g10/import.c:3020 g10/import.c:3059 #, c-format msgid "importing secret keys not allowed\n" msgstr "importing secret keys not allowed\n" -#: g10/import.c:3032 +#: g10/import.c:3047 #, c-format msgid "key %s: secret key with invalid cipher %d - skipped\n" msgstr "key %s: secret key with invalid cipher %d - skipped\n" -#: g10/import.c:3194 g10/pkclist.c:72 g10/revoke.c:776 +#: g10/import.c:3209 g10/pkclist.c:72 g10/revoke.c:776 msgid "No reason specified" msgstr "No reason specified" -#: g10/import.c:3195 g10/pkclist.c:74 g10/revoke.c:778 +#: g10/import.c:3210 g10/pkclist.c:74 g10/revoke.c:778 msgid "Key is superseded" msgstr "Key is superseded" -#: g10/import.c:3196 g10/pkclist.c:76 g10/revoke.c:777 +#: g10/import.c:3211 g10/pkclist.c:76 g10/revoke.c:777 msgid "Key has been compromised" msgstr "Key has been compromised" -#: g10/import.c:3197 g10/pkclist.c:78 g10/revoke.c:779 +#: g10/import.c:3212 g10/pkclist.c:78 g10/revoke.c:779 msgid "Key is no longer used" msgstr "Key is no longer used" -#: g10/import.c:3198 g10/pkclist.c:80 g10/revoke.c:780 +#: g10/import.c:3213 g10/pkclist.c:80 g10/revoke.c:780 msgid "User ID is no longer valid" msgstr "User ID is no longer valid" -#: g10/import.c:3323 g10/keylist.c:1258 g10/pkclist.c:84 +#: g10/import.c:3338 g10/keylist.c:1258 g10/pkclist.c:84 #, c-format msgid "reason for revocation: " msgstr "reason for revocation: " -#: g10/import.c:3342 g10/keylist.c:1277 g10/pkclist.c:100 +#: g10/import.c:3357 g10/keylist.c:1277 g10/pkclist.c:100 #, c-format msgid "revocation comment: " msgstr "revocation comment: " -#: g10/import.c:3392 +#: g10/import.c:3408 #, c-format msgid "key %s: no public key - can't apply revocation certificate\n" msgstr "key %s: no public key - can't apply revocation certificate\n" -#: g10/import.c:3423 +#: g10/import.c:3439 #, c-format msgid "key %s: can't locate original keyblock: %s\n" msgstr "key %s: can't locate original keyblock: %s\n" -#: g10/import.c:3430 +#: g10/import.c:3446 #, c-format msgid "key %s: can't read original keyblock: %s\n" msgstr "key %s: can't read original keyblock: %s\n" -#: g10/import.c:3450 +#: g10/import.c:3466 #, c-format msgid "key %s: invalid revocation certificate: %s - rejected\n" msgstr "key %s: invalid revocation certificate: %s - rejected\n" -#: g10/import.c:3485 +#: g10/import.c:3501 #, c-format msgid "key %s: \"%s\" revocation certificate imported\n" msgstr "key %s: “%s” revocation certificate imported\n" -#: g10/import.c:3571 +#: g10/import.c:3587 #, c-format msgid "key %s: no user ID for signature\n" msgstr "key %s: no user ID for signature\n" -#: g10/import.c:3588 +#: g10/import.c:3604 #, c-format msgid "key %s: unsupported public key algorithm on user ID \"%s\"\n" msgstr "key %s: unsupported public key algorithm on user ID “%s”\n" -#: g10/import.c:3590 +#: g10/import.c:3606 #, c-format msgid "key %s: invalid self-signature on user ID \"%s\"\n" msgstr "key %s: invalid self-signature on user ID “%s”\n" -#: g10/import.c:3607 g10/import.c:3635 g10/import.c:3691 +#: g10/import.c:3623 g10/import.c:3651 g10/import.c:3707 #, c-format msgid "key %s: unsupported public key algorithm\n" msgstr "key %s: unsupported public key algorithm\n" -#: g10/import.c:3608 +#: g10/import.c:3624 #, c-format msgid "key %s: invalid direct key signature\n" msgstr "key %s: invalid direct key signature\n" -#: g10/import.c:3622 +#: g10/import.c:3638 #, c-format msgid "key %s: no subkey for key binding\n" msgstr "key %s: no subkey for key binding\n" -#: g10/import.c:3637 +#: g10/import.c:3653 #, c-format msgid "key %s: invalid subkey binding\n" msgstr "key %s: invalid subkey binding\n" -#: g10/import.c:3656 +#: g10/import.c:3672 #, c-format msgid "key %s: removed multiple subkey binding\n" msgstr "key %s: removed multiple subkey binding\n" -#: g10/import.c:3680 +#: g10/import.c:3696 #, c-format msgid "key %s: no subkey for key revocation\n" msgstr "key %s: no subkey for key revocation\n" -#: g10/import.c:3693 +#: g10/import.c:3709 #, c-format msgid "key %s: invalid subkey revocation\n" msgstr "key %s: invalid subkey revocation\n" -#: g10/import.c:3708 +#: g10/import.c:3724 #, c-format msgid "key %s: removed multiple subkey revocation\n" msgstr "key %s: removed multiple subkey revocation\n" -#: g10/import.c:3752 +#: g10/import.c:3771 #, c-format msgid "key %s: skipped user ID \"%s\"\n" msgstr "key %s: skipped user ID “%s”\n" -#: g10/import.c:3779 +#: g10/import.c:3798 #, c-format msgid "key %s: skipped subkey\n" msgstr "key %s: skipped subkey\n" -#: g10/import.c:3810 +#: g10/import.c:3829 #, c-format msgid "key %s: non exportable signature (class 0x%02X) - skipped\n" msgstr "key %s: non exportable signature (class 0x%02X) - skipped\n" -#: g10/import.c:3821 +#: g10/import.c:3840 #, c-format msgid "key %s: revocation certificate at wrong place - skipped\n" msgstr "key %s: revocation certificate at wrong place - skipped\n" -#: g10/import.c:3839 +#: g10/import.c:3868 #, c-format msgid "key %s: invalid revocation certificate: %s - skipped\n" msgstr "key %s: invalid revocation certificate: %s - skipped\n" -#: g10/import.c:3853 +#: g10/import.c:3892 #, c-format msgid "key %s: subkey signature in wrong place - skipped\n" msgstr "key %s: subkey signature in wrong place - skipped\n" -#: g10/import.c:3861 +#: g10/import.c:3900 #, c-format msgid "key %s: unexpected signature class (0x%02X) - skipped\n" msgstr "key %s: unexpected signature class (0x%02X) - skipped\n" -#: g10/import.c:4034 +#: g10/import.c:4073 #, c-format msgid "key %s: duplicated user ID detected - merged\n" msgstr "key %s: duplicated user ID detected - merged\n" -#: g10/import.c:4099 +#: g10/import.c:4138 #, c-format msgid "WARNING: key %s may be revoked: fetching revocation key %s\n" msgstr "WARNING: key %s may be revoked: fetching revocation key %s\n" -#: g10/import.c:4115 +#: g10/import.c:4154 #, c-format msgid "WARNING: key %s may be revoked: revocation key %s not present.\n" msgstr "WARNING: key %s may be revoked: revocation key %s not present.\n" -#: g10/import.c:4181 +#: g10/import.c:4220 #, c-format msgid "key %s: \"%s\" revocation certificate added\n" msgstr "key %s: “%s” revocation certificate added\n" -#: g10/import.c:4219 +#: g10/import.c:4258 #, c-format msgid "key %s: direct key signature added\n" msgstr "key %s: direct key signature added\n" @@ -4863,7 +4867,7 @@ msgid "You may not add a photo ID to a PGP2-style key.\n" msgstr "You may not add a photo ID to a PGP2-style key.\n" -#: g10/keyedit.c:4293 g10/keygen.c:2899 +#: g10/keyedit.c:4293 g10/keygen.c:2953 msgid "Such a user ID already exists on this key!\n" msgstr "Such a user ID already exists on this key!\n" @@ -5140,82 +5144,82 @@ msgid "Displaying %s photo ID of size %ld for key %s (uid %d)\n" msgstr "Displaying %s photo ID of size %ld for key %s (uid %d)\n" -#: g10/keygen.c:169 +#: g10/keygen.c:174 #, c-format msgid "invalid value for option '%s'\n" msgstr "invalid value for option ‘%s’\n" -#: g10/keygen.c:322 +#: g10/keygen.c:331 #, c-format msgid "preference '%s' duplicated\n" msgstr "preference ‘%s’ duplicated\n" -#: g10/keygen.c:329 +#: g10/keygen.c:338 #, c-format msgid "too many cipher preferences\n" msgstr "too many cipher preferences\n" -#: g10/keygen.c:331 +#: g10/keygen.c:340 #, c-format msgid "too many digest preferences\n" msgstr "too many digest preferences\n" -#: g10/keygen.c:333 +#: g10/keygen.c:342 #, c-format msgid "too many compression preferences\n" msgstr "too many compression preferences\n" -#: g10/keygen.c:493 +#: g10/keygen.c:502 #, c-format msgid "invalid item '%s' in preference string\n" msgstr "invalid item ‘%s’ in preference string\n" -#: g10/keygen.c:972 +#: g10/keygen.c:1020 #, c-format msgid "writing direct signature\n" msgstr "writing direct signature\n" -#: g10/keygen.c:1018 +#: g10/keygen.c:1066 #, c-format msgid "writing self signature\n" msgstr "writing self signature\n" -#: g10/keygen.c:1075 +#: g10/keygen.c:1123 #, c-format msgid "writing key binding signature\n" msgstr "writing key binding signature\n" -#: g10/keygen.c:1440 g10/keygen.c:1445 g10/keygen.c:1497 g10/keygen.c:1502 -#: g10/keygen.c:1656 g10/keygen.c:1661 +#: g10/keygen.c:1494 g10/keygen.c:1499 g10/keygen.c:1551 g10/keygen.c:1556 +#: g10/keygen.c:1710 g10/keygen.c:1715 #, c-format msgid "keysize invalid; using %u bits\n" msgstr "keysize invalid; using %u bits\n" -#: g10/keygen.c:1451 g10/keygen.c:1508 g10/keygen.c:1516 g10/keygen.c:1667 +#: g10/keygen.c:1505 g10/keygen.c:1562 g10/keygen.c:1570 g10/keygen.c:1721 #, c-format msgid "keysize rounded up to %u bits\n" msgstr "keysize rounded up to %u bits\n" -#: g10/keygen.c:1542 +#: g10/keygen.c:1596 #, c-format msgid "" "WARNING: some OpenPGP programs can't handle a DSA key with this digest size\n" msgstr "" "WARNING: some OpenPGP programs can't handle a DSA key with this digest size\n" -#: g10/keygen.c:1723 +#: g10/keygen.c:1777 msgid "Sign" msgstr "Sign" -#: g10/keygen.c:1726 +#: g10/keygen.c:1780 msgid "Certify" msgstr "Certify" -#: g10/keygen.c:1729 +#: g10/keygen.c:1783 msgid "Encrypt" msgstr "Encrypt" -#: g10/keygen.c:1732 +#: g10/keygen.c:1786 msgid "Authenticate" msgstr "Authenticate" @@ -5229,161 +5233,161 @@ #. * a = Toggle authentication capability #. * q = Finish #. -#: g10/keygen.c:1753 +#: g10/keygen.c:1807 msgid "SsEeAaQq" msgstr "SsEeAaQq" -#: g10/keygen.c:1784 +#: g10/keygen.c:1838 #, c-format msgid "Possible actions for a %s key: " msgstr "Possible actions for a %s key: " -#: g10/keygen.c:1790 +#: g10/keygen.c:1844 msgid "Current allowed actions: " msgstr "Current allowed actions: " -#: g10/keygen.c:1795 +#: g10/keygen.c:1849 #, c-format msgid " (%c) Toggle the sign capability\n" msgstr " (%c) Toggle the sign capability\n" -#: g10/keygen.c:1798 +#: g10/keygen.c:1852 #, c-format msgid " (%c) Toggle the encrypt capability\n" msgstr " (%c) Toggle the encrypt capability\n" -#: g10/keygen.c:1801 +#: g10/keygen.c:1855 #, c-format msgid " (%c) Toggle the authenticate capability\n" msgstr " (%c) Toggle the authenticate capability\n" -#: g10/keygen.c:1804 +#: g10/keygen.c:1858 #, c-format msgid " (%c) Finished\n" msgstr " (%c) Finished\n" -#: g10/keygen.c:1930 +#: g10/keygen.c:1984 #, c-format msgid " (%d) RSA and RSA (default)\n" msgstr " (%d) RSA and RSA (default)\n" -#: g10/keygen.c:1934 +#: g10/keygen.c:1988 #, c-format msgid " (%d) DSA and Elgamal\n" msgstr " (%d) DSA and Elgamal\n" -#: g10/keygen.c:1937 +#: g10/keygen.c:1991 #, c-format msgid " (%d) DSA (sign only)\n" msgstr " (%d) DSA (sign only)\n" -#: g10/keygen.c:1939 +#: g10/keygen.c:1993 #, c-format msgid " (%d) RSA (sign only)\n" msgstr " (%d) RSA (sign only)\n" -#: g10/keygen.c:1945 +#: g10/keygen.c:1999 #, c-format msgid " (%d) Elgamal (encrypt only)\n" msgstr " (%d) Elgamal (encrypt only)\n" -#: g10/keygen.c:1947 +#: g10/keygen.c:2001 #, c-format msgid " (%d) RSA (encrypt only)\n" msgstr " (%d) RSA (encrypt only)\n" -#: g10/keygen.c:1953 +#: g10/keygen.c:2007 #, c-format msgid " (%d) DSA (set your own capabilities)\n" msgstr " (%d) DSA (set your own capabilities)\n" -#: g10/keygen.c:1955 +#: g10/keygen.c:2009 #, c-format msgid " (%d) RSA (set your own capabilities)\n" msgstr " (%d) RSA (set your own capabilities)\n" -#: g10/keygen.c:1961 +#: g10/keygen.c:2015 #, c-format msgid " (%d) ECC and ECC\n" msgstr " (%d) ECC and ECC\n" -#: g10/keygen.c:1963 +#: g10/keygen.c:2017 #, c-format msgid " (%d) ECC (sign only)\n" msgstr " (%d) ECC (sign only)\n" -#: g10/keygen.c:1965 +#: g10/keygen.c:2019 #, c-format msgid " (%d) ECC (set your own capabilities)\n" msgstr " (%d) ECC (set your own capabilities)\n" -#: g10/keygen.c:1967 +#: g10/keygen.c:2021 #, c-format msgid " (%d) ECC (encrypt only)\n" msgstr " (%d) ECC (encrypt only)\n" -#: g10/keygen.c:1971 +#: g10/keygen.c:2025 #, c-format msgid " (%d) Existing key\n" msgstr " (%d) Existing key\n" -#: g10/keygen.c:1973 +#: g10/keygen.c:2027 #, c-format msgid " (%d) Existing key from card\n" msgstr " (%d) Existing key from card\n" -#: g10/keygen.c:2069 sm/certreqgen-ui.c:202 +#: g10/keygen.c:2123 sm/certreqgen-ui.c:202 msgid "Enter the keygrip: " msgstr "Enter the keygrip: " -#: g10/keygen.c:2082 sm/certreqgen-ui.c:210 +#: g10/keygen.c:2136 sm/certreqgen-ui.c:210 msgid "Not a valid keygrip (expecting 40 hex digits)\n" msgstr "Not a valid keygrip (expecting 40 hex digits)\n" -#: g10/keygen.c:2084 sm/certreqgen-ui.c:212 +#: g10/keygen.c:2138 sm/certreqgen-ui.c:212 msgid "No key with this keygrip\n" msgstr "No key with this keygrip\n" -#: g10/keygen.c:2103 g10/keygen.c:2113 g10/keygen.c:3216 g10/keygen.c:3227 +#: g10/keygen.c:2157 g10/keygen.c:2167 g10/keygen.c:3270 g10/keygen.c:3281 #: sm/certreqgen-ui.c:230 sm/certreqgen-ui.c:239 #, c-format msgid "error reading the card: %s\n" msgstr "error reading the card: %s\n" -#: g10/keygen.c:2107 g10/keygen.c:3220 sm/certreqgen-ui.c:233 +#: g10/keygen.c:2161 g10/keygen.c:3274 sm/certreqgen-ui.c:233 #, c-format msgid "Serial number of the card: %s\n" msgstr "Serial number of the card: %s\n" -#: g10/keygen.c:2120 sm/certreqgen-ui.c:245 +#: g10/keygen.c:2174 sm/certreqgen-ui.c:245 msgid "Available keys:\n" msgstr "Available keys:\n" -#: g10/keygen.c:2297 g10/keygen.c:2311 +#: g10/keygen.c:2351 g10/keygen.c:2365 #, c-format msgid "rounded to %u bits\n" msgstr "rounded to %u bits\n" -#: g10/keygen.c:2352 +#: g10/keygen.c:2406 #, c-format msgid "%s keys may be between %u and %u bits long.\n" msgstr "%s keys may be between %u and %u bits long.\n" -#: g10/keygen.c:2360 +#: g10/keygen.c:2414 #, c-format msgid "What keysize do you want for the subkey? (%u) " msgstr "What keysize do you want for the subkey? (%u) " -#: g10/keygen.c:2377 sm/certreqgen-ui.c:189 +#: g10/keygen.c:2431 sm/certreqgen-ui.c:189 #, c-format msgid "Requested keysize is %u bits\n" msgstr "Requested keysize is %u bits\n" -#: g10/keygen.c:2423 +#: g10/keygen.c:2477 msgid "Please select which elliptic curve you want:\n" msgstr "Please select which elliptic curve you want:\n" -#: g10/keygen.c:2611 +#: g10/keygen.c:2665 msgid "" "Please specify how long the key should be valid.\n" " 0 = key does not expire\n" @@ -5399,7 +5403,7 @@ " m = key expires in n months\n" " y = key expires in n years\n" -#: g10/keygen.c:2622 +#: g10/keygen.c:2676 msgid "" "Please specify how long the signature should be valid.\n" " 0 = signature does not expire\n" @@ -5415,38 +5419,38 @@ " m = signature expires in n months\n" " y = signature expires in n years\n" -#: g10/keygen.c:2645 +#: g10/keygen.c:2699 msgid "Key is valid for? (0) " msgstr "Key is valid for? (0) " -#: g10/keygen.c:2650 +#: g10/keygen.c:2704 #, c-format msgid "Signature is valid for? (%s) " msgstr "Signature is valid for? (%s) " -#: g10/keygen.c:2663 g10/keygen.c:2688 +#: g10/keygen.c:2717 g10/keygen.c:2742 msgid "invalid value\n" msgstr "invalid value\n" -#: g10/keygen.c:2670 +#: g10/keygen.c:2724 msgid "Key does not expire at all\n" msgstr "Key does not expire at all\n" -#: g10/keygen.c:2671 +#: g10/keygen.c:2725 msgid "Signature does not expire at all\n" msgstr "Signature does not expire at all\n" -#: g10/keygen.c:2676 +#: g10/keygen.c:2730 #, c-format msgid "Key expires at %s\n" msgstr "Key expires at %s\n" -#: g10/keygen.c:2677 +#: g10/keygen.c:2731 #, c-format msgid "Signature expires at %s\n" msgstr "Signature expires at %s\n" -#: g10/keygen.c:2681 +#: g10/keygen.c:2735 msgid "" "Your system can't display dates beyond 2038.\n" "However, it will be correctly handled up to 2106.\n" @@ -5454,11 +5458,11 @@ "Your system can't display dates beyond 2038.\n" "However, it will be correctly handled up to 2106.\n" -#: g10/keygen.c:2694 +#: g10/keygen.c:2748 msgid "Is this correct? (y/N) " msgstr "Is this correct? (y/N) " -#: g10/keygen.c:2762 +#: g10/keygen.c:2816 msgid "" "\n" "GnuPG needs to construct a user ID to identify your key.\n" @@ -5472,7 +5476,7 @@ #. but you should keep your existing translation. In case #. the new string is not translated this old string will #. be used. -#: g10/keygen.c:2777 +#: g10/keygen.c:2831 msgid "" "\n" "You need a user ID to identify your key; the software constructs the user " @@ -5488,49 +5492,49 @@ " “Heinrich Heine (Der Dichter) ”\n" "\n" -#: g10/keygen.c:2796 +#: g10/keygen.c:2850 msgid "Real name: " msgstr "Real name: " -#: g10/keygen.c:2805 +#: g10/keygen.c:2859 msgid "Invalid character in name\n" msgstr "Invalid character in name\n" -#: g10/keygen.c:2806 +#: g10/keygen.c:2860 #, c-format msgid "The characters '%s' and '%s' may not appear in name\n" msgstr "The characters ‘%s’ and ‘%s’ may not appear in name\n" -#: g10/keygen.c:2810 +#: g10/keygen.c:2864 msgid "Name may not start with a digit\n" msgstr "Name may not start with a digit\n" -#: g10/keygen.c:2813 +#: g10/keygen.c:2867 msgid "Name must be at least 5 characters long\n" msgstr "Name must be at least 5 characters long\n" -#: g10/keygen.c:2823 +#: g10/keygen.c:2877 msgid "Email address: " msgstr "Email address: " -#: g10/keygen.c:2829 +#: g10/keygen.c:2883 msgid "Not a valid email address\n" msgstr "Not a valid email address\n" -#: g10/keygen.c:2838 +#: g10/keygen.c:2892 msgid "Comment: " msgstr "Comment: " -#: g10/keygen.c:2844 +#: g10/keygen.c:2898 msgid "Invalid character in comment\n" msgstr "Invalid character in comment\n" -#: g10/keygen.c:2880 +#: g10/keygen.c:2934 #, c-format msgid "You are using the '%s' character set.\n" msgstr "You are using the ‘%s’ character set.\n" -#: g10/keygen.c:2886 +#: g10/keygen.c:2940 #, c-format msgid "" "You selected this USER-ID:\n" @@ -5541,7 +5545,7 @@ " “%s”\n" "\n" -#: g10/keygen.c:2891 +#: g10/keygen.c:2945 msgid "Please don't put the email address into the real name or the comment\n" msgstr "Please don't put the email address into the real name or the comment\n" @@ -5556,31 +5560,31 @@ #. o = Okay (ready, continue) #. q = Quit #. -#: g10/keygen.c:2916 +#: g10/keygen.c:2970 msgid "NnCcEeOoQq" msgstr "NnCcEeOoQq" -#: g10/keygen.c:2926 +#: g10/keygen.c:2980 msgid "Change (N)ame, (C)omment, (E)mail or (Q)uit? " msgstr "Change (N)ame, (C)omment, (E)mail or (Q)uit? " -#: g10/keygen.c:2927 +#: g10/keygen.c:2981 msgid "Change (N)ame, (C)omment, (E)mail or (O)kay/(Q)uit? " msgstr "Change (N)ame, (C)omment, (E)mail or (O)kay/(Q)uit? " -#: g10/keygen.c:2932 +#: g10/keygen.c:2986 msgid "Change (N)ame, (E)mail, or (Q)uit? " msgstr "Change (N)ame, (E)mail, or (Q)uit? " -#: g10/keygen.c:2933 +#: g10/keygen.c:2987 msgid "Change (N)ame, (E)mail, or (O)kay/(Q)uit? " msgstr "Change (N)ame, (E)mail, or (O)kay/(Q)uit? " -#: g10/keygen.c:2952 +#: g10/keygen.c:3006 msgid "Please correct the error first\n" msgstr "Please correct the error first\n" -#: g10/keygen.c:2998 +#: g10/keygen.c:3052 msgid "" "We need to generate a lot of random bytes. It is a good idea to perform\n" "some other action (type on the keyboard, move the mouse, utilize the\n" @@ -5592,13 +5596,13 @@ "disks) during the prime generation; this gives the random number\n" "generator a better chance to gain enough entropy.\n" -#: g10/keygen.c:4278 g10/keygen.c:4349 g10/keygen.c:4367 g10/keygen.c:4395 -#: g10/keygen.c:4739 g10/keygen.c:5239 g10/keygen.c:5534 g10/keygen.c:5639 +#: g10/keygen.c:4332 g10/keygen.c:4403 g10/keygen.c:4421 g10/keygen.c:4449 +#: g10/keygen.c:4793 g10/keygen.c:5293 g10/keygen.c:5588 g10/keygen.c:5693 #, c-format msgid "Key generation failed: %s\n" msgstr "Key generation failed: %s\n" -#: g10/keygen.c:4287 +#: g10/keygen.c:4341 #, c-format msgid "" "About to create a key for:\n" @@ -5609,64 +5613,64 @@ " “%s”\n" "\n" -#: g10/keygen.c:4289 +#: g10/keygen.c:4343 msgid "Continue? (Y/n) " msgstr "Continue? (Y/n) " -#: g10/keygen.c:4310 +#: g10/keygen.c:4364 #, c-format msgid "A key for \"%s\" already exists\n" msgstr "A key for “%s” already exists\n" -#: g10/keygen.c:4315 +#: g10/keygen.c:4369 msgid "Create anyway? (y/N) " msgstr "Create anyway? (y/N) " -#: g10/keygen.c:4321 +#: g10/keygen.c:4375 #, c-format msgid "creating anyway\n" msgstr "creating anyway\n" -#: g10/keygen.c:4722 +#: g10/keygen.c:4776 #, c-format msgid "Note: Use \"%s %s\" for a full featured key generation dialog.\n" msgstr "Note: Use “%s %s” for a full featured key generation dialog.\n" -#: g10/keygen.c:4771 +#: g10/keygen.c:4825 #, c-format msgid "Key generation canceled.\n" msgstr "Key generation canceled.\n" -#: g10/keygen.c:4831 +#: g10/keygen.c:4885 #, c-format msgid "can't create backup file '%s': %s\n" msgstr "can't create backup file '%s': %s\n" -#: g10/keygen.c:4851 +#: g10/keygen.c:4905 #, c-format msgid "Note: backup of card key saved to '%s'\n" msgstr "Note: backup of card key saved to ‘%s’\n" -#: g10/keygen.c:5010 g10/keygen.c:5172 +#: g10/keygen.c:5064 g10/keygen.c:5226 #, c-format msgid "writing public key to '%s'\n" msgstr "writing public key to ‘%s’\n" -#: g10/keygen.c:5166 +#: g10/keygen.c:5220 #, c-format msgid "no writable public keyring found: %s\n" msgstr "no writable public keyring found: %s\n" -#: g10/keygen.c:5180 +#: g10/keygen.c:5234 #, c-format msgid "error writing public keyring '%s': %s\n" msgstr "error writing public keyring '%s': %s\n" -#: g10/keygen.c:5210 +#: g10/keygen.c:5264 msgid "public and secret key created and signed.\n" msgstr "public and secret key created and signed.\n" -#: g10/keygen.c:5226 +#: g10/keygen.c:5280 msgid "" "Note that this key cannot be used for encryption. You may want to use\n" "the command \"--edit-key\" to generate a subkey for this purpose.\n" @@ -5674,36 +5678,36 @@ "Note that this key cannot be used for encryption. You may want to use\n" "the command “--edit-key” to generate a subkey for this purpose.\n" -#: g10/keygen.c:5401 g10/keygen.c:5590 +#: g10/keygen.c:5455 g10/keygen.c:5644 #, c-format msgid "" "key has been created %lu second in future (time warp or clock problem)\n" msgstr "" "key has been created %lu second in future (time warp or clock problem)\n" -#: g10/keygen.c:5403 g10/keygen.c:5592 +#: g10/keygen.c:5457 g10/keygen.c:5646 #, c-format msgid "" "key has been created %lu seconds in future (time warp or clock problem)\n" msgstr "" "key has been created %lu seconds in future (time warp or clock problem)\n" -#: g10/keygen.c:5414 g10/keygen.c:5603 +#: g10/keygen.c:5468 g10/keygen.c:5657 #, c-format msgid "Note: creating subkeys for v3 keys is not OpenPGP compliant\n" msgstr "Note: creating subkeys for v3 keys is not OpenPGP compliant\n" -#: g10/keygen.c:5426 g10/keygen.c:5428 +#: g10/keygen.c:5480 g10/keygen.c:5482 #, c-format msgid "Secret parts of primary key are not available.\n" msgstr "Secret parts of primary key are not available.\n" -#: g10/keygen.c:5435 g10/keygen.c:5437 +#: g10/keygen.c:5489 g10/keygen.c:5491 #, c-format msgid "Secret parts of primary key are stored on-card.\n" msgstr "Secret parts of primary key are stored on-card.\n" -#: g10/keygen.c:5456 g10/keygen.c:5617 +#: g10/keygen.c:5510 g10/keygen.c:5671 msgid "Really create? (y/N) " msgstr "Really create? (y/N) " @@ -6772,30 +6776,30 @@ msgid "data not saved; use option \"--output\" to save it\n" msgstr "data not saved; use option “--output” to save it\n" -#: g10/plaintext.c:615 +#: g10/plaintext.c:620 msgid "Detached signature.\n" msgstr "Detached signature.\n" -#: g10/plaintext.c:623 +#: g10/plaintext.c:628 msgid "Please enter name of data file: " msgstr "Please enter name of data file: " -#: g10/plaintext.c:660 +#: g10/plaintext.c:665 #, c-format msgid "reading stdin ...\n" msgstr "reading stdin ...\n" -#: g10/plaintext.c:705 +#: g10/plaintext.c:710 #, c-format msgid "no signed data\n" msgstr "no signed data\n" -#: g10/plaintext.c:723 +#: g10/plaintext.c:728 #, c-format msgid "can't open signed data '%s'\n" msgstr "can't open signed data ‘%s’\n" -#: g10/plaintext.c:758 +#: g10/plaintext.c:763 #, c-format msgid "can't open signed data fd=%d: %s\n" msgstr "can't open signed data fd=%d: %s\n" @@ -7792,7 +7796,7 @@ msgid "no need for a trustdb check\n" msgstr "no need for a trustdb check\n" -#: g10/trustdb.c:631 g10/trustdb.c:2326 +#: g10/trustdb.c:631 g10/trustdb.c:2338 #, c-format msgid "next trustdb check due at %s\n" msgstr "next trustdb check due at %s\n" @@ -7822,38 +7826,38 @@ msgid "checking the trustdb\n" msgstr "checking the trustdb\n" -#: g10/trustdb.c:2047 +#: g10/trustdb.c:2059 #, c-format msgid "%d key processed" msgid_plural "%d keys processed" msgstr[0] "%d key processed" msgstr[1] "%d keys processed" -#: g10/trustdb.c:2050 +#: g10/trustdb.c:2062 #, c-format msgid " (%d validity count cleared)\n" msgid_plural " (%d validity counts cleared)\n" msgstr[0] " (%d validity count cleared)\n" msgstr[1] " (%d validity counts cleared)\n" -#: g10/trustdb.c:2120 +#: g10/trustdb.c:2132 #, c-format msgid "no ultimately trusted keys found\n" msgstr "no ultimately trusted keys found\n" -#: g10/trustdb.c:2134 +#: g10/trustdb.c:2146 #, c-format msgid "public key of ultimately trusted key %s not found\n" msgstr "public key of ultimately trusted key %s not found\n" -#: g10/trustdb.c:2252 +#: g10/trustdb.c:2264 #, c-format msgid "" "depth: %d valid: %3d signed: %3d trust: %d-, %dq, %dn, %dm, %df, %du\n" msgstr "" "depth: %d valid: %3d signed: %3d trust: %d-, %dq, %dn, %dm, %df, %du\n" -#: g10/trustdb.c:2333 +#: g10/trustdb.c:2345 #, c-format msgid "unable to update trustdb version record: write failed: %s\n" msgstr "unable to update trustdb version record: write failed: %s\n" @@ -7966,72 +7970,76 @@ #. TRANSLATORS: Put a \x1f right before a colon. This can be #. * used by pinentry to nicely align the names and values. Keep #. * the %s at the start and end of the string. -#: scd/app-p15.c:5116 scd/app-openpgp.c:2154 +#: scd/app-p15.c:5145 scd/app-nks.c:1541 scd/app-openpgp.c:2154 #, c-format msgid "%sNumber: %s%%0AHolder: %s%s" msgstr "%sNumber: %s%%0AHolder: %s%s" #. TRANSLATORS: This is the number of remaining attempts to #. * enter a PIN. Use %%0A (double-percent,0A) for a linefeed. -#: scd/app-p15.c:5135 scd/app-openpgp.c:2170 +#: scd/app-p15.c:5164 scd/app-nks.c:1560 scd/app-openpgp.c:2170 #, c-format msgid "Remaining attempts: %d" msgstr "Remaining attempts: %d" -#: scd/app-p15.c:5214 scd/app-nks.c:1113 +#: scd/app-p15.c:5243 scd/app-nks.c:2112 msgid "||Please enter the PIN for the key to create qualified signatures." msgstr "||Please enter the PIN for the key to create qualified signatures." #. TRANSLATORS: Do not translate the "|A|" prefix but keep it at #. the start of the string. Use %0A (single percent) for a linefeed. -#: scd/app-p15.c:5217 scd/app-openpgp.c:2464 +#: scd/app-p15.c:5246 scd/app-openpgp.c:2465 msgid "|A|Please enter the Admin PIN" msgstr "|A|Please enter the Admin PIN" -#: scd/app-p15.c:5219 scd/app-nks.c:1103 +#: scd/app-p15.c:5248 scd/app-nks.c:2102 msgid "|P|Please enter the PIN Unblocking Code (PUK) for the standard keys." msgstr "|P|Please enter the PIN Unblocking Code (PUK) for the standard keys." -#: scd/app-p15.c:5222 scd/app-nks.c:1095 +#: scd/app-p15.c:5251 scd/app-nks.c:2093 msgid "||Please enter the PIN for the standard keys." msgstr "||Please enter the PIN for the standard keys." -#: scd/app-nks.c:709 scd/app-openpgp.c:3666 +#: scd/app-nks.c:1479 scd/app-openpgp.c:3675 #, c-format msgid "RSA modulus missing or not of size %d bits\n" msgstr "RSA modulus missing or not of size %d bits\n" -#: scd/app-nks.c:717 scd/app-openpgp.c:3678 +#: scd/app-nks.c:1487 scd/app-openpgp.c:3687 #, c-format msgid "RSA public exponent missing or larger than %d bits\n" msgstr "RSA public exponent missing or larger than %d bits\n" -#: scd/app-nks.c:797 scd/app-openpgp.c:2327 scd/app-openpgp.c:2346 -#: scd/app-openpgp.c:2513 scd/app-openpgp.c:2531 scd/app-openpgp.c:2829 -#: scd/app-openpgp.c:2876 scd/app-openpgp.c:2991 scd/app-dinsig.c:302 +#: scd/app-nks.c:1660 +msgid "Note: PIN has not yet been enabled." +msgstr "Note: PIN has not yet been enabled." + +#: scd/app-nks.c:1671 scd/app-openpgp.c:2327 scd/app-openpgp.c:2346 +#: scd/app-openpgp.c:2515 scd/app-openpgp.c:2533 scd/app-openpgp.c:2832 +#: scd/app-openpgp.c:2879 scd/app-openpgp.c:3000 scd/app-dinsig.c:303 #, c-format msgid "PIN callback returned error: %s\n" msgstr "PIN callback returned error: %s\n" -#: scd/app-nks.c:830 +#: scd/app-nks.c:1707 #, c-format msgid "the NullPIN has not yet been changed\n" msgstr "the NullPIN has not yet been changed\n" -#: scd/app-nks.c:1094 +#: scd/app-nks.c:2092 msgid "|N|Please enter a new PIN for the standard keys." msgstr "|N|Please enter a new PIN for the standard keys." -#: scd/app-nks.c:1101 +#: scd/app-nks.c:2100 msgid "|NP|Please enter a new PIN Unblocking Code (PUK) for the standard keys." msgstr "" "|NP|Please enter a new PIN Unblocking Code (PUK) for the standard keys." -#: scd/app-nks.c:1111 +#: scd/app-nks.c:2110 msgid "|N|Please enter a new PIN for the key to create qualified signatures." msgstr "|N|Please enter a new PIN for the key to create qualified signatures." -#: scd/app-nks.c:1121 +#: scd/app-nks.c:2120 msgid "" "|NP|Please enter a new PIN Unblocking Code (PUK) for the key to create " "qualified signatures." @@ -8039,7 +8047,7 @@ "|NP|Please enter a new PIN Unblocking Code (PUK) for the key to create " "qualified signatures." -#: scd/app-nks.c:1123 +#: scd/app-nks.c:2122 msgid "" "|P|Please enter the PIN Unblocking Code (PUK) for the key to create " "qualified signatures." @@ -8047,7 +8055,7 @@ "|P|Please enter the PIN Unblocking Code (PUK) for the key to create " "qualified signatures." -#: scd/app-nks.c:1230 scd/app-openpgp.c:2910 scd/app-dinsig.c:532 +#: scd/app-nks.c:2295 scd/app-openpgp.c:2913 scd/app-dinsig.c:535 #, c-format msgid "error getting new PIN: %s\n" msgstr "error getting new PIN: %s\n" @@ -8062,7 +8070,7 @@ msgid "failed to store the creation date: %s\n" msgstr "failed to store the creation date: %s\n" -#: scd/app-openpgp.c:1271 scd/app-openpgp.c:2857 scd/app-openpgp.c:5041 +#: scd/app-openpgp.c:1271 scd/app-openpgp.c:2860 scd/app-openpgp.c:5051 #, c-format msgid "error retrieving CHV status from card\n" msgstr "error retrieving CHV status from card\n" @@ -8082,7 +8090,7 @@ msgid "response does not contain the EC public key\n" msgstr "response does not contain the EC public key\n" -#: scd/app-openpgp.c:1664 scd/app-openpgp.c:4286 +#: scd/app-openpgp.c:1664 scd/app-openpgp.c:4295 #, c-format msgid "response does not contain the public key data\n" msgstr "response does not contain the public key data\n" @@ -8114,23 +8122,23 @@ msgid "||Please unlock the card" msgstr "||Please unlock the card" -#: scd/app-openpgp.c:2353 scd/app-openpgp.c:2538 scd/app-openpgp.c:2836 +#: scd/app-openpgp.c:2353 scd/app-openpgp.c:2540 scd/app-openpgp.c:2839 #, c-format msgid "PIN for CHV%d is too short; minimum length is %d\n" msgstr "PIN for CHV%d is too short; minimum length is %d\n" -#: scd/app-openpgp.c:2367 scd/app-openpgp.c:2414 scd/app-openpgp.c:2552 -#: scd/app-openpgp.c:4644 +#: scd/app-openpgp.c:2368 scd/app-openpgp.c:2415 scd/app-openpgp.c:2554 +#: scd/app-openpgp.c:4654 #, c-format msgid "verify CHV%d failed: %s\n" msgstr "verify CHV%d failed: %s\n" -#: scd/app-openpgp.c:2450 scd/app-openpgp.c:5050 +#: scd/app-openpgp.c:2451 scd/app-openpgp.c:5060 #, c-format msgid "card is permanently locked!\n" msgstr "card is permanently locked!\n" -#: scd/app-openpgp.c:2454 +#: scd/app-openpgp.c:2455 #, c-format msgid "%d Admin PIN attempt remaining before card is permanently locked\n" msgid_plural "" @@ -8138,20 +8146,20 @@ msgstr[0] "%d Admin PIN attempt remaining before card is permanently locked\n" msgstr[1] "%d Admin PIN attempts remaining before card is permanently locked\n" -#: scd/app-openpgp.c:2485 +#: scd/app-openpgp.c:2486 #, c-format msgid "access to admin commands is not configured\n" msgstr "access to admin commands is not configured\n" -#: scd/app-openpgp.c:2823 +#: scd/app-openpgp.c:2826 msgid "||Please enter the PIN" msgstr "||Please enter the PIN" -#: scd/app-openpgp.c:2872 +#: scd/app-openpgp.c:2875 msgid "||Please enter the Reset Code for the card" msgstr "||Please enter the Reset Code for the card" -#: scd/app-openpgp.c:2882 scd/app-openpgp.c:2943 +#: scd/app-openpgp.c:2885 scd/app-openpgp.c:2946 #, c-format msgid "Reset Code is too short; minimum length is %d\n" msgstr "Reset Code is too short; minimum length is %d\n" @@ -8159,133 +8167,133 @@ #. 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:2905 +#: scd/app-openpgp.c:2908 msgid "|RN|New Reset Code" msgstr "|RN|New Reset Code" -#: scd/app-openpgp.c:2906 +#: scd/app-openpgp.c:2909 msgid "|AN|New Admin PIN" msgstr "|AN|New Admin PIN" -#: scd/app-openpgp.c:2906 +#: scd/app-openpgp.c:2909 msgid "|N|New PIN" msgstr "|N|New PIN" -#: scd/app-openpgp.c:2987 +#: scd/app-openpgp.c:2996 msgid "||Please enter the Admin PIN and New Admin PIN" msgstr "||Please enter the Admin PIN and New Admin PIN" -#: scd/app-openpgp.c:2988 +#: scd/app-openpgp.c:2997 msgid "||Please enter the PIN and New PIN" msgstr "||Please enter the PIN and New PIN" -#: scd/app-openpgp.c:3050 scd/app-openpgp.c:4346 +#: scd/app-openpgp.c:3059 scd/app-openpgp.c:4355 #, c-format msgid "error reading application data\n" msgstr "error reading application data\n" -#: scd/app-openpgp.c:3056 scd/app-openpgp.c:4353 +#: scd/app-openpgp.c:3065 scd/app-openpgp.c:4362 #, c-format msgid "error reading fingerprint DO\n" msgstr "error reading fingerprint DO\n" -#: scd/app-openpgp.c:3066 +#: scd/app-openpgp.c:3075 #, c-format msgid "key already exists\n" msgstr "key already exists\n" -#: scd/app-openpgp.c:3070 +#: scd/app-openpgp.c:3079 #, c-format msgid "existing key will be replaced\n" msgstr "existing key will be replaced\n" -#: scd/app-openpgp.c:3072 +#: scd/app-openpgp.c:3081 #, c-format msgid "generating new key\n" msgstr "generating new key\n" -#: scd/app-openpgp.c:3074 +#: scd/app-openpgp.c:3083 #, c-format msgid "writing new key\n" msgstr "writing new key\n" -#: scd/app-openpgp.c:3647 scd/app-openpgp.c:3999 +#: scd/app-openpgp.c:3656 scd/app-openpgp.c:4008 #, c-format msgid "creation timestamp missing\n" msgstr "creation timestamp missing\n" -#: scd/app-openpgp.c:3688 scd/app-openpgp.c:3696 +#: scd/app-openpgp.c:3697 scd/app-openpgp.c:3705 #, c-format msgid "RSA prime %s missing or not of size %d bits\n" msgstr "RSA prime %s missing or not of size %d bits\n" -#: scd/app-openpgp.c:3829 scd/app-openpgp.c:4106 +#: scd/app-openpgp.c:3838 scd/app-openpgp.c:4115 #, c-format msgid "failed to store the key: %s\n" msgstr "failed to store the key: %s\n" -#: scd/app-openpgp.c:3993 +#: scd/app-openpgp.c:4002 #, c-format msgid "unsupported curve\n" msgstr "unsupported curve\n" -#: scd/app-openpgp.c:4263 +#: scd/app-openpgp.c:4272 #, c-format msgid "please wait while key is being generated ...\n" msgstr "please wait while key is being generated ...\n" -#: scd/app-openpgp.c:4271 +#: scd/app-openpgp.c:4280 #, c-format msgid "generating key failed\n" msgstr "generating key failed\n" -#: scd/app-openpgp.c:4277 +#: scd/app-openpgp.c:4286 #, c-format msgid "key generation completed (%d second)\n" msgid_plural "key generation completed (%d seconds)\n" msgstr[0] "key generation completed (%d second)\n" msgstr[1] "key generation completed (%d seconds)\n" -#: scd/app-openpgp.c:4311 +#: scd/app-openpgp.c:4320 #, c-format msgid "invalid structure of OpenPGP card (DO 0x93)\n" msgstr "invalid structure of OpenPGP card (DO 0x93)\n" -#: scd/app-openpgp.c:4361 +#: scd/app-openpgp.c:4370 #, c-format msgid "fingerprint on card does not match requested one\n" msgstr "fingerprint on card does not match requested one\n" -#: scd/app-openpgp.c:4560 +#: scd/app-openpgp.c:4569 #, c-format msgid "card does not support digest algorithm %s\n" msgstr "card does not support digest algorithm %s\n" -#: scd/app-openpgp.c:4618 +#: scd/app-openpgp.c:4627 #, c-format msgid "signatures created so far: %lu\n" msgstr "signatures created so far: %lu\n" -#: scd/app-openpgp.c:5055 +#: scd/app-openpgp.c:5065 #, c-format msgid "" "verification of Admin PIN is currently prohibited through this command\n" msgstr "" "verification of Admin PIN is currently prohibited through this command\n" -#: scd/app-openpgp.c:5386 scd/app-openpgp.c:5398 +#: scd/app-openpgp.c:5396 scd/app-openpgp.c:5408 #, c-format msgid "can't access %s - invalid OpenPGP card?\n" msgstr "can't access %s - invalid OpenPGP card?\n" -#: scd/app-dinsig.c:298 +#: scd/app-dinsig.c:299 msgid "||Please enter your PIN at the reader's pinpad" msgstr "||Please enter your PIN at the reader's pinpad" #. 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-dinsig.c:529 +#: scd/app-dinsig.c:532 msgid "|N|Initial New PIN" msgstr "|N|Initial New PIN" @@ -8372,11 +8380,11 @@ msgid "validation model requested by certificate: %s" msgstr "validation model requested by certificate: %s" -#: sm/certchain.c:199 sm/certchain.c:2164 +#: sm/certchain.c:199 sm/certchain.c:2165 msgid "chain" msgstr "chain" -#: sm/certchain.c:200 sm/certchain.c:2164 +#: sm/certchain.c:200 sm/certchain.c:2165 msgid "shell" msgstr "shell" @@ -8399,234 +8407,234 @@ msgid "failed to open '%s': %s\n" msgstr "failed to open '%s': %s\n" -#: sm/certchain.c:355 sm/certchain.c:384 dirmngr/validate.c:204 +#: sm/certchain.c:355 sm/certchain.c:385 dirmngr/validate.c:204 #, c-format msgid "Note: non-critical certificate policy not allowed" msgstr "Note: non-critical certificate policy not allowed" -#: sm/certchain.c:359 sm/certchain.c:388 dirmngr/validate.c:209 +#: sm/certchain.c:359 sm/certchain.c:389 dirmngr/validate.c:209 #, c-format msgid "certificate policy not allowed" msgstr "certificate policy not allowed" -#: sm/certchain.c:595 sm/keydb.c:1084 sm/keydb.c:1171 +#: sm/certchain.c:596 sm/keydb.c:1084 sm/keydb.c:1171 #, c-format msgid "failed to get the fingerprint\n" msgstr "failed to get the fingerprint\n" -#: sm/certchain.c:624 +#: sm/certchain.c:625 #, c-format msgid "looking up issuer at external location\n" msgstr "looking up issuer at external location\n" -#: sm/certchain.c:644 +#: sm/certchain.c:645 #, c-format msgid "number of issuers matching: %d\n" msgstr "number of issuers matching: %d\n" -#: sm/certchain.c:723 dirmngr/ocsp.c:685 +#: sm/certchain.c:724 dirmngr/ocsp.c:685 #, c-format msgid "can't get authorityInfoAccess: %s\n" msgstr "can't get authorityInfoAccess: %s\n" -#: sm/certchain.c:791 +#: sm/certchain.c:792 #, c-format msgid "looking up issuer from the Dirmngr cache\n" msgstr "looking up issuer from the Dirmngr cache\n" -#: sm/certchain.c:816 +#: sm/certchain.c:817 #, c-format msgid "number of matching certificates: %d\n" msgstr "number of matching certificates: %d\n" -#: sm/certchain.c:819 +#: sm/certchain.c:820 #, c-format msgid "dirmngr cache-only key lookup failed: %s\n" msgstr "dirmngr cache-only key lookup failed: %s\n" -#: sm/certchain.c:1041 sm/certchain.c:1554 sm/certchain.c:2192 sm/decrypt.c:728 +#: sm/certchain.c:1042 sm/certchain.c:1555 sm/certchain.c:2193 sm/decrypt.c:728 #: sm/encrypt.c:345 sm/import.c:415 sm/keydb.c:1091 sm/keydb.c:1178 #: sm/sign.c:337 sm/verify.c:118 #, c-format msgid "failed to allocate keyDB handle\n" msgstr "failed to allocate keyDB handle\n" -#: sm/certchain.c:1225 +#: sm/certchain.c:1226 msgid "certificate has been revoked" msgstr "certificate has been revoked" -#: sm/certchain.c:1240 +#: sm/certchain.c:1241 msgid "the status of the certificate is unknown" msgstr "the status of the certificate is unknown" -#: sm/certchain.c:1247 +#: sm/certchain.c:1248 #, c-format msgid "please make sure that the \"dirmngr\" is properly installed\n" msgstr "please make sure that the “dirmngr” is properly installed\n" -#: sm/certchain.c:1253 +#: sm/certchain.c:1254 #, c-format msgid "checking the CRL failed: %s" msgstr "checking the CRL failed: %s" -#: sm/certchain.c:1282 sm/certchain.c:1350 dirmngr/validate.c:497 +#: sm/certchain.c:1283 sm/certchain.c:1351 dirmngr/validate.c:497 #, c-format msgid "certificate with invalid validity: %s" msgstr "certificate with invalid validity: %s" -#: sm/certchain.c:1297 sm/certchain.c:1382 dirmngr/validate.c:515 +#: sm/certchain.c:1298 sm/certchain.c:1383 dirmngr/validate.c:515 #, c-format msgid "certificate not yet valid" msgstr "certificate not yet valid" -#: sm/certchain.c:1298 sm/certchain.c:1383 +#: sm/certchain.c:1299 sm/certchain.c:1384 msgid "root certificate not yet valid" msgstr "root certificate not yet valid" -#: sm/certchain.c:1299 sm/certchain.c:1384 +#: sm/certchain.c:1300 sm/certchain.c:1385 msgid "intermediate certificate not yet valid" msgstr "intermediate certificate not yet valid" -#: sm/certchain.c:1312 dirmngr/validate.c:526 +#: sm/certchain.c:1313 dirmngr/validate.c:526 #, c-format msgid "certificate has expired" msgstr "certificate has expired" -#: sm/certchain.c:1313 +#: sm/certchain.c:1314 msgid "root certificate has expired" msgstr "root certificate has expired" -#: sm/certchain.c:1314 +#: sm/certchain.c:1315 msgid "intermediate certificate has expired" msgstr "intermediate certificate has expired" -#: sm/certchain.c:1356 +#: sm/certchain.c:1357 #, c-format msgid "required certificate attributes missing: %s%s%s" msgstr "required certificate attributes missing: %s%s%s" -#: sm/certchain.c:1365 +#: sm/certchain.c:1366 msgid "certificate with invalid validity" msgstr "certificate with invalid validity" -#: sm/certchain.c:1402 +#: sm/certchain.c:1403 msgid "signature not created during lifetime of certificate" msgstr "signature not created during lifetime of certificate" -#: sm/certchain.c:1404 +#: sm/certchain.c:1405 msgid "certificate not created during lifetime of issuer" msgstr "certificate not created during lifetime of issuer" -#: sm/certchain.c:1405 +#: sm/certchain.c:1406 msgid "intermediate certificate not created during lifetime of issuer" msgstr "intermediate certificate not created during lifetime of issuer" -#: sm/certchain.c:1409 +#: sm/certchain.c:1410 #, c-format msgid " ( signature created at " msgstr " ( signature created at " -#: sm/certchain.c:1410 +#: sm/certchain.c:1411 #, c-format msgid " (certificate created at " msgstr " (certificate created at " -#: sm/certchain.c:1413 +#: sm/certchain.c:1414 #, c-format msgid " (certificate valid from " msgstr " (certificate valid from " -#: sm/certchain.c:1414 +#: sm/certchain.c:1415 #, c-format msgid " ( issuer valid from " msgstr " ( issuer valid from " -#: sm/certchain.c:1444 dirmngr/validate.c:577 +#: sm/certchain.c:1445 dirmngr/validate.c:577 #, c-format msgid "fingerprint=%s\n" msgstr "fingerprint=%s\n" -#: sm/certchain.c:1453 +#: sm/certchain.c:1454 #, c-format msgid "root certificate has now been marked as trusted\n" msgstr "root certificate has now been marked as trusted\n" -#: sm/certchain.c:1466 +#: sm/certchain.c:1467 #, c-format msgid "interactive marking as trusted not enabled in gpg-agent\n" msgstr "interactive marking as trusted not enabled in gpg-agent\n" -#: sm/certchain.c:1472 +#: sm/certchain.c:1473 #, c-format msgid "interactive marking as trusted disabled for this session\n" msgstr "interactive marking as trusted disabled for this session\n" -#: sm/certchain.c:1531 +#: sm/certchain.c:1532 msgid "WARNING: creation time of signature not known - assuming current time" msgstr "WARNING: creation time of signature not known - assuming current time" -#: sm/certchain.c:1595 +#: sm/certchain.c:1596 msgid "no issuer found in certificate" msgstr "no issuer found in certificate" -#: sm/certchain.c:1673 +#: sm/certchain.c:1674 msgid "self-signed certificate has a BAD signature" msgstr "self-signed certificate has a BAD signature" -#: sm/certchain.c:1742 dirmngr/validate.c:575 +#: sm/certchain.c:1743 dirmngr/validate.c:575 #, c-format msgid "root certificate is not marked trusted" msgstr "root certificate is not marked trusted" -#: sm/certchain.c:1758 +#: sm/certchain.c:1759 #, c-format msgid "checking the trust list failed: %s\n" msgstr "checking the trust list failed: %s\n" -#: sm/certchain.c:1789 sm/import.c:176 sm/keylist.c:1396 dirmngr/validate.c:630 +#: sm/certchain.c:1790 sm/import.c:176 sm/keylist.c:1396 dirmngr/validate.c:630 #, c-format msgid "certificate chain too long\n" msgstr "certificate chain too long\n" -#: sm/certchain.c:1801 dirmngr/validate.c:642 +#: sm/certchain.c:1802 dirmngr/validate.c:642 #, c-format msgid "issuer certificate not found" msgstr "issuer certificate not found" -#: sm/certchain.c:1834 dirmngr/validate.c:668 +#: sm/certchain.c:1835 dirmngr/validate.c:668 #, c-format msgid "certificate has a BAD signature" msgstr "certificate has a BAD signature" -#: sm/certchain.c:1866 dirmngr/validate.c:692 +#: sm/certchain.c:1867 dirmngr/validate.c:692 msgid "found another possible matching CA certificate - trying again" msgstr "found another possible matching CA certificate - trying again" -#: sm/certchain.c:1925 dirmngr/validate.c:717 +#: sm/certchain.c:1926 dirmngr/validate.c:717 #, c-format msgid "certificate chain longer than allowed by CA (%d)" msgstr "certificate chain longer than allowed by CA (%d)" -#: sm/certchain.c:1967 sm/certchain.c:2263 dirmngr/validate.c:747 +#: sm/certchain.c:1968 sm/certchain.c:2264 dirmngr/validate.c:747 #, c-format msgid "certificate is good\n" msgstr "certificate is good\n" -#: sm/certchain.c:1968 +#: sm/certchain.c:1969 #, c-format msgid "intermediate certificate is good\n" msgstr "intermediate certificate is good\n" -#: sm/certchain.c:1969 +#: sm/certchain.c:1970 #, c-format msgid "root certificate is good\n" msgstr "root certificate is good\n" -#: sm/certchain.c:2151 +#: sm/certchain.c:2152 msgid "switching to chain model" msgstr "switching to chain model" -#: sm/certchain.c:2160 +#: sm/certchain.c:2161 #, c-format msgid "validation model used: %s" msgstr "validation model used: %s" Binary files /tmp/tmpp8wxn021/8c8sKM9mxi/gnupg2-2.2.40/po/en@quot.gmo and /tmp/tmpp8wxn021/sgn7BhUbzZ/gnupg2-2.2.41/po/en@quot.gmo differ diff -Nru gnupg2-2.2.40/po/en@quot.po gnupg2-2.2.41/po/en@quot.po --- gnupg2-2.2.40/po/en@quot.po 2022-10-10 09:58:29.000000000 +0000 +++ gnupg2-2.2.41/po/en@quot.po 2022-12-09 08:48:38.000000000 +0000 @@ -27,10 +27,10 @@ # msgid "" msgstr "" -"Project-Id-Version: GNU gnupg 2.2.40\n" +"Project-Id-Version: GNU gnupg 2.2.41\n" "Report-Msgid-Bugs-To: translations@gnupg.org\n" -"POT-Creation-Date: 2022-10-10 11:58+0200\n" -"PO-Revision-Date: 2022-10-10 11:58+0200\n" +"POT-Creation-Date: 2022-12-09 09:48+0100\n" +"PO-Revision-Date: 2022-12-09 09:48+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "Language: en\n" @@ -243,20 +243,20 @@ msgid "ssh keys greater than %d bits are not supported\n" msgstr "ssh keys greater than %d bits are not supported\n" -#: agent/command-ssh.c:862 common/dotlock.c:856 g10/card-util.c:947 -#: g10/exec.c:554 g10/export.c:1320 g10/gpg.c:1400 g10/keygen.c:4998 +#: agent/command-ssh.c:862 common/dotlock.c:856 g10/card-util.c:946 +#: g10/exec.c:554 g10/export.c:1335 g10/gpg.c:1409 g10/keygen.c:5052 #: g10/keyring.c:1322 g10/keyring.c:1637 g10/openfile.c:291 g10/sign.c:1008 #: g10/sign.c:1322 g10/tdbio.c:753 #, c-format msgid "can't create '%s': %s\n" msgstr "can't create '%s': %s\n" -#: agent/command-ssh.c:874 common/helpfile.c:57 g10/card-util.c:904 +#: agent/command-ssh.c:874 common/helpfile.c:57 g10/card-util.c:903 #: g10/dearmor.c:59 g10/dearmor.c:106 g10/decrypt.c:65 g10/decrypt.c:136 -#: g10/decrypt.c:153 g10/encrypt.c:239 g10/encrypt.c:678 g10/gpg.c:1401 -#: g10/import.c:364 g10/import.c:548 g10/import.c:776 g10/keygen.c:4036 +#: g10/decrypt.c:153 g10/encrypt.c:239 g10/encrypt.c:678 g10/gpg.c:1410 +#: g10/import.c:365 g10/import.c:549 g10/import.c:777 g10/keygen.c:4090 #: g10/keyring.c:1663 g10/openfile.c:195 g10/openfile.c:209 g10/plaintext.c:128 -#: g10/plaintext.c:649 g10/sign.c:990 g10/sign.c:1201 g10/sign.c:1306 +#: g10/plaintext.c:654 g10/sign.c:990 g10/sign.c:1201 g10/sign.c:1306 #: g10/sign.c:1451 g10/tdbdump.c:145 g10/tdbdump.c:153 g10/tdbio.c:758 #: g10/tdbio.c:829 g10/verify.c:96 g10/verify.c:160 sm/gpgsm.c:2160 #: sm/gpgsm.c:2190 sm/gpgsm.c:2228 sm/qualified.c:66 dirmngr/certcache.c:420 @@ -477,33 +477,33 @@ msgid "csh-style command output" msgstr "csh-style command output" -#: agent/gpg-agent.c:185 g10/gpg.c:579 scd/scdaemon.c:126 sm/gpgsm.c:410 +#: agent/gpg-agent.c:185 g10/gpg.c:580 scd/scdaemon.c:126 sm/gpgsm.c:410 #: dirmngr/dirmngr.c:192 msgid "|FILE|read options from FILE" msgstr "|FILE|read options from FILE" -#: agent/gpg-agent.c:189 g10/gpg.c:566 scd/scdaemon.c:130 sm/gpgsm.c:259 +#: agent/gpg-agent.c:189 g10/gpg.c:567 scd/scdaemon.c:130 sm/gpgsm.c:259 #: dirmngr/dirmngr.c:196 msgid "Options controlling the diagnostic output" msgstr "Options controlling the diagnostic output" -#: agent/gpg-agent.c:191 g10/gpg.c:568 g10/gpgv.c:78 kbx/kbxutil.c:88 +#: agent/gpg-agent.c:191 g10/gpg.c:569 g10/gpgv.c:78 kbx/kbxutil.c:88 #: scd/scdaemon.c:132 sm/gpgsm.c:261 dirmngr/dirmngr-client.c:70 #: dirmngr/dirmngr.c:198 tools/gpg-connect-agent.c:78 tools/gpgconf.c:110 msgid "verbose" msgstr "verbose" -#: agent/gpg-agent.c:192 g10/gpg.c:570 g10/gpgv.c:79 kbx/kbxutil.c:89 +#: agent/gpg-agent.c:192 g10/gpg.c:571 g10/gpgv.c:79 kbx/kbxutil.c:89 #: scd/scdaemon.c:133 sm/gpgsm.c:263 dirmngr/dirmngr-client.c:71 #: dirmngr/dirmngr.c:199 msgid "be somewhat more quiet" msgstr "be somewhat more quiet" -#: agent/gpg-agent.c:200 g10/gpg.c:583 sm/gpgsm.c:276 dirmngr/dirmngr.c:209 +#: agent/gpg-agent.c:200 g10/gpg.c:584 sm/gpgsm.c:276 dirmngr/dirmngr.c:209 msgid "|FILE|write server mode logs to FILE" msgstr "|FILE|write server mode logs to FILE" -#: agent/gpg-agent.c:204 g10/gpg.c:589 scd/scdaemon.c:147 sm/gpgsm.c:283 +#: agent/gpg-agent.c:204 g10/gpg.c:590 scd/scdaemon.c:147 sm/gpgsm.c:283 #: dirmngr/dirmngr.c:213 msgid "Options controlling the configuration" msgstr "Options controlling the configuration" @@ -540,7 +540,7 @@ msgid "enable putty support" msgstr "enable putty support" -#: agent/gpg-agent.c:237 g10/gpg.c:831 scd/scdaemon.c:175 sm/gpgsm.c:369 +#: agent/gpg-agent.c:237 g10/gpg.c:832 scd/scdaemon.c:175 sm/gpgsm.c:369 msgid "Options controlling the security" msgstr "Options controlling the security" @@ -636,7 +636,7 @@ #. reporting address. This is so that we can change the #. reporting address without breaking the translations. #: agent/gpg-agent.c:563 agent/preset-passphrase.c:100 agent/protect-tool.c:155 -#: g10/gpg.c:1108 g10/gpgv.c:149 kbx/kbxutil.c:113 scd/scdaemon.c:313 +#: g10/gpg.c:1117 g10/gpgv.c:149 kbx/kbxutil.c:113 scd/scdaemon.c:313 #: sm/gpgsm.c:600 dirmngr/dirmngr-client.c:168 dirmngr/dirmngr.c:458 #: tools/gpg-connect-agent.c:205 tools/gpgconf.c:154 #: tools/gpg-check-pattern.c:143 @@ -655,26 +655,26 @@ "Syntax: @GPG_AGENT@ [options] [command [args]]\n" "Secret key management for @GNUPG@\n" -#: agent/gpg-agent.c:619 g10/gpg.c:1304 scd/scdaemon.c:385 sm/gpgsm.c:748 +#: agent/gpg-agent.c:619 g10/gpg.c:1313 scd/scdaemon.c:385 sm/gpgsm.c:748 #: dirmngr/dirmngr.c:542 #, c-format msgid "invalid debug-level '%s' given\n" msgstr "invalid debug-level ‘%s’ given\n" -#: agent/gpg-agent.c:988 g10/gpg.c:3810 g10/gpg.c:3834 sm/gpgsm.c:1585 +#: agent/gpg-agent.c:988 g10/gpg.c:3830 g10/gpg.c:3854 sm/gpgsm.c:1585 #: sm/gpgsm.c:1591 #, c-format msgid "selected digest algorithm is invalid\n" msgstr "selected digest algorithm is invalid\n" #: agent/gpg-agent.c:1216 agent/gpg-agent.c:2029 common/argparse.c:1766 -#: common/argparse.c:1858 g10/gpg.c:2517 scd/scdaemon.c:547 sm/gpgsm.c:1007 +#: common/argparse.c:1858 g10/gpg.c:2526 scd/scdaemon.c:547 sm/gpgsm.c:1007 #: dirmngr/dirmngr.c:1081 dirmngr/dirmngr.c:1937 #, c-format msgid "reading options from '%s'\n" msgstr "reading options from ‘%s’\n" -#: agent/gpg-agent.c:1332 g10/gpg.c:3751 scd/scdaemon.c:671 sm/gpgsm.c:1522 +#: agent/gpg-agent.c:1332 g10/gpg.c:3769 scd/scdaemon.c:671 sm/gpgsm.c:1522 #: dirmngr/dirmngr.c:1190 tools/gpg-connect-agent.c:1244 tools/gpgconf.c:677 #, c-format msgid "Note: '%s' is not considered an option\n" @@ -804,7 +804,7 @@ "Syntax: gpg-preset-passphrase [options] KEYGRIP\n" "Password cache maintenance\n" -#: agent/protect-tool.c:108 g10/gpg.c:441 kbx/kbxutil.c:71 sm/gpgsm.c:210 +#: agent/protect-tool.c:108 g10/gpg.c:442 kbx/kbxutil.c:71 sm/gpgsm.c:210 #: dirmngr/dirmngr.c:171 tools/gpgconf.c:80 msgid "" "@Commands:\n" @@ -1032,7 +1032,7 @@ msgid "secret key parts are not available\n" msgstr "secret key parts are not available\n" -#: agent/cvt-openpgp.c:344 g10/card-util.c:1556 +#: agent/cvt-openpgp.c:344 g10/card-util.c:1555 #, c-format msgid "public key algorithm %d (%s) is not supported\n" msgstr "public key algorithm %d (%s) is not supported\n" @@ -1187,7 +1187,7 @@ msgid "out of core while allocating %lu bytes" msgstr "out of core while allocating %lu bytes" -#: common/miscellaneous.c:115 g10/card-util.c:911 tools/no-libgcrypt.c:30 +#: common/miscellaneous.c:115 g10/card-util.c:910 tools/no-libgcrypt.c:30 #, c-format msgid "error allocating enough memory: %s\n" msgstr "error allocating enough memory: %s\n" @@ -1300,7 +1300,7 @@ msgstr "algorithm: %s" #: common/audit.c:774 common/audit.c:776 common/audit.c:921 common/audit.c:923 -#: scd/app-openpgp.c:3557 +#: scd/app-openpgp.c:3566 #, c-format msgid "unsupported algorithm: %s" msgstr "unsupported algorithm: %s" @@ -1375,11 +1375,11 @@ msgid "Root certificate trustworthy" msgstr "Root certificate trustworthy" -#: common/audit.c:1112 sm/certchain.c:1235 +#: common/audit.c:1112 sm/certchain.c:1236 msgid "no CRL found for certificate" msgstr "no CRL found for certificate" -#: common/audit.c:1115 sm/certchain.c:1245 +#: common/audit.c:1115 sm/certchain.c:1246 msgid "the available CRL is too old" msgstr "the available CRL is too old" @@ -1502,7 +1502,7 @@ msgid "missing argument for option \"%.50s\"\n" msgstr "missing argument for option “%.50s”\n" -#: common/argparse.c:558 g10/gpg.c:3525 +#: common/argparse.c:558 g10/gpg.c:3543 #, c-format msgid "invalid argument for option \"%.50s\"\n" msgstr "invalid argument for option “%.50s”\n" @@ -1601,92 +1601,92 @@ msgid "%s is too old (need %s, have %s)\n" msgstr "%s is too old (need %s, have %s)\n" -#: g10/armor.c:423 +#: g10/armor.c:424 #, c-format msgid "armor: %s\n" msgstr "armor: %s\n" -#: g10/armor.c:462 +#: g10/armor.c:463 #, c-format msgid "invalid armor header: " msgstr "invalid armor header: " -#: g10/armor.c:473 +#: g10/armor.c:474 #, c-format msgid "armor header: " msgstr "armor header: " -#: g10/armor.c:486 +#: g10/armor.c:487 #, c-format msgid "invalid clearsig header\n" msgstr "invalid clearsig header\n" -#: g10/armor.c:499 +#: g10/armor.c:500 #, c-format msgid "unknown armor header: " msgstr "unknown armor header: " -#: g10/armor.c:552 +#: g10/armor.c:553 #, c-format msgid "nested clear text signatures\n" msgstr "nested clear text signatures\n" -#: g10/armor.c:687 +#: g10/armor.c:688 #, c-format msgid "unexpected armor: " msgstr "unexpected armor: " -#: g10/armor.c:700 +#: g10/armor.c:701 #, c-format msgid "invalid dash escaped line: " msgstr "invalid dash escaped line: " -#: g10/armor.c:872 g10/armor.c:1492 +#: g10/armor.c:873 g10/armor.c:1493 #, c-format msgid "invalid radix64 character %02X skipped\n" msgstr "invalid radix64 character %02X skipped\n" -#: g10/armor.c:915 +#: g10/armor.c:916 #, c-format msgid "premature eof (no CRC)\n" msgstr "premature eof (no CRC)\n" -#: g10/armor.c:949 +#: g10/armor.c:950 #, c-format msgid "premature eof (in CRC)\n" msgstr "premature eof (in CRC)\n" -#: g10/armor.c:957 +#: g10/armor.c:958 #, c-format msgid "malformed CRC\n" msgstr "malformed CRC\n" -#: g10/armor.c:961 g10/armor.c:1529 +#: g10/armor.c:962 g10/armor.c:1530 #, c-format msgid "CRC error; %06lX - %06lX\n" msgstr "CRC error; %06lX - %06lX\n" -#: g10/armor.c:981 +#: g10/armor.c:982 #, c-format msgid "premature eof (in trailer)\n" msgstr "premature eof (in trailer)\n" -#: g10/armor.c:985 +#: g10/armor.c:986 #, c-format msgid "error in trailer line\n" msgstr "error in trailer line\n" -#: g10/armor.c:1305 +#: g10/armor.c:1306 #, c-format msgid "no valid OpenPGP data found.\n" msgstr "no valid OpenPGP data found.\n" -#: g10/armor.c:1310 +#: g10/armor.c:1311 #, c-format msgid "invalid armor: line longer than %d characters\n" msgstr "invalid armor: line longer than %d characters\n" -#: g10/armor.c:1314 +#: g10/armor.c:1315 #, c-format msgid "" "quoted printable character in armor - probably a buggy MTA has been used\n" @@ -1820,23 +1820,23 @@ msgid "server uses an invalid certificate" msgstr "server uses an invalid certificate" -#: g10/call-dirmngr.c:462 g10/gpg.c:4458 +#: g10/call-dirmngr.c:462 g10/gpg.c:4478 #, c-format msgid "Note: %s\n" msgstr "Note: %s\n" -#: g10/card-util.c:86 g10/card-util.c:366 g10/card-util.c:1918 +#: g10/card-util.c:86 g10/card-util.c:366 g10/card-util.c:1917 #, c-format msgid "OpenPGP card not available: %s\n" msgstr "OpenPGP card not available: %s\n" -#: g10/card-util.c:91 g10/card-util.c:1924 +#: g10/card-util.c:91 g10/card-util.c:1923 #, c-format msgid "OpenPGP card no. %s detected\n" msgstr "OpenPGP card no. %s detected\n" -#: g10/card-util.c:97 g10/card-util.c:2253 g10/delkey.c:160 g10/keyedit.c:1423 -#: g10/keygen.c:4466 g10/revoke.c:214 g10/revoke.c:636 +#: g10/card-util.c:97 g10/card-util.c:2252 g10/delkey.c:160 g10/keyedit.c:1423 +#: g10/keygen.c:4520 g10/revoke.c:214 g10/revoke.c:636 #, c-format msgid "can't do this in batch mode\n" msgstr "can't do this in batch mode\n" @@ -1846,14 +1846,14 @@ msgid "This command is only available for version 2 cards\n" msgstr "This command is only available for version 2 cards\n" -#: g10/card-util.c:107 scd/app-openpgp.c:2866 +#: g10/card-util.c:107 scd/app-openpgp.c:2869 #, c-format msgid "Reset Code not or not anymore available\n" msgstr "Reset Code not or not anymore available\n" -#: g10/card-util.c:140 g10/card-util.c:1442 g10/card-util.c:1704 -#: g10/card-util.c:1796 g10/keyedit.c:394 g10/keyedit.c:415 g10/keyedit.c:429 -#: g10/keygen.c:1808 g10/keygen.c:1980 g10/keygen.c:2186 g10/keygen.c:2477 +#: g10/card-util.c:140 g10/card-util.c:1441 g10/card-util.c:1703 +#: g10/card-util.c:1795 g10/keyedit.c:394 g10/keyedit.c:415 g10/keyedit.c:429 +#: g10/keygen.c:1862 g10/keygen.c:2034 g10/keygen.c:2240 g10/keygen.c:2531 #: sm/certreqgen-ui.c:165 sm/certreqgen-ui.c:291 sm/certreqgen-ui.c:325 msgid "Your selection? " msgstr "Your selection? " @@ -1903,79 +1903,79 @@ msgid "Error: Combined name too long (limit is %d characters).\n" msgstr "Error: Combined name too long (limit is %d characters).\n" -#: g10/card-util.c:826 +#: g10/card-util.c:825 msgid "URL to retrieve public key: " msgstr "URL to retrieve public key: " -#: g10/card-util.c:920 g10/decrypt-data.c:509 g10/import.c:399 g10/import.c:746 -#: g10/import.c:798 dirmngr/crlcache.c:655 dirmngr/crlcache.c:660 +#: g10/card-util.c:919 g10/decrypt-data.c:509 g10/import.c:400 g10/import.c:747 +#: g10/import.c:799 dirmngr/crlcache.c:655 dirmngr/crlcache.c:660 #: dirmngr/crlcache.c:914 dirmngr/crlcache.c:920 dirmngr/dirmngr.c:1748 #: tools/gpgconf.c:483 tools/gpgconf.c:529 #, c-format msgid "error reading '%s': %s\n" msgstr "error reading '%s': %s\n" -#: g10/card-util.c:953 g10/decrypt-data.c:512 g10/export.c:2467 +#: g10/card-util.c:952 g10/decrypt-data.c:512 g10/export.c:2586 #: dirmngr/crlcache.c:925 #, c-format msgid "error writing '%s': %s\n" msgstr "error writing '%s': %s\n" -#: g10/card-util.c:980 +#: g10/card-util.c:979 msgid "Login data (account name): " msgstr "Login data (account name): " -#: g10/card-util.c:1018 +#: g10/card-util.c:1017 msgid "Private DO data: " msgstr "Private DO data: " -#: g10/card-util.c:1103 +#: g10/card-util.c:1102 msgid "Language preferences: " msgstr "Language preferences: " -#: g10/card-util.c:1111 +#: g10/card-util.c:1110 msgid "Error: invalid length of preference string.\n" msgstr "Error: invalid length of preference string.\n" -#: g10/card-util.c:1120 +#: g10/card-util.c:1119 msgid "Error: invalid characters in preference string.\n" msgstr "Error: invalid characters in preference string.\n" -#: g10/card-util.c:1142 +#: g10/card-util.c:1141 msgid "Salutation (M = Mr., F = Ms., or space): " msgstr "Salutation (M = Mr., F = Ms., or space): " -#: g10/card-util.c:1156 +#: g10/card-util.c:1155 msgid "Error: invalid response.\n" msgstr "Error: invalid response.\n" -#: g10/card-util.c:1178 +#: g10/card-util.c:1177 msgid "CA fingerprint: " msgstr "CA fingerprint: " -#: g10/card-util.c:1201 +#: g10/card-util.c:1200 msgid "Error: invalid formatted fingerprint.\n" msgstr "Error: invalid formatted fingerprint.\n" -#: g10/card-util.c:1252 +#: g10/card-util.c:1251 #, c-format msgid "key operation not possible: %s\n" msgstr "key operation not possible: %s\n" -#: g10/card-util.c:1253 +#: g10/card-util.c:1252 msgid "not an OpenPGP card" msgstr "not an OpenPGP card" -#: g10/card-util.c:1266 g10/keygen.c:4486 g10/keygen.c:5562 +#: g10/card-util.c:1265 g10/keygen.c:4540 g10/keygen.c:5616 #, c-format msgid "error getting current key info: %s\n" msgstr "error getting current key info: %s\n" -#: g10/card-util.c:1351 +#: g10/card-util.c:1350 msgid "Replace existing key? (y/N) " msgstr "Replace existing key? (y/N) " -#: g10/card-util.c:1368 +#: g10/card-util.c:1367 msgid "" "Note: There is no guarantee that the card supports the requested size.\n" " If the key generation does not succeed, please check the\n" @@ -1985,97 +1985,97 @@ " If the key generation does not succeed, please check the\n" " documentation of your card to see what sizes are allowed.\n" -#: g10/card-util.c:1390 g10/keygen.c:2363 sm/certreqgen-ui.c:179 +#: g10/card-util.c:1389 g10/keygen.c:2417 sm/certreqgen-ui.c:179 #, c-format msgid "What keysize do you want? (%u) " msgstr "What keysize do you want? (%u) " -#: g10/card-util.c:1400 g10/keygen.c:2286 g10/keygen.c:2318 +#: g10/card-util.c:1399 g10/keygen.c:2340 g10/keygen.c:2372 #: sm/certreqgen-ui.c:194 #, c-format msgid "rounded up to %u bits\n" msgstr "rounded up to %u bits\n" -#: g10/card-util.c:1408 g10/keygen.c:2371 sm/certreqgen-ui.c:184 +#: g10/card-util.c:1407 g10/keygen.c:2425 sm/certreqgen-ui.c:184 #, c-format msgid "%s keysizes must be in the range %u-%u\n" msgstr "%s keysizes must be in the range %u-%u\n" -#: g10/card-util.c:1427 +#: g10/card-util.c:1426 msgid "Changing card key attribute for: " msgstr "Changing card key attribute for: " -#: g10/card-util.c:1429 +#: g10/card-util.c:1428 msgid "Signature key\n" msgstr "Signature key\n" -#: g10/card-util.c:1431 +#: g10/card-util.c:1430 msgid "Encryption key\n" msgstr "Encryption key\n" -#: g10/card-util.c:1433 +#: g10/card-util.c:1432 msgid "Authentication key\n" msgstr "Authentication key\n" -#: g10/card-util.c:1435 g10/keygen.c:1926 sm/certreqgen-ui.c:157 +#: g10/card-util.c:1434 g10/keygen.c:1980 sm/certreqgen-ui.c:157 msgid "Please select what kind of key you want:\n" msgstr "Please select what kind of key you want:\n" -#: g10/card-util.c:1436 sm/certreqgen-ui.c:158 +#: g10/card-util.c:1435 sm/certreqgen-ui.c:158 #, c-format msgid " (%d) RSA\n" msgstr " (%d) RSA\n" -#: g10/card-util.c:1437 +#: g10/card-util.c:1436 #, c-format msgid " (%d) ECC\n" msgstr " (%d) ECC\n" -#: g10/card-util.c:1449 g10/card-util.c:1716 g10/card-util.c:1816 -#: g10/keyedit.c:900 g10/keygen.c:1834 g10/keygen.c:1862 g10/keygen.c:1987 -#: g10/keygen.c:2222 g10/keygen.c:2505 g10/revoke.c:838 +#: g10/card-util.c:1448 g10/card-util.c:1715 g10/card-util.c:1815 +#: g10/keyedit.c:900 g10/keygen.c:1888 g10/keygen.c:1916 g10/keygen.c:2041 +#: g10/keygen.c:2276 g10/keygen.c:2559 g10/revoke.c:838 msgid "Invalid selection.\n" msgstr "Invalid selection.\n" -#: g10/card-util.c:1522 +#: g10/card-util.c:1521 #, c-format msgid "The card will now be re-configured to generate a key of %u bits\n" msgstr "The card will now be re-configured to generate a key of %u bits\n" -#: g10/card-util.c:1527 +#: g10/card-util.c:1526 #, c-format msgid "The card will now be re-configured to generate a key of type: %s\n" msgstr "The card will now be re-configured to generate a key of type: %s\n" -#: g10/card-util.c:1563 +#: g10/card-util.c:1562 #, c-format msgid "error changing key attribute for key %d: %s\n" msgstr "error changing key attribute for key %d: %s\n" -#: g10/card-util.c:1579 g10/card-util.c:2106 +#: g10/card-util.c:1578 g10/card-util.c:2105 #, c-format msgid "error getting card info: %s\n" msgstr "error getting card info: %s\n" -#: g10/card-util.c:1585 g10/card-util.c:1930 g10/card-util.c:2112 +#: g10/card-util.c:1584 g10/card-util.c:1929 g10/card-util.c:2111 #, c-format msgid "This command is not supported by this card\n" msgstr "This command is not supported by this card\n" -#: g10/card-util.c:1631 +#: g10/card-util.c:1630 msgid "Make off-card backup of encryption key? (Y/n) " msgstr "Make off-card backup of encryption key? (Y/n) " -#: g10/card-util.c:1645 +#: g10/card-util.c:1644 #, c-format msgid "Note: keys are already stored on the card!\n" msgstr "Note: keys are already stored on the card!\n" -#: g10/card-util.c:1648 +#: g10/card-util.c:1647 msgid "Replace existing keys? (y/N) " msgstr "Replace existing keys? (y/N) " -#: g10/card-util.c:1660 +#: g10/card-util.c:1659 #, c-format msgid "" "Please note that the factory settings of the PINs are\n" @@ -2086,142 +2086,142 @@ " PIN = ‘%s’ Admin PIN = ‘%s’\n" "You should change them using the command --change-pin\n" -#: g10/card-util.c:1695 +#: g10/card-util.c:1694 msgid "Please select the type of key to generate:\n" msgstr "Please select the type of key to generate:\n" -#: g10/card-util.c:1697 g10/card-util.c:1787 +#: g10/card-util.c:1696 g10/card-util.c:1786 msgid " (1) Signature key\n" msgstr " (1) Signature key\n" -#: g10/card-util.c:1698 g10/card-util.c:1789 +#: g10/card-util.c:1697 g10/card-util.c:1788 msgid " (2) Encryption key\n" msgstr " (2) Encryption key\n" -#: g10/card-util.c:1699 g10/card-util.c:1791 +#: g10/card-util.c:1698 g10/card-util.c:1790 msgid " (3) Authentication key\n" msgstr " (3) Authentication key\n" -#: g10/card-util.c:1784 +#: g10/card-util.c:1783 msgid "Please select where to store the key:\n" msgstr "Please select where to store the key:\n" -#: g10/card-util.c:1830 +#: g10/card-util.c:1829 #, c-format msgid "KEYTOCARD failed: %s\n" msgstr "KEYTOCARD failed: %s\n" -#: g10/card-util.c:1935 +#: g10/card-util.c:1934 #, c-format msgid "Note: This command destroys all keys stored on the card!\n" msgstr "Note: This command destroys all keys stored on the card!\n" -#: g10/card-util.c:1938 +#: g10/card-util.c:1937 msgid "Continue? (y/N) " msgstr "Continue? (y/N) " -#: g10/card-util.c:1943 +#: g10/card-util.c:1942 msgid "Really do a factory reset? (enter \"yes\") " msgstr "Really do a factory reset? (enter “yes”) " -#: g10/card-util.c:2129 +#: g10/card-util.c:2128 #, c-format msgid "error for setup KDF: %s\n" msgstr "error for setup KDF: %s\n" -#: g10/card-util.c:2158 g10/keyedit.c:1260 +#: g10/card-util.c:2157 g10/keyedit.c:1260 msgid "quit this menu" msgstr "quit this menu" -#: g10/card-util.c:2160 +#: g10/card-util.c:2159 msgid "show admin commands" msgstr "show admin commands" -#: g10/card-util.c:2161 g10/keyedit.c:1263 +#: g10/card-util.c:2160 g10/keyedit.c:1263 msgid "show this help" msgstr "show this help" -#: g10/card-util.c:2163 +#: g10/card-util.c:2162 msgid "list all available data" msgstr "list all available data" -#: g10/card-util.c:2166 +#: g10/card-util.c:2165 msgid "change card holder's name" msgstr "change card holder's name" -#: g10/card-util.c:2167 +#: g10/card-util.c:2166 msgid "change URL to retrieve key" msgstr "change URL to retrieve key" -#: g10/card-util.c:2168 +#: g10/card-util.c:2167 msgid "fetch the key specified in the card URL" msgstr "fetch the key specified in the card URL" -#: g10/card-util.c:2169 +#: g10/card-util.c:2168 msgid "change the login name" msgstr "change the login name" -#: g10/card-util.c:2170 +#: g10/card-util.c:2169 msgid "change the language preferences" msgstr "change the language preferences" -#: g10/card-util.c:2171 +#: g10/card-util.c:2170 msgid "change card holder's salutation" msgstr "change card holder's salutation" -#: g10/card-util.c:2173 +#: g10/card-util.c:2172 msgid "change a CA fingerprint" msgstr "change a CA fingerprint" -#: g10/card-util.c:2174 +#: g10/card-util.c:2173 msgid "toggle the signature force PIN flag" msgstr "toggle the signature force PIN flag" -#: g10/card-util.c:2175 +#: g10/card-util.c:2174 msgid "generate new keys" msgstr "generate new keys" -#: g10/card-util.c:2176 +#: g10/card-util.c:2175 msgid "menu to change or unblock the PIN" msgstr "menu to change or unblock the PIN" -#: g10/card-util.c:2177 +#: g10/card-util.c:2176 msgid "verify the PIN and list all data" msgstr "verify the PIN and list all data" -#: g10/card-util.c:2178 +#: g10/card-util.c:2177 msgid "unblock the PIN using a Reset Code" msgstr "unblock the PIN using a Reset Code" -#: g10/card-util.c:2179 +#: g10/card-util.c:2178 msgid "destroy all keys and data" msgstr "destroy all keys and data" -#: g10/card-util.c:2180 +#: g10/card-util.c:2179 msgid "setup KDF for PIN authentication" msgstr "setup KDF for PIN authentication" -#: g10/card-util.c:2181 +#: g10/card-util.c:2180 msgid "change the key attribute" msgstr "change the key attribute" -#: g10/card-util.c:2305 +#: g10/card-util.c:2304 msgid "gpg/card> " msgstr "gpg/card> " -#: g10/card-util.c:2346 +#: g10/card-util.c:2345 msgid "Admin-only command\n" msgstr "Admin-only command\n" -#: g10/card-util.c:2377 +#: g10/card-util.c:2376 msgid "Admin commands are allowed\n" msgstr "Admin commands are allowed\n" -#: g10/card-util.c:2379 +#: g10/card-util.c:2378 msgid "Admin commands are not allowed\n" msgstr "Admin commands are not allowed\n" -#: g10/card-util.c:2482 g10/keyedit.c:2229 +#: g10/card-util.c:2481 g10/keyedit.c:2229 msgid "Invalid command (try \"help\")\n" msgstr "Invalid command (try “help”)\n" @@ -2230,21 +2230,21 @@ msgid "--output doesn't work for this command\n" msgstr "--output doesn't work for this command\n" -#: g10/decrypt.c:247 g10/gpg.c:5155 g10/keyring.c:399 g10/keyring.c:750 +#: g10/decrypt.c:247 g10/gpg.c:5175 g10/keyring.c:399 g10/keyring.c:750 #, c-format msgid "can't open '%s'\n" msgstr "can't open ‘%s’\n" -#: g10/delkey.c:83 g10/export.c:1947 g10/export.c:2230 g10/export.c:2351 -#: g10/getkey.c:2108 g10/gpg.c:5100 g10/keyedit.c:1445 g10/keyedit.c:2335 +#: g10/delkey.c:83 g10/export.c:2035 g10/export.c:2349 g10/export.c:2470 +#: g10/getkey.c:2108 g10/gpg.c:5120 g10/keyedit.c:1445 g10/keyedit.c:2335 #: g10/keyedit.c:2637 g10/keyedit.c:4600 g10/keylist.c:693 g10/keyserver.c:1092 #: g10/revoke.c:230 g10/tofu.c:2165 #, c-format msgid "key \"%s\" not found: %s\n" msgstr "key “%s” not found: %s\n" -#: g10/delkey.c:92 g10/export.c:2015 g10/getkey.c:2116 g10/getkey.c:4517 -#: g10/gpg.c:5109 g10/keyedit.c:2308 g10/keyserver.c:1110 g10/revoke.c:236 +#: g10/delkey.c:92 g10/export.c:2103 g10/getkey.c:2116 g10/getkey.c:4517 +#: g10/gpg.c:5129 g10/keyedit.c:2308 g10/keyserver.c:1110 g10/revoke.c:236 #: g10/revoke.c:663 g10/tofu.c:2173 #, c-format msgid "error reading keyblock: %s\n" @@ -2361,13 +2361,13 @@ msgid "WARNING: '%s' is an empty file\n" msgstr "WARNING: ‘%s’ is an empty file\n" -#: g10/encrypt.c:446 g10/encrypt.c:521 g10/decrypt-data.c:266 g10/gpg.c:3959 -#: g10/gpg.c:3999 sm/decrypt.c:826 sm/encrypt.c:416 sm/gpgsm.c:1609 +#: g10/encrypt.c:446 g10/encrypt.c:521 g10/decrypt-data.c:266 g10/gpg.c:3979 +#: g10/gpg.c:4019 sm/decrypt.c:826 sm/encrypt.c:416 sm/gpgsm.c:1609 #, c-format msgid "cipher algorithm '%s' may not be used in %s mode\n" msgstr "cipher algorithm ‘%s’ may not be used in %s mode\n" -#: g10/encrypt.c:455 g10/gpg.c:3965 g10/gpg.c:4011 g10/sig-check.c:175 +#: g10/encrypt.c:455 g10/gpg.c:3985 g10/gpg.c:4031 g10/sig-check.c:175 #: g10/sign.c:391 sm/gpgsm.c:1619 sm/gpgsm.c:1629 sm/sign.c:478 sm/verify.c:506 #, c-format msgid "digest algorithm '%s' may not be used in %s mode\n" @@ -2482,61 +2482,65 @@ msgid "WARNING: unable to remove temp directory '%s': %s\n" msgstr "WARNING: unable to remove temp directory '%s': %s\n" -#: g10/export.c:119 +#: g10/export.c:124 msgid "export signatures that are marked as local-only" msgstr "export signatures that are marked as local-only" -#: g10/export.c:121 +#: g10/export.c:126 msgid "export attribute user IDs (generally photo IDs)" msgstr "export attribute user IDs (generally photo IDs)" -#: g10/export.c:123 +#: g10/export.c:128 msgid "export revocation keys marked as \"sensitive\"" msgstr "export revocation keys marked as “sensitive”" -#: g10/export.c:125 +#: g10/export.c:130 msgid "remove unusable parts from key during export" msgstr "remove unusable parts from key during export" -#: g10/export.c:127 +#: g10/export.c:132 msgid "remove as much as possible from key during export" msgstr "remove as much as possible from key during export" -#: g10/export.c:133 +#: g10/export.c:138 +msgid "export only revocation certificates" +msgstr "export only revocation certificates" + +#: g10/export.c:141 msgid "use the GnuPG key backup format" msgstr "use the GnuPG key backup format" -#: g10/export.c:1291 +#: g10/export.c:1306 msgid " - skipped" msgstr " - skipped" -#: g10/export.c:1324 g10/import.c:2085 g10/openfile.c:200 g10/openfile.c:294 +#: g10/export.c:1339 g10/import.c:2089 g10/openfile.c:200 g10/openfile.c:294 #: g10/sign.c:1012 g10/sign.c:1326 #, c-format msgid "writing to '%s'\n" msgstr "writing to ‘%s’\n" -#: g10/export.c:1769 +#: g10/export.c:1784 #, c-format msgid "key %s: key material on-card - skipped\n" msgstr "key %s: key material on-card - skipped\n" -#: g10/export.c:1964 +#: g10/export.c:2052 #, c-format msgid "exporting secret keys not allowed\n" msgstr "exporting secret keys not allowed\n" -#: g10/export.c:2041 +#: g10/export.c:2129 #, c-format msgid "key %s: PGP 2.x style key - skipped\n" msgstr "key %s: PGP 2.x style key - skipped\n" -#: g10/export.c:2135 +#: g10/export.c:2254 #, c-format msgid "WARNING: nothing exported\n" msgstr "WARNING: nothing exported\n" -#: g10/export.c:2432 g10/plaintext.c:153 g10/plaintext.c:162 +#: g10/export.c:2551 g10/plaintext.c:153 g10/plaintext.c:162 #: g10/plaintext.c:168 g10/plaintext.c:191 #, c-format msgid "error creating '%s': %s\n" @@ -2600,268 +2604,268 @@ msgid "using subkey %s instead of primary key %s\n" msgstr "using subkey %s instead of primary key %s\n" -#: g10/getkey.c:4446 g10/gpg.c:2137 +#: g10/getkey.c:4446 g10/gpg.c:2146 #, c-format msgid "valid values for option '%s':\n" msgstr "valid values for option '%s':\n" -#: g10/gpg.c:443 sm/gpgsm.c:212 +#: g10/gpg.c:444 sm/gpgsm.c:212 msgid "make a signature" msgstr "make a signature" -#: g10/gpg.c:444 +#: g10/gpg.c:445 msgid "make a clear text signature" msgstr "make a clear text signature" -#: g10/gpg.c:446 sm/gpgsm.c:214 +#: g10/gpg.c:447 sm/gpgsm.c:214 msgid "make a detached signature" msgstr "make a detached signature" -#: g10/gpg.c:447 sm/gpgsm.c:215 +#: g10/gpg.c:448 sm/gpgsm.c:215 msgid "encrypt data" msgstr "encrypt data" -#: g10/gpg.c:449 +#: g10/gpg.c:450 msgid "encryption only with symmetric cipher" msgstr "encryption only with symmetric cipher" -#: g10/gpg.c:451 sm/gpgsm.c:217 +#: g10/gpg.c:452 sm/gpgsm.c:217 msgid "decrypt data (default)" msgstr "decrypt data (default)" -#: g10/gpg.c:453 sm/gpgsm.c:218 +#: g10/gpg.c:454 sm/gpgsm.c:218 msgid "verify a signature" msgstr "verify a signature" -#: g10/gpg.c:455 sm/gpgsm.c:219 +#: g10/gpg.c:456 sm/gpgsm.c:219 msgid "list keys" msgstr "list keys" -#: g10/gpg.c:457 +#: g10/gpg.c:458 msgid "list keys and signatures" msgstr "list keys and signatures" -#: g10/gpg.c:460 +#: g10/gpg.c:461 msgid "list and check key signatures" msgstr "list and check key signatures" -#: g10/gpg.c:462 sm/gpgsm.c:224 +#: g10/gpg.c:463 sm/gpgsm.c:224 msgid "list keys and fingerprints" msgstr "list keys and fingerprints" -#: g10/gpg.c:463 sm/gpgsm.c:222 +#: g10/gpg.c:464 sm/gpgsm.c:222 msgid "list secret keys" msgstr "list secret keys" -#: g10/gpg.c:465 sm/gpgsm.c:225 +#: g10/gpg.c:466 sm/gpgsm.c:225 msgid "generate a new key pair" msgstr "generate a new key pair" -#: g10/gpg.c:468 +#: g10/gpg.c:469 msgid "quickly generate a new key pair" msgstr "quickly generate a new key pair" -#: g10/gpg.c:471 +#: g10/gpg.c:472 msgid "quickly add a new user-id" msgstr "quickly add a new user-id" -#: g10/gpg.c:476 +#: g10/gpg.c:477 msgid "quickly revoke a user-id" msgstr "quickly revoke a user-id" -#: g10/gpg.c:479 +#: g10/gpg.c:480 msgid "quickly set a new expiration date" msgstr "quickly set a new expiration date" -#: g10/gpg.c:482 +#: g10/gpg.c:483 msgid "full featured key pair generation" msgstr "full featured key pair generation" -#: g10/gpg.c:485 +#: g10/gpg.c:486 msgid "generate a revocation certificate" msgstr "generate a revocation certificate" -#: g10/gpg.c:488 sm/gpgsm.c:228 +#: g10/gpg.c:489 sm/gpgsm.c:228 msgid "remove keys from the public keyring" msgstr "remove keys from the public keyring" -#: g10/gpg.c:490 +#: g10/gpg.c:491 msgid "remove keys from the secret keyring" msgstr "remove keys from the secret keyring" -#: g10/gpg.c:492 +#: g10/gpg.c:493 msgid "quickly sign a key" msgstr "quickly sign a key" -#: g10/gpg.c:494 +#: g10/gpg.c:495 msgid "quickly sign a key locally" msgstr "quickly sign a key locally" -#: g10/gpg.c:496 +#: g10/gpg.c:497 msgid "quickly revoke a key signature" msgstr "quickly revoke a key signature" -#: g10/gpg.c:497 +#: g10/gpg.c:498 msgid "sign a key" msgstr "sign a key" -#: g10/gpg.c:498 +#: g10/gpg.c:499 msgid "sign a key locally" msgstr "sign a key locally" -#: g10/gpg.c:499 +#: g10/gpg.c:500 msgid "sign or edit a key" msgstr "sign or edit a key" -#: g10/gpg.c:501 sm/gpgsm.c:246 +#: g10/gpg.c:502 sm/gpgsm.c:246 msgid "change a passphrase" msgstr "change a passphrase" -#: g10/gpg.c:505 +#: g10/gpg.c:506 msgid "export keys" msgstr "export keys" -#: g10/gpg.c:506 +#: g10/gpg.c:507 msgid "export keys to a keyserver" msgstr "export keys to a keyserver" -#: g10/gpg.c:507 +#: g10/gpg.c:508 msgid "import keys from a keyserver" msgstr "import keys from a keyserver" -#: g10/gpg.c:510 +#: g10/gpg.c:511 msgid "search for keys on a keyserver" msgstr "search for keys on a keyserver" -#: g10/gpg.c:512 +#: g10/gpg.c:513 msgid "update all keys from a keyserver" msgstr "update all keys from a keyserver" -#: g10/gpg.c:520 +#: g10/gpg.c:521 msgid "import/merge keys" msgstr "import/merge keys" -#: g10/gpg.c:523 +#: g10/gpg.c:524 msgid "print the card status" msgstr "print the card status" -#: g10/gpg.c:524 +#: g10/gpg.c:525 msgid "change data on a card" msgstr "change data on a card" -#: g10/gpg.c:526 +#: g10/gpg.c:527 msgid "change a card's PIN" msgstr "change a card's PIN" -#: g10/gpg.c:538 +#: g10/gpg.c:539 msgid "update the trust database" msgstr "update the trust database" -#: g10/gpg.c:548 +#: g10/gpg.c:549 msgid "print message digests" msgstr "print message digests" -#: g10/gpg.c:552 sm/gpgsm.c:241 +#: g10/gpg.c:553 sm/gpgsm.c:241 msgid "run in server mode" msgstr "run in server mode" -#: g10/gpg.c:554 +#: g10/gpg.c:555 msgid "|VALUE|set the TOFU policy for a key" msgstr "|VALUE|set the TOFU policy for a key" -#: g10/gpg.c:594 +#: g10/gpg.c:595 msgid "|NAME|use NAME as default secret key" msgstr "|NAME|use NAME as default secret key" -#: g10/gpg.c:596 sm/gpgsm.c:332 +#: g10/gpg.c:597 sm/gpgsm.c:332 msgid "|NAME|encrypt to user ID NAME as well" msgstr "|NAME|encrypt to user ID NAME as well" -#: g10/gpg.c:604 +#: g10/gpg.c:605 msgid "|SPEC|set up email aliases" msgstr "|SPEC|set up email aliases" -#: g10/gpg.c:616 +#: g10/gpg.c:617 msgid "use strict OpenPGP behavior" msgstr "use strict OpenPGP behavior" -#: g10/gpg.c:641 kbx/kbxutil.c:90 sm/gpgsm.c:412 tools/gpgconf.c:112 +#: g10/gpg.c:642 kbx/kbxutil.c:90 sm/gpgsm.c:412 tools/gpgconf.c:112 msgid "do not make any changes" msgstr "do not make any changes" -#: g10/gpg.c:642 +#: g10/gpg.c:643 msgid "prompt before overwriting" msgstr "prompt before overwriting" -#: g10/gpg.c:689 sm/gpgsm.c:304 +#: g10/gpg.c:690 sm/gpgsm.c:304 msgid "Options controlling the input" msgstr "Options controlling the input" -#: g10/gpg.c:707 sm/gpgsm.c:314 +#: g10/gpg.c:708 sm/gpgsm.c:314 msgid "Options controlling the output" msgstr "Options controlling the output" -#: g10/gpg.c:709 sm/gpgsm.c:316 +#: g10/gpg.c:710 sm/gpgsm.c:316 msgid "create ascii armored output" msgstr "create ascii armored output" -#: g10/gpg.c:713 g10/gpgv.c:82 sm/gpgsm.c:321 +#: g10/gpg.c:714 g10/gpgv.c:82 sm/gpgsm.c:321 msgid "|FILE|write output to FILE" msgstr "|FILE|write output to FILE" -#: g10/gpg.c:726 +#: g10/gpg.c:727 msgid "use canonical text mode" msgstr "use canonical text mode" -#: g10/gpg.c:743 +#: g10/gpg.c:744 msgid "|N|set compress level to N (0 disables)" msgstr "|N|set compress level to N (0 disables)" -#: g10/gpg.c:750 sm/gpgsm.c:347 +#: g10/gpg.c:751 sm/gpgsm.c:347 msgid "Options controlling key import and export" msgstr "Options controlling key import and export" -#: g10/gpg.c:753 +#: g10/gpg.c:754 msgid "|MECHANISMS|use MECHANISMS to locate keys by mail address" msgstr "|MECHANISMS|use MECHANISMS to locate keys by mail address" -#: g10/gpg.c:756 +#: g10/gpg.c:757 msgid "import missing key from a signature" msgstr "import missing key from a signature" -#: g10/gpg.c:761 +#: g10/gpg.c:762 msgid "include the public key in signatures" msgstr "include the public key in signatures" -#: g10/gpg.c:764 sm/gpgsm.c:350 +#: g10/gpg.c:765 sm/gpgsm.c:350 msgid "disable all access to the dirmngr" msgstr "disable all access to the dirmngr" -#: g10/gpg.c:776 sm/gpgsm.c:357 +#: g10/gpg.c:777 sm/gpgsm.c:357 msgid "Options controlling key listings" msgstr "Options controlling key listings" -#: g10/gpg.c:805 sm/gpgsm.c:324 +#: g10/gpg.c:806 sm/gpgsm.c:324 msgid "Options to specify keys" msgstr "Options to specify keys" -#: g10/gpg.c:807 sm/gpgsm.c:326 +#: g10/gpg.c:808 sm/gpgsm.c:326 msgid "|USER-ID|encrypt for USER-ID" msgstr "|USER-ID|encrypt for USER-ID" -#: g10/gpg.c:815 sm/gpgsm.c:328 +#: g10/gpg.c:816 sm/gpgsm.c:328 msgid "|USER-ID|use USER-ID to sign or decrypt" msgstr "|USER-ID|use USER-ID to sign or decrypt" -#: g10/gpg.c:866 sm/gpgsm.c:396 +#: g10/gpg.c:867 sm/gpgsm.c:396 msgid "Options for unattended use" msgstr "Options for unattended use" -#: g10/gpg.c:885 sm/gpgsm.c:408 dirmngr/dirmngr.c:294 +#: g10/gpg.c:886 sm/gpgsm.c:408 dirmngr/dirmngr.c:294 msgid "Other options" msgstr "Other options" -#: g10/gpg.c:953 sm/gpgsm.c:440 +#: g10/gpg.c:955 sm/gpgsm.c:440 msgid "" "@\n" "(See the man page for a complete listing of all commands and options)\n" @@ -2869,7 +2873,7 @@ "@\n" "(See the man page for a complete listing of all commands and options)\n" -#: g10/gpg.c:956 +#: g10/gpg.c:958 msgid "" "@\n" "Examples:\n" @@ -2889,11 +2893,11 @@ " --list-keys [names] show keys\n" " --fingerprint [names] show fingerprints\n" -#: g10/gpg.c:1130 +#: g10/gpg.c:1139 msgid "Usage: @GPG@ [options] [files] (-h for help)" msgstr "Usage: @GPG@ [options] [files] (-h for help)" -#: g10/gpg.c:1133 +#: g10/gpg.c:1142 msgid "" "Syntax: @GPG@ [options] [files]\n" "Sign, check, encrypt or decrypt\n" @@ -2903,7 +2907,7 @@ "Sign, check, encrypt or decrypt\n" "Default operation depends on the input data\n" -#: g10/gpg.c:1144 sm/gpgsm.c:624 +#: g10/gpg.c:1153 sm/gpgsm.c:624 msgid "" "\n" "Supported algorithms:\n" @@ -2911,539 +2915,539 @@ "\n" "Supported algorithms:\n" -#: g10/gpg.c:1147 +#: g10/gpg.c:1156 msgid "Pubkey: " msgstr "Pubkey: " -#: g10/gpg.c:1154 g10/keyedit.c:3338 +#: g10/gpg.c:1163 g10/keyedit.c:3338 msgid "Cipher: " msgstr "Cipher: " -#: g10/gpg.c:1161 +#: g10/gpg.c:1170 msgid "Hash: " msgstr "Hash: " -#: g10/gpg.c:1168 g10/keyedit.c:3404 +#: g10/gpg.c:1177 g10/keyedit.c:3404 msgid "Compression: " msgstr "Compression: " -#: g10/gpg.c:1241 sm/gpgsm.c:698 +#: g10/gpg.c:1250 sm/gpgsm.c:698 #, c-format msgid "usage: %s [options] %s\n" msgstr "usage: %s [options] %s\n" -#: g10/gpg.c:1436 sm/gpgsm.c:791 +#: g10/gpg.c:1445 sm/gpgsm.c:791 #, c-format msgid "conflicting commands\n" msgstr "conflicting commands\n" -#: g10/gpg.c:1454 +#: g10/gpg.c:1463 #, c-format msgid "no = sign found in group definition '%s'\n" msgstr "no = sign found in group definition ‘%s’\n" -#: g10/gpg.c:1652 +#: g10/gpg.c:1661 #, c-format msgid "WARNING: unsafe ownership on homedir '%s'\n" msgstr "WARNING: unsafe ownership on homedir ‘%s’\n" -#: g10/gpg.c:1655 +#: g10/gpg.c:1664 #, c-format msgid "WARNING: unsafe ownership on configuration file '%s'\n" msgstr "WARNING: unsafe ownership on configuration file ‘%s’\n" -#: g10/gpg.c:1658 +#: g10/gpg.c:1667 #, c-format msgid "WARNING: unsafe ownership on extension '%s'\n" msgstr "WARNING: unsafe ownership on extension ‘%s’\n" -#: g10/gpg.c:1664 +#: g10/gpg.c:1673 #, c-format msgid "WARNING: unsafe permissions on homedir '%s'\n" msgstr "WARNING: unsafe permissions on homedir ‘%s’\n" -#: g10/gpg.c:1667 +#: g10/gpg.c:1676 #, c-format msgid "WARNING: unsafe permissions on configuration file '%s'\n" msgstr "WARNING: unsafe permissions on configuration file ‘%s’\n" -#: g10/gpg.c:1670 +#: g10/gpg.c:1679 #, c-format msgid "WARNING: unsafe permissions on extension '%s'\n" msgstr "WARNING: unsafe permissions on extension ‘%s’\n" -#: g10/gpg.c:1676 +#: g10/gpg.c:1685 #, c-format msgid "WARNING: unsafe enclosing directory ownership on homedir '%s'\n" msgstr "WARNING: unsafe enclosing directory ownership on homedir ‘%s’\n" -#: g10/gpg.c:1679 +#: g10/gpg.c:1688 #, c-format msgid "" "WARNING: unsafe enclosing directory ownership on configuration file '%s'\n" msgstr "" "WARNING: unsafe enclosing directory ownership on configuration file ‘%s’\n" -#: g10/gpg.c:1682 +#: g10/gpg.c:1691 #, c-format msgid "WARNING: unsafe enclosing directory ownership on extension '%s'\n" msgstr "WARNING: unsafe enclosing directory ownership on extension ‘%s’\n" -#: g10/gpg.c:1688 +#: g10/gpg.c:1697 #, c-format msgid "WARNING: unsafe enclosing directory permissions on homedir '%s'\n" msgstr "WARNING: unsafe enclosing directory permissions on homedir ‘%s’\n" -#: g10/gpg.c:1691 +#: g10/gpg.c:1700 #, c-format msgid "" "WARNING: unsafe enclosing directory permissions on configuration file '%s'\n" msgstr "" "WARNING: unsafe enclosing directory permissions on configuration file ‘%s’\n" -#: g10/gpg.c:1694 +#: g10/gpg.c:1703 #, c-format msgid "WARNING: unsafe enclosing directory permissions on extension '%s'\n" msgstr "WARNING: unsafe enclosing directory permissions on extension ‘%s’\n" -#: g10/gpg.c:1910 +#: g10/gpg.c:1919 #, c-format msgid "unknown configuration item '%s'\n" msgstr "unknown configuration item ‘%s’\n" -#: g10/gpg.c:2009 +#: g10/gpg.c:2018 msgid "display photo IDs during key listings" msgstr "display photo IDs during key listings" -#: g10/gpg.c:2011 +#: g10/gpg.c:2020 msgid "show key usage information during key listings" msgstr "show key usage information during key listings" -#: g10/gpg.c:2013 +#: g10/gpg.c:2022 msgid "show policy URLs during signature listings" msgstr "show policy URLs during signature listings" -#: g10/gpg.c:2015 +#: g10/gpg.c:2024 msgid "show all notations during signature listings" msgstr "show all notations during signature listings" -#: g10/gpg.c:2017 +#: g10/gpg.c:2026 msgid "show IETF standard notations during signature listings" msgstr "show IETF standard notations during signature listings" -#: g10/gpg.c:2021 +#: g10/gpg.c:2030 msgid "show user-supplied notations during signature listings" msgstr "show user-supplied notations during signature listings" -#: g10/gpg.c:2023 +#: g10/gpg.c:2032 msgid "show preferred keyserver URLs during signature listings" msgstr "show preferred keyserver URLs during signature listings" -#: g10/gpg.c:2025 +#: g10/gpg.c:2034 msgid "show user ID validity during key listings" msgstr "show user ID validity during key listings" -#: g10/gpg.c:2027 +#: g10/gpg.c:2036 msgid "show revoked and expired user IDs in key listings" msgstr "show revoked and expired user IDs in key listings" -#: g10/gpg.c:2029 +#: g10/gpg.c:2038 msgid "show revoked and expired subkeys in key listings" msgstr "show revoked and expired subkeys in key listings" -#: g10/gpg.c:2031 +#: g10/gpg.c:2040 msgid "show the keyring name in key listings" msgstr "show the keyring name in key listings" -#: g10/gpg.c:2033 +#: g10/gpg.c:2042 msgid "show expiration dates during signature listings" msgstr "show expiration dates during signature listings" -#: g10/gpg.c:2148 +#: g10/gpg.c:2157 #, c-format msgid "unknown TOFU policy '%s'\n" msgstr "unknown TOFU policy ‘%s’\n" -#: g10/gpg.c:2150 +#: g10/gpg.c:2159 #, c-format msgid "(use \"help\" to list choices)\n" msgstr "(use “help” to list choices)\n" -#: g10/gpg.c:2240 g10/keyedit.c:1719 +#: g10/gpg.c:2249 g10/keyedit.c:1719 #, c-format msgid "This command is not allowed while in %s mode.\n" msgstr "This command is not allowed while in %s mode.\n" -#: g10/gpg.c:2878 g10/gpg.c:3718 g10/gpg.c:3730 +#: g10/gpg.c:2896 g10/gpg.c:3736 g10/gpg.c:3748 #, c-format msgid "Note: %s is not for normal use!\n" msgstr "Note: %s is not for normal use!\n" -#: g10/gpg.c:3053 g10/gpg.c:3065 +#: g10/gpg.c:3071 g10/gpg.c:3083 #, c-format msgid "'%s' is not a valid signature expiration\n" msgstr "‘%s’ is not a valid signature expiration\n" -#: g10/gpg.c:3087 +#: g10/gpg.c:3105 #, c-format msgid "\"%s\" is not a proper mail address\n" msgstr "“%s” is not a proper mail address\n" -#: g10/gpg.c:3119 sm/gpgsm.c:1121 +#: g10/gpg.c:3137 sm/gpgsm.c:1121 #, c-format msgid "invalid pinentry mode '%s'\n" msgstr "invalid pinentry mode ‘%s’\n" -#: g10/gpg.c:3125 sm/gpgsm.c:1127 +#: g10/gpg.c:3143 sm/gpgsm.c:1127 #, c-format msgid "invalid request origin '%s'\n" msgstr "invalid request origin ‘%s’\n" -#: g10/gpg.c:3179 +#: g10/gpg.c:3197 #, c-format msgid "'%s' is not a valid character set\n" msgstr "‘%s’ is not a valid character set\n" -#: g10/gpg.c:3201 g10/gpg.c:3415 g10/keyedit.c:5338 +#: g10/gpg.c:3219 g10/gpg.c:3433 g10/keyedit.c:5338 #, c-format msgid "could not parse keyserver URL\n" msgstr "could not parse keyserver URL\n" -#: g10/gpg.c:3219 +#: g10/gpg.c:3237 #, c-format msgid "%s:%d: invalid keyserver options\n" msgstr "%s:%d: invalid keyserver options\n" -#: g10/gpg.c:3222 +#: g10/gpg.c:3240 #, c-format msgid "invalid keyserver options\n" msgstr "invalid keyserver options\n" -#: g10/gpg.c:3229 +#: g10/gpg.c:3247 #, c-format msgid "%s:%d: invalid import options\n" msgstr "%s:%d: invalid import options\n" -#: g10/gpg.c:3232 +#: g10/gpg.c:3250 #, c-format msgid "invalid import options\n" msgstr "invalid import options\n" -#: g10/gpg.c:3238 g10/gpg.c:3253 +#: g10/gpg.c:3256 g10/gpg.c:3271 #, c-format msgid "invalid filter option: %s\n" msgstr "invalid filter option: %s\n" -#: g10/gpg.c:3244 +#: g10/gpg.c:3262 #, c-format msgid "%s:%d: invalid export options\n" msgstr "%s:%d: invalid export options\n" -#: g10/gpg.c:3247 +#: g10/gpg.c:3265 #, c-format msgid "invalid export options\n" msgstr "invalid export options\n" -#: g10/gpg.c:3259 +#: g10/gpg.c:3277 #, c-format msgid "%s:%d: invalid list options\n" msgstr "%s:%d: invalid list options\n" -#: g10/gpg.c:3262 +#: g10/gpg.c:3280 #, c-format msgid "invalid list options\n" msgstr "invalid list options\n" -#: g10/gpg.c:3270 +#: g10/gpg.c:3288 msgid "display photo IDs during signature verification" msgstr "display photo IDs during signature verification" -#: g10/gpg.c:3272 +#: g10/gpg.c:3290 msgid "show policy URLs during signature verification" msgstr "show policy URLs during signature verification" -#: g10/gpg.c:3274 +#: g10/gpg.c:3292 msgid "show all notations during signature verification" msgstr "show all notations during signature verification" -#: g10/gpg.c:3276 +#: g10/gpg.c:3294 msgid "show IETF standard notations during signature verification" msgstr "show IETF standard notations during signature verification" -#: g10/gpg.c:3280 +#: g10/gpg.c:3298 msgid "show user-supplied notations during signature verification" msgstr "show user-supplied notations during signature verification" -#: g10/gpg.c:3282 +#: g10/gpg.c:3300 msgid "show preferred keyserver URLs during signature verification" msgstr "show preferred keyserver URLs during signature verification" -#: g10/gpg.c:3284 +#: g10/gpg.c:3302 msgid "show user ID validity during signature verification" msgstr "show user ID validity during signature verification" -#: g10/gpg.c:3286 +#: g10/gpg.c:3304 msgid "show revoked and expired user IDs in signature verification" msgstr "show revoked and expired user IDs in signature verification" -#: g10/gpg.c:3288 +#: g10/gpg.c:3306 msgid "show only the primary user ID in signature verification" msgstr "show only the primary user ID in signature verification" -#: g10/gpg.c:3290 +#: g10/gpg.c:3308 msgid "validate signatures with PKA data" msgstr "validate signatures with PKA data" -#: g10/gpg.c:3292 +#: g10/gpg.c:3310 msgid "elevate the trust of signatures with valid PKA data" msgstr "elevate the trust of signatures with valid PKA data" -#: g10/gpg.c:3299 +#: g10/gpg.c:3317 #, c-format msgid "%s:%d: invalid verify options\n" msgstr "%s:%d: invalid verify options\n" -#: g10/gpg.c:3302 +#: g10/gpg.c:3320 #, c-format msgid "invalid verify options\n" msgstr "invalid verify options\n" -#: g10/gpg.c:3309 +#: g10/gpg.c:3327 #, c-format msgid "unable to set exec-path to %s\n" msgstr "unable to set exec-path to %s\n" -#: g10/gpg.c:3513 +#: g10/gpg.c:3531 #, c-format msgid "%s:%d: invalid auto-key-locate list\n" msgstr "%s:%d: invalid auto-key-locate list\n" -#: g10/gpg.c:3516 +#: g10/gpg.c:3534 #, c-format msgid "invalid auto-key-locate list\n" msgstr "invalid auto-key-locate list\n" -#: g10/gpg.c:3700 sm/gpgsm.c:1492 +#: g10/gpg.c:3718 sm/gpgsm.c:1492 #, c-format msgid "WARNING: program may create a core file!\n" msgstr "WARNING: program may create a core file!\n" -#: g10/gpg.c:3711 +#: g10/gpg.c:3729 #, c-format msgid "WARNING: %s overrides %s\n" msgstr "WARNING: %s overrides %s\n" -#: g10/gpg.c:3720 +#: g10/gpg.c:3738 #, c-format msgid "%s not allowed with %s!\n" msgstr "%s not allowed with %s!\n" -#: g10/gpg.c:3723 +#: g10/gpg.c:3741 #, c-format msgid "%s makes no sense with %s!\n" msgstr "%s makes no sense with %s!\n" -#: g10/gpg.c:3738 sm/gpgsm.c:1509 dirmngr/dirmngr.c:1205 +#: g10/gpg.c:3756 sm/gpgsm.c:1509 dirmngr/dirmngr.c:1205 #, c-format msgid "WARNING: running with faked system time: " msgstr "WARNING: running with faked system time: " -#: g10/gpg.c:3759 +#: g10/gpg.c:3777 #, c-format msgid "will not run with insecure memory due to %s\n" msgstr "will not run with insecure memory due to %s\n" -#: g10/gpg.c:3804 g10/gpg.c:3828 sm/gpgsm.c:1579 +#: g10/gpg.c:3824 g10/gpg.c:3848 sm/gpgsm.c:1579 #, c-format msgid "selected cipher algorithm is invalid\n" msgstr "selected cipher algorithm is invalid\n" -#: g10/gpg.c:3816 +#: g10/gpg.c:3836 #, c-format msgid "selected compression algorithm is invalid\n" msgstr "selected compression algorithm is invalid\n" -#: g10/gpg.c:3822 +#: g10/gpg.c:3842 #, c-format msgid "selected certification digest algorithm is invalid\n" msgstr "selected certification digest algorithm is invalid\n" -#: g10/gpg.c:3837 +#: g10/gpg.c:3857 #, c-format msgid "completes-needed must be greater than 0\n" msgstr "completes-needed must be greater than 0\n" -#: g10/gpg.c:3839 +#: g10/gpg.c:3859 #, c-format msgid "marginals-needed must be greater than 1\n" msgstr "marginals-needed must be greater than 1\n" -#: g10/gpg.c:3841 +#: g10/gpg.c:3861 #, c-format msgid "max-cert-depth must be in the range from 1 to 255\n" msgstr "max-cert-depth must be in the range from 1 to 255\n" -#: g10/gpg.c:3843 +#: g10/gpg.c:3863 #, c-format msgid "invalid default-cert-level; must be 0, 1, 2, or 3\n" msgstr "invalid default-cert-level; must be 0, 1, 2, or 3\n" -#: g10/gpg.c:3845 +#: g10/gpg.c:3865 #, c-format msgid "invalid min-cert-level; must be 1, 2, or 3\n" msgstr "invalid min-cert-level; must be 1, 2, or 3\n" -#: g10/gpg.c:3849 +#: g10/gpg.c:3869 #, c-format msgid "Note: simple S2K mode (0) is strongly discouraged\n" msgstr "Note: simple S2K mode (0) is strongly discouraged\n" -#: g10/gpg.c:3853 +#: g10/gpg.c:3873 #, c-format msgid "invalid S2K mode; must be 0, 1 or 3\n" msgstr "invalid S2K mode; must be 0, 1 or 3\n" -#: g10/gpg.c:3860 +#: g10/gpg.c:3880 #, c-format msgid "invalid default preferences\n" msgstr "invalid default preferences\n" -#: g10/gpg.c:3864 +#: g10/gpg.c:3884 #, c-format msgid "invalid personal cipher preferences\n" msgstr "invalid personal cipher preferences\n" -#: g10/gpg.c:3868 +#: g10/gpg.c:3888 #, c-format msgid "invalid personal digest preferences\n" msgstr "invalid personal digest preferences\n" -#: g10/gpg.c:3872 +#: g10/gpg.c:3892 #, c-format msgid "invalid personal compress preferences\n" msgstr "invalid personal compress preferences\n" -#: g10/gpg.c:3908 +#: g10/gpg.c:3928 #, c-format msgid "%s does not yet work with %s\n" msgstr "%s does not yet work with %s\n" -#: g10/gpg.c:3971 +#: g10/gpg.c:3991 #, c-format msgid "compression algorithm '%s' may not be used in %s mode\n" msgstr "compression algorithm ‘%s’ may not be used in %s mode\n" -#: g10/gpg.c:4115 +#: g10/gpg.c:4135 #, c-format msgid "failed to initialize the TrustDB: %s\n" msgstr "failed to initialize the TrustDB: %s\n" -#: g10/gpg.c:4127 +#: g10/gpg.c:4147 #, c-format msgid "WARNING: recipients (-r) given without using public key encryption\n" msgstr "WARNING: recipients (-r) given without using public key encryption\n" -#: g10/gpg.c:4199 +#: g10/gpg.c:4219 #, c-format msgid "symmetric encryption of '%s' failed: %s\n" msgstr "symmetric encryption of ‘%s’ failed: %s\n" -#: g10/gpg.c:4228 +#: g10/gpg.c:4248 #, c-format msgid "you cannot use --symmetric --encrypt with --s2k-mode 0\n" msgstr "you cannot use --symmetric --encrypt with --s2k-mode 0\n" -#: g10/gpg.c:4231 +#: g10/gpg.c:4251 #, c-format msgid "you cannot use --symmetric --encrypt in %s mode\n" msgstr "you cannot use --symmetric --encrypt in %s mode\n" -#: g10/gpg.c:4289 +#: g10/gpg.c:4309 #, c-format msgid "you cannot use --symmetric --sign --encrypt with --s2k-mode 0\n" msgstr "you cannot use --symmetric --sign --encrypt with --s2k-mode 0\n" -#: g10/gpg.c:4292 +#: g10/gpg.c:4312 #, c-format msgid "you cannot use --symmetric --sign --encrypt in %s mode\n" msgstr "you cannot use --symmetric --sign --encrypt in %s mode\n" -#: g10/gpg.c:4692 g10/keyserver.c:1648 +#: g10/gpg.c:4712 g10/keyserver.c:1648 #, c-format msgid "keyserver send failed: %s\n" msgstr "keyserver send failed: %s\n" -#: g10/gpg.c:4697 +#: g10/gpg.c:4717 #, c-format msgid "keyserver receive failed: %s\n" msgstr "keyserver receive failed: %s\n" -#: g10/gpg.c:4703 +#: g10/gpg.c:4723 #, c-format msgid "key export failed: %s\n" msgstr "key export failed: %s\n" -#: g10/gpg.c:4716 +#: g10/gpg.c:4736 #, c-format msgid "export as ssh key failed: %s\n" msgstr "export as ssh key failed: %s\n" -#: g10/gpg.c:4728 +#: g10/gpg.c:4748 #, c-format msgid "keyserver search failed: %s\n" msgstr "keyserver search failed: %s\n" -#: g10/gpg.c:4741 +#: g10/gpg.c:4761 #, c-format msgid "keyserver refresh failed: %s\n" msgstr "keyserver refresh failed: %s\n" -#: g10/gpg.c:4810 +#: g10/gpg.c:4830 #, c-format msgid "dearmoring failed: %s\n" msgstr "dearmoring failed: %s\n" -#: g10/gpg.c:4821 +#: g10/gpg.c:4841 #, c-format msgid "enarmoring failed: %s\n" msgstr "enarmoring failed: %s\n" -#: g10/gpg.c:4913 +#: g10/gpg.c:4933 #, c-format msgid "invalid hash algorithm '%s'\n" msgstr "invalid hash algorithm ‘%s’\n" -#: g10/gpg.c:5065 g10/tofu.c:2153 +#: g10/gpg.c:5085 g10/tofu.c:2153 #, c-format msgid "error parsing key specification '%s': %s\n" msgstr "error parsing key specification '%s': %s\n" -#: g10/gpg.c:5078 +#: g10/gpg.c:5098 #, c-format msgid "'%s' does not appear to be a valid key ID, fingerprint or keygrip\n" msgstr "‘%s’ does not appear to be a valid key ID, fingerprint or keygrip\n" -#: g10/gpg.c:5134 +#: g10/gpg.c:5154 #, c-format msgid "WARNING: no command supplied. Trying to guess what you mean ...\n" msgstr "WARNING: no command supplied. Trying to guess what you mean ...\n" -#: g10/gpg.c:5145 +#: g10/gpg.c:5165 #, c-format msgid "Go ahead and type your message ...\n" msgstr "Go ahead and type your message ...\n" -#: g10/gpg.c:5490 +#: g10/gpg.c:5510 #, c-format msgid "the given certification policy URL is invalid\n" msgstr "the given certification policy URL is invalid\n" -#: g10/gpg.c:5492 +#: g10/gpg.c:5512 #, c-format msgid "the given signature policy URL is invalid\n" msgstr "the given signature policy URL is invalid\n" -#: g10/gpg.c:5525 +#: g10/gpg.c:5545 #, c-format msgid "the given preferred keyserver URL is invalid\n" msgstr "the given preferred keyserver URL is invalid\n" @@ -3485,145 +3489,145 @@ msgid "No help available for '%s'" msgstr "No help available for ‘%s’" -#: g10/import.c:169 +#: g10/import.c:170 msgid "import signatures that are marked as local-only" msgstr "import signatures that are marked as local-only" -#: g10/import.c:172 +#: g10/import.c:173 msgid "repair damage from the pks keyserver during import" msgstr "repair damage from the pks keyserver during import" -#: g10/import.c:175 +#: g10/import.c:176 msgid "do not clear the ownertrust values during import" msgstr "do not clear the ownertrust values during import" -#: g10/import.c:178 +#: g10/import.c:179 msgid "do not update the trustdb after import" msgstr "do not update the trustdb after import" -#: g10/import.c:181 +#: g10/import.c:182 msgid "show key during import" msgstr "show key during import" -#: g10/import.c:184 +#: g10/import.c:185 msgid "only accept updates to existing keys" msgstr "only accept updates to existing keys" -#: g10/import.c:187 +#: g10/import.c:188 msgid "remove unusable parts from key after import" msgstr "remove unusable parts from key after import" -#: g10/import.c:190 +#: g10/import.c:191 msgid "remove as much as possible from key after import" msgstr "remove as much as possible from key after import" -#: g10/import.c:193 +#: g10/import.c:194 msgid "ignore key-signatures which are not self-signatures" msgstr "ignore key-signatures which are not self-signatures" -#: g10/import.c:196 +#: g10/import.c:197 msgid "run import filters and export key immediately" msgstr "run import filters and export key immediately" -#: g10/import.c:199 +#: g10/import.c:200 msgid "assume the GnuPG key backup format" msgstr "assume the GnuPG key backup format" -#: g10/import.c:203 +#: g10/import.c:204 msgid "repair keys on import" msgstr "repair keys on import" -#: g10/import.c:392 g10/import.c:711 +#: g10/import.c:393 g10/import.c:712 #, c-format msgid "skipping block of type %d\n" msgstr "skipping block of type %d\n" -#: g10/import.c:728 +#: g10/import.c:729 #, c-format msgid "%lu keys processed so far\n" msgstr "%lu keys processed so far\n" -#: g10/import.c:814 +#: g10/import.c:815 #, c-format msgid "Total number processed: %lu\n" msgstr "Total number processed: %lu\n" -#: g10/import.c:817 +#: g10/import.c:818 #, c-format msgid " skipped PGP-2 keys: %lu\n" msgstr " skipped PGP-2 keys: %lu\n" -#: g10/import.c:819 +#: g10/import.c:820 #, c-format msgid " skipped new keys: %lu\n" msgstr " skipped new keys: %lu\n" -#: g10/import.c:822 +#: g10/import.c:823 #, c-format msgid " w/o user IDs: %lu\n" msgstr " w/o user IDs: %lu\n" -#: g10/import.c:825 sm/import.c:130 +#: g10/import.c:826 sm/import.c:130 #, c-format msgid " imported: %lu" msgstr " imported: %lu" -#: g10/import.c:829 sm/import.c:134 +#: g10/import.c:830 sm/import.c:134 #, c-format msgid " unchanged: %lu\n" msgstr " unchanged: %lu\n" -#: g10/import.c:831 +#: g10/import.c:832 #, c-format msgid " new user IDs: %lu\n" msgstr " new user IDs: %lu\n" -#: g10/import.c:833 +#: g10/import.c:834 #, c-format msgid " new subkeys: %lu\n" msgstr " new subkeys: %lu\n" -#: g10/import.c:835 +#: g10/import.c:836 #, c-format msgid " new signatures: %lu\n" msgstr " new signatures: %lu\n" -#: g10/import.c:837 +#: g10/import.c:838 #, c-format msgid " new key revocations: %lu\n" msgstr " new key revocations: %lu\n" -#: g10/import.c:839 sm/import.c:136 +#: g10/import.c:840 sm/import.c:136 #, c-format msgid " secret keys read: %lu\n" msgstr " secret keys read: %lu\n" -#: g10/import.c:841 sm/import.c:138 +#: g10/import.c:842 sm/import.c:138 #, c-format msgid " secret keys imported: %lu\n" msgstr " secret keys imported: %lu\n" -#: g10/import.c:843 sm/import.c:140 +#: g10/import.c:844 sm/import.c:140 #, c-format msgid " secret keys unchanged: %lu\n" msgstr " secret keys unchanged: %lu\n" -#: g10/import.c:845 sm/import.c:142 +#: g10/import.c:846 sm/import.c:142 #, c-format msgid " not imported: %lu\n" msgstr " not imported: %lu\n" -#: g10/import.c:847 +#: g10/import.c:848 #, c-format msgid " signatures cleaned: %lu\n" msgstr " signatures cleaned: %lu\n" -#: g10/import.c:849 +#: g10/import.c:850 #, c-format msgid " user IDs cleaned: %lu\n" msgstr " user IDs cleaned: %lu\n" -#: g10/import.c:1276 +#: g10/import.c:1277 #, c-format msgid "" "WARNING: key %s contains preferences for unavailable\n" @@ -3632,167 +3636,167 @@ "WARNING: key %s contains preferences for unavailable\n" "algorithms on these user IDs:\n" -#: g10/import.c:1318 +#: g10/import.c:1319 #, c-format msgid " \"%s\": preference for cipher algorithm %s\n" msgstr " “%s”: preference for cipher algorithm %s\n" -#: g10/import.c:1333 +#: g10/import.c:1334 #, c-format msgid " \"%s\": preference for digest algorithm %s\n" msgstr " “%s”: preference for digest algorithm %s\n" -#: g10/import.c:1345 +#: g10/import.c:1346 #, c-format msgid " \"%s\": preference for compression algorithm %s\n" msgstr " “%s”: preference for compression algorithm %s\n" -#: g10/import.c:1358 +#: g10/import.c:1359 #, c-format msgid "it is strongly suggested that you update your preferences and\n" msgstr "it is strongly suggested that you update your preferences and\n" -#: g10/import.c:1360 +#: g10/import.c:1361 #, c-format msgid "re-distribute this key to avoid potential algorithm mismatch problems\n" msgstr "" "re-distribute this key to avoid potential algorithm mismatch problems\n" -#: g10/import.c:1385 +#: g10/import.c:1386 #, c-format msgid "you can update your preferences with: gpg --edit-key %s updpref save\n" msgstr "you can update your preferences with: gpg --edit-key %s updpref save\n" -#: g10/import.c:1899 g10/import.c:3013 +#: g10/import.c:1902 g10/import.c:3028 #, c-format msgid "key %s: no user ID\n" msgstr "key %s: no user ID\n" -#: g10/import.c:1905 +#: g10/import.c:1908 #, c-format msgid "key %s: %s\n" msgstr "key %s: %s\n" -#: g10/import.c:1906 g10/import.c:2985 +#: g10/import.c:1909 g10/import.c:3000 msgid "rejected by import screener" msgstr "rejected by import screener" -#: g10/import.c:1950 +#: g10/import.c:1953 #, c-format msgid "key %s: PKS subkey corruption repaired\n" msgstr "key %s: PKS subkey corruption repaired\n" -#: g10/import.c:1971 +#: g10/import.c:1974 #, c-format msgid "key %s: accepted non self-signed user ID \"%s\"\n" msgstr "key %s: accepted non self-signed user ID “%s”\n" -#: g10/import.c:1981 g10/import.c:2012 +#: g10/import.c:1985 g10/import.c:2016 #, c-format msgid "key %s: no valid user IDs\n" msgstr "key %s: no valid user IDs\n" -#: g10/import.c:1983 +#: g10/import.c:1987 #, c-format msgid "this may be caused by a missing self-signature\n" msgstr "this may be caused by a missing self-signature\n" -#: g10/import.c:2062 g10/import.c:3399 +#: g10/import.c:2066 g10/import.c:3415 #, c-format msgid "key %s: public key not found: %s\n" msgstr "key %s: public key not found: %s\n" -#: g10/import.c:2068 +#: g10/import.c:2072 #, c-format msgid "key %s: new key - skipped\n" msgstr "key %s: new key - skipped\n" -#: g10/import.c:2080 +#: g10/import.c:2084 #, c-format msgid "no writable keyring found: %s\n" msgstr "no writable keyring found: %s\n" -#: g10/import.c:2112 g10/import.c:2214 g10/import.c:3476 +#: g10/import.c:2116 g10/import.c:2218 g10/import.c:3492 #, c-format msgid "error writing keyring '%s': %s\n" msgstr "error writing keyring '%s': %s\n" -#: g10/import.c:2135 +#: g10/import.c:2139 #, c-format msgid "key %s: public key \"%s\" imported\n" msgstr "key %s: public key “%s” imported\n" -#: g10/import.c:2162 +#: g10/import.c:2166 #, c-format msgid "key %s: doesn't match our copy\n" msgstr "key %s: doesn't match our copy\n" -#: g10/import.c:2230 +#: g10/import.c:2234 #, c-format msgid "key %s: \"%s\" 1 new user ID\n" msgstr "key %s: “%s” 1 new user ID\n" -#: g10/import.c:2233 +#: g10/import.c:2237 #, c-format msgid "key %s: \"%s\" %d new user IDs\n" msgstr "key %s: “%s” %d new user IDs\n" -#: g10/import.c:2236 +#: g10/import.c:2240 #, c-format msgid "key %s: \"%s\" 1 new signature\n" msgstr "key %s: “%s” 1 new signature\n" -#: g10/import.c:2239 +#: g10/import.c:2243 #, c-format msgid "key %s: \"%s\" %d new signatures\n" msgstr "key %s: “%s” %d new signatures\n" -#: g10/import.c:2242 +#: g10/import.c:2246 #, c-format msgid "key %s: \"%s\" 1 new subkey\n" msgstr "key %s: “%s” 1 new subkey\n" -#: g10/import.c:2245 +#: g10/import.c:2249 #, c-format msgid "key %s: \"%s\" %d new subkeys\n" msgstr "key %s: “%s” %d new subkeys\n" -#: g10/import.c:2248 +#: g10/import.c:2252 #, c-format msgid "key %s: \"%s\" %d signature cleaned\n" msgstr "key %s: “%s” %d signature cleaned\n" -#: g10/import.c:2251 +#: g10/import.c:2255 #, c-format msgid "key %s: \"%s\" %d signatures cleaned\n" msgstr "key %s: “%s” %d signatures cleaned\n" -#: g10/import.c:2254 +#: g10/import.c:2258 #, c-format msgid "key %s: \"%s\" %d user ID cleaned\n" msgstr "key %s: “%s” %d user ID cleaned\n" -#: g10/import.c:2257 +#: g10/import.c:2261 #, c-format msgid "key %s: \"%s\" %d user IDs cleaned\n" msgstr "key %s: “%s” %d user IDs cleaned\n" -#: g10/import.c:2293 +#: g10/import.c:2297 #, c-format msgid "key %s: \"%s\" not changed\n" msgstr "key %s: “%s” not changed\n" -#: g10/import.c:2652 g10/import.c:2847 +#: g10/import.c:2667 g10/import.c:2862 #, c-format msgid "key %s: secret key imported\n" msgstr "key %s: secret key imported\n" -#: g10/import.c:2660 +#: g10/import.c:2675 #, c-format msgid "key %s: secret key already exists\n" msgstr "key %s: secret key already exists\n" -#: g10/import.c:2668 +#: g10/import.c:2683 #, c-format msgid "key %s: error sending to agent: %s\n" msgstr "key %s: error sending to agent: %s\n" @@ -3805,192 +3809,192 @@ #. * Instead, user should be suggested to run 'gpg --card-status', #. * then, references to a card will be automatically created #. * again. -#: g10/import.c:2837 +#: g10/import.c:2852 #, c-format msgid "To migrate '%s', with each smartcard, run: %s\n" msgstr "To migrate '%s', with each smartcard, run: %s\n" -#: g10/import.c:2984 +#: g10/import.c:2999 #, c-format msgid "secret key %s: %s\n" msgstr "secret key %s: %s\n" -#: g10/import.c:3005 g10/import.c:3044 +#: g10/import.c:3020 g10/import.c:3059 #, c-format msgid "importing secret keys not allowed\n" msgstr "importing secret keys not allowed\n" -#: g10/import.c:3032 +#: g10/import.c:3047 #, c-format msgid "key %s: secret key with invalid cipher %d - skipped\n" msgstr "key %s: secret key with invalid cipher %d - skipped\n" -#: g10/import.c:3194 g10/pkclist.c:72 g10/revoke.c:776 +#: g10/import.c:3209 g10/pkclist.c:72 g10/revoke.c:776 msgid "No reason specified" msgstr "No reason specified" -#: g10/import.c:3195 g10/pkclist.c:74 g10/revoke.c:778 +#: g10/import.c:3210 g10/pkclist.c:74 g10/revoke.c:778 msgid "Key is superseded" msgstr "Key is superseded" -#: g10/import.c:3196 g10/pkclist.c:76 g10/revoke.c:777 +#: g10/import.c:3211 g10/pkclist.c:76 g10/revoke.c:777 msgid "Key has been compromised" msgstr "Key has been compromised" -#: g10/import.c:3197 g10/pkclist.c:78 g10/revoke.c:779 +#: g10/import.c:3212 g10/pkclist.c:78 g10/revoke.c:779 msgid "Key is no longer used" msgstr "Key is no longer used" -#: g10/import.c:3198 g10/pkclist.c:80 g10/revoke.c:780 +#: g10/import.c:3213 g10/pkclist.c:80 g10/revoke.c:780 msgid "User ID is no longer valid" msgstr "User ID is no longer valid" -#: g10/import.c:3323 g10/keylist.c:1258 g10/pkclist.c:84 +#: g10/import.c:3338 g10/keylist.c:1258 g10/pkclist.c:84 #, c-format msgid "reason for revocation: " msgstr "reason for revocation: " -#: g10/import.c:3342 g10/keylist.c:1277 g10/pkclist.c:100 +#: g10/import.c:3357 g10/keylist.c:1277 g10/pkclist.c:100 #, c-format msgid "revocation comment: " msgstr "revocation comment: " -#: g10/import.c:3392 +#: g10/import.c:3408 #, c-format msgid "key %s: no public key - can't apply revocation certificate\n" msgstr "key %s: no public key - can't apply revocation certificate\n" -#: g10/import.c:3423 +#: g10/import.c:3439 #, c-format msgid "key %s: can't locate original keyblock: %s\n" msgstr "key %s: can't locate original keyblock: %s\n" -#: g10/import.c:3430 +#: g10/import.c:3446 #, c-format msgid "key %s: can't read original keyblock: %s\n" msgstr "key %s: can't read original keyblock: %s\n" -#: g10/import.c:3450 +#: g10/import.c:3466 #, c-format msgid "key %s: invalid revocation certificate: %s - rejected\n" msgstr "key %s: invalid revocation certificate: %s - rejected\n" -#: g10/import.c:3485 +#: g10/import.c:3501 #, c-format msgid "key %s: \"%s\" revocation certificate imported\n" msgstr "key %s: “%s” revocation certificate imported\n" -#: g10/import.c:3571 +#: g10/import.c:3587 #, c-format msgid "key %s: no user ID for signature\n" msgstr "key %s: no user ID for signature\n" -#: g10/import.c:3588 +#: g10/import.c:3604 #, c-format msgid "key %s: unsupported public key algorithm on user ID \"%s\"\n" msgstr "key %s: unsupported public key algorithm on user ID “%s”\n" -#: g10/import.c:3590 +#: g10/import.c:3606 #, c-format msgid "key %s: invalid self-signature on user ID \"%s\"\n" msgstr "key %s: invalid self-signature on user ID “%s”\n" -#: g10/import.c:3607 g10/import.c:3635 g10/import.c:3691 +#: g10/import.c:3623 g10/import.c:3651 g10/import.c:3707 #, c-format msgid "key %s: unsupported public key algorithm\n" msgstr "key %s: unsupported public key algorithm\n" -#: g10/import.c:3608 +#: g10/import.c:3624 #, c-format msgid "key %s: invalid direct key signature\n" msgstr "key %s: invalid direct key signature\n" -#: g10/import.c:3622 +#: g10/import.c:3638 #, c-format msgid "key %s: no subkey for key binding\n" msgstr "key %s: no subkey for key binding\n" -#: g10/import.c:3637 +#: g10/import.c:3653 #, c-format msgid "key %s: invalid subkey binding\n" msgstr "key %s: invalid subkey binding\n" -#: g10/import.c:3656 +#: g10/import.c:3672 #, c-format msgid "key %s: removed multiple subkey binding\n" msgstr "key %s: removed multiple subkey binding\n" -#: g10/import.c:3680 +#: g10/import.c:3696 #, c-format msgid "key %s: no subkey for key revocation\n" msgstr "key %s: no subkey for key revocation\n" -#: g10/import.c:3693 +#: g10/import.c:3709 #, c-format msgid "key %s: invalid subkey revocation\n" msgstr "key %s: invalid subkey revocation\n" -#: g10/import.c:3708 +#: g10/import.c:3724 #, c-format msgid "key %s: removed multiple subkey revocation\n" msgstr "key %s: removed multiple subkey revocation\n" -#: g10/import.c:3752 +#: g10/import.c:3771 #, c-format msgid "key %s: skipped user ID \"%s\"\n" msgstr "key %s: skipped user ID “%s”\n" -#: g10/import.c:3779 +#: g10/import.c:3798 #, c-format msgid "key %s: skipped subkey\n" msgstr "key %s: skipped subkey\n" -#: g10/import.c:3810 +#: g10/import.c:3829 #, c-format msgid "key %s: non exportable signature (class 0x%02X) - skipped\n" msgstr "key %s: non exportable signature (class 0x%02X) - skipped\n" -#: g10/import.c:3821 +#: g10/import.c:3840 #, c-format msgid "key %s: revocation certificate at wrong place - skipped\n" msgstr "key %s: revocation certificate at wrong place - skipped\n" -#: g10/import.c:3839 +#: g10/import.c:3868 #, c-format msgid "key %s: invalid revocation certificate: %s - skipped\n" msgstr "key %s: invalid revocation certificate: %s - skipped\n" -#: g10/import.c:3853 +#: g10/import.c:3892 #, c-format msgid "key %s: subkey signature in wrong place - skipped\n" msgstr "key %s: subkey signature in wrong place - skipped\n" -#: g10/import.c:3861 +#: g10/import.c:3900 #, c-format msgid "key %s: unexpected signature class (0x%02X) - skipped\n" msgstr "key %s: unexpected signature class (0x%02X) - skipped\n" -#: g10/import.c:4034 +#: g10/import.c:4073 #, c-format msgid "key %s: duplicated user ID detected - merged\n" msgstr "key %s: duplicated user ID detected - merged\n" -#: g10/import.c:4099 +#: g10/import.c:4138 #, c-format msgid "WARNING: key %s may be revoked: fetching revocation key %s\n" msgstr "WARNING: key %s may be revoked: fetching revocation key %s\n" -#: g10/import.c:4115 +#: g10/import.c:4154 #, c-format msgid "WARNING: key %s may be revoked: revocation key %s not present.\n" msgstr "WARNING: key %s may be revoked: revocation key %s not present.\n" -#: g10/import.c:4181 +#: g10/import.c:4220 #, c-format msgid "key %s: \"%s\" revocation certificate added\n" msgstr "key %s: “%s” revocation certificate added\n" -#: g10/import.c:4219 +#: g10/import.c:4258 #, c-format msgid "key %s: direct key signature added\n" msgstr "key %s: direct key signature added\n" @@ -4851,7 +4855,7 @@ msgid "You may not add a photo ID to a PGP2-style key.\n" msgstr "You may not add a photo ID to a PGP2-style key.\n" -#: g10/keyedit.c:4293 g10/keygen.c:2899 +#: g10/keyedit.c:4293 g10/keygen.c:2953 msgid "Such a user ID already exists on this key!\n" msgstr "Such a user ID already exists on this key!\n" @@ -5128,82 +5132,82 @@ msgid "Displaying %s photo ID of size %ld for key %s (uid %d)\n" msgstr "Displaying %s photo ID of size %ld for key %s (uid %d)\n" -#: g10/keygen.c:169 +#: g10/keygen.c:174 #, c-format msgid "invalid value for option '%s'\n" msgstr "invalid value for option ‘%s’\n" -#: g10/keygen.c:322 +#: g10/keygen.c:331 #, c-format msgid "preference '%s' duplicated\n" msgstr "preference ‘%s’ duplicated\n" -#: g10/keygen.c:329 +#: g10/keygen.c:338 #, c-format msgid "too many cipher preferences\n" msgstr "too many cipher preferences\n" -#: g10/keygen.c:331 +#: g10/keygen.c:340 #, c-format msgid "too many digest preferences\n" msgstr "too many digest preferences\n" -#: g10/keygen.c:333 +#: g10/keygen.c:342 #, c-format msgid "too many compression preferences\n" msgstr "too many compression preferences\n" -#: g10/keygen.c:493 +#: g10/keygen.c:502 #, c-format msgid "invalid item '%s' in preference string\n" msgstr "invalid item ‘%s’ in preference string\n" -#: g10/keygen.c:972 +#: g10/keygen.c:1020 #, c-format msgid "writing direct signature\n" msgstr "writing direct signature\n" -#: g10/keygen.c:1018 +#: g10/keygen.c:1066 #, c-format msgid "writing self signature\n" msgstr "writing self signature\n" -#: g10/keygen.c:1075 +#: g10/keygen.c:1123 #, c-format msgid "writing key binding signature\n" msgstr "writing key binding signature\n" -#: g10/keygen.c:1440 g10/keygen.c:1445 g10/keygen.c:1497 g10/keygen.c:1502 -#: g10/keygen.c:1656 g10/keygen.c:1661 +#: g10/keygen.c:1494 g10/keygen.c:1499 g10/keygen.c:1551 g10/keygen.c:1556 +#: g10/keygen.c:1710 g10/keygen.c:1715 #, c-format msgid "keysize invalid; using %u bits\n" msgstr "keysize invalid; using %u bits\n" -#: g10/keygen.c:1451 g10/keygen.c:1508 g10/keygen.c:1516 g10/keygen.c:1667 +#: g10/keygen.c:1505 g10/keygen.c:1562 g10/keygen.c:1570 g10/keygen.c:1721 #, c-format msgid "keysize rounded up to %u bits\n" msgstr "keysize rounded up to %u bits\n" -#: g10/keygen.c:1542 +#: g10/keygen.c:1596 #, c-format msgid "" "WARNING: some OpenPGP programs can't handle a DSA key with this digest size\n" msgstr "" "WARNING: some OpenPGP programs can't handle a DSA key with this digest size\n" -#: g10/keygen.c:1723 +#: g10/keygen.c:1777 msgid "Sign" msgstr "Sign" -#: g10/keygen.c:1726 +#: g10/keygen.c:1780 msgid "Certify" msgstr "Certify" -#: g10/keygen.c:1729 +#: g10/keygen.c:1783 msgid "Encrypt" msgstr "Encrypt" -#: g10/keygen.c:1732 +#: g10/keygen.c:1786 msgid "Authenticate" msgstr "Authenticate" @@ -5217,161 +5221,161 @@ #. * a = Toggle authentication capability #. * q = Finish #. -#: g10/keygen.c:1753 +#: g10/keygen.c:1807 msgid "SsEeAaQq" msgstr "SsEeAaQq" -#: g10/keygen.c:1784 +#: g10/keygen.c:1838 #, c-format msgid "Possible actions for a %s key: " msgstr "Possible actions for a %s key: " -#: g10/keygen.c:1790 +#: g10/keygen.c:1844 msgid "Current allowed actions: " msgstr "Current allowed actions: " -#: g10/keygen.c:1795 +#: g10/keygen.c:1849 #, c-format msgid " (%c) Toggle the sign capability\n" msgstr " (%c) Toggle the sign capability\n" -#: g10/keygen.c:1798 +#: g10/keygen.c:1852 #, c-format msgid " (%c) Toggle the encrypt capability\n" msgstr " (%c) Toggle the encrypt capability\n" -#: g10/keygen.c:1801 +#: g10/keygen.c:1855 #, c-format msgid " (%c) Toggle the authenticate capability\n" msgstr " (%c) Toggle the authenticate capability\n" -#: g10/keygen.c:1804 +#: g10/keygen.c:1858 #, c-format msgid " (%c) Finished\n" msgstr " (%c) Finished\n" -#: g10/keygen.c:1930 +#: g10/keygen.c:1984 #, c-format msgid " (%d) RSA and RSA (default)\n" msgstr " (%d) RSA and RSA (default)\n" -#: g10/keygen.c:1934 +#: g10/keygen.c:1988 #, c-format msgid " (%d) DSA and Elgamal\n" msgstr " (%d) DSA and Elgamal\n" -#: g10/keygen.c:1937 +#: g10/keygen.c:1991 #, c-format msgid " (%d) DSA (sign only)\n" msgstr " (%d) DSA (sign only)\n" -#: g10/keygen.c:1939 +#: g10/keygen.c:1993 #, c-format msgid " (%d) RSA (sign only)\n" msgstr " (%d) RSA (sign only)\n" -#: g10/keygen.c:1945 +#: g10/keygen.c:1999 #, c-format msgid " (%d) Elgamal (encrypt only)\n" msgstr " (%d) Elgamal (encrypt only)\n" -#: g10/keygen.c:1947 +#: g10/keygen.c:2001 #, c-format msgid " (%d) RSA (encrypt only)\n" msgstr " (%d) RSA (encrypt only)\n" -#: g10/keygen.c:1953 +#: g10/keygen.c:2007 #, c-format msgid " (%d) DSA (set your own capabilities)\n" msgstr " (%d) DSA (set your own capabilities)\n" -#: g10/keygen.c:1955 +#: g10/keygen.c:2009 #, c-format msgid " (%d) RSA (set your own capabilities)\n" msgstr " (%d) RSA (set your own capabilities)\n" -#: g10/keygen.c:1961 +#: g10/keygen.c:2015 #, c-format msgid " (%d) ECC and ECC\n" msgstr " (%d) ECC and ECC\n" -#: g10/keygen.c:1963 +#: g10/keygen.c:2017 #, c-format msgid " (%d) ECC (sign only)\n" msgstr " (%d) ECC (sign only)\n" -#: g10/keygen.c:1965 +#: g10/keygen.c:2019 #, c-format msgid " (%d) ECC (set your own capabilities)\n" msgstr " (%d) ECC (set your own capabilities)\n" -#: g10/keygen.c:1967 +#: g10/keygen.c:2021 #, c-format msgid " (%d) ECC (encrypt only)\n" msgstr " (%d) ECC (encrypt only)\n" -#: g10/keygen.c:1971 +#: g10/keygen.c:2025 #, c-format msgid " (%d) Existing key\n" msgstr " (%d) Existing key\n" -#: g10/keygen.c:1973 +#: g10/keygen.c:2027 #, c-format msgid " (%d) Existing key from card\n" msgstr " (%d) Existing key from card\n" -#: g10/keygen.c:2069 sm/certreqgen-ui.c:202 +#: g10/keygen.c:2123 sm/certreqgen-ui.c:202 msgid "Enter the keygrip: " msgstr "Enter the keygrip: " -#: g10/keygen.c:2082 sm/certreqgen-ui.c:210 +#: g10/keygen.c:2136 sm/certreqgen-ui.c:210 msgid "Not a valid keygrip (expecting 40 hex digits)\n" msgstr "Not a valid keygrip (expecting 40 hex digits)\n" -#: g10/keygen.c:2084 sm/certreqgen-ui.c:212 +#: g10/keygen.c:2138 sm/certreqgen-ui.c:212 msgid "No key with this keygrip\n" msgstr "No key with this keygrip\n" -#: g10/keygen.c:2103 g10/keygen.c:2113 g10/keygen.c:3216 g10/keygen.c:3227 +#: g10/keygen.c:2157 g10/keygen.c:2167 g10/keygen.c:3270 g10/keygen.c:3281 #: sm/certreqgen-ui.c:230 sm/certreqgen-ui.c:239 #, c-format msgid "error reading the card: %s\n" msgstr "error reading the card: %s\n" -#: g10/keygen.c:2107 g10/keygen.c:3220 sm/certreqgen-ui.c:233 +#: g10/keygen.c:2161 g10/keygen.c:3274 sm/certreqgen-ui.c:233 #, c-format msgid "Serial number of the card: %s\n" msgstr "Serial number of the card: %s\n" -#: g10/keygen.c:2120 sm/certreqgen-ui.c:245 +#: g10/keygen.c:2174 sm/certreqgen-ui.c:245 msgid "Available keys:\n" msgstr "Available keys:\n" -#: g10/keygen.c:2297 g10/keygen.c:2311 +#: g10/keygen.c:2351 g10/keygen.c:2365 #, c-format msgid "rounded to %u bits\n" msgstr "rounded to %u bits\n" -#: g10/keygen.c:2352 +#: g10/keygen.c:2406 #, c-format msgid "%s keys may be between %u and %u bits long.\n" msgstr "%s keys may be between %u and %u bits long.\n" -#: g10/keygen.c:2360 +#: g10/keygen.c:2414 #, c-format msgid "What keysize do you want for the subkey? (%u) " msgstr "What keysize do you want for the subkey? (%u) " -#: g10/keygen.c:2377 sm/certreqgen-ui.c:189 +#: g10/keygen.c:2431 sm/certreqgen-ui.c:189 #, c-format msgid "Requested keysize is %u bits\n" msgstr "Requested keysize is %u bits\n" -#: g10/keygen.c:2423 +#: g10/keygen.c:2477 msgid "Please select which elliptic curve you want:\n" msgstr "Please select which elliptic curve you want:\n" -#: g10/keygen.c:2611 +#: g10/keygen.c:2665 msgid "" "Please specify how long the key should be valid.\n" " 0 = key does not expire\n" @@ -5387,7 +5391,7 @@ " m = key expires in n months\n" " y = key expires in n years\n" -#: g10/keygen.c:2622 +#: g10/keygen.c:2676 msgid "" "Please specify how long the signature should be valid.\n" " 0 = signature does not expire\n" @@ -5403,38 +5407,38 @@ " m = signature expires in n months\n" " y = signature expires in n years\n" -#: g10/keygen.c:2645 +#: g10/keygen.c:2699 msgid "Key is valid for? (0) " msgstr "Key is valid for? (0) " -#: g10/keygen.c:2650 +#: g10/keygen.c:2704 #, c-format msgid "Signature is valid for? (%s) " msgstr "Signature is valid for? (%s) " -#: g10/keygen.c:2663 g10/keygen.c:2688 +#: g10/keygen.c:2717 g10/keygen.c:2742 msgid "invalid value\n" msgstr "invalid value\n" -#: g10/keygen.c:2670 +#: g10/keygen.c:2724 msgid "Key does not expire at all\n" msgstr "Key does not expire at all\n" -#: g10/keygen.c:2671 +#: g10/keygen.c:2725 msgid "Signature does not expire at all\n" msgstr "Signature does not expire at all\n" -#: g10/keygen.c:2676 +#: g10/keygen.c:2730 #, c-format msgid "Key expires at %s\n" msgstr "Key expires at %s\n" -#: g10/keygen.c:2677 +#: g10/keygen.c:2731 #, c-format msgid "Signature expires at %s\n" msgstr "Signature expires at %s\n" -#: g10/keygen.c:2681 +#: g10/keygen.c:2735 msgid "" "Your system can't display dates beyond 2038.\n" "However, it will be correctly handled up to 2106.\n" @@ -5442,11 +5446,11 @@ "Your system can't display dates beyond 2038.\n" "However, it will be correctly handled up to 2106.\n" -#: g10/keygen.c:2694 +#: g10/keygen.c:2748 msgid "Is this correct? (y/N) " msgstr "Is this correct? (y/N) " -#: g10/keygen.c:2762 +#: g10/keygen.c:2816 msgid "" "\n" "GnuPG needs to construct a user ID to identify your key.\n" @@ -5460,7 +5464,7 @@ #. but you should keep your existing translation. In case #. the new string is not translated this old string will #. be used. -#: g10/keygen.c:2777 +#: g10/keygen.c:2831 msgid "" "\n" "You need a user ID to identify your key; the software constructs the user " @@ -5476,49 +5480,49 @@ " “Heinrich Heine (Der Dichter) ”\n" "\n" -#: g10/keygen.c:2796 +#: g10/keygen.c:2850 msgid "Real name: " msgstr "Real name: " -#: g10/keygen.c:2805 +#: g10/keygen.c:2859 msgid "Invalid character in name\n" msgstr "Invalid character in name\n" -#: g10/keygen.c:2806 +#: g10/keygen.c:2860 #, c-format msgid "The characters '%s' and '%s' may not appear in name\n" msgstr "The characters ‘%s’ and ‘%s’ may not appear in name\n" -#: g10/keygen.c:2810 +#: g10/keygen.c:2864 msgid "Name may not start with a digit\n" msgstr "Name may not start with a digit\n" -#: g10/keygen.c:2813 +#: g10/keygen.c:2867 msgid "Name must be at least 5 characters long\n" msgstr "Name must be at least 5 characters long\n" -#: g10/keygen.c:2823 +#: g10/keygen.c:2877 msgid "Email address: " msgstr "Email address: " -#: g10/keygen.c:2829 +#: g10/keygen.c:2883 msgid "Not a valid email address\n" msgstr "Not a valid email address\n" -#: g10/keygen.c:2838 +#: g10/keygen.c:2892 msgid "Comment: " msgstr "Comment: " -#: g10/keygen.c:2844 +#: g10/keygen.c:2898 msgid "Invalid character in comment\n" msgstr "Invalid character in comment\n" -#: g10/keygen.c:2880 +#: g10/keygen.c:2934 #, c-format msgid "You are using the '%s' character set.\n" msgstr "You are using the ‘%s’ character set.\n" -#: g10/keygen.c:2886 +#: g10/keygen.c:2940 #, c-format msgid "" "You selected this USER-ID:\n" @@ -5529,7 +5533,7 @@ " “%s”\n" "\n" -#: g10/keygen.c:2891 +#: g10/keygen.c:2945 msgid "Please don't put the email address into the real name or the comment\n" msgstr "Please don't put the email address into the real name or the comment\n" @@ -5544,31 +5548,31 @@ #. o = Okay (ready, continue) #. q = Quit #. -#: g10/keygen.c:2916 +#: g10/keygen.c:2970 msgid "NnCcEeOoQq" msgstr "NnCcEeOoQq" -#: g10/keygen.c:2926 +#: g10/keygen.c:2980 msgid "Change (N)ame, (C)omment, (E)mail or (Q)uit? " msgstr "Change (N)ame, (C)omment, (E)mail or (Q)uit? " -#: g10/keygen.c:2927 +#: g10/keygen.c:2981 msgid "Change (N)ame, (C)omment, (E)mail or (O)kay/(Q)uit? " msgstr "Change (N)ame, (C)omment, (E)mail or (O)kay/(Q)uit? " -#: g10/keygen.c:2932 +#: g10/keygen.c:2986 msgid "Change (N)ame, (E)mail, or (Q)uit? " msgstr "Change (N)ame, (E)mail, or (Q)uit? " -#: g10/keygen.c:2933 +#: g10/keygen.c:2987 msgid "Change (N)ame, (E)mail, or (O)kay/(Q)uit? " msgstr "Change (N)ame, (E)mail, or (O)kay/(Q)uit? " -#: g10/keygen.c:2952 +#: g10/keygen.c:3006 msgid "Please correct the error first\n" msgstr "Please correct the error first\n" -#: g10/keygen.c:2998 +#: g10/keygen.c:3052 msgid "" "We need to generate a lot of random bytes. It is a good idea to perform\n" "some other action (type on the keyboard, move the mouse, utilize the\n" @@ -5580,13 +5584,13 @@ "disks) during the prime generation; this gives the random number\n" "generator a better chance to gain enough entropy.\n" -#: g10/keygen.c:4278 g10/keygen.c:4349 g10/keygen.c:4367 g10/keygen.c:4395 -#: g10/keygen.c:4739 g10/keygen.c:5239 g10/keygen.c:5534 g10/keygen.c:5639 +#: g10/keygen.c:4332 g10/keygen.c:4403 g10/keygen.c:4421 g10/keygen.c:4449 +#: g10/keygen.c:4793 g10/keygen.c:5293 g10/keygen.c:5588 g10/keygen.c:5693 #, c-format msgid "Key generation failed: %s\n" msgstr "Key generation failed: %s\n" -#: g10/keygen.c:4287 +#: g10/keygen.c:4341 #, c-format msgid "" "About to create a key for:\n" @@ -5597,64 +5601,64 @@ " “%s”\n" "\n" -#: g10/keygen.c:4289 +#: g10/keygen.c:4343 msgid "Continue? (Y/n) " msgstr "Continue? (Y/n) " -#: g10/keygen.c:4310 +#: g10/keygen.c:4364 #, c-format msgid "A key for \"%s\" already exists\n" msgstr "A key for “%s” already exists\n" -#: g10/keygen.c:4315 +#: g10/keygen.c:4369 msgid "Create anyway? (y/N) " msgstr "Create anyway? (y/N) " -#: g10/keygen.c:4321 +#: g10/keygen.c:4375 #, c-format msgid "creating anyway\n" msgstr "creating anyway\n" -#: g10/keygen.c:4722 +#: g10/keygen.c:4776 #, c-format msgid "Note: Use \"%s %s\" for a full featured key generation dialog.\n" msgstr "Note: Use “%s %s” for a full featured key generation dialog.\n" -#: g10/keygen.c:4771 +#: g10/keygen.c:4825 #, c-format msgid "Key generation canceled.\n" msgstr "Key generation canceled.\n" -#: g10/keygen.c:4831 +#: g10/keygen.c:4885 #, c-format msgid "can't create backup file '%s': %s\n" msgstr "can't create backup file '%s': %s\n" -#: g10/keygen.c:4851 +#: g10/keygen.c:4905 #, c-format msgid "Note: backup of card key saved to '%s'\n" msgstr "Note: backup of card key saved to ‘%s’\n" -#: g10/keygen.c:5010 g10/keygen.c:5172 +#: g10/keygen.c:5064 g10/keygen.c:5226 #, c-format msgid "writing public key to '%s'\n" msgstr "writing public key to ‘%s’\n" -#: g10/keygen.c:5166 +#: g10/keygen.c:5220 #, c-format msgid "no writable public keyring found: %s\n" msgstr "no writable public keyring found: %s\n" -#: g10/keygen.c:5180 +#: g10/keygen.c:5234 #, c-format msgid "error writing public keyring '%s': %s\n" msgstr "error writing public keyring '%s': %s\n" -#: g10/keygen.c:5210 +#: g10/keygen.c:5264 msgid "public and secret key created and signed.\n" msgstr "public and secret key created and signed.\n" -#: g10/keygen.c:5226 +#: g10/keygen.c:5280 msgid "" "Note that this key cannot be used for encryption. You may want to use\n" "the command \"--edit-key\" to generate a subkey for this purpose.\n" @@ -5662,36 +5666,36 @@ "Note that this key cannot be used for encryption. You may want to use\n" "the command “--edit-key” to generate a subkey for this purpose.\n" -#: g10/keygen.c:5401 g10/keygen.c:5590 +#: g10/keygen.c:5455 g10/keygen.c:5644 #, c-format msgid "" "key has been created %lu second in future (time warp or clock problem)\n" msgstr "" "key has been created %lu second in future (time warp or clock problem)\n" -#: g10/keygen.c:5403 g10/keygen.c:5592 +#: g10/keygen.c:5457 g10/keygen.c:5646 #, c-format msgid "" "key has been created %lu seconds in future (time warp or clock problem)\n" msgstr "" "key has been created %lu seconds in future (time warp or clock problem)\n" -#: g10/keygen.c:5414 g10/keygen.c:5603 +#: g10/keygen.c:5468 g10/keygen.c:5657 #, c-format msgid "Note: creating subkeys for v3 keys is not OpenPGP compliant\n" msgstr "Note: creating subkeys for v3 keys is not OpenPGP compliant\n" -#: g10/keygen.c:5426 g10/keygen.c:5428 +#: g10/keygen.c:5480 g10/keygen.c:5482 #, c-format msgid "Secret parts of primary key are not available.\n" msgstr "Secret parts of primary key are not available.\n" -#: g10/keygen.c:5435 g10/keygen.c:5437 +#: g10/keygen.c:5489 g10/keygen.c:5491 #, c-format msgid "Secret parts of primary key are stored on-card.\n" msgstr "Secret parts of primary key are stored on-card.\n" -#: g10/keygen.c:5456 g10/keygen.c:5617 +#: g10/keygen.c:5510 g10/keygen.c:5671 msgid "Really create? (y/N) " msgstr "Really create? (y/N) " @@ -6759,30 +6763,30 @@ msgid "data not saved; use option \"--output\" to save it\n" msgstr "data not saved; use option “--output” to save it\n" -#: g10/plaintext.c:615 +#: g10/plaintext.c:620 msgid "Detached signature.\n" msgstr "Detached signature.\n" -#: g10/plaintext.c:623 +#: g10/plaintext.c:628 msgid "Please enter name of data file: " msgstr "Please enter name of data file: " -#: g10/plaintext.c:660 +#: g10/plaintext.c:665 #, c-format msgid "reading stdin ...\n" msgstr "reading stdin ...\n" -#: g10/plaintext.c:705 +#: g10/plaintext.c:710 #, c-format msgid "no signed data\n" msgstr "no signed data\n" -#: g10/plaintext.c:723 +#: g10/plaintext.c:728 #, c-format msgid "can't open signed data '%s'\n" msgstr "can't open signed data ‘%s’\n" -#: g10/plaintext.c:758 +#: g10/plaintext.c:763 #, c-format msgid "can't open signed data fd=%d: %s\n" msgstr "can't open signed data fd=%d: %s\n" @@ -7778,7 +7782,7 @@ msgid "no need for a trustdb check\n" msgstr "no need for a trustdb check\n" -#: g10/trustdb.c:631 g10/trustdb.c:2326 +#: g10/trustdb.c:631 g10/trustdb.c:2338 #, c-format msgid "next trustdb check due at %s\n" msgstr "next trustdb check due at %s\n" @@ -7808,38 +7812,38 @@ msgid "checking the trustdb\n" msgstr "checking the trustdb\n" -#: g10/trustdb.c:2047 +#: g10/trustdb.c:2059 #, c-format msgid "%d key processed" msgid_plural "%d keys processed" msgstr[0] "%d key processed" msgstr[1] "%d keys processed" -#: g10/trustdb.c:2050 +#: g10/trustdb.c:2062 #, c-format msgid " (%d validity count cleared)\n" msgid_plural " (%d validity counts cleared)\n" msgstr[0] " (%d validity count cleared)\n" msgstr[1] " (%d validity counts cleared)\n" -#: g10/trustdb.c:2120 +#: g10/trustdb.c:2132 #, c-format msgid "no ultimately trusted keys found\n" msgstr "no ultimately trusted keys found\n" -#: g10/trustdb.c:2134 +#: g10/trustdb.c:2146 #, c-format msgid "public key of ultimately trusted key %s not found\n" msgstr "public key of ultimately trusted key %s not found\n" -#: g10/trustdb.c:2252 +#: g10/trustdb.c:2264 #, c-format msgid "" "depth: %d valid: %3d signed: %3d trust: %d-, %dq, %dn, %dm, %df, %du\n" msgstr "" "depth: %d valid: %3d signed: %3d trust: %d-, %dq, %dn, %dm, %df, %du\n" -#: g10/trustdb.c:2333 +#: g10/trustdb.c:2345 #, c-format msgid "unable to update trustdb version record: write failed: %s\n" msgstr "unable to update trustdb version record: write failed: %s\n" @@ -7952,72 +7956,76 @@ #. TRANSLATORS: Put a \x1f right before a colon. This can be #. * used by pinentry to nicely align the names and values. Keep #. * the %s at the start and end of the string. -#: scd/app-p15.c:5116 scd/app-openpgp.c:2154 +#: scd/app-p15.c:5145 scd/app-nks.c:1541 scd/app-openpgp.c:2154 #, c-format msgid "%sNumber: %s%%0AHolder: %s%s" msgstr "%sNumber: %s%%0AHolder: %s%s" #. TRANSLATORS: This is the number of remaining attempts to #. * enter a PIN. Use %%0A (double-percent,0A) for a linefeed. -#: scd/app-p15.c:5135 scd/app-openpgp.c:2170 +#: scd/app-p15.c:5164 scd/app-nks.c:1560 scd/app-openpgp.c:2170 #, c-format msgid "Remaining attempts: %d" msgstr "Remaining attempts: %d" -#: scd/app-p15.c:5214 scd/app-nks.c:1113 +#: scd/app-p15.c:5243 scd/app-nks.c:2112 msgid "||Please enter the PIN for the key to create qualified signatures." msgstr "||Please enter the PIN for the key to create qualified signatures." #. TRANSLATORS: Do not translate the "|A|" prefix but keep it at #. the start of the string. Use %0A (single percent) for a linefeed. -#: scd/app-p15.c:5217 scd/app-openpgp.c:2464 +#: scd/app-p15.c:5246 scd/app-openpgp.c:2465 msgid "|A|Please enter the Admin PIN" msgstr "|A|Please enter the Admin PIN" -#: scd/app-p15.c:5219 scd/app-nks.c:1103 +#: scd/app-p15.c:5248 scd/app-nks.c:2102 msgid "|P|Please enter the PIN Unblocking Code (PUK) for the standard keys." msgstr "|P|Please enter the PIN Unblocking Code (PUK) for the standard keys." -#: scd/app-p15.c:5222 scd/app-nks.c:1095 +#: scd/app-p15.c:5251 scd/app-nks.c:2093 msgid "||Please enter the PIN for the standard keys." msgstr "||Please enter the PIN for the standard keys." -#: scd/app-nks.c:709 scd/app-openpgp.c:3666 +#: scd/app-nks.c:1479 scd/app-openpgp.c:3675 #, c-format msgid "RSA modulus missing or not of size %d bits\n" msgstr "RSA modulus missing or not of size %d bits\n" -#: scd/app-nks.c:717 scd/app-openpgp.c:3678 +#: scd/app-nks.c:1487 scd/app-openpgp.c:3687 #, c-format msgid "RSA public exponent missing or larger than %d bits\n" msgstr "RSA public exponent missing or larger than %d bits\n" -#: scd/app-nks.c:797 scd/app-openpgp.c:2327 scd/app-openpgp.c:2346 -#: scd/app-openpgp.c:2513 scd/app-openpgp.c:2531 scd/app-openpgp.c:2829 -#: scd/app-openpgp.c:2876 scd/app-openpgp.c:2991 scd/app-dinsig.c:302 +#: scd/app-nks.c:1660 +msgid "Note: PIN has not yet been enabled." +msgstr "Note: PIN has not yet been enabled." + +#: scd/app-nks.c:1671 scd/app-openpgp.c:2327 scd/app-openpgp.c:2346 +#: scd/app-openpgp.c:2515 scd/app-openpgp.c:2533 scd/app-openpgp.c:2832 +#: scd/app-openpgp.c:2879 scd/app-openpgp.c:3000 scd/app-dinsig.c:303 #, c-format msgid "PIN callback returned error: %s\n" msgstr "PIN callback returned error: %s\n" -#: scd/app-nks.c:830 +#: scd/app-nks.c:1707 #, c-format msgid "the NullPIN has not yet been changed\n" msgstr "the NullPIN has not yet been changed\n" -#: scd/app-nks.c:1094 +#: scd/app-nks.c:2092 msgid "|N|Please enter a new PIN for the standard keys." msgstr "|N|Please enter a new PIN for the standard keys." -#: scd/app-nks.c:1101 +#: scd/app-nks.c:2100 msgid "|NP|Please enter a new PIN Unblocking Code (PUK) for the standard keys." msgstr "" "|NP|Please enter a new PIN Unblocking Code (PUK) for the standard keys." -#: scd/app-nks.c:1111 +#: scd/app-nks.c:2110 msgid "|N|Please enter a new PIN for the key to create qualified signatures." msgstr "|N|Please enter a new PIN for the key to create qualified signatures." -#: scd/app-nks.c:1121 +#: scd/app-nks.c:2120 msgid "" "|NP|Please enter a new PIN Unblocking Code (PUK) for the key to create " "qualified signatures." @@ -8025,7 +8033,7 @@ "|NP|Please enter a new PIN Unblocking Code (PUK) for the key to create " "qualified signatures." -#: scd/app-nks.c:1123 +#: scd/app-nks.c:2122 msgid "" "|P|Please enter the PIN Unblocking Code (PUK) for the key to create " "qualified signatures." @@ -8033,7 +8041,7 @@ "|P|Please enter the PIN Unblocking Code (PUK) for the key to create " "qualified signatures." -#: scd/app-nks.c:1230 scd/app-openpgp.c:2910 scd/app-dinsig.c:532 +#: scd/app-nks.c:2295 scd/app-openpgp.c:2913 scd/app-dinsig.c:535 #, c-format msgid "error getting new PIN: %s\n" msgstr "error getting new PIN: %s\n" @@ -8048,7 +8056,7 @@ msgid "failed to store the creation date: %s\n" msgstr "failed to store the creation date: %s\n" -#: scd/app-openpgp.c:1271 scd/app-openpgp.c:2857 scd/app-openpgp.c:5041 +#: scd/app-openpgp.c:1271 scd/app-openpgp.c:2860 scd/app-openpgp.c:5051 #, c-format msgid "error retrieving CHV status from card\n" msgstr "error retrieving CHV status from card\n" @@ -8068,7 +8076,7 @@ msgid "response does not contain the EC public key\n" msgstr "response does not contain the EC public key\n" -#: scd/app-openpgp.c:1664 scd/app-openpgp.c:4286 +#: scd/app-openpgp.c:1664 scd/app-openpgp.c:4295 #, c-format msgid "response does not contain the public key data\n" msgstr "response does not contain the public key data\n" @@ -8100,23 +8108,23 @@ msgid "||Please unlock the card" msgstr "||Please unlock the card" -#: scd/app-openpgp.c:2353 scd/app-openpgp.c:2538 scd/app-openpgp.c:2836 +#: scd/app-openpgp.c:2353 scd/app-openpgp.c:2540 scd/app-openpgp.c:2839 #, c-format msgid "PIN for CHV%d is too short; minimum length is %d\n" msgstr "PIN for CHV%d is too short; minimum length is %d\n" -#: scd/app-openpgp.c:2367 scd/app-openpgp.c:2414 scd/app-openpgp.c:2552 -#: scd/app-openpgp.c:4644 +#: scd/app-openpgp.c:2368 scd/app-openpgp.c:2415 scd/app-openpgp.c:2554 +#: scd/app-openpgp.c:4654 #, c-format msgid "verify CHV%d failed: %s\n" msgstr "verify CHV%d failed: %s\n" -#: scd/app-openpgp.c:2450 scd/app-openpgp.c:5050 +#: scd/app-openpgp.c:2451 scd/app-openpgp.c:5060 #, c-format msgid "card is permanently locked!\n" msgstr "card is permanently locked!\n" -#: scd/app-openpgp.c:2454 +#: scd/app-openpgp.c:2455 #, c-format msgid "%d Admin PIN attempt remaining before card is permanently locked\n" msgid_plural "" @@ -8124,20 +8132,20 @@ msgstr[0] "%d Admin PIN attempt remaining before card is permanently locked\n" msgstr[1] "%d Admin PIN attempts remaining before card is permanently locked\n" -#: scd/app-openpgp.c:2485 +#: scd/app-openpgp.c:2486 #, c-format msgid "access to admin commands is not configured\n" msgstr "access to admin commands is not configured\n" -#: scd/app-openpgp.c:2823 +#: scd/app-openpgp.c:2826 msgid "||Please enter the PIN" msgstr "||Please enter the PIN" -#: scd/app-openpgp.c:2872 +#: scd/app-openpgp.c:2875 msgid "||Please enter the Reset Code for the card" msgstr "||Please enter the Reset Code for the card" -#: scd/app-openpgp.c:2882 scd/app-openpgp.c:2943 +#: scd/app-openpgp.c:2885 scd/app-openpgp.c:2946 #, c-format msgid "Reset Code is too short; minimum length is %d\n" msgstr "Reset Code is too short; minimum length is %d\n" @@ -8145,133 +8153,133 @@ #. 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:2905 +#: scd/app-openpgp.c:2908 msgid "|RN|New Reset Code" msgstr "|RN|New Reset Code" -#: scd/app-openpgp.c:2906 +#: scd/app-openpgp.c:2909 msgid "|AN|New Admin PIN" msgstr "|AN|New Admin PIN" -#: scd/app-openpgp.c:2906 +#: scd/app-openpgp.c:2909 msgid "|N|New PIN" msgstr "|N|New PIN" -#: scd/app-openpgp.c:2987 +#: scd/app-openpgp.c:2996 msgid "||Please enter the Admin PIN and New Admin PIN" msgstr "||Please enter the Admin PIN and New Admin PIN" -#: scd/app-openpgp.c:2988 +#: scd/app-openpgp.c:2997 msgid "||Please enter the PIN and New PIN" msgstr "||Please enter the PIN and New PIN" -#: scd/app-openpgp.c:3050 scd/app-openpgp.c:4346 +#: scd/app-openpgp.c:3059 scd/app-openpgp.c:4355 #, c-format msgid "error reading application data\n" msgstr "error reading application data\n" -#: scd/app-openpgp.c:3056 scd/app-openpgp.c:4353 +#: scd/app-openpgp.c:3065 scd/app-openpgp.c:4362 #, c-format msgid "error reading fingerprint DO\n" msgstr "error reading fingerprint DO\n" -#: scd/app-openpgp.c:3066 +#: scd/app-openpgp.c:3075 #, c-format msgid "key already exists\n" msgstr "key already exists\n" -#: scd/app-openpgp.c:3070 +#: scd/app-openpgp.c:3079 #, c-format msgid "existing key will be replaced\n" msgstr "existing key will be replaced\n" -#: scd/app-openpgp.c:3072 +#: scd/app-openpgp.c:3081 #, c-format msgid "generating new key\n" msgstr "generating new key\n" -#: scd/app-openpgp.c:3074 +#: scd/app-openpgp.c:3083 #, c-format msgid "writing new key\n" msgstr "writing new key\n" -#: scd/app-openpgp.c:3647 scd/app-openpgp.c:3999 +#: scd/app-openpgp.c:3656 scd/app-openpgp.c:4008 #, c-format msgid "creation timestamp missing\n" msgstr "creation timestamp missing\n" -#: scd/app-openpgp.c:3688 scd/app-openpgp.c:3696 +#: scd/app-openpgp.c:3697 scd/app-openpgp.c:3705 #, c-format msgid "RSA prime %s missing or not of size %d bits\n" msgstr "RSA prime %s missing or not of size %d bits\n" -#: scd/app-openpgp.c:3829 scd/app-openpgp.c:4106 +#: scd/app-openpgp.c:3838 scd/app-openpgp.c:4115 #, c-format msgid "failed to store the key: %s\n" msgstr "failed to store the key: %s\n" -#: scd/app-openpgp.c:3993 +#: scd/app-openpgp.c:4002 #, c-format msgid "unsupported curve\n" msgstr "unsupported curve\n" -#: scd/app-openpgp.c:4263 +#: scd/app-openpgp.c:4272 #, c-format msgid "please wait while key is being generated ...\n" msgstr "please wait while key is being generated ...\n" -#: scd/app-openpgp.c:4271 +#: scd/app-openpgp.c:4280 #, c-format msgid "generating key failed\n" msgstr "generating key failed\n" -#: scd/app-openpgp.c:4277 +#: scd/app-openpgp.c:4286 #, c-format msgid "key generation completed (%d second)\n" msgid_plural "key generation completed (%d seconds)\n" msgstr[0] "key generation completed (%d second)\n" msgstr[1] "key generation completed (%d seconds)\n" -#: scd/app-openpgp.c:4311 +#: scd/app-openpgp.c:4320 #, c-format msgid "invalid structure of OpenPGP card (DO 0x93)\n" msgstr "invalid structure of OpenPGP card (DO 0x93)\n" -#: scd/app-openpgp.c:4361 +#: scd/app-openpgp.c:4370 #, c-format msgid "fingerprint on card does not match requested one\n" msgstr "fingerprint on card does not match requested one\n" -#: scd/app-openpgp.c:4560 +#: scd/app-openpgp.c:4569 #, c-format msgid "card does not support digest algorithm %s\n" msgstr "card does not support digest algorithm %s\n" -#: scd/app-openpgp.c:4618 +#: scd/app-openpgp.c:4627 #, c-format msgid "signatures created so far: %lu\n" msgstr "signatures created so far: %lu\n" -#: scd/app-openpgp.c:5055 +#: scd/app-openpgp.c:5065 #, c-format msgid "" "verification of Admin PIN is currently prohibited through this command\n" msgstr "" "verification of Admin PIN is currently prohibited through this command\n" -#: scd/app-openpgp.c:5386 scd/app-openpgp.c:5398 +#: scd/app-openpgp.c:5396 scd/app-openpgp.c:5408 #, c-format msgid "can't access %s - invalid OpenPGP card?\n" msgstr "can't access %s - invalid OpenPGP card?\n" -#: scd/app-dinsig.c:298 +#: scd/app-dinsig.c:299 msgid "||Please enter your PIN at the reader's pinpad" msgstr "||Please enter your PIN at the reader's pinpad" #. 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-dinsig.c:529 +#: scd/app-dinsig.c:532 msgid "|N|Initial New PIN" msgstr "|N|Initial New PIN" @@ -8358,11 +8366,11 @@ msgid "validation model requested by certificate: %s" msgstr "validation model requested by certificate: %s" -#: sm/certchain.c:199 sm/certchain.c:2164 +#: sm/certchain.c:199 sm/certchain.c:2165 msgid "chain" msgstr "chain" -#: sm/certchain.c:200 sm/certchain.c:2164 +#: sm/certchain.c:200 sm/certchain.c:2165 msgid "shell" msgstr "shell" @@ -8385,234 +8393,234 @@ msgid "failed to open '%s': %s\n" msgstr "failed to open '%s': %s\n" -#: sm/certchain.c:355 sm/certchain.c:384 dirmngr/validate.c:204 +#: sm/certchain.c:355 sm/certchain.c:385 dirmngr/validate.c:204 #, c-format msgid "Note: non-critical certificate policy not allowed" msgstr "Note: non-critical certificate policy not allowed" -#: sm/certchain.c:359 sm/certchain.c:388 dirmngr/validate.c:209 +#: sm/certchain.c:359 sm/certchain.c:389 dirmngr/validate.c:209 #, c-format msgid "certificate policy not allowed" msgstr "certificate policy not allowed" -#: sm/certchain.c:595 sm/keydb.c:1084 sm/keydb.c:1171 +#: sm/certchain.c:596 sm/keydb.c:1084 sm/keydb.c:1171 #, c-format msgid "failed to get the fingerprint\n" msgstr "failed to get the fingerprint\n" -#: sm/certchain.c:624 +#: sm/certchain.c:625 #, c-format msgid "looking up issuer at external location\n" msgstr "looking up issuer at external location\n" -#: sm/certchain.c:644 +#: sm/certchain.c:645 #, c-format msgid "number of issuers matching: %d\n" msgstr "number of issuers matching: %d\n" -#: sm/certchain.c:723 dirmngr/ocsp.c:685 +#: sm/certchain.c:724 dirmngr/ocsp.c:685 #, c-format msgid "can't get authorityInfoAccess: %s\n" msgstr "can't get authorityInfoAccess: %s\n" -#: sm/certchain.c:791 +#: sm/certchain.c:792 #, c-format msgid "looking up issuer from the Dirmngr cache\n" msgstr "looking up issuer from the Dirmngr cache\n" -#: sm/certchain.c:816 +#: sm/certchain.c:817 #, c-format msgid "number of matching certificates: %d\n" msgstr "number of matching certificates: %d\n" -#: sm/certchain.c:819 +#: sm/certchain.c:820 #, c-format msgid "dirmngr cache-only key lookup failed: %s\n" msgstr "dirmngr cache-only key lookup failed: %s\n" -#: sm/certchain.c:1041 sm/certchain.c:1554 sm/certchain.c:2192 sm/decrypt.c:728 +#: sm/certchain.c:1042 sm/certchain.c:1555 sm/certchain.c:2193 sm/decrypt.c:728 #: sm/encrypt.c:345 sm/import.c:415 sm/keydb.c:1091 sm/keydb.c:1178 #: sm/sign.c:337 sm/verify.c:118 #, c-format msgid "failed to allocate keyDB handle\n" msgstr "failed to allocate keyDB handle\n" -#: sm/certchain.c:1225 +#: sm/certchain.c:1226 msgid "certificate has been revoked" msgstr "certificate has been revoked" -#: sm/certchain.c:1240 +#: sm/certchain.c:1241 msgid "the status of the certificate is unknown" msgstr "the status of the certificate is unknown" -#: sm/certchain.c:1247 +#: sm/certchain.c:1248 #, c-format msgid "please make sure that the \"dirmngr\" is properly installed\n" msgstr "please make sure that the “dirmngr” is properly installed\n" -#: sm/certchain.c:1253 +#: sm/certchain.c:1254 #, c-format msgid "checking the CRL failed: %s" msgstr "checking the CRL failed: %s" -#: sm/certchain.c:1282 sm/certchain.c:1350 dirmngr/validate.c:497 +#: sm/certchain.c:1283 sm/certchain.c:1351 dirmngr/validate.c:497 #, c-format msgid "certificate with invalid validity: %s" msgstr "certificate with invalid validity: %s" -#: sm/certchain.c:1297 sm/certchain.c:1382 dirmngr/validate.c:515 +#: sm/certchain.c:1298 sm/certchain.c:1383 dirmngr/validate.c:515 #, c-format msgid "certificate not yet valid" msgstr "certificate not yet valid" -#: sm/certchain.c:1298 sm/certchain.c:1383 +#: sm/certchain.c:1299 sm/certchain.c:1384 msgid "root certificate not yet valid" msgstr "root certificate not yet valid" -#: sm/certchain.c:1299 sm/certchain.c:1384 +#: sm/certchain.c:1300 sm/certchain.c:1385 msgid "intermediate certificate not yet valid" msgstr "intermediate certificate not yet valid" -#: sm/certchain.c:1312 dirmngr/validate.c:526 +#: sm/certchain.c:1313 dirmngr/validate.c:526 #, c-format msgid "certificate has expired" msgstr "certificate has expired" -#: sm/certchain.c:1313 +#: sm/certchain.c:1314 msgid "root certificate has expired" msgstr "root certificate has expired" -#: sm/certchain.c:1314 +#: sm/certchain.c:1315 msgid "intermediate certificate has expired" msgstr "intermediate certificate has expired" -#: sm/certchain.c:1356 +#: sm/certchain.c:1357 #, c-format msgid "required certificate attributes missing: %s%s%s" msgstr "required certificate attributes missing: %s%s%s" -#: sm/certchain.c:1365 +#: sm/certchain.c:1366 msgid "certificate with invalid validity" msgstr "certificate with invalid validity" -#: sm/certchain.c:1402 +#: sm/certchain.c:1403 msgid "signature not created during lifetime of certificate" msgstr "signature not created during lifetime of certificate" -#: sm/certchain.c:1404 +#: sm/certchain.c:1405 msgid "certificate not created during lifetime of issuer" msgstr "certificate not created during lifetime of issuer" -#: sm/certchain.c:1405 +#: sm/certchain.c:1406 msgid "intermediate certificate not created during lifetime of issuer" msgstr "intermediate certificate not created during lifetime of issuer" -#: sm/certchain.c:1409 +#: sm/certchain.c:1410 #, c-format msgid " ( signature created at " msgstr " ( signature created at " -#: sm/certchain.c:1410 +#: sm/certchain.c:1411 #, c-format msgid " (certificate created at " msgstr " (certificate created at " -#: sm/certchain.c:1413 +#: sm/certchain.c:1414 #, c-format msgid " (certificate valid from " msgstr " (certificate valid from " -#: sm/certchain.c:1414 +#: sm/certchain.c:1415 #, c-format msgid " ( issuer valid from " msgstr " ( issuer valid from " -#: sm/certchain.c:1444 dirmngr/validate.c:577 +#: sm/certchain.c:1445 dirmngr/validate.c:577 #, c-format msgid "fingerprint=%s\n" msgstr "fingerprint=%s\n" -#: sm/certchain.c:1453 +#: sm/certchain.c:1454 #, c-format msgid "root certificate has now been marked as trusted\n" msgstr "root certificate has now been marked as trusted\n" -#: sm/certchain.c:1466 +#: sm/certchain.c:1467 #, c-format msgid "interactive marking as trusted not enabled in gpg-agent\n" msgstr "interactive marking as trusted not enabled in gpg-agent\n" -#: sm/certchain.c:1472 +#: sm/certchain.c:1473 #, c-format msgid "interactive marking as trusted disabled for this session\n" msgstr "interactive marking as trusted disabled for this session\n" -#: sm/certchain.c:1531 +#: sm/certchain.c:1532 msgid "WARNING: creation time of signature not known - assuming current time" msgstr "WARNING: creation time of signature not known - assuming current time" -#: sm/certchain.c:1595 +#: sm/certchain.c:1596 msgid "no issuer found in certificate" msgstr "no issuer found in certificate" -#: sm/certchain.c:1673 +#: sm/certchain.c:1674 msgid "self-signed certificate has a BAD signature" msgstr "self-signed certificate has a BAD signature" -#: sm/certchain.c:1742 dirmngr/validate.c:575 +#: sm/certchain.c:1743 dirmngr/validate.c:575 #, c-format msgid "root certificate is not marked trusted" msgstr "root certificate is not marked trusted" -#: sm/certchain.c:1758 +#: sm/certchain.c:1759 #, c-format msgid "checking the trust list failed: %s\n" msgstr "checking the trust list failed: %s\n" -#: sm/certchain.c:1789 sm/import.c:176 sm/keylist.c:1396 dirmngr/validate.c:630 +#: sm/certchain.c:1790 sm/import.c:176 sm/keylist.c:1396 dirmngr/validate.c:630 #, c-format msgid "certificate chain too long\n" msgstr "certificate chain too long\n" -#: sm/certchain.c:1801 dirmngr/validate.c:642 +#: sm/certchain.c:1802 dirmngr/validate.c:642 #, c-format msgid "issuer certificate not found" msgstr "issuer certificate not found" -#: sm/certchain.c:1834 dirmngr/validate.c:668 +#: sm/certchain.c:1835 dirmngr/validate.c:668 #, c-format msgid "certificate has a BAD signature" msgstr "certificate has a BAD signature" -#: sm/certchain.c:1866 dirmngr/validate.c:692 +#: sm/certchain.c:1867 dirmngr/validate.c:692 msgid "found another possible matching CA certificate - trying again" msgstr "found another possible matching CA certificate - trying again" -#: sm/certchain.c:1925 dirmngr/validate.c:717 +#: sm/certchain.c:1926 dirmngr/validate.c:717 #, c-format msgid "certificate chain longer than allowed by CA (%d)" msgstr "certificate chain longer than allowed by CA (%d)" -#: sm/certchain.c:1967 sm/certchain.c:2263 dirmngr/validate.c:747 +#: sm/certchain.c:1968 sm/certchain.c:2264 dirmngr/validate.c:747 #, c-format msgid "certificate is good\n" msgstr "certificate is good\n" -#: sm/certchain.c:1968 +#: sm/certchain.c:1969 #, c-format msgid "intermediate certificate is good\n" msgstr "intermediate certificate is good\n" -#: sm/certchain.c:1969 +#: sm/certchain.c:1970 #, c-format msgid "root certificate is good\n" msgstr "root certificate is good\n" -#: sm/certchain.c:2151 +#: sm/certchain.c:2152 msgid "switching to chain model" msgstr "switching to chain model" -#: sm/certchain.c:2160 +#: sm/certchain.c:2161 #, c-format msgid "validation model used: %s" msgstr "validation model used: %s" diff -Nru gnupg2-2.2.40/po/eo.po gnupg2-2.2.41/po/eo.po --- gnupg2-2.2.40/po/eo.po 2022-10-10 09:58:25.000000000 +0000 +++ gnupg2-2.2.41/po/eo.po 2022-12-09 08:48:34.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: gnupg 1.0.6d\n" "Report-Msgid-Bugs-To: translations@gnupg.org\n" -"POT-Creation-Date: 2022-10-10 11:58+0200\n" +"POT-Creation-Date: 2022-12-09 09:48+0100\n" "PO-Revision-Date: 2002-04-14 14:33+0100\n" "Last-Translator: Edmund GRIMLEY EVANS \n" "Language-Team: Esperanto \n" @@ -226,8 +226,8 @@ msgid "ssh keys greater than %d bits are not supported\n" msgstr "protekto-metodo %d%s ne estas realigita\n" -#: agent/command-ssh.c:862 common/dotlock.c:856 g10/card-util.c:947 -#: g10/exec.c:554 g10/export.c:1320 g10/gpg.c:1400 g10/keygen.c:4998 +#: agent/command-ssh.c:862 common/dotlock.c:856 g10/card-util.c:946 +#: g10/exec.c:554 g10/export.c:1335 g10/gpg.c:1409 g10/keygen.c:5052 #: g10/keyring.c:1322 g10/keyring.c:1637 g10/openfile.c:291 g10/sign.c:1008 #: g10/sign.c:1322 g10/tdbio.c:753 #, fuzzy, c-format @@ -235,12 +235,12 @@ msgid "can't create '%s': %s\n" msgstr "ne povas krei '%s': %s\n" -#: agent/command-ssh.c:874 common/helpfile.c:57 g10/card-util.c:904 +#: agent/command-ssh.c:874 common/helpfile.c:57 g10/card-util.c:903 #: g10/dearmor.c:59 g10/dearmor.c:106 g10/decrypt.c:65 g10/decrypt.c:136 -#: g10/decrypt.c:153 g10/encrypt.c:239 g10/encrypt.c:678 g10/gpg.c:1401 -#: g10/import.c:364 g10/import.c:548 g10/import.c:776 g10/keygen.c:4036 +#: g10/decrypt.c:153 g10/encrypt.c:239 g10/encrypt.c:678 g10/gpg.c:1410 +#: g10/import.c:365 g10/import.c:549 g10/import.c:777 g10/keygen.c:4090 #: g10/keyring.c:1663 g10/openfile.c:195 g10/openfile.c:209 g10/plaintext.c:128 -#: g10/plaintext.c:649 g10/sign.c:990 g10/sign.c:1201 g10/sign.c:1306 +#: g10/plaintext.c:654 g10/sign.c:990 g10/sign.c:1201 g10/sign.c:1306 #: g10/sign.c:1451 g10/tdbdump.c:145 g10/tdbdump.c:153 g10/tdbio.c:758 #: g10/tdbio.c:829 g10/verify.c:96 g10/verify.c:160 sm/gpgsm.c:2160 #: sm/gpgsm.c:2190 sm/gpgsm.c:2228 sm/qualified.c:66 dirmngr/certcache.c:420 @@ -468,34 +468,34 @@ msgid "csh-style command output" msgstr "" -#: agent/gpg-agent.c:185 g10/gpg.c:579 scd/scdaemon.c:126 sm/gpgsm.c:410 +#: agent/gpg-agent.c:185 g10/gpg.c:580 scd/scdaemon.c:126 sm/gpgsm.c:410 #: dirmngr/dirmngr.c:192 #, fuzzy msgid "|FILE|read options from FILE" msgstr "|DOSIERO|legi aldonan bibliotekon DOSIERO" -#: agent/gpg-agent.c:189 g10/gpg.c:566 scd/scdaemon.c:130 sm/gpgsm.c:259 +#: agent/gpg-agent.c:189 g10/gpg.c:567 scd/scdaemon.c:130 sm/gpgsm.c:259 #: dirmngr/dirmngr.c:196 msgid "Options controlling the diagnostic output" msgstr "" -#: agent/gpg-agent.c:191 g10/gpg.c:568 g10/gpgv.c:78 kbx/kbxutil.c:88 +#: agent/gpg-agent.c:191 g10/gpg.c:569 g10/gpgv.c:78 kbx/kbxutil.c:88 #: scd/scdaemon.c:132 sm/gpgsm.c:261 dirmngr/dirmngr-client.c:70 #: dirmngr/dirmngr.c:198 tools/gpg-connect-agent.c:78 tools/gpgconf.c:110 msgid "verbose" msgstr "detala eligo" -#: agent/gpg-agent.c:192 g10/gpg.c:570 g10/gpgv.c:79 kbx/kbxutil.c:89 +#: agent/gpg-agent.c:192 g10/gpg.c:571 g10/gpgv.c:79 kbx/kbxutil.c:89 #: scd/scdaemon.c:133 sm/gpgsm.c:263 dirmngr/dirmngr-client.c:71 #: dirmngr/dirmngr.c:199 msgid "be somewhat more quiet" msgstr "iom malpli da informoj" -#: agent/gpg-agent.c:200 g10/gpg.c:583 sm/gpgsm.c:276 dirmngr/dirmngr.c:209 +#: agent/gpg-agent.c:200 g10/gpg.c:584 sm/gpgsm.c:276 dirmngr/dirmngr.c:209 msgid "|FILE|write server mode logs to FILE" msgstr "" -#: agent/gpg-agent.c:204 g10/gpg.c:589 scd/scdaemon.c:147 sm/gpgsm.c:283 +#: agent/gpg-agent.c:204 g10/gpg.c:590 scd/scdaemon.c:147 sm/gpgsm.c:283 #: dirmngr/dirmngr.c:213 msgid "Options controlling the configuration" msgstr "" @@ -539,7 +539,7 @@ msgid "enable putty support" msgstr "ne realigita" -#: agent/gpg-agent.c:237 g10/gpg.c:831 scd/scdaemon.c:175 sm/gpgsm.c:369 +#: agent/gpg-agent.c:237 g10/gpg.c:832 scd/scdaemon.c:175 sm/gpgsm.c:369 msgid "Options controlling the security" msgstr "" @@ -641,7 +641,7 @@ #. reporting address. This is so that we can change the #. reporting address without breaking the translations. #: agent/gpg-agent.c:563 agent/preset-passphrase.c:100 agent/protect-tool.c:155 -#: g10/gpg.c:1108 g10/gpgv.c:149 kbx/kbxutil.c:113 scd/scdaemon.c:313 +#: g10/gpg.c:1117 g10/gpgv.c:149 kbx/kbxutil.c:113 scd/scdaemon.c:313 #: sm/gpgsm.c:600 dirmngr/dirmngr-client.c:168 dirmngr/dirmngr.c:458 #: tools/gpg-connect-agent.c:205 tools/gpgconf.c:154 #: tools/gpg-check-pattern.c:143 @@ -660,27 +660,27 @@ "Secret key management for @GNUPG@\n" msgstr "" -#: agent/gpg-agent.c:619 g10/gpg.c:1304 scd/scdaemon.c:385 sm/gpgsm.c:748 +#: agent/gpg-agent.c:619 g10/gpg.c:1313 scd/scdaemon.c:385 sm/gpgsm.c:748 #: dirmngr/dirmngr.c:542 #, c-format msgid "invalid debug-level '%s' given\n" msgstr "" -#: agent/gpg-agent.c:988 g10/gpg.c:3810 g10/gpg.c:3834 sm/gpgsm.c:1585 +#: agent/gpg-agent.c:988 g10/gpg.c:3830 g10/gpg.c:3854 sm/gpgsm.c:1585 #: sm/gpgsm.c:1591 #, c-format msgid "selected digest algorithm is invalid\n" msgstr "elektita kompendi-metodo ne validas\n" #: agent/gpg-agent.c:1216 agent/gpg-agent.c:2029 common/argparse.c:1766 -#: common/argparse.c:1858 g10/gpg.c:2517 scd/scdaemon.c:547 sm/gpgsm.c:1007 +#: common/argparse.c:1858 g10/gpg.c:2526 scd/scdaemon.c:547 sm/gpgsm.c:1007 #: dirmngr/dirmngr.c:1081 dirmngr/dirmngr.c:1937 #, fuzzy, c-format #| msgid "reading options from `%s'\n" msgid "reading options from '%s'\n" msgstr "legas opciojn el '%s'\n" -#: agent/gpg-agent.c:1332 g10/gpg.c:3751 scd/scdaemon.c:671 sm/gpgsm.c:1522 +#: agent/gpg-agent.c:1332 g10/gpg.c:3769 scd/scdaemon.c:671 sm/gpgsm.c:1522 #: dirmngr/dirmngr.c:1190 tools/gpg-connect-agent.c:1244 tools/gpgconf.c:677 #, fuzzy, c-format msgid "Note: '%s' is not considered an option\n" @@ -811,7 +811,7 @@ "Password cache maintenance\n" msgstr "" -#: agent/protect-tool.c:108 g10/gpg.c:441 kbx/kbxutil.c:71 sm/gpgsm.c:210 +#: agent/protect-tool.c:108 g10/gpg.c:442 kbx/kbxutil.c:71 sm/gpgsm.c:210 #: dirmngr/dirmngr.c:171 tools/gpgconf.c:80 msgid "" "@Commands:\n" @@ -1031,7 +1031,7 @@ msgid "secret key parts are not available\n" msgstr "sekretaj ŝlosilpartoj ne estas disponataj\n" -#: agent/cvt-openpgp.c:344 g10/card-util.c:1556 +#: agent/cvt-openpgp.c:344 g10/card-util.c:1555 #, fuzzy, c-format #| msgid "protection algorithm %d%s is not supported\n" msgid "public key algorithm %d (%s) is not supported\n" @@ -1192,7 +1192,7 @@ msgid "out of core while allocating %lu bytes" msgstr "" -#: common/miscellaneous.c:115 g10/card-util.c:911 tools/no-libgcrypt.c:30 +#: common/miscellaneous.c:115 g10/card-util.c:910 tools/no-libgcrypt.c:30 #, fuzzy, c-format msgid "error allocating enough memory: %s\n" msgstr "eraro dum kreado de ŝlosilaro '%s': %s\n" @@ -1317,7 +1317,7 @@ msgstr "kiraso: %s\n" #: common/audit.c:774 common/audit.c:776 common/audit.c:921 common/audit.c:923 -#: scd/app-openpgp.c:3557 +#: scd/app-openpgp.c:3566 #, fuzzy, c-format msgid "unsupported algorithm: %s" msgstr "" @@ -1403,12 +1403,12 @@ "Neniom da atestiloj trovitaj kun nedifinita fidovaloro.\n" "\n" -#: common/audit.c:1112 sm/certchain.c:1235 +#: common/audit.c:1112 sm/certchain.c:1236 #, fuzzy msgid "no CRL found for certificate" msgstr "Bona atestilo" -#: common/audit.c:1115 sm/certchain.c:1245 +#: common/audit.c:1115 sm/certchain.c:1246 #, fuzzy msgid "the available CRL is too old" msgstr "Nenia helpo disponata" @@ -1551,7 +1551,7 @@ msgid "missing argument for option \"%.50s\"\n" msgstr "" -#: common/argparse.c:558 g10/gpg.c:3525 +#: common/argparse.c:558 g10/gpg.c:3543 #, fuzzy, c-format msgid "invalid argument for option \"%.50s\"\n" msgstr "nevalida kiraso" @@ -1652,92 +1652,92 @@ msgid "%s is too old (need %s, have %s)\n" msgstr "" -#: g10/armor.c:423 +#: g10/armor.c:424 #, c-format msgid "armor: %s\n" msgstr "kiraso: %s\n" -#: g10/armor.c:462 +#: g10/armor.c:463 #, c-format msgid "invalid armor header: " msgstr "nevalida kirasoĉapo: " -#: g10/armor.c:473 +#: g10/armor.c:474 #, c-format msgid "armor header: " msgstr "kirasoĉapo: " -#: g10/armor.c:486 +#: g10/armor.c:487 #, c-format msgid "invalid clearsig header\n" msgstr "nevalida ĉapo de klarteksta subskribo\n" -#: g10/armor.c:499 +#: g10/armor.c:500 #, fuzzy, c-format msgid "unknown armor header: " msgstr "kirasoĉapo: " -#: g10/armor.c:552 +#: g10/armor.c:553 #, c-format msgid "nested clear text signatures\n" msgstr "ingitaj klartekstaj subskriboj\n" -#: g10/armor.c:687 +#: g10/armor.c:688 #, fuzzy, c-format msgid "unexpected armor: " msgstr "neatendita kiraso:" -#: g10/armor.c:700 +#: g10/armor.c:701 #, c-format msgid "invalid dash escaped line: " msgstr "nevalida strek-eskapita linio: " -#: g10/armor.c:872 g10/armor.c:1492 +#: g10/armor.c:873 g10/armor.c:1493 #, fuzzy, c-format msgid "invalid radix64 character %02X skipped\n" msgstr "nevalida signo %02x en bazo 64 ignorita\n" -#: g10/armor.c:915 +#: g10/armor.c:916 #, c-format msgid "premature eof (no CRC)\n" msgstr "tro frua dosierfino (nenia CRC)\n" -#: g10/armor.c:949 +#: g10/armor.c:950 #, c-format msgid "premature eof (in CRC)\n" msgstr "tro frua dosierfino (en CRC)\n" -#: g10/armor.c:957 +#: g10/armor.c:958 #, c-format msgid "malformed CRC\n" msgstr "misformita CRC\n" -#: g10/armor.c:961 g10/armor.c:1529 +#: g10/armor.c:962 g10/armor.c:1530 #, fuzzy, c-format msgid "CRC error; %06lX - %06lX\n" msgstr "CRC-eraro; %06lx - %06lx\n" -#: g10/armor.c:981 +#: g10/armor.c:982 #, fuzzy, c-format msgid "premature eof (in trailer)\n" msgstr "tro frua dosierfino (en vosto)\n" -#: g10/armor.c:985 +#: g10/armor.c:986 #, c-format msgid "error in trailer line\n" msgstr "eraro en vostolinio\n" -#: g10/armor.c:1305 +#: g10/armor.c:1306 #, c-format msgid "no valid OpenPGP data found.\n" msgstr "validaj OpenPGP-datenoj ne trovitaj.\n" -#: g10/armor.c:1310 +#: g10/armor.c:1311 #, c-format msgid "invalid armor: line longer than %d characters\n" msgstr "nevalida kiraso: linio pli longa ol %d signojn\n" -#: g10/armor.c:1314 +#: g10/armor.c:1315 #, c-format msgid "" "quoted printable character in armor - probably a buggy MTA has been used\n" @@ -1882,24 +1882,24 @@ msgid "server uses an invalid certificate" msgstr "krei revokatestilon" -#: g10/call-dirmngr.c:462 g10/gpg.c:4458 +#: g10/call-dirmngr.c:462 g10/gpg.c:4478 #, fuzzy, c-format #| msgid "armor: %s\n" msgid "Note: %s\n" msgstr "kiraso: %s\n" -#: g10/card-util.c:86 g10/card-util.c:366 g10/card-util.c:1918 +#: g10/card-util.c:86 g10/card-util.c:366 g10/card-util.c:1917 #, fuzzy, c-format msgid "OpenPGP card not available: %s\n" msgstr "sekreta ŝlosilo ne havebla" -#: g10/card-util.c:91 g10/card-util.c:1924 +#: g10/card-util.c:91 g10/card-util.c:1923 #, c-format msgid "OpenPGP card no. %s detected\n" msgstr "" -#: g10/card-util.c:97 g10/card-util.c:2253 g10/delkey.c:160 g10/keyedit.c:1423 -#: g10/keygen.c:4466 g10/revoke.c:214 g10/revoke.c:636 +#: g10/card-util.c:97 g10/card-util.c:2252 g10/delkey.c:160 g10/keyedit.c:1423 +#: g10/keygen.c:4520 g10/revoke.c:214 g10/revoke.c:636 #, fuzzy, c-format msgid "can't do this in batch mode\n" msgstr "ne povas fari tion en neinteraga reĝimo\n" @@ -1909,14 +1909,14 @@ msgid "This command is only available for version 2 cards\n" msgstr "Tiu komando ne eblas en la reĝimo %s.\n" -#: g10/card-util.c:107 scd/app-openpgp.c:2866 +#: g10/card-util.c:107 scd/app-openpgp.c:2869 #, fuzzy, c-format msgid "Reset Code not or not anymore available\n" msgstr "sekretaj ŝlosilpartoj ne estas disponataj\n" -#: g10/card-util.c:140 g10/card-util.c:1442 g10/card-util.c:1704 -#: g10/card-util.c:1796 g10/keyedit.c:394 g10/keyedit.c:415 g10/keyedit.c:429 -#: g10/keygen.c:1808 g10/keygen.c:1980 g10/keygen.c:2186 g10/keygen.c:2477 +#: g10/card-util.c:140 g10/card-util.c:1441 g10/card-util.c:1703 +#: g10/card-util.c:1795 g10/keyedit.c:394 g10/keyedit.c:415 g10/keyedit.c:429 +#: g10/keygen.c:1862 g10/keygen.c:2034 g10/keygen.c:2240 g10/keygen.c:2531 #: sm/certreqgen-ui.c:165 sm/certreqgen-ui.c:291 sm/certreqgen-ui.c:325 msgid "Your selection? " msgstr "Via elekto? " @@ -1967,13 +1967,13 @@ msgid "Error: Combined name too long (limit is %d characters).\n" msgstr "" -#: g10/card-util.c:826 +#: g10/card-util.c:825 #, fuzzy msgid "URL to retrieve public key: " msgstr "skribas publikan ŝlosilon al '%s'\n" -#: g10/card-util.c:920 g10/decrypt-data.c:509 g10/import.c:399 g10/import.c:746 -#: g10/import.c:798 dirmngr/crlcache.c:655 dirmngr/crlcache.c:660 +#: g10/card-util.c:919 g10/decrypt-data.c:509 g10/import.c:400 g10/import.c:747 +#: g10/import.c:799 dirmngr/crlcache.c:655 dirmngr/crlcache.c:660 #: dirmngr/crlcache.c:914 dirmngr/crlcache.c:920 dirmngr/dirmngr.c:1748 #: tools/gpgconf.c:483 tools/gpgconf.c:529 #, fuzzy, c-format @@ -1981,174 +1981,174 @@ msgid "error reading '%s': %s\n" msgstr "eraro dum legado de '%s': %s\n" -#: g10/card-util.c:953 g10/decrypt-data.c:512 g10/export.c:2467 +#: g10/card-util.c:952 g10/decrypt-data.c:512 g10/export.c:2586 #: dirmngr/crlcache.c:925 #, fuzzy, c-format msgid "error writing '%s': %s\n" msgstr "eraro dum skribado de ŝlosilaro '%s': %s\n" -#: g10/card-util.c:980 +#: g10/card-util.c:979 msgid "Login data (account name): " msgstr "" -#: g10/card-util.c:1018 +#: g10/card-util.c:1017 msgid "Private DO data: " msgstr "" -#: g10/card-util.c:1103 +#: g10/card-util.c:1102 #, fuzzy msgid "Language preferences: " msgstr "aktualigitaj preferoj" -#: g10/card-util.c:1111 +#: g10/card-util.c:1110 #, fuzzy msgid "Error: invalid length of preference string.\n" msgstr "nevalida signo en signoĉeno\n" -#: g10/card-util.c:1120 +#: g10/card-util.c:1119 #, fuzzy msgid "Error: invalid characters in preference string.\n" msgstr "nevalida signo en signoĉeno\n" -#: g10/card-util.c:1142 +#: g10/card-util.c:1141 msgid "Salutation (M = Mr., F = Ms., or space): " msgstr "" -#: g10/card-util.c:1156 +#: g10/card-util.c:1155 #, fuzzy msgid "Error: invalid response.\n" msgstr "%s: nevalida dosiero-versio %d\n" -#: g10/card-util.c:1178 +#: g10/card-util.c:1177 #, fuzzy msgid "CA fingerprint: " msgstr "Fingrospuro:" -#: g10/card-util.c:1201 +#: g10/card-util.c:1200 #, fuzzy msgid "Error: invalid formatted fingerprint.\n" msgstr "%s: nevalida dosiero-versio %d\n" -#: g10/card-util.c:1252 +#: g10/card-util.c:1251 #, fuzzy, c-format msgid "key operation not possible: %s\n" msgstr "Kreado de ŝlosiloj malsukcesis: %s\n" -#: g10/card-util.c:1253 +#: g10/card-util.c:1252 #, fuzzy msgid "not an OpenPGP card" msgstr "validaj OpenPGP-datenoj ne trovitaj.\n" -#: g10/card-util.c:1266 g10/keygen.c:4486 g10/keygen.c:5562 +#: g10/card-util.c:1265 g10/keygen.c:4540 g10/keygen.c:5616 #, fuzzy, c-format msgid "error getting current key info: %s\n" msgstr "eraro dum skribado de sekreta ŝlosilaro '%s': %s\n" -#: g10/card-util.c:1351 +#: g10/card-util.c:1350 msgid "Replace existing key? (y/N) " msgstr "" -#: g10/card-util.c:1368 +#: g10/card-util.c:1367 msgid "" "Note: There is no guarantee that the card supports the requested size.\n" " If the key generation does not succeed, please check the\n" " documentation of your card to see what sizes are allowed.\n" msgstr "" -#: g10/card-util.c:1390 g10/keygen.c:2363 sm/certreqgen-ui.c:179 +#: g10/card-util.c:1389 g10/keygen.c:2417 sm/certreqgen-ui.c:179 #, fuzzy, c-format msgid "What keysize do you want? (%u) " msgstr "Kiun ŝlosilgrandon vi deziras? (1024) " -#: g10/card-util.c:1400 g10/keygen.c:2286 g10/keygen.c:2318 +#: g10/card-util.c:1399 g10/keygen.c:2340 g10/keygen.c:2372 #: sm/certreqgen-ui.c:194 #, c-format msgid "rounded up to %u bits\n" msgstr "rondigita ĝis %u bitoj\n" -#: g10/card-util.c:1408 g10/keygen.c:2371 sm/certreqgen-ui.c:184 +#: g10/card-util.c:1407 g10/keygen.c:2425 sm/certreqgen-ui.c:184 #, c-format msgid "%s keysizes must be in the range %u-%u\n" msgstr "" -#: g10/card-util.c:1427 +#: g10/card-util.c:1426 msgid "Changing card key attribute for: " msgstr "" -#: g10/card-util.c:1429 +#: g10/card-util.c:1428 #, fuzzy msgid "Signature key\n" msgstr "Ĉi tiu ŝlosilo eksvalidiĝos je %s.\n" -#: g10/card-util.c:1431 +#: g10/card-util.c:1430 #, fuzzy msgid "Encryption key\n" msgstr " (%d) RSA (nur ĉifri)\n" -#: g10/card-util.c:1433 +#: g10/card-util.c:1432 msgid "Authentication key\n" msgstr "" -#: g10/card-util.c:1435 g10/keygen.c:1926 sm/certreqgen-ui.c:157 +#: g10/card-util.c:1434 g10/keygen.c:1980 sm/certreqgen-ui.c:157 msgid "Please select what kind of key you want:\n" msgstr "Bonvolu elekti, kian ŝlosilon vi deziras:\n" -#: g10/card-util.c:1436 sm/certreqgen-ui.c:158 +#: g10/card-util.c:1435 sm/certreqgen-ui.c:158 #, fuzzy, c-format msgid " (%d) RSA\n" msgstr " (%d) RSA (nur subskribi)\n" -#: g10/card-util.c:1437 +#: g10/card-util.c:1436 #, fuzzy, c-format msgid " (%d) ECC\n" msgstr " (%d) DSA kaj ElGamal (implicita elekto)\n" -#: g10/card-util.c:1449 g10/card-util.c:1716 g10/card-util.c:1816 -#: g10/keyedit.c:900 g10/keygen.c:1834 g10/keygen.c:1862 g10/keygen.c:1987 -#: g10/keygen.c:2222 g10/keygen.c:2505 g10/revoke.c:838 +#: g10/card-util.c:1448 g10/card-util.c:1715 g10/card-util.c:1815 +#: g10/keyedit.c:900 g10/keygen.c:1888 g10/keygen.c:1916 g10/keygen.c:2041 +#: g10/keygen.c:2276 g10/keygen.c:2559 g10/revoke.c:838 msgid "Invalid selection.\n" msgstr "Nevalida elekto.\n" -#: g10/card-util.c:1522 +#: g10/card-util.c:1521 #, c-format msgid "The card will now be re-configured to generate a key of %u bits\n" msgstr "" -#: g10/card-util.c:1527 +#: g10/card-util.c:1526 #, c-format msgid "The card will now be re-configured to generate a key of type: %s\n" msgstr "" -#: g10/card-util.c:1563 +#: g10/card-util.c:1562 #, fuzzy, c-format msgid "error changing key attribute for key %d: %s\n" msgstr "eraro dum sendo al '%s': %s\n" -#: g10/card-util.c:1579 g10/card-util.c:2106 +#: g10/card-util.c:1578 g10/card-util.c:2105 #, fuzzy, c-format msgid "error getting card info: %s\n" msgstr "eraro dum skribado de sekreta ŝlosilaro '%s': %s\n" -#: g10/card-util.c:1585 g10/card-util.c:1930 g10/card-util.c:2112 +#: g10/card-util.c:1584 g10/card-util.c:1929 g10/card-util.c:2111 #, fuzzy, c-format #| msgid "This command is not allowed while in %s mode.\n" msgid "This command is not supported by this card\n" msgstr "Tiu komando ne eblas en la reĝimo %s.\n" -#: g10/card-util.c:1631 +#: g10/card-util.c:1630 msgid "Make off-card backup of encryption key? (Y/n) " msgstr "" -#: g10/card-util.c:1645 +#: g10/card-util.c:1644 #, fuzzy, c-format msgid "Note: keys are already stored on the card!\n" msgstr "ignorita: sekreta ŝlosilo jam ĉeestas\n" -#: g10/card-util.c:1648 +#: g10/card-util.c:1647 msgid "Replace existing keys? (y/N) " msgstr "" -#: g10/card-util.c:1660 +#: g10/card-util.c:1659 #, c-format msgid "" "Please note that the factory settings of the PINs are\n" @@ -2156,160 +2156,160 @@ "You should change them using the command --change-pin\n" msgstr "" -#: g10/card-util.c:1695 +#: g10/card-util.c:1694 #, fuzzy msgid "Please select the type of key to generate:\n" msgstr "Bonvolu elekti, kian ŝlosilon vi deziras:\n" -#: g10/card-util.c:1697 g10/card-util.c:1787 +#: g10/card-util.c:1696 g10/card-util.c:1786 #, fuzzy msgid " (1) Signature key\n" msgstr "Ĉi tiu ŝlosilo eksvalidiĝos je %s.\n" -#: g10/card-util.c:1698 g10/card-util.c:1789 +#: g10/card-util.c:1697 g10/card-util.c:1788 #, fuzzy msgid " (2) Encryption key\n" msgstr " (%d) RSA (nur ĉifri)\n" -#: g10/card-util.c:1699 g10/card-util.c:1791 +#: g10/card-util.c:1698 g10/card-util.c:1790 msgid " (3) Authentication key\n" msgstr "" -#: g10/card-util.c:1784 +#: g10/card-util.c:1783 #, fuzzy msgid "Please select where to store the key:\n" msgstr "Kialo por revoko: " -#: g10/card-util.c:1830 +#: g10/card-util.c:1829 #, fuzzy, c-format msgid "KEYTOCARD failed: %s\n" msgstr "aktualigo malsukcesis: %s\n" -#: g10/card-util.c:1935 +#: g10/card-util.c:1934 #, fuzzy, c-format msgid "Note: This command destroys all keys stored on the card!\n" msgstr "ignorita: sekreta ŝlosilo jam ĉeestas\n" -#: g10/card-util.c:1938 +#: g10/card-util.c:1937 #, fuzzy msgid "Continue? (y/N) " msgstr "Ĉu vere subskribi? " -#: g10/card-util.c:1943 +#: g10/card-util.c:1942 msgid "Really do a factory reset? (enter \"yes\") " msgstr "" -#: g10/card-util.c:2129 +#: g10/card-util.c:2128 #, fuzzy, c-format msgid "error for setup KDF: %s\n" msgstr "eraro dum legado de '%s': %s\n" -#: g10/card-util.c:2158 g10/keyedit.c:1260 +#: g10/card-util.c:2157 g10/keyedit.c:1260 msgid "quit this menu" msgstr "forlasi ĉi tiun menuon" -#: g10/card-util.c:2160 +#: g10/card-util.c:2159 #, fuzzy msgid "show admin commands" msgstr "malkongruaj komandoj\n" -#: g10/card-util.c:2161 g10/keyedit.c:1263 +#: g10/card-util.c:2160 g10/keyedit.c:1263 msgid "show this help" msgstr "montri ĉi tiun helpon" -#: g10/card-util.c:2163 +#: g10/card-util.c:2162 #, fuzzy msgid "list all available data" msgstr "Nenia helpo disponata" -#: g10/card-util.c:2166 +#: g10/card-util.c:2165 msgid "change card holder's name" msgstr "" -#: g10/card-util.c:2167 +#: g10/card-util.c:2166 msgid "change URL to retrieve key" msgstr "" -#: g10/card-util.c:2168 +#: g10/card-util.c:2167 msgid "fetch the key specified in the card URL" msgstr "" -#: g10/card-util.c:2169 +#: g10/card-util.c:2168 #, fuzzy msgid "change the login name" msgstr "ŝanĝi la daton de eksvalidiĝo" -#: g10/card-util.c:2170 +#: g10/card-util.c:2169 #, fuzzy msgid "change the language preferences" msgstr "ŝanĝi la posedantofidon" -#: g10/card-util.c:2171 +#: g10/card-util.c:2170 msgid "change card holder's salutation" msgstr "" -#: g10/card-util.c:2173 +#: g10/card-util.c:2172 #, fuzzy msgid "change a CA fingerprint" msgstr "montri fingrospuron" -#: g10/card-util.c:2174 +#: g10/card-util.c:2173 msgid "toggle the signature force PIN flag" msgstr "" -#: g10/card-util.c:2175 +#: g10/card-util.c:2174 #, fuzzy msgid "generate new keys" msgstr "krei novan ŝlosilparon" -#: g10/card-util.c:2176 +#: g10/card-util.c:2175 msgid "menu to change or unblock the PIN" msgstr "" -#: g10/card-util.c:2177 +#: g10/card-util.c:2176 msgid "verify the PIN and list all data" msgstr "" -#: g10/card-util.c:2178 +#: g10/card-util.c:2177 msgid "unblock the PIN using a Reset Code" msgstr "" -#: g10/card-util.c:2179 +#: g10/card-util.c:2178 msgid "destroy all keys and data" msgstr "" -#: g10/card-util.c:2180 +#: g10/card-util.c:2179 #, fuzzy #| msgid "|NAME|use NAME as default recipient" msgid "setup KDF for PIN authentication" msgstr "|NOMO|uzi NOMOn kiel implicitan ricevonton" -#: g10/card-util.c:2181 +#: g10/card-util.c:2180 #, fuzzy #| msgid "change the ownertrust" msgid "change the key attribute" msgstr "ŝanĝi la posedantofidon" -#: g10/card-util.c:2305 +#: g10/card-util.c:2304 msgid "gpg/card> " msgstr "" -#: g10/card-util.c:2346 +#: g10/card-util.c:2345 #, fuzzy msgid "Admin-only command\n" msgstr "malkongruaj komandoj\n" -#: g10/card-util.c:2377 +#: g10/card-util.c:2376 #, fuzzy msgid "Admin commands are allowed\n" msgstr "malkongruaj komandoj\n" -#: g10/card-util.c:2379 +#: g10/card-util.c:2378 #, fuzzy msgid "Admin commands are not allowed\n" msgstr "skribas sekretan ŝlosilon al '%s'\n" -#: g10/card-util.c:2482 g10/keyedit.c:2229 +#: g10/card-util.c:2481 g10/keyedit.c:2229 msgid "Invalid command (try \"help\")\n" msgstr "Nevalida komando (provu per \"helpo\")\n" @@ -2318,22 +2318,22 @@ msgid "--output doesn't work for this command\n" msgstr "--output ne funkcias por ĉi tiu komando\n" -#: g10/decrypt.c:247 g10/gpg.c:5155 g10/keyring.c:399 g10/keyring.c:750 +#: g10/decrypt.c:247 g10/gpg.c:5175 g10/keyring.c:399 g10/keyring.c:750 #, fuzzy, c-format #| msgid "can't open `%s'\n" msgid "can't open '%s'\n" msgstr "ne povas malfermi '%s'\n" -#: g10/delkey.c:83 g10/export.c:1947 g10/export.c:2230 g10/export.c:2351 -#: g10/getkey.c:2108 g10/gpg.c:5100 g10/keyedit.c:1445 g10/keyedit.c:2335 +#: g10/delkey.c:83 g10/export.c:2035 g10/export.c:2349 g10/export.c:2470 +#: g10/getkey.c:2108 g10/gpg.c:5120 g10/keyedit.c:1445 g10/keyedit.c:2335 #: g10/keyedit.c:2637 g10/keyedit.c:4600 g10/keylist.c:693 g10/keyserver.c:1092 #: g10/revoke.c:230 g10/tofu.c:2165 #, fuzzy, c-format msgid "key \"%s\" not found: %s\n" msgstr "ŝlosilo '%s' ne trovita: %s\n" -#: g10/delkey.c:92 g10/export.c:2015 g10/getkey.c:2116 g10/getkey.c:4517 -#: g10/gpg.c:5109 g10/keyedit.c:2308 g10/keyserver.c:1110 g10/revoke.c:236 +#: g10/delkey.c:92 g10/export.c:2103 g10/getkey.c:2116 g10/getkey.c:4517 +#: g10/gpg.c:5129 g10/keyedit.c:2308 g10/keyserver.c:1110 g10/revoke.c:236 #: g10/revoke.c:663 g10/tofu.c:2173 #, c-format msgid "error reading keyblock: %s\n" @@ -2454,13 +2454,13 @@ msgid "WARNING: '%s' is an empty file\n" msgstr "AVERTO: '%s' estas malplena dosiero\n" -#: g10/encrypt.c:446 g10/encrypt.c:521 g10/decrypt-data.c:266 g10/gpg.c:3959 -#: g10/gpg.c:3999 sm/decrypt.c:826 sm/encrypt.c:416 sm/gpgsm.c:1609 +#: g10/encrypt.c:446 g10/encrypt.c:521 g10/decrypt-data.c:266 g10/gpg.c:3979 +#: g10/gpg.c:4019 sm/decrypt.c:826 sm/encrypt.c:416 sm/gpgsm.c:1609 #, fuzzy, c-format msgid "cipher algorithm '%s' may not be used in %s mode\n" msgstr "Tiu komando ne eblas en la reĝimo %s.\n" -#: g10/encrypt.c:455 g10/gpg.c:3965 g10/gpg.c:4011 g10/sig-check.c:175 +#: g10/encrypt.c:455 g10/gpg.c:3985 g10/gpg.c:4031 g10/sig-check.c:175 #: g10/sign.c:391 sm/gpgsm.c:1619 sm/gpgsm.c:1629 sm/sign.c:478 sm/verify.c:506 #, fuzzy, c-format msgid "digest algorithm '%s' may not be used in %s mode\n" @@ -2572,68 +2572,74 @@ msgid "WARNING: unable to remove temp directory '%s': %s\n" msgstr "Averto: malsekura posedeco sur %s \"%s\"\n" -#: g10/export.c:119 +#: g10/export.c:124 #, fuzzy msgid "export signatures that are marked as local-only" msgstr "" "\n" "La subskribo estos markita kiel nerevokebla.\n" -#: g10/export.c:121 +#: g10/export.c:126 msgid "export attribute user IDs (generally photo IDs)" msgstr "" -#: g10/export.c:123 +#: g10/export.c:128 msgid "export revocation keys marked as \"sensitive\"" msgstr "" -#: g10/export.c:125 +#: g10/export.c:130 #, fuzzy msgid "remove unusable parts from key during export" msgstr "neuzebla sekreta ŝlosilo" -#: g10/export.c:127 +#: g10/export.c:132 msgid "remove as much as possible from key during export" msgstr "" -#: g10/export.c:133 +#: g10/export.c:138 +#, fuzzy +#| msgid "generate a revocation certificate" +msgid "export only revocation certificates" +msgstr "krei revokatestilon" + +#: g10/export.c:141 msgid "use the GnuPG key backup format" msgstr "" -#: g10/export.c:1291 +#: g10/export.c:1306 #, fuzzy #| msgid "%s: skipped: %s\n" msgid " - skipped" msgstr "%s: ignorita: %s\n" -#: g10/export.c:1324 g10/import.c:2085 g10/openfile.c:200 g10/openfile.c:294 +#: g10/export.c:1339 g10/import.c:2089 g10/openfile.c:200 g10/openfile.c:294 #: g10/sign.c:1012 g10/sign.c:1326 #, fuzzy, c-format #| msgid "writing to `%s'\n" msgid "writing to '%s'\n" msgstr "skribas al '%s'\n" -#: g10/export.c:1769 +#: g10/export.c:1784 #, fuzzy, c-format msgid "key %s: key material on-card - skipped\n" msgstr "ŝlosilo %08lX: revokatestilo en malĝusta loko - ignorita\n" -#: g10/export.c:1964 +#: g10/export.c:2052 #, fuzzy, c-format msgid "exporting secret keys not allowed\n" msgstr "skribas sekretan ŝlosilon al '%s'\n" -#: g10/export.c:2041 +#: g10/export.c:2129 #, fuzzy, c-format msgid "key %s: PGP 2.x style key - skipped\n" msgstr "ŝlosilo %08lX: PGP-2.x-stila ŝlosilo - ignorita\n" -#: g10/export.c:2135 +#: g10/export.c:2254 #, c-format msgid "WARNING: nothing exported\n" msgstr "AVERTO: nenio estis eksportita\n" -#: g10/export.c:2432 g10/plaintext.c:153 g10/plaintext.c:162 +#: g10/export.c:2551 g10/plaintext.c:153 g10/plaintext.c:162 #: g10/plaintext.c:168 g10/plaintext.c:191 #, fuzzy, c-format #| msgid "error creating `%s': %s\n" @@ -2702,297 +2708,297 @@ msgid "using subkey %s instead of primary key %s\n" msgstr "uzas flankan ŝlosilon %08lX anstataŭ la ĉefa ŝlosilo %08lX\n" -#: g10/getkey.c:4446 g10/gpg.c:2137 +#: g10/getkey.c:4446 g10/gpg.c:2146 #, fuzzy, c-format msgid "valid values for option '%s':\n" msgstr "nevalida kiraso" -#: g10/gpg.c:443 sm/gpgsm.c:212 +#: g10/gpg.c:444 sm/gpgsm.c:212 #, fuzzy msgid "make a signature" msgstr "fari apartan subskribon" -#: g10/gpg.c:444 +#: g10/gpg.c:445 #, fuzzy msgid "make a clear text signature" msgstr "|[dosiero]|fari klartekstan subskribon" -#: g10/gpg.c:446 sm/gpgsm.c:214 +#: g10/gpg.c:447 sm/gpgsm.c:214 msgid "make a detached signature" msgstr "fari apartan subskribon" -#: g10/gpg.c:447 sm/gpgsm.c:215 +#: g10/gpg.c:448 sm/gpgsm.c:215 msgid "encrypt data" msgstr "ĉifri datenojn" -#: g10/gpg.c:449 +#: g10/gpg.c:450 msgid "encryption only with symmetric cipher" msgstr "ĉifri nur kun simetria ĉifro" -#: g10/gpg.c:451 sm/gpgsm.c:217 +#: g10/gpg.c:452 sm/gpgsm.c:217 msgid "decrypt data (default)" msgstr "malĉifri datenojn (implicita elekto)" -#: g10/gpg.c:453 sm/gpgsm.c:218 +#: g10/gpg.c:454 sm/gpgsm.c:218 msgid "verify a signature" msgstr "kontroli subskribon" -#: g10/gpg.c:455 sm/gpgsm.c:219 +#: g10/gpg.c:456 sm/gpgsm.c:219 msgid "list keys" msgstr "listigi ŝlosilojn" -#: g10/gpg.c:457 +#: g10/gpg.c:458 msgid "list keys and signatures" msgstr "listigi ŝlosilojn kaj subskribojn" -#: g10/gpg.c:460 +#: g10/gpg.c:461 #, fuzzy msgid "list and check key signatures" msgstr "kontroli ŝlosilsubskribojn" -#: g10/gpg.c:462 sm/gpgsm.c:224 +#: g10/gpg.c:463 sm/gpgsm.c:224 msgid "list keys and fingerprints" msgstr "listigi ŝlosilojn kaj fingroŝpurojn" -#: g10/gpg.c:463 sm/gpgsm.c:222 +#: g10/gpg.c:464 sm/gpgsm.c:222 msgid "list secret keys" msgstr "listigi sekretajn ŝlosilojn" -#: g10/gpg.c:465 sm/gpgsm.c:225 +#: g10/gpg.c:466 sm/gpgsm.c:225 msgid "generate a new key pair" msgstr "krei novan ŝlosilparon" -#: g10/gpg.c:468 +#: g10/gpg.c:469 #, fuzzy #| msgid "generate a new key pair" msgid "quickly generate a new key pair" msgstr "krei novan ŝlosilparon" -#: g10/gpg.c:471 +#: g10/gpg.c:472 #, fuzzy #| msgid "generate a new key pair" msgid "quickly add a new user-id" msgstr "krei novan ŝlosilparon" -#: g10/gpg.c:476 +#: g10/gpg.c:477 #, fuzzy #| msgid "generate a new key pair" msgid "quickly revoke a user-id" msgstr "krei novan ŝlosilparon" -#: g10/gpg.c:479 +#: g10/gpg.c:480 #, fuzzy #| msgid "generate a new key pair" msgid "quickly set a new expiration date" msgstr "krei novan ŝlosilparon" -#: g10/gpg.c:482 +#: g10/gpg.c:483 msgid "full featured key pair generation" msgstr "" -#: g10/gpg.c:485 +#: g10/gpg.c:486 msgid "generate a revocation certificate" msgstr "krei revokatestilon" -#: g10/gpg.c:488 sm/gpgsm.c:228 +#: g10/gpg.c:489 sm/gpgsm.c:228 msgid "remove keys from the public keyring" msgstr "forigi ŝlosilojn de la publika ŝlosilaro" -#: g10/gpg.c:490 +#: g10/gpg.c:491 msgid "remove keys from the secret keyring" msgstr "forigi ŝlosilojn de la sekreta ŝlosilaro" -#: g10/gpg.c:492 +#: g10/gpg.c:493 #, fuzzy #| msgid "sign a key" msgid "quickly sign a key" msgstr "subskribi ŝlosilon" -#: g10/gpg.c:494 +#: g10/gpg.c:495 #, fuzzy #| msgid "sign a key locally" msgid "quickly sign a key locally" msgstr "subskribi ŝlosilon loke" -#: g10/gpg.c:496 +#: g10/gpg.c:497 #, fuzzy #| msgid "generate a new key pair" msgid "quickly revoke a key signature" msgstr "krei novan ŝlosilparon" -#: g10/gpg.c:497 +#: g10/gpg.c:498 msgid "sign a key" msgstr "subskribi ŝlosilon" -#: g10/gpg.c:498 +#: g10/gpg.c:499 msgid "sign a key locally" msgstr "subskribi ŝlosilon loke" -#: g10/gpg.c:499 +#: g10/gpg.c:500 msgid "sign or edit a key" msgstr "subskribi aŭ redakti ŝlosilon" -#: g10/gpg.c:501 sm/gpgsm.c:246 +#: g10/gpg.c:502 sm/gpgsm.c:246 #, fuzzy msgid "change a passphrase" msgstr "ŝanĝi la pasfrazon" -#: g10/gpg.c:505 +#: g10/gpg.c:506 msgid "export keys" msgstr "eksporti ŝlosilojn" -#: g10/gpg.c:506 +#: g10/gpg.c:507 msgid "export keys to a keyserver" msgstr "eksporti ŝlosilojn al ŝlosilservilo" -#: g10/gpg.c:507 +#: g10/gpg.c:508 msgid "import keys from a keyserver" msgstr "importi ŝlosilojn de ŝlosilservilo" -#: g10/gpg.c:510 +#: g10/gpg.c:511 msgid "search for keys on a keyserver" msgstr "serĉi ŝlosilojn ĉe ŝlosilservilo" -#: g10/gpg.c:512 +#: g10/gpg.c:513 msgid "update all keys from a keyserver" msgstr "aktualigi ĉiujn ŝlosilojn de ŝlosilservilo" -#: g10/gpg.c:520 +#: g10/gpg.c:521 msgid "import/merge keys" msgstr "importi/kunfandi ŝlosilojn" -#: g10/gpg.c:523 +#: g10/gpg.c:524 msgid "print the card status" msgstr "" -#: g10/gpg.c:524 +#: g10/gpg.c:525 msgid "change data on a card" msgstr "" -#: g10/gpg.c:526 +#: g10/gpg.c:527 msgid "change a card's PIN" msgstr "" -#: g10/gpg.c:538 +#: g10/gpg.c:539 msgid "update the trust database" msgstr "aktualigi la fido-datenaron" -#: g10/gpg.c:548 +#: g10/gpg.c:549 #, fuzzy msgid "print message digests" msgstr "|metodo [dosieroj]|presi mesaĝo-kompendiojn" -#: g10/gpg.c:552 sm/gpgsm.c:241 +#: g10/gpg.c:553 sm/gpgsm.c:241 msgid "run in server mode" msgstr "" -#: g10/gpg.c:554 +#: g10/gpg.c:555 msgid "|VALUE|set the TOFU policy for a key" msgstr "" -#: g10/gpg.c:594 +#: g10/gpg.c:595 msgid "|NAME|use NAME as default secret key" msgstr "|NOMO|uzi NOMOn kiel la implicitan sekretan ŝlosilon" -#: g10/gpg.c:596 sm/gpgsm.c:332 +#: g10/gpg.c:597 sm/gpgsm.c:332 #, fuzzy msgid "|NAME|encrypt to user ID NAME as well" msgstr "|NOMO|ĉifri por NOMO" -#: g10/gpg.c:604 +#: g10/gpg.c:605 msgid "|SPEC|set up email aliases" msgstr "" -#: g10/gpg.c:616 +#: g10/gpg.c:617 msgid "use strict OpenPGP behavior" msgstr "" -#: g10/gpg.c:641 kbx/kbxutil.c:90 sm/gpgsm.c:412 tools/gpgconf.c:112 +#: g10/gpg.c:642 kbx/kbxutil.c:90 sm/gpgsm.c:412 tools/gpgconf.c:112 msgid "do not make any changes" msgstr "fari neniajn ŝanĝojn" -#: g10/gpg.c:642 +#: g10/gpg.c:643 msgid "prompt before overwriting" msgstr "" -#: g10/gpg.c:689 sm/gpgsm.c:304 +#: g10/gpg.c:690 sm/gpgsm.c:304 msgid "Options controlling the input" msgstr "" -#: g10/gpg.c:707 sm/gpgsm.c:314 +#: g10/gpg.c:708 sm/gpgsm.c:314 msgid "Options controlling the output" msgstr "" -#: g10/gpg.c:709 sm/gpgsm.c:316 +#: g10/gpg.c:710 sm/gpgsm.c:316 msgid "create ascii armored output" msgstr "krei eligon en askia kiraso" -#: g10/gpg.c:713 g10/gpgv.c:82 sm/gpgsm.c:321 +#: g10/gpg.c:714 g10/gpgv.c:82 sm/gpgsm.c:321 #, fuzzy msgid "|FILE|write output to FILE" msgstr "|DOSIERO|legi aldonan bibliotekon DOSIERO" -#: g10/gpg.c:726 +#: g10/gpg.c:727 msgid "use canonical text mode" msgstr "uzi tekstan reĝimon" -#: g10/gpg.c:743 +#: g10/gpg.c:744 #, fuzzy msgid "|N|set compress level to N (0 disables)" msgstr "|N|difini densig-nivelon N (0=nenia)" -#: g10/gpg.c:750 sm/gpgsm.c:347 +#: g10/gpg.c:751 sm/gpgsm.c:347 msgid "Options controlling key import and export" msgstr "" -#: g10/gpg.c:753 +#: g10/gpg.c:754 msgid "|MECHANISMS|use MECHANISMS to locate keys by mail address" msgstr "" -#: g10/gpg.c:756 +#: g10/gpg.c:757 #, fuzzy #| msgid "import keys from a keyserver" msgid "import missing key from a signature" msgstr "importi ŝlosilojn de ŝlosilservilo" -#: g10/gpg.c:761 +#: g10/gpg.c:762 #, fuzzy msgid "include the public key in signatures" msgstr "kontroli ŝlosilsubskribojn" -#: g10/gpg.c:764 sm/gpgsm.c:350 +#: g10/gpg.c:765 sm/gpgsm.c:350 msgid "disable all access to the dirmngr" msgstr "" -#: g10/gpg.c:776 sm/gpgsm.c:357 +#: g10/gpg.c:777 sm/gpgsm.c:357 msgid "Options controlling key listings" msgstr "" -#: g10/gpg.c:805 sm/gpgsm.c:324 +#: g10/gpg.c:806 sm/gpgsm.c:324 #, fuzzy #| msgid "list secret keys" msgid "Options to specify keys" msgstr "listigi sekretajn ŝlosilojn" -#: g10/gpg.c:807 sm/gpgsm.c:326 +#: g10/gpg.c:808 sm/gpgsm.c:326 #, fuzzy msgid "|USER-ID|encrypt for USER-ID" msgstr "|NOMO|ĉifri por NOMO" -#: g10/gpg.c:815 sm/gpgsm.c:328 +#: g10/gpg.c:816 sm/gpgsm.c:328 #, fuzzy msgid "|USER-ID|use USER-ID to sign or decrypt" msgstr "uzi ĉi tiun uzantidentigilon por subskribi aŭ malĉifri" -#: g10/gpg.c:866 sm/gpgsm.c:396 +#: g10/gpg.c:867 sm/gpgsm.c:396 msgid "Options for unattended use" msgstr "" -#: g10/gpg.c:885 sm/gpgsm.c:408 dirmngr/dirmngr.c:294 +#: g10/gpg.c:886 sm/gpgsm.c:408 dirmngr/dirmngr.c:294 msgid "Other options" msgstr "" -#: g10/gpg.c:953 sm/gpgsm.c:440 +#: g10/gpg.c:955 sm/gpgsm.c:440 msgid "" "@\n" "(See the man page for a complete listing of all commands and options)\n" @@ -3000,7 +3006,7 @@ "@\n" "(Vidu la manpaĝon por kompleta listo de ĉiuj komandoj kaj opcioj)\n" -#: g10/gpg.c:956 +#: g10/gpg.c:958 #, fuzzy #| msgid "" #| "@\n" @@ -3030,13 +3036,13 @@ " --list-keys [nomoj] montri ŝlosilojn\n" " --fingerprint [nomoj] montri fingroŝpurojn\n" -#: g10/gpg.c:1130 +#: g10/gpg.c:1139 #, fuzzy #| msgid "Usage: gpg [options] [files] (-h for help)" msgid "Usage: @GPG@ [options] [files] (-h for help)" msgstr "Uzado: gpg [opcioj] [dosieroj] (-h por helpo)" -#: g10/gpg.c:1133 +#: g10/gpg.c:1142 #, fuzzy #| msgid "" #| "Syntax: gpg [options] [files]\n" @@ -3051,7 +3057,7 @@ "subskribi, kontroli, ĉifri aŭ malĉifri\n" "implicita operacio dependas de la enigataj datenoj\n" -#: g10/gpg.c:1144 sm/gpgsm.c:624 +#: g10/gpg.c:1153 sm/gpgsm.c:624 msgid "" "\n" "Supported algorithms:\n" @@ -3059,550 +3065,550 @@ "\n" "Realigitaj metodoj:\n" -#: g10/gpg.c:1147 +#: g10/gpg.c:1156 msgid "Pubkey: " msgstr "" -#: g10/gpg.c:1154 g10/keyedit.c:3338 +#: g10/gpg.c:1163 g10/keyedit.c:3338 msgid "Cipher: " msgstr "" -#: g10/gpg.c:1161 +#: g10/gpg.c:1170 msgid "Hash: " msgstr "" -#: g10/gpg.c:1168 g10/keyedit.c:3404 +#: g10/gpg.c:1177 g10/keyedit.c:3404 #, fuzzy msgid "Compression: " msgstr "Komento: " -#: g10/gpg.c:1241 sm/gpgsm.c:698 +#: g10/gpg.c:1250 sm/gpgsm.c:698 #, fuzzy, c-format msgid "usage: %s [options] %s\n" msgstr "uzado: gpg [opcioj] " -#: g10/gpg.c:1436 sm/gpgsm.c:791 +#: g10/gpg.c:1445 sm/gpgsm.c:791 #, c-format msgid "conflicting commands\n" msgstr "malkongruaj komandoj\n" -#: g10/gpg.c:1454 +#: g10/gpg.c:1463 #, c-format msgid "no = sign found in group definition '%s'\n" msgstr "" -#: g10/gpg.c:1652 +#: g10/gpg.c:1661 #, fuzzy, c-format msgid "WARNING: unsafe ownership on homedir '%s'\n" msgstr "Averto: malsekura posedeco sur %s \"%s\"\n" -#: g10/gpg.c:1655 +#: g10/gpg.c:1664 #, fuzzy, c-format msgid "WARNING: unsafe ownership on configuration file '%s'\n" msgstr "Averto: malsekura posedeco sur %s \"%s\"\n" -#: g10/gpg.c:1658 +#: g10/gpg.c:1667 #, fuzzy, c-format msgid "WARNING: unsafe ownership on extension '%s'\n" msgstr "Averto: malsekura posedeco sur %s \"%s\"\n" -#: g10/gpg.c:1664 +#: g10/gpg.c:1673 #, fuzzy, c-format msgid "WARNING: unsafe permissions on homedir '%s'\n" msgstr "Averto: malsekuraj permesoj sur %s \"%s\"\n" -#: g10/gpg.c:1667 +#: g10/gpg.c:1676 #, fuzzy, c-format msgid "WARNING: unsafe permissions on configuration file '%s'\n" msgstr "Averto: malsekuraj permesoj sur %s \"%s\"\n" -#: g10/gpg.c:1670 +#: g10/gpg.c:1679 #, fuzzy, c-format msgid "WARNING: unsafe permissions on extension '%s'\n" msgstr "Averto: malsekuraj permesoj sur %s \"%s\"\n" -#: g10/gpg.c:1676 +#: g10/gpg.c:1685 #, fuzzy, c-format msgid "WARNING: unsafe enclosing directory ownership on homedir '%s'\n" msgstr "Averto: malsekura posedeco sur %s \"%s\"\n" -#: g10/gpg.c:1679 +#: g10/gpg.c:1688 #, fuzzy, c-format msgid "" "WARNING: unsafe enclosing directory ownership on configuration file '%s'\n" msgstr "Averto: malsekura posedeco sur %s \"%s\"\n" -#: g10/gpg.c:1682 +#: g10/gpg.c:1691 #, fuzzy, c-format msgid "WARNING: unsafe enclosing directory ownership on extension '%s'\n" msgstr "Averto: malsekura posedeco sur %s \"%s\"\n" -#: g10/gpg.c:1688 +#: g10/gpg.c:1697 #, fuzzy, c-format msgid "WARNING: unsafe enclosing directory permissions on homedir '%s'\n" msgstr "Averto: malsekuraj permesoj sur %s \"%s\"\n" -#: g10/gpg.c:1691 +#: g10/gpg.c:1700 #, fuzzy, c-format msgid "" "WARNING: unsafe enclosing directory permissions on configuration file '%s'\n" msgstr "Averto: malsekuraj permesoj sur %s \"%s\"\n" -#: g10/gpg.c:1694 +#: g10/gpg.c:1703 #, fuzzy, c-format msgid "WARNING: unsafe enclosing directory permissions on extension '%s'\n" msgstr "Averto: malsekuraj permesoj sur %s \"%s\"\n" -#: g10/gpg.c:1910 +#: g10/gpg.c:1919 #, fuzzy, c-format msgid "unknown configuration item '%s'\n" msgstr "%s: nova opcio-dosiero kreita\n" -#: g10/gpg.c:2009 +#: g10/gpg.c:2018 msgid "display photo IDs during key listings" msgstr "" -#: g10/gpg.c:2011 +#: g10/gpg.c:2020 #, fuzzy msgid "show key usage information during key listings" msgstr "Mankas responda subskribo en sekreta ŝlosilaro\n" -#: g10/gpg.c:2013 +#: g10/gpg.c:2022 msgid "show policy URLs during signature listings" msgstr "" -#: g10/gpg.c:2015 +#: g10/gpg.c:2024 #, fuzzy msgid "show all notations during signature listings" msgstr "Mankas responda subskribo en sekreta ŝlosilaro\n" -#: g10/gpg.c:2017 +#: g10/gpg.c:2026 msgid "show IETF standard notations during signature listings" msgstr "" -#: g10/gpg.c:2021 +#: g10/gpg.c:2030 msgid "show user-supplied notations during signature listings" msgstr "" -#: g10/gpg.c:2023 +#: g10/gpg.c:2032 #, fuzzy msgid "show preferred keyserver URLs during signature listings" msgstr "la donita gvidlinia URL por subskriboj ne validas\n" -#: g10/gpg.c:2025 +#: g10/gpg.c:2034 msgid "show user ID validity during key listings" msgstr "" -#: g10/gpg.c:2027 +#: g10/gpg.c:2036 msgid "show revoked and expired user IDs in key listings" msgstr "" -#: g10/gpg.c:2029 +#: g10/gpg.c:2038 msgid "show revoked and expired subkeys in key listings" msgstr "" -#: g10/gpg.c:2031 +#: g10/gpg.c:2040 #, fuzzy msgid "show the keyring name in key listings" msgstr "montri, en kiu ŝlosilaro estas listigita ŝlosilo" -#: g10/gpg.c:2033 +#: g10/gpg.c:2042 #, fuzzy msgid "show expiration dates during signature listings" msgstr "Mankas responda subskribo en sekreta ŝlosilaro\n" -#: g10/gpg.c:2148 +#: g10/gpg.c:2157 #, fuzzy, c-format msgid "unknown TOFU policy '%s'\n" msgstr "nekonata implicita ricevonto '%s'\n" -#: g10/gpg.c:2150 +#: g10/gpg.c:2159 #, c-format msgid "(use \"help\" to list choices)\n" msgstr "" -#: g10/gpg.c:2240 g10/keyedit.c:1719 +#: g10/gpg.c:2249 g10/keyedit.c:1719 #, c-format msgid "This command is not allowed while in %s mode.\n" msgstr "Tiu komando ne eblas en la reĝimo %s.\n" -#: g10/gpg.c:2878 g10/gpg.c:3718 g10/gpg.c:3730 +#: g10/gpg.c:2896 g10/gpg.c:3736 g10/gpg.c:3748 #, fuzzy, c-format #| msgid "NOTE: %s is not for normal use!\n" msgid "Note: %s is not for normal use!\n" msgstr "NOTO: %s ne estas por normala uzado!\n" -#: g10/gpg.c:3053 g10/gpg.c:3065 +#: g10/gpg.c:3071 g10/gpg.c:3083 #, fuzzy, c-format msgid "'%s' is not a valid signature expiration\n" msgstr "%s ne estas valida signaro\n" -#: g10/gpg.c:3087 +#: g10/gpg.c:3105 #, fuzzy, c-format msgid "\"%s\" is not a proper mail address\n" msgstr "Nevalida retadreso\n" -#: g10/gpg.c:3119 sm/gpgsm.c:1121 +#: g10/gpg.c:3137 sm/gpgsm.c:1121 #, fuzzy, c-format msgid "invalid pinentry mode '%s'\n" msgstr "nevalida kompendi-metodo '%s'\n" -#: g10/gpg.c:3125 sm/gpgsm.c:1127 +#: g10/gpg.c:3143 sm/gpgsm.c:1127 #, fuzzy, c-format msgid "invalid request origin '%s'\n" msgstr "nevalida kiraso" -#: g10/gpg.c:3179 +#: g10/gpg.c:3197 #, fuzzy, c-format msgid "'%s' is not a valid character set\n" msgstr "%s ne estas valida signaro\n" -#: g10/gpg.c:3201 g10/gpg.c:3415 g10/keyedit.c:5338 +#: g10/gpg.c:3219 g10/gpg.c:3433 g10/keyedit.c:5338 #, fuzzy, c-format msgid "could not parse keyserver URL\n" msgstr "ne povis analizi URI de ŝlosilservilo\n" -#: g10/gpg.c:3219 +#: g10/gpg.c:3237 #, fuzzy, c-format msgid "%s:%d: invalid keyserver options\n" msgstr "AVERTO: '%s' estas malplena dosiero\n" -#: g10/gpg.c:3222 +#: g10/gpg.c:3240 #, fuzzy, c-format msgid "invalid keyserver options\n" msgstr "nevalida ŝlosilaro" -#: g10/gpg.c:3229 +#: g10/gpg.c:3247 #, fuzzy, c-format msgid "%s:%d: invalid import options\n" msgstr "AVERTO: '%s' estas malplena dosiero\n" -#: g10/gpg.c:3232 +#: g10/gpg.c:3250 #, fuzzy, c-format msgid "invalid import options\n" msgstr "nevalida kiraso" -#: g10/gpg.c:3238 g10/gpg.c:3253 +#: g10/gpg.c:3256 g10/gpg.c:3271 #, fuzzy, c-format msgid "invalid filter option: %s\n" msgstr "nevalida kiraso" -#: g10/gpg.c:3244 +#: g10/gpg.c:3262 #, fuzzy, c-format msgid "%s:%d: invalid export options\n" msgstr "AVERTO: '%s' estas malplena dosiero\n" -#: g10/gpg.c:3247 +#: g10/gpg.c:3265 #, fuzzy, c-format msgid "invalid export options\n" msgstr "nevalida ŝlosilaro" -#: g10/gpg.c:3259 +#: g10/gpg.c:3277 #, fuzzy, c-format msgid "%s:%d: invalid list options\n" msgstr "AVERTO: '%s' estas malplena dosiero\n" -#: g10/gpg.c:3262 +#: g10/gpg.c:3280 #, fuzzy, c-format msgid "invalid list options\n" msgstr "nevalida kiraso" -#: g10/gpg.c:3270 +#: g10/gpg.c:3288 msgid "display photo IDs during signature verification" msgstr "" -#: g10/gpg.c:3272 +#: g10/gpg.c:3290 msgid "show policy URLs during signature verification" msgstr "" -#: g10/gpg.c:3274 +#: g10/gpg.c:3292 #, fuzzy msgid "show all notations during signature verification" msgstr "%s ne estas valida signaro\n" -#: g10/gpg.c:3276 +#: g10/gpg.c:3294 msgid "show IETF standard notations during signature verification" msgstr "" -#: g10/gpg.c:3280 +#: g10/gpg.c:3298 msgid "show user-supplied notations during signature verification" msgstr "" -#: g10/gpg.c:3282 +#: g10/gpg.c:3300 #, fuzzy msgid "show preferred keyserver URLs during signature verification" msgstr "la donita gvidlinia URL por subskriboj ne validas\n" -#: g10/gpg.c:3284 +#: g10/gpg.c:3302 #, fuzzy msgid "show user ID validity during signature verification" msgstr "%s ne estas valida signaro\n" -#: g10/gpg.c:3286 +#: g10/gpg.c:3304 msgid "show revoked and expired user IDs in signature verification" msgstr "" -#: g10/gpg.c:3288 +#: g10/gpg.c:3306 #, fuzzy msgid "show only the primary user ID in signature verification" msgstr "%s ne estas valida signaro\n" -#: g10/gpg.c:3290 +#: g10/gpg.c:3308 msgid "validate signatures with PKA data" msgstr "" -#: g10/gpg.c:3292 +#: g10/gpg.c:3310 msgid "elevate the trust of signatures with valid PKA data" msgstr "" -#: g10/gpg.c:3299 +#: g10/gpg.c:3317 #, fuzzy, c-format msgid "%s:%d: invalid verify options\n" msgstr "AVERTO: '%s' estas malplena dosiero\n" -#: g10/gpg.c:3302 +#: g10/gpg.c:3320 #, fuzzy, c-format msgid "invalid verify options\n" msgstr "nevalida ŝlosilaro" -#: g10/gpg.c:3309 +#: g10/gpg.c:3327 #, c-format msgid "unable to set exec-path to %s\n" msgstr "" -#: g10/gpg.c:3513 +#: g10/gpg.c:3531 #, fuzzy, c-format msgid "%s:%d: invalid auto-key-locate list\n" msgstr "AVERTO: '%s' estas malplena dosiero\n" -#: g10/gpg.c:3516 +#: g10/gpg.c:3534 #, c-format msgid "invalid auto-key-locate list\n" msgstr "" -#: g10/gpg.c:3700 sm/gpgsm.c:1492 +#: g10/gpg.c:3718 sm/gpgsm.c:1492 #, c-format msgid "WARNING: program may create a core file!\n" msgstr "AVERTO: programo povas krei core-dosieron!\n" -#: g10/gpg.c:3711 +#: g10/gpg.c:3729 #, c-format msgid "WARNING: %s overrides %s\n" msgstr "AVERTO: %s nuligas %s\n" -#: g10/gpg.c:3720 +#: g10/gpg.c:3738 #, c-format msgid "%s not allowed with %s!\n" msgstr "%s ne eblas kun %s!\n" -#: g10/gpg.c:3723 +#: g10/gpg.c:3741 #, c-format msgid "%s makes no sense with %s!\n" msgstr "%s ne havas sencon kun %s!\n" -#: g10/gpg.c:3738 sm/gpgsm.c:1509 dirmngr/dirmngr.c:1205 +#: g10/gpg.c:3756 sm/gpgsm.c:1509 dirmngr/dirmngr.c:1205 #, c-format msgid "WARNING: running with faked system time: " msgstr "" -#: g10/gpg.c:3759 +#: g10/gpg.c:3777 #, fuzzy, c-format msgid "will not run with insecure memory due to %s\n" msgstr "skribas sekretan ŝlosilon al '%s'\n" -#: g10/gpg.c:3804 g10/gpg.c:3828 sm/gpgsm.c:1579 +#: g10/gpg.c:3824 g10/gpg.c:3848 sm/gpgsm.c:1579 #, c-format msgid "selected cipher algorithm is invalid\n" msgstr "elektita ĉifrad-metodo ne validas\n" -#: g10/gpg.c:3816 +#: g10/gpg.c:3836 #, fuzzy, c-format msgid "selected compression algorithm is invalid\n" msgstr "elektita ĉifrad-metodo ne validas\n" -#: g10/gpg.c:3822 +#: g10/gpg.c:3842 #, fuzzy, c-format msgid "selected certification digest algorithm is invalid\n" msgstr "elektita kompendi-metodo ne validas\n" -#: g10/gpg.c:3837 +#: g10/gpg.c:3857 #, c-format msgid "completes-needed must be greater than 0\n" msgstr "completes-needed devas esti pli granda ol 0\n" -#: g10/gpg.c:3839 +#: g10/gpg.c:3859 #, c-format msgid "marginals-needed must be greater than 1\n" msgstr "marginals-needed devas esti pli granda ol 1\n" -#: g10/gpg.c:3841 +#: g10/gpg.c:3861 #, fuzzy, c-format msgid "max-cert-depth must be in the range from 1 to 255\n" msgstr "max-cert-depth devas esti inter 1 kaj 255\n" -#: g10/gpg.c:3843 +#: g10/gpg.c:3863 #, fuzzy, c-format msgid "invalid default-cert-level; must be 0, 1, 2, or 3\n" msgstr "nevalida default-check-level; devas esti 0, 1, 2 aŭ 3\n" -#: g10/gpg.c:3845 +#: g10/gpg.c:3865 #, fuzzy, c-format msgid "invalid min-cert-level; must be 1, 2, or 3\n" msgstr "nevalida default-check-level; devas esti 0, 1, 2 aŭ 3\n" -#: g10/gpg.c:3849 +#: g10/gpg.c:3869 #, fuzzy, c-format #| msgid "NOTE: simple S2K mode (0) is strongly discouraged\n" msgid "Note: simple S2K mode (0) is strongly discouraged\n" msgstr "NOTO: simpla S2K-reĝimo (0) estas forte malrekomendata\n" -#: g10/gpg.c:3853 +#: g10/gpg.c:3873 #, c-format msgid "invalid S2K mode; must be 0, 1 or 3\n" msgstr "nevalida S2K-reĝimo; devas esti 0, 1 aŭ 3\n" -#: g10/gpg.c:3860 +#: g10/gpg.c:3880 #, fuzzy, c-format msgid "invalid default preferences\n" msgstr "nevalidaj preferoj\n" -#: g10/gpg.c:3864 +#: g10/gpg.c:3884 #, fuzzy, c-format msgid "invalid personal cipher preferences\n" msgstr "nevalidaj preferoj\n" -#: g10/gpg.c:3868 +#: g10/gpg.c:3888 #, fuzzy, c-format msgid "invalid personal digest preferences\n" msgstr "nevalidaj preferoj\n" -#: g10/gpg.c:3872 +#: g10/gpg.c:3892 #, fuzzy, c-format msgid "invalid personal compress preferences\n" msgstr "nevalidaj preferoj\n" -#: g10/gpg.c:3908 +#: g10/gpg.c:3928 #, fuzzy, c-format msgid "%s does not yet work with %s\n" msgstr "%s ne havas sencon kun %s!\n" -#: g10/gpg.c:3971 +#: g10/gpg.c:3991 #, fuzzy, c-format msgid "compression algorithm '%s' may not be used in %s mode\n" msgstr "Tiu komando ne eblas en la reĝimo %s.\n" -#: g10/gpg.c:4115 +#: g10/gpg.c:4135 #, c-format msgid "failed to initialize the TrustDB: %s\n" msgstr "malsukcesis doni komencajn valorojn al fido-datenaro: %s\n" -#: g10/gpg.c:4127 +#: g10/gpg.c:4147 #, c-format msgid "WARNING: recipients (-r) given without using public key encryption\n" msgstr "" -#: g10/gpg.c:4199 +#: g10/gpg.c:4219 #, fuzzy, c-format msgid "symmetric encryption of '%s' failed: %s\n" msgstr "malĉifrado malsukcesis: %s\n" -#: g10/gpg.c:4228 +#: g10/gpg.c:4248 #, c-format msgid "you cannot use --symmetric --encrypt with --s2k-mode 0\n" msgstr "" -#: g10/gpg.c:4231 +#: g10/gpg.c:4251 #, fuzzy, c-format msgid "you cannot use --symmetric --encrypt in %s mode\n" msgstr "Tiu komando ne eblas en la reĝimo %s.\n" -#: g10/gpg.c:4289 +#: g10/gpg.c:4309 #, c-format msgid "you cannot use --symmetric --sign --encrypt with --s2k-mode 0\n" msgstr "" -#: g10/gpg.c:4292 +#: g10/gpg.c:4312 #, fuzzy, c-format msgid "you cannot use --symmetric --sign --encrypt in %s mode\n" msgstr "Tiu komando ne eblas en la reĝimo %s.\n" -#: g10/gpg.c:4692 g10/keyserver.c:1648 +#: g10/gpg.c:4712 g10/keyserver.c:1648 #, fuzzy, c-format msgid "keyserver send failed: %s\n" msgstr "Kreado de ŝlosiloj malsukcesis: %s\n" -#: g10/gpg.c:4697 +#: g10/gpg.c:4717 #, fuzzy, c-format msgid "keyserver receive failed: %s\n" msgstr "listigo de sekretaj ŝlosiloj malsukcesis: %s\n" -#: g10/gpg.c:4703 +#: g10/gpg.c:4723 #, fuzzy, c-format msgid "key export failed: %s\n" msgstr "Kreado de ŝlosiloj malsukcesis: %s\n" -#: g10/gpg.c:4716 +#: g10/gpg.c:4736 #, fuzzy, c-format msgid "export as ssh key failed: %s\n" msgstr "Kreado de ŝlosiloj malsukcesis: %s\n" -#: g10/gpg.c:4728 +#: g10/gpg.c:4748 #, fuzzy, c-format msgid "keyserver search failed: %s\n" msgstr "get_dir_record: search_record malsukcesis: %s\n" -#: g10/gpg.c:4741 +#: g10/gpg.c:4761 #, fuzzy, c-format msgid "keyserver refresh failed: %s\n" msgstr "listigo de sekretaj ŝlosiloj malsukcesis: %s\n" -#: g10/gpg.c:4810 +#: g10/gpg.c:4830 #, c-format msgid "dearmoring failed: %s\n" msgstr "elkirasigo malsukcesis: %s\n" -#: g10/gpg.c:4821 +#: g10/gpg.c:4841 #, c-format msgid "enarmoring failed: %s\n" msgstr "enkirasigo malsukcesis: %s\n" -#: g10/gpg.c:4913 +#: g10/gpg.c:4933 #, fuzzy, c-format #| msgid "invalid hash algorithm `%s'\n" msgid "invalid hash algorithm '%s'\n" msgstr "nevalida kompendi-metodo '%s'\n" -#: g10/gpg.c:5065 g10/tofu.c:2153 +#: g10/gpg.c:5085 g10/tofu.c:2153 #, fuzzy, c-format msgid "error parsing key specification '%s': %s\n" msgstr "eraro dum kreado de pasfrazo: %s\n" -#: g10/gpg.c:5078 +#: g10/gpg.c:5098 #, c-format msgid "'%s' does not appear to be a valid key ID, fingerprint or keygrip\n" msgstr "" -#: g10/gpg.c:5134 +#: g10/gpg.c:5154 #, c-format msgid "WARNING: no command supplied. Trying to guess what you mean ...\n" msgstr "" -#: g10/gpg.c:5145 +#: g10/gpg.c:5165 #, c-format msgid "Go ahead and type your message ...\n" msgstr "Ektajpu vian mesaĝon ...\n" -#: g10/gpg.c:5490 +#: g10/gpg.c:5510 #, c-format msgid "the given certification policy URL is invalid\n" msgstr "la donita gvidlinia URL por atestado ne validas\n" -#: g10/gpg.c:5492 +#: g10/gpg.c:5512 #, c-format msgid "the given signature policy URL is invalid\n" msgstr "la donita gvidlinia URL por subskriboj ne validas\n" -#: g10/gpg.c:5525 +#: g10/gpg.c:5545 #, fuzzy, c-format msgid "the given preferred keyserver URL is invalid\n" msgstr "la donita gvidlinia URL por subskriboj ne validas\n" @@ -3646,319 +3652,319 @@ msgid "No help available for '%s'" msgstr "Nenia helpo disponata por '%s'" -#: g10/import.c:169 +#: g10/import.c:170 msgid "import signatures that are marked as local-only" msgstr "" -#: g10/import.c:172 +#: g10/import.c:173 msgid "repair damage from the pks keyserver during import" msgstr "" -#: g10/import.c:175 +#: g10/import.c:176 #, fuzzy msgid "do not clear the ownertrust values during import" msgstr "aktualigi la fido-datenaron" -#: g10/import.c:178 +#: g10/import.c:179 #, fuzzy msgid "do not update the trustdb after import" msgstr "aktualigi la fido-datenaron" -#: g10/import.c:181 +#: g10/import.c:182 #, fuzzy msgid "show key during import" msgstr "montri fingrospuron" -#: g10/import.c:184 +#: g10/import.c:185 msgid "only accept updates to existing keys" msgstr "" -#: g10/import.c:187 +#: g10/import.c:188 #, fuzzy msgid "remove unusable parts from key after import" msgstr "neuzebla sekreta ŝlosilo" -#: g10/import.c:190 +#: g10/import.c:191 msgid "remove as much as possible from key after import" msgstr "" -#: g10/import.c:193 +#: g10/import.c:194 msgid "ignore key-signatures which are not self-signatures" msgstr "" -#: g10/import.c:196 +#: g10/import.c:197 msgid "run import filters and export key immediately" msgstr "" -#: g10/import.c:199 +#: g10/import.c:200 msgid "assume the GnuPG key backup format" msgstr "" -#: g10/import.c:203 +#: g10/import.c:204 #, fuzzy msgid "repair keys on import" msgstr "montri fingrospuron" -#: g10/import.c:392 g10/import.c:711 +#: g10/import.c:393 g10/import.c:712 #, c-format msgid "skipping block of type %d\n" msgstr "ignoras blokon de speco %d\n" -#: g10/import.c:728 +#: g10/import.c:729 #, fuzzy, c-format msgid "%lu keys processed so far\n" msgstr "%lu ŝlosiloj jam traktitaj\n" -#: g10/import.c:814 +#: g10/import.c:815 #, c-format msgid "Total number processed: %lu\n" msgstr " Nombro traktita entute: %lu\n" -#: g10/import.c:817 +#: g10/import.c:818 #, fuzzy, c-format #| msgid " skipped new keys: %lu\n" msgid " skipped PGP-2 keys: %lu\n" msgstr " ignoritaj novaj ŝlosiloj: %lu\n" -#: g10/import.c:819 +#: g10/import.c:820 #, c-format msgid " skipped new keys: %lu\n" msgstr " ignoritaj novaj ŝlosiloj: %lu\n" -#: g10/import.c:822 +#: g10/import.c:823 #, c-format msgid " w/o user IDs: %lu\n" msgstr " sen uzantidentigilo: %lu\n" -#: g10/import.c:825 sm/import.c:130 +#: g10/import.c:826 sm/import.c:130 #, c-format msgid " imported: %lu" msgstr " importitaj: %lu" -#: g10/import.c:829 sm/import.c:134 +#: g10/import.c:830 sm/import.c:134 #, c-format msgid " unchanged: %lu\n" msgstr " neŝanĝitaj: %lu\n" -#: g10/import.c:831 +#: g10/import.c:832 #, c-format msgid " new user IDs: %lu\n" msgstr " novaj uzantidentigiloj: %lu\n" -#: g10/import.c:833 +#: g10/import.c:834 #, c-format msgid " new subkeys: %lu\n" msgstr " novaj subŝlosiloj: %lu\n" -#: g10/import.c:835 +#: g10/import.c:836 #, c-format msgid " new signatures: %lu\n" msgstr " novaj subskriboj: %lu\n" -#: g10/import.c:837 +#: g10/import.c:838 #, c-format msgid " new key revocations: %lu\n" msgstr " novaj ŝlosilrevokoj: %lu\n" -#: g10/import.c:839 sm/import.c:136 +#: g10/import.c:840 sm/import.c:136 #, c-format msgid " secret keys read: %lu\n" msgstr " sekretaj ŝlosiloj legitaj: %lu\n" -#: g10/import.c:841 sm/import.c:138 +#: g10/import.c:842 sm/import.c:138 #, c-format msgid " secret keys imported: %lu\n" msgstr "sekretaj ŝlosiloj importitaj: %lu\n" -#: g10/import.c:843 sm/import.c:140 +#: g10/import.c:844 sm/import.c:140 #, c-format msgid " secret keys unchanged: %lu\n" msgstr "sekretaj ŝlosiloj neŝanĝitaj: %lu\n" -#: g10/import.c:845 sm/import.c:142 +#: g10/import.c:846 sm/import.c:142 #, fuzzy, c-format msgid " not imported: %lu\n" msgstr " importitaj: %lu" -#: g10/import.c:847 +#: g10/import.c:848 #, fuzzy, c-format msgid " signatures cleaned: %lu\n" msgstr " novaj subskriboj: %lu\n" -#: g10/import.c:849 +#: g10/import.c:850 #, fuzzy, c-format msgid " user IDs cleaned: %lu\n" msgstr " sekretaj ŝlosiloj legitaj: %lu\n" -#: g10/import.c:1276 +#: g10/import.c:1277 #, c-format msgid "" "WARNING: key %s contains preferences for unavailable\n" "algorithms on these user IDs:\n" msgstr "" -#: g10/import.c:1318 +#: g10/import.c:1319 #, c-format msgid " \"%s\": preference for cipher algorithm %s\n" msgstr "" -#: g10/import.c:1333 +#: g10/import.c:1334 #, fuzzy, c-format msgid " \"%s\": preference for digest algorithm %s\n" msgstr "%s-subskribo de: %s\n" -#: g10/import.c:1345 +#: g10/import.c:1346 #, c-format msgid " \"%s\": preference for compression algorithm %s\n" msgstr "" -#: g10/import.c:1358 +#: g10/import.c:1359 #, c-format msgid "it is strongly suggested that you update your preferences and\n" msgstr "" -#: g10/import.c:1360 +#: g10/import.c:1361 #, c-format msgid "re-distribute this key to avoid potential algorithm mismatch problems\n" msgstr "" -#: g10/import.c:1385 +#: g10/import.c:1386 #, c-format msgid "you can update your preferences with: gpg --edit-key %s updpref save\n" msgstr "" -#: g10/import.c:1899 g10/import.c:3013 +#: g10/import.c:1902 g10/import.c:3028 #, fuzzy, c-format msgid "key %s: no user ID\n" msgstr "ŝlosilo %08lX: mankas uzantidentigilo\n" -#: g10/import.c:1905 +#: g10/import.c:1908 #, fuzzy, c-format msgid "key %s: %s\n" msgstr "ignoris '%s': %s\n" -#: g10/import.c:1906 g10/import.c:2985 +#: g10/import.c:1909 g10/import.c:3000 msgid "rejected by import screener" msgstr "" -#: g10/import.c:1950 +#: g10/import.c:1953 #, fuzzy, c-format msgid "key %s: PKS subkey corruption repaired\n" msgstr "ŝlosilo %08lX: mankas subŝlosilo por ŝlosilbindado\n" -#: g10/import.c:1971 +#: g10/import.c:1974 #, fuzzy, c-format msgid "key %s: accepted non self-signed user ID \"%s\"\n" msgstr "ŝlosilo %08lX: akceptis ne-mem-subskribitan uzantidentigilon '" -#: g10/import.c:1981 g10/import.c:2012 +#: g10/import.c:1985 g10/import.c:2016 #, fuzzy, c-format msgid "key %s: no valid user IDs\n" msgstr "ŝlosilo %08lX: mankas valida uzantidentigilo\n" -#: g10/import.c:1983 +#: g10/import.c:1987 #, c-format msgid "this may be caused by a missing self-signature\n" msgstr "tio povas esti kaŭzata de mankanta mem-subskribo\n" -#: g10/import.c:2062 g10/import.c:3399 +#: g10/import.c:2066 g10/import.c:3415 #, fuzzy, c-format msgid "key %s: public key not found: %s\n" msgstr "ŝlosilo %08lX: publika ŝlosilo ne trovita: %s\n" -#: g10/import.c:2068 +#: g10/import.c:2072 #, fuzzy, c-format msgid "key %s: new key - skipped\n" msgstr "ŝlosilo %08lX: nova ŝlosilo - ignorita\n" -#: g10/import.c:2080 +#: g10/import.c:2084 #, c-format msgid "no writable keyring found: %s\n" msgstr "neniu skribebla ŝlosilaro trovita: %s\n" -#: g10/import.c:2112 g10/import.c:2214 g10/import.c:3476 +#: g10/import.c:2116 g10/import.c:2218 g10/import.c:3492 #, fuzzy, c-format #| msgid "error writing keyring `%s': %s\n" msgid "error writing keyring '%s': %s\n" msgstr "eraro dum skribado de ŝlosilaro '%s': %s\n" -#: g10/import.c:2135 +#: g10/import.c:2139 #, fuzzy, c-format msgid "key %s: public key \"%s\" imported\n" msgstr "ŝlosilo %08lX: publika ŝlosilo importita\n" -#: g10/import.c:2162 +#: g10/import.c:2166 #, fuzzy, c-format msgid "key %s: doesn't match our copy\n" msgstr "ŝlosilo %08lX: diferencas de nia kopio\n" -#: g10/import.c:2230 +#: g10/import.c:2234 #, fuzzy, c-format msgid "key %s: \"%s\" 1 new user ID\n" msgstr "ŝlosilo %08lX: 1 nova uzantidentigilo\n" -#: g10/import.c:2233 +#: g10/import.c:2237 #, fuzzy, c-format msgid "key %s: \"%s\" %d new user IDs\n" msgstr "ŝlosilo %08lX: %d novaj uzantidentigiloj\n" -#: g10/import.c:2236 +#: g10/import.c:2240 #, fuzzy, c-format msgid "key %s: \"%s\" 1 new signature\n" msgstr "ŝlosilo %08lX: 1 nova subskribo\n" -#: g10/import.c:2239 +#: g10/import.c:2243 #, fuzzy, c-format msgid "key %s: \"%s\" %d new signatures\n" msgstr "ŝlosilo %08lX: %d novaj subskriboj\n" -#: g10/import.c:2242 +#: g10/import.c:2246 #, fuzzy, c-format msgid "key %s: \"%s\" 1 new subkey\n" msgstr "ŝlosilo %08lX: 1 nova subŝlosilo\n" -#: g10/import.c:2245 +#: g10/import.c:2249 #, fuzzy, c-format msgid "key %s: \"%s\" %d new subkeys\n" msgstr "ŝlosilo %08lX: %d novaj subŝlosiloj\n" -#: g10/import.c:2248 +#: g10/import.c:2252 #, fuzzy, c-format msgid "key %s: \"%s\" %d signature cleaned\n" msgstr "ŝlosilo %08lX: %d novaj subskriboj\n" -#: g10/import.c:2251 +#: g10/import.c:2255 #, fuzzy, c-format msgid "key %s: \"%s\" %d signatures cleaned\n" msgstr "ŝlosilo %08lX: %d novaj subskriboj\n" -#: g10/import.c:2254 +#: g10/import.c:2258 #, fuzzy, c-format msgid "key %s: \"%s\" %d user ID cleaned\n" msgstr "ŝlosilo %08lX: %d novaj uzantidentigiloj\n" -#: g10/import.c:2257 +#: g10/import.c:2261 #, fuzzy, c-format msgid "key %s: \"%s\" %d user IDs cleaned\n" msgstr "ŝlosilo %08lX: %d novaj uzantidentigiloj\n" -#: g10/import.c:2293 +#: g10/import.c:2297 #, fuzzy, c-format msgid "key %s: \"%s\" not changed\n" msgstr "ŝlosilo %08lX: ne ŝanĝita\n" -#: g10/import.c:2652 g10/import.c:2847 +#: g10/import.c:2667 g10/import.c:2862 #, fuzzy, c-format msgid "key %s: secret key imported\n" msgstr "ŝlosilo %08lX: sekreta ŝlosilo importita\n" -#: g10/import.c:2660 +#: g10/import.c:2675 #, fuzzy, c-format #| msgid "skipped: secret key already present\n" msgid "key %s: secret key already exists\n" msgstr "ignorita: sekreta ŝlosilo jam ĉeestas\n" -#: g10/import.c:2668 +#: g10/import.c:2683 #, fuzzy, c-format msgid "key %s: error sending to agent: %s\n" msgstr "eraro dum sendo al '%s': %s\n" @@ -3971,193 +3977,193 @@ #. * Instead, user should be suggested to run 'gpg --card-status', #. * then, references to a card will be automatically created #. * again. -#: g10/import.c:2837 +#: g10/import.c:2852 #, c-format msgid "To migrate '%s', with each smartcard, run: %s\n" msgstr "" -#: g10/import.c:2984 +#: g10/import.c:2999 #, fuzzy, c-format msgid "secret key %s: %s\n" msgstr "ŝlosilo '%s' ne trovita: %s\n" -#: g10/import.c:3005 g10/import.c:3044 +#: g10/import.c:3020 g10/import.c:3059 #, fuzzy, c-format msgid "importing secret keys not allowed\n" msgstr "skribas sekretan ŝlosilon al '%s'\n" -#: g10/import.c:3032 +#: g10/import.c:3047 #, fuzzy, c-format msgid "key %s: secret key with invalid cipher %d - skipped\n" msgstr "ŝlosilo %08lX: sekreta ŝlosilo sen publika ŝlosilo - ignorita\n" -#: g10/import.c:3194 g10/pkclist.c:72 g10/revoke.c:776 +#: g10/import.c:3209 g10/pkclist.c:72 g10/revoke.c:776 msgid "No reason specified" msgstr "Nenia kialo specifita" -#: g10/import.c:3195 g10/pkclist.c:74 g10/revoke.c:778 +#: g10/import.c:3210 g10/pkclist.c:74 g10/revoke.c:778 msgid "Key is superseded" msgstr "Ŝlosilo estas anstataŭigita." -#: g10/import.c:3196 g10/pkclist.c:76 g10/revoke.c:777 +#: g10/import.c:3211 g10/pkclist.c:76 g10/revoke.c:777 msgid "Key has been compromised" msgstr "Ŝlosilo estas kompromitita" -#: g10/import.c:3197 g10/pkclist.c:78 g10/revoke.c:779 +#: g10/import.c:3212 g10/pkclist.c:78 g10/revoke.c:779 msgid "Key is no longer used" msgstr "Ŝlosilo estas ne plu uzata" -#: g10/import.c:3198 g10/pkclist.c:80 g10/revoke.c:780 +#: g10/import.c:3213 g10/pkclist.c:80 g10/revoke.c:780 msgid "User ID is no longer valid" msgstr "Uzantidentigilo ne plu validas" -#: g10/import.c:3323 g10/keylist.c:1258 g10/pkclist.c:84 +#: g10/import.c:3338 g10/keylist.c:1258 g10/pkclist.c:84 #, fuzzy, c-format msgid "reason for revocation: " msgstr "Kialo por revoko: " -#: g10/import.c:3342 g10/keylist.c:1277 g10/pkclist.c:100 +#: g10/import.c:3357 g10/keylist.c:1277 g10/pkclist.c:100 #, fuzzy, c-format msgid "revocation comment: " msgstr "Komento pri revoko: " -#: g10/import.c:3392 +#: g10/import.c:3408 #, fuzzy, c-format msgid "key %s: no public key - can't apply revocation certificate\n" msgstr "" "ŝlosilo %08lX: publika ŝlosilo mankas - ne povas apliki revokatestilon\n" -#: g10/import.c:3423 +#: g10/import.c:3439 #, fuzzy, c-format msgid "key %s: can't locate original keyblock: %s\n" msgstr "ŝlosilo %08lX: ne povas trovi originalan ŝlosilblokon: %s\n" -#: g10/import.c:3430 +#: g10/import.c:3446 #, fuzzy, c-format msgid "key %s: can't read original keyblock: %s\n" msgstr "ŝlosilo %08lX: ne povas legi originalan ŝlosilblokon: %s\n" -#: g10/import.c:3450 +#: g10/import.c:3466 #, fuzzy, c-format msgid "key %s: invalid revocation certificate: %s - rejected\n" msgstr "ŝlosilo %08lX: nevalida revokatestilo: %s - malakceptita\n" -#: g10/import.c:3485 +#: g10/import.c:3501 #, fuzzy, c-format msgid "key %s: \"%s\" revocation certificate imported\n" msgstr "ŝlosilo %08lX: revokatestilo importita\n" -#: g10/import.c:3571 +#: g10/import.c:3587 #, fuzzy, c-format msgid "key %s: no user ID for signature\n" msgstr "ŝlosilo %08lX: mankas uzantidentigilo por subskribo\n" -#: g10/import.c:3588 +#: g10/import.c:3604 #, fuzzy, c-format msgid "key %s: unsupported public key algorithm on user ID \"%s\"\n" msgstr "ŝlosilo %08lX: nerealigita publikŝlosila metodo\n" -#: g10/import.c:3590 +#: g10/import.c:3606 #, fuzzy, c-format msgid "key %s: invalid self-signature on user ID \"%s\"\n" msgstr "ŝlosilo %08lX: nevalida mem-subskribo\n" -#: g10/import.c:3607 g10/import.c:3635 g10/import.c:3691 +#: g10/import.c:3623 g10/import.c:3651 g10/import.c:3707 #, fuzzy, c-format msgid "key %s: unsupported public key algorithm\n" msgstr "ŝlosilo %08lX: nerealigita publikŝlosila metodo\n" -#: g10/import.c:3608 +#: g10/import.c:3624 #, fuzzy, c-format msgid "key %s: invalid direct key signature\n" msgstr "ŝlosilo %08lX: rekta ŝlosilsubskribo aldonita\n" -#: g10/import.c:3622 +#: g10/import.c:3638 #, fuzzy, c-format msgid "key %s: no subkey for key binding\n" msgstr "ŝlosilo %08lX: mankas subŝlosilo por ŝlosilbindado\n" -#: g10/import.c:3637 +#: g10/import.c:3653 #, fuzzy, c-format msgid "key %s: invalid subkey binding\n" msgstr "ŝlosilo %08lX: nevalida subŝlosila bindado\n" -#: g10/import.c:3656 +#: g10/import.c:3672 #, fuzzy, c-format msgid "key %s: removed multiple subkey binding\n" msgstr "ŝlosilo %08lX: nevalida subŝlosila bindado\n" -#: g10/import.c:3680 +#: g10/import.c:3696 #, fuzzy, c-format msgid "key %s: no subkey for key revocation\n" msgstr "ŝlosilo %08lX: mankas subŝlosilo por ŝlosilbindado\n" -#: g10/import.c:3693 +#: g10/import.c:3709 #, fuzzy, c-format msgid "key %s: invalid subkey revocation\n" msgstr "ŝlosilo %08lX.%lu: Valida subŝlosilrevoko\n" -#: g10/import.c:3708 +#: g10/import.c:3724 #, fuzzy, c-format msgid "key %s: removed multiple subkey revocation\n" msgstr "ŝlosilo %08lX: nevalida subŝlosila bindado\n" -#: g10/import.c:3752 +#: g10/import.c:3771 #, fuzzy, c-format msgid "key %s: skipped user ID \"%s\"\n" msgstr "ŝlosilo %08lX: ignoris uzantidentigilon '" -#: g10/import.c:3779 +#: g10/import.c:3798 #, fuzzy, c-format msgid "key %s: skipped subkey\n" msgstr "ŝlosilo %08lX: ignoris subŝlosilon\n" -#: g10/import.c:3810 +#: g10/import.c:3829 #, fuzzy, c-format msgid "key %s: non exportable signature (class 0x%02X) - skipped\n" msgstr "ŝlosilo %08lX: neeksportebla subskribo (klaso %02x) - ignorita\n" -#: g10/import.c:3821 +#: g10/import.c:3840 #, fuzzy, c-format msgid "key %s: revocation certificate at wrong place - skipped\n" msgstr "ŝlosilo %08lX: revokatestilo en malĝusta loko - ignorita\n" -#: g10/import.c:3839 +#: g10/import.c:3868 #, fuzzy, c-format msgid "key %s: invalid revocation certificate: %s - skipped\n" msgstr "ŝlosilo %08lX: nevalida revokatestilo: %s - ignorita\n" -#: g10/import.c:3853 +#: g10/import.c:3892 #, fuzzy, c-format msgid "key %s: subkey signature in wrong place - skipped\n" msgstr "ŝlosilo %08lX: revokatestilo en malĝusta loko - ignorita\n" -#: g10/import.c:3861 +#: g10/import.c:3900 #, fuzzy, c-format msgid "key %s: unexpected signature class (0x%02X) - skipped\n" msgstr "ŝlosilo %08lX: neeksportebla subskribo (klaso %02x) - ignorita\n" -#: g10/import.c:4034 +#: g10/import.c:4073 #, fuzzy, c-format msgid "key %s: duplicated user ID detected - merged\n" msgstr "ŝlosilo %08lX: trovis ripetitan uzantidentigilon - kunfandita\n" -#: g10/import.c:4099 +#: g10/import.c:4138 #, fuzzy, c-format msgid "WARNING: key %s may be revoked: fetching revocation key %s\n" msgstr "AVERTO: Ĉi tiu ŝlosilo estas revokita de sia posedanto!\n" -#: g10/import.c:4115 +#: g10/import.c:4154 #, fuzzy, c-format msgid "WARNING: key %s may be revoked: revocation key %s not present.\n" msgstr "AVERTO: Ĉi tiu ŝlosilo estas revokita de sia posedanto!\n" -#: g10/import.c:4181 +#: g10/import.c:4220 #, fuzzy, c-format msgid "key %s: \"%s\" revocation certificate added\n" msgstr "ŝlosilo %08lX: revokatestilo aldonita\n" -#: g10/import.c:4219 +#: g10/import.c:4258 #, fuzzy, c-format msgid "key %s: direct key signature added\n" msgstr "ŝlosilo %08lX: rekta ŝlosilsubskribo aldonita\n" @@ -5106,7 +5112,7 @@ msgid "You may not add a photo ID to a PGP2-style key.\n" msgstr "Ne eblas aldoni foto-identigilon al PGP2-stila ŝlosilo.\n" -#: g10/keyedit.c:4293 g10/keygen.c:2899 +#: g10/keyedit.c:4293 g10/keygen.c:2953 msgid "Such a user ID already exists on this key!\n" msgstr "" @@ -5398,83 +5404,83 @@ msgid "Displaying %s photo ID of size %ld for key %s (uid %d)\n" msgstr "" -#: g10/keygen.c:169 +#: g10/keygen.c:174 #, fuzzy, c-format msgid "invalid value for option '%s'\n" msgstr "nevalida kiraso" -#: g10/keygen.c:322 +#: g10/keygen.c:331 #, fuzzy, c-format msgid "preference '%s' duplicated\n" msgstr "prefero %c%lu ripetita\n" -#: g10/keygen.c:329 +#: g10/keygen.c:338 #, fuzzy, c-format msgid "too many cipher preferences\n" msgstr "tro da '%c'-preferoj\n" -#: g10/keygen.c:331 +#: g10/keygen.c:340 #, fuzzy, c-format msgid "too many digest preferences\n" msgstr "tro da '%c'-preferoj\n" -#: g10/keygen.c:333 +#: g10/keygen.c:342 #, fuzzy, c-format msgid "too many compression preferences\n" msgstr "tro da '%c'-preferoj\n" -#: g10/keygen.c:493 +#: g10/keygen.c:502 #, fuzzy, c-format msgid "invalid item '%s' in preference string\n" msgstr "nevalida signo en signoĉeno\n" -#: g10/keygen.c:972 +#: g10/keygen.c:1020 #, fuzzy, c-format msgid "writing direct signature\n" msgstr "skribas mem-subskribon\n" -#: g10/keygen.c:1018 +#: g10/keygen.c:1066 #, c-format msgid "writing self signature\n" msgstr "skribas mem-subskribon\n" -#: g10/keygen.c:1075 +#: g10/keygen.c:1123 #, c-format msgid "writing key binding signature\n" msgstr "skribas ŝlosilbindan subskribon\n" -#: g10/keygen.c:1440 g10/keygen.c:1445 g10/keygen.c:1497 g10/keygen.c:1502 -#: g10/keygen.c:1656 g10/keygen.c:1661 +#: g10/keygen.c:1494 g10/keygen.c:1499 g10/keygen.c:1551 g10/keygen.c:1556 +#: g10/keygen.c:1710 g10/keygen.c:1715 #, c-format msgid "keysize invalid; using %u bits\n" msgstr "ŝlosilgrando nevalida; uzas %u bitojn\n" -#: g10/keygen.c:1451 g10/keygen.c:1508 g10/keygen.c:1516 g10/keygen.c:1667 +#: g10/keygen.c:1505 g10/keygen.c:1562 g10/keygen.c:1570 g10/keygen.c:1721 #, c-format msgid "keysize rounded up to %u bits\n" msgstr "ŝlosilgrando rondigita ĝis %u bitoj\n" -#: g10/keygen.c:1542 +#: g10/keygen.c:1596 #, c-format msgid "" "WARNING: some OpenPGP programs can't handle a DSA key with this digest size\n" msgstr "" -#: g10/keygen.c:1723 +#: g10/keygen.c:1777 #, fuzzy msgid "Sign" msgstr "subskribi" -#: g10/keygen.c:1726 +#: g10/keygen.c:1780 msgid "Certify" msgstr "" -#: g10/keygen.c:1729 +#: g10/keygen.c:1783 #, fuzzy msgid "Encrypt" msgstr "ĉifri datenojn" -#: g10/keygen.c:1732 +#: g10/keygen.c:1786 msgid "Authenticate" msgstr "" @@ -5488,169 +5494,169 @@ #. * a = Toggle authentication capability #. * q = Finish #. -#: g10/keygen.c:1753 +#: g10/keygen.c:1807 msgid "SsEeAaQq" msgstr "" -#: g10/keygen.c:1784 +#: g10/keygen.c:1838 #, c-format msgid "Possible actions for a %s key: " msgstr "" -#: g10/keygen.c:1790 +#: g10/keygen.c:1844 msgid "Current allowed actions: " msgstr "" -#: g10/keygen.c:1795 +#: g10/keygen.c:1849 #, c-format msgid " (%c) Toggle the sign capability\n" msgstr "" -#: g10/keygen.c:1798 +#: g10/keygen.c:1852 #, fuzzy, c-format msgid " (%c) Toggle the encrypt capability\n" msgstr " (%d) ElGamal (nur ĉifri)\n" -#: g10/keygen.c:1801 +#: g10/keygen.c:1855 #, c-format msgid " (%c) Toggle the authenticate capability\n" msgstr "" -#: g10/keygen.c:1804 +#: g10/keygen.c:1858 #, c-format msgid " (%c) Finished\n" msgstr "" -#: g10/keygen.c:1930 +#: g10/keygen.c:1984 #, fuzzy, c-format msgid " (%d) RSA and RSA (default)\n" msgstr " (%d) DSA kaj ElGamal (implicita elekto)\n" -#: g10/keygen.c:1934 +#: g10/keygen.c:1988 #, fuzzy, c-format msgid " (%d) DSA and Elgamal\n" msgstr " (%d) DSA kaj ElGamal (implicita elekto)\n" -#: g10/keygen.c:1937 +#: g10/keygen.c:1991 #, c-format msgid " (%d) DSA (sign only)\n" msgstr " (%d) DSA (nur subskribi)\n" -#: g10/keygen.c:1939 +#: g10/keygen.c:1993 #, c-format msgid " (%d) RSA (sign only)\n" msgstr " (%d) RSA (nur subskribi)\n" -#: g10/keygen.c:1945 +#: g10/keygen.c:1999 #, fuzzy, c-format msgid " (%d) Elgamal (encrypt only)\n" msgstr " (%d) ElGamal (nur ĉifri)\n" -#: g10/keygen.c:1947 +#: g10/keygen.c:2001 #, c-format msgid " (%d) RSA (encrypt only)\n" msgstr " (%d) RSA (nur ĉifri)\n" -#: g10/keygen.c:1953 +#: g10/keygen.c:2007 #, fuzzy, c-format msgid " (%d) DSA (set your own capabilities)\n" msgstr " (%d) RSA (nur ĉifri)\n" -#: g10/keygen.c:1955 +#: g10/keygen.c:2009 #, fuzzy, c-format msgid " (%d) RSA (set your own capabilities)\n" msgstr " (%d) RSA (nur ĉifri)\n" -#: g10/keygen.c:1961 +#: g10/keygen.c:2015 #, fuzzy, c-format msgid " (%d) ECC and ECC\n" msgstr " (%d) DSA kaj ElGamal (implicita elekto)\n" -#: g10/keygen.c:1963 +#: g10/keygen.c:2017 #, fuzzy, c-format #| msgid " (%d) DSA (sign only)\n" msgid " (%d) ECC (sign only)\n" msgstr " (%d) DSA (nur subskribi)\n" -#: g10/keygen.c:1965 +#: g10/keygen.c:2019 #, fuzzy, c-format msgid " (%d) ECC (set your own capabilities)\n" msgstr " (%d) RSA (nur ĉifri)\n" -#: g10/keygen.c:1967 +#: g10/keygen.c:2021 #, fuzzy, c-format #| msgid " (%d) RSA (encrypt only)\n" msgid " (%d) ECC (encrypt only)\n" msgstr " (%d) RSA (nur ĉifri)\n" -#: g10/keygen.c:1971 +#: g10/keygen.c:2025 #, fuzzy, c-format msgid " (%d) Existing key\n" msgstr " (%d) RSA (nur ĉifri)\n" -#: g10/keygen.c:1973 +#: g10/keygen.c:2027 #, fuzzy, c-format msgid " (%d) Existing key from card\n" msgstr " (%d) RSA (nur ĉifri)\n" -#: g10/keygen.c:2069 sm/certreqgen-ui.c:202 +#: g10/keygen.c:2123 sm/certreqgen-ui.c:202 #, fuzzy msgid "Enter the keygrip: " msgstr "Subskribo-notacio: " -#: g10/keygen.c:2082 sm/certreqgen-ui.c:210 +#: g10/keygen.c:2136 sm/certreqgen-ui.c:210 msgid "Not a valid keygrip (expecting 40 hex digits)\n" msgstr "" -#: g10/keygen.c:2084 sm/certreqgen-ui.c:212 +#: g10/keygen.c:2138 sm/certreqgen-ui.c:212 #, fuzzy msgid "No key with this keygrip\n" msgstr "Mankas uzantidentigilo kun indekso %d\n" -#: g10/keygen.c:2103 g10/keygen.c:2113 g10/keygen.c:3216 g10/keygen.c:3227 +#: g10/keygen.c:2157 g10/keygen.c:2167 g10/keygen.c:3270 g10/keygen.c:3281 #: sm/certreqgen-ui.c:230 sm/certreqgen-ui.c:239 #, fuzzy, c-format msgid "error reading the card: %s\n" msgstr "%s: eraro dum legado de libera registro: %s\n" -#: g10/keygen.c:2107 g10/keygen.c:3220 sm/certreqgen-ui.c:233 +#: g10/keygen.c:2161 g10/keygen.c:3274 sm/certreqgen-ui.c:233 #, fuzzy, c-format msgid "Serial number of the card: %s\n" msgstr "eraro dum kreado de pasfrazo: %s\n" -#: g10/keygen.c:2120 sm/certreqgen-ui.c:245 +#: g10/keygen.c:2174 sm/certreqgen-ui.c:245 #, fuzzy msgid "Available keys:\n" msgstr "malŝalti ŝlosilon" -#: g10/keygen.c:2297 g10/keygen.c:2311 +#: g10/keygen.c:2351 g10/keygen.c:2365 #, fuzzy, c-format #| msgid "rounded up to %u bits\n" msgid "rounded to %u bits\n" msgstr "rondigita ĝis %u bitoj\n" -#: g10/keygen.c:2352 +#: g10/keygen.c:2406 #, c-format msgid "%s keys may be between %u and %u bits long.\n" msgstr "" -#: g10/keygen.c:2360 +#: g10/keygen.c:2414 #, fuzzy, c-format msgid "What keysize do you want for the subkey? (%u) " msgstr "Kiun ŝlosilgrandon vi deziras? (1024) " -#: g10/keygen.c:2377 sm/certreqgen-ui.c:189 +#: g10/keygen.c:2431 sm/certreqgen-ui.c:189 #, c-format msgid "Requested keysize is %u bits\n" msgstr "Petita ŝlosilgrando estas %u bitoj\n" -#: g10/keygen.c:2423 +#: g10/keygen.c:2477 #, fuzzy #| msgid "Please select what kind of key you want:\n" msgid "Please select which elliptic curve you want:\n" msgstr "Bonvolu elekti, kian ŝlosilon vi deziras:\n" -#: g10/keygen.c:2611 +#: g10/keygen.c:2665 msgid "" "Please specify how long the key should be valid.\n" " 0 = key does not expire\n" @@ -5666,7 +5672,7 @@ " m = ŝlosilo eksvalidiĝos post n monatoj\n" " y = ŝlosilo eksvalidiĝos post n jaroj\n" -#: g10/keygen.c:2622 +#: g10/keygen.c:2676 msgid "" "Please specify how long the signature should be valid.\n" " 0 = signature does not expire\n" @@ -5682,40 +5688,40 @@ " m = ŝlosilo eksvalidiĝos post n monatoj\n" " y = ŝlosilo eksvalidiĝos post n jaroj\n" -#: g10/keygen.c:2645 +#: g10/keygen.c:2699 msgid "Key is valid for? (0) " msgstr "Ŝlosilo validu ...? (0) " -#: g10/keygen.c:2650 +#: g10/keygen.c:2704 #, fuzzy, c-format msgid "Signature is valid for? (%s) " msgstr "Ŝlosilo validu por ...? (0) " -#: g10/keygen.c:2663 g10/keygen.c:2688 +#: g10/keygen.c:2717 g10/keygen.c:2742 msgid "invalid value\n" msgstr "nevalida valoro\n" -#: g10/keygen.c:2670 +#: g10/keygen.c:2724 #, fuzzy msgid "Key does not expire at all\n" msgstr "%s neniam eksvalidiĝos\n" -#: g10/keygen.c:2671 +#: g10/keygen.c:2725 #, fuzzy msgid "Signature does not expire at all\n" msgstr "%s neniam eksvalidiĝos\n" -#: g10/keygen.c:2676 +#: g10/keygen.c:2730 #, fuzzy, c-format msgid "Key expires at %s\n" msgstr "%s eksvalidiĝos je %s\n" -#: g10/keygen.c:2677 +#: g10/keygen.c:2731 #, fuzzy, c-format msgid "Signature expires at %s\n" msgstr "Ĉi tiu ŝlosilo eksvalidiĝos je %s.\n" -#: g10/keygen.c:2681 +#: g10/keygen.c:2735 msgid "" "Your system can't display dates beyond 2038.\n" "However, it will be correctly handled up to 2106.\n" @@ -5723,12 +5729,12 @@ "Via sistemo ne povas montri datojn post 2038.\n" "Tamen, ĝi estos ĝuste traktata ĝis 2106.\n" -#: g10/keygen.c:2694 +#: g10/keygen.c:2748 #, fuzzy msgid "Is this correct? (y/N) " msgstr "Ĉu tio estas ĝusta (j/n)? " -#: g10/keygen.c:2762 +#: g10/keygen.c:2816 msgid "" "\n" "GnuPG needs to construct a user ID to identify your key.\n" @@ -5739,7 +5745,7 @@ #. but you should keep your existing translation. In case #. the new string is not translated this old string will #. be used. -#: g10/keygen.c:2777 +#: g10/keygen.c:2831 #, fuzzy msgid "" "\n" @@ -5755,50 +5761,50 @@ " \"Heinrich Heine (la poeto) \"\n" "\n" -#: g10/keygen.c:2796 +#: g10/keygen.c:2850 msgid "Real name: " msgstr "Vera nomo: " -#: g10/keygen.c:2805 +#: g10/keygen.c:2859 msgid "Invalid character in name\n" msgstr "Nevalida signo en nomo\n" -#: g10/keygen.c:2806 +#: g10/keygen.c:2860 #, c-format msgid "The characters '%s' and '%s' may not appear in name\n" msgstr "" -#: g10/keygen.c:2810 +#: g10/keygen.c:2864 msgid "Name may not start with a digit\n" msgstr "Nomo ne povas komenciĝi per cifero\n" -#: g10/keygen.c:2813 +#: g10/keygen.c:2867 msgid "Name must be at least 5 characters long\n" msgstr "Nomo devas havi almenaŭ 5 signojn\n" -#: g10/keygen.c:2823 +#: g10/keygen.c:2877 msgid "Email address: " msgstr "Retadreso: " -#: g10/keygen.c:2829 +#: g10/keygen.c:2883 msgid "Not a valid email address\n" msgstr "Nevalida retadreso\n" -#: g10/keygen.c:2838 +#: g10/keygen.c:2892 msgid "Comment: " msgstr "Komento: " -#: g10/keygen.c:2844 +#: g10/keygen.c:2898 msgid "Invalid character in comment\n" msgstr "Nevalida signo en komento\n" -#: g10/keygen.c:2880 +#: g10/keygen.c:2934 #, fuzzy, c-format #| msgid "You are using the `%s' character set.\n" msgid "You are using the '%s' character set.\n" msgstr "Vi uzas la signaron '%s'.\n" -#: g10/keygen.c:2886 +#: g10/keygen.c:2940 #, c-format msgid "" "You selected this USER-ID:\n" @@ -5809,7 +5815,7 @@ " \"%s\"\n" "\n" -#: g10/keygen.c:2891 +#: g10/keygen.c:2945 msgid "Please don't put the email address into the real name or the comment\n" msgstr "Bonvolu ne meti la retadreson en la veran nomon aŭ la komenton\n" @@ -5824,35 +5830,35 @@ #. o = Okay (ready, continue) #. q = Quit #. -#: g10/keygen.c:2916 +#: g10/keygen.c:2970 msgid "NnCcEeOoQq" msgstr "NnKkAaBbFf" -#: g10/keygen.c:2926 +#: g10/keygen.c:2980 msgid "Change (N)ame, (C)omment, (E)mail or (Q)uit? " msgstr "Ŝanĝu (N)omon, (K)omenton, (A)adreson, aŭ (F)ini? " -#: g10/keygen.c:2927 +#: g10/keygen.c:2981 msgid "Change (N)ame, (C)omment, (E)mail or (O)kay/(Q)uit? " msgstr "Ŝanĝu (N)omon, (K)omenton, (A)adreson, aŭ (B)one/(F)ini? " -#: g10/keygen.c:2932 +#: g10/keygen.c:2986 #, fuzzy #| msgid "Change (N)ame, (C)omment, (E)mail or (Q)uit? " msgid "Change (N)ame, (E)mail, or (Q)uit? " msgstr "Ŝanĝu (N)omon, (K)omenton, (A)adreson, aŭ (F)ini? " -#: g10/keygen.c:2933 +#: g10/keygen.c:2987 #, fuzzy #| msgid "Change (N)ame, (C)omment, (E)mail or (O)kay/(Q)uit? " msgid "Change (N)ame, (E)mail, or (O)kay/(Q)uit? " msgstr "Ŝanĝu (N)omon, (K)omenton, (A)adreson, aŭ (B)one/(F)ini? " -#: g10/keygen.c:2952 +#: g10/keygen.c:3006 msgid "Please correct the error first\n" msgstr "Bonvolu korekti la eraron unue\n" -#: g10/keygen.c:2998 +#: g10/keygen.c:3052 msgid "" "We need to generate a lot of random bytes. It is a good idea to perform\n" "some other action (type on the keyboard, move the mouse, utilize the\n" @@ -5864,13 +5870,13 @@ "kreado de la primoj; tio donas al la stokastilo pli bonan ŝancon\n" "akiri sufiĉe da entropio.\n" -#: g10/keygen.c:4278 g10/keygen.c:4349 g10/keygen.c:4367 g10/keygen.c:4395 -#: g10/keygen.c:4739 g10/keygen.c:5239 g10/keygen.c:5534 g10/keygen.c:5639 +#: g10/keygen.c:4332 g10/keygen.c:4403 g10/keygen.c:4421 g10/keygen.c:4449 +#: g10/keygen.c:4793 g10/keygen.c:5293 g10/keygen.c:5588 g10/keygen.c:5693 #, c-format msgid "Key generation failed: %s\n" msgstr "Kreado de ŝlosiloj malsukcesis: %s\n" -#: g10/keygen.c:4287 +#: g10/keygen.c:4341 #, c-format msgid "" "About to create a key for:\n" @@ -5878,67 +5884,67 @@ "\n" msgstr "" -#: g10/keygen.c:4289 +#: g10/keygen.c:4343 msgid "Continue? (Y/n) " msgstr "" -#: g10/keygen.c:4310 +#: g10/keygen.c:4364 #, fuzzy, c-format msgid "A key for \"%s\" already exists\n" msgstr "'%s' jam densigita\n" -#: g10/keygen.c:4315 +#: g10/keygen.c:4369 #, fuzzy msgid "Create anyway? (y/N) " msgstr "Ĉu tamen uzi ĉi tiun ŝlosilon? " -#: g10/keygen.c:4321 +#: g10/keygen.c:4375 #, fuzzy, c-format msgid "creating anyway\n" msgstr "Ĉu tamen uzi ĉi tiun ŝlosilon? " -#: g10/keygen.c:4722 +#: g10/keygen.c:4776 #, c-format msgid "Note: Use \"%s %s\" for a full featured key generation dialog.\n" msgstr "" -#: g10/keygen.c:4771 +#: g10/keygen.c:4825 #, c-format msgid "Key generation canceled.\n" msgstr "Kreado de ŝlosiloj nuligita.\n" -#: g10/keygen.c:4831 +#: g10/keygen.c:4885 #, fuzzy, c-format msgid "can't create backup file '%s': %s\n" msgstr "ne povas krei '%s': %s\n" -#: g10/keygen.c:4851 +#: g10/keygen.c:4905 #, fuzzy, c-format msgid "Note: backup of card key saved to '%s'\n" msgstr "NOTO: sekreta ŝlosilo %08lX eksvalidiĝis je %s\n" -#: g10/keygen.c:5010 g10/keygen.c:5172 +#: g10/keygen.c:5064 g10/keygen.c:5226 #, fuzzy, c-format #| msgid "writing public key to `%s'\n" msgid "writing public key to '%s'\n" msgstr "skribas publikan ŝlosilon al '%s'\n" -#: g10/keygen.c:5166 +#: g10/keygen.c:5220 #, c-format msgid "no writable public keyring found: %s\n" msgstr "neniu skribebla publika ŝlosilaro trovita: %s\n" -#: g10/keygen.c:5180 +#: g10/keygen.c:5234 #, fuzzy, c-format #| msgid "error writing public keyring `%s': %s\n" msgid "error writing public keyring '%s': %s\n" msgstr "eraro dum skribado de publika ŝlosilaro '%s': %s\n" -#: g10/keygen.c:5210 +#: g10/keygen.c:5264 msgid "public and secret key created and signed.\n" msgstr "publika kaj sekreta ŝlosiloj kreitaj kaj subskribitaj.\n" -#: g10/keygen.c:5226 +#: g10/keygen.c:5280 #, fuzzy msgid "" "Note that this key cannot be used for encryption. You may want to use\n" @@ -5947,7 +5953,7 @@ "Notu, ke ĉi tiu ŝlosilo ne estas uzebla por ĉifrado. Vi eble volos\n" "uzi la komandon \"--edit-key\" por krei flankan ŝlosilon por tiu celo.\n" -#: g10/keygen.c:5401 g10/keygen.c:5590 +#: g10/keygen.c:5455 g10/keygen.c:5644 #, c-format msgid "" "key has been created %lu second in future (time warp or clock problem)\n" @@ -5955,7 +5961,7 @@ "ŝlosilo estis kreita %lu sekundon en la estonteco (tempotordo aŭ " "horloĝeraro)\n" -#: g10/keygen.c:5403 g10/keygen.c:5592 +#: g10/keygen.c:5457 g10/keygen.c:5646 #, c-format msgid "" "key has been created %lu seconds in future (time warp or clock problem)\n" @@ -5963,23 +5969,23 @@ "ŝlosilo estis kreita %lu sekundojn en la estonteco (tempotordo aŭ " "horloĝeraro)\n" -#: g10/keygen.c:5414 g10/keygen.c:5603 +#: g10/keygen.c:5468 g10/keygen.c:5657 #, fuzzy, c-format #| msgid "NOTE: creating subkeys for v3 keys is not OpenPGP compliant\n" msgid "Note: creating subkeys for v3 keys is not OpenPGP compliant\n" msgstr "NOTO: krei subŝlosilojn por v3-ŝlosiloj ne estas OpenPGP-kongrue\n" -#: g10/keygen.c:5426 g10/keygen.c:5428 +#: g10/keygen.c:5480 g10/keygen.c:5482 #, c-format msgid "Secret parts of primary key are not available.\n" msgstr "Sekretaj partoj de ĉefa ŝlosilo ne estas disponataj.\n" -#: g10/keygen.c:5435 g10/keygen.c:5437 +#: g10/keygen.c:5489 g10/keygen.c:5491 #, fuzzy, c-format msgid "Secret parts of primary key are stored on-card.\n" msgstr "Sekretaj partoj de ĉefa ŝlosilo ne estas disponataj.\n" -#: g10/keygen.c:5456 g10/keygen.c:5617 +#: g10/keygen.c:5510 g10/keygen.c:5671 #, fuzzy msgid "Really create? (y/N) " msgstr "Ĉu vere krei? " @@ -7082,31 +7088,31 @@ msgid "data not saved; use option \"--output\" to save it\n" msgstr "datenoj ne savitaj; uzu la opcion \"--output\" por savi ilin\n" -#: g10/plaintext.c:615 +#: g10/plaintext.c:620 msgid "Detached signature.\n" msgstr "Aparta subskribo.\n" -#: g10/plaintext.c:623 +#: g10/plaintext.c:628 msgid "Please enter name of data file: " msgstr "Bonvolu doni la nomon de la dosiero: " -#: g10/plaintext.c:660 +#: g10/plaintext.c:665 #, c-format msgid "reading stdin ...\n" msgstr "legas la normalan enigon ...\n" -#: g10/plaintext.c:705 +#: g10/plaintext.c:710 #, c-format msgid "no signed data\n" msgstr "mankas subskribitaj datenoj\n" -#: g10/plaintext.c:723 +#: g10/plaintext.c:728 #, fuzzy, c-format #| msgid "can't open signed data `%s'\n" msgid "can't open signed data '%s'\n" msgstr "ne povas malfermi subskribitan dosieron '%s'\n" -#: g10/plaintext.c:758 +#: g10/plaintext.c:763 #, fuzzy, c-format msgid "can't open signed data fd=%d: %s\n" msgstr "ne povas malfermi subskribitan dosieron '%s'\n" @@ -8106,7 +8112,7 @@ msgid "no need for a trustdb check\n" msgstr "kontrolo de fido-datenaro ne estas bezonata\n" -#: g10/trustdb.c:631 g10/trustdb.c:2326 +#: g10/trustdb.c:631 g10/trustdb.c:2338 #, c-format msgid "next trustdb check due at %s\n" msgstr "sekva kontrolo de fido-datenaro je %s\n" @@ -8136,37 +8142,37 @@ msgid "checking the trustdb\n" msgstr "kontrolas la fido-datenaron\n" -#: g10/trustdb.c:2047 +#: g10/trustdb.c:2059 #, fuzzy, c-format msgid "%d key processed" msgid_plural "%d keys processed" msgstr[0] "%lu ŝlosiloj jam traktitaj\n" msgstr[1] "%lu ŝlosiloj jam traktitaj\n" -#: g10/trustdb.c:2050 +#: g10/trustdb.c:2062 #, c-format msgid " (%d validity count cleared)\n" msgid_plural " (%d validity counts cleared)\n" msgstr[0] "" msgstr[1] "" -#: g10/trustdb.c:2120 +#: g10/trustdb.c:2132 #, fuzzy, c-format msgid "no ultimately trusted keys found\n" msgstr "publika ŝlosilo de absolute fidata ŝlosilo %08lX ne trovita\n" -#: g10/trustdb.c:2134 +#: g10/trustdb.c:2146 #, fuzzy, c-format msgid "public key of ultimately trusted key %s not found\n" msgstr "publika ŝlosilo de absolute fidata ŝlosilo %08lX ne trovita\n" -#: g10/trustdb.c:2252 +#: g10/trustdb.c:2264 #, c-format msgid "" "depth: %d valid: %3d signed: %3d trust: %d-, %dq, %dn, %dm, %df, %du\n" msgstr "" -#: g10/trustdb.c:2333 +#: g10/trustdb.c:2345 #, fuzzy, c-format msgid "unable to update trustdb version record: write failed: %s\n" msgstr "fido-datenaro %lu, speco %d: skribo malsukcesis: %s\n" @@ -8282,88 +8288,94 @@ #. TRANSLATORS: Put a \x1f right before a colon. This can be #. * used by pinentry to nicely align the names and values. Keep #. * the %s at the start and end of the string. -#: scd/app-p15.c:5116 scd/app-openpgp.c:2154 +#: scd/app-p15.c:5145 scd/app-nks.c:1541 scd/app-openpgp.c:2154 #, c-format msgid "%sNumber: %s%%0AHolder: %s%s" msgstr "" #. TRANSLATORS: This is the number of remaining attempts to #. * enter a PIN. Use %%0A (double-percent,0A) for a linefeed. -#: scd/app-p15.c:5135 scd/app-openpgp.c:2170 +#: scd/app-p15.c:5164 scd/app-nks.c:1560 scd/app-openpgp.c:2170 #, c-format msgid "Remaining attempts: %d" msgstr "" -#: scd/app-p15.c:5214 scd/app-nks.c:1113 +#: scd/app-p15.c:5243 scd/app-nks.c:2112 msgid "||Please enter the PIN for the key to create qualified signatures." msgstr "" #. TRANSLATORS: Do not translate the "|A|" prefix but keep it at #. the start of the string. Use %0A (single percent) for a linefeed. -#: scd/app-p15.c:5217 scd/app-openpgp.c:2464 +#: scd/app-p15.c:5246 scd/app-openpgp.c:2465 #, fuzzy msgid "|A|Please enter the Admin PIN" msgstr "ŝanĝi la pasfrazon" -#: scd/app-p15.c:5219 scd/app-nks.c:1103 +#: scd/app-p15.c:5248 scd/app-nks.c:2102 #, fuzzy msgid "|P|Please enter the PIN Unblocking Code (PUK) for the standard keys." msgstr "Kialo por revoko: " -#: scd/app-p15.c:5222 scd/app-nks.c:1095 +#: scd/app-p15.c:5251 scd/app-nks.c:2093 #, fuzzy msgid "||Please enter the PIN for the standard keys." msgstr "ŝanĝi la pasfrazon" -#: scd/app-nks.c:709 scd/app-openpgp.c:3666 +#: scd/app-nks.c:1479 scd/app-openpgp.c:3675 #, c-format msgid "RSA modulus missing or not of size %d bits\n" msgstr "" -#: scd/app-nks.c:717 scd/app-openpgp.c:3678 +#: scd/app-nks.c:1487 scd/app-openpgp.c:3687 #, c-format msgid "RSA public exponent missing or larger than %d bits\n" msgstr "" -#: scd/app-nks.c:797 scd/app-openpgp.c:2327 scd/app-openpgp.c:2346 -#: scd/app-openpgp.c:2513 scd/app-openpgp.c:2531 scd/app-openpgp.c:2829 -#: scd/app-openpgp.c:2876 scd/app-openpgp.c:2991 scd/app-dinsig.c:302 +#: scd/app-nks.c:1660 +#, fuzzy +#| msgid "Note: This key has been disabled.\n" +msgid "Note: PIN has not yet been enabled." +msgstr "Noto: Ĉi tiu ŝlosilo estas malŝaltita.\n" + +#: scd/app-nks.c:1671 scd/app-openpgp.c:2327 scd/app-openpgp.c:2346 +#: scd/app-openpgp.c:2515 scd/app-openpgp.c:2533 scd/app-openpgp.c:2832 +#: scd/app-openpgp.c:2879 scd/app-openpgp.c:3000 scd/app-dinsig.c:303 #, c-format msgid "PIN callback returned error: %s\n" msgstr "" -#: scd/app-nks.c:830 +#: scd/app-nks.c:1707 #, c-format msgid "the NullPIN has not yet been changed\n" msgstr "" -#: scd/app-nks.c:1094 +#: scd/app-nks.c:2092 #, fuzzy msgid "|N|Please enter a new PIN for the standard keys." msgstr "ŝanĝi la pasfrazon" -#: scd/app-nks.c:1101 +#: scd/app-nks.c:2100 #, fuzzy msgid "|NP|Please enter a new PIN Unblocking Code (PUK) for the standard keys." msgstr "Kialo por revoko: " -#: scd/app-nks.c:1111 +#: scd/app-nks.c:2110 msgid "|N|Please enter a new PIN for the key to create qualified signatures." msgstr "" -#: scd/app-nks.c:1121 +#: scd/app-nks.c:2120 msgid "" "|NP|Please enter a new PIN Unblocking Code (PUK) for the key to create " "qualified signatures." msgstr "" -#: scd/app-nks.c:1123 +#: scd/app-nks.c:2122 msgid "" "|P|Please enter the PIN Unblocking Code (PUK) for the key to create " "qualified signatures." msgstr "" -#: scd/app-nks.c:1230 scd/app-openpgp.c:2910 scd/app-dinsig.c:532 +#: scd/app-nks.c:2295 scd/app-openpgp.c:2913 scd/app-dinsig.c:535 #, fuzzy, c-format msgid "error getting new PIN: %s\n" msgstr "eraro dum kreado de pasfrazo: %s\n" @@ -8378,7 +8390,7 @@ msgid "failed to store the creation date: %s\n" msgstr "malsukcesis rekonstrui ŝlosilaran staplon: %s\n" -#: scd/app-openpgp.c:1271 scd/app-openpgp.c:2857 scd/app-openpgp.c:5041 +#: scd/app-openpgp.c:1271 scd/app-openpgp.c:2860 scd/app-openpgp.c:5051 #, c-format msgid "error retrieving CHV status from card\n" msgstr "" @@ -8399,7 +8411,7 @@ msgid "response does not contain the EC public key\n" msgstr "forigi ŝlosilojn de la publika ŝlosilaro" -#: scd/app-openpgp.c:1664 scd/app-openpgp.c:4286 +#: scd/app-openpgp.c:1664 scd/app-openpgp.c:4295 #, c-format msgid "response does not contain the public key data\n" msgstr "" @@ -8432,23 +8444,23 @@ msgid "||Please unlock the card" msgstr "ŝanĝi la pasfrazon" -#: scd/app-openpgp.c:2353 scd/app-openpgp.c:2538 scd/app-openpgp.c:2836 +#: scd/app-openpgp.c:2353 scd/app-openpgp.c:2540 scd/app-openpgp.c:2839 #, c-format msgid "PIN for CHV%d is too short; minimum length is %d\n" msgstr "" -#: scd/app-openpgp.c:2367 scd/app-openpgp.c:2414 scd/app-openpgp.c:2552 -#: scd/app-openpgp.c:4644 +#: scd/app-openpgp.c:2368 scd/app-openpgp.c:2415 scd/app-openpgp.c:2554 +#: scd/app-openpgp.c:4654 #, fuzzy, c-format msgid "verify CHV%d failed: %s\n" msgstr "Kreado de ŝlosiloj malsukcesis: %s\n" -#: scd/app-openpgp.c:2450 scd/app-openpgp.c:5050 +#: scd/app-openpgp.c:2451 scd/app-openpgp.c:5060 #, c-format msgid "card is permanently locked!\n" msgstr "" -#: scd/app-openpgp.c:2454 +#: scd/app-openpgp.c:2455 #, c-format msgid "%d Admin PIN attempt remaining before card is permanently locked\n" msgid_plural "" @@ -8456,22 +8468,22 @@ msgstr[0] "" msgstr[1] "" -#: scd/app-openpgp.c:2485 +#: scd/app-openpgp.c:2486 #, c-format msgid "access to admin commands is not configured\n" msgstr "" -#: scd/app-openpgp.c:2823 +#: scd/app-openpgp.c:2826 #, fuzzy msgid "||Please enter the PIN" msgstr "ŝanĝi la pasfrazon" -#: scd/app-openpgp.c:2872 +#: scd/app-openpgp.c:2875 #, fuzzy msgid "||Please enter the Reset Code for the card" msgstr "Kialo por revoko: " -#: scd/app-openpgp.c:2882 scd/app-openpgp.c:2943 +#: scd/app-openpgp.c:2885 scd/app-openpgp.c:2946 #, c-format msgid "Reset Code is too short; minimum length is %d\n" msgstr "" @@ -8479,128 +8491,128 @@ #. 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:2905 +#: scd/app-openpgp.c:2908 msgid "|RN|New Reset Code" msgstr "" -#: scd/app-openpgp.c:2906 +#: scd/app-openpgp.c:2909 msgid "|AN|New Admin PIN" msgstr "" -#: scd/app-openpgp.c:2906 +#: scd/app-openpgp.c:2909 msgid "|N|New PIN" msgstr "" -#: scd/app-openpgp.c:2987 +#: scd/app-openpgp.c:2996 #, fuzzy msgid "||Please enter the Admin PIN and New Admin PIN" msgstr "ŝanĝi la pasfrazon" -#: scd/app-openpgp.c:2988 +#: scd/app-openpgp.c:2997 #, fuzzy msgid "||Please enter the PIN and New PIN" msgstr "ŝanĝi la pasfrazon" -#: scd/app-openpgp.c:3050 scd/app-openpgp.c:4346 +#: scd/app-openpgp.c:3059 scd/app-openpgp.c:4355 #, fuzzy, c-format msgid "error reading application data\n" msgstr "eraro dum legado de ŝlosilbloko: %s\n" -#: scd/app-openpgp.c:3056 scd/app-openpgp.c:4353 +#: scd/app-openpgp.c:3065 scd/app-openpgp.c:4362 #, fuzzy, c-format msgid "error reading fingerprint DO\n" msgstr "%s: eraro dum legado de libera registro: %s\n" -#: scd/app-openpgp.c:3066 +#: scd/app-openpgp.c:3075 #, fuzzy, c-format msgid "key already exists\n" msgstr "'%s' jam densigita\n" -#: scd/app-openpgp.c:3070 +#: scd/app-openpgp.c:3079 #, c-format msgid "existing key will be replaced\n" msgstr "" -#: scd/app-openpgp.c:3072 +#: scd/app-openpgp.c:3081 #, fuzzy, c-format msgid "generating new key\n" msgstr "krei novan ŝlosilparon" -#: scd/app-openpgp.c:3074 +#: scd/app-openpgp.c:3083 #, fuzzy, c-format msgid "writing new key\n" msgstr "krei novan ŝlosilparon" -#: scd/app-openpgp.c:3647 scd/app-openpgp.c:3999 +#: scd/app-openpgp.c:3656 scd/app-openpgp.c:4008 #, c-format msgid "creation timestamp missing\n" msgstr "" -#: scd/app-openpgp.c:3688 scd/app-openpgp.c:3696 +#: scd/app-openpgp.c:3697 scd/app-openpgp.c:3705 #, c-format msgid "RSA prime %s missing or not of size %d bits\n" msgstr "" -#: scd/app-openpgp.c:3829 scd/app-openpgp.c:4106 +#: scd/app-openpgp.c:3838 scd/app-openpgp.c:4115 #, 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:3993 +#: scd/app-openpgp.c:4002 #, fuzzy, c-format #| msgid "unsupported URI" msgid "unsupported curve\n" msgstr "nerealigita URI" -#: scd/app-openpgp.c:4263 +#: scd/app-openpgp.c:4272 #, c-format msgid "please wait while key is being generated ...\n" msgstr "" -#: scd/app-openpgp.c:4271 +#: scd/app-openpgp.c:4280 #, fuzzy, c-format msgid "generating key failed\n" msgstr "forviŝo de ŝlosilbloko malsukcesis: %s\n" -#: scd/app-openpgp.c:4277 +#: scd/app-openpgp.c:4286 #, fuzzy, c-format msgid "key generation completed (%d second)\n" msgid_plural "key generation completed (%d seconds)\n" msgstr[0] "Kreado de ŝlosiloj malsukcesis: %s\n" msgstr[1] "Kreado de ŝlosiloj malsukcesis: %s\n" -#: scd/app-openpgp.c:4311 +#: scd/app-openpgp.c:4320 #, c-format msgid "invalid structure of OpenPGP card (DO 0x93)\n" msgstr "" -#: scd/app-openpgp.c:4361 +#: scd/app-openpgp.c:4370 #, c-format msgid "fingerprint on card does not match requested one\n" msgstr "" -#: scd/app-openpgp.c:4560 +#: scd/app-openpgp.c:4569 #, fuzzy, c-format msgid "card does not support digest algorithm %s\n" msgstr "%s-subskribo de: %s\n" -#: scd/app-openpgp.c:4618 +#: scd/app-openpgp.c:4627 #, c-format msgid "signatures created so far: %lu\n" msgstr "" -#: scd/app-openpgp.c:5055 +#: scd/app-openpgp.c:5065 #, c-format msgid "" "verification of Admin PIN is currently prohibited through this command\n" msgstr "" -#: scd/app-openpgp.c:5386 scd/app-openpgp.c:5398 +#: scd/app-openpgp.c:5396 scd/app-openpgp.c:5408 #, fuzzy, c-format msgid "can't access %s - invalid OpenPGP card?\n" msgstr "validaj OpenPGP-datenoj ne trovitaj.\n" -#: scd/app-dinsig.c:298 +#: scd/app-dinsig.c:299 #, fuzzy msgid "||Please enter your PIN at the reader's pinpad" msgstr "ŝanĝi la pasfrazon" @@ -8608,7 +8620,7 @@ #. 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-dinsig.c:529 +#: scd/app-dinsig.c:532 #, fuzzy msgid "|N|Initial New PIN" msgstr "Donu la uzantidentigilon: " @@ -8699,11 +8711,11 @@ msgid "validation model requested by certificate: %s" msgstr "" -#: sm/certchain.c:199 sm/certchain.c:2164 +#: sm/certchain.c:199 sm/certchain.c:2165 msgid "chain" msgstr "" -#: sm/certchain.c:200 sm/certchain.c:2164 +#: sm/certchain.c:200 sm/certchain.c:2165 #, fuzzy msgid "shell" msgstr "helpo" @@ -8727,248 +8739,248 @@ msgid "failed to open '%s': %s\n" msgstr "ne povas malfermi '%s': %s\n" -#: sm/certchain.c:355 sm/certchain.c:384 dirmngr/validate.c:204 +#: sm/certchain.c:355 sm/certchain.c:385 dirmngr/validate.c:204 #, fuzzy, c-format msgid "Note: non-critical certificate policy not allowed" msgstr "skribas sekretan ŝlosilon al '%s'\n" -#: sm/certchain.c:359 sm/certchain.c:388 dirmngr/validate.c:209 +#: sm/certchain.c:359 sm/certchain.c:389 dirmngr/validate.c:209 #, fuzzy, c-format msgid "certificate policy not allowed" msgstr "skribas sekretan ŝlosilon al '%s'\n" -#: sm/certchain.c:595 sm/keydb.c:1084 sm/keydb.c:1171 +#: sm/certchain.c:596 sm/keydb.c:1084 sm/keydb.c:1171 #, fuzzy, c-format msgid "failed to get the fingerprint\n" msgstr "malsukcesis doni komencajn valorojn al fido-datenaro: %s\n" -#: sm/certchain.c:624 +#: sm/certchain.c:625 #, c-format msgid "looking up issuer at external location\n" msgstr "" -#: sm/certchain.c:644 +#: sm/certchain.c:645 #, c-format msgid "number of issuers matching: %d\n" msgstr "" -#: sm/certchain.c:723 dirmngr/ocsp.c:685 +#: sm/certchain.c:724 dirmngr/ocsp.c:685 #, fuzzy, c-format #| msgid "%s: can't access: %s\n" msgid "can't get authorityInfoAccess: %s\n" msgstr "%s: ne povas aliri: %s\n" -#: sm/certchain.c:791 +#: sm/certchain.c:792 #, c-format msgid "looking up issuer from the Dirmngr cache\n" msgstr "" -#: sm/certchain.c:816 +#: sm/certchain.c:817 #, fuzzy, c-format msgid "number of matching certificates: %d\n" msgstr "eraro dum kreado de pasfrazo: %s\n" -#: sm/certchain.c:819 +#: sm/certchain.c:820 #, fuzzy, c-format msgid "dirmngr cache-only key lookup failed: %s\n" msgstr "forviŝo de ŝlosilbloko malsukcesis: %s\n" -#: sm/certchain.c:1041 sm/certchain.c:1554 sm/certchain.c:2192 sm/decrypt.c:728 +#: sm/certchain.c:1042 sm/certchain.c:1555 sm/certchain.c:2193 sm/decrypt.c:728 #: sm/encrypt.c:345 sm/import.c:415 sm/keydb.c:1091 sm/keydb.c:1178 #: sm/sign.c:337 sm/verify.c:118 #, fuzzy, c-format msgid "failed to allocate keyDB handle\n" msgstr "malsukcesis doni komencajn valorojn al fido-datenaro: %s\n" -#: sm/certchain.c:1225 +#: sm/certchain.c:1226 #, fuzzy msgid "certificate has been revoked" msgstr "ŝlosilo %08lX: ŝlosilo estas revokita!\n" -#: sm/certchain.c:1240 +#: sm/certchain.c:1241 msgid "the status of the certificate is unknown" msgstr "" -#: sm/certchain.c:1247 +#: sm/certchain.c:1248 #, c-format msgid "please make sure that the \"dirmngr\" is properly installed\n" msgstr "" -#: sm/certchain.c:1253 +#: sm/certchain.c:1254 #, fuzzy, c-format msgid "checking the CRL failed: %s" msgstr "kontrolo de kreita subskribo malsukcesis: %s\n" -#: sm/certchain.c:1282 sm/certchain.c:1350 dirmngr/validate.c:497 +#: sm/certchain.c:1283 sm/certchain.c:1351 dirmngr/validate.c:497 #, fuzzy, c-format msgid "certificate with invalid validity: %s" msgstr "problemo ĉe legado de atestilo: %s\n" -#: sm/certchain.c:1297 sm/certchain.c:1382 dirmngr/validate.c:515 +#: sm/certchain.c:1298 sm/certchain.c:1383 dirmngr/validate.c:515 #, fuzzy, c-format msgid "certificate not yet valid" msgstr "Valida atestilrevoko" -#: sm/certchain.c:1298 sm/certchain.c:1383 +#: sm/certchain.c:1299 sm/certchain.c:1384 #, fuzzy msgid "root certificate not yet valid" msgstr "Valida atestilrevoko" -#: sm/certchain.c:1299 sm/certchain.c:1384 +#: sm/certchain.c:1300 sm/certchain.c:1385 #, fuzzy msgid "intermediate certificate not yet valid" msgstr "Valida atestilrevoko" -#: sm/certchain.c:1312 dirmngr/validate.c:526 +#: sm/certchain.c:1313 dirmngr/validate.c:526 #, fuzzy, c-format msgid "certificate has expired" msgstr "problemo ĉe legado de atestilo: %s\n" -#: sm/certchain.c:1313 +#: sm/certchain.c:1314 #, fuzzy msgid "root certificate has expired" msgstr "problemo ĉe legado de atestilo: %s\n" -#: sm/certchain.c:1314 +#: sm/certchain.c:1315 #, fuzzy msgid "intermediate certificate has expired" msgstr "problemo ĉe legado de atestilo: %s\n" -#: sm/certchain.c:1356 +#: sm/certchain.c:1357 #, c-format msgid "required certificate attributes missing: %s%s%s" msgstr "" -#: sm/certchain.c:1365 +#: sm/certchain.c:1366 #, fuzzy msgid "certificate with invalid validity" msgstr "problemo ĉe legado de atestilo: %s\n" -#: sm/certchain.c:1402 +#: sm/certchain.c:1403 msgid "signature not created during lifetime of certificate" msgstr "" -#: sm/certchain.c:1404 +#: sm/certchain.c:1405 msgid "certificate not created during lifetime of issuer" msgstr "" -#: sm/certchain.c:1405 +#: sm/certchain.c:1406 msgid "intermediate certificate not created during lifetime of issuer" msgstr "" -#: sm/certchain.c:1409 +#: sm/certchain.c:1410 #, fuzzy, c-format msgid " ( signature created at " msgstr " novaj subskriboj: %lu\n" -#: sm/certchain.c:1410 +#: sm/certchain.c:1411 #, fuzzy, c-format msgid " (certificate created at " msgstr "ŝlosilo %08lX: revokatestilo aldonita\n" -#: sm/certchain.c:1413 +#: sm/certchain.c:1414 #, fuzzy, c-format msgid " (certificate valid from " msgstr "Valida atestilrevoko" -#: sm/certchain.c:1414 +#: sm/certchain.c:1415 #, c-format msgid " ( issuer valid from " msgstr "" -#: sm/certchain.c:1444 dirmngr/validate.c:577 +#: sm/certchain.c:1445 dirmngr/validate.c:577 #, fuzzy, c-format msgid "fingerprint=%s\n" msgstr "Fingrospuro:" -#: sm/certchain.c:1453 +#: sm/certchain.c:1454 #, fuzzy, c-format msgid "root certificate has now been marked as trusted\n" msgstr "" "Neniom da atestiloj trovitaj kun nedifinita fidovaloro.\n" "\n" -#: sm/certchain.c:1466 +#: sm/certchain.c:1467 #, c-format msgid "interactive marking as trusted not enabled in gpg-agent\n" msgstr "" -#: sm/certchain.c:1472 +#: sm/certchain.c:1473 #, c-format msgid "interactive marking as trusted disabled for this session\n" msgstr "" -#: sm/certchain.c:1531 +#: sm/certchain.c:1532 msgid "WARNING: creation time of signature not known - assuming current time" msgstr "" -#: sm/certchain.c:1595 +#: sm/certchain.c:1596 #, fuzzy msgid "no issuer found in certificate" msgstr "Bona atestilo" -#: sm/certchain.c:1673 +#: sm/certchain.c:1674 msgid "self-signed certificate has a BAD signature" msgstr "" -#: sm/certchain.c:1742 dirmngr/validate.c:575 +#: sm/certchain.c:1743 dirmngr/validate.c:575 #, fuzzy, c-format msgid "root certificate is not marked trusted" msgstr "" "Neniom da atestiloj trovitaj kun nedifinita fidovaloro.\n" "\n" -#: sm/certchain.c:1758 +#: sm/certchain.c:1759 #, fuzzy, c-format msgid "checking the trust list failed: %s\n" msgstr "kontrolo de kreita subskribo malsukcesis: %s\n" -#: sm/certchain.c:1789 sm/import.c:176 sm/keylist.c:1396 dirmngr/validate.c:630 +#: sm/certchain.c:1790 sm/import.c:176 sm/keylist.c:1396 dirmngr/validate.c:630 #, fuzzy, c-format msgid "certificate chain too long\n" msgstr "Valida atestilrevoko" -#: sm/certchain.c:1801 dirmngr/validate.c:642 +#: sm/certchain.c:1802 dirmngr/validate.c:642 #, fuzzy, c-format msgid "issuer certificate not found" msgstr "Valida atestilrevoko" -#: sm/certchain.c:1834 dirmngr/validate.c:668 +#: sm/certchain.c:1835 dirmngr/validate.c:668 #, fuzzy, c-format msgid "certificate has a BAD signature" msgstr "kontroli subskribon" -#: sm/certchain.c:1866 dirmngr/validate.c:692 +#: sm/certchain.c:1867 dirmngr/validate.c:692 msgid "found another possible matching CA certificate - trying again" msgstr "" -#: sm/certchain.c:1925 dirmngr/validate.c:717 +#: sm/certchain.c:1926 dirmngr/validate.c:717 #, c-format msgid "certificate chain longer than allowed by CA (%d)" msgstr "" -#: sm/certchain.c:1967 sm/certchain.c:2263 dirmngr/validate.c:747 +#: sm/certchain.c:1968 sm/certchain.c:2264 dirmngr/validate.c:747 #, fuzzy, c-format msgid "certificate is good\n" msgstr "Valida atestilrevoko" -#: sm/certchain.c:1968 +#: sm/certchain.c:1969 #, fuzzy, c-format msgid "intermediate certificate is good\n" msgstr "ripetita atestilo - forviŝita" -#: sm/certchain.c:1969 +#: sm/certchain.c:1970 #, fuzzy, c-format msgid "root certificate is good\n" msgstr "" "Neniom da atestiloj trovitaj kun nedifinita fidovaloro.\n" "\n" -#: sm/certchain.c:2151 +#: sm/certchain.c:2152 msgid "switching to chain model" msgstr "" -#: sm/certchain.c:2160 +#: sm/certchain.c:2161 #, c-format msgid "validation model used: %s" msgstr "" diff -Nru gnupg2-2.2.40/po/es.po gnupg2-2.2.41/po/es.po --- gnupg2-2.2.40/po/es.po 2022-10-10 09:58:25.000000000 +0000 +++ gnupg2-2.2.41/po/es.po 2022-12-09 08:48:34.000000000 +0000 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: gnupg 2.0.9\n" "Report-Msgid-Bugs-To: translations@gnupg.org\n" -"POT-Creation-Date: 2022-10-10 11:58+0200\n" +"POT-Creation-Date: 2022-12-09 09:48+0100\n" "PO-Revision-Date: 2018-05-25 15:44+0000\n" "Last-Translator: emma peel \n" "Language-Team: Spanish \n" @@ -246,20 +246,20 @@ msgid "ssh keys greater than %d bits are not supported\n" msgstr "no pueden usarse claves ssh de más de %d bits\n" -#: agent/command-ssh.c:862 common/dotlock.c:856 g10/card-util.c:947 -#: g10/exec.c:554 g10/export.c:1320 g10/gpg.c:1400 g10/keygen.c:4998 +#: agent/command-ssh.c:862 common/dotlock.c:856 g10/card-util.c:946 +#: g10/exec.c:554 g10/export.c:1335 g10/gpg.c:1409 g10/keygen.c:5052 #: g10/keyring.c:1322 g10/keyring.c:1637 g10/openfile.c:291 g10/sign.c:1008 #: g10/sign.c:1322 g10/tdbio.c:753 #, c-format msgid "can't create '%s': %s\n" msgstr "no se puede crear '%s': %s\n" -#: agent/command-ssh.c:874 common/helpfile.c:57 g10/card-util.c:904 +#: agent/command-ssh.c:874 common/helpfile.c:57 g10/card-util.c:903 #: g10/dearmor.c:59 g10/dearmor.c:106 g10/decrypt.c:65 g10/decrypt.c:136 -#: g10/decrypt.c:153 g10/encrypt.c:239 g10/encrypt.c:678 g10/gpg.c:1401 -#: g10/import.c:364 g10/import.c:548 g10/import.c:776 g10/keygen.c:4036 +#: g10/decrypt.c:153 g10/encrypt.c:239 g10/encrypt.c:678 g10/gpg.c:1410 +#: g10/import.c:365 g10/import.c:549 g10/import.c:777 g10/keygen.c:4090 #: g10/keyring.c:1663 g10/openfile.c:195 g10/openfile.c:209 g10/plaintext.c:128 -#: g10/plaintext.c:649 g10/sign.c:990 g10/sign.c:1201 g10/sign.c:1306 +#: g10/plaintext.c:654 g10/sign.c:990 g10/sign.c:1201 g10/sign.c:1306 #: g10/sign.c:1451 g10/tdbdump.c:145 g10/tdbdump.c:153 g10/tdbio.c:758 #: g10/tdbio.c:829 g10/verify.c:96 g10/verify.c:160 sm/gpgsm.c:2160 #: sm/gpgsm.c:2190 sm/gpgsm.c:2228 sm/qualified.c:66 dirmngr/certcache.c:420 @@ -491,33 +491,33 @@ msgid "csh-style command output" msgstr "salida de datos estilo csh" -#: agent/gpg-agent.c:185 g10/gpg.c:579 scd/scdaemon.c:126 sm/gpgsm.c:410 +#: agent/gpg-agent.c:185 g10/gpg.c:580 scd/scdaemon.c:126 sm/gpgsm.c:410 #: dirmngr/dirmngr.c:192 msgid "|FILE|read options from FILE" msgstr "|FILE|lee opciones desde FICHERO" -#: agent/gpg-agent.c:189 g10/gpg.c:566 scd/scdaemon.c:130 sm/gpgsm.c:259 +#: agent/gpg-agent.c:189 g10/gpg.c:567 scd/scdaemon.c:130 sm/gpgsm.c:259 #: dirmngr/dirmngr.c:196 msgid "Options controlling the diagnostic output" msgstr "Opciones que controlan la salida de diagnósticos" -#: agent/gpg-agent.c:191 g10/gpg.c:568 g10/gpgv.c:78 kbx/kbxutil.c:88 +#: agent/gpg-agent.c:191 g10/gpg.c:569 g10/gpgv.c:78 kbx/kbxutil.c:88 #: scd/scdaemon.c:132 sm/gpgsm.c:261 dirmngr/dirmngr-client.c:70 #: dirmngr/dirmngr.c:198 tools/gpg-connect-agent.c:78 tools/gpgconf.c:110 msgid "verbose" msgstr "prolijo" -#: agent/gpg-agent.c:192 g10/gpg.c:570 g10/gpgv.c:79 kbx/kbxutil.c:89 +#: agent/gpg-agent.c:192 g10/gpg.c:571 g10/gpgv.c:79 kbx/kbxutil.c:89 #: scd/scdaemon.c:133 sm/gpgsm.c:263 dirmngr/dirmngr-client.c:71 #: dirmngr/dirmngr.c:199 msgid "be somewhat more quiet" msgstr "algo más discreto" -#: agent/gpg-agent.c:200 g10/gpg.c:583 sm/gpgsm.c:276 dirmngr/dirmngr.c:209 +#: agent/gpg-agent.c:200 g10/gpg.c:584 sm/gpgsm.c:276 dirmngr/dirmngr.c:209 msgid "|FILE|write server mode logs to FILE" msgstr "|FILE|escribir logs en modo servidor en FICHERO" -#: agent/gpg-agent.c:204 g10/gpg.c:589 scd/scdaemon.c:147 sm/gpgsm.c:283 +#: agent/gpg-agent.c:204 g10/gpg.c:590 scd/scdaemon.c:147 sm/gpgsm.c:283 #: dirmngr/dirmngr.c:213 msgid "Options controlling the configuration" msgstr "Opciones que controlan la configuración" @@ -554,7 +554,7 @@ msgid "enable putty support" msgstr "habilitar soporte de putty" -#: agent/gpg-agent.c:237 g10/gpg.c:831 scd/scdaemon.c:175 sm/gpgsm.c:369 +#: agent/gpg-agent.c:237 g10/gpg.c:832 scd/scdaemon.c:175 sm/gpgsm.c:369 msgid "Options controlling the security" msgstr "Opciones que controlan la seguridad" @@ -658,7 +658,7 @@ #. reporting address. This is so that we can change the #. reporting address without breaking the translations. #: agent/gpg-agent.c:563 agent/preset-passphrase.c:100 agent/protect-tool.c:155 -#: g10/gpg.c:1108 g10/gpgv.c:149 kbx/kbxutil.c:113 scd/scdaemon.c:313 +#: g10/gpg.c:1117 g10/gpgv.c:149 kbx/kbxutil.c:113 scd/scdaemon.c:313 #: sm/gpgsm.c:600 dirmngr/dirmngr-client.c:168 dirmngr/dirmngr.c:458 #: tools/gpg-connect-agent.c:205 tools/gpgconf.c:154 #: tools/gpg-check-pattern.c:143 @@ -677,26 +677,26 @@ "Sintaxis: @GPG_AGENT@ [opciones] [orden [argumentos]]\n" "Manejo de claves privadas por @GNUPG@\n" -#: agent/gpg-agent.c:619 g10/gpg.c:1304 scd/scdaemon.c:385 sm/gpgsm.c:748 +#: agent/gpg-agent.c:619 g10/gpg.c:1313 scd/scdaemon.c:385 sm/gpgsm.c:748 #: dirmngr/dirmngr.c:542 #, c-format msgid "invalid debug-level '%s' given\n" msgstr "el nivel de depuración '%s' no es válido\n" -#: agent/gpg-agent.c:988 g10/gpg.c:3810 g10/gpg.c:3834 sm/gpgsm.c:1585 +#: agent/gpg-agent.c:988 g10/gpg.c:3830 g10/gpg.c:3854 sm/gpgsm.c:1585 #: sm/gpgsm.c:1591 #, c-format msgid "selected digest algorithm is invalid\n" msgstr "el algoritmo de resumen seleccionado no inválido\n" #: agent/gpg-agent.c:1216 agent/gpg-agent.c:2029 common/argparse.c:1766 -#: common/argparse.c:1858 g10/gpg.c:2517 scd/scdaemon.c:547 sm/gpgsm.c:1007 +#: common/argparse.c:1858 g10/gpg.c:2526 scd/scdaemon.c:547 sm/gpgsm.c:1007 #: dirmngr/dirmngr.c:1081 dirmngr/dirmngr.c:1937 #, c-format msgid "reading options from '%s'\n" msgstr "leyendo opciones de '%s'\n" -#: agent/gpg-agent.c:1332 g10/gpg.c:3751 scd/scdaemon.c:671 sm/gpgsm.c:1522 +#: agent/gpg-agent.c:1332 g10/gpg.c:3769 scd/scdaemon.c:671 sm/gpgsm.c:1522 #: dirmngr/dirmngr.c:1190 tools/gpg-connect-agent.c:1244 tools/gpgconf.c:677 #, c-format msgid "Note: '%s' is not considered an option\n" @@ -831,7 +831,7 @@ # Sí, este no he podido ser yo :-) Por cierto, ¿por qué la O no se # puede acentuar? ¿demasiado alta? # ¿Quién dice que no se puede? :-) -#: agent/protect-tool.c:108 g10/gpg.c:441 kbx/kbxutil.c:71 sm/gpgsm.c:210 +#: agent/protect-tool.c:108 g10/gpg.c:442 kbx/kbxutil.c:71 sm/gpgsm.c:210 #: dirmngr/dirmngr.c:171 tools/gpgconf.c:80 msgid "" "@Commands:\n" @@ -1060,7 +1060,7 @@ msgid "secret key parts are not available\n" msgstr "las partes de la clave privada no están disponibles\n" -#: agent/cvt-openpgp.c:344 g10/card-util.c:1556 +#: agent/cvt-openpgp.c:344 g10/card-util.c:1555 #, c-format msgid "public key algorithm %d (%s) is not supported\n" msgstr "el algoritmo de llave pública %d (%s) no se puede usar\n" @@ -1215,7 +1215,7 @@ msgid "out of core while allocating %lu bytes" msgstr "error de memoria al reservar %lu bytes" -#: common/miscellaneous.c:115 g10/card-util.c:911 tools/no-libgcrypt.c:30 +#: common/miscellaneous.c:115 g10/card-util.c:910 tools/no-libgcrypt.c:30 #, c-format msgid "error allocating enough memory: %s\n" msgstr "error reservando memoria: %s\n" @@ -1330,7 +1330,7 @@ msgstr "algoritmo: %s" #: common/audit.c:774 common/audit.c:776 common/audit.c:921 common/audit.c:923 -#: scd/app-openpgp.c:3557 +#: scd/app-openpgp.c:3566 #, c-format msgid "unsupported algorithm: %s" msgstr "algoritmo no disponible: %s" @@ -1405,11 +1405,11 @@ msgid "Root certificate trustworthy" msgstr "Certificado raíz fiable" -#: common/audit.c:1112 sm/certchain.c:1235 +#: common/audit.c:1112 sm/certchain.c:1236 msgid "no CRL found for certificate" msgstr "no se encuentra CRL para el certificado" -#: common/audit.c:1115 sm/certchain.c:1245 +#: common/audit.c:1115 sm/certchain.c:1246 msgid "the available CRL is too old" msgstr "el CRL disponible es demasiado antiguo" @@ -1538,7 +1538,7 @@ msgid "missing argument for option \"%.50s\"\n" msgstr "falta parámetro para la opción \"%.50s\"\n" -#: common/argparse.c:558 g10/gpg.c:3525 +#: common/argparse.c:558 g10/gpg.c:3543 #, c-format msgid "invalid argument for option \"%.50s\"\n" msgstr "parámetro incorrecto para la opción \"%.50s\"\n" @@ -1637,92 +1637,92 @@ msgid "%s is too old (need %s, have %s)\n" msgstr "%s es demasiado antiguo (necesita %s, tiene %s)\n" -#: g10/armor.c:423 +#: g10/armor.c:424 #, c-format msgid "armor: %s\n" msgstr "armadura: %s\n" -#: g10/armor.c:462 +#: g10/armor.c:463 #, c-format msgid "invalid armor header: " msgstr "cabecera de armadura inválida: " -#: g10/armor.c:473 +#: g10/armor.c:474 #, c-format msgid "armor header: " msgstr "cabecera de armadura: " -#: g10/armor.c:486 +#: g10/armor.c:487 #, c-format msgid "invalid clearsig header\n" msgstr "cabecera de firma clara inválida\n" -#: g10/armor.c:499 +#: g10/armor.c:500 #, c-format msgid "unknown armor header: " msgstr "cabecera de armadura desconocida: " -#: g10/armor.c:552 +#: g10/armor.c:553 #, c-format msgid "nested clear text signatures\n" msgstr "firmas en texto claro anidadas\n" -#: g10/armor.c:687 +#: g10/armor.c:688 #, c-format msgid "unexpected armor: " msgstr "armadura inesperada: " -#: g10/armor.c:700 +#: g10/armor.c:701 #, c-format msgid "invalid dash escaped line: " msgstr "Línea con guiones inválida: " -#: g10/armor.c:872 g10/armor.c:1492 +#: g10/armor.c:873 g10/armor.c:1493 #, c-format msgid "invalid radix64 character %02X skipped\n" msgstr "caracter inválido radix64 %02X omitido\n" -#: g10/armor.c:915 +#: g10/armor.c:916 #, c-format msgid "premature eof (no CRC)\n" msgstr "Fin de fichero prematuro (falta suma de comprobación)\n" -#: g10/armor.c:949 +#: g10/armor.c:950 #, c-format msgid "premature eof (in CRC)\n" msgstr "Fin de suma de comprobación prematuro\n" -#: g10/armor.c:957 +#: g10/armor.c:958 #, c-format msgid "malformed CRC\n" msgstr "Suma de comprobación mal creada\n" -#: g10/armor.c:961 g10/armor.c:1529 +#: g10/armor.c:962 g10/armor.c:1530 #, c-format msgid "CRC error; %06lX - %06lX\n" msgstr "Error en suma de comprobación: %06lX - %06lX\n" -#: g10/armor.c:981 +#: g10/armor.c:982 #, c-format msgid "premature eof (in trailer)\n" msgstr "fin de fichero prematuro (en el cierre)\n" -#: g10/armor.c:985 +#: g10/armor.c:986 #, c-format msgid "error in trailer line\n" msgstr "error en la línea de cierre\n" -#: g10/armor.c:1305 +#: g10/armor.c:1306 #, c-format msgid "no valid OpenPGP data found.\n" msgstr "no se han encontrados datos OpenPGP válidos\n" -#: g10/armor.c:1310 +#: g10/armor.c:1311 #, c-format msgid "invalid armor: line longer than %d characters\n" msgstr "armadura incorrecta: línea más larga de %d caracteres\n" -#: g10/armor.c:1314 +#: g10/armor.c:1315 #, c-format msgid "" "quoted printable character in armor - probably a buggy MTA has been used\n" @@ -1867,24 +1867,24 @@ msgid "server uses an invalid certificate" msgstr "genera un certificado de revocación" -#: g10/call-dirmngr.c:462 g10/gpg.c:4458 +#: g10/call-dirmngr.c:462 g10/gpg.c:4478 #, fuzzy, c-format #| msgid "armor: %s\n" msgid "Note: %s\n" msgstr "armadura: %s\n" -#: g10/card-util.c:86 g10/card-util.c:366 g10/card-util.c:1918 +#: g10/card-util.c:86 g10/card-util.c:366 g10/card-util.c:1917 #, c-format msgid "OpenPGP card not available: %s\n" msgstr "tarjeta OpenPGP no disponible: %s\n" -#: g10/card-util.c:91 g10/card-util.c:1924 +#: g10/card-util.c:91 g10/card-util.c:1923 #, c-format msgid "OpenPGP card no. %s detected\n" msgstr "tarjeta OpenPGP num. %s detectada\n" -#: g10/card-util.c:97 g10/card-util.c:2253 g10/delkey.c:160 g10/keyedit.c:1423 -#: g10/keygen.c:4466 g10/revoke.c:214 g10/revoke.c:636 +#: g10/card-util.c:97 g10/card-util.c:2252 g10/delkey.c:160 g10/keyedit.c:1423 +#: g10/keygen.c:4520 g10/revoke.c:214 g10/revoke.c:636 #, c-format msgid "can't do this in batch mode\n" msgstr "imposible hacer esto en modo de proceso por lotes\n" @@ -1894,14 +1894,14 @@ msgid "This command is only available for version 2 cards\n" msgstr "Esta orden solo está disponible en tarjetas versión 2\n" -#: g10/card-util.c:107 scd/app-openpgp.c:2866 +#: g10/card-util.c:107 scd/app-openpgp.c:2869 #, c-format msgid "Reset Code not or not anymore available\n" msgstr "No hay Código de Reinicio o ya no está disponible\n" -#: g10/card-util.c:140 g10/card-util.c:1442 g10/card-util.c:1704 -#: g10/card-util.c:1796 g10/keyedit.c:394 g10/keyedit.c:415 g10/keyedit.c:429 -#: g10/keygen.c:1808 g10/keygen.c:1980 g10/keygen.c:2186 g10/keygen.c:2477 +#: g10/card-util.c:140 g10/card-util.c:1441 g10/card-util.c:1703 +#: g10/card-util.c:1795 g10/keyedit.c:394 g10/keyedit.c:415 g10/keyedit.c:429 +#: g10/keygen.c:1862 g10/keygen.c:2034 g10/keygen.c:2240 g10/keygen.c:2531 #: sm/certreqgen-ui.c:165 sm/certreqgen-ui.c:291 sm/certreqgen-ui.c:325 msgid "Your selection? " msgstr "Su elección: " @@ -1951,79 +1951,79 @@ msgid "Error: Combined name too long (limit is %d characters).\n" msgstr "Error: nombre combinado demasiado largo (máximo %d caracteres).\n" -#: g10/card-util.c:826 +#: g10/card-util.c:825 msgid "URL to retrieve public key: " msgstr "URL de donde recuperar la clave pública: " -#: g10/card-util.c:920 g10/decrypt-data.c:509 g10/import.c:399 g10/import.c:746 -#: g10/import.c:798 dirmngr/crlcache.c:655 dirmngr/crlcache.c:660 +#: g10/card-util.c:919 g10/decrypt-data.c:509 g10/import.c:400 g10/import.c:747 +#: g10/import.c:799 dirmngr/crlcache.c:655 dirmngr/crlcache.c:660 #: dirmngr/crlcache.c:914 dirmngr/crlcache.c:920 dirmngr/dirmngr.c:1748 #: tools/gpgconf.c:483 tools/gpgconf.c:529 #, c-format msgid "error reading '%s': %s\n" msgstr "error al leer '%s': %s\n" -#: g10/card-util.c:953 g10/decrypt-data.c:512 g10/export.c:2467 +#: g10/card-util.c:952 g10/decrypt-data.c:512 g10/export.c:2586 #: dirmngr/crlcache.c:925 #, c-format msgid "error writing '%s': %s\n" msgstr "error al escribir '%s': %s\n" -#: g10/card-util.c:980 +#: g10/card-util.c:979 msgid "Login data (account name): " msgstr "Datos de login (nombre de la cuenta): " -#: g10/card-util.c:1018 +#: g10/card-util.c:1017 msgid "Private DO data: " msgstr "Datos privados: " -#: g10/card-util.c:1103 +#: g10/card-util.c:1102 msgid "Language preferences: " msgstr "Preferencias de idioma: " -#: g10/card-util.c:1111 +#: g10/card-util.c:1110 msgid "Error: invalid length of preference string.\n" msgstr "Error: longitud de la cadena de preferencias inválida.\n" -#: g10/card-util.c:1120 +#: g10/card-util.c:1119 msgid "Error: invalid characters in preference string.\n" msgstr "Error: caracteres inválidos en cadena de preferencias.\n" -#: g10/card-util.c:1142 +#: g10/card-util.c:1141 msgid "Salutation (M = Mr., F = Ms., or space): " msgstr "" -#: g10/card-util.c:1156 +#: g10/card-util.c:1155 msgid "Error: invalid response.\n" msgstr "Error: respuesta no válida.\n" -#: g10/card-util.c:1178 +#: g10/card-util.c:1177 msgid "CA fingerprint: " msgstr "Huella digital CA: " -#: g10/card-util.c:1201 +#: g10/card-util.c:1200 msgid "Error: invalid formatted fingerprint.\n" msgstr "Error: formato inválido de huella digital.\n" -#: g10/card-util.c:1252 +#: g10/card-util.c:1251 #, c-format msgid "key operation not possible: %s\n" msgstr "la operación con la clave no es posible: %s\n" -#: g10/card-util.c:1253 +#: g10/card-util.c:1252 msgid "not an OpenPGP card" msgstr "no es una tarjeta OpenPGP" -#: g10/card-util.c:1266 g10/keygen.c:4486 g10/keygen.c:5562 +#: g10/card-util.c:1265 g10/keygen.c:4540 g10/keygen.c:5616 #, c-format msgid "error getting current key info: %s\n" msgstr "error obteniendo la información actual de la clave: %s\n" -#: g10/card-util.c:1351 +#: g10/card-util.c:1350 msgid "Replace existing key? (y/N) " msgstr "¿Reemplazar la clave existente? (s/N) " -#: g10/card-util.c:1368 +#: g10/card-util.c:1367 msgid "" "Note: There is no guarantee that the card supports the requested size.\n" " If the key generation does not succeed, please check the\n" @@ -2033,98 +2033,98 @@ " requerido. Si la generación de clave fracasa, por favor compruebe\n" " la documentación de su tarjeta para ver los tamaños posibles.\n" -#: g10/card-util.c:1390 g10/keygen.c:2363 sm/certreqgen-ui.c:179 +#: g10/card-util.c:1389 g10/keygen.c:2417 sm/certreqgen-ui.c:179 #, c-format msgid "What keysize do you want? (%u) " msgstr "¿De qué tamaño quiere la clave? (%u) " -#: g10/card-util.c:1400 g10/keygen.c:2286 g10/keygen.c:2318 +#: g10/card-util.c:1399 g10/keygen.c:2340 g10/keygen.c:2372 #: sm/certreqgen-ui.c:194 #, c-format msgid "rounded up to %u bits\n" msgstr "redondeados a %u bits\n" -#: g10/card-util.c:1408 g10/keygen.c:2371 sm/certreqgen-ui.c:184 +#: g10/card-util.c:1407 g10/keygen.c:2425 sm/certreqgen-ui.c:184 #, c-format msgid "%s keysizes must be in the range %u-%u\n" msgstr "los tamaños de claves %s deben estar en el rango %u-%u\n" -#: g10/card-util.c:1427 +#: g10/card-util.c:1426 msgid "Changing card key attribute for: " msgstr "Cambiando el atributo de la clave de tarjeta por: " -#: g10/card-util.c:1429 +#: g10/card-util.c:1428 msgid "Signature key\n" msgstr "Clave de firmado\n" -#: g10/card-util.c:1431 +#: g10/card-util.c:1430 msgid "Encryption key\n" msgstr "Clave de cifrado\n" -#: g10/card-util.c:1433 +#: g10/card-util.c:1432 msgid "Authentication key\n" msgstr "Clave de autentificación\n" -#: g10/card-util.c:1435 g10/keygen.c:1926 sm/certreqgen-ui.c:157 +#: g10/card-util.c:1434 g10/keygen.c:1980 sm/certreqgen-ui.c:157 msgid "Please select what kind of key you want:\n" msgstr "Por favor seleccione tipo de clave deseado:\n" -#: g10/card-util.c:1436 sm/certreqgen-ui.c:158 +#: g10/card-util.c:1435 sm/certreqgen-ui.c:158 #, c-format msgid " (%d) RSA\n" msgstr " (%d) RSA\n" -#: g10/card-util.c:1437 +#: g10/card-util.c:1436 #, c-format msgid " (%d) ECC\n" msgstr " (%d) ECC\n" -#: g10/card-util.c:1449 g10/card-util.c:1716 g10/card-util.c:1816 -#: g10/keyedit.c:900 g10/keygen.c:1834 g10/keygen.c:1862 g10/keygen.c:1987 -#: g10/keygen.c:2222 g10/keygen.c:2505 g10/revoke.c:838 +#: g10/card-util.c:1448 g10/card-util.c:1715 g10/card-util.c:1815 +#: g10/keyedit.c:900 g10/keygen.c:1888 g10/keygen.c:1916 g10/keygen.c:2041 +#: g10/keygen.c:2276 g10/keygen.c:2559 g10/revoke.c:838 msgid "Invalid selection.\n" msgstr "Elección inválida.\n" -#: g10/card-util.c:1522 +#: g10/card-util.c:1521 #, c-format msgid "The card will now be re-configured to generate a key of %u bits\n" msgstr "Ahora la tarjeta se reconfigurará para generar una clave de %u bits\n" -#: g10/card-util.c:1527 +#: g10/card-util.c:1526 #, c-format msgid "The card will now be re-configured to generate a key of type: %s\n" msgstr "Ahora la tarjeta se reconfigurará para generar una clave de tipo: %s\n" -#: g10/card-util.c:1563 +#: g10/card-util.c:1562 #, c-format msgid "error changing key attribute for key %d: %s\n" msgstr "error cambiando el atributo de clave de la clave %d: %s\n" -#: g10/card-util.c:1579 g10/card-util.c:2106 +#: g10/card-util.c:1578 g10/card-util.c:2105 #, c-format msgid "error getting card info: %s\n" msgstr "error al obtener información de la clave: %s\n" -#: g10/card-util.c:1585 g10/card-util.c:1930 g10/card-util.c:2112 +#: g10/card-util.c:1584 g10/card-util.c:1929 g10/card-util.c:2111 #, c-format msgid "This command is not supported by this card\n" msgstr "Esta orden no se puede usar con esta tarjeta\n" -#: g10/card-util.c:1631 +#: g10/card-util.c:1630 msgid "Make off-card backup of encryption key? (Y/n) " msgstr "" "¿Hacer copia de seguridad externa a la tarjeta de clave de cifrado? (S/n) " -#: g10/card-util.c:1645 +#: g10/card-util.c:1644 #, c-format msgid "Note: keys are already stored on the card!\n" msgstr "NOTA: ¡ya hay claves almacenadas en la tarjeta!\n" -#: g10/card-util.c:1648 +#: g10/card-util.c:1647 msgid "Replace existing keys? (y/N) " msgstr "¿Reemplazar las claves existentes? (s/N) " -#: g10/card-util.c:1660 +#: g10/card-util.c:1659 #, c-format msgid "" "Please note that the factory settings of the PINs are\n" @@ -2135,145 +2135,145 @@ " PIN = '%s' PIN Administrador = '%s'\n" "Debería cambiarlos usando la orden --change-pin\n" -#: g10/card-util.c:1695 +#: g10/card-util.c:1694 msgid "Please select the type of key to generate:\n" msgstr "Por favor seleccione tipo de clave que generar:\n" -#: g10/card-util.c:1697 g10/card-util.c:1787 +#: g10/card-util.c:1696 g10/card-util.c:1786 msgid " (1) Signature key\n" msgstr " (1) Clave de firmado\n" -#: g10/card-util.c:1698 g10/card-util.c:1789 +#: g10/card-util.c:1697 g10/card-util.c:1788 msgid " (2) Encryption key\n" msgstr " (2) Clave de cifrado\n" -#: g10/card-util.c:1699 g10/card-util.c:1791 +#: g10/card-util.c:1698 g10/card-util.c:1790 msgid " (3) Authentication key\n" msgstr " (3) Clave de autentificación\n" -#: g10/card-util.c:1784 +#: g10/card-util.c:1783 msgid "Please select where to store the key:\n" msgstr "Por favor elija donde guardar la clave:\n" -#: g10/card-util.c:1830 +#: g10/card-util.c:1829 #, c-format msgid "KEYTOCARD failed: %s\n" msgstr "KEYTOCARD fallido: %s\n" -#: g10/card-util.c:1935 +#: g10/card-util.c:1934 #, c-format msgid "Note: This command destroys all keys stored on the card!\n" msgstr "" "NOTA: ¡Esta orden destruye todas las claves almacenadas en la tarjeta!\n" -#: g10/card-util.c:1938 +#: g10/card-util.c:1937 msgid "Continue? (y/N) " msgstr "¿Continuar? (s/N) " -#: g10/card-util.c:1943 +#: g10/card-util.c:1942 msgid "Really do a factory reset? (enter \"yes\") " msgstr "¿Realmente quiere volver a los valores de fábrica? (escriba \"sí\") " -#: g10/card-util.c:2129 +#: g10/card-util.c:2128 #, c-format msgid "error for setup KDF: %s\n" msgstr "error de la configuración KDF: %s\n" -#: g10/card-util.c:2158 g10/keyedit.c:1260 +#: g10/card-util.c:2157 g10/keyedit.c:1260 msgid "quit this menu" msgstr "salir de este menú" -#: g10/card-util.c:2160 +#: g10/card-util.c:2159 msgid "show admin commands" msgstr "ver órdenes de administrador" -#: g10/card-util.c:2161 g10/keyedit.c:1263 +#: g10/card-util.c:2160 g10/keyedit.c:1263 msgid "show this help" msgstr "muestra esta ayuda" -#: g10/card-util.c:2163 +#: g10/card-util.c:2162 msgid "list all available data" msgstr "listar todos los datos disponibles" -#: g10/card-util.c:2166 +#: g10/card-util.c:2165 msgid "change card holder's name" msgstr "cambiar el nombre del titular de la tarjeta" -#: g10/card-util.c:2167 +#: g10/card-util.c:2166 msgid "change URL to retrieve key" msgstr "cambiar URL de donde obtener la clave" -#: g10/card-util.c:2168 +#: g10/card-util.c:2167 msgid "fetch the key specified in the card URL" msgstr "recuperar la clave especificada en la URL de la tarjeta" -#: g10/card-util.c:2169 +#: g10/card-util.c:2168 msgid "change the login name" msgstr "cambiar nombre de usuario" -#: g10/card-util.c:2170 +#: g10/card-util.c:2169 msgid "change the language preferences" msgstr "cambiar preferencias de idioma" -#: g10/card-util.c:2171 +#: g10/card-util.c:2170 #, fuzzy #| msgid "change card holder's sex" msgid "change card holder's salutation" msgstr "cambiar sexo del titular de la tarjeta" -#: g10/card-util.c:2173 +#: g10/card-util.c:2172 msgid "change a CA fingerprint" msgstr "cambiar huella digital de una CA" -#: g10/card-util.c:2174 +#: g10/card-util.c:2173 msgid "toggle the signature force PIN flag" msgstr "cambiar estado de la opción forzar firma del PIN" -#: g10/card-util.c:2175 +#: g10/card-util.c:2174 msgid "generate new keys" msgstr "generar nuevas claves" -#: g10/card-util.c:2176 +#: g10/card-util.c:2175 msgid "menu to change or unblock the PIN" msgstr "menú para cambiar o desbloquear el PIN" -#: g10/card-util.c:2177 +#: g10/card-util.c:2176 msgid "verify the PIN and list all data" msgstr "verificar PIN y listar todos los datos" -#: g10/card-util.c:2178 +#: g10/card-util.c:2177 msgid "unblock the PIN using a Reset Code" msgstr "desbloquear PIN usando Código de Reinicio" -#: g10/card-util.c:2179 +#: g10/card-util.c:2178 msgid "destroy all keys and data" msgstr "destruir todas las claves y datos" -#: g10/card-util.c:2180 +#: g10/card-util.c:2179 msgid "setup KDF for PIN authentication" msgstr "configurar KDF para autentificación de PIN" -#: g10/card-util.c:2181 +#: g10/card-util.c:2180 msgid "change the key attribute" msgstr "cambia valores de la clave" -#: g10/card-util.c:2305 +#: g10/card-util.c:2304 msgid "gpg/card> " msgstr "gpg/tarjeta> " -#: g10/card-util.c:2346 +#: g10/card-util.c:2345 msgid "Admin-only command\n" msgstr "Órdenes sólo de administrador\n" -#: g10/card-util.c:2377 +#: g10/card-util.c:2376 msgid "Admin commands are allowed\n" msgstr "Se permiten órdenes de administrador\n" -#: g10/card-util.c:2379 +#: g10/card-util.c:2378 msgid "Admin commands are not allowed\n" msgstr "No se permiten órdenes de administrador\n" -#: g10/card-util.c:2482 g10/keyedit.c:2229 +#: g10/card-util.c:2481 g10/keyedit.c:2229 msgid "Invalid command (try \"help\")\n" msgstr "Orden inválida (pruebe \"help\")\n" @@ -2282,21 +2282,21 @@ msgid "--output doesn't work for this command\n" msgstr "--output no funciona con esta orden\n" -#: g10/decrypt.c:247 g10/gpg.c:5155 g10/keyring.c:399 g10/keyring.c:750 +#: g10/decrypt.c:247 g10/gpg.c:5175 g10/keyring.c:399 g10/keyring.c:750 #, c-format msgid "can't open '%s'\n" msgstr "no se puede abrir '%s'\n" -#: g10/delkey.c:83 g10/export.c:1947 g10/export.c:2230 g10/export.c:2351 -#: g10/getkey.c:2108 g10/gpg.c:5100 g10/keyedit.c:1445 g10/keyedit.c:2335 +#: g10/delkey.c:83 g10/export.c:2035 g10/export.c:2349 g10/export.c:2470 +#: g10/getkey.c:2108 g10/gpg.c:5120 g10/keyedit.c:1445 g10/keyedit.c:2335 #: g10/keyedit.c:2637 g10/keyedit.c:4600 g10/keylist.c:693 g10/keyserver.c:1092 #: g10/revoke.c:230 g10/tofu.c:2165 #, c-format msgid "key \"%s\" not found: %s\n" msgstr "clave \"%s\" no encontrada: %s\n" -#: g10/delkey.c:92 g10/export.c:2015 g10/getkey.c:2116 g10/getkey.c:4517 -#: g10/gpg.c:5109 g10/keyedit.c:2308 g10/keyserver.c:1110 g10/revoke.c:236 +#: g10/delkey.c:92 g10/export.c:2103 g10/getkey.c:2116 g10/getkey.c:4517 +#: g10/gpg.c:5129 g10/keyedit.c:2308 g10/keyserver.c:1110 g10/revoke.c:236 #: g10/revoke.c:663 g10/tofu.c:2173 #, c-format msgid "error reading keyblock: %s\n" @@ -2414,13 +2414,13 @@ msgid "WARNING: '%s' is an empty file\n" msgstr "ATENCIÓN '%s' es un fichero vacío\n" -#: g10/encrypt.c:446 g10/encrypt.c:521 g10/decrypt-data.c:266 g10/gpg.c:3959 -#: g10/gpg.c:3999 sm/decrypt.c:826 sm/encrypt.c:416 sm/gpgsm.c:1609 +#: g10/encrypt.c:446 g10/encrypt.c:521 g10/decrypt-data.c:266 g10/gpg.c:3979 +#: g10/gpg.c:4019 sm/decrypt.c:826 sm/encrypt.c:416 sm/gpgsm.c:1609 #, c-format msgid "cipher algorithm '%s' may not be used in %s mode\n" msgstr "no se puede usar el cifrado '%s' en modo %s\n" -#: g10/encrypt.c:455 g10/gpg.c:3965 g10/gpg.c:4011 g10/sig-check.c:175 +#: g10/encrypt.c:455 g10/gpg.c:3985 g10/gpg.c:4031 g10/sig-check.c:175 #: g10/sign.c:391 sm/gpgsm.c:1619 sm/gpgsm.c:1629 sm/sign.c:478 sm/verify.c:506 #, c-format msgid "digest algorithm '%s' may not be used in %s mode\n" @@ -2539,61 +2539,67 @@ msgid "WARNING: unable to remove temp directory '%s': %s\n" msgstr "AVISO: no se puede borrar el directorio temporal '%s': %s\n" -#: g10/export.c:119 +#: g10/export.c:124 msgid "export signatures that are marked as local-only" msgstr "exportar firmas marcadas como sólo locales" -#: g10/export.c:121 +#: g10/export.c:126 msgid "export attribute user IDs (generally photo IDs)" msgstr "exportar el atributo ID de usuario (generalmente fotográfico)" -#: g10/export.c:123 +#: g10/export.c:128 msgid "export revocation keys marked as \"sensitive\"" msgstr "exportar claves de revocación marcadas como \"confidenciales\"" -#: g10/export.c:125 +#: g10/export.c:130 msgid "remove unusable parts from key during export" msgstr "borrar partes inutilizables de la clave al exportar" -#: g10/export.c:127 +#: g10/export.c:132 msgid "remove as much as possible from key during export" msgstr "borrar tanto como sea posible de la clave al exportar" -#: g10/export.c:133 +#: g10/export.c:138 +#, fuzzy +#| msgid "generate a revocation certificate" +msgid "export only revocation certificates" +msgstr "genera un certificado de revocación" + +#: g10/export.c:141 msgid "use the GnuPG key backup format" msgstr "usar el formato de backup de claves GnuPG" -#: g10/export.c:1291 +#: g10/export.c:1306 msgid " - skipped" msgstr " - omitido" -#: g10/export.c:1324 g10/import.c:2085 g10/openfile.c:200 g10/openfile.c:294 +#: g10/export.c:1339 g10/import.c:2089 g10/openfile.c:200 g10/openfile.c:294 #: g10/sign.c:1012 g10/sign.c:1326 #, c-format msgid "writing to '%s'\n" msgstr "escribiendo en '%s'\n" -#: g10/export.c:1769 +#: g10/export.c:1784 #, c-format msgid "key %s: key material on-card - skipped\n" msgstr "clave %s: material de la clave en la tarjeta - omitida\n" -#: g10/export.c:1964 +#: g10/export.c:2052 #, c-format msgid "exporting secret keys not allowed\n" msgstr "no se permite exportar claves secretas\n" -#: g10/export.c:2041 +#: g10/export.c:2129 #, c-format msgid "key %s: PGP 2.x style key - skipped\n" msgstr "clave %s: clave estilo PGP 2.x - omitida\n" -#: g10/export.c:2135 +#: g10/export.c:2254 #, c-format msgid "WARNING: nothing exported\n" msgstr "ATENCIÓN: no se ha exportado nada\n" -#: g10/export.c:2432 g10/plaintext.c:153 g10/plaintext.c:162 +#: g10/export.c:2551 g10/plaintext.c:153 g10/plaintext.c:162 #: g10/plaintext.c:168 g10/plaintext.c:191 #, c-format msgid "error creating '%s': %s\n" @@ -2657,280 +2663,280 @@ msgid "using subkey %s instead of primary key %s\n" msgstr "usando subclave %s en vez de clave primaria %s\n" -#: g10/getkey.c:4446 g10/gpg.c:2137 +#: g10/getkey.c:4446 g10/gpg.c:2146 #, c-format msgid "valid values for option '%s':\n" msgstr "parámetros válidos para la opción '%s':\n" -#: g10/gpg.c:443 sm/gpgsm.c:212 +#: g10/gpg.c:444 sm/gpgsm.c:212 msgid "make a signature" msgstr "crea una firma" -#: g10/gpg.c:444 +#: g10/gpg.c:445 msgid "make a clear text signature" msgstr "crea una firma en texto claro" -#: g10/gpg.c:446 sm/gpgsm.c:214 +#: g10/gpg.c:447 sm/gpgsm.c:214 msgid "make a detached signature" msgstr "crea una firma separada" -#: g10/gpg.c:447 sm/gpgsm.c:215 +#: g10/gpg.c:448 sm/gpgsm.c:215 msgid "encrypt data" msgstr "cifra datos" -#: g10/gpg.c:449 +#: g10/gpg.c:450 msgid "encryption only with symmetric cipher" msgstr "cifra sólo con un cifrado simétrico" -#: g10/gpg.c:451 sm/gpgsm.c:217 +#: g10/gpg.c:452 sm/gpgsm.c:217 msgid "decrypt data (default)" msgstr "descifra datos (predefinido)" -#: g10/gpg.c:453 sm/gpgsm.c:218 +#: g10/gpg.c:454 sm/gpgsm.c:218 msgid "verify a signature" msgstr "verifica una firma" -#: g10/gpg.c:455 sm/gpgsm.c:219 +#: g10/gpg.c:456 sm/gpgsm.c:219 msgid "list keys" msgstr "lista claves" -#: g10/gpg.c:457 +#: g10/gpg.c:458 msgid "list keys and signatures" msgstr "lista claves y firmas" -#: g10/gpg.c:460 +#: g10/gpg.c:461 msgid "list and check key signatures" msgstr "lista y comprueba firmas de las claves" -#: g10/gpg.c:462 sm/gpgsm.c:224 +#: g10/gpg.c:463 sm/gpgsm.c:224 msgid "list keys and fingerprints" msgstr "lista claves y huellas dactilares" -#: g10/gpg.c:463 sm/gpgsm.c:222 +#: g10/gpg.c:464 sm/gpgsm.c:222 msgid "list secret keys" msgstr "lista claves secretas" -#: g10/gpg.c:465 sm/gpgsm.c:225 +#: g10/gpg.c:466 sm/gpgsm.c:225 msgid "generate a new key pair" msgstr "genera un nuevo par de claves" -#: g10/gpg.c:468 +#: g10/gpg.c:469 msgid "quickly generate a new key pair" msgstr "genera un nuevo par de claves en modo rápido" -#: g10/gpg.c:471 +#: g10/gpg.c:472 msgid "quickly add a new user-id" msgstr "añade una nueva id de usuario en modo rápido" -#: g10/gpg.c:476 +#: g10/gpg.c:477 msgid "quickly revoke a user-id" msgstr "revoca una id de usuario en modo rápido" -#: g10/gpg.c:479 +#: g10/gpg.c:480 msgid "quickly set a new expiration date" msgstr "cambia la fecha de caducidad de modo rápido" -#: g10/gpg.c:482 +#: g10/gpg.c:483 msgid "full featured key pair generation" msgstr "generación de claves con todas las funcionalidades" -#: g10/gpg.c:485 +#: g10/gpg.c:486 msgid "generate a revocation certificate" msgstr "genera un certificado de revocación" -#: g10/gpg.c:488 sm/gpgsm.c:228 +#: g10/gpg.c:489 sm/gpgsm.c:228 msgid "remove keys from the public keyring" msgstr "elimina claves del anillo público" -#: g10/gpg.c:490 +#: g10/gpg.c:491 msgid "remove keys from the secret keyring" msgstr "elimina claves del anillo privado" -#: g10/gpg.c:492 +#: g10/gpg.c:493 msgid "quickly sign a key" msgstr "firma una clave en modo rápido" -#: g10/gpg.c:494 +#: g10/gpg.c:495 msgid "quickly sign a key locally" msgstr "firma una clave localmente en modo rápido" -#: g10/gpg.c:496 +#: g10/gpg.c:497 #, fuzzy #| msgid "quickly revoke a user-id" msgid "quickly revoke a key signature" msgstr "revoca una id de usuario en modo rápido" -#: g10/gpg.c:497 +#: g10/gpg.c:498 msgid "sign a key" msgstr "firma la clave" -#: g10/gpg.c:498 +#: g10/gpg.c:499 msgid "sign a key locally" msgstr "firma la clave localmente" -#: g10/gpg.c:499 +#: g10/gpg.c:500 msgid "sign or edit a key" msgstr "firma o modifica una clave" -#: g10/gpg.c:501 sm/gpgsm.c:246 +#: g10/gpg.c:502 sm/gpgsm.c:246 msgid "change a passphrase" msgstr "cambia una frase contraseña" -#: g10/gpg.c:505 +#: g10/gpg.c:506 msgid "export keys" msgstr "exporta claves" -#: g10/gpg.c:506 +#: g10/gpg.c:507 msgid "export keys to a keyserver" msgstr "exporta claves a un servidor de claves" -#: g10/gpg.c:507 +#: g10/gpg.c:508 msgid "import keys from a keyserver" msgstr "importa claves desde un servidor de claves" -#: g10/gpg.c:510 +#: g10/gpg.c:511 msgid "search for keys on a keyserver" msgstr "busca claves en un servidor de claves" -#: g10/gpg.c:512 +#: g10/gpg.c:513 msgid "update all keys from a keyserver" msgstr "actualiza todas las claves desde un servidor de claves" -#: g10/gpg.c:520 +#: g10/gpg.c:521 msgid "import/merge keys" msgstr "importa/fusiona claves" -#: g10/gpg.c:523 +#: g10/gpg.c:524 msgid "print the card status" msgstr "escribir estado de la tarjeta" -#: g10/gpg.c:524 +#: g10/gpg.c:525 msgid "change data on a card" msgstr "cambiar datos en la tarjeta" -#: g10/gpg.c:526 +#: g10/gpg.c:527 msgid "change a card's PIN" msgstr "cambiar el PIN de la tarjeta" -#: g10/gpg.c:538 +#: g10/gpg.c:539 msgid "update the trust database" msgstr "actualiza la base de datos de confianza" -#: g10/gpg.c:548 +#: g10/gpg.c:549 msgid "print message digests" msgstr "imprime resúmenes de mensaje" -#: g10/gpg.c:552 sm/gpgsm.c:241 +#: g10/gpg.c:553 sm/gpgsm.c:241 msgid "run in server mode" msgstr "ejecutar en modo servidor" -#: g10/gpg.c:554 +#: g10/gpg.c:555 msgid "|VALUE|set the TOFU policy for a key" msgstr "|VALUE|decide la política TOFU de una clave" -#: g10/gpg.c:594 +#: g10/gpg.c:595 msgid "|NAME|use NAME as default secret key" msgstr "|NAME|usa NOMBRE como clave secreta por defecto" -#: g10/gpg.c:596 sm/gpgsm.c:332 +#: g10/gpg.c:597 sm/gpgsm.c:332 msgid "|NAME|encrypt to user ID NAME as well" msgstr "|NAME|cifra para el ususario NOMBRE también" -#: g10/gpg.c:604 +#: g10/gpg.c:605 msgid "|SPEC|set up email aliases" msgstr "|SPEC|establecer alias de email" -#: g10/gpg.c:616 +#: g10/gpg.c:617 msgid "use strict OpenPGP behavior" msgstr "usar estilo OpenPGP estricto" -#: g10/gpg.c:641 kbx/kbxutil.c:90 sm/gpgsm.c:412 tools/gpgconf.c:112 +#: g10/gpg.c:642 kbx/kbxutil.c:90 sm/gpgsm.c:412 tools/gpgconf.c:112 msgid "do not make any changes" msgstr "no hace ningún cambio" -#: g10/gpg.c:642 +#: g10/gpg.c:643 msgid "prompt before overwriting" msgstr "preguntar antes de sobreescribir" -#: g10/gpg.c:689 sm/gpgsm.c:304 +#: g10/gpg.c:690 sm/gpgsm.c:304 #, fuzzy #| msgid "Options controlling the security" msgid "Options controlling the input" msgstr "Opciones que controlan la seguridad" -#: g10/gpg.c:707 sm/gpgsm.c:314 +#: g10/gpg.c:708 sm/gpgsm.c:314 #, fuzzy #| msgid "Options controlling the diagnostic output" msgid "Options controlling the output" msgstr "Opciones que controlan la salida de diagnósticos" -#: g10/gpg.c:709 sm/gpgsm.c:316 +#: g10/gpg.c:710 sm/gpgsm.c:316 msgid "create ascii armored output" msgstr "crea una salida ascii con armadura" -#: g10/gpg.c:713 g10/gpgv.c:82 sm/gpgsm.c:321 +#: g10/gpg.c:714 g10/gpgv.c:82 sm/gpgsm.c:321 msgid "|FILE|write output to FILE" msgstr "|FILE|volcar salida en FICHERO" -#: g10/gpg.c:726 +#: g10/gpg.c:727 msgid "use canonical text mode" msgstr "usa modo de texto canónico" -#: g10/gpg.c:743 +#: g10/gpg.c:744 msgid "|N|set compress level to N (0 disables)" msgstr "|N|nivel de compresión N (0 desactiva)" -#: g10/gpg.c:750 sm/gpgsm.c:347 +#: g10/gpg.c:751 sm/gpgsm.c:347 #, fuzzy #| msgid "Options controlling the interactivity and enforcement" msgid "Options controlling key import and export" msgstr "Opciones que controlan la interactividad y obligación" -#: g10/gpg.c:753 +#: g10/gpg.c:754 msgid "|MECHANISMS|use MECHANISMS to locate keys by mail address" msgstr "|MECHANISMS|usa MECANISMOS para encontrar claves por emails" -#: g10/gpg.c:756 +#: g10/gpg.c:757 #, fuzzy #| msgid "import keys from a keyserver" msgid "import missing key from a signature" msgstr "importa claves desde un servidor de claves" -#: g10/gpg.c:761 +#: g10/gpg.c:762 #, fuzzy #| msgid "list and check key signatures" msgid "include the public key in signatures" msgstr "lista y comprueba firmas de las claves" -#: g10/gpg.c:764 sm/gpgsm.c:350 +#: g10/gpg.c:765 sm/gpgsm.c:350 msgid "disable all access to the dirmngr" msgstr "prohibir todo acceso al dirmngr" -#: g10/gpg.c:776 sm/gpgsm.c:357 +#: g10/gpg.c:777 sm/gpgsm.c:357 #, fuzzy #| msgid "Options controlling the configuration" msgid "Options controlling key listings" msgstr "Opciones que controlan la configuración" -#: g10/gpg.c:805 sm/gpgsm.c:324 +#: g10/gpg.c:806 sm/gpgsm.c:324 #, fuzzy #| msgid "list secret keys" msgid "Options to specify keys" msgstr "lista claves secretas" -#: g10/gpg.c:807 sm/gpgsm.c:326 +#: g10/gpg.c:808 sm/gpgsm.c:326 msgid "|USER-ID|encrypt for USER-ID" msgstr "|USER-ID|cifra para ID-USUARIO" -#: g10/gpg.c:815 sm/gpgsm.c:328 +#: g10/gpg.c:816 sm/gpgsm.c:328 msgid "|USER-ID|use USER-ID to sign or decrypt" msgstr "|USER-ID|usa este identificador para firmar o descifrar" -#: g10/gpg.c:866 sm/gpgsm.c:396 +#: g10/gpg.c:867 sm/gpgsm.c:396 msgid "Options for unattended use" msgstr "" -#: g10/gpg.c:885 sm/gpgsm.c:408 dirmngr/dirmngr.c:294 +#: g10/gpg.c:886 sm/gpgsm.c:408 dirmngr/dirmngr.c:294 msgid "Other options" msgstr "" @@ -2938,7 +2944,7 @@ # página man -> página de manual # Vale. ¿del manual mejor? # Hmm, no sé, en man-db se usa "de". La verdad es que no lo he pensado. -#: g10/gpg.c:953 sm/gpgsm.c:440 +#: g10/gpg.c:955 sm/gpgsm.c:440 msgid "" "@\n" "(See the man page for a complete listing of all commands and options)\n" @@ -2946,7 +2952,7 @@ "@\n" "(Véase en la página del manual la lista completo de órdenes y opciones)\n" -#: g10/gpg.c:956 +#: g10/gpg.c:958 msgid "" "@\n" "Examples:\n" @@ -2966,11 +2972,11 @@ " --list-keys [nombres] muestra las claves\n" " --fingerprint [nombres] muestra las huellas dactilares\n" -#: g10/gpg.c:1130 +#: g10/gpg.c:1139 msgid "Usage: @GPG@ [options] [files] (-h for help)" msgstr "Uso: @GPG@ [opciones] [ficheros] (-h para ayuda)" -#: g10/gpg.c:1133 +#: g10/gpg.c:1142 msgid "" "Syntax: @GPG@ [options] [files]\n" "Sign, check, encrypt or decrypt\n" @@ -2980,7 +2986,7 @@ "firma, comprueba, cifra o descifra\n" "la operación por defecto depende de los datos de entrada\n" -#: g10/gpg.c:1144 sm/gpgsm.c:624 +#: g10/gpg.c:1153 sm/gpgsm.c:624 msgid "" "\n" "Supported algorithms:\n" @@ -2988,73 +2994,73 @@ "\n" "Algoritmos disponibles:\n" -#: g10/gpg.c:1147 +#: g10/gpg.c:1156 msgid "Pubkey: " msgstr "Clave pública: " -#: g10/gpg.c:1154 g10/keyedit.c:3338 +#: g10/gpg.c:1163 g10/keyedit.c:3338 msgid "Cipher: " msgstr "Cifrado: " -#: g10/gpg.c:1161 +#: g10/gpg.c:1170 msgid "Hash: " msgstr "Resumen: " -#: g10/gpg.c:1168 g10/keyedit.c:3404 +#: g10/gpg.c:1177 g10/keyedit.c:3404 msgid "Compression: " msgstr "Compresión: " -#: g10/gpg.c:1241 sm/gpgsm.c:698 +#: g10/gpg.c:1250 sm/gpgsm.c:698 #, c-format msgid "usage: %s [options] %s\n" msgstr "uso: %s [opciones] %s\n" -#: g10/gpg.c:1436 sm/gpgsm.c:791 +#: g10/gpg.c:1445 sm/gpgsm.c:791 #, c-format msgid "conflicting commands\n" msgstr "órdenes incompatibles\n" -#: g10/gpg.c:1454 +#: g10/gpg.c:1463 #, c-format msgid "no = sign found in group definition '%s'\n" msgstr "no se encontró el signo = en la definición de grupo '%s'\n" -#: g10/gpg.c:1652 +#: g10/gpg.c:1661 #, c-format msgid "WARNING: unsafe ownership on homedir '%s'\n" msgstr "AVISO: propiedad insegura del directorio personal '%s'\n" -#: g10/gpg.c:1655 +#: g10/gpg.c:1664 #, c-format msgid "WARNING: unsafe ownership on configuration file '%s'\n" msgstr "AVISO: propiedad insegura del fichero de configuración '%s'\n" -#: g10/gpg.c:1658 +#: g10/gpg.c:1667 #, c-format msgid "WARNING: unsafe ownership on extension '%s'\n" msgstr "AVISO: propiedad insegura de la extensión '%s'\n" -#: g10/gpg.c:1664 +#: g10/gpg.c:1673 #, c-format msgid "WARNING: unsafe permissions on homedir '%s'\n" msgstr "AVISO: permisos inseguros del directorio personal '%s'\n" -#: g10/gpg.c:1667 +#: g10/gpg.c:1676 #, c-format msgid "WARNING: unsafe permissions on configuration file '%s'\n" msgstr "AVISO: permisos inseguros del fichero de configuración '%s'\n" -#: g10/gpg.c:1670 +#: g10/gpg.c:1679 #, c-format msgid "WARNING: unsafe permissions on extension '%s'\n" msgstr "AVISO: permisos inseguros de la extensión '%s'\n" -#: g10/gpg.c:1676 +#: g10/gpg.c:1685 #, c-format msgid "WARNING: unsafe enclosing directory ownership on homedir '%s'\n" msgstr "AVISO: propiedad insegura del directorio contenedor de '%s'\n" -#: g10/gpg.c:1679 +#: g10/gpg.c:1688 #, c-format msgid "" "WARNING: unsafe enclosing directory ownership on configuration file '%s'\n" @@ -3062,18 +3068,18 @@ "AVISO: propiedad insegura del directorio contenedor del fichero de\n" "configuración '%s'\n" -#: g10/gpg.c:1682 +#: g10/gpg.c:1691 #, c-format msgid "WARNING: unsafe enclosing directory ownership on extension '%s'\n" msgstr "" "AVISO: propiedad insegura del directorio contenedor de la extensión '%s'\n" -#: g10/gpg.c:1688 +#: g10/gpg.c:1697 #, c-format msgid "WARNING: unsafe enclosing directory permissions on homedir '%s'\n" msgstr "AVISO: permisos inseguros del directorio contenedor de '%s'\n" -#: g10/gpg.c:1691 +#: g10/gpg.c:1700 #, c-format msgid "" "WARNING: unsafe enclosing directory permissions on configuration file '%s'\n" @@ -3081,430 +3087,430 @@ "AVISO: permisos inseguros del directorio contenedor del fichero de\n" "configuración '%s'\n" -#: g10/gpg.c:1694 +#: g10/gpg.c:1703 #, c-format msgid "WARNING: unsafe enclosing directory permissions on extension '%s'\n" msgstr "" "AVISO: permisos inseguros del directorio contenedor de la extensión '%s'\n" -#: g10/gpg.c:1910 +#: g10/gpg.c:1919 #, c-format msgid "unknown configuration item '%s'\n" msgstr "artículo de configuración desconocido '%s'\n" -#: g10/gpg.c:2009 +#: g10/gpg.c:2018 msgid "display photo IDs during key listings" msgstr "mostrar foto IDs al listar claves" -#: g10/gpg.c:2011 +#: g10/gpg.c:2020 msgid "show key usage information during key listings" msgstr "mostrar información de uso de las claves al listarlas" -#: g10/gpg.c:2013 +#: g10/gpg.c:2022 msgid "show policy URLs during signature listings" msgstr "mostrar URLS de política al listar firmas" -#: g10/gpg.c:2015 +#: g10/gpg.c:2024 msgid "show all notations during signature listings" msgstr "mostrar todas las notaciones al listar firmas" -#: g10/gpg.c:2017 +#: g10/gpg.c:2026 msgid "show IETF standard notations during signature listings" msgstr "mostrar notaciones estándar IETF al listar firmas" -#: g10/gpg.c:2021 +#: g10/gpg.c:2030 msgid "show user-supplied notations during signature listings" msgstr "mostrar notaciones personalizadas al listar firmas" -#: g10/gpg.c:2023 +#: g10/gpg.c:2032 msgid "show preferred keyserver URLs during signature listings" msgstr "mostrar URL del servidor de claves preferido al listar firmas" -#: g10/gpg.c:2025 +#: g10/gpg.c:2034 msgid "show user ID validity during key listings" msgstr "mostrar validez de la ID de usuario al listar claves" -#: g10/gpg.c:2027 +#: g10/gpg.c:2036 msgid "show revoked and expired user IDs in key listings" msgstr "mostar IDs de usuario revocados y caducados al listar firmas" -#: g10/gpg.c:2029 +#: g10/gpg.c:2038 msgid "show revoked and expired subkeys in key listings" msgstr "mostrar subclaves revocadas y expiradas al listar claves" -#: g10/gpg.c:2031 +#: g10/gpg.c:2040 msgid "show the keyring name in key listings" msgstr "mostrar nombre de los anillos de claves al listar claves" -#: g10/gpg.c:2033 +#: g10/gpg.c:2042 msgid "show expiration dates during signature listings" msgstr "mostrar fechas de caducidad al listar firmas" -#: g10/gpg.c:2148 +#: g10/gpg.c:2157 #, c-format msgid "unknown TOFU policy '%s'\n" msgstr "política TOFU desconocida '%s'\n" -#: g10/gpg.c:2150 +#: g10/gpg.c:2159 #, c-format msgid "(use \"help\" to list choices)\n" msgstr "(usa \"ayuda\" para listar las opciones)\n" -#: g10/gpg.c:2240 g10/keyedit.c:1719 +#: g10/gpg.c:2249 g10/keyedit.c:1719 #, c-format msgid "This command is not allowed while in %s mode.\n" msgstr "Esta orden no se permite en modo %s.\n" -#: g10/gpg.c:2878 g10/gpg.c:3718 g10/gpg.c:3730 +#: g10/gpg.c:2896 g10/gpg.c:3736 g10/gpg.c:3748 #, c-format msgid "Note: %s is not for normal use!\n" msgstr "NOTA: ¡%s no es para uso normal!\n" -#: g10/gpg.c:3053 g10/gpg.c:3065 +#: g10/gpg.c:3071 g10/gpg.c:3083 #, c-format msgid "'%s' is not a valid signature expiration\n" msgstr "'%s' no es una fecha de caducidad de firma válida\n" -#: g10/gpg.c:3087 +#: g10/gpg.c:3105 #, c-format msgid "\"%s\" is not a proper mail address\n" msgstr "\"%s\" no es una dirección de email válida\n" -#: g10/gpg.c:3119 sm/gpgsm.c:1121 +#: g10/gpg.c:3137 sm/gpgsm.c:1121 #, c-format msgid "invalid pinentry mode '%s'\n" msgstr "modo de entrada de pin inválido '%s'\n" -#: g10/gpg.c:3125 sm/gpgsm.c:1127 +#: g10/gpg.c:3143 sm/gpgsm.c:1127 #, c-format msgid "invalid request origin '%s'\n" msgstr "origen incorrecto de la consulta '%s'\n" -#: g10/gpg.c:3179 +#: g10/gpg.c:3197 #, c-format msgid "'%s' is not a valid character set\n" msgstr "'%s' no es un juego de caracteres válido\n" -#: g10/gpg.c:3201 g10/gpg.c:3415 g10/keyedit.c:5338 +#: g10/gpg.c:3219 g10/gpg.c:3433 g10/keyedit.c:5338 #, c-format msgid "could not parse keyserver URL\n" msgstr "no se puede interpretar la URL del servidor de claves\n" -#: g10/gpg.c:3219 +#: g10/gpg.c:3237 #, c-format msgid "%s:%d: invalid keyserver options\n" msgstr "%s:%d: opciones del servidor de claves inválidas\n" -#: g10/gpg.c:3222 +#: g10/gpg.c:3240 #, c-format msgid "invalid keyserver options\n" msgstr "opciones del servidor de claves inválidas\n" -#: g10/gpg.c:3229 +#: g10/gpg.c:3247 #, c-format msgid "%s:%d: invalid import options\n" msgstr "%s:%d: opciones de importación inválidas\n" -#: g10/gpg.c:3232 +#: g10/gpg.c:3250 #, c-format msgid "invalid import options\n" msgstr "opciones de importación inválidas\n" -#: g10/gpg.c:3238 g10/gpg.c:3253 +#: g10/gpg.c:3256 g10/gpg.c:3271 #, c-format msgid "invalid filter option: %s\n" msgstr "opción de filtro inválida: %s\n" -#: g10/gpg.c:3244 +#: g10/gpg.c:3262 #, c-format msgid "%s:%d: invalid export options\n" msgstr "%s:%d: opciones de exportación inválidas\n" -#: g10/gpg.c:3247 +#: g10/gpg.c:3265 #, c-format msgid "invalid export options\n" msgstr "opciones de exportación inválidas\n" -#: g10/gpg.c:3259 +#: g10/gpg.c:3277 #, c-format msgid "%s:%d: invalid list options\n" msgstr "%s:%d: lista de opciones inválida\n" -#: g10/gpg.c:3262 +#: g10/gpg.c:3280 #, c-format msgid "invalid list options\n" msgstr "lista de opciones inválida\n" -#: g10/gpg.c:3270 +#: g10/gpg.c:3288 msgid "display photo IDs during signature verification" msgstr "mostrar foto IDs al verificar firmas" -#: g10/gpg.c:3272 +#: g10/gpg.c:3290 msgid "show policy URLs during signature verification" msgstr "mostrar URLs de política al verificar firmas" -#: g10/gpg.c:3274 +#: g10/gpg.c:3292 msgid "show all notations during signature verification" msgstr "mostrar todas las notaciones al verificar firmas" -#: g10/gpg.c:3276 +#: g10/gpg.c:3294 msgid "show IETF standard notations during signature verification" msgstr "mostrar notaciones estándar IETF al verificar firmas" -#: g10/gpg.c:3280 +#: g10/gpg.c:3298 msgid "show user-supplied notations during signature verification" msgstr "mostrar notaciones personalizadas al verificar firmas" -#: g10/gpg.c:3282 +#: g10/gpg.c:3300 msgid "show preferred keyserver URLs during signature verification" msgstr "mostrar URLs del servidor de claves preferido al verificar firmas" -#: g10/gpg.c:3284 +#: g10/gpg.c:3302 msgid "show user ID validity during signature verification" msgstr "mostrar validez del ID de usuario al verificar firmas" -#: g10/gpg.c:3286 +#: g10/gpg.c:3304 msgid "show revoked and expired user IDs in signature verification" msgstr "mostrar IDs de usuario revocados y caducados al verificar firmas" -#: g10/gpg.c:3288 +#: g10/gpg.c:3306 msgid "show only the primary user ID in signature verification" msgstr "mostrar solo ID primario de usuario al verificar firmas" -#: g10/gpg.c:3290 +#: g10/gpg.c:3308 msgid "validate signatures with PKA data" msgstr "validar firmas con datos PKA" -#: g10/gpg.c:3292 +#: g10/gpg.c:3310 msgid "elevate the trust of signatures with valid PKA data" msgstr "aumentar confianza en las firmas con datos válidos PKA" -#: g10/gpg.c:3299 +#: g10/gpg.c:3317 #, c-format msgid "%s:%d: invalid verify options\n" msgstr "%s:%d: opciones de verificación inválidas\n" -#: g10/gpg.c:3302 +#: g10/gpg.c:3320 #, c-format msgid "invalid verify options\n" msgstr "opciones de verificación inválidas\n" -#: g10/gpg.c:3309 +#: g10/gpg.c:3327 #, c-format msgid "unable to set exec-path to %s\n" msgstr "imposible establecer camino de ejecutables %s\n" -#: g10/gpg.c:3513 +#: g10/gpg.c:3531 #, c-format msgid "%s:%d: invalid auto-key-locate list\n" msgstr "%s:%d: lista de auto-localización de claves inválida\n" -#: g10/gpg.c:3516 +#: g10/gpg.c:3534 #, c-format msgid "invalid auto-key-locate list\n" msgstr "lista de auto-localización de claves inválida\n" -#: g10/gpg.c:3700 sm/gpgsm.c:1492 +#: g10/gpg.c:3718 sm/gpgsm.c:1492 #, c-format msgid "WARNING: program may create a core file!\n" msgstr "ATENCIÓN: ¡el programa podría volcar un fichero core!\n" -#: g10/gpg.c:3711 +#: g10/gpg.c:3729 #, c-format msgid "WARNING: %s overrides %s\n" msgstr "AVISO: %s sustituye a %s\n" -#: g10/gpg.c:3720 +#: g10/gpg.c:3738 #, c-format msgid "%s not allowed with %s!\n" msgstr "¡%s no permitido con %s!\n" -#: g10/gpg.c:3723 +#: g10/gpg.c:3741 #, c-format msgid "%s makes no sense with %s!\n" msgstr "¡%s no tiene sentido con %s!\n" -#: g10/gpg.c:3738 sm/gpgsm.c:1509 dirmngr/dirmngr.c:1205 +#: g10/gpg.c:3756 sm/gpgsm.c:1509 dirmngr/dirmngr.c:1205 #, c-format msgid "WARNING: running with faked system time: " msgstr "AVISO: ejecutándose con hora del sistema falsificada " -#: g10/gpg.c:3759 +#: g10/gpg.c:3777 #, c-format msgid "will not run with insecure memory due to %s\n" msgstr "no se ejecutará en memoria insegura por %s\n" -#: g10/gpg.c:3804 g10/gpg.c:3828 sm/gpgsm.c:1579 +#: g10/gpg.c:3824 g10/gpg.c:3848 sm/gpgsm.c:1579 #, c-format msgid "selected cipher algorithm is invalid\n" msgstr "el algoritmo de cifrado seleccionado es inválido\n" -#: g10/gpg.c:3816 +#: g10/gpg.c:3836 #, c-format msgid "selected compression algorithm is invalid\n" msgstr "el algoritmo de compresión seleccionado es inválido\n" -#: g10/gpg.c:3822 +#: g10/gpg.c:3842 #, c-format msgid "selected certification digest algorithm is invalid\n" msgstr "el algoritmo de certificación por resumen elegido es inválido\n" -#: g10/gpg.c:3837 +#: g10/gpg.c:3857 #, c-format msgid "completes-needed must be greater than 0\n" msgstr "completes-needed debe ser mayor que 0\n" -#: g10/gpg.c:3839 +#: g10/gpg.c:3859 #, c-format msgid "marginals-needed must be greater than 1\n" msgstr "marginals-needed debe ser mayor que 1\n" -#: g10/gpg.c:3841 +#: g10/gpg.c:3861 #, c-format msgid "max-cert-depth must be in the range from 1 to 255\n" msgstr "max-cert-depth debe estar en el rango de 1 a 255\n" -#: g10/gpg.c:3843 +#: g10/gpg.c:3863 #, c-format msgid "invalid default-cert-level; must be 0, 1, 2, or 3\n" msgstr "default-cert-level inválido; debe ser 0, 1, 2, ó 3\n" -#: g10/gpg.c:3845 +#: g10/gpg.c:3865 #, c-format msgid "invalid min-cert-level; must be 1, 2, or 3\n" msgstr "min-cert-level inválido; debe ser 0, 1, 2, ó 3\n" -#: g10/gpg.c:3849 +#: g10/gpg.c:3869 #, c-format msgid "Note: simple S2K mode (0) is strongly discouraged\n" msgstr "NOTA: el modo S2K simple (0) no es nada recomendable\n" -#: g10/gpg.c:3853 +#: g10/gpg.c:3873 #, c-format msgid "invalid S2K mode; must be 0, 1 or 3\n" msgstr "modo S2K incorrecto; debe ser 0, 1 o 3\n" -#: g10/gpg.c:3860 +#: g10/gpg.c:3880 #, c-format msgid "invalid default preferences\n" msgstr "preferencias por defecto inválidas\n" -#: g10/gpg.c:3864 +#: g10/gpg.c:3884 #, c-format msgid "invalid personal cipher preferences\n" msgstr "preferencias personales de cifrado inválidas\n" -#: g10/gpg.c:3868 +#: g10/gpg.c:3888 #, c-format msgid "invalid personal digest preferences\n" msgstr "preferencias personales de algoritmo de resumen inválidas\n" -#: g10/gpg.c:3872 +#: g10/gpg.c:3892 #, c-format msgid "invalid personal compress preferences\n" msgstr "preferencias personales de compresión inválidas\n" -#: g10/gpg.c:3908 +#: g10/gpg.c:3928 #, c-format msgid "%s does not yet work with %s\n" msgstr "%s aún no funciona con %s\n" -#: g10/gpg.c:3971 +#: g10/gpg.c:3991 #, c-format msgid "compression algorithm '%s' may not be used in %s mode\n" msgstr "no puede usar la compresión '%s' en modo %s\n" -#: g10/gpg.c:4115 +#: g10/gpg.c:4135 #, c-format msgid "failed to initialize the TrustDB: %s\n" msgstr "inicialización de la base de datos de confianza fallida: %s\n" -#: g10/gpg.c:4127 +#: g10/gpg.c:4147 #, c-format msgid "WARNING: recipients (-r) given without using public key encryption\n" msgstr "AVISO: se indicaron receptores (-r) sin clave pública de cifrado\n" -#: g10/gpg.c:4199 +#: g10/gpg.c:4219 #, c-format msgid "symmetric encryption of '%s' failed: %s\n" msgstr "el cifrado simétrico de '%s' falló: %s\n" -#: g10/gpg.c:4228 +#: g10/gpg.c:4248 #, c-format msgid "you cannot use --symmetric --encrypt with --s2k-mode 0\n" msgstr "no puede usar --symetric --encrypt con --s2k-mode 0\n" -#: g10/gpg.c:4231 +#: g10/gpg.c:4251 #, c-format msgid "you cannot use --symmetric --encrypt in %s mode\n" msgstr "no puede usar --symmetric --encrypt en modo %s\n" -#: g10/gpg.c:4289 +#: g10/gpg.c:4309 #, c-format msgid "you cannot use --symmetric --sign --encrypt with --s2k-mode 0\n" msgstr "no puede usar --symetric --sign --encrypt con --s2k-mode 0\n" -#: g10/gpg.c:4292 +#: g10/gpg.c:4312 #, c-format msgid "you cannot use --symmetric --sign --encrypt in %s mode\n" msgstr "no puede usar --symmetric --sign --encrypt en modo %s\n" -#: g10/gpg.c:4692 g10/keyserver.c:1648 +#: g10/gpg.c:4712 g10/keyserver.c:1648 #, c-format msgid "keyserver send failed: %s\n" msgstr "envío al servidor de claves fallido: %s\n" -#: g10/gpg.c:4697 +#: g10/gpg.c:4717 #, c-format msgid "keyserver receive failed: %s\n" msgstr "recepción del servidor de claves fallida: %s\n" -#: g10/gpg.c:4703 +#: g10/gpg.c:4723 #, c-format msgid "key export failed: %s\n" msgstr "exportación de clave fallida: %s\n" -#: g10/gpg.c:4716 +#: g10/gpg.c:4736 #, c-format msgid "export as ssh key failed: %s\n" msgstr "exportación como clave ssh fallida: %s\n" -#: g10/gpg.c:4728 +#: g10/gpg.c:4748 #, c-format msgid "keyserver search failed: %s\n" msgstr "búsqueda del servidor de claves fallida: %s\n" -#: g10/gpg.c:4741 +#: g10/gpg.c:4761 #, c-format msgid "keyserver refresh failed: %s\n" msgstr "renovación al servidor de claves fallida: %s\n" -#: g10/gpg.c:4810 +#: g10/gpg.c:4830 #, c-format msgid "dearmoring failed: %s\n" msgstr "eliminación de armadura fallida: %s\n" -#: g10/gpg.c:4821 +#: g10/gpg.c:4841 #, c-format msgid "enarmoring failed: %s\n" msgstr "creación de armadura fallida: %s\n" -#: g10/gpg.c:4913 +#: g10/gpg.c:4933 #, c-format msgid "invalid hash algorithm '%s'\n" msgstr "algoritmo de distribución inválido '%s'\n" -#: g10/gpg.c:5065 g10/tofu.c:2153 +#: g10/gpg.c:5085 g10/tofu.c:2153 #, c-format msgid "error parsing key specification '%s': %s\n" msgstr "error al leer la especificación de clave '%s': %s\n" -#: g10/gpg.c:5078 +#: g10/gpg.c:5098 #, c-format msgid "'%s' does not appear to be a valid key ID, fingerprint or keygrip\n" msgstr "'%s' no parece ser una ID de clave, huella digital o keygrip válido\n" -#: g10/gpg.c:5134 +#: g10/gpg.c:5154 #, c-format msgid "WARNING: no command supplied. Trying to guess what you mean ...\n" msgstr "" @@ -3515,22 +3521,22 @@ # En español no se deja espacio antes de los puntos suspensivos # (Real Academia dixit) :) # Tomo nota :-). Este comentario déjalo siempre. -#: g10/gpg.c:5145 +#: g10/gpg.c:5165 #, c-format msgid "Go ahead and type your message ...\n" msgstr "Adelante, teclee su mensaje...\n" -#: g10/gpg.c:5490 +#: g10/gpg.c:5510 #, c-format msgid "the given certification policy URL is invalid\n" msgstr "URL de política de certificado inválida\n" -#: g10/gpg.c:5492 +#: g10/gpg.c:5512 #, c-format msgid "the given signature policy URL is invalid\n" msgstr "URL de política inválida\n" -#: g10/gpg.c:5525 +#: g10/gpg.c:5545 #, c-format msgid "the given preferred keyserver URL is invalid\n" msgstr "la URL del servidor de claves preferido no es válida\n" @@ -3572,145 +3578,145 @@ msgid "No help available for '%s'" msgstr "No hay ayuda disponible para '%s'" -#: g10/import.c:169 +#: g10/import.c:170 msgid "import signatures that are marked as local-only" msgstr "importar firmas marcadas como sólo locales" -#: g10/import.c:172 +#: g10/import.c:173 msgid "repair damage from the pks keyserver during import" msgstr "reparar daño del servidor de claves públicas al importar" -#: g10/import.c:175 +#: g10/import.c:176 msgid "do not clear the ownertrust values during import" msgstr "no limpiar los valores de confianza durante la importación" -#: g10/import.c:178 +#: g10/import.c:179 msgid "do not update the trustdb after import" msgstr "no actualiza la base de datos de confianza después de importar" -#: g10/import.c:181 +#: g10/import.c:182 msgid "show key during import" msgstr "mostrar la clave durante la importación" -#: g10/import.c:184 +#: g10/import.c:185 msgid "only accept updates to existing keys" msgstr "sólo aceptar actualizaciones de claves ya existentes" -#: g10/import.c:187 +#: g10/import.c:188 msgid "remove unusable parts from key after import" msgstr "borrar partes inútiles de la clave después de importar" -#: g10/import.c:190 +#: g10/import.c:191 msgid "remove as much as possible from key after import" msgstr "borrar tanto como sea posible de la clave tras importar" -#: g10/import.c:193 +#: g10/import.c:194 msgid "ignore key-signatures which are not self-signatures" msgstr "" -#: g10/import.c:196 +#: g10/import.c:197 msgid "run import filters and export key immediately" msgstr "ejecutar filtros de importación y exportar clave inmediatamente" -#: g10/import.c:199 +#: g10/import.c:200 msgid "assume the GnuPG key backup format" msgstr "asumir entrada en formato de backup de clave GnuPG" -#: g10/import.c:203 +#: g10/import.c:204 msgid "repair keys on import" msgstr "reparar claves al importar" -#: g10/import.c:392 g10/import.c:711 +#: g10/import.c:393 g10/import.c:712 #, c-format msgid "skipping block of type %d\n" msgstr "omitiendo bloque de tipo %d\n" -#: g10/import.c:728 +#: g10/import.c:729 #, c-format msgid "%lu keys processed so far\n" msgstr "%lu claves procesadas hasta ahora\n" -#: g10/import.c:814 +#: g10/import.c:815 #, c-format msgid "Total number processed: %lu\n" msgstr "Cantidad total procesada: %lu\n" -#: g10/import.c:817 +#: g10/import.c:818 #, c-format msgid " skipped PGP-2 keys: %lu\n" msgstr " omitidas las claves PGP-2: %lu\n" -#: g10/import.c:819 +#: g10/import.c:820 #, c-format msgid " skipped new keys: %lu\n" msgstr " omitidas nuevas claves: %lu\n" -#: g10/import.c:822 +#: g10/import.c:823 #, c-format msgid " w/o user IDs: %lu\n" msgstr " sin identificador: %lu\n" -#: g10/import.c:825 sm/import.c:130 +#: g10/import.c:826 sm/import.c:130 #, c-format msgid " imported: %lu" msgstr " importadas: %lu" -#: g10/import.c:829 sm/import.c:134 +#: g10/import.c:830 sm/import.c:134 #, c-format msgid " unchanged: %lu\n" msgstr " sin cambios: %lu\n" -#: g10/import.c:831 +#: g10/import.c:832 #, c-format msgid " new user IDs: %lu\n" msgstr " nuevos identificativos: %lu\n" -#: g10/import.c:833 +#: g10/import.c:834 #, c-format msgid " new subkeys: %lu\n" msgstr " nuevas subclaves: %lu\n" -#: g10/import.c:835 +#: g10/import.c:836 #, c-format msgid " new signatures: %lu\n" msgstr " nuevas firmas: %lu\n" -#: g10/import.c:837 +#: g10/import.c:838 #, c-format msgid " new key revocations: %lu\n" msgstr " nuevas revocaciones de claves: %lu\n" -#: g10/import.c:839 sm/import.c:136 +#: g10/import.c:840 sm/import.c:136 #, c-format msgid " secret keys read: %lu\n" msgstr " claves secretas leídas: %lu\n" -#: g10/import.c:841 sm/import.c:138 +#: g10/import.c:842 sm/import.c:138 #, c-format msgid " secret keys imported: %lu\n" msgstr " claves secretas importadas: %lu\n" -#: g10/import.c:843 sm/import.c:140 +#: g10/import.c:844 sm/import.c:140 #, c-format msgid " secret keys unchanged: %lu\n" msgstr " claves secretas sin cambios: %lu\n" -#: g10/import.c:845 sm/import.c:142 +#: g10/import.c:846 sm/import.c:142 #, c-format msgid " not imported: %lu\n" msgstr " no importadas: %lu\n" -#: g10/import.c:847 +#: g10/import.c:848 #, c-format msgid " signatures cleaned: %lu\n" msgstr " firmas limpiadas: %lu\n" -#: g10/import.c:849 +#: g10/import.c:850 #, c-format msgid " user IDs cleaned: %lu\n" msgstr " IDs de usuario limpiados: %lu\n" -#: g10/import.c:1276 +#: g10/import.c:1277 #, c-format msgid "" "WARNING: key %s contains preferences for unavailable\n" @@ -3719,169 +3725,169 @@ "AVISO: la clave %s contiene preferencias para algoritmos\n" "no disponibles en estos IDs de usuario:\n" -#: g10/import.c:1318 +#: g10/import.c:1319 #, c-format msgid " \"%s\": preference for cipher algorithm %s\n" msgstr " \"%s\": algoritmo de cifrado preferido %s\n" -#: g10/import.c:1333 +#: g10/import.c:1334 #, c-format msgid " \"%s\": preference for digest algorithm %s\n" msgstr " \"%s\": algoritmo de resumen preferido %s\n" -#: g10/import.c:1345 +#: g10/import.c:1346 #, c-format msgid " \"%s\": preference for compression algorithm %s\n" msgstr " \"%s\": algoritmo de compresión preferido %s\n" -#: g10/import.c:1358 +#: g10/import.c:1359 #, c-format msgid "it is strongly suggested that you update your preferences and\n" msgstr "se recomienda encarecidamente que actualice sus preferencias y\n" -#: g10/import.c:1360 +#: g10/import.c:1361 #, c-format msgid "re-distribute this key to avoid potential algorithm mismatch problems\n" msgstr "" "redistribuya esta clave para evitar potenciales problemas de\n" "diferencias en los algoritmos.\n" -#: g10/import.c:1385 +#: g10/import.c:1386 #, c-format msgid "you can update your preferences with: gpg --edit-key %s updpref save\n" msgstr "" "puede actualizar sus preferencias con: gpg --edit-key %s updpref save\n" -#: g10/import.c:1899 g10/import.c:3013 +#: g10/import.c:1902 g10/import.c:3028 #, c-format msgid "key %s: no user ID\n" msgstr "clave %s: sin identificador de usuario\n" -#: g10/import.c:1905 +#: g10/import.c:1908 #, c-format msgid "key %s: %s\n" msgstr "clave %s: %s\n" -#: g10/import.c:1906 g10/import.c:2985 +#: g10/import.c:1909 g10/import.c:3000 msgid "rejected by import screener" msgstr "rechazado por el filtro de importación" -#: g10/import.c:1950 +#: g10/import.c:1953 #, c-format msgid "key %s: PKS subkey corruption repaired\n" msgstr "clave %s: reparada la subclave PKS corrompida\n" -#: g10/import.c:1971 +#: g10/import.c:1974 #, c-format msgid "key %s: accepted non self-signed user ID \"%s\"\n" msgstr "clave %s: aceptado ID de usuario sin autofirma \"%s\"\n" -#: g10/import.c:1981 g10/import.c:2012 +#: g10/import.c:1985 g10/import.c:2016 #, c-format msgid "key %s: no valid user IDs\n" msgstr "clave %s: sin identificadores de usuario válidos\n" -#: g10/import.c:1983 +#: g10/import.c:1987 #, c-format msgid "this may be caused by a missing self-signature\n" msgstr "esto puede ser debido a la ausencia de autofirma\n" -#: g10/import.c:2062 g10/import.c:3399 +#: g10/import.c:2066 g10/import.c:3415 #, c-format msgid "key %s: public key not found: %s\n" msgstr "clave %s: clave pública no encontrada: %s\n" -#: g10/import.c:2068 +#: g10/import.c:2072 #, c-format msgid "key %s: new key - skipped\n" msgstr "clave %s: clave nueva - omitida\n" -#: g10/import.c:2080 +#: g10/import.c:2084 #, c-format msgid "no writable keyring found: %s\n" msgstr "anillo de claves no escribible encontrado: %s\n" -#: g10/import.c:2112 g10/import.c:2214 g10/import.c:3476 +#: g10/import.c:2116 g10/import.c:2218 g10/import.c:3492 #, c-format msgid "error writing keyring '%s': %s\n" msgstr "error escribiendo anillo '%s': %s\n" -#: g10/import.c:2135 +#: g10/import.c:2139 #, c-format msgid "key %s: public key \"%s\" imported\n" msgstr "clave %s: clave pública \"%s\" importada\n" -#: g10/import.c:2162 +#: g10/import.c:2166 #, c-format msgid "key %s: doesn't match our copy\n" msgstr "clave %s: no coincide con nuestra copia\n" -#: g10/import.c:2230 +#: g10/import.c:2234 #, c-format msgid "key %s: \"%s\" 1 new user ID\n" msgstr "clave %s: \"%s\" 1 ID de usuario nuevo\n" -#: g10/import.c:2233 +#: g10/import.c:2237 #, c-format msgid "key %s: \"%s\" %d new user IDs\n" msgstr "clave %s: \"%s\" %d nuevos identificadores de usuario\n" -#: g10/import.c:2236 +#: g10/import.c:2240 #, c-format msgid "key %s: \"%s\" 1 new signature\n" msgstr "clave %s: \"%s\" 1 firma nueva\n" -#: g10/import.c:2239 +#: g10/import.c:2243 #, c-format msgid "key %s: \"%s\" %d new signatures\n" msgstr "clave %s: \"%s\" %d firmas nuevas\n" -#: g10/import.c:2242 +#: g10/import.c:2246 #, c-format msgid "key %s: \"%s\" 1 new subkey\n" msgstr "clave %s: \"%s\" 1 subclave nueva\n" -#: g10/import.c:2245 +#: g10/import.c:2249 #, c-format msgid "key %s: \"%s\" %d new subkeys\n" msgstr "clave %s: \"%s\" %d subclaves nuevas\n" -#: g10/import.c:2248 +#: g10/import.c:2252 #, c-format msgid "key %s: \"%s\" %d signature cleaned\n" msgstr "clave %s: \"%s\" %d firmas limpiadas\n" -#: g10/import.c:2251 +#: g10/import.c:2255 #, c-format msgid "key %s: \"%s\" %d signatures cleaned\n" msgstr "clave %s: \"%s\" %d firmas limpiadas\n" -#: g10/import.c:2254 +#: g10/import.c:2258 #, c-format msgid "key %s: \"%s\" %d user ID cleaned\n" msgstr "clave %s: \"%s\" %d identificador de usuario limpiado\n" -#: g10/import.c:2257 +#: g10/import.c:2261 #, c-format msgid "key %s: \"%s\" %d user IDs cleaned\n" msgstr "clave %s: \"%s\" %d identificadores de usuario limpiados\n" -#: g10/import.c:2293 +#: g10/import.c:2297 #, c-format msgid "key %s: \"%s\" not changed\n" msgstr "clave %s: \"%s\" sin cambios\n" -#: g10/import.c:2652 g10/import.c:2847 +#: g10/import.c:2667 g10/import.c:2862 #, c-format msgid "key %s: secret key imported\n" msgstr "clave %s: clave secreta importada\n" -#: g10/import.c:2660 +#: g10/import.c:2675 #, c-format msgid "key %s: secret key already exists\n" msgstr "clave %s: clave secreta ya existe\n" -#: g10/import.c:2668 +#: g10/import.c:2683 #, c-format msgid "key %s: error sending to agent: %s\n" msgstr "clave %s: error enviando al agente: %s\n" @@ -3894,196 +3900,196 @@ #. * Instead, user should be suggested to run 'gpg --card-status', #. * then, references to a card will be automatically created #. * again. -#: g10/import.c:2837 +#: g10/import.c:2852 #, c-format msgid "To migrate '%s', with each smartcard, run: %s\n" msgstr "Para migrar '%s', para cada smartcard ejecuta: %s\n" -#: g10/import.c:2984 +#: g10/import.c:2999 #, c-format msgid "secret key %s: %s\n" msgstr "clave secreta %s: %s\n" -#: g10/import.c:3005 g10/import.c:3044 +#: g10/import.c:3020 g10/import.c:3059 #, c-format msgid "importing secret keys not allowed\n" msgstr "no se permite importar claves secretas\n" -#: g10/import.c:3032 +#: g10/import.c:3047 #, c-format msgid "key %s: secret key with invalid cipher %d - skipped\n" msgstr "clave %s: clave secreta con cifrado incorrecto %d - omitida\n" -#: g10/import.c:3194 g10/pkclist.c:72 g10/revoke.c:776 +#: g10/import.c:3209 g10/pkclist.c:72 g10/revoke.c:776 msgid "No reason specified" msgstr "No se dio ninguna razón" -#: g10/import.c:3195 g10/pkclist.c:74 g10/revoke.c:778 +#: g10/import.c:3210 g10/pkclist.c:74 g10/revoke.c:778 msgid "Key is superseded" msgstr "La clave ha sido reemplazada" -#: g10/import.c:3196 g10/pkclist.c:76 g10/revoke.c:777 +#: g10/import.c:3211 g10/pkclist.c:76 g10/revoke.c:777 msgid "Key has been compromised" msgstr "La clave ha sido comprometida" -#: g10/import.c:3197 g10/pkclist.c:78 g10/revoke.c:779 +#: g10/import.c:3212 g10/pkclist.c:78 g10/revoke.c:779 msgid "Key is no longer used" msgstr "La clave ya no está en uso" -#: g10/import.c:3198 g10/pkclist.c:80 g10/revoke.c:780 +#: g10/import.c:3213 g10/pkclist.c:80 g10/revoke.c:780 msgid "User ID is no longer valid" msgstr "El identificador de usuario ya no es válido" -#: g10/import.c:3323 g10/keylist.c:1258 g10/pkclist.c:84 +#: g10/import.c:3338 g10/keylist.c:1258 g10/pkclist.c:84 #, c-format msgid "reason for revocation: " msgstr "razón para la revocación: " -#: g10/import.c:3342 g10/keylist.c:1277 g10/pkclist.c:100 +#: g10/import.c:3357 g10/keylist.c:1277 g10/pkclist.c:100 #, c-format msgid "revocation comment: " msgstr "comentario a la revocación: " -#: g10/import.c:3392 +#: g10/import.c:3408 #, c-format msgid "key %s: no public key - can't apply revocation certificate\n" msgstr "" "clave %s: falta la clave pública - imposible emplear el\n" "certificado de revocación\n" -#: g10/import.c:3423 +#: g10/import.c:3439 #, c-format msgid "key %s: can't locate original keyblock: %s\n" msgstr "clave %s: no puede localizarse el bloque de claves original: %s\n" -#: g10/import.c:3430 +#: g10/import.c:3446 #, c-format msgid "key %s: can't read original keyblock: %s\n" msgstr "clave %s: no puede leerse el bloque de claves original: %s\n" -#: g10/import.c:3450 +#: g10/import.c:3466 #, c-format msgid "key %s: invalid revocation certificate: %s - rejected\n" msgstr "clave %s: certificado de revocación inválido: %s - rechazado\n" -#: g10/import.c:3485 +#: g10/import.c:3501 #, c-format msgid "key %s: \"%s\" revocation certificate imported\n" msgstr "clave %s: \"%s\" certificado de revocación importado\n" -#: g10/import.c:3571 +#: g10/import.c:3587 #, c-format msgid "key %s: no user ID for signature\n" msgstr "clave %s: no hay identificador de usuario para la firma\n" -#: g10/import.c:3588 +#: g10/import.c:3604 #, c-format msgid "key %s: unsupported public key algorithm on user ID \"%s\"\n" msgstr "clave %s: algoritmo de clave pública no disponible para ID \"%s\"\n" -#: g10/import.c:3590 +#: g10/import.c:3606 #, c-format msgid "key %s: invalid self-signature on user ID \"%s\"\n" msgstr "clave %s: autofirma inválida para el id \"%s\"\n" -#: g10/import.c:3607 g10/import.c:3635 g10/import.c:3691 +#: g10/import.c:3623 g10/import.c:3651 g10/import.c:3707 #, c-format msgid "key %s: unsupported public key algorithm\n" msgstr "clave %s: algoritmo de clave pública no disponible\n" -#: g10/import.c:3608 +#: g10/import.c:3624 #, c-format msgid "key %s: invalid direct key signature\n" msgstr "clave %s: firma directa de clave inválida\n" -#: g10/import.c:3622 +#: g10/import.c:3638 #, c-format msgid "key %s: no subkey for key binding\n" msgstr "clave %s: no hay subclave que unir a la clave\n" -#: g10/import.c:3637 +#: g10/import.c:3653 #, c-format msgid "key %s: invalid subkey binding\n" msgstr "clave %s: unión de subclave inválida\n" -#: g10/import.c:3656 +#: g10/import.c:3672 #, c-format msgid "key %s: removed multiple subkey binding\n" msgstr "clave %s: borrado enlace de subclaves múltiples\n" -#: g10/import.c:3680 +#: g10/import.c:3696 #, c-format msgid "key %s: no subkey for key revocation\n" msgstr "clave %s: no hay subclave para la revocación de clave\n" -#: g10/import.c:3693 +#: g10/import.c:3709 #, c-format msgid "key %s: invalid subkey revocation\n" msgstr "clave %s: revocación de subclave inválida\n" -#: g10/import.c:3708 +#: g10/import.c:3724 #, c-format msgid "key %s: removed multiple subkey revocation\n" msgstr "clave %s: borrada revocación de subclave múltiple\n" -#: g10/import.c:3752 +#: g10/import.c:3771 #, c-format msgid "key %s: skipped user ID \"%s\"\n" msgstr "clave %s: omitido ID de usuario \"%s\"\n" -#: g10/import.c:3779 +#: g10/import.c:3798 #, c-format msgid "key %s: skipped subkey\n" msgstr "clave %s: subclave omitida\n" -#: g10/import.c:3810 +#: g10/import.c:3829 #, c-format msgid "key %s: non exportable signature (class 0x%02X) - skipped\n" msgstr "clave %s: firma no exportable (clase 0x%02X) - omitida\n" -#: g10/import.c:3821 +#: g10/import.c:3840 #, c-format msgid "key %s: revocation certificate at wrong place - skipped\n" msgstr "clave %s: certificado de revocación en lugar equivocado - omitido\n" -#: g10/import.c:3839 +#: g10/import.c:3868 #, c-format msgid "key %s: invalid revocation certificate: %s - skipped\n" msgstr "clave %s: certificado de revocación no valido: %s - omitido\n" -#: g10/import.c:3853 +#: g10/import.c:3892 #, c-format msgid "key %s: subkey signature in wrong place - skipped\n" msgstr "clave %s: firma de subclave en lugar equivocado - omitida\n" -#: g10/import.c:3861 +#: g10/import.c:3900 #, c-format msgid "key %s: unexpected signature class (0x%02X) - skipped\n" msgstr "clave %s: firma de clase (0x%02X) inesperada - omitida\n" -#: g10/import.c:4034 +#: g10/import.c:4073 #, c-format msgid "key %s: duplicated user ID detected - merged\n" msgstr "clave %s: detectado usuario duplicado - fusionada\n" -#: g10/import.c:4099 +#: g10/import.c:4138 #, c-format msgid "WARNING: key %s may be revoked: fetching revocation key %s\n" msgstr "" "AVISO: la clave %s puede estar revocada: recuperando clave de revocación %s\n" -#: g10/import.c:4115 +#: g10/import.c:4154 #, c-format msgid "WARNING: key %s may be revoked: revocation key %s not present.\n" msgstr "" "AVISO: la clave %s puede estar revocada: falta clave de revocación %s.\n" -#: g10/import.c:4181 +#: g10/import.c:4220 #, c-format msgid "key %s: \"%s\" revocation certificate added\n" msgstr "clave %s: \"%s\" certificado de revocación añadido\n" -#: g10/import.c:4219 +#: g10/import.c:4258 #, c-format msgid "key %s: direct key signature added\n" msgstr "clave %s: firma directa de clave añadida\n" @@ -4953,7 +4959,7 @@ msgid "You may not add a photo ID to a PGP2-style key.\n" msgstr "No puede añadir un ID fotográfico a una clave tipo PGP2.\n" -#: g10/keyedit.c:4293 g10/keygen.c:2899 +#: g10/keyedit.c:4293 g10/keygen.c:2953 msgid "Such a user ID already exists on this key!\n" msgstr "¡Ese ID de usuario ya existe en esta clave!\n" @@ -5230,63 +5236,63 @@ msgid "Displaying %s photo ID of size %ld for key %s (uid %d)\n" msgstr "Mostrando ID fotográfico %s de tamaño %ld para la clave %s (uid %d)\n" -#: g10/keygen.c:169 +#: g10/keygen.c:174 #, c-format msgid "invalid value for option '%s'\n" msgstr "parámetro incorrecto para la opción '%s'\n" -#: g10/keygen.c:322 +#: g10/keygen.c:331 #, c-format msgid "preference '%s' duplicated\n" msgstr "preferencia '%s' duplicada\n" -#: g10/keygen.c:329 +#: g10/keygen.c:338 #, c-format msgid "too many cipher preferences\n" msgstr "demasiadas preferencias de cifrado\n" -#: g10/keygen.c:331 +#: g10/keygen.c:340 #, c-format msgid "too many digest preferences\n" msgstr "demasiadas preferencias de resumen\n" -#: g10/keygen.c:333 +#: g10/keygen.c:342 #, c-format msgid "too many compression preferences\n" msgstr "demasiadas preferencias de compresión\n" -#: g10/keygen.c:493 +#: g10/keygen.c:502 #, c-format msgid "invalid item '%s' in preference string\n" msgstr "item incorrecto '%s' en cadena de preferencias\n" -#: g10/keygen.c:972 +#: g10/keygen.c:1020 #, c-format msgid "writing direct signature\n" msgstr "escribiendo firma directa\n" -#: g10/keygen.c:1018 +#: g10/keygen.c:1066 #, c-format msgid "writing self signature\n" msgstr "escribiendo autofirma\n" -#: g10/keygen.c:1075 +#: g10/keygen.c:1123 #, c-format msgid "writing key binding signature\n" msgstr "escribiendo la firma de comprobación de clave\n" -#: g10/keygen.c:1440 g10/keygen.c:1445 g10/keygen.c:1497 g10/keygen.c:1502 -#: g10/keygen.c:1656 g10/keygen.c:1661 +#: g10/keygen.c:1494 g10/keygen.c:1499 g10/keygen.c:1551 g10/keygen.c:1556 +#: g10/keygen.c:1710 g10/keygen.c:1715 #, c-format msgid "keysize invalid; using %u bits\n" msgstr "tamaño de clave incorrecto; se usarán %u bits\n" -#: g10/keygen.c:1451 g10/keygen.c:1508 g10/keygen.c:1516 g10/keygen.c:1667 +#: g10/keygen.c:1505 g10/keygen.c:1562 g10/keygen.c:1570 g10/keygen.c:1721 #, c-format msgid "keysize rounded up to %u bits\n" msgstr "tamaño de clave redondeado a %u bits\n" -#: g10/keygen.c:1542 +#: g10/keygen.c:1596 #, c-format msgid "" "WARNING: some OpenPGP programs can't handle a DSA key with this digest size\n" @@ -5294,19 +5300,19 @@ "AVISO: ciertos programas OpenPGP no usan claves DSAcon resúmenes de este " "tamaño\n" -#: g10/keygen.c:1723 +#: g10/keygen.c:1777 msgid "Sign" msgstr "Firma" -#: g10/keygen.c:1726 +#: g10/keygen.c:1780 msgid "Certify" msgstr "Certificar" -#: g10/keygen.c:1729 +#: g10/keygen.c:1783 msgid "Encrypt" msgstr "Cifrado" -#: g10/keygen.c:1732 +#: g10/keygen.c:1786 msgid "Authenticate" msgstr "Autentificación" @@ -5320,162 +5326,162 @@ #. * a = Toggle authentication capability #. * q = Finish #. -#: g10/keygen.c:1753 +#: g10/keygen.c:1807 msgid "SsEeAaQq" msgstr "FfCcAaSs" -#: g10/keygen.c:1784 +#: g10/keygen.c:1838 #, c-format msgid "Possible actions for a %s key: " msgstr "Posibles accriones para una %s clave: " -#: g10/keygen.c:1790 +#: g10/keygen.c:1844 msgid "Current allowed actions: " msgstr "Acciones permitidas actualmente: " -#: g10/keygen.c:1795 +#: g10/keygen.c:1849 #, c-format msgid " (%c) Toggle the sign capability\n" msgstr " (%c) Conmutar la capacidad de firmar\n" -#: g10/keygen.c:1798 +#: g10/keygen.c:1852 #, c-format msgid " (%c) Toggle the encrypt capability\n" msgstr " (%c) Conmutar la capacidad de cifrado\n" -#: g10/keygen.c:1801 +#: g10/keygen.c:1855 #, c-format msgid " (%c) Toggle the authenticate capability\n" msgstr " (%c) Conmutar la capacidad de autenticación\n" -#: g10/keygen.c:1804 +#: g10/keygen.c:1858 #, c-format msgid " (%c) Finished\n" msgstr " (%c) Acabado\n" -#: g10/keygen.c:1930 +#: g10/keygen.c:1984 #, c-format msgid " (%d) RSA and RSA (default)\n" msgstr " (%d) RSA y RSA (por defecto)\n" -#: g10/keygen.c:1934 +#: g10/keygen.c:1988 #, c-format msgid " (%d) DSA and Elgamal\n" msgstr " (%d) DSA y ElGamal\n" -#: g10/keygen.c:1937 +#: g10/keygen.c:1991 #, c-format msgid " (%d) DSA (sign only)\n" msgstr " (%d) DSA (sólo firmar)\n" -#: g10/keygen.c:1939 +#: g10/keygen.c:1993 #, c-format msgid " (%d) RSA (sign only)\n" msgstr " (%d) RSA (sólo firmar)\n" -#: g10/keygen.c:1945 +#: g10/keygen.c:1999 #, c-format msgid " (%d) Elgamal (encrypt only)\n" msgstr " (%d) ElGamal (sólo cifrar)\n" -#: g10/keygen.c:1947 +#: g10/keygen.c:2001 #, c-format msgid " (%d) RSA (encrypt only)\n" msgstr " (%d) RSA (sólo cifrar)\n" -#: g10/keygen.c:1953 +#: g10/keygen.c:2007 #, c-format msgid " (%d) DSA (set your own capabilities)\n" msgstr " (%d) DSA (permite elegir capacidades)\n" -#: g10/keygen.c:1955 +#: g10/keygen.c:2009 #, c-format msgid " (%d) RSA (set your own capabilities)\n" msgstr " (%d) RSA (permite elegir capacidades)\n" -#: g10/keygen.c:1961 +#: g10/keygen.c:2015 #, c-format msgid " (%d) ECC and ECC\n" msgstr " (%d) ECC y ECC\n" -#: g10/keygen.c:1963 +#: g10/keygen.c:2017 #, c-format msgid " (%d) ECC (sign only)\n" msgstr " (%d) ECC (sólo firmar)\n" -#: g10/keygen.c:1965 +#: g10/keygen.c:2019 #, c-format msgid " (%d) ECC (set your own capabilities)\n" msgstr " (%d) ECC (permite elegir capacidades)\n" -#: g10/keygen.c:1967 +#: g10/keygen.c:2021 #, c-format msgid " (%d) ECC (encrypt only)\n" msgstr " (%d) ECC (sólo cifrar)\n" -#: g10/keygen.c:1971 +#: g10/keygen.c:2025 #, c-format msgid " (%d) Existing key\n" msgstr " (%d) Clave existente\n" -#: g10/keygen.c:1973 +#: g10/keygen.c:2027 #, fuzzy, c-format #| msgid " (%d) Existing key from card\n" msgid " (%d) Existing key from card\n" msgstr " (%d) Clave existente de la tarjeta\n" -#: g10/keygen.c:2069 sm/certreqgen-ui.c:202 +#: g10/keygen.c:2123 sm/certreqgen-ui.c:202 msgid "Enter the keygrip: " msgstr "Introduzca keygrip: " -#: g10/keygen.c:2082 sm/certreqgen-ui.c:210 +#: g10/keygen.c:2136 sm/certreqgen-ui.c:210 msgid "Not a valid keygrip (expecting 40 hex digits)\n" msgstr "No es un keygrip válido (se esperaban 40 dígitos hex)\n" -#: g10/keygen.c:2084 sm/certreqgen-ui.c:212 +#: g10/keygen.c:2138 sm/certreqgen-ui.c:212 msgid "No key with this keygrip\n" msgstr "No hay claves con ese keygrip\n" -#: g10/keygen.c:2103 g10/keygen.c:2113 g10/keygen.c:3216 g10/keygen.c:3227 +#: g10/keygen.c:2157 g10/keygen.c:2167 g10/keygen.c:3270 g10/keygen.c:3281 #: sm/certreqgen-ui.c:230 sm/certreqgen-ui.c:239 #, c-format msgid "error reading the card: %s\n" msgstr "error al leer la tarjeta: %s\n" -#: g10/keygen.c:2107 g10/keygen.c:3220 sm/certreqgen-ui.c:233 +#: g10/keygen.c:2161 g10/keygen.c:3274 sm/certreqgen-ui.c:233 #, c-format msgid "Serial number of the card: %s\n" msgstr "Número de serie de la tarjeta: %s\n" -#: g10/keygen.c:2120 sm/certreqgen-ui.c:245 +#: g10/keygen.c:2174 sm/certreqgen-ui.c:245 msgid "Available keys:\n" msgstr "Claves disponibles:\n" -#: g10/keygen.c:2297 g10/keygen.c:2311 +#: g10/keygen.c:2351 g10/keygen.c:2365 #, c-format msgid "rounded to %u bits\n" msgstr "redondeados a %u bits\n" -#: g10/keygen.c:2352 +#: g10/keygen.c:2406 #, c-format msgid "%s keys may be between %u and %u bits long.\n" msgstr "las claves %s pueden tener entre %u y %u bits de longitud.\n" -#: g10/keygen.c:2360 +#: g10/keygen.c:2414 #, c-format msgid "What keysize do you want for the subkey? (%u) " msgstr "¿De qué tamaño quiere la subclave? (%u) " -#: g10/keygen.c:2377 sm/certreqgen-ui.c:189 +#: g10/keygen.c:2431 sm/certreqgen-ui.c:189 #, c-format msgid "Requested keysize is %u bits\n" msgstr "El tamaño requerido es de %u bits\n" -#: g10/keygen.c:2423 +#: g10/keygen.c:2477 msgid "Please select which elliptic curve you want:\n" msgstr "Seleccione el tipo de curva elíptica deseado:\n" -#: g10/keygen.c:2611 +#: g10/keygen.c:2665 msgid "" "Please specify how long the key should be valid.\n" " 0 = key does not expire\n" @@ -5491,7 +5497,7 @@ " m = la clave caduca en n meses\n" " y = la clave caduca en n años\n" -#: g10/keygen.c:2622 +#: g10/keygen.c:2676 msgid "" "Please specify how long the signature should be valid.\n" " 0 = signature does not expire\n" @@ -5507,38 +5513,38 @@ " m = la clave caduca en n meses\n" " y = la clave caduca en n años\n" -#: g10/keygen.c:2645 +#: g10/keygen.c:2699 msgid "Key is valid for? (0) " msgstr "¿Validez de la clave (0)? " -#: g10/keygen.c:2650 +#: g10/keygen.c:2704 #, c-format msgid "Signature is valid for? (%s) " msgstr "Clave válida ¿durante? (%s) " -#: g10/keygen.c:2663 g10/keygen.c:2688 +#: g10/keygen.c:2717 g10/keygen.c:2742 msgid "invalid value\n" msgstr "valor inválido\n" -#: g10/keygen.c:2670 +#: g10/keygen.c:2724 msgid "Key does not expire at all\n" msgstr "La clave nunca caduca\n" -#: g10/keygen.c:2671 +#: g10/keygen.c:2725 msgid "Signature does not expire at all\n" msgstr "La firma nunca caduca\n" -#: g10/keygen.c:2676 +#: g10/keygen.c:2730 #, c-format msgid "Key expires at %s\n" msgstr "La clave caduca %s\n" -#: g10/keygen.c:2677 +#: g10/keygen.c:2731 #, c-format msgid "Signature expires at %s\n" msgstr "La firma caduca el %s\n" -#: g10/keygen.c:2681 +#: g10/keygen.c:2735 msgid "" "Your system can't display dates beyond 2038.\n" "However, it will be correctly handled up to 2106.\n" @@ -5546,11 +5552,11 @@ "Su sistema no puede mostrar fechas más allá del 2038.\n" "Sin embargo funcionará correctamente hasta el 2106.\n" -#: g10/keygen.c:2694 +#: g10/keygen.c:2748 msgid "Is this correct? (y/N) " msgstr "¿Es correcto? (s/n) " -#: g10/keygen.c:2762 +#: g10/keygen.c:2816 msgid "" "\n" "GnuPG needs to construct a user ID to identify your key.\n" @@ -5564,7 +5570,7 @@ #. but you should keep your existing translation. In case #. the new string is not translated this old string will #. be used. -#: g10/keygen.c:2777 +#: g10/keygen.c:2831 msgid "" "\n" "You need a user ID to identify your key; the software constructs the user " @@ -5580,49 +5586,49 @@ " \"Heinrich Heine (Der Dichter) \"\n" "\n" -#: g10/keygen.c:2796 +#: g10/keygen.c:2850 msgid "Real name: " msgstr "Nombre y apellidos: " -#: g10/keygen.c:2805 +#: g10/keygen.c:2859 msgid "Invalid character in name\n" msgstr "Caracter inválido en el nombre\n" -#: g10/keygen.c:2806 +#: g10/keygen.c:2860 #, c-format msgid "The characters '%s' and '%s' may not appear in name\n" msgstr "Los caracteres '%s' y '%s' no pueden aparecer en el nombre\n" -#: g10/keygen.c:2810 +#: g10/keygen.c:2864 msgid "Name may not start with a digit\n" msgstr "El nombre no puede empezar con un número\n" -#: g10/keygen.c:2813 +#: g10/keygen.c:2867 msgid "Name must be at least 5 characters long\n" msgstr "El nombre debe tener al menos 5 caracteres\n" -#: g10/keygen.c:2823 +#: g10/keygen.c:2877 msgid "Email address: " msgstr "Dirección de correo electrónico: " -#: g10/keygen.c:2829 +#: g10/keygen.c:2883 msgid "Not a valid email address\n" msgstr "Dirección inválida\n" -#: g10/keygen.c:2838 +#: g10/keygen.c:2892 msgid "Comment: " msgstr "Comentario: " -#: g10/keygen.c:2844 +#: g10/keygen.c:2898 msgid "Invalid character in comment\n" msgstr "Caracter inválido en el comentario\n" -#: g10/keygen.c:2880 +#: g10/keygen.c:2934 #, c-format msgid "You are using the '%s' character set.\n" msgstr "Está usando el juego de caracteres '%s'.\n" -#: g10/keygen.c:2886 +#: g10/keygen.c:2940 #, c-format msgid "" "You selected this USER-ID:\n" @@ -5633,7 +5639,7 @@ " \"%s\"\n" "\n" -#: g10/keygen.c:2891 +#: g10/keygen.c:2945 msgid "Please don't put the email address into the real name or the comment\n" msgstr "" "Por favor no ponga la dirección de correo-e en el nombre real o en el " @@ -5650,31 +5656,31 @@ #. o = Okay (ready, continue) #. q = Quit #. -#: g10/keygen.c:2916 +#: g10/keygen.c:2970 msgid "NnCcEeOoQq" msgstr "NnCcDdVvSs" -#: g10/keygen.c:2926 +#: g10/keygen.c:2980 msgid "Change (N)ame, (C)omment, (E)mail or (Q)uit? " msgstr "¿Cambia (N)ombre, (C)omentario, (D)irección o (S)alir? " -#: g10/keygen.c:2927 +#: g10/keygen.c:2981 msgid "Change (N)ame, (C)omment, (E)mail or (O)kay/(Q)uit? " msgstr "¿Cambia (N)ombre, (C)omentario, (D)irección o (V)ale/(S)alir? " -#: g10/keygen.c:2932 +#: g10/keygen.c:2986 msgid "Change (N)ame, (E)mail, or (Q)uit? " msgstr "¿Cambia (N)ombre, (D)irección o (S)alir? " -#: g10/keygen.c:2933 +#: g10/keygen.c:2987 msgid "Change (N)ame, (E)mail, or (O)kay/(Q)uit? " msgstr "¿Cambia (N)ombre, (D)irección o (V)ale/(S)alir? " -#: g10/keygen.c:2952 +#: g10/keygen.c:3006 msgid "Please correct the error first\n" msgstr "Por favor corrija primero el error.\n" -#: g10/keygen.c:2998 +#: g10/keygen.c:3052 msgid "" "We need to generate a lot of random bytes. It is a good idea to perform\n" "some other action (type on the keyboard, move the mouse, utilize the\n" @@ -5687,13 +5693,13 @@ "generador de números aleatorios mayor oportunidad de recoger suficiente\n" "entropía.\n" -#: g10/keygen.c:4278 g10/keygen.c:4349 g10/keygen.c:4367 g10/keygen.c:4395 -#: g10/keygen.c:4739 g10/keygen.c:5239 g10/keygen.c:5534 g10/keygen.c:5639 +#: g10/keygen.c:4332 g10/keygen.c:4403 g10/keygen.c:4421 g10/keygen.c:4449 +#: g10/keygen.c:4793 g10/keygen.c:5293 g10/keygen.c:5588 g10/keygen.c:5693 #, c-format msgid "Key generation failed: %s\n" msgstr "Creación de la clave fallida: %s\n" -#: g10/keygen.c:4287 +#: g10/keygen.c:4341 #, c-format msgid "" "About to create a key for:\n" @@ -5704,64 +5710,64 @@ " \"%s\"\n" "\n" -#: g10/keygen.c:4289 +#: g10/keygen.c:4343 msgid "Continue? (Y/n) " msgstr "¿Continuar? (S/n) " -#: g10/keygen.c:4310 +#: g10/keygen.c:4364 #, c-format msgid "A key for \"%s\" already exists\n" msgstr "Ya existe una clave para \"%s\"\n" -#: g10/keygen.c:4315 +#: g10/keygen.c:4369 msgid "Create anyway? (y/N) " msgstr "¿Crear de todas formas?(s/N) " -#: g10/keygen.c:4321 +#: g10/keygen.c:4375 #, c-format msgid "creating anyway\n" msgstr "creando de todas formas\n" -#: g10/keygen.c:4722 +#: g10/keygen.c:4776 #, c-format msgid "Note: Use \"%s %s\" for a full featured key generation dialog.\n" msgstr "Nota: Usa \"%s %s\" para el diálogo completo de generación de clave.\n" -#: g10/keygen.c:4771 +#: g10/keygen.c:4825 #, c-format msgid "Key generation canceled.\n" msgstr "Creación de claves cancelada.\n" -#: g10/keygen.c:4831 +#: g10/keygen.c:4885 #, c-format msgid "can't create backup file '%s': %s\n" msgstr "no se puede crear fichero de respaldo '%s': %s\n" -#: g10/keygen.c:4851 +#: g10/keygen.c:4905 #, c-format msgid "Note: backup of card key saved to '%s'\n" msgstr "NOTA: copia de seguridad de la clave guardada en '%s'\n" -#: g10/keygen.c:5010 g10/keygen.c:5172 +#: g10/keygen.c:5064 g10/keygen.c:5226 #, c-format msgid "writing public key to '%s'\n" msgstr "escribiendo clave pública en '%s'\n" -#: g10/keygen.c:5166 +#: g10/keygen.c:5220 #, c-format msgid "no writable public keyring found: %s\n" msgstr "anillo público de claves no escribible encontrado: %s\n" -#: g10/keygen.c:5180 +#: g10/keygen.c:5234 #, c-format msgid "error writing public keyring '%s': %s\n" msgstr "error al escribir en el anillo público '%s': %s\n" -#: g10/keygen.c:5210 +#: g10/keygen.c:5264 msgid "public and secret key created and signed.\n" msgstr "claves pública y secreta creadas y firmadas.\n" -#: g10/keygen.c:5226 +#: g10/keygen.c:5280 msgid "" "Note that this key cannot be used for encryption. You may want to use\n" "the command \"--edit-key\" to generate a subkey for this purpose.\n" @@ -5769,7 +5775,7 @@ "Tenga en cuenta que esta clave no puede ser usada para cifrar. Puede usar\n" "la orden \"--edit-key\" para crear una subclave con este propósito.\n" -#: g10/keygen.c:5401 g10/keygen.c:5590 +#: g10/keygen.c:5455 g10/keygen.c:5644 #, c-format msgid "" "key has been created %lu second in future (time warp or clock problem)\n" @@ -5777,7 +5783,7 @@ "clave pública creada %lu segundos en el futuro (salto en el tiempo o\n" "problemas con el reloj)\n" -#: g10/keygen.c:5403 g10/keygen.c:5592 +#: g10/keygen.c:5457 g10/keygen.c:5646 #, c-format msgid "" "key has been created %lu seconds in future (time warp or clock problem)\n" @@ -5785,23 +5791,23 @@ "clave pública creada %lu segundos en el futuro (salto en el tiempo o\n" "problemas con el reloj)\n" -#: g10/keygen.c:5414 g10/keygen.c:5603 +#: g10/keygen.c:5468 g10/keygen.c:5657 #, c-format msgid "Note: creating subkeys for v3 keys is not OpenPGP compliant\n" msgstr "" "Atención: crear subclaves para claves V3 no sigue el estándar OpenPGP\n" -#: g10/keygen.c:5426 g10/keygen.c:5428 +#: g10/keygen.c:5480 g10/keygen.c:5482 #, c-format msgid "Secret parts of primary key are not available.\n" msgstr "Las partes secretas de la clave primaria no están disponibles.\n" -#: g10/keygen.c:5435 g10/keygen.c:5437 +#: g10/keygen.c:5489 g10/keygen.c:5491 #, c-format msgid "Secret parts of primary key are stored on-card.\n" msgstr "Las partes secretas de la clave primaria se guardan en la tarjeta.\n" -#: g10/keygen.c:5456 g10/keygen.c:5617 +#: g10/keygen.c:5510 g10/keygen.c:5671 msgid "Really create? (y/N) " msgstr "¿Crear de verdad? (s/N) " @@ -6890,30 +6896,30 @@ msgid "data not saved; use option \"--output\" to save it\n" msgstr "datos no grabados; use la opción \"--output\" para grabarlos\n" -#: g10/plaintext.c:615 +#: g10/plaintext.c:620 msgid "Detached signature.\n" msgstr "Firma separada.\n" -#: g10/plaintext.c:623 +#: g10/plaintext.c:628 msgid "Please enter name of data file: " msgstr "Introduzca el nombre del fichero de datos: " -#: g10/plaintext.c:660 +#: g10/plaintext.c:665 #, c-format msgid "reading stdin ...\n" msgstr "leyendo stdin...\n" -#: g10/plaintext.c:705 +#: g10/plaintext.c:710 #, c-format msgid "no signed data\n" msgstr "no hay datos firmados\n" -#: g10/plaintext.c:723 +#: g10/plaintext.c:728 #, c-format msgid "can't open signed data '%s'\n" msgstr "imposible abrir datos firmados '%s'\n" -#: g10/plaintext.c:758 +#: g10/plaintext.c:763 #, c-format msgid "can't open signed data fd=%d: %s\n" msgstr "imposible abrir datos firmados fd=%d: %s\n" @@ -7945,7 +7951,7 @@ msgid "no need for a trustdb check\n" msgstr "no es necesaria una comprobación de la base de datos de confianza\n" -#: g10/trustdb.c:631 g10/trustdb.c:2326 +#: g10/trustdb.c:631 g10/trustdb.c:2338 #, c-format msgid "next trustdb check due at %s\n" msgstr "siguiente comprobación de base de datos de confianza el: %s\n" @@ -7979,31 +7985,31 @@ msgid "checking the trustdb\n" msgstr "comprobando base de datos de confianza\n" -#: g10/trustdb.c:2047 +#: g10/trustdb.c:2059 #, c-format msgid "%d key processed" msgid_plural "%d keys processed" msgstr[0] "%d clave procesada" msgstr[1] "%d claves procesadas" -#: g10/trustdb.c:2050 +#: g10/trustdb.c:2062 #, c-format msgid " (%d validity count cleared)\n" msgid_plural " (%d validity counts cleared)\n" msgstr[0] " (%d validación de cuenta borrada)\n" msgstr[1] " (%d validaciones de cuenta borradas)\n" -#: g10/trustdb.c:2120 +#: g10/trustdb.c:2132 #, c-format msgid "no ultimately trusted keys found\n" msgstr "no se encuentran claves absolutamente fiables\n" -#: g10/trustdb.c:2134 +#: g10/trustdb.c:2146 #, c-format msgid "public key of ultimately trusted key %s not found\n" msgstr "clave pública de la clave absolutamente fiable %s no encontrada\n" -#: g10/trustdb.c:2252 +#: g10/trustdb.c:2264 #, c-format msgid "" "depth: %d valid: %3d signed: %3d trust: %d-, %dq, %dn, %dm, %df, %du\n" @@ -8011,7 +8017,7 @@ "nivel: %d validez: %3d firmada: %3d confianza: %d-, %dq, %dn, %dm, %df, " "%du\n" -#: g10/trustdb.c:2333 +#: g10/trustdb.c:2345 #, c-format msgid "unable to update trustdb version record: write failed: %s\n" msgstr "" @@ -8126,72 +8132,78 @@ #. TRANSLATORS: Put a \x1f right before a colon. This can be #. * used by pinentry to nicely align the names and values. Keep #. * the %s at the start and end of the string. -#: scd/app-p15.c:5116 scd/app-openpgp.c:2154 +#: scd/app-p15.c:5145 scd/app-nks.c:1541 scd/app-openpgp.c:2154 #, c-format msgid "%sNumber: %s%%0AHolder: %s%s" msgstr "%sNúmero: %s%%0ATitular: %s%s" #. TRANSLATORS: This is the number of remaining attempts to #. * enter a PIN. Use %%0A (double-percent,0A) for a linefeed. -#: scd/app-p15.c:5135 scd/app-openpgp.c:2170 +#: scd/app-p15.c:5164 scd/app-nks.c:1560 scd/app-openpgp.c:2170 #, c-format msgid "Remaining attempts: %d" msgstr "Intentos disponibles: %d" -#: scd/app-p15.c:5214 scd/app-nks.c:1113 +#: scd/app-p15.c:5243 scd/app-nks.c:2112 msgid "||Please enter the PIN for the key to create qualified signatures." msgstr "||Introduzca un PIN para la clave que crea firmas cualificadas." #. TRANSLATORS: Do not translate the "|A|" prefix but keep it at #. the start of the string. Use %0A (single percent) for a linefeed. -#: scd/app-p15.c:5217 scd/app-openpgp.c:2464 +#: scd/app-p15.c:5246 scd/app-openpgp.c:2465 msgid "|A|Please enter the Admin PIN" msgstr "|A|Por favor introduzca PIN de Administrador" -#: scd/app-p15.c:5219 scd/app-nks.c:1103 +#: scd/app-p15.c:5248 scd/app-nks.c:2102 msgid "|P|Please enter the PIN Unblocking Code (PUK) for the standard keys." msgstr "" "|P|Por favor introduzca PIN Unblocking Code (PUK) para claves estándar." -#: scd/app-p15.c:5222 scd/app-nks.c:1095 +#: scd/app-p15.c:5251 scd/app-nks.c:2093 msgid "||Please enter the PIN for the standard keys." msgstr "||Por favor, introduzca PIN para claves estándar." -#: scd/app-nks.c:709 scd/app-openpgp.c:3666 +#: scd/app-nks.c:1479 scd/app-openpgp.c:3675 #, c-format msgid "RSA modulus missing or not of size %d bits\n" msgstr "falta el módulo RSA o no es de %d bits\n" -#: scd/app-nks.c:717 scd/app-openpgp.c:3678 +#: scd/app-nks.c:1487 scd/app-openpgp.c:3687 #, c-format msgid "RSA public exponent missing or larger than %d bits\n" msgstr "falta el exponente público RSA o es mayor de %d bits\n" -#: scd/app-nks.c:797 scd/app-openpgp.c:2327 scd/app-openpgp.c:2346 -#: scd/app-openpgp.c:2513 scd/app-openpgp.c:2531 scd/app-openpgp.c:2829 -#: scd/app-openpgp.c:2876 scd/app-openpgp.c:2991 scd/app-dinsig.c:302 +#: scd/app-nks.c:1660 +#, fuzzy +#| msgid "the NullPIN has not yet been changed\n" +msgid "Note: PIN has not yet been enabled." +msgstr "el PIN-Nulo no ha sido cambiado\n" + +#: scd/app-nks.c:1671 scd/app-openpgp.c:2327 scd/app-openpgp.c:2346 +#: scd/app-openpgp.c:2515 scd/app-openpgp.c:2533 scd/app-openpgp.c:2832 +#: scd/app-openpgp.c:2879 scd/app-openpgp.c:3000 scd/app-dinsig.c:303 #, c-format msgid "PIN callback returned error: %s\n" msgstr "la función de manejo del PIN devolvió un error: %s\n" -#: scd/app-nks.c:830 +#: scd/app-nks.c:1707 #, c-format msgid "the NullPIN has not yet been changed\n" msgstr "el PIN-Nulo no ha sido cambiado\n" -#: scd/app-nks.c:1094 +#: scd/app-nks.c:2092 msgid "|N|Please enter a new PIN for the standard keys." msgstr "|N|Por favor introduzca un nuevo PIN para las claves estándar." -#: scd/app-nks.c:1101 +#: scd/app-nks.c:2100 msgid "|NP|Please enter a new PIN Unblocking Code (PUK) for the standard keys." msgstr "|NP|Introduzca nuevo PIN Unblocking Code (PUK) para claves estándar." -#: scd/app-nks.c:1111 +#: scd/app-nks.c:2110 msgid "|N|Please enter a new PIN for the key to create qualified signatures." msgstr "|N|Entre un nuevo PIN para la clave que crea firmas cualificadas." -#: scd/app-nks.c:1121 +#: scd/app-nks.c:2120 msgid "" "|NP|Please enter a new PIN Unblocking Code (PUK) for the key to create " "qualified signatures." @@ -8199,7 +8211,7 @@ "|NP|Por favor introduzca un nuevo PIN Unblocking Code (PUK) para la clave " "que crea firmas cualificadas." -#: scd/app-nks.c:1123 +#: scd/app-nks.c:2122 msgid "" "|P|Please enter the PIN Unblocking Code (PUK) for the key to create " "qualified signatures." @@ -8207,7 +8219,7 @@ "|P|Introduzca el PIN Unblocking Code (PUK) para que la clave pueda crear " "firmas cualificadas." -#: scd/app-nks.c:1230 scd/app-openpgp.c:2910 scd/app-dinsig.c:532 +#: scd/app-nks.c:2295 scd/app-openpgp.c:2913 scd/app-dinsig.c:535 #, c-format msgid "error getting new PIN: %s\n" msgstr "error obteniendo nuevo PIN: %s\n" @@ -8222,7 +8234,7 @@ msgid "failed to store the creation date: %s\n" msgstr "fallo guardando la fecha de creación: %s\n" -#: scd/app-openpgp.c:1271 scd/app-openpgp.c:2857 scd/app-openpgp.c:5041 +#: scd/app-openpgp.c:1271 scd/app-openpgp.c:2860 scd/app-openpgp.c:5051 #, c-format msgid "error retrieving CHV status from card\n" msgstr "error recuperando el estatus CHV de la tarjeta\n" @@ -8242,7 +8254,7 @@ msgid "response does not contain the EC public key\n" msgstr "la respuesta no incluye la clave pública EC\n" -#: scd/app-openpgp.c:1664 scd/app-openpgp.c:4286 +#: scd/app-openpgp.c:1664 scd/app-openpgp.c:4295 #, c-format msgid "response does not contain the public key data\n" msgstr "la respuesta no incluye la clave pública\n" @@ -8274,23 +8286,23 @@ msgid "||Please unlock the card" msgstr "||Por favor desbloquee la tarjeta" -#: scd/app-openpgp.c:2353 scd/app-openpgp.c:2538 scd/app-openpgp.c:2836 +#: scd/app-openpgp.c:2353 scd/app-openpgp.c:2540 scd/app-openpgp.c:2839 #, 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:2367 scd/app-openpgp.c:2414 scd/app-openpgp.c:2552 -#: scd/app-openpgp.c:4644 +#: scd/app-openpgp.c:2368 scd/app-openpgp.c:2415 scd/app-openpgp.c:2554 +#: scd/app-openpgp.c:4654 #, c-format msgid "verify CHV%d failed: %s\n" msgstr "la verificación CHV%d falló: %s\n" -#: scd/app-openpgp.c:2450 scd/app-openpgp.c:5050 +#: scd/app-openpgp.c:2451 scd/app-openpgp.c:5060 #, c-format msgid "card is permanently locked!\n" msgstr "¡la tarjeta está bloqueada permanentemente!\n" -#: scd/app-openpgp.c:2454 +#: scd/app-openpgp.c:2455 #, c-format msgid "%d Admin PIN attempt remaining before card is permanently locked\n" msgid_plural "" @@ -8302,20 +8314,20 @@ "%d intentos quedan para PIN de administrador antes de " "bloquearpermanentemente la clave\n" -#: scd/app-openpgp.c:2485 +#: scd/app-openpgp.c:2486 #, c-format msgid "access to admin commands is not configured\n" msgstr "el acceso a órdenes de administrador no está configurado\n" -#: scd/app-openpgp.c:2823 +#: scd/app-openpgp.c:2826 msgid "||Please enter the PIN" msgstr "||Por favor introduzca PIN" -#: scd/app-openpgp.c:2872 +#: scd/app-openpgp.c:2875 msgid "||Please enter the Reset Code for the card" msgstr "||Por favor introduzca Código de Reinicio de la tarjeta" -#: scd/app-openpgp.c:2882 scd/app-openpgp.c:2943 +#: scd/app-openpgp.c:2885 scd/app-openpgp.c:2946 #, c-format msgid "Reset Code is too short; minimum length is %d\n" msgstr "Código de Reinicio demasiado corto; longitud mínima %d\n" @@ -8323,133 +8335,133 @@ #. 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:2905 +#: scd/app-openpgp.c:2908 msgid "|RN|New Reset Code" msgstr "|RN|Nuevo Código de Reinicio" -#: scd/app-openpgp.c:2906 +#: scd/app-openpgp.c:2909 msgid "|AN|New Admin PIN" msgstr "|AN|Nuevo PIN Administrador" -#: scd/app-openpgp.c:2906 +#: scd/app-openpgp.c:2909 msgid "|N|New PIN" msgstr "|N|Nuevo PIN" -#: scd/app-openpgp.c:2987 +#: scd/app-openpgp.c:2996 msgid "||Please enter the Admin PIN and New Admin PIN" msgstr "||Introduzca el PIN de Administrador y el Nuevo PIN de Administrador" -#: scd/app-openpgp.c:2988 +#: scd/app-openpgp.c:2997 msgid "||Please enter the PIN and New PIN" msgstr "||Por favor introduzca el PIN y el Nuevo PIN" -#: scd/app-openpgp.c:3050 scd/app-openpgp.c:4346 +#: scd/app-openpgp.c:3059 scd/app-openpgp.c:4355 #, c-format msgid "error reading application data\n" msgstr "error al leer datos de la aplicación\n" -#: scd/app-openpgp.c:3056 scd/app-openpgp.c:4353 +#: scd/app-openpgp.c:3065 scd/app-openpgp.c:4362 #, c-format msgid "error reading fingerprint DO\n" msgstr "error al leer huella digital DO\n" -#: scd/app-openpgp.c:3066 +#: scd/app-openpgp.c:3075 #, c-format msgid "key already exists\n" msgstr "la clave ya existe\n" -#: scd/app-openpgp.c:3070 +#: scd/app-openpgp.c:3079 #, c-format msgid "existing key will be replaced\n" msgstr "la clave existente será reemplazada\n" -#: scd/app-openpgp.c:3072 +#: scd/app-openpgp.c:3081 #, c-format msgid "generating new key\n" msgstr "generando nueva clave\n" -#: scd/app-openpgp.c:3074 +#: scd/app-openpgp.c:3083 #, c-format msgid "writing new key\n" msgstr "escribiendo clave nueva\n" -#: scd/app-openpgp.c:3647 scd/app-openpgp.c:3999 +#: scd/app-openpgp.c:3656 scd/app-openpgp.c:4008 #, c-format msgid "creation timestamp missing\n" msgstr "falta fecha de creación\n" -#: scd/app-openpgp.c:3688 scd/app-openpgp.c:3696 +#: scd/app-openpgp.c:3697 scd/app-openpgp.c:3705 #, c-format msgid "RSA prime %s missing or not of size %d bits\n" msgstr "el primo RSA %s falta o no es de %d bits\n" -#: scd/app-openpgp.c:3829 scd/app-openpgp.c:4106 +#: scd/app-openpgp.c:3838 scd/app-openpgp.c:4115 #, c-format msgid "failed to store the key: %s\n" msgstr "fallo al almacenar la clave: %s\n" -#: scd/app-openpgp.c:3993 +#: scd/app-openpgp.c:4002 #, c-format msgid "unsupported curve\n" msgstr "curva no soportada\n" -#: scd/app-openpgp.c:4263 +#: scd/app-openpgp.c:4272 #, c-format msgid "please wait while key is being generated ...\n" msgstr "por favor, espere mientras se genera la clave ...\n" -#: scd/app-openpgp.c:4271 +#: scd/app-openpgp.c:4280 #, c-format msgid "generating key failed\n" msgstr "la generación de la clave falló\n" -#: scd/app-openpgp.c:4277 +#: scd/app-openpgp.c:4286 #, c-format msgid "key generation completed (%d second)\n" msgid_plural "key generation completed (%d seconds)\n" msgstr[0] "generación de clave completada (%d segundo)\n" msgstr[1] "generación de clave completada (%d segundos)\n" -#: scd/app-openpgp.c:4311 +#: scd/app-openpgp.c:4320 #, c-format msgid "invalid structure of OpenPGP card (DO 0x93)\n" msgstr "estructura de la tarjeta OpenPGP inválida (DO 0x93)\n" -#: scd/app-openpgp.c:4361 +#: scd/app-openpgp.c:4370 #, c-format msgid "fingerprint on card does not match requested one\n" msgstr "la huella digital en la tarjeta no coincide con la solicitada\n" -#: scd/app-openpgp.c:4560 +#: scd/app-openpgp.c:4569 #, c-format msgid "card does not support digest algorithm %s\n" msgstr "la tarjeta no permite usar el algoritmo de resumen %s\n" -#: scd/app-openpgp.c:4618 +#: scd/app-openpgp.c:4627 #, c-format msgid "signatures created so far: %lu\n" msgstr "firmas creadas hasta ahora: %lu\n" -#: scd/app-openpgp.c:5055 +#: scd/app-openpgp.c:5065 #, c-format msgid "" "verification of Admin PIN is currently prohibited through this command\n" msgstr "" "actualmente se prohibe verificar el PIN del Administrador con esta orden\n" -#: scd/app-openpgp.c:5386 scd/app-openpgp.c:5398 +#: scd/app-openpgp.c:5396 scd/app-openpgp.c:5408 #, c-format msgid "can't access %s - invalid OpenPGP card?\n" msgstr "no se puede acceder a %s - ¿tarjeta OpenPGP inválida?\n" -#: scd/app-dinsig.c:298 +#: scd/app-dinsig.c:299 msgid "||Please enter your PIN at the reader's pinpad" msgstr "||Por favor introduzca su PIN en el teclado del lector" #. 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-dinsig.c:529 +#: scd/app-dinsig.c:532 msgid "|N|Initial New PIN" msgstr "|N|Nuevo PIN Inicial" @@ -8535,11 +8547,11 @@ msgid "validation model requested by certificate: %s" msgstr "el certificado: %s requiere un modelo de validación" -#: sm/certchain.c:199 sm/certchain.c:2164 +#: sm/certchain.c:199 sm/certchain.c:2165 msgid "chain" msgstr "cadena" -#: sm/certchain.c:200 sm/certchain.c:2164 +#: sm/certchain.c:200 sm/certchain.c:2165 msgid "shell" msgstr "shell" @@ -8562,235 +8574,235 @@ msgid "failed to open '%s': %s\n" msgstr "fallo al abrir '%s': %s\n" -#: sm/certchain.c:355 sm/certchain.c:384 dirmngr/validate.c:204 +#: sm/certchain.c:355 sm/certchain.c:385 dirmngr/validate.c:204 #, c-format msgid "Note: non-critical certificate policy not allowed" msgstr "Nota: no se permiten políticas no críticas de certificados" -#: sm/certchain.c:359 sm/certchain.c:388 dirmngr/validate.c:209 +#: sm/certchain.c:359 sm/certchain.c:389 dirmngr/validate.c:209 #, c-format msgid "certificate policy not allowed" msgstr "no se permite política de certificado" -#: sm/certchain.c:595 sm/keydb.c:1084 sm/keydb.c:1171 +#: sm/certchain.c:596 sm/keydb.c:1084 sm/keydb.c:1171 #, c-format msgid "failed to get the fingerprint\n" msgstr "fallo obteniendo huella digital\n" -#: sm/certchain.c:624 +#: sm/certchain.c:625 #, c-format msgid "looking up issuer at external location\n" msgstr "buscando al emisor en una localización externa\n" -#: sm/certchain.c:644 +#: sm/certchain.c:645 #, c-format msgid "number of issuers matching: %d\n" msgstr "numero de emisores coincidentes: %d\n" -#: sm/certchain.c:723 dirmngr/ocsp.c:685 +#: sm/certchain.c:724 dirmngr/ocsp.c:685 #, c-format msgid "can't get authorityInfoAccess: %s\n" msgstr "no se ha podido obtener authorityInfoAccess: %s\n" -#: sm/certchain.c:791 +#: sm/certchain.c:792 #, c-format msgid "looking up issuer from the Dirmngr cache\n" msgstr "buscando emisor en el caché de Dirmngr\n" -#: sm/certchain.c:816 +#: sm/certchain.c:817 #, c-format msgid "number of matching certificates: %d\n" msgstr "número de certificados coincidentes: %d\n" -#: sm/certchain.c:819 +#: sm/certchain.c:820 #, c-format msgid "dirmngr cache-only key lookup failed: %s\n" msgstr "fallo buscando la clave sólo caché de dirmngr: %s\n" -#: sm/certchain.c:1041 sm/certchain.c:1554 sm/certchain.c:2192 sm/decrypt.c:728 +#: sm/certchain.c:1042 sm/certchain.c:1555 sm/certchain.c:2193 sm/decrypt.c:728 #: sm/encrypt.c:345 sm/import.c:415 sm/keydb.c:1091 sm/keydb.c:1178 #: sm/sign.c:337 sm/verify.c:118 #, c-format msgid "failed to allocate keyDB handle\n" msgstr "fallo al reservar handle de keyDB\n" -#: sm/certchain.c:1225 +#: sm/certchain.c:1226 msgid "certificate has been revoked" msgstr "el certificado ha sido revocado" -#: sm/certchain.c:1240 +#: sm/certchain.c:1241 msgid "the status of the certificate is unknown" msgstr "el estado del certificado es desconocido" -#: sm/certchain.c:1247 +#: sm/certchain.c:1248 #, c-format msgid "please make sure that the \"dirmngr\" is properly installed\n" msgstr "por favor asegúrese de que \"dirmngr\" está bien instalado\n" -#: sm/certchain.c:1253 +#: sm/certchain.c:1254 #, c-format msgid "checking the CRL failed: %s" msgstr "la comprobación de CRL falló: %s" -#: sm/certchain.c:1282 sm/certchain.c:1350 dirmngr/validate.c:497 +#: sm/certchain.c:1283 sm/certchain.c:1351 dirmngr/validate.c:497 #, c-format msgid "certificate with invalid validity: %s" msgstr "validez del certificado incorrecta: %s" -#: sm/certchain.c:1297 sm/certchain.c:1382 dirmngr/validate.c:515 +#: sm/certchain.c:1298 sm/certchain.c:1383 dirmngr/validate.c:515 #, c-format msgid "certificate not yet valid" msgstr "el certificado aún no es válido" -#: sm/certchain.c:1298 sm/certchain.c:1383 +#: sm/certchain.c:1299 sm/certchain.c:1384 msgid "root certificate not yet valid" msgstr "el certificado raíz no es válido aún" -#: sm/certchain.c:1299 sm/certchain.c:1384 +#: sm/certchain.c:1300 sm/certchain.c:1385 msgid "intermediate certificate not yet valid" msgstr "el certificado intermedio aún no es válido" -#: sm/certchain.c:1312 dirmngr/validate.c:526 +#: sm/certchain.c:1313 dirmngr/validate.c:526 #, c-format msgid "certificate has expired" msgstr "certificado caducado" -#: sm/certchain.c:1313 +#: sm/certchain.c:1314 msgid "root certificate has expired" msgstr "el certificado raíz ha caducado" -#: sm/certchain.c:1314 +#: sm/certchain.c:1315 msgid "intermediate certificate has expired" msgstr "el certificado intermedio ha caducado" -#: sm/certchain.c:1356 +#: sm/certchain.c:1357 #, c-format msgid "required certificate attributes missing: %s%s%s" msgstr "faltan los atributos requeridos del certificado: %s%s%s" -#: sm/certchain.c:1365 +#: sm/certchain.c:1366 msgid "certificate with invalid validity" msgstr "el certificado tiene una validez incorrecta" -#: sm/certchain.c:1402 +#: sm/certchain.c:1403 msgid "signature not created during lifetime of certificate" msgstr "la firma no se creo durante el tiempo de validez del certificado" -#: sm/certchain.c:1404 +#: sm/certchain.c:1405 msgid "certificate not created during lifetime of issuer" msgstr "el certificado no se creo durante el tiempo de validez el emisor" -#: sm/certchain.c:1405 +#: sm/certchain.c:1406 msgid "intermediate certificate not created during lifetime of issuer" msgstr "" "certificado intermedio no creado durante el tiempo de validez del emisor" -#: sm/certchain.c:1409 +#: sm/certchain.c:1410 #, c-format msgid " ( signature created at " msgstr " ( firmas creadas en " -#: sm/certchain.c:1410 +#: sm/certchain.c:1411 #, c-format msgid " (certificate created at " msgstr " (certificado creado en " -#: sm/certchain.c:1413 +#: sm/certchain.c:1414 #, c-format msgid " (certificate valid from " msgstr " (certificado válido desde " -#: sm/certchain.c:1414 +#: sm/certchain.c:1415 #, c-format msgid " ( issuer valid from " msgstr " ( emisor válido desde " -#: sm/certchain.c:1444 dirmngr/validate.c:577 +#: sm/certchain.c:1445 dirmngr/validate.c:577 #, c-format msgid "fingerprint=%s\n" msgstr "huella digital=%s\n" -#: sm/certchain.c:1453 +#: sm/certchain.c:1454 #, c-format msgid "root certificate has now been marked as trusted\n" msgstr "certificado raíz marcado ahora como fiable\n" -#: sm/certchain.c:1466 +#: sm/certchain.c:1467 #, c-format msgid "interactive marking as trusted not enabled in gpg-agent\n" msgstr "marcar interactivamente como fiable no está activado en gpg-agent\n" -#: sm/certchain.c:1472 +#: sm/certchain.c:1473 #, c-format msgid "interactive marking as trusted disabled for this session\n" msgstr "marcar interactivamente como fíable desactivado en esta sesión\n" -#: sm/certchain.c:1531 +#: sm/certchain.c:1532 msgid "WARNING: creation time of signature not known - assuming current time" msgstr "AVISO: fecha de creación de firma desconocida - asumo momento actual" -#: sm/certchain.c:1595 +#: sm/certchain.c:1596 msgid "no issuer found in certificate" msgstr "no se encuentra el emisor de este certificado" -#: sm/certchain.c:1673 +#: sm/certchain.c:1674 msgid "self-signed certificate has a BAD signature" msgstr "certificado auto firmado con firma INCORRECTA" -#: sm/certchain.c:1742 dirmngr/validate.c:575 +#: sm/certchain.c:1743 dirmngr/validate.c:575 #, c-format msgid "root certificate is not marked trusted" msgstr "el certificado raíz no está marcado como fiable" -#: sm/certchain.c:1758 +#: sm/certchain.c:1759 #, c-format msgid "checking the trust list failed: %s\n" msgstr "la comprobación de la lista de confianza falló: %s\n" -#: sm/certchain.c:1789 sm/import.c:176 sm/keylist.c:1396 dirmngr/validate.c:630 +#: sm/certchain.c:1790 sm/import.c:176 sm/keylist.c:1396 dirmngr/validate.c:630 #, c-format msgid "certificate chain too long\n" msgstr "cadena de certificados demasiado larga\n" -#: sm/certchain.c:1801 dirmngr/validate.c:642 +#: sm/certchain.c:1802 dirmngr/validate.c:642 #, c-format msgid "issuer certificate not found" msgstr "no se encuentra emisor del certificado" -#: sm/certchain.c:1834 dirmngr/validate.c:668 +#: sm/certchain.c:1835 dirmngr/validate.c:668 #, c-format msgid "certificate has a BAD signature" msgstr "el certificado tiene una firma INCORRECTA" -#: sm/certchain.c:1866 dirmngr/validate.c:692 +#: sm/certchain.c:1867 dirmngr/validate.c:692 msgid "found another possible matching CA certificate - trying again" msgstr "encontrado otro posible certificado de CA coincidente - reintentando" -#: sm/certchain.c:1925 dirmngr/validate.c:717 +#: sm/certchain.c:1926 dirmngr/validate.c:717 #, c-format msgid "certificate chain longer than allowed by CA (%d)" msgstr "cadena de certificados más larga de lo que permite la CA (%d)" -#: sm/certchain.c:1967 sm/certchain.c:2263 dirmngr/validate.c:747 +#: sm/certchain.c:1968 sm/certchain.c:2264 dirmngr/validate.c:747 #, c-format msgid "certificate is good\n" msgstr "certificado correcto\n" -#: sm/certchain.c:1968 +#: sm/certchain.c:1969 #, c-format msgid "intermediate certificate is good\n" msgstr "certificado intermedio correcto\n" -#: sm/certchain.c:1969 +#: sm/certchain.c:1970 #, c-format msgid "root certificate is good\n" msgstr "certificado raíz correcto\n" -#: sm/certchain.c:2151 +#: sm/certchain.c:2152 msgid "switching to chain model" msgstr "cambiando al modelo en cadena" -#: sm/certchain.c:2160 +#: sm/certchain.c:2161 #, c-format msgid "validation model used: %s" msgstr "modelo de validación usado: %s" diff -Nru gnupg2-2.2.40/po/et.po gnupg2-2.2.41/po/et.po --- gnupg2-2.2.40/po/et.po 2022-10-10 09:58:25.000000000 +0000 +++ gnupg2-2.2.41/po/et.po 2022-12-09 08:48:34.000000000 +0000 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: gnupg 1.2.2\n" "Report-Msgid-Bugs-To: translations@gnupg.org\n" -"POT-Creation-Date: 2022-10-10 11:58+0200\n" +"POT-Creation-Date: 2022-12-09 09:48+0100\n" "PO-Revision-Date: 2004-06-17 11:04+0300\n" "Last-Translator: Toomas Soome \n" "Language-Team: Estonian \n" @@ -223,8 +223,8 @@ msgid "ssh keys greater than %d bits are not supported\n" msgstr "kaitse algoritm %d%s ei ole toetatud\n" -#: agent/command-ssh.c:862 common/dotlock.c:856 g10/card-util.c:947 -#: g10/exec.c:554 g10/export.c:1320 g10/gpg.c:1400 g10/keygen.c:4998 +#: agent/command-ssh.c:862 common/dotlock.c:856 g10/card-util.c:946 +#: g10/exec.c:554 g10/export.c:1335 g10/gpg.c:1409 g10/keygen.c:5052 #: g10/keyring.c:1322 g10/keyring.c:1637 g10/openfile.c:291 g10/sign.c:1008 #: g10/sign.c:1322 g10/tdbio.c:753 #, fuzzy, c-format @@ -232,12 +232,12 @@ msgid "can't create '%s': %s\n" msgstr "`%s' ei õnnestu luua: %s\n" -#: agent/command-ssh.c:874 common/helpfile.c:57 g10/card-util.c:904 +#: agent/command-ssh.c:874 common/helpfile.c:57 g10/card-util.c:903 #: g10/dearmor.c:59 g10/dearmor.c:106 g10/decrypt.c:65 g10/decrypt.c:136 -#: g10/decrypt.c:153 g10/encrypt.c:239 g10/encrypt.c:678 g10/gpg.c:1401 -#: g10/import.c:364 g10/import.c:548 g10/import.c:776 g10/keygen.c:4036 +#: g10/decrypt.c:153 g10/encrypt.c:239 g10/encrypt.c:678 g10/gpg.c:1410 +#: g10/import.c:365 g10/import.c:549 g10/import.c:777 g10/keygen.c:4090 #: g10/keyring.c:1663 g10/openfile.c:195 g10/openfile.c:209 g10/plaintext.c:128 -#: g10/plaintext.c:649 g10/sign.c:990 g10/sign.c:1201 g10/sign.c:1306 +#: g10/plaintext.c:654 g10/sign.c:990 g10/sign.c:1201 g10/sign.c:1306 #: g10/sign.c:1451 g10/tdbdump.c:145 g10/tdbdump.c:153 g10/tdbio.c:758 #: g10/tdbio.c:829 g10/verify.c:96 g10/verify.c:160 sm/gpgsm.c:2160 #: sm/gpgsm.c:2190 sm/gpgsm.c:2228 sm/qualified.c:66 dirmngr/certcache.c:420 @@ -464,34 +464,34 @@ msgid "csh-style command output" msgstr "" -#: agent/gpg-agent.c:185 g10/gpg.c:579 scd/scdaemon.c:126 sm/gpgsm.c:410 +#: agent/gpg-agent.c:185 g10/gpg.c:580 scd/scdaemon.c:126 sm/gpgsm.c:410 #: dirmngr/dirmngr.c:192 #, fuzzy msgid "|FILE|read options from FILE" msgstr "|FAIL|lae laiendusmoodul FAIL" -#: agent/gpg-agent.c:189 g10/gpg.c:566 scd/scdaemon.c:130 sm/gpgsm.c:259 +#: agent/gpg-agent.c:189 g10/gpg.c:567 scd/scdaemon.c:130 sm/gpgsm.c:259 #: dirmngr/dirmngr.c:196 msgid "Options controlling the diagnostic output" msgstr "" -#: agent/gpg-agent.c:191 g10/gpg.c:568 g10/gpgv.c:78 kbx/kbxutil.c:88 +#: agent/gpg-agent.c:191 g10/gpg.c:569 g10/gpgv.c:78 kbx/kbxutil.c:88 #: scd/scdaemon.c:132 sm/gpgsm.c:261 dirmngr/dirmngr-client.c:70 #: dirmngr/dirmngr.c:198 tools/gpg-connect-agent.c:78 tools/gpgconf.c:110 msgid "verbose" msgstr "ole jutukas" -#: agent/gpg-agent.c:192 g10/gpg.c:570 g10/gpgv.c:79 kbx/kbxutil.c:89 +#: agent/gpg-agent.c:192 g10/gpg.c:571 g10/gpgv.c:79 kbx/kbxutil.c:89 #: scd/scdaemon.c:133 sm/gpgsm.c:263 dirmngr/dirmngr-client.c:71 #: dirmngr/dirmngr.c:199 msgid "be somewhat more quiet" msgstr "ole mõnevõrra vaiksem" -#: agent/gpg-agent.c:200 g10/gpg.c:583 sm/gpgsm.c:276 dirmngr/dirmngr.c:209 +#: agent/gpg-agent.c:200 g10/gpg.c:584 sm/gpgsm.c:276 dirmngr/dirmngr.c:209 msgid "|FILE|write server mode logs to FILE" msgstr "" -#: agent/gpg-agent.c:204 g10/gpg.c:589 scd/scdaemon.c:147 sm/gpgsm.c:283 +#: agent/gpg-agent.c:204 g10/gpg.c:590 scd/scdaemon.c:147 sm/gpgsm.c:283 #: dirmngr/dirmngr.c:213 msgid "Options controlling the configuration" msgstr "" @@ -535,7 +535,7 @@ msgid "enable putty support" msgstr "ei ole toetatud" -#: agent/gpg-agent.c:237 g10/gpg.c:831 scd/scdaemon.c:175 sm/gpgsm.c:369 +#: agent/gpg-agent.c:237 g10/gpg.c:832 scd/scdaemon.c:175 sm/gpgsm.c:369 msgid "Options controlling the security" msgstr "" @@ -637,7 +637,7 @@ #. reporting address. This is so that we can change the #. reporting address without breaking the translations. #: agent/gpg-agent.c:563 agent/preset-passphrase.c:100 agent/protect-tool.c:155 -#: g10/gpg.c:1108 g10/gpgv.c:149 kbx/kbxutil.c:113 scd/scdaemon.c:313 +#: g10/gpg.c:1117 g10/gpgv.c:149 kbx/kbxutil.c:113 scd/scdaemon.c:313 #: sm/gpgsm.c:600 dirmngr/dirmngr-client.c:168 dirmngr/dirmngr.c:458 #: tools/gpg-connect-agent.c:205 tools/gpgconf.c:154 #: tools/gpg-check-pattern.c:143 @@ -656,27 +656,27 @@ "Secret key management for @GNUPG@\n" msgstr "" -#: agent/gpg-agent.c:619 g10/gpg.c:1304 scd/scdaemon.c:385 sm/gpgsm.c:748 +#: agent/gpg-agent.c:619 g10/gpg.c:1313 scd/scdaemon.c:385 sm/gpgsm.c:748 #: dirmngr/dirmngr.c:542 #, c-format msgid "invalid debug-level '%s' given\n" msgstr "" -#: agent/gpg-agent.c:988 g10/gpg.c:3810 g10/gpg.c:3834 sm/gpgsm.c:1585 +#: agent/gpg-agent.c:988 g10/gpg.c:3830 g10/gpg.c:3854 sm/gpgsm.c:1585 #: sm/gpgsm.c:1591 #, c-format msgid "selected digest algorithm is invalid\n" msgstr "valitud lühendi algoritm ei ole lubatud\n" #: agent/gpg-agent.c:1216 agent/gpg-agent.c:2029 common/argparse.c:1766 -#: common/argparse.c:1858 g10/gpg.c:2517 scd/scdaemon.c:547 sm/gpgsm.c:1007 +#: common/argparse.c:1858 g10/gpg.c:2526 scd/scdaemon.c:547 sm/gpgsm.c:1007 #: dirmngr/dirmngr.c:1081 dirmngr/dirmngr.c:1937 #, fuzzy, c-format #| msgid "reading options from `%s'\n" msgid "reading options from '%s'\n" msgstr "loen võtmeid failist `%s'\n" -#: agent/gpg-agent.c:1332 g10/gpg.c:3751 scd/scdaemon.c:671 sm/gpgsm.c:1522 +#: agent/gpg-agent.c:1332 g10/gpg.c:3769 scd/scdaemon.c:671 sm/gpgsm.c:1522 #: dirmngr/dirmngr.c:1190 tools/gpg-connect-agent.c:1244 tools/gpgconf.c:677 #, fuzzy, c-format #| msgid "WARNING: \"%s\" is a deprecated option\n" @@ -809,7 +809,7 @@ "Password cache maintenance\n" msgstr "" -#: agent/protect-tool.c:108 g10/gpg.c:441 kbx/kbxutil.c:71 sm/gpgsm.c:210 +#: agent/protect-tool.c:108 g10/gpg.c:442 kbx/kbxutil.c:71 sm/gpgsm.c:210 #: dirmngr/dirmngr.c:171 tools/gpgconf.c:80 msgid "" "@Commands:\n" @@ -1029,7 +1029,7 @@ msgid "secret key parts are not available\n" msgstr "salajase võtme komponendid ei ole kättesaadavad\n" -#: agent/cvt-openpgp.c:344 g10/card-util.c:1556 +#: agent/cvt-openpgp.c:344 g10/card-util.c:1555 #, fuzzy, c-format #| msgid "protection algorithm %d%s is not supported\n" msgid "public key algorithm %d (%s) is not supported\n" @@ -1189,7 +1189,7 @@ msgid "out of core while allocating %lu bytes" msgstr "" -#: common/miscellaneous.c:115 g10/card-util.c:911 tools/no-libgcrypt.c:30 +#: common/miscellaneous.c:115 g10/card-util.c:910 tools/no-libgcrypt.c:30 #, fuzzy, c-format msgid "error allocating enough memory: %s\n" msgstr "viga võtmehoidla `%s' loomisel: %s\n" @@ -1312,7 +1312,7 @@ msgstr "pakend: %s\n" #: common/audit.c:774 common/audit.c:776 common/audit.c:921 common/audit.c:923 -#: scd/app-openpgp.c:3557 +#: scd/app-openpgp.c:3566 #, fuzzy, c-format msgid "unsupported algorithm: %s" msgstr "" @@ -1396,12 +1396,12 @@ msgid "Root certificate trustworthy" msgstr "halb sertifikaat" -#: common/audit.c:1112 sm/certchain.c:1235 +#: common/audit.c:1112 sm/certchain.c:1236 #, fuzzy msgid "no CRL found for certificate" msgstr "halb sertifikaat" -#: common/audit.c:1115 sm/certchain.c:1245 +#: common/audit.c:1115 sm/certchain.c:1246 #, fuzzy msgid "the available CRL is too old" msgstr "Võtme leiate: " @@ -1544,7 +1544,7 @@ msgid "missing argument for option \"%.50s\"\n" msgstr "" -#: common/argparse.c:558 g10/gpg.c:3525 +#: common/argparse.c:558 g10/gpg.c:3543 #, fuzzy, c-format msgid "invalid argument for option \"%.50s\"\n" msgstr "vigased impordi võtmed\n" @@ -1645,92 +1645,92 @@ msgid "%s is too old (need %s, have %s)\n" msgstr "" -#: g10/armor.c:423 +#: g10/armor.c:424 #, c-format msgid "armor: %s\n" msgstr "pakend: %s\n" -#: g10/armor.c:462 +#: g10/armor.c:463 #, c-format msgid "invalid armor header: " msgstr "vigane pakendi päis: " -#: g10/armor.c:473 +#: g10/armor.c:474 #, c-format msgid "armor header: " msgstr "pakendi päis: " -#: g10/armor.c:486 +#: g10/armor.c:487 #, c-format msgid "invalid clearsig header\n" msgstr "vigane avateksti allkirja päis\n" -#: g10/armor.c:499 +#: g10/armor.c:500 #, fuzzy, c-format msgid "unknown armor header: " msgstr "pakendi päis: " -#: g10/armor.c:552 +#: g10/armor.c:553 #, c-format msgid "nested clear text signatures\n" msgstr "avateksti allkirjad üksteise sees\n" -#: g10/armor.c:687 +#: g10/armor.c:688 #, fuzzy, c-format msgid "unexpected armor: " msgstr "ootamatu pakend:" -#: g10/armor.c:700 +#: g10/armor.c:701 #, c-format msgid "invalid dash escaped line: " msgstr "vigane kriipsudega märgitud rida: " -#: g10/armor.c:872 g10/armor.c:1492 +#: g10/armor.c:873 g10/armor.c:1493 #, fuzzy, c-format msgid "invalid radix64 character %02X skipped\n" msgstr "vigane radix64 sümbol %02x vahele jäetud\n" -#: g10/armor.c:915 +#: g10/armor.c:916 #, c-format msgid "premature eof (no CRC)\n" msgstr "enneaegne faililõpp (puudub CRC)\n" -#: g10/armor.c:949 +#: g10/armor.c:950 #, c-format msgid "premature eof (in CRC)\n" msgstr "enneaegne faililõpp (poolik CRC)\n" -#: g10/armor.c:957 +#: g10/armor.c:958 #, c-format msgid "malformed CRC\n" msgstr "vigane CRC\n" -#: g10/armor.c:961 g10/armor.c:1529 +#: g10/armor.c:962 g10/armor.c:1530 #, fuzzy, c-format msgid "CRC error; %06lX - %06lX\n" msgstr "CRC viga; %06lx - %06lx\n" -#: g10/armor.c:981 +#: g10/armor.c:982 #, fuzzy, c-format msgid "premature eof (in trailer)\n" msgstr "enneaegne faililõpp (lõpetaval real)\n" -#: g10/armor.c:985 +#: g10/armor.c:986 #, c-format msgid "error in trailer line\n" msgstr "viga lõpetaval real\n" -#: g10/armor.c:1305 +#: g10/armor.c:1306 #, c-format msgid "no valid OpenPGP data found.\n" msgstr "ei leia OpenPGP andmeid.\n" -#: g10/armor.c:1310 +#: g10/armor.c:1311 #, c-format msgid "invalid armor: line longer than %d characters\n" msgstr "vigane pakend: rida on pikem, kui %d sümbolit\n" -#: g10/armor.c:1314 +#: g10/armor.c:1315 #, c-format msgid "" "quoted printable character in armor - probably a buggy MTA has been used\n" @@ -1879,24 +1879,24 @@ msgid "server uses an invalid certificate" msgstr "genereeri tühistamise sertifikaat" -#: g10/call-dirmngr.c:462 g10/gpg.c:4458 +#: g10/call-dirmngr.c:462 g10/gpg.c:4478 #, fuzzy, c-format #| msgid "armor: %s\n" msgid "Note: %s\n" msgstr "pakend: %s\n" -#: g10/card-util.c:86 g10/card-util.c:366 g10/card-util.c:1918 +#: g10/card-util.c:86 g10/card-util.c:366 g10/card-util.c:1917 #, fuzzy, c-format msgid "OpenPGP card not available: %s\n" msgstr "salajane võti ei ole kättesaadav" -#: g10/card-util.c:91 g10/card-util.c:1924 +#: g10/card-util.c:91 g10/card-util.c:1923 #, c-format msgid "OpenPGP card no. %s detected\n" msgstr "" -#: g10/card-util.c:97 g10/card-util.c:2253 g10/delkey.c:160 g10/keyedit.c:1423 -#: g10/keygen.c:4466 g10/revoke.c:214 g10/revoke.c:636 +#: g10/card-util.c:97 g10/card-util.c:2252 g10/delkey.c:160 g10/keyedit.c:1423 +#: g10/keygen.c:4520 g10/revoke.c:214 g10/revoke.c:636 #, fuzzy, c-format msgid "can't do this in batch mode\n" msgstr "seda ei saa teha pakettmoodis\n" @@ -1906,14 +1906,14 @@ msgid "This command is only available for version 2 cards\n" msgstr "See käsklus ei ole %s moodis lubatud.\n" -#: g10/card-util.c:107 scd/app-openpgp.c:2866 +#: g10/card-util.c:107 scd/app-openpgp.c:2869 #, fuzzy, c-format msgid "Reset Code not or not anymore available\n" msgstr "salajase võtme komponendid ei ole kättesaadavad\n" -#: g10/card-util.c:140 g10/card-util.c:1442 g10/card-util.c:1704 -#: g10/card-util.c:1796 g10/keyedit.c:394 g10/keyedit.c:415 g10/keyedit.c:429 -#: g10/keygen.c:1808 g10/keygen.c:1980 g10/keygen.c:2186 g10/keygen.c:2477 +#: g10/card-util.c:140 g10/card-util.c:1441 g10/card-util.c:1703 +#: g10/card-util.c:1795 g10/keyedit.c:394 g10/keyedit.c:415 g10/keyedit.c:429 +#: g10/keygen.c:1862 g10/keygen.c:2034 g10/keygen.c:2240 g10/keygen.c:2531 #: sm/certreqgen-ui.c:165 sm/certreqgen-ui.c:291 sm/certreqgen-ui.c:325 msgid "Your selection? " msgstr "Teie valik? " @@ -1964,13 +1964,13 @@ msgid "Error: Combined name too long (limit is %d characters).\n" msgstr "" -#: g10/card-util.c:826 +#: g10/card-util.c:825 #, fuzzy msgid "URL to retrieve public key: " msgstr "vastavat avalikku võtit pole: %s\n" -#: g10/card-util.c:920 g10/decrypt-data.c:509 g10/import.c:399 g10/import.c:746 -#: g10/import.c:798 dirmngr/crlcache.c:655 dirmngr/crlcache.c:660 +#: g10/card-util.c:919 g10/decrypt-data.c:509 g10/import.c:400 g10/import.c:747 +#: g10/import.c:799 dirmngr/crlcache.c:655 dirmngr/crlcache.c:660 #: dirmngr/crlcache.c:914 dirmngr/crlcache.c:920 dirmngr/dirmngr.c:1748 #: tools/gpgconf.c:483 tools/gpgconf.c:529 #, fuzzy, c-format @@ -1978,174 +1978,174 @@ msgid "error reading '%s': %s\n" msgstr "viga `%s' lugemisel: %s\n" -#: g10/card-util.c:953 g10/decrypt-data.c:512 g10/export.c:2467 +#: g10/card-util.c:952 g10/decrypt-data.c:512 g10/export.c:2586 #: dirmngr/crlcache.c:925 #, fuzzy, c-format msgid "error writing '%s': %s\n" msgstr "viga võtmehoidlasse `%s' kirjutamisel: %s\n" -#: g10/card-util.c:980 +#: g10/card-util.c:979 msgid "Login data (account name): " msgstr "" -#: g10/card-util.c:1018 +#: g10/card-util.c:1017 msgid "Private DO data: " msgstr "" -#: g10/card-util.c:1103 +#: g10/card-util.c:1102 #, fuzzy msgid "Language preferences: " msgstr "uuendatud eelistused" -#: g10/card-util.c:1111 +#: g10/card-util.c:1110 #, fuzzy msgid "Error: invalid length of preference string.\n" msgstr "lubamatu sümbol eelistuste sõnes\n" -#: g10/card-util.c:1120 +#: g10/card-util.c:1119 #, fuzzy msgid "Error: invalid characters in preference string.\n" msgstr "lubamatu sümbol eelistuste sõnes\n" -#: g10/card-util.c:1142 +#: g10/card-util.c:1141 msgid "Salutation (M = Mr., F = Ms., or space): " msgstr "" -#: g10/card-util.c:1156 +#: g10/card-util.c:1155 #, fuzzy msgid "Error: invalid response.\n" msgstr "viga: vigane sõrmejälg\n" -#: g10/card-util.c:1178 +#: g10/card-util.c:1177 #, fuzzy msgid "CA fingerprint: " msgstr "näita sõrmejälge" -#: g10/card-util.c:1201 +#: g10/card-util.c:1200 #, fuzzy msgid "Error: invalid formatted fingerprint.\n" msgstr "viga: vigane sõrmejälg\n" -#: g10/card-util.c:1252 +#: g10/card-util.c:1251 #, fuzzy, c-format msgid "key operation not possible: %s\n" msgstr "Võtme genereerimine ebaõnnestus: %s\n" -#: g10/card-util.c:1253 +#: g10/card-util.c:1252 #, fuzzy msgid "not an OpenPGP card" msgstr "ei leia OpenPGP andmeid.\n" -#: g10/card-util.c:1266 g10/keygen.c:4486 g10/keygen.c:5562 +#: g10/card-util.c:1265 g10/keygen.c:4540 g10/keygen.c:5616 #, fuzzy, c-format msgid "error getting current key info: %s\n" msgstr "viga salajase võtme võtmehoidlasse `%s' kirjutamisel: %s\n" -#: g10/card-util.c:1351 +#: g10/card-util.c:1350 msgid "Replace existing key? (y/N) " msgstr "" -#: g10/card-util.c:1368 +#: g10/card-util.c:1367 msgid "" "Note: There is no guarantee that the card supports the requested size.\n" " If the key generation does not succeed, please check the\n" " documentation of your card to see what sizes are allowed.\n" msgstr "" -#: g10/card-util.c:1390 g10/keygen.c:2363 sm/certreqgen-ui.c:179 +#: g10/card-util.c:1389 g10/keygen.c:2417 sm/certreqgen-ui.c:179 #, fuzzy, c-format msgid "What keysize do you want? (%u) " msgstr "Millist võtmepikkust te soovite? (1024) " -#: g10/card-util.c:1400 g10/keygen.c:2286 g10/keygen.c:2318 +#: g10/card-util.c:1399 g10/keygen.c:2340 g10/keygen.c:2372 #: sm/certreqgen-ui.c:194 #, c-format msgid "rounded up to %u bits\n" msgstr "ümardatud üles %u bitini\n" -#: g10/card-util.c:1408 g10/keygen.c:2371 sm/certreqgen-ui.c:184 +#: g10/card-util.c:1407 g10/keygen.c:2425 sm/certreqgen-ui.c:184 #, c-format msgid "%s keysizes must be in the range %u-%u\n" msgstr "" -#: g10/card-util.c:1427 +#: g10/card-util.c:1426 msgid "Changing card key attribute for: " msgstr "" -#: g10/card-util.c:1429 +#: g10/card-util.c:1428 #, fuzzy msgid "Signature key\n" msgstr "Allkiri aegus %s\n" -#: g10/card-util.c:1431 +#: g10/card-util.c:1430 #, fuzzy msgid "Encryption key\n" msgstr " (%d) RSA (ainult krüpteerimiseks)\n" -#: g10/card-util.c:1433 +#: g10/card-util.c:1432 msgid "Authentication key\n" msgstr "" -#: g10/card-util.c:1435 g10/keygen.c:1926 sm/certreqgen-ui.c:157 +#: g10/card-util.c:1434 g10/keygen.c:1980 sm/certreqgen-ui.c:157 msgid "Please select what kind of key you want:\n" msgstr "Palun valige, millist võtmetüüpi te soovite:\n" -#: g10/card-util.c:1436 sm/certreqgen-ui.c:158 +#: g10/card-util.c:1435 sm/certreqgen-ui.c:158 #, fuzzy, c-format msgid " (%d) RSA\n" msgstr " (%d) RSA (ainult allkirjastamiseks)\n" -#: g10/card-util.c:1437 +#: g10/card-util.c:1436 #, fuzzy, c-format msgid " (%d) ECC\n" msgstr " (%d) DSA ja ElGamal (vaikimisi)\n" -#: g10/card-util.c:1449 g10/card-util.c:1716 g10/card-util.c:1816 -#: g10/keyedit.c:900 g10/keygen.c:1834 g10/keygen.c:1862 g10/keygen.c:1987 -#: g10/keygen.c:2222 g10/keygen.c:2505 g10/revoke.c:838 +#: g10/card-util.c:1448 g10/card-util.c:1715 g10/card-util.c:1815 +#: g10/keyedit.c:900 g10/keygen.c:1888 g10/keygen.c:1916 g10/keygen.c:2041 +#: g10/keygen.c:2276 g10/keygen.c:2559 g10/revoke.c:838 msgid "Invalid selection.\n" msgstr "Vigane valik.\n" -#: g10/card-util.c:1522 +#: g10/card-util.c:1521 #, c-format msgid "The card will now be re-configured to generate a key of %u bits\n" msgstr "" -#: g10/card-util.c:1527 +#: g10/card-util.c:1526 #, c-format msgid "The card will now be re-configured to generate a key of type: %s\n" msgstr "" -#: g10/card-util.c:1563 +#: g10/card-util.c:1562 #, fuzzy, c-format msgid "error changing key attribute for key %d: %s\n" msgstr "viga teate saatmisel serverile `%s': %s\n" -#: g10/card-util.c:1579 g10/card-util.c:2106 +#: g10/card-util.c:1578 g10/card-util.c:2105 #, fuzzy, c-format msgid "error getting card info: %s\n" msgstr "viga salajase võtme võtmehoidlasse `%s' kirjutamisel: %s\n" -#: g10/card-util.c:1585 g10/card-util.c:1930 g10/card-util.c:2112 +#: g10/card-util.c:1584 g10/card-util.c:1929 g10/card-util.c:2111 #, fuzzy, c-format #| msgid "This command is not allowed while in %s mode.\n" msgid "This command is not supported by this card\n" msgstr "See käsklus ei ole %s moodis lubatud.\n" -#: g10/card-util.c:1631 +#: g10/card-util.c:1630 msgid "Make off-card backup of encryption key? (Y/n) " msgstr "" -#: g10/card-util.c:1645 +#: g10/card-util.c:1644 #, fuzzy, c-format msgid "Note: keys are already stored on the card!\n" msgstr "jätsin vahele: avalik võti on juba olemas\n" -#: g10/card-util.c:1648 +#: g10/card-util.c:1647 msgid "Replace existing keys? (y/N) " msgstr "" -#: g10/card-util.c:1660 +#: g10/card-util.c:1659 #, c-format msgid "" "Please note that the factory settings of the PINs are\n" @@ -2153,160 +2153,160 @@ "You should change them using the command --change-pin\n" msgstr "" -#: g10/card-util.c:1695 +#: g10/card-util.c:1694 #, fuzzy msgid "Please select the type of key to generate:\n" msgstr "Palun valige, millist võtmetüüpi te soovite:\n" -#: g10/card-util.c:1697 g10/card-util.c:1787 +#: g10/card-util.c:1696 g10/card-util.c:1786 #, fuzzy msgid " (1) Signature key\n" msgstr "Allkiri aegus %s\n" -#: g10/card-util.c:1698 g10/card-util.c:1789 +#: g10/card-util.c:1697 g10/card-util.c:1788 #, fuzzy msgid " (2) Encryption key\n" msgstr " (%d) RSA (ainult krüpteerimiseks)\n" -#: g10/card-util.c:1699 g10/card-util.c:1791 +#: g10/card-util.c:1698 g10/card-util.c:1790 msgid " (3) Authentication key\n" msgstr "" -#: g10/card-util.c:1784 +#: g10/card-util.c:1783 #, fuzzy msgid "Please select where to store the key:\n" msgstr "Palun valige tühistamise põhjus:\n" -#: g10/card-util.c:1830 +#: g10/card-util.c:1829 #, fuzzy, c-format msgid "KEYTOCARD failed: %s\n" msgstr "uuendamine ebaõnnestus: %s\n" -#: g10/card-util.c:1935 +#: g10/card-util.c:1934 #, fuzzy, c-format msgid "Note: This command destroys all keys stored on the card!\n" msgstr "jätsin vahele: avalik võti on juba olemas\n" -#: g10/card-util.c:1938 +#: g10/card-util.c:1937 #, fuzzy msgid "Continue? (y/N) " msgstr "Allkirjastan tõesti? " -#: g10/card-util.c:1943 +#: g10/card-util.c:1942 msgid "Really do a factory reset? (enter \"yes\") " msgstr "" -#: g10/card-util.c:2129 +#: g10/card-util.c:2128 #, fuzzy, c-format msgid "error for setup KDF: %s\n" msgstr "viga `%s' lugemisel: %s\n" -#: g10/card-util.c:2158 g10/keyedit.c:1260 +#: g10/card-util.c:2157 g10/keyedit.c:1260 msgid "quit this menu" msgstr "välju sellest menüüst" -#: g10/card-util.c:2160 +#: g10/card-util.c:2159 #, fuzzy msgid "show admin commands" msgstr "vastuolulised käsud\n" -#: g10/card-util.c:2161 g10/keyedit.c:1263 +#: g10/card-util.c:2160 g10/keyedit.c:1263 msgid "show this help" msgstr "näita seda abiinfot" -#: g10/card-util.c:2163 +#: g10/card-util.c:2162 #, fuzzy msgid "list all available data" msgstr "Võtme leiate: " -#: g10/card-util.c:2166 +#: g10/card-util.c:2165 msgid "change card holder's name" msgstr "" -#: g10/card-util.c:2167 +#: g10/card-util.c:2166 msgid "change URL to retrieve key" msgstr "" -#: g10/card-util.c:2168 +#: g10/card-util.c:2167 msgid "fetch the key specified in the card URL" msgstr "" -#: g10/card-util.c:2169 +#: g10/card-util.c:2168 #, fuzzy msgid "change the login name" msgstr "muuda aegumise kuupäeva" -#: g10/card-util.c:2170 +#: g10/card-util.c:2169 #, fuzzy msgid "change the language preferences" msgstr "muuda omaniku usaldust" -#: g10/card-util.c:2171 +#: g10/card-util.c:2170 msgid "change card holder's salutation" msgstr "" -#: g10/card-util.c:2173 +#: g10/card-util.c:2172 #, fuzzy msgid "change a CA fingerprint" msgstr "näita sõrmejälge" -#: g10/card-util.c:2174 +#: g10/card-util.c:2173 msgid "toggle the signature force PIN flag" msgstr "" -#: g10/card-util.c:2175 +#: g10/card-util.c:2174 #, fuzzy msgid "generate new keys" msgstr "genereeri uus võtmepaar" -#: g10/card-util.c:2176 +#: g10/card-util.c:2175 msgid "menu to change or unblock the PIN" msgstr "" -#: g10/card-util.c:2177 +#: g10/card-util.c:2176 msgid "verify the PIN and list all data" msgstr "" -#: g10/card-util.c:2178 +#: g10/card-util.c:2177 msgid "unblock the PIN using a Reset Code" msgstr "" -#: g10/card-util.c:2179 +#: g10/card-util.c:2178 msgid "destroy all keys and data" msgstr "" -#: g10/card-util.c:2180 +#: g10/card-util.c:2179 #, fuzzy #| msgid "|NAME|use NAME as default recipient" msgid "setup KDF for PIN authentication" msgstr "|NIMI|kasuta NIME vaikimisi saajana" -#: g10/card-util.c:2181 +#: g10/card-util.c:2180 #, fuzzy #| msgid "change the ownertrust" msgid "change the key attribute" msgstr "muuda omaniku usaldust" -#: g10/card-util.c:2305 +#: g10/card-util.c:2304 msgid "gpg/card> " msgstr "" -#: g10/card-util.c:2346 +#: g10/card-util.c:2345 #, fuzzy msgid "Admin-only command\n" msgstr "vastuolulised käsud\n" -#: g10/card-util.c:2377 +#: g10/card-util.c:2376 #, fuzzy msgid "Admin commands are allowed\n" msgstr "vastuolulised käsud\n" -#: g10/card-util.c:2379 +#: g10/card-util.c:2378 #, fuzzy msgid "Admin commands are not allowed\n" msgstr "kirjutan salajase võtme faili `%s'\n" -#: g10/card-util.c:2482 g10/keyedit.c:2229 +#: g10/card-util.c:2481 g10/keyedit.c:2229 msgid "Invalid command (try \"help\")\n" msgstr "Vigane käsklus (proovige \"help\")\n" @@ -2315,22 +2315,22 @@ msgid "--output doesn't work for this command\n" msgstr "võti --output ei tööta selle käsuga\n" -#: g10/decrypt.c:247 g10/gpg.c:5155 g10/keyring.c:399 g10/keyring.c:750 +#: g10/decrypt.c:247 g10/gpg.c:5175 g10/keyring.c:399 g10/keyring.c:750 #, fuzzy, c-format #| msgid "can't open `%s'\n" msgid "can't open '%s'\n" msgstr "`%s' ei õnnestu avada\n" -#: g10/delkey.c:83 g10/export.c:1947 g10/export.c:2230 g10/export.c:2351 -#: g10/getkey.c:2108 g10/gpg.c:5100 g10/keyedit.c:1445 g10/keyedit.c:2335 +#: g10/delkey.c:83 g10/export.c:2035 g10/export.c:2349 g10/export.c:2470 +#: g10/getkey.c:2108 g10/gpg.c:5120 g10/keyedit.c:1445 g10/keyedit.c:2335 #: g10/keyedit.c:2637 g10/keyedit.c:4600 g10/keylist.c:693 g10/keyserver.c:1092 #: g10/revoke.c:230 g10/tofu.c:2165 #, fuzzy, c-format msgid "key \"%s\" not found: %s\n" msgstr "võtit '%s' ei leitud: %s\n" -#: g10/delkey.c:92 g10/export.c:2015 g10/getkey.c:2116 g10/getkey.c:4517 -#: g10/gpg.c:5109 g10/keyedit.c:2308 g10/keyserver.c:1110 g10/revoke.c:236 +#: g10/delkey.c:92 g10/export.c:2103 g10/getkey.c:2116 g10/getkey.c:4517 +#: g10/gpg.c:5129 g10/keyedit.c:2308 g10/keyserver.c:1110 g10/revoke.c:236 #: g10/revoke.c:663 g10/tofu.c:2173 #, c-format msgid "error reading keyblock: %s\n" @@ -2453,13 +2453,13 @@ msgid "WARNING: '%s' is an empty file\n" msgstr "HOIATUS: `%s' on tühi fail\n" -#: g10/encrypt.c:446 g10/encrypt.c:521 g10/decrypt-data.c:266 g10/gpg.c:3959 -#: g10/gpg.c:3999 sm/decrypt.c:826 sm/encrypt.c:416 sm/gpgsm.c:1609 +#: g10/encrypt.c:446 g10/encrypt.c:521 g10/decrypt-data.c:266 g10/gpg.c:3979 +#: g10/gpg.c:4019 sm/decrypt.c:826 sm/encrypt.c:416 sm/gpgsm.c:1609 #, fuzzy, c-format msgid "cipher algorithm '%s' may not be used in %s mode\n" msgstr "šifri algoritm \"%s\" ei ole moodis %s lubatud\n" -#: g10/encrypt.c:455 g10/gpg.c:3965 g10/gpg.c:4011 g10/sig-check.c:175 +#: g10/encrypt.c:455 g10/gpg.c:3985 g10/gpg.c:4031 g10/sig-check.c:175 #: g10/sign.c:391 sm/gpgsm.c:1619 sm/gpgsm.c:1629 sm/sign.c:478 sm/verify.c:506 #, fuzzy, c-format msgid "digest algorithm '%s' may not be used in %s mode\n" @@ -2578,71 +2578,77 @@ msgid "WARNING: unable to remove temp directory '%s': %s\n" msgstr "HOIATUS: ei õnnestu eemaldada ajutist kataloogi `%s': %s\n" -#: g10/export.c:119 +#: g10/export.c:124 #, fuzzy msgid "export signatures that are marked as local-only" msgstr "" "\n" "Allkiri märgitakse kehtetuks mitte-tunnistatavaks.\n" -#: g10/export.c:121 +#: g10/export.c:126 msgid "export attribute user IDs (generally photo IDs)" msgstr "" -#: g10/export.c:123 +#: g10/export.c:128 #, fuzzy msgid "export revocation keys marked as \"sensitive\"" msgstr "" "`%s' jaoks pole tühistamise võtmeid\n" "\n" -#: g10/export.c:125 +#: g10/export.c:130 #, fuzzy msgid "remove unusable parts from key during export" msgstr "mittekasutatav salajane võti" -#: g10/export.c:127 +#: g10/export.c:132 msgid "remove as much as possible from key during export" msgstr "" -#: g10/export.c:133 +#: g10/export.c:138 +#, fuzzy +#| msgid "generate a revocation certificate" +msgid "export only revocation certificates" +msgstr "genereeri tühistamise sertifikaat" + +#: g10/export.c:141 msgid "use the GnuPG key backup format" msgstr "" -#: g10/export.c:1291 +#: g10/export.c:1306 #, fuzzy #| msgid "%s: skipped: %s\n" msgid " - skipped" msgstr "%s: jätsin vahele: %s\n" -#: g10/export.c:1324 g10/import.c:2085 g10/openfile.c:200 g10/openfile.c:294 +#: g10/export.c:1339 g10/import.c:2089 g10/openfile.c:200 g10/openfile.c:294 #: g10/sign.c:1012 g10/sign.c:1326 #, fuzzy, c-format #| msgid "writing to `%s'\n" msgid "writing to '%s'\n" msgstr "kirjutan faili `%s'\n" -#: g10/export.c:1769 +#: g10/export.c:1784 #, fuzzy, c-format msgid "key %s: key material on-card - skipped\n" msgstr "võti %08lX: alamvõtme allkiri on vales kohas - jätan vahele\n" -#: g10/export.c:1964 +#: g10/export.c:2052 #, fuzzy, c-format msgid "exporting secret keys not allowed\n" msgstr "kirjutan salajase võtme faili `%s'\n" -#: g10/export.c:2041 +#: g10/export.c:2129 #, fuzzy, c-format msgid "key %s: PGP 2.x style key - skipped\n" msgstr "võti %08lX: PGP 2.x stiilis võti - jätsin vahele\n" -#: g10/export.c:2135 +#: g10/export.c:2254 #, c-format msgid "WARNING: nothing exported\n" msgstr "HOIATUS: midagi ei eksporditud\n" -#: g10/export.c:2432 g10/plaintext.c:153 g10/plaintext.c:162 +#: g10/export.c:2551 g10/plaintext.c:153 g10/plaintext.c:162 #: g10/plaintext.c:168 g10/plaintext.c:191 #, fuzzy, c-format #| msgid "error creating `%s': %s\n" @@ -2713,297 +2719,297 @@ msgid "using subkey %s instead of primary key %s\n" msgstr "kasutan sekundaarset võtit %08lX primaarse võtme %08lX asemel\n" -#: g10/getkey.c:4446 g10/gpg.c:2137 +#: g10/getkey.c:4446 g10/gpg.c:2146 #, fuzzy, c-format msgid "valid values for option '%s':\n" msgstr "vigased impordi võtmed\n" -#: g10/gpg.c:443 sm/gpgsm.c:212 +#: g10/gpg.c:444 sm/gpgsm.c:212 #, fuzzy msgid "make a signature" msgstr "loo eraldiseisev allkiri" -#: g10/gpg.c:444 +#: g10/gpg.c:445 #, fuzzy msgid "make a clear text signature" msgstr "|[fail]|loo avateksti allkiri" -#: g10/gpg.c:446 sm/gpgsm.c:214 +#: g10/gpg.c:447 sm/gpgsm.c:214 msgid "make a detached signature" msgstr "loo eraldiseisev allkiri" -#: g10/gpg.c:447 sm/gpgsm.c:215 +#: g10/gpg.c:448 sm/gpgsm.c:215 msgid "encrypt data" msgstr "krüpteeri andmed" -#: g10/gpg.c:449 +#: g10/gpg.c:450 msgid "encryption only with symmetric cipher" msgstr "krüpteerimine kasutades ainult sümmeetrilist šifrit" -#: g10/gpg.c:451 sm/gpgsm.c:217 +#: g10/gpg.c:452 sm/gpgsm.c:217 msgid "decrypt data (default)" msgstr "dekrüpteeri andmed (vaikimisi)" -#: g10/gpg.c:453 sm/gpgsm.c:218 +#: g10/gpg.c:454 sm/gpgsm.c:218 msgid "verify a signature" msgstr "kontrolli allkirja" -#: g10/gpg.c:455 sm/gpgsm.c:219 +#: g10/gpg.c:456 sm/gpgsm.c:219 msgid "list keys" msgstr "näita võtmeid" -#: g10/gpg.c:457 +#: g10/gpg.c:458 msgid "list keys and signatures" msgstr "näita võtmeid ja allkirju" -#: g10/gpg.c:460 +#: g10/gpg.c:461 #, fuzzy msgid "list and check key signatures" msgstr "kontrolli võtmete allkirju" -#: g10/gpg.c:462 sm/gpgsm.c:224 +#: g10/gpg.c:463 sm/gpgsm.c:224 msgid "list keys and fingerprints" msgstr "näita võtmeid ja sõrmejälgi" -#: g10/gpg.c:463 sm/gpgsm.c:222 +#: g10/gpg.c:464 sm/gpgsm.c:222 msgid "list secret keys" msgstr "näita salajasi võtmeid" -#: g10/gpg.c:465 sm/gpgsm.c:225 +#: g10/gpg.c:466 sm/gpgsm.c:225 msgid "generate a new key pair" msgstr "genereeri uus võtmepaar" -#: g10/gpg.c:468 +#: g10/gpg.c:469 #, fuzzy #| msgid "generate a new key pair" msgid "quickly generate a new key pair" msgstr "genereeri uus võtmepaar" -#: g10/gpg.c:471 +#: g10/gpg.c:472 #, fuzzy #| msgid "generate a new key pair" msgid "quickly add a new user-id" msgstr "genereeri uus võtmepaar" -#: g10/gpg.c:476 +#: g10/gpg.c:477 #, fuzzy #| msgid "generate a new key pair" msgid "quickly revoke a user-id" msgstr "genereeri uus võtmepaar" -#: g10/gpg.c:479 +#: g10/gpg.c:480 #, fuzzy #| msgid "generate a new key pair" msgid "quickly set a new expiration date" msgstr "genereeri uus võtmepaar" -#: g10/gpg.c:482 +#: g10/gpg.c:483 msgid "full featured key pair generation" msgstr "" -#: g10/gpg.c:485 +#: g10/gpg.c:486 msgid "generate a revocation certificate" msgstr "genereeri tühistamise sertifikaat" -#: g10/gpg.c:488 sm/gpgsm.c:228 +#: g10/gpg.c:489 sm/gpgsm.c:228 msgid "remove keys from the public keyring" msgstr "eemalda võtmed avalike võtmete hoidlast" -#: g10/gpg.c:490 +#: g10/gpg.c:491 msgid "remove keys from the secret keyring" msgstr "eemalda võtmed salajaste võtmete hoidlast" -#: g10/gpg.c:492 +#: g10/gpg.c:493 #, fuzzy #| msgid "sign a key" msgid "quickly sign a key" msgstr "allkirjasta võti" -#: g10/gpg.c:494 +#: g10/gpg.c:495 #, fuzzy #| msgid "sign a key locally" msgid "quickly sign a key locally" msgstr "allkirjasta võti lokaalselt" -#: g10/gpg.c:496 +#: g10/gpg.c:497 #, fuzzy #| msgid "generate a new key pair" msgid "quickly revoke a key signature" msgstr "genereeri uus võtmepaar" -#: g10/gpg.c:497 +#: g10/gpg.c:498 msgid "sign a key" msgstr "allkirjasta võti" -#: g10/gpg.c:498 +#: g10/gpg.c:499 msgid "sign a key locally" msgstr "allkirjasta võti lokaalselt" -#: g10/gpg.c:499 +#: g10/gpg.c:500 msgid "sign or edit a key" msgstr "allkirjasta või toimeta võtit" -#: g10/gpg.c:501 sm/gpgsm.c:246 +#: g10/gpg.c:502 sm/gpgsm.c:246 #, fuzzy msgid "change a passphrase" msgstr "muuda parooli" -#: g10/gpg.c:505 +#: g10/gpg.c:506 msgid "export keys" msgstr "ekspordi võtmed" -#: g10/gpg.c:506 +#: g10/gpg.c:507 msgid "export keys to a keyserver" msgstr "ekspordi võtmed võtmeserverisse" -#: g10/gpg.c:507 +#: g10/gpg.c:508 msgid "import keys from a keyserver" msgstr "impordi võtmed võtmeserverist" -#: g10/gpg.c:510 +#: g10/gpg.c:511 msgid "search for keys on a keyserver" msgstr "otsi võtmeid võtmeserverist" -#: g10/gpg.c:512 +#: g10/gpg.c:513 msgid "update all keys from a keyserver" msgstr "uuenda võtmeid võtmeserverist" -#: g10/gpg.c:520 +#: g10/gpg.c:521 msgid "import/merge keys" msgstr "impordi/mesti võtmed" -#: g10/gpg.c:523 +#: g10/gpg.c:524 msgid "print the card status" msgstr "" -#: g10/gpg.c:524 +#: g10/gpg.c:525 msgid "change data on a card" msgstr "" -#: g10/gpg.c:526 +#: g10/gpg.c:527 msgid "change a card's PIN" msgstr "" -#: g10/gpg.c:538 +#: g10/gpg.c:539 msgid "update the trust database" msgstr "uuenda usalduse andmebaasi" -#: g10/gpg.c:548 +#: g10/gpg.c:549 #, fuzzy msgid "print message digests" msgstr "|algo [failid]|trüki teatelühendid" -#: g10/gpg.c:552 sm/gpgsm.c:241 +#: g10/gpg.c:553 sm/gpgsm.c:241 msgid "run in server mode" msgstr "" -#: g10/gpg.c:554 +#: g10/gpg.c:555 msgid "|VALUE|set the TOFU policy for a key" msgstr "" -#: g10/gpg.c:594 +#: g10/gpg.c:595 msgid "|NAME|use NAME as default secret key" msgstr "|NIMI|kasuta NIME vaikimisi salajase võtmena" -#: g10/gpg.c:596 sm/gpgsm.c:332 +#: g10/gpg.c:597 sm/gpgsm.c:332 #, fuzzy msgid "|NAME|encrypt to user ID NAME as well" msgstr "|NIMI|krüpti NIMEle" -#: g10/gpg.c:604 +#: g10/gpg.c:605 msgid "|SPEC|set up email aliases" msgstr "" -#: g10/gpg.c:616 +#: g10/gpg.c:617 msgid "use strict OpenPGP behavior" msgstr "" -#: g10/gpg.c:641 kbx/kbxutil.c:90 sm/gpgsm.c:412 tools/gpgconf.c:112 +#: g10/gpg.c:642 kbx/kbxutil.c:90 sm/gpgsm.c:412 tools/gpgconf.c:112 msgid "do not make any changes" msgstr "ära tee mingeid muutusi" -#: g10/gpg.c:642 +#: g10/gpg.c:643 msgid "prompt before overwriting" msgstr "küsi enne ülekirjutamist" -#: g10/gpg.c:689 sm/gpgsm.c:304 +#: g10/gpg.c:690 sm/gpgsm.c:304 msgid "Options controlling the input" msgstr "" -#: g10/gpg.c:707 sm/gpgsm.c:314 +#: g10/gpg.c:708 sm/gpgsm.c:314 msgid "Options controlling the output" msgstr "" -#: g10/gpg.c:709 sm/gpgsm.c:316 +#: g10/gpg.c:710 sm/gpgsm.c:316 msgid "create ascii armored output" msgstr "loo ascii pakendis väljund" -#: g10/gpg.c:713 g10/gpgv.c:82 sm/gpgsm.c:321 +#: g10/gpg.c:714 g10/gpgv.c:82 sm/gpgsm.c:321 #, fuzzy msgid "|FILE|write output to FILE" msgstr "|FAIL|lae laiendusmoodul FAIL" -#: g10/gpg.c:726 +#: g10/gpg.c:727 msgid "use canonical text mode" msgstr "kasuta kanoonilist tekstimoodi" -#: g10/gpg.c:743 +#: g10/gpg.c:744 #, fuzzy msgid "|N|set compress level to N (0 disables)" msgstr "|N|määra pakkimise tase N (0 blokeerib)" -#: g10/gpg.c:750 sm/gpgsm.c:347 +#: g10/gpg.c:751 sm/gpgsm.c:347 msgid "Options controlling key import and export" msgstr "" -#: g10/gpg.c:753 +#: g10/gpg.c:754 msgid "|MECHANISMS|use MECHANISMS to locate keys by mail address" msgstr "" -#: g10/gpg.c:756 +#: g10/gpg.c:757 #, fuzzy #| msgid "import keys from a keyserver" msgid "import missing key from a signature" msgstr "impordi võtmed võtmeserverist" -#: g10/gpg.c:761 +#: g10/gpg.c:762 #, fuzzy msgid "include the public key in signatures" msgstr "kontrolli võtmete allkirju" -#: g10/gpg.c:764 sm/gpgsm.c:350 +#: g10/gpg.c:765 sm/gpgsm.c:350 msgid "disable all access to the dirmngr" msgstr "" -#: g10/gpg.c:776 sm/gpgsm.c:357 +#: g10/gpg.c:777 sm/gpgsm.c:357 msgid "Options controlling key listings" msgstr "" -#: g10/gpg.c:805 sm/gpgsm.c:324 +#: g10/gpg.c:806 sm/gpgsm.c:324 #, fuzzy #| msgid "list secret keys" msgid "Options to specify keys" msgstr "näita salajasi võtmeid" -#: g10/gpg.c:807 sm/gpgsm.c:326 +#: g10/gpg.c:808 sm/gpgsm.c:326 #, fuzzy msgid "|USER-ID|encrypt for USER-ID" msgstr "|NIMI|krüpti NIMEle" -#: g10/gpg.c:815 sm/gpgsm.c:328 +#: g10/gpg.c:816 sm/gpgsm.c:328 #, fuzzy msgid "|USER-ID|use USER-ID to sign or decrypt" msgstr "kasuta seda kasutaja IDd" -#: g10/gpg.c:866 sm/gpgsm.c:396 +#: g10/gpg.c:867 sm/gpgsm.c:396 msgid "Options for unattended use" msgstr "" -#: g10/gpg.c:885 sm/gpgsm.c:408 dirmngr/dirmngr.c:294 +#: g10/gpg.c:886 sm/gpgsm.c:408 dirmngr/dirmngr.c:294 msgid "Other options" msgstr "" -#: g10/gpg.c:953 sm/gpgsm.c:440 +#: g10/gpg.c:955 sm/gpgsm.c:440 msgid "" "@\n" "(See the man page for a complete listing of all commands and options)\n" @@ -3011,7 +3017,7 @@ "@\n" "(Kõikide käskude ja võtmete täieliku kirjelduse leiate manualist)\n" -#: g10/gpg.c:956 +#: g10/gpg.c:958 #, fuzzy #| msgid "" #| "@\n" @@ -3041,13 +3047,13 @@ " --list-keys [nimed] näita võtmeid\n" " --fingerprint [nimed] näita sõrmejälgi\n" -#: g10/gpg.c:1130 +#: g10/gpg.c:1139 #, fuzzy #| msgid "Usage: gpg [options] [files] (-h for help)" msgid "Usage: @GPG@ [options] [files] (-h for help)" msgstr "Kasuta: gpg [võtmed] [failid] (-h näitab abiinfot)" -#: g10/gpg.c:1133 +#: g10/gpg.c:1142 #, fuzzy #| msgid "" #| "Syntax: gpg [options] [files]\n" @@ -3062,7 +3068,7 @@ "allkirjasta, kontrolli, krüpti ja dekrüpti\n" "vaikimisi operatsioon sõltub sisendandmetest\n" -#: g10/gpg.c:1144 sm/gpgsm.c:624 +#: g10/gpg.c:1153 sm/gpgsm.c:624 msgid "" "\n" "Supported algorithms:\n" @@ -3070,551 +3076,551 @@ "\n" "Toetatud algoritmid:\n" -#: g10/gpg.c:1147 +#: g10/gpg.c:1156 msgid "Pubkey: " msgstr "Avalik võti: " -#: g10/gpg.c:1154 g10/keyedit.c:3338 +#: g10/gpg.c:1163 g10/keyedit.c:3338 msgid "Cipher: " msgstr "Šiffer: " -#: g10/gpg.c:1161 +#: g10/gpg.c:1170 msgid "Hash: " msgstr "Räsi: " -#: g10/gpg.c:1168 g10/keyedit.c:3404 +#: g10/gpg.c:1177 g10/keyedit.c:3404 msgid "Compression: " msgstr "Pakkimine: " -#: g10/gpg.c:1241 sm/gpgsm.c:698 +#: g10/gpg.c:1250 sm/gpgsm.c:698 #, fuzzy, c-format msgid "usage: %s [options] %s\n" msgstr "kasuta: gpg [võtmed] " -#: g10/gpg.c:1436 sm/gpgsm.c:791 +#: g10/gpg.c:1445 sm/gpgsm.c:791 #, c-format msgid "conflicting commands\n" msgstr "vastuolulised käsud\n" -#: g10/gpg.c:1454 +#: g10/gpg.c:1463 #, fuzzy, c-format msgid "no = sign found in group definition '%s'\n" msgstr "grupi definitsioonis \"%s\" puudub sümbol =\n" -#: g10/gpg.c:1652 +#: g10/gpg.c:1661 #, fuzzy, c-format msgid "WARNING: unsafe ownership on homedir '%s'\n" msgstr "HOIATUS: ebaturvaline omanik %s \"%s\"\n" -#: g10/gpg.c:1655 +#: g10/gpg.c:1664 #, fuzzy, c-format msgid "WARNING: unsafe ownership on configuration file '%s'\n" msgstr "HOIATUS: ebaturvaline omanik %s \"%s\"\n" -#: g10/gpg.c:1658 +#: g10/gpg.c:1667 #, fuzzy, c-format msgid "WARNING: unsafe ownership on extension '%s'\n" msgstr "HOIATUS: ebaturvaline omanik %s \"%s\"\n" -#: g10/gpg.c:1664 +#: g10/gpg.c:1673 #, fuzzy, c-format msgid "WARNING: unsafe permissions on homedir '%s'\n" msgstr "HOIATUS: ebaturvalised õigused %s \"%s\"\n" -#: g10/gpg.c:1667 +#: g10/gpg.c:1676 #, fuzzy, c-format msgid "WARNING: unsafe permissions on configuration file '%s'\n" msgstr "HOIATUS: ebaturvalised õigused %s \"%s\"\n" -#: g10/gpg.c:1670 +#: g10/gpg.c:1679 #, fuzzy, c-format msgid "WARNING: unsafe permissions on extension '%s'\n" msgstr "HOIATUS: ebaturvalised õigused %s \"%s\"\n" -#: g10/gpg.c:1676 +#: g10/gpg.c:1685 #, fuzzy, c-format msgid "WARNING: unsafe enclosing directory ownership on homedir '%s'\n" msgstr "HOIATUS: ebaturvaline kataloogi omanik %s \"%s\"\n" -#: g10/gpg.c:1679 +#: g10/gpg.c:1688 #, fuzzy, c-format msgid "" "WARNING: unsafe enclosing directory ownership on configuration file '%s'\n" msgstr "HOIATUS: ebaturvaline kataloogi omanik %s \"%s\"\n" -#: g10/gpg.c:1682 +#: g10/gpg.c:1691 #, fuzzy, c-format msgid "WARNING: unsafe enclosing directory ownership on extension '%s'\n" msgstr "HOIATUS: ebaturvaline kataloogi omanik %s \"%s\"\n" -#: g10/gpg.c:1688 +#: g10/gpg.c:1697 #, fuzzy, c-format msgid "WARNING: unsafe enclosing directory permissions on homedir '%s'\n" msgstr "Hoiatus: ebaturvalised kataloogi õigused %s \"%s\"\n" -#: g10/gpg.c:1691 +#: g10/gpg.c:1700 #, fuzzy, c-format msgid "" "WARNING: unsafe enclosing directory permissions on configuration file '%s'\n" msgstr "Hoiatus: ebaturvalised kataloogi õigused %s \"%s\"\n" -#: g10/gpg.c:1694 +#: g10/gpg.c:1703 #, fuzzy, c-format msgid "WARNING: unsafe enclosing directory permissions on extension '%s'\n" msgstr "Hoiatus: ebaturvalised kataloogi õigused %s \"%s\"\n" -#: g10/gpg.c:1910 +#: g10/gpg.c:1919 #, fuzzy, c-format msgid "unknown configuration item '%s'\n" msgstr "tundmatu seade \"%s\"\n" -#: g10/gpg.c:2009 +#: g10/gpg.c:2018 msgid "display photo IDs during key listings" msgstr "" -#: g10/gpg.c:2011 +#: g10/gpg.c:2020 #, fuzzy msgid "show key usage information during key listings" msgstr "Vastavat allkirja salajaste võtmete hoidlas pole\n" -#: g10/gpg.c:2013 +#: g10/gpg.c:2022 msgid "show policy URLs during signature listings" msgstr "" -#: g10/gpg.c:2015 +#: g10/gpg.c:2024 #, fuzzy msgid "show all notations during signature listings" msgstr "Vastavat allkirja salajaste võtmete hoidlas pole\n" -#: g10/gpg.c:2017 +#: g10/gpg.c:2026 msgid "show IETF standard notations during signature listings" msgstr "" -#: g10/gpg.c:2021 +#: g10/gpg.c:2030 msgid "show user-supplied notations during signature listings" msgstr "" -#: g10/gpg.c:2023 +#: g10/gpg.c:2032 #, fuzzy msgid "show preferred keyserver URLs during signature listings" msgstr "antud allkirja poliisi URL on vigane\n" -#: g10/gpg.c:2025 +#: g10/gpg.c:2034 msgid "show user ID validity during key listings" msgstr "" -#: g10/gpg.c:2027 +#: g10/gpg.c:2036 msgid "show revoked and expired user IDs in key listings" msgstr "" -#: g10/gpg.c:2029 +#: g10/gpg.c:2038 msgid "show revoked and expired subkeys in key listings" msgstr "" -#: g10/gpg.c:2031 +#: g10/gpg.c:2040 #, fuzzy msgid "show the keyring name in key listings" msgstr "näita millisesse võtmehoidlasse näidatud võti kuulub" -#: g10/gpg.c:2033 +#: g10/gpg.c:2042 #, fuzzy msgid "show expiration dates during signature listings" msgstr "Vastavat allkirja salajaste võtmete hoidlas pole\n" -#: g10/gpg.c:2148 +#: g10/gpg.c:2157 #, fuzzy, c-format msgid "unknown TOFU policy '%s'\n" msgstr "tundmatu vaikimisi saaja `%s'\n" -#: g10/gpg.c:2150 +#: g10/gpg.c:2159 #, c-format msgid "(use \"help\" to list choices)\n" msgstr "" -#: g10/gpg.c:2240 g10/keyedit.c:1719 +#: g10/gpg.c:2249 g10/keyedit.c:1719 #, c-format msgid "This command is not allowed while in %s mode.\n" msgstr "See käsklus ei ole %s moodis lubatud.\n" -#: g10/gpg.c:2878 g10/gpg.c:3718 g10/gpg.c:3730 +#: g10/gpg.c:2896 g10/gpg.c:3736 g10/gpg.c:3748 #, fuzzy, c-format #| msgid "NOTE: %s is not for normal use!\n" msgid "Note: %s is not for normal use!\n" msgstr "MÄRKUS: %s ei ole tavapäraseks kasutamiseks!\n" -#: g10/gpg.c:3053 g10/gpg.c:3065 +#: g10/gpg.c:3071 g10/gpg.c:3083 #, fuzzy, c-format msgid "'%s' is not a valid signature expiration\n" msgstr "%s ei ole lubatud kooditabel\n" -#: g10/gpg.c:3087 +#: g10/gpg.c:3105 #, fuzzy, c-format msgid "\"%s\" is not a proper mail address\n" msgstr "Selline e-posti aadress ei ole lubatud\n" -#: g10/gpg.c:3119 sm/gpgsm.c:1121 +#: g10/gpg.c:3137 sm/gpgsm.c:1121 #, fuzzy, c-format msgid "invalid pinentry mode '%s'\n" msgstr "vigane räsialgoritm `%s'\n" -#: g10/gpg.c:3125 sm/gpgsm.c:1127 +#: g10/gpg.c:3143 sm/gpgsm.c:1127 #, fuzzy, c-format msgid "invalid request origin '%s'\n" msgstr "vigased impordi võtmed\n" -#: g10/gpg.c:3179 +#: g10/gpg.c:3197 #, fuzzy, c-format msgid "'%s' is not a valid character set\n" msgstr "%s ei ole lubatud kooditabel\n" -#: g10/gpg.c:3201 g10/gpg.c:3415 g10/keyedit.c:5338 +#: g10/gpg.c:3219 g10/gpg.c:3433 g10/keyedit.c:5338 #, fuzzy, c-format msgid "could not parse keyserver URL\n" msgstr "ei saa parsida võtmeserveri URI\n" -#: g10/gpg.c:3219 +#: g10/gpg.c:3237 #, fuzzy, c-format msgid "%s:%d: invalid keyserver options\n" msgstr "%s:%d: vigased ekspordi võtmed\n" -#: g10/gpg.c:3222 +#: g10/gpg.c:3240 #, fuzzy, c-format msgid "invalid keyserver options\n" msgstr "vigased ekspordi võtmed\n" -#: g10/gpg.c:3229 +#: g10/gpg.c:3247 #, c-format msgid "%s:%d: invalid import options\n" msgstr "%s:%d: vigased impordi võtmed\n" -#: g10/gpg.c:3232 +#: g10/gpg.c:3250 #, c-format msgid "invalid import options\n" msgstr "vigased impordi võtmed\n" -#: g10/gpg.c:3238 g10/gpg.c:3253 +#: g10/gpg.c:3256 g10/gpg.c:3271 #, fuzzy, c-format msgid "invalid filter option: %s\n" msgstr "vigased impordi võtmed\n" -#: g10/gpg.c:3244 +#: g10/gpg.c:3262 #, c-format msgid "%s:%d: invalid export options\n" msgstr "%s:%d: vigased ekspordi võtmed\n" -#: g10/gpg.c:3247 +#: g10/gpg.c:3265 #, c-format msgid "invalid export options\n" msgstr "vigased ekspordi võtmed\n" -#: g10/gpg.c:3259 +#: g10/gpg.c:3277 #, fuzzy, c-format msgid "%s:%d: invalid list options\n" msgstr "%s:%d: vigased impordi võtmed\n" -#: g10/gpg.c:3262 +#: g10/gpg.c:3280 #, fuzzy, c-format msgid "invalid list options\n" msgstr "vigased impordi võtmed\n" -#: g10/gpg.c:3270 +#: g10/gpg.c:3288 msgid "display photo IDs during signature verification" msgstr "" -#: g10/gpg.c:3272 +#: g10/gpg.c:3290 msgid "show policy URLs during signature verification" msgstr "" -#: g10/gpg.c:3274 +#: g10/gpg.c:3292 #, fuzzy msgid "show all notations during signature verification" msgstr "%s ei ole lubatud kooditabel\n" -#: g10/gpg.c:3276 +#: g10/gpg.c:3294 msgid "show IETF standard notations during signature verification" msgstr "" -#: g10/gpg.c:3280 +#: g10/gpg.c:3298 msgid "show user-supplied notations during signature verification" msgstr "" -#: g10/gpg.c:3282 +#: g10/gpg.c:3300 #, fuzzy msgid "show preferred keyserver URLs during signature verification" msgstr "antud allkirja poliisi URL on vigane\n" -#: g10/gpg.c:3284 +#: g10/gpg.c:3302 #, fuzzy msgid "show user ID validity during signature verification" msgstr "%s ei ole lubatud kooditabel\n" -#: g10/gpg.c:3286 +#: g10/gpg.c:3304 msgid "show revoked and expired user IDs in signature verification" msgstr "" -#: g10/gpg.c:3288 +#: g10/gpg.c:3306 #, fuzzy msgid "show only the primary user ID in signature verification" msgstr "%s ei ole lubatud kooditabel\n" -#: g10/gpg.c:3290 +#: g10/gpg.c:3308 msgid "validate signatures with PKA data" msgstr "" -#: g10/gpg.c:3292 +#: g10/gpg.c:3310 msgid "elevate the trust of signatures with valid PKA data" msgstr "" -#: g10/gpg.c:3299 +#: g10/gpg.c:3317 #, fuzzy, c-format msgid "%s:%d: invalid verify options\n" msgstr "%s:%d: vigased ekspordi võtmed\n" -#: g10/gpg.c:3302 +#: g10/gpg.c:3320 #, fuzzy, c-format msgid "invalid verify options\n" msgstr "vigased ekspordi võtmed\n" -#: g10/gpg.c:3309 +#: g10/gpg.c:3327 #, c-format msgid "unable to set exec-path to %s\n" msgstr "exec-path väärtuseks ei õnnestu seada %s\n" -#: g10/gpg.c:3513 +#: g10/gpg.c:3531 #, fuzzy, c-format msgid "%s:%d: invalid auto-key-locate list\n" msgstr "%s:%d: vigased ekspordi võtmed\n" -#: g10/gpg.c:3516 +#: g10/gpg.c:3534 #, c-format msgid "invalid auto-key-locate list\n" msgstr "" -#: g10/gpg.c:3700 sm/gpgsm.c:1492 +#: g10/gpg.c:3718 sm/gpgsm.c:1492 #, c-format msgid "WARNING: program may create a core file!\n" msgstr "HOIATUS: programm võib salvestada oma mälupildi!\n" -#: g10/gpg.c:3711 +#: g10/gpg.c:3729 #, c-format msgid "WARNING: %s overrides %s\n" msgstr "HOIATUS: %s määrab üle %s\n" -#: g10/gpg.c:3720 +#: g10/gpg.c:3738 #, c-format msgid "%s not allowed with %s!\n" msgstr "%s ja %s ei ole koos lubatud!\n" -#: g10/gpg.c:3723 +#: g10/gpg.c:3741 #, c-format msgid "%s makes no sense with %s!\n" msgstr "%s ja %s ei oma koos mõtet!\n" -#: g10/gpg.c:3738 sm/gpgsm.c:1509 dirmngr/dirmngr.c:1205 +#: g10/gpg.c:3756 sm/gpgsm.c:1509 dirmngr/dirmngr.c:1205 #, c-format msgid "WARNING: running with faked system time: " msgstr "" -#: g10/gpg.c:3759 +#: g10/gpg.c:3777 #, fuzzy, c-format msgid "will not run with insecure memory due to %s\n" msgstr "kirjutan salajase võtme faili `%s'\n" -#: g10/gpg.c:3804 g10/gpg.c:3828 sm/gpgsm.c:1579 +#: g10/gpg.c:3824 g10/gpg.c:3848 sm/gpgsm.c:1579 #, c-format msgid "selected cipher algorithm is invalid\n" msgstr "valitud šifri algoritm ei ole lubatud\n" -#: g10/gpg.c:3816 +#: g10/gpg.c:3836 #, fuzzy, c-format msgid "selected compression algorithm is invalid\n" msgstr "valitud šifri algoritm ei ole lubatud\n" -#: g10/gpg.c:3822 +#: g10/gpg.c:3842 #, c-format msgid "selected certification digest algorithm is invalid\n" msgstr "valitud sertifikaadi lühendi algoritm ei ole lubatud\n" -#: g10/gpg.c:3837 +#: g10/gpg.c:3857 #, c-format msgid "completes-needed must be greater than 0\n" msgstr "completes-needed peab olema suurem, kui 0\n" -#: g10/gpg.c:3839 +#: g10/gpg.c:3859 #, c-format msgid "marginals-needed must be greater than 1\n" msgstr "marginals-needed peab olema suurem, kui 1\n" -#: g10/gpg.c:3841 +#: g10/gpg.c:3861 #, fuzzy, c-format msgid "max-cert-depth must be in the range from 1 to 255\n" msgstr "max-cert-depth peab olema vahemikus 1 kuni 255\n" -#: g10/gpg.c:3843 +#: g10/gpg.c:3863 #, c-format msgid "invalid default-cert-level; must be 0, 1, 2, or 3\n" msgstr "vigane vaikimisi-sert-tase; peab olema 0, 1, 2 või 3\n" -#: g10/gpg.c:3845 +#: g10/gpg.c:3865 #, c-format msgid "invalid min-cert-level; must be 1, 2, or 3\n" msgstr "vigane min-sert-tase; peab olema 1, 2 või 3\n" -#: g10/gpg.c:3849 +#: g10/gpg.c:3869 #, fuzzy, c-format #| msgid "NOTE: simple S2K mode (0) is strongly discouraged\n" msgid "Note: simple S2K mode (0) is strongly discouraged\n" msgstr "MÄRKUS: lihtne S2K mood (0) ei soovitata kasutada\n" -#: g10/gpg.c:3853 +#: g10/gpg.c:3873 #, c-format msgid "invalid S2K mode; must be 0, 1 or 3\n" msgstr "vigane S2K mood; peab olema 0, 1 või 3\n" -#: g10/gpg.c:3860 +#: g10/gpg.c:3880 #, c-format msgid "invalid default preferences\n" msgstr "vigased vaikimisi eelistused\n" -#: g10/gpg.c:3864 +#: g10/gpg.c:3884 #, c-format msgid "invalid personal cipher preferences\n" msgstr "vigased isikliku šifri eelistused\n" -#: g10/gpg.c:3868 +#: g10/gpg.c:3888 #, c-format msgid "invalid personal digest preferences\n" msgstr "vigased isikliku lühendi eelistused\n" -#: g10/gpg.c:3872 +#: g10/gpg.c:3892 #, c-format msgid "invalid personal compress preferences\n" msgstr "vigased isikliku pakkimise eelistused\n" -#: g10/gpg.c:3908 +#: g10/gpg.c:3928 #, c-format msgid "%s does not yet work with %s\n" msgstr "%s ei tööta veel koos %s-ga\n" -#: g10/gpg.c:3971 +#: g10/gpg.c:3991 #, fuzzy, c-format msgid "compression algorithm '%s' may not be used in %s mode\n" msgstr "pakkimise algoritm \"%s\" ei ole moodis %s lubatud\n" -#: g10/gpg.c:4115 +#: g10/gpg.c:4135 #, c-format msgid "failed to initialize the TrustDB: %s\n" msgstr "TrustDB initsialiseerimine ebaõnnestus: %s\n" -#: g10/gpg.c:4127 +#: g10/gpg.c:4147 #, c-format msgid "WARNING: recipients (-r) given without using public key encryption\n" msgstr "" "HOIATUS: määrati saajad (-r) aga ei kasutata avaliku võtme krüptograafiat\n" -#: g10/gpg.c:4199 +#: g10/gpg.c:4219 #, fuzzy, c-format msgid "symmetric encryption of '%s' failed: %s\n" msgstr "lahtikrüpteerimine ebaõnnestus: %s\n" -#: g10/gpg.c:4228 +#: g10/gpg.c:4248 #, c-format msgid "you cannot use --symmetric --encrypt with --s2k-mode 0\n" msgstr "" -#: g10/gpg.c:4231 +#: g10/gpg.c:4251 #, fuzzy, c-format msgid "you cannot use --symmetric --encrypt in %s mode\n" msgstr "%s ei ole moodis %s lubatud.\n" -#: g10/gpg.c:4289 +#: g10/gpg.c:4309 #, c-format msgid "you cannot use --symmetric --sign --encrypt with --s2k-mode 0\n" msgstr "" -#: g10/gpg.c:4292 +#: g10/gpg.c:4312 #, fuzzy, c-format msgid "you cannot use --symmetric --sign --encrypt in %s mode\n" msgstr "%s ei ole moodis %s lubatud.\n" -#: g10/gpg.c:4692 g10/keyserver.c:1648 +#: g10/gpg.c:4712 g10/keyserver.c:1648 #, c-format msgid "keyserver send failed: %s\n" msgstr "võtmeserverile saatmine ebaõnnestus: %s\n" -#: g10/gpg.c:4697 +#: g10/gpg.c:4717 #, c-format msgid "keyserver receive failed: %s\n" msgstr "võtmeserverilt lugemine ebaõnnestus: %s\n" -#: g10/gpg.c:4703 +#: g10/gpg.c:4723 #, c-format msgid "key export failed: %s\n" msgstr "võtme eksport ebaõnnestus: %s\n" -#: g10/gpg.c:4716 +#: g10/gpg.c:4736 #, fuzzy, c-format #| msgid "key export failed: %s\n" msgid "export as ssh key failed: %s\n" msgstr "võtme eksport ebaõnnestus: %s\n" -#: g10/gpg.c:4728 +#: g10/gpg.c:4748 #, c-format msgid "keyserver search failed: %s\n" msgstr "võtmeserveri otsing ebaõnnestus: %s\n" -#: g10/gpg.c:4741 +#: g10/gpg.c:4761 #, c-format msgid "keyserver refresh failed: %s\n" msgstr "võtmeserveri uuendamine ebaõnnestus: %s\n" -#: g10/gpg.c:4810 +#: g10/gpg.c:4830 #, c-format msgid "dearmoring failed: %s\n" msgstr "lahtipakendamine ebaõnnestus: %s\n" -#: g10/gpg.c:4821 +#: g10/gpg.c:4841 #, c-format msgid "enarmoring failed: %s\n" msgstr "pakendamine ebaõnnestus: %s\n" -#: g10/gpg.c:4913 +#: g10/gpg.c:4933 #, fuzzy, c-format #| msgid "invalid hash algorithm `%s'\n" msgid "invalid hash algorithm '%s'\n" msgstr "vigane räsialgoritm `%s'\n" -#: g10/gpg.c:5065 g10/tofu.c:2153 +#: g10/gpg.c:5085 g10/tofu.c:2153 #, fuzzy, c-format msgid "error parsing key specification '%s': %s\n" msgstr "viga parooli loomisel: %s\n" -#: g10/gpg.c:5078 +#: g10/gpg.c:5098 #, c-format msgid "'%s' does not appear to be a valid key ID, fingerprint or keygrip\n" msgstr "" -#: g10/gpg.c:5134 +#: g10/gpg.c:5154 #, c-format msgid "WARNING: no command supplied. Trying to guess what you mean ...\n" msgstr "" -#: g10/gpg.c:5145 +#: g10/gpg.c:5165 #, c-format msgid "Go ahead and type your message ...\n" msgstr "Kirjutage nüüd oma teade ...\n" -#: g10/gpg.c:5490 +#: g10/gpg.c:5510 #, c-format msgid "the given certification policy URL is invalid\n" msgstr "antud sertifikaadi poliisi URL on vigane\n" -#: g10/gpg.c:5492 +#: g10/gpg.c:5512 #, c-format msgid "the given signature policy URL is invalid\n" msgstr "antud allkirja poliisi URL on vigane\n" -#: g10/gpg.c:5525 +#: g10/gpg.c:5545 #, fuzzy, c-format msgid "the given preferred keyserver URL is invalid\n" msgstr "antud allkirja poliisi URL on vigane\n" @@ -3659,320 +3665,320 @@ msgid "No help available for '%s'" msgstr "`%s' kohta abiinfo puudub" -#: g10/import.c:169 +#: g10/import.c:170 msgid "import signatures that are marked as local-only" msgstr "" -#: g10/import.c:172 +#: g10/import.c:173 msgid "repair damage from the pks keyserver during import" msgstr "" -#: g10/import.c:175 +#: g10/import.c:176 #, fuzzy msgid "do not clear the ownertrust values during import" msgstr "uuenda usalduse andmebaasi" -#: g10/import.c:178 +#: g10/import.c:179 #, fuzzy msgid "do not update the trustdb after import" msgstr "uuenda usalduse andmebaasi" -#: g10/import.c:181 +#: g10/import.c:182 #, fuzzy msgid "show key during import" msgstr "näita sõrmejälge" -#: g10/import.c:184 +#: g10/import.c:185 msgid "only accept updates to existing keys" msgstr "" -#: g10/import.c:187 +#: g10/import.c:188 #, fuzzy msgid "remove unusable parts from key after import" msgstr "mittekasutatav salajane võti" -#: g10/import.c:190 +#: g10/import.c:191 msgid "remove as much as possible from key after import" msgstr "" -#: g10/import.c:193 +#: g10/import.c:194 msgid "ignore key-signatures which are not self-signatures" msgstr "" -#: g10/import.c:196 +#: g10/import.c:197 msgid "run import filters and export key immediately" msgstr "" -#: g10/import.c:199 +#: g10/import.c:200 msgid "assume the GnuPG key backup format" msgstr "" -#: g10/import.c:203 +#: g10/import.c:204 #, fuzzy msgid "repair keys on import" msgstr "näita sõrmejälge" -#: g10/import.c:392 g10/import.c:711 +#: g10/import.c:393 g10/import.c:712 #, c-format msgid "skipping block of type %d\n" msgstr "jätan bloki tüübiga %d vahele\n" -#: g10/import.c:728 +#: g10/import.c:729 #, fuzzy, c-format msgid "%lu keys processed so far\n" msgstr "%lu võtit on seni töödeldud\n" -#: g10/import.c:814 +#: g10/import.c:815 #, c-format msgid "Total number processed: %lu\n" msgstr "Töödeldud kokku: %lu\n" -#: g10/import.c:817 +#: g10/import.c:818 #, fuzzy, c-format #| msgid " skipped new keys: %lu\n" msgid " skipped PGP-2 keys: %lu\n" msgstr " vahele jäetud uusi võtmeid: %lu\n" -#: g10/import.c:819 +#: g10/import.c:820 #, c-format msgid " skipped new keys: %lu\n" msgstr " vahele jäetud uusi võtmeid: %lu\n" -#: g10/import.c:822 +#: g10/import.c:823 #, c-format msgid " w/o user IDs: %lu\n" msgstr " puudub kasutaja ID: %lu\n" -#: g10/import.c:825 sm/import.c:130 +#: g10/import.c:826 sm/import.c:130 #, c-format msgid " imported: %lu" msgstr " imporditud: %lu" -#: g10/import.c:829 sm/import.c:134 +#: g10/import.c:830 sm/import.c:134 #, c-format msgid " unchanged: %lu\n" msgstr " muutmata: %lu\n" -#: g10/import.c:831 +#: g10/import.c:832 #, c-format msgid " new user IDs: %lu\n" msgstr " uusi kasutajaid: %lu\n" -#: g10/import.c:833 +#: g10/import.c:834 #, c-format msgid " new subkeys: %lu\n" msgstr " uusi alamvõtmeid: %lu\n" -#: g10/import.c:835 +#: g10/import.c:836 #, c-format msgid " new signatures: %lu\n" msgstr " uusi allkirju: %lu\n" -#: g10/import.c:837 +#: g10/import.c:838 #, c-format msgid " new key revocations: %lu\n" msgstr " uusi tühistamisi: %lu\n" -#: g10/import.c:839 sm/import.c:136 +#: g10/import.c:840 sm/import.c:136 #, c-format msgid " secret keys read: %lu\n" msgstr " loetud salajasi võtmeid: %lu\n" -#: g10/import.c:841 sm/import.c:138 +#: g10/import.c:842 sm/import.c:138 #, c-format msgid " secret keys imported: %lu\n" msgstr " salajasi võtmeid imporditud: %lu\n" -#: g10/import.c:843 sm/import.c:140 +#: g10/import.c:844 sm/import.c:140 #, c-format msgid " secret keys unchanged: %lu\n" msgstr " muutmata salajasi võtmeid: %lu\n" -#: g10/import.c:845 sm/import.c:142 +#: g10/import.c:846 sm/import.c:142 #, c-format msgid " not imported: %lu\n" msgstr " pole imporditud: %lu\n" -#: g10/import.c:847 +#: g10/import.c:848 #, fuzzy, c-format msgid " signatures cleaned: %lu\n" msgstr " uusi allkirju: %lu\n" -#: g10/import.c:849 +#: g10/import.c:850 #, fuzzy, c-format msgid " user IDs cleaned: %lu\n" msgstr " loetud salajasi võtmeid: %lu\n" -#: g10/import.c:1276 +#: g10/import.c:1277 #, c-format msgid "" "WARNING: key %s contains preferences for unavailable\n" "algorithms on these user IDs:\n" msgstr "" -#: g10/import.c:1318 +#: g10/import.c:1319 #, c-format msgid " \"%s\": preference for cipher algorithm %s\n" msgstr "" -#: g10/import.c:1333 +#: g10/import.c:1334 #, fuzzy, c-format msgid " \"%s\": preference for digest algorithm %s\n" msgstr "%s allkiri, sõnumilühendi algoritm %s\n" -#: g10/import.c:1345 +#: g10/import.c:1346 #, c-format msgid " \"%s\": preference for compression algorithm %s\n" msgstr "" -#: g10/import.c:1358 +#: g10/import.c:1359 #, c-format msgid "it is strongly suggested that you update your preferences and\n" msgstr "" -#: g10/import.c:1360 +#: g10/import.c:1361 #, c-format msgid "re-distribute this key to avoid potential algorithm mismatch problems\n" msgstr "" -#: g10/import.c:1385 +#: g10/import.c:1386 #, c-format msgid "you can update your preferences with: gpg --edit-key %s updpref save\n" msgstr "" -#: g10/import.c:1899 g10/import.c:3013 +#: g10/import.c:1902 g10/import.c:3028 #, fuzzy, c-format msgid "key %s: no user ID\n" msgstr "võti %08lX: kasutaja ID puudub\n" -#: g10/import.c:1905 +#: g10/import.c:1908 #, fuzzy, c-format msgid "key %s: %s\n" msgstr "`%s' jätsin vahele: %s\n" -#: g10/import.c:1906 g10/import.c:2985 +#: g10/import.c:1909 g10/import.c:3000 msgid "rejected by import screener" msgstr "" -#: g10/import.c:1950 +#: g10/import.c:1953 #, fuzzy, c-format msgid "key %s: PKS subkey corruption repaired\n" msgstr "võti %08lX: HKP alamvõtme rike parandatud\n" -#: g10/import.c:1971 +#: g10/import.c:1974 #, fuzzy, c-format msgid "key %s: accepted non self-signed user ID \"%s\"\n" msgstr "" "võti %08lX: aktsepteerisin iseenda poolt allakirjutamata kasutaja ID '%s'\n" -#: g10/import.c:1981 g10/import.c:2012 +#: g10/import.c:1985 g10/import.c:2016 #, fuzzy, c-format msgid "key %s: no valid user IDs\n" msgstr "võti %08lX: puudub kehtiv kasutaja ID\n" -#: g10/import.c:1983 +#: g10/import.c:1987 #, c-format msgid "this may be caused by a missing self-signature\n" msgstr "see võib olla põhjustatud puuduvast iseenda allkirjast\n" -#: g10/import.c:2062 g10/import.c:3399 +#: g10/import.c:2066 g10/import.c:3415 #, fuzzy, c-format msgid "key %s: public key not found: %s\n" msgstr "võti %08lX: avalikku võtit ei leitud: %s\n" -#: g10/import.c:2068 +#: g10/import.c:2072 #, fuzzy, c-format msgid "key %s: new key - skipped\n" msgstr "võti %08lX: uus võti - jätsin vahele\n" -#: g10/import.c:2080 +#: g10/import.c:2084 #, c-format msgid "no writable keyring found: %s\n" msgstr "ei leia kirjutatavat võtmehoidlat: %s\n" -#: g10/import.c:2112 g10/import.c:2214 g10/import.c:3476 +#: g10/import.c:2116 g10/import.c:2218 g10/import.c:3492 #, fuzzy, c-format #| msgid "error writing keyring `%s': %s\n" msgid "error writing keyring '%s': %s\n" msgstr "viga võtmehoidlasse `%s' kirjutamisel: %s\n" -#: g10/import.c:2135 +#: g10/import.c:2139 #, fuzzy, c-format msgid "key %s: public key \"%s\" imported\n" msgstr "võti %08lX: avalik võti \"%s\" on imporditud\n" -#: g10/import.c:2162 +#: g10/import.c:2166 #, fuzzy, c-format msgid "key %s: doesn't match our copy\n" msgstr "võti %08lX: ei sobi meie koopiaga\n" -#: g10/import.c:2230 +#: g10/import.c:2234 #, fuzzy, c-format msgid "key %s: \"%s\" 1 new user ID\n" msgstr "võti %08lX: \"%s\" 1 uus kasutaja ID\n" -#: g10/import.c:2233 +#: g10/import.c:2237 #, fuzzy, c-format msgid "key %s: \"%s\" %d new user IDs\n" msgstr "võti %08lX: \"%s\" %d uut kasutaja IDd\n" -#: g10/import.c:2236 +#: g10/import.c:2240 #, fuzzy, c-format msgid "key %s: \"%s\" 1 new signature\n" msgstr "võti %08lX: \"%s\" 1 uus allkiri\n" -#: g10/import.c:2239 +#: g10/import.c:2243 #, fuzzy, c-format msgid "key %s: \"%s\" %d new signatures\n" msgstr "võti %08lX: \"%s\" %d uut allkirja\n" -#: g10/import.c:2242 +#: g10/import.c:2246 #, fuzzy, c-format msgid "key %s: \"%s\" 1 new subkey\n" msgstr "võti %08lX: \"%s\" 1 uus alamvõti\n" -#: g10/import.c:2245 +#: g10/import.c:2249 #, fuzzy, c-format msgid "key %s: \"%s\" %d new subkeys\n" msgstr "võti %08lX: \"%s\" %d uut alamvõtit\n" -#: g10/import.c:2248 +#: g10/import.c:2252 #, fuzzy, c-format msgid "key %s: \"%s\" %d signature cleaned\n" msgstr "võti %08lX: \"%s\" %d uut allkirja\n" -#: g10/import.c:2251 +#: g10/import.c:2255 #, fuzzy, c-format msgid "key %s: \"%s\" %d signatures cleaned\n" msgstr "võti %08lX: \"%s\" %d uut allkirja\n" -#: g10/import.c:2254 +#: g10/import.c:2258 #, fuzzy, c-format msgid "key %s: \"%s\" %d user ID cleaned\n" msgstr "võti %08lX: \"%s\" %d uut kasutaja IDd\n" -#: g10/import.c:2257 +#: g10/import.c:2261 #, fuzzy, c-format msgid "key %s: \"%s\" %d user IDs cleaned\n" msgstr "võti %08lX: \"%s\" %d uut kasutaja IDd\n" -#: g10/import.c:2293 +#: g10/import.c:2297 #, fuzzy, c-format msgid "key %s: \"%s\" not changed\n" msgstr "võti %08lX: \"%s\" ei muudetud\n" -#: g10/import.c:2652 g10/import.c:2847 +#: g10/import.c:2667 g10/import.c:2862 #, fuzzy, c-format msgid "key %s: secret key imported\n" msgstr "võti %08lX: salajane võti on imporditud\n" -#: g10/import.c:2660 +#: g10/import.c:2675 #, fuzzy, c-format #| msgid "skipped: secret key already present\n" msgid "key %s: secret key already exists\n" msgstr "jätsin vahele: avalik võti on juba olemas\n" -#: g10/import.c:2668 +#: g10/import.c:2683 #, fuzzy, c-format msgid "key %s: error sending to agent: %s\n" msgstr "viga teate saatmisel serverile `%s': %s\n" @@ -3985,195 +3991,195 @@ #. * Instead, user should be suggested to run 'gpg --card-status', #. * then, references to a card will be automatically created #. * again. -#: g10/import.c:2837 +#: g10/import.c:2852 #, c-format msgid "To migrate '%s', with each smartcard, run: %s\n" msgstr "" -#: g10/import.c:2984 +#: g10/import.c:2999 #, fuzzy, c-format msgid "secret key %s: %s\n" msgstr "salajast võtit `%s' ei leitud: %s\n" -#: g10/import.c:3005 g10/import.c:3044 +#: g10/import.c:3020 g10/import.c:3059 #, fuzzy, c-format msgid "importing secret keys not allowed\n" msgstr "kirjutan salajase võtme faili `%s'\n" -#: g10/import.c:3032 +#: g10/import.c:3047 #, fuzzy, c-format msgid "key %s: secret key with invalid cipher %d - skipped\n" msgstr "võti %08lX: salajane võti vigase šifriga %d - jätsin vahele\n" -#: g10/import.c:3194 g10/pkclist.c:72 g10/revoke.c:776 +#: g10/import.c:3209 g10/pkclist.c:72 g10/revoke.c:776 msgid "No reason specified" msgstr "Põhjus puudub" -#: g10/import.c:3195 g10/pkclist.c:74 g10/revoke.c:778 +#: g10/import.c:3210 g10/pkclist.c:74 g10/revoke.c:778 msgid "Key is superseded" msgstr "Võti on asendatud" -#: g10/import.c:3196 g10/pkclist.c:76 g10/revoke.c:777 +#: g10/import.c:3211 g10/pkclist.c:76 g10/revoke.c:777 msgid "Key has been compromised" msgstr "Võti on kompromiteeritud" -#: g10/import.c:3197 g10/pkclist.c:78 g10/revoke.c:779 +#: g10/import.c:3212 g10/pkclist.c:78 g10/revoke.c:779 msgid "Key is no longer used" msgstr "Võti ei ole enam kasutusel" -#: g10/import.c:3198 g10/pkclist.c:80 g10/revoke.c:780 +#: g10/import.c:3213 g10/pkclist.c:80 g10/revoke.c:780 msgid "User ID is no longer valid" msgstr "Kasutaja ID ei ole enam kehtiv" -#: g10/import.c:3323 g10/keylist.c:1258 g10/pkclist.c:84 +#: g10/import.c:3338 g10/keylist.c:1258 g10/pkclist.c:84 #, c-format msgid "reason for revocation: " msgstr "tühistamise põhjus: " -#: g10/import.c:3342 g10/keylist.c:1277 g10/pkclist.c:100 +#: g10/import.c:3357 g10/keylist.c:1277 g10/pkclist.c:100 #, c-format msgid "revocation comment: " msgstr "tühistamise kommentaar: " -#: g10/import.c:3392 +#: g10/import.c:3408 #, fuzzy, c-format msgid "key %s: no public key - can't apply revocation certificate\n" msgstr "" "võti %08lX: avalik võti puudub - tühistamise sertifikaati ei saa rakendada\n" -#: g10/import.c:3423 +#: g10/import.c:3439 #, fuzzy, c-format msgid "key %s: can't locate original keyblock: %s\n" msgstr "võti %08lX: ei leia algset võtmeblokki: %s\n" -#: g10/import.c:3430 +#: g10/import.c:3446 #, fuzzy, c-format msgid "key %s: can't read original keyblock: %s\n" msgstr "võti %08lX: ei õnnestu lugeda algset võtmeblokki: %s\n" -#: g10/import.c:3450 +#: g10/import.c:3466 #, fuzzy, c-format msgid "key %s: invalid revocation certificate: %s - rejected\n" msgstr "võti %08lX: vigane tühistamise sertifikaat: %s - lükkasin tagasi\n" -#: g10/import.c:3485 +#: g10/import.c:3501 #, fuzzy, c-format msgid "key %s: \"%s\" revocation certificate imported\n" msgstr "võti %08lX: \"%s\" tühistamise sertifikaat imporditud\n" -#: g10/import.c:3571 +#: g10/import.c:3587 #, fuzzy, c-format msgid "key %s: no user ID for signature\n" msgstr "võti %08lX: allkirjal puudub kasutaja ID\n" -#: g10/import.c:3588 +#: g10/import.c:3604 #, fuzzy, c-format msgid "key %s: unsupported public key algorithm on user ID \"%s\"\n" msgstr "võti %08lX: mittetoetatud avaliku võtme algoritm kasutajaga \"%s\"\n" -#: g10/import.c:3590 +#: g10/import.c:3606 #, fuzzy, c-format msgid "key %s: invalid self-signature on user ID \"%s\"\n" msgstr "võti %08lX: kasutajal \"%s\" on vigane iseenda allkiri\n" -#: g10/import.c:3607 g10/import.c:3635 g10/import.c:3691 +#: g10/import.c:3623 g10/import.c:3651 g10/import.c:3707 #, fuzzy, c-format msgid "key %s: unsupported public key algorithm\n" msgstr "võti %08lX: mittetoetatud avaliku võtme algoritm\n" -#: g10/import.c:3608 +#: g10/import.c:3624 #, fuzzy, c-format msgid "key %s: invalid direct key signature\n" msgstr "võti %08lX: lisatud vahetu võtme allkiri\n" -#: g10/import.c:3622 +#: g10/import.c:3638 #, fuzzy, c-format msgid "key %s: no subkey for key binding\n" msgstr "võti %08lX: võtmeseosel puudub alamvõti\n" -#: g10/import.c:3637 +#: g10/import.c:3653 #, fuzzy, c-format msgid "key %s: invalid subkey binding\n" msgstr "võti %08lX: vigane alamvõtme seos\n" -#: g10/import.c:3656 +#: g10/import.c:3672 #, fuzzy, c-format msgid "key %s: removed multiple subkey binding\n" msgstr "võti %08lX: vigane mitme alamvõtme seos\n" -#: g10/import.c:3680 +#: g10/import.c:3696 #, fuzzy, c-format msgid "key %s: no subkey for key revocation\n" msgstr "võti %08lX: võtme tühistamiseks puudub alamvõti\n" -#: g10/import.c:3693 +#: g10/import.c:3709 #, fuzzy, c-format msgid "key %s: invalid subkey revocation\n" msgstr "võti %08lX: vigane alamvõtme tühistamine\n" -#: g10/import.c:3708 +#: g10/import.c:3724 #, fuzzy, c-format msgid "key %s: removed multiple subkey revocation\n" msgstr "võti %08lX: eemaldasin mitme alamvõtme tühistamise\n" -#: g10/import.c:3752 +#: g10/import.c:3771 #, fuzzy, c-format msgid "key %s: skipped user ID \"%s\"\n" msgstr "võti %08lX: jätsin vahele kasutaja ID '" -#: g10/import.c:3779 +#: g10/import.c:3798 #, fuzzy, c-format msgid "key %s: skipped subkey\n" msgstr "võti %08lX: jätsin alamvõtme vahele\n" -#: g10/import.c:3810 +#: g10/import.c:3829 #, fuzzy, c-format msgid "key %s: non exportable signature (class 0x%02X) - skipped\n" msgstr "võti %08lX: mitte eksporditav allkiri (klass %02x) - jätan vahele\n" -#: g10/import.c:3821 +#: g10/import.c:3840 #, fuzzy, c-format msgid "key %s: revocation certificate at wrong place - skipped\n" msgstr "võti %08lX: tühistamise sertifikaat on vales kohas - jätan vahele\n" -#: g10/import.c:3839 +#: g10/import.c:3868 #, fuzzy, c-format msgid "key %s: invalid revocation certificate: %s - skipped\n" msgstr "võti %08lX: vigane tühistamise sertifikaat: %s - jätan vahele\n" -#: g10/import.c:3853 +#: g10/import.c:3892 #, fuzzy, c-format msgid "key %s: subkey signature in wrong place - skipped\n" msgstr "võti %08lX: alamvõtme allkiri on vales kohas - jätan vahele\n" -#: g10/import.c:3861 +#: g10/import.c:3900 #, fuzzy, c-format msgid "key %s: unexpected signature class (0x%02X) - skipped\n" msgstr "võti %08lX: ootamatu allkirja klass (0x%02x) - jätan vahele\n" -#: g10/import.c:4034 +#: g10/import.c:4073 #, fuzzy, c-format msgid "key %s: duplicated user ID detected - merged\n" msgstr "võti %08lX: tuvastasin dubleeritud kasutaja ID - mestisin\n" -#: g10/import.c:4099 +#: g10/import.c:4138 #, fuzzy, c-format msgid "WARNING: key %s may be revoked: fetching revocation key %s\n" msgstr "" "HOIATUS: võti %08lX võib olla tühistatud: laen tühistamise võtit %08lX\n" -#: g10/import.c:4115 +#: g10/import.c:4154 #, fuzzy, c-format msgid "WARNING: key %s may be revoked: revocation key %s not present.\n" msgstr "" "HOIATUS: võti %08lX võib olla tühistatud: tühistamise võtit %08lX pole.\n" -#: g10/import.c:4181 +#: g10/import.c:4220 #, fuzzy, c-format msgid "key %s: \"%s\" revocation certificate added\n" msgstr "võti %08lX: \"%s\" tühistamise sertifikaat lisatud\n" -#: g10/import.c:4219 +#: g10/import.c:4258 #, fuzzy, c-format msgid "key %s: direct key signature added\n" msgstr "võti %08lX: lisatud vahetu võtme allkiri\n" @@ -5107,7 +5113,7 @@ msgid "You may not add a photo ID to a PGP2-style key.\n" msgstr "Foto IDd ei saa PGP2 võtmele lisada.\n" -#: g10/keyedit.c:4293 g10/keygen.c:2899 +#: g10/keyedit.c:4293 g10/keygen.c:2953 msgid "Such a user ID already exists on this key!\n" msgstr "" @@ -5396,83 +5402,83 @@ msgid "Displaying %s photo ID of size %ld for key %s (uid %d)\n" msgstr "Näitan %s foto IDd suurusega %ld, võti 0x%08lX (uid %d)\n" -#: g10/keygen.c:169 +#: g10/keygen.c:174 #, fuzzy, c-format msgid "invalid value for option '%s'\n" msgstr "vigased impordi võtmed\n" -#: g10/keygen.c:322 +#: g10/keygen.c:331 #, fuzzy, c-format msgid "preference '%s' duplicated\n" msgstr "eelistus %c%lu on duplikaat\n" -#: g10/keygen.c:329 +#: g10/keygen.c:338 #, fuzzy, c-format msgid "too many cipher preferences\n" msgstr "liiga palju `%c' eelistusi\n" -#: g10/keygen.c:331 +#: g10/keygen.c:340 #, fuzzy, c-format msgid "too many digest preferences\n" msgstr "liiga palju `%c' eelistusi\n" -#: g10/keygen.c:333 +#: g10/keygen.c:342 #, fuzzy, c-format msgid "too many compression preferences\n" msgstr "liiga palju `%c' eelistusi\n" -#: g10/keygen.c:493 +#: g10/keygen.c:502 #, fuzzy, c-format msgid "invalid item '%s' in preference string\n" msgstr "lubamatu sümbol eelistuste sõnes\n" -#: g10/keygen.c:972 +#: g10/keygen.c:1020 #, c-format msgid "writing direct signature\n" msgstr "kirjutan otsese allkirja\n" -#: g10/keygen.c:1018 +#: g10/keygen.c:1066 #, c-format msgid "writing self signature\n" msgstr "kirjutan iseenda allkirja\n" -#: g10/keygen.c:1075 +#: g10/keygen.c:1123 #, c-format msgid "writing key binding signature\n" msgstr "kirjutan võtit siduva allkirja\n" -#: g10/keygen.c:1440 g10/keygen.c:1445 g10/keygen.c:1497 g10/keygen.c:1502 -#: g10/keygen.c:1656 g10/keygen.c:1661 +#: g10/keygen.c:1494 g10/keygen.c:1499 g10/keygen.c:1551 g10/keygen.c:1556 +#: g10/keygen.c:1710 g10/keygen.c:1715 #, c-format msgid "keysize invalid; using %u bits\n" msgstr "vigane võtme suurus; kasutan %u bitti\n" -#: g10/keygen.c:1451 g10/keygen.c:1508 g10/keygen.c:1516 g10/keygen.c:1667 +#: g10/keygen.c:1505 g10/keygen.c:1562 g10/keygen.c:1570 g10/keygen.c:1721 #, c-format msgid "keysize rounded up to %u bits\n" msgstr "võtme suurus ümardatud üles %u bitini\n" -#: g10/keygen.c:1542 +#: g10/keygen.c:1596 #, c-format msgid "" "WARNING: some OpenPGP programs can't handle a DSA key with this digest size\n" msgstr "" -#: g10/keygen.c:1723 +#: g10/keygen.c:1777 #, fuzzy msgid "Sign" msgstr "sign" -#: g10/keygen.c:1726 +#: g10/keygen.c:1780 msgid "Certify" msgstr "" -#: g10/keygen.c:1729 +#: g10/keygen.c:1783 #, fuzzy msgid "Encrypt" msgstr "krüpteeri andmed" -#: g10/keygen.c:1732 +#: g10/keygen.c:1786 msgid "Authenticate" msgstr "" @@ -5486,169 +5492,169 @@ #. * a = Toggle authentication capability #. * q = Finish #. -#: g10/keygen.c:1753 +#: g10/keygen.c:1807 msgid "SsEeAaQq" msgstr "" -#: g10/keygen.c:1784 +#: g10/keygen.c:1838 #, c-format msgid "Possible actions for a %s key: " msgstr "" -#: g10/keygen.c:1790 +#: g10/keygen.c:1844 msgid "Current allowed actions: " msgstr "" -#: g10/keygen.c:1795 +#: g10/keygen.c:1849 #, c-format msgid " (%c) Toggle the sign capability\n" msgstr "" -#: g10/keygen.c:1798 +#: g10/keygen.c:1852 #, fuzzy, c-format msgid " (%c) Toggle the encrypt capability\n" msgstr " (%d) ElGamal (ainult krüptimiseks)\n" -#: g10/keygen.c:1801 +#: g10/keygen.c:1855 #, c-format msgid " (%c) Toggle the authenticate capability\n" msgstr "" -#: g10/keygen.c:1804 +#: g10/keygen.c:1858 #, c-format msgid " (%c) Finished\n" msgstr "" -#: g10/keygen.c:1930 +#: g10/keygen.c:1984 #, fuzzy, c-format msgid " (%d) RSA and RSA (default)\n" msgstr " (%d) DSA ja ElGamal (vaikimisi)\n" -#: g10/keygen.c:1934 +#: g10/keygen.c:1988 #, fuzzy, c-format msgid " (%d) DSA and Elgamal\n" msgstr " (%d) DSA ja ElGamal (vaikimisi)\n" -#: g10/keygen.c:1937 +#: g10/keygen.c:1991 #, c-format msgid " (%d) DSA (sign only)\n" msgstr " (%d) DSA (ainult allkirjastamiseks)\n" -#: g10/keygen.c:1939 +#: g10/keygen.c:1993 #, c-format msgid " (%d) RSA (sign only)\n" msgstr " (%d) RSA (ainult allkirjastamiseks)\n" -#: g10/keygen.c:1945 +#: g10/keygen.c:1999 #, fuzzy, c-format msgid " (%d) Elgamal (encrypt only)\n" msgstr " (%d) ElGamal (ainult krüptimiseks)\n" -#: g10/keygen.c:1947 +#: g10/keygen.c:2001 #, c-format msgid " (%d) RSA (encrypt only)\n" msgstr " (%d) RSA (ainult krüpteerimiseks)\n" -#: g10/keygen.c:1953 +#: g10/keygen.c:2007 #, fuzzy, c-format msgid " (%d) DSA (set your own capabilities)\n" msgstr " (%d) RSA (ainult krüpteerimiseks)\n" -#: g10/keygen.c:1955 +#: g10/keygen.c:2009 #, fuzzy, c-format msgid " (%d) RSA (set your own capabilities)\n" msgstr " (%d) RSA (ainult krüpteerimiseks)\n" -#: g10/keygen.c:1961 +#: g10/keygen.c:2015 #, fuzzy, c-format msgid " (%d) ECC and ECC\n" msgstr " (%d) DSA ja ElGamal (vaikimisi)\n" -#: g10/keygen.c:1963 +#: g10/keygen.c:2017 #, fuzzy, c-format #| msgid " (%d) DSA (sign only)\n" msgid " (%d) ECC (sign only)\n" msgstr " (%d) DSA (ainult allkirjastamiseks)\n" -#: g10/keygen.c:1965 +#: g10/keygen.c:2019 #, fuzzy, c-format msgid " (%d) ECC (set your own capabilities)\n" msgstr " (%d) RSA (ainult krüpteerimiseks)\n" -#: g10/keygen.c:1967 +#: g10/keygen.c:2021 #, fuzzy, c-format #| msgid " (%d) RSA (encrypt only)\n" msgid " (%d) ECC (encrypt only)\n" msgstr " (%d) RSA (ainult krüpteerimiseks)\n" -#: g10/keygen.c:1971 +#: g10/keygen.c:2025 #, fuzzy, c-format msgid " (%d) Existing key\n" msgstr " (%d) RSA (ainult krüpteerimiseks)\n" -#: g10/keygen.c:1973 +#: g10/keygen.c:2027 #, fuzzy, c-format msgid " (%d) Existing key from card\n" msgstr " (%d) RSA (ainult krüpteerimiseks)\n" -#: g10/keygen.c:2069 sm/certreqgen-ui.c:202 +#: g10/keygen.c:2123 sm/certreqgen-ui.c:202 #, fuzzy msgid "Enter the keygrip: " msgstr "Allkirja noteerimine: " -#: g10/keygen.c:2082 sm/certreqgen-ui.c:210 +#: g10/keygen.c:2136 sm/certreqgen-ui.c:210 msgid "Not a valid keygrip (expecting 40 hex digits)\n" msgstr "" -#: g10/keygen.c:2084 sm/certreqgen-ui.c:212 +#: g10/keygen.c:2138 sm/certreqgen-ui.c:212 #, fuzzy msgid "No key with this keygrip\n" msgstr "Kasutaja ID numbriga %d puudub\n" -#: g10/keygen.c:2103 g10/keygen.c:2113 g10/keygen.c:3216 g10/keygen.c:3227 +#: g10/keygen.c:2157 g10/keygen.c:2167 g10/keygen.c:3270 g10/keygen.c:3281 #: sm/certreqgen-ui.c:230 sm/certreqgen-ui.c:239 #, fuzzy, c-format msgid "error reading the card: %s\n" msgstr "%s: viga vaba kirje lugemisel: %s\n" -#: g10/keygen.c:2107 g10/keygen.c:3220 sm/certreqgen-ui.c:233 +#: g10/keygen.c:2161 g10/keygen.c:3274 sm/certreqgen-ui.c:233 #, fuzzy, c-format msgid "Serial number of the card: %s\n" msgstr "viga parooli loomisel: %s\n" -#: g10/keygen.c:2120 sm/certreqgen-ui.c:245 +#: g10/keygen.c:2174 sm/certreqgen-ui.c:245 #, fuzzy msgid "Available keys:\n" msgstr "blokeeri võti" -#: g10/keygen.c:2297 g10/keygen.c:2311 +#: g10/keygen.c:2351 g10/keygen.c:2365 #, fuzzy, c-format #| msgid "rounded up to %u bits\n" msgid "rounded to %u bits\n" msgstr "ümardatud üles %u bitini\n" -#: g10/keygen.c:2352 +#: g10/keygen.c:2406 #, c-format msgid "%s keys may be between %u and %u bits long.\n" msgstr "" -#: g10/keygen.c:2360 +#: g10/keygen.c:2414 #, fuzzy, c-format msgid "What keysize do you want for the subkey? (%u) " msgstr "Millist võtmepikkust te soovite? (1024) " -#: g10/keygen.c:2377 sm/certreqgen-ui.c:189 +#: g10/keygen.c:2431 sm/certreqgen-ui.c:189 #, c-format msgid "Requested keysize is %u bits\n" msgstr "Soovitud võtmepikkus on %u bitti\n" -#: g10/keygen.c:2423 +#: g10/keygen.c:2477 #, fuzzy #| msgid "Please select what kind of key you want:\n" msgid "Please select which elliptic curve you want:\n" msgstr "Palun valige, millist võtmetüüpi te soovite:\n" -#: g10/keygen.c:2611 +#: g10/keygen.c:2665 msgid "" "Please specify how long the key should be valid.\n" " 0 = key does not expire\n" @@ -5664,7 +5670,7 @@ " m = võti aegub n kuuga\n" " y = võti aegub n aastaga\n" -#: g10/keygen.c:2622 +#: g10/keygen.c:2676 msgid "" "Please specify how long the signature should be valid.\n" " 0 = signature does not expire\n" @@ -5680,40 +5686,40 @@ " m = allkiri aegub n kuuga\n" " y = allkiri aegub n aastaga\n" -#: g10/keygen.c:2645 +#: g10/keygen.c:2699 msgid "Key is valid for? (0) " msgstr "Võti on kehtiv kuni? (0) " -#: g10/keygen.c:2650 +#: g10/keygen.c:2704 #, fuzzy, c-format msgid "Signature is valid for? (%s) " msgstr "Allkiri on kehtiv kuni? (0) " -#: g10/keygen.c:2663 g10/keygen.c:2688 +#: g10/keygen.c:2717 g10/keygen.c:2742 msgid "invalid value\n" msgstr "vigane väärtus\n" -#: g10/keygen.c:2670 +#: g10/keygen.c:2724 #, fuzzy msgid "Key does not expire at all\n" msgstr "%s ei aegu kunagi\n" -#: g10/keygen.c:2671 +#: g10/keygen.c:2725 #, fuzzy msgid "Signature does not expire at all\n" msgstr "%s ei aegu kunagi\n" -#: g10/keygen.c:2676 +#: g10/keygen.c:2730 #, fuzzy, c-format msgid "Key expires at %s\n" msgstr "%s aegub %s\n" -#: g10/keygen.c:2677 +#: g10/keygen.c:2731 #, fuzzy, c-format msgid "Signature expires at %s\n" msgstr "Allkiri aegub %s\n" -#: g10/keygen.c:2681 +#: g10/keygen.c:2735 msgid "" "Your system can't display dates beyond 2038.\n" "However, it will be correctly handled up to 2106.\n" @@ -5721,12 +5727,12 @@ "Teie süsteem ei saa esitada kuupäevi peale aastat 2038.\n" "Siiski käsitletakse neid korrektselt aastani 2106.\n" -#: g10/keygen.c:2694 +#: g10/keygen.c:2748 #, fuzzy msgid "Is this correct? (y/N) " msgstr "On see õige (j/e)? " -#: g10/keygen.c:2762 +#: g10/keygen.c:2816 msgid "" "\n" "GnuPG needs to construct a user ID to identify your key.\n" @@ -5737,7 +5743,7 @@ #. but you should keep your existing translation. In case #. the new string is not translated this old string will #. be used. -#: g10/keygen.c:2777 +#: g10/keygen.c:2831 #, fuzzy msgid "" "\n" @@ -5753,50 +5759,50 @@ " \"Heinrich Heine (Der Dichter) \"\n" "\n" -#: g10/keygen.c:2796 +#: g10/keygen.c:2850 msgid "Real name: " msgstr "Pärisnimi: " -#: g10/keygen.c:2805 +#: g10/keygen.c:2859 msgid "Invalid character in name\n" msgstr "Lubamatu sümbol nimes\n" -#: g10/keygen.c:2806 +#: g10/keygen.c:2860 #, c-format msgid "The characters '%s' and '%s' may not appear in name\n" msgstr "" -#: g10/keygen.c:2810 +#: g10/keygen.c:2864 msgid "Name may not start with a digit\n" msgstr "Nimi ei või alata numbriga\n" -#: g10/keygen.c:2813 +#: g10/keygen.c:2867 msgid "Name must be at least 5 characters long\n" msgstr "Nimes peab olema vähemalt 5 sümbolit\n" -#: g10/keygen.c:2823 +#: g10/keygen.c:2877 msgid "Email address: " msgstr "E-posti aadress: " -#: g10/keygen.c:2829 +#: g10/keygen.c:2883 msgid "Not a valid email address\n" msgstr "Selline e-posti aadress ei ole lubatud\n" -#: g10/keygen.c:2838 +#: g10/keygen.c:2892 msgid "Comment: " msgstr "Kommentaar: " -#: g10/keygen.c:2844 +#: g10/keygen.c:2898 msgid "Invalid character in comment\n" msgstr "Lubamatu sümbol kommentaaris\n" -#: g10/keygen.c:2880 +#: g10/keygen.c:2934 #, fuzzy, c-format #| msgid "You are using the `%s' character set.\n" msgid "You are using the '%s' character set.\n" msgstr "Te kasutate kooditabelit `%s'.\n" -#: g10/keygen.c:2886 +#: g10/keygen.c:2940 #, c-format msgid "" "You selected this USER-ID:\n" @@ -5807,7 +5813,7 @@ " \"%s\"\n" "\n" -#: g10/keygen.c:2891 +#: g10/keygen.c:2945 msgid "Please don't put the email address into the real name or the comment\n" msgstr "Ärge palun kirjutage e-posti aadressi pärisnimesse ega kommentaari\n" @@ -5822,35 +5828,35 @@ #. o = Okay (ready, continue) #. q = Quit #. -#: g10/keygen.c:2916 +#: g10/keygen.c:2970 msgid "NnCcEeOoQq" msgstr "NnKkEeOoVv" -#: g10/keygen.c:2926 +#: g10/keygen.c:2980 msgid "Change (N)ame, (C)omment, (E)mail or (Q)uit? " msgstr "Muuda (N)ime, (K)ommentaari, (E)posti või (V)älju? " -#: g10/keygen.c:2927 +#: g10/keygen.c:2981 msgid "Change (N)ame, (C)omment, (E)mail or (O)kay/(Q)uit? " msgstr "Muuda (N)ime, (K)ommentaari, (E)posti või (O)k/(V)älju? " -#: g10/keygen.c:2932 +#: g10/keygen.c:2986 #, fuzzy #| msgid "Change (N)ame, (C)omment, (E)mail or (Q)uit? " msgid "Change (N)ame, (E)mail, or (Q)uit? " msgstr "Muuda (N)ime, (K)ommentaari, (E)posti või (V)älju? " -#: g10/keygen.c:2933 +#: g10/keygen.c:2987 #, fuzzy #| msgid "Change (N)ame, (C)omment, (E)mail or (O)kay/(Q)uit? " msgid "Change (N)ame, (E)mail, or (O)kay/(Q)uit? " msgstr "Muuda (N)ime, (K)ommentaari, (E)posti või (O)k/(V)älju? " -#: g10/keygen.c:2952 +#: g10/keygen.c:3006 msgid "Please correct the error first\n" msgstr "Palun parandage kõigepealt viga\n" -#: g10/keygen.c:2998 +#: g10/keygen.c:3052 msgid "" "We need to generate a lot of random bytes. It is a good idea to perform\n" "some other action (type on the keyboard, move the mouse, utilize the\n" @@ -5862,13 +5868,13 @@ "kasutada kettaid jne), see annaks juhuarvude generaatorile võimaluse\n" "koguda paremat entroopiat.\n" -#: g10/keygen.c:4278 g10/keygen.c:4349 g10/keygen.c:4367 g10/keygen.c:4395 -#: g10/keygen.c:4739 g10/keygen.c:5239 g10/keygen.c:5534 g10/keygen.c:5639 +#: g10/keygen.c:4332 g10/keygen.c:4403 g10/keygen.c:4421 g10/keygen.c:4449 +#: g10/keygen.c:4793 g10/keygen.c:5293 g10/keygen.c:5588 g10/keygen.c:5693 #, c-format msgid "Key generation failed: %s\n" msgstr "Võtme genereerimine ebaõnnestus: %s\n" -#: g10/keygen.c:4287 +#: g10/keygen.c:4341 #, c-format msgid "" "About to create a key for:\n" @@ -5876,67 +5882,67 @@ "\n" msgstr "" -#: g10/keygen.c:4289 +#: g10/keygen.c:4343 msgid "Continue? (Y/n) " msgstr "" -#: g10/keygen.c:4310 +#: g10/keygen.c:4364 #, fuzzy, c-format msgid "A key for \"%s\" already exists\n" msgstr "`%s' on juba pakitud\n" -#: g10/keygen.c:4315 +#: g10/keygen.c:4369 #, fuzzy msgid "Create anyway? (y/N) " msgstr "Kasutan seda võtit ikka? " -#: g10/keygen.c:4321 +#: g10/keygen.c:4375 #, fuzzy, c-format msgid "creating anyway\n" msgstr "genereeri uus võtmepaar" -#: g10/keygen.c:4722 +#: g10/keygen.c:4776 #, c-format msgid "Note: Use \"%s %s\" for a full featured key generation dialog.\n" msgstr "" -#: g10/keygen.c:4771 +#: g10/keygen.c:4825 #, c-format msgid "Key generation canceled.\n" msgstr "Võtme genereerimine katkestati.\n" -#: g10/keygen.c:4831 +#: g10/keygen.c:4885 #, fuzzy, c-format msgid "can't create backup file '%s': %s\n" msgstr "`%s' ei õnnestu luua: %s\n" -#: g10/keygen.c:4851 +#: g10/keygen.c:4905 #, fuzzy, c-format msgid "Note: backup of card key saved to '%s'\n" msgstr "MÄRKUS: salajane võti %08lX aegus %s\n" -#: g10/keygen.c:5010 g10/keygen.c:5172 +#: g10/keygen.c:5064 g10/keygen.c:5226 #, fuzzy, c-format #| msgid "writing public key to `%s'\n" msgid "writing public key to '%s'\n" msgstr "kirjutan avaliku võtme faili `%s'\n" -#: g10/keygen.c:5166 +#: g10/keygen.c:5220 #, c-format msgid "no writable public keyring found: %s\n" msgstr "kirjutatavat avalike võtmete hoidlat pole: %s\n" -#: g10/keygen.c:5180 +#: g10/keygen.c:5234 #, fuzzy, c-format #| msgid "error writing public keyring `%s': %s\n" msgid "error writing public keyring '%s': %s\n" msgstr "viga avaliku võtme võtmehoidlasse `%s' kirjutamisel: %s\n" -#: g10/keygen.c:5210 +#: g10/keygen.c:5264 msgid "public and secret key created and signed.\n" msgstr "avalik ja salajane võti on loodud ja allkirjastatud.\n" -#: g10/keygen.c:5226 +#: g10/keygen.c:5280 #, fuzzy msgid "" "Note that this key cannot be used for encryption. You may want to use\n" @@ -5946,35 +5952,35 @@ "Krüptimiseks tuleb genereerida teine võti, seda saate teha\n" "kasutades võtit \"--edit-key\".\n" -#: g10/keygen.c:5401 g10/keygen.c:5590 +#: g10/keygen.c:5455 g10/keygen.c:5644 #, c-format msgid "" "key has been created %lu second in future (time warp or clock problem)\n" msgstr "võti loodi %lu sekund tulevikus (ajahüpe või kella probleem)\n" -#: g10/keygen.c:5403 g10/keygen.c:5592 +#: g10/keygen.c:5457 g10/keygen.c:5646 #, c-format msgid "" "key has been created %lu seconds in future (time warp or clock problem)\n" msgstr "võti loodi %lu sekundit tulevikus (ajahüpe või kella probleem)\n" -#: g10/keygen.c:5414 g10/keygen.c:5603 +#: g10/keygen.c:5468 g10/keygen.c:5657 #, fuzzy, c-format #| msgid "NOTE: creating subkeys for v3 keys is not OpenPGP compliant\n" msgid "Note: creating subkeys for v3 keys is not OpenPGP compliant\n" msgstr "MÄRKUS: v3 võtmetele alamvõtmete loomine ei ole OpenPGP ühilduv\n" -#: g10/keygen.c:5426 g10/keygen.c:5428 +#: g10/keygen.c:5480 g10/keygen.c:5482 #, c-format msgid "Secret parts of primary key are not available.\n" msgstr "Primaarse võtme salajased komponendid ei ole kättesaadavad.\n" -#: g10/keygen.c:5435 g10/keygen.c:5437 +#: g10/keygen.c:5489 g10/keygen.c:5491 #, fuzzy, c-format msgid "Secret parts of primary key are stored on-card.\n" msgstr "Primaarse võtme salajased komponendid ei ole kättesaadavad.\n" -#: g10/keygen.c:5456 g10/keygen.c:5617 +#: g10/keygen.c:5510 g10/keygen.c:5671 #, fuzzy msgid "Really create? (y/N) " msgstr "Loon tõesti? " @@ -7075,31 +7081,31 @@ msgid "data not saved; use option \"--output\" to save it\n" msgstr "andmeid ei salvestatud; salvestamiseks kasutage võtit \"--output\"\n" -#: g10/plaintext.c:615 +#: g10/plaintext.c:620 msgid "Detached signature.\n" msgstr "Eraldiseisev allkiri.\n" -#: g10/plaintext.c:623 +#: g10/plaintext.c:628 msgid "Please enter name of data file: " msgstr "Palun sisestage andmefaili nimi: " -#: g10/plaintext.c:660 +#: g10/plaintext.c:665 #, c-format msgid "reading stdin ...\n" msgstr "loen standardsisendit ...\n" -#: g10/plaintext.c:705 +#: g10/plaintext.c:710 #, c-format msgid "no signed data\n" msgstr "allkirjastatud andmeid pole\n" -#: g10/plaintext.c:723 +#: g10/plaintext.c:728 #, fuzzy, c-format #| msgid "can't open signed data `%s'\n" msgid "can't open signed data '%s'\n" msgstr "allkirjastatud andmete avamine ebaõnnestus `%s'\n" -#: g10/plaintext.c:758 +#: g10/plaintext.c:763 #, fuzzy, c-format msgid "can't open signed data fd=%d: %s\n" msgstr "allkirjastatud andmete avamine ebaõnnestus `%s'\n" @@ -8107,7 +8113,7 @@ msgid "no need for a trustdb check\n" msgstr "trustdb kontrolliks puudub vajadus\n" -#: g10/trustdb.c:631 g10/trustdb.c:2326 +#: g10/trustdb.c:631 g10/trustdb.c:2338 #, c-format msgid "next trustdb check due at %s\n" msgstr "trustdb järgmine kontroll %s\n" @@ -8137,14 +8143,14 @@ msgid "checking the trustdb\n" msgstr "kontrollin trustdb faili\n" -#: g10/trustdb.c:2047 +#: g10/trustdb.c:2059 #, fuzzy, c-format msgid "%d key processed" msgid_plural "%d keys processed" msgstr[0] "%lu võtit on seni töödeldud\n" msgstr[1] "%lu võtit on seni töödeldud\n" -#: g10/trustdb.c:2050 +#: g10/trustdb.c:2062 #, fuzzy, c-format #| msgid "%d keys processed (%d validity counts cleared)\n" msgid " (%d validity count cleared)\n" @@ -8152,23 +8158,23 @@ msgstr[0] "%d võtit töödeldud (%d kehtivust puhastatud)\n" msgstr[1] "%d võtit töödeldud (%d kehtivust puhastatud)\n" -#: g10/trustdb.c:2120 +#: g10/trustdb.c:2132 #, c-format msgid "no ultimately trusted keys found\n" msgstr "absoluutselt usaldatavaid võtmeid pole\n" -#: g10/trustdb.c:2134 +#: g10/trustdb.c:2146 #, fuzzy, c-format msgid "public key of ultimately trusted key %s not found\n" msgstr "puudub absoluutselt usaldatava võtme %08lX avalik võti\n" -#: g10/trustdb.c:2252 +#: g10/trustdb.c:2264 #, c-format msgid "" "depth: %d valid: %3d signed: %3d trust: %d-, %dq, %dn, %dm, %df, %du\n" msgstr "" -#: g10/trustdb.c:2333 +#: g10/trustdb.c:2345 #, fuzzy, c-format msgid "unable to update trustdb version record: write failed: %s\n" msgstr "usalduse kirje %lu, tüüp %d: kirjutamine ebaõnnestus: %s\n" @@ -8286,88 +8292,94 @@ #. TRANSLATORS: Put a \x1f right before a colon. This can be #. * used by pinentry to nicely align the names and values. Keep #. * the %s at the start and end of the string. -#: scd/app-p15.c:5116 scd/app-openpgp.c:2154 +#: scd/app-p15.c:5145 scd/app-nks.c:1541 scd/app-openpgp.c:2154 #, c-format msgid "%sNumber: %s%%0AHolder: %s%s" msgstr "" #. TRANSLATORS: This is the number of remaining attempts to #. * enter a PIN. Use %%0A (double-percent,0A) for a linefeed. -#: scd/app-p15.c:5135 scd/app-openpgp.c:2170 +#: scd/app-p15.c:5164 scd/app-nks.c:1560 scd/app-openpgp.c:2170 #, c-format msgid "Remaining attempts: %d" msgstr "" -#: scd/app-p15.c:5214 scd/app-nks.c:1113 +#: scd/app-p15.c:5243 scd/app-nks.c:2112 msgid "||Please enter the PIN for the key to create qualified signatures." msgstr "" #. TRANSLATORS: Do not translate the "|A|" prefix but keep it at #. the start of the string. Use %0A (single percent) for a linefeed. -#: scd/app-p15.c:5217 scd/app-openpgp.c:2464 +#: scd/app-p15.c:5246 scd/app-openpgp.c:2465 #, fuzzy msgid "|A|Please enter the Admin PIN" msgstr "muuda parooli" -#: scd/app-p15.c:5219 scd/app-nks.c:1103 +#: scd/app-p15.c:5248 scd/app-nks.c:2102 #, fuzzy msgid "|P|Please enter the PIN Unblocking Code (PUK) for the standard keys." msgstr "Palun valige tühistamise põhjus:\n" -#: scd/app-p15.c:5222 scd/app-nks.c:1095 +#: scd/app-p15.c:5251 scd/app-nks.c:2093 #, fuzzy msgid "||Please enter the PIN for the standard keys." msgstr "muuda parooli" -#: scd/app-nks.c:709 scd/app-openpgp.c:3666 +#: scd/app-nks.c:1479 scd/app-openpgp.c:3675 #, c-format msgid "RSA modulus missing or not of size %d bits\n" msgstr "" -#: scd/app-nks.c:717 scd/app-openpgp.c:3678 +#: scd/app-nks.c:1487 scd/app-openpgp.c:3687 #, c-format msgid "RSA public exponent missing or larger than %d bits\n" msgstr "" -#: scd/app-nks.c:797 scd/app-openpgp.c:2327 scd/app-openpgp.c:2346 -#: scd/app-openpgp.c:2513 scd/app-openpgp.c:2531 scd/app-openpgp.c:2829 -#: scd/app-openpgp.c:2876 scd/app-openpgp.c:2991 scd/app-dinsig.c:302 +#: scd/app-nks.c:1660 +#, fuzzy +#| msgid "Note: This key has been disabled.\n" +msgid "Note: PIN has not yet been enabled." +msgstr "Märkus: See võti on blokeeritud.\n" + +#: scd/app-nks.c:1671 scd/app-openpgp.c:2327 scd/app-openpgp.c:2346 +#: scd/app-openpgp.c:2515 scd/app-openpgp.c:2533 scd/app-openpgp.c:2832 +#: scd/app-openpgp.c:2879 scd/app-openpgp.c:3000 scd/app-dinsig.c:303 #, c-format msgid "PIN callback returned error: %s\n" msgstr "" -#: scd/app-nks.c:830 +#: scd/app-nks.c:1707 #, c-format msgid "the NullPIN has not yet been changed\n" msgstr "" -#: scd/app-nks.c:1094 +#: scd/app-nks.c:2092 #, fuzzy msgid "|N|Please enter a new PIN for the standard keys." msgstr "muuda parooli" -#: scd/app-nks.c:1101 +#: scd/app-nks.c:2100 #, fuzzy msgid "|NP|Please enter a new PIN Unblocking Code (PUK) for the standard keys." msgstr "Palun valige tühistamise põhjus:\n" -#: scd/app-nks.c:1111 +#: scd/app-nks.c:2110 msgid "|N|Please enter a new PIN for the key to create qualified signatures." msgstr "" -#: scd/app-nks.c:1121 +#: scd/app-nks.c:2120 msgid "" "|NP|Please enter a new PIN Unblocking Code (PUK) for the key to create " "qualified signatures." msgstr "" -#: scd/app-nks.c:1123 +#: scd/app-nks.c:2122 msgid "" "|P|Please enter the PIN Unblocking Code (PUK) for the key to create " "qualified signatures." msgstr "" -#: scd/app-nks.c:1230 scd/app-openpgp.c:2910 scd/app-dinsig.c:532 +#: scd/app-nks.c:2295 scd/app-openpgp.c:2913 scd/app-dinsig.c:535 #, fuzzy, c-format msgid "error getting new PIN: %s\n" msgstr "viga parooli loomisel: %s\n" @@ -8382,7 +8394,7 @@ msgid "failed to store the creation date: %s\n" msgstr "võtmehoidla vahemälu uuesti loomine ebaõnnestus: %s\n" -#: scd/app-openpgp.c:1271 scd/app-openpgp.c:2857 scd/app-openpgp.c:5041 +#: scd/app-openpgp.c:1271 scd/app-openpgp.c:2860 scd/app-openpgp.c:5051 #, c-format msgid "error retrieving CHV status from card\n" msgstr "" @@ -8403,7 +8415,7 @@ msgid "response does not contain the EC public key\n" msgstr "eemalda võtmed avalike võtmete hoidlast" -#: scd/app-openpgp.c:1664 scd/app-openpgp.c:4286 +#: scd/app-openpgp.c:1664 scd/app-openpgp.c:4295 #, c-format msgid "response does not contain the public key data\n" msgstr "" @@ -8436,23 +8448,23 @@ msgid "||Please unlock the card" msgstr "muuda parooli" -#: scd/app-openpgp.c:2353 scd/app-openpgp.c:2538 scd/app-openpgp.c:2836 +#: scd/app-openpgp.c:2353 scd/app-openpgp.c:2540 scd/app-openpgp.c:2839 #, c-format msgid "PIN for CHV%d is too short; minimum length is %d\n" msgstr "" -#: scd/app-openpgp.c:2367 scd/app-openpgp.c:2414 scd/app-openpgp.c:2552 -#: scd/app-openpgp.c:4644 +#: scd/app-openpgp.c:2368 scd/app-openpgp.c:2415 scd/app-openpgp.c:2554 +#: scd/app-openpgp.c:4654 #, fuzzy, c-format msgid "verify CHV%d failed: %s\n" msgstr "võtmeserverile saatmine ebaõnnestus: %s\n" -#: scd/app-openpgp.c:2450 scd/app-openpgp.c:5050 +#: scd/app-openpgp.c:2451 scd/app-openpgp.c:5060 #, c-format msgid "card is permanently locked!\n" msgstr "" -#: scd/app-openpgp.c:2454 +#: scd/app-openpgp.c:2455 #, c-format msgid "%d Admin PIN attempt remaining before card is permanently locked\n" msgid_plural "" @@ -8460,22 +8472,22 @@ msgstr[0] "" msgstr[1] "" -#: scd/app-openpgp.c:2485 +#: scd/app-openpgp.c:2486 #, c-format msgid "access to admin commands is not configured\n" msgstr "" -#: scd/app-openpgp.c:2823 +#: scd/app-openpgp.c:2826 #, fuzzy msgid "||Please enter the PIN" msgstr "muuda parooli" -#: scd/app-openpgp.c:2872 +#: scd/app-openpgp.c:2875 #, fuzzy msgid "||Please enter the Reset Code for the card" msgstr "Palun valige tühistamise põhjus:\n" -#: scd/app-openpgp.c:2882 scd/app-openpgp.c:2943 +#: scd/app-openpgp.c:2885 scd/app-openpgp.c:2946 #, c-format msgid "Reset Code is too short; minimum length is %d\n" msgstr "" @@ -8483,128 +8495,128 @@ #. 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:2905 +#: scd/app-openpgp.c:2908 msgid "|RN|New Reset Code" msgstr "" -#: scd/app-openpgp.c:2906 +#: scd/app-openpgp.c:2909 msgid "|AN|New Admin PIN" msgstr "" -#: scd/app-openpgp.c:2906 +#: scd/app-openpgp.c:2909 msgid "|N|New PIN" msgstr "" -#: scd/app-openpgp.c:2987 +#: scd/app-openpgp.c:2996 #, fuzzy msgid "||Please enter the Admin PIN and New Admin PIN" msgstr "muuda parooli" -#: scd/app-openpgp.c:2988 +#: scd/app-openpgp.c:2997 #, fuzzy msgid "||Please enter the PIN and New PIN" msgstr "muuda parooli" -#: scd/app-openpgp.c:3050 scd/app-openpgp.c:4346 +#: scd/app-openpgp.c:3059 scd/app-openpgp.c:4355 #, fuzzy, c-format msgid "error reading application data\n" msgstr "viga võtmebloki lugemisel: %s\n" -#: scd/app-openpgp.c:3056 scd/app-openpgp.c:4353 +#: scd/app-openpgp.c:3065 scd/app-openpgp.c:4362 #, fuzzy, c-format msgid "error reading fingerprint DO\n" msgstr "%s: viga vaba kirje lugemisel: %s\n" -#: scd/app-openpgp.c:3066 +#: scd/app-openpgp.c:3075 #, fuzzy, c-format msgid "key already exists\n" msgstr "`%s' on juba pakitud\n" -#: scd/app-openpgp.c:3070 +#: scd/app-openpgp.c:3079 #, c-format msgid "existing key will be replaced\n" msgstr "" -#: scd/app-openpgp.c:3072 +#: scd/app-openpgp.c:3081 #, fuzzy, c-format msgid "generating new key\n" msgstr "genereeri uus võtmepaar" -#: scd/app-openpgp.c:3074 +#: scd/app-openpgp.c:3083 #, fuzzy, c-format msgid "writing new key\n" msgstr "genereeri uus võtmepaar" -#: scd/app-openpgp.c:3647 scd/app-openpgp.c:3999 +#: scd/app-openpgp.c:3656 scd/app-openpgp.c:4008 #, c-format msgid "creation timestamp missing\n" msgstr "" -#: scd/app-openpgp.c:3688 scd/app-openpgp.c:3696 +#: scd/app-openpgp.c:3697 scd/app-openpgp.c:3705 #, c-format msgid "RSA prime %s missing or not of size %d bits\n" msgstr "" -#: scd/app-openpgp.c:3829 scd/app-openpgp.c:4106 +#: scd/app-openpgp.c:3838 scd/app-openpgp.c:4115 #, fuzzy, c-format msgid "failed to store the key: %s\n" msgstr "TrustDB initsialiseerimine ebaõnnestus: %s\n" -#: scd/app-openpgp.c:3993 +#: scd/app-openpgp.c:4002 #, fuzzy, c-format #| msgid "unsupported URI" msgid "unsupported curve\n" msgstr "mittetoetatud URI" -#: scd/app-openpgp.c:4263 +#: scd/app-openpgp.c:4272 #, c-format msgid "please wait while key is being generated ...\n" msgstr "" -#: scd/app-openpgp.c:4271 +#: scd/app-openpgp.c:4280 #, fuzzy, c-format msgid "generating key failed\n" msgstr "võtmebloki kustutamine ebaõnnestus: %s\n" -#: scd/app-openpgp.c:4277 +#: scd/app-openpgp.c:4286 #, fuzzy, c-format msgid "key generation completed (%d second)\n" msgid_plural "key generation completed (%d seconds)\n" msgstr[0] "Võtme genereerimine ebaõnnestus: %s\n" msgstr[1] "Võtme genereerimine ebaõnnestus: %s\n" -#: scd/app-openpgp.c:4311 +#: scd/app-openpgp.c:4320 #, c-format msgid "invalid structure of OpenPGP card (DO 0x93)\n" msgstr "" -#: scd/app-openpgp.c:4361 +#: scd/app-openpgp.c:4370 #, c-format msgid "fingerprint on card does not match requested one\n" msgstr "" -#: scd/app-openpgp.c:4560 +#: scd/app-openpgp.c:4569 #, 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:4618 +#: scd/app-openpgp.c:4627 #, c-format msgid "signatures created so far: %lu\n" msgstr "" -#: scd/app-openpgp.c:5055 +#: scd/app-openpgp.c:5065 #, c-format msgid "" "verification of Admin PIN is currently prohibited through this command\n" msgstr "" -#: scd/app-openpgp.c:5386 scd/app-openpgp.c:5398 +#: scd/app-openpgp.c:5396 scd/app-openpgp.c:5408 #, fuzzy, c-format msgid "can't access %s - invalid OpenPGP card?\n" msgstr "ei leia OpenPGP andmeid.\n" -#: scd/app-dinsig.c:298 +#: scd/app-dinsig.c:299 #, fuzzy msgid "||Please enter your PIN at the reader's pinpad" msgstr "muuda parooli" @@ -8612,7 +8624,7 @@ #. 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-dinsig.c:529 +#: scd/app-dinsig.c:532 msgid "|N|Initial New PIN" msgstr "" @@ -8702,11 +8714,11 @@ msgid "validation model requested by certificate: %s" msgstr "" -#: sm/certchain.c:199 sm/certchain.c:2164 +#: sm/certchain.c:199 sm/certchain.c:2165 msgid "chain" msgstr "" -#: sm/certchain.c:200 sm/certchain.c:2164 +#: sm/certchain.c:200 sm/certchain.c:2165 #, fuzzy msgid "shell" msgstr "help" @@ -8730,241 +8742,241 @@ msgid "failed to open '%s': %s\n" msgstr "`%s' ei õnnestu avada: %s\n" -#: sm/certchain.c:355 sm/certchain.c:384 dirmngr/validate.c:204 +#: sm/certchain.c:355 sm/certchain.c:385 dirmngr/validate.c:204 #, fuzzy, c-format msgid "Note: non-critical certificate policy not allowed" msgstr "kirjutan salajase võtme faili `%s'\n" -#: sm/certchain.c:359 sm/certchain.c:388 dirmngr/validate.c:209 +#: sm/certchain.c:359 sm/certchain.c:389 dirmngr/validate.c:209 #, fuzzy, c-format msgid "certificate policy not allowed" msgstr "kirjutan salajase võtme faili `%s'\n" -#: sm/certchain.c:595 sm/keydb.c:1084 sm/keydb.c:1171 +#: sm/certchain.c:596 sm/keydb.c:1084 sm/keydb.c:1171 #, fuzzy, c-format msgid "failed to get the fingerprint\n" msgstr "TrustDB initsialiseerimine ebaõnnestus: %s\n" -#: sm/certchain.c:624 +#: sm/certchain.c:625 #, c-format msgid "looking up issuer at external location\n" msgstr "" -#: sm/certchain.c:644 +#: sm/certchain.c:645 #, c-format msgid "number of issuers matching: %d\n" msgstr "" -#: sm/certchain.c:723 dirmngr/ocsp.c:685 +#: sm/certchain.c:724 dirmngr/ocsp.c:685 #, fuzzy, c-format #| msgid "%s: can't access: %s\n" msgid "can't get authorityInfoAccess: %s\n" msgstr "%s: ei õnnestu kasutada: %s\n" -#: sm/certchain.c:791 +#: sm/certchain.c:792 #, c-format msgid "looking up issuer from the Dirmngr cache\n" msgstr "" -#: sm/certchain.c:816 +#: sm/certchain.c:817 #, fuzzy, c-format msgid "number of matching certificates: %d\n" msgstr "viga parooli loomisel: %s\n" -#: sm/certchain.c:819 +#: sm/certchain.c:820 #, fuzzy, c-format msgid "dirmngr cache-only key lookup failed: %s\n" msgstr "võtmebloki kustutamine ebaõnnestus: %s\n" -#: sm/certchain.c:1041 sm/certchain.c:1554 sm/certchain.c:2192 sm/decrypt.c:728 +#: sm/certchain.c:1042 sm/certchain.c:1555 sm/certchain.c:2193 sm/decrypt.c:728 #: sm/encrypt.c:345 sm/import.c:415 sm/keydb.c:1091 sm/keydb.c:1178 #: sm/sign.c:337 sm/verify.c:118 #, fuzzy, c-format msgid "failed to allocate keyDB handle\n" msgstr "TrustDB initsialiseerimine ebaõnnestus: %s\n" -#: sm/certchain.c:1225 +#: sm/certchain.c:1226 #, fuzzy msgid "certificate has been revoked" msgstr "MÄRKUS: võti on tühistatud" -#: sm/certchain.c:1240 +#: sm/certchain.c:1241 msgid "the status of the certificate is unknown" msgstr "" -#: sm/certchain.c:1247 +#: sm/certchain.c:1248 #, c-format msgid "please make sure that the \"dirmngr\" is properly installed\n" msgstr "" -#: sm/certchain.c:1253 +#: sm/certchain.c:1254 #, fuzzy, c-format msgid "checking the CRL failed: %s" msgstr "Loodud allkirja ei õnnestu kontrollida: %s\n" -#: sm/certchain.c:1282 sm/certchain.c:1350 dirmngr/validate.c:497 +#: sm/certchain.c:1283 sm/certchain.c:1351 dirmngr/validate.c:497 #, c-format msgid "certificate with invalid validity: %s" msgstr "" -#: sm/certchain.c:1297 sm/certchain.c:1382 dirmngr/validate.c:515 +#: sm/certchain.c:1298 sm/certchain.c:1383 dirmngr/validate.c:515 #, c-format msgid "certificate not yet valid" msgstr "" -#: sm/certchain.c:1298 sm/certchain.c:1383 +#: sm/certchain.c:1299 sm/certchain.c:1384 #, fuzzy msgid "root certificate not yet valid" msgstr "kirjutan salajase võtme faili `%s'\n" -#: sm/certchain.c:1299 sm/certchain.c:1384 +#: sm/certchain.c:1300 sm/certchain.c:1385 msgid "intermediate certificate not yet valid" msgstr "" -#: sm/certchain.c:1312 dirmngr/validate.c:526 +#: sm/certchain.c:1313 dirmngr/validate.c:526 #, fuzzy, c-format msgid "certificate has expired" msgstr "See võti on aegunud!" -#: sm/certchain.c:1313 +#: sm/certchain.c:1314 #, fuzzy msgid "root certificate has expired" msgstr "See võti on aegunud!" -#: sm/certchain.c:1314 +#: sm/certchain.c:1315 #, fuzzy msgid "intermediate certificate has expired" msgstr "See võti on aegunud!" -#: sm/certchain.c:1356 +#: sm/certchain.c:1357 #, c-format msgid "required certificate attributes missing: %s%s%s" msgstr "" -#: sm/certchain.c:1365 +#: sm/certchain.c:1366 #, fuzzy msgid "certificate with invalid validity" msgstr "See võti on aegunud!" -#: sm/certchain.c:1402 +#: sm/certchain.c:1403 msgid "signature not created during lifetime of certificate" msgstr "" -#: sm/certchain.c:1404 +#: sm/certchain.c:1405 msgid "certificate not created during lifetime of issuer" msgstr "" -#: sm/certchain.c:1405 +#: sm/certchain.c:1406 msgid "intermediate certificate not created during lifetime of issuer" msgstr "" -#: sm/certchain.c:1409 +#: sm/certchain.c:1410 #, fuzzy, c-format msgid " ( signature created at " msgstr " uusi allkirju: %lu\n" -#: sm/certchain.c:1410 +#: sm/certchain.c:1411 #, fuzzy, c-format msgid " (certificate created at " msgstr "Tühistamise sertifikaat on loodud.\n" -#: sm/certchain.c:1413 +#: sm/certchain.c:1414 #, fuzzy, c-format msgid " (certificate valid from " msgstr "halb sertifikaat" -#: sm/certchain.c:1414 +#: sm/certchain.c:1415 #, c-format msgid " ( issuer valid from " msgstr "" -#: sm/certchain.c:1444 dirmngr/validate.c:577 +#: sm/certchain.c:1445 dirmngr/validate.c:577 #, fuzzy, c-format msgid "fingerprint=%s\n" msgstr "näita sõrmejälge" -#: sm/certchain.c:1453 +#: sm/certchain.c:1454 #, c-format msgid "root certificate has now been marked as trusted\n" msgstr "" -#: sm/certchain.c:1466 +#: sm/certchain.c:1467 #, c-format msgid "interactive marking as trusted not enabled in gpg-agent\n" msgstr "" -#: sm/certchain.c:1472 +#: sm/certchain.c:1473 #, c-format msgid "interactive marking as trusted disabled for this session\n" msgstr "" -#: sm/certchain.c:1531 +#: sm/certchain.c:1532 msgid "WARNING: creation time of signature not known - assuming current time" msgstr "" -#: sm/certchain.c:1595 +#: sm/certchain.c:1596 #, fuzzy msgid "no issuer found in certificate" msgstr "genereeri tühistamise sertifikaat" -#: sm/certchain.c:1673 +#: sm/certchain.c:1674 msgid "self-signed certificate has a BAD signature" msgstr "" -#: sm/certchain.c:1742 dirmngr/validate.c:575 +#: sm/certchain.c:1743 dirmngr/validate.c:575 #, c-format msgid "root certificate is not marked trusted" msgstr "" -#: sm/certchain.c:1758 +#: sm/certchain.c:1759 #, fuzzy, c-format msgid "checking the trust list failed: %s\n" msgstr "Loodud allkirja ei õnnestu kontrollida: %s\n" -#: sm/certchain.c:1789 sm/import.c:176 sm/keylist.c:1396 dirmngr/validate.c:630 +#: sm/certchain.c:1790 sm/import.c:176 sm/keylist.c:1396 dirmngr/validate.c:630 #, c-format msgid "certificate chain too long\n" msgstr "" -#: sm/certchain.c:1801 dirmngr/validate.c:642 +#: sm/certchain.c:1802 dirmngr/validate.c:642 #, c-format msgid "issuer certificate not found" msgstr "" -#: sm/certchain.c:1834 dirmngr/validate.c:668 +#: sm/certchain.c:1835 dirmngr/validate.c:668 #, fuzzy, c-format msgid "certificate has a BAD signature" msgstr "kontrolli allkirja" -#: sm/certchain.c:1866 dirmngr/validate.c:692 +#: sm/certchain.c:1867 dirmngr/validate.c:692 msgid "found another possible matching CA certificate - trying again" msgstr "" -#: sm/certchain.c:1925 dirmngr/validate.c:717 +#: sm/certchain.c:1926 dirmngr/validate.c:717 #, c-format msgid "certificate chain longer than allowed by CA (%d)" msgstr "" -#: sm/certchain.c:1967 sm/certchain.c:2263 dirmngr/validate.c:747 +#: sm/certchain.c:1968 sm/certchain.c:2264 dirmngr/validate.c:747 #, fuzzy, c-format msgid "certificate is good\n" msgstr "eelistus %c%lu on duplikaat\n" -#: sm/certchain.c:1968 +#: sm/certchain.c:1969 #, fuzzy, c-format msgid "intermediate certificate is good\n" msgstr "Tühistamise sertifikaat on loodud.\n" -#: sm/certchain.c:1969 +#: sm/certchain.c:1970 #, fuzzy, c-format msgid "root certificate is good\n" msgstr "halb sertifikaat" -#: sm/certchain.c:2151 +#: sm/certchain.c:2152 msgid "switching to chain model" msgstr "" -#: sm/certchain.c:2160 +#: sm/certchain.c:2161 #, c-format msgid "validation model used: %s" msgstr "" diff -Nru gnupg2-2.2.40/po/fi.po gnupg2-2.2.41/po/fi.po --- gnupg2-2.2.40/po/fi.po 2022-10-10 09:58:25.000000000 +0000 +++ gnupg2-2.2.41/po/fi.po 2022-12-09 08:48:34.000000000 +0000 @@ -22,7 +22,7 @@ msgstr "" "Project-Id-Version: gnupg 1.2.2\n" "Report-Msgid-Bugs-To: translations@gnupg.org\n" -"POT-Creation-Date: 2022-10-10 11:58+0200\n" +"POT-Creation-Date: 2022-12-09 09:48+0100\n" "PO-Revision-Date: 2004-06-16 22:40+0300\n" "Last-Translator: Tommi Vainikainen \n" "Language-Team: Finnish \n" @@ -239,8 +239,8 @@ msgid "ssh keys greater than %d bits are not supported\n" msgstr "suojausalgoritmi %d%s ei ole käytettävissä\n" -#: agent/command-ssh.c:862 common/dotlock.c:856 g10/card-util.c:947 -#: g10/exec.c:554 g10/export.c:1320 g10/gpg.c:1400 g10/keygen.c:4998 +#: agent/command-ssh.c:862 common/dotlock.c:856 g10/card-util.c:946 +#: g10/exec.c:554 g10/export.c:1335 g10/gpg.c:1409 g10/keygen.c:5052 #: g10/keyring.c:1322 g10/keyring.c:1637 g10/openfile.c:291 g10/sign.c:1008 #: g10/sign.c:1322 g10/tdbio.c:753 #, fuzzy, c-format @@ -248,12 +248,12 @@ msgid "can't create '%s': %s\n" msgstr "tiedostoa \"%s\" ei voi luoda: %s\n" -#: agent/command-ssh.c:874 common/helpfile.c:57 g10/card-util.c:904 +#: agent/command-ssh.c:874 common/helpfile.c:57 g10/card-util.c:903 #: g10/dearmor.c:59 g10/dearmor.c:106 g10/decrypt.c:65 g10/decrypt.c:136 -#: g10/decrypt.c:153 g10/encrypt.c:239 g10/encrypt.c:678 g10/gpg.c:1401 -#: g10/import.c:364 g10/import.c:548 g10/import.c:776 g10/keygen.c:4036 +#: g10/decrypt.c:153 g10/encrypt.c:239 g10/encrypt.c:678 g10/gpg.c:1410 +#: g10/import.c:365 g10/import.c:549 g10/import.c:777 g10/keygen.c:4090 #: g10/keyring.c:1663 g10/openfile.c:195 g10/openfile.c:209 g10/plaintext.c:128 -#: g10/plaintext.c:649 g10/sign.c:990 g10/sign.c:1201 g10/sign.c:1306 +#: g10/plaintext.c:654 g10/sign.c:990 g10/sign.c:1201 g10/sign.c:1306 #: g10/sign.c:1451 g10/tdbdump.c:145 g10/tdbdump.c:153 g10/tdbio.c:758 #: g10/tdbio.c:829 g10/verify.c:96 g10/verify.c:160 sm/gpgsm.c:2160 #: sm/gpgsm.c:2190 sm/gpgsm.c:2228 sm/qualified.c:66 dirmngr/certcache.c:420 @@ -480,34 +480,34 @@ msgid "csh-style command output" msgstr "" -#: agent/gpg-agent.c:185 g10/gpg.c:579 scd/scdaemon.c:126 sm/gpgsm.c:410 +#: agent/gpg-agent.c:185 g10/gpg.c:580 scd/scdaemon.c:126 sm/gpgsm.c:410 #: dirmngr/dirmngr.c:192 #, fuzzy msgid "|FILE|read options from FILE" msgstr "|TIEDOSTO|lataa laajennusmoduuli TIEDOSTO" -#: agent/gpg-agent.c:189 g10/gpg.c:566 scd/scdaemon.c:130 sm/gpgsm.c:259 +#: agent/gpg-agent.c:189 g10/gpg.c:567 scd/scdaemon.c:130 sm/gpgsm.c:259 #: dirmngr/dirmngr.c:196 msgid "Options controlling the diagnostic output" msgstr "" -#: agent/gpg-agent.c:191 g10/gpg.c:568 g10/gpgv.c:78 kbx/kbxutil.c:88 +#: agent/gpg-agent.c:191 g10/gpg.c:569 g10/gpgv.c:78 kbx/kbxutil.c:88 #: scd/scdaemon.c:132 sm/gpgsm.c:261 dirmngr/dirmngr-client.c:70 #: dirmngr/dirmngr.c:198 tools/gpg-connect-agent.c:78 tools/gpgconf.c:110 msgid "verbose" msgstr "monisanainen" -#: agent/gpg-agent.c:192 g10/gpg.c:570 g10/gpgv.c:79 kbx/kbxutil.c:89 +#: agent/gpg-agent.c:192 g10/gpg.c:571 g10/gpgv.c:79 kbx/kbxutil.c:89 #: scd/scdaemon.c:133 sm/gpgsm.c:263 dirmngr/dirmngr-client.c:71 #: dirmngr/dirmngr.c:199 msgid "be somewhat more quiet" msgstr "ole jonkinverran hiljaisempi" -#: agent/gpg-agent.c:200 g10/gpg.c:583 sm/gpgsm.c:276 dirmngr/dirmngr.c:209 +#: agent/gpg-agent.c:200 g10/gpg.c:584 sm/gpgsm.c:276 dirmngr/dirmngr.c:209 msgid "|FILE|write server mode logs to FILE" msgstr "" -#: agent/gpg-agent.c:204 g10/gpg.c:589 scd/scdaemon.c:147 sm/gpgsm.c:283 +#: agent/gpg-agent.c:204 g10/gpg.c:590 scd/scdaemon.c:147 sm/gpgsm.c:283 #: dirmngr/dirmngr.c:213 msgid "Options controlling the configuration" msgstr "" @@ -551,7 +551,7 @@ msgid "enable putty support" msgstr "ei tuettu" -#: agent/gpg-agent.c:237 g10/gpg.c:831 scd/scdaemon.c:175 sm/gpgsm.c:369 +#: agent/gpg-agent.c:237 g10/gpg.c:832 scd/scdaemon.c:175 sm/gpgsm.c:369 msgid "Options controlling the security" msgstr "" @@ -653,7 +653,7 @@ #. reporting address. This is so that we can change the #. reporting address without breaking the translations. #: agent/gpg-agent.c:563 agent/preset-passphrase.c:100 agent/protect-tool.c:155 -#: g10/gpg.c:1108 g10/gpgv.c:149 kbx/kbxutil.c:113 scd/scdaemon.c:313 +#: g10/gpg.c:1117 g10/gpgv.c:149 kbx/kbxutil.c:113 scd/scdaemon.c:313 #: sm/gpgsm.c:600 dirmngr/dirmngr-client.c:168 dirmngr/dirmngr.c:458 #: tools/gpg-connect-agent.c:205 tools/gpgconf.c:154 #: tools/gpg-check-pattern.c:143 @@ -673,27 +673,27 @@ "Secret key management for @GNUPG@\n" msgstr "" -#: agent/gpg-agent.c:619 g10/gpg.c:1304 scd/scdaemon.c:385 sm/gpgsm.c:748 +#: agent/gpg-agent.c:619 g10/gpg.c:1313 scd/scdaemon.c:385 sm/gpgsm.c:748 #: dirmngr/dirmngr.c:542 #, c-format msgid "invalid debug-level '%s' given\n" msgstr "" -#: agent/gpg-agent.c:988 g10/gpg.c:3810 g10/gpg.c:3834 sm/gpgsm.c:1585 +#: agent/gpg-agent.c:988 g10/gpg.c:3830 g10/gpg.c:3854 sm/gpgsm.c:1585 #: sm/gpgsm.c:1591 #, c-format msgid "selected digest algorithm is invalid\n" msgstr "valittu tiivistealgoritmi ei kelpaa\n" #: agent/gpg-agent.c:1216 agent/gpg-agent.c:2029 common/argparse.c:1766 -#: common/argparse.c:1858 g10/gpg.c:2517 scd/scdaemon.c:547 sm/gpgsm.c:1007 +#: common/argparse.c:1858 g10/gpg.c:2526 scd/scdaemon.c:547 sm/gpgsm.c:1007 #: dirmngr/dirmngr.c:1081 dirmngr/dirmngr.c:1937 #, fuzzy, c-format #| msgid "reading options from `%s'\n" msgid "reading options from '%s'\n" msgstr "luetaan asetukset tiedostosta \"%s\"\n" -#: agent/gpg-agent.c:1332 g10/gpg.c:3751 scd/scdaemon.c:671 sm/gpgsm.c:1522 +#: agent/gpg-agent.c:1332 g10/gpg.c:3769 scd/scdaemon.c:671 sm/gpgsm.c:1522 #: dirmngr/dirmngr.c:1190 tools/gpg-connect-agent.c:1244 tools/gpgconf.c:677 #, fuzzy, c-format #| msgid "WARNING: \"%s\" is a deprecated option\n" @@ -826,7 +826,7 @@ "Password cache maintenance\n" msgstr "" -#: agent/protect-tool.c:108 g10/gpg.c:441 kbx/kbxutil.c:71 sm/gpgsm.c:210 +#: agent/protect-tool.c:108 g10/gpg.c:442 kbx/kbxutil.c:71 sm/gpgsm.c:210 #: dirmngr/dirmngr.c:171 tools/gpgconf.c:80 msgid "" "@Commands:\n" @@ -1046,7 +1046,7 @@ msgid "secret key parts are not available\n" msgstr "salaisen avaimen osat eivät ole käytettävissä\n" -#: agent/cvt-openpgp.c:344 g10/card-util.c:1556 +#: agent/cvt-openpgp.c:344 g10/card-util.c:1555 #, fuzzy, c-format #| msgid "protection algorithm %d%s is not supported\n" msgid "public key algorithm %d (%s) is not supported\n" @@ -1206,7 +1206,7 @@ msgid "out of core while allocating %lu bytes" msgstr "" -#: common/miscellaneous.c:115 g10/card-util.c:911 tools/no-libgcrypt.c:30 +#: common/miscellaneous.c:115 g10/card-util.c:910 tools/no-libgcrypt.c:30 #, fuzzy, c-format msgid "error allocating enough memory: %s\n" msgstr "virhe luotaessa avainrengasta \"%s\": %s\n" @@ -1329,7 +1329,7 @@ msgstr "ascii-koodaus: %s\n" #: common/audit.c:774 common/audit.c:776 common/audit.c:921 common/audit.c:923 -#: scd/app-openpgp.c:3557 +#: scd/app-openpgp.c:3566 #, fuzzy, c-format msgid "unsupported algorithm: %s" msgstr "" @@ -1413,12 +1413,12 @@ msgid "Root certificate trustworthy" msgstr "virheellinen varmenne" -#: common/audit.c:1112 sm/certchain.c:1235 +#: common/audit.c:1112 sm/certchain.c:1236 #, fuzzy msgid "no CRL found for certificate" msgstr "virheellinen varmenne" -#: common/audit.c:1115 sm/certchain.c:1245 +#: common/audit.c:1115 sm/certchain.c:1246 #, fuzzy msgid "the available CRL is too old" msgstr "Avain saatavilla kohteessa: " @@ -1561,7 +1561,7 @@ msgid "missing argument for option \"%.50s\"\n" msgstr "" -#: common/argparse.c:558 g10/gpg.c:3525 +#: common/argparse.c:558 g10/gpg.c:3543 #, fuzzy, c-format msgid "invalid argument for option \"%.50s\"\n" msgstr "virheelliset tuontivalitsimet\n" @@ -1662,92 +1662,92 @@ msgid "%s is too old (need %s, have %s)\n" msgstr "" -#: g10/armor.c:423 +#: g10/armor.c:424 #, c-format msgid "armor: %s\n" msgstr "ascii-koodaus: %s\n" -#: g10/armor.c:462 +#: g10/armor.c:463 #, c-format msgid "invalid armor header: " msgstr "epäkelpo ascii-koodausotsake: " -#: g10/armor.c:473 +#: g10/armor.c:474 #, c-format msgid "armor header: " msgstr "ascii-koodausotsake: " -#: g10/armor.c:486 +#: g10/armor.c:487 #, c-format msgid "invalid clearsig header\n" msgstr "epäkelpo selkotekstisen allekirjoituksen otsikko\n" -#: g10/armor.c:499 +#: g10/armor.c:500 #, fuzzy, c-format msgid "unknown armor header: " msgstr "ascii-koodausotsake: " -#: g10/armor.c:552 +#: g10/armor.c:553 #, c-format msgid "nested clear text signatures\n" msgstr "sisäkkäisiä tekstimuotoisia allekirjoituksia\n" -#: g10/armor.c:687 +#: g10/armor.c:688 #, fuzzy, c-format msgid "unexpected armor: " msgstr "odottamaton ascii-koodaus:" -#: g10/armor.c:700 +#: g10/armor.c:701 #, c-format msgid "invalid dash escaped line: " msgstr "epäkelpo viiva rivin lopussa: " -#: g10/armor.c:872 g10/armor.c:1492 +#: g10/armor.c:873 g10/armor.c:1493 #, fuzzy, c-format msgid "invalid radix64 character %02X skipped\n" msgstr "epäkelpo radix64-merkki %02x ohitettu\n" -#: g10/armor.c:915 +#: g10/armor.c:916 #, c-format msgid "premature eof (no CRC)\n" msgstr "ennenaikainen tiedoston loppu (ei CRC:tä)\n" -#: g10/armor.c:949 +#: g10/armor.c:950 #, c-format msgid "premature eof (in CRC)\n" msgstr "ennenaikainen tiedoston loppu (CRC:ssä)\n" -#: g10/armor.c:957 +#: g10/armor.c:958 #, c-format msgid "malformed CRC\n" msgstr "väärinmuotoiltu CRC\n" -#: g10/armor.c:961 g10/armor.c:1529 +#: g10/armor.c:962 g10/armor.c:1530 #, fuzzy, c-format msgid "CRC error; %06lX - %06lX\n" msgstr "CRC-virhe; %06lx - %06lx\n" -#: g10/armor.c:981 +#: g10/armor.c:982 #, fuzzy, c-format msgid "premature eof (in trailer)\n" msgstr "Ennenaikainen tiedoston loppu (Trailerissa)\n" -#: g10/armor.c:985 +#: g10/armor.c:986 #, c-format msgid "error in trailer line\n" msgstr "virhe trailer-rivissä\n" -#: g10/armor.c:1305 +#: g10/armor.c:1306 #, c-format msgid "no valid OpenPGP data found.\n" msgstr "kelvollista OpenPGP-dataa ei löytynyt.\n" -#: g10/armor.c:1310 +#: g10/armor.c:1311 #, c-format msgid "invalid armor: line longer than %d characters\n" msgstr "epäkelpo ascii-koodaus: yli %d merkkiä pitkä rivi\n" -#: g10/armor.c:1314 +#: g10/armor.c:1315 #, c-format msgid "" "quoted printable character in armor - probably a buggy MTA has been used\n" @@ -1898,24 +1898,24 @@ msgid "server uses an invalid certificate" msgstr "luo mitätöintivarmenne" -#: g10/call-dirmngr.c:462 g10/gpg.c:4458 +#: g10/call-dirmngr.c:462 g10/gpg.c:4478 #, fuzzy, c-format #| msgid "armor: %s\n" msgid "Note: %s\n" msgstr "ascii-koodaus: %s\n" -#: g10/card-util.c:86 g10/card-util.c:366 g10/card-util.c:1918 +#: g10/card-util.c:86 g10/card-util.c:366 g10/card-util.c:1917 #, fuzzy, c-format msgid "OpenPGP card not available: %s\n" msgstr "salaista avainta ei löydy" -#: g10/card-util.c:91 g10/card-util.c:1924 +#: g10/card-util.c:91 g10/card-util.c:1923 #, c-format msgid "OpenPGP card no. %s detected\n" msgstr "" -#: g10/card-util.c:97 g10/card-util.c:2253 g10/delkey.c:160 g10/keyedit.c:1423 -#: g10/keygen.c:4466 g10/revoke.c:214 g10/revoke.c:636 +#: g10/card-util.c:97 g10/card-util.c:2252 g10/delkey.c:160 g10/keyedit.c:1423 +#: g10/keygen.c:4520 g10/revoke.c:214 g10/revoke.c:636 #, fuzzy, c-format msgid "can't do this in batch mode\n" msgstr "tätä ei voi tehdä eräajossa\n" @@ -1925,14 +1925,14 @@ msgid "This command is only available for version 2 cards\n" msgstr "Tätä komentoa ei sallita %s-tilassa.\n" -#: g10/card-util.c:107 scd/app-openpgp.c:2866 +#: g10/card-util.c:107 scd/app-openpgp.c:2869 #, fuzzy, c-format msgid "Reset Code not or not anymore available\n" msgstr "salaisen avaimen osat eivät ole käytettävissä\n" -#: g10/card-util.c:140 g10/card-util.c:1442 g10/card-util.c:1704 -#: g10/card-util.c:1796 g10/keyedit.c:394 g10/keyedit.c:415 g10/keyedit.c:429 -#: g10/keygen.c:1808 g10/keygen.c:1980 g10/keygen.c:2186 g10/keygen.c:2477 +#: g10/card-util.c:140 g10/card-util.c:1441 g10/card-util.c:1703 +#: g10/card-util.c:1795 g10/keyedit.c:394 g10/keyedit.c:415 g10/keyedit.c:429 +#: g10/keygen.c:1862 g10/keygen.c:2034 g10/keygen.c:2240 g10/keygen.c:2531 #: sm/certreqgen-ui.c:165 sm/certreqgen-ui.c:291 sm/certreqgen-ui.c:325 msgid "Your selection? " msgstr "Valintasi? " @@ -1983,13 +1983,13 @@ msgid "Error: Combined name too long (limit is %d characters).\n" msgstr "" -#: g10/card-util.c:826 +#: g10/card-util.c:825 #, fuzzy msgid "URL to retrieve public key: " msgstr "ei vastaavaa julkista avainta: %s\n" -#: g10/card-util.c:920 g10/decrypt-data.c:509 g10/import.c:399 g10/import.c:746 -#: g10/import.c:798 dirmngr/crlcache.c:655 dirmngr/crlcache.c:660 +#: g10/card-util.c:919 g10/decrypt-data.c:509 g10/import.c:400 g10/import.c:747 +#: g10/import.c:799 dirmngr/crlcache.c:655 dirmngr/crlcache.c:660 #: dirmngr/crlcache.c:914 dirmngr/crlcache.c:920 dirmngr/dirmngr.c:1748 #: tools/gpgconf.c:483 tools/gpgconf.c:529 #, fuzzy, c-format @@ -1997,174 +1997,174 @@ msgid "error reading '%s': %s\n" msgstr "virhe luettaessa tiedostoa \"%s\": %s\n" -#: g10/card-util.c:953 g10/decrypt-data.c:512 g10/export.c:2467 +#: g10/card-util.c:952 g10/decrypt-data.c:512 g10/export.c:2586 #: dirmngr/crlcache.c:925 #, fuzzy, c-format msgid "error writing '%s': %s\n" msgstr "virhe kirjoitettaessa avainrenkaaseen \"%s\": %s\n" -#: g10/card-util.c:980 +#: g10/card-util.c:979 msgid "Login data (account name): " msgstr "" -#: g10/card-util.c:1018 +#: g10/card-util.c:1017 msgid "Private DO data: " msgstr "" -#: g10/card-util.c:1103 +#: g10/card-util.c:1102 #, fuzzy msgid "Language preferences: " msgstr "päivitä valinnat" -#: g10/card-util.c:1111 +#: g10/card-util.c:1110 #, fuzzy msgid "Error: invalid length of preference string.\n" msgstr "Valinnassa on luvaton merkki\n" -#: g10/card-util.c:1120 +#: g10/card-util.c:1119 #, fuzzy msgid "Error: invalid characters in preference string.\n" msgstr "Valinnassa on luvaton merkki\n" -#: g10/card-util.c:1142 +#: g10/card-util.c:1141 msgid "Salutation (M = Mr., F = Ms., or space): " msgstr "" -#: g10/card-util.c:1156 +#: g10/card-util.c:1155 #, fuzzy msgid "Error: invalid response.\n" msgstr "virhe: sormenjälki on väärä\n" -#: g10/card-util.c:1178 +#: g10/card-util.c:1177 #, fuzzy msgid "CA fingerprint: " msgstr "näytä sormenjälki" -#: g10/card-util.c:1201 +#: g10/card-util.c:1200 #, fuzzy msgid "Error: invalid formatted fingerprint.\n" msgstr "virhe: sormenjälki on väärä\n" -#: g10/card-util.c:1252 +#: g10/card-util.c:1251 #, fuzzy, c-format msgid "key operation not possible: %s\n" msgstr "Avaimen luonti epäonnistui: %s\n" -#: g10/card-util.c:1253 +#: g10/card-util.c:1252 #, fuzzy msgid "not an OpenPGP card" msgstr "kelvollista OpenPGP-dataa ei löytynyt.\n" -#: g10/card-util.c:1266 g10/keygen.c:4486 g10/keygen.c:5562 +#: g10/card-util.c:1265 g10/keygen.c:4540 g10/keygen.c:5616 #, fuzzy, c-format msgid "error getting current key info: %s\n" msgstr "virhe kirjoitettaessa salaiseen avainrenkaaseen \"%s\": %s\n" -#: g10/card-util.c:1351 +#: g10/card-util.c:1350 msgid "Replace existing key? (y/N) " msgstr "" -#: g10/card-util.c:1368 +#: g10/card-util.c:1367 msgid "" "Note: There is no guarantee that the card supports the requested size.\n" " If the key generation does not succeed, please check the\n" " documentation of your card to see what sizes are allowed.\n" msgstr "" -#: g10/card-util.c:1390 g10/keygen.c:2363 sm/certreqgen-ui.c:179 +#: g10/card-util.c:1389 g10/keygen.c:2417 sm/certreqgen-ui.c:179 #, fuzzy, c-format msgid "What keysize do you want? (%u) " msgstr "Minkä kokoisen avaimen haluat? (1024) " -#: g10/card-util.c:1400 g10/keygen.c:2286 g10/keygen.c:2318 +#: g10/card-util.c:1399 g10/keygen.c:2340 g10/keygen.c:2372 #: sm/certreqgen-ui.c:194 #, c-format msgid "rounded up to %u bits\n" msgstr "pyöristetty %u bittiin\n" -#: g10/card-util.c:1408 g10/keygen.c:2371 sm/certreqgen-ui.c:184 +#: g10/card-util.c:1407 g10/keygen.c:2425 sm/certreqgen-ui.c:184 #, c-format msgid "%s keysizes must be in the range %u-%u\n" msgstr "" -#: g10/card-util.c:1427 +#: g10/card-util.c:1426 msgid "Changing card key attribute for: " msgstr "" -#: g10/card-util.c:1429 +#: g10/card-util.c:1428 #, fuzzy msgid "Signature key\n" msgstr "Allekirjoitus vanheni %s\n" -#: g10/card-util.c:1431 +#: g10/card-util.c:1430 #, fuzzy msgid "Encryption key\n" msgstr " (%d) RSA (vain salaus)\n" -#: g10/card-util.c:1433 +#: g10/card-util.c:1432 msgid "Authentication key\n" msgstr "" -#: g10/card-util.c:1435 g10/keygen.c:1926 sm/certreqgen-ui.c:157 +#: g10/card-util.c:1434 g10/keygen.c:1980 sm/certreqgen-ui.c:157 msgid "Please select what kind of key you want:\n" msgstr "Valitse millaisen avaimen haluat:\n" -#: g10/card-util.c:1436 sm/certreqgen-ui.c:158 +#: g10/card-util.c:1435 sm/certreqgen-ui.c:158 #, fuzzy, c-format msgid " (%d) RSA\n" msgstr " (%d) RSA (vain allekirjoitus)\n" -#: g10/card-util.c:1437 +#: g10/card-util.c:1436 #, fuzzy, c-format msgid " (%d) ECC\n" msgstr " (%d) DSA ja ElGamal (oletus)\n" -#: g10/card-util.c:1449 g10/card-util.c:1716 g10/card-util.c:1816 -#: g10/keyedit.c:900 g10/keygen.c:1834 g10/keygen.c:1862 g10/keygen.c:1987 -#: g10/keygen.c:2222 g10/keygen.c:2505 g10/revoke.c:838 +#: g10/card-util.c:1448 g10/card-util.c:1715 g10/card-util.c:1815 +#: g10/keyedit.c:900 g10/keygen.c:1888 g10/keygen.c:1916 g10/keygen.c:2041 +#: g10/keygen.c:2276 g10/keygen.c:2559 g10/revoke.c:838 msgid "Invalid selection.\n" msgstr "Valinta ei kelpaa.\n" -#: g10/card-util.c:1522 +#: g10/card-util.c:1521 #, c-format msgid "The card will now be re-configured to generate a key of %u bits\n" msgstr "" -#: g10/card-util.c:1527 +#: g10/card-util.c:1526 #, c-format msgid "The card will now be re-configured to generate a key of type: %s\n" msgstr "" -#: g10/card-util.c:1563 +#: g10/card-util.c:1562 #, fuzzy, c-format msgid "error changing key attribute for key %d: %s\n" msgstr "virhe lähettäessä kohteeseen \"%s\": %s\n" -#: g10/card-util.c:1579 g10/card-util.c:2106 +#: g10/card-util.c:1578 g10/card-util.c:2105 #, fuzzy, c-format msgid "error getting card info: %s\n" msgstr "virhe kirjoitettaessa salaiseen avainrenkaaseen \"%s\": %s\n" -#: g10/card-util.c:1585 g10/card-util.c:1930 g10/card-util.c:2112 +#: g10/card-util.c:1584 g10/card-util.c:1929 g10/card-util.c:2111 #, fuzzy, c-format #| msgid "This command is not allowed while in %s mode.\n" msgid "This command is not supported by this card\n" msgstr "Tätä komentoa ei sallita %s-tilassa.\n" -#: g10/card-util.c:1631 +#: g10/card-util.c:1630 msgid "Make off-card backup of encryption key? (Y/n) " msgstr "" -#: g10/card-util.c:1645 +#: g10/card-util.c:1644 #, fuzzy, c-format msgid "Note: keys are already stored on the card!\n" msgstr "ohitetaan: salainen avain on jo paikalla\n" -#: g10/card-util.c:1648 +#: g10/card-util.c:1647 msgid "Replace existing keys? (y/N) " msgstr "" -#: g10/card-util.c:1660 +#: g10/card-util.c:1659 #, c-format msgid "" "Please note that the factory settings of the PINs are\n" @@ -2172,160 +2172,160 @@ "You should change them using the command --change-pin\n" msgstr "" -#: g10/card-util.c:1695 +#: g10/card-util.c:1694 #, fuzzy msgid "Please select the type of key to generate:\n" msgstr "Valitse millaisen avaimen haluat:\n" -#: g10/card-util.c:1697 g10/card-util.c:1787 +#: g10/card-util.c:1696 g10/card-util.c:1786 #, fuzzy msgid " (1) Signature key\n" msgstr "Allekirjoitus vanheni %s\n" -#: g10/card-util.c:1698 g10/card-util.c:1789 +#: g10/card-util.c:1697 g10/card-util.c:1788 #, fuzzy msgid " (2) Encryption key\n" msgstr " (%d) RSA (vain salaus)\n" -#: g10/card-util.c:1699 g10/card-util.c:1791 +#: g10/card-util.c:1698 g10/card-util.c:1790 msgid " (3) Authentication key\n" msgstr "" -#: g10/card-util.c:1784 +#: g10/card-util.c:1783 #, fuzzy msgid "Please select where to store the key:\n" msgstr "Valitse mitätöinnin syy:\n" -#: g10/card-util.c:1830 +#: g10/card-util.c:1829 #, fuzzy, c-format msgid "KEYTOCARD failed: %s\n" msgstr "päivitys epäonnistui: %s\n" -#: g10/card-util.c:1935 +#: g10/card-util.c:1934 #, fuzzy, c-format msgid "Note: This command destroys all keys stored on the card!\n" msgstr "ohitetaan: salainen avain on jo paikalla\n" -#: g10/card-util.c:1938 +#: g10/card-util.c:1937 #, fuzzy msgid "Continue? (y/N) " msgstr "Varmastiko allekirjoita? " -#: g10/card-util.c:1943 +#: g10/card-util.c:1942 msgid "Really do a factory reset? (enter \"yes\") " msgstr "" -#: g10/card-util.c:2129 +#: g10/card-util.c:2128 #, fuzzy, c-format msgid "error for setup KDF: %s\n" msgstr "virhe luettaessa tiedostoa \"%s\": %s\n" -#: g10/card-util.c:2158 g10/keyedit.c:1260 +#: g10/card-util.c:2157 g10/keyedit.c:1260 msgid "quit this menu" msgstr "ulos tästä valikosta" -#: g10/card-util.c:2160 +#: g10/card-util.c:2159 #, fuzzy msgid "show admin commands" msgstr "ristiriitainen komento\n" -#: g10/card-util.c:2161 g10/keyedit.c:1263 +#: g10/card-util.c:2160 g10/keyedit.c:1263 msgid "show this help" msgstr "näytä tämä ohje" -#: g10/card-util.c:2163 +#: g10/card-util.c:2162 #, fuzzy msgid "list all available data" msgstr "Avain saatavilla kohteessa: " -#: g10/card-util.c:2166 +#: g10/card-util.c:2165 msgid "change card holder's name" msgstr "" -#: g10/card-util.c:2167 +#: g10/card-util.c:2166 msgid "change URL to retrieve key" msgstr "" -#: g10/card-util.c:2168 +#: g10/card-util.c:2167 msgid "fetch the key specified in the card URL" msgstr "" -#: g10/card-util.c:2169 +#: g10/card-util.c:2168 #, fuzzy msgid "change the login name" msgstr "muuta voimassoloaikaa" -#: g10/card-util.c:2170 +#: g10/card-util.c:2169 #, fuzzy msgid "change the language preferences" msgstr "muuta luottamusastetta" -#: g10/card-util.c:2171 +#: g10/card-util.c:2170 msgid "change card holder's salutation" msgstr "" -#: g10/card-util.c:2173 +#: g10/card-util.c:2172 #, fuzzy msgid "change a CA fingerprint" msgstr "näytä sormenjälki" -#: g10/card-util.c:2174 +#: g10/card-util.c:2173 msgid "toggle the signature force PIN flag" msgstr "" -#: g10/card-util.c:2175 +#: g10/card-util.c:2174 #, fuzzy msgid "generate new keys" msgstr "luo uusi avainpari" -#: g10/card-util.c:2176 +#: g10/card-util.c:2175 msgid "menu to change or unblock the PIN" msgstr "" -#: g10/card-util.c:2177 +#: g10/card-util.c:2176 msgid "verify the PIN and list all data" msgstr "" -#: g10/card-util.c:2178 +#: g10/card-util.c:2177 msgid "unblock the PIN using a Reset Code" msgstr "" -#: g10/card-util.c:2179 +#: g10/card-util.c:2178 msgid "destroy all keys and data" msgstr "" -#: g10/card-util.c:2180 +#: g10/card-util.c:2179 #, fuzzy #| msgid "|NAME|use NAME as default recipient" msgid "setup KDF for PIN authentication" msgstr "|NIMI|käytä NIMI oletusvastaanottajana" -#: g10/card-util.c:2181 +#: g10/card-util.c:2180 #, fuzzy #| msgid "change the ownertrust" msgid "change the key attribute" msgstr "muuta luottamusastetta" -#: g10/card-util.c:2305 +#: g10/card-util.c:2304 msgid "gpg/card> " msgstr "" -#: g10/card-util.c:2346 +#: g10/card-util.c:2345 #, fuzzy msgid "Admin-only command\n" msgstr "ristiriitainen komento\n" -#: g10/card-util.c:2377 +#: g10/card-util.c:2376 #, fuzzy msgid "Admin commands are allowed\n" msgstr "ristiriitainen komento\n" -#: g10/card-util.c:2379 +#: g10/card-util.c:2378 #, fuzzy msgid "Admin commands are not allowed\n" msgstr "kirjoitan salaisen avaimen kohteeseen \"%s\"\n" -#: g10/card-util.c:2482 g10/keyedit.c:2229 +#: g10/card-util.c:2481 g10/keyedit.c:2229 msgid "Invalid command (try \"help\")\n" msgstr "Komento ei kelpaa (kirjoita \"help\")\n" @@ -2334,22 +2334,22 @@ msgid "--output doesn't work for this command\n" msgstr "--output ei toimi yhdessä tämän komennon kanssa\n" -#: g10/decrypt.c:247 g10/gpg.c:5155 g10/keyring.c:399 g10/keyring.c:750 +#: g10/decrypt.c:247 g10/gpg.c:5175 g10/keyring.c:399 g10/keyring.c:750 #, fuzzy, c-format #| msgid "can't open `%s'\n" msgid "can't open '%s'\n" msgstr "tiedostoa \"%s\" ei voi avata\n" -#: g10/delkey.c:83 g10/export.c:1947 g10/export.c:2230 g10/export.c:2351 -#: g10/getkey.c:2108 g10/gpg.c:5100 g10/keyedit.c:1445 g10/keyedit.c:2335 +#: g10/delkey.c:83 g10/export.c:2035 g10/export.c:2349 g10/export.c:2470 +#: g10/getkey.c:2108 g10/gpg.c:5120 g10/keyedit.c:1445 g10/keyedit.c:2335 #: g10/keyedit.c:2637 g10/keyedit.c:4600 g10/keylist.c:693 g10/keyserver.c:1092 #: g10/revoke.c:230 g10/tofu.c:2165 #, fuzzy, c-format msgid "key \"%s\" not found: %s\n" msgstr "avainta \"%s\" ei löydy: %s\n" -#: g10/delkey.c:92 g10/export.c:2015 g10/getkey.c:2116 g10/getkey.c:4517 -#: g10/gpg.c:5109 g10/keyedit.c:2308 g10/keyserver.c:1110 g10/revoke.c:236 +#: g10/delkey.c:92 g10/export.c:2103 g10/getkey.c:2116 g10/getkey.c:4517 +#: g10/gpg.c:5129 g10/keyedit.c:2308 g10/keyserver.c:1110 g10/revoke.c:236 #: g10/revoke.c:663 g10/tofu.c:2173 #, c-format msgid "error reading keyblock: %s\n" @@ -2471,13 +2471,13 @@ msgid "WARNING: '%s' is an empty file\n" msgstr "VAROITUS: \"%s\" on tyhjä tiedosto\n" -#: g10/encrypt.c:446 g10/encrypt.c:521 g10/decrypt-data.c:266 g10/gpg.c:3959 -#: g10/gpg.c:3999 sm/decrypt.c:826 sm/encrypt.c:416 sm/gpgsm.c:1609 +#: g10/encrypt.c:446 g10/encrypt.c:521 g10/decrypt-data.c:266 g10/gpg.c:3979 +#: g10/gpg.c:4019 sm/decrypt.c:826 sm/encrypt.c:416 sm/gpgsm.c:1609 #, fuzzy, c-format msgid "cipher algorithm '%s' may not be used in %s mode\n" msgstr "salausalgoritmia \"%s\" ei voi käyttää %s-tilassa\n" -#: g10/encrypt.c:455 g10/gpg.c:3965 g10/gpg.c:4011 g10/sig-check.c:175 +#: g10/encrypt.c:455 g10/gpg.c:3985 g10/gpg.c:4031 g10/sig-check.c:175 #: g10/sign.c:391 sm/gpgsm.c:1619 sm/gpgsm.c:1629 sm/sign.c:478 sm/verify.c:506 #, fuzzy, c-format msgid "digest algorithm '%s' may not be used in %s mode\n" @@ -2596,69 +2596,75 @@ msgid "WARNING: unable to remove temp directory '%s': %s\n" msgstr "VAROITUS: väliaikaishakemistoa \"%s\" ei voi poistaa: %s\n" -#: g10/export.c:119 +#: g10/export.c:124 #, fuzzy msgid "export signatures that are marked as local-only" msgstr "" "\n" "Tämä allekirjoitus määritellään mitätöimättömäksi.\n" -#: g10/export.c:121 +#: g10/export.c:126 msgid "export attribute user IDs (generally photo IDs)" msgstr "" -#: g10/export.c:123 +#: g10/export.c:128 #, fuzzy msgid "export revocation keys marked as \"sensitive\"" msgstr "mitätöintiavainta ei löydy avaimelle \"%s\"\n" -#: g10/export.c:125 +#: g10/export.c:130 #, fuzzy msgid "remove unusable parts from key during export" msgstr "salaista avainta ei voi käyttää" -#: g10/export.c:127 +#: g10/export.c:132 msgid "remove as much as possible from key during export" msgstr "" -#: g10/export.c:133 +#: g10/export.c:138 +#, fuzzy +#| msgid "generate a revocation certificate" +msgid "export only revocation certificates" +msgstr "luo mitätöintivarmenne" + +#: g10/export.c:141 msgid "use the GnuPG key backup format" msgstr "" -#: g10/export.c:1291 +#: g10/export.c:1306 #, fuzzy #| msgid "%s: skipped: %s\n" msgid " - skipped" msgstr "%s: ohitettu: %s\n" -#: g10/export.c:1324 g10/import.c:2085 g10/openfile.c:200 g10/openfile.c:294 +#: g10/export.c:1339 g10/import.c:2089 g10/openfile.c:200 g10/openfile.c:294 #: g10/sign.c:1012 g10/sign.c:1326 #, fuzzy, c-format #| msgid "writing to `%s'\n" msgid "writing to '%s'\n" msgstr "kirjoitetaan kohteeseen \"%s\"\n" -#: g10/export.c:1769 +#: g10/export.c:1784 #, fuzzy, c-format msgid "key %s: key material on-card - skipped\n" msgstr "avain %08lX: aliavaimen allekirjoitus väärässä paikassa - ohitetaan\n" -#: g10/export.c:1964 +#: g10/export.c:2052 #, fuzzy, c-format msgid "exporting secret keys not allowed\n" msgstr "kirjoitan salaisen avaimen kohteeseen \"%s\"\n" -#: g10/export.c:2041 +#: g10/export.c:2129 #, fuzzy, c-format msgid "key %s: PGP 2.x style key - skipped\n" msgstr "avain %08lX: PGP 2.x -muodon avain - ohitetaan\n" -#: g10/export.c:2135 +#: g10/export.c:2254 #, c-format msgid "WARNING: nothing exported\n" msgstr "VAROITUS: mitään ei viety\n" -#: g10/export.c:2432 g10/plaintext.c:153 g10/plaintext.c:162 +#: g10/export.c:2551 g10/plaintext.c:153 g10/plaintext.c:162 #: g10/plaintext.c:168 g10/plaintext.c:191 #, fuzzy, c-format #| msgid "error creating `%s': %s\n" @@ -2729,297 +2735,297 @@ msgstr "" "käytetään toissijaista avainta %08lX ensisijaisen avaimen %08lX sijasta\n" -#: g10/getkey.c:4446 g10/gpg.c:2137 +#: g10/getkey.c:4446 g10/gpg.c:2146 #, fuzzy, c-format msgid "valid values for option '%s':\n" msgstr "virheelliset tuontivalitsimet\n" -#: g10/gpg.c:443 sm/gpgsm.c:212 +#: g10/gpg.c:444 sm/gpgsm.c:212 #, fuzzy msgid "make a signature" msgstr "tee erillinen allekirjoitus" -#: g10/gpg.c:444 +#: g10/gpg.c:445 #, fuzzy msgid "make a clear text signature" msgstr "|[tiedosto]|tee selkokielinen allekirjoitus" -#: g10/gpg.c:446 sm/gpgsm.c:214 +#: g10/gpg.c:447 sm/gpgsm.c:214 msgid "make a detached signature" msgstr "tee erillinen allekirjoitus" -#: g10/gpg.c:447 sm/gpgsm.c:215 +#: g10/gpg.c:448 sm/gpgsm.c:215 msgid "encrypt data" msgstr "salaa tiedot" -#: g10/gpg.c:449 +#: g10/gpg.c:450 msgid "encryption only with symmetric cipher" msgstr "salaa vain symmetrisellä salaimella" -#: g10/gpg.c:451 sm/gpgsm.c:217 +#: g10/gpg.c:452 sm/gpgsm.c:217 msgid "decrypt data (default)" msgstr "avaa tiedot (oletus)" -#: g10/gpg.c:453 sm/gpgsm.c:218 +#: g10/gpg.c:454 sm/gpgsm.c:218 msgid "verify a signature" msgstr "tarkista allekirjoitus" -#: g10/gpg.c:455 sm/gpgsm.c:219 +#: g10/gpg.c:456 sm/gpgsm.c:219 msgid "list keys" msgstr "näytä avaimet" -#: g10/gpg.c:457 +#: g10/gpg.c:458 msgid "list keys and signatures" msgstr "näytä avaimet allekirjoituksineen" -#: g10/gpg.c:460 +#: g10/gpg.c:461 #, fuzzy msgid "list and check key signatures" msgstr "tarkista avainten allekirjoitukset" -#: g10/gpg.c:462 sm/gpgsm.c:224 +#: g10/gpg.c:463 sm/gpgsm.c:224 msgid "list keys and fingerprints" msgstr "näytä avaimet sormenjälkineen" -#: g10/gpg.c:463 sm/gpgsm.c:222 +#: g10/gpg.c:464 sm/gpgsm.c:222 msgid "list secret keys" msgstr "näytä salaiset avaimet" -#: g10/gpg.c:465 sm/gpgsm.c:225 +#: g10/gpg.c:466 sm/gpgsm.c:225 msgid "generate a new key pair" msgstr "luo uusi avainpari" -#: g10/gpg.c:468 +#: g10/gpg.c:469 #, fuzzy #| msgid "generate a new key pair" msgid "quickly generate a new key pair" msgstr "luo uusi avainpari" -#: g10/gpg.c:471 +#: g10/gpg.c:472 #, fuzzy #| msgid "generate a new key pair" msgid "quickly add a new user-id" msgstr "luo uusi avainpari" -#: g10/gpg.c:476 +#: g10/gpg.c:477 #, fuzzy #| msgid "generate a new key pair" msgid "quickly revoke a user-id" msgstr "luo uusi avainpari" -#: g10/gpg.c:479 +#: g10/gpg.c:480 #, fuzzy #| msgid "generate a new key pair" msgid "quickly set a new expiration date" msgstr "luo uusi avainpari" -#: g10/gpg.c:482 +#: g10/gpg.c:483 msgid "full featured key pair generation" msgstr "" -#: g10/gpg.c:485 +#: g10/gpg.c:486 msgid "generate a revocation certificate" msgstr "luo mitätöintivarmenne" -#: g10/gpg.c:488 sm/gpgsm.c:228 +#: g10/gpg.c:489 sm/gpgsm.c:228 msgid "remove keys from the public keyring" msgstr "poista avaimet julkisten avainten renkaasta" -#: g10/gpg.c:490 +#: g10/gpg.c:491 msgid "remove keys from the secret keyring" msgstr "poista avaimet salaisten avainten renkaasta" -#: g10/gpg.c:492 +#: g10/gpg.c:493 #, fuzzy #| msgid "sign a key" msgid "quickly sign a key" msgstr "allekirjoita avain" -#: g10/gpg.c:494 +#: g10/gpg.c:495 #, fuzzy #| msgid "sign a key locally" msgid "quickly sign a key locally" msgstr "allekirjoita avain paikallisesti" -#: g10/gpg.c:496 +#: g10/gpg.c:497 #, fuzzy #| msgid "generate a new key pair" msgid "quickly revoke a key signature" msgstr "luo uusi avainpari" -#: g10/gpg.c:497 +#: g10/gpg.c:498 msgid "sign a key" msgstr "allekirjoita avain" -#: g10/gpg.c:498 +#: g10/gpg.c:499 msgid "sign a key locally" msgstr "allekirjoita avain paikallisesti" -#: g10/gpg.c:499 +#: g10/gpg.c:500 msgid "sign or edit a key" msgstr "allekirjoita tai muokkaa avainta" -#: g10/gpg.c:501 sm/gpgsm.c:246 +#: g10/gpg.c:502 sm/gpgsm.c:246 #, fuzzy msgid "change a passphrase" msgstr "muuta salasanaa" -#: g10/gpg.c:505 +#: g10/gpg.c:506 msgid "export keys" msgstr "vie avaimia" -#: g10/gpg.c:506 +#: g10/gpg.c:507 msgid "export keys to a keyserver" msgstr "vie avaimia palvelimelle" -#: g10/gpg.c:507 +#: g10/gpg.c:508 msgid "import keys from a keyserver" msgstr "nouda avaimia avainpalvelimelta" -#: g10/gpg.c:510 +#: g10/gpg.c:511 msgid "search for keys on a keyserver" msgstr "etsi avaimia avainpalvelimelta" -#: g10/gpg.c:512 +#: g10/gpg.c:513 msgid "update all keys from a keyserver" msgstr "päivitä kaikki avaimet avainpalvelimelta" -#: g10/gpg.c:520 +#: g10/gpg.c:521 msgid "import/merge keys" msgstr "nouda/liitä avaimia" -#: g10/gpg.c:523 +#: g10/gpg.c:524 msgid "print the card status" msgstr "" -#: g10/gpg.c:524 +#: g10/gpg.c:525 msgid "change data on a card" msgstr "" -#: g10/gpg.c:526 +#: g10/gpg.c:527 msgid "change a card's PIN" msgstr "" -#: g10/gpg.c:538 +#: g10/gpg.c:539 msgid "update the trust database" msgstr "päivitä luottamustietokanta" -#: g10/gpg.c:548 +#: g10/gpg.c:549 #, fuzzy msgid "print message digests" msgstr "|algo [tiedostot]|tulosta viestien tiivisteet" -#: g10/gpg.c:552 sm/gpgsm.c:241 +#: g10/gpg.c:553 sm/gpgsm.c:241 msgid "run in server mode" msgstr "" -#: g10/gpg.c:554 +#: g10/gpg.c:555 msgid "|VALUE|set the TOFU policy for a key" msgstr "" -#: g10/gpg.c:594 +#: g10/gpg.c:595 msgid "|NAME|use NAME as default secret key" msgstr "|NIMI|käytä oletusarvoisesti salaista avainta NIMI" -#: g10/gpg.c:596 sm/gpgsm.c:332 +#: g10/gpg.c:597 sm/gpgsm.c:332 #, fuzzy msgid "|NAME|encrypt to user ID NAME as well" msgstr "|NIMI|salaa vastaanottajalle NIMI" -#: g10/gpg.c:604 +#: g10/gpg.c:605 msgid "|SPEC|set up email aliases" msgstr "" -#: g10/gpg.c:616 +#: g10/gpg.c:617 msgid "use strict OpenPGP behavior" msgstr "" -#: g10/gpg.c:641 kbx/kbxutil.c:90 sm/gpgsm.c:412 tools/gpgconf.c:112 +#: g10/gpg.c:642 kbx/kbxutil.c:90 sm/gpgsm.c:412 tools/gpgconf.c:112 msgid "do not make any changes" msgstr "älä tee muutoksia" -#: g10/gpg.c:642 +#: g10/gpg.c:643 msgid "prompt before overwriting" msgstr "kysy ennen ylikirjoittamista" -#: g10/gpg.c:689 sm/gpgsm.c:304 +#: g10/gpg.c:690 sm/gpgsm.c:304 msgid "Options controlling the input" msgstr "" -#: g10/gpg.c:707 sm/gpgsm.c:314 +#: g10/gpg.c:708 sm/gpgsm.c:314 msgid "Options controlling the output" msgstr "" -#: g10/gpg.c:709 sm/gpgsm.c:316 +#: g10/gpg.c:710 sm/gpgsm.c:316 msgid "create ascii armored output" msgstr "tuota ascii-koodattu tuloste" -#: g10/gpg.c:713 g10/gpgv.c:82 sm/gpgsm.c:321 +#: g10/gpg.c:714 g10/gpgv.c:82 sm/gpgsm.c:321 #, fuzzy msgid "|FILE|write output to FILE" msgstr "|TIEDOSTO|lataa laajennusmoduuli TIEDOSTO" -#: g10/gpg.c:726 +#: g10/gpg.c:727 msgid "use canonical text mode" msgstr "käytä tekstimuotoa" -#: g10/gpg.c:743 +#: g10/gpg.c:744 #, fuzzy msgid "|N|set compress level to N (0 disables)" msgstr "|N|aseta pakkausaste N (0 poistaa käytöstä)" -#: g10/gpg.c:750 sm/gpgsm.c:347 +#: g10/gpg.c:751 sm/gpgsm.c:347 msgid "Options controlling key import and export" msgstr "" -#: g10/gpg.c:753 +#: g10/gpg.c:754 msgid "|MECHANISMS|use MECHANISMS to locate keys by mail address" msgstr "" -#: g10/gpg.c:756 +#: g10/gpg.c:757 #, fuzzy #| msgid "import keys from a keyserver" msgid "import missing key from a signature" msgstr "nouda avaimia avainpalvelimelta" -#: g10/gpg.c:761 +#: g10/gpg.c:762 #, fuzzy msgid "include the public key in signatures" msgstr "tarkista avainten allekirjoitukset" -#: g10/gpg.c:764 sm/gpgsm.c:350 +#: g10/gpg.c:765 sm/gpgsm.c:350 msgid "disable all access to the dirmngr" msgstr "" -#: g10/gpg.c:776 sm/gpgsm.c:357 +#: g10/gpg.c:777 sm/gpgsm.c:357 msgid "Options controlling key listings" msgstr "" -#: g10/gpg.c:805 sm/gpgsm.c:324 +#: g10/gpg.c:806 sm/gpgsm.c:324 #, fuzzy #| msgid "list secret keys" msgid "Options to specify keys" msgstr "näytä salaiset avaimet" -#: g10/gpg.c:807 sm/gpgsm.c:326 +#: g10/gpg.c:808 sm/gpgsm.c:326 #, fuzzy msgid "|USER-ID|encrypt for USER-ID" msgstr "|NIMI|salaa vastaanottajalle NIMI" -#: g10/gpg.c:815 sm/gpgsm.c:328 +#: g10/gpg.c:816 sm/gpgsm.c:328 #, fuzzy msgid "|USER-ID|use USER-ID to sign or decrypt" msgstr "käytä tätä käyttäjätunnusta allekirjoittamiseen ja avaamiseen" -#: g10/gpg.c:866 sm/gpgsm.c:396 +#: g10/gpg.c:867 sm/gpgsm.c:396 msgid "Options for unattended use" msgstr "" -#: g10/gpg.c:885 sm/gpgsm.c:408 dirmngr/dirmngr.c:294 +#: g10/gpg.c:886 sm/gpgsm.c:408 dirmngr/dirmngr.c:294 msgid "Other options" msgstr "" -#: g10/gpg.c:953 sm/gpgsm.c:440 +#: g10/gpg.c:955 sm/gpgsm.c:440 msgid "" "@\n" "(See the man page for a complete listing of all commands and options)\n" @@ -3028,7 +3034,7 @@ "(Katso täydellinen luettelo kaikista komennoista ja valitsimista man-" "sivuilta)\n" -#: g10/gpg.c:956 +#: g10/gpg.c:958 #, fuzzy #| msgid "" #| "@\n" @@ -3057,13 +3063,13 @@ " --list-keys [nimet] näytä avaimet\n" " --fingerprint [nimet] näytä sormenjäljet\n" -#: g10/gpg.c:1130 +#: g10/gpg.c:1139 #, fuzzy #| msgid "Usage: gpg [options] [files] (-h for help)" msgid "Usage: @GPG@ [options] [files] (-h for help)" msgstr "Käyttö: gpg [valitsimet] [tiedostot] (-h näyttää ohjeen)" -#: g10/gpg.c:1133 +#: g10/gpg.c:1142 #, fuzzy #| msgid "" #| "Syntax: gpg [options] [files]\n" @@ -3078,7 +3084,7 @@ "allekirjoita, tarkista, salaa tai avaa\n" "oletustoiminto riippuu syötteestä\n" -#: g10/gpg.c:1144 sm/gpgsm.c:624 +#: g10/gpg.c:1153 sm/gpgsm.c:624 msgid "" "\n" "Supported algorithms:\n" @@ -3086,552 +3092,552 @@ "\n" "Tuetut algoritmit:\n" -#: g10/gpg.c:1147 +#: g10/gpg.c:1156 msgid "Pubkey: " msgstr "JulkAvain: " -#: g10/gpg.c:1154 g10/keyedit.c:3338 +#: g10/gpg.c:1163 g10/keyedit.c:3338 msgid "Cipher: " msgstr "Salaus: " -#: g10/gpg.c:1161 +#: g10/gpg.c:1170 msgid "Hash: " msgstr "Tiiviste: " -#: g10/gpg.c:1168 g10/keyedit.c:3404 +#: g10/gpg.c:1177 g10/keyedit.c:3404 msgid "Compression: " msgstr "Pakkaus: " -#: g10/gpg.c:1241 sm/gpgsm.c:698 +#: g10/gpg.c:1250 sm/gpgsm.c:698 #, fuzzy, c-format msgid "usage: %s [options] %s\n" msgstr "käyttö: gpg [valitsimet] " -#: g10/gpg.c:1436 sm/gpgsm.c:791 +#: g10/gpg.c:1445 sm/gpgsm.c:791 #, c-format msgid "conflicting commands\n" msgstr "ristiriitainen komento\n" -#: g10/gpg.c:1454 +#: g10/gpg.c:1463 #, fuzzy, c-format msgid "no = sign found in group definition '%s'\n" msgstr "=-merkkiä ei löytynyt ryhmämäärityksessä \"%s\"\n" -#: g10/gpg.c:1652 +#: g10/gpg.c:1661 #, fuzzy, c-format msgid "WARNING: unsafe ownership on homedir '%s'\n" msgstr "VAROITUS: omistussuhde kohteessa %s \"%s\" ei ole turvallinen\"\n" -#: g10/gpg.c:1655 +#: g10/gpg.c:1664 #, fuzzy, c-format msgid "WARNING: unsafe ownership on configuration file '%s'\n" msgstr "VAROITUS: omistussuhde kohteessa %s \"%s\" ei ole turvallinen\"\n" -#: g10/gpg.c:1658 +#: g10/gpg.c:1667 #, fuzzy, c-format msgid "WARNING: unsafe ownership on extension '%s'\n" msgstr "VAROITUS: omistussuhde kohteessa %s \"%s\" ei ole turvallinen\"\n" -#: g10/gpg.c:1664 +#: g10/gpg.c:1673 #, fuzzy, c-format msgid "WARNING: unsafe permissions on homedir '%s'\n" msgstr "VAROITUS: oikeudet kohteessa %s \"%s\" eivät ole turvallisia\"\n" -#: g10/gpg.c:1667 +#: g10/gpg.c:1676 #, fuzzy, c-format msgid "WARNING: unsafe permissions on configuration file '%s'\n" msgstr "VAROITUS: oikeudet kohteessa %s \"%s\" eivät ole turvallisia\"\n" -#: g10/gpg.c:1670 +#: g10/gpg.c:1679 #, fuzzy, c-format msgid "WARNING: unsafe permissions on extension '%s'\n" msgstr "VAROITUS: oikeudet kohteessa %s \"%s\" eivät ole turvallisia\"\n" -#: g10/gpg.c:1676 +#: g10/gpg.c:1685 #, fuzzy, c-format msgid "WARNING: unsafe enclosing directory ownership on homedir '%s'\n" msgstr "VAROITUS: %s \"%s\" hakemiston oikeudet eivät ole turvallisia\"\n" -#: g10/gpg.c:1679 +#: g10/gpg.c:1688 #, fuzzy, c-format msgid "" "WARNING: unsafe enclosing directory ownership on configuration file '%s'\n" msgstr "VAROITUS: %s \"%s\" hakemiston oikeudet eivät ole turvallisia\"\n" -#: g10/gpg.c:1682 +#: g10/gpg.c:1691 #, fuzzy, c-format msgid "WARNING: unsafe enclosing directory ownership on extension '%s'\n" msgstr "VAROITUS: %s \"%s\" hakemiston oikeudet eivät ole turvallisia\"\n" -#: g10/gpg.c:1688 +#: g10/gpg.c:1697 #, fuzzy, c-format msgid "WARNING: unsafe enclosing directory permissions on homedir '%s'\n" msgstr "VAROITUS: Hakemiston %s \"%s\" oikeudet eivät ole turvallisia\"\n" -#: g10/gpg.c:1691 +#: g10/gpg.c:1700 #, fuzzy, c-format msgid "" "WARNING: unsafe enclosing directory permissions on configuration file '%s'\n" msgstr "VAROITUS: Hakemiston %s \"%s\" oikeudet eivät ole turvallisia\"\n" -#: g10/gpg.c:1694 +#: g10/gpg.c:1703 #, fuzzy, c-format msgid "WARNING: unsafe enclosing directory permissions on extension '%s'\n" msgstr "VAROITUS: Hakemiston %s \"%s\" oikeudet eivät ole turvallisia\"\n" -#: g10/gpg.c:1910 +#: g10/gpg.c:1919 #, fuzzy, c-format msgid "unknown configuration item '%s'\n" msgstr "tuntematon asetus \"%s\"\n" -#: g10/gpg.c:2009 +#: g10/gpg.c:2018 msgid "display photo IDs during key listings" msgstr "" -#: g10/gpg.c:2011 +#: g10/gpg.c:2020 #, fuzzy msgid "show key usage information during key listings" msgstr "Salaisesta avainrenkaasta ei löydy vastaavaa allekirjoitusta\n" -#: g10/gpg.c:2013 +#: g10/gpg.c:2022 msgid "show policy URLs during signature listings" msgstr "" -#: g10/gpg.c:2015 +#: g10/gpg.c:2024 #, fuzzy msgid "show all notations during signature listings" msgstr "Salaisesta avainrenkaasta ei löydy vastaavaa allekirjoitusta\n" -#: g10/gpg.c:2017 +#: g10/gpg.c:2026 msgid "show IETF standard notations during signature listings" msgstr "" -#: g10/gpg.c:2021 +#: g10/gpg.c:2030 msgid "show user-supplied notations during signature listings" msgstr "" -#: g10/gpg.c:2023 +#: g10/gpg.c:2032 #, fuzzy msgid "show preferred keyserver URLs during signature listings" msgstr "annettu allekirjoituskäytännön URL on virheellinen\n" -#: g10/gpg.c:2025 +#: g10/gpg.c:2034 msgid "show user ID validity during key listings" msgstr "" -#: g10/gpg.c:2027 +#: g10/gpg.c:2036 msgid "show revoked and expired user IDs in key listings" msgstr "" -#: g10/gpg.c:2029 +#: g10/gpg.c:2038 msgid "show revoked and expired subkeys in key listings" msgstr "" -#: g10/gpg.c:2031 +#: g10/gpg.c:2040 #, fuzzy msgid "show the keyring name in key listings" msgstr "näytä mihin avainrenkaaseen tulostettu avain kuuluu" -#: g10/gpg.c:2033 +#: g10/gpg.c:2042 #, fuzzy msgid "show expiration dates during signature listings" msgstr "Salaisesta avainrenkaasta ei löydy vastaavaa allekirjoitusta\n" -#: g10/gpg.c:2148 +#: g10/gpg.c:2157 #, fuzzy, c-format msgid "unknown TOFU policy '%s'\n" msgstr "tuntematon oletusvastaanottaja \"%s\"\n" -#: g10/gpg.c:2150 +#: g10/gpg.c:2159 #, c-format msgid "(use \"help\" to list choices)\n" msgstr "" -#: g10/gpg.c:2240 g10/keyedit.c:1719 +#: g10/gpg.c:2249 g10/keyedit.c:1719 #, c-format msgid "This command is not allowed while in %s mode.\n" msgstr "Tätä komentoa ei sallita %s-tilassa.\n" -#: g10/gpg.c:2878 g10/gpg.c:3718 g10/gpg.c:3730 +#: g10/gpg.c:2896 g10/gpg.c:3736 g10/gpg.c:3748 #, fuzzy, c-format #| msgid "NOTE: %s is not for normal use!\n" msgid "Note: %s is not for normal use!\n" msgstr "HUOM: %s ei ole normaaliin käyttöön!\n" -#: g10/gpg.c:3053 g10/gpg.c:3065 +#: g10/gpg.c:3071 g10/gpg.c:3083 #, fuzzy, c-format msgid "'%s' is not a valid signature expiration\n" msgstr "%s ei kelpaa merkistöksi\n" -#: g10/gpg.c:3087 +#: g10/gpg.c:3105 #, fuzzy, c-format msgid "\"%s\" is not a proper mail address\n" msgstr "Sähköpostiosoite ei kelpaa\n" -#: g10/gpg.c:3119 sm/gpgsm.c:1121 +#: g10/gpg.c:3137 sm/gpgsm.c:1121 #, fuzzy, c-format msgid "invalid pinentry mode '%s'\n" msgstr "virheellinen tiivistealgoritmi \"%s\"\n" -#: g10/gpg.c:3125 sm/gpgsm.c:1127 +#: g10/gpg.c:3143 sm/gpgsm.c:1127 #, fuzzy, c-format msgid "invalid request origin '%s'\n" msgstr "virheelliset tuontivalitsimet\n" -#: g10/gpg.c:3179 +#: g10/gpg.c:3197 #, fuzzy, c-format msgid "'%s' is not a valid character set\n" msgstr "%s ei kelpaa merkistöksi\n" -#: g10/gpg.c:3201 g10/gpg.c:3415 g10/keyedit.c:5338 +#: g10/gpg.c:3219 g10/gpg.c:3433 g10/keyedit.c:5338 #, fuzzy, c-format msgid "could not parse keyserver URL\n" msgstr "avainpalvelimen URI:iä ei voi jäsentää\n" -#: g10/gpg.c:3219 +#: g10/gpg.c:3237 #, fuzzy, c-format msgid "%s:%d: invalid keyserver options\n" msgstr "%s:%d: virheelliset vientivalitsimet\n" -#: g10/gpg.c:3222 +#: g10/gpg.c:3240 #, fuzzy, c-format msgid "invalid keyserver options\n" msgstr "virheelliset vientivalitsimet\n" -#: g10/gpg.c:3229 +#: g10/gpg.c:3247 #, c-format msgid "%s:%d: invalid import options\n" msgstr "%s:%d: virheelliset tuontivalitsimet\n" -#: g10/gpg.c:3232 +#: g10/gpg.c:3250 #, c-format msgid "invalid import options\n" msgstr "virheelliset tuontivalitsimet\n" -#: g10/gpg.c:3238 g10/gpg.c:3253 +#: g10/gpg.c:3256 g10/gpg.c:3271 #, fuzzy, c-format msgid "invalid filter option: %s\n" msgstr "virheelliset tuontivalitsimet\n" -#: g10/gpg.c:3244 +#: g10/gpg.c:3262 #, c-format msgid "%s:%d: invalid export options\n" msgstr "%s:%d: virheelliset vientivalitsimet\n" -#: g10/gpg.c:3247 +#: g10/gpg.c:3265 #, c-format msgid "invalid export options\n" msgstr "virheelliset vientivalitsimet\n" -#: g10/gpg.c:3259 +#: g10/gpg.c:3277 #, fuzzy, c-format msgid "%s:%d: invalid list options\n" msgstr "%s:%d: virheelliset tuontivalitsimet\n" -#: g10/gpg.c:3262 +#: g10/gpg.c:3280 #, fuzzy, c-format msgid "invalid list options\n" msgstr "virheelliset tuontivalitsimet\n" -#: g10/gpg.c:3270 +#: g10/gpg.c:3288 msgid "display photo IDs during signature verification" msgstr "" -#: g10/gpg.c:3272 +#: g10/gpg.c:3290 msgid "show policy URLs during signature verification" msgstr "" -#: g10/gpg.c:3274 +#: g10/gpg.c:3292 #, fuzzy msgid "show all notations during signature verification" msgstr "%s ei kelpaa merkistöksi\n" -#: g10/gpg.c:3276 +#: g10/gpg.c:3294 msgid "show IETF standard notations during signature verification" msgstr "" -#: g10/gpg.c:3280 +#: g10/gpg.c:3298 msgid "show user-supplied notations during signature verification" msgstr "" -#: g10/gpg.c:3282 +#: g10/gpg.c:3300 #, fuzzy msgid "show preferred keyserver URLs during signature verification" msgstr "annettu allekirjoituskäytännön URL on virheellinen\n" -#: g10/gpg.c:3284 +#: g10/gpg.c:3302 #, fuzzy msgid "show user ID validity during signature verification" msgstr "%s ei kelpaa merkistöksi\n" -#: g10/gpg.c:3286 +#: g10/gpg.c:3304 msgid "show revoked and expired user IDs in signature verification" msgstr "" -#: g10/gpg.c:3288 +#: g10/gpg.c:3306 #, fuzzy msgid "show only the primary user ID in signature verification" msgstr "%s ei kelpaa merkistöksi\n" -#: g10/gpg.c:3290 +#: g10/gpg.c:3308 msgid "validate signatures with PKA data" msgstr "" -#: g10/gpg.c:3292 +#: g10/gpg.c:3310 msgid "elevate the trust of signatures with valid PKA data" msgstr "" -#: g10/gpg.c:3299 +#: g10/gpg.c:3317 #, fuzzy, c-format msgid "%s:%d: invalid verify options\n" msgstr "%s:%d: virheelliset vientivalitsimet\n" -#: g10/gpg.c:3302 +#: g10/gpg.c:3320 #, fuzzy, c-format msgid "invalid verify options\n" msgstr "virheelliset vientivalitsimet\n" -#: g10/gpg.c:3309 +#: g10/gpg.c:3327 #, c-format msgid "unable to set exec-path to %s\n" msgstr "exec-polkua kohteeseen %s ei voi asettaa\n" -#: g10/gpg.c:3513 +#: g10/gpg.c:3531 #, fuzzy, c-format msgid "%s:%d: invalid auto-key-locate list\n" msgstr "%s:%d: virheelliset vientivalitsimet\n" -#: g10/gpg.c:3516 +#: g10/gpg.c:3534 #, c-format msgid "invalid auto-key-locate list\n" msgstr "" -#: g10/gpg.c:3700 sm/gpgsm.c:1492 +#: g10/gpg.c:3718 sm/gpgsm.c:1492 #, c-format msgid "WARNING: program may create a core file!\n" msgstr "VAROITUS: ohjelma voi luoda core-tiedoston!\n" -#: g10/gpg.c:3711 +#: g10/gpg.c:3729 #, c-format msgid "WARNING: %s overrides %s\n" msgstr "VAROITUS: %s korvaa %s:n\n" -#: g10/gpg.c:3720 +#: g10/gpg.c:3738 #, c-format msgid "%s not allowed with %s!\n" msgstr "%s ja %s eivät ole sallittuja yhdessä!\n" -#: g10/gpg.c:3723 +#: g10/gpg.c:3741 #, c-format msgid "%s makes no sense with %s!\n" msgstr "%s ja %s yhdessä on järjetöntä!\n" -#: g10/gpg.c:3738 sm/gpgsm.c:1509 dirmngr/dirmngr.c:1205 +#: g10/gpg.c:3756 sm/gpgsm.c:1509 dirmngr/dirmngr.c:1205 #, c-format msgid "WARNING: running with faked system time: " msgstr "" -#: g10/gpg.c:3759 +#: g10/gpg.c:3777 #, fuzzy, c-format msgid "will not run with insecure memory due to %s\n" msgstr "kirjoitan salaisen avaimen kohteeseen \"%s\"\n" -#: g10/gpg.c:3804 g10/gpg.c:3828 sm/gpgsm.c:1579 +#: g10/gpg.c:3824 g10/gpg.c:3848 sm/gpgsm.c:1579 #, c-format msgid "selected cipher algorithm is invalid\n" msgstr "valittu salausalgoritmi ei kelpaa\n" -#: g10/gpg.c:3816 +#: g10/gpg.c:3836 #, fuzzy, c-format msgid "selected compression algorithm is invalid\n" msgstr "valittu salausalgoritmi ei kelpaa\n" -#: g10/gpg.c:3822 +#: g10/gpg.c:3842 #, c-format msgid "selected certification digest algorithm is invalid\n" msgstr "valittu varmenteen tiivistealgoritmi ei kelpaa\n" -#: g10/gpg.c:3837 +#: g10/gpg.c:3857 #, c-format msgid "completes-needed must be greater than 0\n" msgstr "completes-needed täytyy olla suurempi kuin 0\n" -#: g10/gpg.c:3839 +#: g10/gpg.c:3859 #, c-format msgid "marginals-needed must be greater than 1\n" msgstr "marginals-needed täytyy olla suurempi kuin 1\n" -#: g10/gpg.c:3841 +#: g10/gpg.c:3861 #, fuzzy, c-format msgid "max-cert-depth must be in the range from 1 to 255\n" msgstr "max-cert-depth tulee olla välillä 1-255\n" -#: g10/gpg.c:3843 +#: g10/gpg.c:3863 #, c-format msgid "invalid default-cert-level; must be 0, 1, 2, or 3\n" msgstr "default-cert-level ei kelpaa; täytyy olla 0, 1, 2 tai 3\n" -#: g10/gpg.c:3845 +#: g10/gpg.c:3865 #, c-format msgid "invalid min-cert-level; must be 1, 2, or 3\n" msgstr "min-cert-level ei kelpaa; täytyy olla 1, 2 tai 3\n" -#: g10/gpg.c:3849 +#: g10/gpg.c:3869 #, fuzzy, c-format #| msgid "NOTE: simple S2K mode (0) is strongly discouraged\n" msgid "Note: simple S2K mode (0) is strongly discouraged\n" msgstr "" "HUOM: yksinkertaista S2K-tilaa (0) ei todellakaan suositella käytettäväksi\n" -#: g10/gpg.c:3853 +#: g10/gpg.c:3873 #, c-format msgid "invalid S2K mode; must be 0, 1 or 3\n" msgstr "virheellinen S2K-tila; täytyy olla 0, 1 tai 3\n" -#: g10/gpg.c:3860 +#: g10/gpg.c:3880 #, c-format msgid "invalid default preferences\n" msgstr "virheelliset oletusarvoiset valinnat\n" -#: g10/gpg.c:3864 +#: g10/gpg.c:3884 #, c-format msgid "invalid personal cipher preferences\n" msgstr "virheelliset henkilökohtaisen salaimen valinnat\n" -#: g10/gpg.c:3868 +#: g10/gpg.c:3888 #, c-format msgid "invalid personal digest preferences\n" msgstr "virheelliset henkilökohtaiset tiivisteen valinnat\n" -#: g10/gpg.c:3872 +#: g10/gpg.c:3892 #, c-format msgid "invalid personal compress preferences\n" msgstr "virheelliset henkilökohtaiset pakkausvalinnat\n" -#: g10/gpg.c:3908 +#: g10/gpg.c:3928 #, c-format msgid "%s does not yet work with %s\n" msgstr "%s ja %s eivät vielä toimi yhdessä\n" -#: g10/gpg.c:3971 +#: g10/gpg.c:3991 #, fuzzy, c-format msgid "compression algorithm '%s' may not be used in %s mode\n" msgstr "pakkausalgoritmia \"%s\" ei voi käyttää %s-tilassa\n" -#: g10/gpg.c:4115 +#: g10/gpg.c:4135 #, c-format msgid "failed to initialize the TrustDB: %s\n" msgstr "TrustDB:n alustaminen ei onnistu: %s\n" -#: g10/gpg.c:4127 +#: g10/gpg.c:4147 #, c-format msgid "WARNING: recipients (-r) given without using public key encryption\n" msgstr "" "VAROITUS: vastaanottajia (-r) annettu käyttämättä julkisen avaimen salausta\n" -#: g10/gpg.c:4199 +#: g10/gpg.c:4219 #, fuzzy, c-format msgid "symmetric encryption of '%s' failed: %s\n" msgstr "avaus epäonnistui: %s\n" -#: g10/gpg.c:4228 +#: g10/gpg.c:4248 #, c-format msgid "you cannot use --symmetric --encrypt with --s2k-mode 0\n" msgstr "" -#: g10/gpg.c:4231 +#: g10/gpg.c:4251 #, fuzzy, c-format msgid "you cannot use --symmetric --encrypt in %s mode\n" msgstr "valitsinta %s ei voi käyttää %s-tilassa\n" -#: g10/gpg.c:4289 +#: g10/gpg.c:4309 #, c-format msgid "you cannot use --symmetric --sign --encrypt with --s2k-mode 0\n" msgstr "" -#: g10/gpg.c:4292 +#: g10/gpg.c:4312 #, fuzzy, c-format msgid "you cannot use --symmetric --sign --encrypt in %s mode\n" msgstr "valitsinta %s ei voi käyttää %s-tilassa\n" -#: g10/gpg.c:4692 g10/keyserver.c:1648 +#: g10/gpg.c:4712 g10/keyserver.c:1648 #, c-format msgid "keyserver send failed: %s\n" msgstr "avainpalvelimelle lähettäminen epäonnistui: %s\n" -#: g10/gpg.c:4697 +#: g10/gpg.c:4717 #, c-format msgid "keyserver receive failed: %s\n" msgstr "avainpalvelimelta vastaanotto epäonnistui: %s\n" -#: g10/gpg.c:4703 +#: g10/gpg.c:4723 #, c-format msgid "key export failed: %s\n" msgstr "avaimen vienti epäonnistui: %s\n" -#: g10/gpg.c:4716 +#: g10/gpg.c:4736 #, fuzzy, c-format #| msgid "key export failed: %s\n" msgid "export as ssh key failed: %s\n" msgstr "avaimen vienti epäonnistui: %s\n" -#: g10/gpg.c:4728 +#: g10/gpg.c:4748 #, c-format msgid "keyserver search failed: %s\n" msgstr "avainpalvelimelta etsiminen epäonnistui: %s\n" -#: g10/gpg.c:4741 +#: g10/gpg.c:4761 #, c-format msgid "keyserver refresh failed: %s\n" msgstr "avainpalvelimen päivitys epäonnistui: %s\n" -#: g10/gpg.c:4810 +#: g10/gpg.c:4830 #, c-format msgid "dearmoring failed: %s\n" msgstr "ascii-koodauksen purku epäonnistui: %s\n" -#: g10/gpg.c:4821 +#: g10/gpg.c:4841 #, c-format msgid "enarmoring failed: %s\n" msgstr "ascii-koodaaminen epäonnistui: %s\n" -#: g10/gpg.c:4913 +#: g10/gpg.c:4933 #, fuzzy, c-format #| msgid "invalid hash algorithm `%s'\n" msgid "invalid hash algorithm '%s'\n" msgstr "virheellinen tiivistealgoritmi \"%s\"\n" -#: g10/gpg.c:5065 g10/tofu.c:2153 +#: g10/gpg.c:5085 g10/tofu.c:2153 #, fuzzy, c-format msgid "error parsing key specification '%s': %s\n" msgstr "virhe luotaessa salasanaa: %s\n" -#: g10/gpg.c:5078 +#: g10/gpg.c:5098 #, c-format msgid "'%s' does not appear to be a valid key ID, fingerprint or keygrip\n" msgstr "" -#: g10/gpg.c:5134 +#: g10/gpg.c:5154 #, c-format msgid "WARNING: no command supplied. Trying to guess what you mean ...\n" msgstr "" -#: g10/gpg.c:5145 +#: g10/gpg.c:5165 #, c-format msgid "Go ahead and type your message ...\n" msgstr "Kirjoita viestisi...\n" -#: g10/gpg.c:5490 +#: g10/gpg.c:5510 #, c-format msgid "the given certification policy URL is invalid\n" msgstr "annettu varmennekäytännön URL on virheellinen\n" -#: g10/gpg.c:5492 +#: g10/gpg.c:5512 #, c-format msgid "the given signature policy URL is invalid\n" msgstr "annettu allekirjoituskäytännön URL on virheellinen\n" -#: g10/gpg.c:5525 +#: g10/gpg.c:5545 #, fuzzy, c-format msgid "the given preferred keyserver URL is invalid\n" msgstr "annettu allekirjoituskäytännön URL on virheellinen\n" @@ -3676,321 +3682,321 @@ msgid "No help available for '%s'" msgstr "Ei ohjetta aiheesta \"%s\"" -#: g10/import.c:169 +#: g10/import.c:170 msgid "import signatures that are marked as local-only" msgstr "" -#: g10/import.c:172 +#: g10/import.c:173 msgid "repair damage from the pks keyserver during import" msgstr "" -#: g10/import.c:175 +#: g10/import.c:176 #, fuzzy msgid "do not clear the ownertrust values during import" msgstr "päivitä luottamustietokanta" -#: g10/import.c:178 +#: g10/import.c:179 #, fuzzy msgid "do not update the trustdb after import" msgstr "päivitä luottamustietokanta" -#: g10/import.c:181 +#: g10/import.c:182 #, fuzzy msgid "show key during import" msgstr "näytä sormenjälki" -#: g10/import.c:184 +#: g10/import.c:185 msgid "only accept updates to existing keys" msgstr "" -#: g10/import.c:187 +#: g10/import.c:188 #, fuzzy msgid "remove unusable parts from key after import" msgstr "salaista avainta ei voi käyttää" -#: g10/import.c:190 +#: g10/import.c:191 msgid "remove as much as possible from key after import" msgstr "" -#: g10/import.c:193 +#: g10/import.c:194 msgid "ignore key-signatures which are not self-signatures" msgstr "" -#: g10/import.c:196 +#: g10/import.c:197 msgid "run import filters and export key immediately" msgstr "" -#: g10/import.c:199 +#: g10/import.c:200 msgid "assume the GnuPG key backup format" msgstr "" -#: g10/import.c:203 +#: g10/import.c:204 #, fuzzy msgid "repair keys on import" msgstr "näytä sormenjälki" -#: g10/import.c:392 g10/import.c:711 +#: g10/import.c:393 g10/import.c:712 #, c-format msgid "skipping block of type %d\n" msgstr "ohitetaan tyypin %d lohko\n" -#: g10/import.c:728 +#: g10/import.c:729 #, fuzzy, c-format msgid "%lu keys processed so far\n" msgstr "tähän mennessä käsitelty %lu avainta\n" -#: g10/import.c:814 +#: g10/import.c:815 #, c-format msgid "Total number processed: %lu\n" msgstr "Kaikkiaan käsitelty: %lu\n" -#: g10/import.c:817 +#: g10/import.c:818 #, fuzzy, c-format #| msgid " skipped new keys: %lu\n" msgid " skipped PGP-2 keys: %lu\n" msgstr " ohitetaan uudet avaimet: %lu\n" -#: g10/import.c:819 +#: g10/import.c:820 #, c-format msgid " skipped new keys: %lu\n" msgstr " ohitetaan uudet avaimet: %lu\n" -#: g10/import.c:822 +#: g10/import.c:823 #, c-format msgid " w/o user IDs: %lu\n" msgstr " ilman käyttäjätunnuksia: %lu\n" -#: g10/import.c:825 sm/import.c:130 +#: g10/import.c:826 sm/import.c:130 #, c-format msgid " imported: %lu" msgstr " tuotu: %lu" -#: g10/import.c:829 sm/import.c:134 +#: g10/import.c:830 sm/import.c:134 #, c-format msgid " unchanged: %lu\n" msgstr " muuttamatonta: %lu\n" -#: g10/import.c:831 +#: g10/import.c:832 #, c-format msgid " new user IDs: %lu\n" msgstr " uusia käyttäjätunnuksia: %lu\n" -#: g10/import.c:833 +#: g10/import.c:834 #, c-format msgid " new subkeys: %lu\n" msgstr " uusia aliavaimia: %lu\n" -#: g10/import.c:835 +#: g10/import.c:836 #, c-format msgid " new signatures: %lu\n" msgstr " uusia allekirjoituksia: %lu\n" -#: g10/import.c:837 +#: g10/import.c:838 #, c-format msgid " new key revocations: %lu\n" msgstr " uusia avainten mitätöintejä: %lu\n" -#: g10/import.c:839 sm/import.c:136 +#: g10/import.c:840 sm/import.c:136 #, c-format msgid " secret keys read: %lu\n" msgstr " luettuja salaisia avaimia: %lu\n" -#: g10/import.c:841 sm/import.c:138 +#: g10/import.c:842 sm/import.c:138 #, c-format msgid " secret keys imported: %lu\n" msgstr " tuotuja salaisia avaimia: %lu\n" -#: g10/import.c:843 sm/import.c:140 +#: g10/import.c:844 sm/import.c:140 #, c-format msgid " secret keys unchanged: %lu\n" msgstr " muuttamattomia salaisia avaimia: %lu\n" -#: g10/import.c:845 sm/import.c:142 +#: g10/import.c:846 sm/import.c:142 #, c-format msgid " not imported: %lu\n" msgstr " ei tuotu: %lu\n" -#: g10/import.c:847 +#: g10/import.c:848 #, fuzzy, c-format msgid " signatures cleaned: %lu\n" msgstr " uusia allekirjoituksia: %lu\n" -#: g10/import.c:849 +#: g10/import.c:850 #, fuzzy, c-format msgid " user IDs cleaned: %lu\n" msgstr " luettuja salaisia avaimia: %lu\n" -#: g10/import.c:1276 +#: g10/import.c:1277 #, c-format msgid "" "WARNING: key %s contains preferences for unavailable\n" "algorithms on these user IDs:\n" msgstr "" -#: g10/import.c:1318 +#: g10/import.c:1319 #, c-format msgid " \"%s\": preference for cipher algorithm %s\n" msgstr "" # Ensimmäinen %s on binary, textmode tai unknown, ks. alla -#: g10/import.c:1333 +#: g10/import.c:1334 #, fuzzy, c-format msgid " \"%s\": preference for digest algorithm %s\n" msgstr "%sallekirjoitus, tiivistealgoritmi %s\n" -#: g10/import.c:1345 +#: g10/import.c:1346 #, c-format msgid " \"%s\": preference for compression algorithm %s\n" msgstr "" -#: g10/import.c:1358 +#: g10/import.c:1359 #, c-format msgid "it is strongly suggested that you update your preferences and\n" msgstr "" -#: g10/import.c:1360 +#: g10/import.c:1361 #, c-format msgid "re-distribute this key to avoid potential algorithm mismatch problems\n" msgstr "" -#: g10/import.c:1385 +#: g10/import.c:1386 #, c-format msgid "you can update your preferences with: gpg --edit-key %s updpref save\n" msgstr "" -#: g10/import.c:1899 g10/import.c:3013 +#: g10/import.c:1902 g10/import.c:3028 #, fuzzy, c-format msgid "key %s: no user ID\n" msgstr "avain %08lX: ei käyttäjätunnusta\n" -#: g10/import.c:1905 +#: g10/import.c:1908 #, fuzzy, c-format msgid "key %s: %s\n" msgstr "ohitetaan \"%s\": %s\n" -#: g10/import.c:1906 g10/import.c:2985 +#: g10/import.c:1909 g10/import.c:3000 msgid "rejected by import screener" msgstr "" -#: g10/import.c:1950 +#: g10/import.c:1953 #, fuzzy, c-format msgid "key %s: PKS subkey corruption repaired\n" msgstr "avain %08lX: HKP-aliavainvirhe korjattu\n" -#: g10/import.c:1971 +#: g10/import.c:1974 #, fuzzy, c-format msgid "key %s: accepted non self-signed user ID \"%s\"\n" msgstr "" "avain %08lX: käyttäjätunnus \"%s\" hyväksytty ilman omaa allekirjoitusta\n" -#: g10/import.c:1981 g10/import.c:2012 +#: g10/import.c:1985 g10/import.c:2016 #, fuzzy, c-format msgid "key %s: no valid user IDs\n" msgstr "avain %08lX: ei voimassaolevia käyttäjätunnuksia\n" -#: g10/import.c:1983 +#: g10/import.c:1987 #, c-format msgid "this may be caused by a missing self-signature\n" msgstr "tämän voi aiheuttaa puuttuva oma-allekirjoitus\n" -#: g10/import.c:2062 g10/import.c:3399 +#: g10/import.c:2066 g10/import.c:3415 #, fuzzy, c-format msgid "key %s: public key not found: %s\n" msgstr "avain %08lX: julkista avainta ei löydetty: %s\n" -#: g10/import.c:2068 +#: g10/import.c:2072 #, fuzzy, c-format msgid "key %s: new key - skipped\n" msgstr "avain %08lX: uusi avain - ohitetaan\n" -#: g10/import.c:2080 +#: g10/import.c:2084 #, c-format msgid "no writable keyring found: %s\n" msgstr "kirjoitettavissa olevaa avainrengasta ei löydy: %s\n" -#: g10/import.c:2112 g10/import.c:2214 g10/import.c:3476 +#: g10/import.c:2116 g10/import.c:2218 g10/import.c:3492 #, fuzzy, c-format #| msgid "error writing keyring `%s': %s\n" msgid "error writing keyring '%s': %s\n" msgstr "virhe kirjoitettaessa avainrenkaaseen \"%s\": %s\n" -#: g10/import.c:2135 +#: g10/import.c:2139 #, fuzzy, c-format msgid "key %s: public key \"%s\" imported\n" msgstr "avain %08lX: julkinen avain \"%s\" tuotu\n" -#: g10/import.c:2162 +#: g10/import.c:2166 #, fuzzy, c-format msgid "key %s: doesn't match our copy\n" msgstr "avain %08lX: ei vastaa omaa kopiotamme\n" -#: g10/import.c:2230 +#: g10/import.c:2234 #, fuzzy, c-format msgid "key %s: \"%s\" 1 new user ID\n" msgstr "avain %08lX: \"%s\" 1 uusi käyttäjätunnus\n" -#: g10/import.c:2233 +#: g10/import.c:2237 #, fuzzy, c-format msgid "key %s: \"%s\" %d new user IDs\n" msgstr "avain %08lX: \"%s\" %d uutta käyttäjätunnusta\n" -#: g10/import.c:2236 +#: g10/import.c:2240 #, fuzzy, c-format msgid "key %s: \"%s\" 1 new signature\n" msgstr "avain %08lX: \"%s\" 1 uusi allekirjoitus\n" -#: g10/import.c:2239 +#: g10/import.c:2243 #, fuzzy, c-format msgid "key %s: \"%s\" %d new signatures\n" msgstr "avain %08lX: \"%s\" %d uutta allekirjoitusta\n" -#: g10/import.c:2242 +#: g10/import.c:2246 #, fuzzy, c-format msgid "key %s: \"%s\" 1 new subkey\n" msgstr "avain %08lX: \"%s\" 1 uusi aliavain\n" -#: g10/import.c:2245 +#: g10/import.c:2249 #, fuzzy, c-format msgid "key %s: \"%s\" %d new subkeys\n" msgstr "avain %08lX: \"%s\" %d uutta aliavainta\n" -#: g10/import.c:2248 +#: g10/import.c:2252 #, fuzzy, c-format msgid "key %s: \"%s\" %d signature cleaned\n" msgstr "avain %08lX: \"%s\" %d uutta allekirjoitusta\n" -#: g10/import.c:2251 +#: g10/import.c:2255 #, fuzzy, c-format msgid "key %s: \"%s\" %d signatures cleaned\n" msgstr "avain %08lX: \"%s\" %d uutta allekirjoitusta\n" -#: g10/import.c:2254 +#: g10/import.c:2258 #, fuzzy, c-format msgid "key %s: \"%s\" %d user ID cleaned\n" msgstr "avain %08lX: \"%s\" %d uutta käyttäjätunnusta\n" -#: g10/import.c:2257 +#: g10/import.c:2261 #, fuzzy, c-format msgid "key %s: \"%s\" %d user IDs cleaned\n" msgstr "avain %08lX: \"%s\" %d uutta käyttäjätunnusta\n" -#: g10/import.c:2293 +#: g10/import.c:2297 #, fuzzy, c-format msgid "key %s: \"%s\" not changed\n" msgstr "avain %08lX: \"%s\" ei muutoksia\n" -#: g10/import.c:2652 g10/import.c:2847 +#: g10/import.c:2667 g10/import.c:2862 #, fuzzy, c-format msgid "key %s: secret key imported\n" msgstr "avain %08lX: salainen avain tuotu\n" -#: g10/import.c:2660 +#: g10/import.c:2675 #, fuzzy, c-format #| msgid "skipped: secret key already present\n" msgid "key %s: secret key already exists\n" msgstr "ohitetaan: salainen avain on jo paikalla\n" -#: g10/import.c:2668 +#: g10/import.c:2683 #, fuzzy, c-format msgid "key %s: error sending to agent: %s\n" msgstr "virhe lähettäessä kohteeseen \"%s\": %s\n" @@ -4003,197 +4009,197 @@ #. * Instead, user should be suggested to run 'gpg --card-status', #. * then, references to a card will be automatically created #. * again. -#: g10/import.c:2837 +#: g10/import.c:2852 #, c-format msgid "To migrate '%s', with each smartcard, run: %s\n" msgstr "" -#: g10/import.c:2984 +#: g10/import.c:2999 #, fuzzy, c-format msgid "secret key %s: %s\n" msgstr "salaista avainta \"%s\" ei löydy: %s\n" -#: g10/import.c:3005 g10/import.c:3044 +#: g10/import.c:3020 g10/import.c:3059 #, fuzzy, c-format msgid "importing secret keys not allowed\n" msgstr "kirjoitan salaisen avaimen kohteeseen \"%s\"\n" -#: g10/import.c:3032 +#: g10/import.c:3047 #, fuzzy, c-format msgid "key %s: secret key with invalid cipher %d - skipped\n" msgstr "avain %08lX: avaimella on epäkelpo salain %d - ohitetaan\n" -#: g10/import.c:3194 g10/pkclist.c:72 g10/revoke.c:776 +#: g10/import.c:3209 g10/pkclist.c:72 g10/revoke.c:776 msgid "No reason specified" msgstr "Ei eriteltyä syytä" -#: g10/import.c:3195 g10/pkclist.c:74 g10/revoke.c:778 +#: g10/import.c:3210 g10/pkclist.c:74 g10/revoke.c:778 msgid "Key is superseded" msgstr "Avain on uusittu" -#: g10/import.c:3196 g10/pkclist.c:76 g10/revoke.c:777 +#: g10/import.c:3211 g10/pkclist.c:76 g10/revoke.c:777 msgid "Key has been compromised" msgstr "Avain on murrettu" -#: g10/import.c:3197 g10/pkclist.c:78 g10/revoke.c:779 +#: g10/import.c:3212 g10/pkclist.c:78 g10/revoke.c:779 msgid "Key is no longer used" msgstr "Avain ei ole enää käytössä" -#: g10/import.c:3198 g10/pkclist.c:80 g10/revoke.c:780 +#: g10/import.c:3213 g10/pkclist.c:80 g10/revoke.c:780 msgid "User ID is no longer valid" msgstr "Käyttäjätunnus ei ole enää käytössä" -#: g10/import.c:3323 g10/keylist.c:1258 g10/pkclist.c:84 +#: g10/import.c:3338 g10/keylist.c:1258 g10/pkclist.c:84 #, c-format msgid "reason for revocation: " msgstr "mitätöinnin syy: " -#: g10/import.c:3342 g10/keylist.c:1277 g10/pkclist.c:100 +#: g10/import.c:3357 g10/keylist.c:1277 g10/pkclist.c:100 #, c-format msgid "revocation comment: " msgstr "mitätöintikommentti: " -#: g10/import.c:3392 +#: g10/import.c:3408 #, fuzzy, c-format msgid "key %s: no public key - can't apply revocation certificate\n" msgstr "" "avain %08lX: ei julkista avainta - mitätöintivarmennetta ei voida käyttää\n" -#: g10/import.c:3423 +#: g10/import.c:3439 #, fuzzy, c-format msgid "key %s: can't locate original keyblock: %s\n" msgstr "avain %08lX: alkuperäistä avainlohkoa ei löydy: %s\n" -#: g10/import.c:3430 +#: g10/import.c:3446 #, fuzzy, c-format msgid "key %s: can't read original keyblock: %s\n" msgstr "avain %08lX. alkuperäisen avainlohko lukeminen ei onnistu: %s\n" -#: g10/import.c:3450 +#: g10/import.c:3466 #, fuzzy, c-format msgid "key %s: invalid revocation certificate: %s - rejected\n" msgstr "avain %08lX: pätemätön mitätöintivarmenne: %s - hylätty\n" -#: g10/import.c:3485 +#: g10/import.c:3501 #, fuzzy, c-format msgid "key %s: \"%s\" revocation certificate imported\n" msgstr "avain %08lX: mitätöintivarmenne \"%s\" tuotu\n" -#: g10/import.c:3571 +#: g10/import.c:3587 #, fuzzy, c-format msgid "key %s: no user ID for signature\n" msgstr "avain %08lX: allekirjoitukselle ei ole käyttäjätunnusta\n" -#: g10/import.c:3588 +#: g10/import.c:3604 #, fuzzy, c-format msgid "key %s: unsupported public key algorithm on user ID \"%s\"\n" msgstr "avain %08lX: julkisen avaimen algoritmia \"%s\" ei tueta\n" -#: g10/import.c:3590 +#: g10/import.c:3606 #, fuzzy, c-format msgid "key %s: invalid self-signature on user ID \"%s\"\n" msgstr "avain %08lX: epäkelpo oma-allekirjoitus käyttäjätunnuksella \"%s\"\n" -#: g10/import.c:3607 g10/import.c:3635 g10/import.c:3691 +#: g10/import.c:3623 g10/import.c:3651 g10/import.c:3707 #, fuzzy, c-format msgid "key %s: unsupported public key algorithm\n" msgstr "avain %08lX: julkisen avaimen algoritmia ei tueta\n" -#: g10/import.c:3608 +#: g10/import.c:3624 #, fuzzy, c-format msgid "key %s: invalid direct key signature\n" msgstr "avain %08lX: lisättiin suora avainallekirjoitus\n" -#: g10/import.c:3622 +#: g10/import.c:3638 #, fuzzy, c-format msgid "key %s: no subkey for key binding\n" msgstr "avain %08lX: ei aliavainta avainten riippuvuuksiin\n" -#: g10/import.c:3637 +#: g10/import.c:3653 #, fuzzy, c-format msgid "key %s: invalid subkey binding\n" msgstr "avain %08lX: pätemätön aliavainriippuvuus\n" -#: g10/import.c:3656 +#: g10/import.c:3672 #, fuzzy, c-format msgid "key %s: removed multiple subkey binding\n" msgstr "avain %08lX: moninkertainen aliavainriippuvuus poistettu\n" -#: g10/import.c:3680 +#: g10/import.c:3696 #, fuzzy, c-format msgid "key %s: no subkey for key revocation\n" msgstr "avain %08lX: ei aliavainta avainten mitätöintiä varten\n" -#: g10/import.c:3693 +#: g10/import.c:3709 #, fuzzy, c-format msgid "key %s: invalid subkey revocation\n" msgstr "avain %08lX: epäkelpo aliavaimen mitätöinti\n" -#: g10/import.c:3708 +#: g10/import.c:3724 #, fuzzy, c-format msgid "key %s: removed multiple subkey revocation\n" msgstr "avain %08lX: useiden aliavainten mitätöinti poistettu\n" -#: g10/import.c:3752 +#: g10/import.c:3771 #, fuzzy, c-format msgid "key %s: skipped user ID \"%s\"\n" msgstr "avain %08lX: käyttäjätunnus ohitettu '" -#: g10/import.c:3779 +#: g10/import.c:3798 #, fuzzy, c-format msgid "key %s: skipped subkey\n" msgstr "avain %08lX: aliavain ohitettu\n" -#: g10/import.c:3810 +#: g10/import.c:3829 #, fuzzy, c-format msgid "key %s: non exportable signature (class 0x%02X) - skipped\n" msgstr "" "avain %08lX: allekirjoitusta ei voida viedä (luokka %02x) - ohitetaan\n" -#: g10/import.c:3821 +#: g10/import.c:3840 #, fuzzy, c-format msgid "key %s: revocation certificate at wrong place - skipped\n" msgstr "avain %08lX: mitätöintivarmenne väärässä paikassa - ohitetaan\n" -#: g10/import.c:3839 +#: g10/import.c:3868 #, fuzzy, c-format msgid "key %s: invalid revocation certificate: %s - skipped\n" msgstr "avain %08lX: epäkelpo mitätöintivarmenne: %s - ohitetaan\n" -#: g10/import.c:3853 +#: g10/import.c:3892 #, fuzzy, c-format msgid "key %s: subkey signature in wrong place - skipped\n" msgstr "avain %08lX: aliavaimen allekirjoitus väärässä paikassa - ohitetaan\n" -#: g10/import.c:3861 +#: g10/import.c:3900 #, fuzzy, c-format msgid "key %s: unexpected signature class (0x%02X) - skipped\n" msgstr "avain %08lX: odottamaton allekirjoitusluokka (0x%02X) - ohitetaan\n" -#: g10/import.c:4034 +#: g10/import.c:4073 #, fuzzy, c-format msgid "key %s: duplicated user ID detected - merged\n" msgstr "avain %08lX: käyttäjätunnuksen kaksoiskappale havaittu - liitetty\n" -#: g10/import.c:4099 +#: g10/import.c:4138 #, fuzzy, c-format msgid "WARNING: key %s may be revoked: fetching revocation key %s\n" msgstr "" "VAROITUS: avain %08lX saattaa olla mitätöity: haetaan mitätöintiavain %08lX\n" -#: g10/import.c:4115 +#: g10/import.c:4154 #, fuzzy, c-format msgid "WARNING: key %s may be revoked: revocation key %s not present.\n" msgstr "" "VAROITUS: avain %08lX saattaa olla mitätöity: mitätöintiavainta %08lX \n" "ei saatavilla.\n" -#: g10/import.c:4181 +#: g10/import.c:4220 #, fuzzy, c-format msgid "key %s: \"%s\" revocation certificate added\n" msgstr "avain %08lX: \"%s\"-mitätöintivarmenne lisätty\n" -#: g10/import.c:4219 +#: g10/import.c:4258 #, fuzzy, c-format msgid "key %s: direct key signature added\n" msgstr "avain %08lX: lisättiin suora avainallekirjoitus\n" @@ -5129,7 +5135,7 @@ msgid "You may not add a photo ID to a PGP2-style key.\n" msgstr "Et voi lisätä valokuvaa PGP2-muodon avaimeen.\n" -#: g10/keyedit.c:4293 g10/keygen.c:2899 +#: g10/keyedit.c:4293 g10/keygen.c:2953 msgid "Such a user ID already exists on this key!\n" msgstr "" @@ -5423,83 +5429,83 @@ "Näytetään valokuva %s, kokoa %ld avaimelle 0x%08lX\n" "(käyttäjätunnus %d)\n" -#: g10/keygen.c:169 +#: g10/keygen.c:174 #, fuzzy, c-format msgid "invalid value for option '%s'\n" msgstr "virheelliset tuontivalitsimet\n" -#: g10/keygen.c:322 +#: g10/keygen.c:331 #, fuzzy, c-format msgid "preference '%s' duplicated\n" msgstr "valinta %c%lu on kopio\n" -#: g10/keygen.c:329 +#: g10/keygen.c:338 #, fuzzy, c-format msgid "too many cipher preferences\n" msgstr "liian monta \"%c\" valintaa\n" -#: g10/keygen.c:331 +#: g10/keygen.c:340 #, fuzzy, c-format msgid "too many digest preferences\n" msgstr "liian monta \"%c\" valintaa\n" -#: g10/keygen.c:333 +#: g10/keygen.c:342 #, fuzzy, c-format msgid "too many compression preferences\n" msgstr "liian monta \"%c\" valintaa\n" -#: g10/keygen.c:493 +#: g10/keygen.c:502 #, fuzzy, c-format msgid "invalid item '%s' in preference string\n" msgstr "Valinnassa on luvaton merkki\n" -#: g10/keygen.c:972 +#: g10/keygen.c:1020 #, c-format msgid "writing direct signature\n" msgstr "kirjoitetaan suora allekirjoitus\n" -#: g10/keygen.c:1018 +#: g10/keygen.c:1066 #, c-format msgid "writing self signature\n" msgstr "kirjoitetaan oma-allekirjoitus\n" -#: g10/keygen.c:1075 +#: g10/keygen.c:1123 #, c-format msgid "writing key binding signature\n" msgstr "kirjoitetaan avaimen varmentava allekirjoitus\n" -#: g10/keygen.c:1440 g10/keygen.c:1445 g10/keygen.c:1497 g10/keygen.c:1502 -#: g10/keygen.c:1656 g10/keygen.c:1661 +#: g10/keygen.c:1494 g10/keygen.c:1499 g10/keygen.c:1551 g10/keygen.c:1556 +#: g10/keygen.c:1710 g10/keygen.c:1715 #, c-format msgid "keysize invalid; using %u bits\n" msgstr "avaimen koko on virheellinen, käytetään %u bittiä\n" -#: g10/keygen.c:1451 g10/keygen.c:1508 g10/keygen.c:1516 g10/keygen.c:1667 +#: g10/keygen.c:1505 g10/keygen.c:1562 g10/keygen.c:1570 g10/keygen.c:1721 #, c-format msgid "keysize rounded up to %u bits\n" msgstr "avaimen koko on pyöristetty %u bittiin\n" -#: g10/keygen.c:1542 +#: g10/keygen.c:1596 #, c-format msgid "" "WARNING: some OpenPGP programs can't handle a DSA key with this digest size\n" msgstr "" -#: g10/keygen.c:1723 +#: g10/keygen.c:1777 #, fuzzy msgid "Sign" msgstr "sign" -#: g10/keygen.c:1726 +#: g10/keygen.c:1780 msgid "Certify" msgstr "" -#: g10/keygen.c:1729 +#: g10/keygen.c:1783 #, fuzzy msgid "Encrypt" msgstr "salaa tiedot" -#: g10/keygen.c:1732 +#: g10/keygen.c:1786 msgid "Authenticate" msgstr "" @@ -5513,169 +5519,169 @@ #. * a = Toggle authentication capability #. * q = Finish #. -#: g10/keygen.c:1753 +#: g10/keygen.c:1807 msgid "SsEeAaQq" msgstr "" -#: g10/keygen.c:1784 +#: g10/keygen.c:1838 #, c-format msgid "Possible actions for a %s key: " msgstr "" -#: g10/keygen.c:1790 +#: g10/keygen.c:1844 msgid "Current allowed actions: " msgstr "" -#: g10/keygen.c:1795 +#: g10/keygen.c:1849 #, c-format msgid " (%c) Toggle the sign capability\n" msgstr "" -#: g10/keygen.c:1798 +#: g10/keygen.c:1852 #, fuzzy, c-format msgid " (%c) Toggle the encrypt capability\n" msgstr " (%d) ElGamal (vain salaus)\n" -#: g10/keygen.c:1801 +#: g10/keygen.c:1855 #, c-format msgid " (%c) Toggle the authenticate capability\n" msgstr "" -#: g10/keygen.c:1804 +#: g10/keygen.c:1858 #, c-format msgid " (%c) Finished\n" msgstr "" -#: g10/keygen.c:1930 +#: g10/keygen.c:1984 #, fuzzy, c-format msgid " (%d) RSA and RSA (default)\n" msgstr " (%d) DSA ja ElGamal (oletus)\n" -#: g10/keygen.c:1934 +#: g10/keygen.c:1988 #, fuzzy, c-format msgid " (%d) DSA and Elgamal\n" msgstr " (%d) DSA ja ElGamal (oletus)\n" -#: g10/keygen.c:1937 +#: g10/keygen.c:1991 #, c-format msgid " (%d) DSA (sign only)\n" msgstr " (%d) DSA (vain allekirjoitus)\n" -#: g10/keygen.c:1939 +#: g10/keygen.c:1993 #, c-format msgid " (%d) RSA (sign only)\n" msgstr " (%d) RSA (vain allekirjoitus)\n" -#: g10/keygen.c:1945 +#: g10/keygen.c:1999 #, fuzzy, c-format msgid " (%d) Elgamal (encrypt only)\n" msgstr " (%d) ElGamal (vain salaus)\n" -#: g10/keygen.c:1947 +#: g10/keygen.c:2001 #, c-format msgid " (%d) RSA (encrypt only)\n" msgstr " (%d) RSA (vain salaus)\n" -#: g10/keygen.c:1953 +#: g10/keygen.c:2007 #, fuzzy, c-format msgid " (%d) DSA (set your own capabilities)\n" msgstr " (%d) RSA (vain salaus)\n" -#: g10/keygen.c:1955 +#: g10/keygen.c:2009 #, fuzzy, c-format msgid " (%d) RSA (set your own capabilities)\n" msgstr " (%d) RSA (vain salaus)\n" -#: g10/keygen.c:1961 +#: g10/keygen.c:2015 #, fuzzy, c-format msgid " (%d) ECC and ECC\n" msgstr " (%d) DSA ja ElGamal (oletus)\n" -#: g10/keygen.c:1963 +#: g10/keygen.c:2017 #, fuzzy, c-format #| msgid " (%d) DSA (sign only)\n" msgid " (%d) ECC (sign only)\n" msgstr " (%d) DSA (vain allekirjoitus)\n" -#: g10/keygen.c:1965 +#: g10/keygen.c:2019 #, fuzzy, c-format msgid " (%d) ECC (set your own capabilities)\n" msgstr " (%d) RSA (vain salaus)\n" -#: g10/keygen.c:1967 +#: g10/keygen.c:2021 #, fuzzy, c-format #| msgid " (%d) RSA (encrypt only)\n" msgid " (%d) ECC (encrypt only)\n" msgstr " (%d) RSA (vain salaus)\n" -#: g10/keygen.c:1971 +#: g10/keygen.c:2025 #, fuzzy, c-format msgid " (%d) Existing key\n" msgstr " (%d) RSA (vain salaus)\n" -#: g10/keygen.c:1973 +#: g10/keygen.c:2027 #, fuzzy, c-format msgid " (%d) Existing key from card\n" msgstr " (%d) RSA (vain salaus)\n" -#: g10/keygen.c:2069 sm/certreqgen-ui.c:202 +#: g10/keygen.c:2123 sm/certreqgen-ui.c:202 #, fuzzy msgid "Enter the keygrip: " msgstr "Allekirjoitusnotaatio: " -#: g10/keygen.c:2082 sm/certreqgen-ui.c:210 +#: g10/keygen.c:2136 sm/certreqgen-ui.c:210 msgid "Not a valid keygrip (expecting 40 hex digits)\n" msgstr "" -#: g10/keygen.c:2084 sm/certreqgen-ui.c:212 +#: g10/keygen.c:2138 sm/certreqgen-ui.c:212 #, fuzzy msgid "No key with this keygrip\n" msgstr "Indeksillä %d ei löydy käyttäjätunnusta\n" -#: g10/keygen.c:2103 g10/keygen.c:2113 g10/keygen.c:3216 g10/keygen.c:3227 +#: g10/keygen.c:2157 g10/keygen.c:2167 g10/keygen.c:3270 g10/keygen.c:3281 #: sm/certreqgen-ui.c:230 sm/certreqgen-ui.c:239 #, fuzzy, c-format msgid "error reading the card: %s\n" msgstr "%s: virhe luettaessa vapaata tietuetta: %s\n" -#: g10/keygen.c:2107 g10/keygen.c:3220 sm/certreqgen-ui.c:233 +#: g10/keygen.c:2161 g10/keygen.c:3274 sm/certreqgen-ui.c:233 #, fuzzy, c-format msgid "Serial number of the card: %s\n" msgstr "virhe luotaessa salasanaa: %s\n" -#: g10/keygen.c:2120 sm/certreqgen-ui.c:245 +#: g10/keygen.c:2174 sm/certreqgen-ui.c:245 #, fuzzy msgid "Available keys:\n" msgstr "poista avain käytöstä" -#: g10/keygen.c:2297 g10/keygen.c:2311 +#: g10/keygen.c:2351 g10/keygen.c:2365 #, fuzzy, c-format #| msgid "rounded up to %u bits\n" msgid "rounded to %u bits\n" msgstr "pyöristetty %u bittiin\n" -#: g10/keygen.c:2352 +#: g10/keygen.c:2406 #, c-format msgid "%s keys may be between %u and %u bits long.\n" msgstr "" -#: g10/keygen.c:2360 +#: g10/keygen.c:2414 #, fuzzy, c-format msgid "What keysize do you want for the subkey? (%u) " msgstr "Minkä kokoisen avaimen haluat? (1024) " -#: g10/keygen.c:2377 sm/certreqgen-ui.c:189 +#: g10/keygen.c:2431 sm/certreqgen-ui.c:189 #, c-format msgid "Requested keysize is %u bits\n" msgstr "Halutun avaimen koko on %u bittiä\n" -#: g10/keygen.c:2423 +#: g10/keygen.c:2477 #, fuzzy #| msgid "Please select what kind of key you want:\n" msgid "Please select which elliptic curve you want:\n" msgstr "Valitse millaisen avaimen haluat:\n" -#: g10/keygen.c:2611 +#: g10/keygen.c:2665 msgid "" "Please specify how long the key should be valid.\n" " 0 = key does not expire\n" @@ -5691,7 +5697,7 @@ " m = Avain vanhenee n kuukauden kuluttua\n" " y = Avain vanhenee n vuoden kuluttua\n" -#: g10/keygen.c:2622 +#: g10/keygen.c:2676 msgid "" "Please specify how long the signature should be valid.\n" " 0 = signature does not expire\n" @@ -5707,40 +5713,40 @@ " m = Allekirjoitus vanhenee n kuukauden kuluttua\n" " y = Allekirjoitus vanhenee n vuoden kuluttua\n" -#: g10/keygen.c:2645 +#: g10/keygen.c:2699 msgid "Key is valid for? (0) " msgstr "Avain on voimassa? (0) " -#: g10/keygen.c:2650 +#: g10/keygen.c:2704 #, fuzzy, c-format msgid "Signature is valid for? (%s) " msgstr "Allekirjoitus on voimassa? (0) " -#: g10/keygen.c:2663 g10/keygen.c:2688 +#: g10/keygen.c:2717 g10/keygen.c:2742 msgid "invalid value\n" msgstr "arvo ei kelpaa\n" -#: g10/keygen.c:2670 +#: g10/keygen.c:2724 #, fuzzy msgid "Key does not expire at all\n" msgstr "%s ei vanhene koskaan\n" -#: g10/keygen.c:2671 +#: g10/keygen.c:2725 #, fuzzy msgid "Signature does not expire at all\n" msgstr "%s ei vanhene koskaan\n" -#: g10/keygen.c:2676 +#: g10/keygen.c:2730 #, fuzzy, c-format msgid "Key expires at %s\n" msgstr "%s vanhenee %s\n" -#: g10/keygen.c:2677 +#: g10/keygen.c:2731 #, fuzzy, c-format msgid "Signature expires at %s\n" msgstr "Allekirjoitus vanhenee %s\n" -#: g10/keygen.c:2681 +#: g10/keygen.c:2735 msgid "" "Your system can't display dates beyond 2038.\n" "However, it will be correctly handled up to 2106.\n" @@ -5748,12 +5754,12 @@ "Järjestelmäsi ei osaa näyttää päiväyksiä kuin vuoteen 2038.\n" "Se kuitenkin käsittelee päiväykset oikein vuoteen 2106.\n" -#: g10/keygen.c:2694 +#: g10/keygen.c:2748 #, fuzzy msgid "Is this correct? (y/N) " msgstr "Onko tämä oikein (k/e) " -#: g10/keygen.c:2762 +#: g10/keygen.c:2816 msgid "" "\n" "GnuPG needs to construct a user ID to identify your key.\n" @@ -5764,7 +5770,7 @@ #. but you should keep your existing translation. In case #. the new string is not translated this old string will #. be used. -#: g10/keygen.c:2777 +#: g10/keygen.c:2831 #, fuzzy msgid "" "\n" @@ -5782,50 +5788,50 @@ " \"Matti Meikäläinen (nuorempi) \"\n" "\n" -#: g10/keygen.c:2796 +#: g10/keygen.c:2850 msgid "Real name: " msgstr "Oikea nimi: " -#: g10/keygen.c:2805 +#: g10/keygen.c:2859 msgid "Invalid character in name\n" msgstr "Nimessä on epäkelpo merkki\n" -#: g10/keygen.c:2806 +#: g10/keygen.c:2860 #, c-format msgid "The characters '%s' and '%s' may not appear in name\n" msgstr "" -#: g10/keygen.c:2810 +#: g10/keygen.c:2864 msgid "Name may not start with a digit\n" msgstr "Nimi ei voi alkaa numerolla\n" -#: g10/keygen.c:2813 +#: g10/keygen.c:2867 msgid "Name must be at least 5 characters long\n" msgstr "Nimen täytyy olla vähintään 5 merkkiä pitkä\n" -#: g10/keygen.c:2823 +#: g10/keygen.c:2877 msgid "Email address: " msgstr "Sähköpostiosoite: " -#: g10/keygen.c:2829 +#: g10/keygen.c:2883 msgid "Not a valid email address\n" msgstr "Sähköpostiosoite ei kelpaa\n" -#: g10/keygen.c:2838 +#: g10/keygen.c:2892 msgid "Comment: " msgstr "Huomautus: " -#: g10/keygen.c:2844 +#: g10/keygen.c:2898 msgid "Invalid character in comment\n" msgstr "Huomautuksessa on epäkelpo merkki\n" -#: g10/keygen.c:2880 +#: g10/keygen.c:2934 #, fuzzy, c-format #| msgid "You are using the `%s' character set.\n" msgid "You are using the '%s' character set.\n" msgstr "Käytät merkistöä \"%s\".\n" -#: g10/keygen.c:2886 +#: g10/keygen.c:2940 #, c-format msgid "" "You selected this USER-ID:\n" @@ -5836,7 +5842,7 @@ " \"%s\"\n" "\n" -#: g10/keygen.c:2891 +#: g10/keygen.c:2945 msgid "Please don't put the email address into the real name or the comment\n" msgstr "Älä syötä sähköpostiosoitetta nimen tai huomautuksen paikalle\n" @@ -5851,35 +5857,35 @@ #. o = Okay (ready, continue) #. q = Quit #. -#: g10/keygen.c:2916 +#: g10/keygen.c:2970 msgid "NnCcEeOoQq" msgstr "NnHhSsOoLl" -#: g10/keygen.c:2926 +#: g10/keygen.c:2980 msgid "Change (N)ame, (C)omment, (E)mail or (Q)uit? " msgstr "Muuta (N)imi, (H)uomautus, (S)ähköposti vai (L)opeta?" -#: g10/keygen.c:2927 +#: g10/keygen.c:2981 msgid "Change (N)ame, (C)omment, (E)mail or (O)kay/(Q)uit? " msgstr "Muuta (N)imi, (H)uomautus, (S)ähköposti vai (O)k/(L)opeta?" -#: g10/keygen.c:2932 +#: g10/keygen.c:2986 #, fuzzy #| msgid "Change (N)ame, (C)omment, (E)mail or (Q)uit? " msgid "Change (N)ame, (E)mail, or (Q)uit? " msgstr "Muuta (N)imi, (H)uomautus, (S)ähköposti vai (L)opeta?" -#: g10/keygen.c:2933 +#: g10/keygen.c:2987 #, fuzzy #| msgid "Change (N)ame, (C)omment, (E)mail or (O)kay/(Q)uit? " msgid "Change (N)ame, (E)mail, or (O)kay/(Q)uit? " msgstr "Muuta (N)imi, (H)uomautus, (S)ähköposti vai (O)k/(L)opeta?" -#: g10/keygen.c:2952 +#: g10/keygen.c:3006 msgid "Please correct the error first\n" msgstr "Ole hyvä ja korjaa ensin virhe\n" -#: g10/keygen.c:2998 +#: g10/keygen.c:3052 msgid "" "We need to generate a lot of random bytes. It is a good idea to perform\n" "some other action (type on the keyboard, move the mouse, utilize the\n" @@ -5891,13 +5897,13 @@ "alkulukujen luomisen aikana, tämä antaa satunnaislukugeneraattorille\n" "paremmat mahdollisuudet kerätä riittävästi entropiaa.\n" -#: g10/keygen.c:4278 g10/keygen.c:4349 g10/keygen.c:4367 g10/keygen.c:4395 -#: g10/keygen.c:4739 g10/keygen.c:5239 g10/keygen.c:5534 g10/keygen.c:5639 +#: g10/keygen.c:4332 g10/keygen.c:4403 g10/keygen.c:4421 g10/keygen.c:4449 +#: g10/keygen.c:4793 g10/keygen.c:5293 g10/keygen.c:5588 g10/keygen.c:5693 #, c-format msgid "Key generation failed: %s\n" msgstr "Avaimen luonti epäonnistui: %s\n" -#: g10/keygen.c:4287 +#: g10/keygen.c:4341 #, c-format msgid "" "About to create a key for:\n" @@ -5905,67 +5911,67 @@ "\n" msgstr "" -#: g10/keygen.c:4289 +#: g10/keygen.c:4343 msgid "Continue? (Y/n) " msgstr "" -#: g10/keygen.c:4310 +#: g10/keygen.c:4364 #, fuzzy, c-format msgid "A key for \"%s\" already exists\n" msgstr "\"%s\" on jo pakattu\n" -#: g10/keygen.c:4315 +#: g10/keygen.c:4369 #, fuzzy msgid "Create anyway? (y/N) " msgstr "Haluatko käyttää tätä avainta kaikesta huolimatta? " -#: g10/keygen.c:4321 +#: g10/keygen.c:4375 #, fuzzy, c-format msgid "creating anyway\n" msgstr "luo uusi avainpari" -#: g10/keygen.c:4722 +#: g10/keygen.c:4776 #, c-format msgid "Note: Use \"%s %s\" for a full featured key generation dialog.\n" msgstr "" -#: g10/keygen.c:4771 +#: g10/keygen.c:4825 #, c-format msgid "Key generation canceled.\n" msgstr "Avaimen luonti keskeytetty.\n" -#: g10/keygen.c:4831 +#: g10/keygen.c:4885 #, fuzzy, c-format msgid "can't create backup file '%s': %s\n" msgstr "tiedostoa \"%s\" ei voi luoda: %s\n" -#: g10/keygen.c:4851 +#: g10/keygen.c:4905 #, fuzzy, c-format msgid "Note: backup of card key saved to '%s'\n" msgstr "HUOM: salainen avain %08lX vanheni %s\n" -#: g10/keygen.c:5010 g10/keygen.c:5172 +#: g10/keygen.c:5064 g10/keygen.c:5226 #, fuzzy, c-format #| msgid "writing public key to `%s'\n" msgid "writing public key to '%s'\n" msgstr "kirjoitan julkisen avaimen kohteeseen \"%s\"\n" -#: g10/keygen.c:5166 +#: g10/keygen.c:5220 #, c-format msgid "no writable public keyring found: %s\n" msgstr "kirjoitettavissa olevaa julkista avainrengasta ei löydy: %s\n" -#: g10/keygen.c:5180 +#: g10/keygen.c:5234 #, fuzzy, c-format #| msgid "error writing public keyring `%s': %s\n" msgid "error writing public keyring '%s': %s\n" msgstr "virhe kirjoitettaessa julkiseen avainrenkaaseen \"%s\": %s\n" -#: g10/keygen.c:5210 +#: g10/keygen.c:5264 msgid "public and secret key created and signed.\n" msgstr "julkinen ja salainen avain on luotu ja allekirjoitettu.\n" -#: g10/keygen.c:5226 +#: g10/keygen.c:5280 #, fuzzy msgid "" "Note that this key cannot be used for encryption. You may want to use\n" @@ -5974,7 +5980,7 @@ "Huomaa, että tätä avainta ei voida käyttää salaamiseen. Käytä komentoa\n" "\"--edit-key\" luodaksesi toissijaisen avaimen salaustarkoitukseen.\n" -#: g10/keygen.c:5401 g10/keygen.c:5590 +#: g10/keygen.c:5455 g10/keygen.c:5644 #, c-format msgid "" "key has been created %lu second in future (time warp or clock problem)\n" @@ -5982,7 +5988,7 @@ "avain on luotu %lu sekunti tulevaisuudessa (on tapahtunut aikahyppy tai\n" "kellon kanssa on ongelmia)\n" -#: g10/keygen.c:5403 g10/keygen.c:5592 +#: g10/keygen.c:5457 g10/keygen.c:5646 #, c-format msgid "" "key has been created %lu seconds in future (time warp or clock problem)\n" @@ -5990,23 +5996,23 @@ "avain on luotu %lu sekuntia tulevaisuudessa (on tapahtunut aikahyppy tai\n" "kellon kanssa on ongelmia)\n" -#: g10/keygen.c:5414 g10/keygen.c:5603 +#: g10/keygen.c:5468 g10/keygen.c:5657 #, fuzzy, c-format #| msgid "NOTE: creating subkeys for v3 keys is not OpenPGP compliant\n" msgid "Note: creating subkeys for v3 keys is not OpenPGP compliant\n" msgstr "HUOM: v3-aliavainten luonti ei ole OpenPGP:n mukaista\n" -#: g10/keygen.c:5426 g10/keygen.c:5428 +#: g10/keygen.c:5480 g10/keygen.c:5482 #, c-format msgid "Secret parts of primary key are not available.\n" msgstr "Ensisijaisen avaimen salaiset osat eivät ole saatavilla.\n" -#: g10/keygen.c:5435 g10/keygen.c:5437 +#: g10/keygen.c:5489 g10/keygen.c:5491 #, fuzzy, c-format msgid "Secret parts of primary key are stored on-card.\n" msgstr "Ensisijaisen avaimen salaiset osat eivät ole saatavilla.\n" -#: g10/keygen.c:5456 g10/keygen.c:5617 +#: g10/keygen.c:5510 g10/keygen.c:5671 #, fuzzy msgid "Really create? (y/N) " msgstr "Haluatko varmasti luoda? " @@ -7126,31 +7132,31 @@ msgstr "" "dataa ei ole tallennettu, käytä valitsinta \"--output\" tallentaaksesi\n" -#: g10/plaintext.c:615 +#: g10/plaintext.c:620 msgid "Detached signature.\n" msgstr "Erillinen allekirjoitus.\n" -#: g10/plaintext.c:623 +#: g10/plaintext.c:628 msgid "Please enter name of data file: " msgstr "Anna datatiedoston nimi: " -#: g10/plaintext.c:660 +#: g10/plaintext.c:665 #, c-format msgid "reading stdin ...\n" msgstr "luetaan vakiosyötettä ...\n" -#: g10/plaintext.c:705 +#: g10/plaintext.c:710 #, c-format msgid "no signed data\n" msgstr "ei allekirjoitettua dataa\n" -#: g10/plaintext.c:723 +#: g10/plaintext.c:728 #, fuzzy, c-format #| msgid "can't open signed data `%s'\n" msgid "can't open signed data '%s'\n" msgstr "allekirjoitetun datan \"%s\" avaaminen ei onnistu\n" -#: g10/plaintext.c:758 +#: g10/plaintext.c:763 #, fuzzy, c-format msgid "can't open signed data fd=%d: %s\n" msgstr "allekirjoitetun datan \"%s\" avaaminen ei onnistu\n" @@ -8168,7 +8174,7 @@ msgid "no need for a trustdb check\n" msgstr "trustdb:n tarkistusta ei tarvita\n" -#: g10/trustdb.c:631 g10/trustdb.c:2326 +#: g10/trustdb.c:631 g10/trustdb.c:2338 #, c-format msgid "next trustdb check due at %s\n" msgstr "seuraava trustdb tarkistus %s\n" @@ -8198,14 +8204,14 @@ msgid "checking the trustdb\n" msgstr "tarkistetaan trustdb:tä\n" -#: g10/trustdb.c:2047 +#: g10/trustdb.c:2059 #, fuzzy, c-format msgid "%d key processed" msgid_plural "%d keys processed" msgstr[0] "tähän mennessä käsitelty %lu avainta\n" msgstr[1] "tähän mennessä käsitelty %lu avainta\n" -#: g10/trustdb.c:2050 +#: g10/trustdb.c:2062 #, fuzzy, c-format #| msgid "%d keys processed (%d validity counts cleared)\n" msgid " (%d validity count cleared)\n" @@ -8213,23 +8219,23 @@ msgstr[0] "%d avainta käsitelty (%d kelpoisuuslaskuria tyhjätty)\n" msgstr[1] "%d avainta käsitelty (%d kelpoisuuslaskuria tyhjätty)\n" -#: g10/trustdb.c:2120 +#: g10/trustdb.c:2132 #, c-format msgid "no ultimately trusted keys found\n" msgstr "ehdottomasti luotettavia avaimia ei löytynyt\n" -#: g10/trustdb.c:2134 +#: g10/trustdb.c:2146 #, fuzzy, c-format msgid "public key of ultimately trusted key %s not found\n" msgstr "ehdottomasti luotettu julkinen avain %08lX ei löytynyt\n" -#: g10/trustdb.c:2252 +#: g10/trustdb.c:2264 #, c-format msgid "" "depth: %d valid: %3d signed: %3d trust: %d-, %dq, %dn, %dm, %df, %du\n" msgstr "" -#: g10/trustdb.c:2333 +#: g10/trustdb.c:2345 #, fuzzy, c-format msgid "unable to update trustdb version record: write failed: %s\n" msgstr "luottamustietue %lu, tyyppi %d: kirjoittaminen epäonnistui: %s\n" @@ -8347,88 +8353,94 @@ #. TRANSLATORS: Put a \x1f right before a colon. This can be #. * used by pinentry to nicely align the names and values. Keep #. * the %s at the start and end of the string. -#: scd/app-p15.c:5116 scd/app-openpgp.c:2154 +#: scd/app-p15.c:5145 scd/app-nks.c:1541 scd/app-openpgp.c:2154 #, c-format msgid "%sNumber: %s%%0AHolder: %s%s" msgstr "" #. TRANSLATORS: This is the number of remaining attempts to #. * enter a PIN. Use %%0A (double-percent,0A) for a linefeed. -#: scd/app-p15.c:5135 scd/app-openpgp.c:2170 +#: scd/app-p15.c:5164 scd/app-nks.c:1560 scd/app-openpgp.c:2170 #, c-format msgid "Remaining attempts: %d" msgstr "" -#: scd/app-p15.c:5214 scd/app-nks.c:1113 +#: scd/app-p15.c:5243 scd/app-nks.c:2112 msgid "||Please enter the PIN for the key to create qualified signatures." msgstr "" #. TRANSLATORS: Do not translate the "|A|" prefix but keep it at #. the start of the string. Use %0A (single percent) for a linefeed. -#: scd/app-p15.c:5217 scd/app-openpgp.c:2464 +#: scd/app-p15.c:5246 scd/app-openpgp.c:2465 #, fuzzy msgid "|A|Please enter the Admin PIN" msgstr "muuta salasanaa" -#: scd/app-p15.c:5219 scd/app-nks.c:1103 +#: scd/app-p15.c:5248 scd/app-nks.c:2102 #, fuzzy msgid "|P|Please enter the PIN Unblocking Code (PUK) for the standard keys." msgstr "Valitse mitätöinnin syy:\n" -#: scd/app-p15.c:5222 scd/app-nks.c:1095 +#: scd/app-p15.c:5251 scd/app-nks.c:2093 #, fuzzy msgid "||Please enter the PIN for the standard keys." msgstr "muuta salasanaa" -#: scd/app-nks.c:709 scd/app-openpgp.c:3666 +#: scd/app-nks.c:1479 scd/app-openpgp.c:3675 #, c-format msgid "RSA modulus missing or not of size %d bits\n" msgstr "" -#: scd/app-nks.c:717 scd/app-openpgp.c:3678 +#: scd/app-nks.c:1487 scd/app-openpgp.c:3687 #, c-format msgid "RSA public exponent missing or larger than %d bits\n" msgstr "" -#: scd/app-nks.c:797 scd/app-openpgp.c:2327 scd/app-openpgp.c:2346 -#: scd/app-openpgp.c:2513 scd/app-openpgp.c:2531 scd/app-openpgp.c:2829 -#: scd/app-openpgp.c:2876 scd/app-openpgp.c:2991 scd/app-dinsig.c:302 +#: scd/app-nks.c:1660 +#, fuzzy +#| msgid "Note: This key has been disabled.\n" +msgid "Note: PIN has not yet been enabled." +msgstr "Huom: Tämä avain on poistettu käytöstä\n" + +#: scd/app-nks.c:1671 scd/app-openpgp.c:2327 scd/app-openpgp.c:2346 +#: scd/app-openpgp.c:2515 scd/app-openpgp.c:2533 scd/app-openpgp.c:2832 +#: scd/app-openpgp.c:2879 scd/app-openpgp.c:3000 scd/app-dinsig.c:303 #, c-format msgid "PIN callback returned error: %s\n" msgstr "" -#: scd/app-nks.c:830 +#: scd/app-nks.c:1707 #, c-format msgid "the NullPIN has not yet been changed\n" msgstr "" -#: scd/app-nks.c:1094 +#: scd/app-nks.c:2092 #, fuzzy msgid "|N|Please enter a new PIN for the standard keys." msgstr "muuta salasanaa" -#: scd/app-nks.c:1101 +#: scd/app-nks.c:2100 #, fuzzy msgid "|NP|Please enter a new PIN Unblocking Code (PUK) for the standard keys." msgstr "Valitse mitätöinnin syy:\n" -#: scd/app-nks.c:1111 +#: scd/app-nks.c:2110 msgid "|N|Please enter a new PIN for the key to create qualified signatures." msgstr "" -#: scd/app-nks.c:1121 +#: scd/app-nks.c:2120 msgid "" "|NP|Please enter a new PIN Unblocking Code (PUK) for the key to create " "qualified signatures." msgstr "" -#: scd/app-nks.c:1123 +#: scd/app-nks.c:2122 msgid "" "|P|Please enter the PIN Unblocking Code (PUK) for the key to create " "qualified signatures." msgstr "" -#: scd/app-nks.c:1230 scd/app-openpgp.c:2910 scd/app-dinsig.c:532 +#: scd/app-nks.c:2295 scd/app-openpgp.c:2913 scd/app-dinsig.c:535 #, fuzzy, c-format msgid "error getting new PIN: %s\n" msgstr "virhe luotaessa salasanaa: %s\n" @@ -8443,7 +8455,7 @@ msgid "failed to store the creation date: %s\n" msgstr "avainrenkaan välimuistin uudelleenluominen epäonnistui: %s\n" -#: scd/app-openpgp.c:1271 scd/app-openpgp.c:2857 scd/app-openpgp.c:5041 +#: scd/app-openpgp.c:1271 scd/app-openpgp.c:2860 scd/app-openpgp.c:5051 #, c-format msgid "error retrieving CHV status from card\n" msgstr "" @@ -8464,7 +8476,7 @@ msgid "response does not contain the EC public key\n" msgstr "poista avaimet julkisten avainten renkaasta" -#: scd/app-openpgp.c:1664 scd/app-openpgp.c:4286 +#: scd/app-openpgp.c:1664 scd/app-openpgp.c:4295 #, c-format msgid "response does not contain the public key data\n" msgstr "" @@ -8497,23 +8509,23 @@ msgid "||Please unlock the card" msgstr "muuta salasanaa" -#: scd/app-openpgp.c:2353 scd/app-openpgp.c:2538 scd/app-openpgp.c:2836 +#: scd/app-openpgp.c:2353 scd/app-openpgp.c:2540 scd/app-openpgp.c:2839 #, c-format msgid "PIN for CHV%d is too short; minimum length is %d\n" msgstr "" -#: scd/app-openpgp.c:2367 scd/app-openpgp.c:2414 scd/app-openpgp.c:2552 -#: scd/app-openpgp.c:4644 +#: scd/app-openpgp.c:2368 scd/app-openpgp.c:2415 scd/app-openpgp.c:2554 +#: scd/app-openpgp.c:4654 #, fuzzy, c-format msgid "verify CHV%d failed: %s\n" msgstr "avainpalvelimelle lähettäminen epäonnistui: %s\n" -#: scd/app-openpgp.c:2450 scd/app-openpgp.c:5050 +#: scd/app-openpgp.c:2451 scd/app-openpgp.c:5060 #, c-format msgid "card is permanently locked!\n" msgstr "" -#: scd/app-openpgp.c:2454 +#: scd/app-openpgp.c:2455 #, c-format msgid "%d Admin PIN attempt remaining before card is permanently locked\n" msgid_plural "" @@ -8521,22 +8533,22 @@ msgstr[0] "" msgstr[1] "" -#: scd/app-openpgp.c:2485 +#: scd/app-openpgp.c:2486 #, c-format msgid "access to admin commands is not configured\n" msgstr "" -#: scd/app-openpgp.c:2823 +#: scd/app-openpgp.c:2826 #, fuzzy msgid "||Please enter the PIN" msgstr "muuta salasanaa" -#: scd/app-openpgp.c:2872 +#: scd/app-openpgp.c:2875 #, fuzzy msgid "||Please enter the Reset Code for the card" msgstr "Valitse mitätöinnin syy:\n" -#: scd/app-openpgp.c:2882 scd/app-openpgp.c:2943 +#: scd/app-openpgp.c:2885 scd/app-openpgp.c:2946 #, c-format msgid "Reset Code is too short; minimum length is %d\n" msgstr "" @@ -8544,129 +8556,129 @@ #. 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:2905 +#: scd/app-openpgp.c:2908 msgid "|RN|New Reset Code" msgstr "" -#: scd/app-openpgp.c:2906 +#: scd/app-openpgp.c:2909 msgid "|AN|New Admin PIN" msgstr "" -#: scd/app-openpgp.c:2906 +#: scd/app-openpgp.c:2909 msgid "|N|New PIN" msgstr "" -#: scd/app-openpgp.c:2987 +#: scd/app-openpgp.c:2996 #, fuzzy msgid "||Please enter the Admin PIN and New Admin PIN" msgstr "muuta salasanaa" -#: scd/app-openpgp.c:2988 +#: scd/app-openpgp.c:2997 #, fuzzy msgid "||Please enter the PIN and New PIN" msgstr "muuta salasanaa" -#: scd/app-openpgp.c:3050 scd/app-openpgp.c:4346 +#: scd/app-openpgp.c:3059 scd/app-openpgp.c:4355 #, fuzzy, c-format msgid "error reading application data\n" msgstr "virhe luettaessa avainlohkoa: %s\n" -#: scd/app-openpgp.c:3056 scd/app-openpgp.c:4353 +#: scd/app-openpgp.c:3065 scd/app-openpgp.c:4362 #, fuzzy, c-format msgid "error reading fingerprint DO\n" msgstr "%s: virhe luettaessa vapaata tietuetta: %s\n" -#: scd/app-openpgp.c:3066 +#: scd/app-openpgp.c:3075 #, fuzzy, c-format msgid "key already exists\n" msgstr "\"%s\" on jo pakattu\n" -#: scd/app-openpgp.c:3070 +#: scd/app-openpgp.c:3079 #, c-format msgid "existing key will be replaced\n" msgstr "" -#: scd/app-openpgp.c:3072 +#: scd/app-openpgp.c:3081 #, fuzzy, c-format msgid "generating new key\n" msgstr "luo uusi avainpari" -#: scd/app-openpgp.c:3074 +#: scd/app-openpgp.c:3083 #, fuzzy, c-format msgid "writing new key\n" msgstr "luo uusi avainpari" -#: scd/app-openpgp.c:3647 scd/app-openpgp.c:3999 +#: scd/app-openpgp.c:3656 scd/app-openpgp.c:4008 #, c-format msgid "creation timestamp missing\n" msgstr "" -#: scd/app-openpgp.c:3688 scd/app-openpgp.c:3696 +#: scd/app-openpgp.c:3697 scd/app-openpgp.c:3705 #, c-format msgid "RSA prime %s missing or not of size %d bits\n" msgstr "" -#: scd/app-openpgp.c:3829 scd/app-openpgp.c:4106 +#: scd/app-openpgp.c:3838 scd/app-openpgp.c:4115 #, fuzzy, c-format msgid "failed to store the key: %s\n" msgstr "TrustDB:n alustaminen ei onnistu: %s\n" -#: scd/app-openpgp.c:3993 +#: scd/app-openpgp.c:4002 #, fuzzy, c-format #| msgid "unsupported URI" msgid "unsupported curve\n" msgstr "URI-muotoa ei tueta" -#: scd/app-openpgp.c:4263 +#: scd/app-openpgp.c:4272 #, c-format msgid "please wait while key is being generated ...\n" msgstr "" -#: scd/app-openpgp.c:4271 +#: scd/app-openpgp.c:4280 #, fuzzy, c-format msgid "generating key failed\n" msgstr "avainlohkojen poisto epäonnistui: %s\n" -#: scd/app-openpgp.c:4277 +#: scd/app-openpgp.c:4286 #, fuzzy, c-format msgid "key generation completed (%d second)\n" msgid_plural "key generation completed (%d seconds)\n" msgstr[0] "Avaimen luonti epäonnistui: %s\n" msgstr[1] "Avaimen luonti epäonnistui: %s\n" -#: scd/app-openpgp.c:4311 +#: scd/app-openpgp.c:4320 #, c-format msgid "invalid structure of OpenPGP card (DO 0x93)\n" msgstr "" -#: scd/app-openpgp.c:4361 +#: scd/app-openpgp.c:4370 #, c-format msgid "fingerprint on card does not match requested one\n" msgstr "" # Ensimmäinen %s on binary, textmode tai unknown, ks. alla -#: scd/app-openpgp.c:4560 +#: scd/app-openpgp.c:4569 #, fuzzy, c-format msgid "card does not support digest algorithm %s\n" msgstr "%sallekirjoitus, tiivistealgoritmi %s\n" -#: scd/app-openpgp.c:4618 +#: scd/app-openpgp.c:4627 #, c-format msgid "signatures created so far: %lu\n" msgstr "" -#: scd/app-openpgp.c:5055 +#: scd/app-openpgp.c:5065 #, c-format msgid "" "verification of Admin PIN is currently prohibited through this command\n" msgstr "" -#: scd/app-openpgp.c:5386 scd/app-openpgp.c:5398 +#: scd/app-openpgp.c:5396 scd/app-openpgp.c:5408 #, fuzzy, c-format msgid "can't access %s - invalid OpenPGP card?\n" msgstr "kelvollista OpenPGP-dataa ei löytynyt.\n" -#: scd/app-dinsig.c:298 +#: scd/app-dinsig.c:299 #, fuzzy msgid "||Please enter your PIN at the reader's pinpad" msgstr "muuta salasanaa" @@ -8674,7 +8686,7 @@ #. 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-dinsig.c:529 +#: scd/app-dinsig.c:532 msgid "|N|Initial New PIN" msgstr "" @@ -8764,11 +8776,11 @@ msgid "validation model requested by certificate: %s" msgstr "" -#: sm/certchain.c:199 sm/certchain.c:2164 +#: sm/certchain.c:199 sm/certchain.c:2165 msgid "chain" msgstr "" -#: sm/certchain.c:200 sm/certchain.c:2164 +#: sm/certchain.c:200 sm/certchain.c:2165 #, fuzzy msgid "shell" msgstr "apua" @@ -8792,241 +8804,241 @@ msgid "failed to open '%s': %s\n" msgstr "tiedostoa \"%s\" ei voi avata: %s\n" -#: sm/certchain.c:355 sm/certchain.c:384 dirmngr/validate.c:204 +#: sm/certchain.c:355 sm/certchain.c:385 dirmngr/validate.c:204 #, fuzzy, c-format msgid "Note: non-critical certificate policy not allowed" msgstr "kirjoitan salaisen avaimen kohteeseen \"%s\"\n" -#: sm/certchain.c:359 sm/certchain.c:388 dirmngr/validate.c:209 +#: sm/certchain.c:359 sm/certchain.c:389 dirmngr/validate.c:209 #, fuzzy, c-format msgid "certificate policy not allowed" msgstr "kirjoitan salaisen avaimen kohteeseen \"%s\"\n" -#: sm/certchain.c:595 sm/keydb.c:1084 sm/keydb.c:1171 +#: sm/certchain.c:596 sm/keydb.c:1084 sm/keydb.c:1171 #, fuzzy, c-format msgid "failed to get the fingerprint\n" msgstr "TrustDB:n alustaminen ei onnistu: %s\n" -#: sm/certchain.c:624 +#: sm/certchain.c:625 #, c-format msgid "looking up issuer at external location\n" msgstr "" -#: sm/certchain.c:644 +#: sm/certchain.c:645 #, c-format msgid "number of issuers matching: %d\n" msgstr "" -#: sm/certchain.c:723 dirmngr/ocsp.c:685 +#: sm/certchain.c:724 dirmngr/ocsp.c:685 #, fuzzy, c-format #| msgid "%s: can't access: %s\n" msgid "can't get authorityInfoAccess: %s\n" msgstr "%s: kohteeseen ei päästä: %s\n" -#: sm/certchain.c:791 +#: sm/certchain.c:792 #, c-format msgid "looking up issuer from the Dirmngr cache\n" msgstr "" -#: sm/certchain.c:816 +#: sm/certchain.c:817 #, fuzzy, c-format msgid "number of matching certificates: %d\n" msgstr "virhe luotaessa salasanaa: %s\n" -#: sm/certchain.c:819 +#: sm/certchain.c:820 #, fuzzy, c-format msgid "dirmngr cache-only key lookup failed: %s\n" msgstr "avainlohkojen poisto epäonnistui: %s\n" -#: sm/certchain.c:1041 sm/certchain.c:1554 sm/certchain.c:2192 sm/decrypt.c:728 +#: sm/certchain.c:1042 sm/certchain.c:1555 sm/certchain.c:2193 sm/decrypt.c:728 #: sm/encrypt.c:345 sm/import.c:415 sm/keydb.c:1091 sm/keydb.c:1178 #: sm/sign.c:337 sm/verify.c:118 #, fuzzy, c-format msgid "failed to allocate keyDB handle\n" msgstr "TrustDB:n alustaminen ei onnistu: %s\n" -#: sm/certchain.c:1225 +#: sm/certchain.c:1226 #, fuzzy msgid "certificate has been revoked" msgstr "HUOM: avain on mitätöity!" -#: sm/certchain.c:1240 +#: sm/certchain.c:1241 msgid "the status of the certificate is unknown" msgstr "" -#: sm/certchain.c:1247 +#: sm/certchain.c:1248 #, c-format msgid "please make sure that the \"dirmngr\" is properly installed\n" msgstr "" -#: sm/certchain.c:1253 +#: sm/certchain.c:1254 #, fuzzy, c-format msgid "checking the CRL failed: %s" msgstr "luodun allekirjoituksen tarkistus epäonnistui: %s\n" -#: sm/certchain.c:1282 sm/certchain.c:1350 dirmngr/validate.c:497 +#: sm/certchain.c:1283 sm/certchain.c:1351 dirmngr/validate.c:497 #, c-format msgid "certificate with invalid validity: %s" msgstr "" -#: sm/certchain.c:1297 sm/certchain.c:1382 dirmngr/validate.c:515 +#: sm/certchain.c:1298 sm/certchain.c:1383 dirmngr/validate.c:515 #, c-format msgid "certificate not yet valid" msgstr "" -#: sm/certchain.c:1298 sm/certchain.c:1383 +#: sm/certchain.c:1299 sm/certchain.c:1384 #, fuzzy msgid "root certificate not yet valid" msgstr "kirjoitan salaisen avaimen kohteeseen \"%s\"\n" -#: sm/certchain.c:1299 sm/certchain.c:1384 +#: sm/certchain.c:1300 sm/certchain.c:1385 msgid "intermediate certificate not yet valid" msgstr "" -#: sm/certchain.c:1312 dirmngr/validate.c:526 +#: sm/certchain.c:1313 dirmngr/validate.c:526 #, fuzzy, c-format msgid "certificate has expired" msgstr "Tämä avain on vanhentunut!" -#: sm/certchain.c:1313 +#: sm/certchain.c:1314 #, fuzzy msgid "root certificate has expired" msgstr "Tämä avain on vanhentunut!" -#: sm/certchain.c:1314 +#: sm/certchain.c:1315 #, fuzzy msgid "intermediate certificate has expired" msgstr "Tämä avain on vanhentunut!" -#: sm/certchain.c:1356 +#: sm/certchain.c:1357 #, c-format msgid "required certificate attributes missing: %s%s%s" msgstr "" -#: sm/certchain.c:1365 +#: sm/certchain.c:1366 #, fuzzy msgid "certificate with invalid validity" msgstr "Tämä avain on vanhentunut!" -#: sm/certchain.c:1402 +#: sm/certchain.c:1403 msgid "signature not created during lifetime of certificate" msgstr "" -#: sm/certchain.c:1404 +#: sm/certchain.c:1405 msgid "certificate not created during lifetime of issuer" msgstr "" -#: sm/certchain.c:1405 +#: sm/certchain.c:1406 msgid "intermediate certificate not created during lifetime of issuer" msgstr "" -#: sm/certchain.c:1409 +#: sm/certchain.c:1410 #, fuzzy, c-format msgid " ( signature created at " msgstr " uusia allekirjoituksia: %lu\n" -#: sm/certchain.c:1410 +#: sm/certchain.c:1411 #, fuzzy, c-format msgid " (certificate created at " msgstr "Mitätöintivarmenne luotu.\n" -#: sm/certchain.c:1413 +#: sm/certchain.c:1414 #, fuzzy, c-format msgid " (certificate valid from " msgstr "virheellinen varmenne" -#: sm/certchain.c:1414 +#: sm/certchain.c:1415 #, c-format msgid " ( issuer valid from " msgstr "" -#: sm/certchain.c:1444 dirmngr/validate.c:577 +#: sm/certchain.c:1445 dirmngr/validate.c:577 #, fuzzy, c-format msgid "fingerprint=%s\n" msgstr "näytä sormenjälki" -#: sm/certchain.c:1453 +#: sm/certchain.c:1454 #, c-format msgid "root certificate has now been marked as trusted\n" msgstr "" -#: sm/certchain.c:1466 +#: sm/certchain.c:1467 #, c-format msgid "interactive marking as trusted not enabled in gpg-agent\n" msgstr "" -#: sm/certchain.c:1472 +#: sm/certchain.c:1473 #, c-format msgid "interactive marking as trusted disabled for this session\n" msgstr "" -#: sm/certchain.c:1531 +#: sm/certchain.c:1532 msgid "WARNING: creation time of signature not known - assuming current time" msgstr "" -#: sm/certchain.c:1595 +#: sm/certchain.c:1596 #, fuzzy msgid "no issuer found in certificate" msgstr "luo mitätöintivarmenne" -#: sm/certchain.c:1673 +#: sm/certchain.c:1674 msgid "self-signed certificate has a BAD signature" msgstr "" -#: sm/certchain.c:1742 dirmngr/validate.c:575 +#: sm/certchain.c:1743 dirmngr/validate.c:575 #, c-format msgid "root certificate is not marked trusted" msgstr "" -#: sm/certchain.c:1758 +#: sm/certchain.c:1759 #, fuzzy, c-format msgid "checking the trust list failed: %s\n" msgstr "luodun allekirjoituksen tarkistus epäonnistui: %s\n" -#: sm/certchain.c:1789 sm/import.c:176 sm/keylist.c:1396 dirmngr/validate.c:630 +#: sm/certchain.c:1790 sm/import.c:176 sm/keylist.c:1396 dirmngr/validate.c:630 #, c-format msgid "certificate chain too long\n" msgstr "" -#: sm/certchain.c:1801 dirmngr/validate.c:642 +#: sm/certchain.c:1802 dirmngr/validate.c:642 #, c-format msgid "issuer certificate not found" msgstr "" -#: sm/certchain.c:1834 dirmngr/validate.c:668 +#: sm/certchain.c:1835 dirmngr/validate.c:668 #, fuzzy, c-format msgid "certificate has a BAD signature" msgstr "tarkista allekirjoitus" -#: sm/certchain.c:1866 dirmngr/validate.c:692 +#: sm/certchain.c:1867 dirmngr/validate.c:692 msgid "found another possible matching CA certificate - trying again" msgstr "" -#: sm/certchain.c:1925 dirmngr/validate.c:717 +#: sm/certchain.c:1926 dirmngr/validate.c:717 #, c-format msgid "certificate chain longer than allowed by CA (%d)" msgstr "" -#: sm/certchain.c:1967 sm/certchain.c:2263 dirmngr/validate.c:747 +#: sm/certchain.c:1968 sm/certchain.c:2264 dirmngr/validate.c:747 #, fuzzy, c-format msgid "certificate is good\n" msgstr "valinta %c%lu on kopio\n" -#: sm/certchain.c:1968 +#: sm/certchain.c:1969 #, fuzzy, c-format msgid "intermediate certificate is good\n" msgstr "Mitätöintivarmenne luotu.\n" -#: sm/certchain.c:1969 +#: sm/certchain.c:1970 #, fuzzy, c-format msgid "root certificate is good\n" msgstr "virheellinen varmenne" -#: sm/certchain.c:2151 +#: sm/certchain.c:2152 msgid "switching to chain model" msgstr "" -#: sm/certchain.c:2160 +#: sm/certchain.c:2161 #, c-format msgid "validation model used: %s" msgstr "" diff -Nru gnupg2-2.2.40/po/fr.po gnupg2-2.2.41/po/fr.po --- gnupg2-2.2.40/po/fr.po 2022-10-10 09:58:26.000000000 +0000 +++ gnupg2-2.2.41/po/fr.po 2022-12-09 08:48:34.000000000 +0000 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: gnupg 2.1\n" "Report-Msgid-Bugs-To: translations@gnupg.org\n" -"POT-Creation-Date: 2022-10-10 11:58+0200\n" +"POT-Creation-Date: 2022-12-09 09:48+0100\n" "PO-Revision-Date: 2021-05-19 00:01+0200\n" "Last-Translator: David Prévot \n" "Language-Team: French \n" @@ -242,20 +242,20 @@ msgid "ssh keys greater than %d bits are not supported\n" msgstr "les clefs SSH plus grandes que %d bits ne sont pas prises en charge\n" -#: agent/command-ssh.c:862 common/dotlock.c:856 g10/card-util.c:947 -#: g10/exec.c:554 g10/export.c:1320 g10/gpg.c:1400 g10/keygen.c:4998 +#: agent/command-ssh.c:862 common/dotlock.c:856 g10/card-util.c:946 +#: g10/exec.c:554 g10/export.c:1335 g10/gpg.c:1409 g10/keygen.c:5052 #: g10/keyring.c:1322 g10/keyring.c:1637 g10/openfile.c:291 g10/sign.c:1008 #: g10/sign.c:1322 g10/tdbio.c:753 #, c-format msgid "can't create '%s': %s\n" msgstr "impossible de créer « %s » : %s\n" -#: agent/command-ssh.c:874 common/helpfile.c:57 g10/card-util.c:904 +#: agent/command-ssh.c:874 common/helpfile.c:57 g10/card-util.c:903 #: g10/dearmor.c:59 g10/dearmor.c:106 g10/decrypt.c:65 g10/decrypt.c:136 -#: g10/decrypt.c:153 g10/encrypt.c:239 g10/encrypt.c:678 g10/gpg.c:1401 -#: g10/import.c:364 g10/import.c:548 g10/import.c:776 g10/keygen.c:4036 +#: g10/decrypt.c:153 g10/encrypt.c:239 g10/encrypt.c:678 g10/gpg.c:1410 +#: g10/import.c:365 g10/import.c:549 g10/import.c:777 g10/keygen.c:4090 #: g10/keyring.c:1663 g10/openfile.c:195 g10/openfile.c:209 g10/plaintext.c:128 -#: g10/plaintext.c:649 g10/sign.c:990 g10/sign.c:1201 g10/sign.c:1306 +#: g10/plaintext.c:654 g10/sign.c:990 g10/sign.c:1201 g10/sign.c:1306 #: g10/sign.c:1451 g10/tdbdump.c:145 g10/tdbdump.c:153 g10/tdbio.c:758 #: g10/tdbio.c:829 g10/verify.c:96 g10/verify.c:160 sm/gpgsm.c:2160 #: sm/gpgsm.c:2190 sm/gpgsm.c:2228 sm/qualified.c:66 dirmngr/certcache.c:420 @@ -492,33 +492,33 @@ msgid "csh-style command output" msgstr "sortie de commandes à la csh" -#: agent/gpg-agent.c:185 g10/gpg.c:579 scd/scdaemon.c:126 sm/gpgsm.c:410 +#: agent/gpg-agent.c:185 g10/gpg.c:580 scd/scdaemon.c:126 sm/gpgsm.c:410 #: dirmngr/dirmngr.c:192 msgid "|FILE|read options from FILE" msgstr "|FICHIER|lire les options depuis le FICHIER" -#: agent/gpg-agent.c:189 g10/gpg.c:566 scd/scdaemon.c:130 sm/gpgsm.c:259 +#: agent/gpg-agent.c:189 g10/gpg.c:567 scd/scdaemon.c:130 sm/gpgsm.c:259 #: dirmngr/dirmngr.c:196 msgid "Options controlling the diagnostic output" msgstr "Options contrôlant la sortie de diagnostique" -#: agent/gpg-agent.c:191 g10/gpg.c:568 g10/gpgv.c:78 kbx/kbxutil.c:88 +#: agent/gpg-agent.c:191 g10/gpg.c:569 g10/gpgv.c:78 kbx/kbxutil.c:88 #: scd/scdaemon.c:132 sm/gpgsm.c:261 dirmngr/dirmngr-client.c:70 #: dirmngr/dirmngr.c:198 tools/gpg-connect-agent.c:78 tools/gpgconf.c:110 msgid "verbose" msgstr "bavard" -#: agent/gpg-agent.c:192 g10/gpg.c:570 g10/gpgv.c:79 kbx/kbxutil.c:89 +#: agent/gpg-agent.c:192 g10/gpg.c:571 g10/gpgv.c:79 kbx/kbxutil.c:89 #: scd/scdaemon.c:133 sm/gpgsm.c:263 dirmngr/dirmngr-client.c:71 #: dirmngr/dirmngr.c:199 msgid "be somewhat more quiet" msgstr "devenir beaucoup plus silencieux" -#: agent/gpg-agent.c:200 g10/gpg.c:583 sm/gpgsm.c:276 dirmngr/dirmngr.c:209 +#: agent/gpg-agent.c:200 g10/gpg.c:584 sm/gpgsm.c:276 dirmngr/dirmngr.c:209 msgid "|FILE|write server mode logs to FILE" msgstr "|FICHIER|écrire les journaux serveur dans le FICHIER" -#: agent/gpg-agent.c:204 g10/gpg.c:589 scd/scdaemon.c:147 sm/gpgsm.c:283 +#: agent/gpg-agent.c:204 g10/gpg.c:590 scd/scdaemon.c:147 sm/gpgsm.c:283 #: dirmngr/dirmngr.c:213 msgid "Options controlling the configuration" msgstr "Options contrôlant la configuration" @@ -557,7 +557,7 @@ msgid "enable putty support" msgstr "activer la prise en charge de putty" -#: agent/gpg-agent.c:237 g10/gpg.c:831 scd/scdaemon.c:175 sm/gpgsm.c:369 +#: agent/gpg-agent.c:237 g10/gpg.c:832 scd/scdaemon.c:175 sm/gpgsm.c:369 msgid "Options controlling the security" msgstr "Options contrôlant la sécurité" @@ -666,7 +666,7 @@ #. reporting address. This is so that we can change the #. reporting address without breaking the translations. #: agent/gpg-agent.c:563 agent/preset-passphrase.c:100 agent/protect-tool.c:155 -#: g10/gpg.c:1108 g10/gpgv.c:149 kbx/kbxutil.c:113 scd/scdaemon.c:313 +#: g10/gpg.c:1117 g10/gpgv.c:149 kbx/kbxutil.c:113 scd/scdaemon.c:313 #: sm/gpgsm.c:600 dirmngr/dirmngr-client.c:168 dirmngr/dirmngr.c:458 #: tools/gpg-connect-agent.c:205 tools/gpgconf.c:154 #: tools/gpg-check-pattern.c:143 @@ -687,26 +687,26 @@ "Syntaxe : @GPG_AGENT@ [options] [commande [arguments]]\n" "Gestionnaire de clefs secrètes pour @GNUPG@\n" -#: agent/gpg-agent.c:619 g10/gpg.c:1304 scd/scdaemon.c:385 sm/gpgsm.c:748 +#: agent/gpg-agent.c:619 g10/gpg.c:1313 scd/scdaemon.c:385 sm/gpgsm.c:748 #: dirmngr/dirmngr.c:542 #, c-format msgid "invalid debug-level '%s' given\n" msgstr "niveau de débogage « %s » incorrect\n" -#: agent/gpg-agent.c:988 g10/gpg.c:3810 g10/gpg.c:3834 sm/gpgsm.c:1585 +#: agent/gpg-agent.c:988 g10/gpg.c:3830 g10/gpg.c:3854 sm/gpgsm.c:1585 #: sm/gpgsm.c:1591 #, c-format msgid "selected digest algorithm is invalid\n" msgstr "la fonction de hachage sélectionnée est incorrecte\n" #: agent/gpg-agent.c:1216 agent/gpg-agent.c:2029 common/argparse.c:1766 -#: common/argparse.c:1858 g10/gpg.c:2517 scd/scdaemon.c:547 sm/gpgsm.c:1007 +#: common/argparse.c:1858 g10/gpg.c:2526 scd/scdaemon.c:547 sm/gpgsm.c:1007 #: dirmngr/dirmngr.c:1081 dirmngr/dirmngr.c:1937 #, c-format msgid "reading options from '%s'\n" msgstr "lecture des options de « %s »\n" -#: agent/gpg-agent.c:1332 g10/gpg.c:3751 scd/scdaemon.c:671 sm/gpgsm.c:1522 +#: agent/gpg-agent.c:1332 g10/gpg.c:3769 scd/scdaemon.c:671 sm/gpgsm.c:1522 #: dirmngr/dirmngr.c:1190 tools/gpg-connect-agent.c:1244 tools/gpgconf.c:677 #, c-format msgid "Note: '%s' is not considered an option\n" @@ -841,7 +841,7 @@ "Syntaxe : gpg-preset-passphrase [options] KEYGRIP\n" "Maintenance du cache des mots de passe\n" -#: agent/protect-tool.c:108 g10/gpg.c:441 kbx/kbxutil.c:71 sm/gpgsm.c:210 +#: agent/protect-tool.c:108 g10/gpg.c:442 kbx/kbxutil.c:71 sm/gpgsm.c:210 #: dirmngr/dirmngr.c:171 tools/gpgconf.c:80 msgid "" "@Commands:\n" @@ -1075,7 +1075,7 @@ msgid "secret key parts are not available\n" msgstr "des parties de la clef secrète ne sont pas disponibles\n" -#: agent/cvt-openpgp.c:344 g10/card-util.c:1556 +#: agent/cvt-openpgp.c:344 g10/card-util.c:1555 #, c-format msgid "public key algorithm %d (%s) is not supported\n" msgstr "l'algorithme de clef publique %d (%s) n'est pas pris en charge\n" @@ -1233,7 +1233,7 @@ msgid "out of core while allocating %lu bytes" msgstr "hors limite lors de l'allocation de %lu octets" -#: common/miscellaneous.c:115 g10/card-util.c:911 tools/no-libgcrypt.c:30 +#: common/miscellaneous.c:115 g10/card-util.c:910 tools/no-libgcrypt.c:30 #, c-format msgid "error allocating enough memory: %s\n" msgstr "erreur d'allocation de suffisamment de mémoire : %s\n" @@ -1350,7 +1350,7 @@ msgstr "algorithme : %s" #: common/audit.c:774 common/audit.c:776 common/audit.c:921 common/audit.c:923 -#: scd/app-openpgp.c:3557 +#: scd/app-openpgp.c:3566 #, c-format msgid "unsupported algorithm: %s" msgstr "algorithme non pris en charge : %s" @@ -1425,11 +1425,11 @@ msgid "Root certificate trustworthy" msgstr "Certificat racine digne de confiance" -#: common/audit.c:1112 sm/certchain.c:1235 +#: common/audit.c:1112 sm/certchain.c:1236 msgid "no CRL found for certificate" msgstr "aucune liste de révocations trouvée pour le certificat" -#: common/audit.c:1115 sm/certchain.c:1245 +#: common/audit.c:1115 sm/certchain.c:1246 msgid "the available CRL is too old" msgstr "la liste de révocations de certificat est trop vieille" @@ -1558,7 +1558,7 @@ msgid "missing argument for option \"%.50s\"\n" msgstr "argument manquant pour l'option « %.50s »\n" -#: common/argparse.c:558 g10/gpg.c:3525 +#: common/argparse.c:558 g10/gpg.c:3543 #, c-format msgid "invalid argument for option \"%.50s\"\n" msgstr "argument incorrect pour l'option « %.50s »\n" @@ -1657,92 +1657,92 @@ msgid "%s is too old (need %s, have %s)\n" msgstr "%s est trop ancien (nécessaire : %s, utilisé : %s)\n" -#: g10/armor.c:423 +#: g10/armor.c:424 #, c-format msgid "armor: %s\n" msgstr "armure : %s\n" -#: g10/armor.c:462 +#: g10/armor.c:463 #, c-format msgid "invalid armor header: " msgstr "en-tête d'armure incorrect : " -#: g10/armor.c:473 +#: g10/armor.c:474 #, c-format msgid "armor header: " msgstr "en-tête d'armure : " -#: g10/armor.c:486 +#: g10/armor.c:487 #, c-format msgid "invalid clearsig header\n" msgstr "en-tête de signature en texte clair incorrect\n" -#: g10/armor.c:499 +#: g10/armor.c:500 #, c-format msgid "unknown armor header: " msgstr "en-tête d'armure inconnu : " -#: g10/armor.c:552 +#: g10/armor.c:553 #, c-format msgid "nested clear text signatures\n" msgstr "signatures en texte clair imbriquées\n" -#: g10/armor.c:687 +#: g10/armor.c:688 #, c-format msgid "unexpected armor: " msgstr "armure inattendue : " -#: g10/armor.c:700 +#: g10/armor.c:701 #, c-format msgid "invalid dash escaped line: " msgstr "ligne protégée par « - » incorrecte : " -#: g10/armor.c:872 g10/armor.c:1492 +#: g10/armor.c:873 g10/armor.c:1493 #, c-format msgid "invalid radix64 character %02X skipped\n" msgstr "caractère %02X incorrect en radix64, ignoré\n" -#: g10/armor.c:915 +#: g10/armor.c:916 #, c-format msgid "premature eof (no CRC)\n" msgstr "fin de fichier prématurée (pas de CRC)\n" -#: g10/armor.c:949 +#: g10/armor.c:950 #, c-format msgid "premature eof (in CRC)\n" msgstr "fin de fichier prématurée (dans le CRC)\n" -#: g10/armor.c:957 +#: g10/armor.c:958 #, c-format msgid "malformed CRC\n" msgstr "CRC mal défini\n" -#: g10/armor.c:961 g10/armor.c:1529 +#: g10/armor.c:962 g10/armor.c:1530 #, c-format msgid "CRC error; %06lX - %06lX\n" msgstr "erreur de CRC ; %06lX - %06lX\n" -#: g10/armor.c:981 +#: g10/armor.c:982 #, c-format msgid "premature eof (in trailer)\n" msgstr "fin de fichier prématurée (dans le pied)\n" -#: g10/armor.c:985 +#: g10/armor.c:986 #, c-format msgid "error in trailer line\n" msgstr "erreur dans la ligne de pied\n" -#: g10/armor.c:1305 +#: g10/armor.c:1306 #, c-format msgid "no valid OpenPGP data found.\n" msgstr "aucune donnée OpenPGP valable n'a été trouvée.\n" -#: g10/armor.c:1310 +#: g10/armor.c:1311 #, c-format msgid "invalid armor: line longer than %d characters\n" msgstr "armure incorrecte : ligne plus longue que %d caractères\n" -#: g10/armor.c:1314 +#: g10/armor.c:1315 #, c-format msgid "" "quoted printable character in armor - probably a buggy MTA has been used\n" @@ -1897,24 +1897,24 @@ msgid "server uses an invalid certificate" msgstr "générer un certificat de révocation" -#: g10/call-dirmngr.c:462 g10/gpg.c:4458 +#: g10/call-dirmngr.c:462 g10/gpg.c:4478 #, fuzzy, c-format #| msgid "armor: %s\n" msgid "Note: %s\n" msgstr "armure : %s\n" -#: g10/card-util.c:86 g10/card-util.c:366 g10/card-util.c:1918 +#: g10/card-util.c:86 g10/card-util.c:366 g10/card-util.c:1917 #, c-format msgid "OpenPGP card not available: %s\n" msgstr "la carte OpenPGP n'est pas disponible : %s\n" -#: g10/card-util.c:91 g10/card-util.c:1924 +#: g10/card-util.c:91 g10/card-util.c:1923 #, c-format msgid "OpenPGP card no. %s detected\n" msgstr "carte OpenPGP nº %s détectée\n" -#: g10/card-util.c:97 g10/card-util.c:2253 g10/delkey.c:160 g10/keyedit.c:1423 -#: g10/keygen.c:4466 g10/revoke.c:214 g10/revoke.c:636 +#: g10/card-util.c:97 g10/card-util.c:2252 g10/delkey.c:160 g10/keyedit.c:1423 +#: g10/keygen.c:4520 g10/revoke.c:214 g10/revoke.c:636 #, c-format msgid "can't do this in batch mode\n" msgstr "impossible de faire cela en mode automatique\n" @@ -1924,14 +1924,14 @@ msgid "This command is only available for version 2 cards\n" msgstr "Cette commande n'est disponible que pour les cartes en version 2\n" -#: g10/card-util.c:107 scd/app-openpgp.c:2866 +#: g10/card-util.c:107 scd/app-openpgp.c:2869 #, c-format msgid "Reset Code not or not anymore available\n" msgstr "le code de réinitialisation n'est plus disponible\n" -#: g10/card-util.c:140 g10/card-util.c:1442 g10/card-util.c:1704 -#: g10/card-util.c:1796 g10/keyedit.c:394 g10/keyedit.c:415 g10/keyedit.c:429 -#: g10/keygen.c:1808 g10/keygen.c:1980 g10/keygen.c:2186 g10/keygen.c:2477 +#: g10/card-util.c:140 g10/card-util.c:1441 g10/card-util.c:1703 +#: g10/card-util.c:1795 g10/keyedit.c:394 g10/keyedit.c:415 g10/keyedit.c:429 +#: g10/keygen.c:1862 g10/keygen.c:2034 g10/keygen.c:2240 g10/keygen.c:2531 #: sm/certreqgen-ui.c:165 sm/certreqgen-ui.c:291 sm/certreqgen-ui.c:325 msgid "Your selection? " msgstr "Quel est votre choix ? " @@ -1981,81 +1981,81 @@ msgid "Error: Combined name too long (limit is %d characters).\n" msgstr "Erreur : nom combiné trop long (limité à %d caractères).\n" -#: g10/card-util.c:826 +#: g10/card-util.c:825 msgid "URL to retrieve public key: " msgstr "URL pour récupérer la clef publique : " -#: g10/card-util.c:920 g10/decrypt-data.c:509 g10/import.c:399 g10/import.c:746 -#: g10/import.c:798 dirmngr/crlcache.c:655 dirmngr/crlcache.c:660 +#: g10/card-util.c:919 g10/decrypt-data.c:509 g10/import.c:400 g10/import.c:747 +#: g10/import.c:799 dirmngr/crlcache.c:655 dirmngr/crlcache.c:660 #: dirmngr/crlcache.c:914 dirmngr/crlcache.c:920 dirmngr/dirmngr.c:1748 #: tools/gpgconf.c:483 tools/gpgconf.c:529 #, c-format msgid "error reading '%s': %s\n" msgstr "erreur de lecture de « %s » : %s\n" -#: g10/card-util.c:953 g10/decrypt-data.c:512 g10/export.c:2467 +#: g10/card-util.c:952 g10/decrypt-data.c:512 g10/export.c:2586 #: dirmngr/crlcache.c:925 #, c-format msgid "error writing '%s': %s\n" msgstr "erreur d'écriture de « %s » : %s\n" -#: g10/card-util.c:980 +#: g10/card-util.c:979 msgid "Login data (account name): " msgstr "Données d'identification (nom du compte) : " -#: g10/card-util.c:1018 +#: g10/card-util.c:1017 msgid "Private DO data: " msgstr "Données DO privées : " -#: g10/card-util.c:1103 +#: g10/card-util.c:1102 msgid "Language preferences: " msgstr "Préférences de langue : " -#: g10/card-util.c:1111 +#: g10/card-util.c:1110 msgid "Error: invalid length of preference string.\n" msgstr "Erreur : taille incorrecte de la chaîne de préférences.\n" -#: g10/card-util.c:1120 +#: g10/card-util.c:1119 msgid "Error: invalid characters in preference string.\n" msgstr "Erreur : caractères incorrects dans la chaîne de préférences.\n" -#: g10/card-util.c:1142 +#: g10/card-util.c:1141 msgid "Salutation (M = Mr., F = Ms., or space): " msgstr "" -#: g10/card-util.c:1156 +#: g10/card-util.c:1155 msgid "Error: invalid response.\n" msgstr "Erreur : réponse incorrecte.\n" -#: g10/card-util.c:1178 +#: g10/card-util.c:1177 msgid "CA fingerprint: " msgstr "empreinte de l'autorité de certification : " -#: g10/card-util.c:1201 +#: g10/card-util.c:1200 msgid "Error: invalid formatted fingerprint.\n" msgstr "Erreur : formatage incorrect de l'empreinte.\n" -#: g10/card-util.c:1252 +#: g10/card-util.c:1251 #, c-format msgid "key operation not possible: %s\n" msgstr "opération sur la clef impossible : %s\n" -#: g10/card-util.c:1253 +#: g10/card-util.c:1252 msgid "not an OpenPGP card" msgstr "ce n'est pas une carte OpenPGP" -#: g10/card-util.c:1266 g10/keygen.c:4486 g10/keygen.c:5562 +#: g10/card-util.c:1265 g10/keygen.c:4540 g10/keygen.c:5616 #, c-format msgid "error getting current key info: %s\n" msgstr "" "erreur de lecture des renseignements actuellement contenus\n" "dans la clef : %s\n" -#: g10/card-util.c:1351 +#: g10/card-util.c:1350 msgid "Replace existing key? (y/N) " msgstr "Faut-il remplacer la clef existante ? (o/N) " -#: g10/card-util.c:1368 +#: g10/card-util.c:1367 msgid "" "Note: There is no guarantee that the card supports the requested size.\n" " If the key generation does not succeed, please check the\n" @@ -2065,84 +2065,84 @@ " En cas d'échec de génération de la clef, veuillez vérifier les\n" " tailles permises dans la documentation de la carte.\n" -#: g10/card-util.c:1390 g10/keygen.c:2363 sm/certreqgen-ui.c:179 +#: g10/card-util.c:1389 g10/keygen.c:2417 sm/certreqgen-ui.c:179 #, c-format msgid "What keysize do you want? (%u) " msgstr "Quelle taille de clef désirez-vous ? (%u) " -#: g10/card-util.c:1400 g10/keygen.c:2286 g10/keygen.c:2318 +#: g10/card-util.c:1399 g10/keygen.c:2340 g10/keygen.c:2372 #: sm/certreqgen-ui.c:194 #, c-format msgid "rounded up to %u bits\n" msgstr "arrondie à %u bits\n" -#: g10/card-util.c:1408 g10/keygen.c:2371 sm/certreqgen-ui.c:184 +#: g10/card-util.c:1407 g10/keygen.c:2425 sm/certreqgen-ui.c:184 #, c-format msgid "%s keysizes must be in the range %u-%u\n" msgstr "les tailles de clefs %s doivent être dans l'intervalle %u-%u\n" -#: g10/card-util.c:1427 +#: g10/card-util.c:1426 msgid "Changing card key attribute for: " msgstr "" -#: g10/card-util.c:1429 +#: g10/card-util.c:1428 #, fuzzy #| msgid " (1) Signature key\n" msgid "Signature key\n" msgstr " (1) Clef de signature\n" -#: g10/card-util.c:1431 +#: g10/card-util.c:1430 #, fuzzy #| msgid " (2) Encryption key\n" msgid "Encryption key\n" msgstr " (2) Clef de chiffrement\n" -#: g10/card-util.c:1433 +#: g10/card-util.c:1432 #, fuzzy #| msgid " (3) Authentication key\n" msgid "Authentication key\n" msgstr " (3) Clef d'authentification\n" -#: g10/card-util.c:1435 g10/keygen.c:1926 sm/certreqgen-ui.c:157 +#: g10/card-util.c:1434 g10/keygen.c:1980 sm/certreqgen-ui.c:157 msgid "Please select what kind of key you want:\n" msgstr "Sélectionnez le type de clef désiré :\n" -#: g10/card-util.c:1436 sm/certreqgen-ui.c:158 +#: g10/card-util.c:1435 sm/certreqgen-ui.c:158 #, c-format msgid " (%d) RSA\n" msgstr " (%d) RSA\n" -#: g10/card-util.c:1437 +#: g10/card-util.c:1436 #, c-format msgid " (%d) ECC\n" msgstr " (%d) ECC\n" -#: g10/card-util.c:1449 g10/card-util.c:1716 g10/card-util.c:1816 -#: g10/keyedit.c:900 g10/keygen.c:1834 g10/keygen.c:1862 g10/keygen.c:1987 -#: g10/keygen.c:2222 g10/keygen.c:2505 g10/revoke.c:838 +#: g10/card-util.c:1448 g10/card-util.c:1715 g10/card-util.c:1815 +#: g10/keyedit.c:900 g10/keygen.c:1888 g10/keygen.c:1916 g10/keygen.c:2041 +#: g10/keygen.c:2276 g10/keygen.c:2559 g10/revoke.c:838 msgid "Invalid selection.\n" msgstr "Choix incorrect.\n" -#: g10/card-util.c:1522 +#: g10/card-util.c:1521 #, c-format msgid "The card will now be re-configured to generate a key of %u bits\n" msgstr "" "La carte sera maintenant reconfigurée pour générer une clef de %u bits\n" -#: g10/card-util.c:1527 +#: g10/card-util.c:1526 #, fuzzy, c-format #| msgid "The card will now be re-configured to generate a key of %u bits\n" msgid "The card will now be re-configured to generate a key of type: %s\n" msgstr "" "La carte sera maintenant reconfigurée pour générer une clef de %u bits\n" -#: g10/card-util.c:1563 +#: g10/card-util.c:1562 #, fuzzy, c-format #| msgid "error changing size of key %d to %u bits: %s\n" msgid "error changing key attribute for key %d: %s\n" msgstr "erreur de modification de taille de clef %d en %u bits : %s\n" -#: g10/card-util.c:1579 g10/card-util.c:2106 +#: g10/card-util.c:1578 g10/card-util.c:2105 #, fuzzy, c-format #| msgid "error getting current key info: %s\n" msgid "error getting card info: %s\n" @@ -2150,27 +2150,27 @@ "erreur de lecture des renseignements actuellement contenus\n" "dans la clef : %s\n" -#: g10/card-util.c:1585 g10/card-util.c:1930 g10/card-util.c:2112 +#: g10/card-util.c:1584 g10/card-util.c:1929 g10/card-util.c:2111 #, fuzzy, c-format #| msgid "This command is not allowed while in %s mode.\n" msgid "This command is not supported by this card\n" msgstr "Cette commande n'est pas permise en mode %s.\n" -#: g10/card-util.c:1631 +#: g10/card-util.c:1630 msgid "Make off-card backup of encryption key? (Y/n) " msgstr "" "Faut-il faire une sauvegarde hors carte de la clef de chiffrement ? (O/n) " -#: g10/card-util.c:1645 +#: g10/card-util.c:1644 #, c-format msgid "Note: keys are already stored on the card!\n" msgstr "Remarque : les clefs sont déjà stockées sur la carte.\n" -#: g10/card-util.c:1648 +#: g10/card-util.c:1647 msgid "Replace existing keys? (y/N) " msgstr "Faut-il remplacer les clefs existantes ? (o/N) " -#: g10/card-util.c:1660 +#: g10/card-util.c:1659 #, c-format msgid "" "Please note that the factory settings of the PINs are\n" @@ -2181,154 +2181,154 @@ " code personnel = « %s » code personnel d'admin. = « %s ».\n" "Vous devriez les modifier avec la commande --change-pin\n" -#: g10/card-util.c:1695 +#: g10/card-util.c:1694 msgid "Please select the type of key to generate:\n" msgstr "Veuillez sélectionner le type de clef à générer :\n" -#: g10/card-util.c:1697 g10/card-util.c:1787 +#: g10/card-util.c:1696 g10/card-util.c:1786 msgid " (1) Signature key\n" msgstr " (1) Clef de signature\n" -#: g10/card-util.c:1698 g10/card-util.c:1789 +#: g10/card-util.c:1697 g10/card-util.c:1788 msgid " (2) Encryption key\n" msgstr " (2) Clef de chiffrement\n" -#: g10/card-util.c:1699 g10/card-util.c:1791 +#: g10/card-util.c:1698 g10/card-util.c:1790 msgid " (3) Authentication key\n" msgstr " (3) Clef d'authentification\n" -#: g10/card-util.c:1784 +#: g10/card-util.c:1783 msgid "Please select where to store the key:\n" msgstr "Veuillez sélectionner l'endroit où stocker la clef :\n" -#: g10/card-util.c:1830 +#: g10/card-util.c:1829 #, c-format msgid "KEYTOCARD failed: %s\n" msgstr "échec de KEYTOCARD : %s\n" -#: g10/card-util.c:1935 +#: g10/card-util.c:1934 #, fuzzy, c-format #| msgid "Note: keys are already stored on the card!\n" msgid "Note: This command destroys all keys stored on the card!\n" msgstr "Remarque : les clefs sont déjà stockées sur la carte.\n" -#: g10/card-util.c:1938 +#: g10/card-util.c:1937 #, fuzzy #| msgid "Continue? (Y/n) " msgid "Continue? (y/N) " msgstr "Faut-il continuer ? (O/n) " -#: g10/card-util.c:1943 +#: g10/card-util.c:1942 msgid "Really do a factory reset? (enter \"yes\") " msgstr "" -#: g10/card-util.c:2129 +#: g10/card-util.c:2128 #, fuzzy, c-format #| msgid "error closing %s: %s\n" msgid "error for setup KDF: %s\n" msgstr "erreur de fermeture de %s : %s\n" -#: g10/card-util.c:2158 g10/keyedit.c:1260 +#: g10/card-util.c:2157 g10/keyedit.c:1260 msgid "quit this menu" msgstr "quitter ce menu" -#: g10/card-util.c:2160 +#: g10/card-util.c:2159 msgid "show admin commands" msgstr "afficher les commandes d'administration" -#: g10/card-util.c:2161 g10/keyedit.c:1263 +#: g10/card-util.c:2160 g10/keyedit.c:1263 msgid "show this help" msgstr "afficher cette aide" -#: g10/card-util.c:2163 +#: g10/card-util.c:2162 msgid "list all available data" msgstr "afficher toutes les données disponibles" -#: g10/card-util.c:2166 +#: g10/card-util.c:2165 msgid "change card holder's name" msgstr "modifier le nom du détenteur de la carte" -#: g10/card-util.c:2167 +#: g10/card-util.c:2166 msgid "change URL to retrieve key" msgstr "modifier l'URL pour récupérer la clef" -#: g10/card-util.c:2168 +#: g10/card-util.c:2167 msgid "fetch the key specified in the card URL" msgstr "récupérer la clef indiquée dans l'URL de la carte" -#: g10/card-util.c:2169 +#: g10/card-util.c:2168 msgid "change the login name" msgstr "modifier l'identifiant de connexion" -#: g10/card-util.c:2170 +#: g10/card-util.c:2169 msgid "change the language preferences" msgstr "modifier les préférences de langue" -#: g10/card-util.c:2171 +#: g10/card-util.c:2170 #, fuzzy #| msgid "change card holder's sex" msgid "change card holder's salutation" msgstr "modifier le sexe du détenteur de la carte" -#: g10/card-util.c:2173 +#: g10/card-util.c:2172 msgid "change a CA fingerprint" msgstr "modifier une empreinte d'autorité de certification" -#: g10/card-util.c:2174 +#: g10/card-util.c:2173 msgid "toggle the signature force PIN flag" msgstr "" "inverser le paramètre obligeant à entrer le code personnel pour les\n" "signatures" -#: g10/card-util.c:2175 +#: g10/card-util.c:2174 msgid "generate new keys" msgstr "générer de nouvelles clefs" -#: g10/card-util.c:2176 +#: g10/card-util.c:2175 msgid "menu to change or unblock the PIN" msgstr "menu pour modifier ou déverrouiller le code personnel" -#: g10/card-util.c:2177 +#: g10/card-util.c:2176 msgid "verify the PIN and list all data" msgstr "vérifier le code personnel et afficher toutes les données" -#: g10/card-util.c:2178 +#: g10/card-util.c:2177 msgid "unblock the PIN using a Reset Code" msgstr "débloquer le code personnel en utilisant un code de réinitialisation" -#: g10/card-util.c:2179 +#: g10/card-util.c:2178 msgid "destroy all keys and data" msgstr "" -#: g10/card-util.c:2180 +#: g10/card-util.c:2179 #, fuzzy #| msgid "|NAME|use user NAME for authentication" msgid "setup KDF for PIN authentication" msgstr "|NOM|utiliser le NOM d'utilisateur pour authentif." -#: g10/card-util.c:2181 +#: g10/card-util.c:2180 #, fuzzy #| msgid "change the ownertrust" msgid "change the key attribute" msgstr "modifier la confiance du propriétaire" -#: g10/card-util.c:2305 +#: g10/card-util.c:2304 msgid "gpg/card> " msgstr "gpg/carte> " -#: g10/card-util.c:2346 +#: g10/card-util.c:2345 msgid "Admin-only command\n" msgstr "La commande n'est utilisable qu'en mode administration\n" -#: g10/card-util.c:2377 +#: g10/card-util.c:2376 msgid "Admin commands are allowed\n" msgstr "Les commandes d'administration sont permises\n" -#: g10/card-util.c:2379 +#: g10/card-util.c:2378 msgid "Admin commands are not allowed\n" msgstr "Les commandes d'administration ne sont pas permises\n" -#: g10/card-util.c:2482 g10/keyedit.c:2229 +#: g10/card-util.c:2481 g10/keyedit.c:2229 msgid "Invalid command (try \"help\")\n" msgstr "Commande incorrecte (essayez « help »)\n" @@ -2337,21 +2337,21 @@ msgid "--output doesn't work for this command\n" msgstr "--output n'est pas compatible avec cette commande\n" -#: g10/decrypt.c:247 g10/gpg.c:5155 g10/keyring.c:399 g10/keyring.c:750 +#: g10/decrypt.c:247 g10/gpg.c:5175 g10/keyring.c:399 g10/keyring.c:750 #, c-format msgid "can't open '%s'\n" msgstr "impossible d'ouvrir « %s »\n" -#: g10/delkey.c:83 g10/export.c:1947 g10/export.c:2230 g10/export.c:2351 -#: g10/getkey.c:2108 g10/gpg.c:5100 g10/keyedit.c:1445 g10/keyedit.c:2335 +#: g10/delkey.c:83 g10/export.c:2035 g10/export.c:2349 g10/export.c:2470 +#: g10/getkey.c:2108 g10/gpg.c:5120 g10/keyedit.c:1445 g10/keyedit.c:2335 #: g10/keyedit.c:2637 g10/keyedit.c:4600 g10/keylist.c:693 g10/keyserver.c:1092 #: g10/revoke.c:230 g10/tofu.c:2165 #, c-format msgid "key \"%s\" not found: %s\n" msgstr "clef « %s » introuvable : %s\n" -#: g10/delkey.c:92 g10/export.c:2015 g10/getkey.c:2116 g10/getkey.c:4517 -#: g10/gpg.c:5109 g10/keyedit.c:2308 g10/keyserver.c:1110 g10/revoke.c:236 +#: g10/delkey.c:92 g10/export.c:2103 g10/getkey.c:2116 g10/getkey.c:4517 +#: g10/gpg.c:5129 g10/keyedit.c:2308 g10/keyserver.c:1110 g10/revoke.c:236 #: g10/revoke.c:663 g10/tofu.c:2173 #, c-format msgid "error reading keyblock: %s\n" @@ -2471,14 +2471,14 @@ msgid "WARNING: '%s' is an empty file\n" msgstr "Attention : « %s » est un fichier vide\n" -#: g10/encrypt.c:446 g10/encrypt.c:521 g10/decrypt-data.c:266 g10/gpg.c:3959 -#: g10/gpg.c:3999 sm/decrypt.c:826 sm/encrypt.c:416 sm/gpgsm.c:1609 +#: g10/encrypt.c:446 g10/encrypt.c:521 g10/decrypt-data.c:266 g10/gpg.c:3979 +#: g10/gpg.c:4019 sm/decrypt.c:826 sm/encrypt.c:416 sm/gpgsm.c:1609 #, fuzzy, c-format #| msgid "you may not use cipher algorithm '%s' while in %s mode\n" msgid "cipher algorithm '%s' may not be used in %s mode\n" msgstr "impossible d'utiliser l'algorithme de chiffrement « %s » en mode %s.\n" -#: g10/encrypt.c:455 g10/gpg.c:3965 g10/gpg.c:4011 g10/sig-check.c:175 +#: g10/encrypt.c:455 g10/gpg.c:3985 g10/gpg.c:4031 g10/sig-check.c:175 #: g10/sign.c:391 sm/gpgsm.c:1619 sm/gpgsm.c:1629 sm/sign.c:478 sm/verify.c:506 #, fuzzy, c-format #| msgid "you may not use digest algorithm '%s' while in %s mode\n" @@ -2603,61 +2603,67 @@ "Attention : impossible de supprimer le répertoire temporaire « %s » :\n" " %s\n" -#: g10/export.c:119 +#: g10/export.c:124 msgid "export signatures that are marked as local-only" msgstr "exporter les signatures marquées comme locales seulement" -#: g10/export.c:121 +#: g10/export.c:126 msgid "export attribute user IDs (generally photo IDs)" msgstr "exporter les attributs d'identité (en général les photos d'identité)" -#: g10/export.c:123 +#: g10/export.c:128 msgid "export revocation keys marked as \"sensitive\"" msgstr "exporter les clefs de révocation marquées comme « sensibles »" -#: g10/export.c:125 +#: g10/export.c:130 msgid "remove unusable parts from key during export" msgstr "supprimer les parties inutilisables de la clef pendant l'exportation" -#: g10/export.c:127 +#: g10/export.c:132 msgid "remove as much as possible from key during export" msgstr "supprimer autant que possible de la clef pendant l'exportation" -#: g10/export.c:133 +#: g10/export.c:138 +#, fuzzy +#| msgid "generate a revocation certificate" +msgid "export only revocation certificates" +msgstr "générer un certificat de révocation" + +#: g10/export.c:141 msgid "use the GnuPG key backup format" msgstr "" -#: g10/export.c:1291 +#: g10/export.c:1306 msgid " - skipped" msgstr " — ignoré" -#: g10/export.c:1324 g10/import.c:2085 g10/openfile.c:200 g10/openfile.c:294 +#: g10/export.c:1339 g10/import.c:2089 g10/openfile.c:200 g10/openfile.c:294 #: g10/sign.c:1012 g10/sign.c:1326 #, c-format msgid "writing to '%s'\n" msgstr "écriture de « %s »\n" -#: g10/export.c:1769 +#: g10/export.c:1784 #, c-format msgid "key %s: key material on-card - skipped\n" msgstr "clef %s : matériel de clef sur la carte — ignorée\n" -#: g10/export.c:1964 +#: g10/export.c:2052 #, c-format msgid "exporting secret keys not allowed\n" msgstr "il est interdit d'exporter les clefs secrètes\n" -#: g10/export.c:2041 +#: g10/export.c:2129 #, c-format msgid "key %s: PGP 2.x style key - skipped\n" msgstr "clef %s : clef de type PGP 2.x — ignorée\n" -#: g10/export.c:2135 +#: g10/export.c:2254 #, c-format msgid "WARNING: nothing exported\n" msgstr "Attention : rien n'a été exporté\n" -#: g10/export.c:2432 g10/plaintext.c:153 g10/plaintext.c:162 +#: g10/export.c:2551 g10/plaintext.c:153 g10/plaintext.c:162 #: g10/plaintext.c:168 g10/plaintext.c:191 #, c-format msgid "error creating '%s': %s\n" @@ -2728,292 +2734,292 @@ "utilisation de la sous-clef %s à la place de la clef\n" "principale %s\n" -#: g10/getkey.c:4446 g10/gpg.c:2137 +#: g10/getkey.c:4446 g10/gpg.c:2146 #, fuzzy, c-format #| msgid "invalid argument for option \"%.50s\"\n" msgid "valid values for option '%s':\n" msgstr "argument incorrect pour l'option « %.50s »\n" -#: g10/gpg.c:443 sm/gpgsm.c:212 +#: g10/gpg.c:444 sm/gpgsm.c:212 msgid "make a signature" msgstr "faire une signature" -#: g10/gpg.c:444 +#: g10/gpg.c:445 msgid "make a clear text signature" msgstr "faire une signature en texte clair" -#: g10/gpg.c:446 sm/gpgsm.c:214 +#: g10/gpg.c:447 sm/gpgsm.c:214 msgid "make a detached signature" msgstr "faire une signature détachée" -#: g10/gpg.c:447 sm/gpgsm.c:215 +#: g10/gpg.c:448 sm/gpgsm.c:215 msgid "encrypt data" msgstr "chiffrer les données" -#: g10/gpg.c:449 +#: g10/gpg.c:450 msgid "encryption only with symmetric cipher" msgstr "chiffrement symétrique seulement" -#: g10/gpg.c:451 sm/gpgsm.c:217 +#: g10/gpg.c:452 sm/gpgsm.c:217 msgid "decrypt data (default)" msgstr "déchiffrer les données (défaut)" -#: g10/gpg.c:453 sm/gpgsm.c:218 +#: g10/gpg.c:454 sm/gpgsm.c:218 msgid "verify a signature" msgstr "vérifier une signature" -#: g10/gpg.c:455 sm/gpgsm.c:219 +#: g10/gpg.c:456 sm/gpgsm.c:219 msgid "list keys" msgstr "afficher les clefs" -#: g10/gpg.c:457 +#: g10/gpg.c:458 msgid "list keys and signatures" msgstr "afficher les clefs et les signatures" -#: g10/gpg.c:460 +#: g10/gpg.c:461 msgid "list and check key signatures" msgstr "afficher et vérifier les signatures de clefs" -#: g10/gpg.c:462 sm/gpgsm.c:224 +#: g10/gpg.c:463 sm/gpgsm.c:224 msgid "list keys and fingerprints" msgstr "afficher les clefs et les empreintes" -#: g10/gpg.c:463 sm/gpgsm.c:222 +#: g10/gpg.c:464 sm/gpgsm.c:222 msgid "list secret keys" msgstr "afficher les clefs secrètes" -#: g10/gpg.c:465 sm/gpgsm.c:225 +#: g10/gpg.c:466 sm/gpgsm.c:225 msgid "generate a new key pair" msgstr "générer une nouvelle paire de clefs" -#: g10/gpg.c:468 +#: g10/gpg.c:469 msgid "quickly generate a new key pair" msgstr "générer rapidement une nouvelle paire de clefs" -#: g10/gpg.c:471 +#: g10/gpg.c:472 #, fuzzy #| msgid "quickly generate a new key pair" msgid "quickly add a new user-id" msgstr "générer rapidement une nouvelle paire de clefs" -#: g10/gpg.c:476 +#: g10/gpg.c:477 #, fuzzy #| msgid "quickly generate a new key pair" msgid "quickly revoke a user-id" msgstr "générer rapidement une nouvelle paire de clefs" -#: g10/gpg.c:479 +#: g10/gpg.c:480 #, fuzzy #| msgid "quickly generate a new key pair" msgid "quickly set a new expiration date" msgstr "générer rapidement une nouvelle paire de clefs" -#: g10/gpg.c:482 +#: g10/gpg.c:483 msgid "full featured key pair generation" msgstr "générer une paire de clefs complètes" -#: g10/gpg.c:485 +#: g10/gpg.c:486 msgid "generate a revocation certificate" msgstr "générer un certificat de révocation" -#: g10/gpg.c:488 sm/gpgsm.c:228 +#: g10/gpg.c:489 sm/gpgsm.c:228 msgid "remove keys from the public keyring" msgstr "supprimer les clefs du porte-clefs public" -#: g10/gpg.c:490 +#: g10/gpg.c:491 msgid "remove keys from the secret keyring" msgstr "supprimer les clefs du porte-clefs secret" -#: g10/gpg.c:492 +#: g10/gpg.c:493 msgid "quickly sign a key" msgstr "signer rapidement une clef" -#: g10/gpg.c:494 +#: g10/gpg.c:495 msgid "quickly sign a key locally" msgstr "signer rapidement une clef localement" -#: g10/gpg.c:496 +#: g10/gpg.c:497 #, fuzzy #| msgid "quickly generate a new key pair" msgid "quickly revoke a key signature" msgstr "générer rapidement une nouvelle paire de clefs" -#: g10/gpg.c:497 +#: g10/gpg.c:498 msgid "sign a key" msgstr "signer une clef" -#: g10/gpg.c:498 +#: g10/gpg.c:499 msgid "sign a key locally" msgstr "signer une clef localement" -#: g10/gpg.c:499 +#: g10/gpg.c:500 msgid "sign or edit a key" msgstr "signer ou éditer une clef" -#: g10/gpg.c:501 sm/gpgsm.c:246 +#: g10/gpg.c:502 sm/gpgsm.c:246 msgid "change a passphrase" msgstr "modifier une phrase secrète" -#: g10/gpg.c:505 +#: g10/gpg.c:506 msgid "export keys" msgstr "exporter les clefs" -#: g10/gpg.c:506 +#: g10/gpg.c:507 msgid "export keys to a keyserver" msgstr "exporter les clefs vers un serveur de clefs" -#: g10/gpg.c:507 +#: g10/gpg.c:508 msgid "import keys from a keyserver" msgstr "importer les clefs d'un serveur de clefs" -#: g10/gpg.c:510 +#: g10/gpg.c:511 msgid "search for keys on a keyserver" msgstr "chercher les clefs avec un serveur de clefs" -#: g10/gpg.c:512 +#: g10/gpg.c:513 msgid "update all keys from a keyserver" msgstr "mettre à jour les clefs depuis un serveur" -#: g10/gpg.c:520 +#: g10/gpg.c:521 msgid "import/merge keys" msgstr "importer ou fusionner les clefs" -#: g10/gpg.c:523 +#: g10/gpg.c:524 msgid "print the card status" msgstr "afficher l'état de la carte" -#: g10/gpg.c:524 +#: g10/gpg.c:525 msgid "change data on a card" msgstr "modifier les données d'une carte" -#: g10/gpg.c:526 +#: g10/gpg.c:527 msgid "change a card's PIN" msgstr "modifier le code personnel d'une carte" -#: g10/gpg.c:538 +#: g10/gpg.c:539 msgid "update the trust database" msgstr "mettre la base de confiance à jour" -#: g10/gpg.c:548 +#: g10/gpg.c:549 msgid "print message digests" msgstr "indiquer les fonctions de hachage" -#: g10/gpg.c:552 sm/gpgsm.c:241 +#: g10/gpg.c:553 sm/gpgsm.c:241 msgid "run in server mode" msgstr "exécuter en mode serveur" -#: g10/gpg.c:554 +#: g10/gpg.c:555 msgid "|VALUE|set the TOFU policy for a key" msgstr "" -#: g10/gpg.c:594 +#: g10/gpg.c:595 msgid "|NAME|use NAME as default secret key" msgstr "|NOM|utiliser le NOM comme clef secrète par défaut" -#: g10/gpg.c:596 sm/gpgsm.c:332 +#: g10/gpg.c:597 sm/gpgsm.c:332 msgid "|NAME|encrypt to user ID NAME as well" msgstr "|NOM|chiffrer aussi pour l'identité NOM" -#: g10/gpg.c:604 +#: g10/gpg.c:605 msgid "|SPEC|set up email aliases" msgstr "|SPEC|configurer les alias d'adresse" -#: g10/gpg.c:616 +#: g10/gpg.c:617 msgid "use strict OpenPGP behavior" msgstr "utiliser le comportement strict d'OpenPGP" -#: g10/gpg.c:641 kbx/kbxutil.c:90 sm/gpgsm.c:412 tools/gpgconf.c:112 +#: g10/gpg.c:642 kbx/kbxutil.c:90 sm/gpgsm.c:412 tools/gpgconf.c:112 msgid "do not make any changes" msgstr "ne rien modifier" -#: g10/gpg.c:642 +#: g10/gpg.c:643 msgid "prompt before overwriting" msgstr "demander avant d'écraser un fichier" -#: g10/gpg.c:689 sm/gpgsm.c:304 +#: g10/gpg.c:690 sm/gpgsm.c:304 #, fuzzy #| msgid "Options controlling the security" msgid "Options controlling the input" msgstr "Options contrôlant la sécurité" -#: g10/gpg.c:707 sm/gpgsm.c:314 +#: g10/gpg.c:708 sm/gpgsm.c:314 #, fuzzy #| msgid "Options controlling the diagnostic output" msgid "Options controlling the output" msgstr "Options contrôlant la sortie de diagnostique" -#: g10/gpg.c:709 sm/gpgsm.c:316 +#: g10/gpg.c:710 sm/gpgsm.c:316 msgid "create ascii armored output" msgstr "créer une sortie ASCII avec armure" -#: g10/gpg.c:713 g10/gpgv.c:82 sm/gpgsm.c:321 +#: g10/gpg.c:714 g10/gpgv.c:82 sm/gpgsm.c:321 msgid "|FILE|write output to FILE" msgstr "|FICHIER|écrire la sortie dans le FICHIER" -#: g10/gpg.c:726 +#: g10/gpg.c:727 msgid "use canonical text mode" msgstr "utiliser le mode texte canonique" -#: g10/gpg.c:743 +#: g10/gpg.c:744 msgid "|N|set compress level to N (0 disables)" msgstr "|N|niveau de compression N (0 désactive)" -#: g10/gpg.c:750 sm/gpgsm.c:347 +#: g10/gpg.c:751 sm/gpgsm.c:347 #, fuzzy #| msgid "Options controlling the interactivity and enforcement" msgid "Options controlling key import and export" msgstr "Options contrôlant l'interactivité et la mise en application" -#: g10/gpg.c:753 +#: g10/gpg.c:754 msgid "|MECHANISMS|use MECHANISMS to locate keys by mail address" msgstr "|MÉCANISMES|utiliser les MÉCANISMES pour localiser les clefs" -#: g10/gpg.c:756 +#: g10/gpg.c:757 #, fuzzy #| msgid "import keys from a keyserver" msgid "import missing key from a signature" msgstr "importer les clefs d'un serveur de clefs" -#: g10/gpg.c:761 +#: g10/gpg.c:762 #, fuzzy #| msgid "list and check key signatures" msgid "include the public key in signatures" msgstr "afficher et vérifier les signatures de clefs" -#: g10/gpg.c:764 sm/gpgsm.c:350 +#: g10/gpg.c:765 sm/gpgsm.c:350 msgid "disable all access to the dirmngr" msgstr "désactiver tous les accès au dirmngr" -#: g10/gpg.c:776 sm/gpgsm.c:357 +#: g10/gpg.c:777 sm/gpgsm.c:357 #, fuzzy #| msgid "Options controlling the configuration" msgid "Options controlling key listings" msgstr "Options contrôlant la configuration" -#: g10/gpg.c:805 sm/gpgsm.c:324 +#: g10/gpg.c:806 sm/gpgsm.c:324 #, fuzzy #| msgid "list secret keys" msgid "Options to specify keys" msgstr "afficher les clefs secrètes" # NOTE: Extra initial space to realign the output (maybe wchar issue) -#: g10/gpg.c:807 sm/gpgsm.c:326 +#: g10/gpg.c:808 sm/gpgsm.c:326 msgid "|USER-ID|encrypt for USER-ID" msgstr "|IDENTITÉ| chiffrer pour l'IDENTITÉ" -#: g10/gpg.c:815 sm/gpgsm.c:328 +#: g10/gpg.c:816 sm/gpgsm.c:328 msgid "|USER-ID|use USER-ID to sign or decrypt" msgstr "|IDENTITÉ| utiliser l'IDENTITÉ pour signer ou déchiffrer" -#: g10/gpg.c:866 sm/gpgsm.c:396 +#: g10/gpg.c:867 sm/gpgsm.c:396 msgid "Options for unattended use" msgstr "" -#: g10/gpg.c:885 sm/gpgsm.c:408 dirmngr/dirmngr.c:294 +#: g10/gpg.c:886 sm/gpgsm.c:408 dirmngr/dirmngr.c:294 msgid "Other options" msgstr "" -#: g10/gpg.c:953 sm/gpgsm.c:440 +#: g10/gpg.c:955 sm/gpgsm.c:440 msgid "" "@\n" "(See the man page for a complete listing of all commands and options)\n" @@ -3022,7 +3028,7 @@ "(Consultez la page de manuel pour obtenir une liste complète des commandes\n" "et options)\n" -#: g10/gpg.c:956 +#: g10/gpg.c:958 #, fuzzy #| msgid "" #| "@\n" @@ -3052,11 +3058,11 @@ " --list-keys [noms] montrer les clefs\n" " --fingerprint [noms] montrer les empreintes\n" -#: g10/gpg.c:1130 +#: g10/gpg.c:1139 msgid "Usage: @GPG@ [options] [files] (-h for help)" msgstr "Utilisation : @GPG@ [options] [fichiers] (-h pour l'aide)" -#: g10/gpg.c:1133 +#: g10/gpg.c:1142 msgid "" "Syntax: @GPG@ [options] [files]\n" "Sign, check, encrypt or decrypt\n" @@ -3066,7 +3072,7 @@ "Signer, vérifier, chiffrer ou déchiffrer\n" "L'opération par défaut dépend des données entrées\n" -#: g10/gpg.c:1144 sm/gpgsm.c:624 +#: g10/gpg.c:1153 sm/gpgsm.c:624 msgid "" "\n" "Supported algorithms:\n" @@ -3074,87 +3080,87 @@ "\n" "Algorithmes pris en charge :\n" -#: g10/gpg.c:1147 +#: g10/gpg.c:1156 msgid "Pubkey: " msgstr "Clef publique : " -#: g10/gpg.c:1154 g10/keyedit.c:3338 +#: g10/gpg.c:1163 g10/keyedit.c:3338 msgid "Cipher: " msgstr "Chiffrement : " -#: g10/gpg.c:1161 +#: g10/gpg.c:1170 msgid "Hash: " msgstr "Hachage : " -#: g10/gpg.c:1168 g10/keyedit.c:3404 +#: g10/gpg.c:1177 g10/keyedit.c:3404 msgid "Compression: " msgstr "Compression : " -#: g10/gpg.c:1241 sm/gpgsm.c:698 +#: g10/gpg.c:1250 sm/gpgsm.c:698 #, c-format msgid "usage: %s [options] %s\n" msgstr "utilisation : %s [options] %s\n" -#: g10/gpg.c:1436 sm/gpgsm.c:791 +#: g10/gpg.c:1445 sm/gpgsm.c:791 #, c-format msgid "conflicting commands\n" msgstr "commandes en conflit\n" -#: g10/gpg.c:1454 +#: g10/gpg.c:1463 #, c-format msgid "no = sign found in group definition '%s'\n" msgstr "aucun signe = trouvé dans la définition du groupe « %s »\n" -#: g10/gpg.c:1652 +#: g10/gpg.c:1661 #, c-format msgid "WARNING: unsafe ownership on homedir '%s'\n" msgstr "" "Attention : le propriétaire du répertoire personnel « %s »\n" " n'est pas sûr\n" -#: g10/gpg.c:1655 +#: g10/gpg.c:1664 #, c-format msgid "WARNING: unsafe ownership on configuration file '%s'\n" msgstr "" "Attention : le propriétaire du fichier de configuration « %s »\n" " n'est pas sûr\n" -#: g10/gpg.c:1658 +#: g10/gpg.c:1667 #, c-format msgid "WARNING: unsafe ownership on extension '%s'\n" msgstr "" "Attention : le propriétaire de l'extension « %s »\n" " n'est pas sûr\n" -#: g10/gpg.c:1664 +#: g10/gpg.c:1673 #, c-format msgid "WARNING: unsafe permissions on homedir '%s'\n" msgstr "" "Attention : les droits du répertoire personnel « %s »\n" " ne sont pas sûrs\n" -#: g10/gpg.c:1667 +#: g10/gpg.c:1676 #, c-format msgid "WARNING: unsafe permissions on configuration file '%s'\n" msgstr "" "Attention : les droits du fichier de configuration « %s »\n" " ne sont pas sûrs\n" -#: g10/gpg.c:1670 +#: g10/gpg.c:1679 #, c-format msgid "WARNING: unsafe permissions on extension '%s'\n" msgstr "" "Attention : les droits de l'extension « %s »\n" " ne sont pas sûrs\n" -#: g10/gpg.c:1676 +#: g10/gpg.c:1685 #, c-format msgid "WARNING: unsafe enclosing directory ownership on homedir '%s'\n" msgstr "" "Attention : le propriétaire du répertoire contenant le répertoire personnel\n" " « %s » n'est pas sûr\n" -#: g10/gpg.c:1679 +#: g10/gpg.c:1688 #, c-format msgid "" "WARNING: unsafe enclosing directory ownership on configuration file '%s'\n" @@ -3162,21 +3168,21 @@ "Attention : le propriétaire du répertoire contenant le fichier de\n" " configuration « %s » n'est pas sûr\n" -#: g10/gpg.c:1682 +#: g10/gpg.c:1691 #, c-format msgid "WARNING: unsafe enclosing directory ownership on extension '%s'\n" msgstr "" "Attention : le propriétaire du répertoire contenant l'extension\n" " « %s » n'est pas sûr\n" -#: g10/gpg.c:1688 +#: g10/gpg.c:1697 #, c-format msgid "WARNING: unsafe enclosing directory permissions on homedir '%s'\n" msgstr "" "Attention : les droits du répertoire contenant le répertoire personnel\n" " « %s » ne sont pas sûrs\n" -#: g10/gpg.c:1691 +#: g10/gpg.c:1700 #, c-format msgid "" "WARNING: unsafe enclosing directory permissions on configuration file '%s'\n" @@ -3184,467 +3190,467 @@ "Attention : les droits du répertoire contenant le fichier de configuration\n" " « %s » ne sont pas sûrs\n" -#: g10/gpg.c:1694 +#: g10/gpg.c:1703 #, c-format msgid "WARNING: unsafe enclosing directory permissions on extension '%s'\n" msgstr "" "Attention : les droits du répertoire contenant l'extension\n" " « %s » ne sont pas sûrs\n" -#: g10/gpg.c:1910 +#: g10/gpg.c:1919 #, c-format msgid "unknown configuration item '%s'\n" msgstr "élément de configuration « %s » inconnu\n" -#: g10/gpg.c:2009 +#: g10/gpg.c:2018 msgid "display photo IDs during key listings" msgstr "montrer les photos d'identité en affichant les clefs" -#: g10/gpg.c:2011 +#: g10/gpg.c:2020 msgid "show key usage information during key listings" msgstr "indiquer les informations sur l'utilisation en affichant les clefs" -#: g10/gpg.c:2013 +#: g10/gpg.c:2022 msgid "show policy URLs during signature listings" msgstr "montrer les URL de politique en affichant les signatures" -#: g10/gpg.c:2015 +#: g10/gpg.c:2024 msgid "show all notations during signature listings" msgstr "montrer toutes les notations en affichant les signatures" -#: g10/gpg.c:2017 +#: g10/gpg.c:2026 msgid "show IETF standard notations during signature listings" msgstr "utiliser les notations aux normes IETF en affichant les signatures" -#: g10/gpg.c:2021 +#: g10/gpg.c:2030 msgid "show user-supplied notations during signature listings" msgstr "" "utiliser les notations fournies par l'utilisateur en affichant les signatures" -#: g10/gpg.c:2023 +#: g10/gpg.c:2032 msgid "show preferred keyserver URLs during signature listings" msgstr "" "montrer les URL des serveurs de clefs favoris en affichant les signatures" -#: g10/gpg.c:2025 +#: g10/gpg.c:2034 msgid "show user ID validity during key listings" msgstr "indiquer la validité de l'identité en affichant les clefs" -#: g10/gpg.c:2027 +#: g10/gpg.c:2036 msgid "show revoked and expired user IDs in key listings" msgstr "montrer les identités révoquées et expirées en affichant les clefs" -#: g10/gpg.c:2029 +#: g10/gpg.c:2038 msgid "show revoked and expired subkeys in key listings" msgstr "indiquer les sous-clefs révoquées et expirées en affichant les clefs" -#: g10/gpg.c:2031 +#: g10/gpg.c:2040 msgid "show the keyring name in key listings" msgstr "montrer le nom du porte-clefs en affichant les clefs" -#: g10/gpg.c:2033 +#: g10/gpg.c:2042 msgid "show expiration dates during signature listings" msgstr "montrer les dates d'expiration en affichant les signatures" -#: g10/gpg.c:2148 +#: g10/gpg.c:2157 #, fuzzy, c-format #| msgid "unknown option '%s'\n" msgid "unknown TOFU policy '%s'\n" msgstr "option « %s » inconnue\n" -#: g10/gpg.c:2150 +#: g10/gpg.c:2159 #, c-format msgid "(use \"help\" to list choices)\n" msgstr "" -#: g10/gpg.c:2240 g10/keyedit.c:1719 +#: g10/gpg.c:2249 g10/keyedit.c:1719 #, c-format msgid "This command is not allowed while in %s mode.\n" msgstr "Cette commande n'est pas permise en mode %s.\n" -#: g10/gpg.c:2878 g10/gpg.c:3718 g10/gpg.c:3730 +#: g10/gpg.c:2896 g10/gpg.c:3736 g10/gpg.c:3748 #, c-format msgid "Note: %s is not for normal use!\n" msgstr "Remarque : %s n'est pas pour une utilisation normale.\n" -#: g10/gpg.c:3053 g10/gpg.c:3065 +#: g10/gpg.c:3071 g10/gpg.c:3083 #, c-format msgid "'%s' is not a valid signature expiration\n" msgstr "« %s » n'est pas une date d'expiration de signature valable\n" -#: g10/gpg.c:3087 +#: g10/gpg.c:3105 #, fuzzy, c-format #| msgid "line %d: not a valid email address\n" msgid "\"%s\" is not a proper mail address\n" msgstr "ligne %d : ce n'est pas une adresse électronique valable\n" -#: g10/gpg.c:3119 sm/gpgsm.c:1121 +#: g10/gpg.c:3137 sm/gpgsm.c:1121 #, c-format msgid "invalid pinentry mode '%s'\n" msgstr "mode pinentry « %s » incorrect\n" -#: g10/gpg.c:3125 sm/gpgsm.c:1127 +#: g10/gpg.c:3143 sm/gpgsm.c:1127 #, fuzzy, c-format #| msgid "invalid argument for option \"%.50s\"\n" msgid "invalid request origin '%s'\n" msgstr "argument incorrect pour l'option « %.50s »\n" -#: g10/gpg.c:3179 +#: g10/gpg.c:3197 #, c-format msgid "'%s' is not a valid character set\n" msgstr "« %s » n'est pas un jeu de caractères valable\n" -#: g10/gpg.c:3201 g10/gpg.c:3415 g10/keyedit.c:5338 +#: g10/gpg.c:3219 g10/gpg.c:3433 g10/keyedit.c:5338 #, c-format msgid "could not parse keyserver URL\n" msgstr "impossible d'analyser l'URL du serveur de clefs\n" -#: g10/gpg.c:3219 +#: g10/gpg.c:3237 #, c-format msgid "%s:%d: invalid keyserver options\n" msgstr "%s : %d : les options du serveur de clefs sont incorrectes\n" -#: g10/gpg.c:3222 +#: g10/gpg.c:3240 #, c-format msgid "invalid keyserver options\n" msgstr "les options du serveur de clefs sont incorrectes\n" -#: g10/gpg.c:3229 +#: g10/gpg.c:3247 #, c-format msgid "%s:%d: invalid import options\n" msgstr "%s : %d : options d'importation incorrectes\n" -#: g10/gpg.c:3232 +#: g10/gpg.c:3250 #, c-format msgid "invalid import options\n" msgstr "options d'importation incorrectes\n" -#: g10/gpg.c:3238 g10/gpg.c:3253 +#: g10/gpg.c:3256 g10/gpg.c:3271 #, fuzzy, c-format #| msgid "invalid list options\n" msgid "invalid filter option: %s\n" msgstr "options de liste incorrectes\n" -#: g10/gpg.c:3244 +#: g10/gpg.c:3262 #, c-format msgid "%s:%d: invalid export options\n" msgstr "%s : %d : options d'exportation incorrectes\n" -#: g10/gpg.c:3247 +#: g10/gpg.c:3265 #, c-format msgid "invalid export options\n" msgstr "options d'exportation incorrectes\n" -#: g10/gpg.c:3259 +#: g10/gpg.c:3277 #, c-format msgid "%s:%d: invalid list options\n" msgstr "%s : %d : options de liste incorrectes\n" -#: g10/gpg.c:3262 +#: g10/gpg.c:3280 #, c-format msgid "invalid list options\n" msgstr "options de liste incorrectes\n" -#: g10/gpg.c:3270 +#: g10/gpg.c:3288 msgid "display photo IDs during signature verification" msgstr "montrer les photos d'identité en vérifiant les signatures" -#: g10/gpg.c:3272 +#: g10/gpg.c:3290 msgid "show policy URLs during signature verification" msgstr "montrer les URL de politique en vérifiant les signatures" -#: g10/gpg.c:3274 +#: g10/gpg.c:3292 msgid "show all notations during signature verification" msgstr "montrer toutes les notations en vérifiant les signatures" -#: g10/gpg.c:3276 +#: g10/gpg.c:3294 msgid "show IETF standard notations during signature verification" msgstr "utiliser les notations aux normes IETF en vérifiant les signatures" -#: g10/gpg.c:3280 +#: g10/gpg.c:3298 msgid "show user-supplied notations during signature verification" msgstr "" "utiliser les notations fournies par l'utilisateur en vérifiant les signatures" -#: g10/gpg.c:3282 +#: g10/gpg.c:3300 msgid "show preferred keyserver URLs during signature verification" msgstr "" "montrer les URL des serveurs de clefs favoris en vérifiant les signatures" -#: g10/gpg.c:3284 +#: g10/gpg.c:3302 msgid "show user ID validity during signature verification" msgstr "indiquer la validité de l'identité en vérifiant les signatures" -#: g10/gpg.c:3286 +#: g10/gpg.c:3304 msgid "show revoked and expired user IDs in signature verification" msgstr "" "montrer les identités révoquées et expirées en vérifiant les signatures" -#: g10/gpg.c:3288 +#: g10/gpg.c:3306 msgid "show only the primary user ID in signature verification" msgstr "ne montrer que l'identité principale en vérifiant les signatures" -#: g10/gpg.c:3290 +#: g10/gpg.c:3308 msgid "validate signatures with PKA data" msgstr "valider les signatures avec les données PKA" -#: g10/gpg.c:3292 +#: g10/gpg.c:3310 msgid "elevate the trust of signatures with valid PKA data" msgstr "augmenter la confiance des signatures avec des données PKA valables" -#: g10/gpg.c:3299 +#: g10/gpg.c:3317 #, c-format msgid "%s:%d: invalid verify options\n" msgstr "%s : %d : options de vérification incorrectes\n" -#: g10/gpg.c:3302 +#: g10/gpg.c:3320 #, c-format msgid "invalid verify options\n" msgstr "options de vérification incorrectes\n" -#: g10/gpg.c:3309 +#: g10/gpg.c:3327 #, c-format msgid "unable to set exec-path to %s\n" msgstr "impossible de configurer le chemin d'exécution à %s\n" -#: g10/gpg.c:3513 +#: g10/gpg.c:3531 #, c-format msgid "%s:%d: invalid auto-key-locate list\n" msgstr "%s : %d : liste de recherche automatique de clef incorrecte\n" -#: g10/gpg.c:3516 +#: g10/gpg.c:3534 #, c-format msgid "invalid auto-key-locate list\n" msgstr "liste de recherche automatique de clef incorrecte\n" -#: g10/gpg.c:3700 sm/gpgsm.c:1492 +#: g10/gpg.c:3718 sm/gpgsm.c:1492 #, c-format msgid "WARNING: program may create a core file!\n" msgstr "Attention : le programme pourrait créer un fichier « core ».\n" -#: g10/gpg.c:3711 +#: g10/gpg.c:3729 #, c-format msgid "WARNING: %s overrides %s\n" msgstr "Attention : %s remplace %s\n" -#: g10/gpg.c:3720 +#: g10/gpg.c:3738 #, c-format msgid "%s not allowed with %s!\n" msgstr "%s n'est pas permis avec %s.\n" -#: g10/gpg.c:3723 +#: g10/gpg.c:3741 #, c-format msgid "%s makes no sense with %s!\n" msgstr "%s n'a aucun sens avec %s.\n" -#: g10/gpg.c:3738 sm/gpgsm.c:1509 dirmngr/dirmngr.c:1205 +#: g10/gpg.c:3756 sm/gpgsm.c:1509 dirmngr/dirmngr.c:1205 #, c-format msgid "WARNING: running with faked system time: " msgstr "Attention : exécution avec un système de temps contrefait : " -#: g10/gpg.c:3759 +#: g10/gpg.c:3777 #, c-format msgid "will not run with insecure memory due to %s\n" msgstr "ne sera pas exécuté avec une mémoire non sécurisée à cause de %s\n" -#: g10/gpg.c:3804 g10/gpg.c:3828 sm/gpgsm.c:1579 +#: g10/gpg.c:3824 g10/gpg.c:3848 sm/gpgsm.c:1579 #, c-format msgid "selected cipher algorithm is invalid\n" msgstr "l'algorithme de chiffrement sélectionné est incorrect\n" -#: g10/gpg.c:3816 +#: g10/gpg.c:3836 #, c-format msgid "selected compression algorithm is invalid\n" msgstr "l'algorithme de compression sélectionné est incorrect\n" -#: g10/gpg.c:3822 +#: g10/gpg.c:3842 #, c-format msgid "selected certification digest algorithm is invalid\n" msgstr "la fonction de hachage de certification sélectionnée est incorrecte\n" -#: g10/gpg.c:3837 +#: g10/gpg.c:3857 #, c-format msgid "completes-needed must be greater than 0\n" msgstr "« completes-needed » doit être supérieur à 0\n" -#: g10/gpg.c:3839 +#: g10/gpg.c:3859 #, c-format msgid "marginals-needed must be greater than 1\n" msgstr "« marginals-needed » doit être supérieur à 1\n" -#: g10/gpg.c:3841 +#: g10/gpg.c:3861 #, c-format msgid "max-cert-depth must be in the range from 1 to 255\n" msgstr "« max-cert-depth » doit être compris entre 1 et 255\n" -#: g10/gpg.c:3843 +#: g10/gpg.c:3863 #, c-format msgid "invalid default-cert-level; must be 0, 1, 2, or 3\n" msgstr "« default-cert-level » incorrect ; doit être 0, 1, 2 ou 3\n" -#: g10/gpg.c:3845 +#: g10/gpg.c:3865 #, c-format msgid "invalid min-cert-level; must be 1, 2, or 3\n" msgstr "« min-cert-level » incorrect ; doit être , 1, 2 ou 3\n" -#: g10/gpg.c:3849 +#: g10/gpg.c:3869 #, c-format msgid "Note: simple S2K mode (0) is strongly discouraged\n" msgstr "Remarque : le mode S2K simple (0) est fortement déconseillé\n" -#: g10/gpg.c:3853 +#: g10/gpg.c:3873 #, c-format msgid "invalid S2K mode; must be 0, 1 or 3\n" msgstr "mode S2K incorrect ; doit être 0, 1 ou 3\n" -#: g10/gpg.c:3860 +#: g10/gpg.c:3880 #, c-format msgid "invalid default preferences\n" msgstr "préférences par défaut incorrectes\n" -#: g10/gpg.c:3864 +#: g10/gpg.c:3884 #, c-format msgid "invalid personal cipher preferences\n" msgstr "préférences personnelles de chiffrement incorrectes\n" -#: g10/gpg.c:3868 +#: g10/gpg.c:3888 #, c-format msgid "invalid personal digest preferences\n" msgstr "préférences personnelles de hachage incorrectes\n" -#: g10/gpg.c:3872 +#: g10/gpg.c:3892 #, c-format msgid "invalid personal compress preferences\n" msgstr "préférences personnelles de compression incorrectes\n" -#: g10/gpg.c:3908 +#: g10/gpg.c:3928 #, c-format msgid "%s does not yet work with %s\n" msgstr "%s ne fonctionne pas encore avec %s\n" -#: g10/gpg.c:3971 +#: g10/gpg.c:3991 #, fuzzy, c-format #| msgid "you may not use compression algorithm '%s' while in %s mode\n" msgid "compression algorithm '%s' may not be used in %s mode\n" msgstr "impossible d'utiliser l'algorithme de compression « %s » en mode %s.\n" -#: g10/gpg.c:4115 +#: g10/gpg.c:4135 #, c-format msgid "failed to initialize the TrustDB: %s\n" msgstr "impossible d'initialiser la base de confiance : %s\n" -#: g10/gpg.c:4127 +#: g10/gpg.c:4147 #, c-format msgid "WARNING: recipients (-r) given without using public key encryption\n" msgstr "" "Attention : les destinataires (-r) indiqués n'utilisent pas\n" " de clef publique pour le chiffrement\n" -#: g10/gpg.c:4199 +#: g10/gpg.c:4219 #, c-format msgid "symmetric encryption of '%s' failed: %s\n" msgstr "échec du chiffrement symétrique de « %s » : %s\n" -#: g10/gpg.c:4228 +#: g10/gpg.c:4248 #, c-format msgid "you cannot use --symmetric --encrypt with --s2k-mode 0\n" msgstr "impossible d'utiliser --symmetric --encrypt avec --s2k-mode 0\n" -#: g10/gpg.c:4231 +#: g10/gpg.c:4251 #, fuzzy, c-format #| msgid "you cannot use --symmetric --encrypt while in %s mode\n" msgid "you cannot use --symmetric --encrypt in %s mode\n" msgstr "impossible d'utiliser --symmetric --encrypt en mode %s\n" -#: g10/gpg.c:4289 +#: g10/gpg.c:4309 #, c-format msgid "you cannot use --symmetric --sign --encrypt with --s2k-mode 0\n" msgstr "impossible d'utiliser --symmetric --sign --encrypt avec --s2k-mode 0\n" -#: g10/gpg.c:4292 +#: g10/gpg.c:4312 #, fuzzy, c-format #| msgid "you cannot use --symmetric --sign --encrypt while in %s mode\n" msgid "you cannot use --symmetric --sign --encrypt in %s mode\n" msgstr "impossible d'utiliser --symmetric --sign --encrypt en mode %s\n" -#: g10/gpg.c:4692 g10/keyserver.c:1648 +#: g10/gpg.c:4712 g10/keyserver.c:1648 #, c-format msgid "keyserver send failed: %s\n" msgstr "échec d'envoi vers le serveur de clefs : %s\n" -#: g10/gpg.c:4697 +#: g10/gpg.c:4717 #, c-format msgid "keyserver receive failed: %s\n" msgstr "échec de réception depuis le serveur de clefs : %s\n" -#: g10/gpg.c:4703 +#: g10/gpg.c:4723 #, c-format msgid "key export failed: %s\n" msgstr "échec d'exportation de la clef : %s\n" -#: g10/gpg.c:4716 +#: g10/gpg.c:4736 #, fuzzy, c-format #| msgid "key export failed: %s\n" msgid "export as ssh key failed: %s\n" msgstr "échec d'exportation de la clef : %s\n" -#: g10/gpg.c:4728 +#: g10/gpg.c:4748 #, c-format msgid "keyserver search failed: %s\n" msgstr "échec de recherche au sein du serveur de clefs : %s\n" -#: g10/gpg.c:4741 +#: g10/gpg.c:4761 #, c-format msgid "keyserver refresh failed: %s\n" msgstr "échec de rafraîchissement par le serveur de clefs : %s\n" -#: g10/gpg.c:4810 +#: g10/gpg.c:4830 #, c-format msgid "dearmoring failed: %s\n" msgstr "échec de déconstruction d'une armure : %s\n" -#: g10/gpg.c:4821 +#: g10/gpg.c:4841 #, c-format msgid "enarmoring failed: %s\n" msgstr "échec de construction d'une armure : %s \n" -#: g10/gpg.c:4913 +#: g10/gpg.c:4933 #, c-format msgid "invalid hash algorithm '%s'\n" msgstr "algorithme de hachage « %s » incorrect\n" -#: g10/gpg.c:5065 g10/tofu.c:2153 +#: g10/gpg.c:5085 g10/tofu.c:2153 #, fuzzy, c-format #| msgid "error loading certificate '%s': %s\n" msgid "error parsing key specification '%s': %s\n" msgstr "erreur de chargement du certificat « %s » : %s\n" -#: g10/gpg.c:5078 +#: g10/gpg.c:5098 #, c-format msgid "'%s' does not appear to be a valid key ID, fingerprint or keygrip\n" msgstr "" -#: g10/gpg.c:5134 +#: g10/gpg.c:5154 #, c-format msgid "WARNING: no command supplied. Trying to guess what you mean ...\n" msgstr "" -#: g10/gpg.c:5145 +#: g10/gpg.c:5165 #, c-format msgid "Go ahead and type your message ...\n" msgstr "Vous pouvez taper votre message…\n" -#: g10/gpg.c:5490 +#: g10/gpg.c:5510 #, c-format msgid "the given certification policy URL is invalid\n" msgstr "l'URL de politique de certification donnée est incorrecte\n" -#: g10/gpg.c:5492 +#: g10/gpg.c:5512 #, c-format msgid "the given signature policy URL is invalid\n" msgstr "l'URL de politique de signature donnée est incorrecte\n" -#: g10/gpg.c:5525 +#: g10/gpg.c:5545 #, c-format msgid "the given preferred keyserver URL is invalid\n" msgstr "l'URL du serveur de clefs favori qui a été donnée est incorrecte\n" @@ -3686,154 +3692,154 @@ msgid "No help available for '%s'" msgstr "Pas d'aide disponible pour « %s »" -#: g10/import.c:169 +#: g10/import.c:170 msgid "import signatures that are marked as local-only" msgstr "importer des signatures marquées comme locales seulement" -#: g10/import.c:172 +#: g10/import.c:173 msgid "repair damage from the pks keyserver during import" msgstr "réparer les données endommagées du serveur pks pendant l'importation" -#: g10/import.c:175 +#: g10/import.c:176 #, fuzzy #| msgid "do not update the trustdb after import" msgid "do not clear the ownertrust values during import" msgstr "ne pas mettre à jour la base de confiance après l'importation" -#: g10/import.c:178 +#: g10/import.c:179 msgid "do not update the trustdb after import" msgstr "ne pas mettre à jour la base de confiance après l'importation" -#: g10/import.c:181 +#: g10/import.c:182 #, fuzzy #| msgid "show key fingerprint" msgid "show key during import" msgstr "afficher l'empreinte de la clef" -#: g10/import.c:184 +#: g10/import.c:185 msgid "only accept updates to existing keys" msgstr "n'accepter que les mises à jour des clefs existantes" -#: g10/import.c:187 +#: g10/import.c:188 msgid "remove unusable parts from key after import" msgstr "nettoyer les parties inutilisables de la clef après l'importation" -#: g10/import.c:190 +#: g10/import.c:191 msgid "remove as much as possible from key after import" msgstr "supprimer autant que possible de la clef après l'importation" -#: g10/import.c:193 +#: g10/import.c:194 msgid "ignore key-signatures which are not self-signatures" msgstr "" -#: g10/import.c:196 +#: g10/import.c:197 msgid "run import filters and export key immediately" msgstr "" -#: g10/import.c:199 +#: g10/import.c:200 #, fuzzy #| msgid "assume input is in binary format" msgid "assume the GnuPG key backup format" msgstr "entrée supposée au format binaire" -#: g10/import.c:203 +#: g10/import.c:204 #, fuzzy #| msgid "show key fingerprint" msgid "repair keys on import" msgstr "afficher l'empreinte de la clef" -#: g10/import.c:392 g10/import.c:711 +#: g10/import.c:393 g10/import.c:712 #, c-format msgid "skipping block of type %d\n" msgstr "un bloc de type %d a été ignoré\n" -#: g10/import.c:728 +#: g10/import.c:729 #, c-format msgid "%lu keys processed so far\n" msgstr "%lu clefs traitées jusqu'à présent\n" -#: g10/import.c:814 +#: g10/import.c:815 #, c-format msgid "Total number processed: %lu\n" msgstr " Quantité totale traitée : %lu\n" -#: g10/import.c:817 +#: g10/import.c:818 #, fuzzy, c-format #| msgid " skipped new keys: %lu\n" msgid " skipped PGP-2 keys: %lu\n" msgstr " nouvelles clefs ignorées : %lu\n" -#: g10/import.c:819 +#: g10/import.c:820 #, c-format msgid " skipped new keys: %lu\n" msgstr " nouvelles clefs ignorées : %lu\n" -#: g10/import.c:822 +#: g10/import.c:823 #, c-format msgid " w/o user IDs: %lu\n" msgstr " sans identité : %lu\n" -#: g10/import.c:825 sm/import.c:130 +#: g10/import.c:826 sm/import.c:130 #, c-format msgid " imported: %lu" msgstr " importées : %lu" -#: g10/import.c:829 sm/import.c:134 +#: g10/import.c:830 sm/import.c:134 #, c-format msgid " unchanged: %lu\n" msgstr " non modifiées : %lu\n" -#: g10/import.c:831 +#: g10/import.c:832 #, c-format msgid " new user IDs: %lu\n" msgstr " nouvelles identités : %lu\n" -#: g10/import.c:833 +#: g10/import.c:834 #, c-format msgid " new subkeys: %lu\n" msgstr " nouvelles sous-clefs : %lu\n" -#: g10/import.c:835 +#: g10/import.c:836 #, c-format msgid " new signatures: %lu\n" msgstr " nouvelles signatures : %lu\n" -#: g10/import.c:837 +#: g10/import.c:838 #, c-format msgid " new key revocations: %lu\n" msgstr "nouvelles révocations de clef : %lu\n" -#: g10/import.c:839 sm/import.c:136 +#: g10/import.c:840 sm/import.c:136 #, c-format msgid " secret keys read: %lu\n" msgstr " clefs secrètes lues : %lu\n" -#: g10/import.c:841 sm/import.c:138 +#: g10/import.c:842 sm/import.c:138 #, c-format msgid " secret keys imported: %lu\n" msgstr " clefs secrètes importées : %lu\n" -#: g10/import.c:843 sm/import.c:140 +#: g10/import.c:844 sm/import.c:140 #, c-format msgid " secret keys unchanged: %lu\n" msgstr " clefs secrètes non modifiées : %lu\n" -#: g10/import.c:845 sm/import.c:142 +#: g10/import.c:846 sm/import.c:142 #, c-format msgid " not imported: %lu\n" msgstr " non importées : %lu\n" -#: g10/import.c:847 +#: g10/import.c:848 #, c-format msgid " signatures cleaned: %lu\n" msgstr " signatures nettoyées : %lu\n" -#: g10/import.c:849 +#: g10/import.c:850 #, c-format msgid " user IDs cleaned: %lu\n" msgstr " identités nettoyées : %lu\n" -#: g10/import.c:1276 +#: g10/import.c:1277 #, c-format msgid "" "WARNING: key %s contains preferences for unavailable\n" @@ -3842,168 +3848,168 @@ "Attention : la clef %s contient des préférences pour des\n" " algorithmes indisponibles pour ces identités :\n" -#: g10/import.c:1318 +#: g10/import.c:1319 #, c-format msgid " \"%s\": preference for cipher algorithm %s\n" msgstr " « %s » : préférence pour l'algorithme de chiffrement %s\n" -#: g10/import.c:1333 +#: g10/import.c:1334 #, c-format msgid " \"%s\": preference for digest algorithm %s\n" msgstr " « %s » : préférence pour l'algorithme de hachage %s\n" -#: g10/import.c:1345 +#: g10/import.c:1346 #, c-format msgid " \"%s\": preference for compression algorithm %s\n" msgstr " « %s » : préférence pour l'algorithme de compression %s\n" -#: g10/import.c:1358 +#: g10/import.c:1359 #, c-format msgid "it is strongly suggested that you update your preferences and\n" msgstr "vous devriez mettre à jour vos préférences et redistribuer cette\n" -#: g10/import.c:1360 +#: g10/import.c:1361 #, c-format msgid "re-distribute this key to avoid potential algorithm mismatch problems\n" msgstr "clef pour éviter d'éventuels problèmes d'algorithmes non appropriés\n" -#: g10/import.c:1385 +#: g10/import.c:1386 #, c-format msgid "you can update your preferences with: gpg --edit-key %s updpref save\n" msgstr "" "vous pouvez mettre à jour vos préférences avec :\n" "gpg --edit-key %s updpref save\n" -#: g10/import.c:1899 g10/import.c:3013 +#: g10/import.c:1902 g10/import.c:3028 #, c-format msgid "key %s: no user ID\n" msgstr "clef %s : pas d'identité\n" -#: g10/import.c:1905 +#: g10/import.c:1908 #, c-format msgid "key %s: %s\n" msgstr "clef %s : %s\n" -#: g10/import.c:1906 g10/import.c:2985 +#: g10/import.c:1909 g10/import.c:3000 msgid "rejected by import screener" msgstr "rejetée par le filtre d’importation" -#: g10/import.c:1950 +#: g10/import.c:1953 #, c-format msgid "key %s: PKS subkey corruption repaired\n" msgstr "clef %s : corruption de sous-clef PKS réparée\n" -#: g10/import.c:1971 +#: g10/import.c:1974 #, c-format msgid "key %s: accepted non self-signed user ID \"%s\"\n" msgstr "clef %s : identité « %s » non autosignée acceptée\n" -#: g10/import.c:1981 g10/import.c:2012 +#: g10/import.c:1985 g10/import.c:2016 #, c-format msgid "key %s: no valid user IDs\n" msgstr "clef %s : pas d'identité valable\n" -#: g10/import.c:1983 +#: g10/import.c:1987 #, c-format msgid "this may be caused by a missing self-signature\n" msgstr "cela pourrait provenir d'une autosignature manquante\n" -#: g10/import.c:2062 g10/import.c:3399 +#: g10/import.c:2066 g10/import.c:3415 #, c-format msgid "key %s: public key not found: %s\n" msgstr "clef %s : clef publique introuvable : %s\n" -#: g10/import.c:2068 +#: g10/import.c:2072 #, c-format msgid "key %s: new key - skipped\n" msgstr "clef %s : nouvelle clef — ignorée\n" -#: g10/import.c:2080 +#: g10/import.c:2084 #, c-format msgid "no writable keyring found: %s\n" msgstr "aucun porte-clefs accessible en écriture n'a été trouvé : %s\n" -#: g10/import.c:2112 g10/import.c:2214 g10/import.c:3476 +#: g10/import.c:2116 g10/import.c:2218 g10/import.c:3492 #, c-format msgid "error writing keyring '%s': %s\n" msgstr "erreur d'écriture du porte-clefs « %s » : %s\n" -#: g10/import.c:2135 +#: g10/import.c:2139 #, c-format msgid "key %s: public key \"%s\" imported\n" msgstr "clef %s : clef publique « %s » importée\n" -#: g10/import.c:2162 +#: g10/import.c:2166 #, c-format msgid "key %s: doesn't match our copy\n" msgstr "clef %s : ne correspond pas à notre copie\n" -#: g10/import.c:2230 +#: g10/import.c:2234 #, c-format msgid "key %s: \"%s\" 1 new user ID\n" msgstr "clef %s : « %s » 1 nouvelle identité\n" -#: g10/import.c:2233 +#: g10/import.c:2237 #, c-format msgid "key %s: \"%s\" %d new user IDs\n" msgstr "clef %s : « %s » %d nouvelles identités\n" -#: g10/import.c:2236 +#: g10/import.c:2240 #, c-format msgid "key %s: \"%s\" 1 new signature\n" msgstr "clef %s : « %s » 1 nouvelle signature\n" -#: g10/import.c:2239 +#: g10/import.c:2243 #, c-format msgid "key %s: \"%s\" %d new signatures\n" msgstr "clef %s : « %s » %d nouvelles signatures\n" -#: g10/import.c:2242 +#: g10/import.c:2246 #, c-format msgid "key %s: \"%s\" 1 new subkey\n" msgstr "clef %s : « %s » 1 nouvelle sous-clef\n" -#: g10/import.c:2245 +#: g10/import.c:2249 #, c-format msgid "key %s: \"%s\" %d new subkeys\n" msgstr "clef %s : « %s » %d nouvelles sous-clefs\n" -#: g10/import.c:2248 +#: g10/import.c:2252 #, c-format msgid "key %s: \"%s\" %d signature cleaned\n" msgstr "clef %s : « %s » %d signature nettoyée\n" -#: g10/import.c:2251 +#: g10/import.c:2255 #, c-format msgid "key %s: \"%s\" %d signatures cleaned\n" msgstr "clef %s : « %s » %d signatures nettoyées\n" -#: g10/import.c:2254 +#: g10/import.c:2258 #, c-format msgid "key %s: \"%s\" %d user ID cleaned\n" msgstr "clef %s : « %s » %d identité nettoyée\n" -#: g10/import.c:2257 +#: g10/import.c:2261 #, c-format msgid "key %s: \"%s\" %d user IDs cleaned\n" msgstr "clef %s : « %s » %d identités nettoyées\n" -#: g10/import.c:2293 +#: g10/import.c:2297 #, c-format msgid "key %s: \"%s\" not changed\n" msgstr "clef %s : « %s » n'est pas modifiée\n" -#: g10/import.c:2652 g10/import.c:2847 +#: g10/import.c:2667 g10/import.c:2862 #, c-format msgid "key %s: secret key imported\n" msgstr "clef %s : clef secrète importée\n" -#: g10/import.c:2660 +#: g10/import.c:2675 #, c-format msgid "key %s: secret key already exists\n" msgstr "clef %s : la clef secrète clef existe déjà\n" -#: g10/import.c:2668 +#: g10/import.c:2683 #, c-format msgid "key %s: error sending to agent: %s\n" msgstr "clef %s : erreur d'envoi à l'agent : %s\n" @@ -4016,198 +4022,198 @@ #. * Instead, user should be suggested to run 'gpg --card-status', #. * then, references to a card will be automatically created #. * again. -#: g10/import.c:2837 +#: g10/import.c:2852 #, c-format msgid "To migrate '%s', with each smartcard, run: %s\n" msgstr "" -#: g10/import.c:2984 +#: g10/import.c:2999 #, c-format msgid "secret key %s: %s\n" msgstr "clef secrète %s : %s\n" -#: g10/import.c:3005 g10/import.c:3044 +#: g10/import.c:3020 g10/import.c:3059 #, c-format msgid "importing secret keys not allowed\n" msgstr "impossible d'importer des clefs secrètes\n" -#: g10/import.c:3032 +#: g10/import.c:3047 #, c-format msgid "key %s: secret key with invalid cipher %d - skipped\n" msgstr "clef %s : clef secrète avec chiffrement %d incorrect — ignorée\n" -#: g10/import.c:3194 g10/pkclist.c:72 g10/revoke.c:776 +#: g10/import.c:3209 g10/pkclist.c:72 g10/revoke.c:776 msgid "No reason specified" msgstr "Aucune cause indiquée" -#: g10/import.c:3195 g10/pkclist.c:74 g10/revoke.c:778 +#: g10/import.c:3210 g10/pkclist.c:74 g10/revoke.c:778 msgid "Key is superseded" msgstr "La clef a été remplacée" -#: g10/import.c:3196 g10/pkclist.c:76 g10/revoke.c:777 +#: g10/import.c:3211 g10/pkclist.c:76 g10/revoke.c:777 msgid "Key has been compromised" msgstr "La clef a été compromise" -#: g10/import.c:3197 g10/pkclist.c:78 g10/revoke.c:779 +#: g10/import.c:3212 g10/pkclist.c:78 g10/revoke.c:779 msgid "Key is no longer used" msgstr "La clef n'est plus utilisée" -#: g10/import.c:3198 g10/pkclist.c:80 g10/revoke.c:780 +#: g10/import.c:3213 g10/pkclist.c:80 g10/revoke.c:780 msgid "User ID is no longer valid" msgstr "L'identité n'est plus valable" -#: g10/import.c:3323 g10/keylist.c:1258 g10/pkclist.c:84 +#: g10/import.c:3338 g10/keylist.c:1258 g10/pkclist.c:84 #, c-format msgid "reason for revocation: " msgstr "cause de révocation : " -#: g10/import.c:3342 g10/keylist.c:1277 g10/pkclist.c:100 +#: g10/import.c:3357 g10/keylist.c:1277 g10/pkclist.c:100 #, c-format msgid "revocation comment: " msgstr "commentaire de révocation : " -#: g10/import.c:3392 +#: g10/import.c:3408 #, c-format msgid "key %s: no public key - can't apply revocation certificate\n" msgstr "" "clef %s : pas de clef publique — impossible d'appliquer le certificat\n" " de révocation\n" -#: g10/import.c:3423 +#: g10/import.c:3439 #, c-format msgid "key %s: can't locate original keyblock: %s\n" msgstr "clef %s : impossible de trouver le bloc de clef d'origine : %s\n" -#: g10/import.c:3430 +#: g10/import.c:3446 #, c-format msgid "key %s: can't read original keyblock: %s\n" msgstr "clef %s : impossible de lire le bloc de clef d'origine : %s\n" -#: g10/import.c:3450 +#: g10/import.c:3466 #, c-format msgid "key %s: invalid revocation certificate: %s - rejected\n" msgstr "clef %s : certificat de révocation incorrect : %s — rejeté\n" -#: g10/import.c:3485 +#: g10/import.c:3501 #, c-format msgid "key %s: \"%s\" revocation certificate imported\n" msgstr "clef %s : « %s » certificat de révocation importé\n" -#: g10/import.c:3571 +#: g10/import.c:3587 #, c-format msgid "key %s: no user ID for signature\n" msgstr "clef %s : pas d'identité pour la signature\n" -#: g10/import.c:3588 +#: g10/import.c:3604 #, c-format msgid "key %s: unsupported public key algorithm on user ID \"%s\"\n" msgstr "clef %s : algorithme à clef publique non géré avec l'identité « %s »\n" -#: g10/import.c:3590 +#: g10/import.c:3606 #, c-format msgid "key %s: invalid self-signature on user ID \"%s\"\n" msgstr "clef %s : autosignature de l'identité « %s » incorrecte\n" -#: g10/import.c:3607 g10/import.c:3635 g10/import.c:3691 +#: g10/import.c:3623 g10/import.c:3651 g10/import.c:3707 #, c-format msgid "key %s: unsupported public key algorithm\n" msgstr "clef %s : algorithme à clef publique non pris en charge\n" -#: g10/import.c:3608 +#: g10/import.c:3624 #, c-format msgid "key %s: invalid direct key signature\n" msgstr "clef %s : signature directe de clef incorrecte\n" -#: g10/import.c:3622 +#: g10/import.c:3638 #, c-format msgid "key %s: no subkey for key binding\n" msgstr "clef %s : pas de sous-clef pour relier la clef\n" -#: g10/import.c:3637 +#: g10/import.c:3653 #, c-format msgid "key %s: invalid subkey binding\n" msgstr "clef %s : lien à la sous-clef incorrect\n" -#: g10/import.c:3656 +#: g10/import.c:3672 #, c-format msgid "key %s: removed multiple subkey binding\n" msgstr "clef %s : suppression de lien multiple aux sous-clefs\n" -#: g10/import.c:3680 +#: g10/import.c:3696 #, c-format msgid "key %s: no subkey for key revocation\n" msgstr "clef %s : pas de sous-clef pour révoquer la clef\n" -#: g10/import.c:3693 +#: g10/import.c:3709 #, c-format msgid "key %s: invalid subkey revocation\n" msgstr "clef %s : révocation de sous-clef incorrecte\n" -#: g10/import.c:3708 +#: g10/import.c:3724 #, c-format msgid "key %s: removed multiple subkey revocation\n" msgstr "clef %s : suppression de la révocation de sous-clefs multiples\n" -#: g10/import.c:3752 +#: g10/import.c:3771 #, c-format msgid "key %s: skipped user ID \"%s\"\n" msgstr "clef %s : identité « %s » ignorée\n" -#: g10/import.c:3779 +#: g10/import.c:3798 #, c-format msgid "key %s: skipped subkey\n" msgstr "clef %s : sous-clef ignorée\n" -#: g10/import.c:3810 +#: g10/import.c:3829 #, c-format msgid "key %s: non exportable signature (class 0x%02X) - skipped\n" msgstr "clef %s : signature non exportable (classe 0x%02X) — ignorée\n" -#: g10/import.c:3821 +#: g10/import.c:3840 #, c-format msgid "key %s: revocation certificate at wrong place - skipped\n" msgstr "clef %s : certificat de révocation au mauvais endroit — ignoré\n" -#: g10/import.c:3839 +#: g10/import.c:3868 #, c-format msgid "key %s: invalid revocation certificate: %s - skipped\n" msgstr "clef %s : certificat de révocation incorrect : %s — ignoré\n" -#: g10/import.c:3853 +#: g10/import.c:3892 #, c-format msgid "key %s: subkey signature in wrong place - skipped\n" msgstr "clef %s : signature de sous-clef au mauvais endroit — ignorée\n" -#: g10/import.c:3861 +#: g10/import.c:3900 #, c-format msgid "key %s: unexpected signature class (0x%02X) - skipped\n" msgstr "clef %s : classe de signature inattendue (0x%02X) — ignorée\n" -#: g10/import.c:4034 +#: g10/import.c:4073 #, c-format msgid "key %s: duplicated user ID detected - merged\n" msgstr "clef %s : identités en double détectées — fusionnées\n" -#: g10/import.c:4099 +#: g10/import.c:4138 #, c-format msgid "WARNING: key %s may be revoked: fetching revocation key %s\n" msgstr "" "Attention : la clef %s est peut-être révoquée :\n" " récupération de la clef de révocation %s\n" -#: g10/import.c:4115 +#: g10/import.c:4154 #, c-format msgid "WARNING: key %s may be revoked: revocation key %s not present.\n" msgstr "" "Attention : la clef %s est peut-être révoquée :\n" " la clef de révocation %s est absente.\n" -#: g10/import.c:4181 +#: g10/import.c:4220 #, c-format msgid "key %s: \"%s\" revocation certificate added\n" msgstr "clef %s : ajout du certificat de révocation « %s »\n" -#: g10/import.c:4219 +#: g10/import.c:4258 #, c-format msgid "key %s: direct key signature added\n" msgstr "clef %s : ajout de la signature directe de clef\n" @@ -5103,7 +5109,7 @@ msgstr "" "Vous ne devriez pas ajouter de photo d'identité à une clef de type PGP 2.\n" -#: g10/keyedit.c:4293 g10/keygen.c:2899 +#: g10/keyedit.c:4293 g10/keygen.c:2953 msgid "Such a user ID already exists on this key!\n" msgstr "Cette identité existe déjà pour cette clef.\n" @@ -5401,67 +5407,67 @@ "Affichage de la photo d'identité %s de taille %ld pour la clef\n" "%s (uid %d)\n" -#: g10/keygen.c:169 +#: g10/keygen.c:174 #, fuzzy, c-format #| msgid "invalid argument for option \"%.50s\"\n" msgid "invalid value for option '%s'\n" msgstr "argument incorrect pour l'option « %.50s »\n" -#: g10/keygen.c:322 +#: g10/keygen.c:331 #, c-format msgid "preference '%s' duplicated\n" msgstr "préférence « %s » en double\n" -#: g10/keygen.c:329 +#: g10/keygen.c:338 #, c-format msgid "too many cipher preferences\n" msgstr "trop de préférences de chiffrement\n" -#: g10/keygen.c:331 +#: g10/keygen.c:340 #, c-format msgid "too many digest preferences\n" msgstr "trop de préférences de hachage\n" -#: g10/keygen.c:333 +#: g10/keygen.c:342 #, c-format msgid "too many compression preferences\n" msgstr "trop de préférences de compression\n" -#: g10/keygen.c:493 +#: g10/keygen.c:502 #, c-format msgid "invalid item '%s' in preference string\n" msgstr "élément « %s » incorrect dans la chaîne de préférences\n" # g10/keygen.c:123 ??? -#: g10/keygen.c:972 +#: g10/keygen.c:1020 #, c-format msgid "writing direct signature\n" msgstr "écriture de la signature directe\n" # g10/keygen.c:123 ??? -#: g10/keygen.c:1018 +#: g10/keygen.c:1066 #, c-format msgid "writing self signature\n" msgstr "écriture de l'autosignature\n" # g10/keygen.c:161 ??? -#: g10/keygen.c:1075 +#: g10/keygen.c:1123 #, c-format msgid "writing key binding signature\n" msgstr "écriture de la signature de lien à la clef\n" -#: g10/keygen.c:1440 g10/keygen.c:1445 g10/keygen.c:1497 g10/keygen.c:1502 -#: g10/keygen.c:1656 g10/keygen.c:1661 +#: g10/keygen.c:1494 g10/keygen.c:1499 g10/keygen.c:1551 g10/keygen.c:1556 +#: g10/keygen.c:1710 g10/keygen.c:1715 #, c-format msgid "keysize invalid; using %u bits\n" msgstr "taille incorrecte ; utilisation de %u bits\n" -#: g10/keygen.c:1451 g10/keygen.c:1508 g10/keygen.c:1516 g10/keygen.c:1667 +#: g10/keygen.c:1505 g10/keygen.c:1562 g10/keygen.c:1570 g10/keygen.c:1721 #, c-format msgid "keysize rounded up to %u bits\n" msgstr "taille arrondie à %u bits\n" -#: g10/keygen.c:1542 +#: g10/keygen.c:1596 #, c-format msgid "" "WARNING: some OpenPGP programs can't handle a DSA key with this digest size\n" @@ -5469,19 +5475,19 @@ "Attention : certains programmes OpenPGP ne peuvent pas gérer\n" " de clef DSA avec cette taille de hachage\n" -#: g10/keygen.c:1723 +#: g10/keygen.c:1777 msgid "Sign" msgstr "Signer" -#: g10/keygen.c:1726 +#: g10/keygen.c:1780 msgid "Certify" msgstr "Certifier" -#: g10/keygen.c:1729 +#: g10/keygen.c:1783 msgid "Encrypt" msgstr "Chiffrer" -#: g10/keygen.c:1732 +#: g10/keygen.c:1786 msgid "Authenticate" msgstr "Authentifier" @@ -5495,162 +5501,162 @@ #. * a = Toggle authentication capability #. * q = Finish #. -#: g10/keygen.c:1753 +#: g10/keygen.c:1807 msgid "SsEeAaQq" msgstr "SsCcAaQq" -#: g10/keygen.c:1784 +#: g10/keygen.c:1838 #, c-format msgid "Possible actions for a %s key: " msgstr "Actions possibles pour une clef %s : " -#: g10/keygen.c:1790 +#: g10/keygen.c:1844 msgid "Current allowed actions: " msgstr "Actions actuellement permises : " -#: g10/keygen.c:1795 +#: g10/keygen.c:1849 #, c-format msgid " (%c) Toggle the sign capability\n" msgstr " (%c) Inverser la capacité de signature\n" -#: g10/keygen.c:1798 +#: g10/keygen.c:1852 #, c-format msgid " (%c) Toggle the encrypt capability\n" msgstr " (%c) Inverser la capacité de chiffrement\n" -#: g10/keygen.c:1801 +#: g10/keygen.c:1855 #, c-format msgid " (%c) Toggle the authenticate capability\n" msgstr " (%c) Inverser la capacité d'authentification\n" -#: g10/keygen.c:1804 +#: g10/keygen.c:1858 #, c-format msgid " (%c) Finished\n" msgstr " (%c) Terminé\n" -#: g10/keygen.c:1930 +#: g10/keygen.c:1984 #, c-format msgid " (%d) RSA and RSA (default)\n" msgstr " (%d) RSA et RSA (par défaut)\n" -#: g10/keygen.c:1934 +#: g10/keygen.c:1988 #, c-format msgid " (%d) DSA and Elgamal\n" msgstr " (%d) DSA et Elgamal\n" -#: g10/keygen.c:1937 +#: g10/keygen.c:1991 #, c-format msgid " (%d) DSA (sign only)\n" msgstr " (%d) DSA (signature seule)\n" -#: g10/keygen.c:1939 +#: g10/keygen.c:1993 #, c-format msgid " (%d) RSA (sign only)\n" msgstr " (%d) RSA (signature seule)\n" -#: g10/keygen.c:1945 +#: g10/keygen.c:1999 #, c-format msgid " (%d) Elgamal (encrypt only)\n" msgstr " (%d) Elgamal (chiffrement seul)\n" -#: g10/keygen.c:1947 +#: g10/keygen.c:2001 #, c-format msgid " (%d) RSA (encrypt only)\n" msgstr " (%d) RSA (chiffrement seul)\n" -#: g10/keygen.c:1953 +#: g10/keygen.c:2007 #, c-format msgid " (%d) DSA (set your own capabilities)\n" msgstr " (%d) DSA (indiquez vous-même les capacités)\n" -#: g10/keygen.c:1955 +#: g10/keygen.c:2009 #, c-format msgid " (%d) RSA (set your own capabilities)\n" msgstr " (%d) RSA (indiquez vous-même les capacités)\n" -#: g10/keygen.c:1961 +#: g10/keygen.c:2015 #, c-format msgid " (%d) ECC and ECC\n" msgstr " (%d) ECC et ECC\n" -#: g10/keygen.c:1963 +#: g10/keygen.c:2017 #, c-format msgid " (%d) ECC (sign only)\n" msgstr " (%d) ECC (signature seule)\n" -#: g10/keygen.c:1965 +#: g10/keygen.c:2019 #, c-format msgid " (%d) ECC (set your own capabilities)\n" msgstr " (%d) ECC (indiquez vous-même les capacités)\n" -#: g10/keygen.c:1967 +#: g10/keygen.c:2021 #, c-format msgid " (%d) ECC (encrypt only)\n" msgstr " (%d) ECC (chiffrement seul)\n" -#: g10/keygen.c:1971 +#: g10/keygen.c:2025 #, c-format msgid " (%d) Existing key\n" msgstr " (%d) Clef existante\n" -#: g10/keygen.c:1973 +#: g10/keygen.c:2027 #, fuzzy, c-format #| msgid " (%d) Existing key from card\n" msgid " (%d) Existing key from card\n" msgstr " (%d) Clef existante sur la carte\n" -#: g10/keygen.c:2069 sm/certreqgen-ui.c:202 +#: g10/keygen.c:2123 sm/certreqgen-ui.c:202 msgid "Enter the keygrip: " msgstr "Entrez le keygrip : " -#: g10/keygen.c:2082 sm/certreqgen-ui.c:210 +#: g10/keygen.c:2136 sm/certreqgen-ui.c:210 msgid "Not a valid keygrip (expecting 40 hex digits)\n" msgstr "Ce n'est pas un keygrip valable (40 chiffres hexadécimaux attendus)\n" -#: g10/keygen.c:2084 sm/certreqgen-ui.c:212 +#: g10/keygen.c:2138 sm/certreqgen-ui.c:212 msgid "No key with this keygrip\n" msgstr "Pas de clef avec ce keygrip\n" -#: g10/keygen.c:2103 g10/keygen.c:2113 g10/keygen.c:3216 g10/keygen.c:3227 +#: g10/keygen.c:2157 g10/keygen.c:2167 g10/keygen.c:3270 g10/keygen.c:3281 #: sm/certreqgen-ui.c:230 sm/certreqgen-ui.c:239 #, c-format msgid "error reading the card: %s\n" msgstr "erreur de lecture de la carte : %s\n" -#: g10/keygen.c:2107 g10/keygen.c:3220 sm/certreqgen-ui.c:233 +#: g10/keygen.c:2161 g10/keygen.c:3274 sm/certreqgen-ui.c:233 #, c-format msgid "Serial number of the card: %s\n" msgstr "Numéro de série de la carte : %s\n" -#: g10/keygen.c:2120 sm/certreqgen-ui.c:245 +#: g10/keygen.c:2174 sm/certreqgen-ui.c:245 msgid "Available keys:\n" msgstr "Clefs disponibles :\n" -#: g10/keygen.c:2297 g10/keygen.c:2311 +#: g10/keygen.c:2351 g10/keygen.c:2365 #, c-format msgid "rounded to %u bits\n" msgstr "arrondie à %u bits\n" -#: g10/keygen.c:2352 +#: g10/keygen.c:2406 #, c-format msgid "%s keys may be between %u and %u bits long.\n" msgstr "les clefs %s peuvent faire une taille comprise entre %u et %u bits.\n" -#: g10/keygen.c:2360 +#: g10/keygen.c:2414 #, c-format msgid "What keysize do you want for the subkey? (%u) " msgstr "Quelle taille de clef désirez-vous pour la sous-clef ? (%u) " -#: g10/keygen.c:2377 sm/certreqgen-ui.c:189 +#: g10/keygen.c:2431 sm/certreqgen-ui.c:189 #, c-format msgid "Requested keysize is %u bits\n" msgstr "La taille demandée est %u bits\n" -#: g10/keygen.c:2423 +#: g10/keygen.c:2477 msgid "Please select which elliptic curve you want:\n" msgstr "Sélectionnez le type de courbe elliptique désiré :\n" -#: g10/keygen.c:2611 +#: g10/keygen.c:2665 msgid "" "Please specify how long the key should be valid.\n" " 0 = key does not expire\n" @@ -5666,7 +5672,7 @@ " m = la clef expire dans n mois\n" " y = la clef expire dans n ans\n" -#: g10/keygen.c:2622 +#: g10/keygen.c:2676 msgid "" "Please specify how long the signature should be valid.\n" " 0 = signature does not expire\n" @@ -5683,38 +5689,38 @@ " m = la signature expire dans n mois\n" " y = la signature expire dans n ans\n" -#: g10/keygen.c:2645 +#: g10/keygen.c:2699 msgid "Key is valid for? (0) " msgstr "Pendant combien de temps la clef est-elle valable ? (0) " -#: g10/keygen.c:2650 +#: g10/keygen.c:2704 #, c-format msgid "Signature is valid for? (%s) " msgstr "Pendant combien de temps la signature est-elle valable ? (%s) " -#: g10/keygen.c:2663 g10/keygen.c:2688 +#: g10/keygen.c:2717 g10/keygen.c:2742 msgid "invalid value\n" msgstr "valeur incorrecte\n" -#: g10/keygen.c:2670 +#: g10/keygen.c:2724 msgid "Key does not expire at all\n" msgstr "La clef n'expire pas du tout\n" -#: g10/keygen.c:2671 +#: g10/keygen.c:2725 msgid "Signature does not expire at all\n" msgstr "La signature n'expire pas du tout\n" -#: g10/keygen.c:2676 +#: g10/keygen.c:2730 #, c-format msgid "Key expires at %s\n" msgstr "La clef expire le %s\n" -#: g10/keygen.c:2677 +#: g10/keygen.c:2731 #, c-format msgid "Signature expires at %s\n" msgstr "La signature expire le %s\n" -#: g10/keygen.c:2681 +#: g10/keygen.c:2735 msgid "" "Your system can't display dates beyond 2038.\n" "However, it will be correctly handled up to 2106.\n" @@ -5722,11 +5728,11 @@ "Le système ne peut pas afficher les dates au-delà de 2038.\n" "Cependant, la gestion des dates sera correcte jusqu'en 2106.\n" -#: g10/keygen.c:2694 +#: g10/keygen.c:2748 msgid "Is this correct? (y/N) " msgstr "Est-ce correct ? (o/N) " -#: g10/keygen.c:2762 +#: g10/keygen.c:2816 msgid "" "\n" "GnuPG needs to construct a user ID to identify your key.\n" @@ -5740,7 +5746,7 @@ #. but you should keep your existing translation. In case #. the new string is not translated this old string will #. be used. -#: g10/keygen.c:2777 +#: g10/keygen.c:2831 msgid "" "\n" "You need a user ID to identify your key; the software constructs the user " @@ -5756,49 +5762,49 @@ " « Heinrich Heine (le poète)  »\n" "\n" -#: g10/keygen.c:2796 +#: g10/keygen.c:2850 msgid "Real name: " msgstr "Nom réel : " -#: g10/keygen.c:2805 +#: g10/keygen.c:2859 msgid "Invalid character in name\n" msgstr "Caractère incorrect dans le nom\n" -#: g10/keygen.c:2806 +#: g10/keygen.c:2860 #, c-format msgid "The characters '%s' and '%s' may not appear in name\n" msgstr "" -#: g10/keygen.c:2810 +#: g10/keygen.c:2864 msgid "Name may not start with a digit\n" msgstr "Le nom ne doit pas commencer par un chiffre\n" -#: g10/keygen.c:2813 +#: g10/keygen.c:2867 msgid "Name must be at least 5 characters long\n" msgstr "Le nom doit contenir au moins cinq caractères\n" -#: g10/keygen.c:2823 +#: g10/keygen.c:2877 msgid "Email address: " msgstr "Adresse électronique : " -#: g10/keygen.c:2829 +#: g10/keygen.c:2883 msgid "Not a valid email address\n" msgstr "Ce n'est pas une adresse électronique valable\n" -#: g10/keygen.c:2838 +#: g10/keygen.c:2892 msgid "Comment: " msgstr "Commentaire : " -#: g10/keygen.c:2844 +#: g10/keygen.c:2898 msgid "Invalid character in comment\n" msgstr "Caractère incorrect dans le commentaire\n" -#: g10/keygen.c:2880 +#: g10/keygen.c:2934 #, c-format msgid "You are using the '%s' character set.\n" msgstr "Vous utilisez le jeu de caractères « %s ».\n" -#: g10/keygen.c:2886 +#: g10/keygen.c:2940 #, c-format msgid "" "You selected this USER-ID:\n" @@ -5809,7 +5815,7 @@ " « %s »\n" "\n" -#: g10/keygen.c:2891 +#: g10/keygen.c:2945 msgid "Please don't put the email address into the real name or the comment\n" msgstr "" "Ne mettez pas d'adresse électronique dans le nom réel ou dans le " @@ -5826,34 +5832,34 @@ #. o = Okay (ready, continue) #. q = Quit #. -#: g10/keygen.c:2916 +#: g10/keygen.c:2970 msgid "NnCcEeOoQq" msgstr "NnCcAaOoQq" -#: g10/keygen.c:2926 +#: g10/keygen.c:2980 msgid "Change (N)ame, (C)omment, (E)mail or (Q)uit? " msgstr "" "Changer le (N)om, le (C)ommentaire, l'(A)dresse électronique ou (Q)uitter ? " -#: g10/keygen.c:2927 +#: g10/keygen.c:2981 msgid "Change (N)ame, (C)omment, (E)mail or (O)kay/(Q)uit? " msgstr "" "Changer le (N)om, le (C)ommentaire, l'(A)dresse électronique\n" "ou (O)ui/(Q)uitter ? " -#: g10/keygen.c:2932 +#: g10/keygen.c:2986 msgid "Change (N)ame, (E)mail, or (Q)uit? " msgstr "Changer le (N)om, l’(A)dresse électronique ou (Q)uitter ? " -#: g10/keygen.c:2933 +#: g10/keygen.c:2987 msgid "Change (N)ame, (E)mail, or (O)kay/(Q)uit? " msgstr "Changer le (N)om, l'(A)dresse électronique ou (O)ui/(Q)uitter ? " -#: g10/keygen.c:2952 +#: g10/keygen.c:3006 msgid "Please correct the error first\n" msgstr "Veuillez d'abord corriger l'erreur\n" -#: g10/keygen.c:2998 +#: g10/keygen.c:3052 msgid "" "We need to generate a lot of random bytes. It is a good idea to perform\n" "some other action (type on the keyboard, move the mouse, utilize the\n" @@ -5865,13 +5871,13 @@ "pendant la génération de nombres premiers ; cela donne au générateur de\n" "nombres aléatoires une meilleure chance d'obtenir suffisamment d'entropie.\n" -#: g10/keygen.c:4278 g10/keygen.c:4349 g10/keygen.c:4367 g10/keygen.c:4395 -#: g10/keygen.c:4739 g10/keygen.c:5239 g10/keygen.c:5534 g10/keygen.c:5639 +#: g10/keygen.c:4332 g10/keygen.c:4403 g10/keygen.c:4421 g10/keygen.c:4449 +#: g10/keygen.c:4793 g10/keygen.c:5293 g10/keygen.c:5588 g10/keygen.c:5693 #, c-format msgid "Key generation failed: %s\n" msgstr "Échec de génération de la clef : %s\n" -#: g10/keygen.c:4287 +#: g10/keygen.c:4341 #, c-format msgid "" "About to create a key for:\n" @@ -5882,66 +5888,66 @@ " « %s »\n" "\n" -#: g10/keygen.c:4289 +#: g10/keygen.c:4343 msgid "Continue? (Y/n) " msgstr "Faut-il continuer ? (O/n) " -#: g10/keygen.c:4310 +#: g10/keygen.c:4364 #, c-format msgid "A key for \"%s\" already exists\n" msgstr "Une clef pour « %s » existe déjà\n" -#: g10/keygen.c:4315 +#: g10/keygen.c:4369 msgid "Create anyway? (y/N) " msgstr "Faut-il quand même créer ? (o/N) " -#: g10/keygen.c:4321 +#: g10/keygen.c:4375 #, c-format msgid "creating anyway\n" msgstr "création quand même\n" -#: g10/keygen.c:4722 +#: g10/keygen.c:4776 #, c-format msgid "Note: Use \"%s %s\" for a full featured key generation dialog.\n" msgstr "" "Remarque : Utilisez « %s %s » pour une fenêtre de dialogue de génération de " "clef complète.\n" -#: g10/keygen.c:4771 +#: g10/keygen.c:4825 #, c-format msgid "Key generation canceled.\n" msgstr "La génération de clef a été annulée.\n" -#: g10/keygen.c:4831 +#: g10/keygen.c:4885 #, c-format msgid "can't create backup file '%s': %s\n" msgstr "impossible de créer le fichier de sauvegarde « %s » : %s\n" -#: g10/keygen.c:4851 +#: g10/keygen.c:4905 #, c-format msgid "Note: backup of card key saved to '%s'\n" msgstr "Remarque : sauvegarde de la clef de la carte dans « %s »\n" -#: g10/keygen.c:5010 g10/keygen.c:5172 +#: g10/keygen.c:5064 g10/keygen.c:5226 #, c-format msgid "writing public key to '%s'\n" msgstr "écriture de la clef publique dans « %s »\n" -#: g10/keygen.c:5166 +#: g10/keygen.c:5220 #, c-format msgid "no writable public keyring found: %s\n" msgstr "aucun porte-clefs public accessible en écriture n'a été trouvé : %s\n" -#: g10/keygen.c:5180 +#: g10/keygen.c:5234 #, c-format msgid "error writing public keyring '%s': %s\n" msgstr "erreur d'écriture du porte-clefs public « %s » : %s\n" -#: g10/keygen.c:5210 +#: g10/keygen.c:5264 msgid "public and secret key created and signed.\n" msgstr "les clefs publique et secrète ont été créées et signées.\n" -#: g10/keygen.c:5226 +#: g10/keygen.c:5280 msgid "" "Note that this key cannot be used for encryption. You may want to use\n" "the command \"--edit-key\" to generate a subkey for this purpose.\n" @@ -5950,7 +5956,7 @@ "pouvez\n" "utiliser la commande « --edit-key » pour générer une sous-clef à cette fin.\n" -#: g10/keygen.c:5401 g10/keygen.c:5590 +#: g10/keygen.c:5455 g10/keygen.c:5644 #, c-format msgid "" "key has been created %lu second in future (time warp or clock problem)\n" @@ -5958,7 +5964,7 @@ "la clef a été créée %lu seconde dans le futur (faille temporelle ou\n" "problème d'horloge)\n" -#: g10/keygen.c:5403 g10/keygen.c:5592 +#: g10/keygen.c:5457 g10/keygen.c:5646 #, c-format msgid "" "key has been created %lu seconds in future (time warp or clock problem)\n" @@ -5966,25 +5972,25 @@ "la clef a été créée %lu secondes dans le futur (faille temporelle ou\n" "problème d'horloge)\n" -#: g10/keygen.c:5414 g10/keygen.c:5603 +#: g10/keygen.c:5468 g10/keygen.c:5657 #, c-format msgid "Note: creating subkeys for v3 keys is not OpenPGP compliant\n" msgstr "" "Remarque : la création de sous-clefs pour des clefs v3 n'est pas compatible\n" " avec OpenPGP\n" -#: g10/keygen.c:5426 g10/keygen.c:5428 +#: g10/keygen.c:5480 g10/keygen.c:5482 #, c-format msgid "Secret parts of primary key are not available.\n" msgstr "Les parties secrètes de la clef principale ne sont pas disponibles.\n" -#: g10/keygen.c:5435 g10/keygen.c:5437 +#: g10/keygen.c:5489 g10/keygen.c:5491 #, c-format msgid "Secret parts of primary key are stored on-card.\n" msgstr "" "Les parties secrètes de la clef principale sont stockées sur la carte.\n" -#: g10/keygen.c:5456 g10/keygen.c:5617 +#: g10/keygen.c:5510 g10/keygen.c:5671 msgid "Really create? (y/N) " msgstr "Faut-il vraiment la créer ? (o/N) " @@ -7122,30 +7128,30 @@ "les données ne sont pas enregistrées ; utilisez l'option « --output » pour\n" "les enregistrer\n" -#: g10/plaintext.c:615 +#: g10/plaintext.c:620 msgid "Detached signature.\n" msgstr "Signature détachée.\n" -#: g10/plaintext.c:623 +#: g10/plaintext.c:628 msgid "Please enter name of data file: " msgstr "Entrez le nom du fichier de données : " -#: g10/plaintext.c:660 +#: g10/plaintext.c:665 #, c-format msgid "reading stdin ...\n" msgstr "lecture de l'entrée standard…\n" -#: g10/plaintext.c:705 +#: g10/plaintext.c:710 #, c-format msgid "no signed data\n" msgstr "pas de données signées\n" -#: g10/plaintext.c:723 +#: g10/plaintext.c:728 #, c-format msgid "can't open signed data '%s'\n" msgstr "impossible d'ouvrir les données signées « %s »\n" -#: g10/plaintext.c:758 +#: g10/plaintext.c:763 #, c-format msgid "can't open signed data fd=%d: %s\n" msgstr "impossible d'ouvrir les données signées fd=%d : %s\n" @@ -8211,7 +8217,7 @@ msgid "no need for a trustdb check\n" msgstr "inutile de vérifier la base de confiance\n" -#: g10/trustdb.c:631 g10/trustdb.c:2326 +#: g10/trustdb.c:631 g10/trustdb.c:2338 #, c-format msgid "next trustdb check due at %s\n" msgstr "la prochaine vérification de la base de confiance aura lieu le %s\n" @@ -8245,7 +8251,7 @@ msgid "checking the trustdb\n" msgstr "vérification de la base de confiance\n" -#: g10/trustdb.c:2047 +#: g10/trustdb.c:2059 #, fuzzy, c-format #| msgid "%lu keys processed so far\n" msgid "%d key processed" @@ -8253,7 +8259,7 @@ msgstr[0] "%lu clefs traitées jusqu'à présent\n" msgstr[1] "%lu clefs traitées jusqu'à présent\n" -#: g10/trustdb.c:2050 +#: g10/trustdb.c:2062 #, fuzzy, c-format #| msgid "%d keys processed (%d validity counts cleared)\n" msgid " (%d validity count cleared)\n" @@ -8261,17 +8267,17 @@ msgstr[0] "%d clefs traitées (%d comptes de validité réinitialisés)\n" msgstr[1] "%d clefs traitées (%d comptes de validité réinitialisés)\n" -#: g10/trustdb.c:2120 +#: g10/trustdb.c:2132 #, c-format msgid "no ultimately trusted keys found\n" msgstr "aucune clef de confiance ultime n'a été trouvée\n" -#: g10/trustdb.c:2134 +#: g10/trustdb.c:2146 #, c-format msgid "public key of ultimately trusted key %s not found\n" msgstr "la clef publique de la clef de confiance ultime %s est introuvable\n" -#: g10/trustdb.c:2252 +#: g10/trustdb.c:2264 #, c-format msgid "" "depth: %d valid: %3d signed: %3d trust: %d-, %dq, %dn, %dm, %df, %du\n" @@ -8279,7 +8285,7 @@ "profondeur : %d valables : %3d signées : %3d\n" " confiance : %d i., %d n.d., %d j., %d m., %d t., %d u.\n" -#: g10/trustdb.c:2333 +#: g10/trustdb.c:2345 #, c-format msgid "unable to update trustdb version record: write failed: %s\n" msgstr "" @@ -8398,19 +8404,19 @@ #. TRANSLATORS: Put a \x1f right before a colon. This can be #. * used by pinentry to nicely align the names and values. Keep #. * the %s at the start and end of the string. -#: scd/app-p15.c:5116 scd/app-openpgp.c:2154 +#: scd/app-p15.c:5145 scd/app-nks.c:1541 scd/app-openpgp.c:2154 #, c-format msgid "%sNumber: %s%%0AHolder: %s%s" msgstr "" #. TRANSLATORS: This is the number of remaining attempts to #. * enter a PIN. Use %%0A (double-percent,0A) for a linefeed. -#: scd/app-p15.c:5135 scd/app-openpgp.c:2170 +#: scd/app-p15.c:5164 scd/app-nks.c:1560 scd/app-openpgp.c:2170 #, c-format msgid "Remaining attempts: %d" msgstr "" -#: scd/app-p15.c:5214 scd/app-nks.c:1113 +#: scd/app-p15.c:5243 scd/app-nks.c:2112 msgid "||Please enter the PIN for the key to create qualified signatures." msgstr "" "||Veuillez entrer le code personnel pour permettre à la clef de créer des " @@ -8418,59 +8424,65 @@ #. TRANSLATORS: Do not translate the "|A|" prefix but keep it at #. the start of the string. Use %0A (single percent) for a linefeed. -#: scd/app-p15.c:5217 scd/app-openpgp.c:2464 +#: scd/app-p15.c:5246 scd/app-openpgp.c:2465 msgid "|A|Please enter the Admin PIN" msgstr "|A|Veuillez entrer le code personnel d'administration" -#: scd/app-p15.c:5219 scd/app-nks.c:1103 +#: scd/app-p15.c:5248 scd/app-nks.c:2102 msgid "|P|Please enter the PIN Unblocking Code (PUK) for the standard keys." msgstr "" "|P|Veuillez entrer le code de déblocage personnel (CDP) pour les clefs " "standards." -#: scd/app-p15.c:5222 scd/app-nks.c:1095 +#: scd/app-p15.c:5251 scd/app-nks.c:2093 msgid "||Please enter the PIN for the standard keys." msgstr "||Veuillez entrer le code personnel pour les clefs standards." -#: scd/app-nks.c:709 scd/app-openpgp.c:3666 +#: scd/app-nks.c:1479 scd/app-openpgp.c:3675 #, c-format msgid "RSA modulus missing or not of size %d bits\n" msgstr "le module RSA est manquant ou sa taille n'est pas de %d bits\n" -#: scd/app-nks.c:717 scd/app-openpgp.c:3678 +#: scd/app-nks.c:1487 scd/app-openpgp.c:3687 #, c-format msgid "RSA public exponent missing or larger than %d bits\n" msgstr "l'exposant public RSA est manquant ou plus grand que %d bits\n" -#: scd/app-nks.c:797 scd/app-openpgp.c:2327 scd/app-openpgp.c:2346 -#: scd/app-openpgp.c:2513 scd/app-openpgp.c:2531 scd/app-openpgp.c:2829 -#: scd/app-openpgp.c:2876 scd/app-openpgp.c:2991 scd/app-dinsig.c:302 +#: scd/app-nks.c:1660 +#, fuzzy +#| msgid "the NullPIN has not yet been changed\n" +msgid "Note: PIN has not yet been enabled." +msgstr "le code personnel nul n'a pas encore été modifié\n" + +#: scd/app-nks.c:1671 scd/app-openpgp.c:2327 scd/app-openpgp.c:2346 +#: scd/app-openpgp.c:2515 scd/app-openpgp.c:2533 scd/app-openpgp.c:2832 +#: scd/app-openpgp.c:2879 scd/app-openpgp.c:3000 scd/app-dinsig.c:303 #, c-format msgid "PIN callback returned error: %s\n" msgstr "le rappel du code personnel a renvoyé une erreur : %s\n" -#: scd/app-nks.c:830 +#: scd/app-nks.c:1707 #, c-format msgid "the NullPIN has not yet been changed\n" msgstr "le code personnel nul n'a pas encore été modifié\n" -#: scd/app-nks.c:1094 +#: scd/app-nks.c:2092 msgid "|N|Please enter a new PIN for the standard keys." msgstr "|N|Veuillez entrer un nouveau code personnel pour les clefs standards." -#: scd/app-nks.c:1101 +#: scd/app-nks.c:2100 msgid "|NP|Please enter a new PIN Unblocking Code (PUK) for the standard keys." msgstr "" "|NP|Veuillez entrer un nouveau code de déblocage personnel (CDP) pour les " "clefs standards." -#: scd/app-nks.c:1111 +#: scd/app-nks.c:2110 msgid "|N|Please enter a new PIN for the key to create qualified signatures." msgstr "" "|N|Veuillez entrer un nouveau code personnel pour permettre à la clef de " "créer des signatures qualifiées." -#: scd/app-nks.c:1121 +#: scd/app-nks.c:2120 msgid "" "|NP|Please enter a new PIN Unblocking Code (PUK) for the key to create " "qualified signatures." @@ -8478,7 +8490,7 @@ "|NP|Veuillez entrer un nouveau code de déblocage personnel (CDP) pour " "permettre à la clef de créer des signatures qualifiées." -#: scd/app-nks.c:1123 +#: scd/app-nks.c:2122 msgid "" "|P|Please enter the PIN Unblocking Code (PUK) for the key to create " "qualified signatures." @@ -8486,7 +8498,7 @@ "|P|Veuillez entrer le code de déblocage personnel (CDP) pour permettre à la " "clef de créer des signatures qualifiées." -#: scd/app-nks.c:1230 scd/app-openpgp.c:2910 scd/app-dinsig.c:532 +#: scd/app-nks.c:2295 scd/app-openpgp.c:2913 scd/app-dinsig.c:535 #, c-format msgid "error getting new PIN: %s\n" msgstr "erreur de lecture du nouveau code personnel : %s\n" @@ -8501,7 +8513,7 @@ msgid "failed to store the creation date: %s\n" msgstr "impossible de stocker la date de création : %s\n" -#: scd/app-openpgp.c:1271 scd/app-openpgp.c:2857 scd/app-openpgp.c:5041 +#: scd/app-openpgp.c:1271 scd/app-openpgp.c:2860 scd/app-openpgp.c:5051 #, c-format msgid "error retrieving CHV status from card\n" msgstr "erreur de récupération de l'état CHV de la carte\n" @@ -8522,7 +8534,7 @@ msgid "response does not contain the EC public key\n" msgstr "la réponse ne contient pas le point public EC\n" -#: scd/app-openpgp.c:1664 scd/app-openpgp.c:4286 +#: scd/app-openpgp.c:1664 scd/app-openpgp.c:4295 #, c-format msgid "response does not contain the public key data\n" msgstr "la réponse ne contient pas les données de clef publique\n" @@ -8558,25 +8570,25 @@ msgid "||Please unlock the card" msgstr "||Veuillez entrer le code personnel" -#: scd/app-openpgp.c:2353 scd/app-openpgp.c:2538 scd/app-openpgp.c:2836 +#: scd/app-openpgp.c:2353 scd/app-openpgp.c:2540 scd/app-openpgp.c:2839 #, c-format msgid "PIN for CHV%d is too short; minimum length is %d\n" msgstr "" "le code personnel pour CHV%d est trop court ; la taille minimale\n" "est %d\n" -#: scd/app-openpgp.c:2367 scd/app-openpgp.c:2414 scd/app-openpgp.c:2552 -#: scd/app-openpgp.c:4644 +#: scd/app-openpgp.c:2368 scd/app-openpgp.c:2415 scd/app-openpgp.c:2554 +#: scd/app-openpgp.c:4654 #, c-format msgid "verify CHV%d failed: %s\n" msgstr "échec de vérification CHV%d : %s\n" -#: scd/app-openpgp.c:2450 scd/app-openpgp.c:5050 +#: scd/app-openpgp.c:2451 scd/app-openpgp.c:5060 #, c-format msgid "card is permanently locked!\n" msgstr "la carte est irrémédiablement bloquée.\n" -#: scd/app-openpgp.c:2454 +#: scd/app-openpgp.c:2455 #, fuzzy, c-format #| msgid "%d Admin PIN attempts remaining before card is permanently locked\n" msgid "%d Admin PIN attempt remaining before card is permanently locked\n" @@ -8589,20 +8601,20 @@ "il reste %d tentatives de code personnel d'administration\n" "avant que la carte ne soit irrémédiablement bloquée\n" -#: scd/app-openpgp.c:2485 +#: scd/app-openpgp.c:2486 #, c-format 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:2823 +#: scd/app-openpgp.c:2826 msgid "||Please enter the PIN" msgstr "||Veuillez entrer le code personnel" -#: scd/app-openpgp.c:2872 +#: scd/app-openpgp.c:2875 msgid "||Please enter the Reset Code for the card" msgstr "||Veuillez entrer le code de réinitialisation pour la carte" -#: scd/app-openpgp.c:2882 scd/app-openpgp.c:2943 +#: scd/app-openpgp.c:2885 scd/app-openpgp.c:2946 #, c-format msgid "Reset Code is too short; minimum length is %d\n" msgstr "" @@ -8612,92 +8624,92 @@ #. 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:2905 +#: scd/app-openpgp.c:2908 msgid "|RN|New Reset Code" msgstr "|RN|Nouveau code de réinitialisation" -#: scd/app-openpgp.c:2906 +#: scd/app-openpgp.c:2909 msgid "|AN|New Admin PIN" msgstr "|AN|Nouveau code personnel d'administration" -#: scd/app-openpgp.c:2906 +#: scd/app-openpgp.c:2909 msgid "|N|New PIN" msgstr "|N|Nouveau code personnel" -#: scd/app-openpgp.c:2987 +#: scd/app-openpgp.c:2996 msgid "||Please enter the Admin PIN and New Admin PIN" msgstr "" "||Veuillez entrer le code personnel d'administration et le nouveau code " "personnel d'administration" -#: scd/app-openpgp.c:2988 +#: scd/app-openpgp.c:2997 msgid "||Please enter the PIN and New PIN" msgstr "||Veuillez entrer le code personnel et le nouveau code personnel" -#: scd/app-openpgp.c:3050 scd/app-openpgp.c:4346 +#: scd/app-openpgp.c:3059 scd/app-openpgp.c:4355 #, c-format msgid "error reading application data\n" msgstr "erreur de lecture des données d'application\n" -#: scd/app-openpgp.c:3056 scd/app-openpgp.c:4353 +#: scd/app-openpgp.c:3065 scd/app-openpgp.c:4362 #, c-format msgid "error reading fingerprint DO\n" msgstr "erreur de lecture de l'empreinte DO\n" -#: scd/app-openpgp.c:3066 +#: scd/app-openpgp.c:3075 #, c-format msgid "key already exists\n" msgstr "la clef existe déjà\n" -#: scd/app-openpgp.c:3070 +#: scd/app-openpgp.c:3079 #, c-format msgid "existing key will be replaced\n" msgstr "la clef existante sera remplacée\n" -#: scd/app-openpgp.c:3072 +#: scd/app-openpgp.c:3081 #, c-format msgid "generating new key\n" msgstr "génération d'une nouvelle clef\n" -#: scd/app-openpgp.c:3074 +#: scd/app-openpgp.c:3083 #, c-format msgid "writing new key\n" msgstr "écriture d'une nouvelle clef\n" -#: scd/app-openpgp.c:3647 scd/app-openpgp.c:3999 +#: scd/app-openpgp.c:3656 scd/app-openpgp.c:4008 #, c-format msgid "creation timestamp missing\n" msgstr "la date de création est manquant\n" -#: scd/app-openpgp.c:3688 scd/app-openpgp.c:3696 +#: scd/app-openpgp.c:3697 scd/app-openpgp.c:3705 #, c-format msgid "RSA prime %s missing or not of size %d bits\n" msgstr "" "le nombre premier RSA %s est manquant ou sa taille n'est pas de\n" "%d bits\n" -#: scd/app-openpgp.c:3829 scd/app-openpgp.c:4106 +#: scd/app-openpgp.c:3838 scd/app-openpgp.c:4115 #, c-format msgid "failed to store the key: %s\n" msgstr "impossible de stocker la clef : %s\n" -#: scd/app-openpgp.c:3993 +#: scd/app-openpgp.c:4002 #, fuzzy, c-format #| msgid "unsupported URI" msgid "unsupported curve\n" msgstr "URI non pris en charge" -#: scd/app-openpgp.c:4263 +#: scd/app-openpgp.c:4272 #, c-format msgid "please wait while key is being generated ...\n" msgstr "veuillez patienter pendant la génération de la clef…\n" -#: scd/app-openpgp.c:4271 +#: scd/app-openpgp.c:4280 #, c-format msgid "generating key failed\n" msgstr "échec de génération de la clef\n" -#: scd/app-openpgp.c:4277 +#: scd/app-openpgp.c:4286 #, fuzzy, c-format #| msgid "key generation completed (%d seconds)\n" msgid "key generation completed (%d second)\n" @@ -8705,27 +8717,27 @@ msgstr[0] "la génération de clef est terminé (%d secondes)\n" msgstr[1] "la génération de clef est terminé (%d secondes)\n" -#: scd/app-openpgp.c:4311 +#: scd/app-openpgp.c:4320 #, c-format msgid "invalid structure of OpenPGP card (DO 0x93)\n" msgstr "structure de carte OpenPGP incorrecte (DO 0x93)\n" -#: scd/app-openpgp.c:4361 +#: scd/app-openpgp.c:4370 #, c-format msgid "fingerprint on card does not match requested one\n" msgstr "l'empreinte de la carte ne correspond pas à celle demandée\n" -#: scd/app-openpgp.c:4560 +#: scd/app-openpgp.c:4569 #, c-format msgid "card does not support digest algorithm %s\n" msgstr "la carte ne gère pas l'algorithme de hachage %s\n" -#: scd/app-openpgp.c:4618 +#: scd/app-openpgp.c:4627 #, c-format msgid "signatures created so far: %lu\n" msgstr "signatures créées jusqu'à présent : %lu\n" -#: scd/app-openpgp.c:5055 +#: scd/app-openpgp.c:5065 #, c-format msgid "" "verification of Admin PIN is currently prohibited through this command\n" @@ -8733,13 +8745,13 @@ "la vérification du code personnel d'administration est actuellement\n" "interdite avec cette commande\n" -#: scd/app-openpgp.c:5386 scd/app-openpgp.c:5398 +#: scd/app-openpgp.c:5396 scd/app-openpgp.c:5408 #, c-format msgid "can't access %s - invalid OpenPGP card?\n" msgstr "" "impossible d'accéder à %s — la carte OpenPGP n'est peut-être pas valable\n" -#: scd/app-dinsig.c:298 +#: scd/app-dinsig.c:299 msgid "||Please enter your PIN at the reader's pinpad" msgstr "" "||Veuillez entrer votre code personnel sur le pavé numérique du lecteur" @@ -8747,7 +8759,7 @@ #. 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-dinsig.c:529 +#: scd/app-dinsig.c:532 msgid "|N|Initial New PIN" msgstr "|N|Nouveau code personnel initial" @@ -8835,11 +8847,11 @@ msgid "validation model requested by certificate: %s" msgstr "modèle de validation demandé par le certificat : %s" -#: sm/certchain.c:199 sm/certchain.c:2164 +#: sm/certchain.c:199 sm/certchain.c:2165 msgid "chain" msgstr "chaîne" -#: sm/certchain.c:200 sm/certchain.c:2164 +#: sm/certchain.c:200 sm/certchain.c:2165 msgid "shell" msgstr "invite" @@ -8863,241 +8875,241 @@ msgid "failed to open '%s': %s\n" msgstr "échec d'ouverture de « %s » : %s\n" -#: sm/certchain.c:355 sm/certchain.c:384 dirmngr/validate.c:204 +#: sm/certchain.c:355 sm/certchain.c:385 dirmngr/validate.c:204 #, c-format msgid "Note: non-critical certificate policy not allowed" msgstr "Remarque : politique de certificat non critique non autorisée" -#: sm/certchain.c:359 sm/certchain.c:388 dirmngr/validate.c:209 +#: sm/certchain.c:359 sm/certchain.c:389 dirmngr/validate.c:209 #, c-format msgid "certificate policy not allowed" msgstr "politique de certificat non autorisée" -#: sm/certchain.c:595 sm/keydb.c:1084 sm/keydb.c:1171 +#: sm/certchain.c:596 sm/keydb.c:1084 sm/keydb.c:1171 #, c-format msgid "failed to get the fingerprint\n" msgstr "impossible d'obtenir l'empreinte\n" -#: sm/certchain.c:624 +#: sm/certchain.c:625 #, c-format msgid "looking up issuer at external location\n" msgstr "recherche d'émetteur à l'extérieur\n" -#: sm/certchain.c:644 +#: sm/certchain.c:645 #, c-format msgid "number of issuers matching: %d\n" msgstr "nombre d'émetteurs correspondants : %d\n" -#: sm/certchain.c:723 dirmngr/ocsp.c:685 +#: sm/certchain.c:724 dirmngr/ocsp.c:685 #, c-format msgid "can't get authorityInfoAccess: %s\n" msgstr "impossible d'obtenir authorityInfoAccess : %s\n" -#: sm/certchain.c:791 +#: sm/certchain.c:792 #, c-format msgid "looking up issuer from the Dirmngr cache\n" msgstr "recherche d'émetteur dans le cache du Dirmngr\n" -#: sm/certchain.c:816 +#: sm/certchain.c:817 #, c-format msgid "number of matching certificates: %d\n" msgstr "nombre de certificats correspondants : %d\n" -#: sm/certchain.c:819 +#: sm/certchain.c:820 #, c-format msgid "dirmngr cache-only key lookup failed: %s\n" msgstr "échec de recherche de clef seulement dans le cache du dirmngr : %s\n" -#: sm/certchain.c:1041 sm/certchain.c:1554 sm/certchain.c:2192 sm/decrypt.c:728 +#: sm/certchain.c:1042 sm/certchain.c:1555 sm/certchain.c:2193 sm/decrypt.c:728 #: sm/encrypt.c:345 sm/import.c:415 sm/keydb.c:1091 sm/keydb.c:1178 #: sm/sign.c:337 sm/verify.c:118 #, c-format msgid "failed to allocate keyDB handle\n" msgstr "impossible d'allouer la gestion de base de clefs\n" -#: sm/certchain.c:1225 +#: sm/certchain.c:1226 msgid "certificate has been revoked" msgstr "le certificat a été révoquée" -#: sm/certchain.c:1240 +#: sm/certchain.c:1241 msgid "the status of the certificate is unknown" msgstr "l'état du certificat est inconnu" -#: sm/certchain.c:1247 +#: sm/certchain.c:1248 #, c-format msgid "please make sure that the \"dirmngr\" is properly installed\n" msgstr "veuillez vous assurer que le « dirmngr » est correctement installé\n" -#: sm/certchain.c:1253 +#: sm/certchain.c:1254 #, c-format msgid "checking the CRL failed: %s" msgstr "échec de vérification de la liste de révocations de certificat : %s" -#: sm/certchain.c:1282 sm/certchain.c:1350 dirmngr/validate.c:497 +#: sm/certchain.c:1283 sm/certchain.c:1351 dirmngr/validate.c:497 #, c-format msgid "certificate with invalid validity: %s" msgstr "certificat avec validité incorrecte : %s" -#: sm/certchain.c:1297 sm/certchain.c:1382 dirmngr/validate.c:515 +#: sm/certchain.c:1298 sm/certchain.c:1383 dirmngr/validate.c:515 #, c-format msgid "certificate not yet valid" msgstr "certificat pas encore valable" -#: sm/certchain.c:1298 sm/certchain.c:1383 +#: sm/certchain.c:1299 sm/certchain.c:1384 msgid "root certificate not yet valid" msgstr "certificat racine pas encore valable" -#: sm/certchain.c:1299 sm/certchain.c:1384 +#: sm/certchain.c:1300 sm/certchain.c:1385 msgid "intermediate certificate not yet valid" msgstr "certificat intermédiaire pas encore valable" -#: sm/certchain.c:1312 dirmngr/validate.c:526 +#: sm/certchain.c:1313 dirmngr/validate.c:526 #, c-format msgid "certificate has expired" msgstr "le certificat a expiré" -#: sm/certchain.c:1313 +#: sm/certchain.c:1314 msgid "root certificate has expired" msgstr "le certificat racine a expiré" -#: sm/certchain.c:1314 +#: sm/certchain.c:1315 msgid "intermediate certificate has expired" msgstr "le certificat intermédiaire a expiré" -#: sm/certchain.c:1356 +#: sm/certchain.c:1357 #, c-format msgid "required certificate attributes missing: %s%s%s" msgstr "des attributs nécessaires du certificat sont manquants : %s%s%s" -#: sm/certchain.c:1365 +#: sm/certchain.c:1366 msgid "certificate with invalid validity" msgstr "certificat avec validité incorrecte" -#: sm/certchain.c:1402 +#: sm/certchain.c:1403 msgid "signature not created during lifetime of certificate" msgstr "signature non créée pendant la durée de vie du certificat" -#: sm/certchain.c:1404 +#: sm/certchain.c:1405 msgid "certificate not created during lifetime of issuer" msgstr "certificat non créé pendant la durée de vie de l'émetteur" -#: sm/certchain.c:1405 +#: sm/certchain.c:1406 msgid "intermediate certificate not created during lifetime of issuer" msgstr "" "certificat intermédiaire non créé pendant la durée de vie de l'émetteur" -#: sm/certchain.c:1409 +#: sm/certchain.c:1410 #, c-format msgid " ( signature created at " msgstr " ( signature créée le " -#: sm/certchain.c:1410 +#: sm/certchain.c:1411 #, c-format msgid " (certificate created at " msgstr " ( certificat créé le " -#: sm/certchain.c:1413 +#: sm/certchain.c:1414 #, c-format msgid " (certificate valid from " msgstr " (certificat valable depuis " -#: sm/certchain.c:1414 +#: sm/certchain.c:1415 #, c-format msgid " ( issuer valid from " msgstr " ( émetteur valable depuis " -#: sm/certchain.c:1444 dirmngr/validate.c:577 +#: sm/certchain.c:1445 dirmngr/validate.c:577 #, c-format msgid "fingerprint=%s\n" msgstr "empreinte=%s\n" -#: sm/certchain.c:1453 +#: sm/certchain.c:1454 #, c-format msgid "root certificate has now been marked as trusted\n" msgstr "le certificat racine a maintenant été marqué de confiance\n" -#: sm/certchain.c:1466 +#: sm/certchain.c:1467 #, c-format msgid "interactive marking as trusted not enabled in gpg-agent\n" msgstr "marquage de confiance interactif non activé dans gpg-agent\n" -#: sm/certchain.c:1472 +#: sm/certchain.c:1473 #, c-format msgid "interactive marking as trusted disabled for this session\n" msgstr "marquage de confiance interactif désactivé pour cette session\n" -#: sm/certchain.c:1531 +#: sm/certchain.c:1532 msgid "WARNING: creation time of signature not known - assuming current time" msgstr "" "Attention : date de création de la signature inconnue — date supposée " "actuelle" -#: sm/certchain.c:1595 +#: sm/certchain.c:1596 msgid "no issuer found in certificate" msgstr "aucun émetteur trouvé dans le certificat" -#: sm/certchain.c:1673 +#: sm/certchain.c:1674 msgid "self-signed certificate has a BAD signature" msgstr "certificat autosigné avec une mauvaise signature" -#: sm/certchain.c:1742 dirmngr/validate.c:575 +#: sm/certchain.c:1743 dirmngr/validate.c:575 #, c-format msgid "root certificate is not marked trusted" msgstr "le certificat racine n'est pas marqué de confiance" -#: sm/certchain.c:1758 +#: sm/certchain.c:1759 #, c-format msgid "checking the trust list failed: %s\n" msgstr "échec de vérification de la liste de confiance : %s\n" -#: sm/certchain.c:1789 sm/import.c:176 sm/keylist.c:1396 dirmngr/validate.c:630 +#: sm/certchain.c:1790 sm/import.c:176 sm/keylist.c:1396 dirmngr/validate.c:630 #, c-format msgid "certificate chain too long\n" msgstr "chaîne de certificats trop longue\n" -#: sm/certchain.c:1801 dirmngr/validate.c:642 +#: sm/certchain.c:1802 dirmngr/validate.c:642 #, c-format msgid "issuer certificate not found" msgstr "certificat d'émetteur introuvable" -#: sm/certchain.c:1834 dirmngr/validate.c:668 +#: sm/certchain.c:1835 dirmngr/validate.c:668 #, c-format msgid "certificate has a BAD signature" msgstr "certificat avec une mauvaise signature" -#: sm/certchain.c:1866 dirmngr/validate.c:692 +#: sm/certchain.c:1867 dirmngr/validate.c:692 msgid "found another possible matching CA certificate - trying again" msgstr "" "un autre certificat d'autorité de certification pouvant correspondre a été " "trouvé — nouvel essai" -#: sm/certchain.c:1925 dirmngr/validate.c:717 +#: sm/certchain.c:1926 dirmngr/validate.c:717 #, c-format msgid "certificate chain longer than allowed by CA (%d)" msgstr "" "chaîne de certificats plus longue que celle autorisée par l'autorité de " "certification (%d)" -#: sm/certchain.c:1967 sm/certchain.c:2263 dirmngr/validate.c:747 +#: sm/certchain.c:1968 sm/certchain.c:2264 dirmngr/validate.c:747 #, c-format msgid "certificate is good\n" msgstr "le certificat est correct\n" -#: sm/certchain.c:1968 +#: sm/certchain.c:1969 #, c-format msgid "intermediate certificate is good\n" msgstr "le certificat intermédiaire est correct\n" -#: sm/certchain.c:1969 +#: sm/certchain.c:1970 #, c-format msgid "root certificate is good\n" msgstr "le certificat racine est correct\n" -#: sm/certchain.c:2151 +#: sm/certchain.c:2152 msgid "switching to chain model" msgstr "basculement en modèle chaîne" -#: sm/certchain.c:2160 +#: sm/certchain.c:2161 #, c-format msgid "validation model used: %s" msgstr "modèle de validation utilisé : %s" diff -Nru gnupg2-2.2.40/po/gl.po gnupg2-2.2.41/po/gl.po --- gnupg2-2.2.40/po/gl.po 2022-10-10 09:58:26.000000000 +0000 +++ gnupg2-2.2.41/po/gl.po 2022-12-09 08:48:34.000000000 +0000 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: gnupg 1.2.4\n" "Report-Msgid-Bugs-To: translations@gnupg.org\n" -"POT-Creation-Date: 2022-10-10 11:58+0200\n" +"POT-Creation-Date: 2022-12-09 09:48+0100\n" "PO-Revision-Date: 2003-12-04 11:39+0100\n" "Last-Translator: Jacobo Tarrio \n" "Language-Team: Galician \n" @@ -224,8 +224,8 @@ msgid "ssh keys greater than %d bits are not supported\n" msgstr "o algoritmo de protección %d%s non está soportado\n" -#: agent/command-ssh.c:862 common/dotlock.c:856 g10/card-util.c:947 -#: g10/exec.c:554 g10/export.c:1320 g10/gpg.c:1400 g10/keygen.c:4998 +#: agent/command-ssh.c:862 common/dotlock.c:856 g10/card-util.c:946 +#: g10/exec.c:554 g10/export.c:1335 g10/gpg.c:1409 g10/keygen.c:5052 #: g10/keyring.c:1322 g10/keyring.c:1637 g10/openfile.c:291 g10/sign.c:1008 #: g10/sign.c:1322 g10/tdbio.c:753 #, fuzzy, c-format @@ -233,12 +233,12 @@ msgid "can't create '%s': %s\n" msgstr "non se pode crear `%s': %s\n" -#: agent/command-ssh.c:874 common/helpfile.c:57 g10/card-util.c:904 +#: agent/command-ssh.c:874 common/helpfile.c:57 g10/card-util.c:903 #: g10/dearmor.c:59 g10/dearmor.c:106 g10/decrypt.c:65 g10/decrypt.c:136 -#: g10/decrypt.c:153 g10/encrypt.c:239 g10/encrypt.c:678 g10/gpg.c:1401 -#: g10/import.c:364 g10/import.c:548 g10/import.c:776 g10/keygen.c:4036 +#: g10/decrypt.c:153 g10/encrypt.c:239 g10/encrypt.c:678 g10/gpg.c:1410 +#: g10/import.c:365 g10/import.c:549 g10/import.c:777 g10/keygen.c:4090 #: g10/keyring.c:1663 g10/openfile.c:195 g10/openfile.c:209 g10/plaintext.c:128 -#: g10/plaintext.c:649 g10/sign.c:990 g10/sign.c:1201 g10/sign.c:1306 +#: g10/plaintext.c:654 g10/sign.c:990 g10/sign.c:1201 g10/sign.c:1306 #: g10/sign.c:1451 g10/tdbdump.c:145 g10/tdbdump.c:153 g10/tdbio.c:758 #: g10/tdbio.c:829 g10/verify.c:96 g10/verify.c:160 sm/gpgsm.c:2160 #: sm/gpgsm.c:2190 sm/gpgsm.c:2228 sm/qualified.c:66 dirmngr/certcache.c:420 @@ -467,34 +467,34 @@ msgid "csh-style command output" msgstr "" -#: agent/gpg-agent.c:185 g10/gpg.c:579 scd/scdaemon.c:126 sm/gpgsm.c:410 +#: agent/gpg-agent.c:185 g10/gpg.c:580 scd/scdaemon.c:126 sm/gpgsm.c:410 #: dirmngr/dirmngr.c:192 #, fuzzy msgid "|FILE|read options from FILE" msgstr "|FICHEIRO|carga-lo módulo de extensión FICHEIRO" -#: agent/gpg-agent.c:189 g10/gpg.c:566 scd/scdaemon.c:130 sm/gpgsm.c:259 +#: agent/gpg-agent.c:189 g10/gpg.c:567 scd/scdaemon.c:130 sm/gpgsm.c:259 #: dirmngr/dirmngr.c:196 msgid "Options controlling the diagnostic output" msgstr "" -#: agent/gpg-agent.c:191 g10/gpg.c:568 g10/gpgv.c:78 kbx/kbxutil.c:88 +#: agent/gpg-agent.c:191 g10/gpg.c:569 g10/gpgv.c:78 kbx/kbxutil.c:88 #: scd/scdaemon.c:132 sm/gpgsm.c:261 dirmngr/dirmngr-client.c:70 #: dirmngr/dirmngr.c:198 tools/gpg-connect-agent.c:78 tools/gpgconf.c:110 msgid "verbose" msgstr "lareto" -#: agent/gpg-agent.c:192 g10/gpg.c:570 g10/gpgv.c:79 kbx/kbxutil.c:89 +#: agent/gpg-agent.c:192 g10/gpg.c:571 g10/gpgv.c:79 kbx/kbxutil.c:89 #: scd/scdaemon.c:133 sm/gpgsm.c:263 dirmngr/dirmngr-client.c:71 #: dirmngr/dirmngr.c:199 msgid "be somewhat more quiet" msgstr "ser un pouquiño máis calado" -#: agent/gpg-agent.c:200 g10/gpg.c:583 sm/gpgsm.c:276 dirmngr/dirmngr.c:209 +#: agent/gpg-agent.c:200 g10/gpg.c:584 sm/gpgsm.c:276 dirmngr/dirmngr.c:209 msgid "|FILE|write server mode logs to FILE" msgstr "" -#: agent/gpg-agent.c:204 g10/gpg.c:589 scd/scdaemon.c:147 sm/gpgsm.c:283 +#: agent/gpg-agent.c:204 g10/gpg.c:590 scd/scdaemon.c:147 sm/gpgsm.c:283 #: dirmngr/dirmngr.c:213 msgid "Options controlling the configuration" msgstr "" @@ -538,7 +538,7 @@ msgid "enable putty support" msgstr "non está soportado" -#: agent/gpg-agent.c:237 g10/gpg.c:831 scd/scdaemon.c:175 sm/gpgsm.c:369 +#: agent/gpg-agent.c:237 g10/gpg.c:832 scd/scdaemon.c:175 sm/gpgsm.c:369 msgid "Options controlling the security" msgstr "" @@ -640,7 +640,7 @@ #. reporting address. This is so that we can change the #. reporting address without breaking the translations. #: agent/gpg-agent.c:563 agent/preset-passphrase.c:100 agent/protect-tool.c:155 -#: g10/gpg.c:1108 g10/gpgv.c:149 kbx/kbxutil.c:113 scd/scdaemon.c:313 +#: g10/gpg.c:1117 g10/gpgv.c:149 kbx/kbxutil.c:113 scd/scdaemon.c:313 #: sm/gpgsm.c:600 dirmngr/dirmngr-client.c:168 dirmngr/dirmngr.c:458 #: tools/gpg-connect-agent.c:205 tools/gpgconf.c:154 #: tools/gpg-check-pattern.c:143 @@ -661,27 +661,27 @@ "Secret key management for @GNUPG@\n" msgstr "" -#: agent/gpg-agent.c:619 g10/gpg.c:1304 scd/scdaemon.c:385 sm/gpgsm.c:748 +#: agent/gpg-agent.c:619 g10/gpg.c:1313 scd/scdaemon.c:385 sm/gpgsm.c:748 #: dirmngr/dirmngr.c:542 #, c-format msgid "invalid debug-level '%s' given\n" msgstr "" -#: agent/gpg-agent.c:988 g10/gpg.c:3810 g10/gpg.c:3834 sm/gpgsm.c:1585 +#: agent/gpg-agent.c:988 g10/gpg.c:3830 g10/gpg.c:3854 sm/gpgsm.c:1585 #: sm/gpgsm.c:1591 #, c-format msgid "selected digest algorithm is invalid\n" msgstr "o algoritmo de resumo seleccionado non é válido\n" #: agent/gpg-agent.c:1216 agent/gpg-agent.c:2029 common/argparse.c:1766 -#: common/argparse.c:1858 g10/gpg.c:2517 scd/scdaemon.c:547 sm/gpgsm.c:1007 +#: common/argparse.c:1858 g10/gpg.c:2526 scd/scdaemon.c:547 sm/gpgsm.c:1007 #: dirmngr/dirmngr.c:1081 dirmngr/dirmngr.c:1937 #, fuzzy, c-format #| msgid "reading options from `%s'\n" msgid "reading options from '%s'\n" msgstr "lendo as opcións de `%s'\n" -#: agent/gpg-agent.c:1332 g10/gpg.c:3751 scd/scdaemon.c:671 sm/gpgsm.c:1522 +#: agent/gpg-agent.c:1332 g10/gpg.c:3769 scd/scdaemon.c:671 sm/gpgsm.c:1522 #: dirmngr/dirmngr.c:1190 tools/gpg-connect-agent.c:1244 tools/gpgconf.c:677 #, fuzzy, c-format #| msgid "WARNING: \"%s\" is a deprecated option\n" @@ -814,7 +814,7 @@ "Password cache maintenance\n" msgstr "" -#: agent/protect-tool.c:108 g10/gpg.c:441 kbx/kbxutil.c:71 sm/gpgsm.c:210 +#: agent/protect-tool.c:108 g10/gpg.c:442 kbx/kbxutil.c:71 sm/gpgsm.c:210 #: dirmngr/dirmngr.c:171 tools/gpgconf.c:80 msgid "" "@Commands:\n" @@ -1034,7 +1034,7 @@ msgid "secret key parts are not available\n" msgstr "hai partes da chave secreta non dispoñibles\n" -#: agent/cvt-openpgp.c:344 g10/card-util.c:1556 +#: agent/cvt-openpgp.c:344 g10/card-util.c:1555 #, fuzzy, c-format #| msgid "protection algorithm %d%s is not supported\n" msgid "public key algorithm %d (%s) is not supported\n" @@ -1194,7 +1194,7 @@ msgid "out of core while allocating %lu bytes" msgstr "" -#: common/miscellaneous.c:115 g10/card-util.c:911 tools/no-libgcrypt.c:30 +#: common/miscellaneous.c:115 g10/card-util.c:910 tools/no-libgcrypt.c:30 #, fuzzy, c-format msgid "error allocating enough memory: %s\n" msgstr "erro ao crea-lo chaveiro `%s': %s\n" @@ -1319,7 +1319,7 @@ msgstr "armadura: %s\n" #: common/audit.c:774 common/audit.c:776 common/audit.c:921 common/audit.c:923 -#: scd/app-openpgp.c:3557 +#: scd/app-openpgp.c:3566 #, fuzzy, c-format msgid "unsupported algorithm: %s" msgstr "" @@ -1405,12 +1405,12 @@ "Non se atoparon certificados con confianza non definida.\n" "\n" -#: common/audit.c:1112 sm/certchain.c:1235 +#: common/audit.c:1112 sm/certchain.c:1236 #, fuzzy msgid "no CRL found for certificate" msgstr "Certificado correcto" -#: common/audit.c:1115 sm/certchain.c:1245 +#: common/audit.c:1115 sm/certchain.c:1246 #, fuzzy msgid "the available CRL is too old" msgstr "Chave dispoñible en: " @@ -1553,7 +1553,7 @@ msgid "missing argument for option \"%.50s\"\n" msgstr "" -#: common/argparse.c:558 g10/gpg.c:3525 +#: common/argparse.c:558 g10/gpg.c:3543 #, fuzzy, c-format msgid "invalid argument for option \"%.50s\"\n" msgstr "opcións de importación non válidas\n" @@ -1654,92 +1654,92 @@ msgid "%s is too old (need %s, have %s)\n" msgstr "" -#: g10/armor.c:423 +#: g10/armor.c:424 #, c-format msgid "armor: %s\n" msgstr "armadura: %s\n" -#: g10/armor.c:462 +#: g10/armor.c:463 #, c-format msgid "invalid armor header: " msgstr "cabeceira de armadura non válida: " -#: g10/armor.c:473 +#: g10/armor.c:474 #, c-format msgid "armor header: " msgstr "cabeceira de armadura: " -#: g10/armor.c:486 +#: g10/armor.c:487 #, c-format msgid "invalid clearsig header\n" msgstr "cabeceira de sinatura en claro non válida\n" -#: g10/armor.c:499 +#: g10/armor.c:500 #, fuzzy, c-format msgid "unknown armor header: " msgstr "cabeceira de armadura: " -#: g10/armor.c:552 +#: g10/armor.c:553 #, c-format msgid "nested clear text signatures\n" msgstr "sinaturas en texto claro aniñadas\n" -#: g10/armor.c:687 +#: g10/armor.c:688 #, fuzzy, c-format msgid "unexpected armor: " msgstr "armadura inesperada:" -#: g10/armor.c:700 +#: g10/armor.c:701 #, c-format msgid "invalid dash escaped line: " msgstr "liña escapada cunha barra non válida: " -#: g10/armor.c:872 g10/armor.c:1492 +#: g10/armor.c:873 g10/armor.c:1493 #, fuzzy, c-format msgid "invalid radix64 character %02X skipped\n" msgstr "carácter radix64 non válido %02x omitido\n" -#: g10/armor.c:915 +#: g10/armor.c:916 #, c-format msgid "premature eof (no CRC)\n" msgstr "fin de ficheiro prematura (non hai CRC)\n" -#: g10/armor.c:949 +#: g10/armor.c:950 #, c-format msgid "premature eof (in CRC)\n" msgstr "fin de ficheiro prematura (no CRC)\n" -#: g10/armor.c:957 +#: g10/armor.c:958 #, c-format msgid "malformed CRC\n" msgstr "CRC mal formado\n" -#: g10/armor.c:961 g10/armor.c:1529 +#: g10/armor.c:962 g10/armor.c:1530 #, fuzzy, c-format msgid "CRC error; %06lX - %06lX\n" msgstr "Erro de CRC; %06lx - %06lx\n" -#: g10/armor.c:981 +#: g10/armor.c:982 #, fuzzy, c-format msgid "premature eof (in trailer)\n" msgstr "fin de ficheiro prematura (nas liñas adicionais)\n" -#: g10/armor.c:985 +#: g10/armor.c:986 #, c-format msgid "error in trailer line\n" msgstr "error nunha liña adicional\n" -#: g10/armor.c:1305 +#: g10/armor.c:1306 #, c-format msgid "no valid OpenPGP data found.\n" msgstr "non se atoparon datos OpenPGP válidos.\n" -#: g10/armor.c:1310 +#: g10/armor.c:1311 #, c-format msgid "invalid armor: line longer than %d characters\n" msgstr "armadura incorrecta: liña máis longa ca %d caracteres\n" -#: g10/armor.c:1314 +#: g10/armor.c:1315 #, c-format msgid "" "quoted printable character in armor - probably a buggy MTA has been used\n" @@ -1889,24 +1889,24 @@ msgid "server uses an invalid certificate" msgstr "xerar un certificado de revocación" -#: g10/call-dirmngr.c:462 g10/gpg.c:4458 +#: g10/call-dirmngr.c:462 g10/gpg.c:4478 #, fuzzy, c-format #| msgid "armor: %s\n" msgid "Note: %s\n" msgstr "armadura: %s\n" -#: g10/card-util.c:86 g10/card-util.c:366 g10/card-util.c:1918 +#: g10/card-util.c:86 g10/card-util.c:366 g10/card-util.c:1917 #, fuzzy, c-format msgid "OpenPGP card not available: %s\n" msgstr "a chave secreta non está dispoñible" -#: g10/card-util.c:91 g10/card-util.c:1924 +#: g10/card-util.c:91 g10/card-util.c:1923 #, c-format msgid "OpenPGP card no. %s detected\n" msgstr "" -#: g10/card-util.c:97 g10/card-util.c:2253 g10/delkey.c:160 g10/keyedit.c:1423 -#: g10/keygen.c:4466 g10/revoke.c:214 g10/revoke.c:636 +#: g10/card-util.c:97 g10/card-util.c:2252 g10/delkey.c:160 g10/keyedit.c:1423 +#: g10/keygen.c:4520 g10/revoke.c:214 g10/revoke.c:636 #, fuzzy, c-format msgid "can't do this in batch mode\n" msgstr "non se pode facer iso no modo por lotes\n" @@ -1916,14 +1916,14 @@ msgid "This command is only available for version 2 cards\n" msgstr "Non se admite este comando no modo %s.\n" -#: g10/card-util.c:107 scd/app-openpgp.c:2866 +#: g10/card-util.c:107 scd/app-openpgp.c:2869 #, fuzzy, c-format msgid "Reset Code not or not anymore available\n" msgstr "hai partes da chave secreta non dispoñibles\n" -#: g10/card-util.c:140 g10/card-util.c:1442 g10/card-util.c:1704 -#: g10/card-util.c:1796 g10/keyedit.c:394 g10/keyedit.c:415 g10/keyedit.c:429 -#: g10/keygen.c:1808 g10/keygen.c:1980 g10/keygen.c:2186 g10/keygen.c:2477 +#: g10/card-util.c:140 g10/card-util.c:1441 g10/card-util.c:1703 +#: g10/card-util.c:1795 g10/keyedit.c:394 g10/keyedit.c:415 g10/keyedit.c:429 +#: g10/keygen.c:1862 g10/keygen.c:2034 g10/keygen.c:2240 g10/keygen.c:2531 #: sm/certreqgen-ui.c:165 sm/certreqgen-ui.c:291 sm/certreqgen-ui.c:325 msgid "Your selection? " msgstr "¿A súa selección? " @@ -1974,13 +1974,13 @@ msgid "Error: Combined name too long (limit is %d characters).\n" msgstr "" -#: g10/card-util.c:826 +#: g10/card-util.c:825 #, fuzzy msgid "URL to retrieve public key: " msgstr "non hai unha chave pública correspondente: %s\n" -#: g10/card-util.c:920 g10/decrypt-data.c:509 g10/import.c:399 g10/import.c:746 -#: g10/import.c:798 dirmngr/crlcache.c:655 dirmngr/crlcache.c:660 +#: g10/card-util.c:919 g10/decrypt-data.c:509 g10/import.c:400 g10/import.c:747 +#: g10/import.c:799 dirmngr/crlcache.c:655 dirmngr/crlcache.c:660 #: dirmngr/crlcache.c:914 dirmngr/crlcache.c:920 dirmngr/dirmngr.c:1748 #: tools/gpgconf.c:483 tools/gpgconf.c:529 #, fuzzy, c-format @@ -1988,174 +1988,174 @@ msgid "error reading '%s': %s\n" msgstr "erro lendo `%s': %s\n" -#: g10/card-util.c:953 g10/decrypt-data.c:512 g10/export.c:2467 +#: g10/card-util.c:952 g10/decrypt-data.c:512 g10/export.c:2586 #: dirmngr/crlcache.c:925 #, fuzzy, c-format msgid "error writing '%s': %s\n" msgstr "erro escribindo no chaveiro `%s': %s\n" -#: g10/card-util.c:980 +#: g10/card-util.c:979 msgid "Login data (account name): " msgstr "" -#: g10/card-util.c:1018 +#: g10/card-util.c:1017 msgid "Private DO data: " msgstr "" -#: g10/card-util.c:1103 +#: g10/card-util.c:1102 #, fuzzy msgid "Language preferences: " msgstr "preferencias actualizadas" -#: g10/card-util.c:1111 +#: g10/card-util.c:1110 #, fuzzy msgid "Error: invalid length of preference string.\n" msgstr "caracter non válido na cadea de preferencias\n" -#: g10/card-util.c:1120 +#: g10/card-util.c:1119 #, fuzzy msgid "Error: invalid characters in preference string.\n" msgstr "caracter non válido na cadea de preferencias\n" -#: g10/card-util.c:1142 +#: g10/card-util.c:1141 msgid "Salutation (M = Mr., F = Ms., or space): " msgstr "" -#: g10/card-util.c:1156 +#: g10/card-util.c:1155 #, fuzzy msgid "Error: invalid response.\n" msgstr "erro: pegada dactilar non válida\n" -#: g10/card-util.c:1178 +#: g10/card-util.c:1177 #, fuzzy msgid "CA fingerprint: " msgstr "Pegada dactilar:" -#: g10/card-util.c:1201 +#: g10/card-util.c:1200 #, fuzzy msgid "Error: invalid formatted fingerprint.\n" msgstr "erro: pegada dactilar non válida\n" -#: g10/card-util.c:1252 +#: g10/card-util.c:1251 #, fuzzy, c-format msgid "key operation not possible: %s\n" msgstr "A xeración da chave fallou: %s\n" -#: g10/card-util.c:1253 +#: g10/card-util.c:1252 #, fuzzy msgid "not an OpenPGP card" msgstr "non se atoparon datos OpenPGP válidos.\n" -#: g10/card-util.c:1266 g10/keygen.c:4486 g10/keygen.c:5562 +#: g10/card-util.c:1265 g10/keygen.c:4540 g10/keygen.c:5616 #, fuzzy, c-format msgid "error getting current key info: %s\n" msgstr "erro escribindo no chaveiro secreto `%s': %s\n" -#: g10/card-util.c:1351 +#: g10/card-util.c:1350 msgid "Replace existing key? (y/N) " msgstr "" -#: g10/card-util.c:1368 +#: g10/card-util.c:1367 msgid "" "Note: There is no guarantee that the card supports the requested size.\n" " If the key generation does not succeed, please check the\n" " documentation of your card to see what sizes are allowed.\n" msgstr "" -#: g10/card-util.c:1390 g10/keygen.c:2363 sm/certreqgen-ui.c:179 +#: g10/card-util.c:1389 g10/keygen.c:2417 sm/certreqgen-ui.c:179 #, fuzzy, c-format msgid "What keysize do you want? (%u) " msgstr "¿Qué tamaño de chave quere? (1024) " -#: g10/card-util.c:1400 g10/keygen.c:2286 g10/keygen.c:2318 +#: g10/card-util.c:1399 g10/keygen.c:2340 g10/keygen.c:2372 #: sm/certreqgen-ui.c:194 #, c-format msgid "rounded up to %u bits\n" msgstr "redondeado a %u bits\n" -#: g10/card-util.c:1408 g10/keygen.c:2371 sm/certreqgen-ui.c:184 +#: g10/card-util.c:1407 g10/keygen.c:2425 sm/certreqgen-ui.c:184 #, c-format msgid "%s keysizes must be in the range %u-%u\n" msgstr "" -#: g10/card-util.c:1427 +#: g10/card-util.c:1426 msgid "Changing card key attribute for: " msgstr "" -#: g10/card-util.c:1429 +#: g10/card-util.c:1428 #, fuzzy msgid "Signature key\n" msgstr "A sinatura caducou o %s\n" -#: g10/card-util.c:1431 +#: g10/card-util.c:1430 #, fuzzy msgid "Encryption key\n" msgstr " (%d) RSA (só cifrar)\n" -#: g10/card-util.c:1433 +#: g10/card-util.c:1432 msgid "Authentication key\n" msgstr "" -#: g10/card-util.c:1435 g10/keygen.c:1926 sm/certreqgen-ui.c:157 +#: g10/card-util.c:1434 g10/keygen.c:1980 sm/certreqgen-ui.c:157 msgid "Please select what kind of key you want:\n" msgstr "Por favor, seleccione o tipo de chave que quere:\n" -#: g10/card-util.c:1436 sm/certreqgen-ui.c:158 +#: g10/card-util.c:1435 sm/certreqgen-ui.c:158 #, fuzzy, c-format msgid " (%d) RSA\n" msgstr " (%d) RSA (só asinar)\n" -#: g10/card-util.c:1437 +#: g10/card-util.c:1436 #, fuzzy, c-format msgid " (%d) ECC\n" msgstr " (%d) DSA e ElGamal (por defecto)\n" -#: g10/card-util.c:1449 g10/card-util.c:1716 g10/card-util.c:1816 -#: g10/keyedit.c:900 g10/keygen.c:1834 g10/keygen.c:1862 g10/keygen.c:1987 -#: g10/keygen.c:2222 g10/keygen.c:2505 g10/revoke.c:838 +#: g10/card-util.c:1448 g10/card-util.c:1715 g10/card-util.c:1815 +#: g10/keyedit.c:900 g10/keygen.c:1888 g10/keygen.c:1916 g10/keygen.c:2041 +#: g10/keygen.c:2276 g10/keygen.c:2559 g10/revoke.c:838 msgid "Invalid selection.\n" msgstr "Selección non válida.\n" -#: g10/card-util.c:1522 +#: g10/card-util.c:1521 #, c-format msgid "The card will now be re-configured to generate a key of %u bits\n" msgstr "" -#: g10/card-util.c:1527 +#: g10/card-util.c:1526 #, c-format msgid "The card will now be re-configured to generate a key of type: %s\n" msgstr "" -#: g10/card-util.c:1563 +#: g10/card-util.c:1562 #, fuzzy, c-format msgid "error changing key attribute for key %d: %s\n" msgstr "erro ao enviar a `%s': %s\n" -#: g10/card-util.c:1579 g10/card-util.c:2106 +#: g10/card-util.c:1578 g10/card-util.c:2105 #, fuzzy, c-format msgid "error getting card info: %s\n" msgstr "erro escribindo no chaveiro secreto `%s': %s\n" -#: g10/card-util.c:1585 g10/card-util.c:1930 g10/card-util.c:2112 +#: g10/card-util.c:1584 g10/card-util.c:1929 g10/card-util.c:2111 #, fuzzy, c-format #| msgid "This command is not allowed while in %s mode.\n" msgid "This command is not supported by this card\n" msgstr "Non se admite este comando no modo %s.\n" -#: g10/card-util.c:1631 +#: g10/card-util.c:1630 msgid "Make off-card backup of encryption key? (Y/n) " msgstr "" -#: g10/card-util.c:1645 +#: g10/card-util.c:1644 #, fuzzy, c-format msgid "Note: keys are already stored on the card!\n" msgstr "omítese: a chave secreta xa está presente\n" -#: g10/card-util.c:1648 +#: g10/card-util.c:1647 msgid "Replace existing keys? (y/N) " msgstr "" -#: g10/card-util.c:1660 +#: g10/card-util.c:1659 #, c-format msgid "" "Please note that the factory settings of the PINs are\n" @@ -2163,160 +2163,160 @@ "You should change them using the command --change-pin\n" msgstr "" -#: g10/card-util.c:1695 +#: g10/card-util.c:1694 #, fuzzy msgid "Please select the type of key to generate:\n" msgstr "Por favor, seleccione o tipo de chave que quere:\n" -#: g10/card-util.c:1697 g10/card-util.c:1787 +#: g10/card-util.c:1696 g10/card-util.c:1786 #, fuzzy msgid " (1) Signature key\n" msgstr "A sinatura caducou o %s\n" -#: g10/card-util.c:1698 g10/card-util.c:1789 +#: g10/card-util.c:1697 g10/card-util.c:1788 #, fuzzy msgid " (2) Encryption key\n" msgstr " (%d) RSA (só cifrar)\n" -#: g10/card-util.c:1699 g10/card-util.c:1791 +#: g10/card-util.c:1698 g10/card-util.c:1790 msgid " (3) Authentication key\n" msgstr "" -#: g10/card-util.c:1784 +#: g10/card-util.c:1783 #, fuzzy msgid "Please select where to store the key:\n" msgstr "Por favor, escolla o motivo da revocación:\n" -#: g10/card-util.c:1830 +#: g10/card-util.c:1829 #, fuzzy, c-format msgid "KEYTOCARD failed: %s\n" msgstr "a actualización fallou: %s\n" -#: g10/card-util.c:1935 +#: g10/card-util.c:1934 #, fuzzy, c-format msgid "Note: This command destroys all keys stored on the card!\n" msgstr "omítese: a chave secreta xa está presente\n" -#: g10/card-util.c:1938 +#: g10/card-util.c:1937 #, fuzzy msgid "Continue? (y/N) " msgstr "¿Asinar de verdade? " -#: g10/card-util.c:1943 +#: g10/card-util.c:1942 msgid "Really do a factory reset? (enter \"yes\") " msgstr "" -#: g10/card-util.c:2129 +#: g10/card-util.c:2128 #, fuzzy, c-format msgid "error for setup KDF: %s\n" msgstr "erro lendo `%s': %s\n" -#: g10/card-util.c:2158 g10/keyedit.c:1260 +#: g10/card-util.c:2157 g10/keyedit.c:1260 msgid "quit this menu" msgstr "saír deste menú" -#: g10/card-util.c:2160 +#: g10/card-util.c:2159 #, fuzzy msgid "show admin commands" msgstr "comandos conflictivos\n" -#: g10/card-util.c:2161 g10/keyedit.c:1263 +#: g10/card-util.c:2160 g10/keyedit.c:1263 msgid "show this help" msgstr "amosar esta axuda" -#: g10/card-util.c:2163 +#: g10/card-util.c:2162 #, fuzzy msgid "list all available data" msgstr "Chave dispoñible en: " -#: g10/card-util.c:2166 +#: g10/card-util.c:2165 msgid "change card holder's name" msgstr "" -#: g10/card-util.c:2167 +#: g10/card-util.c:2166 msgid "change URL to retrieve key" msgstr "" -#: g10/card-util.c:2168 +#: g10/card-util.c:2167 msgid "fetch the key specified in the card URL" msgstr "" -#: g10/card-util.c:2169 +#: g10/card-util.c:2168 #, fuzzy msgid "change the login name" msgstr "cambia-la fecha de expiración" -#: g10/card-util.c:2170 +#: g10/card-util.c:2169 #, fuzzy msgid "change the language preferences" msgstr "cambia-la confianza sobre o dono" -#: g10/card-util.c:2171 +#: g10/card-util.c:2170 msgid "change card holder's salutation" msgstr "" -#: g10/card-util.c:2173 +#: g10/card-util.c:2172 #, fuzzy msgid "change a CA fingerprint" msgstr "amosar fingerprint" -#: g10/card-util.c:2174 +#: g10/card-util.c:2173 msgid "toggle the signature force PIN flag" msgstr "" -#: g10/card-util.c:2175 +#: g10/card-util.c:2174 #, fuzzy msgid "generate new keys" msgstr "xerar un novo par de chaves" -#: g10/card-util.c:2176 +#: g10/card-util.c:2175 msgid "menu to change or unblock the PIN" msgstr "" -#: g10/card-util.c:2177 +#: g10/card-util.c:2176 msgid "verify the PIN and list all data" msgstr "" -#: g10/card-util.c:2178 +#: g10/card-util.c:2177 msgid "unblock the PIN using a Reset Code" msgstr "" -#: g10/card-util.c:2179 +#: g10/card-util.c:2178 msgid "destroy all keys and data" msgstr "" -#: g10/card-util.c:2180 +#: g10/card-util.c:2179 #, fuzzy #| msgid "|NAME|use NAME as default recipient" msgid "setup KDF for PIN authentication" msgstr "|NOME|empregar NOME como valor por defecto do destinatario" -#: g10/card-util.c:2181 +#: g10/card-util.c:2180 #, fuzzy #| msgid "change the ownertrust" msgid "change the key attribute" msgstr "cambia-la confianza sobre o dono" -#: g10/card-util.c:2305 +#: g10/card-util.c:2304 msgid "gpg/card> " msgstr "" -#: g10/card-util.c:2346 +#: g10/card-util.c:2345 #, fuzzy msgid "Admin-only command\n" msgstr "comandos conflictivos\n" -#: g10/card-util.c:2377 +#: g10/card-util.c:2376 #, fuzzy msgid "Admin commands are allowed\n" msgstr "comandos conflictivos\n" -#: g10/card-util.c:2379 +#: g10/card-util.c:2378 #, fuzzy msgid "Admin commands are not allowed\n" msgstr "gravando a chave secreta en `%s'\n" -#: g10/card-util.c:2482 g10/keyedit.c:2229 +#: g10/card-util.c:2481 g10/keyedit.c:2229 msgid "Invalid command (try \"help\")\n" msgstr "Comando incorrecto (tente \"help\")\n" @@ -2325,22 +2325,22 @@ msgid "--output doesn't work for this command\n" msgstr "--output non traballa con este comando\n" -#: g10/decrypt.c:247 g10/gpg.c:5155 g10/keyring.c:399 g10/keyring.c:750 +#: g10/decrypt.c:247 g10/gpg.c:5175 g10/keyring.c:399 g10/keyring.c:750 #, fuzzy, c-format #| msgid "can't open `%s'\n" msgid "can't open '%s'\n" msgstr "non se puido abrir `%s'\n" -#: g10/delkey.c:83 g10/export.c:1947 g10/export.c:2230 g10/export.c:2351 -#: g10/getkey.c:2108 g10/gpg.c:5100 g10/keyedit.c:1445 g10/keyedit.c:2335 +#: g10/delkey.c:83 g10/export.c:2035 g10/export.c:2349 g10/export.c:2470 +#: g10/getkey.c:2108 g10/gpg.c:5120 g10/keyedit.c:1445 g10/keyedit.c:2335 #: g10/keyedit.c:2637 g10/keyedit.c:4600 g10/keylist.c:693 g10/keyserver.c:1092 #: g10/revoke.c:230 g10/tofu.c:2165 #, fuzzy, c-format msgid "key \"%s\" not found: %s\n" msgstr "non se atopou a chave `%s': %s\n" -#: g10/delkey.c:92 g10/export.c:2015 g10/getkey.c:2116 g10/getkey.c:4517 -#: g10/gpg.c:5109 g10/keyedit.c:2308 g10/keyserver.c:1110 g10/revoke.c:236 +#: g10/delkey.c:92 g10/export.c:2103 g10/getkey.c:2116 g10/getkey.c:4517 +#: g10/gpg.c:5129 g10/keyedit.c:2308 g10/keyserver.c:1110 g10/revoke.c:236 #: g10/revoke.c:663 g10/tofu.c:2173 #, c-format msgid "error reading keyblock: %s\n" @@ -2464,13 +2464,13 @@ msgid "WARNING: '%s' is an empty file\n" msgstr "AVISO: `%s' é un ficheiro baleiro\n" -#: g10/encrypt.c:446 g10/encrypt.c:521 g10/decrypt-data.c:266 g10/gpg.c:3959 -#: g10/gpg.c:3999 sm/decrypt.c:826 sm/encrypt.c:416 sm/gpgsm.c:1609 +#: g10/encrypt.c:446 g10/encrypt.c:521 g10/decrypt-data.c:266 g10/gpg.c:3979 +#: g10/gpg.c:4019 sm/decrypt.c:826 sm/encrypt.c:416 sm/gpgsm.c:1609 #, fuzzy, c-format msgid "cipher algorithm '%s' may not be used in %s mode\n" msgstr "non se pode empregar o algoritmo de cifrado \"%s\" no modo %s\n" -#: g10/encrypt.c:455 g10/gpg.c:3965 g10/gpg.c:4011 g10/sig-check.c:175 +#: g10/encrypt.c:455 g10/gpg.c:3985 g10/gpg.c:4031 g10/sig-check.c:175 #: g10/sign.c:391 sm/gpgsm.c:1619 sm/gpgsm.c:1629 sm/sign.c:478 sm/verify.c:506 #, fuzzy, c-format msgid "digest algorithm '%s' may not be used in %s mode\n" @@ -2590,69 +2590,75 @@ msgid "WARNING: unable to remove temp directory '%s': %s\n" msgstr "AVISO: non se puido elimina-lo directorio temporal `%s': %s\n" -#: g10/export.c:119 +#: g10/export.c:124 #, fuzzy msgid "export signatures that are marked as local-only" msgstr "" "\n" "A sinatura hase marcar coma non revocable.\n" -#: g10/export.c:121 +#: g10/export.c:126 msgid "export attribute user IDs (generally photo IDs)" msgstr "" -#: g10/export.c:123 +#: g10/export.c:128 #, fuzzy msgid "export revocation keys marked as \"sensitive\"" msgstr "non se atoparon chaves de revocación para `%s'\n" -#: g10/export.c:125 +#: g10/export.c:130 #, fuzzy msgid "remove unusable parts from key during export" msgstr "chave secreta non utilizable" -#: g10/export.c:127 +#: g10/export.c:132 msgid "remove as much as possible from key during export" msgstr "" -#: g10/export.c:133 +#: g10/export.c:138 +#, fuzzy +#| msgid "generate a revocation certificate" +msgid "export only revocation certificates" +msgstr "xerar un certificado de revocación" + +#: g10/export.c:141 msgid "use the GnuPG key backup format" msgstr "" -#: g10/export.c:1291 +#: g10/export.c:1306 #, fuzzy #| msgid "%s: skipped: %s\n" msgid " - skipped" msgstr "%s: omitido: %s\n" -#: g10/export.c:1324 g10/import.c:2085 g10/openfile.c:200 g10/openfile.c:294 +#: g10/export.c:1339 g10/import.c:2089 g10/openfile.c:200 g10/openfile.c:294 #: g10/sign.c:1012 g10/sign.c:1326 #, fuzzy, c-format #| msgid "writing to `%s'\n" msgid "writing to '%s'\n" msgstr "escribindo a `%s'\n" -#: g10/export.c:1769 +#: g10/export.c:1784 #, fuzzy, c-format msgid "key %s: key material on-card - skipped\n" msgstr "chave %08lX: sinatura da sub-chave nun lugar incorrecto - omitida\n" -#: g10/export.c:1964 +#: g10/export.c:2052 #, fuzzy, c-format msgid "exporting secret keys not allowed\n" msgstr "gravando a chave secreta en `%s'\n" -#: g10/export.c:2041 +#: g10/export.c:2129 #, fuzzy, c-format msgid "key %s: PGP 2.x style key - skipped\n" msgstr "chave %08lX: chave estilo PGP 2.x - omitida\n" -#: g10/export.c:2135 +#: g10/export.c:2254 #, c-format msgid "WARNING: nothing exported\n" msgstr "AVISO: non se exportou nada\n" -#: g10/export.c:2432 g10/plaintext.c:153 g10/plaintext.c:162 +#: g10/export.c:2551 g10/plaintext.c:153 g10/plaintext.c:162 #: g10/plaintext.c:168 g10/plaintext.c:191 #, fuzzy, c-format #| msgid "error creating `%s': %s\n" @@ -2722,297 +2728,297 @@ msgid "using subkey %s instead of primary key %s\n" msgstr "emprégase a chave secundaria %08lX no canto da primaria %08lX\n" -#: g10/getkey.c:4446 g10/gpg.c:2137 +#: g10/getkey.c:4446 g10/gpg.c:2146 #, fuzzy, c-format msgid "valid values for option '%s':\n" msgstr "opcións de importación non válidas\n" -#: g10/gpg.c:443 sm/gpgsm.c:212 +#: g10/gpg.c:444 sm/gpgsm.c:212 #, fuzzy msgid "make a signature" msgstr "facer unha sinatura separada" -#: g10/gpg.c:444 +#: g10/gpg.c:445 #, fuzzy msgid "make a clear text signature" msgstr "|[ficheiro]|facer unha sinatura en texto claro" -#: g10/gpg.c:446 sm/gpgsm.c:214 +#: g10/gpg.c:447 sm/gpgsm.c:214 msgid "make a detached signature" msgstr "facer unha sinatura separada" -#: g10/gpg.c:447 sm/gpgsm.c:215 +#: g10/gpg.c:448 sm/gpgsm.c:215 msgid "encrypt data" msgstr "cifrar datos" -#: g10/gpg.c:449 +#: g10/gpg.c:450 msgid "encryption only with symmetric cipher" msgstr "cifrar só con cifrado simétrico" -#: g10/gpg.c:451 sm/gpgsm.c:217 +#: g10/gpg.c:452 sm/gpgsm.c:217 msgid "decrypt data (default)" msgstr "descifrar datos (por defecto)" -#: g10/gpg.c:453 sm/gpgsm.c:218 +#: g10/gpg.c:454 sm/gpgsm.c:218 msgid "verify a signature" msgstr "verificar unha sinatura" -#: g10/gpg.c:455 sm/gpgsm.c:219 +#: g10/gpg.c:456 sm/gpgsm.c:219 msgid "list keys" msgstr "ve-la lista de chaves" -#: g10/gpg.c:457 +#: g10/gpg.c:458 msgid "list keys and signatures" msgstr "ve-la lista de chaves e sinaturas" -#: g10/gpg.c:460 +#: g10/gpg.c:461 #, fuzzy msgid "list and check key signatures" msgstr "verifica-las sinaturas das chaves" -#: g10/gpg.c:462 sm/gpgsm.c:224 +#: g10/gpg.c:463 sm/gpgsm.c:224 msgid "list keys and fingerprints" msgstr "ve-la lista de chaves e pegadas dactilares" -#: g10/gpg.c:463 sm/gpgsm.c:222 +#: g10/gpg.c:464 sm/gpgsm.c:222 msgid "list secret keys" msgstr "ve-la lista de chaves secretas" -#: g10/gpg.c:465 sm/gpgsm.c:225 +#: g10/gpg.c:466 sm/gpgsm.c:225 msgid "generate a new key pair" msgstr "xerar un novo par de chaves" -#: g10/gpg.c:468 +#: g10/gpg.c:469 #, fuzzy #| msgid "generate a new key pair" msgid "quickly generate a new key pair" msgstr "xerar un novo par de chaves" -#: g10/gpg.c:471 +#: g10/gpg.c:472 #, fuzzy #| msgid "generate a new key pair" msgid "quickly add a new user-id" msgstr "xerar un novo par de chaves" -#: g10/gpg.c:476 +#: g10/gpg.c:477 #, fuzzy #| msgid "generate a new key pair" msgid "quickly revoke a user-id" msgstr "xerar un novo par de chaves" -#: g10/gpg.c:479 +#: g10/gpg.c:480 #, fuzzy #| msgid "generate a new key pair" msgid "quickly set a new expiration date" msgstr "xerar un novo par de chaves" -#: g10/gpg.c:482 +#: g10/gpg.c:483 msgid "full featured key pair generation" msgstr "" -#: g10/gpg.c:485 +#: g10/gpg.c:486 msgid "generate a revocation certificate" msgstr "xerar un certificado de revocación" -#: g10/gpg.c:488 sm/gpgsm.c:228 +#: g10/gpg.c:489 sm/gpgsm.c:228 msgid "remove keys from the public keyring" msgstr "borrar chaves do chaveiro público" -#: g10/gpg.c:490 +#: g10/gpg.c:491 msgid "remove keys from the secret keyring" msgstr "borrar chaves do chaveiro secreto" -#: g10/gpg.c:492 +#: g10/gpg.c:493 #, fuzzy #| msgid "sign a key" msgid "quickly sign a key" msgstr "asinar unha chave" -#: g10/gpg.c:494 +#: g10/gpg.c:495 #, fuzzy #| msgid "sign a key locally" msgid "quickly sign a key locally" msgstr "asinar unha chave localmente" -#: g10/gpg.c:496 +#: g10/gpg.c:497 #, fuzzy #| msgid "generate a new key pair" msgid "quickly revoke a key signature" msgstr "xerar un novo par de chaves" -#: g10/gpg.c:497 +#: g10/gpg.c:498 msgid "sign a key" msgstr "asinar unha chave" -#: g10/gpg.c:498 +#: g10/gpg.c:499 msgid "sign a key locally" msgstr "asinar unha chave localmente" -#: g10/gpg.c:499 +#: g10/gpg.c:500 msgid "sign or edit a key" msgstr "asinar ou editar unha chave" -#: g10/gpg.c:501 sm/gpgsm.c:246 +#: g10/gpg.c:502 sm/gpgsm.c:246 #, fuzzy msgid "change a passphrase" msgstr "cambia-lo contrasinal" -#: g10/gpg.c:505 +#: g10/gpg.c:506 msgid "export keys" msgstr "exportar chaves" -#: g10/gpg.c:506 +#: g10/gpg.c:507 msgid "export keys to a keyserver" msgstr "exportar chaves a un servidor de chaves" -#: g10/gpg.c:507 +#: g10/gpg.c:508 msgid "import keys from a keyserver" msgstr "importar chaves dun servidor de chaves" -#: g10/gpg.c:510 +#: g10/gpg.c:511 msgid "search for keys on a keyserver" msgstr "buscar chaves nun servidor de chaves" -#: g10/gpg.c:512 +#: g10/gpg.c:513 msgid "update all keys from a keyserver" msgstr "actualizar tódalas chaves dun servidor de chaves" -#: g10/gpg.c:520 +#: g10/gpg.c:521 msgid "import/merge keys" msgstr "importar/mesturar chaves" -#: g10/gpg.c:523 +#: g10/gpg.c:524 msgid "print the card status" msgstr "" -#: g10/gpg.c:524 +#: g10/gpg.c:525 msgid "change data on a card" msgstr "" -#: g10/gpg.c:526 +#: g10/gpg.c:527 msgid "change a card's PIN" msgstr "" -#: g10/gpg.c:538 +#: g10/gpg.c:539 msgid "update the trust database" msgstr "actualiza-la base de datos de confianza" -#: g10/gpg.c:548 +#: g10/gpg.c:549 #, fuzzy msgid "print message digests" msgstr "|algo [ficheiros]|visualizar resumos de mensaxes" -#: g10/gpg.c:552 sm/gpgsm.c:241 +#: g10/gpg.c:553 sm/gpgsm.c:241 msgid "run in server mode" msgstr "" -#: g10/gpg.c:554 +#: g10/gpg.c:555 msgid "|VALUE|set the TOFU policy for a key" msgstr "" -#: g10/gpg.c:594 +#: g10/gpg.c:595 msgid "|NAME|use NAME as default secret key" msgstr "|NOME|empregar NOME coma chave secreta por defecto" -#: g10/gpg.c:596 sm/gpgsm.c:332 +#: g10/gpg.c:597 sm/gpgsm.c:332 #, fuzzy msgid "|NAME|encrypt to user ID NAME as well" msgstr "|NOME|cifrar para NOME" -#: g10/gpg.c:604 +#: g10/gpg.c:605 msgid "|SPEC|set up email aliases" msgstr "" -#: g10/gpg.c:616 +#: g10/gpg.c:617 msgid "use strict OpenPGP behavior" msgstr "" -#: g10/gpg.c:641 kbx/kbxutil.c:90 sm/gpgsm.c:412 tools/gpgconf.c:112 +#: g10/gpg.c:642 kbx/kbxutil.c:90 sm/gpgsm.c:412 tools/gpgconf.c:112 msgid "do not make any changes" msgstr "non facer ningún cambio" -#: g10/gpg.c:642 +#: g10/gpg.c:643 msgid "prompt before overwriting" msgstr "avisar antes de sobrescribir" -#: g10/gpg.c:689 sm/gpgsm.c:304 +#: g10/gpg.c:690 sm/gpgsm.c:304 msgid "Options controlling the input" msgstr "" -#: g10/gpg.c:707 sm/gpgsm.c:314 +#: g10/gpg.c:708 sm/gpgsm.c:314 msgid "Options controlling the output" msgstr "" -#: g10/gpg.c:709 sm/gpgsm.c:316 +#: g10/gpg.c:710 sm/gpgsm.c:316 msgid "create ascii armored output" msgstr "crear saída con armadura en ascii" -#: g10/gpg.c:713 g10/gpgv.c:82 sm/gpgsm.c:321 +#: g10/gpg.c:714 g10/gpgv.c:82 sm/gpgsm.c:321 #, fuzzy msgid "|FILE|write output to FILE" msgstr "|FICHEIRO|carga-lo módulo de extensión FICHEIRO" -#: g10/gpg.c:726 +#: g10/gpg.c:727 msgid "use canonical text mode" msgstr "usar modo de texto canónico" -#: g10/gpg.c:743 +#: g10/gpg.c:744 #, fuzzy msgid "|N|set compress level to N (0 disables)" msgstr "|N|axusta-lo nivel de compresión a N (0 desactiva)" -#: g10/gpg.c:750 sm/gpgsm.c:347 +#: g10/gpg.c:751 sm/gpgsm.c:347 msgid "Options controlling key import and export" msgstr "" -#: g10/gpg.c:753 +#: g10/gpg.c:754 msgid "|MECHANISMS|use MECHANISMS to locate keys by mail address" msgstr "" -#: g10/gpg.c:756 +#: g10/gpg.c:757 #, fuzzy #| msgid "import keys from a keyserver" msgid "import missing key from a signature" msgstr "importar chaves dun servidor de chaves" -#: g10/gpg.c:761 +#: g10/gpg.c:762 #, fuzzy msgid "include the public key in signatures" msgstr "verifica-las sinaturas das chaves" -#: g10/gpg.c:764 sm/gpgsm.c:350 +#: g10/gpg.c:765 sm/gpgsm.c:350 msgid "disable all access to the dirmngr" msgstr "" -#: g10/gpg.c:776 sm/gpgsm.c:357 +#: g10/gpg.c:777 sm/gpgsm.c:357 msgid "Options controlling key listings" msgstr "" -#: g10/gpg.c:805 sm/gpgsm.c:324 +#: g10/gpg.c:806 sm/gpgsm.c:324 #, fuzzy #| msgid "list secret keys" msgid "Options to specify keys" msgstr "ve-la lista de chaves secretas" -#: g10/gpg.c:807 sm/gpgsm.c:326 +#: g10/gpg.c:808 sm/gpgsm.c:326 #, fuzzy msgid "|USER-ID|encrypt for USER-ID" msgstr "|NOME|cifrar para NOME" -#: g10/gpg.c:815 sm/gpgsm.c:328 +#: g10/gpg.c:816 sm/gpgsm.c:328 #, fuzzy msgid "|USER-ID|use USER-ID to sign or decrypt" msgstr "empregar este id de usuario para asinar ou descifrar" -#: g10/gpg.c:866 sm/gpgsm.c:396 +#: g10/gpg.c:867 sm/gpgsm.c:396 msgid "Options for unattended use" msgstr "" -#: g10/gpg.c:885 sm/gpgsm.c:408 dirmngr/dirmngr.c:294 +#: g10/gpg.c:886 sm/gpgsm.c:408 dirmngr/dirmngr.c:294 msgid "Other options" msgstr "" -#: g10/gpg.c:953 sm/gpgsm.c:440 +#: g10/gpg.c:955 sm/gpgsm.c:440 msgid "" "@\n" "(See the man page for a complete listing of all commands and options)\n" @@ -3020,7 +3026,7 @@ "@\n" "(Vexa a páxina man para un listado completo de comandos e opcións)\n" -#: g10/gpg.c:956 +#: g10/gpg.c:958 #, fuzzy #| msgid "" #| "@\n" @@ -3050,13 +3056,13 @@ " --list-keys [nomes] amosa-las chaves\n" " --fingerprint [nomes] amosa-las pegadas dactilares\n" -#: g10/gpg.c:1130 +#: g10/gpg.c:1139 #, fuzzy #| msgid "Usage: gpg [options] [files] (-h for help)" msgid "Usage: @GPG@ [options] [files] (-h for help)" msgstr "Uso: gpg [opcións] [ficheiros] (-h para ve-la axuda)" -#: g10/gpg.c:1133 +#: g10/gpg.c:1142 #, fuzzy #| msgid "" #| "Syntax: gpg [options] [files]\n" @@ -3071,7 +3077,7 @@ "asinar, verificar, cifrar ou descifrar\n" "a operación por defecto depende dos datos de entrada\n" -#: g10/gpg.c:1144 sm/gpgsm.c:624 +#: g10/gpg.c:1153 sm/gpgsm.c:624 msgid "" "\n" "Supported algorithms:\n" @@ -3079,551 +3085,551 @@ "\n" "Algoritmos soportados:\n" -#: g10/gpg.c:1147 +#: g10/gpg.c:1156 msgid "Pubkey: " msgstr "Pública: " -#: g10/gpg.c:1154 g10/keyedit.c:3338 +#: g10/gpg.c:1163 g10/keyedit.c:3338 msgid "Cipher: " msgstr "Cifra: " -#: g10/gpg.c:1161 +#: g10/gpg.c:1170 msgid "Hash: " msgstr "Hash: " -#: g10/gpg.c:1168 g10/keyedit.c:3404 +#: g10/gpg.c:1177 g10/keyedit.c:3404 msgid "Compression: " msgstr "Compresión: " -#: g10/gpg.c:1241 sm/gpgsm.c:698 +#: g10/gpg.c:1250 sm/gpgsm.c:698 #, fuzzy, c-format msgid "usage: %s [options] %s\n" msgstr "uso: gpg [opcións] " -#: g10/gpg.c:1436 sm/gpgsm.c:791 +#: g10/gpg.c:1445 sm/gpgsm.c:791 #, c-format msgid "conflicting commands\n" msgstr "comandos conflictivos\n" -#: g10/gpg.c:1454 +#: g10/gpg.c:1463 #, fuzzy, c-format msgid "no = sign found in group definition '%s'\n" msgstr "non se atopou un signo = na definición do grupo \"%s\"\n" -#: g10/gpg.c:1652 +#: g10/gpg.c:1661 #, fuzzy, c-format msgid "WARNING: unsafe ownership on homedir '%s'\n" msgstr "AVISO: propiedade insegura en %s \"%s\"\n" -#: g10/gpg.c:1655 +#: g10/gpg.c:1664 #, fuzzy, c-format msgid "WARNING: unsafe ownership on configuration file '%s'\n" msgstr "AVISO: propiedade insegura en %s \"%s\"\n" -#: g10/gpg.c:1658 +#: g10/gpg.c:1667 #, fuzzy, c-format msgid "WARNING: unsafe ownership on extension '%s'\n" msgstr "AVISO: propiedade insegura en %s \"%s\"\n" -#: g10/gpg.c:1664 +#: g10/gpg.c:1673 #, fuzzy, c-format msgid "WARNING: unsafe permissions on homedir '%s'\n" msgstr "AVISO: permisos inseguros en %s \"%s\"\n" -#: g10/gpg.c:1667 +#: g10/gpg.c:1676 #, fuzzy, c-format msgid "WARNING: unsafe permissions on configuration file '%s'\n" msgstr "AVISO: permisos inseguros en %s \"%s\"\n" -#: g10/gpg.c:1670 +#: g10/gpg.c:1679 #, fuzzy, c-format msgid "WARNING: unsafe permissions on extension '%s'\n" msgstr "AVISO: permisos inseguros en %s \"%s\"\n" -#: g10/gpg.c:1676 +#: g10/gpg.c:1685 #, fuzzy, c-format msgid "WARNING: unsafe enclosing directory ownership on homedir '%s'\n" msgstr "AVISO: propiedade do directorio contedor insegura en %s \"%s\"\n" -#: g10/gpg.c:1679 +#: g10/gpg.c:1688 #, fuzzy, c-format msgid "" "WARNING: unsafe enclosing directory ownership on configuration file '%s'\n" msgstr "AVISO: propiedade do directorio contedor insegura en %s \"%s\"\n" -#: g10/gpg.c:1682 +#: g10/gpg.c:1691 #, fuzzy, c-format msgid "WARNING: unsafe enclosing directory ownership on extension '%s'\n" msgstr "AVISO: propiedade do directorio contedor insegura en %s \"%s\"\n" -#: g10/gpg.c:1688 +#: g10/gpg.c:1697 #, fuzzy, c-format msgid "WARNING: unsafe enclosing directory permissions on homedir '%s'\n" msgstr "AVISO: permisos do directorio contedor inseguros en %s \"%s\"\n" -#: g10/gpg.c:1691 +#: g10/gpg.c:1700 #, fuzzy, c-format msgid "" "WARNING: unsafe enclosing directory permissions on configuration file '%s'\n" msgstr "AVISO: permisos do directorio contedor inseguros en %s \"%s\"\n" -#: g10/gpg.c:1694 +#: g10/gpg.c:1703 #, fuzzy, c-format msgid "WARNING: unsafe enclosing directory permissions on extension '%s'\n" msgstr "AVISO: permisos do directorio contedor inseguros en %s \"%s\"\n" -#: g10/gpg.c:1910 +#: g10/gpg.c:1919 #, fuzzy, c-format msgid "unknown configuration item '%s'\n" msgstr " creouse un novo ficheiro de configuración `%s'\n" -#: g10/gpg.c:2009 +#: g10/gpg.c:2018 msgid "display photo IDs during key listings" msgstr "" -#: g10/gpg.c:2011 +#: g10/gpg.c:2020 #, fuzzy msgid "show key usage information during key listings" msgstr "Non hai unha sinatura correspondiente no chaveiro secreto\n" -#: g10/gpg.c:2013 +#: g10/gpg.c:2022 msgid "show policy URLs during signature listings" msgstr "" -#: g10/gpg.c:2015 +#: g10/gpg.c:2024 #, fuzzy msgid "show all notations during signature listings" msgstr "Non hai unha sinatura correspondiente no chaveiro secreto\n" -#: g10/gpg.c:2017 +#: g10/gpg.c:2026 msgid "show IETF standard notations during signature listings" msgstr "" -#: g10/gpg.c:2021 +#: g10/gpg.c:2030 msgid "show user-supplied notations during signature listings" msgstr "" -#: g10/gpg.c:2023 +#: g10/gpg.c:2032 #, fuzzy msgid "show preferred keyserver URLs during signature listings" msgstr "o URL de normativa de sinaturas dado non é válido\n" -#: g10/gpg.c:2025 +#: g10/gpg.c:2034 msgid "show user ID validity during key listings" msgstr "" -#: g10/gpg.c:2027 +#: g10/gpg.c:2036 msgid "show revoked and expired user IDs in key listings" msgstr "" -#: g10/gpg.c:2029 +#: g10/gpg.c:2038 msgid "show revoked and expired subkeys in key listings" msgstr "" -#: g10/gpg.c:2031 +#: g10/gpg.c:2040 #, fuzzy msgid "show the keyring name in key listings" msgstr "amosar en que chaveiro está unha chave listada" -#: g10/gpg.c:2033 +#: g10/gpg.c:2042 #, fuzzy msgid "show expiration dates during signature listings" msgstr "Non hai unha sinatura correspondiente no chaveiro secreto\n" -#: g10/gpg.c:2148 +#: g10/gpg.c:2157 #, fuzzy, c-format msgid "unknown TOFU policy '%s'\n" msgstr "destinatario por defecto `%s' descoñecido\n" -#: g10/gpg.c:2150 +#: g10/gpg.c:2159 #, c-format msgid "(use \"help\" to list choices)\n" msgstr "" -#: g10/gpg.c:2240 g10/keyedit.c:1719 +#: g10/gpg.c:2249 g10/keyedit.c:1719 #, c-format msgid "This command is not allowed while in %s mode.\n" msgstr "Non se admite este comando no modo %s.\n" -#: g10/gpg.c:2878 g10/gpg.c:3718 g10/gpg.c:3730 +#: g10/gpg.c:2896 g10/gpg.c:3736 g10/gpg.c:3748 #, fuzzy, c-format #| msgid "NOTE: %s is not for normal use!\n" msgid "Note: %s is not for normal use!\n" msgstr "NOTA: ¡%s non é para uso normal!\n" -#: g10/gpg.c:3053 g10/gpg.c:3065 +#: g10/gpg.c:3071 g10/gpg.c:3083 #, fuzzy, c-format msgid "'%s' is not a valid signature expiration\n" msgstr "%s non é un xogo de caracteres válido\n" -#: g10/gpg.c:3087 +#: g10/gpg.c:3105 #, fuzzy, c-format msgid "\"%s\" is not a proper mail address\n" msgstr "Non é un enderezo de e-mail válido\n" -#: g10/gpg.c:3119 sm/gpgsm.c:1121 +#: g10/gpg.c:3137 sm/gpgsm.c:1121 #, fuzzy, c-format msgid "invalid pinentry mode '%s'\n" msgstr "algoritmo de hash non válido `%s'\n" -#: g10/gpg.c:3125 sm/gpgsm.c:1127 +#: g10/gpg.c:3143 sm/gpgsm.c:1127 #, fuzzy, c-format msgid "invalid request origin '%s'\n" msgstr "opcións de importación non válidas\n" -#: g10/gpg.c:3179 +#: g10/gpg.c:3197 #, fuzzy, c-format msgid "'%s' is not a valid character set\n" msgstr "%s non é un xogo de caracteres válido\n" -#: g10/gpg.c:3201 g10/gpg.c:3415 g10/keyedit.c:5338 +#: g10/gpg.c:3219 g10/gpg.c:3433 g10/keyedit.c:5338 #, fuzzy, c-format msgid "could not parse keyserver URL\n" msgstr "non se puido analisa-lo URI do servidor de chaves\n" -#: g10/gpg.c:3219 +#: g10/gpg.c:3237 #, fuzzy, c-format msgid "%s:%d: invalid keyserver options\n" msgstr "%s:%d: opcións de exportación non válidas\n" -#: g10/gpg.c:3222 +#: g10/gpg.c:3240 #, fuzzy, c-format msgid "invalid keyserver options\n" msgstr "opcións de exportación non válidas\n" -#: g10/gpg.c:3229 +#: g10/gpg.c:3247 #, c-format msgid "%s:%d: invalid import options\n" msgstr "%s:%d: opcións de importación non válidas\n" -#: g10/gpg.c:3232 +#: g10/gpg.c:3250 #, c-format msgid "invalid import options\n" msgstr "opcións de importación non válidas\n" -#: g10/gpg.c:3238 g10/gpg.c:3253 +#: g10/gpg.c:3256 g10/gpg.c:3271 #, fuzzy, c-format msgid "invalid filter option: %s\n" msgstr "opcións de importación non válidas\n" -#: g10/gpg.c:3244 +#: g10/gpg.c:3262 #, c-format msgid "%s:%d: invalid export options\n" msgstr "%s:%d: opcións de exportación non válidas\n" -#: g10/gpg.c:3247 +#: g10/gpg.c:3265 #, c-format msgid "invalid export options\n" msgstr "opcións de exportación non válidas\n" -#: g10/gpg.c:3259 +#: g10/gpg.c:3277 #, fuzzy, c-format msgid "%s:%d: invalid list options\n" msgstr "%s:%d: opcións de importación non válidas\n" -#: g10/gpg.c:3262 +#: g10/gpg.c:3280 #, fuzzy, c-format msgid "invalid list options\n" msgstr "opcións de importación non válidas\n" -#: g10/gpg.c:3270 +#: g10/gpg.c:3288 msgid "display photo IDs during signature verification" msgstr "" -#: g10/gpg.c:3272 +#: g10/gpg.c:3290 msgid "show policy URLs during signature verification" msgstr "" -#: g10/gpg.c:3274 +#: g10/gpg.c:3292 #, fuzzy msgid "show all notations during signature verification" msgstr "%s non é un xogo de caracteres válido\n" -#: g10/gpg.c:3276 +#: g10/gpg.c:3294 msgid "show IETF standard notations during signature verification" msgstr "" -#: g10/gpg.c:3280 +#: g10/gpg.c:3298 msgid "show user-supplied notations during signature verification" msgstr "" -#: g10/gpg.c:3282 +#: g10/gpg.c:3300 #, fuzzy msgid "show preferred keyserver URLs during signature verification" msgstr "o URL de normativa de sinaturas dado non é válido\n" -#: g10/gpg.c:3284 +#: g10/gpg.c:3302 #, fuzzy msgid "show user ID validity during signature verification" msgstr "%s non é un xogo de caracteres válido\n" -#: g10/gpg.c:3286 +#: g10/gpg.c:3304 msgid "show revoked and expired user IDs in signature verification" msgstr "" -#: g10/gpg.c:3288 +#: g10/gpg.c:3306 #, fuzzy msgid "show only the primary user ID in signature verification" msgstr "%s non é un xogo de caracteres válido\n" -#: g10/gpg.c:3290 +#: g10/gpg.c:3308 msgid "validate signatures with PKA data" msgstr "" -#: g10/gpg.c:3292 +#: g10/gpg.c:3310 msgid "elevate the trust of signatures with valid PKA data" msgstr "" -#: g10/gpg.c:3299 +#: g10/gpg.c:3317 #, fuzzy, c-format msgid "%s:%d: invalid verify options\n" msgstr "%s:%d: opcións de exportación non válidas\n" -#: g10/gpg.c:3302 +#: g10/gpg.c:3320 #, fuzzy, c-format msgid "invalid verify options\n" msgstr "opcións de exportación non válidas\n" -#: g10/gpg.c:3309 +#: g10/gpg.c:3327 #, c-format msgid "unable to set exec-path to %s\n" msgstr "non se puido estabrecer exec-path a %s\n" -#: g10/gpg.c:3513 +#: g10/gpg.c:3531 #, fuzzy, c-format msgid "%s:%d: invalid auto-key-locate list\n" msgstr "%s:%d: opcións de exportación non válidas\n" -#: g10/gpg.c:3516 +#: g10/gpg.c:3534 #, c-format msgid "invalid auto-key-locate list\n" msgstr "" -#: g10/gpg.c:3700 sm/gpgsm.c:1492 +#: g10/gpg.c:3718 sm/gpgsm.c:1492 #, c-format msgid "WARNING: program may create a core file!\n" msgstr "AVISO: ¡o programa pode crear un ficheiro 'core'!\n" -#: g10/gpg.c:3711 +#: g10/gpg.c:3729 #, c-format msgid "WARNING: %s overrides %s\n" msgstr "AVISO: %s fai que se ignore %s\n" -#: g10/gpg.c:3720 +#: g10/gpg.c:3738 #, c-format msgid "%s not allowed with %s!\n" msgstr "¡%s non se admite con %s!\n" -#: g10/gpg.c:3723 +#: g10/gpg.c:3741 #, c-format msgid "%s makes no sense with %s!\n" msgstr "¡%s non ten sentido empregándoo con %s!\n" -#: g10/gpg.c:3738 sm/gpgsm.c:1509 dirmngr/dirmngr.c:1205 +#: g10/gpg.c:3756 sm/gpgsm.c:1509 dirmngr/dirmngr.c:1205 #, c-format msgid "WARNING: running with faked system time: " msgstr "" -#: g10/gpg.c:3759 +#: g10/gpg.c:3777 #, fuzzy, c-format msgid "will not run with insecure memory due to %s\n" msgstr "gravando a chave secreta en `%s'\n" -#: g10/gpg.c:3804 g10/gpg.c:3828 sm/gpgsm.c:1579 +#: g10/gpg.c:3824 g10/gpg.c:3848 sm/gpgsm.c:1579 #, c-format msgid "selected cipher algorithm is invalid\n" msgstr "o algoritmo de cifrado seleccionado non é válido\n" -#: g10/gpg.c:3816 +#: g10/gpg.c:3836 #, fuzzy, c-format msgid "selected compression algorithm is invalid\n" msgstr "o algoritmo de cifrado seleccionado non é válido\n" -#: g10/gpg.c:3822 +#: g10/gpg.c:3842 #, c-format msgid "selected certification digest algorithm is invalid\n" msgstr "o algoritmo de resumo de certificación seleccionado non é válido\n" -#: g10/gpg.c:3837 +#: g10/gpg.c:3857 #, c-format msgid "completes-needed must be greater than 0\n" msgstr "completes-needed debe ser superior a 0\n" -#: g10/gpg.c:3839 +#: g10/gpg.c:3859 #, c-format msgid "marginals-needed must be greater than 1\n" msgstr "marginals-needed debe ser superior a 1\n" -#: g10/gpg.c:3841 +#: g10/gpg.c:3861 #, fuzzy, c-format msgid "max-cert-depth must be in the range from 1 to 255\n" msgstr "max-cert-depth debe valer entre 1 e 255\n" -#: g10/gpg.c:3843 +#: g10/gpg.c:3863 #, fuzzy, c-format msgid "invalid default-cert-level; must be 0, 1, 2, or 3\n" msgstr "nivel de comprobación por defecto non válido; debe ser 0, 1, 2 ou 3\n" -#: g10/gpg.c:3845 +#: g10/gpg.c:3865 #, fuzzy, c-format msgid "invalid min-cert-level; must be 1, 2, or 3\n" msgstr "nivel de comprobación por defecto non válido; debe ser 0, 1, 2 ou 3\n" -#: g10/gpg.c:3849 +#: g10/gpg.c:3869 #, fuzzy, c-format #| msgid "NOTE: simple S2K mode (0) is strongly discouraged\n" msgid "Note: simple S2K mode (0) is strongly discouraged\n" msgstr "NOTA: desaconséllase encarecidamente o modo S2K simple (0)\n" -#: g10/gpg.c:3853 +#: g10/gpg.c:3873 #, c-format msgid "invalid S2K mode; must be 0, 1 or 3\n" msgstr "modo S2K non válido; debe ser 0, 1 ou 3\n" -#: g10/gpg.c:3860 +#: g10/gpg.c:3880 #, c-format msgid "invalid default preferences\n" msgstr "preferencias por defecto non válidas\n" -#: g10/gpg.c:3864 +#: g10/gpg.c:3884 #, c-format msgid "invalid personal cipher preferences\n" msgstr "preferencias de cifrado personais non válidas\n" -#: g10/gpg.c:3868 +#: g10/gpg.c:3888 #, c-format msgid "invalid personal digest preferences\n" msgstr "preferencias de resumo personais non válidas\n" -#: g10/gpg.c:3872 +#: g10/gpg.c:3892 #, c-format msgid "invalid personal compress preferences\n" msgstr "preferencias de compresión personais non válidas\n" -#: g10/gpg.c:3908 +#: g10/gpg.c:3928 #, c-format msgid "%s does not yet work with %s\n" msgstr "¡%s aínda non traballa con %s!\n" -#: g10/gpg.c:3971 +#: g10/gpg.c:3991 #, fuzzy, c-format msgid "compression algorithm '%s' may not be used in %s mode\n" msgstr "non se pode empregar o algoritmo de compresión \"%s\" no modo %s\n" -#: g10/gpg.c:4115 +#: g10/gpg.c:4135 #, c-format msgid "failed to initialize the TrustDB: %s\n" msgstr "non se puido inicializa-la base de datos de confianzas: %s\n" -#: g10/gpg.c:4127 +#: g10/gpg.c:4147 #, c-format msgid "WARNING: recipients (-r) given without using public key encryption\n" msgstr "" "AVISO: deronse destinatarios (-r) sen empregar cifrado de chave pública\n" -#: g10/gpg.c:4199 +#: g10/gpg.c:4219 #, fuzzy, c-format msgid "symmetric encryption of '%s' failed: %s\n" msgstr "o descifrado fallou: %s\n" -#: g10/gpg.c:4228 +#: g10/gpg.c:4248 #, c-format msgid "you cannot use --symmetric --encrypt with --s2k-mode 0\n" msgstr "" -#: g10/gpg.c:4231 +#: g10/gpg.c:4251 #, fuzzy, c-format msgid "you cannot use --symmetric --encrypt in %s mode\n" msgstr "non se pode empregar %s no modo %s\n" -#: g10/gpg.c:4289 +#: g10/gpg.c:4309 #, c-format msgid "you cannot use --symmetric --sign --encrypt with --s2k-mode 0\n" msgstr "" -#: g10/gpg.c:4292 +#: g10/gpg.c:4312 #, fuzzy, c-format msgid "you cannot use --symmetric --sign --encrypt in %s mode\n" msgstr "non se pode empregar %s no modo %s\n" -#: g10/gpg.c:4692 g10/keyserver.c:1648 +#: g10/gpg.c:4712 g10/keyserver.c:1648 #, c-format msgid "keyserver send failed: %s\n" msgstr "o envío ao servidor de chaves fallou: %s\n" -#: g10/gpg.c:4697 +#: g10/gpg.c:4717 #, c-format msgid "keyserver receive failed: %s\n" msgstr "a recepción do servidor de chaves fallou: %s\n" -#: g10/gpg.c:4703 +#: g10/gpg.c:4723 #, c-format msgid "key export failed: %s\n" msgstr "a exportación da chave fallou: %s\n" -#: g10/gpg.c:4716 +#: g10/gpg.c:4736 #, fuzzy, c-format #| msgid "key export failed: %s\n" msgid "export as ssh key failed: %s\n" msgstr "a exportación da chave fallou: %s\n" -#: g10/gpg.c:4728 +#: g10/gpg.c:4748 #, c-format msgid "keyserver search failed: %s\n" msgstr "a busca no servidor de chaves fallou fallou: %s\n" -#: g10/gpg.c:4741 +#: g10/gpg.c:4761 #, c-format msgid "keyserver refresh failed: %s\n" msgstr "a actualización no servidor de chaves fallou: %s\n" -#: g10/gpg.c:4810 +#: g10/gpg.c:4830 #, c-format msgid "dearmoring failed: %s\n" msgstr "non se puido quita-la armadura: %s\n" -#: g10/gpg.c:4821 +#: g10/gpg.c:4841 #, c-format msgid "enarmoring failed: %s\n" msgstr "non se puido poñe-la armadura: %s\n" -#: g10/gpg.c:4913 +#: g10/gpg.c:4933 #, fuzzy, c-format #| msgid "invalid hash algorithm `%s'\n" msgid "invalid hash algorithm '%s'\n" msgstr "algoritmo de hash non válido `%s'\n" -#: g10/gpg.c:5065 g10/tofu.c:2153 +#: g10/gpg.c:5085 g10/tofu.c:2153 #, fuzzy, c-format msgid "error parsing key specification '%s': %s\n" msgstr "erro ao crea-lo contrasinal: %s\n" -#: g10/gpg.c:5078 +#: g10/gpg.c:5098 #, c-format msgid "'%s' does not appear to be a valid key ID, fingerprint or keygrip\n" msgstr "" -#: g10/gpg.c:5134 +#: g10/gpg.c:5154 #, c-format msgid "WARNING: no command supplied. Trying to guess what you mean ...\n" msgstr "" -#: g10/gpg.c:5145 +#: g10/gpg.c:5165 #, c-format msgid "Go ahead and type your message ...\n" msgstr "Escriba a súa mensaxe ...\n" -#: g10/gpg.c:5490 +#: g10/gpg.c:5510 #, c-format msgid "the given certification policy URL is invalid\n" msgstr "o URL de normativa de certificación dado non é válido\n" -#: g10/gpg.c:5492 +#: g10/gpg.c:5512 #, c-format msgid "the given signature policy URL is invalid\n" msgstr "o URL de normativa de sinaturas dado non é válido\n" -#: g10/gpg.c:5525 +#: g10/gpg.c:5545 #, fuzzy, c-format msgid "the given preferred keyserver URL is invalid\n" msgstr "o URL de normativa de sinaturas dado non é válido\n" @@ -3668,319 +3674,319 @@ msgid "No help available for '%s'" msgstr "Non hai axuda dispoñible para `%s'" -#: g10/import.c:169 +#: g10/import.c:170 msgid "import signatures that are marked as local-only" msgstr "" -#: g10/import.c:172 +#: g10/import.c:173 msgid "repair damage from the pks keyserver during import" msgstr "" -#: g10/import.c:175 +#: g10/import.c:176 #, fuzzy msgid "do not clear the ownertrust values during import" msgstr "actualiza-la base de datos de confianza" -#: g10/import.c:178 +#: g10/import.c:179 #, fuzzy msgid "do not update the trustdb after import" msgstr "actualiza-la base de datos de confianza" -#: g10/import.c:181 +#: g10/import.c:182 #, fuzzy msgid "show key during import" msgstr "amosar fingerprint" -#: g10/import.c:184 +#: g10/import.c:185 msgid "only accept updates to existing keys" msgstr "" -#: g10/import.c:187 +#: g10/import.c:188 #, fuzzy msgid "remove unusable parts from key after import" msgstr "chave secreta non utilizable" -#: g10/import.c:190 +#: g10/import.c:191 msgid "remove as much as possible from key after import" msgstr "" -#: g10/import.c:193 +#: g10/import.c:194 msgid "ignore key-signatures which are not self-signatures" msgstr "" -#: g10/import.c:196 +#: g10/import.c:197 msgid "run import filters and export key immediately" msgstr "" -#: g10/import.c:199 +#: g10/import.c:200 msgid "assume the GnuPG key backup format" msgstr "" -#: g10/import.c:203 +#: g10/import.c:204 #, fuzzy msgid "repair keys on import" msgstr "amosar fingerprint" -#: g10/import.c:392 g10/import.c:711 +#: g10/import.c:393 g10/import.c:712 #, c-format msgid "skipping block of type %d\n" msgstr "pasando por alto un bloque de tipo %d\n" -#: g10/import.c:728 +#: g10/import.c:729 #, fuzzy, c-format msgid "%lu keys processed so far\n" msgstr "%lu chaves procesadas hasta polo momento\n" -#: g10/import.c:814 +#: g10/import.c:815 #, c-format msgid "Total number processed: %lu\n" msgstr "Número total procesado: %lu\n" -#: g10/import.c:817 +#: g10/import.c:818 #, fuzzy, c-format #| msgid " skipped new keys: %lu\n" msgid " skipped PGP-2 keys: %lu\n" msgstr "novas chaves omitidas: %lu\n" -#: g10/import.c:819 +#: g10/import.c:820 #, c-format msgid " skipped new keys: %lu\n" msgstr "novas chaves omitidas: %lu\n" -#: g10/import.c:822 +#: g10/import.c:823 #, c-format msgid " w/o user IDs: %lu\n" msgstr " sin IDs de usuario: %lu\n" -#: g10/import.c:825 sm/import.c:130 +#: g10/import.c:826 sm/import.c:130 #, c-format msgid " imported: %lu" msgstr " importadas: %lu" -#: g10/import.c:829 sm/import.c:134 +#: g10/import.c:830 sm/import.c:134 #, c-format msgid " unchanged: %lu\n" msgstr " sin cambios: %lu\n" -#: g10/import.c:831 +#: g10/import.c:832 #, c-format msgid " new user IDs: %lu\n" msgstr " novos IDs de usuario: %lu\n" -#: g10/import.c:833 +#: g10/import.c:834 #, c-format msgid " new subkeys: %lu\n" msgstr " novas sub-chaves: %lu\n" -#: g10/import.c:835 +#: g10/import.c:836 #, c-format msgid " new signatures: %lu\n" msgstr " novas sinaturas: %lu\n" -#: g10/import.c:837 +#: g10/import.c:838 #, c-format msgid " new key revocations: %lu\n" msgstr " novas revocacións de chaves: %lu\n" -#: g10/import.c:839 sm/import.c:136 +#: g10/import.c:840 sm/import.c:136 #, c-format msgid " secret keys read: %lu\n" msgstr "chaves secretas lidas: %lu\n" -#: g10/import.c:841 sm/import.c:138 +#: g10/import.c:842 sm/import.c:138 #, c-format msgid " secret keys imported: %lu\n" msgstr "chaves secretas importadas: %lu\n" -#: g10/import.c:843 sm/import.c:140 +#: g10/import.c:844 sm/import.c:140 #, c-format msgid " secret keys unchanged: %lu\n" msgstr "chaves secretas sin cambios: %lu\n" -#: g10/import.c:845 sm/import.c:142 +#: g10/import.c:846 sm/import.c:142 #, c-format msgid " not imported: %lu\n" msgstr " non importadas: %lu\n" -#: g10/import.c:847 +#: g10/import.c:848 #, fuzzy, c-format msgid " signatures cleaned: %lu\n" msgstr " novas sinaturas: %lu\n" -#: g10/import.c:849 +#: g10/import.c:850 #, fuzzy, c-format msgid " user IDs cleaned: %lu\n" msgstr "chaves secretas lidas: %lu\n" -#: g10/import.c:1276 +#: g10/import.c:1277 #, c-format msgid "" "WARNING: key %s contains preferences for unavailable\n" "algorithms on these user IDs:\n" msgstr "" -#: g10/import.c:1318 +#: g10/import.c:1319 #, c-format msgid " \"%s\": preference for cipher algorithm %s\n" msgstr "" -#: g10/import.c:1333 +#: g10/import.c:1334 #, fuzzy, c-format msgid " \"%s\": preference for digest algorithm %s\n" msgstr "Sinatura %s, algoritmo de resumo %s\n" -#: g10/import.c:1345 +#: g10/import.c:1346 #, c-format msgid " \"%s\": preference for compression algorithm %s\n" msgstr "" -#: g10/import.c:1358 +#: g10/import.c:1359 #, c-format msgid "it is strongly suggested that you update your preferences and\n" msgstr "" -#: g10/import.c:1360 +#: g10/import.c:1361 #, c-format msgid "re-distribute this key to avoid potential algorithm mismatch problems\n" msgstr "" -#: g10/import.c:1385 +#: g10/import.c:1386 #, c-format msgid "you can update your preferences with: gpg --edit-key %s updpref save\n" msgstr "" -#: g10/import.c:1899 g10/import.c:3013 +#: g10/import.c:1902 g10/import.c:3028 #, fuzzy, c-format msgid "key %s: no user ID\n" msgstr "chave %08lX: non hai ID de usuario\n" -#: g10/import.c:1905 +#: g10/import.c:1908 #, fuzzy, c-format msgid "key %s: %s\n" msgstr "omítese `%s': %s\n" -#: g10/import.c:1906 g10/import.c:2985 +#: g10/import.c:1909 g10/import.c:3000 msgid "rejected by import screener" msgstr "" -#: g10/import.c:1950 +#: g10/import.c:1953 #, fuzzy, c-format msgid "key %s: PKS subkey corruption repaired\n" msgstr "chave %08lX: arranxouse a corrupción da sub-chave HKP\n" -#: g10/import.c:1971 +#: g10/import.c:1974 #, fuzzy, c-format msgid "key %s: accepted non self-signed user ID \"%s\"\n" msgstr "chave %08lX: aceptouse o ID de usuario '%s' sen auto-sinatura\n" -#: g10/import.c:1981 g10/import.c:2012 +#: g10/import.c:1985 g10/import.c:2016 #, fuzzy, c-format msgid "key %s: no valid user IDs\n" msgstr "chave %08lX: non hai IDs de usuario válidos\n" -#: g10/import.c:1983 +#: g10/import.c:1987 #, c-format msgid "this may be caused by a missing self-signature\n" msgstr "isto pode ser causado por unha auto-sinatura que falta\n" -#: g10/import.c:2062 g10/import.c:3399 +#: g10/import.c:2066 g10/import.c:3415 #, fuzzy, c-format msgid "key %s: public key not found: %s\n" msgstr "chave %08lX: chave pública non atopada: %s\n" -#: g10/import.c:2068 +#: g10/import.c:2072 #, fuzzy, c-format msgid "key %s: new key - skipped\n" msgstr "chave %08lX: nova chave - omitida\n" -#: g10/import.c:2080 +#: g10/import.c:2084 #, c-format msgid "no writable keyring found: %s\n" msgstr "non se atopou un chaveiro no que se poida escribir: %s\n" -#: g10/import.c:2112 g10/import.c:2214 g10/import.c:3476 +#: g10/import.c:2116 g10/import.c:2218 g10/import.c:3492 #, fuzzy, c-format #| msgid "error writing keyring `%s': %s\n" msgid "error writing keyring '%s': %s\n" msgstr "erro escribindo no chaveiro `%s': %s\n" -#: g10/import.c:2135 +#: g10/import.c:2139 #, fuzzy, c-format msgid "key %s: public key \"%s\" imported\n" msgstr "chave %08lX: chave pública \"%s\" importada\n" -#: g10/import.c:2162 +#: g10/import.c:2166 #, fuzzy, c-format msgid "key %s: doesn't match our copy\n" msgstr "chave %08lX: non coincide coa nosa copia\n" -#: g10/import.c:2230 +#: g10/import.c:2234 #, fuzzy, c-format msgid "key %s: \"%s\" 1 new user ID\n" msgstr "chave %08lX: \"%s\" 1 novo ID de usuario\n" -#: g10/import.c:2233 +#: g10/import.c:2237 #, fuzzy, c-format msgid "key %s: \"%s\" %d new user IDs\n" msgstr "chave %08lX: \"%s\" %d novos IDs de usuario\n" -#: g10/import.c:2236 +#: g10/import.c:2240 #, fuzzy, c-format msgid "key %s: \"%s\" 1 new signature\n" msgstr "chave %08lX: \"%s\" 1 nova sinatura\n" -#: g10/import.c:2239 +#: g10/import.c:2243 #, fuzzy, c-format msgid "key %s: \"%s\" %d new signatures\n" msgstr "chave %08lX: \"%s\" %d novas sinaturas\n" -#: g10/import.c:2242 +#: g10/import.c:2246 #, fuzzy, c-format msgid "key %s: \"%s\" 1 new subkey\n" msgstr "chave %08lX: \"%s\" 1 nova sub-chave\n" -#: g10/import.c:2245 +#: g10/import.c:2249 #, fuzzy, c-format msgid "key %s: \"%s\" %d new subkeys\n" msgstr "chave %08lX: \"%s\" %d novas sub-chaves\n" -#: g10/import.c:2248 +#: g10/import.c:2252 #, fuzzy, c-format msgid "key %s: \"%s\" %d signature cleaned\n" msgstr "chave %08lX: \"%s\" %d novas sinaturas\n" -#: g10/import.c:2251 +#: g10/import.c:2255 #, fuzzy, c-format msgid "key %s: \"%s\" %d signatures cleaned\n" msgstr "chave %08lX: \"%s\" %d novas sinaturas\n" -#: g10/import.c:2254 +#: g10/import.c:2258 #, fuzzy, c-format msgid "key %s: \"%s\" %d user ID cleaned\n" msgstr "chave %08lX: \"%s\" %d novos IDs de usuario\n" -#: g10/import.c:2257 +#: g10/import.c:2261 #, fuzzy, c-format msgid "key %s: \"%s\" %d user IDs cleaned\n" msgstr "chave %08lX: \"%s\" %d novos IDs de usuario\n" -#: g10/import.c:2293 +#: g10/import.c:2297 #, fuzzy, c-format msgid "key %s: \"%s\" not changed\n" msgstr "chave %08lX: \"%s\" sen cambios\n" -#: g10/import.c:2652 g10/import.c:2847 +#: g10/import.c:2667 g10/import.c:2862 #, fuzzy, c-format msgid "key %s: secret key imported\n" msgstr "chave %08lX: chave secreta importada\n" -#: g10/import.c:2660 +#: g10/import.c:2675 #, fuzzy, c-format #| msgid "skipped: secret key already present\n" msgid "key %s: secret key already exists\n" msgstr "omítese: a chave secreta xa está presente\n" -#: g10/import.c:2668 +#: g10/import.c:2683 #, fuzzy, c-format msgid "key %s: error sending to agent: %s\n" msgstr "erro ao enviar a `%s': %s\n" @@ -3993,207 +3999,207 @@ #. * Instead, user should be suggested to run 'gpg --card-status', #. * then, references to a card will be automatically created #. * again. -#: g10/import.c:2837 +#: g10/import.c:2852 #, c-format msgid "To migrate '%s', with each smartcard, run: %s\n" msgstr "" -#: g10/import.c:2984 +#: g10/import.c:2999 #, fuzzy, c-format msgid "secret key %s: %s\n" msgstr "non se atopou a chave secreta `%s': %s\n" -#: g10/import.c:3005 g10/import.c:3044 +#: g10/import.c:3020 g10/import.c:3059 #, fuzzy, c-format msgid "importing secret keys not allowed\n" msgstr "gravando a chave secreta en `%s'\n" -#: g10/import.c:3032 +#: g10/import.c:3047 #, fuzzy, c-format msgid "key %s: secret key with invalid cipher %d - skipped\n" msgstr "chave %08lX: chave secreta cunha cifra %d non válida - omitida\n" -#: g10/import.c:3194 g10/pkclist.c:72 g10/revoke.c:776 +#: g10/import.c:3209 g10/pkclist.c:72 g10/revoke.c:776 msgid "No reason specified" msgstr "Non se especificou un motivo" -#: g10/import.c:3195 g10/pkclist.c:74 g10/revoke.c:778 +#: g10/import.c:3210 g10/pkclist.c:74 g10/revoke.c:778 msgid "Key is superseded" msgstr "A chave é obsoleta" -#: g10/import.c:3196 g10/pkclist.c:76 g10/revoke.c:777 +#: g10/import.c:3211 g10/pkclist.c:76 g10/revoke.c:777 msgid "Key has been compromised" msgstr "Esta chave quedou descoberta" -#: g10/import.c:3197 g10/pkclist.c:78 g10/revoke.c:779 +#: g10/import.c:3212 g10/pkclist.c:78 g10/revoke.c:779 msgid "Key is no longer used" msgstr "Xa non se emprega esta chave" -#: g10/import.c:3198 g10/pkclist.c:80 g10/revoke.c:780 +#: g10/import.c:3213 g10/pkclist.c:80 g10/revoke.c:780 msgid "User ID is no longer valid" msgstr "O ID de usuario xa non é válido" -#: g10/import.c:3323 g10/keylist.c:1258 g10/pkclist.c:84 +#: g10/import.c:3338 g10/keylist.c:1258 g10/pkclist.c:84 #, c-format msgid "reason for revocation: " msgstr "motivo para a revocación: " -#: g10/import.c:3342 g10/keylist.c:1277 g10/pkclist.c:100 +#: g10/import.c:3357 g10/keylist.c:1277 g10/pkclist.c:100 #, c-format msgid "revocation comment: " msgstr "comentario de revocación: " -#: g10/import.c:3392 +#: g10/import.c:3408 #, fuzzy, c-format msgid "key %s: no public key - can't apply revocation certificate\n" msgstr "" "chave %08lX: non hai chave pública - non se pode aplica-lo\n" "certificado de revocación\n" -#: g10/import.c:3423 +#: g10/import.c:3439 #, fuzzy, c-format msgid "key %s: can't locate original keyblock: %s\n" msgstr "" "chave %08lX: non foi posible localiza-lo bloque de chaves original:\n" "%s\n" -#: g10/import.c:3430 +#: g10/import.c:3446 #, fuzzy, c-format msgid "key %s: can't read original keyblock: %s\n" msgstr "" "chave %08lX: non foi posible le-lo bloque de chaves original:\n" "%s\n" -#: g10/import.c:3450 +#: g10/import.c:3466 #, fuzzy, c-format msgid "key %s: invalid revocation certificate: %s - rejected\n" msgstr "" "chave %08lX: certificado de revocación incorrecto:\n" "%s - rechazado\n" -#: g10/import.c:3485 +#: g10/import.c:3501 #, fuzzy, c-format msgid "key %s: \"%s\" revocation certificate imported\n" msgstr "chave %08lX: \"%s\" certificado de revocación importado\n" -#: g10/import.c:3571 +#: g10/import.c:3587 #, fuzzy, c-format msgid "key %s: no user ID for signature\n" msgstr "chave %08lX: non hai ID de usuario para a sinatura\n" -#: g10/import.c:3588 +#: g10/import.c:3604 #, fuzzy, c-format msgid "key %s: unsupported public key algorithm on user ID \"%s\"\n" msgstr "" "chave %08lX: algoritmo de chave pública non soportado no ID de usuario \"%s" "\"\n" -#: g10/import.c:3590 +#: g10/import.c:3606 #, fuzzy, c-format msgid "key %s: invalid self-signature on user ID \"%s\"\n" msgstr "" "chave %08lX: auto-sinatura non válida no identificadr de usuario \"%s\"\n" -#: g10/import.c:3607 g10/import.c:3635 g10/import.c:3691 +#: g10/import.c:3623 g10/import.c:3651 g10/import.c:3707 #, fuzzy, c-format msgid "key %s: unsupported public key algorithm\n" msgstr "chave %08lX: algoritmo de chave pública non soportado\n" -#: g10/import.c:3608 +#: g10/import.c:3624 #, fuzzy, c-format msgid "key %s: invalid direct key signature\n" msgstr "chave %08lX: engadiuse unha sinatura de chave directa\n" -#: g10/import.c:3622 +#: g10/import.c:3638 #, fuzzy, c-format msgid "key %s: no subkey for key binding\n" msgstr "chave %08lX: non hai sub-chave para a ligazón da chave\n" -#: g10/import.c:3637 +#: g10/import.c:3653 #, fuzzy, c-format msgid "key %s: invalid subkey binding\n" msgstr "chave %08lX: ligazón de sub-chave incorrecta\n" -#: g10/import.c:3656 +#: g10/import.c:3672 #, fuzzy, c-format msgid "key %s: removed multiple subkey binding\n" msgstr "chave %08lX: eliminouse unha ligazón de sub-chave múltiple\n" -#: g10/import.c:3680 +#: g10/import.c:3696 #, fuzzy, c-format msgid "key %s: no subkey for key revocation\n" msgstr "chave %08lX: non hai unha sub-chave para a revocación da chave\n" -#: g10/import.c:3693 +#: g10/import.c:3709 #, fuzzy, c-format msgid "key %s: invalid subkey revocation\n" msgstr "chave %08lX: revocación de sub-chave non válida\n" -#: g10/import.c:3708 +#: g10/import.c:3724 #, fuzzy, c-format msgid "key %s: removed multiple subkey revocation\n" msgstr "chave %08lX: eliminouse a revocación de sub-chaves múltiples\n" -#: g10/import.c:3752 +#: g10/import.c:3771 #, fuzzy, c-format msgid "key %s: skipped user ID \"%s\"\n" msgstr "chave %08lX: omitido o ID de usuario '" -#: g10/import.c:3779 +#: g10/import.c:3798 #, fuzzy, c-format msgid "key %s: skipped subkey\n" msgstr "chave %08lX: omitida a sub-chave\n" -#: g10/import.c:3810 +#: g10/import.c:3829 #, fuzzy, c-format msgid "key %s: non exportable signature (class 0x%02X) - skipped\n" msgstr "chave %08lX: sinatura non exportable (clase %02x) - omitida\n" -#: g10/import.c:3821 +#: g10/import.c:3840 #, fuzzy, c-format msgid "key %s: revocation certificate at wrong place - skipped\n" msgstr "chave %08lX: certificado de revocación no lugar erróneo - omitido\n" -#: g10/import.c:3839 +#: g10/import.c:3868 #, fuzzy, c-format msgid "key %s: invalid revocation certificate: %s - skipped\n" msgstr "chave %08lX: certificado de revocación incorrecto: %s - omitido\n" -#: g10/import.c:3853 +#: g10/import.c:3892 #, fuzzy, c-format msgid "key %s: subkey signature in wrong place - skipped\n" msgstr "chave %08lX: sinatura da sub-chave nun lugar incorrecto - omitida\n" -#: g10/import.c:3861 +#: g10/import.c:3900 #, fuzzy, c-format msgid "key %s: unexpected signature class (0x%02X) - skipped\n" msgstr "chave %08lX: clase de sinatura non esperada (0x%02X) - omitida\n" -#: g10/import.c:4034 +#: g10/import.c:4073 #, fuzzy, c-format msgid "key %s: duplicated user ID detected - merged\n" msgstr "chave %08lX: ID de usuario duplicado detectado - mesturado\n" -#: g10/import.c:4099 +#: g10/import.c:4138 #, fuzzy, c-format msgid "WARNING: key %s may be revoked: fetching revocation key %s\n" msgstr "" "AVISO: a chave %08lX pode estar revocada: obtendo a chave de revocación " "%08lX\n" -#: g10/import.c:4115 +#: g10/import.c:4154 #, fuzzy, c-format msgid "WARNING: key %s may be revoked: revocation key %s not present.\n" msgstr "" "AVISO: a chave %08lX pode estar revocada: chave de revocación %08lX " "ausente.\n" -#: g10/import.c:4181 +#: g10/import.c:4220 #, fuzzy, c-format msgid "key %s: \"%s\" revocation certificate added\n" msgstr "chave %08lX: \"%s\" certificado de revocación engadido\n" -#: g10/import.c:4219 +#: g10/import.c:4258 #, fuzzy, c-format msgid "key %s: direct key signature added\n" msgstr "chave %08lX: engadiuse unha sinatura de chave directa\n" @@ -5134,7 +5140,7 @@ "Non pode engadir unha identificación fotográfica a unha chave de estilo " "PGP2.\n" -#: g10/keyedit.c:4293 g10/keygen.c:2899 +#: g10/keyedit.c:4293 g10/keygen.c:2953 msgid "Such a user ID already exists on this key!\n" msgstr "" @@ -5432,83 +5438,83 @@ msgstr "" "Amosando a id. fotográfica %s de tamaño %ld da chave 0x%08lX (uid %d)\n" -#: g10/keygen.c:169 +#: g10/keygen.c:174 #, fuzzy, c-format msgid "invalid value for option '%s'\n" msgstr "opcións de importación non válidas\n" -#: g10/keygen.c:322 +#: g10/keygen.c:331 #, fuzzy, c-format msgid "preference '%s' duplicated\n" msgstr "preferencia %c%lu duplicada\n" -#: g10/keygen.c:329 +#: g10/keygen.c:338 #, fuzzy, c-format msgid "too many cipher preferences\n" msgstr "demasiadas preferencias `%c'\n" -#: g10/keygen.c:331 +#: g10/keygen.c:340 #, fuzzy, c-format msgid "too many digest preferences\n" msgstr "demasiadas preferencias `%c'\n" -#: g10/keygen.c:333 +#: g10/keygen.c:342 #, fuzzy, c-format msgid "too many compression preferences\n" msgstr "demasiadas preferencias `%c'\n" -#: g10/keygen.c:493 +#: g10/keygen.c:502 #, fuzzy, c-format msgid "invalid item '%s' in preference string\n" msgstr "caracter non válido na cadea de preferencias\n" -#: g10/keygen.c:972 +#: g10/keygen.c:1020 #, c-format msgid "writing direct signature\n" msgstr "escribindo unha sinatura directa\n" -#: g10/keygen.c:1018 +#: g10/keygen.c:1066 #, c-format msgid "writing self signature\n" msgstr "escribindo a propia sinatura\n" -#: g10/keygen.c:1075 +#: g10/keygen.c:1123 #, c-format msgid "writing key binding signature\n" msgstr "escribindo unha sinatura que liga a chave\n" -#: g10/keygen.c:1440 g10/keygen.c:1445 g10/keygen.c:1497 g10/keygen.c:1502 -#: g10/keygen.c:1656 g10/keygen.c:1661 +#: g10/keygen.c:1494 g10/keygen.c:1499 g10/keygen.c:1551 g10/keygen.c:1556 +#: g10/keygen.c:1710 g10/keygen.c:1715 #, c-format msgid "keysize invalid; using %u bits\n" msgstr "tamaño de chave non válido; empregando %u bits\n" -#: g10/keygen.c:1451 g10/keygen.c:1508 g10/keygen.c:1516 g10/keygen.c:1667 +#: g10/keygen.c:1505 g10/keygen.c:1562 g10/keygen.c:1570 g10/keygen.c:1721 #, c-format msgid "keysize rounded up to %u bits\n" msgstr "tamaño de chave redondeado a %u bits\n" -#: g10/keygen.c:1542 +#: g10/keygen.c:1596 #, c-format msgid "" "WARNING: some OpenPGP programs can't handle a DSA key with this digest size\n" msgstr "" -#: g10/keygen.c:1723 +#: g10/keygen.c:1777 #, fuzzy msgid "Sign" msgstr "sign" -#: g10/keygen.c:1726 +#: g10/keygen.c:1780 msgid "Certify" msgstr "" -#: g10/keygen.c:1729 +#: g10/keygen.c:1783 #, fuzzy msgid "Encrypt" msgstr "cifrar datos" -#: g10/keygen.c:1732 +#: g10/keygen.c:1786 msgid "Authenticate" msgstr "" @@ -5522,169 +5528,169 @@ #. * a = Toggle authentication capability #. * q = Finish #. -#: g10/keygen.c:1753 +#: g10/keygen.c:1807 msgid "SsEeAaQq" msgstr "" -#: g10/keygen.c:1784 +#: g10/keygen.c:1838 #, c-format msgid "Possible actions for a %s key: " msgstr "" -#: g10/keygen.c:1790 +#: g10/keygen.c:1844 msgid "Current allowed actions: " msgstr "" -#: g10/keygen.c:1795 +#: g10/keygen.c:1849 #, c-format msgid " (%c) Toggle the sign capability\n" msgstr "" -#: g10/keygen.c:1798 +#: g10/keygen.c:1852 #, fuzzy, c-format msgid " (%c) Toggle the encrypt capability\n" msgstr " (%d) ElGamal (só cifrar)\n" -#: g10/keygen.c:1801 +#: g10/keygen.c:1855 #, c-format msgid " (%c) Toggle the authenticate capability\n" msgstr "" -#: g10/keygen.c:1804 +#: g10/keygen.c:1858 #, c-format msgid " (%c) Finished\n" msgstr "" -#: g10/keygen.c:1930 +#: g10/keygen.c:1984 #, fuzzy, c-format msgid " (%d) RSA and RSA (default)\n" msgstr " (%d) DSA e ElGamal (por defecto)\n" -#: g10/keygen.c:1934 +#: g10/keygen.c:1988 #, fuzzy, c-format msgid " (%d) DSA and Elgamal\n" msgstr " (%d) DSA e ElGamal (por defecto)\n" -#: g10/keygen.c:1937 +#: g10/keygen.c:1991 #, c-format msgid " (%d) DSA (sign only)\n" msgstr " (%d) DSA (só asinar)\n" -#: g10/keygen.c:1939 +#: g10/keygen.c:1993 #, c-format msgid " (%d) RSA (sign only)\n" msgstr " (%d) RSA (só asinar)\n" -#: g10/keygen.c:1945 +#: g10/keygen.c:1999 #, fuzzy, c-format msgid " (%d) Elgamal (encrypt only)\n" msgstr " (%d) ElGamal (só cifrar)\n" -#: g10/keygen.c:1947 +#: g10/keygen.c:2001 #, c-format msgid " (%d) RSA (encrypt only)\n" msgstr " (%d) RSA (só cifrar)\n" -#: g10/keygen.c:1953 +#: g10/keygen.c:2007 #, fuzzy, c-format msgid " (%d) DSA (set your own capabilities)\n" msgstr " (%d) RSA (só cifrar)\n" -#: g10/keygen.c:1955 +#: g10/keygen.c:2009 #, fuzzy, c-format msgid " (%d) RSA (set your own capabilities)\n" msgstr " (%d) RSA (só cifrar)\n" -#: g10/keygen.c:1961 +#: g10/keygen.c:2015 #, fuzzy, c-format msgid " (%d) ECC and ECC\n" msgstr " (%d) DSA e ElGamal (por defecto)\n" -#: g10/keygen.c:1963 +#: g10/keygen.c:2017 #, fuzzy, c-format #| msgid " (%d) DSA (sign only)\n" msgid " (%d) ECC (sign only)\n" msgstr " (%d) DSA (só asinar)\n" -#: g10/keygen.c:1965 +#: g10/keygen.c:2019 #, fuzzy, c-format msgid " (%d) ECC (set your own capabilities)\n" msgstr " (%d) RSA (só cifrar)\n" -#: g10/keygen.c:1967 +#: g10/keygen.c:2021 #, fuzzy, c-format #| msgid " (%d) RSA (encrypt only)\n" msgid " (%d) ECC (encrypt only)\n" msgstr " (%d) RSA (só cifrar)\n" -#: g10/keygen.c:1971 +#: g10/keygen.c:2025 #, fuzzy, c-format msgid " (%d) Existing key\n" msgstr " (%d) RSA (só cifrar)\n" -#: g10/keygen.c:1973 +#: g10/keygen.c:2027 #, fuzzy, c-format msgid " (%d) Existing key from card\n" msgstr " (%d) RSA (só cifrar)\n" -#: g10/keygen.c:2069 sm/certreqgen-ui.c:202 +#: g10/keygen.c:2123 sm/certreqgen-ui.c:202 #, fuzzy msgid "Enter the keygrip: " msgstr "Notación de sinaturas: " -#: g10/keygen.c:2082 sm/certreqgen-ui.c:210 +#: g10/keygen.c:2136 sm/certreqgen-ui.c:210 msgid "Not a valid keygrip (expecting 40 hex digits)\n" msgstr "" -#: g10/keygen.c:2084 sm/certreqgen-ui.c:212 +#: g10/keygen.c:2138 sm/certreqgen-ui.c:212 #, fuzzy msgid "No key with this keygrip\n" msgstr "Non hai ID de usuario con índice %d\n" -#: g10/keygen.c:2103 g10/keygen.c:2113 g10/keygen.c:3216 g10/keygen.c:3227 +#: g10/keygen.c:2157 g10/keygen.c:2167 g10/keygen.c:3270 g10/keygen.c:3281 #: sm/certreqgen-ui.c:230 sm/certreqgen-ui.c:239 #, fuzzy, c-format msgid "error reading the card: %s\n" msgstr "%s: erro ao ler un rexistro libre: %s\n" -#: g10/keygen.c:2107 g10/keygen.c:3220 sm/certreqgen-ui.c:233 +#: g10/keygen.c:2161 g10/keygen.c:3274 sm/certreqgen-ui.c:233 #, fuzzy, c-format msgid "Serial number of the card: %s\n" msgstr "erro ao crea-lo contrasinal: %s\n" -#: g10/keygen.c:2120 sm/certreqgen-ui.c:245 +#: g10/keygen.c:2174 sm/certreqgen-ui.c:245 #, fuzzy msgid "Available keys:\n" msgstr "deshabilitar unha chave" -#: g10/keygen.c:2297 g10/keygen.c:2311 +#: g10/keygen.c:2351 g10/keygen.c:2365 #, fuzzy, c-format #| msgid "rounded up to %u bits\n" msgid "rounded to %u bits\n" msgstr "redondeado a %u bits\n" -#: g10/keygen.c:2352 +#: g10/keygen.c:2406 #, c-format msgid "%s keys may be between %u and %u bits long.\n" msgstr "" -#: g10/keygen.c:2360 +#: g10/keygen.c:2414 #, fuzzy, c-format msgid "What keysize do you want for the subkey? (%u) " msgstr "¿Qué tamaño de chave quere? (1024) " -#: g10/keygen.c:2377 sm/certreqgen-ui.c:189 +#: g10/keygen.c:2431 sm/certreqgen-ui.c:189 #, c-format msgid "Requested keysize is %u bits\n" msgstr "O tamaño de chave requerido son %u bits\n" -#: g10/keygen.c:2423 +#: g10/keygen.c:2477 #, fuzzy #| msgid "Please select what kind of key you want:\n" msgid "Please select which elliptic curve you want:\n" msgstr "Por favor, seleccione o tipo de chave que quere:\n" -#: g10/keygen.c:2611 +#: g10/keygen.c:2665 msgid "" "Please specify how long the key should be valid.\n" " 0 = key does not expire\n" @@ -5700,7 +5706,7 @@ " m = a chave caduca en n meses\n" " y = a chave caduca en n anos\n" -#: g10/keygen.c:2622 +#: g10/keygen.c:2676 msgid "" "Please specify how long the signature should be valid.\n" " 0 = signature does not expire\n" @@ -5716,40 +5722,40 @@ " m = a sinatura caduca en n meses\n" " y = a sinatura caduca en n anos\n" -#: g10/keygen.c:2645 +#: g10/keygen.c:2699 msgid "Key is valid for? (0) " msgstr "¿Por canto tempo é válida a chave? (0) " -#: g10/keygen.c:2650 +#: g10/keygen.c:2704 #, fuzzy, c-format msgid "Signature is valid for? (%s) " msgstr "¿Por canto tempo é válida a sinatura? (0) " -#: g10/keygen.c:2663 g10/keygen.c:2688 +#: g10/keygen.c:2717 g10/keygen.c:2742 msgid "invalid value\n" msgstr "valor non válido\n" -#: g10/keygen.c:2670 +#: g10/keygen.c:2724 #, fuzzy msgid "Key does not expire at all\n" msgstr "%s non caduca nunca\n" -#: g10/keygen.c:2671 +#: g10/keygen.c:2725 #, fuzzy msgid "Signature does not expire at all\n" msgstr "%s non caduca nunca\n" -#: g10/keygen.c:2676 +#: g10/keygen.c:2730 #, fuzzy, c-format msgid "Key expires at %s\n" msgstr "%s caduca o %s\n" -#: g10/keygen.c:2677 +#: g10/keygen.c:2731 #, fuzzy, c-format msgid "Signature expires at %s\n" msgstr "A sinatura caduca o %s\n" -#: g10/keygen.c:2681 +#: g10/keygen.c:2735 msgid "" "Your system can't display dates beyond 2038.\n" "However, it will be correctly handled up to 2106.\n" @@ -5757,12 +5763,12 @@ "O seu sistema non pode amosar datas máis aló do 2038.\n" "Aínda así, hase tratar correctamente ata o 2106.\n" -#: g10/keygen.c:2694 +#: g10/keygen.c:2748 #, fuzzy msgid "Is this correct? (y/N) " msgstr "¿Isto é correcto? (s/n) " -#: g10/keygen.c:2762 +#: g10/keygen.c:2816 msgid "" "\n" "GnuPG needs to construct a user ID to identify your key.\n" @@ -5773,7 +5779,7 @@ #. but you should keep your existing translation. In case #. the new string is not translated this old string will #. be used. -#: g10/keygen.c:2777 +#: g10/keygen.c:2831 #, fuzzy msgid "" "\n" @@ -5790,50 +5796,50 @@ " \"Heinrich Heime (Der Dichter) \"\n" "\n" -#: g10/keygen.c:2796 +#: g10/keygen.c:2850 msgid "Real name: " msgstr "Nome: " -#: g10/keygen.c:2805 +#: g10/keygen.c:2859 msgid "Invalid character in name\n" msgstr "Caracter non válido no nome\n" -#: g10/keygen.c:2806 +#: g10/keygen.c:2860 #, c-format msgid "The characters '%s' and '%s' may not appear in name\n" msgstr "" -#: g10/keygen.c:2810 +#: g10/keygen.c:2864 msgid "Name may not start with a digit\n" msgstr "O nome non pode comezar cun díxito\n" -#: g10/keygen.c:2813 +#: g10/keygen.c:2867 msgid "Name must be at least 5 characters long\n" msgstr "O nome debe ter alomenos 5 caracteres\n" -#: g10/keygen.c:2823 +#: g10/keygen.c:2877 msgid "Email address: " msgstr "Enderezo de E-mail: " -#: g10/keygen.c:2829 +#: g10/keygen.c:2883 msgid "Not a valid email address\n" msgstr "Non é un enderezo de e-mail válido\n" -#: g10/keygen.c:2838 +#: g10/keygen.c:2892 msgid "Comment: " msgstr "Comentario: " -#: g10/keygen.c:2844 +#: g10/keygen.c:2898 msgid "Invalid character in comment\n" msgstr "Carácter non válido no comentario\n" -#: g10/keygen.c:2880 +#: g10/keygen.c:2934 #, fuzzy, c-format #| msgid "You are using the `%s' character set.\n" msgid "You are using the '%s' character set.\n" msgstr "Está a usa-lo xogo de caracteres `%s'.\n" -#: g10/keygen.c:2886 +#: g10/keygen.c:2940 #, c-format msgid "" "You selected this USER-ID:\n" @@ -5844,7 +5850,7 @@ " \"%s\"\n" "\n" -#: g10/keygen.c:2891 +#: g10/keygen.c:2945 msgid "Please don't put the email address into the real name or the comment\n" msgstr "" "Por favor, non poña o enderezo de correo no nome real ou no comentario\n" @@ -5860,35 +5866,35 @@ #. o = Okay (ready, continue) #. q = Quit #. -#: g10/keygen.c:2916 +#: g10/keygen.c:2970 msgid "NnCcEeOoQq" msgstr "NnCcEeAaSs" -#: g10/keygen.c:2926 +#: g10/keygen.c:2980 msgid "Change (N)ame, (C)omment, (E)mail or (Q)uit? " msgstr "¿Cambia-lo (N)ome, (C)omentario, (E)-mail ou (S)aír? " -#: g10/keygen.c:2927 +#: g10/keygen.c:2981 msgid "Change (N)ame, (C)omment, (E)mail or (O)kay/(Q)uit? " msgstr "¿Cambiar (N)ome, (C)omentario, (E)-mail ou (A)ceptar/(S)aír? " -#: g10/keygen.c:2932 +#: g10/keygen.c:2986 #, fuzzy #| msgid "Change (N)ame, (C)omment, (E)mail or (Q)uit? " msgid "Change (N)ame, (E)mail, or (Q)uit? " msgstr "¿Cambia-lo (N)ome, (C)omentario, (E)-mail ou (S)aír? " -#: g10/keygen.c:2933 +#: g10/keygen.c:2987 #, fuzzy #| msgid "Change (N)ame, (C)omment, (E)mail or (O)kay/(Q)uit? " msgid "Change (N)ame, (E)mail, or (O)kay/(Q)uit? " msgstr "¿Cambiar (N)ome, (C)omentario, (E)-mail ou (A)ceptar/(S)aír? " -#: g10/keygen.c:2952 +#: g10/keygen.c:3006 msgid "Please correct the error first\n" msgstr "Por favor, corrixa antes o erro\n" -#: g10/keygen.c:2998 +#: g10/keygen.c:3052 msgid "" "We need to generate a lot of random bytes. It is a good idea to perform\n" "some other action (type on the keyboard, move the mouse, utilize the\n" @@ -5900,13 +5906,13 @@ "mentres se xeran os números primos; isto proporciónalle ao xerador de\n" "números aleatorios unha opoertunidade de acumular entropía de abondo.\n" -#: g10/keygen.c:4278 g10/keygen.c:4349 g10/keygen.c:4367 g10/keygen.c:4395 -#: g10/keygen.c:4739 g10/keygen.c:5239 g10/keygen.c:5534 g10/keygen.c:5639 +#: g10/keygen.c:4332 g10/keygen.c:4403 g10/keygen.c:4421 g10/keygen.c:4449 +#: g10/keygen.c:4793 g10/keygen.c:5293 g10/keygen.c:5588 g10/keygen.c:5693 #, c-format msgid "Key generation failed: %s\n" msgstr "A xeración da chave fallou: %s\n" -#: g10/keygen.c:4287 +#: g10/keygen.c:4341 #, c-format msgid "" "About to create a key for:\n" @@ -5914,69 +5920,69 @@ "\n" msgstr "" -#: g10/keygen.c:4289 +#: g10/keygen.c:4343 msgid "Continue? (Y/n) " msgstr "" -#: g10/keygen.c:4310 +#: g10/keygen.c:4364 #, fuzzy, c-format msgid "A key for \"%s\" already exists\n" msgstr "`%s' xa está comprimido\n" -#: g10/keygen.c:4315 +#: g10/keygen.c:4369 #, fuzzy #| msgid "Create anyway? " msgid "Create anyway? (y/N) " msgstr "¿Crear de tódolos xeitos? " -#: g10/keygen.c:4321 +#: g10/keygen.c:4375 #, fuzzy, c-format #| msgid "Create anyway? " msgid "creating anyway\n" msgstr "¿Crear de tódolos xeitos? " -#: g10/keygen.c:4722 +#: g10/keygen.c:4776 #, c-format msgid "Note: Use \"%s %s\" for a full featured key generation dialog.\n" msgstr "" -#: g10/keygen.c:4771 +#: g10/keygen.c:4825 #, c-format msgid "Key generation canceled.\n" msgstr "Cancelouse a xeración de chaves.\n" -#: g10/keygen.c:4831 +#: g10/keygen.c:4885 #, fuzzy, c-format msgid "can't create backup file '%s': %s\n" msgstr "non se pode crear `%s': %s\n" -#: g10/keygen.c:4851 +#: g10/keygen.c:4905 #, fuzzy, c-format msgid "Note: backup of card key saved to '%s'\n" msgstr "NOTA: a chave secreta %08lX caducou o %s\n" -#: g10/keygen.c:5010 g10/keygen.c:5172 +#: g10/keygen.c:5064 g10/keygen.c:5226 #, fuzzy, c-format #| msgid "writing public key to `%s'\n" msgid "writing public key to '%s'\n" msgstr "gravando a chave pública en `%s'\n" -#: g10/keygen.c:5166 +#: g10/keygen.c:5220 #, c-format msgid "no writable public keyring found: %s\n" msgstr "non se atopou un chaveiro público no que se poida escribir: %s\n" -#: g10/keygen.c:5180 +#: g10/keygen.c:5234 #, fuzzy, c-format #| msgid "error writing public keyring `%s': %s\n" msgid "error writing public keyring '%s': %s\n" msgstr "erro escribindo no chaveiro público `%s': %s\n" -#: g10/keygen.c:5210 +#: g10/keygen.c:5264 msgid "public and secret key created and signed.\n" msgstr "creáronse e asináronse as chaves pública e secreta.\n" -#: g10/keygen.c:5226 +#: g10/keygen.c:5280 #, fuzzy msgid "" "Note that this key cannot be used for encryption. You may want to use\n" @@ -5986,7 +5992,7 @@ "queira emprega-lo comando \"--edit-key\" para xerar unha chave secundaria\n" "con esa finalidade.\n" -#: g10/keygen.c:5401 g10/keygen.c:5590 +#: g10/keygen.c:5455 g10/keygen.c:5644 #, c-format msgid "" "key has been created %lu second in future (time warp or clock problem)\n" @@ -5994,7 +6000,7 @@ "creouse a chave %lu segundo no futuro (salto no tempo ou problemas co " "reloxo)\n" -#: g10/keygen.c:5403 g10/keygen.c:5592 +#: g10/keygen.c:5457 g10/keygen.c:5646 #, c-format msgid "" "key has been created %lu seconds in future (time warp or clock problem)\n" @@ -6002,23 +6008,23 @@ "creouse a chave %lu segundos no futuro (salto no tempo ou problemas co " "reloxo)\n" -#: g10/keygen.c:5414 g10/keygen.c:5603 +#: g10/keygen.c:5468 g10/keygen.c:5657 #, fuzzy, c-format #| msgid "NOTE: creating subkeys for v3 keys is not OpenPGP compliant\n" msgid "Note: creating subkeys for v3 keys is not OpenPGP compliant\n" msgstr "NOTA: a creación de subchaves para chaves v3 non cumpre OpenPGP\n" -#: g10/keygen.c:5426 g10/keygen.c:5428 +#: g10/keygen.c:5480 g10/keygen.c:5482 #, c-format msgid "Secret parts of primary key are not available.\n" msgstr "as partes secretas da chave primaria non están dispoñibles.\n" -#: g10/keygen.c:5435 g10/keygen.c:5437 +#: g10/keygen.c:5489 g10/keygen.c:5491 #, fuzzy, c-format msgid "Secret parts of primary key are stored on-card.\n" msgstr "as partes secretas da chave primaria non están dispoñibles.\n" -#: g10/keygen.c:5456 g10/keygen.c:5617 +#: g10/keygen.c:5510 g10/keygen.c:5671 #, fuzzy msgid "Really create? (y/N) " msgstr "¿Crear realmente? " @@ -7130,31 +7136,31 @@ msgid "data not saved; use option \"--output\" to save it\n" msgstr "os datos non foron gardados; use a opción \"--output\" para gardalos\n" -#: g10/plaintext.c:615 +#: g10/plaintext.c:620 msgid "Detached signature.\n" msgstr "Sinatura non adxunta.\n" -#: g10/plaintext.c:623 +#: g10/plaintext.c:628 msgid "Please enter name of data file: " msgstr "Por favor, introduza o nome do ficheiro de datos: " -#: g10/plaintext.c:660 +#: g10/plaintext.c:665 #, c-format msgid "reading stdin ...\n" msgstr "lendo de stdin ...\n" -#: g10/plaintext.c:705 +#: g10/plaintext.c:710 #, c-format msgid "no signed data\n" msgstr "non hai datos asinados\n" -#: g10/plaintext.c:723 +#: g10/plaintext.c:728 #, fuzzy, c-format #| msgid "can't open signed data `%s'\n" msgid "can't open signed data '%s'\n" msgstr "non foi posible abri-los datos asinados `%s'\n" -#: g10/plaintext.c:758 +#: g10/plaintext.c:763 #, fuzzy, c-format msgid "can't open signed data fd=%d: %s\n" msgstr "non foi posible abri-los datos asinados `%s'\n" @@ -8170,7 +8176,7 @@ msgid "no need for a trustdb check\n" msgstr "non se precisa comproba-la base de datos de confianza\n" -#: g10/trustdb.c:631 g10/trustdb.c:2326 +#: g10/trustdb.c:631 g10/trustdb.c:2338 #, c-format msgid "next trustdb check due at %s\n" msgstr "hase comproba-la base de datos de confianza o %s\n" @@ -8200,14 +8206,14 @@ msgid "checking the trustdb\n" msgstr "comprobando a base de datos de confianza\n" -#: g10/trustdb.c:2047 +#: g10/trustdb.c:2059 #, fuzzy, c-format msgid "%d key processed" msgid_plural "%d keys processed" msgstr[0] "%lu chaves procesadas hasta polo momento\n" msgstr[1] "%lu chaves procesadas hasta polo momento\n" -#: g10/trustdb.c:2050 +#: g10/trustdb.c:2062 #, fuzzy, c-format #| msgid "%d keys processed (%d validity counts cleared)\n" msgid " (%d validity count cleared)\n" @@ -8215,23 +8221,23 @@ msgstr[0] "procesáronse %d chaves (marcáronse %d contas de validez)\n" msgstr[1] "procesáronse %d chaves (marcáronse %d contas de validez)\n" -#: g10/trustdb.c:2120 +#: g10/trustdb.c:2132 #, c-format msgid "no ultimately trusted keys found\n" msgstr "non se atoparon chaves de confianza absoluta\n" -#: g10/trustdb.c:2134 +#: g10/trustdb.c:2146 #, fuzzy, c-format msgid "public key of ultimately trusted key %s not found\n" msgstr "non se atopou a chave pública da clave de confianza absoluta %08lX\n" -#: g10/trustdb.c:2252 +#: g10/trustdb.c:2264 #, c-format msgid "" "depth: %d valid: %3d signed: %3d trust: %d-, %dq, %dn, %dm, %df, %du\n" msgstr "" -#: g10/trustdb.c:2333 +#: g10/trustdb.c:2345 #, fuzzy, c-format msgid "unable to update trustdb version record: write failed: %s\n" msgstr "rexistro de confianza %lu, tipo %d: fallou a escritura: %s\n" @@ -8350,88 +8356,94 @@ #. TRANSLATORS: Put a \x1f right before a colon. This can be #. * used by pinentry to nicely align the names and values. Keep #. * the %s at the start and end of the string. -#: scd/app-p15.c:5116 scd/app-openpgp.c:2154 +#: scd/app-p15.c:5145 scd/app-nks.c:1541 scd/app-openpgp.c:2154 #, c-format msgid "%sNumber: %s%%0AHolder: %s%s" msgstr "" #. TRANSLATORS: This is the number of remaining attempts to #. * enter a PIN. Use %%0A (double-percent,0A) for a linefeed. -#: scd/app-p15.c:5135 scd/app-openpgp.c:2170 +#: scd/app-p15.c:5164 scd/app-nks.c:1560 scd/app-openpgp.c:2170 #, c-format msgid "Remaining attempts: %d" msgstr "" -#: scd/app-p15.c:5214 scd/app-nks.c:1113 +#: scd/app-p15.c:5243 scd/app-nks.c:2112 msgid "||Please enter the PIN for the key to create qualified signatures." msgstr "" #. TRANSLATORS: Do not translate the "|A|" prefix but keep it at #. the start of the string. Use %0A (single percent) for a linefeed. -#: scd/app-p15.c:5217 scd/app-openpgp.c:2464 +#: scd/app-p15.c:5246 scd/app-openpgp.c:2465 #, fuzzy msgid "|A|Please enter the Admin PIN" msgstr "cambia-lo contrasinal" -#: scd/app-p15.c:5219 scd/app-nks.c:1103 +#: scd/app-p15.c:5248 scd/app-nks.c:2102 #, fuzzy msgid "|P|Please enter the PIN Unblocking Code (PUK) for the standard keys." msgstr "Por favor, escolla o motivo da revocación:\n" -#: scd/app-p15.c:5222 scd/app-nks.c:1095 +#: scd/app-p15.c:5251 scd/app-nks.c:2093 #, fuzzy msgid "||Please enter the PIN for the standard keys." msgstr "cambia-lo contrasinal" -#: scd/app-nks.c:709 scd/app-openpgp.c:3666 +#: scd/app-nks.c:1479 scd/app-openpgp.c:3675 #, c-format msgid "RSA modulus missing or not of size %d bits\n" msgstr "" -#: scd/app-nks.c:717 scd/app-openpgp.c:3678 +#: scd/app-nks.c:1487 scd/app-openpgp.c:3687 #, c-format msgid "RSA public exponent missing or larger than %d bits\n" msgstr "" -#: scd/app-nks.c:797 scd/app-openpgp.c:2327 scd/app-openpgp.c:2346 -#: scd/app-openpgp.c:2513 scd/app-openpgp.c:2531 scd/app-openpgp.c:2829 -#: scd/app-openpgp.c:2876 scd/app-openpgp.c:2991 scd/app-dinsig.c:302 +#: scd/app-nks.c:1660 +#, fuzzy +#| msgid "Note: This key has been disabled.\n" +msgid "Note: PIN has not yet been enabled." +msgstr "Nota: Esta chave está desactivada.\n" + +#: scd/app-nks.c:1671 scd/app-openpgp.c:2327 scd/app-openpgp.c:2346 +#: scd/app-openpgp.c:2515 scd/app-openpgp.c:2533 scd/app-openpgp.c:2832 +#: scd/app-openpgp.c:2879 scd/app-openpgp.c:3000 scd/app-dinsig.c:303 #, c-format msgid "PIN callback returned error: %s\n" msgstr "" -#: scd/app-nks.c:830 +#: scd/app-nks.c:1707 #, c-format msgid "the NullPIN has not yet been changed\n" msgstr "" -#: scd/app-nks.c:1094 +#: scd/app-nks.c:2092 #, fuzzy msgid "|N|Please enter a new PIN for the standard keys." msgstr "cambia-lo contrasinal" -#: scd/app-nks.c:1101 +#: scd/app-nks.c:2100 #, fuzzy msgid "|NP|Please enter a new PIN Unblocking Code (PUK) for the standard keys." msgstr "Por favor, escolla o motivo da revocación:\n" -#: scd/app-nks.c:1111 +#: scd/app-nks.c:2110 msgid "|N|Please enter a new PIN for the key to create qualified signatures." msgstr "" -#: scd/app-nks.c:1121 +#: scd/app-nks.c:2120 msgid "" "|NP|Please enter a new PIN Unblocking Code (PUK) for the key to create " "qualified signatures." msgstr "" -#: scd/app-nks.c:1123 +#: scd/app-nks.c:2122 msgid "" "|P|Please enter the PIN Unblocking Code (PUK) for the key to create " "qualified signatures." msgstr "" -#: scd/app-nks.c:1230 scd/app-openpgp.c:2910 scd/app-dinsig.c:532 +#: scd/app-nks.c:2295 scd/app-openpgp.c:2913 scd/app-dinsig.c:535 #, fuzzy, c-format msgid "error getting new PIN: %s\n" msgstr "erro ao crea-lo contrasinal: %s\n" @@ -8446,7 +8458,7 @@ msgid "failed to store the creation date: %s\n" msgstr "fallo ao reconstruí-la caché de chaveiros: %s\n" -#: scd/app-openpgp.c:1271 scd/app-openpgp.c:2857 scd/app-openpgp.c:5041 +#: scd/app-openpgp.c:1271 scd/app-openpgp.c:2860 scd/app-openpgp.c:5051 #, c-format msgid "error retrieving CHV status from card\n" msgstr "" @@ -8467,7 +8479,7 @@ msgid "response does not contain the EC public key\n" msgstr "borrar chaves do chaveiro público" -#: scd/app-openpgp.c:1664 scd/app-openpgp.c:4286 +#: scd/app-openpgp.c:1664 scd/app-openpgp.c:4295 #, c-format msgid "response does not contain the public key data\n" msgstr "" @@ -8500,23 +8512,23 @@ msgid "||Please unlock the card" msgstr "cambia-lo contrasinal" -#: scd/app-openpgp.c:2353 scd/app-openpgp.c:2538 scd/app-openpgp.c:2836 +#: scd/app-openpgp.c:2353 scd/app-openpgp.c:2540 scd/app-openpgp.c:2839 #, c-format msgid "PIN for CHV%d is too short; minimum length is %d\n" msgstr "" -#: scd/app-openpgp.c:2367 scd/app-openpgp.c:2414 scd/app-openpgp.c:2552 -#: scd/app-openpgp.c:4644 +#: scd/app-openpgp.c:2368 scd/app-openpgp.c:2415 scd/app-openpgp.c:2554 +#: scd/app-openpgp.c:4654 #, 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:2450 scd/app-openpgp.c:5050 +#: scd/app-openpgp.c:2451 scd/app-openpgp.c:5060 #, c-format msgid "card is permanently locked!\n" msgstr "" -#: scd/app-openpgp.c:2454 +#: scd/app-openpgp.c:2455 #, c-format msgid "%d Admin PIN attempt remaining before card is permanently locked\n" msgid_plural "" @@ -8524,22 +8536,22 @@ msgstr[0] "" msgstr[1] "" -#: scd/app-openpgp.c:2485 +#: scd/app-openpgp.c:2486 #, c-format msgid "access to admin commands is not configured\n" msgstr "" -#: scd/app-openpgp.c:2823 +#: scd/app-openpgp.c:2826 #, fuzzy msgid "||Please enter the PIN" msgstr "cambia-lo contrasinal" -#: scd/app-openpgp.c:2872 +#: scd/app-openpgp.c:2875 #, fuzzy msgid "||Please enter the Reset Code for the card" msgstr "Por favor, escolla o motivo da revocación:\n" -#: scd/app-openpgp.c:2882 scd/app-openpgp.c:2943 +#: scd/app-openpgp.c:2885 scd/app-openpgp.c:2946 #, c-format msgid "Reset Code is too short; minimum length is %d\n" msgstr "" @@ -8547,128 +8559,128 @@ #. 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:2905 +#: scd/app-openpgp.c:2908 msgid "|RN|New Reset Code" msgstr "" -#: scd/app-openpgp.c:2906 +#: scd/app-openpgp.c:2909 msgid "|AN|New Admin PIN" msgstr "" -#: scd/app-openpgp.c:2906 +#: scd/app-openpgp.c:2909 msgid "|N|New PIN" msgstr "" -#: scd/app-openpgp.c:2987 +#: scd/app-openpgp.c:2996 #, fuzzy msgid "||Please enter the Admin PIN and New Admin PIN" msgstr "cambia-lo contrasinal" -#: scd/app-openpgp.c:2988 +#: scd/app-openpgp.c:2997 #, fuzzy msgid "||Please enter the PIN and New PIN" msgstr "cambia-lo contrasinal" -#: scd/app-openpgp.c:3050 scd/app-openpgp.c:4346 +#: scd/app-openpgp.c:3059 scd/app-openpgp.c:4355 #, fuzzy, c-format msgid "error reading application data\n" msgstr "erro ao le-lo bloque de chaves: %s\n" -#: scd/app-openpgp.c:3056 scd/app-openpgp.c:4353 +#: scd/app-openpgp.c:3065 scd/app-openpgp.c:4362 #, fuzzy, c-format msgid "error reading fingerprint DO\n" msgstr "%s: erro ao ler un rexistro libre: %s\n" -#: scd/app-openpgp.c:3066 +#: scd/app-openpgp.c:3075 #, fuzzy, c-format msgid "key already exists\n" msgstr "`%s' xa está comprimido\n" -#: scd/app-openpgp.c:3070 +#: scd/app-openpgp.c:3079 #, c-format msgid "existing key will be replaced\n" msgstr "" -#: scd/app-openpgp.c:3072 +#: scd/app-openpgp.c:3081 #, fuzzy, c-format msgid "generating new key\n" msgstr "xerar un novo par de chaves" -#: scd/app-openpgp.c:3074 +#: scd/app-openpgp.c:3083 #, fuzzy, c-format msgid "writing new key\n" msgstr "xerar un novo par de chaves" -#: scd/app-openpgp.c:3647 scd/app-openpgp.c:3999 +#: scd/app-openpgp.c:3656 scd/app-openpgp.c:4008 #, c-format msgid "creation timestamp missing\n" msgstr "" -#: scd/app-openpgp.c:3688 scd/app-openpgp.c:3696 +#: scd/app-openpgp.c:3697 scd/app-openpgp.c:3705 #, c-format msgid "RSA prime %s missing or not of size %d bits\n" msgstr "" -#: scd/app-openpgp.c:3829 scd/app-openpgp.c:4106 +#: scd/app-openpgp.c:3838 scd/app-openpgp.c:4115 #, 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:3993 +#: scd/app-openpgp.c:4002 #, fuzzy, c-format #| msgid "unsupported URI" msgid "unsupported curve\n" msgstr "URI non soportado" -#: scd/app-openpgp.c:4263 +#: scd/app-openpgp.c:4272 #, c-format msgid "please wait while key is being generated ...\n" msgstr "" -#: scd/app-openpgp.c:4271 +#: scd/app-openpgp.c:4280 #, fuzzy, c-format msgid "generating key failed\n" msgstr "fallou o borrado do bloque de chaves: %s\n" -#: scd/app-openpgp.c:4277 +#: scd/app-openpgp.c:4286 #, fuzzy, c-format msgid "key generation completed (%d second)\n" msgid_plural "key generation completed (%d seconds)\n" msgstr[0] "A xeración da chave fallou: %s\n" msgstr[1] "A xeración da chave fallou: %s\n" -#: scd/app-openpgp.c:4311 +#: scd/app-openpgp.c:4320 #, c-format msgid "invalid structure of OpenPGP card (DO 0x93)\n" msgstr "" -#: scd/app-openpgp.c:4361 +#: scd/app-openpgp.c:4370 #, c-format msgid "fingerprint on card does not match requested one\n" msgstr "" -#: scd/app-openpgp.c:4560 +#: scd/app-openpgp.c:4569 #, fuzzy, c-format msgid "card does not support digest algorithm %s\n" msgstr "Sinatura %s, algoritmo de resumo %s\n" -#: scd/app-openpgp.c:4618 +#: scd/app-openpgp.c:4627 #, c-format msgid "signatures created so far: %lu\n" msgstr "" -#: scd/app-openpgp.c:5055 +#: scd/app-openpgp.c:5065 #, c-format msgid "" "verification of Admin PIN is currently prohibited through this command\n" msgstr "" -#: scd/app-openpgp.c:5386 scd/app-openpgp.c:5398 +#: scd/app-openpgp.c:5396 scd/app-openpgp.c:5408 #, fuzzy, c-format msgid "can't access %s - invalid OpenPGP card?\n" msgstr "non se atoparon datos OpenPGP válidos.\n" -#: scd/app-dinsig.c:298 +#: scd/app-dinsig.c:299 #, fuzzy msgid "||Please enter your PIN at the reader's pinpad" msgstr "cambia-lo contrasinal" @@ -8676,7 +8688,7 @@ #. 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-dinsig.c:529 +#: scd/app-dinsig.c:532 #, fuzzy msgid "|N|Initial New PIN" msgstr "Introduza o ID de usuario: " @@ -8767,11 +8779,11 @@ msgid "validation model requested by certificate: %s" msgstr "" -#: sm/certchain.c:199 sm/certchain.c:2164 +#: sm/certchain.c:199 sm/certchain.c:2165 msgid "chain" msgstr "" -#: sm/certchain.c:200 sm/certchain.c:2164 +#: sm/certchain.c:200 sm/certchain.c:2165 #, fuzzy msgid "shell" msgstr "axuda" @@ -8795,248 +8807,248 @@ msgid "failed to open '%s': %s\n" msgstr "non se puido abrir `%s': %s\n" -#: sm/certchain.c:355 sm/certchain.c:384 dirmngr/validate.c:204 +#: sm/certchain.c:355 sm/certchain.c:385 dirmngr/validate.c:204 #, fuzzy, c-format msgid "Note: non-critical certificate policy not allowed" msgstr "gravando a chave secreta en `%s'\n" -#: sm/certchain.c:359 sm/certchain.c:388 dirmngr/validate.c:209 +#: sm/certchain.c:359 sm/certchain.c:389 dirmngr/validate.c:209 #, fuzzy, c-format msgid "certificate policy not allowed" msgstr "gravando a chave secreta en `%s'\n" -#: sm/certchain.c:595 sm/keydb.c:1084 sm/keydb.c:1171 +#: sm/certchain.c:596 sm/keydb.c:1084 sm/keydb.c:1171 #, fuzzy, c-format msgid "failed to get the fingerprint\n" msgstr "non se puido inicializa-la base de datos de confianzas: %s\n" -#: sm/certchain.c:624 +#: sm/certchain.c:625 #, c-format msgid "looking up issuer at external location\n" msgstr "" -#: sm/certchain.c:644 +#: sm/certchain.c:645 #, c-format msgid "number of issuers matching: %d\n" msgstr "" -#: sm/certchain.c:723 dirmngr/ocsp.c:685 +#: sm/certchain.c:724 dirmngr/ocsp.c:685 #, fuzzy, c-format #| msgid "%s: can't access: %s\n" msgid "can't get authorityInfoAccess: %s\n" msgstr "%s: non é posible acceder: %s\n" -#: sm/certchain.c:791 +#: sm/certchain.c:792 #, c-format msgid "looking up issuer from the Dirmngr cache\n" msgstr "" -#: sm/certchain.c:816 +#: sm/certchain.c:817 #, fuzzy, c-format msgid "number of matching certificates: %d\n" msgstr "erro ao crea-lo contrasinal: %s\n" -#: sm/certchain.c:819 +#: sm/certchain.c:820 #, fuzzy, c-format msgid "dirmngr cache-only key lookup failed: %s\n" msgstr "fallou o borrado do bloque de chaves: %s\n" -#: sm/certchain.c:1041 sm/certchain.c:1554 sm/certchain.c:2192 sm/decrypt.c:728 +#: sm/certchain.c:1042 sm/certchain.c:1555 sm/certchain.c:2193 sm/decrypt.c:728 #: sm/encrypt.c:345 sm/import.c:415 sm/keydb.c:1091 sm/keydb.c:1178 #: sm/sign.c:337 sm/verify.c:118 #, fuzzy, c-format msgid "failed to allocate keyDB handle\n" msgstr "non se puido inicializa-la base de datos de confianzas: %s\n" -#: sm/certchain.c:1225 +#: sm/certchain.c:1226 #, fuzzy msgid "certificate has been revoked" msgstr "NOTA: a chave está revocada" -#: sm/certchain.c:1240 +#: sm/certchain.c:1241 msgid "the status of the certificate is unknown" msgstr "" -#: sm/certchain.c:1247 +#: sm/certchain.c:1248 #, c-format msgid "please make sure that the \"dirmngr\" is properly installed\n" msgstr "" -#: sm/certchain.c:1253 +#: sm/certchain.c:1254 #, fuzzy, c-format msgid "checking the CRL failed: %s" msgstr "fallou a comprobación da sinatura creada: %s\n" -#: sm/certchain.c:1282 sm/certchain.c:1350 dirmngr/validate.c:497 +#: sm/certchain.c:1283 sm/certchain.c:1351 dirmngr/validate.c:497 #, fuzzy, c-format msgid "certificate with invalid validity: %s" msgstr "problema de lectura do certificado: %s\n" -#: sm/certchain.c:1297 sm/certchain.c:1382 dirmngr/validate.c:515 +#: sm/certchain.c:1298 sm/certchain.c:1383 dirmngr/validate.c:515 #, fuzzy, c-format msgid "certificate not yet valid" msgstr "Revocación de certificado válida" -#: sm/certchain.c:1298 sm/certchain.c:1383 +#: sm/certchain.c:1299 sm/certchain.c:1384 #, fuzzy msgid "root certificate not yet valid" msgstr "Revocación de certificado válida" -#: sm/certchain.c:1299 sm/certchain.c:1384 +#: sm/certchain.c:1300 sm/certchain.c:1385 #, fuzzy msgid "intermediate certificate not yet valid" msgstr "Revocación de certificado válida" -#: sm/certchain.c:1312 dirmngr/validate.c:526 +#: sm/certchain.c:1313 dirmngr/validate.c:526 #, fuzzy, c-format msgid "certificate has expired" msgstr "problema de lectura do certificado: %s\n" -#: sm/certchain.c:1313 +#: sm/certchain.c:1314 #, fuzzy msgid "root certificate has expired" msgstr "problema de lectura do certificado: %s\n" -#: sm/certchain.c:1314 +#: sm/certchain.c:1315 #, fuzzy msgid "intermediate certificate has expired" msgstr "problema de lectura do certificado: %s\n" -#: sm/certchain.c:1356 +#: sm/certchain.c:1357 #, c-format msgid "required certificate attributes missing: %s%s%s" msgstr "" -#: sm/certchain.c:1365 +#: sm/certchain.c:1366 #, fuzzy msgid "certificate with invalid validity" msgstr "problema de lectura do certificado: %s\n" -#: sm/certchain.c:1402 +#: sm/certchain.c:1403 msgid "signature not created during lifetime of certificate" msgstr "" -#: sm/certchain.c:1404 +#: sm/certchain.c:1405 msgid "certificate not created during lifetime of issuer" msgstr "" -#: sm/certchain.c:1405 +#: sm/certchain.c:1406 msgid "intermediate certificate not created during lifetime of issuer" msgstr "" -#: sm/certchain.c:1409 +#: sm/certchain.c:1410 #, fuzzy, c-format msgid " ( signature created at " msgstr " novas sinaturas: %lu\n" -#: sm/certchain.c:1410 +#: sm/certchain.c:1411 #, fuzzy, c-format msgid " (certificate created at " msgstr "Creouse o certificado de revocación.\n" -#: sm/certchain.c:1413 +#: sm/certchain.c:1414 #, fuzzy, c-format msgid " (certificate valid from " msgstr "Revocación de certificado válida" -#: sm/certchain.c:1414 +#: sm/certchain.c:1415 #, c-format msgid " ( issuer valid from " msgstr "" -#: sm/certchain.c:1444 dirmngr/validate.c:577 +#: sm/certchain.c:1445 dirmngr/validate.c:577 #, fuzzy, c-format msgid "fingerprint=%s\n" msgstr "Pegada dactilar:" -#: sm/certchain.c:1453 +#: sm/certchain.c:1454 #, fuzzy, c-format msgid "root certificate has now been marked as trusted\n" msgstr "" "Non se atoparon certificados con confianza non definida.\n" "\n" -#: sm/certchain.c:1466 +#: sm/certchain.c:1467 #, c-format msgid "interactive marking as trusted not enabled in gpg-agent\n" msgstr "" -#: sm/certchain.c:1472 +#: sm/certchain.c:1473 #, c-format msgid "interactive marking as trusted disabled for this session\n" msgstr "" -#: sm/certchain.c:1531 +#: sm/certchain.c:1532 msgid "WARNING: creation time of signature not known - assuming current time" msgstr "" -#: sm/certchain.c:1595 +#: sm/certchain.c:1596 #, fuzzy msgid "no issuer found in certificate" msgstr "Certificado correcto" -#: sm/certchain.c:1673 +#: sm/certchain.c:1674 msgid "self-signed certificate has a BAD signature" msgstr "" -#: sm/certchain.c:1742 dirmngr/validate.c:575 +#: sm/certchain.c:1743 dirmngr/validate.c:575 #, fuzzy, c-format msgid "root certificate is not marked trusted" msgstr "" "Non se atoparon certificados con confianza non definida.\n" "\n" -#: sm/certchain.c:1758 +#: sm/certchain.c:1759 #, fuzzy, c-format msgid "checking the trust list failed: %s\n" msgstr "fallou a comprobación da sinatura creada: %s\n" -#: sm/certchain.c:1789 sm/import.c:176 sm/keylist.c:1396 dirmngr/validate.c:630 +#: sm/certchain.c:1790 sm/import.c:176 sm/keylist.c:1396 dirmngr/validate.c:630 #, fuzzy, c-format msgid "certificate chain too long\n" msgstr "Revocación de certificado válida" -#: sm/certchain.c:1801 dirmngr/validate.c:642 +#: sm/certchain.c:1802 dirmngr/validate.c:642 #, fuzzy, c-format msgid "issuer certificate not found" msgstr "Revocación de certificado válida" -#: sm/certchain.c:1834 dirmngr/validate.c:668 +#: sm/certchain.c:1835 dirmngr/validate.c:668 #, fuzzy, c-format msgid "certificate has a BAD signature" msgstr "verificar unha sinatura" -#: sm/certchain.c:1866 dirmngr/validate.c:692 +#: sm/certchain.c:1867 dirmngr/validate.c:692 msgid "found another possible matching CA certificate - trying again" msgstr "" -#: sm/certchain.c:1925 dirmngr/validate.c:717 +#: sm/certchain.c:1926 dirmngr/validate.c:717 #, c-format msgid "certificate chain longer than allowed by CA (%d)" msgstr "" -#: sm/certchain.c:1967 sm/certchain.c:2263 dirmngr/validate.c:747 +#: sm/certchain.c:1968 sm/certchain.c:2264 dirmngr/validate.c:747 #, fuzzy, c-format msgid "certificate is good\n" msgstr "Revocación de certificado válida" -#: sm/certchain.c:1968 +#: sm/certchain.c:1969 #, fuzzy, c-format msgid "intermediate certificate is good\n" msgstr "certificado duplicado - borrado" -#: sm/certchain.c:1969 +#: sm/certchain.c:1970 #, fuzzy, c-format msgid "root certificate is good\n" msgstr "" "Non se atoparon certificados con confianza non definida.\n" "\n" -#: sm/certchain.c:2151 +#: sm/certchain.c:2152 msgid "switching to chain model" msgstr "" -#: sm/certchain.c:2160 +#: sm/certchain.c:2161 #, c-format msgid "validation model used: %s" msgstr "" diff -Nru gnupg2-2.2.40/po/gnupg2.pot gnupg2-2.2.41/po/gnupg2.pot --- gnupg2-2.2.40/po/gnupg2.pot 2022-10-10 09:58:25.000000000 +0000 +++ gnupg2-2.2.41/po/gnupg2.pot 2022-12-09 08:48:33.000000000 +0000 @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: GNU gnupg 2.2.40\n" +"Project-Id-Version: GNU gnupg 2.2.41\n" "Report-Msgid-Bugs-To: translations@gnupg.org\n" -"POT-Creation-Date: 2022-10-10 11:58+0200\n" +"POT-Creation-Date: 2022-12-09 09:48+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -214,20 +214,20 @@ msgid "ssh keys greater than %d bits are not supported\n" msgstr "" -#: agent/command-ssh.c:862 common/dotlock.c:856 g10/card-util.c:947 -#: g10/exec.c:554 g10/export.c:1320 g10/gpg.c:1400 g10/keygen.c:4998 +#: agent/command-ssh.c:862 common/dotlock.c:856 g10/card-util.c:946 +#: g10/exec.c:554 g10/export.c:1335 g10/gpg.c:1409 g10/keygen.c:5052 #: g10/keyring.c:1322 g10/keyring.c:1637 g10/openfile.c:291 g10/sign.c:1008 #: g10/sign.c:1322 g10/tdbio.c:753 #, c-format msgid "can't create '%s': %s\n" msgstr "" -#: agent/command-ssh.c:874 common/helpfile.c:57 g10/card-util.c:904 +#: agent/command-ssh.c:874 common/helpfile.c:57 g10/card-util.c:903 #: g10/dearmor.c:59 g10/dearmor.c:106 g10/decrypt.c:65 g10/decrypt.c:136 -#: g10/decrypt.c:153 g10/encrypt.c:239 g10/encrypt.c:678 g10/gpg.c:1401 -#: g10/import.c:364 g10/import.c:548 g10/import.c:776 g10/keygen.c:4036 +#: g10/decrypt.c:153 g10/encrypt.c:239 g10/encrypt.c:678 g10/gpg.c:1410 +#: g10/import.c:365 g10/import.c:549 g10/import.c:777 g10/keygen.c:4090 #: g10/keyring.c:1663 g10/openfile.c:195 g10/openfile.c:209 g10/plaintext.c:128 -#: g10/plaintext.c:649 g10/sign.c:990 g10/sign.c:1201 g10/sign.c:1306 +#: g10/plaintext.c:654 g10/sign.c:990 g10/sign.c:1201 g10/sign.c:1306 #: g10/sign.c:1451 g10/tdbdump.c:145 g10/tdbdump.c:153 g10/tdbio.c:758 #: g10/tdbio.c:829 g10/verify.c:96 g10/verify.c:160 sm/gpgsm.c:2160 #: sm/gpgsm.c:2190 sm/gpgsm.c:2228 sm/qualified.c:66 dirmngr/certcache.c:420 @@ -439,33 +439,33 @@ msgid "csh-style command output" msgstr "" -#: agent/gpg-agent.c:185 g10/gpg.c:579 scd/scdaemon.c:126 sm/gpgsm.c:410 +#: agent/gpg-agent.c:185 g10/gpg.c:580 scd/scdaemon.c:126 sm/gpgsm.c:410 #: dirmngr/dirmngr.c:192 msgid "|FILE|read options from FILE" msgstr "" -#: agent/gpg-agent.c:189 g10/gpg.c:566 scd/scdaemon.c:130 sm/gpgsm.c:259 +#: agent/gpg-agent.c:189 g10/gpg.c:567 scd/scdaemon.c:130 sm/gpgsm.c:259 #: dirmngr/dirmngr.c:196 msgid "Options controlling the diagnostic output" msgstr "" -#: agent/gpg-agent.c:191 g10/gpg.c:568 g10/gpgv.c:78 kbx/kbxutil.c:88 +#: agent/gpg-agent.c:191 g10/gpg.c:569 g10/gpgv.c:78 kbx/kbxutil.c:88 #: scd/scdaemon.c:132 sm/gpgsm.c:261 dirmngr/dirmngr-client.c:70 #: dirmngr/dirmngr.c:198 tools/gpg-connect-agent.c:78 tools/gpgconf.c:110 msgid "verbose" msgstr "" -#: agent/gpg-agent.c:192 g10/gpg.c:570 g10/gpgv.c:79 kbx/kbxutil.c:89 +#: agent/gpg-agent.c:192 g10/gpg.c:571 g10/gpgv.c:79 kbx/kbxutil.c:89 #: scd/scdaemon.c:133 sm/gpgsm.c:263 dirmngr/dirmngr-client.c:71 #: dirmngr/dirmngr.c:199 msgid "be somewhat more quiet" msgstr "" -#: agent/gpg-agent.c:200 g10/gpg.c:583 sm/gpgsm.c:276 dirmngr/dirmngr.c:209 +#: agent/gpg-agent.c:200 g10/gpg.c:584 sm/gpgsm.c:276 dirmngr/dirmngr.c:209 msgid "|FILE|write server mode logs to FILE" msgstr "" -#: agent/gpg-agent.c:204 g10/gpg.c:589 scd/scdaemon.c:147 sm/gpgsm.c:283 +#: agent/gpg-agent.c:204 g10/gpg.c:590 scd/scdaemon.c:147 sm/gpgsm.c:283 #: dirmngr/dirmngr.c:213 msgid "Options controlling the configuration" msgstr "" @@ -502,7 +502,7 @@ msgid "enable putty support" msgstr "" -#: agent/gpg-agent.c:237 g10/gpg.c:831 scd/scdaemon.c:175 sm/gpgsm.c:369 +#: agent/gpg-agent.c:237 g10/gpg.c:832 scd/scdaemon.c:175 sm/gpgsm.c:369 msgid "Options controlling the security" msgstr "" @@ -598,7 +598,7 @@ #. reporting address. This is so that we can change the #. reporting address without breaking the translations. #: agent/gpg-agent.c:563 agent/preset-passphrase.c:100 agent/protect-tool.c:155 -#: g10/gpg.c:1108 g10/gpgv.c:149 kbx/kbxutil.c:113 scd/scdaemon.c:313 +#: g10/gpg.c:1117 g10/gpgv.c:149 kbx/kbxutil.c:113 scd/scdaemon.c:313 #: sm/gpgsm.c:600 dirmngr/dirmngr-client.c:168 dirmngr/dirmngr.c:458 #: tools/gpg-connect-agent.c:205 tools/gpgconf.c:154 #: tools/gpg-check-pattern.c:143 @@ -615,26 +615,26 @@ "Secret key management for @GNUPG@\n" msgstr "" -#: agent/gpg-agent.c:619 g10/gpg.c:1304 scd/scdaemon.c:385 sm/gpgsm.c:748 +#: agent/gpg-agent.c:619 g10/gpg.c:1313 scd/scdaemon.c:385 sm/gpgsm.c:748 #: dirmngr/dirmngr.c:542 #, c-format msgid "invalid debug-level '%s' given\n" msgstr "" -#: agent/gpg-agent.c:988 g10/gpg.c:3810 g10/gpg.c:3834 sm/gpgsm.c:1585 +#: agent/gpg-agent.c:988 g10/gpg.c:3830 g10/gpg.c:3854 sm/gpgsm.c:1585 #: sm/gpgsm.c:1591 #, c-format msgid "selected digest algorithm is invalid\n" msgstr "" #: agent/gpg-agent.c:1216 agent/gpg-agent.c:2029 common/argparse.c:1766 -#: common/argparse.c:1858 g10/gpg.c:2517 scd/scdaemon.c:547 sm/gpgsm.c:1007 +#: common/argparse.c:1858 g10/gpg.c:2526 scd/scdaemon.c:547 sm/gpgsm.c:1007 #: dirmngr/dirmngr.c:1081 dirmngr/dirmngr.c:1937 #, c-format msgid "reading options from '%s'\n" msgstr "" -#: agent/gpg-agent.c:1332 g10/gpg.c:3751 scd/scdaemon.c:671 sm/gpgsm.c:1522 +#: agent/gpg-agent.c:1332 g10/gpg.c:3769 scd/scdaemon.c:671 sm/gpgsm.c:1522 #: dirmngr/dirmngr.c:1190 tools/gpg-connect-agent.c:1244 tools/gpgconf.c:677 #, c-format msgid "Note: '%s' is not considered an option\n" @@ -760,7 +760,7 @@ "Password cache maintenance\n" msgstr "" -#: agent/protect-tool.c:108 g10/gpg.c:441 kbx/kbxutil.c:71 sm/gpgsm.c:210 +#: agent/protect-tool.c:108 g10/gpg.c:442 kbx/kbxutil.c:71 sm/gpgsm.c:210 #: dirmngr/dirmngr.c:171 tools/gpgconf.c:80 msgid "" "@Commands:\n" @@ -968,7 +968,7 @@ msgid "secret key parts are not available\n" msgstr "" -#: agent/cvt-openpgp.c:344 g10/card-util.c:1556 +#: agent/cvt-openpgp.c:344 g10/card-util.c:1555 #, c-format msgid "public key algorithm %d (%s) is not supported\n" msgstr "" @@ -1123,7 +1123,7 @@ msgid "out of core while allocating %lu bytes" msgstr "" -#: common/miscellaneous.c:115 g10/card-util.c:911 tools/no-libgcrypt.c:30 +#: common/miscellaneous.c:115 g10/card-util.c:910 tools/no-libgcrypt.c:30 #, c-format msgid "error allocating enough memory: %s\n" msgstr "" @@ -1236,7 +1236,7 @@ msgstr "" #: common/audit.c:774 common/audit.c:776 common/audit.c:921 common/audit.c:923 -#: scd/app-openpgp.c:3557 +#: scd/app-openpgp.c:3566 #, c-format msgid "unsupported algorithm: %s" msgstr "" @@ -1311,11 +1311,11 @@ msgid "Root certificate trustworthy" msgstr "" -#: common/audit.c:1112 sm/certchain.c:1235 +#: common/audit.c:1112 sm/certchain.c:1236 msgid "no CRL found for certificate" msgstr "" -#: common/audit.c:1115 sm/certchain.c:1245 +#: common/audit.c:1115 sm/certchain.c:1246 msgid "the available CRL is too old" msgstr "" @@ -1438,7 +1438,7 @@ msgid "missing argument for option \"%.50s\"\n" msgstr "" -#: common/argparse.c:558 g10/gpg.c:3525 +#: common/argparse.c:558 g10/gpg.c:3543 #, c-format msgid "invalid argument for option \"%.50s\"\n" msgstr "" @@ -1537,92 +1537,92 @@ msgid "%s is too old (need %s, have %s)\n" msgstr "" -#: g10/armor.c:423 +#: g10/armor.c:424 #, c-format msgid "armor: %s\n" msgstr "" -#: g10/armor.c:462 +#: g10/armor.c:463 #, c-format msgid "invalid armor header: " msgstr "" -#: g10/armor.c:473 +#: g10/armor.c:474 #, c-format msgid "armor header: " msgstr "" -#: g10/armor.c:486 +#: g10/armor.c:487 #, c-format msgid "invalid clearsig header\n" msgstr "" -#: g10/armor.c:499 +#: g10/armor.c:500 #, c-format msgid "unknown armor header: " msgstr "" -#: g10/armor.c:552 +#: g10/armor.c:553 #, c-format msgid "nested clear text signatures\n" msgstr "" -#: g10/armor.c:687 +#: g10/armor.c:688 #, c-format msgid "unexpected armor: " msgstr "" -#: g10/armor.c:700 +#: g10/armor.c:701 #, c-format msgid "invalid dash escaped line: " msgstr "" -#: g10/armor.c:872 g10/armor.c:1492 +#: g10/armor.c:873 g10/armor.c:1493 #, c-format msgid "invalid radix64 character %02X skipped\n" msgstr "" -#: g10/armor.c:915 +#: g10/armor.c:916 #, c-format msgid "premature eof (no CRC)\n" msgstr "" -#: g10/armor.c:949 +#: g10/armor.c:950 #, c-format msgid "premature eof (in CRC)\n" msgstr "" -#: g10/armor.c:957 +#: g10/armor.c:958 #, c-format msgid "malformed CRC\n" msgstr "" -#: g10/armor.c:961 g10/armor.c:1529 +#: g10/armor.c:962 g10/armor.c:1530 #, c-format msgid "CRC error; %06lX - %06lX\n" msgstr "" -#: g10/armor.c:981 +#: g10/armor.c:982 #, c-format msgid "premature eof (in trailer)\n" msgstr "" -#: g10/armor.c:985 +#: g10/armor.c:986 #, c-format msgid "error in trailer line\n" msgstr "" -#: g10/armor.c:1305 +#: g10/armor.c:1306 #, c-format msgid "no valid OpenPGP data found.\n" msgstr "" -#: g10/armor.c:1310 +#: g10/armor.c:1311 #, c-format msgid "invalid armor: line longer than %d characters\n" msgstr "" -#: g10/armor.c:1314 +#: g10/armor.c:1315 #, c-format msgid "" "quoted printable character in armor - probably a buggy MTA has been used\n" @@ -1753,23 +1753,23 @@ msgid "server uses an invalid certificate" msgstr "" -#: g10/call-dirmngr.c:462 g10/gpg.c:4458 +#: g10/call-dirmngr.c:462 g10/gpg.c:4478 #, c-format msgid "Note: %s\n" msgstr "" -#: g10/card-util.c:86 g10/card-util.c:366 g10/card-util.c:1918 +#: g10/card-util.c:86 g10/card-util.c:366 g10/card-util.c:1917 #, c-format msgid "OpenPGP card not available: %s\n" msgstr "" -#: g10/card-util.c:91 g10/card-util.c:1924 +#: g10/card-util.c:91 g10/card-util.c:1923 #, c-format msgid "OpenPGP card no. %s detected\n" msgstr "" -#: g10/card-util.c:97 g10/card-util.c:2253 g10/delkey.c:160 g10/keyedit.c:1423 -#: g10/keygen.c:4466 g10/revoke.c:214 g10/revoke.c:636 +#: g10/card-util.c:97 g10/card-util.c:2252 g10/delkey.c:160 g10/keyedit.c:1423 +#: g10/keygen.c:4520 g10/revoke.c:214 g10/revoke.c:636 #, c-format msgid "can't do this in batch mode\n" msgstr "" @@ -1779,14 +1779,14 @@ msgid "This command is only available for version 2 cards\n" msgstr "" -#: g10/card-util.c:107 scd/app-openpgp.c:2866 +#: g10/card-util.c:107 scd/app-openpgp.c:2869 #, c-format msgid "Reset Code not or not anymore available\n" msgstr "" -#: g10/card-util.c:140 g10/card-util.c:1442 g10/card-util.c:1704 -#: g10/card-util.c:1796 g10/keyedit.c:394 g10/keyedit.c:415 g10/keyedit.c:429 -#: g10/keygen.c:1808 g10/keygen.c:1980 g10/keygen.c:2186 g10/keygen.c:2477 +#: g10/card-util.c:140 g10/card-util.c:1441 g10/card-util.c:1703 +#: g10/card-util.c:1795 g10/keyedit.c:394 g10/keyedit.c:415 g10/keyedit.c:429 +#: g10/keygen.c:1862 g10/keygen.c:2034 g10/keygen.c:2240 g10/keygen.c:2531 #: sm/certreqgen-ui.c:165 sm/certreqgen-ui.c:291 sm/certreqgen-ui.c:325 msgid "Your selection? " msgstr "" @@ -1836,176 +1836,176 @@ msgid "Error: Combined name too long (limit is %d characters).\n" msgstr "" -#: g10/card-util.c:826 +#: g10/card-util.c:825 msgid "URL to retrieve public key: " msgstr "" -#: g10/card-util.c:920 g10/decrypt-data.c:509 g10/import.c:399 g10/import.c:746 -#: g10/import.c:798 dirmngr/crlcache.c:655 dirmngr/crlcache.c:660 +#: g10/card-util.c:919 g10/decrypt-data.c:509 g10/import.c:400 g10/import.c:747 +#: g10/import.c:799 dirmngr/crlcache.c:655 dirmngr/crlcache.c:660 #: dirmngr/crlcache.c:914 dirmngr/crlcache.c:920 dirmngr/dirmngr.c:1748 #: tools/gpgconf.c:483 tools/gpgconf.c:529 #, c-format msgid "error reading '%s': %s\n" msgstr "" -#: g10/card-util.c:953 g10/decrypt-data.c:512 g10/export.c:2467 +#: g10/card-util.c:952 g10/decrypt-data.c:512 g10/export.c:2586 #: dirmngr/crlcache.c:925 #, c-format msgid "error writing '%s': %s\n" msgstr "" -#: g10/card-util.c:980 +#: g10/card-util.c:979 msgid "Login data (account name): " msgstr "" -#: g10/card-util.c:1018 +#: g10/card-util.c:1017 msgid "Private DO data: " msgstr "" -#: g10/card-util.c:1103 +#: g10/card-util.c:1102 msgid "Language preferences: " msgstr "" -#: g10/card-util.c:1111 +#: g10/card-util.c:1110 msgid "Error: invalid length of preference string.\n" msgstr "" -#: g10/card-util.c:1120 +#: g10/card-util.c:1119 msgid "Error: invalid characters in preference string.\n" msgstr "" -#: g10/card-util.c:1142 +#: g10/card-util.c:1141 msgid "Salutation (M = Mr., F = Ms., or space): " msgstr "" -#: g10/card-util.c:1156 +#: g10/card-util.c:1155 msgid "Error: invalid response.\n" msgstr "" -#: g10/card-util.c:1178 +#: g10/card-util.c:1177 msgid "CA fingerprint: " msgstr "" -#: g10/card-util.c:1201 +#: g10/card-util.c:1200 msgid "Error: invalid formatted fingerprint.\n" msgstr "" -#: g10/card-util.c:1252 +#: g10/card-util.c:1251 #, c-format msgid "key operation not possible: %s\n" msgstr "" -#: g10/card-util.c:1253 +#: g10/card-util.c:1252 msgid "not an OpenPGP card" msgstr "" -#: g10/card-util.c:1266 g10/keygen.c:4486 g10/keygen.c:5562 +#: g10/card-util.c:1265 g10/keygen.c:4540 g10/keygen.c:5616 #, c-format msgid "error getting current key info: %s\n" msgstr "" -#: g10/card-util.c:1351 +#: g10/card-util.c:1350 msgid "Replace existing key? (y/N) " msgstr "" -#: g10/card-util.c:1368 +#: g10/card-util.c:1367 msgid "" "Note: There is no guarantee that the card supports the requested size.\n" " If the key generation does not succeed, please check the\n" " documentation of your card to see what sizes are allowed.\n" msgstr "" -#: g10/card-util.c:1390 g10/keygen.c:2363 sm/certreqgen-ui.c:179 +#: g10/card-util.c:1389 g10/keygen.c:2417 sm/certreqgen-ui.c:179 #, c-format msgid "What keysize do you want? (%u) " msgstr "" -#: g10/card-util.c:1400 g10/keygen.c:2286 g10/keygen.c:2318 +#: g10/card-util.c:1399 g10/keygen.c:2340 g10/keygen.c:2372 #: sm/certreqgen-ui.c:194 #, c-format msgid "rounded up to %u bits\n" msgstr "" -#: g10/card-util.c:1408 g10/keygen.c:2371 sm/certreqgen-ui.c:184 +#: g10/card-util.c:1407 g10/keygen.c:2425 sm/certreqgen-ui.c:184 #, c-format msgid "%s keysizes must be in the range %u-%u\n" msgstr "" -#: g10/card-util.c:1427 +#: g10/card-util.c:1426 msgid "Changing card key attribute for: " msgstr "" -#: g10/card-util.c:1429 +#: g10/card-util.c:1428 msgid "Signature key\n" msgstr "" -#: g10/card-util.c:1431 +#: g10/card-util.c:1430 msgid "Encryption key\n" msgstr "" -#: g10/card-util.c:1433 +#: g10/card-util.c:1432 msgid "Authentication key\n" msgstr "" -#: g10/card-util.c:1435 g10/keygen.c:1926 sm/certreqgen-ui.c:157 +#: g10/card-util.c:1434 g10/keygen.c:1980 sm/certreqgen-ui.c:157 msgid "Please select what kind of key you want:\n" msgstr "" -#: g10/card-util.c:1436 sm/certreqgen-ui.c:158 +#: g10/card-util.c:1435 sm/certreqgen-ui.c:158 #, c-format msgid " (%d) RSA\n" msgstr "" -#: g10/card-util.c:1437 +#: g10/card-util.c:1436 #, c-format msgid " (%d) ECC\n" msgstr "" -#: g10/card-util.c:1449 g10/card-util.c:1716 g10/card-util.c:1816 -#: g10/keyedit.c:900 g10/keygen.c:1834 g10/keygen.c:1862 g10/keygen.c:1987 -#: g10/keygen.c:2222 g10/keygen.c:2505 g10/revoke.c:838 +#: g10/card-util.c:1448 g10/card-util.c:1715 g10/card-util.c:1815 +#: g10/keyedit.c:900 g10/keygen.c:1888 g10/keygen.c:1916 g10/keygen.c:2041 +#: g10/keygen.c:2276 g10/keygen.c:2559 g10/revoke.c:838 msgid "Invalid selection.\n" msgstr "" -#: g10/card-util.c:1522 +#: g10/card-util.c:1521 #, c-format msgid "The card will now be re-configured to generate a key of %u bits\n" msgstr "" -#: g10/card-util.c:1527 +#: g10/card-util.c:1526 #, c-format msgid "The card will now be re-configured to generate a key of type: %s\n" msgstr "" -#: g10/card-util.c:1563 +#: g10/card-util.c:1562 #, c-format msgid "error changing key attribute for key %d: %s\n" msgstr "" -#: g10/card-util.c:1579 g10/card-util.c:2106 +#: g10/card-util.c:1578 g10/card-util.c:2105 #, c-format msgid "error getting card info: %s\n" msgstr "" -#: g10/card-util.c:1585 g10/card-util.c:1930 g10/card-util.c:2112 +#: g10/card-util.c:1584 g10/card-util.c:1929 g10/card-util.c:2111 #, c-format msgid "This command is not supported by this card\n" msgstr "" -#: g10/card-util.c:1631 +#: g10/card-util.c:1630 msgid "Make off-card backup of encryption key? (Y/n) " msgstr "" -#: g10/card-util.c:1645 +#: g10/card-util.c:1644 #, c-format msgid "Note: keys are already stored on the card!\n" msgstr "" -#: g10/card-util.c:1648 +#: g10/card-util.c:1647 msgid "Replace existing keys? (y/N) " msgstr "" -#: g10/card-util.c:1660 +#: g10/card-util.c:1659 #, c-format msgid "" "Please note that the factory settings of the PINs are\n" @@ -2013,142 +2013,142 @@ "You should change them using the command --change-pin\n" msgstr "" -#: g10/card-util.c:1695 +#: g10/card-util.c:1694 msgid "Please select the type of key to generate:\n" msgstr "" -#: g10/card-util.c:1697 g10/card-util.c:1787 +#: g10/card-util.c:1696 g10/card-util.c:1786 msgid " (1) Signature key\n" msgstr "" -#: g10/card-util.c:1698 g10/card-util.c:1789 +#: g10/card-util.c:1697 g10/card-util.c:1788 msgid " (2) Encryption key\n" msgstr "" -#: g10/card-util.c:1699 g10/card-util.c:1791 +#: g10/card-util.c:1698 g10/card-util.c:1790 msgid " (3) Authentication key\n" msgstr "" -#: g10/card-util.c:1784 +#: g10/card-util.c:1783 msgid "Please select where to store the key:\n" msgstr "" -#: g10/card-util.c:1830 +#: g10/card-util.c:1829 #, c-format msgid "KEYTOCARD failed: %s\n" msgstr "" -#: g10/card-util.c:1935 +#: g10/card-util.c:1934 #, c-format msgid "Note: This command destroys all keys stored on the card!\n" msgstr "" -#: g10/card-util.c:1938 +#: g10/card-util.c:1937 msgid "Continue? (y/N) " msgstr "" -#: g10/card-util.c:1943 +#: g10/card-util.c:1942 msgid "Really do a factory reset? (enter \"yes\") " msgstr "" -#: g10/card-util.c:2129 +#: g10/card-util.c:2128 #, c-format msgid "error for setup KDF: %s\n" msgstr "" -#: g10/card-util.c:2158 g10/keyedit.c:1260 +#: g10/card-util.c:2157 g10/keyedit.c:1260 msgid "quit this menu" msgstr "" -#: g10/card-util.c:2160 +#: g10/card-util.c:2159 msgid "show admin commands" msgstr "" -#: g10/card-util.c:2161 g10/keyedit.c:1263 +#: g10/card-util.c:2160 g10/keyedit.c:1263 msgid "show this help" msgstr "" -#: g10/card-util.c:2163 +#: g10/card-util.c:2162 msgid "list all available data" msgstr "" -#: g10/card-util.c:2166 +#: g10/card-util.c:2165 msgid "change card holder's name" msgstr "" -#: g10/card-util.c:2167 +#: g10/card-util.c:2166 msgid "change URL to retrieve key" msgstr "" -#: g10/card-util.c:2168 +#: g10/card-util.c:2167 msgid "fetch the key specified in the card URL" msgstr "" -#: g10/card-util.c:2169 +#: g10/card-util.c:2168 msgid "change the login name" msgstr "" -#: g10/card-util.c:2170 +#: g10/card-util.c:2169 msgid "change the language preferences" msgstr "" -#: g10/card-util.c:2171 +#: g10/card-util.c:2170 msgid "change card holder's salutation" msgstr "" -#: g10/card-util.c:2173 +#: g10/card-util.c:2172 msgid "change a CA fingerprint" msgstr "" -#: g10/card-util.c:2174 +#: g10/card-util.c:2173 msgid "toggle the signature force PIN flag" msgstr "" -#: g10/card-util.c:2175 +#: g10/card-util.c:2174 msgid "generate new keys" msgstr "" -#: g10/card-util.c:2176 +#: g10/card-util.c:2175 msgid "menu to change or unblock the PIN" msgstr "" -#: g10/card-util.c:2177 +#: g10/card-util.c:2176 msgid "verify the PIN and list all data" msgstr "" -#: g10/card-util.c:2178 +#: g10/card-util.c:2177 msgid "unblock the PIN using a Reset Code" msgstr "" -#: g10/card-util.c:2179 +#: g10/card-util.c:2178 msgid "destroy all keys and data" msgstr "" -#: g10/card-util.c:2180 +#: g10/card-util.c:2179 msgid "setup KDF for PIN authentication" msgstr "" -#: g10/card-util.c:2181 +#: g10/card-util.c:2180 msgid "change the key attribute" msgstr "" -#: g10/card-util.c:2305 +#: g10/card-util.c:2304 msgid "gpg/card> " msgstr "" -#: g10/card-util.c:2346 +#: g10/card-util.c:2345 msgid "Admin-only command\n" msgstr "" -#: g10/card-util.c:2377 +#: g10/card-util.c:2376 msgid "Admin commands are allowed\n" msgstr "" -#: g10/card-util.c:2379 +#: g10/card-util.c:2378 msgid "Admin commands are not allowed\n" msgstr "" -#: g10/card-util.c:2482 g10/keyedit.c:2229 +#: g10/card-util.c:2481 g10/keyedit.c:2229 msgid "Invalid command (try \"help\")\n" msgstr "" @@ -2157,21 +2157,21 @@ msgid "--output doesn't work for this command\n" msgstr "" -#: g10/decrypt.c:247 g10/gpg.c:5155 g10/keyring.c:399 g10/keyring.c:750 +#: g10/decrypt.c:247 g10/gpg.c:5175 g10/keyring.c:399 g10/keyring.c:750 #, c-format msgid "can't open '%s'\n" msgstr "" -#: g10/delkey.c:83 g10/export.c:1947 g10/export.c:2230 g10/export.c:2351 -#: g10/getkey.c:2108 g10/gpg.c:5100 g10/keyedit.c:1445 g10/keyedit.c:2335 +#: g10/delkey.c:83 g10/export.c:2035 g10/export.c:2349 g10/export.c:2470 +#: g10/getkey.c:2108 g10/gpg.c:5120 g10/keyedit.c:1445 g10/keyedit.c:2335 #: g10/keyedit.c:2637 g10/keyedit.c:4600 g10/keylist.c:693 g10/keyserver.c:1092 #: g10/revoke.c:230 g10/tofu.c:2165 #, c-format msgid "key \"%s\" not found: %s\n" msgstr "" -#: g10/delkey.c:92 g10/export.c:2015 g10/getkey.c:2116 g10/getkey.c:4517 -#: g10/gpg.c:5109 g10/keyedit.c:2308 g10/keyserver.c:1110 g10/revoke.c:236 +#: g10/delkey.c:92 g10/export.c:2103 g10/getkey.c:2116 g10/getkey.c:4517 +#: g10/gpg.c:5129 g10/keyedit.c:2308 g10/keyserver.c:1110 g10/revoke.c:236 #: g10/revoke.c:663 g10/tofu.c:2173 #, c-format msgid "error reading keyblock: %s\n" @@ -2287,13 +2287,13 @@ msgid "WARNING: '%s' is an empty file\n" msgstr "" -#: g10/encrypt.c:446 g10/encrypt.c:521 g10/decrypt-data.c:266 g10/gpg.c:3959 -#: g10/gpg.c:3999 sm/decrypt.c:826 sm/encrypt.c:416 sm/gpgsm.c:1609 +#: g10/encrypt.c:446 g10/encrypt.c:521 g10/decrypt-data.c:266 g10/gpg.c:3979 +#: g10/gpg.c:4019 sm/decrypt.c:826 sm/encrypt.c:416 sm/gpgsm.c:1609 #, c-format msgid "cipher algorithm '%s' may not be used in %s mode\n" msgstr "" -#: g10/encrypt.c:455 g10/gpg.c:3965 g10/gpg.c:4011 g10/sig-check.c:175 +#: g10/encrypt.c:455 g10/gpg.c:3985 g10/gpg.c:4031 g10/sig-check.c:175 #: g10/sign.c:391 sm/gpgsm.c:1619 sm/gpgsm.c:1629 sm/sign.c:478 sm/verify.c:506 #, c-format msgid "digest algorithm '%s' may not be used in %s mode\n" @@ -2403,61 +2403,65 @@ msgid "WARNING: unable to remove temp directory '%s': %s\n" msgstr "" -#: g10/export.c:119 +#: g10/export.c:124 msgid "export signatures that are marked as local-only" msgstr "" -#: g10/export.c:121 +#: g10/export.c:126 msgid "export attribute user IDs (generally photo IDs)" msgstr "" -#: g10/export.c:123 +#: g10/export.c:128 msgid "export revocation keys marked as \"sensitive\"" msgstr "" -#: g10/export.c:125 +#: g10/export.c:130 msgid "remove unusable parts from key during export" msgstr "" -#: g10/export.c:127 +#: g10/export.c:132 msgid "remove as much as possible from key during export" msgstr "" -#: g10/export.c:133 +#: g10/export.c:138 +msgid "export only revocation certificates" +msgstr "" + +#: g10/export.c:141 msgid "use the GnuPG key backup format" msgstr "" -#: g10/export.c:1291 +#: g10/export.c:1306 msgid " - skipped" msgstr "" -#: g10/export.c:1324 g10/import.c:2085 g10/openfile.c:200 g10/openfile.c:294 +#: g10/export.c:1339 g10/import.c:2089 g10/openfile.c:200 g10/openfile.c:294 #: g10/sign.c:1012 g10/sign.c:1326 #, c-format msgid "writing to '%s'\n" msgstr "" -#: g10/export.c:1769 +#: g10/export.c:1784 #, c-format msgid "key %s: key material on-card - skipped\n" msgstr "" -#: g10/export.c:1964 +#: g10/export.c:2052 #, c-format msgid "exporting secret keys not allowed\n" msgstr "" -#: g10/export.c:2041 +#: g10/export.c:2129 #, c-format msgid "key %s: PGP 2.x style key - skipped\n" msgstr "" -#: g10/export.c:2135 +#: g10/export.c:2254 #, c-format msgid "WARNING: nothing exported\n" msgstr "" -#: g10/export.c:2432 g10/plaintext.c:153 g10/plaintext.c:162 +#: g10/export.c:2551 g10/plaintext.c:153 g10/plaintext.c:162 #: g10/plaintext.c:168 g10/plaintext.c:191 #, c-format msgid "error creating '%s': %s\n" @@ -2521,274 +2525,274 @@ msgid "using subkey %s instead of primary key %s\n" msgstr "" -#: g10/getkey.c:4446 g10/gpg.c:2137 +#: g10/getkey.c:4446 g10/gpg.c:2146 #, c-format msgid "valid values for option '%s':\n" msgstr "" -#: g10/gpg.c:443 sm/gpgsm.c:212 +#: g10/gpg.c:444 sm/gpgsm.c:212 msgid "make a signature" msgstr "" -#: g10/gpg.c:444 +#: g10/gpg.c:445 msgid "make a clear text signature" msgstr "" -#: g10/gpg.c:446 sm/gpgsm.c:214 +#: g10/gpg.c:447 sm/gpgsm.c:214 msgid "make a detached signature" msgstr "" -#: g10/gpg.c:447 sm/gpgsm.c:215 +#: g10/gpg.c:448 sm/gpgsm.c:215 msgid "encrypt data" msgstr "" -#: g10/gpg.c:449 +#: g10/gpg.c:450 msgid "encryption only with symmetric cipher" msgstr "" -#: g10/gpg.c:451 sm/gpgsm.c:217 +#: g10/gpg.c:452 sm/gpgsm.c:217 msgid "decrypt data (default)" msgstr "" -#: g10/gpg.c:453 sm/gpgsm.c:218 +#: g10/gpg.c:454 sm/gpgsm.c:218 msgid "verify a signature" msgstr "" -#: g10/gpg.c:455 sm/gpgsm.c:219 +#: g10/gpg.c:456 sm/gpgsm.c:219 msgid "list keys" msgstr "" -#: g10/gpg.c:457 +#: g10/gpg.c:458 msgid "list keys and signatures" msgstr "" -#: g10/gpg.c:460 +#: g10/gpg.c:461 msgid "list and check key signatures" msgstr "" -#: g10/gpg.c:462 sm/gpgsm.c:224 +#: g10/gpg.c:463 sm/gpgsm.c:224 msgid "list keys and fingerprints" msgstr "" -#: g10/gpg.c:463 sm/gpgsm.c:222 +#: g10/gpg.c:464 sm/gpgsm.c:222 msgid "list secret keys" msgstr "" -#: g10/gpg.c:465 sm/gpgsm.c:225 +#: g10/gpg.c:466 sm/gpgsm.c:225 msgid "generate a new key pair" msgstr "" -#: g10/gpg.c:468 +#: g10/gpg.c:469 msgid "quickly generate a new key pair" msgstr "" -#: g10/gpg.c:471 +#: g10/gpg.c:472 msgid "quickly add a new user-id" msgstr "" -#: g10/gpg.c:476 +#: g10/gpg.c:477 msgid "quickly revoke a user-id" msgstr "" -#: g10/gpg.c:479 +#: g10/gpg.c:480 msgid "quickly set a new expiration date" msgstr "" -#: g10/gpg.c:482 +#: g10/gpg.c:483 msgid "full featured key pair generation" msgstr "" -#: g10/gpg.c:485 +#: g10/gpg.c:486 msgid "generate a revocation certificate" msgstr "" -#: g10/gpg.c:488 sm/gpgsm.c:228 +#: g10/gpg.c:489 sm/gpgsm.c:228 msgid "remove keys from the public keyring" msgstr "" -#: g10/gpg.c:490 +#: g10/gpg.c:491 msgid "remove keys from the secret keyring" msgstr "" -#: g10/gpg.c:492 +#: g10/gpg.c:493 msgid "quickly sign a key" msgstr "" -#: g10/gpg.c:494 +#: g10/gpg.c:495 msgid "quickly sign a key locally" msgstr "" -#: g10/gpg.c:496 +#: g10/gpg.c:497 msgid "quickly revoke a key signature" msgstr "" -#: g10/gpg.c:497 +#: g10/gpg.c:498 msgid "sign a key" msgstr "" -#: g10/gpg.c:498 +#: g10/gpg.c:499 msgid "sign a key locally" msgstr "" -#: g10/gpg.c:499 +#: g10/gpg.c:500 msgid "sign or edit a key" msgstr "" -#: g10/gpg.c:501 sm/gpgsm.c:246 +#: g10/gpg.c:502 sm/gpgsm.c:246 msgid "change a passphrase" msgstr "" -#: g10/gpg.c:505 +#: g10/gpg.c:506 msgid "export keys" msgstr "" -#: g10/gpg.c:506 +#: g10/gpg.c:507 msgid "export keys to a keyserver" msgstr "" -#: g10/gpg.c:507 +#: g10/gpg.c:508 msgid "import keys from a keyserver" msgstr "" -#: g10/gpg.c:510 +#: g10/gpg.c:511 msgid "search for keys on a keyserver" msgstr "" -#: g10/gpg.c:512 +#: g10/gpg.c:513 msgid "update all keys from a keyserver" msgstr "" -#: g10/gpg.c:520 +#: g10/gpg.c:521 msgid "import/merge keys" msgstr "" -#: g10/gpg.c:523 +#: g10/gpg.c:524 msgid "print the card status" msgstr "" -#: g10/gpg.c:524 +#: g10/gpg.c:525 msgid "change data on a card" msgstr "" -#: g10/gpg.c:526 +#: g10/gpg.c:527 msgid "change a card's PIN" msgstr "" -#: g10/gpg.c:538 +#: g10/gpg.c:539 msgid "update the trust database" msgstr "" -#: g10/gpg.c:548 +#: g10/gpg.c:549 msgid "print message digests" msgstr "" -#: g10/gpg.c:552 sm/gpgsm.c:241 +#: g10/gpg.c:553 sm/gpgsm.c:241 msgid "run in server mode" msgstr "" -#: g10/gpg.c:554 +#: g10/gpg.c:555 msgid "|VALUE|set the TOFU policy for a key" msgstr "" -#: g10/gpg.c:594 +#: g10/gpg.c:595 msgid "|NAME|use NAME as default secret key" msgstr "" -#: g10/gpg.c:596 sm/gpgsm.c:332 +#: g10/gpg.c:597 sm/gpgsm.c:332 msgid "|NAME|encrypt to user ID NAME as well" msgstr "" -#: g10/gpg.c:604 +#: g10/gpg.c:605 msgid "|SPEC|set up email aliases" msgstr "" -#: g10/gpg.c:616 +#: g10/gpg.c:617 msgid "use strict OpenPGP behavior" msgstr "" -#: g10/gpg.c:641 kbx/kbxutil.c:90 sm/gpgsm.c:412 tools/gpgconf.c:112 +#: g10/gpg.c:642 kbx/kbxutil.c:90 sm/gpgsm.c:412 tools/gpgconf.c:112 msgid "do not make any changes" msgstr "" -#: g10/gpg.c:642 +#: g10/gpg.c:643 msgid "prompt before overwriting" msgstr "" -#: g10/gpg.c:689 sm/gpgsm.c:304 +#: g10/gpg.c:690 sm/gpgsm.c:304 msgid "Options controlling the input" msgstr "" -#: g10/gpg.c:707 sm/gpgsm.c:314 +#: g10/gpg.c:708 sm/gpgsm.c:314 msgid "Options controlling the output" msgstr "" -#: g10/gpg.c:709 sm/gpgsm.c:316 +#: g10/gpg.c:710 sm/gpgsm.c:316 msgid "create ascii armored output" msgstr "" -#: g10/gpg.c:713 g10/gpgv.c:82 sm/gpgsm.c:321 +#: g10/gpg.c:714 g10/gpgv.c:82 sm/gpgsm.c:321 msgid "|FILE|write output to FILE" msgstr "" -#: g10/gpg.c:726 +#: g10/gpg.c:727 msgid "use canonical text mode" msgstr "" -#: g10/gpg.c:743 +#: g10/gpg.c:744 msgid "|N|set compress level to N (0 disables)" msgstr "" -#: g10/gpg.c:750 sm/gpgsm.c:347 +#: g10/gpg.c:751 sm/gpgsm.c:347 msgid "Options controlling key import and export" msgstr "" -#: g10/gpg.c:753 +#: g10/gpg.c:754 msgid "|MECHANISMS|use MECHANISMS to locate keys by mail address" msgstr "" -#: g10/gpg.c:756 +#: g10/gpg.c:757 msgid "import missing key from a signature" msgstr "" -#: g10/gpg.c:761 +#: g10/gpg.c:762 msgid "include the public key in signatures" msgstr "" -#: g10/gpg.c:764 sm/gpgsm.c:350 +#: g10/gpg.c:765 sm/gpgsm.c:350 msgid "disable all access to the dirmngr" msgstr "" -#: g10/gpg.c:776 sm/gpgsm.c:357 +#: g10/gpg.c:777 sm/gpgsm.c:357 msgid "Options controlling key listings" msgstr "" -#: g10/gpg.c:805 sm/gpgsm.c:324 +#: g10/gpg.c:806 sm/gpgsm.c:324 msgid "Options to specify keys" msgstr "" -#: g10/gpg.c:807 sm/gpgsm.c:326 +#: g10/gpg.c:808 sm/gpgsm.c:326 msgid "|USER-ID|encrypt for USER-ID" msgstr "" -#: g10/gpg.c:815 sm/gpgsm.c:328 +#: g10/gpg.c:816 sm/gpgsm.c:328 msgid "|USER-ID|use USER-ID to sign or decrypt" msgstr "" -#: g10/gpg.c:866 sm/gpgsm.c:396 +#: g10/gpg.c:867 sm/gpgsm.c:396 msgid "Options for unattended use" msgstr "" -#: g10/gpg.c:885 sm/gpgsm.c:408 dirmngr/dirmngr.c:294 +#: g10/gpg.c:886 sm/gpgsm.c:408 dirmngr/dirmngr.c:294 msgid "Other options" msgstr "" -#: g10/gpg.c:953 sm/gpgsm.c:440 +#: g10/gpg.c:955 sm/gpgsm.c:440 msgid "" "@\n" "(See the man page for a complete listing of all commands and options)\n" msgstr "" -#: g10/gpg.c:956 +#: g10/gpg.c:958 msgid "" "@\n" "Examples:\n" @@ -2800,554 +2804,554 @@ " --fingerprint [names] show fingerprints\n" msgstr "" -#: g10/gpg.c:1130 +#: g10/gpg.c:1139 msgid "Usage: @GPG@ [options] [files] (-h for help)" msgstr "" -#: g10/gpg.c:1133 +#: g10/gpg.c:1142 msgid "" "Syntax: @GPG@ [options] [files]\n" "Sign, check, encrypt or decrypt\n" "Default operation depends on the input data\n" msgstr "" -#: g10/gpg.c:1144 sm/gpgsm.c:624 +#: g10/gpg.c:1153 sm/gpgsm.c:624 msgid "" "\n" "Supported algorithms:\n" msgstr "" -#: g10/gpg.c:1147 +#: g10/gpg.c:1156 msgid "Pubkey: " msgstr "" -#: g10/gpg.c:1154 g10/keyedit.c:3338 +#: g10/gpg.c:1163 g10/keyedit.c:3338 msgid "Cipher: " msgstr "" -#: g10/gpg.c:1161 +#: g10/gpg.c:1170 msgid "Hash: " msgstr "" -#: g10/gpg.c:1168 g10/keyedit.c:3404 +#: g10/gpg.c:1177 g10/keyedit.c:3404 msgid "Compression: " msgstr "" -#: g10/gpg.c:1241 sm/gpgsm.c:698 +#: g10/gpg.c:1250 sm/gpgsm.c:698 #, c-format msgid "usage: %s [options] %s\n" msgstr "" -#: g10/gpg.c:1436 sm/gpgsm.c:791 +#: g10/gpg.c:1445 sm/gpgsm.c:791 #, c-format msgid "conflicting commands\n" msgstr "" -#: g10/gpg.c:1454 +#: g10/gpg.c:1463 #, c-format msgid "no = sign found in group definition '%s'\n" msgstr "" -#: g10/gpg.c:1652 +#: g10/gpg.c:1661 #, c-format msgid "WARNING: unsafe ownership on homedir '%s'\n" msgstr "" -#: g10/gpg.c:1655 +#: g10/gpg.c:1664 #, c-format msgid "WARNING: unsafe ownership on configuration file '%s'\n" msgstr "" -#: g10/gpg.c:1658 +#: g10/gpg.c:1667 #, c-format msgid "WARNING: unsafe ownership on extension '%s'\n" msgstr "" -#: g10/gpg.c:1664 +#: g10/gpg.c:1673 #, c-format msgid "WARNING: unsafe permissions on homedir '%s'\n" msgstr "" -#: g10/gpg.c:1667 +#: g10/gpg.c:1676 #, c-format msgid "WARNING: unsafe permissions on configuration file '%s'\n" msgstr "" -#: g10/gpg.c:1670 +#: g10/gpg.c:1679 #, c-format msgid "WARNING: unsafe permissions on extension '%s'\n" msgstr "" -#: g10/gpg.c:1676 +#: g10/gpg.c:1685 #, c-format msgid "WARNING: unsafe enclosing directory ownership on homedir '%s'\n" msgstr "" -#: g10/gpg.c:1679 +#: g10/gpg.c:1688 #, c-format msgid "" "WARNING: unsafe enclosing directory ownership on configuration file '%s'\n" msgstr "" -#: g10/gpg.c:1682 +#: g10/gpg.c:1691 #, c-format msgid "WARNING: unsafe enclosing directory ownership on extension '%s'\n" msgstr "" -#: g10/gpg.c:1688 +#: g10/gpg.c:1697 #, c-format msgid "WARNING: unsafe enclosing directory permissions on homedir '%s'\n" msgstr "" -#: g10/gpg.c:1691 +#: g10/gpg.c:1700 #, c-format msgid "" "WARNING: unsafe enclosing directory permissions on configuration file '%s'\n" msgstr "" -#: g10/gpg.c:1694 +#: g10/gpg.c:1703 #, c-format msgid "WARNING: unsafe enclosing directory permissions on extension '%s'\n" msgstr "" -#: g10/gpg.c:1910 +#: g10/gpg.c:1919 #, c-format msgid "unknown configuration item '%s'\n" msgstr "" -#: g10/gpg.c:2009 +#: g10/gpg.c:2018 msgid "display photo IDs during key listings" msgstr "" -#: g10/gpg.c:2011 +#: g10/gpg.c:2020 msgid "show key usage information during key listings" msgstr "" -#: g10/gpg.c:2013 +#: g10/gpg.c:2022 msgid "show policy URLs during signature listings" msgstr "" -#: g10/gpg.c:2015 +#: g10/gpg.c:2024 msgid "show all notations during signature listings" msgstr "" -#: g10/gpg.c:2017 +#: g10/gpg.c:2026 msgid "show IETF standard notations during signature listings" msgstr "" -#: g10/gpg.c:2021 +#: g10/gpg.c:2030 msgid "show user-supplied notations during signature listings" msgstr "" -#: g10/gpg.c:2023 +#: g10/gpg.c:2032 msgid "show preferred keyserver URLs during signature listings" msgstr "" -#: g10/gpg.c:2025 +#: g10/gpg.c:2034 msgid "show user ID validity during key listings" msgstr "" -#: g10/gpg.c:2027 +#: g10/gpg.c:2036 msgid "show revoked and expired user IDs in key listings" msgstr "" -#: g10/gpg.c:2029 +#: g10/gpg.c:2038 msgid "show revoked and expired subkeys in key listings" msgstr "" -#: g10/gpg.c:2031 +#: g10/gpg.c:2040 msgid "show the keyring name in key listings" msgstr "" -#: g10/gpg.c:2033 +#: g10/gpg.c:2042 msgid "show expiration dates during signature listings" msgstr "" -#: g10/gpg.c:2148 +#: g10/gpg.c:2157 #, c-format msgid "unknown TOFU policy '%s'\n" msgstr "" -#: g10/gpg.c:2150 +#: g10/gpg.c:2159 #, c-format msgid "(use \"help\" to list choices)\n" msgstr "" -#: g10/gpg.c:2240 g10/keyedit.c:1719 +#: g10/gpg.c:2249 g10/keyedit.c:1719 #, c-format msgid "This command is not allowed while in %s mode.\n" msgstr "" -#: g10/gpg.c:2878 g10/gpg.c:3718 g10/gpg.c:3730 +#: g10/gpg.c:2896 g10/gpg.c:3736 g10/gpg.c:3748 #, c-format msgid "Note: %s is not for normal use!\n" msgstr "" -#: g10/gpg.c:3053 g10/gpg.c:3065 +#: g10/gpg.c:3071 g10/gpg.c:3083 #, c-format msgid "'%s' is not a valid signature expiration\n" msgstr "" -#: g10/gpg.c:3087 +#: g10/gpg.c:3105 #, c-format msgid "\"%s\" is not a proper mail address\n" msgstr "" -#: g10/gpg.c:3119 sm/gpgsm.c:1121 +#: g10/gpg.c:3137 sm/gpgsm.c:1121 #, c-format msgid "invalid pinentry mode '%s'\n" msgstr "" -#: g10/gpg.c:3125 sm/gpgsm.c:1127 +#: g10/gpg.c:3143 sm/gpgsm.c:1127 #, c-format msgid "invalid request origin '%s'\n" msgstr "" -#: g10/gpg.c:3179 +#: g10/gpg.c:3197 #, c-format msgid "'%s' is not a valid character set\n" msgstr "" -#: g10/gpg.c:3201 g10/gpg.c:3415 g10/keyedit.c:5338 +#: g10/gpg.c:3219 g10/gpg.c:3433 g10/keyedit.c:5338 #, c-format msgid "could not parse keyserver URL\n" msgstr "" -#: g10/gpg.c:3219 +#: g10/gpg.c:3237 #, c-format msgid "%s:%d: invalid keyserver options\n" msgstr "" -#: g10/gpg.c:3222 +#: g10/gpg.c:3240 #, c-format msgid "invalid keyserver options\n" msgstr "" -#: g10/gpg.c:3229 +#: g10/gpg.c:3247 #, c-format msgid "%s:%d: invalid import options\n" msgstr "" -#: g10/gpg.c:3232 +#: g10/gpg.c:3250 #, c-format msgid "invalid import options\n" msgstr "" -#: g10/gpg.c:3238 g10/gpg.c:3253 +#: g10/gpg.c:3256 g10/gpg.c:3271 #, c-format msgid "invalid filter option: %s\n" msgstr "" -#: g10/gpg.c:3244 +#: g10/gpg.c:3262 #, c-format msgid "%s:%d: invalid export options\n" msgstr "" -#: g10/gpg.c:3247 +#: g10/gpg.c:3265 #, c-format msgid "invalid export options\n" msgstr "" -#: g10/gpg.c:3259 +#: g10/gpg.c:3277 #, c-format msgid "%s:%d: invalid list options\n" msgstr "" -#: g10/gpg.c:3262 +#: g10/gpg.c:3280 #, c-format msgid "invalid list options\n" msgstr "" -#: g10/gpg.c:3270 +#: g10/gpg.c:3288 msgid "display photo IDs during signature verification" msgstr "" -#: g10/gpg.c:3272 +#: g10/gpg.c:3290 msgid "show policy URLs during signature verification" msgstr "" -#: g10/gpg.c:3274 +#: g10/gpg.c:3292 msgid "show all notations during signature verification" msgstr "" -#: g10/gpg.c:3276 +#: g10/gpg.c:3294 msgid "show IETF standard notations during signature verification" msgstr "" -#: g10/gpg.c:3280 +#: g10/gpg.c:3298 msgid "show user-supplied notations during signature verification" msgstr "" -#: g10/gpg.c:3282 +#: g10/gpg.c:3300 msgid "show preferred keyserver URLs during signature verification" msgstr "" -#: g10/gpg.c:3284 +#: g10/gpg.c:3302 msgid "show user ID validity during signature verification" msgstr "" -#: g10/gpg.c:3286 +#: g10/gpg.c:3304 msgid "show revoked and expired user IDs in signature verification" msgstr "" -#: g10/gpg.c:3288 +#: g10/gpg.c:3306 msgid "show only the primary user ID in signature verification" msgstr "" -#: g10/gpg.c:3290 +#: g10/gpg.c:3308 msgid "validate signatures with PKA data" msgstr "" -#: g10/gpg.c:3292 +#: g10/gpg.c:3310 msgid "elevate the trust of signatures with valid PKA data" msgstr "" -#: g10/gpg.c:3299 +#: g10/gpg.c:3317 #, c-format msgid "%s:%d: invalid verify options\n" msgstr "" -#: g10/gpg.c:3302 +#: g10/gpg.c:3320 #, c-format msgid "invalid verify options\n" msgstr "" -#: g10/gpg.c:3309 +#: g10/gpg.c:3327 #, c-format msgid "unable to set exec-path to %s\n" msgstr "" -#: g10/gpg.c:3513 +#: g10/gpg.c:3531 #, c-format msgid "%s:%d: invalid auto-key-locate list\n" msgstr "" -#: g10/gpg.c:3516 +#: g10/gpg.c:3534 #, c-format msgid "invalid auto-key-locate list\n" msgstr "" -#: g10/gpg.c:3700 sm/gpgsm.c:1492 +#: g10/gpg.c:3718 sm/gpgsm.c:1492 #, c-format msgid "WARNING: program may create a core file!\n" msgstr "" -#: g10/gpg.c:3711 +#: g10/gpg.c:3729 #, c-format msgid "WARNING: %s overrides %s\n" msgstr "" -#: g10/gpg.c:3720 +#: g10/gpg.c:3738 #, c-format msgid "%s not allowed with %s!\n" msgstr "" -#: g10/gpg.c:3723 +#: g10/gpg.c:3741 #, c-format msgid "%s makes no sense with %s!\n" msgstr "" -#: g10/gpg.c:3738 sm/gpgsm.c:1509 dirmngr/dirmngr.c:1205 +#: g10/gpg.c:3756 sm/gpgsm.c:1509 dirmngr/dirmngr.c:1205 #, c-format msgid "WARNING: running with faked system time: " msgstr "" -#: g10/gpg.c:3759 +#: g10/gpg.c:3777 #, c-format msgid "will not run with insecure memory due to %s\n" msgstr "" -#: g10/gpg.c:3804 g10/gpg.c:3828 sm/gpgsm.c:1579 +#: g10/gpg.c:3824 g10/gpg.c:3848 sm/gpgsm.c:1579 #, c-format msgid "selected cipher algorithm is invalid\n" msgstr "" -#: g10/gpg.c:3816 +#: g10/gpg.c:3836 #, c-format msgid "selected compression algorithm is invalid\n" msgstr "" -#: g10/gpg.c:3822 +#: g10/gpg.c:3842 #, c-format msgid "selected certification digest algorithm is invalid\n" msgstr "" -#: g10/gpg.c:3837 +#: g10/gpg.c:3857 #, c-format msgid "completes-needed must be greater than 0\n" msgstr "" -#: g10/gpg.c:3839 +#: g10/gpg.c:3859 #, c-format msgid "marginals-needed must be greater than 1\n" msgstr "" -#: g10/gpg.c:3841 +#: g10/gpg.c:3861 #, c-format msgid "max-cert-depth must be in the range from 1 to 255\n" msgstr "" -#: g10/gpg.c:3843 +#: g10/gpg.c:3863 #, c-format msgid "invalid default-cert-level; must be 0, 1, 2, or 3\n" msgstr "" -#: g10/gpg.c:3845 +#: g10/gpg.c:3865 #, c-format msgid "invalid min-cert-level; must be 1, 2, or 3\n" msgstr "" -#: g10/gpg.c:3849 +#: g10/gpg.c:3869 #, c-format msgid "Note: simple S2K mode (0) is strongly discouraged\n" msgstr "" -#: g10/gpg.c:3853 +#: g10/gpg.c:3873 #, c-format msgid "invalid S2K mode; must be 0, 1 or 3\n" msgstr "" -#: g10/gpg.c:3860 +#: g10/gpg.c:3880 #, c-format msgid "invalid default preferences\n" msgstr "" -#: g10/gpg.c:3864 +#: g10/gpg.c:3884 #, c-format msgid "invalid personal cipher preferences\n" msgstr "" -#: g10/gpg.c:3868 +#: g10/gpg.c:3888 #, c-format msgid "invalid personal digest preferences\n" msgstr "" -#: g10/gpg.c:3872 +#: g10/gpg.c:3892 #, c-format msgid "invalid personal compress preferences\n" msgstr "" -#: g10/gpg.c:3908 +#: g10/gpg.c:3928 #, c-format msgid "%s does not yet work with %s\n" msgstr "" -#: g10/gpg.c:3971 +#: g10/gpg.c:3991 #, c-format msgid "compression algorithm '%s' may not be used in %s mode\n" msgstr "" -#: g10/gpg.c:4115 +#: g10/gpg.c:4135 #, c-format msgid "failed to initialize the TrustDB: %s\n" msgstr "" -#: g10/gpg.c:4127 +#: g10/gpg.c:4147 #, c-format msgid "WARNING: recipients (-r) given without using public key encryption\n" msgstr "" -#: g10/gpg.c:4199 +#: g10/gpg.c:4219 #, c-format msgid "symmetric encryption of '%s' failed: %s\n" msgstr "" -#: g10/gpg.c:4228 +#: g10/gpg.c:4248 #, c-format msgid "you cannot use --symmetric --encrypt with --s2k-mode 0\n" msgstr "" -#: g10/gpg.c:4231 +#: g10/gpg.c:4251 #, c-format msgid "you cannot use --symmetric --encrypt in %s mode\n" msgstr "" -#: g10/gpg.c:4289 +#: g10/gpg.c:4309 #, c-format msgid "you cannot use --symmetric --sign --encrypt with --s2k-mode 0\n" msgstr "" -#: g10/gpg.c:4292 +#: g10/gpg.c:4312 #, c-format msgid "you cannot use --symmetric --sign --encrypt in %s mode\n" msgstr "" -#: g10/gpg.c:4692 g10/keyserver.c:1648 +#: g10/gpg.c:4712 g10/keyserver.c:1648 #, c-format msgid "keyserver send failed: %s\n" msgstr "" -#: g10/gpg.c:4697 +#: g10/gpg.c:4717 #, c-format msgid "keyserver receive failed: %s\n" msgstr "" -#: g10/gpg.c:4703 +#: g10/gpg.c:4723 #, c-format msgid "key export failed: %s\n" msgstr "" -#: g10/gpg.c:4716 +#: g10/gpg.c:4736 #, c-format msgid "export as ssh key failed: %s\n" msgstr "" -#: g10/gpg.c:4728 +#: g10/gpg.c:4748 #, c-format msgid "keyserver search failed: %s\n" msgstr "" -#: g10/gpg.c:4741 +#: g10/gpg.c:4761 #, c-format msgid "keyserver refresh failed: %s\n" msgstr "" -#: g10/gpg.c:4810 +#: g10/gpg.c:4830 #, c-format msgid "dearmoring failed: %s\n" msgstr "" -#: g10/gpg.c:4821 +#: g10/gpg.c:4841 #, c-format msgid "enarmoring failed: %s\n" msgstr "" -#: g10/gpg.c:4913 +#: g10/gpg.c:4933 #, c-format msgid "invalid hash algorithm '%s'\n" msgstr "" -#: g10/gpg.c:5065 g10/tofu.c:2153 +#: g10/gpg.c:5085 g10/tofu.c:2153 #, c-format msgid "error parsing key specification '%s': %s\n" msgstr "" -#: g10/gpg.c:5078 +#: g10/gpg.c:5098 #, c-format msgid "'%s' does not appear to be a valid key ID, fingerprint or keygrip\n" msgstr "" -#: g10/gpg.c:5134 +#: g10/gpg.c:5154 #, c-format msgid "WARNING: no command supplied. Trying to guess what you mean ...\n" msgstr "" -#: g10/gpg.c:5145 +#: g10/gpg.c:5165 #, c-format msgid "Go ahead and type your message ...\n" msgstr "" -#: g10/gpg.c:5490 +#: g10/gpg.c:5510 #, c-format msgid "the given certification policy URL is invalid\n" msgstr "" -#: g10/gpg.c:5492 +#: g10/gpg.c:5512 #, c-format msgid "the given signature policy URL is invalid\n" msgstr "" -#: g10/gpg.c:5525 +#: g10/gpg.c:5545 #, c-format msgid "the given preferred keyserver URL is invalid\n" msgstr "" @@ -3387,311 +3391,311 @@ msgid "No help available for '%s'" msgstr "" -#: g10/import.c:169 +#: g10/import.c:170 msgid "import signatures that are marked as local-only" msgstr "" -#: g10/import.c:172 +#: g10/import.c:173 msgid "repair damage from the pks keyserver during import" msgstr "" -#: g10/import.c:175 +#: g10/import.c:176 msgid "do not clear the ownertrust values during import" msgstr "" -#: g10/import.c:178 +#: g10/import.c:179 msgid "do not update the trustdb after import" msgstr "" -#: g10/import.c:181 +#: g10/import.c:182 msgid "show key during import" msgstr "" -#: g10/import.c:184 +#: g10/import.c:185 msgid "only accept updates to existing keys" msgstr "" -#: g10/import.c:187 +#: g10/import.c:188 msgid "remove unusable parts from key after import" msgstr "" -#: g10/import.c:190 +#: g10/import.c:191 msgid "remove as much as possible from key after import" msgstr "" -#: g10/import.c:193 +#: g10/import.c:194 msgid "ignore key-signatures which are not self-signatures" msgstr "" -#: g10/import.c:196 +#: g10/import.c:197 msgid "run import filters and export key immediately" msgstr "" -#: g10/import.c:199 +#: g10/import.c:200 msgid "assume the GnuPG key backup format" msgstr "" -#: g10/import.c:203 +#: g10/import.c:204 msgid "repair keys on import" msgstr "" -#: g10/import.c:392 g10/import.c:711 +#: g10/import.c:393 g10/import.c:712 #, c-format msgid "skipping block of type %d\n" msgstr "" -#: g10/import.c:728 +#: g10/import.c:729 #, c-format msgid "%lu keys processed so far\n" msgstr "" -#: g10/import.c:814 +#: g10/import.c:815 #, c-format msgid "Total number processed: %lu\n" msgstr "" -#: g10/import.c:817 +#: g10/import.c:818 #, c-format msgid " skipped PGP-2 keys: %lu\n" msgstr "" -#: g10/import.c:819 +#: g10/import.c:820 #, c-format msgid " skipped new keys: %lu\n" msgstr "" -#: g10/import.c:822 +#: g10/import.c:823 #, c-format msgid " w/o user IDs: %lu\n" msgstr "" -#: g10/import.c:825 sm/import.c:130 +#: g10/import.c:826 sm/import.c:130 #, c-format msgid " imported: %lu" msgstr "" -#: g10/import.c:829 sm/import.c:134 +#: g10/import.c:830 sm/import.c:134 #, c-format msgid " unchanged: %lu\n" msgstr "" -#: g10/import.c:831 +#: g10/import.c:832 #, c-format msgid " new user IDs: %lu\n" msgstr "" -#: g10/import.c:833 +#: g10/import.c:834 #, c-format msgid " new subkeys: %lu\n" msgstr "" -#: g10/import.c:835 +#: g10/import.c:836 #, c-format msgid " new signatures: %lu\n" msgstr "" -#: g10/import.c:837 +#: g10/import.c:838 #, c-format msgid " new key revocations: %lu\n" msgstr "" -#: g10/import.c:839 sm/import.c:136 +#: g10/import.c:840 sm/import.c:136 #, c-format msgid " secret keys read: %lu\n" msgstr "" -#: g10/import.c:841 sm/import.c:138 +#: g10/import.c:842 sm/import.c:138 #, c-format msgid " secret keys imported: %lu\n" msgstr "" -#: g10/import.c:843 sm/import.c:140 +#: g10/import.c:844 sm/import.c:140 #, c-format msgid " secret keys unchanged: %lu\n" msgstr "" -#: g10/import.c:845 sm/import.c:142 +#: g10/import.c:846 sm/import.c:142 #, c-format msgid " not imported: %lu\n" msgstr "" -#: g10/import.c:847 +#: g10/import.c:848 #, c-format msgid " signatures cleaned: %lu\n" msgstr "" -#: g10/import.c:849 +#: g10/import.c:850 #, c-format msgid " user IDs cleaned: %lu\n" msgstr "" -#: g10/import.c:1276 +#: g10/import.c:1277 #, c-format msgid "" "WARNING: key %s contains preferences for unavailable\n" "algorithms on these user IDs:\n" msgstr "" -#: g10/import.c:1318 +#: g10/import.c:1319 #, c-format msgid " \"%s\": preference for cipher algorithm %s\n" msgstr "" -#: g10/import.c:1333 +#: g10/import.c:1334 #, c-format msgid " \"%s\": preference for digest algorithm %s\n" msgstr "" -#: g10/import.c:1345 +#: g10/import.c:1346 #, c-format msgid " \"%s\": preference for compression algorithm %s\n" msgstr "" -#: g10/import.c:1358 +#: g10/import.c:1359 #, c-format msgid "it is strongly suggested that you update your preferences and\n" msgstr "" -#: g10/import.c:1360 +#: g10/import.c:1361 #, c-format msgid "re-distribute this key to avoid potential algorithm mismatch problems\n" msgstr "" -#: g10/import.c:1385 +#: g10/import.c:1386 #, c-format msgid "you can update your preferences with: gpg --edit-key %s updpref save\n" msgstr "" -#: g10/import.c:1899 g10/import.c:3013 +#: g10/import.c:1902 g10/import.c:3028 #, c-format msgid "key %s: no user ID\n" msgstr "" -#: g10/import.c:1905 +#: g10/import.c:1908 #, c-format msgid "key %s: %s\n" msgstr "" -#: g10/import.c:1906 g10/import.c:2985 +#: g10/import.c:1909 g10/import.c:3000 msgid "rejected by import screener" msgstr "" -#: g10/import.c:1950 +#: g10/import.c:1953 #, c-format msgid "key %s: PKS subkey corruption repaired\n" msgstr "" -#: g10/import.c:1971 +#: g10/import.c:1974 #, c-format msgid "key %s: accepted non self-signed user ID \"%s\"\n" msgstr "" -#: g10/import.c:1981 g10/import.c:2012 +#: g10/import.c:1985 g10/import.c:2016 #, c-format msgid "key %s: no valid user IDs\n" msgstr "" -#: g10/import.c:1983 +#: g10/import.c:1987 #, c-format msgid "this may be caused by a missing self-signature\n" msgstr "" -#: g10/import.c:2062 g10/import.c:3399 +#: g10/import.c:2066 g10/import.c:3415 #, c-format msgid "key %s: public key not found: %s\n" msgstr "" -#: g10/import.c:2068 +#: g10/import.c:2072 #, c-format msgid "key %s: new key - skipped\n" msgstr "" -#: g10/import.c:2080 +#: g10/import.c:2084 #, c-format msgid "no writable keyring found: %s\n" msgstr "" -#: g10/import.c:2112 g10/import.c:2214 g10/import.c:3476 +#: g10/import.c:2116 g10/import.c:2218 g10/import.c:3492 #, c-format msgid "error writing keyring '%s': %s\n" msgstr "" -#: g10/import.c:2135 +#: g10/import.c:2139 #, c-format msgid "key %s: public key \"%s\" imported\n" msgstr "" -#: g10/import.c:2162 +#: g10/import.c:2166 #, c-format msgid "key %s: doesn't match our copy\n" msgstr "" -#: g10/import.c:2230 +#: g10/import.c:2234 #, c-format msgid "key %s: \"%s\" 1 new user ID\n" msgstr "" -#: g10/import.c:2233 +#: g10/import.c:2237 #, c-format msgid "key %s: \"%s\" %d new user IDs\n" msgstr "" -#: g10/import.c:2236 +#: g10/import.c:2240 #, c-format msgid "key %s: \"%s\" 1 new signature\n" msgstr "" -#: g10/import.c:2239 +#: g10/import.c:2243 #, c-format msgid "key %s: \"%s\" %d new signatures\n" msgstr "" -#: g10/import.c:2242 +#: g10/import.c:2246 #, c-format msgid "key %s: \"%s\" 1 new subkey\n" msgstr "" -#: g10/import.c:2245 +#: g10/import.c:2249 #, c-format msgid "key %s: \"%s\" %d new subkeys\n" msgstr "" -#: g10/import.c:2248 +#: g10/import.c:2252 #, c-format msgid "key %s: \"%s\" %d signature cleaned\n" msgstr "" -#: g10/import.c:2251 +#: g10/import.c:2255 #, c-format msgid "key %s: \"%s\" %d signatures cleaned\n" msgstr "" -#: g10/import.c:2254 +#: g10/import.c:2258 #, c-format msgid "key %s: \"%s\" %d user ID cleaned\n" msgstr "" -#: g10/import.c:2257 +#: g10/import.c:2261 #, c-format msgid "key %s: \"%s\" %d user IDs cleaned\n" msgstr "" -#: g10/import.c:2293 +#: g10/import.c:2297 #, c-format msgid "key %s: \"%s\" not changed\n" msgstr "" -#: g10/import.c:2652 g10/import.c:2847 +#: g10/import.c:2667 g10/import.c:2862 #, c-format msgid "key %s: secret key imported\n" msgstr "" -#: g10/import.c:2660 +#: g10/import.c:2675 #, c-format msgid "key %s: secret key already exists\n" msgstr "" -#: g10/import.c:2668 +#: g10/import.c:2683 #, c-format msgid "key %s: error sending to agent: %s\n" msgstr "" @@ -3704,192 +3708,192 @@ #. * Instead, user should be suggested to run 'gpg --card-status', #. * then, references to a card will be automatically created #. * again. -#: g10/import.c:2837 +#: g10/import.c:2852 #, c-format msgid "To migrate '%s', with each smartcard, run: %s\n" msgstr "" -#: g10/import.c:2984 +#: g10/import.c:2999 #, c-format msgid "secret key %s: %s\n" msgstr "" -#: g10/import.c:3005 g10/import.c:3044 +#: g10/import.c:3020 g10/import.c:3059 #, c-format msgid "importing secret keys not allowed\n" msgstr "" -#: g10/import.c:3032 +#: g10/import.c:3047 #, c-format msgid "key %s: secret key with invalid cipher %d - skipped\n" msgstr "" -#: g10/import.c:3194 g10/pkclist.c:72 g10/revoke.c:776 +#: g10/import.c:3209 g10/pkclist.c:72 g10/revoke.c:776 msgid "No reason specified" msgstr "" -#: g10/import.c:3195 g10/pkclist.c:74 g10/revoke.c:778 +#: g10/import.c:3210 g10/pkclist.c:74 g10/revoke.c:778 msgid "Key is superseded" msgstr "" -#: g10/import.c:3196 g10/pkclist.c:76 g10/revoke.c:777 +#: g10/import.c:3211 g10/pkclist.c:76 g10/revoke.c:777 msgid "Key has been compromised" msgstr "" -#: g10/import.c:3197 g10/pkclist.c:78 g10/revoke.c:779 +#: g10/import.c:3212 g10/pkclist.c:78 g10/revoke.c:779 msgid "Key is no longer used" msgstr "" -#: g10/import.c:3198 g10/pkclist.c:80 g10/revoke.c:780 +#: g10/import.c:3213 g10/pkclist.c:80 g10/revoke.c:780 msgid "User ID is no longer valid" msgstr "" -#: g10/import.c:3323 g10/keylist.c:1258 g10/pkclist.c:84 +#: g10/import.c:3338 g10/keylist.c:1258 g10/pkclist.c:84 #, c-format msgid "reason for revocation: " msgstr "" -#: g10/import.c:3342 g10/keylist.c:1277 g10/pkclist.c:100 +#: g10/import.c:3357 g10/keylist.c:1277 g10/pkclist.c:100 #, c-format msgid "revocation comment: " msgstr "" -#: g10/import.c:3392 +#: g10/import.c:3408 #, c-format msgid "key %s: no public key - can't apply revocation certificate\n" msgstr "" -#: g10/import.c:3423 +#: g10/import.c:3439 #, c-format msgid "key %s: can't locate original keyblock: %s\n" msgstr "" -#: g10/import.c:3430 +#: g10/import.c:3446 #, c-format msgid "key %s: can't read original keyblock: %s\n" msgstr "" -#: g10/import.c:3450 +#: g10/import.c:3466 #, c-format msgid "key %s: invalid revocation certificate: %s - rejected\n" msgstr "" -#: g10/import.c:3485 +#: g10/import.c:3501 #, c-format msgid "key %s: \"%s\" revocation certificate imported\n" msgstr "" -#: g10/import.c:3571 +#: g10/import.c:3587 #, c-format msgid "key %s: no user ID for signature\n" msgstr "" -#: g10/import.c:3588 +#: g10/import.c:3604 #, c-format msgid "key %s: unsupported public key algorithm on user ID \"%s\"\n" msgstr "" -#: g10/import.c:3590 +#: g10/import.c:3606 #, c-format msgid "key %s: invalid self-signature on user ID \"%s\"\n" msgstr "" -#: g10/import.c:3607 g10/import.c:3635 g10/import.c:3691 +#: g10/import.c:3623 g10/import.c:3651 g10/import.c:3707 #, c-format msgid "key %s: unsupported public key algorithm\n" msgstr "" -#: g10/import.c:3608 +#: g10/import.c:3624 #, c-format msgid "key %s: invalid direct key signature\n" msgstr "" -#: g10/import.c:3622 +#: g10/import.c:3638 #, c-format msgid "key %s: no subkey for key binding\n" msgstr "" -#: g10/import.c:3637 +#: g10/import.c:3653 #, c-format msgid "key %s: invalid subkey binding\n" msgstr "" -#: g10/import.c:3656 +#: g10/import.c:3672 #, c-format msgid "key %s: removed multiple subkey binding\n" msgstr "" -#: g10/import.c:3680 +#: g10/import.c:3696 #, c-format msgid "key %s: no subkey for key revocation\n" msgstr "" -#: g10/import.c:3693 +#: g10/import.c:3709 #, c-format msgid "key %s: invalid subkey revocation\n" msgstr "" -#: g10/import.c:3708 +#: g10/import.c:3724 #, c-format msgid "key %s: removed multiple subkey revocation\n" msgstr "" -#: g10/import.c:3752 +#: g10/import.c:3771 #, c-format msgid "key %s: skipped user ID \"%s\"\n" msgstr "" -#: g10/import.c:3779 +#: g10/import.c:3798 #, c-format msgid "key %s: skipped subkey\n" msgstr "" -#: g10/import.c:3810 +#: g10/import.c:3829 #, c-format msgid "key %s: non exportable signature (class 0x%02X) - skipped\n" msgstr "" -#: g10/import.c:3821 +#: g10/import.c:3840 #, c-format msgid "key %s: revocation certificate at wrong place - skipped\n" msgstr "" -#: g10/import.c:3839 +#: g10/import.c:3868 #, c-format msgid "key %s: invalid revocation certificate: %s - skipped\n" msgstr "" -#: g10/import.c:3853 +#: g10/import.c:3892 #, c-format msgid "key %s: subkey signature in wrong place - skipped\n" msgstr "" -#: g10/import.c:3861 +#: g10/import.c:3900 #, c-format msgid "key %s: unexpected signature class (0x%02X) - skipped\n" msgstr "" -#: g10/import.c:4034 +#: g10/import.c:4073 #, c-format msgid "key %s: duplicated user ID detected - merged\n" msgstr "" -#: g10/import.c:4099 +#: g10/import.c:4138 #, c-format msgid "WARNING: key %s may be revoked: fetching revocation key %s\n" msgstr "" -#: g10/import.c:4115 +#: g10/import.c:4154 #, c-format msgid "WARNING: key %s may be revoked: revocation key %s not present.\n" msgstr "" -#: g10/import.c:4181 +#: g10/import.c:4220 #, c-format msgid "key %s: \"%s\" revocation certificate added\n" msgstr "" -#: g10/import.c:4219 +#: g10/import.c:4258 #, c-format msgid "key %s: direct key signature added\n" msgstr "" @@ -4715,7 +4719,7 @@ msgid "You may not add a photo ID to a PGP2-style key.\n" msgstr "" -#: g10/keyedit.c:4293 g10/keygen.c:2899 +#: g10/keyedit.c:4293 g10/keygen.c:2953 msgid "Such a user ID already exists on this key!\n" msgstr "" @@ -4986,81 +4990,81 @@ msgid "Displaying %s photo ID of size %ld for key %s (uid %d)\n" msgstr "" -#: g10/keygen.c:169 +#: g10/keygen.c:174 #, c-format msgid "invalid value for option '%s'\n" msgstr "" -#: g10/keygen.c:322 +#: g10/keygen.c:331 #, c-format msgid "preference '%s' duplicated\n" msgstr "" -#: g10/keygen.c:329 +#: g10/keygen.c:338 #, c-format msgid "too many cipher preferences\n" msgstr "" -#: g10/keygen.c:331 +#: g10/keygen.c:340 #, c-format msgid "too many digest preferences\n" msgstr "" -#: g10/keygen.c:333 +#: g10/keygen.c:342 #, c-format msgid "too many compression preferences\n" msgstr "" -#: g10/keygen.c:493 +#: g10/keygen.c:502 #, c-format msgid "invalid item '%s' in preference string\n" msgstr "" -#: g10/keygen.c:972 +#: g10/keygen.c:1020 #, c-format msgid "writing direct signature\n" msgstr "" -#: g10/keygen.c:1018 +#: g10/keygen.c:1066 #, c-format msgid "writing self signature\n" msgstr "" -#: g10/keygen.c:1075 +#: g10/keygen.c:1123 #, c-format msgid "writing key binding signature\n" msgstr "" -#: g10/keygen.c:1440 g10/keygen.c:1445 g10/keygen.c:1497 g10/keygen.c:1502 -#: g10/keygen.c:1656 g10/keygen.c:1661 +#: g10/keygen.c:1494 g10/keygen.c:1499 g10/keygen.c:1551 g10/keygen.c:1556 +#: g10/keygen.c:1710 g10/keygen.c:1715 #, c-format msgid "keysize invalid; using %u bits\n" msgstr "" -#: g10/keygen.c:1451 g10/keygen.c:1508 g10/keygen.c:1516 g10/keygen.c:1667 +#: g10/keygen.c:1505 g10/keygen.c:1562 g10/keygen.c:1570 g10/keygen.c:1721 #, c-format msgid "keysize rounded up to %u bits\n" msgstr "" -#: g10/keygen.c:1542 +#: g10/keygen.c:1596 #, c-format msgid "" "WARNING: some OpenPGP programs can't handle a DSA key with this digest size\n" msgstr "" -#: g10/keygen.c:1723 +#: g10/keygen.c:1777 msgid "Sign" msgstr "" -#: g10/keygen.c:1726 +#: g10/keygen.c:1780 msgid "Certify" msgstr "" -#: g10/keygen.c:1729 +#: g10/keygen.c:1783 msgid "Encrypt" msgstr "" -#: g10/keygen.c:1732 +#: g10/keygen.c:1786 msgid "Authenticate" msgstr "" @@ -5074,161 +5078,161 @@ #. * a = Toggle authentication capability #. * q = Finish #. -#: g10/keygen.c:1753 +#: g10/keygen.c:1807 msgid "SsEeAaQq" msgstr "" -#: g10/keygen.c:1784 +#: g10/keygen.c:1838 #, c-format msgid "Possible actions for a %s key: " msgstr "" -#: g10/keygen.c:1790 +#: g10/keygen.c:1844 msgid "Current allowed actions: " msgstr "" -#: g10/keygen.c:1795 +#: g10/keygen.c:1849 #, c-format msgid " (%c) Toggle the sign capability\n" msgstr "" -#: g10/keygen.c:1798 +#: g10/keygen.c:1852 #, c-format msgid " (%c) Toggle the encrypt capability\n" msgstr "" -#: g10/keygen.c:1801 +#: g10/keygen.c:1855 #, c-format msgid " (%c) Toggle the authenticate capability\n" msgstr "" -#: g10/keygen.c:1804 +#: g10/keygen.c:1858 #, c-format msgid " (%c) Finished\n" msgstr "" -#: g10/keygen.c:1930 +#: g10/keygen.c:1984 #, c-format msgid " (%d) RSA and RSA (default)\n" msgstr "" -#: g10/keygen.c:1934 +#: g10/keygen.c:1988 #, c-format msgid " (%d) DSA and Elgamal\n" msgstr "" -#: g10/keygen.c:1937 +#: g10/keygen.c:1991 #, c-format msgid " (%d) DSA (sign only)\n" msgstr "" -#: g10/keygen.c:1939 +#: g10/keygen.c:1993 #, c-format msgid " (%d) RSA (sign only)\n" msgstr "" -#: g10/keygen.c:1945 +#: g10/keygen.c:1999 #, c-format msgid " (%d) Elgamal (encrypt only)\n" msgstr "" -#: g10/keygen.c:1947 +#: g10/keygen.c:2001 #, c-format msgid " (%d) RSA (encrypt only)\n" msgstr "" -#: g10/keygen.c:1953 +#: g10/keygen.c:2007 #, c-format msgid " (%d) DSA (set your own capabilities)\n" msgstr "" -#: g10/keygen.c:1955 +#: g10/keygen.c:2009 #, c-format msgid " (%d) RSA (set your own capabilities)\n" msgstr "" -#: g10/keygen.c:1961 +#: g10/keygen.c:2015 #, c-format msgid " (%d) ECC and ECC\n" msgstr "" -#: g10/keygen.c:1963 +#: g10/keygen.c:2017 #, c-format msgid " (%d) ECC (sign only)\n" msgstr "" -#: g10/keygen.c:1965 +#: g10/keygen.c:2019 #, c-format msgid " (%d) ECC (set your own capabilities)\n" msgstr "" -#: g10/keygen.c:1967 +#: g10/keygen.c:2021 #, c-format msgid " (%d) ECC (encrypt only)\n" msgstr "" -#: g10/keygen.c:1971 +#: g10/keygen.c:2025 #, c-format msgid " (%d) Existing key\n" msgstr "" -#: g10/keygen.c:1973 +#: g10/keygen.c:2027 #, c-format msgid " (%d) Existing key from card\n" msgstr "" -#: g10/keygen.c:2069 sm/certreqgen-ui.c:202 +#: g10/keygen.c:2123 sm/certreqgen-ui.c:202 msgid "Enter the keygrip: " msgstr "" -#: g10/keygen.c:2082 sm/certreqgen-ui.c:210 +#: g10/keygen.c:2136 sm/certreqgen-ui.c:210 msgid "Not a valid keygrip (expecting 40 hex digits)\n" msgstr "" -#: g10/keygen.c:2084 sm/certreqgen-ui.c:212 +#: g10/keygen.c:2138 sm/certreqgen-ui.c:212 msgid "No key with this keygrip\n" msgstr "" -#: g10/keygen.c:2103 g10/keygen.c:2113 g10/keygen.c:3216 g10/keygen.c:3227 +#: g10/keygen.c:2157 g10/keygen.c:2167 g10/keygen.c:3270 g10/keygen.c:3281 #: sm/certreqgen-ui.c:230 sm/certreqgen-ui.c:239 #, c-format msgid "error reading the card: %s\n" msgstr "" -#: g10/keygen.c:2107 g10/keygen.c:3220 sm/certreqgen-ui.c:233 +#: g10/keygen.c:2161 g10/keygen.c:3274 sm/certreqgen-ui.c:233 #, c-format msgid "Serial number of the card: %s\n" msgstr "" -#: g10/keygen.c:2120 sm/certreqgen-ui.c:245 +#: g10/keygen.c:2174 sm/certreqgen-ui.c:245 msgid "Available keys:\n" msgstr "" -#: g10/keygen.c:2297 g10/keygen.c:2311 +#: g10/keygen.c:2351 g10/keygen.c:2365 #, c-format msgid "rounded to %u bits\n" msgstr "" -#: g10/keygen.c:2352 +#: g10/keygen.c:2406 #, c-format msgid "%s keys may be between %u and %u bits long.\n" msgstr "" -#: g10/keygen.c:2360 +#: g10/keygen.c:2414 #, c-format msgid "What keysize do you want for the subkey? (%u) " msgstr "" -#: g10/keygen.c:2377 sm/certreqgen-ui.c:189 +#: g10/keygen.c:2431 sm/certreqgen-ui.c:189 #, c-format msgid "Requested keysize is %u bits\n" msgstr "" -#: g10/keygen.c:2423 +#: g10/keygen.c:2477 msgid "Please select which elliptic curve you want:\n" msgstr "" -#: g10/keygen.c:2611 +#: g10/keygen.c:2665 msgid "" "Please specify how long the key should be valid.\n" " 0 = key does not expire\n" @@ -5238,7 +5242,7 @@ " y = key expires in n years\n" msgstr "" -#: g10/keygen.c:2622 +#: g10/keygen.c:2676 msgid "" "Please specify how long the signature should be valid.\n" " 0 = signature does not expire\n" @@ -5248,48 +5252,48 @@ " y = signature expires in n years\n" msgstr "" -#: g10/keygen.c:2645 +#: g10/keygen.c:2699 msgid "Key is valid for? (0) " msgstr "" -#: g10/keygen.c:2650 +#: g10/keygen.c:2704 #, c-format msgid "Signature is valid for? (%s) " msgstr "" -#: g10/keygen.c:2663 g10/keygen.c:2688 +#: g10/keygen.c:2717 g10/keygen.c:2742 msgid "invalid value\n" msgstr "" -#: g10/keygen.c:2670 +#: g10/keygen.c:2724 msgid "Key does not expire at all\n" msgstr "" -#: g10/keygen.c:2671 +#: g10/keygen.c:2725 msgid "Signature does not expire at all\n" msgstr "" -#: g10/keygen.c:2676 +#: g10/keygen.c:2730 #, c-format msgid "Key expires at %s\n" msgstr "" -#: g10/keygen.c:2677 +#: g10/keygen.c:2731 #, c-format msgid "Signature expires at %s\n" msgstr "" -#: g10/keygen.c:2681 +#: g10/keygen.c:2735 msgid "" "Your system can't display dates beyond 2038.\n" "However, it will be correctly handled up to 2106.\n" msgstr "" -#: g10/keygen.c:2694 +#: g10/keygen.c:2748 msgid "Is this correct? (y/N) " msgstr "" -#: g10/keygen.c:2762 +#: g10/keygen.c:2816 msgid "" "\n" "GnuPG needs to construct a user ID to identify your key.\n" @@ -5300,7 +5304,7 @@ #. but you should keep your existing translation. In case #. the new string is not translated this old string will #. be used. -#: g10/keygen.c:2777 +#: g10/keygen.c:2831 msgid "" "\n" "You need a user ID to identify your key; the software constructs the user " @@ -5310,49 +5314,49 @@ "\n" msgstr "" -#: g10/keygen.c:2796 +#: g10/keygen.c:2850 msgid "Real name: " msgstr "" -#: g10/keygen.c:2805 +#: g10/keygen.c:2859 msgid "Invalid character in name\n" msgstr "" -#: g10/keygen.c:2806 +#: g10/keygen.c:2860 #, c-format msgid "The characters '%s' and '%s' may not appear in name\n" msgstr "" -#: g10/keygen.c:2810 +#: g10/keygen.c:2864 msgid "Name may not start with a digit\n" msgstr "" -#: g10/keygen.c:2813 +#: g10/keygen.c:2867 msgid "Name must be at least 5 characters long\n" msgstr "" -#: g10/keygen.c:2823 +#: g10/keygen.c:2877 msgid "Email address: " msgstr "" -#: g10/keygen.c:2829 +#: g10/keygen.c:2883 msgid "Not a valid email address\n" msgstr "" -#: g10/keygen.c:2838 +#: g10/keygen.c:2892 msgid "Comment: " msgstr "" -#: g10/keygen.c:2844 +#: g10/keygen.c:2898 msgid "Invalid character in comment\n" msgstr "" -#: g10/keygen.c:2880 +#: g10/keygen.c:2934 #, c-format msgid "You are using the '%s' character set.\n" msgstr "" -#: g10/keygen.c:2886 +#: g10/keygen.c:2940 #, c-format msgid "" "You selected this USER-ID:\n" @@ -5360,7 +5364,7 @@ "\n" msgstr "" -#: g10/keygen.c:2891 +#: g10/keygen.c:2945 msgid "Please don't put the email address into the real name or the comment\n" msgstr "" @@ -5375,31 +5379,31 @@ #. o = Okay (ready, continue) #. q = Quit #. -#: g10/keygen.c:2916 +#: g10/keygen.c:2970 msgid "NnCcEeOoQq" msgstr "" -#: g10/keygen.c:2926 +#: g10/keygen.c:2980 msgid "Change (N)ame, (C)omment, (E)mail or (Q)uit? " msgstr "" -#: g10/keygen.c:2927 +#: g10/keygen.c:2981 msgid "Change (N)ame, (C)omment, (E)mail or (O)kay/(Q)uit? " msgstr "" -#: g10/keygen.c:2932 +#: g10/keygen.c:2986 msgid "Change (N)ame, (E)mail, or (Q)uit? " msgstr "" -#: g10/keygen.c:2933 +#: g10/keygen.c:2987 msgid "Change (N)ame, (E)mail, or (O)kay/(Q)uit? " msgstr "" -#: g10/keygen.c:2952 +#: g10/keygen.c:3006 msgid "Please correct the error first\n" msgstr "" -#: g10/keygen.c:2998 +#: g10/keygen.c:3052 msgid "" "We need to generate a lot of random bytes. It is a good idea to perform\n" "some other action (type on the keyboard, move the mouse, utilize the\n" @@ -5407,13 +5411,13 @@ "generator a better chance to gain enough entropy.\n" msgstr "" -#: g10/keygen.c:4278 g10/keygen.c:4349 g10/keygen.c:4367 g10/keygen.c:4395 -#: g10/keygen.c:4739 g10/keygen.c:5239 g10/keygen.c:5534 g10/keygen.c:5639 +#: g10/keygen.c:4332 g10/keygen.c:4403 g10/keygen.c:4421 g10/keygen.c:4449 +#: g10/keygen.c:4793 g10/keygen.c:5293 g10/keygen.c:5588 g10/keygen.c:5693 #, c-format msgid "Key generation failed: %s\n" msgstr "" -#: g10/keygen.c:4287 +#: g10/keygen.c:4341 #, c-format msgid "" "About to create a key for:\n" @@ -5421,97 +5425,97 @@ "\n" msgstr "" -#: g10/keygen.c:4289 +#: g10/keygen.c:4343 msgid "Continue? (Y/n) " msgstr "" -#: g10/keygen.c:4310 +#: g10/keygen.c:4364 #, c-format msgid "A key for \"%s\" already exists\n" msgstr "" -#: g10/keygen.c:4315 +#: g10/keygen.c:4369 msgid "Create anyway? (y/N) " msgstr "" -#: g10/keygen.c:4321 +#: g10/keygen.c:4375 #, c-format msgid "creating anyway\n" msgstr "" -#: g10/keygen.c:4722 +#: g10/keygen.c:4776 #, c-format msgid "Note: Use \"%s %s\" for a full featured key generation dialog.\n" msgstr "" -#: g10/keygen.c:4771 +#: g10/keygen.c:4825 #, c-format msgid "Key generation canceled.\n" msgstr "" -#: g10/keygen.c:4831 +#: g10/keygen.c:4885 #, c-format msgid "can't create backup file '%s': %s\n" msgstr "" -#: g10/keygen.c:4851 +#: g10/keygen.c:4905 #, c-format msgid "Note: backup of card key saved to '%s'\n" msgstr "" -#: g10/keygen.c:5010 g10/keygen.c:5172 +#: g10/keygen.c:5064 g10/keygen.c:5226 #, c-format msgid "writing public key to '%s'\n" msgstr "" -#: g10/keygen.c:5166 +#: g10/keygen.c:5220 #, c-format msgid "no writable public keyring found: %s\n" msgstr "" -#: g10/keygen.c:5180 +#: g10/keygen.c:5234 #, c-format msgid "error writing public keyring '%s': %s\n" msgstr "" -#: g10/keygen.c:5210 +#: g10/keygen.c:5264 msgid "public and secret key created and signed.\n" msgstr "" -#: g10/keygen.c:5226 +#: g10/keygen.c:5280 msgid "" "Note that this key cannot be used for encryption. You may want to use\n" "the command \"--edit-key\" to generate a subkey for this purpose.\n" msgstr "" -#: g10/keygen.c:5401 g10/keygen.c:5590 +#: g10/keygen.c:5455 g10/keygen.c:5644 #, c-format msgid "" "key has been created %lu second in future (time warp or clock problem)\n" msgstr "" -#: g10/keygen.c:5403 g10/keygen.c:5592 +#: g10/keygen.c:5457 g10/keygen.c:5646 #, c-format msgid "" "key has been created %lu seconds in future (time warp or clock problem)\n" msgstr "" -#: g10/keygen.c:5414 g10/keygen.c:5603 +#: g10/keygen.c:5468 g10/keygen.c:5657 #, c-format msgid "Note: creating subkeys for v3 keys is not OpenPGP compliant\n" msgstr "" -#: g10/keygen.c:5426 g10/keygen.c:5428 +#: g10/keygen.c:5480 g10/keygen.c:5482 #, c-format msgid "Secret parts of primary key are not available.\n" msgstr "" -#: g10/keygen.c:5435 g10/keygen.c:5437 +#: g10/keygen.c:5489 g10/keygen.c:5491 #, c-format msgid "Secret parts of primary key are stored on-card.\n" msgstr "" -#: g10/keygen.c:5456 g10/keygen.c:5617 +#: g10/keygen.c:5510 g10/keygen.c:5671 msgid "Really create? (y/N) " msgstr "" @@ -6549,30 +6553,30 @@ msgid "data not saved; use option \"--output\" to save it\n" msgstr "" -#: g10/plaintext.c:615 +#: g10/plaintext.c:620 msgid "Detached signature.\n" msgstr "" -#: g10/plaintext.c:623 +#: g10/plaintext.c:628 msgid "Please enter name of data file: " msgstr "" -#: g10/plaintext.c:660 +#: g10/plaintext.c:665 #, c-format msgid "reading stdin ...\n" msgstr "" -#: g10/plaintext.c:705 +#: g10/plaintext.c:710 #, c-format msgid "no signed data\n" msgstr "" -#: g10/plaintext.c:723 +#: g10/plaintext.c:728 #, c-format msgid "can't open signed data '%s'\n" msgstr "" -#: g10/plaintext.c:758 +#: g10/plaintext.c:763 #, c-format msgid "can't open signed data fd=%d: %s\n" msgstr "" @@ -7522,7 +7526,7 @@ msgid "no need for a trustdb check\n" msgstr "" -#: g10/trustdb.c:631 g10/trustdb.c:2326 +#: g10/trustdb.c:631 g10/trustdb.c:2338 #, c-format msgid "next trustdb check due at %s\n" msgstr "" @@ -7552,37 +7556,37 @@ msgid "checking the trustdb\n" msgstr "" -#: g10/trustdb.c:2047 +#: g10/trustdb.c:2059 #, c-format msgid "%d key processed" msgid_plural "%d keys processed" msgstr[0] "" msgstr[1] "" -#: g10/trustdb.c:2050 +#: g10/trustdb.c:2062 #, c-format msgid " (%d validity count cleared)\n" msgid_plural " (%d validity counts cleared)\n" msgstr[0] "" msgstr[1] "" -#: g10/trustdb.c:2120 +#: g10/trustdb.c:2132 #, c-format msgid "no ultimately trusted keys found\n" msgstr "" -#: g10/trustdb.c:2134 +#: g10/trustdb.c:2146 #, c-format msgid "public key of ultimately trusted key %s not found\n" msgstr "" -#: g10/trustdb.c:2252 +#: g10/trustdb.c:2264 #, c-format msgid "" "depth: %d valid: %3d signed: %3d trust: %d-, %dq, %dn, %dm, %df, %du\n" msgstr "" -#: g10/trustdb.c:2333 +#: g10/trustdb.c:2345 #, c-format msgid "unable to update trustdb version record: write failed: %s\n" msgstr "" @@ -7690,83 +7694,87 @@ #. TRANSLATORS: Put a \x1f right before a colon. This can be #. * used by pinentry to nicely align the names and values. Keep #. * the %s at the start and end of the string. -#: scd/app-p15.c:5116 scd/app-openpgp.c:2154 +#: scd/app-p15.c:5145 scd/app-nks.c:1541 scd/app-openpgp.c:2154 #, c-format msgid "%sNumber: %s%%0AHolder: %s%s" msgstr "" #. TRANSLATORS: This is the number of remaining attempts to #. * enter a PIN. Use %%0A (double-percent,0A) for a linefeed. -#: scd/app-p15.c:5135 scd/app-openpgp.c:2170 +#: scd/app-p15.c:5164 scd/app-nks.c:1560 scd/app-openpgp.c:2170 #, c-format msgid "Remaining attempts: %d" msgstr "" -#: scd/app-p15.c:5214 scd/app-nks.c:1113 +#: scd/app-p15.c:5243 scd/app-nks.c:2112 msgid "||Please enter the PIN for the key to create qualified signatures." msgstr "" #. TRANSLATORS: Do not translate the "|A|" prefix but keep it at #. the start of the string. Use %0A (single percent) for a linefeed. -#: scd/app-p15.c:5217 scd/app-openpgp.c:2464 +#: scd/app-p15.c:5246 scd/app-openpgp.c:2465 msgid "|A|Please enter the Admin PIN" msgstr "" -#: scd/app-p15.c:5219 scd/app-nks.c:1103 +#: scd/app-p15.c:5248 scd/app-nks.c:2102 msgid "|P|Please enter the PIN Unblocking Code (PUK) for the standard keys." msgstr "" -#: scd/app-p15.c:5222 scd/app-nks.c:1095 +#: scd/app-p15.c:5251 scd/app-nks.c:2093 msgid "||Please enter the PIN for the standard keys." msgstr "" -#: scd/app-nks.c:709 scd/app-openpgp.c:3666 +#: scd/app-nks.c:1479 scd/app-openpgp.c:3675 #, c-format msgid "RSA modulus missing or not of size %d bits\n" msgstr "" -#: scd/app-nks.c:717 scd/app-openpgp.c:3678 +#: scd/app-nks.c:1487 scd/app-openpgp.c:3687 #, c-format msgid "RSA public exponent missing or larger than %d bits\n" msgstr "" -#: scd/app-nks.c:797 scd/app-openpgp.c:2327 scd/app-openpgp.c:2346 -#: scd/app-openpgp.c:2513 scd/app-openpgp.c:2531 scd/app-openpgp.c:2829 -#: scd/app-openpgp.c:2876 scd/app-openpgp.c:2991 scd/app-dinsig.c:302 +#: scd/app-nks.c:1660 +msgid "Note: PIN has not yet been enabled." +msgstr "" + +#: scd/app-nks.c:1671 scd/app-openpgp.c:2327 scd/app-openpgp.c:2346 +#: scd/app-openpgp.c:2515 scd/app-openpgp.c:2533 scd/app-openpgp.c:2832 +#: scd/app-openpgp.c:2879 scd/app-openpgp.c:3000 scd/app-dinsig.c:303 #, c-format msgid "PIN callback returned error: %s\n" msgstr "" -#: scd/app-nks.c:830 +#: scd/app-nks.c:1707 #, c-format msgid "the NullPIN has not yet been changed\n" msgstr "" -#: scd/app-nks.c:1094 +#: scd/app-nks.c:2092 msgid "|N|Please enter a new PIN for the standard keys." msgstr "" -#: scd/app-nks.c:1101 +#: scd/app-nks.c:2100 msgid "|NP|Please enter a new PIN Unblocking Code (PUK) for the standard keys." msgstr "" -#: scd/app-nks.c:1111 +#: scd/app-nks.c:2110 msgid "|N|Please enter a new PIN for the key to create qualified signatures." msgstr "" -#: scd/app-nks.c:1121 +#: scd/app-nks.c:2120 msgid "" "|NP|Please enter a new PIN Unblocking Code (PUK) for the key to create " "qualified signatures." msgstr "" -#: scd/app-nks.c:1123 +#: scd/app-nks.c:2122 msgid "" "|P|Please enter the PIN Unblocking Code (PUK) for the key to create " "qualified signatures." msgstr "" -#: scd/app-nks.c:1230 scd/app-openpgp.c:2910 scd/app-dinsig.c:532 +#: scd/app-nks.c:2295 scd/app-openpgp.c:2913 scd/app-dinsig.c:535 #, c-format msgid "error getting new PIN: %s\n" msgstr "" @@ -7781,7 +7789,7 @@ msgid "failed to store the creation date: %s\n" msgstr "" -#: scd/app-openpgp.c:1271 scd/app-openpgp.c:2857 scd/app-openpgp.c:5041 +#: scd/app-openpgp.c:1271 scd/app-openpgp.c:2860 scd/app-openpgp.c:5051 #, c-format msgid "error retrieving CHV status from card\n" msgstr "" @@ -7801,7 +7809,7 @@ msgid "response does not contain the EC public key\n" msgstr "" -#: scd/app-openpgp.c:1664 scd/app-openpgp.c:4286 +#: scd/app-openpgp.c:1664 scd/app-openpgp.c:4295 #, c-format msgid "response does not contain the public key data\n" msgstr "" @@ -7833,23 +7841,23 @@ msgid "||Please unlock the card" msgstr "" -#: scd/app-openpgp.c:2353 scd/app-openpgp.c:2538 scd/app-openpgp.c:2836 +#: scd/app-openpgp.c:2353 scd/app-openpgp.c:2540 scd/app-openpgp.c:2839 #, c-format msgid "PIN for CHV%d is too short; minimum length is %d\n" msgstr "" -#: scd/app-openpgp.c:2367 scd/app-openpgp.c:2414 scd/app-openpgp.c:2552 -#: scd/app-openpgp.c:4644 +#: scd/app-openpgp.c:2368 scd/app-openpgp.c:2415 scd/app-openpgp.c:2554 +#: scd/app-openpgp.c:4654 #, c-format msgid "verify CHV%d failed: %s\n" msgstr "" -#: scd/app-openpgp.c:2450 scd/app-openpgp.c:5050 +#: scd/app-openpgp.c:2451 scd/app-openpgp.c:5060 #, c-format msgid "card is permanently locked!\n" msgstr "" -#: scd/app-openpgp.c:2454 +#: scd/app-openpgp.c:2455 #, c-format msgid "%d Admin PIN attempt remaining before card is permanently locked\n" msgid_plural "" @@ -7857,20 +7865,20 @@ msgstr[0] "" msgstr[1] "" -#: scd/app-openpgp.c:2485 +#: scd/app-openpgp.c:2486 #, c-format msgid "access to admin commands is not configured\n" msgstr "" -#: scd/app-openpgp.c:2823 +#: scd/app-openpgp.c:2826 msgid "||Please enter the PIN" msgstr "" -#: scd/app-openpgp.c:2872 +#: scd/app-openpgp.c:2875 msgid "||Please enter the Reset Code for the card" msgstr "" -#: scd/app-openpgp.c:2882 scd/app-openpgp.c:2943 +#: scd/app-openpgp.c:2885 scd/app-openpgp.c:2946 #, c-format msgid "Reset Code is too short; minimum length is %d\n" msgstr "" @@ -7878,132 +7886,132 @@ #. 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:2905 +#: scd/app-openpgp.c:2908 msgid "|RN|New Reset Code" msgstr "" -#: scd/app-openpgp.c:2906 +#: scd/app-openpgp.c:2909 msgid "|AN|New Admin PIN" msgstr "" -#: scd/app-openpgp.c:2906 +#: scd/app-openpgp.c:2909 msgid "|N|New PIN" msgstr "" -#: scd/app-openpgp.c:2987 +#: scd/app-openpgp.c:2996 msgid "||Please enter the Admin PIN and New Admin PIN" msgstr "" -#: scd/app-openpgp.c:2988 +#: scd/app-openpgp.c:2997 msgid "||Please enter the PIN and New PIN" msgstr "" -#: scd/app-openpgp.c:3050 scd/app-openpgp.c:4346 +#: scd/app-openpgp.c:3059 scd/app-openpgp.c:4355 #, c-format msgid "error reading application data\n" msgstr "" -#: scd/app-openpgp.c:3056 scd/app-openpgp.c:4353 +#: scd/app-openpgp.c:3065 scd/app-openpgp.c:4362 #, c-format msgid "error reading fingerprint DO\n" msgstr "" -#: scd/app-openpgp.c:3066 +#: scd/app-openpgp.c:3075 #, c-format msgid "key already exists\n" msgstr "" -#: scd/app-openpgp.c:3070 +#: scd/app-openpgp.c:3079 #, c-format msgid "existing key will be replaced\n" msgstr "" -#: scd/app-openpgp.c:3072 +#: scd/app-openpgp.c:3081 #, c-format msgid "generating new key\n" msgstr "" -#: scd/app-openpgp.c:3074 +#: scd/app-openpgp.c:3083 #, c-format msgid "writing new key\n" msgstr "" -#: scd/app-openpgp.c:3647 scd/app-openpgp.c:3999 +#: scd/app-openpgp.c:3656 scd/app-openpgp.c:4008 #, c-format msgid "creation timestamp missing\n" msgstr "" -#: scd/app-openpgp.c:3688 scd/app-openpgp.c:3696 +#: scd/app-openpgp.c:3697 scd/app-openpgp.c:3705 #, c-format msgid "RSA prime %s missing or not of size %d bits\n" msgstr "" -#: scd/app-openpgp.c:3829 scd/app-openpgp.c:4106 +#: scd/app-openpgp.c:3838 scd/app-openpgp.c:4115 #, c-format msgid "failed to store the key: %s\n" msgstr "" -#: scd/app-openpgp.c:3993 +#: scd/app-openpgp.c:4002 #, c-format msgid "unsupported curve\n" msgstr "" -#: scd/app-openpgp.c:4263 +#: scd/app-openpgp.c:4272 #, c-format msgid "please wait while key is being generated ...\n" msgstr "" -#: scd/app-openpgp.c:4271 +#: scd/app-openpgp.c:4280 #, c-format msgid "generating key failed\n" msgstr "" -#: scd/app-openpgp.c:4277 +#: scd/app-openpgp.c:4286 #, c-format msgid "key generation completed (%d second)\n" msgid_plural "key generation completed (%d seconds)\n" msgstr[0] "" msgstr[1] "" -#: scd/app-openpgp.c:4311 +#: scd/app-openpgp.c:4320 #, c-format msgid "invalid structure of OpenPGP card (DO 0x93)\n" msgstr "" -#: scd/app-openpgp.c:4361 +#: scd/app-openpgp.c:4370 #, c-format msgid "fingerprint on card does not match requested one\n" msgstr "" -#: scd/app-openpgp.c:4560 +#: scd/app-openpgp.c:4569 #, c-format msgid "card does not support digest algorithm %s\n" msgstr "" -#: scd/app-openpgp.c:4618 +#: scd/app-openpgp.c:4627 #, c-format msgid "signatures created so far: %lu\n" msgstr "" -#: scd/app-openpgp.c:5055 +#: scd/app-openpgp.c:5065 #, c-format msgid "" "verification of Admin PIN is currently prohibited through this command\n" msgstr "" -#: scd/app-openpgp.c:5386 scd/app-openpgp.c:5398 +#: scd/app-openpgp.c:5396 scd/app-openpgp.c:5408 #, c-format msgid "can't access %s - invalid OpenPGP card?\n" msgstr "" -#: scd/app-dinsig.c:298 +#: scd/app-dinsig.c:299 msgid "||Please enter your PIN at the reader's pinpad" 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-dinsig.c:529 +#: scd/app-dinsig.c:532 msgid "|N|Initial New PIN" msgstr "" @@ -8087,11 +8095,11 @@ msgid "validation model requested by certificate: %s" msgstr "" -#: sm/certchain.c:199 sm/certchain.c:2164 +#: sm/certchain.c:199 sm/certchain.c:2165 msgid "chain" msgstr "" -#: sm/certchain.c:200 sm/certchain.c:2164 +#: sm/certchain.c:200 sm/certchain.c:2165 msgid "shell" msgstr "" @@ -8114,234 +8122,234 @@ msgid "failed to open '%s': %s\n" msgstr "" -#: sm/certchain.c:355 sm/certchain.c:384 dirmngr/validate.c:204 +#: sm/certchain.c:355 sm/certchain.c:385 dirmngr/validate.c:204 #, c-format msgid "Note: non-critical certificate policy not allowed" msgstr "" -#: sm/certchain.c:359 sm/certchain.c:388 dirmngr/validate.c:209 +#: sm/certchain.c:359 sm/certchain.c:389 dirmngr/validate.c:209 #, c-format msgid "certificate policy not allowed" msgstr "" -#: sm/certchain.c:595 sm/keydb.c:1084 sm/keydb.c:1171 +#: sm/certchain.c:596 sm/keydb.c:1084 sm/keydb.c:1171 #, c-format msgid "failed to get the fingerprint\n" msgstr "" -#: sm/certchain.c:624 +#: sm/certchain.c:625 #, c-format msgid "looking up issuer at external location\n" msgstr "" -#: sm/certchain.c:644 +#: sm/certchain.c:645 #, c-format msgid "number of issuers matching: %d\n" msgstr "" -#: sm/certchain.c:723 dirmngr/ocsp.c:685 +#: sm/certchain.c:724 dirmngr/ocsp.c:685 #, c-format msgid "can't get authorityInfoAccess: %s\n" msgstr "" -#: sm/certchain.c:791 +#: sm/certchain.c:792 #, c-format msgid "looking up issuer from the Dirmngr cache\n" msgstr "" -#: sm/certchain.c:816 +#: sm/certchain.c:817 #, c-format msgid "number of matching certificates: %d\n" msgstr "" -#: sm/certchain.c:819 +#: sm/certchain.c:820 #, c-format msgid "dirmngr cache-only key lookup failed: %s\n" msgstr "" -#: sm/certchain.c:1041 sm/certchain.c:1554 sm/certchain.c:2192 sm/decrypt.c:728 +#: sm/certchain.c:1042 sm/certchain.c:1555 sm/certchain.c:2193 sm/decrypt.c:728 #: sm/encrypt.c:345 sm/import.c:415 sm/keydb.c:1091 sm/keydb.c:1178 #: sm/sign.c:337 sm/verify.c:118 #, c-format msgid "failed to allocate keyDB handle\n" msgstr "" -#: sm/certchain.c:1225 +#: sm/certchain.c:1226 msgid "certificate has been revoked" msgstr "" -#: sm/certchain.c:1240 +#: sm/certchain.c:1241 msgid "the status of the certificate is unknown" msgstr "" -#: sm/certchain.c:1247 +#: sm/certchain.c:1248 #, c-format msgid "please make sure that the \"dirmngr\" is properly installed\n" msgstr "" -#: sm/certchain.c:1253 +#: sm/certchain.c:1254 #, c-format msgid "checking the CRL failed: %s" msgstr "" -#: sm/certchain.c:1282 sm/certchain.c:1350 dirmngr/validate.c:497 +#: sm/certchain.c:1283 sm/certchain.c:1351 dirmngr/validate.c:497 #, c-format msgid "certificate with invalid validity: %s" msgstr "" -#: sm/certchain.c:1297 sm/certchain.c:1382 dirmngr/validate.c:515 +#: sm/certchain.c:1298 sm/certchain.c:1383 dirmngr/validate.c:515 #, c-format msgid "certificate not yet valid" msgstr "" -#: sm/certchain.c:1298 sm/certchain.c:1383 +#: sm/certchain.c:1299 sm/certchain.c:1384 msgid "root certificate not yet valid" msgstr "" -#: sm/certchain.c:1299 sm/certchain.c:1384 +#: sm/certchain.c:1300 sm/certchain.c:1385 msgid "intermediate certificate not yet valid" msgstr "" -#: sm/certchain.c:1312 dirmngr/validate.c:526 +#: sm/certchain.c:1313 dirmngr/validate.c:526 #, c-format msgid "certificate has expired" msgstr "" -#: sm/certchain.c:1313 +#: sm/certchain.c:1314 msgid "root certificate has expired" msgstr "" -#: sm/certchain.c:1314 +#: sm/certchain.c:1315 msgid "intermediate certificate has expired" msgstr "" -#: sm/certchain.c:1356 +#: sm/certchain.c:1357 #, c-format msgid "required certificate attributes missing: %s%s%s" msgstr "" -#: sm/certchain.c:1365 +#: sm/certchain.c:1366 msgid "certificate with invalid validity" msgstr "" -#: sm/certchain.c:1402 +#: sm/certchain.c:1403 msgid "signature not created during lifetime of certificate" msgstr "" -#: sm/certchain.c:1404 +#: sm/certchain.c:1405 msgid "certificate not created during lifetime of issuer" msgstr "" -#: sm/certchain.c:1405 +#: sm/certchain.c:1406 msgid "intermediate certificate not created during lifetime of issuer" msgstr "" -#: sm/certchain.c:1409 +#: sm/certchain.c:1410 #, c-format msgid " ( signature created at " msgstr "" -#: sm/certchain.c:1410 +#: sm/certchain.c:1411 #, c-format msgid " (certificate created at " msgstr "" -#: sm/certchain.c:1413 +#: sm/certchain.c:1414 #, c-format msgid " (certificate valid from " msgstr "" -#: sm/certchain.c:1414 +#: sm/certchain.c:1415 #, c-format msgid " ( issuer valid from " msgstr "" -#: sm/certchain.c:1444 dirmngr/validate.c:577 +#: sm/certchain.c:1445 dirmngr/validate.c:577 #, c-format msgid "fingerprint=%s\n" msgstr "" -#: sm/certchain.c:1453 +#: sm/certchain.c:1454 #, c-format msgid "root certificate has now been marked as trusted\n" msgstr "" -#: sm/certchain.c:1466 +#: sm/certchain.c:1467 #, c-format msgid "interactive marking as trusted not enabled in gpg-agent\n" msgstr "" -#: sm/certchain.c:1472 +#: sm/certchain.c:1473 #, c-format msgid "interactive marking as trusted disabled for this session\n" msgstr "" -#: sm/certchain.c:1531 +#: sm/certchain.c:1532 msgid "WARNING: creation time of signature not known - assuming current time" msgstr "" -#: sm/certchain.c:1595 +#: sm/certchain.c:1596 msgid "no issuer found in certificate" msgstr "" -#: sm/certchain.c:1673 +#: sm/certchain.c:1674 msgid "self-signed certificate has a BAD signature" msgstr "" -#: sm/certchain.c:1742 dirmngr/validate.c:575 +#: sm/certchain.c:1743 dirmngr/validate.c:575 #, c-format msgid "root certificate is not marked trusted" msgstr "" -#: sm/certchain.c:1758 +#: sm/certchain.c:1759 #, c-format msgid "checking the trust list failed: %s\n" msgstr "" -#: sm/certchain.c:1789 sm/import.c:176 sm/keylist.c:1396 dirmngr/validate.c:630 +#: sm/certchain.c:1790 sm/import.c:176 sm/keylist.c:1396 dirmngr/validate.c:630 #, c-format msgid "certificate chain too long\n" msgstr "" -#: sm/certchain.c:1801 dirmngr/validate.c:642 +#: sm/certchain.c:1802 dirmngr/validate.c:642 #, c-format msgid "issuer certificate not found" msgstr "" -#: sm/certchain.c:1834 dirmngr/validate.c:668 +#: sm/certchain.c:1835 dirmngr/validate.c:668 #, c-format msgid "certificate has a BAD signature" msgstr "" -#: sm/certchain.c:1866 dirmngr/validate.c:692 +#: sm/certchain.c:1867 dirmngr/validate.c:692 msgid "found another possible matching CA certificate - trying again" msgstr "" -#: sm/certchain.c:1925 dirmngr/validate.c:717 +#: sm/certchain.c:1926 dirmngr/validate.c:717 #, c-format msgid "certificate chain longer than allowed by CA (%d)" msgstr "" -#: sm/certchain.c:1967 sm/certchain.c:2263 dirmngr/validate.c:747 +#: sm/certchain.c:1968 sm/certchain.c:2264 dirmngr/validate.c:747 #, c-format msgid "certificate is good\n" msgstr "" -#: sm/certchain.c:1968 +#: sm/certchain.c:1969 #, c-format msgid "intermediate certificate is good\n" msgstr "" -#: sm/certchain.c:1969 +#: sm/certchain.c:1970 #, c-format msgid "root certificate is good\n" msgstr "" -#: sm/certchain.c:2151 +#: sm/certchain.c:2152 msgid "switching to chain model" msgstr "" -#: sm/certchain.c:2160 +#: sm/certchain.c:2161 #, c-format msgid "validation model used: %s" msgstr "" diff -Nru gnupg2-2.2.40/po/hu.po gnupg2-2.2.41/po/hu.po --- gnupg2-2.2.40/po/hu.po 2022-10-10 09:58:26.000000000 +0000 +++ gnupg2-2.2.41/po/hu.po 2022-12-09 08:48:34.000000000 +0000 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: gnupg 2.2.20\n" "Report-Msgid-Bugs-To: translations@gnupg.org\n" -"POT-Creation-Date: 2022-10-10 11:58+0200\n" +"POT-Creation-Date: 2022-12-09 09:48+0100\n" "PO-Revision-Date: 2020-06-09 23:10+0200\n" "Last-Translator: Nagy Ferenc László \n" "Language-Team: Hungarian \n" @@ -223,8 +223,8 @@ msgid "ssh keys greater than %d bits are not supported\n" msgstr "%d%s védő algoritmus nem támogatott.\n" -#: agent/command-ssh.c:862 common/dotlock.c:856 g10/card-util.c:947 -#: g10/exec.c:554 g10/export.c:1320 g10/gpg.c:1400 g10/keygen.c:4998 +#: agent/command-ssh.c:862 common/dotlock.c:856 g10/card-util.c:946 +#: g10/exec.c:554 g10/export.c:1335 g10/gpg.c:1409 g10/keygen.c:5052 #: g10/keyring.c:1322 g10/keyring.c:1637 g10/openfile.c:291 g10/sign.c:1008 #: g10/sign.c:1322 g10/tdbio.c:753 #, fuzzy, c-format @@ -232,12 +232,12 @@ msgid "can't create '%s': %s\n" msgstr "Nem tudom létrehozni a(z) \"%s\" állományt: %s.\n" -#: agent/command-ssh.c:874 common/helpfile.c:57 g10/card-util.c:904 +#: agent/command-ssh.c:874 common/helpfile.c:57 g10/card-util.c:903 #: g10/dearmor.c:59 g10/dearmor.c:106 g10/decrypt.c:65 g10/decrypt.c:136 -#: g10/decrypt.c:153 g10/encrypt.c:239 g10/encrypt.c:678 g10/gpg.c:1401 -#: g10/import.c:364 g10/import.c:548 g10/import.c:776 g10/keygen.c:4036 +#: g10/decrypt.c:153 g10/encrypt.c:239 g10/encrypt.c:678 g10/gpg.c:1410 +#: g10/import.c:365 g10/import.c:549 g10/import.c:777 g10/keygen.c:4090 #: g10/keyring.c:1663 g10/openfile.c:195 g10/openfile.c:209 g10/plaintext.c:128 -#: g10/plaintext.c:649 g10/sign.c:990 g10/sign.c:1201 g10/sign.c:1306 +#: g10/plaintext.c:654 g10/sign.c:990 g10/sign.c:1201 g10/sign.c:1306 #: g10/sign.c:1451 g10/tdbdump.c:145 g10/tdbdump.c:153 g10/tdbio.c:758 #: g10/tdbio.c:829 g10/verify.c:96 g10/verify.c:160 sm/gpgsm.c:2160 #: sm/gpgsm.c:2190 sm/gpgsm.c:2228 sm/qualified.c:66 dirmngr/certcache.c:420 @@ -464,34 +464,34 @@ msgid "csh-style command output" msgstr "" -#: agent/gpg-agent.c:185 g10/gpg.c:579 scd/scdaemon.c:126 sm/gpgsm.c:410 +#: agent/gpg-agent.c:185 g10/gpg.c:580 scd/scdaemon.c:126 sm/gpgsm.c:410 #: dirmngr/dirmngr.c:192 #, fuzzy msgid "|FILE|read options from FILE" msgstr "|fájl|bővítő modul betöltése" -#: agent/gpg-agent.c:189 g10/gpg.c:566 scd/scdaemon.c:130 sm/gpgsm.c:259 +#: agent/gpg-agent.c:189 g10/gpg.c:567 scd/scdaemon.c:130 sm/gpgsm.c:259 #: dirmngr/dirmngr.c:196 msgid "Options controlling the diagnostic output" msgstr "" -#: agent/gpg-agent.c:191 g10/gpg.c:568 g10/gpgv.c:78 kbx/kbxutil.c:88 +#: agent/gpg-agent.c:191 g10/gpg.c:569 g10/gpgv.c:78 kbx/kbxutil.c:88 #: scd/scdaemon.c:132 sm/gpgsm.c:261 dirmngr/dirmngr-client.c:70 #: dirmngr/dirmngr.c:198 tools/gpg-connect-agent.c:78 tools/gpgconf.c:110 msgid "verbose" msgstr "bőbeszédű mód" -#: agent/gpg-agent.c:192 g10/gpg.c:570 g10/gpgv.c:79 kbx/kbxutil.c:89 +#: agent/gpg-agent.c:192 g10/gpg.c:571 g10/gpgv.c:79 kbx/kbxutil.c:89 #: scd/scdaemon.c:133 sm/gpgsm.c:263 dirmngr/dirmngr-client.c:71 #: dirmngr/dirmngr.c:199 msgid "be somewhat more quiet" msgstr "még szűkszavúbb mód" -#: agent/gpg-agent.c:200 g10/gpg.c:583 sm/gpgsm.c:276 dirmngr/dirmngr.c:209 +#: agent/gpg-agent.c:200 g10/gpg.c:584 sm/gpgsm.c:276 dirmngr/dirmngr.c:209 msgid "|FILE|write server mode logs to FILE" msgstr "" -#: agent/gpg-agent.c:204 g10/gpg.c:589 scd/scdaemon.c:147 sm/gpgsm.c:283 +#: agent/gpg-agent.c:204 g10/gpg.c:590 scd/scdaemon.c:147 sm/gpgsm.c:283 #: dirmngr/dirmngr.c:213 msgid "Options controlling the configuration" msgstr "" @@ -535,7 +535,7 @@ msgid "enable putty support" msgstr "nem támogatott" -#: agent/gpg-agent.c:237 g10/gpg.c:831 scd/scdaemon.c:175 sm/gpgsm.c:369 +#: agent/gpg-agent.c:237 g10/gpg.c:832 scd/scdaemon.c:175 sm/gpgsm.c:369 msgid "Options controlling the security" msgstr "" @@ -637,7 +637,7 @@ #. reporting address. This is so that we can change the #. reporting address without breaking the translations. #: agent/gpg-agent.c:563 agent/preset-passphrase.c:100 agent/protect-tool.c:155 -#: g10/gpg.c:1108 g10/gpgv.c:149 kbx/kbxutil.c:113 scd/scdaemon.c:313 +#: g10/gpg.c:1117 g10/gpgv.c:149 kbx/kbxutil.c:113 scd/scdaemon.c:313 #: sm/gpgsm.c:600 dirmngr/dirmngr-client.c:168 dirmngr/dirmngr.c:458 #: tools/gpg-connect-agent.c:205 tools/gpgconf.c:154 #: tools/gpg-check-pattern.c:143 @@ -656,27 +656,27 @@ "Secret key management for @GNUPG@\n" msgstr "" -#: agent/gpg-agent.c:619 g10/gpg.c:1304 scd/scdaemon.c:385 sm/gpgsm.c:748 +#: agent/gpg-agent.c:619 g10/gpg.c:1313 scd/scdaemon.c:385 sm/gpgsm.c:748 #: dirmngr/dirmngr.c:542 #, c-format msgid "invalid debug-level '%s' given\n" msgstr "" -#: agent/gpg-agent.c:988 g10/gpg.c:3810 g10/gpg.c:3834 sm/gpgsm.c:1585 +#: agent/gpg-agent.c:988 g10/gpg.c:3830 g10/gpg.c:3854 sm/gpgsm.c:1585 #: sm/gpgsm.c:1591 #, c-format msgid "selected digest algorithm is invalid\n" msgstr "A kiválasztott kivonatoló algoritmus érvénytelen!\n" #: agent/gpg-agent.c:1216 agent/gpg-agent.c:2029 common/argparse.c:1766 -#: common/argparse.c:1858 g10/gpg.c:2517 scd/scdaemon.c:547 sm/gpgsm.c:1007 +#: common/argparse.c:1858 g10/gpg.c:2526 scd/scdaemon.c:547 sm/gpgsm.c:1007 #: dirmngr/dirmngr.c:1081 dirmngr/dirmngr.c:1937 #, fuzzy, c-format #| msgid "reading options from `%s'\n" msgid "reading options from '%s'\n" msgstr "Az opciókat a \"%s\" állományból olvasom.\n" -#: agent/gpg-agent.c:1332 g10/gpg.c:3751 scd/scdaemon.c:671 sm/gpgsm.c:1522 +#: agent/gpg-agent.c:1332 g10/gpg.c:3769 scd/scdaemon.c:671 sm/gpgsm.c:1522 #: dirmngr/dirmngr.c:1190 tools/gpg-connect-agent.c:1244 tools/gpgconf.c:677 #, fuzzy, c-format #| msgid "WARNING: \"%s\" is a deprecated option\n" @@ -809,7 +809,7 @@ "Password cache maintenance\n" msgstr "" -#: agent/protect-tool.c:108 g10/gpg.c:441 kbx/kbxutil.c:71 sm/gpgsm.c:210 +#: agent/protect-tool.c:108 g10/gpg.c:442 kbx/kbxutil.c:71 sm/gpgsm.c:210 #: dirmngr/dirmngr.c:171 tools/gpgconf.c:80 msgid "" "@Commands:\n" @@ -1029,7 +1029,7 @@ msgid "secret key parts are not available\n" msgstr "Titkos kulcsrészek nem állnak rendelkezésre.\n" -#: agent/cvt-openpgp.c:344 g10/card-util.c:1556 +#: agent/cvt-openpgp.c:344 g10/card-util.c:1555 #, fuzzy, c-format #| msgid "protection algorithm %d%s is not supported\n" msgid "public key algorithm %d (%s) is not supported\n" @@ -1189,7 +1189,7 @@ msgid "out of core while allocating %lu bytes" msgstr "" -#: common/miscellaneous.c:115 g10/card-util.c:911 tools/no-libgcrypt.c:30 +#: common/miscellaneous.c:115 g10/card-util.c:910 tools/no-libgcrypt.c:30 #, fuzzy, c-format msgid "error allocating enough memory: %s\n" msgstr "Hiba a(z) \"%s\" kulcskarika létrehozásakor: %s\n" @@ -1312,7 +1312,7 @@ msgstr "Páncél: %s\n" #: common/audit.c:774 common/audit.c:776 common/audit.c:921 common/audit.c:923 -#: scd/app-openpgp.c:3557 +#: scd/app-openpgp.c:3566 #, fuzzy, c-format msgid "unsupported algorithm: %s" msgstr "" @@ -1396,12 +1396,12 @@ msgid "Root certificate trustworthy" msgstr "rossz igazolás" -#: common/audit.c:1112 sm/certchain.c:1235 +#: common/audit.c:1112 sm/certchain.c:1236 #, fuzzy msgid "no CRL found for certificate" msgstr "rossz igazolás" -#: common/audit.c:1115 sm/certchain.c:1245 +#: common/audit.c:1115 sm/certchain.c:1246 #, fuzzy msgid "the available CRL is too old" msgstr "Kulcs található: " @@ -1544,7 +1544,7 @@ msgid "missing argument for option \"%.50s\"\n" msgstr "" -#: common/argparse.c:558 g10/gpg.c:3525 +#: common/argparse.c:558 g10/gpg.c:3543 #, fuzzy, c-format msgid "invalid argument for option \"%.50s\"\n" msgstr "Érvénytelen import opciók!\n" @@ -1645,92 +1645,92 @@ msgid "%s is too old (need %s, have %s)\n" msgstr "" -#: g10/armor.c:423 +#: g10/armor.c:424 #, c-format msgid "armor: %s\n" msgstr "Páncél: %s\n" -#: g10/armor.c:462 +#: g10/armor.c:463 #, c-format msgid "invalid armor header: " msgstr "Érvénytelen páncélfejléc: " -#: g10/armor.c:473 +#: g10/armor.c:474 #, c-format msgid "armor header: " msgstr "Páncélfejléc: " -#: g10/armor.c:486 +#: g10/armor.c:487 #, c-format msgid "invalid clearsig header\n" msgstr "Érvénytelen aláírásfejléc!\n" -#: g10/armor.c:499 +#: g10/armor.c:500 #, fuzzy, c-format msgid "unknown armor header: " msgstr "Páncélfejléc: " -#: g10/armor.c:552 +#: g10/armor.c:553 #, c-format msgid "nested clear text signatures\n" msgstr "Egymásba ágyazott olvashatószöveg-aláírások!\n" -#: g10/armor.c:687 +#: g10/armor.c:688 #, fuzzy, c-format msgid "unexpected armor: " msgstr "Váratlan páncél:" -#: g10/armor.c:700 +#: g10/armor.c:701 #, c-format msgid "invalid dash escaped line: " msgstr "Érvénytelen kötőjeles sor: " -#: g10/armor.c:872 g10/armor.c:1492 +#: g10/armor.c:873 g10/armor.c:1493 #, fuzzy, c-format msgid "invalid radix64 character %02X skipped\n" msgstr "Kihagytam a %02x kódú érvénytelen radix64 karaktert.\n" -#: g10/armor.c:915 +#: g10/armor.c:916 #, c-format msgid "premature eof (no CRC)\n" msgstr "Korai állományvég (nincs CRC).\n" -#: g10/armor.c:949 +#: g10/armor.c:950 #, c-format msgid "premature eof (in CRC)\n" msgstr "Korai állományvég (a CRC-ben).\n" -#: g10/armor.c:957 +#: g10/armor.c:958 #, c-format msgid "malformed CRC\n" msgstr "Hibás formájú CRC.\n" -#: g10/armor.c:961 g10/armor.c:1529 +#: g10/armor.c:962 g10/armor.c:1530 #, fuzzy, c-format msgid "CRC error; %06lX - %06lX\n" msgstr "CRC hiba; %06lx - %06lx\n" -#: g10/armor.c:981 +#: g10/armor.c:982 #, fuzzy, c-format msgid "premature eof (in trailer)\n" msgstr "Korai állományvég (a lezárásban).\n" -#: g10/armor.c:985 +#: g10/armor.c:986 #, c-format msgid "error in trailer line\n" msgstr "Hiba a záró sorban!\n" -#: g10/armor.c:1305 +#: g10/armor.c:1306 #, c-format msgid "no valid OpenPGP data found.\n" msgstr "Nem találtam érvényes OpenPGP adatot.\n" -#: g10/armor.c:1310 +#: g10/armor.c:1311 #, c-format msgid "invalid armor: line longer than %d characters\n" msgstr "Érvénytelen páncél: %d karakternél hosszabb sor.\n" -#: g10/armor.c:1314 +#: g10/armor.c:1315 #, c-format msgid "" "quoted printable character in armor - probably a buggy MTA has been used\n" @@ -1879,24 +1879,24 @@ msgid "server uses an invalid certificate" msgstr "visszavonási igazolás készítése" -#: g10/call-dirmngr.c:462 g10/gpg.c:4458 +#: g10/call-dirmngr.c:462 g10/gpg.c:4478 #, fuzzy, c-format #| msgid "armor: %s\n" msgid "Note: %s\n" msgstr "Páncél: %s\n" -#: g10/card-util.c:86 g10/card-util.c:366 g10/card-util.c:1918 +#: g10/card-util.c:86 g10/card-util.c:366 g10/card-util.c:1917 #, fuzzy, c-format msgid "OpenPGP card not available: %s\n" msgstr "titkos kulcs nem áll rendelkezésre" -#: g10/card-util.c:91 g10/card-util.c:1924 +#: g10/card-util.c:91 g10/card-util.c:1923 #, c-format msgid "OpenPGP card no. %s detected\n" msgstr "" -#: g10/card-util.c:97 g10/card-util.c:2253 g10/delkey.c:160 g10/keyedit.c:1423 -#: g10/keygen.c:4466 g10/revoke.c:214 g10/revoke.c:636 +#: g10/card-util.c:97 g10/card-util.c:2252 g10/delkey.c:160 g10/keyedit.c:1423 +#: g10/keygen.c:4520 g10/revoke.c:214 g10/revoke.c:636 #, fuzzy, c-format msgid "can't do this in batch mode\n" msgstr "Nem tudom ezt megcsinálni kötegelt módban!\n" @@ -1906,14 +1906,14 @@ msgid "This command is only available for version 2 cards\n" msgstr "Ez a parancs %s módban nem engedélyezett.\n" -#: g10/card-util.c:107 scd/app-openpgp.c:2866 +#: g10/card-util.c:107 scd/app-openpgp.c:2869 #, fuzzy, c-format msgid "Reset Code not or not anymore available\n" msgstr "Titkos kulcsrészek nem állnak rendelkezésre.\n" -#: g10/card-util.c:140 g10/card-util.c:1442 g10/card-util.c:1704 -#: g10/card-util.c:1796 g10/keyedit.c:394 g10/keyedit.c:415 g10/keyedit.c:429 -#: g10/keygen.c:1808 g10/keygen.c:1980 g10/keygen.c:2186 g10/keygen.c:2477 +#: g10/card-util.c:140 g10/card-util.c:1441 g10/card-util.c:1703 +#: g10/card-util.c:1795 g10/keyedit.c:394 g10/keyedit.c:415 g10/keyedit.c:429 +#: g10/keygen.c:1862 g10/keygen.c:2034 g10/keygen.c:2240 g10/keygen.c:2531 #: sm/certreqgen-ui.c:165 sm/certreqgen-ui.c:291 sm/certreqgen-ui.c:325 msgid "Your selection? " msgstr "Mit választ? " @@ -1964,13 +1964,13 @@ msgid "Error: Combined name too long (limit is %d characters).\n" msgstr "" -#: g10/card-util.c:826 +#: g10/card-util.c:825 #, fuzzy msgid "URL to retrieve public key: " msgstr "Nincs hozzá tartozó nyilvános kulcs: %s\n" -#: g10/card-util.c:920 g10/decrypt-data.c:509 g10/import.c:399 g10/import.c:746 -#: g10/import.c:798 dirmngr/crlcache.c:655 dirmngr/crlcache.c:660 +#: g10/card-util.c:919 g10/decrypt-data.c:509 g10/import.c:400 g10/import.c:747 +#: g10/import.c:799 dirmngr/crlcache.c:655 dirmngr/crlcache.c:660 #: dirmngr/crlcache.c:914 dirmngr/crlcache.c:920 dirmngr/dirmngr.c:1748 #: tools/gpgconf.c:483 tools/gpgconf.c:529 #, fuzzy, c-format @@ -1978,174 +1978,174 @@ msgid "error reading '%s': %s\n" msgstr "Hiba \"%s\" olvasásakor: %s\n" -#: g10/card-util.c:953 g10/decrypt-data.c:512 g10/export.c:2467 +#: g10/card-util.c:952 g10/decrypt-data.c:512 g10/export.c:2586 #: dirmngr/crlcache.c:925 #, fuzzy, c-format msgid "error writing '%s': %s\n" msgstr "Hiba a \"%s\" kulcskarika írásakor: %s\n" -#: g10/card-util.c:980 +#: g10/card-util.c:979 msgid "Login data (account name): " msgstr "" -#: g10/card-util.c:1018 +#: g10/card-util.c:1017 msgid "Private DO data: " msgstr "" -#: g10/card-util.c:1103 +#: g10/card-util.c:1102 #, fuzzy msgid "Language preferences: " msgstr "preferenciák frissítése" -#: g10/card-util.c:1111 +#: g10/card-util.c:1110 #, fuzzy msgid "Error: invalid length of preference string.\n" msgstr "Érvénytelen karakter a preferenciák között!\n" -#: g10/card-util.c:1120 +#: g10/card-util.c:1119 #, fuzzy msgid "Error: invalid characters in preference string.\n" msgstr "Érvénytelen karakter a preferenciák között!\n" -#: g10/card-util.c:1142 +#: g10/card-util.c:1141 msgid "Salutation (M = Mr., F = Ms., or space): " msgstr "" -#: g10/card-util.c:1156 +#: g10/card-util.c:1155 #, fuzzy msgid "Error: invalid response.\n" msgstr "Hiba: Érvénytelen ujjlenyomat.\n" -#: g10/card-util.c:1178 +#: g10/card-util.c:1177 #, fuzzy msgid "CA fingerprint: " msgstr "megmutatja az ujjlenyomatot" -#: g10/card-util.c:1201 +#: g10/card-util.c:1200 #, fuzzy msgid "Error: invalid formatted fingerprint.\n" msgstr "Hiba: Érvénytelen ujjlenyomat.\n" -#: g10/card-util.c:1252 +#: g10/card-util.c:1251 #, fuzzy, c-format msgid "key operation not possible: %s\n" msgstr "Kulcsgenerálás sikertelen: %s\n" -#: g10/card-util.c:1253 +#: g10/card-util.c:1252 #, fuzzy msgid "not an OpenPGP card" msgstr "Nem találtam érvényes OpenPGP adatot.\n" -#: g10/card-util.c:1266 g10/keygen.c:4486 g10/keygen.c:5562 +#: g10/card-util.c:1265 g10/keygen.c:4540 g10/keygen.c:5616 #, fuzzy, c-format msgid "error getting current key info: %s\n" msgstr "Hiba a(z) \"%s\" titkoskulcs-karika írásakor: %s.\n" -#: g10/card-util.c:1351 +#: g10/card-util.c:1350 msgid "Replace existing key? (y/N) " msgstr "" -#: g10/card-util.c:1368 +#: g10/card-util.c:1367 msgid "" "Note: There is no guarantee that the card supports the requested size.\n" " If the key generation does not succeed, please check the\n" " documentation of your card to see what sizes are allowed.\n" msgstr "" -#: g10/card-util.c:1390 g10/keygen.c:2363 sm/certreqgen-ui.c:179 +#: g10/card-util.c:1389 g10/keygen.c:2417 sm/certreqgen-ui.c:179 #, fuzzy, c-format msgid "What keysize do you want? (%u) " msgstr "Milyen kulcsméretet szeretne? (1024) " -#: g10/card-util.c:1400 g10/keygen.c:2286 g10/keygen.c:2318 +#: g10/card-util.c:1399 g10/keygen.c:2340 g10/keygen.c:2372 #: sm/certreqgen-ui.c:194 #, c-format msgid "rounded up to %u bits\n" msgstr "Felkerekítve %u bitre.\n" -#: g10/card-util.c:1408 g10/keygen.c:2371 sm/certreqgen-ui.c:184 +#: g10/card-util.c:1407 g10/keygen.c:2425 sm/certreqgen-ui.c:184 #, c-format msgid "%s keysizes must be in the range %u-%u\n" msgstr "" -#: g10/card-util.c:1427 +#: g10/card-util.c:1426 msgid "Changing card key attribute for: " msgstr "" -#: g10/card-util.c:1429 +#: g10/card-util.c:1428 #, fuzzy msgid "Signature key\n" msgstr "Az aláírás lejárt: %s.\n" -#: g10/card-util.c:1431 +#: g10/card-util.c:1430 #, fuzzy msgid "Encryption key\n" msgstr " (%d) RSA (csak titkosítás)\n" -#: g10/card-util.c:1433 +#: g10/card-util.c:1432 msgid "Authentication key\n" msgstr "" -#: g10/card-util.c:1435 g10/keygen.c:1926 sm/certreqgen-ui.c:157 +#: g10/card-util.c:1434 g10/keygen.c:1980 sm/certreqgen-ui.c:157 msgid "Please select what kind of key you want:\n" msgstr "Kérem, adja meg, milyen kulcsot kíván:\n" -#: g10/card-util.c:1436 sm/certreqgen-ui.c:158 +#: g10/card-util.c:1435 sm/certreqgen-ui.c:158 #, fuzzy, c-format msgid " (%d) RSA\n" msgstr " (%d) RSA (csak aláírás)\n" -#: g10/card-util.c:1437 +#: g10/card-util.c:1436 #, fuzzy, c-format msgid " (%d) ECC\n" msgstr " (%d) DSA és ElGamal (alapértelmezés)\n" -#: g10/card-util.c:1449 g10/card-util.c:1716 g10/card-util.c:1816 -#: g10/keyedit.c:900 g10/keygen.c:1834 g10/keygen.c:1862 g10/keygen.c:1987 -#: g10/keygen.c:2222 g10/keygen.c:2505 g10/revoke.c:838 +#: g10/card-util.c:1448 g10/card-util.c:1715 g10/card-util.c:1815 +#: g10/keyedit.c:900 g10/keygen.c:1888 g10/keygen.c:1916 g10/keygen.c:2041 +#: g10/keygen.c:2276 g10/keygen.c:2559 g10/revoke.c:838 msgid "Invalid selection.\n" msgstr "Érvénytelen választás.\n" -#: g10/card-util.c:1522 +#: g10/card-util.c:1521 #, c-format msgid "The card will now be re-configured to generate a key of %u bits\n" msgstr "" -#: g10/card-util.c:1527 +#: g10/card-util.c:1526 #, c-format msgid "The card will now be re-configured to generate a key of type: %s\n" msgstr "" -#: g10/card-util.c:1563 +#: g10/card-util.c:1562 #, fuzzy, c-format msgid "error changing key attribute for key %d: %s\n" msgstr "Hiba %s-ra/-re küldéskor: %s\n" -#: g10/card-util.c:1579 g10/card-util.c:2106 +#: g10/card-util.c:1578 g10/card-util.c:2105 #, fuzzy, c-format msgid "error getting card info: %s\n" msgstr "Hiba a(z) \"%s\" titkoskulcs-karika írásakor: %s.\n" -#: g10/card-util.c:1585 g10/card-util.c:1930 g10/card-util.c:2112 +#: g10/card-util.c:1584 g10/card-util.c:1929 g10/card-util.c:2111 #, fuzzy, c-format #| msgid "This command is not allowed while in %s mode.\n" msgid "This command is not supported by this card\n" msgstr "Ez a parancs %s módban nem engedélyezett.\n" -#: g10/card-util.c:1631 +#: g10/card-util.c:1630 msgid "Make off-card backup of encryption key? (Y/n) " msgstr "" -#: g10/card-util.c:1645 +#: g10/card-util.c:1644 #, fuzzy, c-format msgid "Note: keys are already stored on the card!\n" msgstr "Kihagytam: titkos kulcs már jelen van.\n" -#: g10/card-util.c:1648 +#: g10/card-util.c:1647 msgid "Replace existing keys? (y/N) " msgstr "" -#: g10/card-util.c:1660 +#: g10/card-util.c:1659 #, c-format msgid "" "Please note that the factory settings of the PINs are\n" @@ -2153,160 +2153,160 @@ "You should change them using the command --change-pin\n" msgstr "" -#: g10/card-util.c:1695 +#: g10/card-util.c:1694 #, fuzzy msgid "Please select the type of key to generate:\n" msgstr "Kérem, adja meg, milyen kulcsot kíván:\n" -#: g10/card-util.c:1697 g10/card-util.c:1787 +#: g10/card-util.c:1696 g10/card-util.c:1786 #, fuzzy msgid " (1) Signature key\n" msgstr "Az aláírás lejárt: %s.\n" -#: g10/card-util.c:1698 g10/card-util.c:1789 +#: g10/card-util.c:1697 g10/card-util.c:1788 #, fuzzy msgid " (2) Encryption key\n" msgstr " (%d) RSA (csak titkosítás)\n" -#: g10/card-util.c:1699 g10/card-util.c:1791 +#: g10/card-util.c:1698 g10/card-util.c:1790 msgid " (3) Authentication key\n" msgstr "" -#: g10/card-util.c:1784 +#: g10/card-util.c:1783 #, fuzzy msgid "Please select where to store the key:\n" msgstr "Kérem, válassza ki a visszavonás okát:\n" -#: g10/card-util.c:1830 +#: g10/card-util.c:1829 #, fuzzy, c-format msgid "KEYTOCARD failed: %s\n" msgstr "Frissítés sikertelen: %s.\n" -#: g10/card-util.c:1935 +#: g10/card-util.c:1934 #, fuzzy, c-format msgid "Note: This command destroys all keys stored on the card!\n" msgstr "Kihagytam: titkos kulcs már jelen van.\n" -#: g10/card-util.c:1938 +#: g10/card-util.c:1937 #, fuzzy msgid "Continue? (y/N) " msgstr "Valóban aláírja? " -#: g10/card-util.c:1943 +#: g10/card-util.c:1942 msgid "Really do a factory reset? (enter \"yes\") " msgstr "" -#: g10/card-util.c:2129 +#: g10/card-util.c:2128 #, fuzzy, c-format msgid "error for setup KDF: %s\n" msgstr "Hiba \"%s\" olvasásakor: %s\n" -#: g10/card-util.c:2158 g10/keyedit.c:1260 +#: g10/card-util.c:2157 g10/keyedit.c:1260 msgid "quit this menu" msgstr "kilépés ebből a menüből" -#: g10/card-util.c:2160 +#: g10/card-util.c:2159 #, fuzzy msgid "show admin commands" msgstr "Egymásnak ellentmondó parancsok!\n" -#: g10/card-util.c:2161 g10/keyedit.c:1263 +#: g10/card-util.c:2160 g10/keyedit.c:1263 msgid "show this help" msgstr "megmutatja ezt a súgót" -#: g10/card-util.c:2163 +#: g10/card-util.c:2162 #, fuzzy msgid "list all available data" msgstr "Kulcs található: " -#: g10/card-util.c:2166 +#: g10/card-util.c:2165 msgid "change card holder's name" msgstr "" -#: g10/card-util.c:2167 +#: g10/card-util.c:2166 msgid "change URL to retrieve key" msgstr "" -#: g10/card-util.c:2168 +#: g10/card-util.c:2167 msgid "fetch the key specified in the card URL" msgstr "" -#: g10/card-util.c:2169 +#: g10/card-util.c:2168 #, fuzzy msgid "change the login name" msgstr "lejárat megváltoztatása" -#: g10/card-util.c:2170 +#: g10/card-util.c:2169 #, fuzzy msgid "change the language preferences" msgstr "kulcstulajdonos megbízhatóságának beállítása" -#: g10/card-util.c:2171 +#: g10/card-util.c:2170 msgid "change card holder's salutation" msgstr "" -#: g10/card-util.c:2173 +#: g10/card-util.c:2172 #, fuzzy msgid "change a CA fingerprint" msgstr "megmutatja az ujjlenyomatot" -#: g10/card-util.c:2174 +#: g10/card-util.c:2173 msgid "toggle the signature force PIN flag" msgstr "" -#: g10/card-util.c:2175 +#: g10/card-util.c:2174 #, fuzzy msgid "generate new keys" msgstr "új kulcspár létrehozása" -#: g10/card-util.c:2176 +#: g10/card-util.c:2175 msgid "menu to change or unblock the PIN" msgstr "" -#: g10/card-util.c:2177 +#: g10/card-util.c:2176 msgid "verify the PIN and list all data" msgstr "" -#: g10/card-util.c:2178 +#: g10/card-util.c:2177 msgid "unblock the PIN using a Reset Code" msgstr "" -#: g10/card-util.c:2179 +#: g10/card-util.c:2178 msgid "destroy all keys and data" msgstr "" -#: g10/card-util.c:2180 +#: g10/card-util.c:2179 #, fuzzy #| msgid "|NAME|use NAME as default recipient" msgid "setup KDF for PIN authentication" msgstr "|NÉV|NÉV használata alapértelmezett címzettként" -#: g10/card-util.c:2181 +#: g10/card-util.c:2180 #, fuzzy #| msgid "change the ownertrust" msgid "change the key attribute" msgstr "kulcstulajdonos megbízhatóságának beállítása" -#: g10/card-util.c:2305 +#: g10/card-util.c:2304 msgid "gpg/card> " msgstr "" -#: g10/card-util.c:2346 +#: g10/card-util.c:2345 #, fuzzy msgid "Admin-only command\n" msgstr "Egymásnak ellentmondó parancsok!\n" -#: g10/card-util.c:2377 +#: g10/card-util.c:2376 #, fuzzy msgid "Admin commands are allowed\n" msgstr "Egymásnak ellentmondó parancsok!\n" -#: g10/card-util.c:2379 +#: g10/card-util.c:2378 #, fuzzy msgid "Admin commands are not allowed\n" msgstr "Írom a titkos kulcsot a %s állományba.\n" -#: g10/card-util.c:2482 g10/keyedit.c:2229 +#: g10/card-util.c:2481 g10/keyedit.c:2229 msgid "Invalid command (try \"help\")\n" msgstr "Érvénytelen parancs! (Próbálja a súgót: \"help\".)\n" @@ -2315,22 +2315,22 @@ msgid "--output doesn't work for this command\n" msgstr "Az --output opció nem működik ehhez a parancshoz.\n" -#: g10/decrypt.c:247 g10/gpg.c:5155 g10/keyring.c:399 g10/keyring.c:750 +#: g10/decrypt.c:247 g10/gpg.c:5175 g10/keyring.c:399 g10/keyring.c:750 #, fuzzy, c-format #| msgid "can't open `%s'\n" msgid "can't open '%s'\n" msgstr "Nem tudom megnyitni %s-t!\n" -#: g10/delkey.c:83 g10/export.c:1947 g10/export.c:2230 g10/export.c:2351 -#: g10/getkey.c:2108 g10/gpg.c:5100 g10/keyedit.c:1445 g10/keyedit.c:2335 +#: g10/delkey.c:83 g10/export.c:2035 g10/export.c:2349 g10/export.c:2470 +#: g10/getkey.c:2108 g10/gpg.c:5120 g10/keyedit.c:1445 g10/keyedit.c:2335 #: g10/keyedit.c:2637 g10/keyedit.c:4600 g10/keylist.c:693 g10/keyserver.c:1092 #: g10/revoke.c:230 g10/tofu.c:2165 #, fuzzy, c-format msgid "key \"%s\" not found: %s\n" msgstr "\"%s\" kulcs nem található: %s\n" -#: g10/delkey.c:92 g10/export.c:2015 g10/getkey.c:2116 g10/getkey.c:4517 -#: g10/gpg.c:5109 g10/keyedit.c:2308 g10/keyserver.c:1110 g10/revoke.c:236 +#: g10/delkey.c:92 g10/export.c:2103 g10/getkey.c:2116 g10/getkey.c:4517 +#: g10/gpg.c:5129 g10/keyedit.c:2308 g10/keyserver.c:1110 g10/revoke.c:236 #: g10/revoke.c:663 g10/tofu.c:2173 #, c-format msgid "error reading keyblock: %s\n" @@ -2452,14 +2452,14 @@ msgid "WARNING: '%s' is an empty file\n" msgstr "FIGYELEM: A(z) \"%s\" állomány üres.\n" -#: g10/encrypt.c:446 g10/encrypt.c:521 g10/decrypt-data.c:266 g10/gpg.c:3959 -#: g10/gpg.c:3999 sm/decrypt.c:826 sm/encrypt.c:416 sm/gpgsm.c:1609 +#: g10/encrypt.c:446 g10/encrypt.c:521 g10/decrypt-data.c:266 g10/gpg.c:3979 +#: g10/gpg.c:4019 sm/decrypt.c:826 sm/encrypt.c:416 sm/gpgsm.c:1609 #, fuzzy, c-format msgid "cipher algorithm '%s' may not be used in %s mode\n" msgstr "" "Lehet, hogy nem használhatja \"%s\" rejtjelező algoritmust %s módban!\n" -#: g10/encrypt.c:455 g10/gpg.c:3965 g10/gpg.c:4011 g10/sig-check.c:175 +#: g10/encrypt.c:455 g10/gpg.c:3985 g10/gpg.c:4031 g10/sig-check.c:175 #: g10/sign.c:391 sm/gpgsm.c:1619 sm/gpgsm.c:1629 sm/sign.c:478 sm/verify.c:506 #, fuzzy, c-format msgid "digest algorithm '%s' may not be used in %s mode\n" @@ -2579,69 +2579,75 @@ msgid "WARNING: unable to remove temp directory '%s': %s\n" msgstr "FIGYELEM: nem tudom törölni a \"%s\" átmeneti könyvtárat: %s\n" -#: g10/export.c:119 +#: g10/export.c:124 #, fuzzy msgid "export signatures that are marked as local-only" msgstr "" "\n" "Az aláírást \"nem visszavonhatónak\" jelöljük.\n" -#: g10/export.c:121 +#: g10/export.c:126 msgid "export attribute user IDs (generally photo IDs)" msgstr "" -#: g10/export.c:123 +#: g10/export.c:128 #, fuzzy msgid "export revocation keys marked as \"sensitive\"" msgstr "Nem találtam visszavonó kulcsot a következőhöz: \"%s\".\n" -#: g10/export.c:125 +#: g10/export.c:130 #, fuzzy msgid "remove unusable parts from key during export" msgstr "használhatatlan titkos kulcs" -#: g10/export.c:127 +#: g10/export.c:132 msgid "remove as much as possible from key during export" msgstr "" -#: g10/export.c:133 +#: g10/export.c:138 +#, fuzzy +#| msgid "generate a revocation certificate" +msgid "export only revocation certificates" +msgstr "visszavonási igazolás készítése" + +#: g10/export.c:141 msgid "use the GnuPG key backup format" msgstr "" -#: g10/export.c:1291 +#: g10/export.c:1306 #, fuzzy #| msgid "%s: skipped: %s\n" msgid " - skipped" msgstr "%s: kihagyva: %s\n" -#: g10/export.c:1324 g10/import.c:2085 g10/openfile.c:200 g10/openfile.c:294 +#: g10/export.c:1339 g10/import.c:2089 g10/openfile.c:200 g10/openfile.c:294 #: g10/sign.c:1012 g10/sign.c:1326 #, fuzzy, c-format #| msgid "writing to `%s'\n" msgid "writing to '%s'\n" msgstr "Írok a \"%s\" állományba.\n" -#: g10/export.c:1769 +#: g10/export.c:1784 #, fuzzy, c-format msgid "key %s: key material on-card - skipped\n" msgstr "%08lX kulcs: Alkulcsaláírás rossz helyen - kihagytam.\n" -#: g10/export.c:1964 +#: g10/export.c:2052 #, fuzzy, c-format msgid "exporting secret keys not allowed\n" msgstr "Írom a titkos kulcsot a %s állományba.\n" -#: g10/export.c:2041 +#: g10/export.c:2129 #, fuzzy, c-format msgid "key %s: PGP 2.x style key - skipped\n" msgstr "%08lX kulcs: PGP 2.x stílusú kulcs - kihagytam.\n" -#: g10/export.c:2135 +#: g10/export.c:2254 #, c-format msgid "WARNING: nothing exported\n" msgstr "FIGYELEM: Semmit sem exportáltam.\n" -#: g10/export.c:2432 g10/plaintext.c:153 g10/plaintext.c:162 +#: g10/export.c:2551 g10/plaintext.c:153 g10/plaintext.c:162 #: g10/plaintext.c:168 g10/plaintext.c:191 #, fuzzy, c-format #| msgid "error creating `%s': %s\n" @@ -2712,297 +2718,297 @@ msgid "using subkey %s instead of primary key %s\n" msgstr "A %08lX másodlagos kulcsot használjuk a %08lX elsődleges helyett.\n" -#: g10/getkey.c:4446 g10/gpg.c:2137 +#: g10/getkey.c:4446 g10/gpg.c:2146 #, fuzzy, c-format msgid "valid values for option '%s':\n" msgstr "Érvénytelen import opciók!\n" -#: g10/gpg.c:443 sm/gpgsm.c:212 +#: g10/gpg.c:444 sm/gpgsm.c:212 #, fuzzy msgid "make a signature" msgstr "különálló aláírás készítése" -#: g10/gpg.c:444 +#: g10/gpg.c:445 #, fuzzy msgid "make a clear text signature" msgstr "|[fájl]|olvasható szöveg aláírása" -#: g10/gpg.c:446 sm/gpgsm.c:214 +#: g10/gpg.c:447 sm/gpgsm.c:214 msgid "make a detached signature" msgstr "különálló aláírás készítése" -#: g10/gpg.c:447 sm/gpgsm.c:215 +#: g10/gpg.c:448 sm/gpgsm.c:215 msgid "encrypt data" msgstr "adat titkosítása" -#: g10/gpg.c:449 +#: g10/gpg.c:450 msgid "encryption only with symmetric cipher" msgstr "titkosítás csak szimmetrikus rejtjelezővel" -#: g10/gpg.c:451 sm/gpgsm.c:217 +#: g10/gpg.c:452 sm/gpgsm.c:217 msgid "decrypt data (default)" msgstr "adat visszafejtése (alapértelmezés)" -#: g10/gpg.c:453 sm/gpgsm.c:218 +#: g10/gpg.c:454 sm/gpgsm.c:218 msgid "verify a signature" msgstr "aláírás ellenőrzése" -#: g10/gpg.c:455 sm/gpgsm.c:219 +#: g10/gpg.c:456 sm/gpgsm.c:219 msgid "list keys" msgstr "kulcsok listázása" -#: g10/gpg.c:457 +#: g10/gpg.c:458 msgid "list keys and signatures" msgstr "kulcsok és aláírások listázása" -#: g10/gpg.c:460 +#: g10/gpg.c:461 #, fuzzy msgid "list and check key signatures" msgstr "kulcsaláírások ellenőrzése" -#: g10/gpg.c:462 sm/gpgsm.c:224 +#: g10/gpg.c:463 sm/gpgsm.c:224 msgid "list keys and fingerprints" msgstr "kulcsok és ujjlenyomatok listázása" -#: g10/gpg.c:463 sm/gpgsm.c:222 +#: g10/gpg.c:464 sm/gpgsm.c:222 msgid "list secret keys" msgstr "titkos kulcsok listázása" -#: g10/gpg.c:465 sm/gpgsm.c:225 +#: g10/gpg.c:466 sm/gpgsm.c:225 msgid "generate a new key pair" msgstr "új kulcspár létrehozása" -#: g10/gpg.c:468 +#: g10/gpg.c:469 #, fuzzy #| msgid "generate a new key pair" msgid "quickly generate a new key pair" msgstr "új kulcspár létrehozása" -#: g10/gpg.c:471 +#: g10/gpg.c:472 #, fuzzy #| msgid "generate a new key pair" msgid "quickly add a new user-id" msgstr "új kulcspár létrehozása" -#: g10/gpg.c:476 +#: g10/gpg.c:477 #, fuzzy #| msgid "generate a new key pair" msgid "quickly revoke a user-id" msgstr "új kulcspár létrehozása" -#: g10/gpg.c:479 +#: g10/gpg.c:480 #, fuzzy #| msgid "generate a new key pair" msgid "quickly set a new expiration date" msgstr "új kulcspár létrehozása" -#: g10/gpg.c:482 +#: g10/gpg.c:483 msgid "full featured key pair generation" msgstr "" -#: g10/gpg.c:485 +#: g10/gpg.c:486 msgid "generate a revocation certificate" msgstr "visszavonási igazolás készítése" -#: g10/gpg.c:488 sm/gpgsm.c:228 +#: g10/gpg.c:489 sm/gpgsm.c:228 msgid "remove keys from the public keyring" msgstr "kulcsok eltávolítása a nyilvánoskulcs-karikáról" -#: g10/gpg.c:490 +#: g10/gpg.c:491 msgid "remove keys from the secret keyring" msgstr "kulcsok eltávolítása a titkoskulcs-karikáról" -#: g10/gpg.c:492 +#: g10/gpg.c:493 #, fuzzy #| msgid "sign a key" msgid "quickly sign a key" msgstr "kulcs aláírása" -#: g10/gpg.c:494 +#: g10/gpg.c:495 #, fuzzy #| msgid "sign a key locally" msgid "quickly sign a key locally" msgstr "kulcs aláírása helyileg" -#: g10/gpg.c:496 +#: g10/gpg.c:497 #, fuzzy #| msgid "generate a new key pair" msgid "quickly revoke a key signature" msgstr "új kulcspár létrehozása" -#: g10/gpg.c:497 +#: g10/gpg.c:498 msgid "sign a key" msgstr "kulcs aláírása" -#: g10/gpg.c:498 +#: g10/gpg.c:499 msgid "sign a key locally" msgstr "kulcs aláírása helyileg" -#: g10/gpg.c:499 +#: g10/gpg.c:500 msgid "sign or edit a key" msgstr "kulcs aláírása vagy szerkesztése" -#: g10/gpg.c:501 sm/gpgsm.c:246 +#: g10/gpg.c:502 sm/gpgsm.c:246 #, fuzzy msgid "change a passphrase" msgstr "jelszóváltoztatás" -#: g10/gpg.c:505 +#: g10/gpg.c:506 msgid "export keys" msgstr "kulcsok exportálása" -#: g10/gpg.c:506 +#: g10/gpg.c:507 msgid "export keys to a keyserver" msgstr "kulcsok exportálása kulcsszerverre" -#: g10/gpg.c:507 +#: g10/gpg.c:508 msgid "import keys from a keyserver" msgstr "kulcsok importálása kulcsszerverről" -#: g10/gpg.c:510 +#: g10/gpg.c:511 msgid "search for keys on a keyserver" msgstr "kulcsok keresése kulcsszerveren" -#: g10/gpg.c:512 +#: g10/gpg.c:513 msgid "update all keys from a keyserver" msgstr "minden kulcs frissítése kulcsszerverről" -#: g10/gpg.c:520 +#: g10/gpg.c:521 msgid "import/merge keys" msgstr "kulcsok importálása/összefűzése" -#: g10/gpg.c:523 +#: g10/gpg.c:524 msgid "print the card status" msgstr "" -#: g10/gpg.c:524 +#: g10/gpg.c:525 msgid "change data on a card" msgstr "" -#: g10/gpg.c:526 +#: g10/gpg.c:527 msgid "change a card's PIN" msgstr "" -#: g10/gpg.c:538 +#: g10/gpg.c:539 msgid "update the trust database" msgstr "bizalmi adatbázis frissítése" -#: g10/gpg.c:548 +#: g10/gpg.c:549 #, fuzzy msgid "print message digests" msgstr "|algo [fájlok]|üzenet kivonatának kiírása" -#: g10/gpg.c:552 sm/gpgsm.c:241 +#: g10/gpg.c:553 sm/gpgsm.c:241 msgid "run in server mode" msgstr "" -#: g10/gpg.c:554 +#: g10/gpg.c:555 msgid "|VALUE|set the TOFU policy for a key" msgstr "" -#: g10/gpg.c:594 +#: g10/gpg.c:595 msgid "|NAME|use NAME as default secret key" msgstr "|NÉV|NÉV használata alapértelmezett titkos kulcsként" -#: g10/gpg.c:596 sm/gpgsm.c:332 +#: g10/gpg.c:597 sm/gpgsm.c:332 #, fuzzy msgid "|NAME|encrypt to user ID NAME as well" msgstr "|NÉV|titkosítás NÉV részére" -#: g10/gpg.c:604 +#: g10/gpg.c:605 msgid "|SPEC|set up email aliases" msgstr "" -#: g10/gpg.c:616 +#: g10/gpg.c:617 msgid "use strict OpenPGP behavior" msgstr "" -#: g10/gpg.c:641 kbx/kbxutil.c:90 sm/gpgsm.c:412 tools/gpgconf.c:112 +#: g10/gpg.c:642 kbx/kbxutil.c:90 sm/gpgsm.c:412 tools/gpgconf.c:112 msgid "do not make any changes" msgstr "ne csináljon semmi változtatást" -#: g10/gpg.c:642 +#: g10/gpg.c:643 msgid "prompt before overwriting" msgstr "felülírás előtt rákérdezés" -#: g10/gpg.c:689 sm/gpgsm.c:304 +#: g10/gpg.c:690 sm/gpgsm.c:304 msgid "Options controlling the input" msgstr "" -#: g10/gpg.c:707 sm/gpgsm.c:314 +#: g10/gpg.c:708 sm/gpgsm.c:314 msgid "Options controlling the output" msgstr "" -#: g10/gpg.c:709 sm/gpgsm.c:316 +#: g10/gpg.c:710 sm/gpgsm.c:316 msgid "create ascii armored output" msgstr "ascii páncélozott kimenet létrehozása" -#: g10/gpg.c:713 g10/gpgv.c:82 sm/gpgsm.c:321 +#: g10/gpg.c:714 g10/gpgv.c:82 sm/gpgsm.c:321 #, fuzzy msgid "|FILE|write output to FILE" msgstr "|fájl|bővítő modul betöltése" -#: g10/gpg.c:726 +#: g10/gpg.c:727 msgid "use canonical text mode" msgstr "kanonikus szöveges mód használata" -#: g10/gpg.c:743 +#: g10/gpg.c:744 #, fuzzy msgid "|N|set compress level to N (0 disables)" msgstr "|N|tömörítési szint beállítása N-re (0: tiltás)" -#: g10/gpg.c:750 sm/gpgsm.c:347 +#: g10/gpg.c:751 sm/gpgsm.c:347 msgid "Options controlling key import and export" msgstr "" -#: g10/gpg.c:753 +#: g10/gpg.c:754 msgid "|MECHANISMS|use MECHANISMS to locate keys by mail address" msgstr "" -#: g10/gpg.c:756 +#: g10/gpg.c:757 #, fuzzy #| msgid "import keys from a keyserver" msgid "import missing key from a signature" msgstr "kulcsok importálása kulcsszerverről" -#: g10/gpg.c:761 +#: g10/gpg.c:762 #, fuzzy msgid "include the public key in signatures" msgstr "kulcsaláírások ellenőrzése" -#: g10/gpg.c:764 sm/gpgsm.c:350 +#: g10/gpg.c:765 sm/gpgsm.c:350 msgid "disable all access to the dirmngr" msgstr "" -#: g10/gpg.c:776 sm/gpgsm.c:357 +#: g10/gpg.c:777 sm/gpgsm.c:357 msgid "Options controlling key listings" msgstr "" -#: g10/gpg.c:805 sm/gpgsm.c:324 +#: g10/gpg.c:806 sm/gpgsm.c:324 #, fuzzy #| msgid "list secret keys" msgid "Options to specify keys" msgstr "titkos kulcsok listázása" -#: g10/gpg.c:807 sm/gpgsm.c:326 +#: g10/gpg.c:808 sm/gpgsm.c:326 #, fuzzy msgid "|USER-ID|encrypt for USER-ID" msgstr "|NÉV|titkosítás NÉV részére" -#: g10/gpg.c:815 sm/gpgsm.c:328 +#: g10/gpg.c:816 sm/gpgsm.c:328 #, fuzzy msgid "|USER-ID|use USER-ID to sign or decrypt" msgstr "felh. azonosító aláíráshoz és visszafejtéshez" -#: g10/gpg.c:866 sm/gpgsm.c:396 +#: g10/gpg.c:867 sm/gpgsm.c:396 msgid "Options for unattended use" msgstr "" -#: g10/gpg.c:885 sm/gpgsm.c:408 dirmngr/dirmngr.c:294 +#: g10/gpg.c:886 sm/gpgsm.c:408 dirmngr/dirmngr.c:294 msgid "Other options" msgstr "" -#: g10/gpg.c:953 sm/gpgsm.c:440 +#: g10/gpg.c:955 sm/gpgsm.c:440 msgid "" "@\n" "(See the man page for a complete listing of all commands and options)\n" @@ -3010,7 +3016,7 @@ "@\n" "(A parancsok és opciók teljes listáját a man oldalon tekintheti meg.)\n" -#: g10/gpg.c:956 +#: g10/gpg.c:958 #, fuzzy #| msgid "" #| "@\n" @@ -3040,13 +3046,13 @@ " --list-keys [nevek] kulcsok kiíratása\n" " --fingerprint [nevek] ujjlenyomatok kiíratása\n" -#: g10/gpg.c:1130 +#: g10/gpg.c:1139 #, fuzzy #| msgid "Usage: gpg [options] [files] (-h for help)" msgid "Usage: @GPG@ [options] [files] (-h for help)" msgstr "Használat: gpg [opciók] [fájlok] (-h a súgóhoz)" -#: g10/gpg.c:1133 +#: g10/gpg.c:1142 #, fuzzy #| msgid "" #| "Syntax: gpg [options] [files]\n" @@ -3061,7 +3067,7 @@ "Aláírás, ellenőrzés, titkosítás vagy visszafejtés.\n" "Az alapértelmezett művelet a bemeneti adattól függ.\n" -#: g10/gpg.c:1144 sm/gpgsm.c:624 +#: g10/gpg.c:1153 sm/gpgsm.c:624 msgid "" "\n" "Supported algorithms:\n" @@ -3069,551 +3075,551 @@ "\n" "Támogatott algoritmusok:\n" -#: g10/gpg.c:1147 +#: g10/gpg.c:1156 msgid "Pubkey: " msgstr "Nyilvános kulcsú (pubkey): " -#: g10/gpg.c:1154 g10/keyedit.c:3338 +#: g10/gpg.c:1163 g10/keyedit.c:3338 msgid "Cipher: " msgstr "Rejtjelező (cipher): " -#: g10/gpg.c:1161 +#: g10/gpg.c:1170 msgid "Hash: " msgstr "Kivonatoló (hash): " -#: g10/gpg.c:1168 g10/keyedit.c:3404 +#: g10/gpg.c:1177 g10/keyedit.c:3404 msgid "Compression: " msgstr "Tömörítő (compression): " -#: g10/gpg.c:1241 sm/gpgsm.c:698 +#: g10/gpg.c:1250 sm/gpgsm.c:698 #, fuzzy, c-format msgid "usage: %s [options] %s\n" msgstr "Használat: gpg [opciók] " -#: g10/gpg.c:1436 sm/gpgsm.c:791 +#: g10/gpg.c:1445 sm/gpgsm.c:791 #, c-format msgid "conflicting commands\n" msgstr "Egymásnak ellentmondó parancsok!\n" -#: g10/gpg.c:1454 +#: g10/gpg.c:1463 #, fuzzy, c-format msgid "no = sign found in group definition '%s'\n" msgstr "Nem találtam = jelet a \"%s\" csoportdefinícióban!\n" -#: g10/gpg.c:1652 +#: g10/gpg.c:1661 #, fuzzy, c-format msgid "WARNING: unsafe ownership on homedir '%s'\n" msgstr "FIGYELEM: Nem biztonságos tulajdonos: %s \"%s\"\n" -#: g10/gpg.c:1655 +#: g10/gpg.c:1664 #, fuzzy, c-format msgid "WARNING: unsafe ownership on configuration file '%s'\n" msgstr "FIGYELEM: Nem biztonságos tulajdonos: %s \"%s\"\n" -#: g10/gpg.c:1658 +#: g10/gpg.c:1667 #, fuzzy, c-format msgid "WARNING: unsafe ownership on extension '%s'\n" msgstr "FIGYELEM: Nem biztonságos tulajdonos: %s \"%s\"\n" -#: g10/gpg.c:1664 +#: g10/gpg.c:1673 #, fuzzy, c-format msgid "WARNING: unsafe permissions on homedir '%s'\n" msgstr "FIGYELEM: nem biztonságos engedélyek: %s \"%s\"\n" -#: g10/gpg.c:1667 +#: g10/gpg.c:1676 #, fuzzy, c-format msgid "WARNING: unsafe permissions on configuration file '%s'\n" msgstr "FIGYELEM: nem biztonságos engedélyek: %s \"%s\"\n" -#: g10/gpg.c:1670 +#: g10/gpg.c:1679 #, fuzzy, c-format msgid "WARNING: unsafe permissions on extension '%s'\n" msgstr "FIGYELEM: nem biztonságos engedélyek: %s \"%s\"\n" -#: g10/gpg.c:1676 +#: g10/gpg.c:1685 #, fuzzy, c-format msgid "WARNING: unsafe enclosing directory ownership on homedir '%s'\n" msgstr "FIGYELEM: nem biztonságos könyvtártulajdonos: %s \"%s\"\n" -#: g10/gpg.c:1679 +#: g10/gpg.c:1688 #, fuzzy, c-format msgid "" "WARNING: unsafe enclosing directory ownership on configuration file '%s'\n" msgstr "FIGYELEM: nem biztonságos könyvtártulajdonos: %s \"%s\"\n" -#: g10/gpg.c:1682 +#: g10/gpg.c:1691 #, fuzzy, c-format msgid "WARNING: unsafe enclosing directory ownership on extension '%s'\n" msgstr "FIGYELEM: nem biztonságos könyvtártulajdonos: %s \"%s\"\n" -#: g10/gpg.c:1688 +#: g10/gpg.c:1697 #, fuzzy, c-format msgid "WARNING: unsafe enclosing directory permissions on homedir '%s'\n" msgstr "FIGYELEM: nem biztonságos könyvtárengedélyek: %s \"%s\"\n" -#: g10/gpg.c:1691 +#: g10/gpg.c:1700 #, fuzzy, c-format msgid "" "WARNING: unsafe enclosing directory permissions on configuration file '%s'\n" msgstr "FIGYELEM: nem biztonságos könyvtárengedélyek: %s \"%s\"\n" -#: g10/gpg.c:1694 +#: g10/gpg.c:1703 #, fuzzy, c-format msgid "WARNING: unsafe enclosing directory permissions on extension '%s'\n" msgstr "FIGYELEM: nem biztonságos könyvtárengedélyek: %s \"%s\"\n" -#: g10/gpg.c:1910 +#: g10/gpg.c:1919 #, fuzzy, c-format msgid "unknown configuration item '%s'\n" msgstr "\"%s\": ismeretlen konfigurációs elem.\n" -#: g10/gpg.c:2009 +#: g10/gpg.c:2018 msgid "display photo IDs during key listings" msgstr "" -#: g10/gpg.c:2011 +#: g10/gpg.c:2020 #, fuzzy msgid "show key usage information during key listings" msgstr "Nincs megfelelő aláírás a titkoskulcs-karikán.\n" -#: g10/gpg.c:2013 +#: g10/gpg.c:2022 msgid "show policy URLs during signature listings" msgstr "" -#: g10/gpg.c:2015 +#: g10/gpg.c:2024 #, fuzzy msgid "show all notations during signature listings" msgstr "Nincs megfelelő aláírás a titkoskulcs-karikán.\n" -#: g10/gpg.c:2017 +#: g10/gpg.c:2026 msgid "show IETF standard notations during signature listings" msgstr "" -#: g10/gpg.c:2021 +#: g10/gpg.c:2030 msgid "show user-supplied notations during signature listings" msgstr "" -#: g10/gpg.c:2023 +#: g10/gpg.c:2032 #, fuzzy msgid "show preferred keyserver URLs during signature listings" msgstr "A megadott aláírási eljárásmód URL-je érvénytelen!\n" -#: g10/gpg.c:2025 +#: g10/gpg.c:2034 msgid "show user ID validity during key listings" msgstr "" -#: g10/gpg.c:2027 +#: g10/gpg.c:2036 msgid "show revoked and expired user IDs in key listings" msgstr "" -#: g10/gpg.c:2029 +#: g10/gpg.c:2038 msgid "show revoked and expired subkeys in key listings" msgstr "" -#: g10/gpg.c:2031 +#: g10/gpg.c:2040 #, fuzzy msgid "show the keyring name in key listings" msgstr "mutatja a kilistázott kulcs kulcskarikáját is" -#: g10/gpg.c:2033 +#: g10/gpg.c:2042 #, fuzzy msgid "show expiration dates during signature listings" msgstr "Nincs megfelelő aláírás a titkoskulcs-karikán.\n" -#: g10/gpg.c:2148 +#: g10/gpg.c:2157 #, fuzzy, c-format msgid "unknown TOFU policy '%s'\n" msgstr "Ismeretlen alapértelmezett címzett: \"%s\"\n" -#: g10/gpg.c:2150 +#: g10/gpg.c:2159 #, c-format msgid "(use \"help\" to list choices)\n" msgstr "" -#: g10/gpg.c:2240 g10/keyedit.c:1719 +#: g10/gpg.c:2249 g10/keyedit.c:1719 #, c-format msgid "This command is not allowed while in %s mode.\n" msgstr "Ez a parancs %s módban nem engedélyezett.\n" -#: g10/gpg.c:2878 g10/gpg.c:3718 g10/gpg.c:3730 +#: g10/gpg.c:2896 g10/gpg.c:3736 g10/gpg.c:3748 #, fuzzy, c-format #| msgid "NOTE: %s is not for normal use!\n" msgid "Note: %s is not for normal use!\n" msgstr "MEGJEGYZÉS: %s nem normál használatra van!\n" -#: g10/gpg.c:3053 g10/gpg.c:3065 +#: g10/gpg.c:3071 g10/gpg.c:3083 #, fuzzy, c-format msgid "'%s' is not a valid signature expiration\n" msgstr "%s nem érvényes karakterkiosztás!\n" -#: g10/gpg.c:3087 +#: g10/gpg.c:3105 #, fuzzy, c-format msgid "\"%s\" is not a proper mail address\n" msgstr "Ez nem érvényes e-mail cím.\n" -#: g10/gpg.c:3119 sm/gpgsm.c:1121 +#: g10/gpg.c:3137 sm/gpgsm.c:1121 #, fuzzy, c-format msgid "invalid pinentry mode '%s'\n" msgstr "Érvénytelen kivonatoló algoritmus: %s\n" -#: g10/gpg.c:3125 sm/gpgsm.c:1127 +#: g10/gpg.c:3143 sm/gpgsm.c:1127 #, fuzzy, c-format msgid "invalid request origin '%s'\n" msgstr "Érvénytelen import opciók!\n" -#: g10/gpg.c:3179 +#: g10/gpg.c:3197 #, fuzzy, c-format msgid "'%s' is not a valid character set\n" msgstr "%s nem érvényes karakterkiosztás!\n" -#: g10/gpg.c:3201 g10/gpg.c:3415 g10/keyedit.c:5338 +#: g10/gpg.c:3219 g10/gpg.c:3433 g10/keyedit.c:5338 #, fuzzy, c-format msgid "could not parse keyserver URL\n" msgstr "Értelmezhetetlen a kulcsszerver URI-ja!\n" -#: g10/gpg.c:3219 +#: g10/gpg.c:3237 #, fuzzy, c-format msgid "%s:%d: invalid keyserver options\n" msgstr "%s:%d: Érvénytelen export opciók!\n" -#: g10/gpg.c:3222 +#: g10/gpg.c:3240 #, fuzzy, c-format msgid "invalid keyserver options\n" msgstr "Érvénytelen export opciók!\n" -#: g10/gpg.c:3229 +#: g10/gpg.c:3247 #, c-format msgid "%s:%d: invalid import options\n" msgstr "%s:%d: Érvénytelen import opciók!\n" -#: g10/gpg.c:3232 +#: g10/gpg.c:3250 #, c-format msgid "invalid import options\n" msgstr "Érvénytelen import opciók!\n" -#: g10/gpg.c:3238 g10/gpg.c:3253 +#: g10/gpg.c:3256 g10/gpg.c:3271 #, fuzzy, c-format msgid "invalid filter option: %s\n" msgstr "Érvénytelen import opciók!\n" -#: g10/gpg.c:3244 +#: g10/gpg.c:3262 #, c-format msgid "%s:%d: invalid export options\n" msgstr "%s:%d: Érvénytelen export opciók!\n" -#: g10/gpg.c:3247 +#: g10/gpg.c:3265 #, c-format msgid "invalid export options\n" msgstr "Érvénytelen export opciók!\n" -#: g10/gpg.c:3259 +#: g10/gpg.c:3277 #, fuzzy, c-format msgid "%s:%d: invalid list options\n" msgstr "%s:%d: Érvénytelen import opciók!\n" -#: g10/gpg.c:3262 +#: g10/gpg.c:3280 #, fuzzy, c-format msgid "invalid list options\n" msgstr "Érvénytelen import opciók!\n" -#: g10/gpg.c:3270 +#: g10/gpg.c:3288 msgid "display photo IDs during signature verification" msgstr "" -#: g10/gpg.c:3272 +#: g10/gpg.c:3290 msgid "show policy URLs during signature verification" msgstr "" -#: g10/gpg.c:3274 +#: g10/gpg.c:3292 #, fuzzy msgid "show all notations during signature verification" msgstr "%s nem érvényes karakterkiosztás!\n" -#: g10/gpg.c:3276 +#: g10/gpg.c:3294 msgid "show IETF standard notations during signature verification" msgstr "" -#: g10/gpg.c:3280 +#: g10/gpg.c:3298 msgid "show user-supplied notations during signature verification" msgstr "" -#: g10/gpg.c:3282 +#: g10/gpg.c:3300 #, fuzzy msgid "show preferred keyserver URLs during signature verification" msgstr "A megadott aláírási eljárásmód URL-je érvénytelen!\n" -#: g10/gpg.c:3284 +#: g10/gpg.c:3302 #, fuzzy msgid "show user ID validity during signature verification" msgstr "%s nem érvényes karakterkiosztás!\n" -#: g10/gpg.c:3286 +#: g10/gpg.c:3304 msgid "show revoked and expired user IDs in signature verification" msgstr "" -#: g10/gpg.c:3288 +#: g10/gpg.c:3306 #, fuzzy msgid "show only the primary user ID in signature verification" msgstr "%s nem érvényes karakterkiosztás!\n" -#: g10/gpg.c:3290 +#: g10/gpg.c:3308 msgid "validate signatures with PKA data" msgstr "" -#: g10/gpg.c:3292 +#: g10/gpg.c:3310 msgid "elevate the trust of signatures with valid PKA data" msgstr "" -#: g10/gpg.c:3299 +#: g10/gpg.c:3317 #, fuzzy, c-format msgid "%s:%d: invalid verify options\n" msgstr "%s:%d: Érvénytelen export opciók!\n" -#: g10/gpg.c:3302 +#: g10/gpg.c:3320 #, fuzzy, c-format msgid "invalid verify options\n" msgstr "Érvénytelen export opciók!\n" -#: g10/gpg.c:3309 +#: g10/gpg.c:3327 #, c-format msgid "unable to set exec-path to %s\n" msgstr "Nem tudom a végrehajtási elérési utat %s értékre állítani!\n" -#: g10/gpg.c:3513 +#: g10/gpg.c:3531 #, fuzzy, c-format msgid "%s:%d: invalid auto-key-locate list\n" msgstr "%s:%d: Érvénytelen export opciók!\n" -#: g10/gpg.c:3516 +#: g10/gpg.c:3534 #, c-format msgid "invalid auto-key-locate list\n" msgstr "" -#: g10/gpg.c:3700 sm/gpgsm.c:1492 +#: g10/gpg.c:3718 sm/gpgsm.c:1492 #, c-format msgid "WARNING: program may create a core file!\n" msgstr "FIGYELEM: A program core állományt hozhat létre!\n" -#: g10/gpg.c:3711 +#: g10/gpg.c:3729 #, c-format msgid "WARNING: %s overrides %s\n" msgstr "FIGYELEM: %s hatástalanítja %s-t!\n" -#: g10/gpg.c:3720 +#: g10/gpg.c:3738 #, c-format msgid "%s not allowed with %s!\n" msgstr "%s és %s nem használható együtt!\n" -#: g10/gpg.c:3723 +#: g10/gpg.c:3741 #, c-format msgid "%s makes no sense with %s!\n" msgstr "%s értelmetlen %s mellett!\n" -#: g10/gpg.c:3738 sm/gpgsm.c:1509 dirmngr/dirmngr.c:1205 +#: g10/gpg.c:3756 sm/gpgsm.c:1509 dirmngr/dirmngr.c:1205 #, c-format msgid "WARNING: running with faked system time: " msgstr "" -#: g10/gpg.c:3759 +#: g10/gpg.c:3777 #, fuzzy, c-format msgid "will not run with insecure memory due to %s\n" msgstr "Írom a titkos kulcsot a %s állományba.\n" -#: g10/gpg.c:3804 g10/gpg.c:3828 sm/gpgsm.c:1579 +#: g10/gpg.c:3824 g10/gpg.c:3848 sm/gpgsm.c:1579 #, c-format msgid "selected cipher algorithm is invalid\n" msgstr "A kiválasztott rejtjelező algoritmus érvénytelen!\n" -#: g10/gpg.c:3816 +#: g10/gpg.c:3836 #, fuzzy, c-format msgid "selected compression algorithm is invalid\n" msgstr "A kiválasztott rejtjelező algoritmus érvénytelen!\n" -#: g10/gpg.c:3822 +#: g10/gpg.c:3842 #, c-format msgid "selected certification digest algorithm is invalid\n" msgstr "Az igazoláshoz kiválasztott kivonatoló algoritmus érvénytelen!\n" -#: g10/gpg.c:3837 +#: g10/gpg.c:3857 #, c-format msgid "completes-needed must be greater than 0\n" msgstr "completes-needed nagyobb kell legyen 0-nál!\n" -#: g10/gpg.c:3839 +#: g10/gpg.c:3859 #, c-format msgid "marginals-needed must be greater than 1\n" msgstr "marginals-needed nagyobb kell legyen 1-nél!\n" -#: g10/gpg.c:3841 +#: g10/gpg.c:3861 #, fuzzy, c-format msgid "max-cert-depth must be in the range from 1 to 255\n" msgstr "max-cert-depth 1 és 255 közé kell essen!\n" -#: g10/gpg.c:3843 +#: g10/gpg.c:3863 #, c-format msgid "invalid default-cert-level; must be 0, 1, 2, or 3\n" msgstr "Érvénytelen default-cert-level; 0, 1, 2 vagy 3 lehet.\n" -#: g10/gpg.c:3845 +#: g10/gpg.c:3865 #, c-format msgid "invalid min-cert-level; must be 1, 2, or 3\n" msgstr "Érvénytelen min-cert-level; 0, 1, 2 vagy 3 lehet.\n" -#: g10/gpg.c:3849 +#: g10/gpg.c:3869 #, fuzzy, c-format #| msgid "NOTE: simple S2K mode (0) is strongly discouraged\n" msgid "Note: simple S2K mode (0) is strongly discouraged\n" msgstr "MEGJEGYZÉS: Egyszerű S2K mód (0) erősen ellenjavallt!\n" -#: g10/gpg.c:3853 +#: g10/gpg.c:3873 #, c-format msgid "invalid S2K mode; must be 0, 1 or 3\n" msgstr "Érvénytelen S2K mód; 0, 1 vagy 3 lehet.\n" -#: g10/gpg.c:3860 +#: g10/gpg.c:3880 #, c-format msgid "invalid default preferences\n" msgstr "Érvénytelen alapértelmezett preferenciák!\n" -#: g10/gpg.c:3864 +#: g10/gpg.c:3884 #, c-format msgid "invalid personal cipher preferences\n" msgstr "Érvénytelen személyes rejtjelező-preferenciák!\n" -#: g10/gpg.c:3868 +#: g10/gpg.c:3888 #, c-format msgid "invalid personal digest preferences\n" msgstr "Érvénytelen személyes kivonatolópreferenciák!\n" -#: g10/gpg.c:3872 +#: g10/gpg.c:3892 #, c-format msgid "invalid personal compress preferences\n" msgstr "Érvénytelen személyes tömörítőpreferenciák!\n" -#: g10/gpg.c:3908 +#: g10/gpg.c:3928 #, c-format msgid "%s does not yet work with %s\n" msgstr "%s és %s egyelőre nem használható együtt!\n" -#: g10/gpg.c:3971 +#: g10/gpg.c:3991 #, fuzzy, c-format msgid "compression algorithm '%s' may not be used in %s mode\n" msgstr "Lehet, hogy nem használhatja \"%s\" tömörítő algoritmust %s módban!\n" -#: g10/gpg.c:4115 +#: g10/gpg.c:4135 #, c-format msgid "failed to initialize the TrustDB: %s\n" msgstr "Bizalmi adatbázis (%s) inicializálása sikertelen!\n" -#: g10/gpg.c:4127 +#: g10/gpg.c:4147 #, c-format msgid "WARNING: recipients (-r) given without using public key encryption\n" msgstr "" "FIGYELEM: Címzett megadva (-r), de nincs nyilvános kulcsú titkosítás!\n" -#: g10/gpg.c:4199 +#: g10/gpg.c:4219 #, fuzzy, c-format msgid "symmetric encryption of '%s' failed: %s\n" msgstr "Visszafejtés sikertelen: %s.\n" -#: g10/gpg.c:4228 +#: g10/gpg.c:4248 #, c-format msgid "you cannot use --symmetric --encrypt with --s2k-mode 0\n" msgstr "" -#: g10/gpg.c:4231 +#: g10/gpg.c:4251 #, fuzzy, c-format msgid "you cannot use --symmetric --encrypt in %s mode\n" msgstr "Lehet, hogy nem használhatja %s-t %s módban!\n" -#: g10/gpg.c:4289 +#: g10/gpg.c:4309 #, c-format msgid "you cannot use --symmetric --sign --encrypt with --s2k-mode 0\n" msgstr "" -#: g10/gpg.c:4292 +#: g10/gpg.c:4312 #, fuzzy, c-format msgid "you cannot use --symmetric --sign --encrypt in %s mode\n" msgstr "Lehet, hogy nem használhatja %s-t %s módban!\n" -#: g10/gpg.c:4692 g10/keyserver.c:1648 +#: g10/gpg.c:4712 g10/keyserver.c:1648 #, c-format msgid "keyserver send failed: %s\n" msgstr "Küldés a kulcsszerverre sikertelen: %s\n" -#: g10/gpg.c:4697 +#: g10/gpg.c:4717 #, c-format msgid "keyserver receive failed: %s\n" msgstr "Vétel a kulcsszerverről sikertelen: %s\n" -#: g10/gpg.c:4703 +#: g10/gpg.c:4723 #, c-format msgid "key export failed: %s\n" msgstr "Kulcsexportálás sikertelen: %s\n" -#: g10/gpg.c:4716 +#: g10/gpg.c:4736 #, fuzzy, c-format #| msgid "key export failed: %s\n" msgid "export as ssh key failed: %s\n" msgstr "Kulcsexportálás sikertelen: %s\n" -#: g10/gpg.c:4728 +#: g10/gpg.c:4748 #, c-format msgid "keyserver search failed: %s\n" msgstr "Keresés a kulcsszerveren sikertelen: %s\n" -#: g10/gpg.c:4741 +#: g10/gpg.c:4761 #, c-format msgid "keyserver refresh failed: %s\n" msgstr "Frissítés a kulcsszerverről sikertelen: %s\n" -#: g10/gpg.c:4810 +#: g10/gpg.c:4830 #, c-format msgid "dearmoring failed: %s\n" msgstr "Páncél eltávolítása nem sikerült: %s\n" -#: g10/gpg.c:4821 +#: g10/gpg.c:4841 #, c-format msgid "enarmoring failed: %s\n" msgstr "Páncélozás nem sikerült: %s\n" -#: g10/gpg.c:4913 +#: g10/gpg.c:4933 #, fuzzy, c-format #| msgid "invalid hash algorithm `%s'\n" msgid "invalid hash algorithm '%s'\n" msgstr "Érvénytelen kivonatoló algoritmus: %s\n" -#: g10/gpg.c:5065 g10/tofu.c:2153 +#: g10/gpg.c:5085 g10/tofu.c:2153 #, fuzzy, c-format msgid "error parsing key specification '%s': %s\n" msgstr "Hiba a jelszó létrehozásakor: %s.\n" -#: g10/gpg.c:5078 +#: g10/gpg.c:5098 #, c-format msgid "'%s' does not appear to be a valid key ID, fingerprint or keygrip\n" msgstr "" -#: g10/gpg.c:5134 +#: g10/gpg.c:5154 #, c-format msgid "WARNING: no command supplied. Trying to guess what you mean ...\n" msgstr "" -#: g10/gpg.c:5145 +#: g10/gpg.c:5165 #, c-format msgid "Go ahead and type your message ...\n" msgstr "Kezdheti gépelni az üzenetet...\n" -#: g10/gpg.c:5490 +#: g10/gpg.c:5510 #, c-format msgid "the given certification policy URL is invalid\n" msgstr "A megadott igazolási eljárásmód URL-je érvénytelen!\n" -#: g10/gpg.c:5492 +#: g10/gpg.c:5512 #, c-format msgid "the given signature policy URL is invalid\n" msgstr "A megadott aláírási eljárásmód URL-je érvénytelen!\n" -#: g10/gpg.c:5525 +#: g10/gpg.c:5545 #, fuzzy, c-format msgid "the given preferred keyserver URL is invalid\n" msgstr "A megadott aláírási eljárásmód URL-je érvénytelen!\n" @@ -3658,319 +3664,319 @@ msgid "No help available for '%s'" msgstr "Nem áll rendelkezésre segítség \"%s\" témához." -#: g10/import.c:169 +#: g10/import.c:170 msgid "import signatures that are marked as local-only" msgstr "" -#: g10/import.c:172 +#: g10/import.c:173 msgid "repair damage from the pks keyserver during import" msgstr "" -#: g10/import.c:175 +#: g10/import.c:176 #, fuzzy msgid "do not clear the ownertrust values during import" msgstr "bizalmi adatbázis frissítése" -#: g10/import.c:178 +#: g10/import.c:179 #, fuzzy msgid "do not update the trustdb after import" msgstr "bizalmi adatbázis frissítése" -#: g10/import.c:181 +#: g10/import.c:182 #, fuzzy msgid "show key during import" msgstr "megmutatja az ujjlenyomatot" -#: g10/import.c:184 +#: g10/import.c:185 msgid "only accept updates to existing keys" msgstr "" -#: g10/import.c:187 +#: g10/import.c:188 #, fuzzy msgid "remove unusable parts from key after import" msgstr "használhatatlan titkos kulcs" -#: g10/import.c:190 +#: g10/import.c:191 msgid "remove as much as possible from key after import" msgstr "" -#: g10/import.c:193 +#: g10/import.c:194 msgid "ignore key-signatures which are not self-signatures" msgstr "" -#: g10/import.c:196 +#: g10/import.c:197 msgid "run import filters and export key immediately" msgstr "" -#: g10/import.c:199 +#: g10/import.c:200 msgid "assume the GnuPG key backup format" msgstr "" -#: g10/import.c:203 +#: g10/import.c:204 #, fuzzy msgid "repair keys on import" msgstr "megmutatja az ujjlenyomatot" -#: g10/import.c:392 g10/import.c:711 +#: g10/import.c:393 g10/import.c:712 #, c-format msgid "skipping block of type %d\n" msgstr "%d típusú blokkot kihagyom.\n" -#: g10/import.c:728 +#: g10/import.c:729 #, fuzzy, c-format msgid "%lu keys processed so far\n" msgstr "Eddig %lu kulcsot dolgoztam fel.\n" -#: g10/import.c:814 +#: g10/import.c:815 #, c-format msgid "Total number processed: %lu\n" msgstr " Összesen feldolgoztam: %lu\n" -#: g10/import.c:817 +#: g10/import.c:818 #, fuzzy, c-format #| msgid " skipped new keys: %lu\n" msgid " skipped PGP-2 keys: %lu\n" msgstr " új kulcsok kihagyva: %lu\n" -#: g10/import.c:819 +#: g10/import.c:820 #, c-format msgid " skipped new keys: %lu\n" msgstr " új kulcsok kihagyva: %lu\n" -#: g10/import.c:822 +#: g10/import.c:823 #, c-format msgid " w/o user IDs: %lu\n" msgstr " felh. azonosító nélkül: %lu\n" -#: g10/import.c:825 sm/import.c:130 +#: g10/import.c:826 sm/import.c:130 #, c-format msgid " imported: %lu" msgstr " importálva: %lu" -#: g10/import.c:829 sm/import.c:134 +#: g10/import.c:830 sm/import.c:134 #, c-format msgid " unchanged: %lu\n" msgstr " változatlan: %lu\n" -#: g10/import.c:831 +#: g10/import.c:832 #, c-format msgid " new user IDs: %lu\n" msgstr " új felh. azonosítók: %lu\n" -#: g10/import.c:833 +#: g10/import.c:834 #, c-format msgid " new subkeys: %lu\n" msgstr " új alkulcsok: %lu\n" -#: g10/import.c:835 +#: g10/import.c:836 #, c-format msgid " new signatures: %lu\n" msgstr " új aláírások: %lu\n" -#: g10/import.c:837 +#: g10/import.c:838 #, c-format msgid " new key revocations: %lu\n" msgstr " új kulcsvisszavonások: %lu\n" -#: g10/import.c:839 sm/import.c:136 +#: g10/import.c:840 sm/import.c:136 #, c-format msgid " secret keys read: %lu\n" msgstr " olvasott titkos kulcsok: %lu\n" -#: g10/import.c:841 sm/import.c:138 +#: g10/import.c:842 sm/import.c:138 #, c-format msgid " secret keys imported: %lu\n" msgstr " importált titkos kulcsok: %lu\n" -#: g10/import.c:843 sm/import.c:140 +#: g10/import.c:844 sm/import.c:140 #, c-format msgid " secret keys unchanged: %lu\n" msgstr "változatlan titkos kulcsok: %lu\n" -#: g10/import.c:845 sm/import.c:142 +#: g10/import.c:846 sm/import.c:142 #, c-format msgid " not imported: %lu\n" msgstr " nem importált: %lu\n" -#: g10/import.c:847 +#: g10/import.c:848 #, fuzzy, c-format msgid " signatures cleaned: %lu\n" msgstr " új aláírások: %lu\n" -#: g10/import.c:849 +#: g10/import.c:850 #, fuzzy, c-format msgid " user IDs cleaned: %lu\n" msgstr " olvasott titkos kulcsok: %lu\n" -#: g10/import.c:1276 +#: g10/import.c:1277 #, c-format msgid "" "WARNING: key %s contains preferences for unavailable\n" "algorithms on these user IDs:\n" msgstr "" -#: g10/import.c:1318 +#: g10/import.c:1319 #, c-format msgid " \"%s\": preference for cipher algorithm %s\n" msgstr "" -#: g10/import.c:1333 +#: g10/import.c:1334 #, fuzzy, c-format msgid " \"%s\": preference for digest algorithm %s\n" msgstr "%s aláírás, %s kivonatoló algoritmus.\n" -#: g10/import.c:1345 +#: g10/import.c:1346 #, c-format msgid " \"%s\": preference for compression algorithm %s\n" msgstr "" -#: g10/import.c:1358 +#: g10/import.c:1359 #, c-format msgid "it is strongly suggested that you update your preferences and\n" msgstr "" -#: g10/import.c:1360 +#: g10/import.c:1361 #, c-format msgid "re-distribute this key to avoid potential algorithm mismatch problems\n" msgstr "" -#: g10/import.c:1385 +#: g10/import.c:1386 #, c-format msgid "you can update your preferences with: gpg --edit-key %s updpref save\n" msgstr "" -#: g10/import.c:1899 g10/import.c:3013 +#: g10/import.c:1902 g10/import.c:3028 #, fuzzy, c-format msgid "key %s: no user ID\n" msgstr "%08lX kulcs: Nincs felhasználói azonosító.\n" -#: g10/import.c:1905 +#: g10/import.c:1908 #, fuzzy, c-format msgid "key %s: %s\n" msgstr "Kihagytam \"%s\"-t: %s.\n" -#: g10/import.c:1906 g10/import.c:2985 +#: g10/import.c:1909 g10/import.c:3000 msgid "rejected by import screener" msgstr "" -#: g10/import.c:1950 +#: g10/import.c:1953 #, fuzzy, c-format msgid "key %s: PKS subkey corruption repaired\n" msgstr "%08lX kulcs: HKP alkulcssérülés kijavítva.\n" -#: g10/import.c:1971 +#: g10/import.c:1974 #, fuzzy, c-format msgid "key %s: accepted non self-signed user ID \"%s\"\n" msgstr "%08lX kulcs: Nem önaláírt felh. azonosító (\"%s\") elfogadva.\n" -#: g10/import.c:1981 g10/import.c:2012 +#: g10/import.c:1985 g10/import.c:2016 #, fuzzy, c-format msgid "key %s: no valid user IDs\n" msgstr "%08lX kulcs: Nincs érvényes felhasználói azonosító.\n" -#: g10/import.c:1983 +#: g10/import.c:1987 #, c-format msgid "this may be caused by a missing self-signature\n" msgstr "Ezt okozhatja egy hiányzó önaláírás.\n" -#: g10/import.c:2062 g10/import.c:3399 +#: g10/import.c:2066 g10/import.c:3415 #, fuzzy, c-format msgid "key %s: public key not found: %s\n" msgstr "%08lX kulcs: Nyilvános kulcs nem található: %s\n" -#: g10/import.c:2068 +#: g10/import.c:2072 #, fuzzy, c-format msgid "key %s: new key - skipped\n" msgstr "%08lX kulcs: új kulcs - kihagytam.\n" -#: g10/import.c:2080 +#: g10/import.c:2084 #, c-format msgid "no writable keyring found: %s\n" msgstr "Nem írható kulcskarikát találtam: %s\n" -#: g10/import.c:2112 g10/import.c:2214 g10/import.c:3476 +#: g10/import.c:2116 g10/import.c:2218 g10/import.c:3492 #, fuzzy, c-format #| msgid "error writing keyring `%s': %s\n" msgid "error writing keyring '%s': %s\n" msgstr "Hiba a \"%s\" kulcskarika írásakor: %s\n" -#: g10/import.c:2135 +#: g10/import.c:2139 #, fuzzy, c-format msgid "key %s: public key \"%s\" imported\n" msgstr "%08lX kulcs: \"%s\" nyilvános kulcs importálva.\n" -#: g10/import.c:2162 +#: g10/import.c:2166 #, fuzzy, c-format msgid "key %s: doesn't match our copy\n" msgstr "%08lX kulcs: Nem egyezik a mi másolatunkkal!\n" -#: g10/import.c:2230 +#: g10/import.c:2234 #, fuzzy, c-format msgid "key %s: \"%s\" 1 new user ID\n" msgstr "%08lX kulcs: \"%s\" 1 új felhasználói azonosító.\n" -#: g10/import.c:2233 +#: g10/import.c:2237 #, fuzzy, c-format msgid "key %s: \"%s\" %d new user IDs\n" msgstr "%08lX kulcs: \"%s\" %d új felhasználói azonosító.\n" -#: g10/import.c:2236 +#: g10/import.c:2240 #, fuzzy, c-format msgid "key %s: \"%s\" 1 new signature\n" msgstr "%08lX kulcs: \"%s\" 1 új aláírás.\n" -#: g10/import.c:2239 +#: g10/import.c:2243 #, fuzzy, c-format msgid "key %s: \"%s\" %d new signatures\n" msgstr "%08lX kulcs: \"%s\" %d új aláírás.\n" -#: g10/import.c:2242 +#: g10/import.c:2246 #, fuzzy, c-format msgid "key %s: \"%s\" 1 new subkey\n" msgstr "%08lX kulcs: \"%s\" 1 új alkulcs.\n" -#: g10/import.c:2245 +#: g10/import.c:2249 #, fuzzy, c-format msgid "key %s: \"%s\" %d new subkeys\n" msgstr "%08lX kulcs: \"%s\" %d új alkulcs.\n" -#: g10/import.c:2248 +#: g10/import.c:2252 #, fuzzy, c-format msgid "key %s: \"%s\" %d signature cleaned\n" msgstr "%08lX kulcs: \"%s\" %d új aláírás.\n" -#: g10/import.c:2251 +#: g10/import.c:2255 #, fuzzy, c-format msgid "key %s: \"%s\" %d signatures cleaned\n" msgstr "%08lX kulcs: \"%s\" %d új aláírás.\n" -#: g10/import.c:2254 +#: g10/import.c:2258 #, fuzzy, c-format msgid "key %s: \"%s\" %d user ID cleaned\n" msgstr "%08lX kulcs: \"%s\" %d új felhasználói azonosító.\n" -#: g10/import.c:2257 +#: g10/import.c:2261 #, fuzzy, c-format msgid "key %s: \"%s\" %d user IDs cleaned\n" msgstr "%08lX kulcs: \"%s\" %d új felhasználói azonosító.\n" -#: g10/import.c:2293 +#: g10/import.c:2297 #, fuzzy, c-format msgid "key %s: \"%s\" not changed\n" msgstr "%08lX kulcs: \"%s\" nem változott.\n" -#: g10/import.c:2652 g10/import.c:2847 +#: g10/import.c:2667 g10/import.c:2862 #, fuzzy, c-format msgid "key %s: secret key imported\n" msgstr "%08lX kulcs: Titkos kulcs importálva.\n" -#: g10/import.c:2660 +#: g10/import.c:2675 #, fuzzy, c-format #| msgid "skipped: secret key already present\n" msgid "key %s: secret key already exists\n" msgstr "Kihagytam: titkos kulcs már jelen van.\n" -#: g10/import.c:2668 +#: g10/import.c:2683 #, fuzzy, c-format msgid "key %s: error sending to agent: %s\n" msgstr "Hiba %s-ra/-re küldéskor: %s\n" @@ -3983,199 +3989,199 @@ #. * Instead, user should be suggested to run 'gpg --card-status', #. * then, references to a card will be automatically created #. * again. -#: g10/import.c:2837 +#: g10/import.c:2852 #, c-format msgid "To migrate '%s', with each smartcard, run: %s\n" msgstr "" -#: g10/import.c:2984 +#: g10/import.c:2999 #, fuzzy, c-format msgid "secret key %s: %s\n" msgstr "\"%s\" titkos kulcs nem található: %s\n" -#: g10/import.c:3005 g10/import.c:3044 +#: g10/import.c:3020 g10/import.c:3059 #, fuzzy, c-format msgid "importing secret keys not allowed\n" msgstr "Írom a titkos kulcsot a %s állományba.\n" -#: g10/import.c:3032 +#: g10/import.c:3047 #, fuzzy, c-format msgid "key %s: secret key with invalid cipher %d - skipped\n" msgstr "" "%08lX kulcs: Titkos kulcs érvénytelen (%d) rejtjelezővel - kihagytam.\n" -#: g10/import.c:3194 g10/pkclist.c:72 g10/revoke.c:776 +#: g10/import.c:3209 g10/pkclist.c:72 g10/revoke.c:776 msgid "No reason specified" msgstr "Nincs megadva ok." -#: g10/import.c:3195 g10/pkclist.c:74 g10/revoke.c:778 +#: g10/import.c:3210 g10/pkclist.c:74 g10/revoke.c:778 msgid "Key is superseded" msgstr "A kulcsot lecserélték." -#: g10/import.c:3196 g10/pkclist.c:76 g10/revoke.c:777 +#: g10/import.c:3211 g10/pkclist.c:76 g10/revoke.c:777 msgid "Key has been compromised" msgstr "A kulcs kompromittálódott." -#: g10/import.c:3197 g10/pkclist.c:78 g10/revoke.c:779 +#: g10/import.c:3212 g10/pkclist.c:78 g10/revoke.c:779 msgid "Key is no longer used" msgstr "A kulcs már nem használatos." -#: g10/import.c:3198 g10/pkclist.c:80 g10/revoke.c:780 +#: g10/import.c:3213 g10/pkclist.c:80 g10/revoke.c:780 msgid "User ID is no longer valid" msgstr "A felhasználói azonosító már nem érvényes." -#: g10/import.c:3323 g10/keylist.c:1258 g10/pkclist.c:84 +#: g10/import.c:3338 g10/keylist.c:1258 g10/pkclist.c:84 #, c-format msgid "reason for revocation: " msgstr "Visszavonás oka: " -#: g10/import.c:3342 g10/keylist.c:1277 g10/pkclist.c:100 +#: g10/import.c:3357 g10/keylist.c:1277 g10/pkclist.c:100 #, c-format msgid "revocation comment: " msgstr "Megjegyzés a visszavonáshoz: " -#: g10/import.c:3392 +#: g10/import.c:3408 #, fuzzy, c-format msgid "key %s: no public key - can't apply revocation certificate\n" msgstr "%08lX kulcs: Nincs nyilvános kulcs - nem tudok visszavonni.\n" -#: g10/import.c:3423 +#: g10/import.c:3439 #, fuzzy, c-format msgid "key %s: can't locate original keyblock: %s\n" msgstr "%08lX kulcs: Nem találom az eredeti kulcsblokkot: %s\n" -#: g10/import.c:3430 +#: g10/import.c:3446 #, fuzzy, c-format msgid "key %s: can't read original keyblock: %s\n" msgstr "%08lX kulcs: Nem tudom beolvasni az eredeti kulcsblokkot: %s\n" -#: g10/import.c:3450 +#: g10/import.c:3466 #, fuzzy, c-format msgid "key %s: invalid revocation certificate: %s - rejected\n" msgstr "%08lX kulcs: Érvénytelen visszavonó igazolás: %s - visszautasítva.\n" -#: g10/import.c:3485 +#: g10/import.c:3501 #, fuzzy, c-format msgid "key %s: \"%s\" revocation certificate imported\n" msgstr "%08lX kulcs: \"%s\" visszavonó igazolást importáltam.\n" -#: g10/import.c:3571 +#: g10/import.c:3587 #, fuzzy, c-format msgid "key %s: no user ID for signature\n" msgstr "%08lX kulcs: Nincs felhasználói azonosító ehhez az aláíráshoz!\n" -#: g10/import.c:3588 +#: g10/import.c:3604 #, fuzzy, c-format msgid "key %s: unsupported public key algorithm on user ID \"%s\"\n" msgstr "" "%08lX kulcs: Nem támogatott nyilvános kulcsú alg. a \"%s\" felh. " "azonosítón!\n" -#: g10/import.c:3590 +#: g10/import.c:3606 #, fuzzy, c-format msgid "key %s: invalid self-signature on user ID \"%s\"\n" msgstr "%08lX kulcs: Érvénytelen önaláírás a \"%s\" felh. azonosítón!\n" -#: g10/import.c:3607 g10/import.c:3635 g10/import.c:3691 +#: g10/import.c:3623 g10/import.c:3651 g10/import.c:3707 #, fuzzy, c-format msgid "key %s: unsupported public key algorithm\n" msgstr "%08lX kulcs: Nem támogatott nyilvános kulcsú algoritmus!\n" -#: g10/import.c:3608 +#: g10/import.c:3624 #, fuzzy, c-format msgid "key %s: invalid direct key signature\n" msgstr "%08lX kulcs: Kulcsaláírást hozzáadtam.\n" -#: g10/import.c:3622 +#: g10/import.c:3638 #, fuzzy, c-format msgid "key %s: no subkey for key binding\n" msgstr "%08lX kulcs: Nincs alkulcs a kulcskötéshez!\n" -#: g10/import.c:3637 +#: g10/import.c:3653 #, fuzzy, c-format msgid "key %s: invalid subkey binding\n" msgstr "%08lX kulcs: Érvénytelen alkulcskötés!\n" -#: g10/import.c:3656 +#: g10/import.c:3672 #, fuzzy, c-format msgid "key %s: removed multiple subkey binding\n" msgstr "%08lX kulcs: Eltávolítottam a többszörös alkulcskötést.\n" -#: g10/import.c:3680 +#: g10/import.c:3696 #, fuzzy, c-format msgid "key %s: no subkey for key revocation\n" msgstr "%08lX kulcs: Nincs alkulcs a kulcsvisszavonáshoz.\n" -#: g10/import.c:3693 +#: g10/import.c:3709 #, fuzzy, c-format msgid "key %s: invalid subkey revocation\n" msgstr "%08lX kulcs: Érvénytelen alkulcsvisszavonás.\n" -#: g10/import.c:3708 +#: g10/import.c:3724 #, fuzzy, c-format msgid "key %s: removed multiple subkey revocation\n" msgstr "%08lX kulcs: Eltávolítottam a többszörös alkulcsvisszavonást.\n" -#: g10/import.c:3752 +#: g10/import.c:3771 #, fuzzy, c-format msgid "key %s: skipped user ID \"%s\"\n" msgstr "%08lX kulcs: Kihagytam a felh. azonosítót: '" -#: g10/import.c:3779 +#: g10/import.c:3798 #, fuzzy, c-format msgid "key %s: skipped subkey\n" msgstr "%08lX kulcs: Alkulcsot kihagytam.\n" -#: g10/import.c:3810 +#: g10/import.c:3829 #, fuzzy, c-format msgid "key %s: non exportable signature (class 0x%02X) - skipped\n" msgstr "%08lX kulcs: Nem exportálható aláírás (%02x. osztály) - kihagytam.\n" -#: g10/import.c:3821 +#: g10/import.c:3840 #, fuzzy, c-format msgid "key %s: revocation certificate at wrong place - skipped\n" msgstr "%08lX kulcs: Visszavonó igazolás rossz helyen - kihagytam.\n" -#: g10/import.c:3839 +#: g10/import.c:3868 #, fuzzy, c-format msgid "key %s: invalid revocation certificate: %s - skipped\n" msgstr "%08lX kulcs: Érvénytelen visszavonó igazolás: %s - kihagytam.\n" -#: g10/import.c:3853 +#: g10/import.c:3892 #, fuzzy, c-format msgid "key %s: subkey signature in wrong place - skipped\n" msgstr "%08lX kulcs: Alkulcsaláírás rossz helyen - kihagytam.\n" -#: g10/import.c:3861 +#: g10/import.c:3900 #, fuzzy, c-format msgid "key %s: unexpected signature class (0x%02X) - skipped\n" msgstr "%08lX kulcs: Váratlan aláírásosztály (0x%02X) - kihagytam.\n" -#: g10/import.c:4034 +#: g10/import.c:4073 #, fuzzy, c-format msgid "key %s: duplicated user ID detected - merged\n" msgstr "%08lX kulcs: Duplázott felh. azonosítót találtam - összefűztem.\n" -#: g10/import.c:4099 +#: g10/import.c:4138 #, fuzzy, c-format msgid "WARNING: key %s may be revoked: fetching revocation key %s\n" msgstr "" "FIGYELEM: %08lX kulcsot visszavonhatták:\n" "lehívom a %08lX visszavonó kulcsot.\n" -#: g10/import.c:4115 +#: g10/import.c:4154 #, fuzzy, c-format msgid "WARNING: key %s may be revoked: revocation key %s not present.\n" msgstr "" "FIGYELEM: %08lX kulcsot visszavonhatták:\n" "visszavonó kulcs (%08lX) nincs jelen.\n" -#: g10/import.c:4181 +#: g10/import.c:4220 #, fuzzy, c-format msgid "key %s: \"%s\" revocation certificate added\n" msgstr "%08lX kulcs: \"%s\" visszavonó igazolást hozzáadtam.\n" -#: g10/import.c:4219 +#: g10/import.c:4258 #, fuzzy, c-format msgid "key %s: direct key signature added\n" msgstr "%08lX kulcs: Kulcsaláírást hozzáadtam.\n" @@ -5108,7 +5114,7 @@ msgid "You may not add a photo ID to a PGP2-style key.\n" msgstr "Lehet, hogy nem adhat fotóazonosítót egy PGP2 stílusú kulcshoz!\n" -#: g10/keyedit.c:4293 g10/keygen.c:2899 +#: g10/keyedit.c:4293 g10/keygen.c:2953 msgid "Such a user ID already exists on this key!\n" msgstr "" @@ -5399,83 +5405,83 @@ msgid "Displaying %s photo ID of size %ld for key %s (uid %d)\n" msgstr "%s fotóazonosító (méret: %ld, kulcs: 0x%08lX, felh: %d) mutatása.\n" -#: g10/keygen.c:169 +#: g10/keygen.c:174 #, fuzzy, c-format msgid "invalid value for option '%s'\n" msgstr "Érvénytelen import opciók!\n" -#: g10/keygen.c:322 +#: g10/keygen.c:331 #, fuzzy, c-format msgid "preference '%s' duplicated\n" msgstr "%c%lu preferencia kétszer szerepel!\n" -#: g10/keygen.c:329 +#: g10/keygen.c:338 #, fuzzy, c-format msgid "too many cipher preferences\n" msgstr "Túl sok \"%c\" preferencia.\n" -#: g10/keygen.c:331 +#: g10/keygen.c:340 #, fuzzy, c-format msgid "too many digest preferences\n" msgstr "Túl sok \"%c\" preferencia.\n" -#: g10/keygen.c:333 +#: g10/keygen.c:342 #, fuzzy, c-format msgid "too many compression preferences\n" msgstr "Túl sok \"%c\" preferencia.\n" -#: g10/keygen.c:493 +#: g10/keygen.c:502 #, fuzzy, c-format msgid "invalid item '%s' in preference string\n" msgstr "Érvénytelen karakter a preferenciák között!\n" -#: g10/keygen.c:972 +#: g10/keygen.c:1020 #, c-format msgid "writing direct signature\n" msgstr "Sima aláírást írok.\n" -#: g10/keygen.c:1018 +#: g10/keygen.c:1066 #, c-format msgid "writing self signature\n" msgstr "Önaláírást írok.\n" -#: g10/keygen.c:1075 +#: g10/keygen.c:1123 #, c-format msgid "writing key binding signature\n" msgstr "Összefűző aláírást írok.\n" -#: g10/keygen.c:1440 g10/keygen.c:1445 g10/keygen.c:1497 g10/keygen.c:1502 -#: g10/keygen.c:1656 g10/keygen.c:1661 +#: g10/keygen.c:1494 g10/keygen.c:1499 g10/keygen.c:1551 g10/keygen.c:1556 +#: g10/keygen.c:1710 g10/keygen.c:1715 #, c-format msgid "keysize invalid; using %u bits\n" msgstr "Kulcsméret érvénytelen; %u bitet használok.\n" -#: g10/keygen.c:1451 g10/keygen.c:1508 g10/keygen.c:1516 g10/keygen.c:1667 +#: g10/keygen.c:1505 g10/keygen.c:1562 g10/keygen.c:1570 g10/keygen.c:1721 #, c-format msgid "keysize rounded up to %u bits\n" msgstr "Kulcsméretet felkerekítettem %u bitre.\n" -#: g10/keygen.c:1542 +#: g10/keygen.c:1596 #, c-format msgid "" "WARNING: some OpenPGP programs can't handle a DSA key with this digest size\n" msgstr "" -#: g10/keygen.c:1723 +#: g10/keygen.c:1777 #, fuzzy msgid "Sign" msgstr "sign" -#: g10/keygen.c:1726 +#: g10/keygen.c:1780 msgid "Certify" msgstr "" -#: g10/keygen.c:1729 +#: g10/keygen.c:1783 #, fuzzy msgid "Encrypt" msgstr "adat titkosítása" -#: g10/keygen.c:1732 +#: g10/keygen.c:1786 msgid "Authenticate" msgstr "" @@ -5489,169 +5495,169 @@ #. * a = Toggle authentication capability #. * q = Finish #. -#: g10/keygen.c:1753 +#: g10/keygen.c:1807 msgid "SsEeAaQq" msgstr "" -#: g10/keygen.c:1784 +#: g10/keygen.c:1838 #, c-format msgid "Possible actions for a %s key: " msgstr "" -#: g10/keygen.c:1790 +#: g10/keygen.c:1844 msgid "Current allowed actions: " msgstr "" -#: g10/keygen.c:1795 +#: g10/keygen.c:1849 #, c-format msgid " (%c) Toggle the sign capability\n" msgstr "" -#: g10/keygen.c:1798 +#: g10/keygen.c:1852 #, fuzzy, c-format msgid " (%c) Toggle the encrypt capability\n" msgstr " (%d) ElGamal (csak titkosítás)\n" -#: g10/keygen.c:1801 +#: g10/keygen.c:1855 #, c-format msgid " (%c) Toggle the authenticate capability\n" msgstr "" -#: g10/keygen.c:1804 +#: g10/keygen.c:1858 #, c-format msgid " (%c) Finished\n" msgstr "" -#: g10/keygen.c:1930 +#: g10/keygen.c:1984 #, fuzzy, c-format msgid " (%d) RSA and RSA (default)\n" msgstr " (%d) DSA és ElGamal (alapértelmezés)\n" -#: g10/keygen.c:1934 +#: g10/keygen.c:1988 #, fuzzy, c-format msgid " (%d) DSA and Elgamal\n" msgstr " (%d) DSA és ElGamal (alapértelmezés)\n" -#: g10/keygen.c:1937 +#: g10/keygen.c:1991 #, c-format msgid " (%d) DSA (sign only)\n" msgstr " (%d) DSA (csak aláírás)\n" -#: g10/keygen.c:1939 +#: g10/keygen.c:1993 #, c-format msgid " (%d) RSA (sign only)\n" msgstr " (%d) RSA (csak aláírás)\n" -#: g10/keygen.c:1945 +#: g10/keygen.c:1999 #, fuzzy, c-format msgid " (%d) Elgamal (encrypt only)\n" msgstr " (%d) ElGamal (csak titkosítás)\n" -#: g10/keygen.c:1947 +#: g10/keygen.c:2001 #, c-format msgid " (%d) RSA (encrypt only)\n" msgstr " (%d) RSA (csak titkosítás)\n" -#: g10/keygen.c:1953 +#: g10/keygen.c:2007 #, fuzzy, c-format msgid " (%d) DSA (set your own capabilities)\n" msgstr " (%d) RSA (csak titkosítás)\n" -#: g10/keygen.c:1955 +#: g10/keygen.c:2009 #, fuzzy, c-format msgid " (%d) RSA (set your own capabilities)\n" msgstr " (%d) RSA (csak titkosítás)\n" -#: g10/keygen.c:1961 +#: g10/keygen.c:2015 #, fuzzy, c-format msgid " (%d) ECC and ECC\n" msgstr " (%d) DSA és ElGamal (alapértelmezés)\n" -#: g10/keygen.c:1963 +#: g10/keygen.c:2017 #, fuzzy, c-format #| msgid " (%d) DSA (sign only)\n" msgid " (%d) ECC (sign only)\n" msgstr " (%d) DSA (csak aláírás)\n" -#: g10/keygen.c:1965 +#: g10/keygen.c:2019 #, fuzzy, c-format msgid " (%d) ECC (set your own capabilities)\n" msgstr " (%d) RSA (csak titkosítás)\n" -#: g10/keygen.c:1967 +#: g10/keygen.c:2021 #, fuzzy, c-format #| msgid " (%d) RSA (encrypt only)\n" msgid " (%d) ECC (encrypt only)\n" msgstr " (%d) RSA (csak titkosítás)\n" -#: g10/keygen.c:1971 +#: g10/keygen.c:2025 #, fuzzy, c-format msgid " (%d) Existing key\n" msgstr " (%d) RSA (csak titkosítás)\n" -#: g10/keygen.c:1973 +#: g10/keygen.c:2027 #, fuzzy, c-format msgid " (%d) Existing key from card\n" msgstr " (%d) RSA (csak titkosítás)\n" -#: g10/keygen.c:2069 sm/certreqgen-ui.c:202 +#: g10/keygen.c:2123 sm/certreqgen-ui.c:202 #, fuzzy msgid "Enter the keygrip: " msgstr "Aláírás-jelölés: " -#: g10/keygen.c:2082 sm/certreqgen-ui.c:210 +#: g10/keygen.c:2136 sm/certreqgen-ui.c:210 msgid "Not a valid keygrip (expecting 40 hex digits)\n" msgstr "" -#: g10/keygen.c:2084 sm/certreqgen-ui.c:212 +#: g10/keygen.c:2138 sm/certreqgen-ui.c:212 #, fuzzy msgid "No key with this keygrip\n" msgstr "Nincs %d indexű felhasználóazonosító!\n" -#: g10/keygen.c:2103 g10/keygen.c:2113 g10/keygen.c:3216 g10/keygen.c:3227 +#: g10/keygen.c:2157 g10/keygen.c:2167 g10/keygen.c:3270 g10/keygen.c:3281 #: sm/certreqgen-ui.c:230 sm/certreqgen-ui.c:239 #, fuzzy, c-format msgid "error reading the card: %s\n" msgstr "%s: Hiba szabad rekord olvasásakor: %s.\n" -#: g10/keygen.c:2107 g10/keygen.c:3220 sm/certreqgen-ui.c:233 +#: g10/keygen.c:2161 g10/keygen.c:3274 sm/certreqgen-ui.c:233 #, fuzzy, c-format msgid "Serial number of the card: %s\n" msgstr "Hiba a jelszó létrehozásakor: %s.\n" -#: g10/keygen.c:2120 sm/certreqgen-ui.c:245 +#: g10/keygen.c:2174 sm/certreqgen-ui.c:245 #, fuzzy msgid "Available keys:\n" msgstr "kulcs tiltása" -#: g10/keygen.c:2297 g10/keygen.c:2311 +#: g10/keygen.c:2351 g10/keygen.c:2365 #, fuzzy, c-format #| msgid "rounded up to %u bits\n" msgid "rounded to %u bits\n" msgstr "Felkerekítve %u bitre.\n" -#: g10/keygen.c:2352 +#: g10/keygen.c:2406 #, c-format msgid "%s keys may be between %u and %u bits long.\n" msgstr "" -#: g10/keygen.c:2360 +#: g10/keygen.c:2414 #, fuzzy, c-format msgid "What keysize do you want for the subkey? (%u) " msgstr "Milyen kulcsméretet szeretne? (1024) " -#: g10/keygen.c:2377 sm/certreqgen-ui.c:189 +#: g10/keygen.c:2431 sm/certreqgen-ui.c:189 #, c-format msgid "Requested keysize is %u bits\n" msgstr "A kívánt kulcsméret %u bit.\n" -#: g10/keygen.c:2423 +#: g10/keygen.c:2477 #, fuzzy #| msgid "Please select what kind of key you want:\n" msgid "Please select which elliptic curve you want:\n" msgstr "Kérem, adja meg, milyen kulcsot kíván:\n" -#: g10/keygen.c:2611 +#: g10/keygen.c:2665 msgid "" "Please specify how long the key should be valid.\n" " 0 = key does not expire\n" @@ -5667,7 +5673,7 @@ " m = a kulcs n hónapig érvényes\n" " y = a kulcs n évig érvényes\n" -#: g10/keygen.c:2622 +#: g10/keygen.c:2676 msgid "" "Please specify how long the signature should be valid.\n" " 0 = signature does not expire\n" @@ -5683,40 +5689,40 @@ " m = az aláírás n hónapig érvényes\n" " y = az aláírás n évig érvényes\n" -#: g10/keygen.c:2645 +#: g10/keygen.c:2699 msgid "Key is valid for? (0) " msgstr "Meddig érvényes a kulcs? (0) " -#: g10/keygen.c:2650 +#: g10/keygen.c:2704 #, fuzzy, c-format msgid "Signature is valid for? (%s) " msgstr "Meddig érvényes az aláírás? (0) " -#: g10/keygen.c:2663 g10/keygen.c:2688 +#: g10/keygen.c:2717 g10/keygen.c:2742 msgid "invalid value\n" msgstr "Érvénytelen érték!\n" -#: g10/keygen.c:2670 +#: g10/keygen.c:2724 #, fuzzy msgid "Key does not expire at all\n" msgstr "%s soha nem jár le.\n" -#: g10/keygen.c:2671 +#: g10/keygen.c:2725 #, fuzzy msgid "Signature does not expire at all\n" msgstr "%s soha nem jár le.\n" -#: g10/keygen.c:2676 +#: g10/keygen.c:2730 #, fuzzy, c-format msgid "Key expires at %s\n" msgstr "%s lejár: %s\n" -#: g10/keygen.c:2677 +#: g10/keygen.c:2731 #, fuzzy, c-format msgid "Signature expires at %s\n" msgstr "Az aláírás lejár: %s.\n" -#: g10/keygen.c:2681 +#: g10/keygen.c:2735 msgid "" "Your system can't display dates beyond 2038.\n" "However, it will be correctly handled up to 2106.\n" @@ -5724,12 +5730,12 @@ "Az Ön rendszere nem tud megjeleníteni 2038 utáni dátumokat.\n" "Azonban kezelni helyesen tudja őket egészen 2106-ig.\n" -#: g10/keygen.c:2694 +#: g10/keygen.c:2748 #, fuzzy msgid "Is this correct? (y/N) " msgstr "Ez így helyes (i/n)? " -#: g10/keygen.c:2762 +#: g10/keygen.c:2816 msgid "" "\n" "GnuPG needs to construct a user ID to identify your key.\n" @@ -5740,7 +5746,7 @@ #. but you should keep your existing translation. In case #. the new string is not translated this old string will #. be used. -#: g10/keygen.c:2777 +#: g10/keygen.c:2831 #, fuzzy msgid "" "\n" @@ -5757,50 +5763,50 @@ " \"Heinrich Heine (a költő) \"\n" "\n" -#: g10/keygen.c:2796 +#: g10/keygen.c:2850 msgid "Real name: " msgstr "Teljes név: " -#: g10/keygen.c:2805 +#: g10/keygen.c:2859 msgid "Invalid character in name\n" msgstr "Érvénytelen karakter a névben!\n" -#: g10/keygen.c:2806 +#: g10/keygen.c:2860 #, c-format msgid "The characters '%s' and '%s' may not appear in name\n" msgstr "" -#: g10/keygen.c:2810 +#: g10/keygen.c:2864 msgid "Name may not start with a digit\n" msgstr "A név lehet, hogy nem kezdődhet számmal!\n" -#: g10/keygen.c:2813 +#: g10/keygen.c:2867 msgid "Name must be at least 5 characters long\n" msgstr "A név legalább 5 karakter kell legyen!\n" -#: g10/keygen.c:2823 +#: g10/keygen.c:2877 msgid "Email address: " msgstr "E-mail cím: " -#: g10/keygen.c:2829 +#: g10/keygen.c:2883 msgid "Not a valid email address\n" msgstr "Ez nem érvényes e-mail cím.\n" -#: g10/keygen.c:2838 +#: g10/keygen.c:2892 msgid "Comment: " msgstr "Megjegyzés: " -#: g10/keygen.c:2844 +#: g10/keygen.c:2898 msgid "Invalid character in comment\n" msgstr "Érvénytelen karakter a megjegyzésben!\n" -#: g10/keygen.c:2880 +#: g10/keygen.c:2934 #, fuzzy, c-format #| msgid "You are using the `%s' character set.\n" msgid "You are using the '%s' character set.\n" msgstr "Ön a(z) %s karakterkódolást használja.\n" -#: g10/keygen.c:2886 +#: g10/keygen.c:2940 #, c-format msgid "" "You selected this USER-ID:\n" @@ -5811,7 +5817,7 @@ " \"%s\"\n" "\n" -#: g10/keygen.c:2891 +#: g10/keygen.c:2945 msgid "Please don't put the email address into the real name or the comment\n" msgstr "Kérem, ne rakja az e-mail címet a teljes névbe vagy a megjegyzésbe!\n" @@ -5826,32 +5832,32 @@ #. o = Okay (ready, continue) #. q = Quit #. -#: g10/keygen.c:2916 +#: g10/keygen.c:2970 msgid "NnCcEeOoQq" msgstr "NnMmEeRrKk" -#: g10/keygen.c:2926 +#: g10/keygen.c:2980 msgid "Change (N)ame, (C)omment, (E)mail or (Q)uit? " msgstr "(N)év, (M)egjegyzés, (E)-mail megváltoztatása vagy (K)ilépés? " -#: g10/keygen.c:2927 +#: g10/keygen.c:2981 msgid "Change (N)ame, (C)omment, (E)mail or (O)kay/(Q)uit? " msgstr "" "(N)év, (M)egjegyzés, (E)-mail megváltoztatása vagy (R)endben/(K)ilépés? " -#: g10/keygen.c:2932 +#: g10/keygen.c:2986 msgid "Change (N)ame, (E)mail, or (Q)uit? " msgstr "(N)év, (E)-mail megváltoztatása vagy (K)ilépés? " -#: g10/keygen.c:2933 +#: g10/keygen.c:2987 msgid "Change (N)ame, (E)mail, or (O)kay/(Q)uit? " msgstr "(N)év, (E)-mail megváltoztatása vagy (R)endben/(K)ilépés? " -#: g10/keygen.c:2952 +#: g10/keygen.c:3006 msgid "Please correct the error first\n" msgstr "Kérem, előbb javítsa ki a hibát!\n" -#: g10/keygen.c:2998 +#: g10/keygen.c:3052 msgid "" "We need to generate a lot of random bytes. It is a good idea to perform\n" "some other action (type on the keyboard, move the mouse, utilize the\n" @@ -5863,13 +5869,13 @@ "a lemezeket) a prímszám generálása alatt. Ez segíti a véletlenszám-\n" "generátort, hogy entrópiát tudjon gyűjteni.\n" -#: g10/keygen.c:4278 g10/keygen.c:4349 g10/keygen.c:4367 g10/keygen.c:4395 -#: g10/keygen.c:4739 g10/keygen.c:5239 g10/keygen.c:5534 g10/keygen.c:5639 +#: g10/keygen.c:4332 g10/keygen.c:4403 g10/keygen.c:4421 g10/keygen.c:4449 +#: g10/keygen.c:4793 g10/keygen.c:5293 g10/keygen.c:5588 g10/keygen.c:5693 #, c-format msgid "Key generation failed: %s\n" msgstr "Kulcsgenerálás sikertelen: %s\n" -#: g10/keygen.c:4287 +#: g10/keygen.c:4341 #, c-format msgid "" "About to create a key for:\n" @@ -5877,69 +5883,69 @@ "\n" msgstr "" -#: g10/keygen.c:4289 +#: g10/keygen.c:4343 msgid "Continue? (Y/n) " msgstr "" -#: g10/keygen.c:4310 +#: g10/keygen.c:4364 #, fuzzy, c-format msgid "A key for \"%s\" already exists\n" msgstr "\"%s\" már tömörített.\n" -#: g10/keygen.c:4315 +#: g10/keygen.c:4369 #, fuzzy #| msgid "Create anyway? " msgid "Create anyway? (y/N) " msgstr "Mégis létrehozzam? " -#: g10/keygen.c:4321 +#: g10/keygen.c:4375 #, fuzzy, c-format #| msgid "Create anyway? " msgid "creating anyway\n" msgstr "Mégis létrehozzam? " -#: g10/keygen.c:4722 +#: g10/keygen.c:4776 #, c-format msgid "Note: Use \"%s %s\" for a full featured key generation dialog.\n" msgstr "" -#: g10/keygen.c:4771 +#: g10/keygen.c:4825 #, c-format msgid "Key generation canceled.\n" msgstr "Kulcs létrehozása megszakítva.\n" -#: g10/keygen.c:4831 +#: g10/keygen.c:4885 #, fuzzy, c-format msgid "can't create backup file '%s': %s\n" msgstr "Nem tudom létrehozni a(z) \"%s\" állományt: %s.\n" -#: g10/keygen.c:4851 +#: g10/keygen.c:4905 #, fuzzy, c-format msgid "Note: backup of card key saved to '%s'\n" msgstr "MEGJEGYZÉS: %08lX titkos kulcs %s-kor lejárt.\n" -#: g10/keygen.c:5010 g10/keygen.c:5172 +#: g10/keygen.c:5064 g10/keygen.c:5226 #, fuzzy, c-format #| msgid "writing public key to `%s'\n" msgid "writing public key to '%s'\n" msgstr "Írom a kulcsot a %s állományba.\n" -#: g10/keygen.c:5166 +#: g10/keygen.c:5220 #, c-format msgid "no writable public keyring found: %s\n" msgstr "Nem írható nyilvánoskulcs-karikát találtam: %s\n" -#: g10/keygen.c:5180 +#: g10/keygen.c:5234 #, fuzzy, c-format #| msgid "error writing public keyring `%s': %s\n" msgid "error writing public keyring '%s': %s\n" msgstr "Hiba a(z) \"%s\" nyilvánoskulcs-karika írásakor: %s.\n" -#: g10/keygen.c:5210 +#: g10/keygen.c:5264 msgid "public and secret key created and signed.\n" msgstr "A nyilvános és titkos kulcsokat létrehoztam és aláírtam.\n" -#: g10/keygen.c:5226 +#: g10/keygen.c:5280 #, fuzzy msgid "" "Note that this key cannot be used for encryption. You may want to use\n" @@ -5949,38 +5955,38 @@ "kíván ilyen célra létrehozni, azt az \"--edit-key\" parancs segítségével\n" "teheti meg.\n" -#: g10/keygen.c:5401 g10/keygen.c:5590 +#: g10/keygen.c:5455 g10/keygen.c:5644 #, c-format msgid "" "key has been created %lu second in future (time warp or clock problem)\n" msgstr "" "A kulcs %lu másodperccel a jövőben készült. (Időugrás vagy óraprobléma.)\n" -#: g10/keygen.c:5403 g10/keygen.c:5592 +#: g10/keygen.c:5457 g10/keygen.c:5646 #, c-format msgid "" "key has been created %lu seconds in future (time warp or clock problem)\n" msgstr "" "A kulcs %lu másodperccel a jövőben készült. (Időugrás vagy óraprobléma.)\n" -#: g10/keygen.c:5414 g10/keygen.c:5603 +#: g10/keygen.c:5468 g10/keygen.c:5657 #, fuzzy, c-format #| msgid "NOTE: creating subkeys for v3 keys is not OpenPGP compliant\n" msgid "Note: creating subkeys for v3 keys is not OpenPGP compliant\n" msgstr "" "MEGJEGYZÉS: Alkulcsok létrehozása v3 kulcsokhoz nem OpenPGP-megfelelő.\n" -#: g10/keygen.c:5426 g10/keygen.c:5428 +#: g10/keygen.c:5480 g10/keygen.c:5482 #, c-format msgid "Secret parts of primary key are not available.\n" msgstr "Az elsődleges kulcs titkos részei nem elérhetők.\n" -#: g10/keygen.c:5435 g10/keygen.c:5437 +#: g10/keygen.c:5489 g10/keygen.c:5491 #, fuzzy, c-format msgid "Secret parts of primary key are stored on-card.\n" msgstr "Az elsődleges kulcs titkos részei nem elérhetők.\n" -#: g10/keygen.c:5456 g10/keygen.c:5617 +#: g10/keygen.c:5510 g10/keygen.c:5671 #, fuzzy msgid "Really create? (y/N) " msgstr "Valóban létrehozzam? " @@ -7094,31 +7100,31 @@ msgstr "" "Az adatot nem mentettem el. Használja az \"--output\" opciót a mentéshez!\n" -#: g10/plaintext.c:615 +#: g10/plaintext.c:620 msgid "Detached signature.\n" msgstr "Különálló aláírás.\n" -#: g10/plaintext.c:623 +#: g10/plaintext.c:628 msgid "Please enter name of data file: " msgstr "Kérem, adja meg az adatállomány nevét: " -#: g10/plaintext.c:660 +#: g10/plaintext.c:665 #, c-format msgid "reading stdin ...\n" msgstr "Olvasom a szabványos bemenetet...\n" -#: g10/plaintext.c:705 +#: g10/plaintext.c:710 #, c-format msgid "no signed data\n" msgstr "Nincs aláírt adat.\n" -#: g10/plaintext.c:723 +#: g10/plaintext.c:728 #, fuzzy, c-format #| msgid "can't open signed data `%s'\n" msgid "can't open signed data '%s'\n" msgstr "Nem tudom megnyitni a(z) \"%s\" aláírt adatot!\n" -#: g10/plaintext.c:758 +#: g10/plaintext.c:763 #, fuzzy, c-format msgid "can't open signed data fd=%d: %s\n" msgstr "Nem tudom megnyitni a(z) \"%s\" aláírt adatot!\n" @@ -8132,7 +8138,7 @@ msgid "no need for a trustdb check\n" msgstr "Nincs szükség a bizalmi adatbázis ellenőrzésére.\n" -#: g10/trustdb.c:631 g10/trustdb.c:2326 +#: g10/trustdb.c:631 g10/trustdb.c:2338 #, c-format msgid "next trustdb check due at %s\n" msgstr "A bizalmi adatbázis következő ellenőrzése: %s.\n" @@ -8162,14 +8168,14 @@ msgid "checking the trustdb\n" msgstr "Ellenőrzöm a bizalmi adatbázist.\n" -#: g10/trustdb.c:2047 +#: g10/trustdb.c:2059 #, fuzzy, c-format msgid "%d key processed" msgid_plural "%d keys processed" msgstr[0] "Eddig %lu kulcsot dolgoztam fel.\n" msgstr[1] "Eddig %lu kulcsot dolgoztam fel.\n" -#: g10/trustdb.c:2050 +#: g10/trustdb.c:2062 #, fuzzy, c-format #| msgid "%d keys processed (%d validity counts cleared)\n" msgid " (%d validity count cleared)\n" @@ -8177,23 +8183,23 @@ msgstr[0] "%d kulcsot feldolgoztam (%d érvényességszámlálót töröltem)\n" msgstr[1] "%d kulcsot feldolgoztam (%d érvényességszámlálót töröltem)\n" -#: g10/trustdb.c:2120 +#: g10/trustdb.c:2132 #, c-format msgid "no ultimately trusted keys found\n" msgstr "Nem találtam alapvetően megbízható kulcsot.\n" -#: g10/trustdb.c:2134 +#: g10/trustdb.c:2146 #, fuzzy, c-format msgid "public key of ultimately trusted key %s not found\n" msgstr "Nem találom az alapvetően megbízható %08lX kulcs nyilvános kulcsát!\n" -#: g10/trustdb.c:2252 +#: g10/trustdb.c:2264 #, c-format msgid "" "depth: %d valid: %3d signed: %3d trust: %d-, %dq, %dn, %dm, %df, %du\n" msgstr "" -#: g10/trustdb.c:2333 +#: g10/trustdb.c:2345 #, fuzzy, c-format msgid "unable to update trustdb version record: write failed: %s\n" msgstr "%lu bizalmi rekord, %d típus: írás sikertelen: %s.\n" @@ -8311,88 +8317,94 @@ #. TRANSLATORS: Put a \x1f right before a colon. This can be #. * used by pinentry to nicely align the names and values. Keep #. * the %s at the start and end of the string. -#: scd/app-p15.c:5116 scd/app-openpgp.c:2154 +#: scd/app-p15.c:5145 scd/app-nks.c:1541 scd/app-openpgp.c:2154 #, c-format msgid "%sNumber: %s%%0AHolder: %s%s" msgstr "" #. TRANSLATORS: This is the number of remaining attempts to #. * enter a PIN. Use %%0A (double-percent,0A) for a linefeed. -#: scd/app-p15.c:5135 scd/app-openpgp.c:2170 +#: scd/app-p15.c:5164 scd/app-nks.c:1560 scd/app-openpgp.c:2170 #, c-format msgid "Remaining attempts: %d" msgstr "" -#: scd/app-p15.c:5214 scd/app-nks.c:1113 +#: scd/app-p15.c:5243 scd/app-nks.c:2112 msgid "||Please enter the PIN for the key to create qualified signatures." msgstr "" #. TRANSLATORS: Do not translate the "|A|" prefix but keep it at #. the start of the string. Use %0A (single percent) for a linefeed. -#: scd/app-p15.c:5217 scd/app-openpgp.c:2464 +#: scd/app-p15.c:5246 scd/app-openpgp.c:2465 #, fuzzy msgid "|A|Please enter the Admin PIN" msgstr "jelszóváltoztatás" -#: scd/app-p15.c:5219 scd/app-nks.c:1103 +#: scd/app-p15.c:5248 scd/app-nks.c:2102 #, fuzzy msgid "|P|Please enter the PIN Unblocking Code (PUK) for the standard keys." msgstr "Kérem, válassza ki a visszavonás okát:\n" -#: scd/app-p15.c:5222 scd/app-nks.c:1095 +#: scd/app-p15.c:5251 scd/app-nks.c:2093 #, fuzzy msgid "||Please enter the PIN for the standard keys." msgstr "jelszóváltoztatás" -#: scd/app-nks.c:709 scd/app-openpgp.c:3666 +#: scd/app-nks.c:1479 scd/app-openpgp.c:3675 #, c-format msgid "RSA modulus missing or not of size %d bits\n" msgstr "" -#: scd/app-nks.c:717 scd/app-openpgp.c:3678 +#: scd/app-nks.c:1487 scd/app-openpgp.c:3687 #, c-format msgid "RSA public exponent missing or larger than %d bits\n" msgstr "" -#: scd/app-nks.c:797 scd/app-openpgp.c:2327 scd/app-openpgp.c:2346 -#: scd/app-openpgp.c:2513 scd/app-openpgp.c:2531 scd/app-openpgp.c:2829 -#: scd/app-openpgp.c:2876 scd/app-openpgp.c:2991 scd/app-dinsig.c:302 +#: scd/app-nks.c:1660 +#, fuzzy +#| msgid "Note: This key has been disabled.\n" +msgid "Note: PIN has not yet been enabled." +msgstr "Megjegyzés: Ez a kulcs le lett tiltva.\n" + +#: scd/app-nks.c:1671 scd/app-openpgp.c:2327 scd/app-openpgp.c:2346 +#: scd/app-openpgp.c:2515 scd/app-openpgp.c:2533 scd/app-openpgp.c:2832 +#: scd/app-openpgp.c:2879 scd/app-openpgp.c:3000 scd/app-dinsig.c:303 #, c-format msgid "PIN callback returned error: %s\n" msgstr "" -#: scd/app-nks.c:830 +#: scd/app-nks.c:1707 #, c-format msgid "the NullPIN has not yet been changed\n" msgstr "" -#: scd/app-nks.c:1094 +#: scd/app-nks.c:2092 #, fuzzy msgid "|N|Please enter a new PIN for the standard keys." msgstr "jelszóváltoztatás" -#: scd/app-nks.c:1101 +#: scd/app-nks.c:2100 #, fuzzy msgid "|NP|Please enter a new PIN Unblocking Code (PUK) for the standard keys." msgstr "Kérem, válassza ki a visszavonás okát:\n" -#: scd/app-nks.c:1111 +#: scd/app-nks.c:2110 msgid "|N|Please enter a new PIN for the key to create qualified signatures." msgstr "" -#: scd/app-nks.c:1121 +#: scd/app-nks.c:2120 msgid "" "|NP|Please enter a new PIN Unblocking Code (PUK) for the key to create " "qualified signatures." msgstr "" -#: scd/app-nks.c:1123 +#: scd/app-nks.c:2122 msgid "" "|P|Please enter the PIN Unblocking Code (PUK) for the key to create " "qualified signatures." msgstr "" -#: scd/app-nks.c:1230 scd/app-openpgp.c:2910 scd/app-dinsig.c:532 +#: scd/app-nks.c:2295 scd/app-openpgp.c:2913 scd/app-dinsig.c:535 #, fuzzy, c-format msgid "error getting new PIN: %s\n" msgstr "Hiba a jelszó létrehozásakor: %s.\n" @@ -8407,7 +8419,7 @@ msgid "failed to store the creation date: %s\n" msgstr "Nem tudtam újraépíteni a kulcskarika cache-ét: %s\n" -#: scd/app-openpgp.c:1271 scd/app-openpgp.c:2857 scd/app-openpgp.c:5041 +#: scd/app-openpgp.c:1271 scd/app-openpgp.c:2860 scd/app-openpgp.c:5051 #, c-format msgid "error retrieving CHV status from card\n" msgstr "" @@ -8428,7 +8440,7 @@ msgid "response does not contain the EC public key\n" msgstr "kulcsok eltávolítása a nyilvánoskulcs-karikáról" -#: scd/app-openpgp.c:1664 scd/app-openpgp.c:4286 +#: scd/app-openpgp.c:1664 scd/app-openpgp.c:4295 #, c-format msgid "response does not contain the public key data\n" msgstr "" @@ -8461,23 +8473,23 @@ msgid "||Please unlock the card" msgstr "jelszóváltoztatás" -#: scd/app-openpgp.c:2353 scd/app-openpgp.c:2538 scd/app-openpgp.c:2836 +#: scd/app-openpgp.c:2353 scd/app-openpgp.c:2540 scd/app-openpgp.c:2839 #, c-format msgid "PIN for CHV%d is too short; minimum length is %d\n" msgstr "" -#: scd/app-openpgp.c:2367 scd/app-openpgp.c:2414 scd/app-openpgp.c:2552 -#: scd/app-openpgp.c:4644 +#: scd/app-openpgp.c:2368 scd/app-openpgp.c:2415 scd/app-openpgp.c:2554 +#: scd/app-openpgp.c:4654 #, fuzzy, c-format msgid "verify CHV%d failed: %s\n" msgstr "Küldés a kulcsszerverre sikertelen: %s\n" -#: scd/app-openpgp.c:2450 scd/app-openpgp.c:5050 +#: scd/app-openpgp.c:2451 scd/app-openpgp.c:5060 #, c-format msgid "card is permanently locked!\n" msgstr "" -#: scd/app-openpgp.c:2454 +#: scd/app-openpgp.c:2455 #, c-format msgid "%d Admin PIN attempt remaining before card is permanently locked\n" msgid_plural "" @@ -8485,22 +8497,22 @@ msgstr[0] "" msgstr[1] "" -#: scd/app-openpgp.c:2485 +#: scd/app-openpgp.c:2486 #, c-format msgid "access to admin commands is not configured\n" msgstr "" -#: scd/app-openpgp.c:2823 +#: scd/app-openpgp.c:2826 #, fuzzy msgid "||Please enter the PIN" msgstr "jelszóváltoztatás" -#: scd/app-openpgp.c:2872 +#: scd/app-openpgp.c:2875 #, fuzzy msgid "||Please enter the Reset Code for the card" msgstr "Kérem, válassza ki a visszavonás okát:\n" -#: scd/app-openpgp.c:2882 scd/app-openpgp.c:2943 +#: scd/app-openpgp.c:2885 scd/app-openpgp.c:2946 #, c-format msgid "Reset Code is too short; minimum length is %d\n" msgstr "" @@ -8508,128 +8520,128 @@ #. 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:2905 +#: scd/app-openpgp.c:2908 msgid "|RN|New Reset Code" msgstr "" -#: scd/app-openpgp.c:2906 +#: scd/app-openpgp.c:2909 msgid "|AN|New Admin PIN" msgstr "" -#: scd/app-openpgp.c:2906 +#: scd/app-openpgp.c:2909 msgid "|N|New PIN" msgstr "" -#: scd/app-openpgp.c:2987 +#: scd/app-openpgp.c:2996 #, fuzzy msgid "||Please enter the Admin PIN and New Admin PIN" msgstr "jelszóváltoztatás" -#: scd/app-openpgp.c:2988 +#: scd/app-openpgp.c:2997 #, fuzzy msgid "||Please enter the PIN and New PIN" msgstr "jelszóváltoztatás" -#: scd/app-openpgp.c:3050 scd/app-openpgp.c:4346 +#: scd/app-openpgp.c:3059 scd/app-openpgp.c:4355 #, fuzzy, c-format msgid "error reading application data\n" msgstr "Hiba a kulcsblokk olvasásakor: %s\n" -#: scd/app-openpgp.c:3056 scd/app-openpgp.c:4353 +#: scd/app-openpgp.c:3065 scd/app-openpgp.c:4362 #, fuzzy, c-format msgid "error reading fingerprint DO\n" msgstr "%s: Hiba szabad rekord olvasásakor: %s.\n" -#: scd/app-openpgp.c:3066 +#: scd/app-openpgp.c:3075 #, fuzzy, c-format msgid "key already exists\n" msgstr "\"%s\" már tömörített.\n" -#: scd/app-openpgp.c:3070 +#: scd/app-openpgp.c:3079 #, c-format msgid "existing key will be replaced\n" msgstr "" -#: scd/app-openpgp.c:3072 +#: scd/app-openpgp.c:3081 #, fuzzy, c-format msgid "generating new key\n" msgstr "új kulcspár létrehozása" -#: scd/app-openpgp.c:3074 +#: scd/app-openpgp.c:3083 #, fuzzy, c-format msgid "writing new key\n" msgstr "új kulcspár létrehozása" -#: scd/app-openpgp.c:3647 scd/app-openpgp.c:3999 +#: scd/app-openpgp.c:3656 scd/app-openpgp.c:4008 #, c-format msgid "creation timestamp missing\n" msgstr "" -#: scd/app-openpgp.c:3688 scd/app-openpgp.c:3696 +#: scd/app-openpgp.c:3697 scd/app-openpgp.c:3705 #, c-format msgid "RSA prime %s missing or not of size %d bits\n" msgstr "" -#: scd/app-openpgp.c:3829 scd/app-openpgp.c:4106 +#: scd/app-openpgp.c:3838 scd/app-openpgp.c:4115 #, 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:3993 +#: scd/app-openpgp.c:4002 #, fuzzy, c-format #| msgid "unsupported URI" msgid "unsupported curve\n" msgstr "nem támogatott URI" -#: scd/app-openpgp.c:4263 +#: scd/app-openpgp.c:4272 #, c-format msgid "please wait while key is being generated ...\n" msgstr "" -#: scd/app-openpgp.c:4271 +#: scd/app-openpgp.c:4280 #, fuzzy, c-format msgid "generating key failed\n" msgstr "A kulcsblokk törlése sikertelen: %s.\n" -#: scd/app-openpgp.c:4277 +#: scd/app-openpgp.c:4286 #, fuzzy, c-format msgid "key generation completed (%d second)\n" msgid_plural "key generation completed (%d seconds)\n" msgstr[0] "Kulcsgenerálás sikertelen: %s\n" msgstr[1] "Kulcsgenerálás sikertelen: %s\n" -#: scd/app-openpgp.c:4311 +#: scd/app-openpgp.c:4320 #, c-format msgid "invalid structure of OpenPGP card (DO 0x93)\n" msgstr "" -#: scd/app-openpgp.c:4361 +#: scd/app-openpgp.c:4370 #, c-format msgid "fingerprint on card does not match requested one\n" msgstr "" -#: scd/app-openpgp.c:4560 +#: scd/app-openpgp.c:4569 #, 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:4618 +#: scd/app-openpgp.c:4627 #, c-format msgid "signatures created so far: %lu\n" msgstr "" -#: scd/app-openpgp.c:5055 +#: scd/app-openpgp.c:5065 #, c-format msgid "" "verification of Admin PIN is currently prohibited through this command\n" msgstr "" -#: scd/app-openpgp.c:5386 scd/app-openpgp.c:5398 +#: scd/app-openpgp.c:5396 scd/app-openpgp.c:5408 #, fuzzy, c-format msgid "can't access %s - invalid OpenPGP card?\n" msgstr "Nem találtam érvényes OpenPGP adatot.\n" -#: scd/app-dinsig.c:298 +#: scd/app-dinsig.c:299 #, fuzzy msgid "||Please enter your PIN at the reader's pinpad" msgstr "jelszóváltoztatás" @@ -8637,7 +8649,7 @@ #. 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-dinsig.c:529 +#: scd/app-dinsig.c:532 msgid "|N|Initial New PIN" msgstr "" @@ -8727,11 +8739,11 @@ msgid "validation model requested by certificate: %s" msgstr "" -#: sm/certchain.c:199 sm/certchain.c:2164 +#: sm/certchain.c:199 sm/certchain.c:2165 msgid "chain" msgstr "" -#: sm/certchain.c:200 sm/certchain.c:2164 +#: sm/certchain.c:200 sm/certchain.c:2165 #, fuzzy msgid "shell" msgstr "help" @@ -8755,241 +8767,241 @@ msgid "failed to open '%s': %s\n" msgstr "Nem tudom megnyitni a(z) \"%s\" állományt: %s.\n" -#: sm/certchain.c:355 sm/certchain.c:384 dirmngr/validate.c:204 +#: sm/certchain.c:355 sm/certchain.c:385 dirmngr/validate.c:204 #, fuzzy, c-format msgid "Note: non-critical certificate policy not allowed" msgstr "Írom a titkos kulcsot a %s állományba.\n" -#: sm/certchain.c:359 sm/certchain.c:388 dirmngr/validate.c:209 +#: sm/certchain.c:359 sm/certchain.c:389 dirmngr/validate.c:209 #, fuzzy, c-format msgid "certificate policy not allowed" msgstr "Írom a titkos kulcsot a %s állományba.\n" -#: sm/certchain.c:595 sm/keydb.c:1084 sm/keydb.c:1171 +#: sm/certchain.c:596 sm/keydb.c:1084 sm/keydb.c:1171 #, fuzzy, c-format msgid "failed to get the fingerprint\n" msgstr "Bizalmi adatbázis (%s) inicializálása sikertelen!\n" -#: sm/certchain.c:624 +#: sm/certchain.c:625 #, c-format msgid "looking up issuer at external location\n" msgstr "" -#: sm/certchain.c:644 +#: sm/certchain.c:645 #, c-format msgid "number of issuers matching: %d\n" msgstr "" -#: sm/certchain.c:723 dirmngr/ocsp.c:685 +#: sm/certchain.c:724 dirmngr/ocsp.c:685 #, fuzzy, c-format #| msgid "%s: can't access: %s\n" msgid "can't get authorityInfoAccess: %s\n" msgstr "%s: Nem tudom elérni: %s.\n" -#: sm/certchain.c:791 +#: sm/certchain.c:792 #, c-format msgid "looking up issuer from the Dirmngr cache\n" msgstr "" -#: sm/certchain.c:816 +#: sm/certchain.c:817 #, fuzzy, c-format msgid "number of matching certificates: %d\n" msgstr "Hiba a jelszó létrehozásakor: %s.\n" -#: sm/certchain.c:819 +#: sm/certchain.c:820 #, fuzzy, c-format msgid "dirmngr cache-only key lookup failed: %s\n" msgstr "A kulcsblokk törlése sikertelen: %s.\n" -#: sm/certchain.c:1041 sm/certchain.c:1554 sm/certchain.c:2192 sm/decrypt.c:728 +#: sm/certchain.c:1042 sm/certchain.c:1555 sm/certchain.c:2193 sm/decrypt.c:728 #: sm/encrypt.c:345 sm/import.c:415 sm/keydb.c:1091 sm/keydb.c:1178 #: sm/sign.c:337 sm/verify.c:118 #, fuzzy, c-format msgid "failed to allocate keyDB handle\n" msgstr "Bizalmi adatbázis (%s) inicializálása sikertelen!\n" -#: sm/certchain.c:1225 +#: sm/certchain.c:1226 #, fuzzy msgid "certificate has been revoked" msgstr "MEGJEGYZÉS: A kulcsot visszavonták." -#: sm/certchain.c:1240 +#: sm/certchain.c:1241 msgid "the status of the certificate is unknown" msgstr "" -#: sm/certchain.c:1247 +#: sm/certchain.c:1248 #, c-format msgid "please make sure that the \"dirmngr\" is properly installed\n" msgstr "" -#: sm/certchain.c:1253 +#: sm/certchain.c:1254 #, fuzzy, c-format msgid "checking the CRL failed: %s" msgstr "A létrehozott aláírás ellenőrzése sikertelen: %s.\n" -#: sm/certchain.c:1282 sm/certchain.c:1350 dirmngr/validate.c:497 +#: sm/certchain.c:1283 sm/certchain.c:1351 dirmngr/validate.c:497 #, c-format msgid "certificate with invalid validity: %s" msgstr "" -#: sm/certchain.c:1297 sm/certchain.c:1382 dirmngr/validate.c:515 +#: sm/certchain.c:1298 sm/certchain.c:1383 dirmngr/validate.c:515 #, c-format msgid "certificate not yet valid" msgstr "" -#: sm/certchain.c:1298 sm/certchain.c:1383 +#: sm/certchain.c:1299 sm/certchain.c:1384 #, fuzzy msgid "root certificate not yet valid" msgstr "Írom a titkos kulcsot a %s állományba.\n" -#: sm/certchain.c:1299 sm/certchain.c:1384 +#: sm/certchain.c:1300 sm/certchain.c:1385 msgid "intermediate certificate not yet valid" msgstr "" -#: sm/certchain.c:1312 dirmngr/validate.c:526 +#: sm/certchain.c:1313 dirmngr/validate.c:526 #, fuzzy, c-format msgid "certificate has expired" msgstr "Ez a kulcs lejárt!" -#: sm/certchain.c:1313 +#: sm/certchain.c:1314 #, fuzzy msgid "root certificate has expired" msgstr "Ez a kulcs lejárt!" -#: sm/certchain.c:1314 +#: sm/certchain.c:1315 #, fuzzy msgid "intermediate certificate has expired" msgstr "Ez a kulcs lejárt!" -#: sm/certchain.c:1356 +#: sm/certchain.c:1357 #, c-format msgid "required certificate attributes missing: %s%s%s" msgstr "" -#: sm/certchain.c:1365 +#: sm/certchain.c:1366 #, fuzzy msgid "certificate with invalid validity" msgstr "Ez a kulcs lejárt!" -#: sm/certchain.c:1402 +#: sm/certchain.c:1403 msgid "signature not created during lifetime of certificate" msgstr "" -#: sm/certchain.c:1404 +#: sm/certchain.c:1405 msgid "certificate not created during lifetime of issuer" msgstr "" -#: sm/certchain.c:1405 +#: sm/certchain.c:1406 msgid "intermediate certificate not created during lifetime of issuer" msgstr "" -#: sm/certchain.c:1409 +#: sm/certchain.c:1410 #, fuzzy, c-format msgid " ( signature created at " msgstr " új aláírások: %lu\n" -#: sm/certchain.c:1410 +#: sm/certchain.c:1411 #, fuzzy, c-format msgid " (certificate created at " msgstr "Visszavonó igazolás létrehozva.\n" -#: sm/certchain.c:1413 +#: sm/certchain.c:1414 #, fuzzy, c-format msgid " (certificate valid from " msgstr "rossz igazolás" -#: sm/certchain.c:1414 +#: sm/certchain.c:1415 #, c-format msgid " ( issuer valid from " msgstr "" -#: sm/certchain.c:1444 dirmngr/validate.c:577 +#: sm/certchain.c:1445 dirmngr/validate.c:577 #, fuzzy, c-format msgid "fingerprint=%s\n" msgstr "megmutatja az ujjlenyomatot" -#: sm/certchain.c:1453 +#: sm/certchain.c:1454 #, c-format msgid "root certificate has now been marked as trusted\n" msgstr "" -#: sm/certchain.c:1466 +#: sm/certchain.c:1467 #, c-format msgid "interactive marking as trusted not enabled in gpg-agent\n" msgstr "" -#: sm/certchain.c:1472 +#: sm/certchain.c:1473 #, c-format msgid "interactive marking as trusted disabled for this session\n" msgstr "" -#: sm/certchain.c:1531 +#: sm/certchain.c:1532 msgid "WARNING: creation time of signature not known - assuming current time" msgstr "" -#: sm/certchain.c:1595 +#: sm/certchain.c:1596 #, fuzzy msgid "no issuer found in certificate" msgstr "visszavonási igazolás készítése" -#: sm/certchain.c:1673 +#: sm/certchain.c:1674 msgid "self-signed certificate has a BAD signature" msgstr "" -#: sm/certchain.c:1742 dirmngr/validate.c:575 +#: sm/certchain.c:1743 dirmngr/validate.c:575 #, c-format msgid "root certificate is not marked trusted" msgstr "" -#: sm/certchain.c:1758 +#: sm/certchain.c:1759 #, fuzzy, c-format msgid "checking the trust list failed: %s\n" msgstr "A létrehozott aláírás ellenőrzése sikertelen: %s.\n" -#: sm/certchain.c:1789 sm/import.c:176 sm/keylist.c:1396 dirmngr/validate.c:630 +#: sm/certchain.c:1790 sm/import.c:176 sm/keylist.c:1396 dirmngr/validate.c:630 #, c-format msgid "certificate chain too long\n" msgstr "" -#: sm/certchain.c:1801 dirmngr/validate.c:642 +#: sm/certchain.c:1802 dirmngr/validate.c:642 #, c-format msgid "issuer certificate not found" msgstr "" -#: sm/certchain.c:1834 dirmngr/validate.c:668 +#: sm/certchain.c:1835 dirmngr/validate.c:668 #, fuzzy, c-format msgid "certificate has a BAD signature" msgstr "aláírás ellenőrzése" -#: sm/certchain.c:1866 dirmngr/validate.c:692 +#: sm/certchain.c:1867 dirmngr/validate.c:692 msgid "found another possible matching CA certificate - trying again" msgstr "" -#: sm/certchain.c:1925 dirmngr/validate.c:717 +#: sm/certchain.c:1926 dirmngr/validate.c:717 #, c-format msgid "certificate chain longer than allowed by CA (%d)" msgstr "" -#: sm/certchain.c:1967 sm/certchain.c:2263 dirmngr/validate.c:747 +#: sm/certchain.c:1968 sm/certchain.c:2264 dirmngr/validate.c:747 #, fuzzy, c-format msgid "certificate is good\n" msgstr "%c%lu preferencia kétszer szerepel!\n" -#: sm/certchain.c:1968 +#: sm/certchain.c:1969 #, fuzzy, c-format msgid "intermediate certificate is good\n" msgstr "Visszavonó igazolás létrehozva.\n" -#: sm/certchain.c:1969 +#: sm/certchain.c:1970 #, fuzzy, c-format msgid "root certificate is good\n" msgstr "rossz igazolás" -#: sm/certchain.c:2151 +#: sm/certchain.c:2152 msgid "switching to chain model" msgstr "" -#: sm/certchain.c:2160 +#: sm/certchain.c:2161 #, c-format msgid "validation model used: %s" msgstr "" diff -Nru gnupg2-2.2.40/po/id.po gnupg2-2.2.41/po/id.po --- gnupg2-2.2.40/po/id.po 2022-10-10 09:58:26.000000000 +0000 +++ gnupg2-2.2.41/po/id.po 2022-12-09 08:48:34.000000000 +0000 @@ -10,7 +10,7 @@ msgstr "" "Project-Id-Version: gnupg-id\n" "Report-Msgid-Bugs-To: translations@gnupg.org\n" -"POT-Creation-Date: 2022-10-10 11:58+0200\n" +"POT-Creation-Date: 2022-12-09 09:48+0100\n" "PO-Revision-Date: 2004-06-17 16:32+0700\n" "Last-Translator: Tedi Heriyanto \n" "Language-Team: Indonesian \n" @@ -228,8 +228,8 @@ msgid "ssh keys greater than %d bits are not supported\n" msgstr "algoritma proteksi %d%s tidak didukung\n" -#: agent/command-ssh.c:862 common/dotlock.c:856 g10/card-util.c:947 -#: g10/exec.c:554 g10/export.c:1320 g10/gpg.c:1400 g10/keygen.c:4998 +#: agent/command-ssh.c:862 common/dotlock.c:856 g10/card-util.c:946 +#: g10/exec.c:554 g10/export.c:1335 g10/gpg.c:1409 g10/keygen.c:5052 #: g10/keyring.c:1322 g10/keyring.c:1637 g10/openfile.c:291 g10/sign.c:1008 #: g10/sign.c:1322 g10/tdbio.c:753 #, fuzzy, c-format @@ -237,12 +237,12 @@ msgid "can't create '%s': %s\n" msgstr "tidak dapat membuat %s: %s\n" -#: agent/command-ssh.c:874 common/helpfile.c:57 g10/card-util.c:904 +#: agent/command-ssh.c:874 common/helpfile.c:57 g10/card-util.c:903 #: g10/dearmor.c:59 g10/dearmor.c:106 g10/decrypt.c:65 g10/decrypt.c:136 -#: g10/decrypt.c:153 g10/encrypt.c:239 g10/encrypt.c:678 g10/gpg.c:1401 -#: g10/import.c:364 g10/import.c:548 g10/import.c:776 g10/keygen.c:4036 +#: g10/decrypt.c:153 g10/encrypt.c:239 g10/encrypt.c:678 g10/gpg.c:1410 +#: g10/import.c:365 g10/import.c:549 g10/import.c:777 g10/keygen.c:4090 #: g10/keyring.c:1663 g10/openfile.c:195 g10/openfile.c:209 g10/plaintext.c:128 -#: g10/plaintext.c:649 g10/sign.c:990 g10/sign.c:1201 g10/sign.c:1306 +#: g10/plaintext.c:654 g10/sign.c:990 g10/sign.c:1201 g10/sign.c:1306 #: g10/sign.c:1451 g10/tdbdump.c:145 g10/tdbdump.c:153 g10/tdbio.c:758 #: g10/tdbio.c:829 g10/verify.c:96 g10/verify.c:160 sm/gpgsm.c:2160 #: sm/gpgsm.c:2190 sm/gpgsm.c:2228 sm/qualified.c:66 dirmngr/certcache.c:420 @@ -469,34 +469,34 @@ msgid "csh-style command output" msgstr "" -#: agent/gpg-agent.c:185 g10/gpg.c:579 scd/scdaemon.c:126 sm/gpgsm.c:410 +#: agent/gpg-agent.c:185 g10/gpg.c:580 scd/scdaemon.c:126 sm/gpgsm.c:410 #: dirmngr/dirmngr.c:192 #, fuzzy msgid "|FILE|read options from FILE" msgstr "|FILE|muat modul ekstensi FILE" -#: agent/gpg-agent.c:189 g10/gpg.c:566 scd/scdaemon.c:130 sm/gpgsm.c:259 +#: agent/gpg-agent.c:189 g10/gpg.c:567 scd/scdaemon.c:130 sm/gpgsm.c:259 #: dirmngr/dirmngr.c:196 msgid "Options controlling the diagnostic output" msgstr "" -#: agent/gpg-agent.c:191 g10/gpg.c:568 g10/gpgv.c:78 kbx/kbxutil.c:88 +#: agent/gpg-agent.c:191 g10/gpg.c:569 g10/gpgv.c:78 kbx/kbxutil.c:88 #: scd/scdaemon.c:132 sm/gpgsm.c:261 dirmngr/dirmngr-client.c:70 #: dirmngr/dirmngr.c:198 tools/gpg-connect-agent.c:78 tools/gpgconf.c:110 msgid "verbose" msgstr "detil" -#: agent/gpg-agent.c:192 g10/gpg.c:570 g10/gpgv.c:79 kbx/kbxutil.c:89 +#: agent/gpg-agent.c:192 g10/gpg.c:571 g10/gpgv.c:79 kbx/kbxutil.c:89 #: scd/scdaemon.c:133 sm/gpgsm.c:263 dirmngr/dirmngr-client.c:71 #: dirmngr/dirmngr.c:199 msgid "be somewhat more quiet" msgstr "lebih diam" -#: agent/gpg-agent.c:200 g10/gpg.c:583 sm/gpgsm.c:276 dirmngr/dirmngr.c:209 +#: agent/gpg-agent.c:200 g10/gpg.c:584 sm/gpgsm.c:276 dirmngr/dirmngr.c:209 msgid "|FILE|write server mode logs to FILE" msgstr "" -#: agent/gpg-agent.c:204 g10/gpg.c:589 scd/scdaemon.c:147 sm/gpgsm.c:283 +#: agent/gpg-agent.c:204 g10/gpg.c:590 scd/scdaemon.c:147 sm/gpgsm.c:283 #: dirmngr/dirmngr.c:213 msgid "Options controlling the configuration" msgstr "" @@ -540,7 +540,7 @@ msgid "enable putty support" msgstr "tidak didukung" -#: agent/gpg-agent.c:237 g10/gpg.c:831 scd/scdaemon.c:175 sm/gpgsm.c:369 +#: agent/gpg-agent.c:237 g10/gpg.c:832 scd/scdaemon.c:175 sm/gpgsm.c:369 msgid "Options controlling the security" msgstr "" @@ -642,7 +642,7 @@ #. reporting address. This is so that we can change the #. reporting address without breaking the translations. #: agent/gpg-agent.c:563 agent/preset-passphrase.c:100 agent/protect-tool.c:155 -#: g10/gpg.c:1108 g10/gpgv.c:149 kbx/kbxutil.c:113 scd/scdaemon.c:313 +#: g10/gpg.c:1117 g10/gpgv.c:149 kbx/kbxutil.c:113 scd/scdaemon.c:313 #: sm/gpgsm.c:600 dirmngr/dirmngr-client.c:168 dirmngr/dirmngr.c:458 #: tools/gpg-connect-agent.c:205 tools/gpgconf.c:154 #: tools/gpg-check-pattern.c:143 @@ -661,27 +661,27 @@ "Secret key management for @GNUPG@\n" msgstr "" -#: agent/gpg-agent.c:619 g10/gpg.c:1304 scd/scdaemon.c:385 sm/gpgsm.c:748 +#: agent/gpg-agent.c:619 g10/gpg.c:1313 scd/scdaemon.c:385 sm/gpgsm.c:748 #: dirmngr/dirmngr.c:542 #, c-format msgid "invalid debug-level '%s' given\n" msgstr "" -#: agent/gpg-agent.c:988 g10/gpg.c:3810 g10/gpg.c:3834 sm/gpgsm.c:1585 +#: agent/gpg-agent.c:988 g10/gpg.c:3830 g10/gpg.c:3854 sm/gpgsm.c:1585 #: sm/gpgsm.c:1591 #, c-format msgid "selected digest algorithm is invalid\n" msgstr "algoritma digest yang dipilih tidak valid\n" #: agent/gpg-agent.c:1216 agent/gpg-agent.c:2029 common/argparse.c:1766 -#: common/argparse.c:1858 g10/gpg.c:2517 scd/scdaemon.c:547 sm/gpgsm.c:1007 +#: common/argparse.c:1858 g10/gpg.c:2526 scd/scdaemon.c:547 sm/gpgsm.c:1007 #: dirmngr/dirmngr.c:1081 dirmngr/dirmngr.c:1937 #, fuzzy, c-format #| msgid "reading options from `%s'\n" msgid "reading options from '%s'\n" msgstr "membaca pilihan dari `%s'\n" -#: agent/gpg-agent.c:1332 g10/gpg.c:3751 scd/scdaemon.c:671 sm/gpgsm.c:1522 +#: agent/gpg-agent.c:1332 g10/gpg.c:3769 scd/scdaemon.c:671 sm/gpgsm.c:1522 #: dirmngr/dirmngr.c:1190 tools/gpg-connect-agent.c:1244 tools/gpgconf.c:677 #, fuzzy, c-format #| msgid "WARNING: \"%s\" is a deprecated option\n" @@ -814,7 +814,7 @@ "Password cache maintenance\n" msgstr "" -#: agent/protect-tool.c:108 g10/gpg.c:441 kbx/kbxutil.c:71 sm/gpgsm.c:210 +#: agent/protect-tool.c:108 g10/gpg.c:442 kbx/kbxutil.c:71 sm/gpgsm.c:210 #: dirmngr/dirmngr.c:171 tools/gpgconf.c:80 msgid "" "@Commands:\n" @@ -1034,7 +1034,7 @@ msgid "secret key parts are not available\n" msgstr "bagian kunci rahasia tidak tersedia\n" -#: agent/cvt-openpgp.c:344 g10/card-util.c:1556 +#: agent/cvt-openpgp.c:344 g10/card-util.c:1555 #, fuzzy, c-format #| msgid "protection algorithm %d%s is not supported\n" msgid "public key algorithm %d (%s) is not supported\n" @@ -1194,7 +1194,7 @@ msgid "out of core while allocating %lu bytes" msgstr "" -#: common/miscellaneous.c:115 g10/card-util.c:911 tools/no-libgcrypt.c:30 +#: common/miscellaneous.c:115 g10/card-util.c:910 tools/no-libgcrypt.c:30 #, fuzzy, c-format msgid "error allocating enough memory: %s\n" msgstr "kesalahan menulis keyring `%s': %s\n" @@ -1317,7 +1317,7 @@ msgstr "armor: %s\n" #: common/audit.c:774 common/audit.c:776 common/audit.c:921 common/audit.c:923 -#: scd/app-openpgp.c:3557 +#: scd/app-openpgp.c:3566 #, fuzzy, c-format msgid "unsupported algorithm: %s" msgstr "" @@ -1401,12 +1401,12 @@ msgid "Root certificate trustworthy" msgstr "sertifikat yang buruk" -#: common/audit.c:1112 sm/certchain.c:1235 +#: common/audit.c:1112 sm/certchain.c:1236 #, fuzzy msgid "no CRL found for certificate" msgstr "sertifikat yang buruk" -#: common/audit.c:1115 sm/certchain.c:1245 +#: common/audit.c:1115 sm/certchain.c:1246 #, fuzzy msgid "the available CRL is too old" msgstr "Kunci tersedia di:" @@ -1549,7 +1549,7 @@ msgid "missing argument for option \"%.50s\"\n" msgstr "" -#: common/argparse.c:558 g10/gpg.c:3525 +#: common/argparse.c:558 g10/gpg.c:3543 #, fuzzy, c-format msgid "invalid argument for option \"%.50s\"\n" msgstr "opsi impor tidak valid\n" @@ -1650,92 +1650,92 @@ msgid "%s is too old (need %s, have %s)\n" msgstr "" -#: g10/armor.c:423 +#: g10/armor.c:424 #, c-format msgid "armor: %s\n" msgstr "armor: %s\n" -#: g10/armor.c:462 +#: g10/armor.c:463 #, c-format msgid "invalid armor header: " msgstr "header armor tidak valid: " -#: g10/armor.c:473 +#: g10/armor.c:474 #, c-format msgid "armor header: " msgstr "header armor: " -#: g10/armor.c:486 +#: g10/armor.c:487 #, c-format msgid "invalid clearsig header\n" msgstr "header clearsig tidak valid\n" -#: g10/armor.c:499 +#: g10/armor.c:500 #, fuzzy, c-format msgid "unknown armor header: " msgstr "header armor: " -#: g10/armor.c:552 +#: g10/armor.c:553 #, c-format msgid "nested clear text signatures\n" msgstr "signature teks bersarang\n" -#: g10/armor.c:687 +#: g10/armor.c:688 #, fuzzy, c-format msgid "unexpected armor: " msgstr "armor tidak terduga:" -#: g10/armor.c:700 +#: g10/armor.c:701 #, c-format msgid "invalid dash escaped line: " msgstr "dash escaped line tidak valid: " -#: g10/armor.c:872 g10/armor.c:1492 +#: g10/armor.c:873 g10/armor.c:1493 #, fuzzy, c-format msgid "invalid radix64 character %02X skipped\n" msgstr "karakter radix64 tidak valid %02x dilewati\n" -#: g10/armor.c:915 +#: g10/armor.c:916 #, c-format msgid "premature eof (no CRC)\n" msgstr "eof prematur (tanpa CRC)\n" -#: g10/armor.c:949 +#: g10/armor.c:950 #, c-format msgid "premature eof (in CRC)\n" msgstr "eof prematur (dalam CRC)\n" -#: g10/armor.c:957 +#: g10/armor.c:958 #, c-format msgid "malformed CRC\n" msgstr "CRC tidak tepat\n" -#: g10/armor.c:961 g10/armor.c:1529 +#: g10/armor.c:962 g10/armor.c:1530 #, fuzzy, c-format msgid "CRC error; %06lX - %06lX\n" msgstr "kesalahan CRC; %06lx - %06lx\n" -#: g10/armor.c:981 +#: g10/armor.c:982 #, fuzzy, c-format msgid "premature eof (in trailer)\n" msgstr "eof prematur (dalam Trailer)\n" -#: g10/armor.c:985 +#: g10/armor.c:986 #, c-format msgid "error in trailer line\n" msgstr "kesalahan dalam garis trailer\n" -#: g10/armor.c:1305 +#: g10/armor.c:1306 #, c-format msgid "no valid OpenPGP data found.\n" msgstr "tidak ditemukan data OpenPGP yang valid.\n" -#: g10/armor.c:1310 +#: g10/armor.c:1311 #, c-format msgid "invalid armor: line longer than %d characters\n" msgstr "armor tidak valid: baris melebihi %d karakter\n" -#: g10/armor.c:1314 +#: g10/armor.c:1315 #, c-format msgid "" "quoted printable character in armor - probably a buggy MTA has been used\n" @@ -1885,24 +1885,24 @@ msgid "server uses an invalid certificate" msgstr "buat sertifikat revokasi" -#: g10/call-dirmngr.c:462 g10/gpg.c:4458 +#: g10/call-dirmngr.c:462 g10/gpg.c:4478 #, fuzzy, c-format #| msgid "armor: %s\n" msgid "Note: %s\n" msgstr "armor: %s\n" -#: g10/card-util.c:86 g10/card-util.c:366 g10/card-util.c:1918 +#: g10/card-util.c:86 g10/card-util.c:366 g10/card-util.c:1917 #, fuzzy, c-format msgid "OpenPGP card not available: %s\n" msgstr "kunci rahasia tidak tersedia" -#: g10/card-util.c:91 g10/card-util.c:1924 +#: g10/card-util.c:91 g10/card-util.c:1923 #, c-format msgid "OpenPGP card no. %s detected\n" msgstr "" -#: g10/card-util.c:97 g10/card-util.c:2253 g10/delkey.c:160 g10/keyedit.c:1423 -#: g10/keygen.c:4466 g10/revoke.c:214 g10/revoke.c:636 +#: g10/card-util.c:97 g10/card-util.c:2252 g10/delkey.c:160 g10/keyedit.c:1423 +#: g10/keygen.c:4520 g10/revoke.c:214 g10/revoke.c:636 #, fuzzy, c-format msgid "can't do this in batch mode\n" msgstr "tidak dapat melakukan hal itu dalam mode batch\n" @@ -1912,14 +1912,14 @@ msgid "This command is only available for version 2 cards\n" msgstr "Perintah ini tidak dibolehkan saat dalam mode %s.\n" -#: g10/card-util.c:107 scd/app-openpgp.c:2866 +#: g10/card-util.c:107 scd/app-openpgp.c:2869 #, fuzzy, c-format msgid "Reset Code not or not anymore available\n" msgstr "bagian kunci rahasia tidak tersedia\n" -#: g10/card-util.c:140 g10/card-util.c:1442 g10/card-util.c:1704 -#: g10/card-util.c:1796 g10/keyedit.c:394 g10/keyedit.c:415 g10/keyedit.c:429 -#: g10/keygen.c:1808 g10/keygen.c:1980 g10/keygen.c:2186 g10/keygen.c:2477 +#: g10/card-util.c:140 g10/card-util.c:1441 g10/card-util.c:1703 +#: g10/card-util.c:1795 g10/keyedit.c:394 g10/keyedit.c:415 g10/keyedit.c:429 +#: g10/keygen.c:1862 g10/keygen.c:2034 g10/keygen.c:2240 g10/keygen.c:2531 #: sm/certreqgen-ui.c:165 sm/certreqgen-ui.c:291 sm/certreqgen-ui.c:325 msgid "Your selection? " msgstr "Pilihan anda? " @@ -1970,13 +1970,13 @@ msgid "Error: Combined name too long (limit is %d characters).\n" msgstr "" -#: g10/card-util.c:826 +#: g10/card-util.c:825 #, fuzzy msgid "URL to retrieve public key: " msgstr "tidak ada kunci publik yang sesuai: %s\n" -#: g10/card-util.c:920 g10/decrypt-data.c:509 g10/import.c:399 g10/import.c:746 -#: g10/import.c:798 dirmngr/crlcache.c:655 dirmngr/crlcache.c:660 +#: g10/card-util.c:919 g10/decrypt-data.c:509 g10/import.c:400 g10/import.c:747 +#: g10/import.c:799 dirmngr/crlcache.c:655 dirmngr/crlcache.c:660 #: dirmngr/crlcache.c:914 dirmngr/crlcache.c:920 dirmngr/dirmngr.c:1748 #: tools/gpgconf.c:483 tools/gpgconf.c:529 #, fuzzy, c-format @@ -1984,174 +1984,174 @@ msgid "error reading '%s': %s\n" msgstr "kesalahan membaca `%s': %s\n" -#: g10/card-util.c:953 g10/decrypt-data.c:512 g10/export.c:2467 +#: g10/card-util.c:952 g10/decrypt-data.c:512 g10/export.c:2586 #: dirmngr/crlcache.c:925 #, fuzzy, c-format msgid "error writing '%s': %s\n" msgstr "kesalahan menulis keyring `%s': %s\n" -#: g10/card-util.c:980 +#: g10/card-util.c:979 msgid "Login data (account name): " msgstr "" -#: g10/card-util.c:1018 +#: g10/card-util.c:1017 msgid "Private DO data: " msgstr "" -#: g10/card-util.c:1103 +#: g10/card-util.c:1102 #, fuzzy msgid "Language preferences: " msgstr "perbarui preferensi" -#: g10/card-util.c:1111 +#: g10/card-util.c:1110 #, fuzzy msgid "Error: invalid length of preference string.\n" msgstr "Karakter tidak valid dalam string preferensi\n" -#: g10/card-util.c:1120 +#: g10/card-util.c:1119 #, fuzzy msgid "Error: invalid characters in preference string.\n" msgstr "Karakter tidak valid dalam string preferensi\n" -#: g10/card-util.c:1142 +#: g10/card-util.c:1141 msgid "Salutation (M = Mr., F = Ms., or space): " msgstr "" -#: g10/card-util.c:1156 +#: g10/card-util.c:1155 #, fuzzy msgid "Error: invalid response.\n" msgstr "kesalahan: fingerprint tidak valid\n" -#: g10/card-util.c:1178 +#: g10/card-util.c:1177 #, fuzzy msgid "CA fingerprint: " msgstr "tampilkan fingerprint" -#: g10/card-util.c:1201 +#: g10/card-util.c:1200 #, fuzzy msgid "Error: invalid formatted fingerprint.\n" msgstr "kesalahan: fingerprint tidak valid\n" -#: g10/card-util.c:1252 +#: g10/card-util.c:1251 #, fuzzy, c-format msgid "key operation not possible: %s\n" msgstr "Pembuatan kunci gagal: %s\n" -#: g10/card-util.c:1253 +#: g10/card-util.c:1252 #, fuzzy msgid "not an OpenPGP card" msgstr "tidak ditemukan data OpenPGP yang valid.\n" -#: g10/card-util.c:1266 g10/keygen.c:4486 g10/keygen.c:5562 +#: g10/card-util.c:1265 g10/keygen.c:4540 g10/keygen.c:5616 #, fuzzy, c-format msgid "error getting current key info: %s\n" msgstr "kesalahan menulis keyring rahasia `%s': %s\n" -#: g10/card-util.c:1351 +#: g10/card-util.c:1350 msgid "Replace existing key? (y/N) " msgstr "" -#: g10/card-util.c:1368 +#: g10/card-util.c:1367 msgid "" "Note: There is no guarantee that the card supports the requested size.\n" " If the key generation does not succeed, please check the\n" " documentation of your card to see what sizes are allowed.\n" msgstr "" -#: g10/card-util.c:1390 g10/keygen.c:2363 sm/certreqgen-ui.c:179 +#: g10/card-util.c:1389 g10/keygen.c:2417 sm/certreqgen-ui.c:179 #, fuzzy, c-format msgid "What keysize do you want? (%u) " msgstr "Keysize yang anda inginkan? (1024) " -#: g10/card-util.c:1400 g10/keygen.c:2286 g10/keygen.c:2318 +#: g10/card-util.c:1399 g10/keygen.c:2340 g10/keygen.c:2372 #: sm/certreqgen-ui.c:194 #, c-format msgid "rounded up to %u bits\n" msgstr "dibulatkan hingga %u bit\n" -#: g10/card-util.c:1408 g10/keygen.c:2371 sm/certreqgen-ui.c:184 +#: g10/card-util.c:1407 g10/keygen.c:2425 sm/certreqgen-ui.c:184 #, c-format msgid "%s keysizes must be in the range %u-%u\n" msgstr "" -#: g10/card-util.c:1427 +#: g10/card-util.c:1426 msgid "Changing card key attribute for: " msgstr "" -#: g10/card-util.c:1429 +#: g10/card-util.c:1428 #, fuzzy msgid "Signature key\n" msgstr "Signature kadaluwarsa %s\n" -#: g10/card-util.c:1431 +#: g10/card-util.c:1430 #, fuzzy msgid "Encryption key\n" msgstr " (%d) RSA (hanya enkripsi)\n" -#: g10/card-util.c:1433 +#: g10/card-util.c:1432 msgid "Authentication key\n" msgstr "" -#: g10/card-util.c:1435 g10/keygen.c:1926 sm/certreqgen-ui.c:157 +#: g10/card-util.c:1434 g10/keygen.c:1980 sm/certreqgen-ui.c:157 msgid "Please select what kind of key you want:\n" msgstr "Silakan pilih kunci yang anda inginkan:\n" -#: g10/card-util.c:1436 sm/certreqgen-ui.c:158 +#: g10/card-util.c:1435 sm/certreqgen-ui.c:158 #, fuzzy, c-format msgid " (%d) RSA\n" msgstr " (%d) RSA (hanya menandai)\n" -#: g10/card-util.c:1437 +#: g10/card-util.c:1436 #, fuzzy, c-format msgid " (%d) ECC\n" msgstr " (%d) DSA dan ElGamal (baku)\n" -#: g10/card-util.c:1449 g10/card-util.c:1716 g10/card-util.c:1816 -#: g10/keyedit.c:900 g10/keygen.c:1834 g10/keygen.c:1862 g10/keygen.c:1987 -#: g10/keygen.c:2222 g10/keygen.c:2505 g10/revoke.c:838 +#: g10/card-util.c:1448 g10/card-util.c:1715 g10/card-util.c:1815 +#: g10/keyedit.c:900 g10/keygen.c:1888 g10/keygen.c:1916 g10/keygen.c:2041 +#: g10/keygen.c:2276 g10/keygen.c:2559 g10/revoke.c:838 msgid "Invalid selection.\n" msgstr "Pilihan tidak valid.\n" -#: g10/card-util.c:1522 +#: g10/card-util.c:1521 #, c-format msgid "The card will now be re-configured to generate a key of %u bits\n" msgstr "" -#: g10/card-util.c:1527 +#: g10/card-util.c:1526 #, c-format msgid "The card will now be re-configured to generate a key of type: %s\n" msgstr "" -#: g10/card-util.c:1563 +#: g10/card-util.c:1562 #, fuzzy, c-format msgid "error changing key attribute for key %d: %s\n" msgstr "kesalahan mengirim ke `%s': %s\n" -#: g10/card-util.c:1579 g10/card-util.c:2106 +#: g10/card-util.c:1578 g10/card-util.c:2105 #, fuzzy, c-format msgid "error getting card info: %s\n" msgstr "kesalahan menulis keyring rahasia `%s': %s\n" -#: g10/card-util.c:1585 g10/card-util.c:1930 g10/card-util.c:2112 +#: g10/card-util.c:1584 g10/card-util.c:1929 g10/card-util.c:2111 #, fuzzy, c-format #| msgid "This command is not allowed while in %s mode.\n" msgid "This command is not supported by this card\n" msgstr "Perintah ini tidak dibolehkan saat dalam mode %s.\n" -#: g10/card-util.c:1631 +#: g10/card-util.c:1630 msgid "Make off-card backup of encryption key? (Y/n) " msgstr "" -#: g10/card-util.c:1645 +#: g10/card-util.c:1644 #, fuzzy, c-format msgid "Note: keys are already stored on the card!\n" msgstr "dilewati: kunci pribadi telah ada\n" -#: g10/card-util.c:1648 +#: g10/card-util.c:1647 msgid "Replace existing keys? (y/N) " msgstr "" -#: g10/card-util.c:1660 +#: g10/card-util.c:1659 #, c-format msgid "" "Please note that the factory settings of the PINs are\n" @@ -2159,160 +2159,160 @@ "You should change them using the command --change-pin\n" msgstr "" -#: g10/card-util.c:1695 +#: g10/card-util.c:1694 #, fuzzy msgid "Please select the type of key to generate:\n" msgstr "Silakan pilih kunci yang anda inginkan:\n" -#: g10/card-util.c:1697 g10/card-util.c:1787 +#: g10/card-util.c:1696 g10/card-util.c:1786 #, fuzzy msgid " (1) Signature key\n" msgstr "Signature kadaluwarsa %s\n" -#: g10/card-util.c:1698 g10/card-util.c:1789 +#: g10/card-util.c:1697 g10/card-util.c:1788 #, fuzzy msgid " (2) Encryption key\n" msgstr " (%d) RSA (hanya enkripsi)\n" -#: g10/card-util.c:1699 g10/card-util.c:1791 +#: g10/card-util.c:1698 g10/card-util.c:1790 msgid " (3) Authentication key\n" msgstr "" -#: g10/card-util.c:1784 +#: g10/card-util.c:1783 #, fuzzy msgid "Please select where to store the key:\n" msgstr "Silakan pilih alasan untuk pembatalan:\n" -#: g10/card-util.c:1830 +#: g10/card-util.c:1829 #, fuzzy, c-format msgid "KEYTOCARD failed: %s\n" msgstr "gagal memperbarui: %s\n" -#: g10/card-util.c:1935 +#: g10/card-util.c:1934 #, fuzzy, c-format msgid "Note: This command destroys all keys stored on the card!\n" msgstr "dilewati: kunci pribadi telah ada\n" -#: g10/card-util.c:1938 +#: g10/card-util.c:1937 #, fuzzy msgid "Continue? (y/N) " msgstr "Ditandai? " -#: g10/card-util.c:1943 +#: g10/card-util.c:1942 msgid "Really do a factory reset? (enter \"yes\") " msgstr "" -#: g10/card-util.c:2129 +#: g10/card-util.c:2128 #, fuzzy, c-format msgid "error for setup KDF: %s\n" msgstr "kesalahan membaca `%s': %s\n" -#: g10/card-util.c:2158 g10/keyedit.c:1260 +#: g10/card-util.c:2157 g10/keyedit.c:1260 msgid "quit this menu" msgstr "berhenti dari menu ini" -#: g10/card-util.c:2160 +#: g10/card-util.c:2159 #, fuzzy msgid "show admin commands" msgstr "perintah saling konflik\n" -#: g10/card-util.c:2161 g10/keyedit.c:1263 +#: g10/card-util.c:2160 g10/keyedit.c:1263 msgid "show this help" msgstr "tampilkan bantuan" -#: g10/card-util.c:2163 +#: g10/card-util.c:2162 #, fuzzy msgid "list all available data" msgstr "Kunci tersedia di:" -#: g10/card-util.c:2166 +#: g10/card-util.c:2165 msgid "change card holder's name" msgstr "" -#: g10/card-util.c:2167 +#: g10/card-util.c:2166 msgid "change URL to retrieve key" msgstr "" -#: g10/card-util.c:2168 +#: g10/card-util.c:2167 msgid "fetch the key specified in the card URL" msgstr "" -#: g10/card-util.c:2169 +#: g10/card-util.c:2168 #, fuzzy msgid "change the login name" msgstr "ubah tanggal kadaluarsa" -#: g10/card-util.c:2170 +#: g10/card-util.c:2169 #, fuzzy msgid "change the language preferences" msgstr "ubah ownertrust" -#: g10/card-util.c:2171 +#: g10/card-util.c:2170 msgid "change card holder's salutation" msgstr "" -#: g10/card-util.c:2173 +#: g10/card-util.c:2172 #, fuzzy msgid "change a CA fingerprint" msgstr "tampilkan fingerprint" -#: g10/card-util.c:2174 +#: g10/card-util.c:2173 msgid "toggle the signature force PIN flag" msgstr "" -#: g10/card-util.c:2175 +#: g10/card-util.c:2174 #, fuzzy msgid "generate new keys" msgstr "buat sepasang kunci baru" -#: g10/card-util.c:2176 +#: g10/card-util.c:2175 msgid "menu to change or unblock the PIN" msgstr "" -#: g10/card-util.c:2177 +#: g10/card-util.c:2176 msgid "verify the PIN and list all data" msgstr "" -#: g10/card-util.c:2178 +#: g10/card-util.c:2177 msgid "unblock the PIN using a Reset Code" msgstr "" -#: g10/card-util.c:2179 +#: g10/card-util.c:2178 msgid "destroy all keys and data" msgstr "" -#: g10/card-util.c:2180 +#: g10/card-util.c:2179 #, fuzzy #| msgid "|NAME|use NAME as default recipient" msgid "setup KDF for PIN authentication" msgstr "|NAMA|gunakan NAMA sebagai penerima baku" -#: g10/card-util.c:2181 +#: g10/card-util.c:2180 #, fuzzy #| msgid "change the ownertrust" msgid "change the key attribute" msgstr "ubah ownertrust" -#: g10/card-util.c:2305 +#: g10/card-util.c:2304 msgid "gpg/card> " msgstr "" -#: g10/card-util.c:2346 +#: g10/card-util.c:2345 #, fuzzy msgid "Admin-only command\n" msgstr "perintah saling konflik\n" -#: g10/card-util.c:2377 +#: g10/card-util.c:2376 #, fuzzy msgid "Admin commands are allowed\n" msgstr "perintah saling konflik\n" -#: g10/card-util.c:2379 +#: g10/card-util.c:2378 #, fuzzy msgid "Admin commands are not allowed\n" msgstr "menulis kunci rahasia ke `%s'\n" -#: g10/card-util.c:2482 g10/keyedit.c:2229 +#: g10/card-util.c:2481 g10/keyedit.c:2229 msgid "Invalid command (try \"help\")\n" msgstr "Perintah tidak valid (coba \"help\")\n" @@ -2321,22 +2321,22 @@ msgid "--output doesn't work for this command\n" msgstr "--output tidak berfungsi untuk perintah ini\n" -#: g10/decrypt.c:247 g10/gpg.c:5155 g10/keyring.c:399 g10/keyring.c:750 +#: g10/decrypt.c:247 g10/gpg.c:5175 g10/keyring.c:399 g10/keyring.c:750 #, fuzzy, c-format #| msgid "can't open `%s'\n" msgid "can't open '%s'\n" msgstr "tidak dapat membuka `%s'\n" -#: g10/delkey.c:83 g10/export.c:1947 g10/export.c:2230 g10/export.c:2351 -#: g10/getkey.c:2108 g10/gpg.c:5100 g10/keyedit.c:1445 g10/keyedit.c:2335 +#: g10/delkey.c:83 g10/export.c:2035 g10/export.c:2349 g10/export.c:2470 +#: g10/getkey.c:2108 g10/gpg.c:5120 g10/keyedit.c:1445 g10/keyedit.c:2335 #: g10/keyedit.c:2637 g10/keyedit.c:4600 g10/keylist.c:693 g10/keyserver.c:1092 #: g10/revoke.c:230 g10/tofu.c:2165 #, fuzzy, c-format msgid "key \"%s\" not found: %s\n" msgstr "kunci '%s' tidak ditemukan: %s\n" -#: g10/delkey.c:92 g10/export.c:2015 g10/getkey.c:2116 g10/getkey.c:4517 -#: g10/gpg.c:5109 g10/keyedit.c:2308 g10/keyserver.c:1110 g10/revoke.c:236 +#: g10/delkey.c:92 g10/export.c:2103 g10/getkey.c:2116 g10/getkey.c:4517 +#: g10/gpg.c:5129 g10/keyedit.c:2308 g10/keyserver.c:1110 g10/revoke.c:236 #: g10/revoke.c:663 g10/tofu.c:2173 #, c-format msgid "error reading keyblock: %s\n" @@ -2458,14 +2458,14 @@ msgid "WARNING: '%s' is an empty file\n" msgstr "PERINGATAN: `%s' adalah file kosong\n" -#: g10/encrypt.c:446 g10/encrypt.c:521 g10/decrypt-data.c:266 g10/gpg.c:3959 -#: g10/gpg.c:3999 sm/decrypt.c:826 sm/encrypt.c:416 sm/gpgsm.c:1609 +#: g10/encrypt.c:446 g10/encrypt.c:521 g10/decrypt-data.c:266 g10/gpg.c:3979 +#: g10/gpg.c:4019 sm/decrypt.c:826 sm/encrypt.c:416 sm/gpgsm.c:1609 #, fuzzy, c-format msgid "cipher algorithm '%s' may not be used in %s mode\n" msgstr "" "anda tidak boleh menggunakan algoritma cipher \"%s\" saat dalam mode %s.\n" -#: g10/encrypt.c:455 g10/gpg.c:3965 g10/gpg.c:4011 g10/sig-check.c:175 +#: g10/encrypt.c:455 g10/gpg.c:3985 g10/gpg.c:4031 g10/sig-check.c:175 #: g10/sign.c:391 sm/gpgsm.c:1619 sm/gpgsm.c:1629 sm/sign.c:478 sm/verify.c:506 #, fuzzy, c-format msgid "digest algorithm '%s' may not be used in %s mode\n" @@ -2584,69 +2584,75 @@ msgid "WARNING: unable to remove temp directory '%s': %s\n" msgstr "PERINGATAN: tidak dapat menghapus direktori temp `%s': %s\n" -#: g10/export.c:119 +#: g10/export.c:124 #, fuzzy msgid "export signatures that are marked as local-only" msgstr "" "\n" "Signature akan ditandai sebagai tidak dapat dibatalkan.\n" -#: g10/export.c:121 +#: g10/export.c:126 msgid "export attribute user IDs (generally photo IDs)" msgstr "" -#: g10/export.c:123 +#: g10/export.c:128 #, fuzzy msgid "export revocation keys marked as \"sensitive\"" msgstr "tidak ditemukan kunci pembatalan untuk `%s'\n" -#: g10/export.c:125 +#: g10/export.c:130 #, fuzzy msgid "remove unusable parts from key during export" msgstr "kunci rahasia tidak dapat dipakai" -#: g10/export.c:127 +#: g10/export.c:132 msgid "remove as much as possible from key during export" msgstr "" -#: g10/export.c:133 +#: g10/export.c:138 +#, fuzzy +#| msgid "generate a revocation certificate" +msgid "export only revocation certificates" +msgstr "buat sertifikat revokasi" + +#: g10/export.c:141 msgid "use the GnuPG key backup format" msgstr "" -#: g10/export.c:1291 +#: g10/export.c:1306 #, fuzzy #| msgid "%s: skipped: %s\n" msgid " - skipped" msgstr "%s: dilewati: %s\n" -#: g10/export.c:1324 g10/import.c:2085 g10/openfile.c:200 g10/openfile.c:294 +#: g10/export.c:1339 g10/import.c:2089 g10/openfile.c:200 g10/openfile.c:294 #: g10/sign.c:1012 g10/sign.c:1326 #, fuzzy, c-format #| msgid "writing to `%s'\n" msgid "writing to '%s'\n" msgstr "menulis ke `%s'\n" -#: g10/export.c:1769 +#: g10/export.c:1784 #, fuzzy, c-format msgid "key %s: key material on-card - skipped\n" msgstr "kunci %08lX: signature subkey di tempat yang salah - dilewati\n" -#: g10/export.c:1964 +#: g10/export.c:2052 #, fuzzy, c-format msgid "exporting secret keys not allowed\n" msgstr "menulis kunci rahasia ke `%s'\n" -#: g10/export.c:2041 +#: g10/export.c:2129 #, fuzzy, c-format msgid "key %s: PGP 2.x style key - skipped\n" msgstr "kunci %08lX: kunci gaya PGP 2.x - dilewati\n" -#: g10/export.c:2135 +#: g10/export.c:2254 #, c-format msgid "WARNING: nothing exported\n" msgstr "PERINGATAN: tidak ada yang diekspor\n" -#: g10/export.c:2432 g10/plaintext.c:153 g10/plaintext.c:162 +#: g10/export.c:2551 g10/plaintext.c:153 g10/plaintext.c:162 #: g10/plaintext.c:168 g10/plaintext.c:191 #, fuzzy, c-format #| msgid "error creating `%s': %s\n" @@ -2715,297 +2721,297 @@ msgid "using subkey %s instead of primary key %s\n" msgstr "menggunakan kunci sekunder %08lX bukannya kunci primer %08lX\n" -#: g10/getkey.c:4446 g10/gpg.c:2137 +#: g10/getkey.c:4446 g10/gpg.c:2146 #, fuzzy, c-format msgid "valid values for option '%s':\n" msgstr "opsi impor tidak valid\n" -#: g10/gpg.c:443 sm/gpgsm.c:212 +#: g10/gpg.c:444 sm/gpgsm.c:212 #, fuzzy msgid "make a signature" msgstr "buat detached signature" -#: g10/gpg.c:444 +#: g10/gpg.c:445 #, fuzzy msgid "make a clear text signature" msgstr "|[file]|buat signature teks" -#: g10/gpg.c:446 sm/gpgsm.c:214 +#: g10/gpg.c:447 sm/gpgsm.c:214 msgid "make a detached signature" msgstr "buat detached signature" -#: g10/gpg.c:447 sm/gpgsm.c:215 +#: g10/gpg.c:448 sm/gpgsm.c:215 msgid "encrypt data" msgstr "enkripsi data" -#: g10/gpg.c:449 +#: g10/gpg.c:450 msgid "encryption only with symmetric cipher" msgstr "enkripsi hanya dengan symmetric cipher" -#: g10/gpg.c:451 sm/gpgsm.c:217 +#: g10/gpg.c:452 sm/gpgsm.c:217 msgid "decrypt data (default)" msgstr "dekripsi data (default)" -#: g10/gpg.c:453 sm/gpgsm.c:218 +#: g10/gpg.c:454 sm/gpgsm.c:218 msgid "verify a signature" msgstr "verifikasi signature" -#: g10/gpg.c:455 sm/gpgsm.c:219 +#: g10/gpg.c:456 sm/gpgsm.c:219 msgid "list keys" msgstr "tampilkan kunci" -#: g10/gpg.c:457 +#: g10/gpg.c:458 msgid "list keys and signatures" msgstr "tampilkan kunci dan signature" -#: g10/gpg.c:460 +#: g10/gpg.c:461 #, fuzzy msgid "list and check key signatures" msgstr "periksa signature kunci" -#: g10/gpg.c:462 sm/gpgsm.c:224 +#: g10/gpg.c:463 sm/gpgsm.c:224 msgid "list keys and fingerprints" msgstr "tampilkan kunci dan fingerprint" -#: g10/gpg.c:463 sm/gpgsm.c:222 +#: g10/gpg.c:464 sm/gpgsm.c:222 msgid "list secret keys" msgstr "tampilkan kunci rahasia" -#: g10/gpg.c:465 sm/gpgsm.c:225 +#: g10/gpg.c:466 sm/gpgsm.c:225 msgid "generate a new key pair" msgstr "buat sepasang kunci baru" -#: g10/gpg.c:468 +#: g10/gpg.c:469 #, fuzzy #| msgid "generate a new key pair" msgid "quickly generate a new key pair" msgstr "buat sepasang kunci baru" -#: g10/gpg.c:471 +#: g10/gpg.c:472 #, fuzzy #| msgid "generate a new key pair" msgid "quickly add a new user-id" msgstr "buat sepasang kunci baru" -#: g10/gpg.c:476 +#: g10/gpg.c:477 #, fuzzy #| msgid "generate a new key pair" msgid "quickly revoke a user-id" msgstr "buat sepasang kunci baru" -#: g10/gpg.c:479 +#: g10/gpg.c:480 #, fuzzy #| msgid "generate a new key pair" msgid "quickly set a new expiration date" msgstr "buat sepasang kunci baru" -#: g10/gpg.c:482 +#: g10/gpg.c:483 msgid "full featured key pair generation" msgstr "" -#: g10/gpg.c:485 +#: g10/gpg.c:486 msgid "generate a revocation certificate" msgstr "buat sertifikat revokasi" -#: g10/gpg.c:488 sm/gpgsm.c:228 +#: g10/gpg.c:489 sm/gpgsm.c:228 msgid "remove keys from the public keyring" msgstr "hapus kunci dari keyring publik" -#: g10/gpg.c:490 +#: g10/gpg.c:491 msgid "remove keys from the secret keyring" msgstr "hapus kunci dari keyring pribadi" -#: g10/gpg.c:492 +#: g10/gpg.c:493 #, fuzzy #| msgid "sign a key" msgid "quickly sign a key" msgstr "tandai kunci" -#: g10/gpg.c:494 +#: g10/gpg.c:495 #, fuzzy #| msgid "sign a key locally" msgid "quickly sign a key locally" msgstr "tandai kunci secara lokal" -#: g10/gpg.c:496 +#: g10/gpg.c:497 #, fuzzy #| msgid "generate a new key pair" msgid "quickly revoke a key signature" msgstr "buat sepasang kunci baru" -#: g10/gpg.c:497 +#: g10/gpg.c:498 msgid "sign a key" msgstr "tandai kunci" -#: g10/gpg.c:498 +#: g10/gpg.c:499 msgid "sign a key locally" msgstr "tandai kunci secara lokal" -#: g10/gpg.c:499 +#: g10/gpg.c:500 msgid "sign or edit a key" msgstr "tandai atau edit kunci" -#: g10/gpg.c:501 sm/gpgsm.c:246 +#: g10/gpg.c:502 sm/gpgsm.c:246 #, fuzzy msgid "change a passphrase" msgstr "ubah passphrase" -#: g10/gpg.c:505 +#: g10/gpg.c:506 msgid "export keys" msgstr "ekspor kunci" -#: g10/gpg.c:506 +#: g10/gpg.c:507 msgid "export keys to a keyserver" msgstr "ekspor kunci ke keyserver" -#: g10/gpg.c:507 +#: g10/gpg.c:508 msgid "import keys from a keyserver" msgstr "impor kunci dari keyserver" -#: g10/gpg.c:510 +#: g10/gpg.c:511 msgid "search for keys on a keyserver" msgstr "cari kunci di keyserver" -#: g10/gpg.c:512 +#: g10/gpg.c:513 msgid "update all keys from a keyserver" msgstr "update semua kunci dari keyserver" -#: g10/gpg.c:520 +#: g10/gpg.c:521 msgid "import/merge keys" msgstr "impor/gabung kunci" -#: g10/gpg.c:523 +#: g10/gpg.c:524 msgid "print the card status" msgstr "" -#: g10/gpg.c:524 +#: g10/gpg.c:525 msgid "change data on a card" msgstr "" -#: g10/gpg.c:526 +#: g10/gpg.c:527 msgid "change a card's PIN" msgstr "" -#: g10/gpg.c:538 +#: g10/gpg.c:539 msgid "update the trust database" msgstr "perbarui database trust" -#: g10/gpg.c:548 +#: g10/gpg.c:549 #, fuzzy msgid "print message digests" msgstr "|algo [file]|cetak digest pesan" -#: g10/gpg.c:552 sm/gpgsm.c:241 +#: g10/gpg.c:553 sm/gpgsm.c:241 msgid "run in server mode" msgstr "" -#: g10/gpg.c:554 +#: g10/gpg.c:555 msgid "|VALUE|set the TOFU policy for a key" msgstr "" -#: g10/gpg.c:594 +#: g10/gpg.c:595 msgid "|NAME|use NAME as default secret key" msgstr "|NAMA|gunakan NAMA sebagai kunci rahasia baku" -#: g10/gpg.c:596 sm/gpgsm.c:332 +#: g10/gpg.c:597 sm/gpgsm.c:332 #, fuzzy msgid "|NAME|encrypt to user ID NAME as well" msgstr "|NAMA|enkripsi untuk NAMA" -#: g10/gpg.c:604 +#: g10/gpg.c:605 msgid "|SPEC|set up email aliases" msgstr "" -#: g10/gpg.c:616 +#: g10/gpg.c:617 msgid "use strict OpenPGP behavior" msgstr "" -#: g10/gpg.c:641 kbx/kbxutil.c:90 sm/gpgsm.c:412 tools/gpgconf.c:112 +#: g10/gpg.c:642 kbx/kbxutil.c:90 sm/gpgsm.c:412 tools/gpgconf.c:112 msgid "do not make any changes" msgstr "jangan buat perubahan" -#: g10/gpg.c:642 +#: g10/gpg.c:643 msgid "prompt before overwriting" msgstr "tanya sebelum menimpa" -#: g10/gpg.c:689 sm/gpgsm.c:304 +#: g10/gpg.c:690 sm/gpgsm.c:304 msgid "Options controlling the input" msgstr "" -#: g10/gpg.c:707 sm/gpgsm.c:314 +#: g10/gpg.c:708 sm/gpgsm.c:314 msgid "Options controlling the output" msgstr "" -#: g10/gpg.c:709 sm/gpgsm.c:316 +#: g10/gpg.c:710 sm/gpgsm.c:316 msgid "create ascii armored output" msgstr "ciptakan output ascii" -#: g10/gpg.c:713 g10/gpgv.c:82 sm/gpgsm.c:321 +#: g10/gpg.c:714 g10/gpgv.c:82 sm/gpgsm.c:321 #, fuzzy msgid "|FILE|write output to FILE" msgstr "|FILE|muat modul ekstensi FILE" -#: g10/gpg.c:726 +#: g10/gpg.c:727 msgid "use canonical text mode" msgstr "gunakan mode teks kanonikal" -#: g10/gpg.c:743 +#: g10/gpg.c:744 #, fuzzy msgid "|N|set compress level to N (0 disables)" msgstr "|N|set tingkat kompresi N (0 tidak ada)" -#: g10/gpg.c:750 sm/gpgsm.c:347 +#: g10/gpg.c:751 sm/gpgsm.c:347 msgid "Options controlling key import and export" msgstr "" -#: g10/gpg.c:753 +#: g10/gpg.c:754 msgid "|MECHANISMS|use MECHANISMS to locate keys by mail address" msgstr "" -#: g10/gpg.c:756 +#: g10/gpg.c:757 #, fuzzy #| msgid "import keys from a keyserver" msgid "import missing key from a signature" msgstr "impor kunci dari keyserver" -#: g10/gpg.c:761 +#: g10/gpg.c:762 #, fuzzy msgid "include the public key in signatures" msgstr "periksa signature kunci" -#: g10/gpg.c:764 sm/gpgsm.c:350 +#: g10/gpg.c:765 sm/gpgsm.c:350 msgid "disable all access to the dirmngr" msgstr "" -#: g10/gpg.c:776 sm/gpgsm.c:357 +#: g10/gpg.c:777 sm/gpgsm.c:357 msgid "Options controlling key listings" msgstr "" -#: g10/gpg.c:805 sm/gpgsm.c:324 +#: g10/gpg.c:806 sm/gpgsm.c:324 #, fuzzy #| msgid "list secret keys" msgid "Options to specify keys" msgstr "tampilkan kunci rahasia" -#: g10/gpg.c:807 sm/gpgsm.c:326 +#: g10/gpg.c:808 sm/gpgsm.c:326 #, fuzzy msgid "|USER-ID|encrypt for USER-ID" msgstr "|NAMA|enkripsi untuk NAMA" -#: g10/gpg.c:815 sm/gpgsm.c:328 +#: g10/gpg.c:816 sm/gpgsm.c:328 #, fuzzy msgid "|USER-ID|use USER-ID to sign or decrypt" msgstr "gunakan id-user ini untuk menandai/dekripsi" -#: g10/gpg.c:866 sm/gpgsm.c:396 +#: g10/gpg.c:867 sm/gpgsm.c:396 msgid "Options for unattended use" msgstr "" -#: g10/gpg.c:885 sm/gpgsm.c:408 dirmngr/dirmngr.c:294 +#: g10/gpg.c:886 sm/gpgsm.c:408 dirmngr/dirmngr.c:294 msgid "Other options" msgstr "" -#: g10/gpg.c:953 sm/gpgsm.c:440 +#: g10/gpg.c:955 sm/gpgsm.c:440 msgid "" "@\n" "(See the man page for a complete listing of all commands and options)\n" @@ -3013,7 +3019,7 @@ "@\n" "(Lihat man page untuk daftar lengkap semua perintah dan option)\n" -#: g10/gpg.c:956 +#: g10/gpg.c:958 #, fuzzy #| msgid "" #| "@\n" @@ -3043,13 +3049,13 @@ " --list-keys [nama] tampilkan kunci\n" " --fingerprint [nama] tampilkan fingerprint\n" -#: g10/gpg.c:1130 +#: g10/gpg.c:1139 #, fuzzy #| msgid "Usage: gpg [options] [files] (-h for help)" msgid "Usage: @GPG@ [options] [files] (-h for help)" msgstr "Pemakaian: gpg [pilihan] [file] (-h untuk bantuan)" -#: g10/gpg.c:1133 +#: g10/gpg.c:1142 #, fuzzy #| msgid "" #| "Syntax: gpg [options] [files]\n" @@ -3064,7 +3070,7 @@ "tandai, cek, enkripsi atau dekripsi\n" "operasi baku tergantung pada data input\n" -#: g10/gpg.c:1144 sm/gpgsm.c:624 +#: g10/gpg.c:1153 sm/gpgsm.c:624 msgid "" "\n" "Supported algorithms:\n" @@ -3072,553 +3078,553 @@ "\n" "Algoritma yang didukung:\n" -#: g10/gpg.c:1147 +#: g10/gpg.c:1156 msgid "Pubkey: " msgstr "Pubkey: " -#: g10/gpg.c:1154 g10/keyedit.c:3338 +#: g10/gpg.c:1163 g10/keyedit.c:3338 msgid "Cipher: " msgstr "Cipher: " -#: g10/gpg.c:1161 +#: g10/gpg.c:1170 msgid "Hash: " msgstr "Hash: " -#: g10/gpg.c:1168 g10/keyedit.c:3404 +#: g10/gpg.c:1177 g10/keyedit.c:3404 msgid "Compression: " msgstr "Kompresi: " -#: g10/gpg.c:1241 sm/gpgsm.c:698 +#: g10/gpg.c:1250 sm/gpgsm.c:698 #, fuzzy, c-format msgid "usage: %s [options] %s\n" msgstr "pemakaian: gpg [pilihan] " -#: g10/gpg.c:1436 sm/gpgsm.c:791 +#: g10/gpg.c:1445 sm/gpgsm.c:791 #, c-format msgid "conflicting commands\n" msgstr "perintah saling konflik\n" -#: g10/gpg.c:1454 +#: g10/gpg.c:1463 #, fuzzy, c-format msgid "no = sign found in group definition '%s'\n" msgstr "tanda = tidak ditemukan dalam definisi grup \"%s\"\n" -#: g10/gpg.c:1652 +#: g10/gpg.c:1661 #, fuzzy, c-format msgid "WARNING: unsafe ownership on homedir '%s'\n" msgstr "Peringatan: kepemilikan tidak aman pada %s \"%s\"\n" -#: g10/gpg.c:1655 +#: g10/gpg.c:1664 #, fuzzy, c-format msgid "WARNING: unsafe ownership on configuration file '%s'\n" msgstr "Peringatan: kepemilikan tidak aman pada %s \"%s\"\n" -#: g10/gpg.c:1658 +#: g10/gpg.c:1667 #, fuzzy, c-format msgid "WARNING: unsafe ownership on extension '%s'\n" msgstr "Peringatan: kepemilikan tidak aman pada %s \"%s\"\n" -#: g10/gpg.c:1664 +#: g10/gpg.c:1673 #, fuzzy, c-format msgid "WARNING: unsafe permissions on homedir '%s'\n" msgstr "Peringatan: permisi tidak aman pada %s \"%s\"\n" -#: g10/gpg.c:1667 +#: g10/gpg.c:1676 #, fuzzy, c-format msgid "WARNING: unsafe permissions on configuration file '%s'\n" msgstr "Peringatan: permisi tidak aman pada %s \"%s\"\n" -#: g10/gpg.c:1670 +#: g10/gpg.c:1679 #, fuzzy, c-format msgid "WARNING: unsafe permissions on extension '%s'\n" msgstr "Peringatan: permisi tidak aman pada %s \"%s\"\n" -#: g10/gpg.c:1676 +#: g10/gpg.c:1685 #, fuzzy, c-format msgid "WARNING: unsafe enclosing directory ownership on homedir '%s'\n" msgstr "Peringatan: kepemilikan direktori tidak aman pada %s \"%s\"\n" -#: g10/gpg.c:1679 +#: g10/gpg.c:1688 #, fuzzy, c-format msgid "" "WARNING: unsafe enclosing directory ownership on configuration file '%s'\n" msgstr "Peringatan: kepemilikan direktori tidak aman pada %s \"%s\"\n" -#: g10/gpg.c:1682 +#: g10/gpg.c:1691 #, fuzzy, c-format msgid "WARNING: unsafe enclosing directory ownership on extension '%s'\n" msgstr "Peringatan: kepemilikan direktori tidak aman pada %s \"%s\"\n" -#: g10/gpg.c:1688 +#: g10/gpg.c:1697 #, fuzzy, c-format msgid "WARNING: unsafe enclosing directory permissions on homedir '%s'\n" msgstr "Peringatan: permisi direktori tidak aman pada %s \"%s\"\n" -#: g10/gpg.c:1691 +#: g10/gpg.c:1700 #, fuzzy, c-format msgid "" "WARNING: unsafe enclosing directory permissions on configuration file '%s'\n" msgstr "Peringatan: permisi direktori tidak aman pada %s \"%s\"\n" -#: g10/gpg.c:1694 +#: g10/gpg.c:1703 #, fuzzy, c-format msgid "WARNING: unsafe enclosing directory permissions on extension '%s'\n" msgstr "Peringatan: permisi direktori tidak aman pada %s \"%s\"\n" -#: g10/gpg.c:1910 +#: g10/gpg.c:1919 #, fuzzy, c-format msgid "unknown configuration item '%s'\n" msgstr "Item Konfigurasi tidak dikenal \"%s\"\n" -#: g10/gpg.c:2009 +#: g10/gpg.c:2018 msgid "display photo IDs during key listings" msgstr "" -#: g10/gpg.c:2011 +#: g10/gpg.c:2020 #, fuzzy msgid "show key usage information during key listings" msgstr "Tidak ada signature koresponden di ring rahasia\n" -#: g10/gpg.c:2013 +#: g10/gpg.c:2022 msgid "show policy URLs during signature listings" msgstr "" -#: g10/gpg.c:2015 +#: g10/gpg.c:2024 #, fuzzy msgid "show all notations during signature listings" msgstr "Tidak ada signature koresponden di ring rahasia\n" -#: g10/gpg.c:2017 +#: g10/gpg.c:2026 msgid "show IETF standard notations during signature listings" msgstr "" -#: g10/gpg.c:2021 +#: g10/gpg.c:2030 msgid "show user-supplied notations during signature listings" msgstr "" -#: g10/gpg.c:2023 +#: g10/gpg.c:2032 #, fuzzy msgid "show preferred keyserver URLs during signature listings" msgstr "URL signature kebijakan yang diberikan tidak valid\n" -#: g10/gpg.c:2025 +#: g10/gpg.c:2034 msgid "show user ID validity during key listings" msgstr "" -#: g10/gpg.c:2027 +#: g10/gpg.c:2036 msgid "show revoked and expired user IDs in key listings" msgstr "" -#: g10/gpg.c:2029 +#: g10/gpg.c:2038 msgid "show revoked and expired subkeys in key listings" msgstr "" -#: g10/gpg.c:2031 +#: g10/gpg.c:2040 #, fuzzy msgid "show the keyring name in key listings" msgstr "tampilkan keyring tempat kunci yang dipilih berada" -#: g10/gpg.c:2033 +#: g10/gpg.c:2042 #, fuzzy msgid "show expiration dates during signature listings" msgstr "Tidak ada signature koresponden di ring rahasia\n" -#: g10/gpg.c:2148 +#: g10/gpg.c:2157 #, fuzzy, c-format msgid "unknown TOFU policy '%s'\n" msgstr "penerima baku tidak dikenal `%s'\n" -#: g10/gpg.c:2150 +#: g10/gpg.c:2159 #, c-format msgid "(use \"help\" to list choices)\n" msgstr "" -#: g10/gpg.c:2240 g10/keyedit.c:1719 +#: g10/gpg.c:2249 g10/keyedit.c:1719 #, c-format msgid "This command is not allowed while in %s mode.\n" msgstr "Perintah ini tidak dibolehkan saat dalam mode %s.\n" -#: g10/gpg.c:2878 g10/gpg.c:3718 g10/gpg.c:3730 +#: g10/gpg.c:2896 g10/gpg.c:3736 g10/gpg.c:3748 #, fuzzy, c-format #| msgid "NOTE: %s is not for normal use!\n" msgid "Note: %s is not for normal use!\n" msgstr "CATATAN: %s tidak untuk pemakaian normal!\n" -#: g10/gpg.c:3053 g10/gpg.c:3065 +#: g10/gpg.c:3071 g10/gpg.c:3083 #, fuzzy, c-format msgid "'%s' is not a valid signature expiration\n" msgstr "%s bukanlah set karakter yang valid\n" -#: g10/gpg.c:3087 +#: g10/gpg.c:3105 #, fuzzy, c-format msgid "\"%s\" is not a proper mail address\n" msgstr "Bukan alamat email yang valid\n" -#: g10/gpg.c:3119 sm/gpgsm.c:1121 +#: g10/gpg.c:3137 sm/gpgsm.c:1121 #, fuzzy, c-format msgid "invalid pinentry mode '%s'\n" msgstr "algoritma hash tidak valid `%s'\n" -#: g10/gpg.c:3125 sm/gpgsm.c:1127 +#: g10/gpg.c:3143 sm/gpgsm.c:1127 #, fuzzy, c-format msgid "invalid request origin '%s'\n" msgstr "opsi impor tidak valid\n" -#: g10/gpg.c:3179 +#: g10/gpg.c:3197 #, fuzzy, c-format msgid "'%s' is not a valid character set\n" msgstr "%s bukanlah set karakter yang valid\n" -#: g10/gpg.c:3201 g10/gpg.c:3415 g10/keyedit.c:5338 +#: g10/gpg.c:3219 g10/gpg.c:3433 g10/keyedit.c:5338 #, fuzzy, c-format msgid "could not parse keyserver URL\n" msgstr "tidak dapat memparsing URI keyserver\n" -#: g10/gpg.c:3219 +#: g10/gpg.c:3237 #, fuzzy, c-format msgid "%s:%d: invalid keyserver options\n" msgstr "%s:%d: opsi ekspor tidak valid\n" -#: g10/gpg.c:3222 +#: g10/gpg.c:3240 #, fuzzy, c-format msgid "invalid keyserver options\n" msgstr "opsi ekspor tidak valid\n" -#: g10/gpg.c:3229 +#: g10/gpg.c:3247 #, c-format msgid "%s:%d: invalid import options\n" msgstr "%s:%d: opsi impor tidak valid\n" -#: g10/gpg.c:3232 +#: g10/gpg.c:3250 #, c-format msgid "invalid import options\n" msgstr "opsi impor tidak valid\n" -#: g10/gpg.c:3238 g10/gpg.c:3253 +#: g10/gpg.c:3256 g10/gpg.c:3271 #, fuzzy, c-format msgid "invalid filter option: %s\n" msgstr "opsi impor tidak valid\n" -#: g10/gpg.c:3244 +#: g10/gpg.c:3262 #, c-format msgid "%s:%d: invalid export options\n" msgstr "%s:%d: opsi ekspor tidak valid\n" -#: g10/gpg.c:3247 +#: g10/gpg.c:3265 #, c-format msgid "invalid export options\n" msgstr "opsi ekspor tidak valid\n" -#: g10/gpg.c:3259 +#: g10/gpg.c:3277 #, fuzzy, c-format msgid "%s:%d: invalid list options\n" msgstr "%s:%d: opsi impor tidak valid\n" -#: g10/gpg.c:3262 +#: g10/gpg.c:3280 #, fuzzy, c-format msgid "invalid list options\n" msgstr "opsi impor tidak valid\n" -#: g10/gpg.c:3270 +#: g10/gpg.c:3288 msgid "display photo IDs during signature verification" msgstr "" -#: g10/gpg.c:3272 +#: g10/gpg.c:3290 msgid "show policy URLs during signature verification" msgstr "" -#: g10/gpg.c:3274 +#: g10/gpg.c:3292 #, fuzzy msgid "show all notations during signature verification" msgstr "%s bukanlah set karakter yang valid\n" -#: g10/gpg.c:3276 +#: g10/gpg.c:3294 msgid "show IETF standard notations during signature verification" msgstr "" -#: g10/gpg.c:3280 +#: g10/gpg.c:3298 msgid "show user-supplied notations during signature verification" msgstr "" -#: g10/gpg.c:3282 +#: g10/gpg.c:3300 #, fuzzy msgid "show preferred keyserver URLs during signature verification" msgstr "URL signature kebijakan yang diberikan tidak valid\n" -#: g10/gpg.c:3284 +#: g10/gpg.c:3302 #, fuzzy msgid "show user ID validity during signature verification" msgstr "%s bukanlah set karakter yang valid\n" -#: g10/gpg.c:3286 +#: g10/gpg.c:3304 msgid "show revoked and expired user IDs in signature verification" msgstr "" -#: g10/gpg.c:3288 +#: g10/gpg.c:3306 #, fuzzy msgid "show only the primary user ID in signature verification" msgstr "%s bukanlah set karakter yang valid\n" -#: g10/gpg.c:3290 +#: g10/gpg.c:3308 msgid "validate signatures with PKA data" msgstr "" -#: g10/gpg.c:3292 +#: g10/gpg.c:3310 msgid "elevate the trust of signatures with valid PKA data" msgstr "" -#: g10/gpg.c:3299 +#: g10/gpg.c:3317 #, fuzzy, c-format msgid "%s:%d: invalid verify options\n" msgstr "%s:%d: opsi ekspor tidak valid\n" -#: g10/gpg.c:3302 +#: g10/gpg.c:3320 #, fuzzy, c-format msgid "invalid verify options\n" msgstr "opsi ekspor tidak valid\n" -#: g10/gpg.c:3309 +#: g10/gpg.c:3327 #, c-format msgid "unable to set exec-path to %s\n" msgstr "tidak dapat menset path exec ke %s\n" -#: g10/gpg.c:3513 +#: g10/gpg.c:3531 #, fuzzy, c-format msgid "%s:%d: invalid auto-key-locate list\n" msgstr "%s:%d: opsi ekspor tidak valid\n" -#: g10/gpg.c:3516 +#: g10/gpg.c:3534 #, c-format msgid "invalid auto-key-locate list\n" msgstr "" -#: g10/gpg.c:3700 sm/gpgsm.c:1492 +#: g10/gpg.c:3718 sm/gpgsm.c:1492 #, c-format msgid "WARNING: program may create a core file!\n" msgstr "PERINGATAN: program mungkin membuat file core!\n" -#: g10/gpg.c:3711 +#: g10/gpg.c:3729 #, c-format msgid "WARNING: %s overrides %s\n" msgstr "PERINGATAN: %s menimpa %s\n" -#: g10/gpg.c:3720 +#: g10/gpg.c:3738 #, c-format msgid "%s not allowed with %s!\n" msgstr "%s tidak dibolehkan dengan %s!\n" -#: g10/gpg.c:3723 +#: g10/gpg.c:3741 #, c-format msgid "%s makes no sense with %s!\n" msgstr "%s tidak masuk akal dengan %s!\n" -#: g10/gpg.c:3738 sm/gpgsm.c:1509 dirmngr/dirmngr.c:1205 +#: g10/gpg.c:3756 sm/gpgsm.c:1509 dirmngr/dirmngr.c:1205 #, c-format msgid "WARNING: running with faked system time: " msgstr "" -#: g10/gpg.c:3759 +#: g10/gpg.c:3777 #, fuzzy, c-format msgid "will not run with insecure memory due to %s\n" msgstr "menulis kunci rahasia ke `%s'\n" -#: g10/gpg.c:3804 g10/gpg.c:3828 sm/gpgsm.c:1579 +#: g10/gpg.c:3824 g10/gpg.c:3848 sm/gpgsm.c:1579 #, c-format msgid "selected cipher algorithm is invalid\n" msgstr "algoritma cipher yang dipilih tidak valid\n" -#: g10/gpg.c:3816 +#: g10/gpg.c:3836 #, fuzzy, c-format msgid "selected compression algorithm is invalid\n" msgstr "algoritma cipher yang dipilih tidak valid\n" -#: g10/gpg.c:3822 +#: g10/gpg.c:3842 #, c-format msgid "selected certification digest algorithm is invalid\n" msgstr "algoritma sertifikasi digest yang dipilih tidak valid\n" -#: g10/gpg.c:3837 +#: g10/gpg.c:3857 #, c-format msgid "completes-needed must be greater than 0\n" msgstr "completes-needed harus lebih dari 0\n" -#: g10/gpg.c:3839 +#: g10/gpg.c:3859 #, c-format msgid "marginals-needed must be greater than 1\n" msgstr "marginals-needed harus lebih dari 1\n" -#: g10/gpg.c:3841 +#: g10/gpg.c:3861 #, fuzzy, c-format msgid "max-cert-depth must be in the range from 1 to 255\n" msgstr "max-cert-depth harus di antara 1 hingga 255\n" -#: g10/gpg.c:3843 +#: g10/gpg.c:3863 #, c-format msgid "invalid default-cert-level; must be 0, 1, 2, or 3\n" msgstr "level cert default tidak valid; harus 0, 1, 2, atau 3\n" -#: g10/gpg.c:3845 +#: g10/gpg.c:3865 #, c-format msgid "invalid min-cert-level; must be 1, 2, or 3\n" msgstr "level cert min tidak valid; harus 0, 1, 2, atau 3\n" -#: g10/gpg.c:3849 +#: g10/gpg.c:3869 #, fuzzy, c-format #| msgid "NOTE: simple S2K mode (0) is strongly discouraged\n" msgid "Note: simple S2K mode (0) is strongly discouraged\n" msgstr "CATATAN: mode S2K sederhana (0) tidak dianjurkan\n" -#: g10/gpg.c:3853 +#: g10/gpg.c:3873 #, c-format msgid "invalid S2K mode; must be 0, 1 or 3\n" msgstr "mode S2K yang tidak valid; harus 0, 1 atau 3\n" -#: g10/gpg.c:3860 +#: g10/gpg.c:3880 #, c-format msgid "invalid default preferences\n" msgstr "preferensi baku tidak valid\n" -#: g10/gpg.c:3864 +#: g10/gpg.c:3884 #, c-format msgid "invalid personal cipher preferences\n" msgstr "preferensi cipher personal tidak valid\n" -#: g10/gpg.c:3868 +#: g10/gpg.c:3888 #, c-format msgid "invalid personal digest preferences\n" msgstr "preferensi digest personal tidak valid\n" -#: g10/gpg.c:3872 +#: g10/gpg.c:3892 #, c-format msgid "invalid personal compress preferences\n" msgstr "preferensi kompresi personal tidak valid\n" -#: g10/gpg.c:3908 +#: g10/gpg.c:3928 #, c-format msgid "%s does not yet work with %s\n" msgstr "%s belum dapat dipakai dengan %s\n" -#: g10/gpg.c:3971 +#: g10/gpg.c:3991 #, fuzzy, c-format msgid "compression algorithm '%s' may not be used in %s mode\n" msgstr "" "anda tidak boleh menggunakan algoritma kompresi \"%s\" saat dalam mode %s.\n" -#: g10/gpg.c:4115 +#: g10/gpg.c:4135 #, c-format msgid "failed to initialize the TrustDB: %s\n" msgstr "gagal inisialisasi TrustDB: %s\n" -#: g10/gpg.c:4127 +#: g10/gpg.c:4147 #, c-format msgid "WARNING: recipients (-r) given without using public key encryption\n" msgstr "" "Peringatan: penerima yang disebutkan (-r) tanpa menggunakan enkripsi public " "key \n" -#: g10/gpg.c:4199 +#: g10/gpg.c:4219 #, fuzzy, c-format msgid "symmetric encryption of '%s' failed: %s\n" msgstr "dekripsi gagal: %s\n" -#: g10/gpg.c:4228 +#: g10/gpg.c:4248 #, c-format msgid "you cannot use --symmetric --encrypt with --s2k-mode 0\n" msgstr "" -#: g10/gpg.c:4231 +#: g10/gpg.c:4251 #, fuzzy, c-format msgid "you cannot use --symmetric --encrypt in %s mode\n" msgstr "anda tidak boleh menggunakan %s saat dalam mode %s.\n" -#: g10/gpg.c:4289 +#: g10/gpg.c:4309 #, c-format msgid "you cannot use --symmetric --sign --encrypt with --s2k-mode 0\n" msgstr "" -#: g10/gpg.c:4292 +#: g10/gpg.c:4312 #, fuzzy, c-format msgid "you cannot use --symmetric --sign --encrypt in %s mode\n" msgstr "anda tidak boleh menggunakan %s saat dalam mode %s.\n" -#: g10/gpg.c:4692 g10/keyserver.c:1648 +#: g10/gpg.c:4712 g10/keyserver.c:1648 #, c-format msgid "keyserver send failed: %s\n" msgstr "Pengiriman keyserver gagal: %s\n" -#: g10/gpg.c:4697 +#: g10/gpg.c:4717 #, c-format msgid "keyserver receive failed: %s\n" msgstr "Penerimaan keyserver gagal: %s\n" -#: g10/gpg.c:4703 +#: g10/gpg.c:4723 #, c-format msgid "key export failed: %s\n" msgstr "Ekspor kunci gagal: %s\n" -#: g10/gpg.c:4716 +#: g10/gpg.c:4736 #, fuzzy, c-format #| msgid "key export failed: %s\n" msgid "export as ssh key failed: %s\n" msgstr "Ekspor kunci gagal: %s\n" -#: g10/gpg.c:4728 +#: g10/gpg.c:4748 #, c-format msgid "keyserver search failed: %s\n" msgstr "Pencarian keyserver gagal: %s\n" -#: g10/gpg.c:4741 +#: g10/gpg.c:4761 #, c-format msgid "keyserver refresh failed: %s\n" msgstr "Refresh keyserver gagal: %s\n" -#: g10/gpg.c:4810 +#: g10/gpg.c:4830 #, c-format msgid "dearmoring failed: %s\n" msgstr "gagal dearmoring: %s\n" -#: g10/gpg.c:4821 +#: g10/gpg.c:4841 #, c-format msgid "enarmoring failed: %s\n" msgstr "gagal enarmoring: %s\n" -#: g10/gpg.c:4913 +#: g10/gpg.c:4933 #, fuzzy, c-format #| msgid "invalid hash algorithm `%s'\n" msgid "invalid hash algorithm '%s'\n" msgstr "algoritma hash tidak valid `%s'\n" -#: g10/gpg.c:5065 g10/tofu.c:2153 +#: g10/gpg.c:5085 g10/tofu.c:2153 #, fuzzy, c-format msgid "error parsing key specification '%s': %s\n" msgstr "kesalahan penciptaan passphrase: %s\n" -#: g10/gpg.c:5078 +#: g10/gpg.c:5098 #, c-format msgid "'%s' does not appear to be a valid key ID, fingerprint or keygrip\n" msgstr "" -#: g10/gpg.c:5134 +#: g10/gpg.c:5154 #, c-format msgid "WARNING: no command supplied. Trying to guess what you mean ...\n" msgstr "" -#: g10/gpg.c:5145 +#: g10/gpg.c:5165 #, c-format msgid "Go ahead and type your message ...\n" msgstr "Teruskan dan ketikkan pesan anda ....\n" -#: g10/gpg.c:5490 +#: g10/gpg.c:5510 #, c-format msgid "the given certification policy URL is invalid\n" msgstr "URL sertifikasi kebijakan yang diberikan tidak valid\n" -#: g10/gpg.c:5492 +#: g10/gpg.c:5512 #, c-format msgid "the given signature policy URL is invalid\n" msgstr "URL signature kebijakan yang diberikan tidak valid\n" -#: g10/gpg.c:5525 +#: g10/gpg.c:5545 #, fuzzy, c-format msgid "the given preferred keyserver URL is invalid\n" msgstr "URL signature kebijakan yang diberikan tidak valid\n" @@ -3663,319 +3669,319 @@ msgid "No help available for '%s'" msgstr "Tidak tersedia bantuan untuk `%s'" -#: g10/import.c:169 +#: g10/import.c:170 msgid "import signatures that are marked as local-only" msgstr "" -#: g10/import.c:172 +#: g10/import.c:173 msgid "repair damage from the pks keyserver during import" msgstr "" -#: g10/import.c:175 +#: g10/import.c:176 #, fuzzy msgid "do not clear the ownertrust values during import" msgstr "perbarui database trust" -#: g10/import.c:178 +#: g10/import.c:179 #, fuzzy msgid "do not update the trustdb after import" msgstr "perbarui database trust" -#: g10/import.c:181 +#: g10/import.c:182 #, fuzzy msgid "show key during import" msgstr "tampilkan fingerprint" -#: g10/import.c:184 +#: g10/import.c:185 msgid "only accept updates to existing keys" msgstr "" -#: g10/import.c:187 +#: g10/import.c:188 #, fuzzy msgid "remove unusable parts from key after import" msgstr "kunci rahasia tidak dapat dipakai" -#: g10/import.c:190 +#: g10/import.c:191 msgid "remove as much as possible from key after import" msgstr "" -#: g10/import.c:193 +#: g10/import.c:194 msgid "ignore key-signatures which are not self-signatures" msgstr "" -#: g10/import.c:196 +#: g10/import.c:197 msgid "run import filters and export key immediately" msgstr "" -#: g10/import.c:199 +#: g10/import.c:200 msgid "assume the GnuPG key backup format" msgstr "" -#: g10/import.c:203 +#: g10/import.c:204 #, fuzzy msgid "repair keys on import" msgstr "tampilkan fingerprint" -#: g10/import.c:392 g10/import.c:711 +#: g10/import.c:393 g10/import.c:712 #, c-format msgid "skipping block of type %d\n" msgstr "melewati blok tipe %d\n" -#: g10/import.c:728 +#: g10/import.c:729 #, fuzzy, c-format msgid "%lu keys processed so far\n" msgstr "%lu kunci telah diproses\n" -#: g10/import.c:814 +#: g10/import.c:815 #, c-format msgid "Total number processed: %lu\n" msgstr "Jumlah yang telah diproses: %lu\n" -#: g10/import.c:817 +#: g10/import.c:818 #, fuzzy, c-format #| msgid " skipped new keys: %lu\n" msgid " skipped PGP-2 keys: %lu\n" msgstr " lewati kunci baru: %lu\n" -#: g10/import.c:819 +#: g10/import.c:820 #, c-format msgid " skipped new keys: %lu\n" msgstr " lewati kunci baru: %lu\n" -#: g10/import.c:822 +#: g10/import.c:823 #, c-format msgid " w/o user IDs: %lu\n" msgstr " tanpa ID user: %lu\n" -#: g10/import.c:825 sm/import.c:130 +#: g10/import.c:826 sm/import.c:130 #, c-format msgid " imported: %lu" msgstr " diimpor: %lu" -#: g10/import.c:829 sm/import.c:134 +#: g10/import.c:830 sm/import.c:134 #, c-format msgid " unchanged: %lu\n" msgstr " tidak berubah: %lu\n" -#: g10/import.c:831 +#: g10/import.c:832 #, c-format msgid " new user IDs: %lu\n" msgstr " ID user baru: %lu\n" -#: g10/import.c:833 +#: g10/import.c:834 #, c-format msgid " new subkeys: %lu\n" msgstr " subkey baru: %lu\n" -#: g10/import.c:835 +#: g10/import.c:836 #, c-format msgid " new signatures: %lu\n" msgstr " signature baru: %lu\n" -#: g10/import.c:837 +#: g10/import.c:838 #, c-format msgid " new key revocations: %lu\n" msgstr " pembatalan kunci baru: %lu\n" -#: g10/import.c:839 sm/import.c:136 +#: g10/import.c:840 sm/import.c:136 #, c-format msgid " secret keys read: %lu\n" msgstr " kunci rahasia dibaca: %lu\n" -#: g10/import.c:841 sm/import.c:138 +#: g10/import.c:842 sm/import.c:138 #, c-format msgid " secret keys imported: %lu\n" msgstr " kunci rahasia diimpor: %lu\n" -#: g10/import.c:843 sm/import.c:140 +#: g10/import.c:844 sm/import.c:140 #, c-format msgid " secret keys unchanged: %lu\n" msgstr " kunci rahasia tidak berubah: %lu\n" -#: g10/import.c:845 sm/import.c:142 +#: g10/import.c:846 sm/import.c:142 #, c-format msgid " not imported: %lu\n" msgstr " tidak diimpor: %lu\n" -#: g10/import.c:847 +#: g10/import.c:848 #, fuzzy, c-format msgid " signatures cleaned: %lu\n" msgstr " signature baru: %lu\n" -#: g10/import.c:849 +#: g10/import.c:850 #, fuzzy, c-format msgid " user IDs cleaned: %lu\n" msgstr " kunci rahasia dibaca: %lu\n" -#: g10/import.c:1276 +#: g10/import.c:1277 #, c-format msgid "" "WARNING: key %s contains preferences for unavailable\n" "algorithms on these user IDs:\n" msgstr "" -#: g10/import.c:1318 +#: g10/import.c:1319 #, c-format msgid " \"%s\": preference for cipher algorithm %s\n" msgstr "" -#: g10/import.c:1333 +#: g10/import.c:1334 #, fuzzy, c-format msgid " \"%s\": preference for digest algorithm %s\n" msgstr "%s signature, algoritma digest %s\n" -#: g10/import.c:1345 +#: g10/import.c:1346 #, c-format msgid " \"%s\": preference for compression algorithm %s\n" msgstr "" -#: g10/import.c:1358 +#: g10/import.c:1359 #, c-format msgid "it is strongly suggested that you update your preferences and\n" msgstr "" -#: g10/import.c:1360 +#: g10/import.c:1361 #, c-format msgid "re-distribute this key to avoid potential algorithm mismatch problems\n" msgstr "" -#: g10/import.c:1385 +#: g10/import.c:1386 #, c-format msgid "you can update your preferences with: gpg --edit-key %s updpref save\n" msgstr "" -#: g10/import.c:1899 g10/import.c:3013 +#: g10/import.c:1902 g10/import.c:3028 #, fuzzy, c-format msgid "key %s: no user ID\n" msgstr "kunci %08lX: tidak ada ID user\n" -#: g10/import.c:1905 +#: g10/import.c:1908 #, fuzzy, c-format msgid "key %s: %s\n" msgstr "melewati `%s': %s\n" -#: g10/import.c:1906 g10/import.c:2985 +#: g10/import.c:1909 g10/import.c:3000 msgid "rejected by import screener" msgstr "" -#: g10/import.c:1950 +#: g10/import.c:1953 #, fuzzy, c-format msgid "key %s: PKS subkey corruption repaired\n" msgstr "kunci %08lX: subkey HKP yang rusak diperbaiki\n" -#: g10/import.c:1971 +#: g10/import.c:1974 #, fuzzy, c-format msgid "key %s: accepted non self-signed user ID \"%s\"\n" msgstr "kunci %08lX: menerima ID user '%s' yang tidak self-signed\n" -#: g10/import.c:1981 g10/import.c:2012 +#: g10/import.c:1985 g10/import.c:2016 #, fuzzy, c-format msgid "key %s: no valid user IDs\n" msgstr "kunci %08lX: tidak ada ID user yang valid\n" -#: g10/import.c:1983 +#: g10/import.c:1987 #, c-format msgid "this may be caused by a missing self-signature\n" msgstr "mungkin disebabkan oleh self-signature yang tidak ada\n" -#: g10/import.c:2062 g10/import.c:3399 +#: g10/import.c:2066 g10/import.c:3415 #, fuzzy, c-format msgid "key %s: public key not found: %s\n" msgstr "kunci %08lX: kunci publik tidak ditemukan: %s\n" -#: g10/import.c:2068 +#: g10/import.c:2072 #, fuzzy, c-format msgid "key %s: new key - skipped\n" msgstr "kunci %08lX: kunci baru - dilewati\n" -#: g10/import.c:2080 +#: g10/import.c:2084 #, c-format msgid "no writable keyring found: %s\n" msgstr "tidak ditemukan keyring yang dapat ditulisi: %s\n" -#: g10/import.c:2112 g10/import.c:2214 g10/import.c:3476 +#: g10/import.c:2116 g10/import.c:2218 g10/import.c:3492 #, fuzzy, c-format #| msgid "error writing keyring `%s': %s\n" msgid "error writing keyring '%s': %s\n" msgstr "kesalahan menulis keyring `%s': %s\n" -#: g10/import.c:2135 +#: g10/import.c:2139 #, fuzzy, c-format msgid "key %s: public key \"%s\" imported\n" msgstr "kunci %08lX: kunci publik \"%s\" diimpor\n" -#: g10/import.c:2162 +#: g10/import.c:2166 #, fuzzy, c-format msgid "key %s: doesn't match our copy\n" msgstr "kunci %08lX: tidak cocok dengan duplikat kami\n" -#: g10/import.c:2230 +#: g10/import.c:2234 #, fuzzy, c-format msgid "key %s: \"%s\" 1 new user ID\n" msgstr "kunci %08lX: 1 user ID baru \"%s\"\n" -#: g10/import.c:2233 +#: g10/import.c:2237 #, fuzzy, c-format msgid "key %s: \"%s\" %d new user IDs\n" msgstr "kunci %08lX: \"%s\" %d user ID baru\n" -#: g10/import.c:2236 +#: g10/import.c:2240 #, fuzzy, c-format msgid "key %s: \"%s\" 1 new signature\n" msgstr "kunci %08lX: \"%s\" 1 signature baru\n" -#: g10/import.c:2239 +#: g10/import.c:2243 #, fuzzy, c-format msgid "key %s: \"%s\" %d new signatures\n" msgstr "kunci %08lX: \"%s\" %d signature baru\n" -#: g10/import.c:2242 +#: g10/import.c:2246 #, fuzzy, c-format msgid "key %s: \"%s\" 1 new subkey\n" msgstr "kunci %08lX: \"%s\" 1 subkey baru\n" -#: g10/import.c:2245 +#: g10/import.c:2249 #, fuzzy, c-format msgid "key %s: \"%s\" %d new subkeys\n" msgstr "kunci %08lX: \"%s\" %d subkey baru\n" -#: g10/import.c:2248 +#: g10/import.c:2252 #, fuzzy, c-format msgid "key %s: \"%s\" %d signature cleaned\n" msgstr "kunci %08lX: \"%s\" %d signature baru\n" -#: g10/import.c:2251 +#: g10/import.c:2255 #, fuzzy, c-format msgid "key %s: \"%s\" %d signatures cleaned\n" msgstr "kunci %08lX: \"%s\" %d signature baru\n" -#: g10/import.c:2254 +#: g10/import.c:2258 #, fuzzy, c-format msgid "key %s: \"%s\" %d user ID cleaned\n" msgstr "kunci %08lX: \"%s\" %d user ID baru\n" -#: g10/import.c:2257 +#: g10/import.c:2261 #, fuzzy, c-format msgid "key %s: \"%s\" %d user IDs cleaned\n" msgstr "kunci %08lX: \"%s\" %d user ID baru\n" -#: g10/import.c:2293 +#: g10/import.c:2297 #, fuzzy, c-format msgid "key %s: \"%s\" not changed\n" msgstr "kunci %08lX: \"%s\" tidak berubah\n" -#: g10/import.c:2652 g10/import.c:2847 +#: g10/import.c:2667 g10/import.c:2862 #, fuzzy, c-format msgid "key %s: secret key imported\n" msgstr "kunci %08lX: kunci rahasia diimpor\n" -#: g10/import.c:2660 +#: g10/import.c:2675 #, fuzzy, c-format #| msgid "skipped: secret key already present\n" msgid "key %s: secret key already exists\n" msgstr "dilewati: kunci pribadi telah ada\n" -#: g10/import.c:2668 +#: g10/import.c:2683 #, fuzzy, c-format msgid "key %s: error sending to agent: %s\n" msgstr "kesalahan mengirim ke `%s': %s\n" @@ -3988,196 +3994,196 @@ #. * Instead, user should be suggested to run 'gpg --card-status', #. * then, references to a card will be automatically created #. * again. -#: g10/import.c:2837 +#: g10/import.c:2852 #, c-format msgid "To migrate '%s', with each smartcard, run: %s\n" msgstr "" -#: g10/import.c:2984 +#: g10/import.c:2999 #, fuzzy, c-format msgid "secret key %s: %s\n" msgstr "kunci rahasia `%s' tidak ditemukan: %s\n" -#: g10/import.c:3005 g10/import.c:3044 +#: g10/import.c:3020 g10/import.c:3059 #, fuzzy, c-format msgid "importing secret keys not allowed\n" msgstr "menulis kunci rahasia ke `%s'\n" -#: g10/import.c:3032 +#: g10/import.c:3047 #, fuzzy, c-format msgid "key %s: secret key with invalid cipher %d - skipped\n" msgstr "kunci %08lX: kunci rahasia dengan cipher tidak valid %d - dilewati\n" -#: g10/import.c:3194 g10/pkclist.c:72 g10/revoke.c:776 +#: g10/import.c:3209 g10/pkclist.c:72 g10/revoke.c:776 msgid "No reason specified" msgstr "Tidak ada alasan diberikan" -#: g10/import.c:3195 g10/pkclist.c:74 g10/revoke.c:778 +#: g10/import.c:3210 g10/pkclist.c:74 g10/revoke.c:778 msgid "Key is superseded" msgstr "Kunci dilampaui" -#: g10/import.c:3196 g10/pkclist.c:76 g10/revoke.c:777 +#: g10/import.c:3211 g10/pkclist.c:76 g10/revoke.c:777 msgid "Key has been compromised" msgstr "Kunci ini telah dikompromikan" -#: g10/import.c:3197 g10/pkclist.c:78 g10/revoke.c:779 +#: g10/import.c:3212 g10/pkclist.c:78 g10/revoke.c:779 msgid "Key is no longer used" msgstr "Kunci tidak lagi digunakan" -#: g10/import.c:3198 g10/pkclist.c:80 g10/revoke.c:780 +#: g10/import.c:3213 g10/pkclist.c:80 g10/revoke.c:780 msgid "User ID is no longer valid" msgstr "ID User tidak lagi valid" -#: g10/import.c:3323 g10/keylist.c:1258 g10/pkclist.c:84 +#: g10/import.c:3338 g10/keylist.c:1258 g10/pkclist.c:84 #, c-format msgid "reason for revocation: " msgstr "Alasan pembatalan:" -#: g10/import.c:3342 g10/keylist.c:1277 g10/pkclist.c:100 +#: g10/import.c:3357 g10/keylist.c:1277 g10/pkclist.c:100 #, c-format msgid "revocation comment: " msgstr "Komentar pembatalan:" -#: g10/import.c:3392 +#: g10/import.c:3408 #, fuzzy, c-format msgid "key %s: no public key - can't apply revocation certificate\n" msgstr "" "kunci %08lX: tdk ada kunci publik-tdk dpt mengaplikasikan sertifikat " "pembatalan\n" -#: g10/import.c:3423 +#: g10/import.c:3439 #, fuzzy, c-format msgid "key %s: can't locate original keyblock: %s\n" msgstr "kunci %08lX: tidak dapat menemukan keyblock orisinal: %s\n" -#: g10/import.c:3430 +#: g10/import.c:3446 #, fuzzy, c-format msgid "key %s: can't read original keyblock: %s\n" msgstr "kunci %08lX: tidak dapat membaca keyblok orisinal: %s\n" -#: g10/import.c:3450 +#: g10/import.c:3466 #, fuzzy, c-format msgid "key %s: invalid revocation certificate: %s - rejected\n" msgstr "kunci %08lX: sertifikat pembatalan tidak valid: %s - ditolak\n" -#: g10/import.c:3485 +#: g10/import.c:3501 #, fuzzy, c-format msgid "key %s: \"%s\" revocation certificate imported\n" msgstr "kunci %08lX: \"%s\" sertifikat pembatalan diimpor\n" -#: g10/import.c:3571 +#: g10/import.c:3587 #, fuzzy, c-format msgid "key %s: no user ID for signature\n" msgstr "kunci %08lX: tidak ada ID user untuk signature\n" -#: g10/import.c:3588 +#: g10/import.c:3604 #, fuzzy, c-format msgid "key %s: unsupported public key algorithm on user ID \"%s\"\n" msgstr "kunci %08lX: algoritma publik key tidak didukung pada user id \"%s\"\n" -#: g10/import.c:3590 +#: g10/import.c:3606 #, fuzzy, c-format msgid "key %s: invalid self-signature on user ID \"%s\"\n" msgstr "kunci %08lX: self-signature tidak valid pada user id \"%s\"\n" -#: g10/import.c:3607 g10/import.c:3635 g10/import.c:3691 +#: g10/import.c:3623 g10/import.c:3651 g10/import.c:3707 #, fuzzy, c-format msgid "key %s: unsupported public key algorithm\n" msgstr "kunci %08lX: algoritma publik key tidak didukung\n" -#: g10/import.c:3608 +#: g10/import.c:3624 #, fuzzy, c-format msgid "key %s: invalid direct key signature\n" msgstr "kunci %08lX: signature kunci langsung ditambahkan\n" -#: g10/import.c:3622 +#: g10/import.c:3638 #, fuzzy, c-format msgid "key %s: no subkey for key binding\n" msgstr "kunci %08lX: tidak ada subkey untuk key binding\n" -#: g10/import.c:3637 +#: g10/import.c:3653 #, fuzzy, c-format msgid "key %s: invalid subkey binding\n" msgstr "kunci %08lX: subkey binding tidak valid\n" -#: g10/import.c:3656 +#: g10/import.c:3672 #, fuzzy, c-format msgid "key %s: removed multiple subkey binding\n" msgstr "kunci %08lX: hapus subkey binding ganda\n" -#: g10/import.c:3680 +#: g10/import.c:3696 #, fuzzy, c-format msgid "key %s: no subkey for key revocation\n" msgstr "kunci %08lX: tidak ada subkey untuk pembatalan kunci\n" -#: g10/import.c:3693 +#: g10/import.c:3709 #, fuzzy, c-format msgid "key %s: invalid subkey revocation\n" msgstr "kunci %08lX: pembatalan subkey tidak valid\n" -#: g10/import.c:3708 +#: g10/import.c:3724 #, fuzzy, c-format msgid "key %s: removed multiple subkey revocation\n" msgstr "kunci %08lX: hapus pembatalan subkey ganda\n" -#: g10/import.c:3752 +#: g10/import.c:3771 #, fuzzy, c-format msgid "key %s: skipped user ID \"%s\"\n" msgstr "kunci %08lX: melewati ID user " -#: g10/import.c:3779 +#: g10/import.c:3798 #, fuzzy, c-format msgid "key %s: skipped subkey\n" msgstr "kunci %08lX: melewati subkey\n" -#: g10/import.c:3810 +#: g10/import.c:3829 #, fuzzy, c-format msgid "key %s: non exportable signature (class 0x%02X) - skipped\n" msgstr "kunci %08lX: signature tidak dapat diekpor (kelas %02x) - dilewati\n" -#: g10/import.c:3821 +#: g10/import.c:3840 #, fuzzy, c-format msgid "key %s: revocation certificate at wrong place - skipped\n" msgstr "kunci %08lX: sertifikat pembatalan di tempat yang salah - dilewati\n" -#: g10/import.c:3839 +#: g10/import.c:3868 #, fuzzy, c-format msgid "key %s: invalid revocation certificate: %s - skipped\n" msgstr "kunci %08lX: sertifikat pembatalan tidak valid: %s - dilewati\n" -#: g10/import.c:3853 +#: g10/import.c:3892 #, fuzzy, c-format msgid "key %s: subkey signature in wrong place - skipped\n" msgstr "kunci %08lX: signature subkey di tempat yang salah - dilewati\n" -#: g10/import.c:3861 +#: g10/import.c:3900 #, fuzzy, c-format msgid "key %s: unexpected signature class (0x%02X) - skipped\n" msgstr "kunci %08lX: klas signature tidak diharapkan (0x%02x) - dilewati\n" -#: g10/import.c:4034 +#: g10/import.c:4073 #, fuzzy, c-format msgid "key %s: duplicated user ID detected - merged\n" msgstr "kunci %08lX: terdeteksi ID user duplikat - digabungkan\n" -#: g10/import.c:4099 +#: g10/import.c:4138 #, fuzzy, c-format msgid "WARNING: key %s may be revoked: fetching revocation key %s\n" msgstr "" "Peringatan: kunci %08lX dapat dibatalkan: mengambil kunci pembatalan %08lX\n" -#: g10/import.c:4115 +#: g10/import.c:4154 #, fuzzy, c-format msgid "WARNING: key %s may be revoked: revocation key %s not present.\n" msgstr "" "Peringatan: kunci %08lX dapat dibatalkan: kunci pembatalan %08lX tidak ada\n" -#: g10/import.c:4181 +#: g10/import.c:4220 #, fuzzy, c-format msgid "key %s: \"%s\" revocation certificate added\n" msgstr "kunci %08lX: \"%s\" penambahan sertifikat pembatalan\n" -#: g10/import.c:4219 +#: g10/import.c:4258 #, fuzzy, c-format msgid "key %s: direct key signature added\n" msgstr "kunci %08lX: signature kunci langsung ditambahkan\n" @@ -5113,7 +5119,7 @@ msgid "You may not add a photo ID to a PGP2-style key.\n" msgstr "Anda tidak boleh menambahkan sebuah photo ID ke kunci bergaya PGP2 \n" -#: g10/keyedit.c:4293 g10/keygen.c:2899 +#: g10/keyedit.c:4293 g10/keygen.c:2953 msgid "Such a user ID already exists on this key!\n" msgstr "" @@ -5408,83 +5414,83 @@ msgid "Displaying %s photo ID of size %ld for key %s (uid %d)\n" msgstr "Menampilkan photo ID %s berukuran %ld untuk kunci 0x%08lX (uid %d)\n" -#: g10/keygen.c:169 +#: g10/keygen.c:174 #, fuzzy, c-format msgid "invalid value for option '%s'\n" msgstr "opsi impor tidak valid\n" -#: g10/keygen.c:322 +#: g10/keygen.c:331 #, fuzzy, c-format msgid "preference '%s' duplicated\n" msgstr "preferensi %c%lu ganda \n" -#: g10/keygen.c:329 +#: g10/keygen.c:338 #, fuzzy, c-format msgid "too many cipher preferences\n" msgstr "terlalu banyak preferensi `%c'\n" -#: g10/keygen.c:331 +#: g10/keygen.c:340 #, fuzzy, c-format msgid "too many digest preferences\n" msgstr "terlalu banyak preferensi `%c'\n" -#: g10/keygen.c:333 +#: g10/keygen.c:342 #, fuzzy, c-format msgid "too many compression preferences\n" msgstr "terlalu banyak preferensi `%c'\n" -#: g10/keygen.c:493 +#: g10/keygen.c:502 #, fuzzy, c-format msgid "invalid item '%s' in preference string\n" msgstr "Karakter tidak valid dalam string preferensi\n" -#: g10/keygen.c:972 +#: g10/keygen.c:1020 #, c-format msgid "writing direct signature\n" msgstr "menulis signature direct\n" -#: g10/keygen.c:1018 +#: g10/keygen.c:1066 #, c-format msgid "writing self signature\n" msgstr "menulis self signature\n" -#: g10/keygen.c:1075 +#: g10/keygen.c:1123 #, c-format msgid "writing key binding signature\n" msgstr "menulis key binding signature\n" -#: g10/keygen.c:1440 g10/keygen.c:1445 g10/keygen.c:1497 g10/keygen.c:1502 -#: g10/keygen.c:1656 g10/keygen.c:1661 +#: g10/keygen.c:1494 g10/keygen.c:1499 g10/keygen.c:1551 g10/keygen.c:1556 +#: g10/keygen.c:1710 g10/keygen.c:1715 #, c-format msgid "keysize invalid; using %u bits\n" msgstr "keysize tidak valid; menggunakan %u bit\n" -#: g10/keygen.c:1451 g10/keygen.c:1508 g10/keygen.c:1516 g10/keygen.c:1667 +#: g10/keygen.c:1505 g10/keygen.c:1562 g10/keygen.c:1570 g10/keygen.c:1721 #, c-format msgid "keysize rounded up to %u bits\n" msgstr "keysize dibulatkan hingga %u bit\n" -#: g10/keygen.c:1542 +#: g10/keygen.c:1596 #, c-format msgid "" "WARNING: some OpenPGP programs can't handle a DSA key with this digest size\n" msgstr "" -#: g10/keygen.c:1723 +#: g10/keygen.c:1777 #, fuzzy msgid "Sign" msgstr "tandai" -#: g10/keygen.c:1726 +#: g10/keygen.c:1780 msgid "Certify" msgstr "" -#: g10/keygen.c:1729 +#: g10/keygen.c:1783 #, fuzzy msgid "Encrypt" msgstr "enkripsi data" -#: g10/keygen.c:1732 +#: g10/keygen.c:1786 msgid "Authenticate" msgstr "" @@ -5498,169 +5504,169 @@ #. * a = Toggle authentication capability #. * q = Finish #. -#: g10/keygen.c:1753 +#: g10/keygen.c:1807 msgid "SsEeAaQq" msgstr "" -#: g10/keygen.c:1784 +#: g10/keygen.c:1838 #, c-format msgid "Possible actions for a %s key: " msgstr "" -#: g10/keygen.c:1790 +#: g10/keygen.c:1844 msgid "Current allowed actions: " msgstr "" -#: g10/keygen.c:1795 +#: g10/keygen.c:1849 #, c-format msgid " (%c) Toggle the sign capability\n" msgstr "" -#: g10/keygen.c:1798 +#: g10/keygen.c:1852 #, fuzzy, c-format msgid " (%c) Toggle the encrypt capability\n" msgstr " (%d) ElGamal (hanya enkripsi)\n" -#: g10/keygen.c:1801 +#: g10/keygen.c:1855 #, c-format msgid " (%c) Toggle the authenticate capability\n" msgstr "" -#: g10/keygen.c:1804 +#: g10/keygen.c:1858 #, c-format msgid " (%c) Finished\n" msgstr "" -#: g10/keygen.c:1930 +#: g10/keygen.c:1984 #, fuzzy, c-format msgid " (%d) RSA and RSA (default)\n" msgstr " (%d) DSA dan ElGamal (baku)\n" -#: g10/keygen.c:1934 +#: g10/keygen.c:1988 #, fuzzy, c-format msgid " (%d) DSA and Elgamal\n" msgstr " (%d) DSA dan ElGamal (baku)\n" -#: g10/keygen.c:1937 +#: g10/keygen.c:1991 #, c-format msgid " (%d) DSA (sign only)\n" msgstr " (%d) DSA (hanya menandai)\n" -#: g10/keygen.c:1939 +#: g10/keygen.c:1993 #, c-format msgid " (%d) RSA (sign only)\n" msgstr " (%d) RSA (hanya menandai)\n" -#: g10/keygen.c:1945 +#: g10/keygen.c:1999 #, fuzzy, c-format msgid " (%d) Elgamal (encrypt only)\n" msgstr " (%d) ElGamal (hanya enkripsi)\n" -#: g10/keygen.c:1947 +#: g10/keygen.c:2001 #, c-format msgid " (%d) RSA (encrypt only)\n" msgstr " (%d) RSA (hanya enkripsi)\n" -#: g10/keygen.c:1953 +#: g10/keygen.c:2007 #, fuzzy, c-format msgid " (%d) DSA (set your own capabilities)\n" msgstr " (%d) RSA (hanya enkripsi)\n" -#: g10/keygen.c:1955 +#: g10/keygen.c:2009 #, fuzzy, c-format msgid " (%d) RSA (set your own capabilities)\n" msgstr " (%d) RSA (hanya enkripsi)\n" -#: g10/keygen.c:1961 +#: g10/keygen.c:2015 #, fuzzy, c-format msgid " (%d) ECC and ECC\n" msgstr " (%d) DSA dan ElGamal (baku)\n" -#: g10/keygen.c:1963 +#: g10/keygen.c:2017 #, fuzzy, c-format #| msgid " (%d) DSA (sign only)\n" msgid " (%d) ECC (sign only)\n" msgstr " (%d) DSA (hanya menandai)\n" -#: g10/keygen.c:1965 +#: g10/keygen.c:2019 #, fuzzy, c-format msgid " (%d) ECC (set your own capabilities)\n" msgstr " (%d) RSA (hanya enkripsi)\n" -#: g10/keygen.c:1967 +#: g10/keygen.c:2021 #, fuzzy, c-format #| msgid " (%d) RSA (encrypt only)\n" msgid " (%d) ECC (encrypt only)\n" msgstr " (%d) RSA (hanya enkripsi)\n" -#: g10/keygen.c:1971 +#: g10/keygen.c:2025 #, fuzzy, c-format msgid " (%d) Existing key\n" msgstr " (%d) RSA (hanya enkripsi)\n" -#: g10/keygen.c:1973 +#: g10/keygen.c:2027 #, fuzzy, c-format msgid " (%d) Existing key from card\n" msgstr " (%d) RSA (hanya enkripsi)\n" -#: g10/keygen.c:2069 sm/certreqgen-ui.c:202 +#: g10/keygen.c:2123 sm/certreqgen-ui.c:202 #, fuzzy msgid "Enter the keygrip: " msgstr "Notasi signature: " -#: g10/keygen.c:2082 sm/certreqgen-ui.c:210 +#: g10/keygen.c:2136 sm/certreqgen-ui.c:210 msgid "Not a valid keygrip (expecting 40 hex digits)\n" msgstr "" -#: g10/keygen.c:2084 sm/certreqgen-ui.c:212 +#: g10/keygen.c:2138 sm/certreqgen-ui.c:212 #, fuzzy msgid "No key with this keygrip\n" msgstr "Tidak ada ID user dengan index %d\n" -#: g10/keygen.c:2103 g10/keygen.c:2113 g10/keygen.c:3216 g10/keygen.c:3227 +#: g10/keygen.c:2157 g10/keygen.c:2167 g10/keygen.c:3270 g10/keygen.c:3281 #: sm/certreqgen-ui.c:230 sm/certreqgen-ui.c:239 #, fuzzy, c-format msgid "error reading the card: %s\n" msgstr "%s: kesalahan membaca record bebas: %s\n" -#: g10/keygen.c:2107 g10/keygen.c:3220 sm/certreqgen-ui.c:233 +#: g10/keygen.c:2161 g10/keygen.c:3274 sm/certreqgen-ui.c:233 #, fuzzy, c-format msgid "Serial number of the card: %s\n" msgstr "kesalahan penciptaan passphrase: %s\n" -#: g10/keygen.c:2120 sm/certreqgen-ui.c:245 +#: g10/keygen.c:2174 sm/certreqgen-ui.c:245 #, fuzzy msgid "Available keys:\n" msgstr "tiadakan kunci" -#: g10/keygen.c:2297 g10/keygen.c:2311 +#: g10/keygen.c:2351 g10/keygen.c:2365 #, fuzzy, c-format #| msgid "rounded up to %u bits\n" msgid "rounded to %u bits\n" msgstr "dibulatkan hingga %u bit\n" -#: g10/keygen.c:2352 +#: g10/keygen.c:2406 #, c-format msgid "%s keys may be between %u and %u bits long.\n" msgstr "" -#: g10/keygen.c:2360 +#: g10/keygen.c:2414 #, fuzzy, c-format msgid "What keysize do you want for the subkey? (%u) " msgstr "Keysize yang anda inginkan? (1024) " -#: g10/keygen.c:2377 sm/certreqgen-ui.c:189 +#: g10/keygen.c:2431 sm/certreqgen-ui.c:189 #, c-format msgid "Requested keysize is %u bits\n" msgstr "Keysize yang diminta adalah %u bit\n" -#: g10/keygen.c:2423 +#: g10/keygen.c:2477 #, fuzzy #| msgid "Please select what kind of key you want:\n" msgid "Please select which elliptic curve you want:\n" msgstr "Silakan pilih kunci yang anda inginkan:\n" -#: g10/keygen.c:2611 +#: g10/keygen.c:2665 msgid "" "Please specify how long the key should be valid.\n" " 0 = key does not expire\n" @@ -5676,7 +5682,7 @@ " m = kunci berakhir dalam n bulan\n" " y = kunci berakhir dalam n tahun\n" -#: g10/keygen.c:2622 +#: g10/keygen.c:2676 msgid "" "Please specify how long the signature should be valid.\n" " 0 = signature does not expire\n" @@ -5692,40 +5698,40 @@ " m = signature berakhir dalam n bulan\n" " y = signature berakhir dalam n tahun\n" -#: g10/keygen.c:2645 +#: g10/keygen.c:2699 msgid "Key is valid for? (0) " msgstr "Kunci valid untuk? (0) " -#: g10/keygen.c:2650 +#: g10/keygen.c:2704 #, fuzzy, c-format msgid "Signature is valid for? (%s) " msgstr "Signature valid untuk? (0) " -#: g10/keygen.c:2663 g10/keygen.c:2688 +#: g10/keygen.c:2717 g10/keygen.c:2742 msgid "invalid value\n" msgstr "nilai yang tidak valid\n" -#: g10/keygen.c:2670 +#: g10/keygen.c:2724 #, fuzzy msgid "Key does not expire at all\n" msgstr "%s tidak pernah berakhir\n" -#: g10/keygen.c:2671 +#: g10/keygen.c:2725 #, fuzzy msgid "Signature does not expire at all\n" msgstr "%s tidak pernah berakhir\n" -#: g10/keygen.c:2676 +#: g10/keygen.c:2730 #, fuzzy, c-format msgid "Key expires at %s\n" msgstr "%s berakhir pada %s\n" -#: g10/keygen.c:2677 +#: g10/keygen.c:2731 #, fuzzy, c-format msgid "Signature expires at %s\n" msgstr "Signature kadaluarsa pada %s \n" -#: g10/keygen.c:2681 +#: g10/keygen.c:2735 msgid "" "Your system can't display dates beyond 2038.\n" "However, it will be correctly handled up to 2106.\n" @@ -5733,12 +5739,12 @@ "Sistem anda tidak dapat menampilkan tanggal melebihi 2038.\n" "Namun, ia dapat menanganinya secara benar hingga 2106.\n" -#: g10/keygen.c:2694 +#: g10/keygen.c:2748 #, fuzzy msgid "Is this correct? (y/N) " msgstr "Benar (y/t)? " -#: g10/keygen.c:2762 +#: g10/keygen.c:2816 msgid "" "\n" "GnuPG needs to construct a user ID to identify your key.\n" @@ -5749,7 +5755,7 @@ #. but you should keep your existing translation. In case #. the new string is not translated this old string will #. be used. -#: g10/keygen.c:2777 +#: g10/keygen.c:2831 #, fuzzy msgid "" "\n" @@ -5765,50 +5771,50 @@ "user-id dari Nama sebenarnya, Komentar dan Alamat email dalam bentuk:\n" " \"Heinrich Heine (Der Dichter) \"\n" -#: g10/keygen.c:2796 +#: g10/keygen.c:2850 msgid "Real name: " msgstr "Nama sebenarnya: " -#: g10/keygen.c:2805 +#: g10/keygen.c:2859 msgid "Invalid character in name\n" msgstr "Karakter tidak valid dalam nama\n" -#: g10/keygen.c:2806 +#: g10/keygen.c:2860 #, c-format msgid "The characters '%s' and '%s' may not appear in name\n" msgstr "" -#: g10/keygen.c:2810 +#: g10/keygen.c:2864 msgid "Name may not start with a digit\n" msgstr "Nama tidak boleh dimulai dengan digit\n" -#: g10/keygen.c:2813 +#: g10/keygen.c:2867 msgid "Name must be at least 5 characters long\n" msgstr "Nama harus berukuran minimum 5 karakter\n" -#: g10/keygen.c:2823 +#: g10/keygen.c:2877 msgid "Email address: " msgstr "Alamat email: " -#: g10/keygen.c:2829 +#: g10/keygen.c:2883 msgid "Not a valid email address\n" msgstr "Bukan alamat email yang valid\n" -#: g10/keygen.c:2838 +#: g10/keygen.c:2892 msgid "Comment: " msgstr "Komentar: " -#: g10/keygen.c:2844 +#: g10/keygen.c:2898 msgid "Invalid character in comment\n" msgstr "Karakter tidak valid dalam komentar\n" -#: g10/keygen.c:2880 +#: g10/keygen.c:2934 #, fuzzy, c-format #| msgid "You are using the `%s' character set.\n" msgid "You are using the '%s' character set.\n" msgstr "Anda menggunakan set karakter `%s'.\n" -#: g10/keygen.c:2886 +#: g10/keygen.c:2940 #, c-format msgid "" "You selected this USER-ID:\n" @@ -5818,7 +5824,7 @@ "Anda memilih USER-ID ini:\n" " \"%s\"\n" -#: g10/keygen.c:2891 +#: g10/keygen.c:2945 msgid "Please don't put the email address into the real name or the comment\n" msgstr "Jangan menaruh alamat email ke dalam nama sebenarnya atau komentar\n" @@ -5833,35 +5839,35 @@ #. o = Okay (ready, continue) #. q = Quit #. -#: g10/keygen.c:2916 +#: g10/keygen.c:2970 msgid "NnCcEeOoQq" msgstr "NnKkEeOoQq" -#: g10/keygen.c:2926 +#: g10/keygen.c:2980 msgid "Change (N)ame, (C)omment, (E)mail or (Q)uit? " msgstr "Ganti (N)ama, (K)omentar, (E)mail atau (Q)uit? " -#: g10/keygen.c:2927 +#: g10/keygen.c:2981 msgid "Change (N)ame, (C)omment, (E)mail or (O)kay/(Q)uit? " msgstr "Ganti (N)ama, (K)omentar, (E)mail atau (O)ke/(Q)uit? " -#: g10/keygen.c:2932 +#: g10/keygen.c:2986 #, fuzzy #| msgid "Change (N)ame, (C)omment, (E)mail or (Q)uit? " msgid "Change (N)ame, (E)mail, or (Q)uit? " msgstr "Ganti (N)ama, (K)omentar, (E)mail atau (Q)uit? " -#: g10/keygen.c:2933 +#: g10/keygen.c:2987 #, fuzzy #| msgid "Change (N)ame, (C)omment, (E)mail or (O)kay/(Q)uit? " msgid "Change (N)ame, (E)mail, or (O)kay/(Q)uit? " msgstr "Ganti (N)ama, (K)omentar, (E)mail atau (O)ke/(Q)uit? " -#: g10/keygen.c:2952 +#: g10/keygen.c:3006 msgid "Please correct the error first\n" msgstr "Silakan perbaiki kesalahan ini dulu\n" -#: g10/keygen.c:2998 +#: g10/keygen.c:3052 msgid "" "We need to generate a lot of random bytes. It is a good idea to perform\n" "some other action (type on the keyboard, move the mouse, utilize the\n" @@ -5873,13 +5879,13 @@ "selama pembuatan prima; ini akan memberi random number generator kesempatan\n" "yang baik untuk memperoleh entropi.\n" -#: g10/keygen.c:4278 g10/keygen.c:4349 g10/keygen.c:4367 g10/keygen.c:4395 -#: g10/keygen.c:4739 g10/keygen.c:5239 g10/keygen.c:5534 g10/keygen.c:5639 +#: g10/keygen.c:4332 g10/keygen.c:4403 g10/keygen.c:4421 g10/keygen.c:4449 +#: g10/keygen.c:4793 g10/keygen.c:5293 g10/keygen.c:5588 g10/keygen.c:5693 #, c-format msgid "Key generation failed: %s\n" msgstr "Pembuatan kunci gagal: %s\n" -#: g10/keygen.c:4287 +#: g10/keygen.c:4341 #, c-format msgid "" "About to create a key for:\n" @@ -5887,69 +5893,69 @@ "\n" msgstr "" -#: g10/keygen.c:4289 +#: g10/keygen.c:4343 msgid "Continue? (Y/n) " msgstr "" -#: g10/keygen.c:4310 +#: g10/keygen.c:4364 #, fuzzy, c-format msgid "A key for \"%s\" already exists\n" msgstr "`%s' sudah dikompresi\n" -#: g10/keygen.c:4315 +#: g10/keygen.c:4369 #, fuzzy #| msgid "Create anyway? " msgid "Create anyway? (y/N) " msgstr "Tetap dibuat? " -#: g10/keygen.c:4321 +#: g10/keygen.c:4375 #, fuzzy, c-format #| msgid "Create anyway? " msgid "creating anyway\n" msgstr "Tetap dibuat? " -#: g10/keygen.c:4722 +#: g10/keygen.c:4776 #, c-format msgid "Note: Use \"%s %s\" for a full featured key generation dialog.\n" msgstr "" -#: g10/keygen.c:4771 +#: g10/keygen.c:4825 #, c-format msgid "Key generation canceled.\n" msgstr "Pembuatan kunci dibatalkan.\n" -#: g10/keygen.c:4831 +#: g10/keygen.c:4885 #, fuzzy, c-format msgid "can't create backup file '%s': %s\n" msgstr "tidak dapat membuat %s: %s\n" -#: g10/keygen.c:4851 +#: g10/keygen.c:4905 #, fuzzy, c-format msgid "Note: backup of card key saved to '%s'\n" msgstr "CATATAN: kunci pribadi %08lX berakhir pada %s\n" -#: g10/keygen.c:5010 g10/keygen.c:5172 +#: g10/keygen.c:5064 g10/keygen.c:5226 #, fuzzy, c-format #| msgid "writing public key to `%s'\n" msgid "writing public key to '%s'\n" msgstr "menulis kunci publik ke `%s'\n" -#: g10/keygen.c:5166 +#: g10/keygen.c:5220 #, c-format msgid "no writable public keyring found: %s\n" msgstr "tidak ditemukan keyring publik yang dapat ditulisi: %s\n" -#: g10/keygen.c:5180 +#: g10/keygen.c:5234 #, fuzzy, c-format #| msgid "error writing public keyring `%s': %s\n" msgid "error writing public keyring '%s': %s\n" msgstr "kesalahan menulis keyring publik `%s': %s\n" -#: g10/keygen.c:5210 +#: g10/keygen.c:5264 msgid "public and secret key created and signed.\n" msgstr "kunci publik dan rahasia dibuat dan ditandai.\n" -#: g10/keygen.c:5226 +#: g10/keygen.c:5280 #, fuzzy msgid "" "Note that this key cannot be used for encryption. You may want to use\n" @@ -5959,37 +5965,37 @@ "mungkin ingin menggunakan perintah \"--edit-key\" untuk membuat kunci kedua " "untuk tujuan ini.\n" -#: g10/keygen.c:5401 g10/keygen.c:5590 +#: g10/keygen.c:5455 g10/keygen.c:5644 #, c-format msgid "" "key has been created %lu second in future (time warp or clock problem)\n" msgstr "" "kunci telah diciptakan dalam %lu detik mendatang (masalah waktu atau jam)\n" -#: g10/keygen.c:5403 g10/keygen.c:5592 +#: g10/keygen.c:5457 g10/keygen.c:5646 #, c-format msgid "" "key has been created %lu seconds in future (time warp or clock problem)\n" msgstr "" "kunci telah diciptakan dalam %lu detik mendatang (masalah waktu atau jam)\n" -#: g10/keygen.c:5414 g10/keygen.c:5603 +#: g10/keygen.c:5468 g10/keygen.c:5657 #, fuzzy, c-format #| msgid "NOTE: creating subkeys for v3 keys is not OpenPGP compliant\n" msgid "Note: creating subkeys for v3 keys is not OpenPGP compliant\n" msgstr "CATATAN: membuat subkey bagi kunci-kunci v3 tidak OpenPGP compliant\n" -#: g10/keygen.c:5426 g10/keygen.c:5428 +#: g10/keygen.c:5480 g10/keygen.c:5482 #, c-format msgid "Secret parts of primary key are not available.\n" msgstr "Bagian rahasia kunci primer tidak tersedia.\n" -#: g10/keygen.c:5435 g10/keygen.c:5437 +#: g10/keygen.c:5489 g10/keygen.c:5491 #, fuzzy, c-format msgid "Secret parts of primary key are stored on-card.\n" msgstr "Bagian rahasia kunci primer tidak tersedia.\n" -#: g10/keygen.c:5456 g10/keygen.c:5617 +#: g10/keygen.c:5510 g10/keygen.c:5671 #, fuzzy msgid "Really create? (y/N) " msgstr "Ingin diciptakan? " @@ -7093,31 +7099,31 @@ msgid "data not saved; use option \"--output\" to save it\n" msgstr "data tidak disimpan; gunakan pilihan \"--output\" untuk menyimpannya\n" -#: g10/plaintext.c:615 +#: g10/plaintext.c:620 msgid "Detached signature.\n" msgstr "Menghapus signature.\n" -#: g10/plaintext.c:623 +#: g10/plaintext.c:628 msgid "Please enter name of data file: " msgstr "Silakan masukkan nama file data: " -#: g10/plaintext.c:660 +#: g10/plaintext.c:665 #, c-format msgid "reading stdin ...\n" msgstr "membaca stdin ...\n" -#: g10/plaintext.c:705 +#: g10/plaintext.c:710 #, c-format msgid "no signed data\n" msgstr "tidak ada data tertandai\n" -#: g10/plaintext.c:723 +#: g10/plaintext.c:728 #, fuzzy, c-format #| msgid "can't open signed data `%s'\n" msgid "can't open signed data '%s'\n" msgstr "tidak dapat membuka data tertandai `%s'\n" -#: g10/plaintext.c:758 +#: g10/plaintext.c:763 #, fuzzy, c-format msgid "can't open signed data fd=%d: %s\n" msgstr "tidak dapat membuka data tertandai `%s'\n" @@ -8130,7 +8136,7 @@ msgid "no need for a trustdb check\n" msgstr "tidak perlu memeriksa trustdb\n" -#: g10/trustdb.c:631 g10/trustdb.c:2326 +#: g10/trustdb.c:631 g10/trustdb.c:2338 #, c-format msgid "next trustdb check due at %s\n" msgstr "pemeriksaan trustdb berikutnya pada %s\n" @@ -8160,14 +8166,14 @@ msgid "checking the trustdb\n" msgstr "memeriksa trustdb\n" -#: g10/trustdb.c:2047 +#: g10/trustdb.c:2059 #, fuzzy, c-format msgid "%d key processed" msgid_plural "%d keys processed" msgstr[0] "%lu kunci telah diproses\n" msgstr[1] "%lu kunci telah diproses\n" -#: g10/trustdb.c:2050 +#: g10/trustdb.c:2062 #, fuzzy, c-format #| msgid "%d keys processed (%d validity counts cleared)\n" msgid " (%d validity count cleared)\n" @@ -8175,23 +8181,23 @@ msgstr[0] "%d kunci diproses (%d hitungan validitas dihapus)\n" msgstr[1] "%d kunci diproses (%d hitungan validitas dihapus)\n" -#: g10/trustdb.c:2120 +#: g10/trustdb.c:2132 #, c-format msgid "no ultimately trusted keys found\n" msgstr "tidak ditemukan kunci yang benar-benar terpercaya\n" -#: g10/trustdb.c:2134 +#: g10/trustdb.c:2146 #, fuzzy, c-format msgid "public key of ultimately trusted key %s not found\n" msgstr "kunci publik yang sangat terpercaya %08lX tidak ditemukan\n" -#: g10/trustdb.c:2252 +#: g10/trustdb.c:2264 #, c-format msgid "" "depth: %d valid: %3d signed: %3d trust: %d-, %dq, %dn, %dm, %df, %du\n" msgstr "" -#: g10/trustdb.c:2333 +#: g10/trustdb.c:2345 #, fuzzy, c-format msgid "unable to update trustdb version record: write failed: %s\n" msgstr "trust record %lu, tipe %d: gagal menulis: %s\n" @@ -8309,88 +8315,94 @@ #. TRANSLATORS: Put a \x1f right before a colon. This can be #. * used by pinentry to nicely align the names and values. Keep #. * the %s at the start and end of the string. -#: scd/app-p15.c:5116 scd/app-openpgp.c:2154 +#: scd/app-p15.c:5145 scd/app-nks.c:1541 scd/app-openpgp.c:2154 #, c-format msgid "%sNumber: %s%%0AHolder: %s%s" msgstr "" #. TRANSLATORS: This is the number of remaining attempts to #. * enter a PIN. Use %%0A (double-percent,0A) for a linefeed. -#: scd/app-p15.c:5135 scd/app-openpgp.c:2170 +#: scd/app-p15.c:5164 scd/app-nks.c:1560 scd/app-openpgp.c:2170 #, c-format msgid "Remaining attempts: %d" msgstr "" -#: scd/app-p15.c:5214 scd/app-nks.c:1113 +#: scd/app-p15.c:5243 scd/app-nks.c:2112 msgid "||Please enter the PIN for the key to create qualified signatures." msgstr "" #. TRANSLATORS: Do not translate the "|A|" prefix but keep it at #. the start of the string. Use %0A (single percent) for a linefeed. -#: scd/app-p15.c:5217 scd/app-openpgp.c:2464 +#: scd/app-p15.c:5246 scd/app-openpgp.c:2465 #, fuzzy msgid "|A|Please enter the Admin PIN" msgstr "ubah passphrase" -#: scd/app-p15.c:5219 scd/app-nks.c:1103 +#: scd/app-p15.c:5248 scd/app-nks.c:2102 #, fuzzy msgid "|P|Please enter the PIN Unblocking Code (PUK) for the standard keys." msgstr "Silakan pilih alasan untuk pembatalan:\n" -#: scd/app-p15.c:5222 scd/app-nks.c:1095 +#: scd/app-p15.c:5251 scd/app-nks.c:2093 #, fuzzy msgid "||Please enter the PIN for the standard keys." msgstr "ubah passphrase" -#: scd/app-nks.c:709 scd/app-openpgp.c:3666 +#: scd/app-nks.c:1479 scd/app-openpgp.c:3675 #, c-format msgid "RSA modulus missing or not of size %d bits\n" msgstr "" -#: scd/app-nks.c:717 scd/app-openpgp.c:3678 +#: scd/app-nks.c:1487 scd/app-openpgp.c:3687 #, c-format msgid "RSA public exponent missing or larger than %d bits\n" msgstr "" -#: scd/app-nks.c:797 scd/app-openpgp.c:2327 scd/app-openpgp.c:2346 -#: scd/app-openpgp.c:2513 scd/app-openpgp.c:2531 scd/app-openpgp.c:2829 -#: scd/app-openpgp.c:2876 scd/app-openpgp.c:2991 scd/app-dinsig.c:302 +#: scd/app-nks.c:1660 +#, fuzzy +#| msgid "Note: This key has been disabled.\n" +msgid "Note: PIN has not yet been enabled." +msgstr "Catatan: Kunci ini telah ditiadakan\n" + +#: scd/app-nks.c:1671 scd/app-openpgp.c:2327 scd/app-openpgp.c:2346 +#: scd/app-openpgp.c:2515 scd/app-openpgp.c:2533 scd/app-openpgp.c:2832 +#: scd/app-openpgp.c:2879 scd/app-openpgp.c:3000 scd/app-dinsig.c:303 #, c-format msgid "PIN callback returned error: %s\n" msgstr "" -#: scd/app-nks.c:830 +#: scd/app-nks.c:1707 #, c-format msgid "the NullPIN has not yet been changed\n" msgstr "" -#: scd/app-nks.c:1094 +#: scd/app-nks.c:2092 #, fuzzy msgid "|N|Please enter a new PIN for the standard keys." msgstr "ubah passphrase" -#: scd/app-nks.c:1101 +#: scd/app-nks.c:2100 #, fuzzy msgid "|NP|Please enter a new PIN Unblocking Code (PUK) for the standard keys." msgstr "Silakan pilih alasan untuk pembatalan:\n" -#: scd/app-nks.c:1111 +#: scd/app-nks.c:2110 msgid "|N|Please enter a new PIN for the key to create qualified signatures." msgstr "" -#: scd/app-nks.c:1121 +#: scd/app-nks.c:2120 msgid "" "|NP|Please enter a new PIN Unblocking Code (PUK) for the key to create " "qualified signatures." msgstr "" -#: scd/app-nks.c:1123 +#: scd/app-nks.c:2122 msgid "" "|P|Please enter the PIN Unblocking Code (PUK) for the key to create " "qualified signatures." msgstr "" -#: scd/app-nks.c:1230 scd/app-openpgp.c:2910 scd/app-dinsig.c:532 +#: scd/app-nks.c:2295 scd/app-openpgp.c:2913 scd/app-dinsig.c:535 #, fuzzy, c-format msgid "error getting new PIN: %s\n" msgstr "kesalahan penciptaan passphrase: %s\n" @@ -8405,7 +8417,7 @@ msgid "failed to store the creation date: %s\n" msgstr "gagal membuat kembali cache keyring: %s\n" -#: scd/app-openpgp.c:1271 scd/app-openpgp.c:2857 scd/app-openpgp.c:5041 +#: scd/app-openpgp.c:1271 scd/app-openpgp.c:2860 scd/app-openpgp.c:5051 #, c-format msgid "error retrieving CHV status from card\n" msgstr "" @@ -8426,7 +8438,7 @@ msgid "response does not contain the EC public key\n" msgstr "hapus kunci dari keyring publik" -#: scd/app-openpgp.c:1664 scd/app-openpgp.c:4286 +#: scd/app-openpgp.c:1664 scd/app-openpgp.c:4295 #, c-format msgid "response does not contain the public key data\n" msgstr "" @@ -8459,23 +8471,23 @@ msgid "||Please unlock the card" msgstr "ubah passphrase" -#: scd/app-openpgp.c:2353 scd/app-openpgp.c:2538 scd/app-openpgp.c:2836 +#: scd/app-openpgp.c:2353 scd/app-openpgp.c:2540 scd/app-openpgp.c:2839 #, c-format msgid "PIN for CHV%d is too short; minimum length is %d\n" msgstr "" -#: scd/app-openpgp.c:2367 scd/app-openpgp.c:2414 scd/app-openpgp.c:2552 -#: scd/app-openpgp.c:4644 +#: scd/app-openpgp.c:2368 scd/app-openpgp.c:2415 scd/app-openpgp.c:2554 +#: scd/app-openpgp.c:4654 #, fuzzy, c-format msgid "verify CHV%d failed: %s\n" msgstr "Pengiriman keyserver gagal: %s\n" -#: scd/app-openpgp.c:2450 scd/app-openpgp.c:5050 +#: scd/app-openpgp.c:2451 scd/app-openpgp.c:5060 #, c-format msgid "card is permanently locked!\n" msgstr "" -#: scd/app-openpgp.c:2454 +#: scd/app-openpgp.c:2455 #, c-format msgid "%d Admin PIN attempt remaining before card is permanently locked\n" msgid_plural "" @@ -8483,22 +8495,22 @@ msgstr[0] "" msgstr[1] "" -#: scd/app-openpgp.c:2485 +#: scd/app-openpgp.c:2486 #, c-format msgid "access to admin commands is not configured\n" msgstr "" -#: scd/app-openpgp.c:2823 +#: scd/app-openpgp.c:2826 #, fuzzy msgid "||Please enter the PIN" msgstr "ubah passphrase" -#: scd/app-openpgp.c:2872 +#: scd/app-openpgp.c:2875 #, fuzzy msgid "||Please enter the Reset Code for the card" msgstr "Silakan pilih alasan untuk pembatalan:\n" -#: scd/app-openpgp.c:2882 scd/app-openpgp.c:2943 +#: scd/app-openpgp.c:2885 scd/app-openpgp.c:2946 #, c-format msgid "Reset Code is too short; minimum length is %d\n" msgstr "" @@ -8506,128 +8518,128 @@ #. 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:2905 +#: scd/app-openpgp.c:2908 msgid "|RN|New Reset Code" msgstr "" -#: scd/app-openpgp.c:2906 +#: scd/app-openpgp.c:2909 msgid "|AN|New Admin PIN" msgstr "" -#: scd/app-openpgp.c:2906 +#: scd/app-openpgp.c:2909 msgid "|N|New PIN" msgstr "" -#: scd/app-openpgp.c:2987 +#: scd/app-openpgp.c:2996 #, fuzzy msgid "||Please enter the Admin PIN and New Admin PIN" msgstr "ubah passphrase" -#: scd/app-openpgp.c:2988 +#: scd/app-openpgp.c:2997 #, fuzzy msgid "||Please enter the PIN and New PIN" msgstr "ubah passphrase" -#: scd/app-openpgp.c:3050 scd/app-openpgp.c:4346 +#: scd/app-openpgp.c:3059 scd/app-openpgp.c:4355 #, fuzzy, c-format msgid "error reading application data\n" msgstr "gagal membaca keyblock: %s\n" -#: scd/app-openpgp.c:3056 scd/app-openpgp.c:4353 +#: scd/app-openpgp.c:3065 scd/app-openpgp.c:4362 #, fuzzy, c-format msgid "error reading fingerprint DO\n" msgstr "%s: kesalahan membaca record bebas: %s\n" -#: scd/app-openpgp.c:3066 +#: scd/app-openpgp.c:3075 #, fuzzy, c-format msgid "key already exists\n" msgstr "`%s' sudah dikompresi\n" -#: scd/app-openpgp.c:3070 +#: scd/app-openpgp.c:3079 #, c-format msgid "existing key will be replaced\n" msgstr "" -#: scd/app-openpgp.c:3072 +#: scd/app-openpgp.c:3081 #, fuzzy, c-format msgid "generating new key\n" msgstr "buat sepasang kunci baru" -#: scd/app-openpgp.c:3074 +#: scd/app-openpgp.c:3083 #, fuzzy, c-format msgid "writing new key\n" msgstr "buat sepasang kunci baru" -#: scd/app-openpgp.c:3647 scd/app-openpgp.c:3999 +#: scd/app-openpgp.c:3656 scd/app-openpgp.c:4008 #, c-format msgid "creation timestamp missing\n" msgstr "" -#: scd/app-openpgp.c:3688 scd/app-openpgp.c:3696 +#: scd/app-openpgp.c:3697 scd/app-openpgp.c:3705 #, c-format msgid "RSA prime %s missing or not of size %d bits\n" msgstr "" -#: scd/app-openpgp.c:3829 scd/app-openpgp.c:4106 +#: scd/app-openpgp.c:3838 scd/app-openpgp.c:4115 #, fuzzy, c-format msgid "failed to store the key: %s\n" msgstr "gagal inisialisasi TrustDB: %s\n" -#: scd/app-openpgp.c:3993 +#: scd/app-openpgp.c:4002 #, fuzzy, c-format #| msgid "unsupported URI" msgid "unsupported curve\n" msgstr "URI tidak didukung" -#: scd/app-openpgp.c:4263 +#: scd/app-openpgp.c:4272 #, c-format msgid "please wait while key is being generated ...\n" msgstr "" -#: scd/app-openpgp.c:4271 +#: scd/app-openpgp.c:4280 #, fuzzy, c-format msgid "generating key failed\n" msgstr "gagal menghapus keyblok: %s\n" -#: scd/app-openpgp.c:4277 +#: scd/app-openpgp.c:4286 #, fuzzy, c-format msgid "key generation completed (%d second)\n" msgid_plural "key generation completed (%d seconds)\n" msgstr[0] "Pembuatan kunci gagal: %s\n" msgstr[1] "Pembuatan kunci gagal: %s\n" -#: scd/app-openpgp.c:4311 +#: scd/app-openpgp.c:4320 #, c-format msgid "invalid structure of OpenPGP card (DO 0x93)\n" msgstr "" -#: scd/app-openpgp.c:4361 +#: scd/app-openpgp.c:4370 #, c-format msgid "fingerprint on card does not match requested one\n" msgstr "" -#: scd/app-openpgp.c:4560 +#: scd/app-openpgp.c:4569 #, fuzzy, c-format msgid "card does not support digest algorithm %s\n" msgstr "%s signature, algoritma digest %s\n" -#: scd/app-openpgp.c:4618 +#: scd/app-openpgp.c:4627 #, c-format msgid "signatures created so far: %lu\n" msgstr "" -#: scd/app-openpgp.c:5055 +#: scd/app-openpgp.c:5065 #, c-format msgid "" "verification of Admin PIN is currently prohibited through this command\n" msgstr "" -#: scd/app-openpgp.c:5386 scd/app-openpgp.c:5398 +#: scd/app-openpgp.c:5396 scd/app-openpgp.c:5408 #, fuzzy, c-format msgid "can't access %s - invalid OpenPGP card?\n" msgstr "tidak ditemukan data OpenPGP yang valid.\n" -#: scd/app-dinsig.c:298 +#: scd/app-dinsig.c:299 #, fuzzy msgid "||Please enter your PIN at the reader's pinpad" msgstr "ubah passphrase" @@ -8635,7 +8647,7 @@ #. 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-dinsig.c:529 +#: scd/app-dinsig.c:532 msgid "|N|Initial New PIN" msgstr "" @@ -8725,11 +8737,11 @@ msgid "validation model requested by certificate: %s" msgstr "" -#: sm/certchain.c:199 sm/certchain.c:2164 +#: sm/certchain.c:199 sm/certchain.c:2165 msgid "chain" msgstr "" -#: sm/certchain.c:200 sm/certchain.c:2164 +#: sm/certchain.c:200 sm/certchain.c:2165 #, fuzzy msgid "shell" msgstr "bantuan" @@ -8753,241 +8765,241 @@ msgid "failed to open '%s': %s\n" msgstr "tidak dapat membuka `%s': %s\n" -#: sm/certchain.c:355 sm/certchain.c:384 dirmngr/validate.c:204 +#: sm/certchain.c:355 sm/certchain.c:385 dirmngr/validate.c:204 #, fuzzy, c-format msgid "Note: non-critical certificate policy not allowed" msgstr "menulis kunci rahasia ke `%s'\n" -#: sm/certchain.c:359 sm/certchain.c:388 dirmngr/validate.c:209 +#: sm/certchain.c:359 sm/certchain.c:389 dirmngr/validate.c:209 #, fuzzy, c-format msgid "certificate policy not allowed" msgstr "menulis kunci rahasia ke `%s'\n" -#: sm/certchain.c:595 sm/keydb.c:1084 sm/keydb.c:1171 +#: sm/certchain.c:596 sm/keydb.c:1084 sm/keydb.c:1171 #, fuzzy, c-format msgid "failed to get the fingerprint\n" msgstr "gagal inisialisasi TrustDB: %s\n" -#: sm/certchain.c:624 +#: sm/certchain.c:625 #, c-format msgid "looking up issuer at external location\n" msgstr "" -#: sm/certchain.c:644 +#: sm/certchain.c:645 #, c-format msgid "number of issuers matching: %d\n" msgstr "" -#: sm/certchain.c:723 dirmngr/ocsp.c:685 +#: sm/certchain.c:724 dirmngr/ocsp.c:685 #, fuzzy, c-format #| msgid "%s: can't access: %s\n" msgid "can't get authorityInfoAccess: %s\n" msgstr "%s: tidak dapat mengakses: %s\n" -#: sm/certchain.c:791 +#: sm/certchain.c:792 #, c-format msgid "looking up issuer from the Dirmngr cache\n" msgstr "" -#: sm/certchain.c:816 +#: sm/certchain.c:817 #, fuzzy, c-format msgid "number of matching certificates: %d\n" msgstr "kesalahan penciptaan passphrase: %s\n" -#: sm/certchain.c:819 +#: sm/certchain.c:820 #, fuzzy, c-format msgid "dirmngr cache-only key lookup failed: %s\n" msgstr "gagal menghapus keyblok: %s\n" -#: sm/certchain.c:1041 sm/certchain.c:1554 sm/certchain.c:2192 sm/decrypt.c:728 +#: sm/certchain.c:1042 sm/certchain.c:1555 sm/certchain.c:2193 sm/decrypt.c:728 #: sm/encrypt.c:345 sm/import.c:415 sm/keydb.c:1091 sm/keydb.c:1178 #: sm/sign.c:337 sm/verify.c:118 #, fuzzy, c-format msgid "failed to allocate keyDB handle\n" msgstr "gagal inisialisasi TrustDB: %s\n" -#: sm/certchain.c:1225 +#: sm/certchain.c:1226 #, fuzzy msgid "certificate has been revoked" msgstr "CATATAN: kunci telah dibatalkan" -#: sm/certchain.c:1240 +#: sm/certchain.c:1241 msgid "the status of the certificate is unknown" msgstr "" -#: sm/certchain.c:1247 +#: sm/certchain.c:1248 #, c-format msgid "please make sure that the \"dirmngr\" is properly installed\n" msgstr "" -#: sm/certchain.c:1253 +#: sm/certchain.c:1254 #, fuzzy, c-format msgid "checking the CRL failed: %s" msgstr "Gagal memeriksa signature yang dibuat: %s\n" -#: sm/certchain.c:1282 sm/certchain.c:1350 dirmngr/validate.c:497 +#: sm/certchain.c:1283 sm/certchain.c:1351 dirmngr/validate.c:497 #, c-format msgid "certificate with invalid validity: %s" msgstr "" -#: sm/certchain.c:1297 sm/certchain.c:1382 dirmngr/validate.c:515 +#: sm/certchain.c:1298 sm/certchain.c:1383 dirmngr/validate.c:515 #, c-format msgid "certificate not yet valid" msgstr "" -#: sm/certchain.c:1298 sm/certchain.c:1383 +#: sm/certchain.c:1299 sm/certchain.c:1384 #, fuzzy msgid "root certificate not yet valid" msgstr "menulis kunci rahasia ke `%s'\n" -#: sm/certchain.c:1299 sm/certchain.c:1384 +#: sm/certchain.c:1300 sm/certchain.c:1385 msgid "intermediate certificate not yet valid" msgstr "" -#: sm/certchain.c:1312 dirmngr/validate.c:526 +#: sm/certchain.c:1313 dirmngr/validate.c:526 #, fuzzy, c-format msgid "certificate has expired" msgstr "Kunci ini telah berakhir!" -#: sm/certchain.c:1313 +#: sm/certchain.c:1314 #, fuzzy msgid "root certificate has expired" msgstr "Kunci ini telah berakhir!" -#: sm/certchain.c:1314 +#: sm/certchain.c:1315 #, fuzzy msgid "intermediate certificate has expired" msgstr "Kunci ini telah berakhir!" -#: sm/certchain.c:1356 +#: sm/certchain.c:1357 #, c-format msgid "required certificate attributes missing: %s%s%s" msgstr "" -#: sm/certchain.c:1365 +#: sm/certchain.c:1366 #, fuzzy msgid "certificate with invalid validity" msgstr "Kunci ini telah berakhir!" -#: sm/certchain.c:1402 +#: sm/certchain.c:1403 msgid "signature not created during lifetime of certificate" msgstr "" -#: sm/certchain.c:1404 +#: sm/certchain.c:1405 msgid "certificate not created during lifetime of issuer" msgstr "" -#: sm/certchain.c:1405 +#: sm/certchain.c:1406 msgid "intermediate certificate not created during lifetime of issuer" msgstr "" -#: sm/certchain.c:1409 +#: sm/certchain.c:1410 #, fuzzy, c-format msgid " ( signature created at " msgstr " signature baru: %lu\n" -#: sm/certchain.c:1410 +#: sm/certchain.c:1411 #, fuzzy, c-format msgid " (certificate created at " msgstr "Sertifikat pembatalan tercipta.\n" -#: sm/certchain.c:1413 +#: sm/certchain.c:1414 #, fuzzy, c-format msgid " (certificate valid from " msgstr "sertifikat yang buruk" -#: sm/certchain.c:1414 +#: sm/certchain.c:1415 #, c-format msgid " ( issuer valid from " msgstr "" -#: sm/certchain.c:1444 dirmngr/validate.c:577 +#: sm/certchain.c:1445 dirmngr/validate.c:577 #, fuzzy, c-format msgid "fingerprint=%s\n" msgstr "tampilkan fingerprint" -#: sm/certchain.c:1453 +#: sm/certchain.c:1454 #, c-format msgid "root certificate has now been marked as trusted\n" msgstr "" -#: sm/certchain.c:1466 +#: sm/certchain.c:1467 #, c-format msgid "interactive marking as trusted not enabled in gpg-agent\n" msgstr "" -#: sm/certchain.c:1472 +#: sm/certchain.c:1473 #, c-format msgid "interactive marking as trusted disabled for this session\n" msgstr "" -#: sm/certchain.c:1531 +#: sm/certchain.c:1532 msgid "WARNING: creation time of signature not known - assuming current time" msgstr "" -#: sm/certchain.c:1595 +#: sm/certchain.c:1596 #, fuzzy msgid "no issuer found in certificate" msgstr "buat sertifikat revokasi" -#: sm/certchain.c:1673 +#: sm/certchain.c:1674 msgid "self-signed certificate has a BAD signature" msgstr "" -#: sm/certchain.c:1742 dirmngr/validate.c:575 +#: sm/certchain.c:1743 dirmngr/validate.c:575 #, c-format msgid "root certificate is not marked trusted" msgstr "" -#: sm/certchain.c:1758 +#: sm/certchain.c:1759 #, fuzzy, c-format msgid "checking the trust list failed: %s\n" msgstr "Gagal memeriksa signature yang dibuat: %s\n" -#: sm/certchain.c:1789 sm/import.c:176 sm/keylist.c:1396 dirmngr/validate.c:630 +#: sm/certchain.c:1790 sm/import.c:176 sm/keylist.c:1396 dirmngr/validate.c:630 #, c-format msgid "certificate chain too long\n" msgstr "" -#: sm/certchain.c:1801 dirmngr/validate.c:642 +#: sm/certchain.c:1802 dirmngr/validate.c:642 #, c-format msgid "issuer certificate not found" msgstr "" -#: sm/certchain.c:1834 dirmngr/validate.c:668 +#: sm/certchain.c:1835 dirmngr/validate.c:668 #, fuzzy, c-format msgid "certificate has a BAD signature" msgstr "verifikasi signature" -#: sm/certchain.c:1866 dirmngr/validate.c:692 +#: sm/certchain.c:1867 dirmngr/validate.c:692 msgid "found another possible matching CA certificate - trying again" msgstr "" -#: sm/certchain.c:1925 dirmngr/validate.c:717 +#: sm/certchain.c:1926 dirmngr/validate.c:717 #, c-format msgid "certificate chain longer than allowed by CA (%d)" msgstr "" -#: sm/certchain.c:1967 sm/certchain.c:2263 dirmngr/validate.c:747 +#: sm/certchain.c:1968 sm/certchain.c:2264 dirmngr/validate.c:747 #, fuzzy, c-format msgid "certificate is good\n" msgstr "preferensi %c%lu ganda \n" -#: sm/certchain.c:1968 +#: sm/certchain.c:1969 #, fuzzy, c-format msgid "intermediate certificate is good\n" msgstr "Sertifikat pembatalan tercipta.\n" -#: sm/certchain.c:1969 +#: sm/certchain.c:1970 #, fuzzy, c-format msgid "root certificate is good\n" msgstr "sertifikat yang buruk" -#: sm/certchain.c:2151 +#: sm/certchain.c:2152 msgid "switching to chain model" msgstr "" -#: sm/certchain.c:2160 +#: sm/certchain.c:2161 #, c-format msgid "validation model used: %s" msgstr "" diff -Nru gnupg2-2.2.40/po/it.po gnupg2-2.2.41/po/it.po --- gnupg2-2.2.40/po/it.po 2022-10-10 09:58:26.000000000 +0000 +++ gnupg2-2.2.41/po/it.po 2022-12-09 08:48:34.000000000 +0000 @@ -5,7 +5,7 @@ msgstr "" "Project-Id-Version: GNU gnupg 2.2.23\n" "Report-Msgid-Bugs-To: translations@gnupg.org\n" -"POT-Creation-Date: 2022-10-10 11:58+0200\n" +"POT-Creation-Date: 2022-12-09 09:48+0100\n" "PO-Revision-Date: 2021-05-19 00:03+0200\n" "Last-Translator: Denis \n" "Language-Team: \n" @@ -225,20 +225,20 @@ msgid "ssh keys greater than %d bits are not supported\n" msgstr "le chiavi ssh maggiori di %d bit non sono supportate\n" -#: agent/command-ssh.c:862 common/dotlock.c:856 g10/card-util.c:947 -#: g10/exec.c:554 g10/export.c:1320 g10/gpg.c:1400 g10/keygen.c:4998 +#: agent/command-ssh.c:862 common/dotlock.c:856 g10/card-util.c:946 +#: g10/exec.c:554 g10/export.c:1335 g10/gpg.c:1409 g10/keygen.c:5052 #: g10/keyring.c:1322 g10/keyring.c:1637 g10/openfile.c:291 g10/sign.c:1008 #: g10/sign.c:1322 g10/tdbio.c:753 #, c-format msgid "can't create '%s': %s\n" msgstr "impossibile creare '%s': %s\n" -#: agent/command-ssh.c:874 common/helpfile.c:57 g10/card-util.c:904 +#: agent/command-ssh.c:874 common/helpfile.c:57 g10/card-util.c:903 #: g10/dearmor.c:59 g10/dearmor.c:106 g10/decrypt.c:65 g10/decrypt.c:136 -#: g10/decrypt.c:153 g10/encrypt.c:239 g10/encrypt.c:678 g10/gpg.c:1401 -#: g10/import.c:364 g10/import.c:548 g10/import.c:776 g10/keygen.c:4036 +#: g10/decrypt.c:153 g10/encrypt.c:239 g10/encrypt.c:678 g10/gpg.c:1410 +#: g10/import.c:365 g10/import.c:549 g10/import.c:777 g10/keygen.c:4090 #: g10/keyring.c:1663 g10/openfile.c:195 g10/openfile.c:209 g10/plaintext.c:128 -#: g10/plaintext.c:649 g10/sign.c:990 g10/sign.c:1201 g10/sign.c:1306 +#: g10/plaintext.c:654 g10/sign.c:990 g10/sign.c:1201 g10/sign.c:1306 #: g10/sign.c:1451 g10/tdbdump.c:145 g10/tdbdump.c:153 g10/tdbio.c:758 #: g10/tdbio.c:829 g10/verify.c:96 g10/verify.c:160 sm/gpgsm.c:2160 #: sm/gpgsm.c:2190 sm/gpgsm.c:2228 sm/qualified.c:66 dirmngr/certcache.c:420 @@ -465,33 +465,33 @@ msgid "csh-style command output" msgstr "uscita del comando in csh-stile" -#: agent/gpg-agent.c:185 g10/gpg.c:579 scd/scdaemon.c:126 sm/gpgsm.c:410 +#: agent/gpg-agent.c:185 g10/gpg.c:580 scd/scdaemon.c:126 sm/gpgsm.c:410 #: dirmngr/dirmngr.c:192 msgid "|FILE|read options from FILE" msgstr "|FILE|opzioni di lettura da FILE" -#: agent/gpg-agent.c:189 g10/gpg.c:566 scd/scdaemon.c:130 sm/gpgsm.c:259 +#: agent/gpg-agent.c:189 g10/gpg.c:567 scd/scdaemon.c:130 sm/gpgsm.c:259 #: dirmngr/dirmngr.c:196 msgid "Options controlling the diagnostic output" msgstr "Opzioni che controllano l'output diagnostico" -#: agent/gpg-agent.c:191 g10/gpg.c:568 g10/gpgv.c:78 kbx/kbxutil.c:88 +#: agent/gpg-agent.c:191 g10/gpg.c:569 g10/gpgv.c:78 kbx/kbxutil.c:88 #: scd/scdaemon.c:132 sm/gpgsm.c:261 dirmngr/dirmngr-client.c:70 #: dirmngr/dirmngr.c:198 tools/gpg-connect-agent.c:78 tools/gpgconf.c:110 msgid "verbose" msgstr "prolisso" -#: agent/gpg-agent.c:192 g10/gpg.c:570 g10/gpgv.c:79 kbx/kbxutil.c:89 +#: agent/gpg-agent.c:192 g10/gpg.c:571 g10/gpgv.c:79 kbx/kbxutil.c:89 #: scd/scdaemon.c:133 sm/gpgsm.c:263 dirmngr/dirmngr-client.c:71 #: dirmngr/dirmngr.c:199 msgid "be somewhat more quiet" msgstr "meno prolisso" -#: agent/gpg-agent.c:200 g10/gpg.c:583 sm/gpgsm.c:276 dirmngr/dirmngr.c:209 +#: agent/gpg-agent.c:200 g10/gpg.c:584 sm/gpgsm.c:276 dirmngr/dirmngr.c:209 msgid "|FILE|write server mode logs to FILE" msgstr "|FILE|scrittura dei registri in modalità server in FILE" -#: agent/gpg-agent.c:204 g10/gpg.c:589 scd/scdaemon.c:147 sm/gpgsm.c:283 +#: agent/gpg-agent.c:204 g10/gpg.c:590 scd/scdaemon.c:147 sm/gpgsm.c:283 #: dirmngr/dirmngr.c:213 msgid "Options controlling the configuration" msgstr "Opzioni che controllano la configurazione" @@ -528,7 +528,7 @@ msgid "enable putty support" msgstr "abilitare il supporto putty" -#: agent/gpg-agent.c:237 g10/gpg.c:831 scd/scdaemon.c:175 sm/gpgsm.c:369 +#: agent/gpg-agent.c:237 g10/gpg.c:832 scd/scdaemon.c:175 sm/gpgsm.c:369 msgid "Options controlling the security" msgstr "Opzioni che controllano la sicurezza" @@ -627,7 +627,7 @@ #. reporting address. This is so that we can change the #. reporting address without breaking the translations. #: agent/gpg-agent.c:563 agent/preset-passphrase.c:100 agent/protect-tool.c:155 -#: g10/gpg.c:1108 g10/gpgv.c:149 kbx/kbxutil.c:113 scd/scdaemon.c:313 +#: g10/gpg.c:1117 g10/gpgv.c:149 kbx/kbxutil.c:113 scd/scdaemon.c:313 #: sm/gpgsm.c:600 dirmngr/dirmngr-client.c:168 dirmngr/dirmngr.c:458 #: tools/gpg-connect-agent.c:205 tools/gpgconf.c:154 #: tools/gpg-check-pattern.c:143 @@ -646,26 +646,26 @@ "Sintassi: @GPG_AGENT@ [opzioni] [comando [args]]\n" "Gestione delle chiavi segrete per @GNUPG@\n" -#: agent/gpg-agent.c:619 g10/gpg.c:1304 scd/scdaemon.c:385 sm/gpgsm.c:748 +#: agent/gpg-agent.c:619 g10/gpg.c:1313 scd/scdaemon.c:385 sm/gpgsm.c:748 #: dirmngr/dirmngr.c:542 #, c-format msgid "invalid debug-level '%s' given\n" msgstr "'%s' a livello di debug non valido specificato\n" -#: agent/gpg-agent.c:988 g10/gpg.c:3810 g10/gpg.c:3834 sm/gpgsm.c:1585 +#: agent/gpg-agent.c:988 g10/gpg.c:3830 g10/gpg.c:3854 sm/gpgsm.c:1585 #: sm/gpgsm.c:1591 #, c-format msgid "selected digest algorithm is invalid\n" msgstr "l'algoritmo di digest selezionato non è valido\n" #: agent/gpg-agent.c:1216 agent/gpg-agent.c:2029 common/argparse.c:1766 -#: common/argparse.c:1858 g10/gpg.c:2517 scd/scdaemon.c:547 sm/gpgsm.c:1007 +#: common/argparse.c:1858 g10/gpg.c:2526 scd/scdaemon.c:547 sm/gpgsm.c:1007 #: dirmngr/dirmngr.c:1081 dirmngr/dirmngr.c:1937 #, c-format msgid "reading options from '%s'\n" msgstr "opzioni di lettura da '%s'\n" -#: agent/gpg-agent.c:1332 g10/gpg.c:3751 scd/scdaemon.c:671 sm/gpgsm.c:1522 +#: agent/gpg-agent.c:1332 g10/gpg.c:3769 scd/scdaemon.c:671 sm/gpgsm.c:1522 #: dirmngr/dirmngr.c:1190 tools/gpg-connect-agent.c:1244 tools/gpgconf.c:677 #, c-format msgid "Note: '%s' is not considered an option\n" @@ -795,7 +795,7 @@ "Sintassi: gpg-preset-passphrase [opzioni] KEYGRIP\n" "Manutenzione della cache delle password\n" -#: agent/protect-tool.c:108 g10/gpg.c:441 kbx/kbxutil.c:71 sm/gpgsm.c:210 +#: agent/protect-tool.c:108 g10/gpg.c:442 kbx/kbxutil.c:71 sm/gpgsm.c:210 #: dirmngr/dirmngr.c:171 tools/gpgconf.c:80 msgid "" "@Commands:\n" @@ -1028,7 +1028,7 @@ msgid "secret key parts are not available\n" msgstr "parti della chiave segreta non sono disponibili\n" -#: agent/cvt-openpgp.c:344 g10/card-util.c:1556 +#: agent/cvt-openpgp.c:344 g10/card-util.c:1555 #, c-format msgid "public key algorithm %d (%s) is not supported\n" msgstr "l'algoritmo a chiave pubblica %d (%s) non è supportato\n" @@ -1184,7 +1184,7 @@ msgid "out of core while allocating %lu bytes" msgstr "fuori dal core durante l'allocazione di %lu byte" -#: common/miscellaneous.c:115 g10/card-util.c:911 tools/no-libgcrypt.c:30 +#: common/miscellaneous.c:115 g10/card-util.c:910 tools/no-libgcrypt.c:30 #, c-format msgid "error allocating enough memory: %s\n" msgstr "errore durante l'allocazione di memoria sufficiente: %s\n" @@ -1297,7 +1297,7 @@ msgstr "algoritmo: %s" #: common/audit.c:774 common/audit.c:776 common/audit.c:921 common/audit.c:923 -#: scd/app-openpgp.c:3557 +#: scd/app-openpgp.c:3566 #, c-format msgid "unsupported algorithm: %s" msgstr "algoritmo non supportato: %s" @@ -1372,11 +1372,11 @@ msgid "Root certificate trustworthy" msgstr "Certificato radice attendibile" -#: common/audit.c:1112 sm/certchain.c:1235 +#: common/audit.c:1112 sm/certchain.c:1236 msgid "no CRL found for certificate" msgstr "nessun CRL trovato per il certificato" -#: common/audit.c:1115 sm/certchain.c:1245 +#: common/audit.c:1115 sm/certchain.c:1246 msgid "the available CRL is too old" msgstr "il CRL disponibile è troppo vecchio" @@ -1505,7 +1505,7 @@ msgid "missing argument for option \"%.50s\"\n" msgstr "argomento mancante per l'opzione \"%.50s\"\n" -#: common/argparse.c:558 g10/gpg.c:3525 +#: common/argparse.c:558 g10/gpg.c:3543 #, c-format msgid "invalid argument for option \"%.50s\"\n" msgstr "argomento non valido per l'opzione \"%.50s\"\n" @@ -1604,92 +1604,92 @@ msgid "%s is too old (need %s, have %s)\n" msgstr "%s è troppo vecchio (è necessario %s, con %s)\n" -#: g10/armor.c:423 +#: g10/armor.c:424 #, c-format msgid "armor: %s\n" msgstr "armatura: %s\n" -#: g10/armor.c:462 +#: g10/armor.c:463 #, c-format msgid "invalid armor header: " msgstr "header dell'armatura non valido: " -#: g10/armor.c:473 +#: g10/armor.c:474 #, c-format msgid "armor header: " msgstr "header dell'armatura: " -#: g10/armor.c:486 +#: g10/armor.c:487 #, c-format msgid "invalid clearsig header\n" msgstr "header della firma in chiaro non valido\n" -#: g10/armor.c:499 +#: g10/armor.c:500 #, c-format msgid "unknown armor header: " msgstr "intestazione armatura sconosciuta: " -#: g10/armor.c:552 +#: g10/armor.c:553 #, c-format msgid "nested clear text signatures\n" msgstr "firme in chiaro annidate\n" -#: g10/armor.c:687 +#: g10/armor.c:688 #, c-format msgid "unexpected armor: " msgstr "armatura inaspettata: " -#: g10/armor.c:700 +#: g10/armor.c:701 #, c-format msgid "invalid dash escaped line: " msgstr "riga protetta con il trattino non valida: " -#: g10/armor.c:872 g10/armor.c:1492 +#: g10/armor.c:873 g10/armor.c:1493 #, c-format msgid "invalid radix64 character %02X skipped\n" msgstr "carattere radix64 non valido %02x ignorato\n" -#: g10/armor.c:915 +#: g10/armor.c:916 #, c-format msgid "premature eof (no CRC)\n" msgstr "eof prematura (nessun CRC)\n" -#: g10/armor.c:949 +#: g10/armor.c:950 #, c-format msgid "premature eof (in CRC)\n" msgstr "eof prematura (nel CRC)\n" -#: g10/armor.c:957 +#: g10/armor.c:958 #, c-format msgid "malformed CRC\n" msgstr "CRC malformato\n" -#: g10/armor.c:961 g10/armor.c:1529 +#: g10/armor.c:962 g10/armor.c:1530 #, c-format msgid "CRC error; %06lX - %06lX\n" msgstr "Errore CRC; %06lX - %06lX\n" -#: g10/armor.c:981 +#: g10/armor.c:982 #, c-format msgid "premature eof (in trailer)\n" msgstr "eof prematuro (nel rimorchio)\n" -#: g10/armor.c:985 +#: g10/armor.c:986 #, c-format msgid "error in trailer line\n" msgstr "errore nella riga della coda\n" -#: g10/armor.c:1305 +#: g10/armor.c:1306 #, c-format msgid "no valid OpenPGP data found.\n" msgstr "non sono stati trovati dati OpenPGP validi.\n" -#: g10/armor.c:1310 +#: g10/armor.c:1311 #, c-format msgid "invalid armor: line longer than %d characters\n" msgstr "armatura non valida: linea più lunga di %d caratteri\n" -#: g10/armor.c:1314 +#: g10/armor.c:1315 #, c-format msgid "" "quoted printable character in armor - probably a buggy MTA has been used\n" @@ -1827,23 +1827,23 @@ msgid "server uses an invalid certificate" msgstr "server utilizza un certificato non valido" -#: g10/call-dirmngr.c:462 g10/gpg.c:4458 +#: g10/call-dirmngr.c:462 g10/gpg.c:4478 #, c-format msgid "Note: %s\n" msgstr "Nota: %s\n" -#: g10/card-util.c:86 g10/card-util.c:366 g10/card-util.c:1918 +#: g10/card-util.c:86 g10/card-util.c:366 g10/card-util.c:1917 #, c-format msgid "OpenPGP card not available: %s\n" msgstr "Scheda OpenPGP non disponibile: %s\n" -#: g10/card-util.c:91 g10/card-util.c:1924 +#: g10/card-util.c:91 g10/card-util.c:1923 #, c-format msgid "OpenPGP card no. %s detected\n" msgstr "Scheda OpenPGP n. %s rilevata\n" -#: g10/card-util.c:97 g10/card-util.c:2253 g10/delkey.c:160 g10/keyedit.c:1423 -#: g10/keygen.c:4466 g10/revoke.c:214 g10/revoke.c:636 +#: g10/card-util.c:97 g10/card-util.c:2252 g10/delkey.c:160 g10/keyedit.c:1423 +#: g10/keygen.c:4520 g10/revoke.c:214 g10/revoke.c:636 #, c-format msgid "can't do this in batch mode\n" msgstr "impossibile eseguire questa operazione in modalità batch\n" @@ -1853,14 +1853,14 @@ msgid "This command is only available for version 2 cards\n" msgstr "Questo comando è disponibile solo per le schede della versione 2\n" -#: g10/card-util.c:107 scd/app-openpgp.c:2866 +#: g10/card-util.c:107 scd/app-openpgp.c:2869 #, c-format msgid "Reset Code not or not anymore available\n" msgstr "Reimposta codice non più disponibile o meno\n" -#: g10/card-util.c:140 g10/card-util.c:1442 g10/card-util.c:1704 -#: g10/card-util.c:1796 g10/keyedit.c:394 g10/keyedit.c:415 g10/keyedit.c:429 -#: g10/keygen.c:1808 g10/keygen.c:1980 g10/keygen.c:2186 g10/keygen.c:2477 +#: g10/card-util.c:140 g10/card-util.c:1441 g10/card-util.c:1703 +#: g10/card-util.c:1795 g10/keyedit.c:394 g10/keyedit.c:415 g10/keyedit.c:429 +#: g10/keygen.c:1862 g10/keygen.c:2034 g10/keygen.c:2240 g10/keygen.c:2531 #: sm/certreqgen-ui.c:165 sm/certreqgen-ui.c:291 sm/certreqgen-ui.c:325 msgid "Your selection? " msgstr "Cosa scegli? " @@ -1910,80 +1910,80 @@ msgid "Error: Combined name too long (limit is %d characters).\n" msgstr "Errore: nome combinato troppo lungo (limite è di %d caratteri).\n" -#: g10/card-util.c:826 +#: g10/card-util.c:825 msgid "URL to retrieve public key: " msgstr "URL per recuperare la chiave pubblica: " -#: g10/card-util.c:920 g10/decrypt-data.c:509 g10/import.c:399 g10/import.c:746 -#: g10/import.c:798 dirmngr/crlcache.c:655 dirmngr/crlcache.c:660 +#: g10/card-util.c:919 g10/decrypt-data.c:509 g10/import.c:400 g10/import.c:747 +#: g10/import.c:799 dirmngr/crlcache.c:655 dirmngr/crlcache.c:660 #: dirmngr/crlcache.c:914 dirmngr/crlcache.c:920 dirmngr/dirmngr.c:1748 #: tools/gpgconf.c:483 tools/gpgconf.c:529 #, c-format msgid "error reading '%s': %s\n" msgstr "errore durante la lettura di '%s': %s\n" -#: g10/card-util.c:953 g10/decrypt-data.c:512 g10/export.c:2467 +#: g10/card-util.c:952 g10/decrypt-data.c:512 g10/export.c:2586 #: dirmngr/crlcache.c:925 #, c-format msgid "error writing '%s': %s\n" msgstr "errore durante la scrittura di '%s': %s\n" -#: g10/card-util.c:980 +#: g10/card-util.c:979 msgid "Login data (account name): " msgstr "Dati di accesso (nome account): " -#: g10/card-util.c:1018 +#: g10/card-util.c:1017 msgid "Private DO data: " msgstr "Dati DO privati: " -#: g10/card-util.c:1103 +#: g10/card-util.c:1102 msgid "Language preferences: " msgstr "Preferenze lingua: " -#: g10/card-util.c:1111 +#: g10/card-util.c:1110 msgid "Error: invalid length of preference string.\n" msgstr "Errore: lunghezza della stringa di preferenza non valida.\n" -#: g10/card-util.c:1120 +#: g10/card-util.c:1119 msgid "Error: invalid characters in preference string.\n" msgstr "Errore: caratteri non validi nella stringa di preferenza.\n" -#: g10/card-util.c:1142 +#: g10/card-util.c:1141 msgid "Salutation (M = Mr., F = Ms., or space): " msgstr "Salutazione (M - Mr., F - Ms., o spazio): " -#: g10/card-util.c:1156 +#: g10/card-util.c:1155 msgid "Error: invalid response.\n" msgstr "|FPR|Risposta OCSP firmata da FPR\n" -#: g10/card-util.c:1178 +#: g10/card-util.c:1177 msgid "CA fingerprint: " msgstr "Impronta digitale CA: " -#: g10/card-util.c:1201 +#: g10/card-util.c:1200 msgid "Error: invalid formatted fingerprint.\n" msgstr "Errore: impronta digitale formattata non valida.\n" -#: g10/card-util.c:1252 +#: g10/card-util.c:1251 #, c-format msgid "key operation not possible: %s\n" msgstr "operazione chiave non possibile: %s\n" -#: g10/card-util.c:1253 +#: g10/card-util.c:1252 msgid "not an OpenPGP card" msgstr "non una scheda OpenPGP" -#: g10/card-util.c:1266 g10/keygen.c:4486 g10/keygen.c:5562 +#: g10/card-util.c:1265 g10/keygen.c:4540 g10/keygen.c:5616 #, c-format msgid "error getting current key info: %s\n" msgstr "" "errore durante il recupero delle informazioni sulla chiave corrente: %s\n" -#: g10/card-util.c:1351 +#: g10/card-util.c:1350 msgid "Replace existing key? (y/N) " msgstr "Sostituire la chiave esistente? (y/N) " -#: g10/card-util.c:1368 +#: g10/card-util.c:1367 msgid "" "Note: There is no guarantee that the card supports the requested size.\n" " If the key generation does not succeed, please check the\n" @@ -1995,102 +1995,102 @@ " documentazione della carta per vedere quali dimensioni sono " "consentite.\n" -#: g10/card-util.c:1390 g10/keygen.c:2363 sm/certreqgen-ui.c:179 +#: g10/card-util.c:1389 g10/keygen.c:2417 sm/certreqgen-ui.c:179 #, c-format msgid "What keysize do you want? (%u) " msgstr "Che chiave vuoi? (%u) " -#: g10/card-util.c:1400 g10/keygen.c:2286 g10/keygen.c:2318 +#: g10/card-util.c:1399 g10/keygen.c:2340 g10/keygen.c:2372 #: sm/certreqgen-ui.c:194 #, c-format msgid "rounded up to %u bits\n" msgstr "arrotondate a %u bit\n" -#: g10/card-util.c:1408 g10/keygen.c:2371 sm/certreqgen-ui.c:184 +#: g10/card-util.c:1407 g10/keygen.c:2425 sm/certreqgen-ui.c:184 #, c-format msgid "%s keysizes must be in the range %u-%u\n" msgstr "%s keysizes deve essere compreso nell'intervallo %u-%u\n" -#: g10/card-util.c:1427 +#: g10/card-util.c:1426 msgid "Changing card key attribute for: " msgstr "Modifica dell'attributo chiave della scheda per: " -#: g10/card-util.c:1429 +#: g10/card-util.c:1428 msgid "Signature key\n" msgstr "Chiave di firma\n" -#: g10/card-util.c:1431 +#: g10/card-util.c:1430 msgid "Encryption key\n" msgstr "Chiave di crittografia\n" -#: g10/card-util.c:1433 +#: g10/card-util.c:1432 msgid "Authentication key\n" msgstr "Chiave di autenticazione\n" -#: g10/card-util.c:1435 g10/keygen.c:1926 sm/certreqgen-ui.c:157 +#: g10/card-util.c:1434 g10/keygen.c:1980 sm/certreqgen-ui.c:157 msgid "Please select what kind of key you want:\n" msgstr "Per favore scegli che tipo di chiave vuoi:\n" -#: g10/card-util.c:1436 sm/certreqgen-ui.c:158 +#: g10/card-util.c:1435 sm/certreqgen-ui.c:158 #, c-format msgid " (%d) RSA\n" msgstr " (%d) RSA\n" -#: g10/card-util.c:1437 +#: g10/card-util.c:1436 #, c-format msgid " (%d) ECC\n" msgstr " (%d) ECC\n" -#: g10/card-util.c:1449 g10/card-util.c:1716 g10/card-util.c:1816 -#: g10/keyedit.c:900 g10/keygen.c:1834 g10/keygen.c:1862 g10/keygen.c:1987 -#: g10/keygen.c:2222 g10/keygen.c:2505 g10/revoke.c:838 +#: g10/card-util.c:1448 g10/card-util.c:1715 g10/card-util.c:1815 +#: g10/keyedit.c:900 g10/keygen.c:1888 g10/keygen.c:1916 g10/keygen.c:2041 +#: g10/keygen.c:2276 g10/keygen.c:2559 g10/revoke.c:838 msgid "Invalid selection.\n" msgstr "Scelta non valida.\n" -#: g10/card-util.c:1522 +#: g10/card-util.c:1521 #, c-format msgid "The card will now be re-configured to generate a key of %u bits\n" msgstr "" "La scheda verrà ora configurata nuovamente per generare una chiave di %u " "bit\n" -#: g10/card-util.c:1527 +#: g10/card-util.c:1526 #, c-format msgid "The card will now be re-configured to generate a key of type: %s\n" msgstr "" "La scheda verrà ora configurata nuovamente per generare una chiave di tipo: " "%s\n" -#: g10/card-util.c:1563 +#: g10/card-util.c:1562 #, c-format msgid "error changing key attribute for key %d: %s\n" msgstr "" "errore durante la modifica dell'attributo chiave per la chiave %d: %s\n" -#: g10/card-util.c:1579 g10/card-util.c:2106 +#: g10/card-util.c:1578 g10/card-util.c:2105 #, c-format msgid "error getting card info: %s\n" msgstr "errore durante il recupero delle informazioni sulla scheda: %s\n" -#: g10/card-util.c:1585 g10/card-util.c:1930 g10/card-util.c:2112 +#: g10/card-util.c:1584 g10/card-util.c:1929 g10/card-util.c:2111 #, c-format msgid "This command is not supported by this card\n" msgstr "Questo comando non è supportato da questa scheda\n" -#: g10/card-util.c:1631 +#: g10/card-util.c:1630 msgid "Make off-card backup of encryption key? (Y/n) " msgstr "Eseguire il backup off-card della chiave di crittografia? (Y/n) " -#: g10/card-util.c:1645 +#: g10/card-util.c:1644 #, c-format msgid "Note: keys are already stored on the card!\n" msgstr "Nota: le chiavi sono già memorizzate sulla scheda!\n" -#: g10/card-util.c:1648 +#: g10/card-util.c:1647 msgid "Replace existing keys? (y/N) " msgstr "Sostituire le chiavi esistenti? (y/N) " -#: g10/card-util.c:1660 +#: g10/card-util.c:1659 #, c-format msgid "" "Please note that the factory settings of the PINs are\n" @@ -2101,143 +2101,143 @@ " PIN : '%s' PIN di amministrazione = '%s'\n" "È necessario modificarli utilizzando il comando --change-pin\n" -#: g10/card-util.c:1695 +#: g10/card-util.c:1694 msgid "Please select the type of key to generate:\n" msgstr "Selezionare il tipo di chiave da generare:\n" -#: g10/card-util.c:1697 g10/card-util.c:1787 +#: g10/card-util.c:1696 g10/card-util.c:1786 msgid " (1) Signature key\n" msgstr " (1) Chiave di firma\n" -#: g10/card-util.c:1698 g10/card-util.c:1789 +#: g10/card-util.c:1697 g10/card-util.c:1788 msgid " (2) Encryption key\n" msgstr " (2) Chiave di crittografia\n" -#: g10/card-util.c:1699 g10/card-util.c:1791 +#: g10/card-util.c:1698 g10/card-util.c:1790 msgid " (3) Authentication key\n" msgstr " (3) Chiave di autenticazione\n" -#: g10/card-util.c:1784 +#: g10/card-util.c:1783 msgid "Please select where to store the key:\n" msgstr "Si prega di selezionare dove memorizzare la chiave:\n" -#: g10/card-util.c:1830 +#: g10/card-util.c:1829 #, c-format msgid "KEYTOCARD failed: %s\n" msgstr "KEYTOCARD non riuscito: %s\n" -#: g10/card-util.c:1935 +#: g10/card-util.c:1934 #, c-format msgid "Note: This command destroys all keys stored on the card!\n" msgstr "" "Nota: Questo comando distrugge tutti i tasti memorizzati sulla scheda!\n" -#: g10/card-util.c:1938 +#: g10/card-util.c:1937 msgid "Continue? (y/N) " msgstr "Continuare? (Y/n) " -#: g10/card-util.c:1943 +#: g10/card-util.c:1942 msgid "Really do a factory reset? (enter \"yes\") " msgstr "Fare davvero un reset di fabbrica? (immettere \"sì\") " -#: g10/card-util.c:2129 +#: g10/card-util.c:2128 #, c-format msgid "error for setup KDF: %s\n" msgstr "errore per l'installazione KDF: %s\n" -#: g10/card-util.c:2158 g10/keyedit.c:1260 +#: g10/card-util.c:2157 g10/keyedit.c:1260 msgid "quit this menu" msgstr "abbandona questo menù" -#: g10/card-util.c:2160 +#: g10/card-util.c:2159 msgid "show admin commands" msgstr "mostra comandi di amministrazione" -#: g10/card-util.c:2161 g10/keyedit.c:1263 +#: g10/card-util.c:2160 g10/keyedit.c:1263 msgid "show this help" msgstr "mostra questo aiuto" -#: g10/card-util.c:2163 +#: g10/card-util.c:2162 msgid "list all available data" msgstr "elencare tutti i dati disponibili" -#: g10/card-util.c:2166 +#: g10/card-util.c:2165 msgid "change card holder's name" msgstr "cambiare il nome del titolare della carta" -#: g10/card-util.c:2167 +#: g10/card-util.c:2166 msgid "change URL to retrieve key" msgstr "modificare l'URL per recuperare la chiave" -#: g10/card-util.c:2168 +#: g10/card-util.c:2167 msgid "fetch the key specified in the card URL" msgstr "recuperare la chiave specificata nell'URL della scheda" -#: g10/card-util.c:2169 +#: g10/card-util.c:2168 msgid "change the login name" msgstr "modificare il nome di accesso" -#: g10/card-util.c:2170 +#: g10/card-util.c:2169 msgid "change the language preferences" msgstr "modificare le preferenze della lingua" -#: g10/card-util.c:2171 +#: g10/card-util.c:2170 msgid "change card holder's salutation" msgstr "cambiare il saluto del titolare della carta" -#: g10/card-util.c:2173 +#: g10/card-util.c:2172 msgid "change a CA fingerprint" msgstr "modificare un'impronta digitale CA" -#: g10/card-util.c:2174 +#: g10/card-util.c:2173 msgid "toggle the signature force PIN flag" msgstr "attivare/disattivare il flag PIN di forza della firma" -#: g10/card-util.c:2175 +#: g10/card-util.c:2174 msgid "generate new keys" msgstr "genera nuove chiavi" -#: g10/card-util.c:2176 +#: g10/card-util.c:2175 msgid "menu to change or unblock the PIN" msgstr "per modificare o sbloccare il PIN" -#: g10/card-util.c:2177 +#: g10/card-util.c:2176 msgid "verify the PIN and list all data" msgstr "verificare il PIN ed elencare tutti i dati" -#: g10/card-util.c:2178 +#: g10/card-util.c:2177 msgid "unblock the PIN using a Reset Code" msgstr "sbloccare il PIN utilizzando un codice di ripristino" -#: g10/card-util.c:2179 +#: g10/card-util.c:2178 msgid "destroy all keys and data" msgstr "distruggere tutte le chiavi e i dati" -#: g10/card-util.c:2180 +#: g10/card-util.c:2179 msgid "setup KDF for PIN authentication" msgstr "configurazione KDF per l'autenticazione PIN" -#: g10/card-util.c:2181 +#: g10/card-util.c:2180 msgid "change the key attribute" msgstr "modificare l'attributo chiave" -#: g10/card-util.c:2305 +#: g10/card-util.c:2304 msgid "gpg/card> " msgstr "gpg/card> " -#: g10/card-util.c:2346 +#: g10/card-util.c:2345 msgid "Admin-only command\n" msgstr "Comando solo amministratore\n" -#: g10/card-util.c:2377 +#: g10/card-util.c:2376 msgid "Admin commands are allowed\n" msgstr "I comandi di amministrazione sono consentiti\n" -#: g10/card-util.c:2379 +#: g10/card-util.c:2378 msgid "Admin commands are not allowed\n" msgstr "I comandi di amministrazione non sono consentiti\n" -#: g10/card-util.c:2482 g10/keyedit.c:2229 +#: g10/card-util.c:2481 g10/keyedit.c:2229 msgid "Invalid command (try \"help\")\n" msgstr "Comando non valido (prova \"help\")\n" @@ -2246,21 +2246,21 @@ msgid "--output doesn't work for this command\n" msgstr "--output non funziona con questo comando\n" -#: g10/decrypt.c:247 g10/gpg.c:5155 g10/keyring.c:399 g10/keyring.c:750 +#: g10/decrypt.c:247 g10/gpg.c:5175 g10/keyring.c:399 g10/keyring.c:750 #, c-format msgid "can't open '%s'\n" msgstr "impossibile aprire '%s'\n" -#: g10/delkey.c:83 g10/export.c:1947 g10/export.c:2230 g10/export.c:2351 -#: g10/getkey.c:2108 g10/gpg.c:5100 g10/keyedit.c:1445 g10/keyedit.c:2335 +#: g10/delkey.c:83 g10/export.c:2035 g10/export.c:2349 g10/export.c:2470 +#: g10/getkey.c:2108 g10/gpg.c:5120 g10/keyedit.c:1445 g10/keyedit.c:2335 #: g10/keyedit.c:2637 g10/keyedit.c:4600 g10/keylist.c:693 g10/keyserver.c:1092 #: g10/revoke.c:230 g10/tofu.c:2165 #, c-format msgid "key \"%s\" not found: %s\n" msgstr "chiave \"%s\" non trovata: %s\n" -#: g10/delkey.c:92 g10/export.c:2015 g10/getkey.c:2116 g10/getkey.c:4517 -#: g10/gpg.c:5109 g10/keyedit.c:2308 g10/keyserver.c:1110 g10/revoke.c:236 +#: g10/delkey.c:92 g10/export.c:2103 g10/getkey.c:2116 g10/getkey.c:4517 +#: g10/gpg.c:5129 g10/keyedit.c:2308 g10/keyserver.c:1110 g10/revoke.c:236 #: g10/revoke.c:663 g10/tofu.c:2173 #, c-format msgid "error reading keyblock: %s\n" @@ -2384,14 +2384,14 @@ msgid "WARNING: '%s' is an empty file\n" msgstr "AVVISO: '%s' è un file vuoto\n" -#: g10/encrypt.c:446 g10/encrypt.c:521 g10/decrypt-data.c:266 g10/gpg.c:3959 -#: g10/gpg.c:3999 sm/decrypt.c:826 sm/encrypt.c:416 sm/gpgsm.c:1609 +#: g10/encrypt.c:446 g10/encrypt.c:521 g10/decrypt-data.c:266 g10/gpg.c:3979 +#: g10/gpg.c:4019 sm/decrypt.c:826 sm/encrypt.c:416 sm/gpgsm.c:1609 #, c-format msgid "cipher algorithm '%s' may not be used in %s mode\n" msgstr "" "l'algoritmo di crittografia '%s' non può essere utilizzato in modalità %s\n" -#: g10/encrypt.c:455 g10/gpg.c:3965 g10/gpg.c:4011 g10/sig-check.c:175 +#: g10/encrypt.c:455 g10/gpg.c:3985 g10/gpg.c:4031 g10/sig-check.c:175 #: g10/sign.c:391 sm/gpgsm.c:1619 sm/gpgsm.c:1629 sm/sign.c:478 sm/verify.c:506 #, c-format msgid "digest algorithm '%s' may not be used in %s mode\n" @@ -2509,61 +2509,67 @@ msgid "WARNING: unable to remove temp directory '%s': %s\n" msgstr "AVVISO: impossibile rimuovere la directory temporanea '%s': %s\n" -#: g10/export.c:119 +#: g10/export.c:124 msgid "export signatures that are marked as local-only" msgstr "esportare firme contrassegnate come solo locali" -#: g10/export.c:121 +#: g10/export.c:126 msgid "export attribute user IDs (generally photo IDs)" msgstr "esportare gli ID utente degli attributi (in genere gli ID foto)" -#: g10/export.c:123 +#: g10/export.c:128 msgid "export revocation keys marked as \"sensitive\"" msgstr "esportare le chiavi di revoca contrassegnate come \"sensibili\"" -#: g10/export.c:125 +#: g10/export.c:130 msgid "remove unusable parts from key during export" msgstr "rimuovere parti inutilizzabili dalla chiave durante l'esportazione" -#: g10/export.c:127 +#: g10/export.c:132 msgid "remove as much as possible from key during export" msgstr "rimuovere il più possibile dalla chiave durante l'esportazione" -#: g10/export.c:133 +#: g10/export.c:138 +#, fuzzy +#| msgid "generate a revocation certificate" +msgid "export only revocation certificates" +msgstr "genera un certificato di revoca" + +#: g10/export.c:141 msgid "use the GnuPG key backup format" msgstr "utilizzare il formato di backup della chiave GnuPG" -#: g10/export.c:1291 +#: g10/export.c:1306 msgid " - skipped" msgstr " - saltato" -#: g10/export.c:1324 g10/import.c:2085 g10/openfile.c:200 g10/openfile.c:294 +#: g10/export.c:1339 g10/import.c:2089 g10/openfile.c:200 g10/openfile.c:294 #: g10/sign.c:1012 g10/sign.c:1326 #, c-format msgid "writing to '%s'\n" msgstr "scrittura in '%s'\n" -#: g10/export.c:1769 +#: g10/export.c:1784 #, c-format msgid "key %s: key material on-card - skipped\n" msgstr "chiave %s: materiale della chiave su scheda - ignorato\n" -#: g10/export.c:1964 +#: g10/export.c:2052 #, c-format msgid "exporting secret keys not allowed\n" msgstr "esportazione di chiavi segrete non consentita\n" -#: g10/export.c:2041 +#: g10/export.c:2129 #, c-format msgid "key %s: PGP 2.x style key - skipped\n" msgstr "chiave %s: chiave di stile PGP 2.x - ignorata\n" -#: g10/export.c:2135 +#: g10/export.c:2254 #, c-format msgid "WARNING: nothing exported\n" msgstr "ATTENZIONE: non è stato esportato nulla\n" -#: g10/export.c:2432 g10/plaintext.c:153 g10/plaintext.c:162 +#: g10/export.c:2551 g10/plaintext.c:153 g10/plaintext.c:162 #: g10/plaintext.c:168 g10/plaintext.c:191 #, c-format msgid "error creating '%s': %s\n" @@ -2628,282 +2634,282 @@ msgid "using subkey %s instead of primary key %s\n" msgstr "utilizzando la sottochiave %s anziché la chiave primaria %s\n" -#: g10/getkey.c:4446 g10/gpg.c:2137 +#: g10/getkey.c:4446 g10/gpg.c:2146 #, c-format msgid "valid values for option '%s':\n" msgstr "valori validi per l'opzione '%s':\n" -#: g10/gpg.c:443 sm/gpgsm.c:212 +#: g10/gpg.c:444 sm/gpgsm.c:212 msgid "make a signature" msgstr "fare una firma" -#: g10/gpg.c:444 +#: g10/gpg.c:445 msgid "make a clear text signature" msgstr "creare una firma di testo non crittografato" -#: g10/gpg.c:446 sm/gpgsm.c:214 +#: g10/gpg.c:447 sm/gpgsm.c:214 msgid "make a detached signature" msgstr "fai una firma separata" -#: g10/gpg.c:447 sm/gpgsm.c:215 +#: g10/gpg.c:448 sm/gpgsm.c:215 msgid "encrypt data" msgstr "cifra dati" -#: g10/gpg.c:449 +#: g10/gpg.c:450 msgid "encryption only with symmetric cipher" msgstr "cifra solo con un cifrario simmetrico" -#: g10/gpg.c:451 sm/gpgsm.c:217 +#: g10/gpg.c:452 sm/gpgsm.c:217 msgid "decrypt data (default)" msgstr "decifra dati (predefinito)" -#: g10/gpg.c:453 sm/gpgsm.c:218 +#: g10/gpg.c:454 sm/gpgsm.c:218 msgid "verify a signature" msgstr "verifica una firma" -#: g10/gpg.c:455 sm/gpgsm.c:219 +#: g10/gpg.c:456 sm/gpgsm.c:219 msgid "list keys" msgstr "elenca le chiavi" -#: g10/gpg.c:457 +#: g10/gpg.c:458 msgid "list keys and signatures" msgstr "elenca le chiavi e le firme" -#: g10/gpg.c:460 +#: g10/gpg.c:461 msgid "list and check key signatures" msgstr "elencare e controllare le firme delle chiavi" -#: g10/gpg.c:462 sm/gpgsm.c:224 +#: g10/gpg.c:463 sm/gpgsm.c:224 msgid "list keys and fingerprints" msgstr "elenca le chiavi e le impronte digitali" -#: g10/gpg.c:463 sm/gpgsm.c:222 +#: g10/gpg.c:464 sm/gpgsm.c:222 msgid "list secret keys" msgstr "elenca le chiavi segrete" -#: g10/gpg.c:465 sm/gpgsm.c:225 +#: g10/gpg.c:466 sm/gpgsm.c:225 msgid "generate a new key pair" msgstr "genera una nuova coppia di chiavi" -#: g10/gpg.c:468 +#: g10/gpg.c:469 msgid "quickly generate a new key pair" msgstr "generare rapidamente una nuova coppia di chiavi" -#: g10/gpg.c:471 +#: g10/gpg.c:472 msgid "quickly add a new user-id" msgstr "aggiungere rapidamente un nuovo id utente" -#: g10/gpg.c:476 +#: g10/gpg.c:477 msgid "quickly revoke a user-id" msgstr "revocare rapidamente un id utente" -#: g10/gpg.c:479 +#: g10/gpg.c:480 msgid "quickly set a new expiration date" msgstr "impostare rapidamente una nuova data di scadenza" -#: g10/gpg.c:482 +#: g10/gpg.c:483 msgid "full featured key pair generation" msgstr "generazione completa della coppia di chiavi in primo piano" -#: g10/gpg.c:485 +#: g10/gpg.c:486 msgid "generate a revocation certificate" msgstr "genera un certificato di revoca" -#: g10/gpg.c:488 sm/gpgsm.c:228 +#: g10/gpg.c:489 sm/gpgsm.c:228 msgid "remove keys from the public keyring" msgstr "rimuove le chiavi dal portachiavi pubblico" -#: g10/gpg.c:490 +#: g10/gpg.c:491 msgid "remove keys from the secret keyring" msgstr "rimuove le chiavi dal portachiavi privato" -#: g10/gpg.c:492 +#: g10/gpg.c:493 msgid "quickly sign a key" msgstr "firmare rapidamente un tasto" -#: g10/gpg.c:494 +#: g10/gpg.c:495 msgid "quickly sign a key locally" msgstr "firmare rapidamente una chiave localmente" -#: g10/gpg.c:496 +#: g10/gpg.c:497 #, fuzzy #| msgid "quickly revoke a user-id" msgid "quickly revoke a key signature" msgstr "revocare rapidamente un id utente" -#: g10/gpg.c:497 +#: g10/gpg.c:498 msgid "sign a key" msgstr "firma una chiave" -#: g10/gpg.c:498 +#: g10/gpg.c:499 msgid "sign a key locally" msgstr "firma una chiave localmente" -#: g10/gpg.c:499 +#: g10/gpg.c:500 msgid "sign or edit a key" msgstr "firma o modifica una chiave" -#: g10/gpg.c:501 sm/gpgsm.c:246 +#: g10/gpg.c:502 sm/gpgsm.c:246 msgid "change a passphrase" msgstr "cambia la passphrase" -#: g10/gpg.c:505 +#: g10/gpg.c:506 msgid "export keys" msgstr "esporta delle chiavi" -#: g10/gpg.c:506 +#: g10/gpg.c:507 msgid "export keys to a keyserver" msgstr "esporta le chiavi a un keyserver" -#: g10/gpg.c:507 +#: g10/gpg.c:508 msgid "import keys from a keyserver" msgstr "importa le chiavi da un keyserver" -#: g10/gpg.c:510 +#: g10/gpg.c:511 msgid "search for keys on a keyserver" msgstr "cerca delle chiavi su un keyserver" -#: g10/gpg.c:512 +#: g10/gpg.c:513 msgid "update all keys from a keyserver" msgstr "aggiorna tutte le chiavi da un keyserver" -#: g10/gpg.c:520 +#: g10/gpg.c:521 msgid "import/merge keys" msgstr "importa/aggiungi delle chiavi" -#: g10/gpg.c:523 +#: g10/gpg.c:524 msgid "print the card status" msgstr "stampare lo stato della scheda" -#: g10/gpg.c:524 +#: g10/gpg.c:525 msgid "change data on a card" msgstr "modificare i dati su una scheda" -#: g10/gpg.c:526 +#: g10/gpg.c:527 msgid "change a card's PIN" msgstr "modificare il PIN di una carta" -#: g10/gpg.c:538 +#: g10/gpg.c:539 msgid "update the trust database" msgstr "aggiorna il database della fiducia" -#: g10/gpg.c:548 +#: g10/gpg.c:549 msgid "print message digests" msgstr "stampare digest dei messaggi" -#: g10/gpg.c:552 sm/gpgsm.c:241 +#: g10/gpg.c:553 sm/gpgsm.c:241 msgid "run in server mode" msgstr "eseguire in modalità server" -#: g10/gpg.c:554 +#: g10/gpg.c:555 msgid "|VALUE|set the TOFU policy for a key" msgstr "|VALORE|impostare il criterio TOFU per una chiave" -#: g10/gpg.c:594 +#: g10/gpg.c:595 msgid "|NAME|use NAME as default secret key" msgstr "|NAME|usa NAME come chiave segreta predefinita" -#: g10/gpg.c:596 sm/gpgsm.c:332 +#: g10/gpg.c:597 sm/gpgsm.c:332 msgid "|NAME|encrypt to user ID NAME as well" msgstr "Anche nome-crittografare all'ID utente NOME" -#: g10/gpg.c:604 +#: g10/gpg.c:605 msgid "|SPEC|set up email aliases" msgstr "|SPEC|configurare gli alias di posta elettronica" -#: g10/gpg.c:616 +#: g10/gpg.c:617 msgid "use strict OpenPGP behavior" msgstr "utilizzare un comportamento OpenPGP rigoroso" -#: g10/gpg.c:641 kbx/kbxutil.c:90 sm/gpgsm.c:412 tools/gpgconf.c:112 +#: g10/gpg.c:642 kbx/kbxutil.c:90 sm/gpgsm.c:412 tools/gpgconf.c:112 msgid "do not make any changes" msgstr "non fa cambiamenti" -#: g10/gpg.c:642 +#: g10/gpg.c:643 msgid "prompt before overwriting" msgstr "chiede prima di sovrascrivere" -#: g10/gpg.c:689 sm/gpgsm.c:304 +#: g10/gpg.c:690 sm/gpgsm.c:304 #, fuzzy #| msgid "Options controlling the security" msgid "Options controlling the input" msgstr "Opzioni che controllano la sicurezza" -#: g10/gpg.c:707 sm/gpgsm.c:314 +#: g10/gpg.c:708 sm/gpgsm.c:314 #, fuzzy #| msgid "Options controlling the diagnostic output" msgid "Options controlling the output" msgstr "Opzioni che controllano l'output diagnostico" -#: g10/gpg.c:709 sm/gpgsm.c:316 +#: g10/gpg.c:710 sm/gpgsm.c:316 msgid "create ascii armored output" msgstr "crea un output ascii con armatura" -#: g10/gpg.c:713 g10/gpgv.c:82 sm/gpgsm.c:321 +#: g10/gpg.c:714 g10/gpgv.c:82 sm/gpgsm.c:321 msgid "|FILE|write output to FILE" msgstr "|FILE|scrittura dell'output in FILE" -#: g10/gpg.c:726 +#: g10/gpg.c:727 msgid "use canonical text mode" msgstr "usa il modo testo canonico" -#: g10/gpg.c:743 +#: g10/gpg.c:744 msgid "|N|set compress level to N (0 disables)" msgstr "|N|Impostare il livello di compressione su N (0 disabilita)" -#: g10/gpg.c:750 sm/gpgsm.c:347 +#: g10/gpg.c:751 sm/gpgsm.c:347 #, fuzzy #| msgid "Options controlling the interactivity and enforcement" msgid "Options controlling key import and export" msgstr "Opzioni che controllano l'interattività e l'applicazione" -#: g10/gpg.c:753 +#: g10/gpg.c:754 msgid "|MECHANISMS|use MECHANISMS to locate keys by mail address" msgstr "" "|MECHANISMS|utilizzare MECHANISMS per individuare le chiavi in base " "all'indirizzo di posta elettronica" -#: g10/gpg.c:756 +#: g10/gpg.c:757 msgid "import missing key from a signature" msgstr "importare la chiave mancante da una firma" -#: g10/gpg.c:761 +#: g10/gpg.c:762 msgid "include the public key in signatures" msgstr "includere la chiave pubblica nelle firme" -#: g10/gpg.c:764 sm/gpgsm.c:350 +#: g10/gpg.c:765 sm/gpgsm.c:350 msgid "disable all access to the dirmngr" msgstr "disabilitare tutti gli accessi al dirmngr" -#: g10/gpg.c:776 sm/gpgsm.c:357 +#: g10/gpg.c:777 sm/gpgsm.c:357 #, fuzzy #| msgid "Options controlling the configuration" msgid "Options controlling key listings" msgstr "Opzioni che controllano la configurazione" -#: g10/gpg.c:805 sm/gpgsm.c:324 +#: g10/gpg.c:806 sm/gpgsm.c:324 #, fuzzy #| msgid "list secret keys" msgid "Options to specify keys" msgstr "elenca le chiavi segrete" -#: g10/gpg.c:807 sm/gpgsm.c:326 +#: g10/gpg.c:808 sm/gpgsm.c:326 msgid "|USER-ID|encrypt for USER-ID" msgstr "|USER-ID|encrypt per USER-ID" -#: g10/gpg.c:815 sm/gpgsm.c:328 +#: g10/gpg.c:816 sm/gpgsm.c:328 msgid "|USER-ID|use USER-ID to sign or decrypt" msgstr "|USER-ID|utilizzare USER-ID per firmare o decrittografare" -#: g10/gpg.c:866 sm/gpgsm.c:396 +#: g10/gpg.c:867 sm/gpgsm.c:396 msgid "Options for unattended use" msgstr "" -#: g10/gpg.c:885 sm/gpgsm.c:408 dirmngr/dirmngr.c:294 +#: g10/gpg.c:886 sm/gpgsm.c:408 dirmngr/dirmngr.c:294 msgid "Other options" msgstr "" -#: g10/gpg.c:953 sm/gpgsm.c:440 +#: g10/gpg.c:955 sm/gpgsm.c:440 msgid "" "@\n" "(See the man page for a complete listing of all commands and options)\n" @@ -2911,7 +2917,7 @@ "@\n" "(Vedi la man page per una lista completa di tutti i comandi e opzioni)\n" -#: g10/gpg.c:956 +#: g10/gpg.c:958 msgid "" "@\n" "Examples:\n" @@ -2931,11 +2937,11 @@ " --list-keys [nomi] mostra le chiavi\n" " --fingerprint [nomi] mostra le impronte digitali\n" -#: g10/gpg.c:1130 +#: g10/gpg.c:1139 msgid "Usage: @GPG@ [options] [files] (-h for help)" msgstr "Utilizzo: @GPG@ [opzioni] [file] (-h per assistenza)" -#: g10/gpg.c:1133 +#: g10/gpg.c:1142 msgid "" "Syntax: @GPG@ [options] [files]\n" "Sign, check, encrypt or decrypt\n" @@ -2945,7 +2951,7 @@ "Firmare, controllare, crittografare o decrittografare\n" "Il funzionamento predefinito dipende dai dati di input\n" -#: g10/gpg.c:1144 sm/gpgsm.c:624 +#: g10/gpg.c:1153 sm/gpgsm.c:624 msgid "" "\n" "Supported algorithms:\n" @@ -2953,73 +2959,73 @@ "\n" "Algoritmi gestiti:\n" -#: g10/gpg.c:1147 +#: g10/gpg.c:1156 msgid "Pubkey: " msgstr "A chiave pubblica: " -#: g10/gpg.c:1154 g10/keyedit.c:3338 +#: g10/gpg.c:1163 g10/keyedit.c:3338 msgid "Cipher: " msgstr "Cifrari: " -#: g10/gpg.c:1161 +#: g10/gpg.c:1170 msgid "Hash: " msgstr "Hash: " -#: g10/gpg.c:1168 g10/keyedit.c:3404 +#: g10/gpg.c:1177 g10/keyedit.c:3404 msgid "Compression: " msgstr "Compressione: " -#: g10/gpg.c:1241 sm/gpgsm.c:698 +#: g10/gpg.c:1250 sm/gpgsm.c:698 #, c-format msgid "usage: %s [options] %s\n" msgstr "utilizzo: %s [opzioni] %s\n" -#: g10/gpg.c:1436 sm/gpgsm.c:791 +#: g10/gpg.c:1445 sm/gpgsm.c:791 #, c-format msgid "conflicting commands\n" msgstr "comandi in conflitto\n" -#: g10/gpg.c:1454 +#: g10/gpg.c:1463 #, c-format msgid "no = sign found in group definition '%s'\n" msgstr "nessun segno = trovato nella definizione di gruppo '%s'\n" -#: g10/gpg.c:1652 +#: g10/gpg.c:1661 #, c-format msgid "WARNING: unsafe ownership on homedir '%s'\n" msgstr "AVVISO: proprietà non sicura su homedir '%s'\n" -#: g10/gpg.c:1655 +#: g10/gpg.c:1664 #, c-format msgid "WARNING: unsafe ownership on configuration file '%s'\n" msgstr "AVVISO: proprietà non sicura nel file di configurazione '%s'\n" -#: g10/gpg.c:1658 +#: g10/gpg.c:1667 #, c-format msgid "WARNING: unsafe ownership on extension '%s'\n" msgstr "AVVISO: proprietà non sicura nell'estensione '%s'\n" -#: g10/gpg.c:1664 +#: g10/gpg.c:1673 #, c-format msgid "WARNING: unsafe permissions on homedir '%s'\n" msgstr "AVVISO: proprietà non sicura su homedir '%s'\n" -#: g10/gpg.c:1667 +#: g10/gpg.c:1676 #, c-format msgid "WARNING: unsafe permissions on configuration file '%s'\n" msgstr "AVVISO: autorizzazioni non sicure per il file di configurazione '%s'\n" -#: g10/gpg.c:1670 +#: g10/gpg.c:1679 #, c-format msgid "WARNING: unsafe permissions on extension '%s'\n" msgstr "AVVISO: autorizzazioni non sicure per l'estensione '%s'\n" -#: g10/gpg.c:1676 +#: g10/gpg.c:1685 #, c-format msgid "WARNING: unsafe enclosing directory ownership on homedir '%s'\n" msgstr "AVVISO: proprietà non sicura su homedir '%s'\n" -#: g10/gpg.c:1679 +#: g10/gpg.c:1688 #, c-format msgid "" "WARNING: unsafe enclosing directory ownership on configuration file '%s'\n" @@ -3027,21 +3033,21 @@ "AVVISO: proprietà della directory di inclusione non sicura nel file di " "configurazione '%s'\n" -#: g10/gpg.c:1682 +#: g10/gpg.c:1691 #, c-format msgid "WARNING: unsafe enclosing directory ownership on extension '%s'\n" msgstr "" "AVVISO: proprietà della directory di inclusione non sicura nell'estensione " "'%s'\n" -#: g10/gpg.c:1688 +#: g10/gpg.c:1697 #, c-format msgid "WARNING: unsafe enclosing directory permissions on homedir '%s'\n" msgstr "" "AVVISO: autorizzazioni della directory di inclusione non sicure nella " "directory homedir '%s'\n" -#: g10/gpg.c:1691 +#: g10/gpg.c:1700 #, c-format msgid "" "WARNING: unsafe enclosing directory permissions on configuration file '%s'\n" @@ -3049,463 +3055,463 @@ "AVVISO: autorizzazioni della directory di inclusione non sicure nella " "directory homedir '%s'\n" -#: g10/gpg.c:1694 +#: g10/gpg.c:1703 #, c-format msgid "WARNING: unsafe enclosing directory permissions on extension '%s'\n" msgstr "" "AVVISO: autorizzazioni della directory di inclusione non sicure per " "l'estensione '%s'\n" -#: g10/gpg.c:1910 +#: g10/gpg.c:1919 #, c-format msgid "unknown configuration item '%s'\n" msgstr "elemento di configurazione sconosciuto '%s'\n" -#: g10/gpg.c:2009 +#: g10/gpg.c:2018 msgid "display photo IDs during key listings" msgstr "visualizzare gli ID foto durante le elenchi dei tasti" -#: g10/gpg.c:2011 +#: g10/gpg.c:2020 msgid "show key usage information during key listings" msgstr "" "mostra le informazioni sull'utilizzo delle chiavi durante le inserzioni " "chiave" -#: g10/gpg.c:2013 +#: g10/gpg.c:2022 msgid "show policy URLs during signature listings" msgstr "mostra URL dei criteri durante gli elenchi delle firme" -#: g10/gpg.c:2015 +#: g10/gpg.c:2024 msgid "show all notations during signature listings" msgstr "mostra tutte le notazioni durante gli elenchi delle firme" -#: g10/gpg.c:2017 +#: g10/gpg.c:2026 msgid "show IETF standard notations during signature listings" msgstr "mostra notazioni standard IETF durante gli elenchi delle firme" -#: g10/gpg.c:2021 +#: g10/gpg.c:2030 msgid "show user-supplied notations during signature listings" msgstr "" "mostra le notazioni fornite dall'utente durante gli elenchi delle firme" -#: g10/gpg.c:2023 +#: g10/gpg.c:2032 msgid "show preferred keyserver URLs during signature listings" msgstr "mostra gli URL preferiti del keyserver durante gli elenchi delle firme" -#: g10/gpg.c:2025 +#: g10/gpg.c:2034 msgid "show user ID validity during key listings" msgstr "mostra validità ID utente durante le inserzioni chiave" -#: g10/gpg.c:2027 +#: g10/gpg.c:2036 msgid "show revoked and expired user IDs in key listings" msgstr "mostra ID utente revocati e scaduti negli elenchi di chiavi" -#: g10/gpg.c:2029 +#: g10/gpg.c:2038 msgid "show revoked and expired subkeys in key listings" msgstr "mostra sottochiavi revocate e scadute negli elenchi di chiavi" -#: g10/gpg.c:2031 +#: g10/gpg.c:2040 msgid "show the keyring name in key listings" msgstr "mostrare il nome del keyring negli elenchi delle chiavi" -#: g10/gpg.c:2033 +#: g10/gpg.c:2042 msgid "show expiration dates during signature listings" msgstr "mostra date di scadenza durante le inserzioni delle firme" -#: g10/gpg.c:2148 +#: g10/gpg.c:2157 #, c-format msgid "unknown TOFU policy '%s'\n" msgstr "criterio TOFU sconosciuto '%s'\n" -#: g10/gpg.c:2150 +#: g10/gpg.c:2159 #, c-format msgid "(use \"help\" to list choices)\n" msgstr "(utilizzare \"help\" per elencare le scelte)\n" -#: g10/gpg.c:2240 g10/keyedit.c:1719 +#: g10/gpg.c:2249 g10/keyedit.c:1719 #, c-format msgid "This command is not allowed while in %s mode.\n" msgstr "Questo comando non è permesso in modalità %s.\n" -#: g10/gpg.c:2878 g10/gpg.c:3718 g10/gpg.c:3730 +#: g10/gpg.c:2896 g10/gpg.c:3736 g10/gpg.c:3748 #, c-format msgid "Note: %s is not for normal use!\n" msgstr "Nota: %s non è per uso normale!\n" -#: g10/gpg.c:3053 g10/gpg.c:3065 +#: g10/gpg.c:3071 g10/gpg.c:3083 #, c-format msgid "'%s' is not a valid signature expiration\n" msgstr "'%s' non è una scadenza di firma valida\n" -#: g10/gpg.c:3087 +#: g10/gpg.c:3105 #, c-format msgid "\"%s\" is not a proper mail address\n" msgstr "\"%s\" non è un indirizzo di posta elettronica corretto\n" -#: g10/gpg.c:3119 sm/gpgsm.c:1121 +#: g10/gpg.c:3137 sm/gpgsm.c:1121 #, c-format msgid "invalid pinentry mode '%s'\n" msgstr "modalità pinentry non valida '%s'\n" -#: g10/gpg.c:3125 sm/gpgsm.c:1127 +#: g10/gpg.c:3143 sm/gpgsm.c:1127 #, c-format msgid "invalid request origin '%s'\n" msgstr "origine richiesta non valida '%s'\n" -#: g10/gpg.c:3179 +#: g10/gpg.c:3197 #, c-format msgid "'%s' is not a valid character set\n" msgstr "'%s' non è un set di caratteri valido\n" -#: g10/gpg.c:3201 g10/gpg.c:3415 g10/keyedit.c:5338 +#: g10/gpg.c:3219 g10/gpg.c:3433 g10/keyedit.c:5338 #, c-format msgid "could not parse keyserver URL\n" msgstr "impossibile analizzare l'URL del server dei chiavi\n" -#: g10/gpg.c:3219 +#: g10/gpg.c:3237 #, c-format msgid "%s:%d: invalid keyserver options\n" msgstr "%s:%d: opzioni keyserver non valide\n" -#: g10/gpg.c:3222 +#: g10/gpg.c:3240 #, c-format msgid "invalid keyserver options\n" msgstr "opzioni keyserver non valide\n" -#: g10/gpg.c:3229 +#: g10/gpg.c:3247 #, c-format msgid "%s:%d: invalid import options\n" msgstr "%s:%d: opzioni di importazione non valide\n" -#: g10/gpg.c:3232 +#: g10/gpg.c:3250 #, c-format msgid "invalid import options\n" msgstr "opzioni di importazione non valide\n" -#: g10/gpg.c:3238 g10/gpg.c:3253 +#: g10/gpg.c:3256 g10/gpg.c:3271 #, c-format msgid "invalid filter option: %s\n" msgstr "opzione di filtro non valida: %s\n" -#: g10/gpg.c:3244 +#: g10/gpg.c:3262 #, c-format msgid "%s:%d: invalid export options\n" msgstr "%s:%d: opzioni di esportazione non valide\n" -#: g10/gpg.c:3247 +#: g10/gpg.c:3265 #, c-format msgid "invalid export options\n" msgstr "opzioni di esportazione non valide\n" -#: g10/gpg.c:3259 +#: g10/gpg.c:3277 #, c-format msgid "%s:%d: invalid list options\n" msgstr "%s:%d: opzioni di elenco non valide\n" -#: g10/gpg.c:3262 +#: g10/gpg.c:3280 #, c-format msgid "invalid list options\n" msgstr "opzioni di elenco non valide\n" -#: g10/gpg.c:3270 +#: g10/gpg.c:3288 msgid "display photo IDs during signature verification" msgstr "visualizzare gli ID foto durante la verifica della firma" -#: g10/gpg.c:3272 +#: g10/gpg.c:3290 msgid "show policy URLs during signature verification" msgstr "mostra URL dei criteri durante la verifica della firma" -#: g10/gpg.c:3274 +#: g10/gpg.c:3292 msgid "show all notations during signature verification" msgstr "mostra tutte le notazioni durante la verifica della firma" -#: g10/gpg.c:3276 +#: g10/gpg.c:3294 msgid "show IETF standard notations during signature verification" msgstr "mostra notazioni standard IETF durante la verifica della firma" -#: g10/gpg.c:3280 +#: g10/gpg.c:3298 msgid "show user-supplied notations during signature verification" msgstr "" "mostra le notazioni fornite dall'utente durante la verifica della firma" -#: g10/gpg.c:3282 +#: g10/gpg.c:3300 msgid "show preferred keyserver URLs during signature verification" msgstr "mostra gli URL preferiti del keyserver durante la verifica della firma" -#: g10/gpg.c:3284 +#: g10/gpg.c:3302 msgid "show user ID validity during signature verification" msgstr "mostra validità DELL'ID utente durante la verifica della firma" -#: g10/gpg.c:3286 +#: g10/gpg.c:3304 msgid "show revoked and expired user IDs in signature verification" msgstr "mostra ID utente revocati e scaduti nella verifica della firma" -#: g10/gpg.c:3288 +#: g10/gpg.c:3306 msgid "show only the primary user ID in signature verification" msgstr "mostra solo l'ID utente primario nella verifica della firma" -#: g10/gpg.c:3290 +#: g10/gpg.c:3308 msgid "validate signatures with PKA data" msgstr "convalidare le firme con i dati PKA" -#: g10/gpg.c:3292 +#: g10/gpg.c:3310 msgid "elevate the trust of signatures with valid PKA data" msgstr "elevare la fiducia delle firme con dati PKA validi" -#: g10/gpg.c:3299 +#: g10/gpg.c:3317 #, c-format msgid "%s:%d: invalid verify options\n" msgstr "%s:%d: opzioni di verifica non valide\n" -#: g10/gpg.c:3302 +#: g10/gpg.c:3320 #, c-format msgid "invalid verify options\n" msgstr "opzioni di verifica non valide\n" -#: g10/gpg.c:3309 +#: g10/gpg.c:3327 #, c-format msgid "unable to set exec-path to %s\n" msgstr "impossibile impostare exec-path a %s\n" -#: g10/gpg.c:3513 +#: g10/gpg.c:3531 #, c-format msgid "%s:%d: invalid auto-key-locate list\n" msgstr "%s:%d: elenco di individuazione automatica della chiave non valido\n" -#: g10/gpg.c:3516 +#: g10/gpg.c:3534 #, c-format msgid "invalid auto-key-locate list\n" msgstr "elenco di individuazione automatica delle chiavi non valido\n" -#: g10/gpg.c:3700 sm/gpgsm.c:1492 +#: g10/gpg.c:3718 sm/gpgsm.c:1492 #, c-format msgid "WARNING: program may create a core file!\n" msgstr "ATTENZIONE: il programma potrebbe creare un file core!\n" -#: g10/gpg.c:3711 +#: g10/gpg.c:3729 #, c-format msgid "WARNING: %s overrides %s\n" msgstr "ATTENZIONE: %s ha la precedenza su %s\n" -#: g10/gpg.c:3720 +#: g10/gpg.c:3738 #, c-format msgid "%s not allowed with %s!\n" msgstr "Non è permesso usare %s con %s!\n" -#: g10/gpg.c:3723 +#: g10/gpg.c:3741 #, c-format msgid "%s makes no sense with %s!\n" msgstr "Non ha senso usare %s con %s!\n" -#: g10/gpg.c:3738 sm/gpgsm.c:1509 dirmngr/dirmngr.c:1205 +#: g10/gpg.c:3756 sm/gpgsm.c:1509 dirmngr/dirmngr.c:1205 #, c-format msgid "WARNING: running with faked system time: " msgstr "AVVISO: in esecuzione con l'ora di sistema falso: " -#: g10/gpg.c:3759 +#: g10/gpg.c:3777 #, c-format msgid "will not run with insecure memory due to %s\n" msgstr "non verrà eseguito con memoria non protetta a causa di %s\n" -#: g10/gpg.c:3804 g10/gpg.c:3828 sm/gpgsm.c:1579 +#: g10/gpg.c:3824 g10/gpg.c:3848 sm/gpgsm.c:1579 #, c-format msgid "selected cipher algorithm is invalid\n" msgstr "l'algoritmo di cifratura selezionato non è valido\n" -#: g10/gpg.c:3816 +#: g10/gpg.c:3836 #, c-format msgid "selected compression algorithm is invalid\n" msgstr "algoritmo di compressione selezionato non valido\n" -#: g10/gpg.c:3822 +#: g10/gpg.c:3842 #, c-format msgid "selected certification digest algorithm is invalid\n" msgstr "l'algoritmo di digest selezionato non è valido\n" -#: g10/gpg.c:3837 +#: g10/gpg.c:3857 #, c-format msgid "completes-needed must be greater than 0\n" msgstr "completes-needed deve essere maggiore di 0\n" -#: g10/gpg.c:3839 +#: g10/gpg.c:3859 #, c-format msgid "marginals-needed must be greater than 1\n" msgstr "marginals-needed deve essere maggiore di 1\n" -#: g10/gpg.c:3841 +#: g10/gpg.c:3861 #, c-format msgid "max-cert-depth must be in the range from 1 to 255\n" msgstr "max-cert-depth deve essere compreso tra 1 e 255\n" -#: g10/gpg.c:3843 +#: g10/gpg.c:3863 #, c-format msgid "invalid default-cert-level; must be 0, 1, 2, or 3\n" msgstr "default-cert-level non valido; deve essere 0, 1, 2 o 3\n" -#: g10/gpg.c:3845 +#: g10/gpg.c:3865 #, c-format msgid "invalid min-cert-level; must be 1, 2, or 3\n" msgstr "min-cert-level non valido; deve essere 1, 2 o 3\n" -#: g10/gpg.c:3849 +#: g10/gpg.c:3869 #, c-format msgid "Note: simple S2K mode (0) is strongly discouraged\n" msgstr "Nota: la modalità S2K semplice (0) è fortemente sconsigliata\n" -#: g10/gpg.c:3853 +#: g10/gpg.c:3873 #, c-format msgid "invalid S2K mode; must be 0, 1 or 3\n" msgstr "modo S2K non valido; deve essere 0, 1 o 3\n" -#: g10/gpg.c:3860 +#: g10/gpg.c:3880 #, c-format msgid "invalid default preferences\n" msgstr "preferenze predefinite non valide\n" -#: g10/gpg.c:3864 +#: g10/gpg.c:3884 #, c-format msgid "invalid personal cipher preferences\n" msgstr "preferenze personali del cifrario non valide\n" -#: g10/gpg.c:3868 +#: g10/gpg.c:3888 #, c-format msgid "invalid personal digest preferences\n" msgstr "preferenze personali del digest non valide\n" -#: g10/gpg.c:3872 +#: g10/gpg.c:3892 #, c-format msgid "invalid personal compress preferences\n" msgstr "preferenze personali di compressione non valide\n" -#: g10/gpg.c:3908 +#: g10/gpg.c:3928 #, c-format msgid "%s does not yet work with %s\n" msgstr "%s non funziona ancora con %s\n" -#: g10/gpg.c:3971 +#: g10/gpg.c:3991 #, c-format msgid "compression algorithm '%s' may not be used in %s mode\n" msgstr "" "l'algoritmo di compressione '%s' non può essere utilizzato in modalità %s\n" -#: g10/gpg.c:4115 +#: g10/gpg.c:4135 #, c-format msgid "failed to initialize the TrustDB: %s\n" msgstr "inizializzazione del trustdb fallita: %s\n" -#: g10/gpg.c:4127 +#: g10/gpg.c:4147 #, c-format msgid "WARNING: recipients (-r) given without using public key encryption\n" msgstr "" "ATTENZIONE: sono stati indicati dei destinatari (-r) senza usare la\n" "crittografia a chiave pubblica\n" -#: g10/gpg.c:4199 +#: g10/gpg.c:4219 #, c-format msgid "symmetric encryption of '%s' failed: %s\n" msgstr "crittografia simmetrica di '%s' non riuscita: %s\n" -#: g10/gpg.c:4228 +#: g10/gpg.c:4248 #, c-format msgid "you cannot use --symmetric --encrypt with --s2k-mode 0\n" msgstr "non è possibile utilizzare --symmetric --encrypt con --s2k-mode 0\n" -#: g10/gpg.c:4231 +#: g10/gpg.c:4251 #, c-format msgid "you cannot use --symmetric --encrypt in %s mode\n" msgstr "non è possibile utilizzare --symmetric --encrypt in modalità %s\n" -#: g10/gpg.c:4289 +#: g10/gpg.c:4309 #, c-format msgid "you cannot use --symmetric --sign --encrypt with --s2k-mode 0\n" msgstr "" "non è possibile utilizzare --symmetric --sign --encrypt con --s2k-mode 0\n" -#: g10/gpg.c:4292 +#: g10/gpg.c:4312 #, c-format msgid "you cannot use --symmetric --sign --encrypt in %s mode\n" msgstr "" "non è possibile utilizzare --symmetric --sign --encrypt in modalità %s\n" -#: g10/gpg.c:4692 g10/keyserver.c:1648 +#: g10/gpg.c:4712 g10/keyserver.c:1648 #, c-format msgid "keyserver send failed: %s\n" msgstr "invio al keyserver fallito: %s\n" -#: g10/gpg.c:4697 +#: g10/gpg.c:4717 #, c-format msgid "keyserver receive failed: %s\n" msgstr "ricezione dal keyserver fallita: %s\n" -#: g10/gpg.c:4703 +#: g10/gpg.c:4723 #, c-format msgid "key export failed: %s\n" msgstr "esportazione della chiave fallita: %s\n" -#: g10/gpg.c:4716 +#: g10/gpg.c:4736 #, c-format msgid "export as ssh key failed: %s\n" msgstr "esportazione come chiave ssh non riuscita: %s\n" -#: g10/gpg.c:4728 +#: g10/gpg.c:4748 #, c-format msgid "keyserver search failed: %s\n" msgstr "ricerca nel keyserver fallita: %s\n" -#: g10/gpg.c:4741 +#: g10/gpg.c:4761 #, c-format msgid "keyserver refresh failed: %s\n" msgstr "aggiornamento del keyserver fallito: %s\n" -#: g10/gpg.c:4810 +#: g10/gpg.c:4830 #, c-format msgid "dearmoring failed: %s\n" msgstr "rimozione dell'armatura fallita: %s\n" -#: g10/gpg.c:4821 +#: g10/gpg.c:4841 #, c-format msgid "enarmoring failed: %s\n" msgstr "creazione dell'armatura fallita: %s\n" -#: g10/gpg.c:4913 +#: g10/gpg.c:4933 #, c-format msgid "invalid hash algorithm '%s'\n" msgstr "algoritmo hash non valido '%s'\n" -#: g10/gpg.c:5065 g10/tofu.c:2153 +#: g10/gpg.c:5085 g10/tofu.c:2153 #, c-format msgid "error parsing key specification '%s': %s\n" msgstr "errore durante l'analisi della specifica della chiave '%s': %s\n" -#: g10/gpg.c:5078 +#: g10/gpg.c:5098 #, c-format msgid "'%s' does not appear to be a valid key ID, fingerprint or keygrip\n" msgstr "" "'%s' non sembra essere un ID chiave, un'impronta digitale o un keygrip " "valido\n" -#: g10/gpg.c:5134 +#: g10/gpg.c:5154 #, c-format msgid "WARNING: no command supplied. Trying to guess what you mean ...\n" msgstr "" "AVVISO: nessun comando fornito. Cercando di indovinare cosa vuoi dire ...\n" -#: g10/gpg.c:5145 +#: g10/gpg.c:5165 #, c-format msgid "Go ahead and type your message ...\n" msgstr "Vai avanti e scrivi il messaggio...\n" -#: g10/gpg.c:5490 +#: g10/gpg.c:5510 #, c-format msgid "the given certification policy URL is invalid\n" msgstr "l'URL della politica di certificazione indicato non è valido\n" -#: g10/gpg.c:5492 +#: g10/gpg.c:5512 #, c-format msgid "the given signature policy URL is invalid\n" msgstr "l'URL della politica di firma indicato non è valido\n" -#: g10/gpg.c:5525 +#: g10/gpg.c:5545 #, c-format msgid "the given preferred keyserver URL is invalid\n" msgstr "l'URL del keyserver preferito specificato non è valido\n" @@ -3547,146 +3553,146 @@ msgid "No help available for '%s'" msgstr "Nessuna Guida disponibile per '%s'." -#: g10/import.c:169 +#: g10/import.c:170 msgid "import signatures that are marked as local-only" msgstr "importare firme contrassegnate come solo locali" -#: g10/import.c:172 +#: g10/import.c:173 msgid "repair damage from the pks keyserver during import" msgstr "riparare i danni dal keyserver pks durante l'importazione" -#: g10/import.c:175 +#: g10/import.c:176 msgid "do not clear the ownertrust values during import" msgstr "non cancellare i valori ownertrust durante l'importazione" -#: g10/import.c:178 +#: g10/import.c:179 msgid "do not update the trustdb after import" msgstr "non aggiornare il trustdb dopo l'importazione" -#: g10/import.c:181 +#: g10/import.c:182 msgid "show key during import" msgstr "mostra chiave durante l'importazione" -#: g10/import.c:184 +#: g10/import.c:185 msgid "only accept updates to existing keys" msgstr "accettare solo gli aggiornamenti alle chiavi esistenti" -#: g10/import.c:187 +#: g10/import.c:188 msgid "remove unusable parts from key after import" msgstr "rimuovere le parti inutilizzabili dalla chiave dopo l'importazione" -#: g10/import.c:190 +#: g10/import.c:191 msgid "remove as much as possible from key after import" msgstr "rimuovere il più possibile dalla chiave dopo l'importazione" -#: g10/import.c:193 +#: g10/import.c:194 msgid "ignore key-signatures which are not self-signatures" msgstr "ignorare le firme chiave che non sono auto-firme" -#: g10/import.c:196 +#: g10/import.c:197 msgid "run import filters and export key immediately" msgstr "" "eseguire immediatamente i filtri di importazione e la chiave di esportazione" -#: g10/import.c:199 +#: g10/import.c:200 msgid "assume the GnuPG key backup format" msgstr "assumere il formato di backup della chiave GnuPG" -#: g10/import.c:203 +#: g10/import.c:204 msgid "repair keys on import" msgstr "ripristinare le chiavi all'importazione" -#: g10/import.c:392 g10/import.c:711 +#: g10/import.c:393 g10/import.c:712 #, c-format msgid "skipping block of type %d\n" msgstr "salto un blocco di tipo %d\n" -#: g10/import.c:728 +#: g10/import.c:729 #, c-format msgid "%lu keys processed so far\n" msgstr "%lu chiavi elaborate finora\n" -#: g10/import.c:814 +#: g10/import.c:815 #, c-format msgid "Total number processed: %lu\n" msgstr "Numero totale esaminato: %lu\n" -#: g10/import.c:817 +#: g10/import.c:818 #, c-format msgid " skipped PGP-2 keys: %lu\n" msgstr " Chiavi PGP-2 ignorate: %lu\n" -#: g10/import.c:819 +#: g10/import.c:820 #, c-format msgid " skipped new keys: %lu\n" msgstr " nuove chiavi saltate: %lu\n" -#: g10/import.c:822 +#: g10/import.c:823 #, c-format msgid " w/o user IDs: %lu\n" msgstr " senza user ID: %lu\n" -#: g10/import.c:825 sm/import.c:130 +#: g10/import.c:826 sm/import.c:130 #, c-format msgid " imported: %lu" msgstr " importate: %lu" -#: g10/import.c:829 sm/import.c:134 +#: g10/import.c:830 sm/import.c:134 #, c-format msgid " unchanged: %lu\n" msgstr " non modificate: %lu\n" -#: g10/import.c:831 +#: g10/import.c:832 #, c-format msgid " new user IDs: %lu\n" msgstr " nuovi user ID: %lu\n" -#: g10/import.c:833 +#: g10/import.c:834 #, c-format msgid " new subkeys: %lu\n" msgstr " nuove subchiavi: %lu\n" -#: g10/import.c:835 +#: g10/import.c:836 #, c-format msgid " new signatures: %lu\n" msgstr " nuove firme: %lu\n" -#: g10/import.c:837 +#: g10/import.c:838 #, c-format msgid " new key revocations: %lu\n" msgstr " nuove revoche di chiavi: %lu\n" -#: g10/import.c:839 sm/import.c:136 +#: g10/import.c:840 sm/import.c:136 #, c-format msgid " secret keys read: %lu\n" msgstr " chiavi segrete lette: %lu\n" -#: g10/import.c:841 sm/import.c:138 +#: g10/import.c:842 sm/import.c:138 #, c-format msgid " secret keys imported: %lu\n" msgstr " chiavi segrete importate: %lu\n" -#: g10/import.c:843 sm/import.c:140 +#: g10/import.c:844 sm/import.c:140 #, c-format msgid " secret keys unchanged: %lu\n" msgstr " chiavi segrete non cambiate: %lu\n" -#: g10/import.c:845 sm/import.c:142 +#: g10/import.c:846 sm/import.c:142 #, c-format msgid " not imported: %lu\n" msgstr " importate: %lu\n" -#: g10/import.c:847 +#: g10/import.c:848 #, c-format msgid " signatures cleaned: %lu\n" msgstr " firme pulite: %lu\n" -#: g10/import.c:849 +#: g10/import.c:850 #, c-format msgid " user IDs cleaned: %lu\n" msgstr " ID utente puliti: %lu\n" -#: g10/import.c:1276 +#: g10/import.c:1277 #, c-format msgid "" "WARNING: key %s contains preferences for unavailable\n" @@ -3695,169 +3701,169 @@ "AVVISO: la chiave %s contiene le preferenze per\n" "algoritmi su questi ID utente:\n" -#: g10/import.c:1318 +#: g10/import.c:1319 #, c-format msgid " \"%s\": preference for cipher algorithm %s\n" msgstr " \"%s\": preferenza per l'algoritmo di crittografia %s\n" -#: g10/import.c:1333 +#: g10/import.c:1334 #, c-format msgid " \"%s\": preference for digest algorithm %s\n" msgstr " \"%s\": preferenza per l'algoritmo digest %s\n" -#: g10/import.c:1345 +#: g10/import.c:1346 #, c-format msgid " \"%s\": preference for compression algorithm %s\n" msgstr " \"%s\": preferenza per l'algoritmo di compressione %s\n" -#: g10/import.c:1358 +#: g10/import.c:1359 #, c-format msgid "it is strongly suggested that you update your preferences and\n" msgstr "si consiglia vivamente di aggiornare le preferenze e\n" -#: g10/import.c:1360 +#: g10/import.c:1361 #, c-format msgid "re-distribute this key to avoid potential algorithm mismatch problems\n" msgstr "" "ri-distribuire questa chiave per evitare potenziali problemi di mancata " "corrispondenza dell'algoritmo\n" -#: g10/import.c:1385 +#: g10/import.c:1386 #, c-format msgid "you can update your preferences with: gpg --edit-key %s updpref save\n" msgstr "" "è possibile aggiornare le preferenze con: gpg --edit-key %s updpref save\n" -#: g10/import.c:1899 g10/import.c:3013 +#: g10/import.c:1902 g10/import.c:3028 #, c-format msgid "key %s: no user ID\n" msgstr "chiave %s: nessun ID utente\n" -#: g10/import.c:1905 +#: g10/import.c:1908 #, c-format msgid "key %s: %s\n" msgstr "chiave %s: %s\n" -#: g10/import.c:1906 g10/import.c:2985 +#: g10/import.c:1909 g10/import.c:3000 msgid "rejected by import screener" msgstr "rifiutato dallo screener di importazione" -#: g10/import.c:1950 +#: g10/import.c:1953 #, c-format msgid "key %s: PKS subkey corruption repaired\n" msgstr "chiave %s: danneggiamento della sottochiave PKS riparato\n" -#: g10/import.c:1971 +#: g10/import.c:1974 #, c-format msgid "key %s: accepted non self-signed user ID \"%s\"\n" msgstr "chiave %s: accettato ID utente non autofirmato \"%s\"\n" -#: g10/import.c:1981 g10/import.c:2012 +#: g10/import.c:1985 g10/import.c:2016 #, c-format msgid "key %s: no valid user IDs\n" msgstr "chiave %s: nessun ID utente valido\n" -#: g10/import.c:1983 +#: g10/import.c:1987 #, c-format msgid "this may be caused by a missing self-signature\n" msgstr "questo può essere causato da una autofirma mancante\n" -#: g10/import.c:2062 g10/import.c:3399 +#: g10/import.c:2066 g10/import.c:3415 #, c-format msgid "key %s: public key not found: %s\n" msgstr "chiave %s: chiave pubblica non trovata: %s\n" -#: g10/import.c:2068 +#: g10/import.c:2072 #, c-format msgid "key %s: new key - skipped\n" msgstr "chiave %s: nuova chiave - ignorata\n" -#: g10/import.c:2080 +#: g10/import.c:2084 #, c-format msgid "no writable keyring found: %s\n" msgstr "non è stato trovato un portachiavi scrivibile: %s\n" -#: g10/import.c:2112 g10/import.c:2214 g10/import.c:3476 +#: g10/import.c:2116 g10/import.c:2218 g10/import.c:3492 #, c-format msgid "error writing keyring '%s': %s\n" msgstr "errore durante la scrittura della chiave '%s': %s\n" -#: g10/import.c:2135 +#: g10/import.c:2139 #, c-format msgid "key %s: public key \"%s\" imported\n" msgstr "chiave %s: chiave pubblica \"%s\" importata\n" -#: g10/import.c:2162 +#: g10/import.c:2166 #, c-format msgid "key %s: doesn't match our copy\n" msgstr "chiave %s: non corrisponde alla nostra copia\n" -#: g10/import.c:2230 +#: g10/import.c:2234 #, c-format msgid "key %s: \"%s\" 1 new user ID\n" msgstr "chiave %s: \"%s\" 1 nuovo ID utente\n" -#: g10/import.c:2233 +#: g10/import.c:2237 #, c-format msgid "key %s: \"%s\" %d new user IDs\n" msgstr "chiave %s: \"%s\" %d nuovi ID utente\n" -#: g10/import.c:2236 +#: g10/import.c:2240 #, c-format msgid "key %s: \"%s\" 1 new signature\n" msgstr "chiave %s: \"%s\" 1 nuova firma\n" -#: g10/import.c:2239 +#: g10/import.c:2243 #, c-format msgid "key %s: \"%s\" %d new signatures\n" msgstr "chiave %s: \"%s\" %d nuove firme\n" -#: g10/import.c:2242 +#: g10/import.c:2246 #, c-format msgid "key %s: \"%s\" 1 new subkey\n" msgstr "chiave %s: \"%s\" 1 nuova sottochiave\n" -#: g10/import.c:2245 +#: g10/import.c:2249 #, c-format msgid "key %s: \"%s\" %d new subkeys\n" msgstr "chiave %s: \"%s\" %d nuove sottochiavi\n" -#: g10/import.c:2248 +#: g10/import.c:2252 #, c-format msgid "key %s: \"%s\" %d signature cleaned\n" msgstr "chiave %s: \"%s\" %d firma pulita\n" -#: g10/import.c:2251 +#: g10/import.c:2255 #, c-format msgid "key %s: \"%s\" %d signatures cleaned\n" msgstr "chiave %s: \"%s\" %d firme pulite\n" -#: g10/import.c:2254 +#: g10/import.c:2258 #, c-format msgid "key %s: \"%s\" %d user ID cleaned\n" msgstr "chiave %s: \"%s\" %d ID utente pulito\n" -#: g10/import.c:2257 +#: g10/import.c:2261 #, c-format msgid "key %s: \"%s\" %d user IDs cleaned\n" msgstr "chiave %s: \"%s\" %d ID utente puliti\n" -#: g10/import.c:2293 +#: g10/import.c:2297 #, c-format msgid "key %s: \"%s\" not changed\n" msgstr "chiave %s: \"%s\" non modificata\n" -#: g10/import.c:2652 g10/import.c:2847 +#: g10/import.c:2667 g10/import.c:2862 #, c-format msgid "key %s: secret key imported\n" msgstr "chiave %s: chiave segreta importata\n" -#: g10/import.c:2660 +#: g10/import.c:2675 #, c-format msgid "key %s: secret key already exists\n" msgstr "chiave %s: chiave segreta già esistente\n" -#: g10/import.c:2668 +#: g10/import.c:2683 #, c-format msgid "key %s: error sending to agent: %s\n" msgstr "chiave %s: errore durante l'invio all'agente: %s\n" @@ -3870,198 +3876,198 @@ #. * Instead, user should be suggested to run 'gpg --card-status', #. * then, references to a card will be automatically created #. * again. -#: g10/import.c:2837 +#: g10/import.c:2852 #, c-format msgid "To migrate '%s', with each smartcard, run: %s\n" msgstr "Per eseguire la migrazione di '%s', con ogni smart card: %s\n" -#: g10/import.c:2984 +#: g10/import.c:2999 #, c-format msgid "secret key %s: %s\n" msgstr "chiave segreta %s: %s\n" -#: g10/import.c:3005 g10/import.c:3044 +#: g10/import.c:3020 g10/import.c:3059 #, c-format msgid "importing secret keys not allowed\n" msgstr "importazione di chiavi segrete non consentita\n" -#: g10/import.c:3032 +#: g10/import.c:3047 #, c-format msgid "key %s: secret key with invalid cipher %d - skipped\n" msgstr "chiave %s: chiave segreta con crittografia non valida %d - ignorata\n" -#: g10/import.c:3194 g10/pkclist.c:72 g10/revoke.c:776 +#: g10/import.c:3209 g10/pkclist.c:72 g10/revoke.c:776 msgid "No reason specified" msgstr "Nessuna ragione specificata" -#: g10/import.c:3195 g10/pkclist.c:74 g10/revoke.c:778 +#: g10/import.c:3210 g10/pkclist.c:74 g10/revoke.c:778 msgid "Key is superseded" msgstr "Questa chiave è stata sostituita" -#: g10/import.c:3196 g10/pkclist.c:76 g10/revoke.c:777 +#: g10/import.c:3211 g10/pkclist.c:76 g10/revoke.c:777 msgid "Key has been compromised" msgstr "Questa chiave è stata compromessa" -#: g10/import.c:3197 g10/pkclist.c:78 g10/revoke.c:779 +#: g10/import.c:3212 g10/pkclist.c:78 g10/revoke.c:779 msgid "Key is no longer used" msgstr "La chiave non è più usata" -#: g10/import.c:3198 g10/pkclist.c:80 g10/revoke.c:780 +#: g10/import.c:3213 g10/pkclist.c:80 g10/revoke.c:780 msgid "User ID is no longer valid" msgstr "L'user ID non è più valido" -#: g10/import.c:3323 g10/keylist.c:1258 g10/pkclist.c:84 +#: g10/import.c:3338 g10/keylist.c:1258 g10/pkclist.c:84 #, c-format msgid "reason for revocation: " msgstr "ragione della revoca: " -#: g10/import.c:3342 g10/keylist.c:1277 g10/pkclist.c:100 +#: g10/import.c:3357 g10/keylist.c:1277 g10/pkclist.c:100 #, c-format msgid "revocation comment: " msgstr "commento alla revoca: " -#: g10/import.c:3392 +#: g10/import.c:3408 #, c-format msgid "key %s: no public key - can't apply revocation certificate\n" msgstr "" "chiave %s: nessuna chiave pubblica - impossibile applicare il certificato di " "revoca\n" -#: g10/import.c:3423 +#: g10/import.c:3439 #, c-format msgid "key %s: can't locate original keyblock: %s\n" msgstr "chiave %s: impossibile individuare il blocco di chiave originale: %s\n" -#: g10/import.c:3430 +#: g10/import.c:3446 #, c-format msgid "key %s: can't read original keyblock: %s\n" msgstr "chiave %s: impossibile leggere il keyblock originale: %s\n" -#: g10/import.c:3450 +#: g10/import.c:3466 #, c-format msgid "key %s: invalid revocation certificate: %s - rejected\n" msgstr "chiave %s: certificato di revoca non valido: %s - rifiutato\n" -#: g10/import.c:3485 +#: g10/import.c:3501 #, c-format msgid "key %s: \"%s\" revocation certificate imported\n" msgstr "chiave %s: certificato di revoca \"%s\" importato\n" -#: g10/import.c:3571 +#: g10/import.c:3587 #, c-format msgid "key %s: no user ID for signature\n" msgstr "chiave %s: nessun ID utente per la firma\n" -#: g10/import.c:3588 +#: g10/import.c:3604 #, c-format msgid "key %s: unsupported public key algorithm on user ID \"%s\"\n" msgstr "" "chiave %s: algoritmo a chiave pubblica non supportato sull'ID utente \"%s\"\n" -#: g10/import.c:3590 +#: g10/import.c:3606 #, c-format msgid "key %s: invalid self-signature on user ID \"%s\"\n" msgstr "chiave %s: autode firma non valida sull'ID utente \"%s\"\n" -#: g10/import.c:3607 g10/import.c:3635 g10/import.c:3691 +#: g10/import.c:3623 g10/import.c:3651 g10/import.c:3707 #, c-format msgid "key %s: unsupported public key algorithm\n" msgstr "chiave %s: algoritmo a chiave pubblica non supportato\n" -#: g10/import.c:3608 +#: g10/import.c:3624 #, c-format msgid "key %s: invalid direct key signature\n" msgstr "chiave %s: firma diretta della chiave non valida\n" -#: g10/import.c:3622 +#: g10/import.c:3638 #, c-format msgid "key %s: no subkey for key binding\n" msgstr "chiave %s: nessuna sottochiave per l'associazione della chiave\n" -#: g10/import.c:3637 +#: g10/import.c:3653 #, c-format msgid "key %s: invalid subkey binding\n" msgstr "chiave %s: associazione di sottochiavi non valida\n" -#: g10/import.c:3656 +#: g10/import.c:3672 #, c-format msgid "key %s: removed multiple subkey binding\n" msgstr "chiave %s: rimossa l'associazione di più sottochiavi\n" -#: g10/import.c:3680 +#: g10/import.c:3696 #, c-format msgid "key %s: no subkey for key revocation\n" msgstr "chiave %s: nessuna sottochiave per la revoca della chiave\n" -#: g10/import.c:3693 +#: g10/import.c:3709 #, c-format msgid "key %s: invalid subkey revocation\n" msgstr "chiave %s: revoca della sottochiave non valida\n" -#: g10/import.c:3708 +#: g10/import.c:3724 #, c-format msgid "key %s: removed multiple subkey revocation\n" msgstr "chiave %s: rimossa la revoca di più sottochiavi\n" -#: g10/import.c:3752 +#: g10/import.c:3771 #, c-format msgid "key %s: skipped user ID \"%s\"\n" msgstr "chiave %s: ID utente ignorato \"%s\"\n" -#: g10/import.c:3779 +#: g10/import.c:3798 #, c-format msgid "key %s: skipped subkey\n" msgstr "chiave %s: sottochiave ignorata\n" -#: g10/import.c:3810 +#: g10/import.c:3829 #, c-format msgid "key %s: non exportable signature (class 0x%02X) - skipped\n" msgstr "chiave %s: firma non esportabile (classe 0x%02X) - ignorata\n" -#: g10/import.c:3821 +#: g10/import.c:3840 #, c-format msgid "key %s: revocation certificate at wrong place - skipped\n" msgstr "chiave %s: certificato di revoca nella posizione errata - ignorato\n" -#: g10/import.c:3839 +#: g10/import.c:3868 #, c-format msgid "key %s: invalid revocation certificate: %s - skipped\n" msgstr "chiave %s: certificato di revoca non valido: %s - ignorato\n" -#: g10/import.c:3853 +#: g10/import.c:3892 #, c-format msgid "key %s: subkey signature in wrong place - skipped\n" msgstr "chiave %s: firma della sottochiave nella posizione errata - ignorata\n" -#: g10/import.c:3861 +#: g10/import.c:3900 #, c-format msgid "key %s: unexpected signature class (0x%02X) - skipped\n" msgstr "chiave %s: classe di firma imprevista (0x%02X) - ignorata\n" -#: g10/import.c:4034 +#: g10/import.c:4073 #, c-format msgid "key %s: duplicated user ID detected - merged\n" msgstr "chiave %s: rilevato ID utente duplicato - unito\n" -#: g10/import.c:4099 +#: g10/import.c:4138 #, c-format msgid "WARNING: key %s may be revoked: fetching revocation key %s\n" msgstr "" "AVVISO: la chiave %s può essere revocata: recupero della chiave di revoca " "%s\n" -#: g10/import.c:4115 +#: g10/import.c:4154 #, c-format msgid "WARNING: key %s may be revoked: revocation key %s not present.\n" msgstr "" "AVVISO: la chiave %s può essere revocata: chiave di revoca %s non presente.\n" -#: g10/import.c:4181 +#: g10/import.c:4220 #, c-format msgid "key %s: \"%s\" revocation certificate added\n" msgstr "chiave %s: certificato di revoca \"%s\" aggiunto\n" -#: g10/import.c:4219 +#: g10/import.c:4258 #, c-format msgid "key %s: direct key signature added\n" msgstr "chiave %s: aggiunta firma chiave diretta\n" @@ -4942,7 +4948,7 @@ msgstr "" "Non è possibile aggiungere un ID fotografico a una chiave in stile PGP2.\n" -#: g10/keyedit.c:4293 g10/keygen.c:2899 +#: g10/keyedit.c:4293 g10/keygen.c:2953 msgid "Such a user ID already exists on this key!\n" msgstr "Tale ID utente esiste già in questa chiave!\n" @@ -5227,63 +5233,63 @@ "Visualizzazione dell'ID foto %s della dimensione %ld per la chiave %s (uid " "%d)\n" -#: g10/keygen.c:169 +#: g10/keygen.c:174 #, c-format msgid "invalid value for option '%s'\n" msgstr "valore non valido per l'opzione '%s'\n" -#: g10/keygen.c:322 +#: g10/keygen.c:331 #, c-format msgid "preference '%s' duplicated\n" msgstr "preferenza '%s' duplicata\n" -#: g10/keygen.c:329 +#: g10/keygen.c:338 #, c-format msgid "too many cipher preferences\n" msgstr "troppe preferenze di cifratura\n" -#: g10/keygen.c:331 +#: g10/keygen.c:340 #, c-format msgid "too many digest preferences\n" msgstr "troppe preferenze di digest\n" -#: g10/keygen.c:333 +#: g10/keygen.c:342 #, c-format msgid "too many compression preferences\n" msgstr "troppe preferenze di compressione\n" -#: g10/keygen.c:493 +#: g10/keygen.c:502 #, c-format msgid "invalid item '%s' in preference string\n" msgstr "elemento '%s' non valido nella stringa delle preferenze\n" -#: g10/keygen.c:972 +#: g10/keygen.c:1020 #, c-format msgid "writing direct signature\n" msgstr "scrittura della firma diretta\n" -#: g10/keygen.c:1018 +#: g10/keygen.c:1066 #, c-format msgid "writing self signature\n" msgstr "scrittura della autofirma\n" -#: g10/keygen.c:1075 +#: g10/keygen.c:1123 #, c-format msgid "writing key binding signature\n" msgstr "scrittura della firma di collegamento alla chiave\n" -#: g10/keygen.c:1440 g10/keygen.c:1445 g10/keygen.c:1497 g10/keygen.c:1502 -#: g10/keygen.c:1656 g10/keygen.c:1661 +#: g10/keygen.c:1494 g10/keygen.c:1499 g10/keygen.c:1551 g10/keygen.c:1556 +#: g10/keygen.c:1710 g10/keygen.c:1715 #, c-format msgid "keysize invalid; using %u bits\n" msgstr "dimensione della chiave non valida; uso %u bit\n" -#: g10/keygen.c:1451 g10/keygen.c:1508 g10/keygen.c:1516 g10/keygen.c:1667 +#: g10/keygen.c:1505 g10/keygen.c:1562 g10/keygen.c:1570 g10/keygen.c:1721 #, c-format msgid "keysize rounded up to %u bits\n" msgstr "dimensioni della chiave arrotondate a %u bit\n" -#: g10/keygen.c:1542 +#: g10/keygen.c:1596 #, c-format msgid "" "WARNING: some OpenPGP programs can't handle a DSA key with this digest size\n" @@ -5291,19 +5297,19 @@ "AVVISO: alcuni programmi OpenPGP non sono in grado di gestire una chiave DSA " "con questa dimensione del digest\n" -#: g10/keygen.c:1723 +#: g10/keygen.c:1777 msgid "Sign" msgstr "Firma" -#: g10/keygen.c:1726 +#: g10/keygen.c:1780 msgid "Certify" msgstr "Certifica" -#: g10/keygen.c:1729 +#: g10/keygen.c:1783 msgid "Encrypt" msgstr "Crittografa" -#: g10/keygen.c:1732 +#: g10/keygen.c:1786 msgid "Authenticate" msgstr "Autentica" @@ -5317,161 +5323,161 @@ #. * a = Toggle authentication capability #. * q = Finish #. -#: g10/keygen.c:1753 +#: g10/keygen.c:1807 msgid "SsEeAaQq" msgstr "SsEeAaQq" -#: g10/keygen.c:1784 +#: g10/keygen.c:1838 #, c-format msgid "Possible actions for a %s key: " msgstr "Azioni possibili per una chiave %s: " -#: g10/keygen.c:1790 +#: g10/keygen.c:1844 msgid "Current allowed actions: " msgstr "Azioni correnti consentite: " -#: g10/keygen.c:1795 +#: g10/keygen.c:1849 #, c-format msgid " (%c) Toggle the sign capability\n" msgstr " (%c) Attivare o disattivare la funzionalità di firma\n" -#: g10/keygen.c:1798 +#: g10/keygen.c:1852 #, c-format msgid " (%c) Toggle the encrypt capability\n" msgstr " (%c) Attivare/disattivare la funzionalità di crittografia\n" -#: g10/keygen.c:1801 +#: g10/keygen.c:1855 #, c-format msgid " (%c) Toggle the authenticate capability\n" msgstr " (%c) Attivare/disattivare la funzionalità di autenticazione\n" -#: g10/keygen.c:1804 +#: g10/keygen.c:1858 #, c-format msgid " (%c) Finished\n" msgstr " (%c) Finito\n" -#: g10/keygen.c:1930 +#: g10/keygen.c:1984 #, c-format msgid " (%d) RSA and RSA (default)\n" msgstr " (%d) RSA e RSA (impostazione predefinita)\n" -#: g10/keygen.c:1934 +#: g10/keygen.c:1988 #, c-format msgid " (%d) DSA and Elgamal\n" msgstr " (%d) DSA ed Elgamal\n" -#: g10/keygen.c:1937 +#: g10/keygen.c:1991 #, c-format msgid " (%d) DSA (sign only)\n" msgstr " (%d) DSA (firma solo)\n" -#: g10/keygen.c:1939 +#: g10/keygen.c:1993 #, c-format msgid " (%d) RSA (sign only)\n" msgstr " (%d) RSA (firma solo)\n" -#: g10/keygen.c:1945 +#: g10/keygen.c:1999 #, c-format msgid " (%d) Elgamal (encrypt only)\n" msgstr " (%d) ElGamal (cifra solo)\n" -#: g10/keygen.c:1947 +#: g10/keygen.c:2001 #, c-format msgid " (%d) RSA (encrypt only)\n" msgstr " (%d) RSA (cifra solo)\n" -#: g10/keygen.c:1953 +#: g10/keygen.c:2007 #, c-format msgid " (%d) DSA (set your own capabilities)\n" msgstr " (%d) DSA (impostare le proprie capacità)\n" -#: g10/keygen.c:1955 +#: g10/keygen.c:2009 #, c-format msgid " (%d) RSA (set your own capabilities)\n" msgstr " (%d) RSA (imposta le tue funzionalità)\n" -#: g10/keygen.c:1961 +#: g10/keygen.c:2015 #, c-format msgid " (%d) ECC and ECC\n" msgstr " (%d) ECC ed ECC\n" -#: g10/keygen.c:1963 +#: g10/keygen.c:2017 #, c-format msgid " (%d) ECC (sign only)\n" msgstr " (%d) DSA (firma solo)\n" -#: g10/keygen.c:1965 +#: g10/keygen.c:2019 #, c-format msgid " (%d) ECC (set your own capabilities)\n" msgstr " (%d) ECC (imposta le tue capacità)\n" -#: g10/keygen.c:1967 +#: g10/keygen.c:2021 #, c-format msgid " (%d) ECC (encrypt only)\n" msgstr " (%d) ECC (solo crittografia)\n" -#: g10/keygen.c:1971 +#: g10/keygen.c:2025 #, c-format msgid " (%d) Existing key\n" msgstr " (%d) Chiave esistente\n" -#: g10/keygen.c:1973 +#: g10/keygen.c:2027 #, c-format msgid " (%d) Existing key from card\n" msgstr " (%d) Chiave esistente dalla scheda\n" -#: g10/keygen.c:2069 sm/certreqgen-ui.c:202 +#: g10/keygen.c:2123 sm/certreqgen-ui.c:202 msgid "Enter the keygrip: " msgstr "Immettere il keygrip: " -#: g10/keygen.c:2082 sm/certreqgen-ui.c:210 +#: g10/keygen.c:2136 sm/certreqgen-ui.c:210 msgid "Not a valid keygrip (expecting 40 hex digits)\n" msgstr "Keygrip non valido (previsto 40 cifre esadecimali)\n" -#: g10/keygen.c:2084 sm/certreqgen-ui.c:212 +#: g10/keygen.c:2138 sm/certreqgen-ui.c:212 msgid "No key with this keygrip\n" msgstr "Nessuna chiave con questa chiave\n" -#: g10/keygen.c:2103 g10/keygen.c:2113 g10/keygen.c:3216 g10/keygen.c:3227 +#: g10/keygen.c:2157 g10/keygen.c:2167 g10/keygen.c:3270 g10/keygen.c:3281 #: sm/certreqgen-ui.c:230 sm/certreqgen-ui.c:239 #, c-format msgid "error reading the card: %s\n" msgstr "errore durante la lettura della scheda: %s\n" -#: g10/keygen.c:2107 g10/keygen.c:3220 sm/certreqgen-ui.c:233 +#: g10/keygen.c:2161 g10/keygen.c:3274 sm/certreqgen-ui.c:233 #, c-format msgid "Serial number of the card: %s\n" msgstr "Numero di serie della scheda: %s\n" -#: g10/keygen.c:2120 sm/certreqgen-ui.c:245 +#: g10/keygen.c:2174 sm/certreqgen-ui.c:245 msgid "Available keys:\n" msgstr "Chiavi disponibili:\n" -#: g10/keygen.c:2297 g10/keygen.c:2311 +#: g10/keygen.c:2351 g10/keygen.c:2365 #, c-format msgid "rounded to %u bits\n" msgstr "arrotondato a %u bit\n" -#: g10/keygen.c:2352 +#: g10/keygen.c:2406 #, c-format msgid "%s keys may be between %u and %u bits long.\n" msgstr "Le chiavi %s possono essere lunghe tra %u e %u bit.\n" -#: g10/keygen.c:2360 +#: g10/keygen.c:2414 #, c-format msgid "What keysize do you want for the subkey? (%u) " msgstr "Quale dimensione della chiave si desidera per la sottochiave? (%u) " -#: g10/keygen.c:2377 sm/certreqgen-ui.c:189 +#: g10/keygen.c:2431 sm/certreqgen-ui.c:189 #, c-format msgid "Requested keysize is %u bits\n" msgstr "La dimensione richiesta della chiave è %u bit\n" -#: g10/keygen.c:2423 +#: g10/keygen.c:2477 msgid "Please select which elliptic curve you want:\n" msgstr "Selezionare la curva ellittica desiderata:\n" -#: g10/keygen.c:2611 +#: g10/keygen.c:2665 msgid "" "Please specify how long the key should be valid.\n" " 0 = key does not expire\n" @@ -5487,7 +5493,7 @@ " m = la chiave scadrà dopo n mesi\n" " y = la chiave scadrà dopo n anni\n" -#: g10/keygen.c:2622 +#: g10/keygen.c:2676 msgid "" "Please specify how long the signature should be valid.\n" " 0 = signature does not expire\n" @@ -5503,38 +5509,38 @@ " m = la chiave scadrà dopo n mesi\n" " y = la chiave scadrà dopo n anni\n" -#: g10/keygen.c:2645 +#: g10/keygen.c:2699 msgid "Key is valid for? (0) " msgstr "Chiave valida per? (0) " -#: g10/keygen.c:2650 +#: g10/keygen.c:2704 #, c-format msgid "Signature is valid for? (%s) " msgstr "La firma è valida per? (%s) " -#: g10/keygen.c:2663 g10/keygen.c:2688 +#: g10/keygen.c:2717 g10/keygen.c:2742 msgid "invalid value\n" msgstr "valore non valido\n" -#: g10/keygen.c:2670 +#: g10/keygen.c:2724 msgid "Key does not expire at all\n" msgstr "La chiave non scade affatto\n" -#: g10/keygen.c:2671 +#: g10/keygen.c:2725 msgid "Signature does not expire at all\n" msgstr "La firma non scade affatto\n" -#: g10/keygen.c:2676 +#: g10/keygen.c:2730 #, c-format msgid "Key expires at %s\n" msgstr "La chiave scade alle %s\n" -#: g10/keygen.c:2677 +#: g10/keygen.c:2731 #, c-format msgid "Signature expires at %s\n" msgstr "La firma scade alle %s\n" -#: g10/keygen.c:2681 +#: g10/keygen.c:2735 msgid "" "Your system can't display dates beyond 2038.\n" "However, it will be correctly handled up to 2106.\n" @@ -5542,11 +5548,11 @@ "Il tuo sistema non può mostrare date oltre il 2038.\n" "Comunque, sarà gestita correttamente fino al 2106.\n" -#: g10/keygen.c:2694 +#: g10/keygen.c:2748 msgid "Is this correct? (y/N) " msgstr "È corretto? (y/N) " -#: g10/keygen.c:2762 +#: g10/keygen.c:2816 msgid "" "\n" "GnuPG needs to construct a user ID to identify your key.\n" @@ -5560,7 +5566,7 @@ #. but you should keep your existing translation. In case #. the new string is not translated this old string will #. be used. -#: g10/keygen.c:2777 +#: g10/keygen.c:2831 msgid "" "\n" "You need a user ID to identify your key; the software constructs the user " @@ -5576,49 +5582,49 @@ " \"Heinrich Heine (Der Dichter) \"\n" "\n" -#: g10/keygen.c:2796 +#: g10/keygen.c:2850 msgid "Real name: " msgstr "Nome e Cognome: " -#: g10/keygen.c:2805 +#: g10/keygen.c:2859 msgid "Invalid character in name\n" msgstr "Carattere non valido nel nome\n" -#: g10/keygen.c:2806 +#: g10/keygen.c:2860 #, c-format msgid "The characters '%s' and '%s' may not appear in name\n" msgstr "I caratteri '%s' e '%s' non possono essere visualizzati nel nome\n" -#: g10/keygen.c:2810 +#: g10/keygen.c:2864 msgid "Name may not start with a digit\n" msgstr "Il nome non può iniziare con una cifra\n" -#: g10/keygen.c:2813 +#: g10/keygen.c:2867 msgid "Name must be at least 5 characters long\n" msgstr "Il nome deve essere lungo almeno 5 caratteri\n" -#: g10/keygen.c:2823 +#: g10/keygen.c:2877 msgid "Email address: " msgstr "Indirizzo di Email: " -#: g10/keygen.c:2829 +#: g10/keygen.c:2883 msgid "Not a valid email address\n" msgstr "L'indirizzo di email non è valido\n" -#: g10/keygen.c:2838 +#: g10/keygen.c:2892 msgid "Comment: " msgstr "Commento: " -#: g10/keygen.c:2844 +#: g10/keygen.c:2898 msgid "Invalid character in comment\n" msgstr "Carattere non valido nel commento\n" -#: g10/keygen.c:2880 +#: g10/keygen.c:2934 #, c-format msgid "You are using the '%s' character set.\n" msgstr "Si sta utilizzando il set di caratteri '%s'.\n" -#: g10/keygen.c:2886 +#: g10/keygen.c:2940 #, c-format msgid "" "You selected this USER-ID:\n" @@ -5629,7 +5635,7 @@ " \"%s\"\n" "\n" -#: g10/keygen.c:2891 +#: g10/keygen.c:2945 msgid "Please don't put the email address into the real name or the comment\n" msgstr "Per favore non mettere l'indirizzo di email nel nome o nel commento\n" @@ -5644,31 +5650,31 @@ #. o = Okay (ready, continue) #. q = Quit #. -#: g10/keygen.c:2916 +#: g10/keygen.c:2970 msgid "NnCcEeOoQq" msgstr "NnCcEeOoQq" -#: g10/keygen.c:2926 +#: g10/keygen.c:2980 msgid "Change (N)ame, (C)omment, (E)mail or (Q)uit? " msgstr "Modifica (N)ome, (C)ommento, (E)mail oppure (Q)uit? " -#: g10/keygen.c:2927 +#: g10/keygen.c:2981 msgid "Change (N)ame, (C)omment, (E)mail or (O)kay/(Q)uit? " msgstr "Modifica (N)ome, (C)ommento, (E)mail oppure (O)kay/(Q)uit? " -#: g10/keygen.c:2932 +#: g10/keygen.c:2986 msgid "Change (N)ame, (E)mail, or (Q)uit? " msgstr "Modifica (N)ome, (C)ommento, (E)mail oppure (Q)uit? " -#: g10/keygen.c:2933 +#: g10/keygen.c:2987 msgid "Change (N)ame, (E)mail, or (O)kay/(Q)uit? " msgstr "Modifica (N)ome, (C)ommento, (E)mail oppure (O)kay/(Q)uit? " -#: g10/keygen.c:2952 +#: g10/keygen.c:3006 msgid "Please correct the error first\n" msgstr "Per favore correggi prima l'errore\n" -#: g10/keygen.c:2998 +#: g10/keygen.c:3052 msgid "" "We need to generate a lot of random bytes. It is a good idea to perform\n" "some other action (type on the keyboard, move the mouse, utilize the\n" @@ -5680,13 +5686,13 @@ "dischi) durante la generazione dei numeri primi; questo da al generatore di\n" "numeri casuali migliori possibilità di raccogliere abbastanza entropia.\n" -#: g10/keygen.c:4278 g10/keygen.c:4349 g10/keygen.c:4367 g10/keygen.c:4395 -#: g10/keygen.c:4739 g10/keygen.c:5239 g10/keygen.c:5534 g10/keygen.c:5639 +#: g10/keygen.c:4332 g10/keygen.c:4403 g10/keygen.c:4421 g10/keygen.c:4449 +#: g10/keygen.c:4793 g10/keygen.c:5293 g10/keygen.c:5588 g10/keygen.c:5693 #, c-format msgid "Key generation failed: %s\n" msgstr "Generazione della chiave fallita: %s\n" -#: g10/keygen.c:4287 +#: g10/keygen.c:4341 #, c-format msgid "" "About to create a key for:\n" @@ -5697,66 +5703,66 @@ " \"%s\"\n" "\n" -#: g10/keygen.c:4289 +#: g10/keygen.c:4343 msgid "Continue? (Y/n) " msgstr "Continuare? (Y/n) " -#: g10/keygen.c:4310 +#: g10/keygen.c:4364 #, c-format msgid "A key for \"%s\" already exists\n" msgstr "Esiste già una chiave per \"%s\"\n" -#: g10/keygen.c:4315 +#: g10/keygen.c:4369 msgid "Create anyway? (y/N) " msgstr "Creare comunque? (y/N) " -#: g10/keygen.c:4321 +#: g10/keygen.c:4375 #, c-format msgid "creating anyway\n" msgstr "creazione comunque\n" -#: g10/keygen.c:4722 +#: g10/keygen.c:4776 #, c-format msgid "Note: Use \"%s %s\" for a full featured key generation dialog.\n" msgstr "" "Nota: utilizzare \"%s %s\" per una finestra di dialogo di generazione di " "chiavi in primo piano.\n" -#: g10/keygen.c:4771 +#: g10/keygen.c:4825 #, c-format msgid "Key generation canceled.\n" msgstr "Generazione della chiave annullata.\n" -#: g10/keygen.c:4831 +#: g10/keygen.c:4885 #, c-format msgid "can't create backup file '%s': %s\n" msgstr "impossibile creare il file di backup '%s': %s\n" -#: g10/keygen.c:4851 +#: g10/keygen.c:4905 #, c-format msgid "Note: backup of card key saved to '%s'\n" msgstr "Nota: backup della chiave della scheda salvata in '%s'\n" -#: g10/keygen.c:5010 g10/keygen.c:5172 +#: g10/keygen.c:5064 g10/keygen.c:5226 #, c-format msgid "writing public key to '%s'\n" msgstr "scrittura di chiave pubblica in '%s'\n" -#: g10/keygen.c:5166 +#: g10/keygen.c:5220 #, c-format msgid "no writable public keyring found: %s\n" msgstr "non è stato trovato un portachiavi pubblico scrivibile: %s\n" -#: g10/keygen.c:5180 +#: g10/keygen.c:5234 #, c-format msgid "error writing public keyring '%s': %s\n" msgstr "errore durante la scrittura della chiave pubblica '%s': %s\n" -#: g10/keygen.c:5210 +#: g10/keygen.c:5264 msgid "public and secret key created and signed.\n" msgstr "chiavi pubbliche e segrete create e firmate.\n" -#: g10/keygen.c:5226 +#: g10/keygen.c:5280 msgid "" "Note that this key cannot be used for encryption. You may want to use\n" "the command \"--edit-key\" to generate a subkey for this purpose.\n" @@ -5765,7 +5771,7 @@ "consiglia di utilizzare\n" "il comando \"--edit-key\" per generare una sottochiave a questo scopo.\n" -#: g10/keygen.c:5401 g10/keygen.c:5590 +#: g10/keygen.c:5455 g10/keygen.c:5644 #, c-format msgid "" "key has been created %lu second in future (time warp or clock problem)\n" @@ -5773,7 +5779,7 @@ "la chiave è stata creata %lu secondo nel futuro (salto nel tempo o problema\n" "con l'orologio)\n" -#: g10/keygen.c:5403 g10/keygen.c:5592 +#: g10/keygen.c:5457 g10/keygen.c:5646 #, c-format msgid "" "key has been created %lu seconds in future (time warp or clock problem)\n" @@ -5781,23 +5787,23 @@ "la chiave è stata creata %lu secondi nel futuro (salto nel tempo o problema\n" "con l'orologio)\n" -#: g10/keygen.c:5414 g10/keygen.c:5603 +#: g10/keygen.c:5468 g10/keygen.c:5657 #, c-format msgid "Note: creating subkeys for v3 keys is not OpenPGP compliant\n" msgstr "" "Nota: la creazione di sottochiavi per le chiavi v3 non è conforme a OpenPGP\n" -#: g10/keygen.c:5426 g10/keygen.c:5428 +#: g10/keygen.c:5480 g10/keygen.c:5482 #, c-format msgid "Secret parts of primary key are not available.\n" msgstr "Parti della chiave segreta non sono disponibili.\n" -#: g10/keygen.c:5435 g10/keygen.c:5437 +#: g10/keygen.c:5489 g10/keygen.c:5491 #, c-format msgid "Secret parts of primary key are stored on-card.\n" msgstr "Le parti segrete della chiave primaria vengono archiviate su scheda.\n" -#: g10/keygen.c:5456 g10/keygen.c:5617 +#: g10/keygen.c:5510 g10/keygen.c:5671 msgid "Really create? (y/N) " msgstr "Davvero creare? (y/N) " @@ -6898,30 +6904,30 @@ msgstr "" "i dati non sono stati salvati; usa l'opzione \"--output\" per salvarli\n" -#: g10/plaintext.c:615 +#: g10/plaintext.c:620 msgid "Detached signature.\n" msgstr "Firma separata.\n" -#: g10/plaintext.c:623 +#: g10/plaintext.c:628 msgid "Please enter name of data file: " msgstr "Inserisci il nome del file di dati: " -#: g10/plaintext.c:660 +#: g10/plaintext.c:665 #, c-format msgid "reading stdin ...\n" msgstr "viene letto stdin...\n" -#: g10/plaintext.c:705 +#: g10/plaintext.c:710 #, c-format msgid "no signed data\n" msgstr "non ci sono dati firmati\n" -#: g10/plaintext.c:723 +#: g10/plaintext.c:728 #, c-format msgid "can't open signed data '%s'\n" msgstr "impossibile aprire i dati firmati '%s'\n" -#: g10/plaintext.c:758 +#: g10/plaintext.c:763 #, c-format msgid "can't open signed data fd=%d: %s\n" msgstr "impossibile aprire i dati firmati fd=%d: %s\n" @@ -7957,7 +7963,7 @@ msgid "no need for a trustdb check\n" msgstr "non è necessario un controllo del trustdb\n" -#: g10/trustdb.c:631 g10/trustdb.c:2326 +#: g10/trustdb.c:631 g10/trustdb.c:2338 #, c-format msgid "next trustdb check due at %s\n" msgstr "il prossimo controllo del trustdb sarà fatto il %s\n" @@ -7988,31 +7994,31 @@ msgid "checking the trustdb\n" msgstr "controllo il trustdb\n" -#: g10/trustdb.c:2047 +#: g10/trustdb.c:2059 #, c-format msgid "%d key processed" msgid_plural "%d keys processed" msgstr[0] "Chiave %d elaborata" msgstr[1] "Chiavi %d elaborate" -#: g10/trustdb.c:2050 +#: g10/trustdb.c:2062 #, c-format msgid " (%d validity count cleared)\n" msgid_plural " (%d validity counts cleared)\n" msgstr[0] " (%d conteggio di validità cancellato)\n" msgstr[1] " (%d conteggi di validità cancellati)\n" -#: g10/trustdb.c:2120 +#: g10/trustdb.c:2132 #, c-format msgid "no ultimately trusted keys found\n" msgstr "non è stata trovata alcuna chiave definitivamente affidabile\n" -#: g10/trustdb.c:2134 +#: g10/trustdb.c:2146 #, c-format msgid "public key of ultimately trusted key %s not found\n" msgstr "chiave pubblica della chiave attendibile %s non trovata\n" -#: g10/trustdb.c:2252 +#: g10/trustdb.c:2264 #, c-format msgid "" "depth: %d valid: %3d signed: %3d trust: %d-, %dq, %dn, %dm, %df, %du\n" @@ -8020,7 +8026,7 @@ "profondità: %d valido: %3d firmato: %3d trust: %d-, %dq, %dn, %dm, %df, " "%du\n" -#: g10/trustdb.c:2333 +#: g10/trustdb.c:2345 #, c-format msgid "unable to update trustdb version record: write failed: %s\n" msgstr "" @@ -8135,72 +8141,78 @@ #. TRANSLATORS: Put a \x1f right before a colon. This can be #. * used by pinentry to nicely align the names and values. Keep #. * the %s at the start and end of the string. -#: scd/app-p15.c:5116 scd/app-openpgp.c:2154 +#: scd/app-p15.c:5145 scd/app-nks.c:1541 scd/app-openpgp.c:2154 #, c-format msgid "%sNumber: %s%%0AHolder: %s%s" msgstr "%sNumero: %s%%0ATitolare: %s%s" #. TRANSLATORS: This is the number of remaining attempts to #. * enter a PIN. Use %%0A (double-percent,0A) for a linefeed. -#: scd/app-p15.c:5135 scd/app-openpgp.c:2170 +#: scd/app-p15.c:5164 scd/app-nks.c:1560 scd/app-openpgp.c:2170 #, c-format msgid "Remaining attempts: %d" msgstr "Tentativi rimanenti: %d" -#: scd/app-p15.c:5214 scd/app-nks.c:1113 +#: scd/app-p15.c:5243 scd/app-nks.c:2112 msgid "||Please enter the PIN for the key to create qualified signatures." msgstr "||Immettere il PIN per la chiave per creare firme qualificate." #. TRANSLATORS: Do not translate the "|A|" prefix but keep it at #. the start of the string. Use %0A (single percent) for a linefeed. -#: scd/app-p15.c:5217 scd/app-openpgp.c:2464 +#: scd/app-p15.c:5246 scd/app-openpgp.c:2465 msgid "|A|Please enter the Admin PIN" msgstr "|A|Inserisci il PIN di amministratore" -#: scd/app-p15.c:5219 scd/app-nks.c:1103 +#: scd/app-p15.c:5248 scd/app-nks.c:2102 msgid "|P|Please enter the PIN Unblocking Code (PUK) for the standard keys." msgstr "|P|Inserisci il codice di sblocco del PIN (PUK) per i tasti standard." -#: scd/app-p15.c:5222 scd/app-nks.c:1095 +#: scd/app-p15.c:5251 scd/app-nks.c:2093 msgid "||Please enter the PIN for the standard keys." msgstr "||Si prega di inserire il PIN per le chiavi standard." -#: scd/app-nks.c:709 scd/app-openpgp.c:3666 +#: scd/app-nks.c:1479 scd/app-openpgp.c:3675 #, c-format msgid "RSA modulus missing or not of size %d bits\n" msgstr "Modulo RSA mancante o non di dimensione %d bit\n" -#: scd/app-nks.c:717 scd/app-openpgp.c:3678 +#: scd/app-nks.c:1487 scd/app-openpgp.c:3687 #, c-format msgid "RSA public exponent missing or larger than %d bits\n" msgstr "Esponente pubblico RSA mancante o superiore a %d bit\n" -#: scd/app-nks.c:797 scd/app-openpgp.c:2327 scd/app-openpgp.c:2346 -#: scd/app-openpgp.c:2513 scd/app-openpgp.c:2531 scd/app-openpgp.c:2829 -#: scd/app-openpgp.c:2876 scd/app-openpgp.c:2991 scd/app-dinsig.c:302 +#: scd/app-nks.c:1660 +#, fuzzy +#| msgid "the NullPIN has not yet been changed\n" +msgid "Note: PIN has not yet been enabled." +msgstr "il NullPIN non è ancora stato modificato\n" + +#: scd/app-nks.c:1671 scd/app-openpgp.c:2327 scd/app-openpgp.c:2346 +#: scd/app-openpgp.c:2515 scd/app-openpgp.c:2533 scd/app-openpgp.c:2832 +#: scd/app-openpgp.c:2879 scd/app-openpgp.c:3000 scd/app-dinsig.c:303 #, c-format msgid "PIN callback returned error: %s\n" msgstr "Errore di richiamata PIN: %s\n" -#: scd/app-nks.c:830 +#: scd/app-nks.c:1707 #, c-format msgid "the NullPIN has not yet been changed\n" msgstr "il NullPIN non è ancora stato modificato\n" -#: scd/app-nks.c:1094 +#: scd/app-nks.c:2092 msgid "|N|Please enter a new PIN for the standard keys." msgstr "|N|Immettere un nuovo PIN per le chiavi standard." -#: scd/app-nks.c:1101 +#: scd/app-nks.c:2100 msgid "|NP|Please enter a new PIN Unblocking Code (PUK) for the standard keys." msgstr "" "|N|Inserisci un nuovo codice di sblocco del PIN (PUK) per i tasti standard." -#: scd/app-nks.c:1111 +#: scd/app-nks.c:2110 msgid "|N|Please enter a new PIN for the key to create qualified signatures." msgstr "|N|Immettere un nuovo PIN per la chiave per creare firme qualificate." -#: scd/app-nks.c:1121 +#: scd/app-nks.c:2120 msgid "" "|NP|Please enter a new PIN Unblocking Code (PUK) for the key to create " "qualified signatures." @@ -8208,7 +8220,7 @@ "|NP|Inserisci un nuovo codice di sblocco PIN (PUK) per la chiave per creare " "firme qualificate." -#: scd/app-nks.c:1123 +#: scd/app-nks.c:2122 msgid "" "|P|Please enter the PIN Unblocking Code (PUK) for the key to create " "qualified signatures." @@ -8216,7 +8228,7 @@ "|P|Inserisci il codice di sblocco del PIN (PUK) per la chiave per creare " "firme qualificate." -#: scd/app-nks.c:1230 scd/app-openpgp.c:2910 scd/app-dinsig.c:532 +#: scd/app-nks.c:2295 scd/app-openpgp.c:2913 scd/app-dinsig.c:535 #, c-format msgid "error getting new PIN: %s\n" msgstr "errore durante il recupero del nuovo PIN: %s\n" @@ -8231,7 +8243,7 @@ msgid "failed to store the creation date: %s\n" msgstr "impossibile memorizzare la data di creazione: %s\n" -#: scd/app-openpgp.c:1271 scd/app-openpgp.c:2857 scd/app-openpgp.c:5041 +#: scd/app-openpgp.c:1271 scd/app-openpgp.c:2860 scd/app-openpgp.c:5051 #, c-format msgid "error retrieving CHV status from card\n" msgstr "errore durante il recupero dello stato CHV dalla scheda\n" @@ -8251,7 +8263,7 @@ msgid "response does not contain the EC public key\n" msgstr "risposta non contiene la chiave pubblica CE\n" -#: scd/app-openpgp.c:1664 scd/app-openpgp.c:4286 +#: scd/app-openpgp.c:1664 scd/app-openpgp.c:4295 #, c-format msgid "response does not contain the public key data\n" msgstr "risposta non contiene i dati della chiave pubblica\n" @@ -8285,23 +8297,23 @@ msgid "||Please unlock the card" msgstr "||Si prega di sbloccare la carta" -#: scd/app-openpgp.c:2353 scd/app-openpgp.c:2538 scd/app-openpgp.c:2836 +#: scd/app-openpgp.c:2353 scd/app-openpgp.c:2540 scd/app-openpgp.c:2839 #, c-format msgid "PIN for CHV%d is too short; minimum length is %d\n" msgstr "Il PIN per CHV%d è troppo breve; la lunghezza minima è %d\n" -#: scd/app-openpgp.c:2367 scd/app-openpgp.c:2414 scd/app-openpgp.c:2552 -#: scd/app-openpgp.c:4644 +#: scd/app-openpgp.c:2368 scd/app-openpgp.c:2415 scd/app-openpgp.c:2554 +#: scd/app-openpgp.c:4654 #, c-format msgid "verify CHV%d failed: %s\n" msgstr "verifica CHV%d non riuscita: %s\n" -#: scd/app-openpgp.c:2450 scd/app-openpgp.c:5050 +#: scd/app-openpgp.c:2451 scd/app-openpgp.c:5060 #, c-format msgid "card is permanently locked!\n" msgstr "carta è bloccata in modo permanente!\n" -#: scd/app-openpgp.c:2454 +#: scd/app-openpgp.c:2455 #, c-format msgid "%d Admin PIN attempt remaining before card is permanently locked\n" msgid_plural "" @@ -8313,20 +8325,20 @@ "%d tentativi di PIN di amministrazione rimanenti prima che la schede vengano " "bloccate in modo permanente\n" -#: scd/app-openpgp.c:2485 +#: scd/app-openpgp.c:2486 #, c-format msgid "access to admin commands is not configured\n" msgstr "l'accesso ai comandi di amministrazione non è configurato\n" -#: scd/app-openpgp.c:2823 +#: scd/app-openpgp.c:2826 msgid "||Please enter the PIN" msgstr "||Inserisci il PIN" -#: scd/app-openpgp.c:2872 +#: scd/app-openpgp.c:2875 msgid "||Please enter the Reset Code for the card" msgstr "||Inserisci il Codice reset per la carta" -#: scd/app-openpgp.c:2882 scd/app-openpgp.c:2943 +#: scd/app-openpgp.c:2885 scd/app-openpgp.c:2946 #, c-format msgid "Reset Code is too short; minimum length is %d\n" msgstr "Il codice di reimpostazione è troppo breve; la lunghezza minima è %d\n" @@ -8334,87 +8346,87 @@ #. 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:2905 +#: scd/app-openpgp.c:2908 msgid "|RN|New Reset Code" msgstr "|RN|Nuovo codice di ripristino" -#: scd/app-openpgp.c:2906 +#: scd/app-openpgp.c:2909 msgid "|AN|New Admin PIN" msgstr "|AN|Nuovo PIN di amministrazione" -#: scd/app-openpgp.c:2906 +#: scd/app-openpgp.c:2909 msgid "|N|New PIN" msgstr "|N|Nuovo PIN" -#: scd/app-openpgp.c:2987 +#: scd/app-openpgp.c:2996 msgid "||Please enter the Admin PIN and New Admin PIN" msgstr "||Inserisci il PIN di amministratore e il nuovo PIN di amministrazione" -#: scd/app-openpgp.c:2988 +#: scd/app-openpgp.c:2997 msgid "||Please enter the PIN and New PIN" msgstr "||Inserisci il PIN e il nuovo PIN" -#: scd/app-openpgp.c:3050 scd/app-openpgp.c:4346 +#: scd/app-openpgp.c:3059 scd/app-openpgp.c:4355 #, c-format msgid "error reading application data\n" msgstr "errore durante la lettura dei dati dell'applicazione\n" -#: scd/app-openpgp.c:3056 scd/app-openpgp.c:4353 +#: scd/app-openpgp.c:3065 scd/app-openpgp.c:4362 #, c-format msgid "error reading fingerprint DO\n" msgstr "errore durante la lettura dell'impronta digitale DO\n" -#: scd/app-openpgp.c:3066 +#: scd/app-openpgp.c:3075 #, c-format msgid "key already exists\n" msgstr "chiave già esistente\n" -#: scd/app-openpgp.c:3070 +#: scd/app-openpgp.c:3079 #, c-format msgid "existing key will be replaced\n" msgstr "chiave esistente verrà sostituita\n" -#: scd/app-openpgp.c:3072 +#: scd/app-openpgp.c:3081 #, c-format msgid "generating new key\n" msgstr "generazione di una nuova chiave\n" -#: scd/app-openpgp.c:3074 +#: scd/app-openpgp.c:3083 #, c-format msgid "writing new key\n" msgstr "genera una nuova coppia di chiavi\n" -#: scd/app-openpgp.c:3647 scd/app-openpgp.c:3999 +#: scd/app-openpgp.c:3656 scd/app-openpgp.c:4008 #, c-format msgid "creation timestamp missing\n" msgstr "timestamp di creazione mancante\n" -#: scd/app-openpgp.c:3688 scd/app-openpgp.c:3696 +#: scd/app-openpgp.c:3697 scd/app-openpgp.c:3705 #, c-format msgid "RSA prime %s missing or not of size %d bits\n" msgstr "RSA primo %s mancante o non di dimensione %d bit\n" -#: scd/app-openpgp.c:3829 scd/app-openpgp.c:4106 +#: scd/app-openpgp.c:3838 scd/app-openpgp.c:4115 #, c-format msgid "failed to store the key: %s\n" msgstr "impossibile archiviare la chiave: %s\n" -#: scd/app-openpgp.c:3993 +#: scd/app-openpgp.c:4002 #, c-format msgid "unsupported curve\n" msgstr "curva non supportata\n" -#: scd/app-openpgp.c:4263 +#: scd/app-openpgp.c:4272 #, c-format msgid "please wait while key is being generated ...\n" msgstr "si prega di attendere mentre la chiave viene generata …\n" -#: scd/app-openpgp.c:4271 +#: scd/app-openpgp.c:4280 #, c-format msgid "generating key failed\n" msgstr "generazione della chiave non riuscita\n" -#: scd/app-openpgp.c:4277 +#: scd/app-openpgp.c:4286 #, c-format msgid "key generation completed (%d second)\n" msgid_plural "key generation completed (%d seconds)\n" @@ -8424,27 +8436,27 @@ "\n" "\n" -#: scd/app-openpgp.c:4311 +#: scd/app-openpgp.c:4320 #, c-format msgid "invalid structure of OpenPGP card (DO 0x93)\n" msgstr "struttura non valida della scheda OpenPGP (DO 0x93)\n" -#: scd/app-openpgp.c:4361 +#: scd/app-openpgp.c:4370 #, c-format msgid "fingerprint on card does not match requested one\n" msgstr "impronta digitale sulla carta non corrisponde a quello richiesto\n" -#: scd/app-openpgp.c:4560 +#: scd/app-openpgp.c:4569 #, c-format msgid "card does not support digest algorithm %s\n" msgstr "scheda non supporta l'algoritmo digest %s\n" -#: scd/app-openpgp.c:4618 +#: scd/app-openpgp.c:4627 #, c-format msgid "signatures created so far: %lu\n" msgstr "firme create finora: %lu\n" -#: scd/app-openpgp.c:5055 +#: scd/app-openpgp.c:5065 #, c-format msgid "" "verification of Admin PIN is currently prohibited through this command\n" @@ -8452,19 +8464,19 @@ "la verifica del PIN di amministrazione è attualmente vietata tramite questo " "comando\n" -#: scd/app-openpgp.c:5386 scd/app-openpgp.c:5398 +#: scd/app-openpgp.c:5396 scd/app-openpgp.c:5408 #, c-format msgid "can't access %s - invalid OpenPGP card?\n" msgstr "impossibile accedere a %s - scheda OpenPGP non valida?\n" -#: scd/app-dinsig.c:298 +#: scd/app-dinsig.c:299 msgid "||Please enter your PIN at the reader's pinpad" msgstr "||Inserisci il tuo PIN sul pinpad del lettore" #. 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-dinsig.c:529 +#: scd/app-dinsig.c:532 msgid "|N|Initial New PIN" msgstr "|N|Nuovo PIN iniziale" @@ -8554,11 +8566,11 @@ msgid "validation model requested by certificate: %s" msgstr "modello di convalida richiesto dal certificato: %s" -#: sm/certchain.c:199 sm/certchain.c:2164 +#: sm/certchain.c:199 sm/certchain.c:2165 msgid "chain" msgstr "catena" -#: sm/certchain.c:200 sm/certchain.c:2164 +#: sm/certchain.c:200 sm/certchain.c:2165 msgid "shell" msgstr "shell" @@ -8581,237 +8593,237 @@ msgid "failed to open '%s': %s\n" msgstr "impossibile aprire '%s': %s\n" -#: sm/certchain.c:355 sm/certchain.c:384 dirmngr/validate.c:204 +#: sm/certchain.c:355 sm/certchain.c:385 dirmngr/validate.c:204 #, c-format msgid "Note: non-critical certificate policy not allowed" msgstr "Nota: i criteri di certificato non critici non sono consentiti" -#: sm/certchain.c:359 sm/certchain.c:388 dirmngr/validate.c:209 +#: sm/certchain.c:359 sm/certchain.c:389 dirmngr/validate.c:209 #, c-format msgid "certificate policy not allowed" msgstr "criteri certificato non consentiti" -#: sm/certchain.c:595 sm/keydb.c:1084 sm/keydb.c:1171 +#: sm/certchain.c:596 sm/keydb.c:1084 sm/keydb.c:1171 #, c-format msgid "failed to get the fingerprint\n" msgstr "non è riuscito a ottenere l'impronta digitale\n" -#: sm/certchain.c:624 +#: sm/certchain.c:625 #, c-format msgid "looking up issuer at external location\n" msgstr "ricerca dell'emittente in una posizione esterna\n" -#: sm/certchain.c:644 +#: sm/certchain.c:645 #, c-format msgid "number of issuers matching: %d\n" msgstr "numero di emittenti corrispondenti: %d\n" -#: sm/certchain.c:723 dirmngr/ocsp.c:685 +#: sm/certchain.c:724 dirmngr/ocsp.c:685 #, c-format msgid "can't get authorityInfoAccess: %s\n" msgstr "impossibile ottenere authorityInfoAccess: %s\n" -#: sm/certchain.c:791 +#: sm/certchain.c:792 #, c-format msgid "looking up issuer from the Dirmngr cache\n" msgstr "ricerca dell'autorità emittente dalla cache di Dirmngr\n" -#: sm/certchain.c:816 +#: sm/certchain.c:817 #, c-format msgid "number of matching certificates: %d\n" msgstr "numero di certificati corrispondenti: %d\n" -#: sm/certchain.c:819 +#: sm/certchain.c:820 #, c-format msgid "dirmngr cache-only key lookup failed: %s\n" msgstr "ricerca chiave solo cache dirmngr non riuscita: %s\n" -#: sm/certchain.c:1041 sm/certchain.c:1554 sm/certchain.c:2192 sm/decrypt.c:728 +#: sm/certchain.c:1042 sm/certchain.c:1555 sm/certchain.c:2193 sm/decrypt.c:728 #: sm/encrypt.c:345 sm/import.c:415 sm/keydb.c:1091 sm/keydb.c:1178 #: sm/sign.c:337 sm/verify.c:118 #, c-format msgid "failed to allocate keyDB handle\n" msgstr "impossibile allocare l'handle keyDB\n" -#: sm/certchain.c:1225 +#: sm/certchain.c:1226 msgid "certificate has been revoked" msgstr "certificato è stato revocato" -#: sm/certchain.c:1240 +#: sm/certchain.c:1241 msgid "the status of the certificate is unknown" msgstr "lo stato del certificato è sconosciuto" -#: sm/certchain.c:1247 +#: sm/certchain.c:1248 #, c-format msgid "please make sure that the \"dirmngr\" is properly installed\n" msgstr "assicurarsi che il \"dirmngr\" sia installato correttamente\n" -#: sm/certchain.c:1253 +#: sm/certchain.c:1254 #, c-format msgid "checking the CRL failed: %s" msgstr "controllo del CRL non riuscito: %s" -#: sm/certchain.c:1282 sm/certchain.c:1350 dirmngr/validate.c:497 +#: sm/certchain.c:1283 sm/certchain.c:1351 dirmngr/validate.c:497 #, c-format msgid "certificate with invalid validity: %s" msgstr "certificato con validità non valida: %s" -#: sm/certchain.c:1297 sm/certchain.c:1382 dirmngr/validate.c:515 +#: sm/certchain.c:1298 sm/certchain.c:1383 dirmngr/validate.c:515 #, c-format msgid "certificate not yet valid" msgstr "certificato non ancora valido" -#: sm/certchain.c:1298 sm/certchain.c:1383 +#: sm/certchain.c:1299 sm/certchain.c:1384 msgid "root certificate not yet valid" msgstr "certificato radice non ancora valido" -#: sm/certchain.c:1299 sm/certchain.c:1384 +#: sm/certchain.c:1300 sm/certchain.c:1385 msgid "intermediate certificate not yet valid" msgstr "certificato intermedio non ancora valido" -#: sm/certchain.c:1312 dirmngr/validate.c:526 +#: sm/certchain.c:1313 dirmngr/validate.c:526 #, c-format msgid "certificate has expired" msgstr "certificato è scaduto" -#: sm/certchain.c:1313 +#: sm/certchain.c:1314 msgid "root certificate has expired" msgstr "certificato radice scaduto" -#: sm/certchain.c:1314 +#: sm/certchain.c:1315 msgid "intermediate certificate has expired" msgstr "certificato intermedio scaduto" -#: sm/certchain.c:1356 +#: sm/certchain.c:1357 #, c-format msgid "required certificate attributes missing: %s%s%s" msgstr "attributi obbligatori del certificato mancanti: %s%s%s" -#: sm/certchain.c:1365 +#: sm/certchain.c:1366 msgid "certificate with invalid validity" msgstr "certificato con validità non valida" -#: sm/certchain.c:1402 +#: sm/certchain.c:1403 msgid "signature not created during lifetime of certificate" msgstr "firma non creata durante la durata del certificato" -#: sm/certchain.c:1404 +#: sm/certchain.c:1405 msgid "certificate not created during lifetime of issuer" msgstr "certificato non creato durante la durata dell'emittente" -#: sm/certchain.c:1405 +#: sm/certchain.c:1406 msgid "intermediate certificate not created during lifetime of issuer" msgstr "" "certificato intermedio non creato durante la durata dell'autorità emittente" -#: sm/certchain.c:1409 +#: sm/certchain.c:1410 #, c-format msgid " ( signature created at " msgstr " ( firma creata alle " -#: sm/certchain.c:1410 +#: sm/certchain.c:1411 #, c-format msgid " (certificate created at " msgstr " (certificato creato alle " -#: sm/certchain.c:1413 +#: sm/certchain.c:1414 #, c-format msgid " (certificate valid from " msgstr " (certificato valido da " -#: sm/certchain.c:1414 +#: sm/certchain.c:1415 #, c-format msgid " ( issuer valid from " msgstr " ( emittente valido da " -#: sm/certchain.c:1444 dirmngr/validate.c:577 +#: sm/certchain.c:1445 dirmngr/validate.c:577 #, c-format msgid "fingerprint=%s\n" msgstr "impronta digitale=%s\n" -#: sm/certchain.c:1453 +#: sm/certchain.c:1454 #, c-format msgid "root certificate has now been marked as trusted\n" msgstr "certificato radice è stato contrassegnato come attendibile\n" -#: sm/certchain.c:1466 +#: sm/certchain.c:1467 #, c-format msgid "interactive marking as trusted not enabled in gpg-agent\n" msgstr "contrassegno interattivo come attendibile non abilitato in gpg-agent\n" -#: sm/certchain.c:1472 +#: sm/certchain.c:1473 #, c-format msgid "interactive marking as trusted disabled for this session\n" msgstr "" "contrassegno interattivo come attendibile disabilitato per questa sessione\n" -#: sm/certchain.c:1531 +#: sm/certchain.c:1532 msgid "WARNING: creation time of signature not known - assuming current time" msgstr "" "AVVISO: ora di creazione della firma non nota - presupponendo l'ora corrente" -#: sm/certchain.c:1595 +#: sm/certchain.c:1596 msgid "no issuer found in certificate" msgstr "nessuna autorità emittente trovata nel certificato" -#: sm/certchain.c:1673 +#: sm/certchain.c:1674 msgid "self-signed certificate has a BAD signature" msgstr "certificato autofirmato ha una firma BAD" -#: sm/certchain.c:1742 dirmngr/validate.c:575 +#: sm/certchain.c:1743 dirmngr/validate.c:575 #, c-format msgid "root certificate is not marked trusted" msgstr "certificato radice non contrassegnato come attendibile" -#: sm/certchain.c:1758 +#: sm/certchain.c:1759 #, c-format msgid "checking the trust list failed: %s\n" msgstr "controllo dell'elenco di attendibilità non riuscito: %s\n" -#: sm/certchain.c:1789 sm/import.c:176 sm/keylist.c:1396 dirmngr/validate.c:630 +#: sm/certchain.c:1790 sm/import.c:176 sm/keylist.c:1396 dirmngr/validate.c:630 #, c-format msgid "certificate chain too long\n" msgstr "catena di certificati troppo lunga\n" -#: sm/certchain.c:1801 dirmngr/validate.c:642 +#: sm/certchain.c:1802 dirmngr/validate.c:642 #, c-format msgid "issuer certificate not found" msgstr "certificato dell'autorità emittente non trovato" -#: sm/certchain.c:1834 dirmngr/validate.c:668 +#: sm/certchain.c:1835 dirmngr/validate.c:668 #, c-format msgid "certificate has a BAD signature" msgstr "certificato ha una firma BAD" -#: sm/certchain.c:1866 dirmngr/validate.c:692 +#: sm/certchain.c:1867 dirmngr/validate.c:692 msgid "found another possible matching CA certificate - trying again" msgstr "trovato un altro possibile certificato CA corrispondente - riprovare" -#: sm/certchain.c:1925 dirmngr/validate.c:717 +#: sm/certchain.c:1926 dirmngr/validate.c:717 #, c-format msgid "certificate chain longer than allowed by CA (%d)" msgstr "catena di certificati più lunga di quella consentita dalla CA (%d)" -#: sm/certchain.c:1967 sm/certchain.c:2263 dirmngr/validate.c:747 +#: sm/certchain.c:1968 sm/certchain.c:2264 dirmngr/validate.c:747 #, c-format msgid "certificate is good\n" msgstr "certificato è buono\n" -#: sm/certchain.c:1968 +#: sm/certchain.c:1969 #, c-format msgid "intermediate certificate is good\n" msgstr "certificato intermedio è buono\n" -#: sm/certchain.c:1969 +#: sm/certchain.c:1970 #, c-format msgid "root certificate is good\n" msgstr "certificato radice è buono\n" -#: sm/certchain.c:2151 +#: sm/certchain.c:2152 msgid "switching to chain model" msgstr "passaggio al modello a catena" -#: sm/certchain.c:2160 +#: sm/certchain.c:2161 #, c-format msgid "validation model used: %s" msgstr "modello di convalida utilizzato: %s" diff -Nru gnupg2-2.2.40/po/ja.po gnupg2-2.2.41/po/ja.po --- gnupg2-2.2.40/po/ja.po 2022-10-10 09:58:26.000000000 +0000 +++ gnupg2-2.2.41/po/ja.po 2022-12-09 08:48:34.000000000 +0000 @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: gnupg 2.2.37\n" "Report-Msgid-Bugs-To: translations@gnupg.org\n" -"POT-Creation-Date: 2022-10-10 11:58+0200\n" +"POT-Creation-Date: 2022-12-09 09:48+0100\n" "PO-Revision-Date: 2022-09-01 14:50+0900\n" "Last-Translator: NIIBE Yutaka \n" "Language-Team: none\n" @@ -225,20 +225,20 @@ msgid "ssh keys greater than %d bits are not supported\n" msgstr "ssh鍵で%dビットより大きいものはサポートされません\n" -#: agent/command-ssh.c:862 common/dotlock.c:856 g10/card-util.c:947 -#: g10/exec.c:554 g10/export.c:1320 g10/gpg.c:1400 g10/keygen.c:4998 +#: agent/command-ssh.c:862 common/dotlock.c:856 g10/card-util.c:946 +#: g10/exec.c:554 g10/export.c:1335 g10/gpg.c:1409 g10/keygen.c:5052 #: g10/keyring.c:1322 g10/keyring.c:1637 g10/openfile.c:291 g10/sign.c:1008 #: g10/sign.c:1322 g10/tdbio.c:753 #, c-format msgid "can't create '%s': %s\n" msgstr "'%s'が作成できません: %s\n" -#: agent/command-ssh.c:874 common/helpfile.c:57 g10/card-util.c:904 +#: agent/command-ssh.c:874 common/helpfile.c:57 g10/card-util.c:903 #: g10/dearmor.c:59 g10/dearmor.c:106 g10/decrypt.c:65 g10/decrypt.c:136 -#: g10/decrypt.c:153 g10/encrypt.c:239 g10/encrypt.c:678 g10/gpg.c:1401 -#: g10/import.c:364 g10/import.c:548 g10/import.c:776 g10/keygen.c:4036 +#: g10/decrypt.c:153 g10/encrypt.c:239 g10/encrypt.c:678 g10/gpg.c:1410 +#: g10/import.c:365 g10/import.c:549 g10/import.c:777 g10/keygen.c:4090 #: g10/keyring.c:1663 g10/openfile.c:195 g10/openfile.c:209 g10/plaintext.c:128 -#: g10/plaintext.c:649 g10/sign.c:990 g10/sign.c:1201 g10/sign.c:1306 +#: g10/plaintext.c:654 g10/sign.c:990 g10/sign.c:1201 g10/sign.c:1306 #: g10/sign.c:1451 g10/tdbdump.c:145 g10/tdbdump.c:153 g10/tdbio.c:758 #: g10/tdbio.c:829 g10/verify.c:96 g10/verify.c:160 sm/gpgsm.c:2160 #: sm/gpgsm.c:2190 sm/gpgsm.c:2228 sm/qualified.c:66 dirmngr/certcache.c:420 @@ -457,33 +457,33 @@ msgid "csh-style command output" msgstr "csh-形式のコマンド出力" -#: agent/gpg-agent.c:185 g10/gpg.c:579 scd/scdaemon.c:126 sm/gpgsm.c:410 +#: agent/gpg-agent.c:185 g10/gpg.c:580 scd/scdaemon.c:126 sm/gpgsm.c:410 #: dirmngr/dirmngr.c:192 msgid "|FILE|read options from FILE" msgstr "|FILE|FILEからオプションを読み込みます" -#: agent/gpg-agent.c:189 g10/gpg.c:566 scd/scdaemon.c:130 sm/gpgsm.c:259 +#: agent/gpg-agent.c:189 g10/gpg.c:567 scd/scdaemon.c:130 sm/gpgsm.c:259 #: dirmngr/dirmngr.c:196 msgid "Options controlling the diagnostic output" msgstr "診断出力を制御するオプション" -#: agent/gpg-agent.c:191 g10/gpg.c:568 g10/gpgv.c:78 kbx/kbxutil.c:88 +#: agent/gpg-agent.c:191 g10/gpg.c:569 g10/gpgv.c:78 kbx/kbxutil.c:88 #: scd/scdaemon.c:132 sm/gpgsm.c:261 dirmngr/dirmngr-client.c:70 #: dirmngr/dirmngr.c:198 tools/gpg-connect-agent.c:78 tools/gpgconf.c:110 msgid "verbose" msgstr "冗長" -#: agent/gpg-agent.c:192 g10/gpg.c:570 g10/gpgv.c:79 kbx/kbxutil.c:89 +#: agent/gpg-agent.c:192 g10/gpg.c:571 g10/gpgv.c:79 kbx/kbxutil.c:89 #: scd/scdaemon.c:133 sm/gpgsm.c:263 dirmngr/dirmngr-client.c:71 #: dirmngr/dirmngr.c:199 msgid "be somewhat more quiet" msgstr "いくらかおとなしく" -#: agent/gpg-agent.c:200 g10/gpg.c:583 sm/gpgsm.c:276 dirmngr/dirmngr.c:209 +#: agent/gpg-agent.c:200 g10/gpg.c:584 sm/gpgsm.c:276 dirmngr/dirmngr.c:209 msgid "|FILE|write server mode logs to FILE" msgstr "|FILE|FILEにサーバ・モードのログを書き出す" -#: agent/gpg-agent.c:204 g10/gpg.c:589 scd/scdaemon.c:147 sm/gpgsm.c:283 +#: agent/gpg-agent.c:204 g10/gpg.c:590 scd/scdaemon.c:147 sm/gpgsm.c:283 #: dirmngr/dirmngr.c:213 msgid "Options controlling the configuration" msgstr "コンフィグレーションを制御するオプション" @@ -520,7 +520,7 @@ msgid "enable putty support" msgstr "puttyサポートを有功にする" -#: agent/gpg-agent.c:237 g10/gpg.c:831 scd/scdaemon.c:175 sm/gpgsm.c:369 +#: agent/gpg-agent.c:237 g10/gpg.c:832 scd/scdaemon.c:175 sm/gpgsm.c:369 msgid "Options controlling the security" msgstr "セキュリティを制御するオプション" @@ -617,7 +617,7 @@ #. reporting address. This is so that we can change the #. reporting address without breaking the translations. #: agent/gpg-agent.c:563 agent/preset-passphrase.c:100 agent/protect-tool.c:155 -#: g10/gpg.c:1108 g10/gpgv.c:149 kbx/kbxutil.c:113 scd/scdaemon.c:313 +#: g10/gpg.c:1117 g10/gpgv.c:149 kbx/kbxutil.c:113 scd/scdaemon.c:313 #: sm/gpgsm.c:600 dirmngr/dirmngr-client.c:168 dirmngr/dirmngr.c:458 #: tools/gpg-connect-agent.c:205 tools/gpgconf.c:154 #: tools/gpg-check-pattern.c:143 @@ -636,26 +636,26 @@ "形式: @GPG_AGENT@ [オプション] [コマンド [引数]]\n" "@GnuPG@の秘密鍵の管理\n" -#: agent/gpg-agent.c:619 g10/gpg.c:1304 scd/scdaemon.c:385 sm/gpgsm.c:748 +#: agent/gpg-agent.c:619 g10/gpg.c:1313 scd/scdaemon.c:385 sm/gpgsm.c:748 #: dirmngr/dirmngr.c:542 #, c-format msgid "invalid debug-level '%s' given\n" msgstr "無効なdebug-level '%s'が与えられました\n" -#: agent/gpg-agent.c:988 g10/gpg.c:3810 g10/gpg.c:3834 sm/gpgsm.c:1585 +#: agent/gpg-agent.c:988 g10/gpg.c:3830 g10/gpg.c:3854 sm/gpgsm.c:1585 #: sm/gpgsm.c:1591 #, c-format msgid "selected digest algorithm is invalid\n" msgstr "選択されたダイジェスト・アルゴリズムは、無効です\n" #: agent/gpg-agent.c:1216 agent/gpg-agent.c:2029 common/argparse.c:1766 -#: common/argparse.c:1858 g10/gpg.c:2517 scd/scdaemon.c:547 sm/gpgsm.c:1007 +#: common/argparse.c:1858 g10/gpg.c:2526 scd/scdaemon.c:547 sm/gpgsm.c:1007 #: dirmngr/dirmngr.c:1081 dirmngr/dirmngr.c:1937 #, c-format msgid "reading options from '%s'\n" msgstr "'%s' からオプションを読み込みます\n" -#: agent/gpg-agent.c:1332 g10/gpg.c:3751 scd/scdaemon.c:671 sm/gpgsm.c:1522 +#: agent/gpg-agent.c:1332 g10/gpg.c:3769 scd/scdaemon.c:671 sm/gpgsm.c:1522 #: dirmngr/dirmngr.c:1190 tools/gpg-connect-agent.c:1244 tools/gpgconf.c:677 #, c-format msgid "Note: '%s' is not considered an option\n" @@ -785,7 +785,7 @@ "形式: gpg-preset-passphrase [オプション] KEYGRIP\n" "パスワードキャッシュの管理\n" -#: agent/protect-tool.c:108 g10/gpg.c:441 kbx/kbxutil.c:71 sm/gpgsm.c:210 +#: agent/protect-tool.c:108 g10/gpg.c:442 kbx/kbxutil.c:71 sm/gpgsm.c:210 #: dirmngr/dirmngr.c:171 tools/gpgconf.c:80 msgid "" "@Commands:\n" @@ -1011,7 +1011,7 @@ msgid "secret key parts are not available\n" msgstr "秘密部分が得られません\n" -#: agent/cvt-openpgp.c:344 g10/card-util.c:1556 +#: agent/cvt-openpgp.c:344 g10/card-util.c:1555 #, c-format msgid "public key algorithm %d (%s) is not supported\n" msgstr "公開鍵アルゴリズム%d (%s)はサポートされていません\n" @@ -1166,7 +1166,7 @@ msgid "out of core while allocating %lu bytes" msgstr "%luバイトの確保においてメモリが足りません" -#: common/miscellaneous.c:115 g10/card-util.c:911 tools/no-libgcrypt.c:30 +#: common/miscellaneous.c:115 g10/card-util.c:910 tools/no-libgcrypt.c:30 #, c-format msgid "error allocating enough memory: %s\n" msgstr "十分なメモリの確保のエラー: %s\n" @@ -1281,7 +1281,7 @@ msgstr "アルゴリズム: %s" #: common/audit.c:774 common/audit.c:776 common/audit.c:921 common/audit.c:923 -#: scd/app-openpgp.c:3557 +#: scd/app-openpgp.c:3566 #, c-format msgid "unsupported algorithm: %s" msgstr "サポートされていないアルゴリズム: %s" @@ -1356,11 +1356,11 @@ msgid "Root certificate trustworthy" msgstr "信頼できるルート証明書" -#: common/audit.c:1112 sm/certchain.c:1235 +#: common/audit.c:1112 sm/certchain.c:1236 msgid "no CRL found for certificate" msgstr "証明書に対するCRLがありません" -#: common/audit.c:1115 sm/certchain.c:1245 +#: common/audit.c:1115 sm/certchain.c:1246 msgid "the available CRL is too old" msgstr "利用できるCRLは古すぎます" @@ -1483,7 +1483,7 @@ msgid "missing argument for option \"%.50s\"\n" msgstr "オプション\"%.50s\"に引数がありません\n" -#: common/argparse.c:558 g10/gpg.c:3525 +#: common/argparse.c:558 g10/gpg.c:3543 #, c-format msgid "invalid argument for option \"%.50s\"\n" msgstr "オプション\"%.50s\"には無効な引数です\n" @@ -1582,92 +1582,92 @@ msgid "%s is too old (need %s, have %s)\n" msgstr "%s が古すぎます (%s が必要、現在 %s)\n" -#: g10/armor.c:423 +#: g10/armor.c:424 #, c-format msgid "armor: %s\n" msgstr "外装: %s\n" -#: g10/armor.c:462 +#: g10/armor.c:463 #, c-format msgid "invalid armor header: " msgstr "無効な外装ヘッダー: " -#: g10/armor.c:473 +#: g10/armor.c:474 #, c-format msgid "armor header: " msgstr "外装ヘッダー: " -#: g10/armor.c:486 +#: g10/armor.c:487 #, c-format msgid "invalid clearsig header\n" msgstr "無効なクリア・テクスト署名ヘッダー\n" -#: g10/armor.c:499 +#: g10/armor.c:500 #, c-format msgid "unknown armor header: " msgstr "不明の外装ヘッダー: " -#: g10/armor.c:552 +#: g10/armor.c:553 #, c-format msgid "nested clear text signatures\n" msgstr "入れ子のクリア・テクスト署名\n" -#: g10/armor.c:687 +#: g10/armor.c:688 #, c-format msgid "unexpected armor: " msgstr "予期せぬ外装: " -#: g10/armor.c:700 +#: g10/armor.c:701 #, c-format msgid "invalid dash escaped line: " msgstr "無効なダッシュでエスケープされた行: " -#: g10/armor.c:872 g10/armor.c:1492 +#: g10/armor.c:873 g10/armor.c:1493 #, c-format msgid "invalid radix64 character %02X skipped\n" msgstr "無効な64進文字%02Xをスキップしました\n" -#: g10/armor.c:915 +#: g10/armor.c:916 #, c-format msgid "premature eof (no CRC)\n" msgstr "ファイル末尾が早すぎます (CRCがありません)\n" -#: g10/armor.c:949 +#: g10/armor.c:950 #, c-format msgid "premature eof (in CRC)\n" msgstr "ファイル末尾が早すぎます (CRCの途中)\n" -#: g10/armor.c:957 +#: g10/armor.c:958 #, c-format msgid "malformed CRC\n" msgstr "CRCの書式が正しくありません\n" -#: g10/armor.c:961 g10/armor.c:1529 +#: g10/armor.c:962 g10/armor.c:1530 #, c-format msgid "CRC error; %06lX - %06lX\n" msgstr "CRCエラー。%06lX - %06lX\n" -#: g10/armor.c:981 +#: g10/armor.c:982 #, c-format msgid "premature eof (in trailer)\n" msgstr "ファイル末尾が早すぎます (後尾部の中にあります)\n" -#: g10/armor.c:985 +#: g10/armor.c:986 #, c-format msgid "error in trailer line\n" msgstr "後尾の行にエラーがあります\n" -#: g10/armor.c:1305 +#: g10/armor.c:1306 #, c-format msgid "no valid OpenPGP data found.\n" msgstr "有効なOpenPGPデータが見つかりません。\n" -#: g10/armor.c:1310 +#: g10/armor.c:1311 #, c-format msgid "invalid armor: line longer than %d characters\n" msgstr "無効な外装: 行の長さが%d文字を超えています\n" -#: g10/armor.c:1314 +#: g10/armor.c:1315 #, c-format msgid "" "quoted printable character in armor - probably a buggy MTA has been used\n" @@ -1802,23 +1802,23 @@ msgid "server uses an invalid certificate" msgstr "サーバは無効な証明書を使っています" -#: g10/call-dirmngr.c:462 g10/gpg.c:4458 +#: g10/call-dirmngr.c:462 g10/gpg.c:4478 #, c-format msgid "Note: %s\n" msgstr "注意: %s\n" -#: g10/card-util.c:86 g10/card-util.c:366 g10/card-util.c:1918 +#: g10/card-util.c:86 g10/card-util.c:366 g10/card-util.c:1917 #, c-format msgid "OpenPGP card not available: %s\n" msgstr "OpenPGPカードが利用できません: %s\n" -#: g10/card-util.c:91 g10/card-util.c:1924 +#: g10/card-util.c:91 g10/card-util.c:1923 #, c-format msgid "OpenPGP card no. %s detected\n" msgstr "OpenPGPカードno. %sを検出\n" -#: g10/card-util.c:97 g10/card-util.c:2253 g10/delkey.c:160 g10/keyedit.c:1423 -#: g10/keygen.c:4466 g10/revoke.c:214 g10/revoke.c:636 +#: g10/card-util.c:97 g10/card-util.c:2252 g10/delkey.c:160 g10/keyedit.c:1423 +#: g10/keygen.c:4520 g10/revoke.c:214 g10/revoke.c:636 #, c-format msgid "can't do this in batch mode\n" msgstr "これはバッチ・モードではできません\n" @@ -1828,14 +1828,14 @@ msgid "This command is only available for version 2 cards\n" msgstr "このコマンドが使えるのはバージョン2のカードだけです\n" -#: g10/card-util.c:107 scd/app-openpgp.c:2866 +#: g10/card-util.c:107 scd/app-openpgp.c:2869 #, c-format msgid "Reset Code not or not anymore available\n" msgstr "リセット・コードが(もはや)利用可能ではありません\n" -#: g10/card-util.c:140 g10/card-util.c:1442 g10/card-util.c:1704 -#: g10/card-util.c:1796 g10/keyedit.c:394 g10/keyedit.c:415 g10/keyedit.c:429 -#: g10/keygen.c:1808 g10/keygen.c:1980 g10/keygen.c:2186 g10/keygen.c:2477 +#: g10/card-util.c:140 g10/card-util.c:1441 g10/card-util.c:1703 +#: g10/card-util.c:1795 g10/keyedit.c:394 g10/keyedit.c:415 g10/keyedit.c:429 +#: g10/keygen.c:1862 g10/keygen.c:2034 g10/keygen.c:2240 g10/keygen.c:2531 #: sm/certreqgen-ui.c:165 sm/certreqgen-ui.c:291 sm/certreqgen-ui.c:325 msgid "Your selection? " msgstr "あなたの選択は? " @@ -1885,79 +1885,79 @@ msgid "Error: Combined name too long (limit is %d characters).\n" msgstr "エラー: つないだ名前が長すぎます (上限%d文字)。\n" -#: g10/card-util.c:826 +#: g10/card-util.c:825 msgid "URL to retrieve public key: " msgstr "公開鍵を取得するURL: " -#: g10/card-util.c:920 g10/decrypt-data.c:509 g10/import.c:399 g10/import.c:746 -#: g10/import.c:798 dirmngr/crlcache.c:655 dirmngr/crlcache.c:660 +#: g10/card-util.c:919 g10/decrypt-data.c:509 g10/import.c:400 g10/import.c:747 +#: g10/import.c:799 dirmngr/crlcache.c:655 dirmngr/crlcache.c:660 #: dirmngr/crlcache.c:914 dirmngr/crlcache.c:920 dirmngr/dirmngr.c:1748 #: tools/gpgconf.c:483 tools/gpgconf.c:529 #, c-format msgid "error reading '%s': %s\n" msgstr "'%s'の読み込みエラー: %s\n" -#: g10/card-util.c:953 g10/decrypt-data.c:512 g10/export.c:2467 +#: g10/card-util.c:952 g10/decrypt-data.c:512 g10/export.c:2586 #: dirmngr/crlcache.c:925 #, c-format msgid "error writing '%s': %s\n" msgstr "'%s'の書き込みエラー: %s\n" -#: g10/card-util.c:980 +#: g10/card-util.c:979 msgid "Login data (account name): " msgstr "ログイン・データ (アカウント名): " -#: g10/card-util.c:1018 +#: g10/card-util.c:1017 msgid "Private DO data: " msgstr "プライベート DO データ: " -#: g10/card-util.c:1103 +#: g10/card-util.c:1102 msgid "Language preferences: " msgstr "言語の優先指定: " -#: g10/card-util.c:1111 +#: g10/card-util.c:1110 msgid "Error: invalid length of preference string.\n" msgstr "エラー: 優先指定の文字列の長さが無効です。\n" -#: g10/card-util.c:1120 +#: g10/card-util.c:1119 msgid "Error: invalid characters in preference string.\n" msgstr "エラー: 優先指定の文字列に無効な文字があります。\n" -#: g10/card-util.c:1142 +#: g10/card-util.c:1141 msgid "Salutation (M = Mr., F = Ms., or space): " msgstr "敬称 (M = Mr., F = Ms., あるいは空白): " -#: g10/card-util.c:1156 +#: g10/card-util.c:1155 msgid "Error: invalid response.\n" msgstr "エラー: 無効な応答。\n" -#: g10/card-util.c:1178 +#: g10/card-util.c:1177 msgid "CA fingerprint: " msgstr "CAのフィンガープリント: " -#: g10/card-util.c:1201 +#: g10/card-util.c:1200 msgid "Error: invalid formatted fingerprint.\n" msgstr "エラー: 無効な形式のフィンガープリント。\n" -#: g10/card-util.c:1252 +#: g10/card-util.c:1251 #, c-format msgid "key operation not possible: %s\n" msgstr "鍵は操作できません: %s\n" -#: g10/card-util.c:1253 +#: g10/card-util.c:1252 msgid "not an OpenPGP card" msgstr "OpenPGPカードでありません" -#: g10/card-util.c:1266 g10/keygen.c:4486 g10/keygen.c:5562 +#: g10/card-util.c:1265 g10/keygen.c:4540 g10/keygen.c:5616 #, c-format msgid "error getting current key info: %s\n" msgstr "現行鍵情報の取得エラー: %s\n" -#: g10/card-util.c:1351 +#: g10/card-util.c:1350 msgid "Replace existing key? (y/N) " msgstr "既存の鍵を置き換えしますか? (y/N) " -#: g10/card-util.c:1368 +#: g10/card-util.c:1367 msgid "" "Note: There is no guarantee that the card supports the requested size.\n" " If the key generation does not succeed, please check the\n" @@ -1967,98 +1967,98 @@ " 鍵生成が成功しない場合、あなたのカードに関する技術文書を確認し、\n" " 利用できる鍵長について確認ください。\n" -#: g10/card-util.c:1390 g10/keygen.c:2363 sm/certreqgen-ui.c:179 +#: g10/card-util.c:1389 g10/keygen.c:2417 sm/certreqgen-ui.c:179 #, c-format msgid "What keysize do you want? (%u) " msgstr "鍵長は? (%u) " -#: g10/card-util.c:1400 g10/keygen.c:2286 g10/keygen.c:2318 +#: g10/card-util.c:1399 g10/keygen.c:2340 g10/keygen.c:2372 #: sm/certreqgen-ui.c:194 #, c-format msgid "rounded up to %u bits\n" msgstr "%uビットに切り上げます\n" -#: g10/card-util.c:1408 g10/keygen.c:2371 sm/certreqgen-ui.c:184 +#: g10/card-util.c:1407 g10/keygen.c:2425 sm/certreqgen-ui.c:184 #, c-format msgid "%s keysizes must be in the range %u-%u\n" msgstr "%s 鍵長は %u-%u の範囲でなければなりません\n" -#: g10/card-util.c:1427 +#: g10/card-util.c:1426 msgid "Changing card key attribute for: " msgstr "こちらのカード鍵の属性を変更します: " -#: g10/card-util.c:1429 +#: g10/card-util.c:1428 msgid "Signature key\n" msgstr "署名鍵\n" -#: g10/card-util.c:1431 +#: g10/card-util.c:1430 msgid "Encryption key\n" msgstr "暗号化鍵\n" -#: g10/card-util.c:1433 +#: g10/card-util.c:1432 msgid "Authentication key\n" msgstr "認証鍵\n" -#: g10/card-util.c:1435 g10/keygen.c:1926 sm/certreqgen-ui.c:157 +#: g10/card-util.c:1434 g10/keygen.c:1980 sm/certreqgen-ui.c:157 msgid "Please select what kind of key you want:\n" msgstr "ご希望の鍵の種類を選択してください:\n" -#: g10/card-util.c:1436 sm/certreqgen-ui.c:158 +#: g10/card-util.c:1435 sm/certreqgen-ui.c:158 #, c-format msgid " (%d) RSA\n" msgstr " (%d) RSA\n" -#: g10/card-util.c:1437 +#: g10/card-util.c:1436 #, c-format msgid " (%d) ECC\n" msgstr " (%d) ECC\n" -#: g10/card-util.c:1449 g10/card-util.c:1716 g10/card-util.c:1816 -#: g10/keyedit.c:900 g10/keygen.c:1834 g10/keygen.c:1862 g10/keygen.c:1987 -#: g10/keygen.c:2222 g10/keygen.c:2505 g10/revoke.c:838 +#: g10/card-util.c:1448 g10/card-util.c:1715 g10/card-util.c:1815 +#: g10/keyedit.c:900 g10/keygen.c:1888 g10/keygen.c:1916 g10/keygen.c:2041 +#: g10/keygen.c:2276 g10/keygen.c:2559 g10/revoke.c:838 msgid "Invalid selection.\n" msgstr "無効な選択です。\n" -#: g10/card-util.c:1522 +#: g10/card-util.c:1521 #, c-format msgid "The card will now be re-configured to generate a key of %u bits\n" msgstr "カードは、今、%uビットの鍵を生成するように再コンフィグされます\n" -#: g10/card-util.c:1527 +#: g10/card-util.c:1526 #, c-format msgid "The card will now be re-configured to generate a key of type: %s\n" msgstr "" "カードは、今、こちらのタイプの鍵を生成するように再コンフィグされます: %s\n" -#: g10/card-util.c:1563 +#: g10/card-util.c:1562 #, c-format msgid "error changing key attribute for key %d: %s\n" msgstr "鍵%dの属性を変更する際にエラー: %s\n" -#: g10/card-util.c:1579 g10/card-util.c:2106 +#: g10/card-util.c:1578 g10/card-util.c:2105 #, c-format msgid "error getting card info: %s\n" msgstr "カード情報の取得エラー: %s\n" -#: g10/card-util.c:1585 g10/card-util.c:1930 g10/card-util.c:2112 +#: g10/card-util.c:1584 g10/card-util.c:1929 g10/card-util.c:2111 #, c-format msgid "This command is not supported by this card\n" msgstr "このカードでは、このコマンドはサポートされていません。\n" -#: g10/card-util.c:1631 +#: g10/card-util.c:1630 msgid "Make off-card backup of encryption key? (Y/n) " msgstr "暗号化鍵のカード外バックアップを作成しますか? (Y/n) " -#: g10/card-util.c:1645 +#: g10/card-util.c:1644 #, c-format msgid "Note: keys are already stored on the card!\n" msgstr "注意: 秘密鍵はもうカードに保管してあります!\n" -#: g10/card-util.c:1648 +#: g10/card-util.c:1647 msgid "Replace existing keys? (y/N) " msgstr "既存の鍵を置き換えますか? (y/N) " -#: g10/card-util.c:1660 +#: g10/card-util.c:1659 #, c-format msgid "" "Please note that the factory settings of the PINs are\n" @@ -2069,142 +2069,142 @@ " PIN = '%s' 管理者PIN = '%s'\n" "次のコマンドを使って変更すべきです --change-pin\n" -#: g10/card-util.c:1695 +#: g10/card-util.c:1694 msgid "Please select the type of key to generate:\n" msgstr "生成する鍵の型を選択してください:\n" -#: g10/card-util.c:1697 g10/card-util.c:1787 +#: g10/card-util.c:1696 g10/card-util.c:1786 msgid " (1) Signature key\n" msgstr " (1) 署名鍵\n" -#: g10/card-util.c:1698 g10/card-util.c:1789 +#: g10/card-util.c:1697 g10/card-util.c:1788 msgid " (2) Encryption key\n" msgstr " (2) 暗号化鍵\n" -#: g10/card-util.c:1699 g10/card-util.c:1791 +#: g10/card-util.c:1698 g10/card-util.c:1790 msgid " (3) Authentication key\n" msgstr " (3) 認証鍵\n" -#: g10/card-util.c:1784 +#: g10/card-util.c:1783 msgid "Please select where to store the key:\n" msgstr "鍵を保管する場所を選択してください:\n" -#: g10/card-util.c:1830 +#: g10/card-util.c:1829 #, c-format msgid "KEYTOCARD failed: %s\n" msgstr "KEYTOCARDが失敗しました: %s\n" -#: g10/card-util.c:1935 +#: g10/card-util.c:1934 #, c-format msgid "Note: This command destroys all keys stored on the card!\n" msgstr "注意: このコマンドはカードに保管してあるすべての鍵を破壊します!\n" -#: g10/card-util.c:1938 +#: g10/card-util.c:1937 msgid "Continue? (y/N) " msgstr "続けますか? (y/N) " -#: g10/card-util.c:1943 +#: g10/card-util.c:1942 msgid "Really do a factory reset? (enter \"yes\") " msgstr "工場出荷リセットを行いますか? (本当なら \"yes\" と入力) " -#: g10/card-util.c:2129 +#: g10/card-util.c:2128 #, c-format msgid "error for setup KDF: %s\n" msgstr "KDF設定のエラー: %s\n" -#: g10/card-util.c:2158 g10/keyedit.c:1260 +#: g10/card-util.c:2157 g10/keyedit.c:1260 msgid "quit this menu" msgstr "このメニューを終了" -#: g10/card-util.c:2160 +#: g10/card-util.c:2159 msgid "show admin commands" msgstr "管理コマンドを表示" -#: g10/card-util.c:2161 g10/keyedit.c:1263 +#: g10/card-util.c:2160 g10/keyedit.c:1263 msgid "show this help" msgstr "このヘルプを表示" -#: g10/card-util.c:2163 +#: g10/card-util.c:2162 msgid "list all available data" msgstr "全有効データを表示" -#: g10/card-util.c:2166 +#: g10/card-util.c:2165 msgid "change card holder's name" msgstr "カード所有者の名前の変更" -#: g10/card-util.c:2167 +#: g10/card-util.c:2166 msgid "change URL to retrieve key" msgstr "鍵を取得するURLの変更" -#: g10/card-util.c:2168 +#: g10/card-util.c:2167 msgid "fetch the key specified in the card URL" msgstr "カードURLで指定された鍵の取得" -#: g10/card-util.c:2169 +#: g10/card-util.c:2168 msgid "change the login name" msgstr "ログイン名の変更" -#: g10/card-util.c:2170 +#: g10/card-util.c:2169 msgid "change the language preferences" msgstr "言語の優先指定の変更" -#: g10/card-util.c:2171 +#: g10/card-util.c:2170 msgid "change card holder's salutation" msgstr "カード所有者の敬称の変更" -#: g10/card-util.c:2173 +#: g10/card-util.c:2172 msgid "change a CA fingerprint" msgstr "CAフィンガープリントの変更" -#: g10/card-util.c:2174 +#: g10/card-util.c:2173 msgid "toggle the signature force PIN flag" msgstr "署名強制PINフラグを反転" -#: g10/card-util.c:2175 +#: g10/card-util.c:2174 msgid "generate new keys" msgstr "新しい鍵を生成" -#: g10/card-util.c:2176 +#: g10/card-util.c:2175 msgid "menu to change or unblock the PIN" msgstr "PINブロックの解除や変更のメニュー" -#: g10/card-util.c:2177 +#: g10/card-util.c:2176 msgid "verify the PIN and list all data" msgstr "PINを確認しすべてのデータを表示する" -#: g10/card-util.c:2178 +#: g10/card-util.c:2177 msgid "unblock the PIN using a Reset Code" msgstr "PINをリセット・コードでブロックを解除する" -#: g10/card-util.c:2179 +#: g10/card-util.c:2178 msgid "destroy all keys and data" msgstr "すべての鍵とデータを破壊します" -#: g10/card-util.c:2180 +#: g10/card-util.c:2179 msgid "setup KDF for PIN authentication" msgstr "PIN認証のKDFを設定する" -#: g10/card-util.c:2181 +#: g10/card-util.c:2180 msgid "change the key attribute" msgstr "鍵の属性の変更" -#: g10/card-util.c:2305 +#: g10/card-util.c:2304 msgid "gpg/card> " msgstr "gpg/card> " -#: g10/card-util.c:2346 +#: g10/card-util.c:2345 msgid "Admin-only command\n" msgstr "管理者専用コマンド\n" -#: g10/card-util.c:2377 +#: g10/card-util.c:2376 msgid "Admin commands are allowed\n" msgstr "管理者コマンドが許可されています\n" -#: g10/card-util.c:2379 +#: g10/card-util.c:2378 msgid "Admin commands are not allowed\n" msgstr "管理者コマンドは禁止されています\n" -#: g10/card-util.c:2482 g10/keyedit.c:2229 +#: g10/card-util.c:2481 g10/keyedit.c:2229 msgid "Invalid command (try \"help\")\n" msgstr "無効なコマンド (\"help\"を参照)\n" @@ -2213,21 +2213,21 @@ msgid "--output doesn't work for this command\n" msgstr "このコマンドで--outputは機能しません\n" -#: g10/decrypt.c:247 g10/gpg.c:5155 g10/keyring.c:399 g10/keyring.c:750 +#: g10/decrypt.c:247 g10/gpg.c:5175 g10/keyring.c:399 g10/keyring.c:750 #, c-format msgid "can't open '%s'\n" msgstr "'%s'が開けません\n" -#: g10/delkey.c:83 g10/export.c:1947 g10/export.c:2230 g10/export.c:2351 -#: g10/getkey.c:2108 g10/gpg.c:5100 g10/keyedit.c:1445 g10/keyedit.c:2335 +#: g10/delkey.c:83 g10/export.c:2035 g10/export.c:2349 g10/export.c:2470 +#: g10/getkey.c:2108 g10/gpg.c:5120 g10/keyedit.c:1445 g10/keyedit.c:2335 #: g10/keyedit.c:2637 g10/keyedit.c:4600 g10/keylist.c:693 g10/keyserver.c:1092 #: g10/revoke.c:230 g10/tofu.c:2165 #, c-format msgid "key \"%s\" not found: %s\n" msgstr "鍵\"%s\"が見つかりません: %s\n" -#: g10/delkey.c:92 g10/export.c:2015 g10/getkey.c:2116 g10/getkey.c:4517 -#: g10/gpg.c:5109 g10/keyedit.c:2308 g10/keyserver.c:1110 g10/revoke.c:236 +#: g10/delkey.c:92 g10/export.c:2103 g10/getkey.c:2116 g10/getkey.c:4517 +#: g10/gpg.c:5129 g10/keyedit.c:2308 g10/keyserver.c:1110 g10/revoke.c:236 #: g10/revoke.c:663 g10/tofu.c:2173 #, c-format msgid "error reading keyblock: %s\n" @@ -2344,13 +2344,13 @@ msgid "WARNING: '%s' is an empty file\n" msgstr "*警告*: '%s'は空のファイルです\n" -#: g10/encrypt.c:446 g10/encrypt.c:521 g10/decrypt-data.c:266 g10/gpg.c:3959 -#: g10/gpg.c:3999 sm/decrypt.c:826 sm/encrypt.c:416 sm/gpgsm.c:1609 +#: g10/encrypt.c:446 g10/encrypt.c:521 g10/decrypt-data.c:266 g10/gpg.c:3979 +#: g10/gpg.c:4019 sm/decrypt.c:826 sm/encrypt.c:416 sm/gpgsm.c:1609 #, c-format msgid "cipher algorithm '%s' may not be used in %s mode\n" msgstr "暗号アルゴリズム'%s'を%sモードで使うことはできません\n" -#: g10/encrypt.c:455 g10/gpg.c:3965 g10/gpg.c:4011 g10/sig-check.c:175 +#: g10/encrypt.c:455 g10/gpg.c:3985 g10/gpg.c:4031 g10/sig-check.c:175 #: g10/sign.c:391 sm/gpgsm.c:1619 sm/gpgsm.c:1629 sm/sign.c:478 sm/verify.c:506 #, c-format msgid "digest algorithm '%s' may not be used in %s mode\n" @@ -2464,61 +2464,67 @@ msgid "WARNING: unable to remove temp directory '%s': %s\n" msgstr "*警告*: 一時ディレクトリ'%s'を削除できません: %s\n" -#: g10/export.c:119 +#: g10/export.c:124 msgid "export signatures that are marked as local-only" msgstr "ローカルのみと指定された署名をエクスポートします" -#: g10/export.c:121 +#: g10/export.c:126 msgid "export attribute user IDs (generally photo IDs)" msgstr "ユーザIDの属性(通常フォトID)をエクスポートします" -#: g10/export.c:123 +#: g10/export.c:128 msgid "export revocation keys marked as \"sensitive\"" msgstr "\"sensitive\"(機密)と指定された失効鍵をエクスポートします" -#: g10/export.c:125 +#: g10/export.c:130 msgid "remove unusable parts from key during export" msgstr "エクスポートの際、利用できない部分を除去する" -#: g10/export.c:127 +#: g10/export.c:132 msgid "remove as much as possible from key during export" msgstr "エクスポートの際、できるだけ除去する" -#: g10/export.c:133 +#: g10/export.c:138 +#, fuzzy +#| msgid "generate a revocation certificate" +msgid "export only revocation certificates" +msgstr "失効証明書を生成" + +#: g10/export.c:141 msgid "use the GnuPG key backup format" msgstr "GnuPGの鍵のバックアップフォーマットを使います" -#: g10/export.c:1291 +#: g10/export.c:1306 msgid " - skipped" msgstr " - スキップされました" -#: g10/export.c:1324 g10/import.c:2085 g10/openfile.c:200 g10/openfile.c:294 +#: g10/export.c:1339 g10/import.c:2089 g10/openfile.c:200 g10/openfile.c:294 #: g10/sign.c:1012 g10/sign.c:1326 #, c-format msgid "writing to '%s'\n" msgstr "'%s'への書き込み\n" -#: g10/export.c:1769 +#: g10/export.c:1784 #, c-format msgid "key %s: key material on-card - skipped\n" msgstr "鍵%s: 鍵はカード上にあります - スキップします\n" -#: g10/export.c:1964 +#: g10/export.c:2052 #, c-format msgid "exporting secret keys not allowed\n" msgstr "秘密鍵のエクスポートは認められません\n" -#: g10/export.c:2041 +#: g10/export.c:2129 #, c-format msgid "key %s: PGP 2.x style key - skipped\n" msgstr "鍵%s: PGP 2.x形式の鍵です - スキップします\n" -#: g10/export.c:2135 +#: g10/export.c:2254 #, c-format msgid "WARNING: nothing exported\n" msgstr "*警告*: 何もエクスポートされていません\n" -#: g10/export.c:2432 g10/plaintext.c:153 g10/plaintext.c:162 +#: g10/export.c:2551 g10/plaintext.c:153 g10/plaintext.c:162 #: g10/plaintext.c:168 g10/plaintext.c:191 #, c-format msgid "error creating '%s': %s\n" @@ -2582,268 +2588,268 @@ msgid "using subkey %s instead of primary key %s\n" msgstr "副鍵%s(主鍵%sではなく)を用います\n" -#: g10/getkey.c:4446 g10/gpg.c:2137 +#: g10/getkey.c:4446 g10/gpg.c:2146 #, c-format msgid "valid values for option '%s':\n" msgstr "オプション'%s'に有効な値:\n" -#: g10/gpg.c:443 sm/gpgsm.c:212 +#: g10/gpg.c:444 sm/gpgsm.c:212 msgid "make a signature" msgstr "署名を作成" -#: g10/gpg.c:444 +#: g10/gpg.c:445 msgid "make a clear text signature" msgstr "クリア・テクスト署名を作成" -#: g10/gpg.c:446 sm/gpgsm.c:214 +#: g10/gpg.c:447 sm/gpgsm.c:214 msgid "make a detached signature" msgstr "分遣署名を作成" -#: g10/gpg.c:447 sm/gpgsm.c:215 +#: g10/gpg.c:448 sm/gpgsm.c:215 msgid "encrypt data" msgstr "データを暗号化" -#: g10/gpg.c:449 +#: g10/gpg.c:450 msgid "encryption only with symmetric cipher" msgstr "暗号化には共通鍵暗号方式のみを使用" -#: g10/gpg.c:451 sm/gpgsm.c:217 +#: g10/gpg.c:452 sm/gpgsm.c:217 msgid "decrypt data (default)" msgstr "データを復号 (デフォルト)" -#: g10/gpg.c:453 sm/gpgsm.c:218 +#: g10/gpg.c:454 sm/gpgsm.c:218 msgid "verify a signature" msgstr "署名を検証" -#: g10/gpg.c:455 sm/gpgsm.c:219 +#: g10/gpg.c:456 sm/gpgsm.c:219 msgid "list keys" msgstr "鍵の一覧" -#: g10/gpg.c:457 +#: g10/gpg.c:458 msgid "list keys and signatures" msgstr "鍵と署名の一覧" -#: g10/gpg.c:460 +#: g10/gpg.c:461 msgid "list and check key signatures" msgstr "鍵署名の検査と一覧" -#: g10/gpg.c:462 sm/gpgsm.c:224 +#: g10/gpg.c:463 sm/gpgsm.c:224 msgid "list keys and fingerprints" msgstr "鍵とフィンガープリントの一覧" -#: g10/gpg.c:463 sm/gpgsm.c:222 +#: g10/gpg.c:464 sm/gpgsm.c:222 msgid "list secret keys" msgstr "秘密鍵の一覧" -#: g10/gpg.c:465 sm/gpgsm.c:225 +#: g10/gpg.c:466 sm/gpgsm.c:225 msgid "generate a new key pair" msgstr "新しい鍵ペアを生成" -#: g10/gpg.c:468 +#: g10/gpg.c:469 msgid "quickly generate a new key pair" msgstr "すばやく新しい鍵ペアを生成" -#: g10/gpg.c:471 +#: g10/gpg.c:472 msgid "quickly add a new user-id" msgstr "すばやく新しいユーザIDを追加" -#: g10/gpg.c:476 +#: g10/gpg.c:477 msgid "quickly revoke a user-id" msgstr "すばやくユーザIDを失効" -#: g10/gpg.c:479 +#: g10/gpg.c:480 msgid "quickly set a new expiration date" msgstr "すばやく新しい有効期限を設定" -#: g10/gpg.c:482 +#: g10/gpg.c:483 msgid "full featured key pair generation" msgstr "全機能の鍵ペアを生成" -#: g10/gpg.c:485 +#: g10/gpg.c:486 msgid "generate a revocation certificate" msgstr "失効証明書を生成" -#: g10/gpg.c:488 sm/gpgsm.c:228 +#: g10/gpg.c:489 sm/gpgsm.c:228 msgid "remove keys from the public keyring" msgstr "公開鍵リングから鍵を削除" -#: g10/gpg.c:490 +#: g10/gpg.c:491 msgid "remove keys from the secret keyring" msgstr "秘密鍵リングから鍵を削除" -#: g10/gpg.c:492 +#: g10/gpg.c:493 msgid "quickly sign a key" msgstr "すばやく鍵に署名" -#: g10/gpg.c:494 +#: g10/gpg.c:495 msgid "quickly sign a key locally" msgstr "すばやく鍵へローカルに署名" -#: g10/gpg.c:496 +#: g10/gpg.c:497 msgid "quickly revoke a key signature" msgstr "すばやく鍵への署名を失効" -#: g10/gpg.c:497 +#: g10/gpg.c:498 msgid "sign a key" msgstr "鍵に署名" -#: g10/gpg.c:498 +#: g10/gpg.c:499 msgid "sign a key locally" msgstr "鍵へローカルに署名" -#: g10/gpg.c:499 +#: g10/gpg.c:500 msgid "sign or edit a key" msgstr "鍵への署名や編集" -#: g10/gpg.c:501 sm/gpgsm.c:246 +#: g10/gpg.c:502 sm/gpgsm.c:246 msgid "change a passphrase" msgstr "パスフレーズの変更" -#: g10/gpg.c:505 +#: g10/gpg.c:506 msgid "export keys" msgstr "鍵をエクスポートする" -#: g10/gpg.c:506 +#: g10/gpg.c:507 msgid "export keys to a keyserver" msgstr "鍵サーバに鍵をエクスポートする" -#: g10/gpg.c:507 +#: g10/gpg.c:508 msgid "import keys from a keyserver" msgstr "鍵サーバから鍵をインポートする" -#: g10/gpg.c:510 +#: g10/gpg.c:511 msgid "search for keys on a keyserver" msgstr "鍵サーバの鍵を検索する" -#: g10/gpg.c:512 +#: g10/gpg.c:513 msgid "update all keys from a keyserver" msgstr "鍵サーバから鍵を全部更新する" -#: g10/gpg.c:520 +#: g10/gpg.c:521 msgid "import/merge keys" msgstr "鍵のインポート/マージ" -#: g10/gpg.c:523 +#: g10/gpg.c:524 msgid "print the card status" msgstr "カード・ステイタスを表示" -#: g10/gpg.c:524 +#: g10/gpg.c:525 msgid "change data on a card" msgstr "カードのデータを変更" -#: g10/gpg.c:526 +#: g10/gpg.c:527 msgid "change a card's PIN" msgstr "カードのPINを変更" -#: g10/gpg.c:538 +#: g10/gpg.c:539 msgid "update the trust database" msgstr "信用データベースを更新" -#: g10/gpg.c:548 +#: g10/gpg.c:549 msgid "print message digests" msgstr "メッセージ・ダイジェストを表示" -#: g10/gpg.c:552 sm/gpgsm.c:241 +#: g10/gpg.c:553 sm/gpgsm.c:241 msgid "run in server mode" msgstr "サーバ・モードで実行" -#: g10/gpg.c:554 +#: g10/gpg.c:555 msgid "|VALUE|set the TOFU policy for a key" msgstr "|VALUE|TOFUポリシーを鍵に設定する" -#: g10/gpg.c:594 +#: g10/gpg.c:595 msgid "|NAME|use NAME as default secret key" msgstr "|NAME|デフォルトの秘密鍵としてNAMEを用いる" -#: g10/gpg.c:596 sm/gpgsm.c:332 +#: g10/gpg.c:597 sm/gpgsm.c:332 msgid "|NAME|encrypt to user ID NAME as well" msgstr "|NAME|ユーザID NAMEにも暗号化する" -#: g10/gpg.c:604 +#: g10/gpg.c:605 msgid "|SPEC|set up email aliases" msgstr "|SPEC|電子メールエイリアスを設定する" -#: g10/gpg.c:616 +#: g10/gpg.c:617 msgid "use strict OpenPGP behavior" msgstr "厳密なOpenPGPの振舞を採用" -#: g10/gpg.c:641 kbx/kbxutil.c:90 sm/gpgsm.c:412 tools/gpgconf.c:112 +#: g10/gpg.c:642 kbx/kbxutil.c:90 sm/gpgsm.c:412 tools/gpgconf.c:112 msgid "do not make any changes" msgstr "無変更" -#: g10/gpg.c:642 +#: g10/gpg.c:643 msgid "prompt before overwriting" msgstr "上書き前に確認" -#: g10/gpg.c:689 sm/gpgsm.c:304 +#: g10/gpg.c:690 sm/gpgsm.c:304 msgid "Options controlling the input" msgstr "入力を制御するオプション" -#: g10/gpg.c:707 sm/gpgsm.c:314 +#: g10/gpg.c:708 sm/gpgsm.c:314 msgid "Options controlling the output" msgstr "出力を制御するオプション" -#: g10/gpg.c:709 sm/gpgsm.c:316 +#: g10/gpg.c:710 sm/gpgsm.c:316 msgid "create ascii armored output" msgstr "ASCII形式の外装を作成" -#: g10/gpg.c:713 g10/gpgv.c:82 sm/gpgsm.c:321 +#: g10/gpg.c:714 g10/gpgv.c:82 sm/gpgsm.c:321 msgid "|FILE|write output to FILE" msgstr "|FILE|出力をFILEに書き出す" -#: g10/gpg.c:726 +#: g10/gpg.c:727 msgid "use canonical text mode" msgstr "正準テキスト・モードを使用" -#: g10/gpg.c:743 +#: g10/gpg.c:744 msgid "|N|set compress level to N (0 disables)" msgstr "|N|圧縮レベルをNに設定 (0は非圧縮)" -#: g10/gpg.c:750 sm/gpgsm.c:347 +#: g10/gpg.c:751 sm/gpgsm.c:347 msgid "Options controlling key import and export" msgstr "鍵のインポートとエクスポートを制御するオプション" -#: g10/gpg.c:753 +#: g10/gpg.c:754 msgid "|MECHANISMS|use MECHANISMS to locate keys by mail address" msgstr "|MECHANISMS|メールアドレスによって鍵を特定する際、MECHANISMSを使用する" -#: g10/gpg.c:756 +#: g10/gpg.c:757 msgid "import missing key from a signature" msgstr "署名から手元にない鍵をインポートする" -#: g10/gpg.c:761 +#: g10/gpg.c:762 msgid "include the public key in signatures" msgstr "署名に公開鍵を含める" -#: g10/gpg.c:764 sm/gpgsm.c:350 +#: g10/gpg.c:765 sm/gpgsm.c:350 msgid "disable all access to the dirmngr" msgstr "dirmngrへのすべてのアクセスを無効とする" -#: g10/gpg.c:776 sm/gpgsm.c:357 +#: g10/gpg.c:777 sm/gpgsm.c:357 msgid "Options controlling key listings" msgstr "鍵のリスティングを制御するオプション" -#: g10/gpg.c:805 sm/gpgsm.c:324 +#: g10/gpg.c:806 sm/gpgsm.c:324 msgid "Options to specify keys" msgstr "鍵を指定するオプション" -#: g10/gpg.c:807 sm/gpgsm.c:326 +#: g10/gpg.c:808 sm/gpgsm.c:326 msgid "|USER-ID|encrypt for USER-ID" msgstr "|USER-ID|USER-ID用に暗号化" -#: g10/gpg.c:815 sm/gpgsm.c:328 +#: g10/gpg.c:816 sm/gpgsm.c:328 msgid "|USER-ID|use USER-ID to sign or decrypt" msgstr "|USER-ID|署名や復号にこのUSER-IDを使用" -#: g10/gpg.c:866 sm/gpgsm.c:396 +#: g10/gpg.c:867 sm/gpgsm.c:396 msgid "Options for unattended use" msgstr "無人(unattended)使用のためのオプション" -#: g10/gpg.c:885 sm/gpgsm.c:408 dirmngr/dirmngr.c:294 +#: g10/gpg.c:886 sm/gpgsm.c:408 dirmngr/dirmngr.c:294 msgid "Other options" msgstr "そのほかのオプション" -#: g10/gpg.c:953 sm/gpgsm.c:440 +#: g10/gpg.c:955 sm/gpgsm.c:440 msgid "" "@\n" "(See the man page for a complete listing of all commands and options)\n" @@ -2851,7 +2857,7 @@ "@\n" "(コマンドとオプション全部の一覧は、マニュアル・ページをご覧ください)\n" -#: g10/gpg.c:956 +#: g10/gpg.c:958 msgid "" "@\n" "Examples:\n" @@ -2871,11 +2877,11 @@ " --list-keys [名前] 鍵を表示\n" " --fingerprint [名前] フィンガープリントを表示\n" -#: g10/gpg.c:1130 +#: g10/gpg.c:1139 msgid "Usage: @GPG@ [options] [files] (-h for help)" msgstr "使い方: @GPG@ [オプション] [ファイル] (ヘルプは -h)" -#: g10/gpg.c:1133 +#: g10/gpg.c:1142 msgid "" "Syntax: @GPG@ [options] [files]\n" "Sign, check, encrypt or decrypt\n" @@ -2885,7 +2891,7 @@ "署名、検査、暗号化または復号\n" "デフォルトの操作は、入力データに依存\n" -#: g10/gpg.c:1144 sm/gpgsm.c:624 +#: g10/gpg.c:1153 sm/gpgsm.c:624 msgid "" "\n" "Supported algorithms:\n" @@ -2893,541 +2899,541 @@ "\n" "サポートしているアルゴリズム:\n" -#: g10/gpg.c:1147 +#: g10/gpg.c:1156 msgid "Pubkey: " msgstr "公開鍵: " -#: g10/gpg.c:1154 g10/keyedit.c:3338 +#: g10/gpg.c:1163 g10/keyedit.c:3338 msgid "Cipher: " msgstr "暗号方式: " -#: g10/gpg.c:1161 +#: g10/gpg.c:1170 msgid "Hash: " msgstr "ハッシュ: " -#: g10/gpg.c:1168 g10/keyedit.c:3404 +#: g10/gpg.c:1177 g10/keyedit.c:3404 msgid "Compression: " msgstr "圧縮: " -#: g10/gpg.c:1241 sm/gpgsm.c:698 +#: g10/gpg.c:1250 sm/gpgsm.c:698 #, c-format msgid "usage: %s [options] %s\n" msgstr "使い方: %s [オプション] %s\n" -#: g10/gpg.c:1436 sm/gpgsm.c:791 +#: g10/gpg.c:1445 sm/gpgsm.c:791 #, c-format msgid "conflicting commands\n" msgstr "対立するコマンド\n" -#: g10/gpg.c:1454 +#: g10/gpg.c:1463 #, c-format msgid "no = sign found in group definition '%s'\n" msgstr "=記号が、グループ定義'%s'内に見つかりません\n" -#: g10/gpg.c:1652 +#: g10/gpg.c:1661 #, c-format msgid "WARNING: unsafe ownership on homedir '%s'\n" msgstr "*警告*: homedir '%s'の安全でない所有\n" -#: g10/gpg.c:1655 +#: g10/gpg.c:1664 #, c-format msgid "WARNING: unsafe ownership on configuration file '%s'\n" msgstr "*警告*: コンフィグレーション・ファイル'%s'の安全でない所有\n" -#: g10/gpg.c:1658 +#: g10/gpg.c:1667 #, c-format msgid "WARNING: unsafe ownership on extension '%s'\n" msgstr "*警告*: 拡張'%s'の安全でない所有\n" -#: g10/gpg.c:1664 +#: g10/gpg.c:1673 #, c-format msgid "WARNING: unsafe permissions on homedir '%s'\n" msgstr "*警告*: homedir '%s'の安全でない許可\n" -#: g10/gpg.c:1667 +#: g10/gpg.c:1676 #, c-format msgid "WARNING: unsafe permissions on configuration file '%s'\n" msgstr "*警告*: コンフィグレーション・ファイル'%s'の安全でない許可\n" -#: g10/gpg.c:1670 +#: g10/gpg.c:1679 #, c-format msgid "WARNING: unsafe permissions on extension '%s'\n" msgstr "*警告*: 拡張'%s'の安全でない許可\n" -#: g10/gpg.c:1676 +#: g10/gpg.c:1685 #, c-format msgid "WARNING: unsafe enclosing directory ownership on homedir '%s'\n" msgstr "*警告*: homedir '%s'の安全でない上位ディレクトリ所有\n" -#: g10/gpg.c:1679 +#: g10/gpg.c:1688 #, c-format msgid "" "WARNING: unsafe enclosing directory ownership on configuration file '%s'\n" msgstr "" "*警告*: コンフィグレーション・ファイル'%s'の安全でない上位ディレクトリ所有\n" -#: g10/gpg.c:1682 +#: g10/gpg.c:1691 #, c-format msgid "WARNING: unsafe enclosing directory ownership on extension '%s'\n" msgstr "*警告*: 拡張'%s'の安全でない上位ディレクトリ所有\n" -#: g10/gpg.c:1688 +#: g10/gpg.c:1697 #, c-format msgid "WARNING: unsafe enclosing directory permissions on homedir '%s'\n" msgstr "*警告*: homedir '%s'の安全でない上位ディレクトリ許可\n" -#: g10/gpg.c:1691 +#: g10/gpg.c:1700 #, c-format msgid "" "WARNING: unsafe enclosing directory permissions on configuration file '%s'\n" msgstr "" "*警告*: コンフィグレーション・ファイル'%s'の安全でない上位ディレクトリ許可\n" -#: g10/gpg.c:1694 +#: g10/gpg.c:1703 #, c-format msgid "WARNING: unsafe enclosing directory permissions on extension '%s'\n" msgstr "*警告*: 拡張'%s'の安全でない上位ディレクトリ許可\n" -#: g10/gpg.c:1910 +#: g10/gpg.c:1919 #, c-format msgid "unknown configuration item '%s'\n" msgstr "不明のコンフィグレーション項目'%s'\n" -#: g10/gpg.c:2009 +#: g10/gpg.c:2018 msgid "display photo IDs during key listings" msgstr "鍵の一覧時にフォトIDを表示する" -#: g10/gpg.c:2011 +#: g10/gpg.c:2020 msgid "show key usage information during key listings" msgstr "鍵の一覧時に鍵の使い方の情報を表示する" -#: g10/gpg.c:2013 +#: g10/gpg.c:2022 msgid "show policy URLs during signature listings" msgstr "署名の一覧時にポリシーURLを表示する" -#: g10/gpg.c:2015 +#: g10/gpg.c:2024 msgid "show all notations during signature listings" msgstr "署名の一覧時にすべての注釈を表示する" -#: g10/gpg.c:2017 +#: g10/gpg.c:2026 msgid "show IETF standard notations during signature listings" msgstr "署名の一覧時にIETF標準注釈を表示する" -#: g10/gpg.c:2021 +#: g10/gpg.c:2030 msgid "show user-supplied notations during signature listings" msgstr "署名の一覧時にユーザの注釈を表示する" -#: g10/gpg.c:2023 +#: g10/gpg.c:2032 msgid "show preferred keyserver URLs during signature listings" msgstr "署名の一覧時に優先鍵サーバURLを表示する" -#: g10/gpg.c:2025 +#: g10/gpg.c:2034 msgid "show user ID validity during key listings" msgstr "鍵の一覧時にユーザIDの有効性を表示する" -#: g10/gpg.c:2027 +#: g10/gpg.c:2036 msgid "show revoked and expired user IDs in key listings" msgstr "鍵の一覧に失効したユーザID、期限切れとなったユーザIDを表示する" -#: g10/gpg.c:2029 +#: g10/gpg.c:2038 msgid "show revoked and expired subkeys in key listings" msgstr "鍵の一覧に失効した副鍵、期限切れとなった副鍵を表示する" -#: g10/gpg.c:2031 +#: g10/gpg.c:2040 msgid "show the keyring name in key listings" msgstr "鍵の一覧に鍵リングの名前を表示する" -#: g10/gpg.c:2033 +#: g10/gpg.c:2042 msgid "show expiration dates during signature listings" msgstr "署名の一覧時に有効期限の日付を表示する" -#: g10/gpg.c:2148 +#: g10/gpg.c:2157 #, c-format msgid "unknown TOFU policy '%s'\n" msgstr "不明のTOFUポリシー'%s'\n" -#: g10/gpg.c:2150 +#: g10/gpg.c:2159 #, c-format msgid "(use \"help\" to list choices)\n" msgstr "(選択肢の一覧には\"help\"を使ってください)\n" -#: g10/gpg.c:2240 g10/keyedit.c:1719 +#: g10/gpg.c:2249 g10/keyedit.c:1719 #, c-format msgid "This command is not allowed while in %s mode.\n" msgstr "%sモードでこのコマンドは禁止です。\n" -#: g10/gpg.c:2878 g10/gpg.c:3718 g10/gpg.c:3730 +#: g10/gpg.c:2896 g10/gpg.c:3736 g10/gpg.c:3748 #, c-format msgid "Note: %s is not for normal use!\n" msgstr "注意: 普通%sは使いません!\n" -#: g10/gpg.c:3053 g10/gpg.c:3065 +#: g10/gpg.c:3071 g10/gpg.c:3083 #, c-format msgid "'%s' is not a valid signature expiration\n" msgstr "'%s'は、有効な署名表現ではありません\n" -#: g10/gpg.c:3087 +#: g10/gpg.c:3105 #, c-format msgid "\"%s\" is not a proper mail address\n" msgstr "\"%s\"は正しいメール・アドレスではありません\n" -#: g10/gpg.c:3119 sm/gpgsm.c:1121 +#: g10/gpg.c:3137 sm/gpgsm.c:1121 #, c-format msgid "invalid pinentry mode '%s'\n" msgstr "無効な pinentry mode '%s'です\n" -#: g10/gpg.c:3125 sm/gpgsm.c:1127 +#: g10/gpg.c:3143 sm/gpgsm.c:1127 #, c-format msgid "invalid request origin '%s'\n" msgstr "無効な送信元要求 '%s' です\n" -#: g10/gpg.c:3179 +#: g10/gpg.c:3197 #, c-format msgid "'%s' is not a valid character set\n" msgstr "'%s'は、有効な文字集合ではありません\n" -#: g10/gpg.c:3201 g10/gpg.c:3415 g10/keyedit.c:5338 +#: g10/gpg.c:3219 g10/gpg.c:3433 g10/keyedit.c:5338 #, c-format msgid "could not parse keyserver URL\n" msgstr "鍵サーバのURLを解析不能\n" -#: g10/gpg.c:3219 +#: g10/gpg.c:3237 #, c-format msgid "%s:%d: invalid keyserver options\n" msgstr "%s:%d: 無効な鍵サーバ・オプションです\n" -#: g10/gpg.c:3222 +#: g10/gpg.c:3240 #, c-format msgid "invalid keyserver options\n" msgstr "無効な鍵サーバ・オプションです\n" -#: g10/gpg.c:3229 +#: g10/gpg.c:3247 #, c-format msgid "%s:%d: invalid import options\n" msgstr "%s:%d: 無効なインポート・オプションです\n" -#: g10/gpg.c:3232 +#: g10/gpg.c:3250 #, c-format msgid "invalid import options\n" msgstr "無効なインポート・オプションです\n" -#: g10/gpg.c:3238 g10/gpg.c:3253 +#: g10/gpg.c:3256 g10/gpg.c:3271 #, c-format msgid "invalid filter option: %s\n" msgstr "無効なフィルタ・オプションです: %s\n" -#: g10/gpg.c:3244 +#: g10/gpg.c:3262 #, c-format msgid "%s:%d: invalid export options\n" msgstr "%s:%d: 無効なエクスポート・オプションです\n" -#: g10/gpg.c:3247 +#: g10/gpg.c:3265 #, c-format msgid "invalid export options\n" msgstr "無効なエクスポート・オプションです\n" -#: g10/gpg.c:3259 +#: g10/gpg.c:3277 #, c-format msgid "%s:%d: invalid list options\n" msgstr "%s:%d: 無効な一覧オプションです\n" -#: g10/gpg.c:3262 +#: g10/gpg.c:3280 #, c-format msgid "invalid list options\n" msgstr "無効な一覧オプションです\n" -#: g10/gpg.c:3270 +#: g10/gpg.c:3288 msgid "display photo IDs during signature verification" msgstr "署名の検証時にフォトIDを表示する" -#: g10/gpg.c:3272 +#: g10/gpg.c:3290 msgid "show policy URLs during signature verification" msgstr "署名の検証時にポリシーURLを表示する" -#: g10/gpg.c:3274 +#: g10/gpg.c:3292 msgid "show all notations during signature verification" msgstr "署名の検証時にすべての注釈を表示する" -#: g10/gpg.c:3276 +#: g10/gpg.c:3294 msgid "show IETF standard notations during signature verification" msgstr "署名の検証時にIETF標準注釈を表示する" -#: g10/gpg.c:3280 +#: g10/gpg.c:3298 msgid "show user-supplied notations during signature verification" msgstr "署名の検証時にユーザの注釈を表示する" -#: g10/gpg.c:3282 +#: g10/gpg.c:3300 msgid "show preferred keyserver URLs during signature verification" msgstr "署名の検証時に優先鍵サーバURLを表示する" -#: g10/gpg.c:3284 +#: g10/gpg.c:3302 msgid "show user ID validity during signature verification" msgstr "署名の検証時にユーザIDの有効性を表示する" -#: g10/gpg.c:3286 +#: g10/gpg.c:3304 msgid "show revoked and expired user IDs in signature verification" msgstr "署名の検証時に失効したユーザID、期限切れとなったユーザIDを表示する" -#: g10/gpg.c:3288 +#: g10/gpg.c:3306 msgid "show only the primary user ID in signature verification" msgstr "署名の検証時にプライマリ・ユーザIDだけをを表示する" -#: g10/gpg.c:3290 +#: g10/gpg.c:3308 msgid "validate signatures with PKA data" msgstr "PKAデータで署名を検証する" -#: g10/gpg.c:3292 +#: g10/gpg.c:3310 msgid "elevate the trust of signatures with valid PKA data" msgstr "有効なPKAデータで署名の信用度を上昇させる" -#: g10/gpg.c:3299 +#: g10/gpg.c:3317 #, c-format msgid "%s:%d: invalid verify options\n" msgstr "%s:%d: 無効な検証オプションです\n" -#: g10/gpg.c:3302 +#: g10/gpg.c:3320 #, c-format msgid "invalid verify options\n" msgstr "無効な検証オプションです\n" -#: g10/gpg.c:3309 +#: g10/gpg.c:3327 #, c-format msgid "unable to set exec-path to %s\n" msgstr "exec-pathを%sに設定不能\n" -#: g10/gpg.c:3513 +#: g10/gpg.c:3531 #, c-format msgid "%s:%d: invalid auto-key-locate list\n" msgstr "%s:%d: 無効な auto-key-locate リストです\n" -#: g10/gpg.c:3516 +#: g10/gpg.c:3534 #, c-format msgid "invalid auto-key-locate list\n" msgstr "無効な auto-key-locate リストです\n" -#: g10/gpg.c:3700 sm/gpgsm.c:1492 +#: g10/gpg.c:3718 sm/gpgsm.c:1492 #, c-format msgid "WARNING: program may create a core file!\n" msgstr "*警告*: プログラムはcoreファイルを作成することがあります!\n" -#: g10/gpg.c:3711 +#: g10/gpg.c:3729 #, c-format msgid "WARNING: %s overrides %s\n" msgstr "*警告*: %sは%sより優先\n" -#: g10/gpg.c:3720 +#: g10/gpg.c:3738 #, c-format msgid "%s not allowed with %s!\n" msgstr "%sは%sとともに使うことはできません!\n" -#: g10/gpg.c:3723 +#: g10/gpg.c:3741 #, c-format msgid "%s makes no sense with %s!\n" msgstr "%sは%sとともに使っても無意味です!\n" -#: g10/gpg.c:3738 sm/gpgsm.c:1509 dirmngr/dirmngr.c:1205 +#: g10/gpg.c:3756 sm/gpgsm.c:1509 dirmngr/dirmngr.c:1205 #, c-format msgid "WARNING: running with faked system time: " msgstr "*警告*: ニセモノのシステム時刻で実行しています: " -#: g10/gpg.c:3759 +#: g10/gpg.c:3777 #, c-format msgid "will not run with insecure memory due to %s\n" msgstr "%s のため、セキュアでないメモリで実行しません\n" -#: g10/gpg.c:3804 g10/gpg.c:3828 sm/gpgsm.c:1579 +#: g10/gpg.c:3824 g10/gpg.c:3848 sm/gpgsm.c:1579 #, c-format msgid "selected cipher algorithm is invalid\n" msgstr "選択された暗号アルゴリズムは、無効です\n" -#: g10/gpg.c:3816 +#: g10/gpg.c:3836 #, c-format msgid "selected compression algorithm is invalid\n" msgstr "選択された圧縮アルゴリズムは、無効です\n" -#: g10/gpg.c:3822 +#: g10/gpg.c:3842 #, c-format msgid "selected certification digest algorithm is invalid\n" msgstr "選択された証明書ダイジェスト・アルゴリズムは、無効です\n" -#: g10/gpg.c:3837 +#: g10/gpg.c:3857 #, c-format msgid "completes-needed must be greater than 0\n" msgstr "completes-neededは正の値が必要です\n" -#: g10/gpg.c:3839 +#: g10/gpg.c:3859 #, c-format msgid "marginals-needed must be greater than 1\n" msgstr "marginals-neededは1より大きな値が必要です\n" -#: g10/gpg.c:3841 +#: g10/gpg.c:3861 #, c-format msgid "max-cert-depth must be in the range from 1 to 255\n" msgstr "max-cert-depthは1から255の範囲でなければなりません\n" -#: g10/gpg.c:3843 +#: g10/gpg.c:3863 #, c-format 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:3845 +#: g10/gpg.c:3865 #, c-format msgid "invalid min-cert-level; must be 1, 2, or 3\n" msgstr "無効なmin-cert-level。0か1か2か3でなければなりません\n" -#: g10/gpg.c:3849 +#: g10/gpg.c:3869 #, c-format msgid "Note: simple S2K mode (0) is strongly discouraged\n" msgstr "注意: 単純なS2Kモード(0)の使用には強く反対します\n" -#: g10/gpg.c:3853 +#: g10/gpg.c:3873 #, c-format msgid "invalid S2K mode; must be 0, 1 or 3\n" msgstr "無効なS2Kモード。0か1か3でなければなりません\n" -#: g10/gpg.c:3860 +#: g10/gpg.c:3880 #, c-format msgid "invalid default preferences\n" msgstr "無効なデフォルトの優先指定\n" -#: g10/gpg.c:3864 +#: g10/gpg.c:3884 #, c-format msgid "invalid personal cipher preferences\n" msgstr "無効な個人用暗号方式の優先指定\n" -#: g10/gpg.c:3868 +#: g10/gpg.c:3888 #, c-format msgid "invalid personal digest preferences\n" msgstr "無効な個人用ダイジェストの優先指定\n" -#: g10/gpg.c:3872 +#: g10/gpg.c:3892 #, c-format msgid "invalid personal compress preferences\n" msgstr "無効な個人用圧縮の優先指定\n" -#: g10/gpg.c:3908 +#: g10/gpg.c:3928 #, c-format msgid "%s does not yet work with %s\n" msgstr "%sは%sではまだ機能しません\n" -#: g10/gpg.c:3971 +#: g10/gpg.c:3991 #, c-format msgid "compression algorithm '%s' may not be used in %s mode\n" msgstr "圧縮アルゴリズム'%s'を%sモードで使うことはできません\n" -#: g10/gpg.c:4115 +#: g10/gpg.c:4135 #, c-format msgid "failed to initialize the TrustDB: %s\n" msgstr "信用データベースの初期化に失敗しました: %s\n" -#: g10/gpg.c:4127 +#: g10/gpg.c:4147 #, c-format msgid "WARNING: recipients (-r) given without using public key encryption\n" msgstr "*警告*: 公開鍵暗号を使わずに、受取人 (-r) を指定しています\n" -#: g10/gpg.c:4199 +#: g10/gpg.c:4219 #, c-format msgid "symmetric encryption of '%s' failed: %s\n" msgstr "'%s'の共通鍵暗号に失敗しました: %s\n" -#: g10/gpg.c:4228 +#: g10/gpg.c:4248 #, c-format msgid "you cannot use --symmetric --encrypt with --s2k-mode 0\n" msgstr "--symmetric --encryptを--s2k-mode 0で使うことはできません\n" -#: g10/gpg.c:4231 +#: g10/gpg.c:4251 #, c-format msgid "you cannot use --symmetric --encrypt in %s mode\n" msgstr "--symmetric --encryptを%sモードで使うことはできません\n" -#: g10/gpg.c:4289 +#: g10/gpg.c:4309 #, c-format msgid "you cannot use --symmetric --sign --encrypt with --s2k-mode 0\n" msgstr "--symmetric --sign --encryptを--s2k-mode 0で使うことはできません\n" -#: g10/gpg.c:4292 +#: g10/gpg.c:4312 #, c-format msgid "you cannot use --symmetric --sign --encrypt in %s mode\n" msgstr "--symmetric --sign --encryptを%sモードで使うことはできません\n" -#: g10/gpg.c:4692 g10/keyserver.c:1648 +#: g10/gpg.c:4712 g10/keyserver.c:1648 #, c-format msgid "keyserver send failed: %s\n" msgstr "鍵サーバへの送信に失敗しました: %s\n" -#: g10/gpg.c:4697 +#: g10/gpg.c:4717 #, c-format msgid "keyserver receive failed: %s\n" msgstr "鍵サーバからの受信に失敗しました: %s\n" -#: g10/gpg.c:4703 +#: g10/gpg.c:4723 #, c-format msgid "key export failed: %s\n" msgstr "鍵のエクスポートに失敗しました: %s\n" -#: g10/gpg.c:4716 +#: g10/gpg.c:4736 #, c-format msgid "export as ssh key failed: %s\n" msgstr "ssh鍵としてのエクスポートに失敗しました: %s\n" -#: g10/gpg.c:4728 +#: g10/gpg.c:4748 #, c-format msgid "keyserver search failed: %s\n" msgstr "鍵サーバの検索に失敗しました: %s\n" -#: g10/gpg.c:4741 +#: g10/gpg.c:4761 #, c-format msgid "keyserver refresh failed: %s\n" msgstr "鍵サーバの更新に失敗しました: %s\n" -#: g10/gpg.c:4810 +#: g10/gpg.c:4830 #, c-format msgid "dearmoring failed: %s\n" msgstr "外装除去に失敗しました: %s\n" -#: g10/gpg.c:4821 +#: g10/gpg.c:4841 #, c-format msgid "enarmoring failed: %s\n" msgstr "外装に失敗しました: %s\n" -#: g10/gpg.c:4913 +#: g10/gpg.c:4933 #, c-format msgid "invalid hash algorithm '%s'\n" msgstr "無効なハッシュ・アルゴリズム'%s'です\n" -#: g10/gpg.c:5065 g10/tofu.c:2153 +#: g10/gpg.c:5085 g10/tofu.c:2153 #, c-format msgid "error parsing key specification '%s': %s\n" msgstr "鍵指定'%s'の構文解析エラー: %s\n" -#: g10/gpg.c:5078 +#: g10/gpg.c:5098 #, c-format msgid "'%s' does not appear to be a valid key ID, fingerprint or keygrip\n" msgstr "'%s'は有効な鍵ID, フィンガープリント、keygripではないようです。\n" -#: g10/gpg.c:5134 +#: g10/gpg.c:5154 #, c-format msgid "WARNING: no command supplied. Trying to guess what you mean ...\n" msgstr "" "*警告*: コマンドが指定されていません。なにを意味しているのか当ててみま" "す ...\n" -#: g10/gpg.c:5145 +#: g10/gpg.c:5165 #, c-format msgid "Go ahead and type your message ...\n" msgstr "開始します。メッセージを打ってください ...\n" -#: g10/gpg.c:5490 +#: g10/gpg.c:5510 #, c-format msgid "the given certification policy URL is invalid\n" msgstr "あたえられた証明書ポリシーURLは無効です\n" -#: g10/gpg.c:5492 +#: g10/gpg.c:5512 #, c-format msgid "the given signature policy URL is invalid\n" msgstr "あたえられた署名ポリシーURLは無効です\n" -#: g10/gpg.c:5525 +#: g10/gpg.c:5545 #, c-format msgid "the given preferred keyserver URL is invalid\n" msgstr "指定された優先鍵サーバURLは無効です\n" @@ -3469,145 +3475,145 @@ msgid "No help available for '%s'" msgstr "'%s'のヘルプはありません" -#: g10/import.c:169 +#: g10/import.c:170 msgid "import signatures that are marked as local-only" msgstr "ローカルだけとマークされた署名をインポートします" -#: g10/import.c:172 +#: g10/import.c:173 msgid "repair damage from the pks keyserver during import" msgstr "インポートの際、にpksキーサーバからのダメージを修正します" -#: g10/import.c:175 +#: g10/import.c:176 msgid "do not clear the ownertrust values during import" msgstr "インポートの際、所有者信用の値をクリアしない" -#: g10/import.c:178 +#: g10/import.c:179 msgid "do not update the trustdb after import" msgstr "インポート後、信用データベースを更新しない" -#: g10/import.c:181 +#: g10/import.c:182 msgid "show key during import" msgstr "インポートの際、鍵を表示" -#: g10/import.c:184 +#: g10/import.c:185 msgid "only accept updates to existing keys" msgstr "既存の鍵に対する更新のみ認めます" -#: g10/import.c:187 +#: g10/import.c:188 msgid "remove unusable parts from key after import" msgstr "インポート後、利用できない部分を鍵から除去します" -#: g10/import.c:190 +#: g10/import.c:191 msgid "remove as much as possible from key after import" msgstr "インポート後、できるだけ除去します" -#: g10/import.c:193 +#: g10/import.c:194 msgid "ignore key-signatures which are not self-signatures" msgstr "自己署名ではない鍵への署名は無視します" -#: g10/import.c:196 +#: g10/import.c:197 msgid "run import filters and export key immediately" msgstr "インポート・フィルタを実行し鍵をすぐにエクスポートします" -#: g10/import.c:199 +#: g10/import.c:200 msgid "assume the GnuPG key backup format" msgstr "GnuPGの鍵のバックアップフォーマットを仮定します" -#: g10/import.c:203 +#: g10/import.c:204 msgid "repair keys on import" msgstr "インポートの際、鍵を修復する" -#: g10/import.c:392 g10/import.c:711 +#: g10/import.c:393 g10/import.c:712 #, c-format msgid "skipping block of type %d\n" msgstr "型%dのブロックをスキップします\n" -#: g10/import.c:728 +#: g10/import.c:729 #, c-format msgid "%lu keys processed so far\n" msgstr "これまで%lu個の鍵を処理\n" -#: g10/import.c:814 +#: g10/import.c:815 #, c-format msgid "Total number processed: %lu\n" msgstr " 処理数の合計: %lu\n" -#: g10/import.c:817 +#: g10/import.c:818 #, c-format msgid " skipped PGP-2 keys: %lu\n" msgstr " スキップしたPGP-2鍵: %lu\n" -#: g10/import.c:819 +#: g10/import.c:820 #, c-format msgid " skipped new keys: %lu\n" msgstr " スキップした新しい鍵: %lu\n" -#: g10/import.c:822 +#: g10/import.c:823 #, c-format msgid " w/o user IDs: %lu\n" msgstr " ユーザIDなし: %lu\n" -#: g10/import.c:825 sm/import.c:130 +#: g10/import.c:826 sm/import.c:130 #, c-format msgid " imported: %lu" msgstr " インポート: %lu" -#: g10/import.c:829 sm/import.c:134 +#: g10/import.c:830 sm/import.c:134 #, c-format msgid " unchanged: %lu\n" msgstr " 変更なし: %lu\n" -#: g10/import.c:831 +#: g10/import.c:832 #, c-format msgid " new user IDs: %lu\n" msgstr " 新しいユーザID: %lu\n" -#: g10/import.c:833 +#: g10/import.c:834 #, c-format msgid " new subkeys: %lu\n" msgstr " 新しい副鍵: %lu\n" -#: g10/import.c:835 +#: g10/import.c:836 #, c-format msgid " new signatures: %lu\n" msgstr " 新しい署名: %lu\n" -#: g10/import.c:837 +#: g10/import.c:838 #, c-format msgid " new key revocations: %lu\n" msgstr " 新しい鍵の失効: %lu\n" -#: g10/import.c:839 sm/import.c:136 +#: g10/import.c:840 sm/import.c:136 #, c-format msgid " secret keys read: %lu\n" msgstr " 秘密鍵の読み込み: %lu\n" -#: g10/import.c:841 sm/import.c:138 +#: g10/import.c:842 sm/import.c:138 #, c-format msgid " secret keys imported: %lu\n" msgstr " 秘密鍵のインポート: %lu\n" -#: g10/import.c:843 sm/import.c:140 +#: g10/import.c:844 sm/import.c:140 #, c-format msgid " secret keys unchanged: %lu\n" msgstr " 無変更の秘密鍵: %lu\n" -#: g10/import.c:845 sm/import.c:142 +#: g10/import.c:846 sm/import.c:142 #, c-format msgid " not imported: %lu\n" msgstr " 未インポート: %lu\n" -#: g10/import.c:847 +#: g10/import.c:848 #, c-format msgid " signatures cleaned: %lu\n" msgstr " 掃除された署名: %lu\n" -#: g10/import.c:849 +#: g10/import.c:850 #, c-format msgid " user IDs cleaned: %lu\n" msgstr " 掃除されたユーザID: %lu\n" -#: g10/import.c:1276 +#: g10/import.c:1277 #, c-format msgid "" "WARNING: key %s contains preferences for unavailable\n" @@ -3616,166 +3622,166 @@ "*警告*: 鍵%sには、これらのユーザIDに対して使用不可のアルゴリズムの優先指定が" "あります\n" -#: g10/import.c:1318 +#: g10/import.c:1319 #, c-format msgid " \"%s\": preference for cipher algorithm %s\n" msgstr " \"%s\": 暗号アルゴリズムの優先指定 %s\n" -#: g10/import.c:1333 +#: g10/import.c:1334 #, c-format msgid " \"%s\": preference for digest algorithm %s\n" msgstr " \"%s\": ダイジェスト・アルゴリズムの優先指定 %s\n" -#: g10/import.c:1345 +#: g10/import.c:1346 #, c-format msgid " \"%s\": preference for compression algorithm %s\n" msgstr " \"%s\": 圧縮アルゴリズムの優先指定 %s\n" -#: g10/import.c:1358 +#: g10/import.c:1359 #, c-format msgid "it is strongly suggested that you update your preferences and\n" msgstr "あなたの優先指定を更新し、この鍵を再配布することが強く推奨されます\n" -#: g10/import.c:1360 +#: g10/import.c:1361 #, c-format msgid "re-distribute this key to avoid potential algorithm mismatch problems\n" msgstr "それによって、潜在的なアルゴリズム不一致の問題を避けられます\n" -#: g10/import.c:1385 +#: g10/import.c:1386 #, c-format msgid "you can update your preferences with: gpg --edit-key %s updpref save\n" msgstr "以下で、優先指定を更新できます: gpg --edit-key %s updpref save\n" -#: g10/import.c:1899 g10/import.c:3013 +#: g10/import.c:1902 g10/import.c:3028 #, c-format msgid "key %s: no user ID\n" msgstr "鍵%s: ユーザIDがありません\n" -#: g10/import.c:1905 +#: g10/import.c:1908 #, c-format msgid "key %s: %s\n" msgstr "鍵 %s: %s\n" -#: g10/import.c:1906 g10/import.c:2985 +#: g10/import.c:1909 g10/import.c:3000 msgid "rejected by import screener" msgstr "インポートの検査で拒否されました" -#: g10/import.c:1950 +#: g10/import.c:1953 #, c-format msgid "key %s: PKS subkey corruption repaired\n" msgstr "鍵%s: PKSの副鍵変造を修復\n" -#: g10/import.c:1971 +#: g10/import.c:1974 #, c-format msgid "key %s: accepted non self-signed user ID \"%s\"\n" msgstr "鍵%s: 受理した未自己署名のユーザID\"%s\"\n" -#: g10/import.c:1981 g10/import.c:2012 +#: g10/import.c:1985 g10/import.c:2016 #, c-format msgid "key %s: no valid user IDs\n" msgstr "鍵%s: 有効なユーザIDがありません\n" -#: g10/import.c:1983 +#: g10/import.c:1987 #, c-format msgid "this may be caused by a missing self-signature\n" msgstr "これはおそらく自己署名のないせいでしょう\n" -#: g10/import.c:2062 g10/import.c:3399 +#: g10/import.c:2066 g10/import.c:3415 #, c-format msgid "key %s: public key not found: %s\n" msgstr "鍵%s: 公開鍵が見つかりません: %s\n" -#: g10/import.c:2068 +#: g10/import.c:2072 #, c-format msgid "key %s: new key - skipped\n" msgstr "鍵%s: 新しい鍵です - スキップします\n" -#: g10/import.c:2080 +#: g10/import.c:2084 #, c-format msgid "no writable keyring found: %s\n" msgstr "書き込み可能な鍵リングが見つかりません: %s\n" -#: g10/import.c:2112 g10/import.c:2214 g10/import.c:3476 +#: g10/import.c:2116 g10/import.c:2218 g10/import.c:3492 #, c-format msgid "error writing keyring '%s': %s\n" msgstr "鍵リング'%s'の書き込みエラー: %s\n" -#: g10/import.c:2135 +#: g10/import.c:2139 #, c-format msgid "key %s: public key \"%s\" imported\n" msgstr "鍵%s: 公開鍵\"%s\"をインポートしました\n" -#: g10/import.c:2162 +#: g10/import.c:2166 #, c-format msgid "key %s: doesn't match our copy\n" msgstr "鍵%s: こちらの複製と合いません\n" -#: g10/import.c:2230 +#: g10/import.c:2234 #, c-format msgid "key %s: \"%s\" 1 new user ID\n" msgstr "鍵%s: \"%s\" 新しいユーザIDを1個\n" -#: g10/import.c:2233 +#: g10/import.c:2237 #, c-format msgid "key %s: \"%s\" %d new user IDs\n" msgstr "鍵%s: \"%s\" 新しいユーザIDを%d個\n" -#: g10/import.c:2236 +#: g10/import.c:2240 #, c-format msgid "key %s: \"%s\" 1 new signature\n" msgstr "鍵%s: \"%s\" 新しい署名を1個\n" -#: g10/import.c:2239 +#: g10/import.c:2243 #, c-format msgid "key %s: \"%s\" %d new signatures\n" msgstr "鍵%s: \"%s\" 新しい署名を%d個\n" -#: g10/import.c:2242 +#: g10/import.c:2246 #, c-format msgid "key %s: \"%s\" 1 new subkey\n" msgstr "鍵%s: \"%s\" 新しい副鍵を1個\n" -#: g10/import.c:2245 +#: g10/import.c:2249 #, c-format msgid "key %s: \"%s\" %d new subkeys\n" msgstr "鍵%s: \"%s\" 新しい副鍵を%d個\n" -#: g10/import.c:2248 +#: g10/import.c:2252 #, c-format msgid "key %s: \"%s\" %d signature cleaned\n" msgstr "鍵%s: \"%s\" %d個の署名をきれいにしました\n" -#: g10/import.c:2251 +#: g10/import.c:2255 #, c-format msgid "key %s: \"%s\" %d signatures cleaned\n" msgstr "鍵%s: \"%s\" %d個の署名をきれいにしました\n" -#: g10/import.c:2254 +#: g10/import.c:2258 #, c-format msgid "key %s: \"%s\" %d user ID cleaned\n" msgstr "鍵%s: \"%s\" %d個のユーザIDをきれいにしました\n" -#: g10/import.c:2257 +#: g10/import.c:2261 #, c-format msgid "key %s: \"%s\" %d user IDs cleaned\n" msgstr "鍵%s: \"%s\" %d個のユーザIDをきれいにしました\n" -#: g10/import.c:2293 +#: g10/import.c:2297 #, c-format msgid "key %s: \"%s\" not changed\n" msgstr "鍵%s:\"%s\"変更なし\n" -#: g10/import.c:2652 g10/import.c:2847 +#: g10/import.c:2667 g10/import.c:2862 #, c-format msgid "key %s: secret key imported\n" msgstr "鍵%s: 秘密鍵をインポートしました\n" -#: g10/import.c:2660 +#: g10/import.c:2675 #, c-format msgid "key %s: secret key already exists\n" msgstr "鍵 %s: 秘密鍵はもうあります\n" -#: g10/import.c:2668 +#: g10/import.c:2683 #, c-format msgid "key %s: error sending to agent: %s\n" msgstr "鍵 %s: エージェントへの送信エラー: %s\n" @@ -3788,192 +3794,192 @@ #. * Instead, user should be suggested to run 'gpg --card-status', #. * then, references to a card will be automatically created #. * again. -#: g10/import.c:2837 +#: g10/import.c:2852 #, c-format msgid "To migrate '%s', with each smartcard, run: %s\n" msgstr "'%s'の移行には、スマードカードそれぞれで、以下を実行してください: %s\n" -#: g10/import.c:2984 +#: g10/import.c:2999 #, c-format msgid "secret key %s: %s\n" msgstr "秘密鍵 %s: %s\n" -#: g10/import.c:3005 g10/import.c:3044 +#: g10/import.c:3020 g10/import.c:3059 #, c-format msgid "importing secret keys not allowed\n" msgstr "秘密鍵のインポートは禁止です\n" -#: g10/import.c:3032 +#: g10/import.c:3047 #, c-format msgid "key %s: secret key with invalid cipher %d - skipped\n" msgstr "鍵%s: 無効な暗号方式%dの秘密鍵です - スキップします\n" -#: g10/import.c:3194 g10/pkclist.c:72 g10/revoke.c:776 +#: g10/import.c:3209 g10/pkclist.c:72 g10/revoke.c:776 msgid "No reason specified" msgstr "理由は指定されていません" -#: g10/import.c:3195 g10/pkclist.c:74 g10/revoke.c:778 +#: g10/import.c:3210 g10/pkclist.c:74 g10/revoke.c:778 msgid "Key is superseded" msgstr "鍵がとりかわっています" -#: g10/import.c:3196 g10/pkclist.c:76 g10/revoke.c:777 +#: g10/import.c:3211 g10/pkclist.c:76 g10/revoke.c:777 msgid "Key has been compromised" msgstr "鍵(の信頼性)が損なわれています" -#: g10/import.c:3197 g10/pkclist.c:78 g10/revoke.c:779 +#: g10/import.c:3212 g10/pkclist.c:78 g10/revoke.c:779 msgid "Key is no longer used" msgstr "鍵はもはや使われていません" -#: g10/import.c:3198 g10/pkclist.c:80 g10/revoke.c:780 +#: g10/import.c:3213 g10/pkclist.c:80 g10/revoke.c:780 msgid "User ID is no longer valid" msgstr "ユーザIDがもはや有効でありません" -#: g10/import.c:3323 g10/keylist.c:1258 g10/pkclist.c:84 +#: g10/import.c:3338 g10/keylist.c:1258 g10/pkclist.c:84 #, c-format msgid "reason for revocation: " msgstr "失効理由: " -#: g10/import.c:3342 g10/keylist.c:1277 g10/pkclist.c:100 +#: g10/import.c:3357 g10/keylist.c:1277 g10/pkclist.c:100 #, c-format msgid "revocation comment: " msgstr "失効のコメント: " -#: g10/import.c:3392 +#: g10/import.c:3408 #, c-format msgid "key %s: no public key - can't apply revocation certificate\n" msgstr "鍵%s: 公開鍵がありません - 失効証明書を適用できません\n" -#: g10/import.c:3423 +#: g10/import.c:3439 #, c-format msgid "key %s: can't locate original keyblock: %s\n" msgstr "鍵%s: 元の鍵ブロックに位置づけできません: %s\n" -#: g10/import.c:3430 +#: g10/import.c:3446 #, c-format msgid "key %s: can't read original keyblock: %s\n" msgstr "鍵%s: 元の鍵ブロックを読み込めません: %s\n" -#: g10/import.c:3450 +#: g10/import.c:3466 #, c-format msgid "key %s: invalid revocation certificate: %s - rejected\n" msgstr "鍵%s: 無効な失効証明書: %s - 拒否\n" -#: g10/import.c:3485 +#: g10/import.c:3501 #, c-format msgid "key %s: \"%s\" revocation certificate imported\n" msgstr "鍵%s:\"%s\"失効証明書をインポートしました\n" -#: g10/import.c:3571 +#: g10/import.c:3587 #, c-format msgid "key %s: no user ID for signature\n" msgstr "鍵%s: 署名に対応するユーザIDがありません\n" -#: g10/import.c:3588 +#: g10/import.c:3604 #, c-format msgid "key %s: unsupported public key algorithm on user ID \"%s\"\n" msgstr "鍵%s: ユーザID\"%s\"のサポートしていない公開鍵アルゴリズムです\n" -#: g10/import.c:3590 +#: g10/import.c:3606 #, c-format msgid "key %s: invalid self-signature on user ID \"%s\"\n" msgstr "鍵%s: ユーザID\"%s\"の自己署名が、無効です\n" -#: g10/import.c:3607 g10/import.c:3635 g10/import.c:3691 +#: g10/import.c:3623 g10/import.c:3651 g10/import.c:3707 #, c-format msgid "key %s: unsupported public key algorithm\n" msgstr "鍵%s: サポートしていない公開鍵アルゴリズムです\n" -#: g10/import.c:3608 +#: g10/import.c:3624 #, c-format msgid "key %s: invalid direct key signature\n" msgstr "鍵%s: 無効な直接鍵署名\n" -#: g10/import.c:3622 +#: g10/import.c:3638 #, c-format msgid "key %s: no subkey for key binding\n" msgstr "鍵%s: 鍵に対応する副鍵がありません\n" -#: g10/import.c:3637 +#: g10/import.c:3653 #, c-format msgid "key %s: invalid subkey binding\n" msgstr "鍵%s: 無効な副鍵の対応です\n" -#: g10/import.c:3656 +#: g10/import.c:3672 #, c-format msgid "key %s: removed multiple subkey binding\n" msgstr "鍵%s: 多重副鍵の対応を削除します\n" -#: g10/import.c:3680 +#: g10/import.c:3696 #, c-format msgid "key %s: no subkey for key revocation\n" msgstr "鍵%s: 鍵失効に対する副鍵がありません\n" -#: g10/import.c:3693 +#: g10/import.c:3709 #, c-format msgid "key %s: invalid subkey revocation\n" msgstr "鍵%s: 無効な副鍵失効です\n" -#: g10/import.c:3708 +#: g10/import.c:3724 #, c-format msgid "key %s: removed multiple subkey revocation\n" msgstr "鍵%s: 無効な副鍵の多重失効を削除します\n" -#: g10/import.c:3752 +#: g10/import.c:3771 #, c-format msgid "key %s: skipped user ID \"%s\"\n" msgstr "鍵%s: スキップしたユーザID\"%s\"\n" -#: g10/import.c:3779 +#: g10/import.c:3798 #, c-format msgid "key %s: skipped subkey\n" msgstr "鍵%s: スキップした副鍵\n" -#: g10/import.c:3810 +#: g10/import.c:3829 #, c-format msgid "key %s: non exportable signature (class 0x%02X) - skipped\n" msgstr "鍵%s: エクスポート不可な署名 (クラス0x%02X) - スキップします\n" -#: g10/import.c:3821 +#: g10/import.c:3840 #, c-format msgid "key %s: revocation certificate at wrong place - skipped\n" msgstr "鍵%s: 失効証明書が誤って設定されています - スキップします\n" -#: g10/import.c:3839 +#: g10/import.c:3868 #, c-format msgid "key %s: invalid revocation certificate: %s - skipped\n" msgstr "鍵%s: 無効な失効証明書: %s - スキップします\n" -#: g10/import.c:3853 +#: g10/import.c:3892 #, c-format msgid "key %s: subkey signature in wrong place - skipped\n" msgstr "鍵%s: 副鍵署名の場所が、誤っています - スキップします\n" -#: g10/import.c:3861 +#: g10/import.c:3900 #, c-format msgid "key %s: unexpected signature class (0x%02X) - skipped\n" msgstr "鍵%s: 予期せぬ署名クラス (0x%02X) - スキップします\n" -#: g10/import.c:4034 +#: g10/import.c:4073 #, c-format msgid "key %s: duplicated user ID detected - merged\n" msgstr "鍵%s: 重複したユーザIDの検出 - マージ\n" -#: g10/import.c:4099 +#: g10/import.c:4138 #, c-format msgid "WARNING: key %s may be revoked: fetching revocation key %s\n" msgstr "*警告*: 鍵%sは失効されたかもしれません: 失効鍵%sを取ってきます\n" -#: g10/import.c:4115 +#: g10/import.c:4154 #, c-format msgid "WARNING: key %s may be revoked: revocation key %s not present.\n" msgstr "*警告*: 鍵%sは失効されたかもしれません: 失効鍵%sが存在しません。\n" -#: g10/import.c:4181 +#: g10/import.c:4220 #, c-format msgid "key %s: \"%s\" revocation certificate added\n" msgstr "鍵%s:\"%s\"失効証明書の追加\n" -#: g10/import.c:4219 +#: g10/import.c:4258 #, c-format msgid "key %s: direct key signature added\n" msgstr "鍵%s: 直接鍵署名を追加\n" @@ -4826,7 +4832,7 @@ msgid "You may not add a photo ID to a PGP2-style key.\n" msgstr "PGP2形式の鍵にはフォトIDを追加できません。\n" -#: g10/keyedit.c:4293 g10/keygen.c:2899 +#: g10/keyedit.c:4293 g10/keygen.c:2953 msgid "Such a user ID already exists on this key!\n" msgstr "そういったユーザIDはすでにこの鍵に存在しています!\n" @@ -5098,63 +5104,63 @@ msgid "Displaying %s photo ID of size %ld for key %s (uid %d)\n" msgstr "%s (大きさ%ld) の鍵%s (uid %d) のフォトIDとして表示\n" -#: g10/keygen.c:169 +#: g10/keygen.c:174 #, c-format msgid "invalid value for option '%s'\n" msgstr "オプション'%s'に無効な値です\n" -#: g10/keygen.c:322 +#: g10/keygen.c:331 #, c-format msgid "preference '%s' duplicated\n" msgstr "優先指定'%s'の重複\n" -#: g10/keygen.c:329 +#: g10/keygen.c:338 #, c-format msgid "too many cipher preferences\n" msgstr "暗号方式の優先指定が多すぎます\n" -#: g10/keygen.c:331 +#: g10/keygen.c:340 #, c-format msgid "too many digest preferences\n" msgstr "ダイジェストの優先指定が多すぎます\n" -#: g10/keygen.c:333 +#: g10/keygen.c:342 #, c-format msgid "too many compression preferences\n" msgstr "圧縮の優先指定が多すぎます\n" -#: g10/keygen.c:493 +#: g10/keygen.c:502 #, c-format msgid "invalid item '%s' in preference string\n" msgstr "優先指定の文字列に無効な項目'%s'があります\n" -#: g10/keygen.c:972 +#: g10/keygen.c:1020 #, c-format msgid "writing direct signature\n" msgstr "直接署名を書き込みます\n" -#: g10/keygen.c:1018 +#: g10/keygen.c:1066 #, c-format msgid "writing self signature\n" msgstr "自己署名を書き込みます\n" -#: g10/keygen.c:1075 +#: g10/keygen.c:1123 #, c-format msgid "writing key binding signature\n" msgstr "鍵対応への署名を書き込みます\n" -#: g10/keygen.c:1440 g10/keygen.c:1445 g10/keygen.c:1497 g10/keygen.c:1502 -#: g10/keygen.c:1656 g10/keygen.c:1661 +#: g10/keygen.c:1494 g10/keygen.c:1499 g10/keygen.c:1551 g10/keygen.c:1556 +#: g10/keygen.c:1710 g10/keygen.c:1715 #, c-format msgid "keysize invalid; using %u bits\n" msgstr "無効な鍵長。%uビットにします\n" -#: g10/keygen.c:1451 g10/keygen.c:1508 g10/keygen.c:1516 g10/keygen.c:1667 +#: g10/keygen.c:1505 g10/keygen.c:1562 g10/keygen.c:1570 g10/keygen.c:1721 #, c-format msgid "keysize rounded up to %u bits\n" msgstr "鍵長を%uビットに丸めます\n" -#: g10/keygen.c:1542 +#: g10/keygen.c:1596 #, c-format msgid "" "WARNING: some OpenPGP programs can't handle a DSA key with this digest size\n" @@ -5162,19 +5168,19 @@ "*警告*: いくつかのOpenPGPプログラムはこのダイジェスト長のDSA鍵を扱うことがで" "きません\n" -#: g10/keygen.c:1723 +#: g10/keygen.c:1777 msgid "Sign" msgstr "Sign" -#: g10/keygen.c:1726 +#: g10/keygen.c:1780 msgid "Certify" msgstr "Certify" -#: g10/keygen.c:1729 +#: g10/keygen.c:1783 msgid "Encrypt" msgstr "Encrypt" -#: g10/keygen.c:1732 +#: g10/keygen.c:1786 msgid "Authenticate" msgstr "Authenticate" @@ -5188,161 +5194,161 @@ #. * a = Toggle authentication capability #. * q = Finish #. -#: g10/keygen.c:1753 +#: g10/keygen.c:1807 msgid "SsEeAaQq" msgstr "SsEeAaQq" -#: g10/keygen.c:1784 +#: g10/keygen.c:1838 #, c-format msgid "Possible actions for a %s key: " msgstr "鍵%sに認められた操作: " -#: g10/keygen.c:1790 +#: g10/keygen.c:1844 msgid "Current allowed actions: " msgstr "現在の認められた操作: " -#: g10/keygen.c:1795 +#: g10/keygen.c:1849 #, c-format msgid " (%c) Toggle the sign capability\n" msgstr " (%c) 署名機能を反転する\n" -#: g10/keygen.c:1798 +#: g10/keygen.c:1852 #, c-format msgid " (%c) Toggle the encrypt capability\n" msgstr " (%c) 暗号機能を反転する\n" -#: g10/keygen.c:1801 +#: g10/keygen.c:1855 #, c-format msgid " (%c) Toggle the authenticate capability\n" msgstr " (%c) 認証機能を反転する\n" -#: g10/keygen.c:1804 +#: g10/keygen.c:1858 #, c-format msgid " (%c) Finished\n" msgstr " (%c) 完了\n" -#: g10/keygen.c:1930 +#: g10/keygen.c:1984 #, c-format msgid " (%d) RSA and RSA (default)\n" msgstr " (%d) RSA と RSA (デフォルト)\n" -#: g10/keygen.c:1934 +#: g10/keygen.c:1988 #, c-format msgid " (%d) DSA and Elgamal\n" msgstr " (%d) DSA と Elgamal\n" -#: g10/keygen.c:1937 +#: g10/keygen.c:1991 #, c-format msgid " (%d) DSA (sign only)\n" msgstr " (%d) DSA (署名のみ)\n" -#: g10/keygen.c:1939 +#: g10/keygen.c:1993 #, c-format msgid " (%d) RSA (sign only)\n" msgstr " (%d) RSA (署名のみ)\n" -#: g10/keygen.c:1945 +#: g10/keygen.c:1999 #, c-format msgid " (%d) Elgamal (encrypt only)\n" msgstr " (%d) Elgamal (暗号化のみ)\n" -#: g10/keygen.c:1947 +#: g10/keygen.c:2001 #, c-format msgid " (%d) RSA (encrypt only)\n" msgstr " (%d) RSA (暗号化のみ)\n" -#: g10/keygen.c:1953 +#: g10/keygen.c:2007 #, c-format msgid " (%d) DSA (set your own capabilities)\n" msgstr " (%d) DSA (機能をあなた自身で設定)\n" -#: g10/keygen.c:1955 +#: g10/keygen.c:2009 #, c-format msgid " (%d) RSA (set your own capabilities)\n" msgstr " (%d) RSA (機能をあなた自身で設定)\n" -#: g10/keygen.c:1961 +#: g10/keygen.c:2015 #, c-format msgid " (%d) ECC and ECC\n" msgstr " (%d) ECC と ECC\n" -#: g10/keygen.c:1963 +#: g10/keygen.c:2017 #, c-format msgid " (%d) ECC (sign only)\n" msgstr " (%d) ECC (署名のみ)\n" -#: g10/keygen.c:1965 +#: g10/keygen.c:2019 #, c-format msgid " (%d) ECC (set your own capabilities)\n" msgstr " (%d) ECC (機能をあなた自身で設定)\n" -#: g10/keygen.c:1967 +#: g10/keygen.c:2021 #, c-format msgid " (%d) ECC (encrypt only)\n" msgstr " (%d) ECC (暗号化のみ)\n" -#: g10/keygen.c:1971 +#: g10/keygen.c:2025 #, c-format msgid " (%d) Existing key\n" msgstr " (%d) 既存の鍵\n" -#: g10/keygen.c:1973 +#: g10/keygen.c:2027 #, c-format msgid " (%d) Existing key from card\n" msgstr " (%d) カードに存在する鍵\n" -#: g10/keygen.c:2069 sm/certreqgen-ui.c:202 +#: g10/keygen.c:2123 sm/certreqgen-ui.c:202 msgid "Enter the keygrip: " msgstr "keygripを入力: " -#: g10/keygen.c:2082 sm/certreqgen-ui.c:210 +#: g10/keygen.c:2136 sm/certreqgen-ui.c:210 msgid "Not a valid keygrip (expecting 40 hex digits)\n" msgstr "有効なkeygrip (40桁の16進数字)ではありません\n" -#: g10/keygen.c:2084 sm/certreqgen-ui.c:212 +#: g10/keygen.c:2138 sm/certreqgen-ui.c:212 msgid "No key with this keygrip\n" msgstr "このkeygripの鍵はありません\n" -#: g10/keygen.c:2103 g10/keygen.c:2113 g10/keygen.c:3216 g10/keygen.c:3227 +#: g10/keygen.c:2157 g10/keygen.c:2167 g10/keygen.c:3270 g10/keygen.c:3281 #: sm/certreqgen-ui.c:230 sm/certreqgen-ui.c:239 #, c-format msgid "error reading the card: %s\n" msgstr "カードの読み込みエラー: %s\n" -#: g10/keygen.c:2107 g10/keygen.c:3220 sm/certreqgen-ui.c:233 +#: g10/keygen.c:2161 g10/keygen.c:3274 sm/certreqgen-ui.c:233 #, c-format msgid "Serial number of the card: %s\n" msgstr "カードのシリアル番号: %s\n" -#: g10/keygen.c:2120 sm/certreqgen-ui.c:245 +#: g10/keygen.c:2174 sm/certreqgen-ui.c:245 msgid "Available keys:\n" msgstr "利用可能な鍵:\n" -#: g10/keygen.c:2297 g10/keygen.c:2311 +#: g10/keygen.c:2351 g10/keygen.c:2365 #, c-format msgid "rounded to %u bits\n" msgstr "%uビットに切り上げます\n" -#: g10/keygen.c:2352 +#: g10/keygen.c:2406 #, c-format msgid "%s keys may be between %u and %u bits long.\n" msgstr "%s 鍵は %u から %u ビットの長さで可能です。\n" -#: g10/keygen.c:2360 +#: g10/keygen.c:2414 #, c-format msgid "What keysize do you want for the subkey? (%u) " msgstr "副鍵の鍵長は? (%u) " -#: g10/keygen.c:2377 sm/certreqgen-ui.c:189 +#: g10/keygen.c:2431 sm/certreqgen-ui.c:189 #, c-format msgid "Requested keysize is %u bits\n" msgstr "要求された鍵長は%uビット\n" -#: g10/keygen.c:2423 +#: g10/keygen.c:2477 msgid "Please select which elliptic curve you want:\n" msgstr "ご希望の楕円曲線を選択してください:\n" -#: g10/keygen.c:2611 +#: g10/keygen.c:2665 msgid "" "Please specify how long the key should be valid.\n" " 0 = key does not expire\n" @@ -5358,7 +5364,7 @@ " m = 鍵は n か月間で期限切れ\n" " y = 鍵は n 年間で期限切れ\n" -#: g10/keygen.c:2622 +#: g10/keygen.c:2676 msgid "" "Please specify how long the signature should be valid.\n" " 0 = signature does not expire\n" @@ -5374,38 +5380,38 @@ " m = 署名は n か月間で期限切れ\n" " y = 署名は n 年間で期限切れ\n" -#: g10/keygen.c:2645 +#: g10/keygen.c:2699 msgid "Key is valid for? (0) " msgstr "鍵の有効期間は? (0)" -#: g10/keygen.c:2650 +#: g10/keygen.c:2704 #, c-format msgid "Signature is valid for? (%s) " msgstr "署名の有効期間は? (%s)" -#: g10/keygen.c:2663 g10/keygen.c:2688 +#: g10/keygen.c:2717 g10/keygen.c:2742 msgid "invalid value\n" msgstr "無効な値\n" -#: g10/keygen.c:2670 +#: g10/keygen.c:2724 msgid "Key does not expire at all\n" msgstr "鍵は無期限です\n" -#: g10/keygen.c:2671 +#: g10/keygen.c:2725 msgid "Signature does not expire at all\n" msgstr "署名は無期限です\n" -#: g10/keygen.c:2676 +#: g10/keygen.c:2730 #, c-format msgid "Key expires at %s\n" msgstr "鍵は%sで期限切れとなります\n" -#: g10/keygen.c:2677 +#: g10/keygen.c:2731 #, c-format msgid "Signature expires at %s\n" msgstr "署名は%sで期限切れとなります\n" -#: g10/keygen.c:2681 +#: g10/keygen.c:2735 msgid "" "Your system can't display dates beyond 2038.\n" "However, it will be correctly handled up to 2106.\n" @@ -5413,11 +5419,11 @@ "このシステムでは、2038年以降の日付を表示することはできませんが、\n" "2106年まで正しく処理されます。\n" -#: g10/keygen.c:2694 +#: g10/keygen.c:2748 msgid "Is this correct? (y/N) " msgstr "これで正しいですか? (y/N) " -#: g10/keygen.c:2762 +#: g10/keygen.c:2816 msgid "" "\n" "GnuPG needs to construct a user ID to identify your key.\n" @@ -5431,7 +5437,7 @@ #. but you should keep your existing translation. In case #. the new string is not translated this old string will #. be used. -#: g10/keygen.c:2777 +#: g10/keygen.c:2831 msgid "" "\n" "You need a user ID to identify your key; the software constructs the user " @@ -5447,49 +5453,49 @@ " \"Heinrich Heine (Der Dichter) \"\n" "\n" -#: g10/keygen.c:2796 +#: g10/keygen.c:2850 msgid "Real name: " msgstr "本名: " -#: g10/keygen.c:2805 +#: g10/keygen.c:2859 msgid "Invalid character in name\n" msgstr "名前に無効な文字があります\n" -#: g10/keygen.c:2806 +#: g10/keygen.c:2860 #, c-format msgid "The characters '%s' and '%s' may not appear in name\n" msgstr "キャラクタ'%s'と'%s'は名前に使えません\n" -#: g10/keygen.c:2810 +#: g10/keygen.c:2864 msgid "Name may not start with a digit\n" msgstr "名前を数字で始めてはいけません\n" -#: g10/keygen.c:2813 +#: g10/keygen.c:2867 msgid "Name must be at least 5 characters long\n" msgstr "名前は5文字以上でなければなりません\n" -#: g10/keygen.c:2823 +#: g10/keygen.c:2877 msgid "Email address: " msgstr "電子メール・アドレス: " -#: g10/keygen.c:2829 +#: g10/keygen.c:2883 msgid "Not a valid email address\n" msgstr "有効な電子メール・アドレスではありません\n" -#: g10/keygen.c:2838 +#: g10/keygen.c:2892 msgid "Comment: " msgstr "コメント: " -#: g10/keygen.c:2844 +#: g10/keygen.c:2898 msgid "Invalid character in comment\n" msgstr "コメントに無効な文字があります\n" -#: g10/keygen.c:2880 +#: g10/keygen.c:2934 #, c-format msgid "You are using the '%s' character set.\n" msgstr "あなたは文字集合'%s'を使っています。\n" -#: g10/keygen.c:2886 +#: g10/keygen.c:2940 #, c-format msgid "" "You selected this USER-ID:\n" @@ -5500,7 +5506,7 @@ " \"%s\"\n" "\n" -#: g10/keygen.c:2891 +#: g10/keygen.c:2945 msgid "Please don't put the email address into the real name or the comment\n" msgstr "電子メールのアドレスを本名やコメントに入れないように\n" @@ -5515,31 +5521,31 @@ #. o = Okay (ready, continue) #. q = Quit #. -#: g10/keygen.c:2916 +#: g10/keygen.c:2970 msgid "NnCcEeOoQq" msgstr "NnCcEeOoQq" -#: g10/keygen.c:2926 +#: g10/keygen.c:2980 msgid "Change (N)ame, (C)omment, (E)mail or (Q)uit? " msgstr "名前(N)、コメント(C)、電子メール(E)の変更、または終了(Q)? " -#: g10/keygen.c:2927 +#: g10/keygen.c:2981 msgid "Change (N)ame, (C)omment, (E)mail or (O)kay/(Q)uit? " msgstr "名前(N)、コメント(C)、電子メール(E)の変更、またはOK(O)か終了(Q)? " -#: g10/keygen.c:2932 +#: g10/keygen.c:2986 msgid "Change (N)ame, (E)mail, or (Q)uit? " msgstr "名前(N)、電子メール(E)の変更、または終了(Q)? " -#: g10/keygen.c:2933 +#: g10/keygen.c:2987 msgid "Change (N)ame, (E)mail, or (O)kay/(Q)uit? " msgstr "名前(N)、電子メール(E)の変更、またはOK(O)か終了(Q)? " -#: g10/keygen.c:2952 +#: g10/keygen.c:3006 msgid "Please correct the error first\n" msgstr "まずエラーを修正してください\n" -#: g10/keygen.c:2998 +#: g10/keygen.c:3052 msgid "" "We need to generate a lot of random bytes. It is a good idea to perform\n" "some other action (type on the keyboard, move the mouse, utilize the\n" @@ -5550,13 +5556,13 @@ "す、ディスクにアクセスするなどの他の操作を素数生成の間に行うことで、乱数生\n" "成器に十分なエントロピーを供給する機会を与えることができます。\n" -#: g10/keygen.c:4278 g10/keygen.c:4349 g10/keygen.c:4367 g10/keygen.c:4395 -#: g10/keygen.c:4739 g10/keygen.c:5239 g10/keygen.c:5534 g10/keygen.c:5639 +#: g10/keygen.c:4332 g10/keygen.c:4403 g10/keygen.c:4421 g10/keygen.c:4449 +#: g10/keygen.c:4793 g10/keygen.c:5293 g10/keygen.c:5588 g10/keygen.c:5693 #, c-format msgid "Key generation failed: %s\n" msgstr "鍵の生成に失敗しました: %s\n" -#: g10/keygen.c:4287 +#: g10/keygen.c:4341 #, c-format msgid "" "About to create a key for:\n" @@ -5567,64 +5573,64 @@ " \"%s\"\n" "\n" -#: g10/keygen.c:4289 +#: g10/keygen.c:4343 msgid "Continue? (Y/n) " msgstr "続けますか? (Y/n) " -#: g10/keygen.c:4310 +#: g10/keygen.c:4364 #, c-format msgid "A key for \"%s\" already exists\n" msgstr "\"%s\" の鍵はもうあります\n" -#: g10/keygen.c:4315 +#: g10/keygen.c:4369 msgid "Create anyway? (y/N) " msgstr "それでも鍵を作成しますか? (y/N) " -#: g10/keygen.c:4321 +#: g10/keygen.c:4375 #, c-format msgid "creating anyway\n" msgstr "いずれにしろ鍵を作成\n" -#: g10/keygen.c:4722 +#: g10/keygen.c:4776 #, c-format msgid "Note: Use \"%s %s\" for a full featured key generation dialog.\n" msgstr "注意: 全機能の鍵生成には \"%s %s\" を使います。\n" -#: g10/keygen.c:4771 +#: g10/keygen.c:4825 #, c-format msgid "Key generation canceled.\n" msgstr "鍵の生成が取り消されました。\n" -#: g10/keygen.c:4831 +#: g10/keygen.c:4885 #, c-format msgid "can't create backup file '%s': %s\n" msgstr "バックアップ・ファイル'%s'が作成できません: %s\n" -#: g10/keygen.c:4851 +#: g10/keygen.c:4905 #, c-format msgid "Note: backup of card key saved to '%s'\n" msgstr "注意: カード鍵のバックアップが'%s'へ保存されます\n" -#: g10/keygen.c:5010 g10/keygen.c:5172 +#: g10/keygen.c:5064 g10/keygen.c:5226 #, c-format msgid "writing public key to '%s'\n" msgstr "'%s'へ公開鍵を書き込みます\n" -#: g10/keygen.c:5166 +#: g10/keygen.c:5220 #, c-format msgid "no writable public keyring found: %s\n" msgstr "書き込み可能な公開鍵リングが見つかりません: %s\n" -#: g10/keygen.c:5180 +#: g10/keygen.c:5234 #, c-format msgid "error writing public keyring '%s': %s\n" msgstr "公開鍵リング'%s'の書き込みエラー: %s\n" -#: g10/keygen.c:5210 +#: g10/keygen.c:5264 msgid "public and secret key created and signed.\n" msgstr "公開鍵と秘密鍵を作成し、署名しました。\n" -#: g10/keygen.c:5226 +#: g10/keygen.c:5280 msgid "" "Note that this key cannot be used for encryption. You may want to use\n" "the command \"--edit-key\" to generate a subkey for this purpose.\n" @@ -5632,34 +5638,34 @@ "この鍵は暗号化には使用できないことに注意してください。暗号化を行うには、\n" "\"--edit-key\"コマンドを使って副鍵を生成してください。\n" -#: g10/keygen.c:5401 g10/keygen.c:5590 +#: g10/keygen.c:5455 g10/keygen.c:5644 #, c-format msgid "" "key has been created %lu second in future (time warp or clock problem)\n" msgstr "鍵は%lu秒未来にできました (時間歪曲か時計の障害でしょう)\n" -#: g10/keygen.c:5403 g10/keygen.c:5592 +#: g10/keygen.c:5457 g10/keygen.c:5646 #, c-format msgid "" "key has been created %lu seconds in future (time warp or clock problem)\n" msgstr "鍵は%lu秒未来にできました (時間歪曲か時計の障害でしょう)\n" -#: g10/keygen.c:5414 g10/keygen.c:5603 +#: g10/keygen.c:5468 g10/keygen.c:5657 #, c-format msgid "Note: creating subkeys for v3 keys is not OpenPGP compliant\n" msgstr "注意: v3鍵に対する副鍵の作成は、OpenPGPに適合しません\n" -#: g10/keygen.c:5426 g10/keygen.c:5428 +#: g10/keygen.c:5480 g10/keygen.c:5482 #, c-format msgid "Secret parts of primary key are not available.\n" msgstr "主鍵の秘密部分が利用できません。\n" -#: g10/keygen.c:5435 g10/keygen.c:5437 +#: g10/keygen.c:5489 g10/keygen.c:5491 #, c-format msgid "Secret parts of primary key are stored on-card.\n" msgstr "主鍵の秘密部分はカード上に保存されています。\n" -#: g10/keygen.c:5456 g10/keygen.c:5617 +#: g10/keygen.c:5510 g10/keygen.c:5671 msgid "Really create? (y/N) " msgstr "本当に作成しますか? (y/N) " @@ -6720,30 +6726,30 @@ msgstr "" "データは保存されていません。保存には\"--output\"オプションを使ってください\n" -#: g10/plaintext.c:615 +#: g10/plaintext.c:620 msgid "Detached signature.\n" msgstr "分遣署名。\n" -#: g10/plaintext.c:623 +#: g10/plaintext.c:628 msgid "Please enter name of data file: " msgstr "データ・ファイルの名前を入力: " -#: g10/plaintext.c:660 +#: g10/plaintext.c:665 #, c-format msgid "reading stdin ...\n" msgstr "標準入力より読み込み中 ...\n" -#: g10/plaintext.c:705 +#: g10/plaintext.c:710 #, c-format msgid "no signed data\n" msgstr "署名されたデータがありません\n" -#: g10/plaintext.c:723 +#: g10/plaintext.c:728 #, c-format msgid "can't open signed data '%s'\n" msgstr "署名されたデータ'%s'が開けません\n" -#: g10/plaintext.c:758 +#: g10/plaintext.c:763 #, c-format msgid "can't open signed data fd=%d: %s\n" msgstr "署名されたデータ fd=%d が開けません: %s\n" @@ -7707,7 +7713,7 @@ msgid "no need for a trustdb check\n" msgstr "信用データベースの検査は、不要です\n" -#: g10/trustdb.c:631 g10/trustdb.c:2326 +#: g10/trustdb.c:631 g10/trustdb.c:2338 #, c-format msgid "next trustdb check due at %s\n" msgstr "次回の信用データベース検査は、%sです\n" @@ -7737,35 +7743,35 @@ msgid "checking the trustdb\n" msgstr "信用データベースの検査\n" -#: g10/trustdb.c:2047 +#: g10/trustdb.c:2059 #, c-format msgid "%d key processed" msgid_plural "%d keys processed" msgstr[0] "%d個の鍵を処理" -#: g10/trustdb.c:2050 +#: g10/trustdb.c:2062 #, c-format msgid " (%d validity count cleared)\n" msgid_plural " (%d validity counts cleared)\n" msgstr[0] " (うち%d本の有効性数をクリア)\n" -#: g10/trustdb.c:2120 +#: g10/trustdb.c:2132 #, c-format msgid "no ultimately trusted keys found\n" msgstr "究極的に信用する鍵が見つかりません\n" -#: g10/trustdb.c:2134 +#: g10/trustdb.c:2146 #, c-format msgid "public key of ultimately trusted key %s not found\n" msgstr "究極的に信用する鍵%sの公開鍵が見つかりません\n" -#: g10/trustdb.c:2252 +#: g10/trustdb.c:2264 #, 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" -#: g10/trustdb.c:2333 +#: g10/trustdb.c:2345 #, c-format msgid "unable to update trustdb version record: write failed: %s\n" msgstr "" @@ -7880,85 +7886,91 @@ #. TRANSLATORS: Put a \x1f right before a colon. This can be #. * used by pinentry to nicely align the names and values. Keep #. * the %s at the start and end of the string. -#: scd/app-p15.c:5116 scd/app-openpgp.c:2154 +#: scd/app-p15.c:5145 scd/app-nks.c:1541 scd/app-openpgp.c:2154 #, c-format msgid "%sNumber: %s%%0AHolder: %s%s" msgstr "%s番号: %s%%0A保持者: %s%s" #. TRANSLATORS: This is the number of remaining attempts to #. * enter a PIN. Use %%0A (double-percent,0A) for a linefeed. -#: scd/app-p15.c:5135 scd/app-openpgp.c:2170 +#: scd/app-p15.c:5164 scd/app-nks.c:1560 scd/app-openpgp.c:2170 #, c-format msgid "Remaining attempts: %d" msgstr "残された試行回数: %d" -#: scd/app-p15.c:5214 scd/app-nks.c:1113 +#: scd/app-p15.c:5243 scd/app-nks.c:2112 msgid "||Please enter the PIN for the key to create qualified signatures." msgstr "||新しいPINを認定署名を生成する鍵のために入力してください。" #. TRANSLATORS: Do not translate the "|A|" prefix but keep it at #. the start of the string. Use %0A (single percent) for a linefeed. -#: scd/app-p15.c:5217 scd/app-openpgp.c:2464 +#: scd/app-p15.c:5246 scd/app-openpgp.c:2465 msgid "|A|Please enter the Admin PIN" msgstr "|A|管理者PINを入力してください" -#: scd/app-p15.c:5219 scd/app-nks.c:1103 +#: scd/app-p15.c:5248 scd/app-nks.c:2102 msgid "|P|Please enter the PIN Unblocking Code (PUK) for the standard keys." msgstr "|P|標準の鍵のPIN Unblocking Code (PUK)を入力してください。" -#: scd/app-p15.c:5222 scd/app-nks.c:1095 +#: scd/app-p15.c:5251 scd/app-nks.c:2093 msgid "||Please enter the PIN for the standard keys." msgstr "||PINを標準の鍵のために入力してください。" -#: scd/app-nks.c:709 scd/app-openpgp.c:3666 +#: scd/app-nks.c:1479 scd/app-openpgp.c:3675 #, c-format msgid "RSA modulus missing or not of size %d bits\n" msgstr "RSAのモジュラスがないか、%dビットのものではありません\n" -#: scd/app-nks.c:717 scd/app-openpgp.c:3678 +#: scd/app-nks.c:1487 scd/app-openpgp.c:3687 #, c-format msgid "RSA public exponent missing or larger than %d bits\n" msgstr "RSA公開指数がないか %d ビットより大きすぎます\n" -#: scd/app-nks.c:797 scd/app-openpgp.c:2327 scd/app-openpgp.c:2346 -#: scd/app-openpgp.c:2513 scd/app-openpgp.c:2531 scd/app-openpgp.c:2829 -#: scd/app-openpgp.c:2876 scd/app-openpgp.c:2991 scd/app-dinsig.c:302 +#: scd/app-nks.c:1660 +#, fuzzy +#| msgid "the NullPIN has not yet been changed\n" +msgid "Note: PIN has not yet been enabled." +msgstr "NullPINが変更されていません\n" + +#: scd/app-nks.c:1671 scd/app-openpgp.c:2327 scd/app-openpgp.c:2346 +#: scd/app-openpgp.c:2515 scd/app-openpgp.c:2533 scd/app-openpgp.c:2832 +#: scd/app-openpgp.c:2879 scd/app-openpgp.c:3000 scd/app-dinsig.c:303 #, c-format msgid "PIN callback returned error: %s\n" msgstr "PINコールバックがエラーを返しました: %s\n" -#: scd/app-nks.c:830 +#: scd/app-nks.c:1707 #, c-format msgid "the NullPIN has not yet been changed\n" msgstr "NullPINが変更されていません\n" -#: scd/app-nks.c:1094 +#: scd/app-nks.c:2092 msgid "|N|Please enter a new PIN for the standard keys." msgstr "|N|新しいPINを標準の鍵のために入力してください。" -#: scd/app-nks.c:1101 +#: scd/app-nks.c:2100 msgid "|NP|Please enter a new PIN Unblocking Code (PUK) for the standard keys." msgstr "|NP|標準の鍵の新しいPIN Unblocking Code (PUK)を入力してください。" -#: scd/app-nks.c:1111 +#: scd/app-nks.c:2110 msgid "|N|Please enter a new PIN for the key to create qualified signatures." msgstr "|N|新しいPINを認定署名を生成する鍵のために入力してください。" -#: scd/app-nks.c:1121 +#: scd/app-nks.c:2120 msgid "" "|NP|Please enter a new PIN Unblocking Code (PUK) for the key to create " "qualified signatures." msgstr "" "|NP|認定署名の鍵のために新しいPINブロック解除コード(PUK)を入力してください。" -#: scd/app-nks.c:1123 +#: scd/app-nks.c:2122 msgid "" "|P|Please enter the PIN Unblocking Code (PUK) for the key to create " "qualified signatures." msgstr "" "|P|認定署名の鍵のために新しいPINブロック解除コード(PUK)を入力してください。" -#: scd/app-nks.c:1230 scd/app-openpgp.c:2910 scd/app-dinsig.c:532 +#: scd/app-nks.c:2295 scd/app-openpgp.c:2913 scd/app-dinsig.c:535 #, c-format msgid "error getting new PIN: %s\n" msgstr "新しいPINの取得エラー: %s\n" @@ -7973,7 +7985,7 @@ msgid "failed to store the creation date: %s\n" msgstr "生成日の保管に失敗しました: %s\n" -#: scd/app-openpgp.c:1271 scd/app-openpgp.c:2857 scd/app-openpgp.c:5041 +#: scd/app-openpgp.c:1271 scd/app-openpgp.c:2860 scd/app-openpgp.c:5051 #, c-format msgid "error retrieving CHV status from card\n" msgstr "カードからCHVステイタスの取得でエラー\n" @@ -7993,7 +8005,7 @@ msgid "response does not contain the EC public key\n" msgstr "応答に楕円曲線の公開鍵が含まれていません\n" -#: scd/app-openpgp.c:1664 scd/app-openpgp.c:4286 +#: scd/app-openpgp.c:1664 scd/app-openpgp.c:4295 #, c-format msgid "response does not contain the public key data\n" msgstr "応答に公開鍵データが含まれていません\n" @@ -8027,43 +8039,43 @@ msgid "||Please unlock the card" msgstr "||カードをアンロックしてください" -#: scd/app-openpgp.c:2353 scd/app-openpgp.c:2538 scd/app-openpgp.c:2836 +#: scd/app-openpgp.c:2353 scd/app-openpgp.c:2540 scd/app-openpgp.c:2839 #, 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:2367 scd/app-openpgp.c:2414 scd/app-openpgp.c:2552 -#: scd/app-openpgp.c:4644 +#: scd/app-openpgp.c:2368 scd/app-openpgp.c:2415 scd/app-openpgp.c:2554 +#: scd/app-openpgp.c:4654 #, c-format msgid "verify CHV%d failed: %s\n" msgstr "CHV%dの認証に失敗しました: %s\n" -#: scd/app-openpgp.c:2450 scd/app-openpgp.c:5050 +#: scd/app-openpgp.c:2451 scd/app-openpgp.c:5060 #, c-format msgid "card is permanently locked!\n" msgstr "カードが永久にロックされてます!\n" -#: scd/app-openpgp.c:2454 +#: scd/app-openpgp.c:2455 #, c-format msgid "%d Admin PIN attempt remaining before card is permanently locked\n" msgid_plural "" "%d Admin PIN attempts remaining before card is permanently locked\n" msgstr[0] "カードの永久ロック前に%d回の管理者PINの試行が残っています\n" -#: scd/app-openpgp.c:2485 +#: scd/app-openpgp.c:2486 #, c-format msgid "access to admin commands is not configured\n" msgstr "管理コマンドへのアクセスが設定されていません\n" -#: scd/app-openpgp.c:2823 +#: scd/app-openpgp.c:2826 msgid "||Please enter the PIN" msgstr "||PINを入力してください" -#: scd/app-openpgp.c:2872 +#: scd/app-openpgp.c:2875 msgid "||Please enter the Reset Code for the card" msgstr "||カードのリセット・コードを入力してください" -#: scd/app-openpgp.c:2882 scd/app-openpgp.c:2943 +#: scd/app-openpgp.c:2885 scd/app-openpgp.c:2946 #, c-format msgid "Reset Code is too short; minimum length is %d\n" msgstr "リセット・コードが短すぎます。最短の長さは%dです。\n" @@ -8071,131 +8083,131 @@ #. 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:2905 +#: scd/app-openpgp.c:2908 msgid "|RN|New Reset Code" msgstr "|RN|新しいリセット・コード" -#: scd/app-openpgp.c:2906 +#: scd/app-openpgp.c:2909 msgid "|AN|New Admin PIN" msgstr "|AN|新しい管理者PIN" -#: scd/app-openpgp.c:2906 +#: scd/app-openpgp.c:2909 msgid "|N|New PIN" msgstr "|N|新しいPIN" -#: scd/app-openpgp.c:2987 +#: scd/app-openpgp.c:2996 msgid "||Please enter the Admin PIN and New Admin PIN" msgstr "||管理者PINと新しい管理者PINを入力してください" -#: scd/app-openpgp.c:2988 +#: scd/app-openpgp.c:2997 msgid "||Please enter the PIN and New PIN" msgstr "||PINと新しいPINを入力してください" -#: scd/app-openpgp.c:3050 scd/app-openpgp.c:4346 +#: scd/app-openpgp.c:3059 scd/app-openpgp.c:4355 #, c-format msgid "error reading application data\n" msgstr "アプリケーション・データの読み込みエラー\n" -#: scd/app-openpgp.c:3056 scd/app-openpgp.c:4353 +#: scd/app-openpgp.c:3065 scd/app-openpgp.c:4362 #, c-format msgid "error reading fingerprint DO\n" msgstr "フィンガープリントのデータ・オブジェクトの読み込みエラー\n" -#: scd/app-openpgp.c:3066 +#: scd/app-openpgp.c:3075 #, c-format msgid "key already exists\n" msgstr "鍵はもうあります\n" -#: scd/app-openpgp.c:3070 +#: scd/app-openpgp.c:3079 #, c-format msgid "existing key will be replaced\n" msgstr "既存の鍵は置き換えられます\n" -#: scd/app-openpgp.c:3072 +#: scd/app-openpgp.c:3081 #, c-format msgid "generating new key\n" msgstr "新しい鍵を生成\n" -#: scd/app-openpgp.c:3074 +#: scd/app-openpgp.c:3083 #, c-format msgid "writing new key\n" msgstr "新しい鍵を書き込み\n" -#: scd/app-openpgp.c:3647 scd/app-openpgp.c:3999 +#: scd/app-openpgp.c:3656 scd/app-openpgp.c:4008 #, c-format msgid "creation timestamp missing\n" msgstr "作成時刻スタンプがありません\n" -#: scd/app-openpgp.c:3688 scd/app-openpgp.c:3696 +#: scd/app-openpgp.c:3697 scd/app-openpgp.c:3705 #, c-format msgid "RSA prime %s missing or not of size %d bits\n" msgstr "RSA素数 %s がありません、または%dビットのものではありません\n" -#: scd/app-openpgp.c:3829 scd/app-openpgp.c:4106 +#: scd/app-openpgp.c:3838 scd/app-openpgp.c:4115 #, c-format msgid "failed to store the key: %s\n" msgstr "鍵の保管に失敗しました: %s\n" -#: scd/app-openpgp.c:3993 +#: scd/app-openpgp.c:4002 #, c-format msgid "unsupported curve\n" msgstr "サポートされていない曲線\n" -#: scd/app-openpgp.c:4263 +#: scd/app-openpgp.c:4272 #, c-format msgid "please wait while key is being generated ...\n" msgstr "鍵生成の間、お待ちください ...\n" -#: scd/app-openpgp.c:4271 +#: scd/app-openpgp.c:4280 #, c-format msgid "generating key failed\n" msgstr "鍵の生成に失敗しました\n" -#: scd/app-openpgp.c:4277 +#: scd/app-openpgp.c:4286 #, c-format msgid "key generation completed (%d second)\n" msgid_plural "key generation completed (%d seconds)\n" msgstr[0] "鍵の生成が完了しました (%d秒)\n" -#: scd/app-openpgp.c:4311 +#: scd/app-openpgp.c:4320 #, c-format msgid "invalid structure of OpenPGP card (DO 0x93)\n" msgstr "OpenPGPカードに無効な構造 (データ・オブジェクト 0x93)\n" -#: scd/app-openpgp.c:4361 +#: scd/app-openpgp.c:4370 #, c-format msgid "fingerprint on card does not match requested one\n" msgstr "カードのフィンガープリントが要求されたものと一致しません\n" -#: scd/app-openpgp.c:4560 +#: scd/app-openpgp.c:4569 #, c-format msgid "card does not support digest algorithm %s\n" msgstr "カードはダイジェスト・アルゴリズム %s をサポートしていません\n" -#: scd/app-openpgp.c:4618 +#: scd/app-openpgp.c:4627 #, c-format msgid "signatures created so far: %lu\n" msgstr "これまでに作成された署名: %lu\n" -#: scd/app-openpgp.c:5055 +#: scd/app-openpgp.c:5065 #, c-format msgid "" "verification of Admin PIN is currently prohibited through this command\n" msgstr "管理者PINの確認はこのコマンドでは今のところ禁止されています\n" -#: scd/app-openpgp.c:5386 scd/app-openpgp.c:5398 +#: scd/app-openpgp.c:5396 scd/app-openpgp.c:5408 #, c-format msgid "can't access %s - invalid OpenPGP card?\n" msgstr "%sにアクセスできません - 無効なOpenPGPカード?\n" -#: scd/app-dinsig.c:298 +#: scd/app-dinsig.c:299 msgid "||Please enter your PIN at the reader's pinpad" msgstr "||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-dinsig.c:529 +#: scd/app-dinsig.c:532 msgid "|N|Initial New PIN" msgstr "|N|初期の新しいPIN" @@ -8283,11 +8295,11 @@ msgid "validation model requested by certificate: %s" msgstr "証明書から以下の検証モデルが要求されました: %s" -#: sm/certchain.c:199 sm/certchain.c:2164 +#: sm/certchain.c:199 sm/certchain.c:2165 msgid "chain" msgstr "chain" -#: sm/certchain.c:200 sm/certchain.c:2164 +#: sm/certchain.c:200 sm/certchain.c:2165 msgid "shell" msgstr "shell" @@ -8310,237 +8322,237 @@ msgid "failed to open '%s': %s\n" msgstr "'%s'が開けません: %s\n" -#: sm/certchain.c:355 sm/certchain.c:384 dirmngr/validate.c:204 +#: sm/certchain.c:355 sm/certchain.c:385 dirmngr/validate.c:204 #, c-format msgid "Note: non-critical certificate policy not allowed" msgstr "注意: クリティカルでない証明書ポリシーは認められません" -#: sm/certchain.c:359 sm/certchain.c:388 dirmngr/validate.c:209 +#: sm/certchain.c:359 sm/certchain.c:389 dirmngr/validate.c:209 #, c-format msgid "certificate policy not allowed" msgstr "証明書ポリシーは認められません" -#: sm/certchain.c:595 sm/keydb.c:1084 sm/keydb.c:1171 +#: sm/certchain.c:596 sm/keydb.c:1084 sm/keydb.c:1171 #, c-format msgid "failed to get the fingerprint\n" msgstr "フィンガープリントの取得に失敗しました\n" -#: sm/certchain.c:624 +#: sm/certchain.c:625 #, c-format msgid "looking up issuer at external location\n" msgstr "発行者の外部ロケーションを調べています\n" -#: sm/certchain.c:644 +#: sm/certchain.c:645 #, c-format msgid "number of issuers matching: %d\n" msgstr "マッチする発行者の数: %d\n" -#: sm/certchain.c:723 dirmngr/ocsp.c:685 +#: sm/certchain.c:724 dirmngr/ocsp.c:685 #, c-format msgid "can't get authorityInfoAccess: %s\n" msgstr "authorityInfoAccessを取得できません: %s\n" -#: sm/certchain.c:791 +#: sm/certchain.c:792 #, c-format msgid "looking up issuer from the Dirmngr cache\n" msgstr "Dirmngrキャッシュから発行者を調べています\n" -#: sm/certchain.c:816 +#: sm/certchain.c:817 #, c-format msgid "number of matching certificates: %d\n" msgstr "マッチする証明書の数: %d\n" -#: sm/certchain.c:819 +#: sm/certchain.c:820 #, c-format msgid "dirmngr cache-only key lookup failed: %s\n" msgstr "dirmngrのキャッシュだけの鍵探索に失敗しました: %s\n" -#: sm/certchain.c:1041 sm/certchain.c:1554 sm/certchain.c:2192 sm/decrypt.c:728 +#: sm/certchain.c:1042 sm/certchain.c:1555 sm/certchain.c:2193 sm/decrypt.c:728 #: sm/encrypt.c:345 sm/import.c:415 sm/keydb.c:1091 sm/keydb.c:1178 #: sm/sign.c:337 sm/verify.c:118 #, c-format msgid "failed to allocate keyDB handle\n" msgstr "keyDBハンドルの確保に失敗しました\n" -#: sm/certchain.c:1225 +#: sm/certchain.c:1226 msgid "certificate has been revoked" msgstr "証明書は失効済みです" -#: sm/certchain.c:1240 +#: sm/certchain.c:1241 msgid "the status of the certificate is unknown" msgstr "証明書のステイタスは不明です" -#: sm/certchain.c:1247 +#: sm/certchain.c:1248 #, c-format msgid "please make sure that the \"dirmngr\" is properly installed\n" msgstr "\"dirmngr\" が正しくインストールされていることを確認してください\n" -#: sm/certchain.c:1253 +#: sm/certchain.c:1254 #, c-format msgid "checking the CRL failed: %s" msgstr "CRLの検査に失敗しました: %s" -#: sm/certchain.c:1282 sm/certchain.c:1350 dirmngr/validate.c:497 +#: sm/certchain.c:1283 sm/certchain.c:1351 dirmngr/validate.c:497 #, c-format msgid "certificate with invalid validity: %s" msgstr "無効の妥当性の証明書: %s" -#: sm/certchain.c:1297 sm/certchain.c:1382 dirmngr/validate.c:515 +#: sm/certchain.c:1298 sm/certchain.c:1383 dirmngr/validate.c:515 #, c-format msgid "certificate not yet valid" msgstr "証明書はまだ有効ではありません" -#: sm/certchain.c:1298 sm/certchain.c:1383 +#: sm/certchain.c:1299 sm/certchain.c:1384 msgid "root certificate not yet valid" msgstr "ルート証明書がまだ有効ではありません" -#: sm/certchain.c:1299 sm/certchain.c:1384 +#: sm/certchain.c:1300 sm/certchain.c:1385 msgid "intermediate certificate not yet valid" msgstr "中間証明書はまだ有効ではありません" -#: sm/certchain.c:1312 dirmngr/validate.c:526 +#: sm/certchain.c:1313 dirmngr/validate.c:526 #, c-format msgid "certificate has expired" msgstr "証明書が有効期限を過ぎています" -#: sm/certchain.c:1313 +#: sm/certchain.c:1314 msgid "root certificate has expired" msgstr "ルート証明書が有効期限を過ぎています" -#: sm/certchain.c:1314 +#: sm/certchain.c:1315 msgid "intermediate certificate has expired" msgstr "中間証明書が有効期限を過ぎています" -#: sm/certchain.c:1356 +#: sm/certchain.c:1357 #, c-format msgid "required certificate attributes missing: %s%s%s" msgstr "必要な証明書の属性がありません: %s%s%s" -#: sm/certchain.c:1365 +#: sm/certchain.c:1366 msgid "certificate with invalid validity" msgstr "妥当性が無効な証明書" -#: sm/certchain.c:1402 +#: sm/certchain.c:1403 msgid "signature not created during lifetime of certificate" msgstr "証明書のライフタイムの間に署名が作られていません" -#: sm/certchain.c:1404 +#: sm/certchain.c:1405 msgid "certificate not created during lifetime of issuer" msgstr "発行者のライフタイムの間に証明書が作られていません" -#: sm/certchain.c:1405 +#: sm/certchain.c:1406 msgid "intermediate certificate not created during lifetime of issuer" msgstr "発行者のライフタイムの間に中間証明書が作られていません" -#: sm/certchain.c:1409 +#: sm/certchain.c:1410 #, c-format msgid " ( signature created at " msgstr " ( 署名、作成" -#: sm/certchain.c:1410 +#: sm/certchain.c:1411 #, c-format msgid " (certificate created at " msgstr " (証明書、作成" -#: sm/certchain.c:1413 +#: sm/certchain.c:1414 #, c-format msgid " (certificate valid from " msgstr " ( 証明書、有効" -#: sm/certchain.c:1414 +#: sm/certchain.c:1415 #, c-format msgid " ( issuer valid from " msgstr " ( 発行者、有効" -#: sm/certchain.c:1444 dirmngr/validate.c:577 +#: sm/certchain.c:1445 dirmngr/validate.c:577 #, c-format msgid "fingerprint=%s\n" msgstr "フィンガープリント=%s\n" -#: sm/certchain.c:1453 +#: sm/certchain.c:1454 #, c-format msgid "root certificate has now been marked as trusted\n" msgstr "ルート証明書は信用すると今、マークされました\n" -#: sm/certchain.c:1466 +#: sm/certchain.c:1467 #, c-format msgid "interactive marking as trusted not enabled in gpg-agent\n" msgstr "" "インタラクティブに信用するとマークすることがgpg-agentで有効となっていません\n" -#: sm/certchain.c:1472 +#: sm/certchain.c:1473 #, c-format msgid "interactive marking as trusted disabled for this session\n" msgstr "" "インタラクティブに信用するとマークすることはこのセッションでは無効となってい" "ます\n" -#: sm/certchain.c:1531 +#: sm/certchain.c:1532 msgid "WARNING: creation time of signature not known - assuming current time" msgstr "*警告*: 署名の作成時間が不明です - 現在時刻を仮定します" -#: sm/certchain.c:1595 +#: sm/certchain.c:1596 msgid "no issuer found in certificate" msgstr "証明書の発行者がありません" -#: sm/certchain.c:1673 +#: sm/certchain.c:1674 msgid "self-signed certificate has a BAD signature" msgstr "自己署名証明書に*不正な*署名があります" -#: sm/certchain.c:1742 dirmngr/validate.c:575 +#: sm/certchain.c:1743 dirmngr/validate.c:575 #, c-format msgid "root certificate is not marked trusted" msgstr "ルート証明書が信用できるとマークされていません" -#: sm/certchain.c:1758 +#: sm/certchain.c:1759 #, c-format msgid "checking the trust list failed: %s\n" msgstr "信用リストの検査に失敗しました: %s\n" -#: sm/certchain.c:1789 sm/import.c:176 sm/keylist.c:1396 dirmngr/validate.c:630 +#: sm/certchain.c:1790 sm/import.c:176 sm/keylist.c:1396 dirmngr/validate.c:630 #, c-format msgid "certificate chain too long\n" msgstr "証明書のチェインが長すぎます\n" -#: sm/certchain.c:1801 dirmngr/validate.c:642 +#: sm/certchain.c:1802 dirmngr/validate.c:642 #, c-format msgid "issuer certificate not found" msgstr "発行者証明書が見つかりません" -#: sm/certchain.c:1834 dirmngr/validate.c:668 +#: sm/certchain.c:1835 dirmngr/validate.c:668 #, c-format msgid "certificate has a BAD signature" msgstr "証明書に*不正な*署名があります" -#: sm/certchain.c:1866 dirmngr/validate.c:692 +#: sm/certchain.c:1867 dirmngr/validate.c:692 msgid "found another possible matching CA certificate - trying again" msgstr "別の一致する可能性があるCA証明書が見つかりました - 再度試します" -#: sm/certchain.c:1925 dirmngr/validate.c:717 +#: sm/certchain.c:1926 dirmngr/validate.c:717 #, c-format msgid "certificate chain longer than allowed by CA (%d)" msgstr "証明書のチェインがCAにより認められたもの(%d)より長くなっています" -#: sm/certchain.c:1967 sm/certchain.c:2263 dirmngr/validate.c:747 +#: sm/certchain.c:1968 sm/certchain.c:2264 dirmngr/validate.c:747 #, c-format msgid "certificate is good\n" msgstr "証明書は正しいです\n" -#: sm/certchain.c:1968 +#: sm/certchain.c:1969 #, c-format msgid "intermediate certificate is good\n" msgstr "中間証明書は正しいです\n" -#: sm/certchain.c:1969 +#: sm/certchain.c:1970 #, c-format msgid "root certificate is good\n" msgstr "ルート証明書は正しいです\n" -#: sm/certchain.c:2151 +#: sm/certchain.c:2152 msgid "switching to chain model" msgstr "チェイン・モデルに切り替えました" -#: sm/certchain.c:2160 +#: sm/certchain.c:2161 #, c-format msgid "validation model used: %s" msgstr "使用した検証モデル: %s" diff -Nru gnupg2-2.2.40/po/nb.po gnupg2-2.2.41/po/nb.po --- gnupg2-2.2.40/po/nb.po 2022-10-10 09:58:26.000000000 +0000 +++ gnupg2-2.2.41/po/nb.po 2022-12-09 08:48:34.000000000 +0000 @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: GNU gnupg 2.1\n" "Report-Msgid-Bugs-To: translations@gnupg.org\n" -"POT-Creation-Date: 2022-10-10 11:58+0200\n" +"POT-Creation-Date: 2022-12-09 09:48+0100\n" "PO-Revision-Date: 2017-11-02 17:40+0100\n" "Last-Translator: Åka Sikrom \n" "Language-Team: Norwegian Bokmål \n" @@ -234,20 +234,20 @@ msgid "ssh keys greater than %d bits are not supported\n" msgstr "ssh-nøkler som er lenger enn %d bit støttes ikke\n" -#: agent/command-ssh.c:862 common/dotlock.c:856 g10/card-util.c:947 -#: g10/exec.c:554 g10/export.c:1320 g10/gpg.c:1400 g10/keygen.c:4998 +#: agent/command-ssh.c:862 common/dotlock.c:856 g10/card-util.c:946 +#: g10/exec.c:554 g10/export.c:1335 g10/gpg.c:1409 g10/keygen.c:5052 #: g10/keyring.c:1322 g10/keyring.c:1637 g10/openfile.c:291 g10/sign.c:1008 #: g10/sign.c:1322 g10/tdbio.c:753 #, c-format msgid "can't create '%s': %s\n" msgstr "klarte ikke å lage «%s»: %s\n" -#: agent/command-ssh.c:874 common/helpfile.c:57 g10/card-util.c:904 +#: agent/command-ssh.c:874 common/helpfile.c:57 g10/card-util.c:903 #: g10/dearmor.c:59 g10/dearmor.c:106 g10/decrypt.c:65 g10/decrypt.c:136 -#: g10/decrypt.c:153 g10/encrypt.c:239 g10/encrypt.c:678 g10/gpg.c:1401 -#: g10/import.c:364 g10/import.c:548 g10/import.c:776 g10/keygen.c:4036 +#: g10/decrypt.c:153 g10/encrypt.c:239 g10/encrypt.c:678 g10/gpg.c:1410 +#: g10/import.c:365 g10/import.c:549 g10/import.c:777 g10/keygen.c:4090 #: g10/keyring.c:1663 g10/openfile.c:195 g10/openfile.c:209 g10/plaintext.c:128 -#: g10/plaintext.c:649 g10/sign.c:990 g10/sign.c:1201 g10/sign.c:1306 +#: g10/plaintext.c:654 g10/sign.c:990 g10/sign.c:1201 g10/sign.c:1306 #: g10/sign.c:1451 g10/tdbdump.c:145 g10/tdbdump.c:153 g10/tdbio.c:758 #: g10/tdbio.c:829 g10/verify.c:96 g10/verify.c:160 sm/gpgsm.c:2160 #: sm/gpgsm.c:2190 sm/gpgsm.c:2228 sm/qualified.c:66 dirmngr/certcache.c:420 @@ -471,33 +471,33 @@ msgid "csh-style command output" msgstr "csh-utdata for kommandoer" -#: agent/gpg-agent.c:185 g10/gpg.c:579 scd/scdaemon.c:126 sm/gpgsm.c:410 +#: agent/gpg-agent.c:185 g10/gpg.c:580 scd/scdaemon.c:126 sm/gpgsm.c:410 #: dirmngr/dirmngr.c:192 msgid "|FILE|read options from FILE" msgstr "|FIL|les valg fra valgt FIL" -#: agent/gpg-agent.c:189 g10/gpg.c:566 scd/scdaemon.c:130 sm/gpgsm.c:259 +#: agent/gpg-agent.c:189 g10/gpg.c:567 scd/scdaemon.c:130 sm/gpgsm.c:259 #: dirmngr/dirmngr.c:196 msgid "Options controlling the diagnostic output" msgstr "Styring av diagnostikk-utdata" -#: agent/gpg-agent.c:191 g10/gpg.c:568 g10/gpgv.c:78 kbx/kbxutil.c:88 +#: agent/gpg-agent.c:191 g10/gpg.c:569 g10/gpgv.c:78 kbx/kbxutil.c:88 #: scd/scdaemon.c:132 sm/gpgsm.c:261 dirmngr/dirmngr-client.c:70 #: dirmngr/dirmngr.c:198 tools/gpg-connect-agent.c:78 tools/gpgconf.c:110 msgid "verbose" msgstr "detaljert utskrift" -#: agent/gpg-agent.c:192 g10/gpg.c:570 g10/gpgv.c:79 kbx/kbxutil.c:89 +#: agent/gpg-agent.c:192 g10/gpg.c:571 g10/gpgv.c:79 kbx/kbxutil.c:89 #: scd/scdaemon.c:133 sm/gpgsm.c:263 dirmngr/dirmngr-client.c:71 #: dirmngr/dirmngr.c:199 msgid "be somewhat more quiet" msgstr "være noenlunde stille" -#: agent/gpg-agent.c:200 g10/gpg.c:583 sm/gpgsm.c:276 dirmngr/dirmngr.c:209 +#: agent/gpg-agent.c:200 g10/gpg.c:584 sm/gpgsm.c:276 dirmngr/dirmngr.c:209 msgid "|FILE|write server mode logs to FILE" msgstr "|FIL|skriv tjenermodus-logger til valgt FIL" -#: agent/gpg-agent.c:204 g10/gpg.c:589 scd/scdaemon.c:147 sm/gpgsm.c:283 +#: agent/gpg-agent.c:204 g10/gpg.c:590 scd/scdaemon.c:147 sm/gpgsm.c:283 #: dirmngr/dirmngr.c:213 msgid "Options controlling the configuration" msgstr "Oppsettsvalg" @@ -534,7 +534,7 @@ msgid "enable putty support" msgstr "slå på støtte for putty" -#: agent/gpg-agent.c:237 g10/gpg.c:831 scd/scdaemon.c:175 sm/gpgsm.c:369 +#: agent/gpg-agent.c:237 g10/gpg.c:832 scd/scdaemon.c:175 sm/gpgsm.c:369 msgid "Options controlling the security" msgstr "Sikkerhetsvalg" @@ -635,7 +635,7 @@ #. reporting address. This is so that we can change the #. reporting address without breaking the translations. #: agent/gpg-agent.c:563 agent/preset-passphrase.c:100 agent/protect-tool.c:155 -#: g10/gpg.c:1108 g10/gpgv.c:149 kbx/kbxutil.c:113 scd/scdaemon.c:313 +#: g10/gpg.c:1117 g10/gpgv.c:149 kbx/kbxutil.c:113 scd/scdaemon.c:313 #: sm/gpgsm.c:600 dirmngr/dirmngr-client.c:168 dirmngr/dirmngr.c:458 #: tools/gpg-connect-agent.c:205 tools/gpgconf.c:154 #: tools/gpg-check-pattern.c:143 @@ -654,26 +654,26 @@ "Syntaks: @GPG_AGENT@ [valg] [kommando [arg]]\n" "Håndtering av hemmelige nøkler for @GNUPG@\n" -#: agent/gpg-agent.c:619 g10/gpg.c:1304 scd/scdaemon.c:385 sm/gpgsm.c:748 +#: agent/gpg-agent.c:619 g10/gpg.c:1313 scd/scdaemon.c:385 sm/gpgsm.c:748 #: dirmngr/dirmngr.c:542 #, c-format msgid "invalid debug-level '%s' given\n" msgstr "«%s» er et ugyldig feilsøkingsnivå\n" -#: agent/gpg-agent.c:988 g10/gpg.c:3810 g10/gpg.c:3834 sm/gpgsm.c:1585 +#: agent/gpg-agent.c:988 g10/gpg.c:3830 g10/gpg.c:3854 sm/gpgsm.c:1585 #: sm/gpgsm.c:1591 #, c-format msgid "selected digest algorithm is invalid\n" msgstr "valg kontrollsum-algoritme er ugyldig\n" #: agent/gpg-agent.c:1216 agent/gpg-agent.c:2029 common/argparse.c:1766 -#: common/argparse.c:1858 g10/gpg.c:2517 scd/scdaemon.c:547 sm/gpgsm.c:1007 +#: common/argparse.c:1858 g10/gpg.c:2526 scd/scdaemon.c:547 sm/gpgsm.c:1007 #: dirmngr/dirmngr.c:1081 dirmngr/dirmngr.c:1937 #, c-format msgid "reading options from '%s'\n" msgstr "leser valg fra «%s»\n" -#: agent/gpg-agent.c:1332 g10/gpg.c:3751 scd/scdaemon.c:671 sm/gpgsm.c:1522 +#: agent/gpg-agent.c:1332 g10/gpg.c:3769 scd/scdaemon.c:671 sm/gpgsm.c:1522 #: dirmngr/dirmngr.c:1190 tools/gpg-connect-agent.c:1244 tools/gpgconf.c:677 #, c-format msgid "Note: '%s' is not considered an option\n" @@ -803,7 +803,7 @@ "Syntaks: gpg-preset-passphrase [valg] KEYGRIP\n" "Vedlikehold av hurtiglager for passord\n" -#: agent/protect-tool.c:108 g10/gpg.c:441 kbx/kbxutil.c:71 sm/gpgsm.c:210 +#: agent/protect-tool.c:108 g10/gpg.c:442 kbx/kbxutil.c:71 sm/gpgsm.c:210 #: dirmngr/dirmngr.c:171 tools/gpgconf.c:80 msgid "" "@Commands:\n" @@ -1030,7 +1030,7 @@ msgid "secret key parts are not available\n" msgstr "hemmelige nøkkeldeler er ikke tilgjenglig\n" -#: agent/cvt-openpgp.c:344 g10/card-util.c:1556 +#: agent/cvt-openpgp.c:344 g10/card-util.c:1555 #, c-format msgid "public key algorithm %d (%s) is not supported\n" msgstr "offentlig nøkkelalgoritme %d (%s) støttes ikke\n" @@ -1186,7 +1186,7 @@ msgid "out of core while allocating %lu bytes" msgstr "kjernen ble full under tildeling av %lu byte" -#: common/miscellaneous.c:115 g10/card-util.c:911 tools/no-libgcrypt.c:30 +#: common/miscellaneous.c:115 g10/card-util.c:910 tools/no-libgcrypt.c:30 #, c-format msgid "error allocating enough memory: %s\n" msgstr "feil under tildeling av minne: %s\n" @@ -1301,7 +1301,7 @@ msgstr "algoritme: %s" #: common/audit.c:774 common/audit.c:776 common/audit.c:921 common/audit.c:923 -#: scd/app-openpgp.c:3557 +#: scd/app-openpgp.c:3566 #, c-format msgid "unsupported algorithm: %s" msgstr "ustøttet algoritme: %s" @@ -1376,11 +1376,11 @@ msgid "Root certificate trustworthy" msgstr "Rotsertifikat regnes som troverdig" -#: common/audit.c:1112 sm/certchain.c:1235 +#: common/audit.c:1112 sm/certchain.c:1236 msgid "no CRL found for certificate" msgstr "fant ingen sertifikat-CRL" -#: common/audit.c:1115 sm/certchain.c:1245 +#: common/audit.c:1115 sm/certchain.c:1246 msgid "the available CRL is too old" msgstr "tilgjengelig CRL er for gammel" @@ -1509,7 +1509,7 @@ msgid "missing argument for option \"%.50s\"\n" msgstr "valget «%.50s» mangler et argument\n" -#: common/argparse.c:558 g10/gpg.c:3525 +#: common/argparse.c:558 g10/gpg.c:3543 #, c-format msgid "invalid argument for option \"%.50s\"\n" msgstr "ugyldig argument for valget «%.50s»\n" @@ -1608,92 +1608,92 @@ msgid "%s is too old (need %s, have %s)\n" msgstr "%s er for gammel (krever %s, har %s)\n" -#: g10/armor.c:423 +#: g10/armor.c:424 #, c-format msgid "armor: %s\n" msgstr "armor: %s\n" -#: g10/armor.c:462 +#: g10/armor.c:463 #, c-format msgid "invalid armor header: " msgstr "ugyldig armorheader: " -#: g10/armor.c:473 +#: g10/armor.c:474 #, c-format msgid "armor header: " msgstr "armorheader: " -#: g10/armor.c:486 +#: g10/armor.c:487 #, c-format msgid "invalid clearsig header\n" msgstr "ugyldig clearsigheader\n" -#: g10/armor.c:499 +#: g10/armor.c:500 #, c-format msgid "unknown armor header: " msgstr "ukjent skjold-hode: " -#: g10/armor.c:552 +#: g10/armor.c:553 #, c-format msgid "nested clear text signatures\n" msgstr "nøstede klartekst-signaturer\n" -#: g10/armor.c:687 +#: g10/armor.c:688 #, c-format msgid "unexpected armor: " msgstr "uforventet armering: " -#: g10/armor.c:700 +#: g10/armor.c:701 #, c-format msgid "invalid dash escaped line: " msgstr "ugyldig bindestrekbeskyttet linje: " -#: g10/armor.c:872 g10/armor.c:1492 +#: g10/armor.c:873 g10/armor.c:1493 #, c-format msgid "invalid radix64 character %02X skipped\n" msgstr "hoppet over ugyldig radix64-tegn %02x\n" -#: g10/armor.c:915 +#: g10/armor.c:916 #, c-format msgid "premature eof (no CRC)\n" msgstr "for tidlig eof (ingen CRC)\n" -#: g10/armor.c:949 +#: g10/armor.c:950 #, c-format msgid "premature eof (in CRC)\n" msgstr "for tidlig eof (i CRC)\n" -#: g10/armor.c:957 +#: g10/armor.c:958 #, c-format msgid "malformed CRC\n" msgstr "feilformatert CRC\n" -#: g10/armor.c:961 g10/armor.c:1529 +#: g10/armor.c:962 g10/armor.c:1530 #, c-format msgid "CRC error; %06lX - %06lX\n" msgstr "CRC-feil; %06lX - %06lX\n" -#: g10/armor.c:981 +#: g10/armor.c:982 #, c-format msgid "premature eof (in trailer)\n" msgstr "for tidlig eof (på sluttlinje)\n" -#: g10/armor.c:985 +#: g10/armor.c:986 #, c-format msgid "error in trailer line\n" msgstr "feil på etterfølgende linje\n" -#: g10/armor.c:1305 +#: g10/armor.c:1306 #, c-format msgid "no valid OpenPGP data found.\n" msgstr "fant ingen gyldig OpenPGP-data.\n" -#: g10/armor.c:1310 +#: g10/armor.c:1311 #, c-format msgid "invalid armor: line longer than %d characters\n" msgstr "ugyldig armor: linje lengre enn %d tegn\n" -#: g10/armor.c:1314 +#: g10/armor.c:1315 #, c-format msgid "" "quoted printable character in armor - probably a buggy MTA has been used\n" @@ -1835,24 +1835,24 @@ msgid "server uses an invalid certificate" msgstr "lag opphevelsessertifikat" -#: g10/call-dirmngr.c:462 g10/gpg.c:4458 +#: g10/call-dirmngr.c:462 g10/gpg.c:4478 #, fuzzy, c-format #| msgid "armor: %s\n" msgid "Note: %s\n" msgstr "armor: %s\n" -#: g10/card-util.c:86 g10/card-util.c:366 g10/card-util.c:1918 +#: g10/card-util.c:86 g10/card-util.c:366 g10/card-util.c:1917 #, c-format msgid "OpenPGP card not available: %s\n" msgstr "OpenPGP-kort er ikke tilgjengelig: %s\n" -#: g10/card-util.c:91 g10/card-util.c:1924 +#: g10/card-util.c:91 g10/card-util.c:1923 #, c-format msgid "OpenPGP card no. %s detected\n" msgstr "Oppdaget OpenPGP-kortnummer %s\n" -#: g10/card-util.c:97 g10/card-util.c:2253 g10/delkey.c:160 g10/keyedit.c:1423 -#: g10/keygen.c:4466 g10/revoke.c:214 g10/revoke.c:636 +#: g10/card-util.c:97 g10/card-util.c:2252 g10/delkey.c:160 g10/keyedit.c:1423 +#: g10/keygen.c:4520 g10/revoke.c:214 g10/revoke.c:636 #, c-format msgid "can't do this in batch mode\n" msgstr "du kan ikke gjøres dette i buntmodus\n" @@ -1862,14 +1862,14 @@ msgid "This command is only available for version 2 cards\n" msgstr "Denne kommandoen er bare tilgjengelig for kort av versjon 2\n" -#: g10/card-util.c:107 scd/app-openpgp.c:2866 +#: g10/card-util.c:107 scd/app-openpgp.c:2869 #, c-format msgid "Reset Code not or not anymore available\n" msgstr "Tilbakestillingskode er ikke tilgjengelig\n" -#: g10/card-util.c:140 g10/card-util.c:1442 g10/card-util.c:1704 -#: g10/card-util.c:1796 g10/keyedit.c:394 g10/keyedit.c:415 g10/keyedit.c:429 -#: g10/keygen.c:1808 g10/keygen.c:1980 g10/keygen.c:2186 g10/keygen.c:2477 +#: g10/card-util.c:140 g10/card-util.c:1441 g10/card-util.c:1703 +#: g10/card-util.c:1795 g10/keyedit.c:394 g10/keyedit.c:415 g10/keyedit.c:429 +#: g10/keygen.c:1862 g10/keygen.c:2034 g10/keygen.c:2240 g10/keygen.c:2531 #: sm/certreqgen-ui.c:165 sm/certreqgen-ui.c:291 sm/certreqgen-ui.c:325 msgid "Your selection? " msgstr "Ditt valg? " @@ -1919,79 +1919,79 @@ msgid "Error: Combined name too long (limit is %d characters).\n" msgstr "Feil: Det kombinerte navnet er for langt (grensa går ved %d tegn).\n" -#: g10/card-util.c:826 +#: g10/card-util.c:825 msgid "URL to retrieve public key: " msgstr "Adresse for henting av offentlig nøkkel: " -#: g10/card-util.c:920 g10/decrypt-data.c:509 g10/import.c:399 g10/import.c:746 -#: g10/import.c:798 dirmngr/crlcache.c:655 dirmngr/crlcache.c:660 +#: g10/card-util.c:919 g10/decrypt-data.c:509 g10/import.c:400 g10/import.c:747 +#: g10/import.c:799 dirmngr/crlcache.c:655 dirmngr/crlcache.c:660 #: dirmngr/crlcache.c:914 dirmngr/crlcache.c:920 dirmngr/dirmngr.c:1748 #: tools/gpgconf.c:483 tools/gpgconf.c:529 #, c-format msgid "error reading '%s': %s\n" msgstr "feil under lesing av «%s»: %s\n" -#: g10/card-util.c:953 g10/decrypt-data.c:512 g10/export.c:2467 +#: g10/card-util.c:952 g10/decrypt-data.c:512 g10/export.c:2586 #: dirmngr/crlcache.c:925 #, c-format msgid "error writing '%s': %s\n" msgstr "feil under skriving av «%s»: %s\n" -#: g10/card-util.c:980 +#: g10/card-util.c:979 msgid "Login data (account name): " msgstr "Logindata (kontonavn): " -#: g10/card-util.c:1018 +#: g10/card-util.c:1017 msgid "Private DO data: " msgstr "Privat DO-data: " -#: g10/card-util.c:1103 +#: g10/card-util.c:1102 msgid "Language preferences: " msgstr "Språkoppsett: " -#: g10/card-util.c:1111 +#: g10/card-util.c:1110 msgid "Error: invalid length of preference string.\n" msgstr "Feil: oppsettsstreng har ugyldig lengde.\n" -#: g10/card-util.c:1120 +#: g10/card-util.c:1119 msgid "Error: invalid characters in preference string.\n" msgstr "Feil: oppsettsstreng inneholder ugyldige tegn.\n" -#: g10/card-util.c:1142 +#: g10/card-util.c:1141 msgid "Salutation (M = Mr., F = Ms., or space): " msgstr "" -#: g10/card-util.c:1156 +#: g10/card-util.c:1155 msgid "Error: invalid response.\n" msgstr "Feil: ugyldig svar.\n" -#: g10/card-util.c:1178 +#: g10/card-util.c:1177 msgid "CA fingerprint: " msgstr "CA-fingeravtrykk: " -#: g10/card-util.c:1201 +#: g10/card-util.c:1200 msgid "Error: invalid formatted fingerprint.\n" msgstr "Feil: feilformatert fingeravtrykk.\n" -#: g10/card-util.c:1252 +#: g10/card-util.c:1251 #, c-format msgid "key operation not possible: %s\n" msgstr "klarte ikke å utføre nøkkelhandling: %s\n" -#: g10/card-util.c:1253 +#: g10/card-util.c:1252 msgid "not an OpenPGP card" msgstr "ikke et OpenPGP-kort" -#: g10/card-util.c:1266 g10/keygen.c:4486 g10/keygen.c:5562 +#: g10/card-util.c:1265 g10/keygen.c:4540 g10/keygen.c:5616 #, c-format msgid "error getting current key info: %s\n" msgstr "feil under henting av nøkkelinfo: %s\n" -#: g10/card-util.c:1351 +#: g10/card-util.c:1350 msgid "Replace existing key? (y/N) " msgstr "Erstatte eksisterende nøkkel? (j/N) " -#: g10/card-util.c:1368 +#: g10/card-util.c:1367 msgid "" "Note: There is no guarantee that the card supports the requested size.\n" " If the key generation does not succeed, please check the\n" @@ -2001,107 +2001,107 @@ " Se dokumentasjon for kortet du bruker og finn ut hvilke størrelser \n" " det tillater hvis nøkkelgenerering mislykkes.\n" -#: g10/card-util.c:1390 g10/keygen.c:2363 sm/certreqgen-ui.c:179 +#: g10/card-util.c:1389 g10/keygen.c:2417 sm/certreqgen-ui.c:179 #, c-format msgid "What keysize do you want? (%u) " msgstr "Hvor stor skal nøkkelen være? (%u) " -#: g10/card-util.c:1400 g10/keygen.c:2286 g10/keygen.c:2318 +#: g10/card-util.c:1399 g10/keygen.c:2340 g10/keygen.c:2372 #: sm/certreqgen-ui.c:194 #, c-format msgid "rounded up to %u bits\n" msgstr "rundet opp til %u bit\n" -#: g10/card-util.c:1408 g10/keygen.c:2371 sm/certreqgen-ui.c:184 +#: g10/card-util.c:1407 g10/keygen.c:2425 sm/certreqgen-ui.c:184 #, c-format msgid "%s keysizes must be in the range %u-%u\n" msgstr "%s nøkkelstørrelser må ligge i rekkevidden %u-%u\n" -#: g10/card-util.c:1427 +#: g10/card-util.c:1426 msgid "Changing card key attribute for: " msgstr "" -#: g10/card-util.c:1429 +#: g10/card-util.c:1428 #, fuzzy #| msgid " (1) Signature key\n" msgid "Signature key\n" msgstr " (1) Signaturnøkkel\n" -#: g10/card-util.c:1431 +#: g10/card-util.c:1430 #, fuzzy #| msgid " (2) Encryption key\n" msgid "Encryption key\n" msgstr " (2) Krypteringsnøkkel\n" -#: g10/card-util.c:1433 +#: g10/card-util.c:1432 #, fuzzy #| msgid " (3) Authentication key\n" msgid "Authentication key\n" msgstr " (3) Autentiseringsnøkkel\n" -#: g10/card-util.c:1435 g10/keygen.c:1926 sm/certreqgen-ui.c:157 +#: g10/card-util.c:1434 g10/keygen.c:1980 sm/certreqgen-ui.c:157 msgid "Please select what kind of key you want:\n" msgstr "Velg hvilken type nøkkel du vil ha:\n" -#: g10/card-util.c:1436 sm/certreqgen-ui.c:158 +#: g10/card-util.c:1435 sm/certreqgen-ui.c:158 #, c-format msgid " (%d) RSA\n" msgstr " (%d) RSA\n" -#: g10/card-util.c:1437 +#: g10/card-util.c:1436 #, fuzzy, c-format #| msgid " (%d) ECC and ECC\n" msgid " (%d) ECC\n" msgstr " (%d) ECC og ECC\n" -#: g10/card-util.c:1449 g10/card-util.c:1716 g10/card-util.c:1816 -#: g10/keyedit.c:900 g10/keygen.c:1834 g10/keygen.c:1862 g10/keygen.c:1987 -#: g10/keygen.c:2222 g10/keygen.c:2505 g10/revoke.c:838 +#: g10/card-util.c:1448 g10/card-util.c:1715 g10/card-util.c:1815 +#: g10/keyedit.c:900 g10/keygen.c:1888 g10/keygen.c:1916 g10/keygen.c:2041 +#: g10/keygen.c:2276 g10/keygen.c:2559 g10/revoke.c:838 msgid "Invalid selection.\n" msgstr "Ugyldig valg.\n" -#: g10/card-util.c:1522 +#: g10/card-util.c:1521 #, c-format msgid "The card will now be re-configured to generate a key of %u bits\n" msgstr "Kortet blir nå satt opp på nytt for å lage nøkkel på %u bit\n" -#: g10/card-util.c:1527 +#: g10/card-util.c:1526 #, fuzzy, c-format #| msgid "The card will now be re-configured to generate a key of %u bits\n" msgid "The card will now be re-configured to generate a key of type: %s\n" msgstr "Kortet blir nå satt opp på nytt for å lage nøkkel på %u bit\n" -#: g10/card-util.c:1563 +#: g10/card-util.c:1562 #, fuzzy, c-format #| msgid "error changing size of key %d to %u bits: %s\n" msgid "error changing key attribute for key %d: %s\n" msgstr "feil under endring av størrelse på nøkkel %d til %u bit: %s\n" -#: g10/card-util.c:1579 g10/card-util.c:2106 +#: g10/card-util.c:1578 g10/card-util.c:2105 #, fuzzy, c-format #| msgid "error getting current key info: %s\n" msgid "error getting card info: %s\n" msgstr "feil under henting av nøkkelinfo: %s\n" -#: g10/card-util.c:1585 g10/card-util.c:1930 g10/card-util.c:2112 +#: g10/card-util.c:1584 g10/card-util.c:1929 g10/card-util.c:2111 #, c-format msgid "This command is not supported by this card\n" msgstr "Denne kommandoen støttes ikke av dette kortet\n" -#: g10/card-util.c:1631 +#: g10/card-util.c:1630 msgid "Make off-card backup of encryption key? (Y/n) " msgstr "Lage sikkerhetskopi av krypteringsnøkler utenfor kortet? (J/n) " -#: g10/card-util.c:1645 +#: g10/card-util.c:1644 #, c-format msgid "Note: keys are already stored on the card!\n" msgstr "MERK: det ligger allerede nøkler på kortet.\n" -#: g10/card-util.c:1648 +#: g10/card-util.c:1647 msgid "Replace existing keys? (y/N) " msgstr "Erstatte eksisterende nøkler? (j/N) " -#: g10/card-util.c:1660 +#: g10/card-util.c:1659 #, c-format msgid "" "Please note that the factory settings of the PINs are\n" @@ -2112,149 +2112,149 @@ " PIN = «%s» Admin-PIN = «%s»\n" "Du bør endre disse med kommandoen «--change-pin»\n" -#: g10/card-util.c:1695 +#: g10/card-util.c:1694 msgid "Please select the type of key to generate:\n" msgstr "Velg hvilken type nøkkel du vil lage:\n" -#: g10/card-util.c:1697 g10/card-util.c:1787 +#: g10/card-util.c:1696 g10/card-util.c:1786 msgid " (1) Signature key\n" msgstr " (1) Signaturnøkkel\n" -#: g10/card-util.c:1698 g10/card-util.c:1789 +#: g10/card-util.c:1697 g10/card-util.c:1788 msgid " (2) Encryption key\n" msgstr " (2) Krypteringsnøkkel\n" -#: g10/card-util.c:1699 g10/card-util.c:1791 +#: g10/card-util.c:1698 g10/card-util.c:1790 msgid " (3) Authentication key\n" msgstr " (3) Autentiseringsnøkkel\n" -#: g10/card-util.c:1784 +#: g10/card-util.c:1783 msgid "Please select where to store the key:\n" msgstr "velg hvor nøkkelen skal lagres:\n" -#: g10/card-util.c:1830 +#: g10/card-util.c:1829 #, c-format msgid "KEYTOCARD failed: %s\n" msgstr "KEYTOCARD mislyktes: %s\n" -#: g10/card-util.c:1935 +#: g10/card-util.c:1934 #, c-format msgid "Note: This command destroys all keys stored on the card!\n" msgstr "Merk: denne kommandoen ødelegger alle nøkler på kortet.\n" -#: g10/card-util.c:1938 +#: g10/card-util.c:1937 msgid "Continue? (y/N) " msgstr "Vil du fortsette? (j/N) " -#: g10/card-util.c:1943 +#: g10/card-util.c:1942 msgid "Really do a factory reset? (enter \"yes\") " msgstr "Er du sikker på at du vil gjenopprette fabrikkoppsett? (skriv «ja») " -#: g10/card-util.c:2129 +#: g10/card-util.c:2128 #, fuzzy, c-format #| msgid "error looking up: %s\n" msgid "error for setup KDF: %s\n" msgstr "feil under oppslag av %s\n" -#: g10/card-util.c:2158 g10/keyedit.c:1260 +#: g10/card-util.c:2157 g10/keyedit.c:1260 msgid "quit this menu" msgstr "gå ut av denne menyen" -#: g10/card-util.c:2160 +#: g10/card-util.c:2159 msgid "show admin commands" msgstr "vis admin-kommandoer" -#: g10/card-util.c:2161 g10/keyedit.c:1263 +#: g10/card-util.c:2160 g10/keyedit.c:1263 msgid "show this help" msgstr "vis denne hjelpeteksten" -#: g10/card-util.c:2163 +#: g10/card-util.c:2162 msgid "list all available data" msgstr "vis alle tilgjengelige data" -#: g10/card-util.c:2166 +#: g10/card-util.c:2165 msgid "change card holder's name" msgstr "endre kortholders navn" -#: g10/card-util.c:2167 +#: g10/card-util.c:2166 msgid "change URL to retrieve key" msgstr "endre adresse for å hente nøkkel" -#: g10/card-util.c:2168 +#: g10/card-util.c:2167 msgid "fetch the key specified in the card URL" msgstr "hent nøkkel som ligger i kortets adresse" -#: g10/card-util.c:2169 +#: g10/card-util.c:2168 msgid "change the login name" msgstr "endre brukernavn" -#: g10/card-util.c:2170 +#: g10/card-util.c:2169 msgid "change the language preferences" msgstr "endre språkoppsett" -#: g10/card-util.c:2171 +#: g10/card-util.c:2170 #, fuzzy #| msgid "change card holder's sex" msgid "change card holder's salutation" msgstr "endre kortholders kjønn" -#: g10/card-util.c:2173 +#: g10/card-util.c:2172 msgid "change a CA fingerprint" msgstr "endre CA-fingeravtrykk" -#: g10/card-util.c:2174 +#: g10/card-util.c:2173 msgid "toggle the signature force PIN flag" msgstr "slå av på tvungen bruk av signatur-PIN" -#: g10/card-util.c:2175 +#: g10/card-util.c:2174 msgid "generate new keys" msgstr "lag nye nøkler" -#: g10/card-util.c:2176 +#: g10/card-util.c:2175 msgid "menu to change or unblock the PIN" msgstr "meny for å endre eller fjerne blokkering av PIN" -#: g10/card-util.c:2177 +#: g10/card-util.c:2176 msgid "verify the PIN and list all data" msgstr "bekrefte PIN og vise alle data" -#: g10/card-util.c:2178 +#: g10/card-util.c:2177 msgid "unblock the PIN using a Reset Code" msgstr "fjern PIN-blokkering med en tilbakestillingskode" -#: g10/card-util.c:2179 +#: g10/card-util.c:2178 msgid "destroy all keys and data" msgstr "ødelegg alle nøkler og data" -#: g10/card-util.c:2180 +#: g10/card-util.c:2179 #, fuzzy #| msgid "|NAME|use user NAME for authentication" msgid "setup KDF for PIN authentication" msgstr "|NAVN|bruk valgt brukerNAVN til autentisering" -#: g10/card-util.c:2181 +#: g10/card-util.c:2180 #, fuzzy #| msgid "change the ownertrust" msgid "change the key attribute" msgstr "endre eiertillit" -#: g10/card-util.c:2305 +#: g10/card-util.c:2304 msgid "gpg/card> " msgstr "gpg/kort> " -#: g10/card-util.c:2346 +#: g10/card-util.c:2345 msgid "Admin-only command\n" msgstr "Admin-reservert kommando\n" -#: g10/card-util.c:2377 +#: g10/card-util.c:2376 msgid "Admin commands are allowed\n" msgstr "Admin-kommandoer er tillatt\n" -#: g10/card-util.c:2379 +#: g10/card-util.c:2378 msgid "Admin commands are not allowed\n" msgstr "Admin-kommandoer er ikke tillatt\n" -#: g10/card-util.c:2482 g10/keyedit.c:2229 +#: g10/card-util.c:2481 g10/keyedit.c:2229 msgid "Invalid command (try \"help\")\n" msgstr "Ugyldig kommando (prøv «help»)\n" @@ -2263,21 +2263,21 @@ msgid "--output doesn't work for this command\n" msgstr "«--output» virker ikke med denne kommandoen\n" -#: g10/decrypt.c:247 g10/gpg.c:5155 g10/keyring.c:399 g10/keyring.c:750 +#: g10/decrypt.c:247 g10/gpg.c:5175 g10/keyring.c:399 g10/keyring.c:750 #, c-format msgid "can't open '%s'\n" msgstr "klarte ikke å åpne «%s»\n" -#: g10/delkey.c:83 g10/export.c:1947 g10/export.c:2230 g10/export.c:2351 -#: g10/getkey.c:2108 g10/gpg.c:5100 g10/keyedit.c:1445 g10/keyedit.c:2335 +#: g10/delkey.c:83 g10/export.c:2035 g10/export.c:2349 g10/export.c:2470 +#: g10/getkey.c:2108 g10/gpg.c:5120 g10/keyedit.c:1445 g10/keyedit.c:2335 #: g10/keyedit.c:2637 g10/keyedit.c:4600 g10/keylist.c:693 g10/keyserver.c:1092 #: g10/revoke.c:230 g10/tofu.c:2165 #, c-format msgid "key \"%s\" not found: %s\n" msgstr "fant ikke nøkkelen «%s»: %s\n" -#: g10/delkey.c:92 g10/export.c:2015 g10/getkey.c:2116 g10/getkey.c:4517 -#: g10/gpg.c:5109 g10/keyedit.c:2308 g10/keyserver.c:1110 g10/revoke.c:236 +#: g10/delkey.c:92 g10/export.c:2103 g10/getkey.c:2116 g10/getkey.c:4517 +#: g10/gpg.c:5129 g10/keyedit.c:2308 g10/keyserver.c:1110 g10/revoke.c:236 #: g10/revoke.c:663 g10/tofu.c:2173 #, c-format msgid "error reading keyblock: %s\n" @@ -2396,13 +2396,13 @@ msgid "WARNING: '%s' is an empty file\n" msgstr "ADVARSEL: «%s» er en tom fil\n" -#: g10/encrypt.c:446 g10/encrypt.c:521 g10/decrypt-data.c:266 g10/gpg.c:3959 -#: g10/gpg.c:3999 sm/decrypt.c:826 sm/encrypt.c:416 sm/gpgsm.c:1609 +#: g10/encrypt.c:446 g10/encrypt.c:521 g10/decrypt-data.c:266 g10/gpg.c:3979 +#: g10/gpg.c:4019 sm/decrypt.c:826 sm/encrypt.c:416 sm/gpgsm.c:1609 #, c-format msgid "cipher algorithm '%s' may not be used in %s mode\n" msgstr "du kan ikke bruke algoritme «%s» i %s-modus\n" -#: g10/encrypt.c:455 g10/gpg.c:3965 g10/gpg.c:4011 g10/sig-check.c:175 +#: g10/encrypt.c:455 g10/gpg.c:3985 g10/gpg.c:4031 g10/sig-check.c:175 #: g10/sign.c:391 sm/gpgsm.c:1619 sm/gpgsm.c:1629 sm/sign.c:478 sm/verify.c:506 #, c-format msgid "digest algorithm '%s' may not be used in %s mode\n" @@ -2519,61 +2519,67 @@ msgid "WARNING: unable to remove temp directory '%s': %s\n" msgstr "ADVARSEL: klarte ikke å fjerne midlertidig mappe «%s»: %s\n" -#: g10/export.c:119 +#: g10/export.c:124 msgid "export signatures that are marked as local-only" msgstr "eksportere signaturer som er markert som bare-lokale" -#: g10/export.c:121 +#: g10/export.c:126 msgid "export attribute user IDs (generally photo IDs)" msgstr "eksporter bruker-id-er (generelt foto-id-er)" -#: g10/export.c:123 +#: g10/export.c:128 msgid "export revocation keys marked as \"sensitive\"" msgstr "eksporter opphevelsesnøkler markert som «sensitive»" -#: g10/export.c:125 +#: g10/export.c:130 msgid "remove unusable parts from key during export" msgstr "fjern ubrukelige deler fra nøkkelen under eksportering" -#: g10/export.c:127 +#: g10/export.c:132 msgid "remove as much as possible from key during export" msgstr "fjern så mye som mulig fra nøkkelen under eksportering" -#: g10/export.c:133 +#: g10/export.c:138 +#, fuzzy +#| msgid "generate a revocation certificate" +msgid "export only revocation certificates" +msgstr "lag opphevelsessertifikat" + +#: g10/export.c:141 msgid "use the GnuPG key backup format" msgstr "bruk GnuPG-format til sikkerhetskopiering av nøkkel" -#: g10/export.c:1291 +#: g10/export.c:1306 msgid " - skipped" msgstr ". Hoppet over" -#: g10/export.c:1324 g10/import.c:2085 g10/openfile.c:200 g10/openfile.c:294 +#: g10/export.c:1339 g10/import.c:2089 g10/openfile.c:200 g10/openfile.c:294 #: g10/sign.c:1012 g10/sign.c:1326 #, c-format msgid "writing to '%s'\n" msgstr "skriver til «%s»\n" -#: g10/export.c:1769 +#: g10/export.c:1784 #, c-format msgid "key %s: key material on-card - skipped\n" msgstr "nøkkel %s: nøkkelmateriell på kort - hoppet over\n" -#: g10/export.c:1964 +#: g10/export.c:2052 #, c-format msgid "exporting secret keys not allowed\n" msgstr "eksportering av hemmelige nøkler er ikke tillatt\n" -#: g10/export.c:2041 +#: g10/export.c:2129 #, c-format msgid "key %s: PGP 2.x style key - skipped\n" msgstr "nøkkel %s: PGP 2.x-aktig nøkkel - hoppet over\n" -#: g10/export.c:2135 +#: g10/export.c:2254 #, c-format msgid "WARNING: nothing exported\n" msgstr "ADVARSEL: ingenting eksportert\n" -#: g10/export.c:2432 g10/plaintext.c:153 g10/plaintext.c:162 +#: g10/export.c:2551 g10/plaintext.c:153 g10/plaintext.c:162 #: g10/plaintext.c:168 g10/plaintext.c:191 #, c-format msgid "error creating '%s': %s\n" @@ -2637,284 +2643,284 @@ msgid "using subkey %s instead of primary key %s\n" msgstr "bruker undernøkkel %s i stedet for primærnøkkel %s\n" -#: g10/getkey.c:4446 g10/gpg.c:2137 +#: g10/getkey.c:4446 g10/gpg.c:2146 #, c-format msgid "valid values for option '%s':\n" msgstr "følgende verdier er gyldige for «%s»:\n" -#: g10/gpg.c:443 sm/gpgsm.c:212 +#: g10/gpg.c:444 sm/gpgsm.c:212 msgid "make a signature" msgstr "lag signatur" -#: g10/gpg.c:444 +#: g10/gpg.c:445 msgid "make a clear text signature" msgstr "lag klartekst-signatur" -#: g10/gpg.c:446 sm/gpgsm.c:214 +#: g10/gpg.c:447 sm/gpgsm.c:214 msgid "make a detached signature" msgstr "lag adskilt signatur" -#: g10/gpg.c:447 sm/gpgsm.c:215 +#: g10/gpg.c:448 sm/gpgsm.c:215 msgid "encrypt data" msgstr "krypter data" -#: g10/gpg.c:449 +#: g10/gpg.c:450 msgid "encryption only with symmetric cipher" msgstr "krypter data (symmetrisk)" -#: g10/gpg.c:451 sm/gpgsm.c:217 +#: g10/gpg.c:452 sm/gpgsm.c:217 msgid "decrypt data (default)" msgstr "dekrypter data (forvalgt)" -#: g10/gpg.c:453 sm/gpgsm.c:218 +#: g10/gpg.c:454 sm/gpgsm.c:218 msgid "verify a signature" msgstr "bekreft signatur" -#: g10/gpg.c:455 sm/gpgsm.c:219 +#: g10/gpg.c:456 sm/gpgsm.c:219 msgid "list keys" msgstr "vis nøkler" -#: g10/gpg.c:457 +#: g10/gpg.c:458 msgid "list keys and signatures" msgstr "vis nøkler og signaturer" -#: g10/gpg.c:460 +#: g10/gpg.c:461 msgid "list and check key signatures" msgstr "vis og kontroller nøkkelsignaturer" -#: g10/gpg.c:462 sm/gpgsm.c:224 +#: g10/gpg.c:463 sm/gpgsm.c:224 msgid "list keys and fingerprints" msgstr "vis nøkler og fingeravtrykk" -#: g10/gpg.c:463 sm/gpgsm.c:222 +#: g10/gpg.c:464 sm/gpgsm.c:222 msgid "list secret keys" msgstr "vis hemmelige nøkler" -#: g10/gpg.c:465 sm/gpgsm.c:225 +#: g10/gpg.c:466 sm/gpgsm.c:225 msgid "generate a new key pair" msgstr "lag nytt nøkkelpar" -#: g10/gpg.c:468 +#: g10/gpg.c:469 msgid "quickly generate a new key pair" msgstr "lag nytt nøkkelpar raskt" -#: g10/gpg.c:471 +#: g10/gpg.c:472 msgid "quickly add a new user-id" msgstr "legg til en ny bruker-ID raskt" -#: g10/gpg.c:476 +#: g10/gpg.c:477 msgid "quickly revoke a user-id" msgstr "opphev bruker-ID raskt" -#: g10/gpg.c:479 +#: g10/gpg.c:480 msgid "quickly set a new expiration date" msgstr "endre utløpsdato raskt" -#: g10/gpg.c:482 +#: g10/gpg.c:483 msgid "full featured key pair generation" msgstr "fullverdig generering av nøkkelpar" -#: g10/gpg.c:485 +#: g10/gpg.c:486 msgid "generate a revocation certificate" msgstr "lag opphevelsessertifikat" -#: g10/gpg.c:488 sm/gpgsm.c:228 +#: g10/gpg.c:489 sm/gpgsm.c:228 msgid "remove keys from the public keyring" msgstr "fjern nøkler fra offentlig nøkkelknippe" -#: g10/gpg.c:490 +#: g10/gpg.c:491 msgid "remove keys from the secret keyring" msgstr "fjern nøkler fra hemmelig nøkkelknippe" -#: g10/gpg.c:492 +#: g10/gpg.c:493 msgid "quickly sign a key" msgstr "hurtigsigner nøkkel" -#: g10/gpg.c:494 +#: g10/gpg.c:495 msgid "quickly sign a key locally" msgstr "hurtigsigner nøkkel lokalt" -#: g10/gpg.c:496 +#: g10/gpg.c:497 #, fuzzy #| msgid "quickly revoke a user-id" msgid "quickly revoke a key signature" msgstr "opphev bruker-ID raskt" -#: g10/gpg.c:497 +#: g10/gpg.c:498 msgid "sign a key" msgstr "signer nøkkel" -#: g10/gpg.c:498 +#: g10/gpg.c:499 msgid "sign a key locally" msgstr "signer nøkkel lokalt" -#: g10/gpg.c:499 +#: g10/gpg.c:500 msgid "sign or edit a key" msgstr "signer eller rediger nøkkel" -#: g10/gpg.c:501 sm/gpgsm.c:246 +#: g10/gpg.c:502 sm/gpgsm.c:246 msgid "change a passphrase" msgstr "endre passordfrase" -#: g10/gpg.c:505 +#: g10/gpg.c:506 msgid "export keys" msgstr "eksporter nøkler" -#: g10/gpg.c:506 +#: g10/gpg.c:507 msgid "export keys to a keyserver" msgstr "eksporter nøkler til nøkkeltjener" -#: g10/gpg.c:507 +#: g10/gpg.c:508 msgid "import keys from a keyserver" msgstr "importer nøkler fra nøkkeltjener" -#: g10/gpg.c:510 +#: g10/gpg.c:511 msgid "search for keys on a keyserver" msgstr "søk etter nøkler på nøkkeltjener" -#: g10/gpg.c:512 +#: g10/gpg.c:513 msgid "update all keys from a keyserver" msgstr "oppdater alle nøkler fra nøkkeltjener" -#: g10/gpg.c:520 +#: g10/gpg.c:521 msgid "import/merge keys" msgstr "importer/slå sammen nøkler" -#: g10/gpg.c:523 +#: g10/gpg.c:524 msgid "print the card status" msgstr "vis kortstatus" -#: g10/gpg.c:524 +#: g10/gpg.c:525 msgid "change data on a card" msgstr "endre data på kort" -#: g10/gpg.c:526 +#: g10/gpg.c:527 msgid "change a card's PIN" msgstr "endre PIN på kort" -#: g10/gpg.c:538 +#: g10/gpg.c:539 msgid "update the trust database" msgstr "oppdater tillitsdatabase" -#: g10/gpg.c:548 +#: g10/gpg.c:549 msgid "print message digests" msgstr "skriv ut kontrollsum av melding" -#: g10/gpg.c:552 sm/gpgsm.c:241 +#: g10/gpg.c:553 sm/gpgsm.c:241 msgid "run in server mode" msgstr "kjør i tjenermodus" -#: g10/gpg.c:554 +#: g10/gpg.c:555 msgid "|VALUE|set the TOFU policy for a key" msgstr "|VERDI|endre TOFU-regler for nøkkel" -#: g10/gpg.c:594 +#: g10/gpg.c:595 msgid "|NAME|use NAME as default secret key" msgstr "|NAVN|bruk valgt NAVN som forvalgt hemmelig nøkkel" -#: g10/gpg.c:596 sm/gpgsm.c:332 +#: g10/gpg.c:597 sm/gpgsm.c:332 msgid "|NAME|encrypt to user ID NAME as well" msgstr "|NAVN|krypter også til valgt bruker-id-NAVN" -#: g10/gpg.c:604 +#: g10/gpg.c:605 msgid "|SPEC|set up email aliases" msgstr "|SPES|sett opp e-post-alias" -#: g10/gpg.c:616 +#: g10/gpg.c:617 msgid "use strict OpenPGP behavior" msgstr "bruk streng OpenPGP-oppførsel" -#: g10/gpg.c:641 kbx/kbxutil.c:90 sm/gpgsm.c:412 tools/gpgconf.c:112 +#: g10/gpg.c:642 kbx/kbxutil.c:90 sm/gpgsm.c:412 tools/gpgconf.c:112 msgid "do not make any changes" msgstr "ikke utfør valgte endringer" -#: g10/gpg.c:642 +#: g10/gpg.c:643 msgid "prompt before overwriting" msgstr "spør før overskriving" -#: g10/gpg.c:689 sm/gpgsm.c:304 +#: g10/gpg.c:690 sm/gpgsm.c:304 #, fuzzy #| msgid "Options controlling the security" msgid "Options controlling the input" msgstr "Sikkerhetsvalg" -#: g10/gpg.c:707 sm/gpgsm.c:314 +#: g10/gpg.c:708 sm/gpgsm.c:314 #, fuzzy #| msgid "Options controlling the diagnostic output" msgid "Options controlling the output" msgstr "Styring av diagnostikk-utdata" -#: g10/gpg.c:709 sm/gpgsm.c:316 +#: g10/gpg.c:710 sm/gpgsm.c:316 msgid "create ascii armored output" msgstr "lag ASCII-beskyttet utdata" -#: g10/gpg.c:713 g10/gpgv.c:82 sm/gpgsm.c:321 +#: g10/gpg.c:714 g10/gpgv.c:82 sm/gpgsm.c:321 msgid "|FILE|write output to FILE" msgstr "|FILE|skriv utdata til valgt FIL" -#: g10/gpg.c:726 +#: g10/gpg.c:727 msgid "use canonical text mode" msgstr "bruk kanonisk tekstmodus" -#: g10/gpg.c:743 +#: g10/gpg.c:744 msgid "|N|set compress level to N (0 disables)" msgstr "|N|endre komprimeringsnivå til N (0 for å slå av)" -#: g10/gpg.c:750 sm/gpgsm.c:347 +#: g10/gpg.c:751 sm/gpgsm.c:347 #, fuzzy #| msgid "Options controlling the interactivity and enforcement" msgid "Options controlling key import and export" msgstr "Valg som styrer grensesnitt og håndheving av regler" -#: g10/gpg.c:753 +#: g10/gpg.c:754 msgid "|MECHANISMS|use MECHANISMS to locate keys by mail address" msgstr "|MEKANISMER|bruk valgte MEKANISME til å finne nøkler med e-postadresse" -#: g10/gpg.c:756 +#: g10/gpg.c:757 #, fuzzy #| msgid "import keys from a keyserver" msgid "import missing key from a signature" msgstr "importer nøkler fra nøkkeltjener" -#: g10/gpg.c:761 +#: g10/gpg.c:762 #, fuzzy #| msgid "list and check key signatures" msgid "include the public key in signatures" msgstr "vis og kontroller nøkkelsignaturer" -#: g10/gpg.c:764 sm/gpgsm.c:350 +#: g10/gpg.c:765 sm/gpgsm.c:350 msgid "disable all access to the dirmngr" msgstr "slå av all tilgang til dirmngr" -#: g10/gpg.c:776 sm/gpgsm.c:357 +#: g10/gpg.c:777 sm/gpgsm.c:357 #, fuzzy #| msgid "Options controlling the configuration" msgid "Options controlling key listings" msgstr "Oppsettsvalg" -#: g10/gpg.c:805 sm/gpgsm.c:324 +#: g10/gpg.c:806 sm/gpgsm.c:324 #, fuzzy #| msgid "list secret keys" msgid "Options to specify keys" msgstr "vis hemmelige nøkler" -#: g10/gpg.c:807 sm/gpgsm.c:326 +#: g10/gpg.c:808 sm/gpgsm.c:326 msgid "|USER-ID|encrypt for USER-ID" msgstr "|BRUKER-ID|krypter for valgt BRUKER-ID" -#: g10/gpg.c:815 sm/gpgsm.c:328 +#: g10/gpg.c:816 sm/gpgsm.c:328 msgid "|USER-ID|use USER-ID to sign or decrypt" msgstr "|BRUKER-ID|bruk valgt BRUKER-ID til å signere eller dekryptere" -#: g10/gpg.c:866 sm/gpgsm.c:396 +#: g10/gpg.c:867 sm/gpgsm.c:396 msgid "Options for unattended use" msgstr "" -#: g10/gpg.c:885 sm/gpgsm.c:408 dirmngr/dirmngr.c:294 +#: g10/gpg.c:886 sm/gpgsm.c:408 dirmngr/dirmngr.c:294 msgid "Other options" msgstr "" -#: g10/gpg.c:953 sm/gpgsm.c:440 +#: g10/gpg.c:955 sm/gpgsm.c:440 msgid "" "@\n" "(See the man page for a complete listing of all commands and options)\n" @@ -2922,7 +2928,7 @@ "@\n" "(Se bruksanvisning for en fullstendig liste over alle kommandoer og valg)\n" -#: g10/gpg.c:956 +#: g10/gpg.c:958 msgid "" "@\n" "Examples:\n" @@ -2942,11 +2948,11 @@ " --list-keys [navn] vis nøkler\n" " --fingerprint [navn] vis fingeravtrykk\n" -#: g10/gpg.c:1130 +#: g10/gpg.c:1139 msgid "Usage: @GPG@ [options] [files] (-h for help)" msgstr "Bruk: @GPG@ [valg] [filer] (-h for hjelp)" -#: g10/gpg.c:1133 +#: g10/gpg.c:1142 msgid "" "Syntax: @GPG@ [options] [files]\n" "Sign, check, encrypt or decrypt\n" @@ -2956,7 +2962,7 @@ "Signer, kontroller, krypter eller dekrypter.\n" "Forvalgt handling avhenger av inndata.\n" -#: g10/gpg.c:1144 sm/gpgsm.c:624 +#: g10/gpg.c:1153 sm/gpgsm.c:624 msgid "" "\n" "Supported algorithms:\n" @@ -2964,541 +2970,541 @@ "\n" "Støttede algoritmer:\n" -#: g10/gpg.c:1147 +#: g10/gpg.c:1156 msgid "Pubkey: " msgstr "Off. nøkkel: " -#: g10/gpg.c:1154 g10/keyedit.c:3338 +#: g10/gpg.c:1163 g10/keyedit.c:3338 msgid "Cipher: " msgstr "Kryptering: " -#: g10/gpg.c:1161 +#: g10/gpg.c:1170 msgid "Hash: " msgstr "Hash: " -#: g10/gpg.c:1168 g10/keyedit.c:3404 +#: g10/gpg.c:1177 g10/keyedit.c:3404 msgid "Compression: " msgstr "Komprimering: " -#: g10/gpg.c:1241 sm/gpgsm.c:698 +#: g10/gpg.c:1250 sm/gpgsm.c:698 #, c-format msgid "usage: %s [options] %s\n" msgstr "bruk: %s [valg] %s\n" -#: g10/gpg.c:1436 sm/gpgsm.c:791 +#: g10/gpg.c:1445 sm/gpgsm.c:791 #, c-format msgid "conflicting commands\n" msgstr "motstridende kommandoer\n" -#: g10/gpg.c:1454 +#: g10/gpg.c:1463 #, c-format msgid "no = sign found in group definition '%s'\n" msgstr "fant ingen «=»-tegn i gruppedefinisjon «%s»\n" -#: g10/gpg.c:1652 +#: g10/gpg.c:1661 #, c-format msgid "WARNING: unsafe ownership on homedir '%s'\n" msgstr "ADVARSEL: utrygt eierskap til hjemmemappe «%s»\n" -#: g10/gpg.c:1655 +#: g10/gpg.c:1664 #, c-format msgid "WARNING: unsafe ownership on configuration file '%s'\n" msgstr "ADVARSEL: utrygt eierskap til oppsettsfil «%s»\n" -#: g10/gpg.c:1658 +#: g10/gpg.c:1667 #, c-format msgid "WARNING: unsafe ownership on extension '%s'\n" msgstr "ADVARSEL: utrygt eierskap til utvidelse «%s»\n" -#: g10/gpg.c:1664 +#: g10/gpg.c:1673 #, c-format msgid "WARNING: unsafe permissions on homedir '%s'\n" msgstr "ADVARSEL: utrygge tillatelser til hjemmemappe «%s»\n" -#: g10/gpg.c:1667 +#: g10/gpg.c:1676 #, c-format msgid "WARNING: unsafe permissions on configuration file '%s'\n" msgstr "ADVARSEL: utrygge tillatelser til oppsettsfil «%s»\n" -#: g10/gpg.c:1670 +#: g10/gpg.c:1679 #, c-format msgid "WARNING: unsafe permissions on extension '%s'\n" msgstr "ADVARSEL: utrygge tillatelser til utvidelse «%s»\n" -#: g10/gpg.c:1676 +#: g10/gpg.c:1685 #, c-format msgid "WARNING: unsafe enclosing directory ownership on homedir '%s'\n" msgstr "ADVARSEL: utrgt eierskap til foreldermapper av hjemmemappe «%s»\n" -#: g10/gpg.c:1679 +#: g10/gpg.c:1688 #, c-format msgid "" "WARNING: unsafe enclosing directory ownership on configuration file '%s'\n" msgstr "ADVARSEL: utrgt eierskap til foreldermapper av oppsettsfil «%s»\n" -#: g10/gpg.c:1682 +#: g10/gpg.c:1691 #, c-format msgid "WARNING: unsafe enclosing directory ownership on extension '%s'\n" msgstr "ADVARSEL: utrgt eierskap til foreldermapper av utvidelse «%s»\n" -#: g10/gpg.c:1688 +#: g10/gpg.c:1697 #, c-format msgid "WARNING: unsafe enclosing directory permissions on homedir '%s'\n" msgstr "ADVARSEL: utrygge tillatelser til foreldermapper av hjemmemappe «%s»\n" -#: g10/gpg.c:1691 +#: g10/gpg.c:1700 #, c-format msgid "" "WARNING: unsafe enclosing directory permissions on configuration file '%s'\n" msgstr "ADVARSEL: utrygge tillatelser til foreldermapper av oppsettsfil «%s»\n" -#: g10/gpg.c:1694 +#: g10/gpg.c:1703 #, c-format msgid "WARNING: unsafe enclosing directory permissions on extension '%s'\n" msgstr "ADVARSEL: utrygge tillatelser til foreldermapper av utvidelse «%s»\n" -#: g10/gpg.c:1910 +#: g10/gpg.c:1919 #, c-format msgid "unknown configuration item '%s'\n" msgstr "oppsettselementet «%s» er ukjent\n" -#: g10/gpg.c:2009 +#: g10/gpg.c:2018 msgid "display photo IDs during key listings" msgstr "vis foto-id-er i nøkkelvisning" -#: g10/gpg.c:2011 +#: g10/gpg.c:2020 msgid "show key usage information during key listings" msgstr "vis informasjon om nøkkelbruk i nøkkelvisning" -#: g10/gpg.c:2013 +#: g10/gpg.c:2022 msgid "show policy URLs during signature listings" msgstr "vis regeladresser i signaturvisning" -#: g10/gpg.c:2015 +#: g10/gpg.c:2024 msgid "show all notations during signature listings" msgstr "vis alle notater i signaturvisning" -#: g10/gpg.c:2017 +#: g10/gpg.c:2026 msgid "show IETF standard notations during signature listings" msgstr "vis IETF-standardnotater under signaturvisning" -#: g10/gpg.c:2021 +#: g10/gpg.c:2030 msgid "show user-supplied notations during signature listings" msgstr "vis brukervalgte notater under signaturvisning" -#: g10/gpg.c:2023 +#: g10/gpg.c:2032 msgid "show preferred keyserver URLs during signature listings" msgstr "vis foretrukne nøkkeltjener-adresser under signaturvisning" -#: g10/gpg.c:2025 +#: g10/gpg.c:2034 msgid "show user ID validity during key listings" msgstr "vis gyldighet for bruker-ID under nøkkelvisning" -#: g10/gpg.c:2027 +#: g10/gpg.c:2036 msgid "show revoked and expired user IDs in key listings" msgstr "vis opphevede og utgåtte bruker-id-er i nøkkelvisning" -#: g10/gpg.c:2029 +#: g10/gpg.c:2038 msgid "show revoked and expired subkeys in key listings" msgstr "vis opphevede og utgåtte undernøkler i nøkkelvisning" -#: g10/gpg.c:2031 +#: g10/gpg.c:2040 msgid "show the keyring name in key listings" msgstr "vis nøkkelknippe-navn i nøkkelvisning" -#: g10/gpg.c:2033 +#: g10/gpg.c:2042 msgid "show expiration dates during signature listings" msgstr "vis utløpsdatoer i nøkkelvisning" -#: g10/gpg.c:2148 +#: g10/gpg.c:2157 #, c-format msgid "unknown TOFU policy '%s'\n" msgstr "«%s» er et ukjent TOFU-regelverk\n" -#: g10/gpg.c:2150 +#: g10/gpg.c:2159 #, c-format msgid "(use \"help\" to list choices)\n" msgstr "(bruk «help» for å vise valg)\n" -#: g10/gpg.c:2240 g10/keyedit.c:1719 +#: g10/gpg.c:2249 g10/keyedit.c:1719 #, c-format msgid "This command is not allowed while in %s mode.\n" msgstr "Denne kommandoen er ikke tillatt i %s-modus.\n" -#: g10/gpg.c:2878 g10/gpg.c:3718 g10/gpg.c:3730 +#: g10/gpg.c:2896 g10/gpg.c:3736 g10/gpg.c:3748 #, c-format msgid "Note: %s is not for normal use!\n" msgstr "Merk: %s er ikke ment for vanlig bruk.\n" -#: g10/gpg.c:3053 g10/gpg.c:3065 +#: g10/gpg.c:3071 g10/gpg.c:3083 #, c-format msgid "'%s' is not a valid signature expiration\n" msgstr "«%s» er en ugyldig signatur-utløpstid\n" -#: g10/gpg.c:3087 +#: g10/gpg.c:3105 #, c-format msgid "\"%s\" is not a proper mail address\n" msgstr "«%s» er en ugyldig e-postadresse\n" -#: g10/gpg.c:3119 sm/gpgsm.c:1121 +#: g10/gpg.c:3137 sm/gpgsm.c:1121 #, c-format msgid "invalid pinentry mode '%s'\n" msgstr "PIN-inntastingsmodus «%s» er ugyldig\n" -#: g10/gpg.c:3125 sm/gpgsm.c:1127 +#: g10/gpg.c:3143 sm/gpgsm.c:1127 #, fuzzy, c-format #| msgid "invalid value for option '%s'\n" msgid "invalid request origin '%s'\n" msgstr "ugyldig verdi for valg «%s»\n" -#: g10/gpg.c:3179 +#: g10/gpg.c:3197 #, c-format msgid "'%s' is not a valid character set\n" msgstr "«%s» er ikke et gyldig tegnsett\n" -#: g10/gpg.c:3201 g10/gpg.c:3415 g10/keyedit.c:5338 +#: g10/gpg.c:3219 g10/gpg.c:3433 g10/keyedit.c:5338 #, c-format msgid "could not parse keyserver URL\n" msgstr "klarte ikke å tolke nøkkeltjener-adresse\n" -#: g10/gpg.c:3219 +#: g10/gpg.c:3237 #, c-format msgid "%s:%d: invalid keyserver options\n" msgstr "%s:%d: ugyldige nøkkeltjener-valg\n" -#: g10/gpg.c:3222 +#: g10/gpg.c:3240 #, c-format msgid "invalid keyserver options\n" msgstr "ugyldige nøkkeltjener-valg\n" -#: g10/gpg.c:3229 +#: g10/gpg.c:3247 #, c-format msgid "%s:%d: invalid import options\n" msgstr "%s:%d: ugyldige importeringsvalg\n" -#: g10/gpg.c:3232 +#: g10/gpg.c:3250 #, c-format msgid "invalid import options\n" msgstr "ugyldige importeringsvalg\n" -#: g10/gpg.c:3238 g10/gpg.c:3253 +#: g10/gpg.c:3256 g10/gpg.c:3271 #, c-format msgid "invalid filter option: %s\n" msgstr "filtervalget %s er ugyldig\n" -#: g10/gpg.c:3244 +#: g10/gpg.c:3262 #, c-format msgid "%s:%d: invalid export options\n" msgstr "%s:%d: ugyldige eksporteringsvalg\n" -#: g10/gpg.c:3247 +#: g10/gpg.c:3265 #, c-format msgid "invalid export options\n" msgstr "ugyldige eksporteringsvalg\n" -#: g10/gpg.c:3259 +#: g10/gpg.c:3277 #, c-format msgid "%s:%d: invalid list options\n" msgstr "%s:%d: ugyldige listevalg\n" -#: g10/gpg.c:3262 +#: g10/gpg.c:3280 #, c-format msgid "invalid list options\n" msgstr "ugyldige listevalg\n" -#: g10/gpg.c:3270 +#: g10/gpg.c:3288 msgid "display photo IDs during signature verification" msgstr "vis bruker-ID under signaturbekreftelse" -#: g10/gpg.c:3272 +#: g10/gpg.c:3290 msgid "show policy URLs during signature verification" msgstr "vis adresser til retningslinjer under signaturbekreftelse" -#: g10/gpg.c:3274 +#: g10/gpg.c:3292 msgid "show all notations during signature verification" msgstr "vis alle merknader under signaturbekreftelse" -#: g10/gpg.c:3276 +#: g10/gpg.c:3294 msgid "show IETF standard notations during signature verification" msgstr "vis IETF-standardnotater under signaturbekreftelse" -#: g10/gpg.c:3280 +#: g10/gpg.c:3298 msgid "show user-supplied notations during signature verification" msgstr "vis selvvalgte merknader under signaturbekreftelse" -#: g10/gpg.c:3282 +#: g10/gpg.c:3300 msgid "show preferred keyserver URLs during signature verification" msgstr "vis adresser til foretrukne nøkkeltjenere under signaturbekreftelse" -#: g10/gpg.c:3284 +#: g10/gpg.c:3302 msgid "show user ID validity during signature verification" msgstr "vis gyldighet for bruker-ID under signaturbekreftelse" -#: g10/gpg.c:3286 +#: g10/gpg.c:3304 msgid "show revoked and expired user IDs in signature verification" msgstr "vis opphevede og utgåtte bruker-id-er under signaturbekreftelse" -#: g10/gpg.c:3288 +#: g10/gpg.c:3306 msgid "show only the primary user ID in signature verification" msgstr "bare vis primærbrukerens ID under signaturbekreftelse" -#: g10/gpg.c:3290 +#: g10/gpg.c:3308 msgid "validate signatures with PKA data" msgstr "kontroller signaturer som har PKA-data" -#: g10/gpg.c:3292 +#: g10/gpg.c:3310 msgid "elevate the trust of signatures with valid PKA data" msgstr "øk tillitsnivå for signaturer med gyldige PKA-data" -#: g10/gpg.c:3299 +#: g10/gpg.c:3317 #, c-format msgid "%s:%d: invalid verify options\n" msgstr "%s:%d: ugyldige kontrollvalg\n" -#: g10/gpg.c:3302 +#: g10/gpg.c:3320 #, c-format msgid "invalid verify options\n" msgstr "ugyldige kontrollvalg\n" -#: g10/gpg.c:3309 +#: g10/gpg.c:3327 #, c-format msgid "unable to set exec-path to %s\n" msgstr "klarte ikke å endre «exec»-sti til %s\n" -#: g10/gpg.c:3513 +#: g10/gpg.c:3531 #, c-format msgid "%s:%d: invalid auto-key-locate list\n" msgstr "%s:%d: ugyldig «auto-key-locate»-liste\n" -#: g10/gpg.c:3516 +#: g10/gpg.c:3534 #, c-format msgid "invalid auto-key-locate list\n" msgstr "ugyldig «auto-key-locate»-liste\n" -#: g10/gpg.c:3700 sm/gpgsm.c:1492 +#: g10/gpg.c:3718 sm/gpgsm.c:1492 #, c-format msgid "WARNING: program may create a core file!\n" msgstr "ADVARSEL: programmet kan lage en kjernefil.\n" -#: g10/gpg.c:3711 +#: g10/gpg.c:3729 #, c-format msgid "WARNING: %s overrides %s\n" msgstr "ADVARSEL: %s overstyrere %s\n" -#: g10/gpg.c:3720 +#: g10/gpg.c:3738 #, c-format msgid "%s not allowed with %s!\n" msgstr "du kan ikke bruke %s med %s.\n" -#: g10/gpg.c:3723 +#: g10/gpg.c:3741 #, c-format msgid "%s makes no sense with %s!\n" msgstr "%s gir ikke mening med %s.\n" -#: g10/gpg.c:3738 sm/gpgsm.c:1509 dirmngr/dirmngr.c:1205 +#: g10/gpg.c:3756 sm/gpgsm.c:1509 dirmngr/dirmngr.c:1205 #, c-format msgid "WARNING: running with faked system time: " msgstr "ADVARSEL: kjører med falsk systemtid: " -#: g10/gpg.c:3759 +#: g10/gpg.c:3777 #, c-format msgid "will not run with insecure memory due to %s\n" msgstr "lar være å kjøre med usikret minne på grunn av %s\n" -#: g10/gpg.c:3804 g10/gpg.c:3828 sm/gpgsm.c:1579 +#: g10/gpg.c:3824 g10/gpg.c:3848 sm/gpgsm.c:1579 #, c-format msgid "selected cipher algorithm is invalid\n" msgstr "valgt krypteringsalgoritme er ugyldig\n" -#: g10/gpg.c:3816 +#: g10/gpg.c:3836 #, c-format msgid "selected compression algorithm is invalid\n" msgstr "valgt komprimeringsalgoritme er ugyldig\n" -#: g10/gpg.c:3822 +#: g10/gpg.c:3842 #, c-format msgid "selected certification digest algorithm is invalid\n" msgstr "valgt kontrollsum-algoritme for sertifisering er ugyldig\n" -#: g10/gpg.c:3837 +#: g10/gpg.c:3857 #, c-format msgid "completes-needed must be greater than 0\n" msgstr "«completes-needed» må være større enn 0\n" -#: g10/gpg.c:3839 +#: g10/gpg.c:3859 #, c-format msgid "marginals-needed must be greater than 1\n" msgstr "«marginals-needed» må være større enn 1\n" -#: g10/gpg.c:3841 +#: g10/gpg.c:3861 #, c-format msgid "max-cert-depth must be in the range from 1 to 255\n" msgstr "«max-cert-depth» må være mellom 1 og 255\n" -#: g10/gpg.c:3843 +#: g10/gpg.c:3863 #, c-format msgid "invalid default-cert-level; must be 0, 1, 2, or 3\n" msgstr "ugyldig «default-cert-level» (må være 0, 1, 2 eller 3)\n" -#: g10/gpg.c:3845 +#: g10/gpg.c:3865 #, c-format msgid "invalid min-cert-level; must be 1, 2, or 3\n" msgstr "ugyldig «min-cert-level» (må være 0, 1, 2 eller 3)\n" -#: g10/gpg.c:3849 +#: g10/gpg.c:3869 #, c-format msgid "Note: simple S2K mode (0) is strongly discouraged\n" msgstr "Merk: enkel S2K-modus (0) er sterkt frarådet\n" -#: g10/gpg.c:3853 +#: g10/gpg.c:3873 #, c-format msgid "invalid S2K mode; must be 0, 1 or 3\n" msgstr "ugyldig S2K-modus (må være 0, 1 eller 3)\n" -#: g10/gpg.c:3860 +#: g10/gpg.c:3880 #, c-format msgid "invalid default preferences\n" msgstr "ugyldig standardoppsett\n" -#: g10/gpg.c:3864 +#: g10/gpg.c:3884 #, c-format msgid "invalid personal cipher preferences\n" msgstr "ugyldig personlig oppsett av krypteringsmetode\n" -#: g10/gpg.c:3868 +#: g10/gpg.c:3888 #, c-format msgid "invalid personal digest preferences\n" msgstr "ugyldig personlig oppsett av kontrollsummetode\n" -#: g10/gpg.c:3872 +#: g10/gpg.c:3892 #, c-format msgid "invalid personal compress preferences\n" msgstr "ugyldig personlig oppsett av komprimeringsmetode\n" -#: g10/gpg.c:3908 +#: g10/gpg.c:3928 #, c-format msgid "%s does not yet work with %s\n" msgstr "%s virker ikke enda med %s\n" -#: g10/gpg.c:3971 +#: g10/gpg.c:3991 #, c-format msgid "compression algorithm '%s' may not be used in %s mode\n" msgstr "du kan ikke bruke komprimeringsalgoritme «%s» i %s-modus\n" -#: g10/gpg.c:4115 +#: g10/gpg.c:4135 #, c-format msgid "failed to initialize the TrustDB: %s\n" msgstr "klarte ikke å starte tillitsdatabase (TrustDB): %s\n" -#: g10/gpg.c:4127 +#: g10/gpg.c:4147 #, c-format msgid "WARNING: recipients (-r) given without using public key encryption\n" msgstr "ADVARSEL: mottakere (-r) valgt uten offentlig nøkkelkryptering\n" -#: g10/gpg.c:4199 +#: g10/gpg.c:4219 #, c-format msgid "symmetric encryption of '%s' failed: %s\n" msgstr "symmetrisk kryptering av «%s» mislyktes: %s\n" -#: g10/gpg.c:4228 +#: g10/gpg.c:4248 #, c-format msgid "you cannot use --symmetric --encrypt with --s2k-mode 0\n" msgstr "du kan ikke bruke «--symmetric --encrypt» og «--s2k-mode 0» samtidig\n" -#: g10/gpg.c:4231 +#: g10/gpg.c:4251 #, c-format msgid "you cannot use --symmetric --encrypt in %s mode\n" msgstr "du kan ikke velge --symmetric --encrypt i %s-modus\n" -#: g10/gpg.c:4289 +#: g10/gpg.c:4309 #, c-format msgid "you cannot use --symmetric --sign --encrypt with --s2k-mode 0\n" msgstr "" "du kan ikke bruke «--symmetric --sign --encrypt» og «--s2k-mode 0» samtidig\n" -#: g10/gpg.c:4292 +#: g10/gpg.c:4312 #, c-format msgid "you cannot use --symmetric --sign --encrypt in %s mode\n" msgstr "du kan ikke velge --symmetric --sign --encrypt i %s-modus\n" -#: g10/gpg.c:4692 g10/keyserver.c:1648 +#: g10/gpg.c:4712 g10/keyserver.c:1648 #, c-format msgid "keyserver send failed: %s\n" msgstr "sending til nøkkeltjener mislyktes: %s\n" -#: g10/gpg.c:4697 +#: g10/gpg.c:4717 #, c-format msgid "keyserver receive failed: %s\n" msgstr "mottak fra nøkkeltjener mislyktes: %s\n" -#: g10/gpg.c:4703 +#: g10/gpg.c:4723 #, c-format msgid "key export failed: %s\n" msgstr "nøkkeleksport mislyktes: %s\n" -#: g10/gpg.c:4716 +#: g10/gpg.c:4736 #, c-format msgid "export as ssh key failed: %s\n" msgstr "eksportering som ssh-nøkkel mislyktes: %s\n" -#: g10/gpg.c:4728 +#: g10/gpg.c:4748 #, c-format msgid "keyserver search failed: %s\n" msgstr "søk på nøkkeltjener mislyktes: %s\n" -#: g10/gpg.c:4741 +#: g10/gpg.c:4761 #, c-format msgid "keyserver refresh failed: %s\n" msgstr "oppdatering av nøkkeltjener mislyktes: %s\n" -#: g10/gpg.c:4810 +#: g10/gpg.c:4830 #, c-format msgid "dearmoring failed: %s\n" msgstr "dearmoring failed: %s\n" -#: g10/gpg.c:4821 +#: g10/gpg.c:4841 #, c-format msgid "enarmoring failed: %s\n" msgstr "enarmoring failed: %s\n" -#: g10/gpg.c:4913 +#: g10/gpg.c:4933 #, c-format msgid "invalid hash algorithm '%s'\n" msgstr "«%s» er en ugyldig summeringsalgoritme\n" -#: g10/gpg.c:5065 g10/tofu.c:2153 +#: g10/gpg.c:5085 g10/tofu.c:2153 #, c-format msgid "error parsing key specification '%s': %s\n" msgstr "feil under tolking av nøkkelspesifikasjon «%s»: %s\n" -#: g10/gpg.c:5078 +#: g10/gpg.c:5098 #, c-format msgid "'%s' does not appear to be a valid key ID, fingerprint or keygrip\n" msgstr "" "«%s» ser hverken ut til å være en gyldig nøkkel-ID, fingeravtrykk eller " "nøkkelgrep\n" -#: g10/gpg.c:5134 +#: g10/gpg.c:5154 #, c-format msgid "WARNING: no command supplied. Trying to guess what you mean ...\n" msgstr "ADVARSEL: ingen kommando valgt. Prøver å gjette hva du mener …\n" -#: g10/gpg.c:5145 +#: g10/gpg.c:5165 #, c-format msgid "Go ahead and type your message ...\n" msgstr "Skriv inn melding …\n" -#: g10/gpg.c:5490 +#: g10/gpg.c:5510 #, c-format msgid "the given certification policy URL is invalid\n" msgstr "valgt adresse for sertifikasjonsregler er ugyldig\n" -#: g10/gpg.c:5492 +#: g10/gpg.c:5512 #, c-format msgid "the given signature policy URL is invalid\n" msgstr "valgt adresse for signaturregler er ugyldig\n" -#: g10/gpg.c:5525 +#: g10/gpg.c:5545 #, c-format msgid "the given preferred keyserver URL is invalid\n" msgstr "valgt adresse for foretrukket nøkkeltjener er ugyldig\n" @@ -3540,145 +3546,145 @@ msgid "No help available for '%s'" msgstr "Ingen hjelp tilgjengelig for «%s»" -#: g10/import.c:169 +#: g10/import.c:170 msgid "import signatures that are marked as local-only" msgstr "importer signaturer som er merket som kun lokale" -#: g10/import.c:172 +#: g10/import.c:173 msgid "repair damage from the pks keyserver during import" msgstr "reparer skader fra pks-nøkkeltjener under importering" -#: g10/import.c:175 +#: g10/import.c:176 msgid "do not clear the ownertrust values during import" msgstr "ikke tøm «ownertrust»-verdier under importering" -#: g10/import.c:178 +#: g10/import.c:179 msgid "do not update the trustdb after import" msgstr "ikke oppdater tillitsdatabase etter importering" -#: g10/import.c:181 +#: g10/import.c:182 msgid "show key during import" msgstr "vis nøkkel under importering" -#: g10/import.c:184 +#: g10/import.c:185 msgid "only accept updates to existing keys" msgstr "bare godta oppdateringer av nøkler som finnes allerede" -#: g10/import.c:187 +#: g10/import.c:188 msgid "remove unusable parts from key after import" msgstr "fjern ubrukelige deler av nøkkel etter importering" -#: g10/import.c:190 +#: g10/import.c:191 msgid "remove as much as possible from key after import" msgstr "fjern så mye som mulig fra nøkkel etter importering" -#: g10/import.c:193 +#: g10/import.c:194 msgid "ignore key-signatures which are not self-signatures" msgstr "" -#: g10/import.c:196 +#: g10/import.c:197 msgid "run import filters and export key immediately" msgstr "kjør importeringsfiltre og eksporter nøkkel umiddelbart" -#: g10/import.c:199 +#: g10/import.c:200 msgid "assume the GnuPG key backup format" msgstr "forvent GnuPG-format på sikkerhetskopierte nøkler" -#: g10/import.c:203 +#: g10/import.c:204 msgid "repair keys on import" msgstr "reparer nøkler under importering" -#: g10/import.c:392 g10/import.c:711 +#: g10/import.c:393 g10/import.c:712 #, c-format msgid "skipping block of type %d\n" msgstr "hopper over blokk av typen %d\n" -#: g10/import.c:728 +#: g10/import.c:729 #, c-format msgid "%lu keys processed so far\n" msgstr "%lu nøkler behandlet hittil\n" -#: g10/import.c:814 +#: g10/import.c:815 #, c-format msgid "Total number processed: %lu\n" msgstr "Totalt antall behandlet: %lu\n" -#: g10/import.c:817 +#: g10/import.c:818 #, c-format msgid " skipped PGP-2 keys: %lu\n" msgstr " hopper over PGP 2-nøkler: %lu\n" -#: g10/import.c:819 +#: g10/import.c:820 #, c-format msgid " skipped new keys: %lu\n" msgstr " nye nøkler som ble hoppet over: %lu\n" -#: g10/import.c:822 +#: g10/import.c:823 #, c-format msgid " w/o user IDs: %lu\n" msgstr " uten bruker-id-er: %lu\n" -#: g10/import.c:825 sm/import.c:130 +#: g10/import.c:826 sm/import.c:130 #, c-format msgid " imported: %lu" msgstr " importert: %lu" -#: g10/import.c:829 sm/import.c:134 +#: g10/import.c:830 sm/import.c:134 #, c-format msgid " unchanged: %lu\n" msgstr " uendret: %lu\n" -#: g10/import.c:831 +#: g10/import.c:832 #, c-format msgid " new user IDs: %lu\n" msgstr " nye bruker-id-er: %lu\n" -#: g10/import.c:833 +#: g10/import.c:834 #, c-format msgid " new subkeys: %lu\n" msgstr " nye undernøkler: %lu\n" -#: g10/import.c:835 +#: g10/import.c:836 #, c-format msgid " new signatures: %lu\n" msgstr " nye signaturer: %lu\n" -#: g10/import.c:837 +#: g10/import.c:838 #, c-format msgid " new key revocations: %lu\n" msgstr " nye nøkkelopphevinger: %lu\n" -#: g10/import.c:839 sm/import.c:136 +#: g10/import.c:840 sm/import.c:136 #, c-format msgid " secret keys read: %lu\n" msgstr " leste hemmelige nøkler: %lu\n" -#: g10/import.c:841 sm/import.c:138 +#: g10/import.c:842 sm/import.c:138 #, c-format msgid " secret keys imported: %lu\n" msgstr " importerte hemmelige nøkler: %lu\n" -#: g10/import.c:843 sm/import.c:140 +#: g10/import.c:844 sm/import.c:140 #, c-format msgid " secret keys unchanged: %lu\n" msgstr " uforandrede hemmelige nøkler: %lu\n" -#: g10/import.c:845 sm/import.c:142 +#: g10/import.c:846 sm/import.c:142 #, c-format msgid " not imported: %lu\n" msgstr " ikke importert: %lu\n" -#: g10/import.c:847 +#: g10/import.c:848 #, c-format msgid " signatures cleaned: %lu\n" msgstr " oppryddete signaturer: %lu\n" -#: g10/import.c:849 +#: g10/import.c:850 #, c-format msgid " user IDs cleaned: %lu\n" msgstr " tømte bruker-id-er: %lu\n" -#: g10/import.c:1276 +#: g10/import.c:1277 #, c-format msgid "" "WARNING: key %s contains preferences for unavailable\n" @@ -3687,169 +3693,169 @@ "ADVARSEL: nøkkelen %s inneholder innstillinger for\n" "utilgjengelige algoritmer på følgende bruker-id-er:\n" -#: g10/import.c:1318 +#: g10/import.c:1319 #, c-format msgid " \"%s\": preference for cipher algorithm %s\n" msgstr " «%s»: innstilling for krypteringsalgoritme %s\n" -#: g10/import.c:1333 +#: g10/import.c:1334 #, c-format msgid " \"%s\": preference for digest algorithm %s\n" msgstr " «%s»: oppsett for kontrollsum-algoritme %s\n" -#: g10/import.c:1345 +#: g10/import.c:1346 #, c-format msgid " \"%s\": preference for compression algorithm %s\n" msgstr " «%s»: oppsett av komprimeringsalgoritme %s\n" -#: g10/import.c:1358 +#: g10/import.c:1359 #, c-format msgid "it is strongly suggested that you update your preferences and\n" msgstr "du anbefales på det sterkeste å endre oppsett og\n" -#: g10/import.c:1360 +#: g10/import.c:1361 #, c-format msgid "re-distribute this key to avoid potential algorithm mismatch problems\n" msgstr "" "dele ut denne nøkkelen på nytt for å unngå potensielle problemer med " "algoritme-samsvar\n" -#: g10/import.c:1385 +#: g10/import.c:1386 #, c-format msgid "you can update your preferences with: gpg --edit-key %s updpref save\n" msgstr "" "oppdater oppsettet med følgende kommando: gpg --edit-key %s updpref save\n" -#: g10/import.c:1899 g10/import.c:3013 +#: g10/import.c:1902 g10/import.c:3028 #, c-format msgid "key %s: no user ID\n" msgstr "nøkkel %s: ingen bruker-ID\n" -#: g10/import.c:1905 +#: g10/import.c:1908 #, c-format msgid "key %s: %s\n" msgstr "nøkkel %s: %s\n" -#: g10/import.c:1906 g10/import.c:2985 +#: g10/import.c:1909 g10/import.c:3000 msgid "rejected by import screener" msgstr "avvist av importeringskontrollør" -#: g10/import.c:1950 +#: g10/import.c:1953 #, c-format msgid "key %s: PKS subkey corruption repaired\n" msgstr "nøkkel %s: PKS-undernøkkel reparert\n" -#: g10/import.c:1971 +#: g10/import.c:1974 #, c-format msgid "key %s: accepted non self-signed user ID \"%s\"\n" msgstr "nøkkel %s: akseptert ikke-selvsignert bruker-ID «%s»\n" -#: g10/import.c:1981 g10/import.c:2012 +#: g10/import.c:1985 g10/import.c:2016 #, c-format msgid "key %s: no valid user IDs\n" msgstr "nøkkel %s: ingen gyldig bruker-id-er\n" -#: g10/import.c:1983 +#: g10/import.c:1987 #, c-format msgid "this may be caused by a missing self-signature\n" msgstr "dette kan skyldes manglende selvsignatur\n" -#: g10/import.c:2062 g10/import.c:3399 +#: g10/import.c:2066 g10/import.c:3415 #, c-format msgid "key %s: public key not found: %s\n" msgstr "nøkkel %s: fant ikke offentlig nøkkel: %s\n" -#: g10/import.c:2068 +#: g10/import.c:2072 #, c-format msgid "key %s: new key - skipped\n" msgstr "nøkkel %s: ny nøkkel. Hoppet over\n" -#: g10/import.c:2080 +#: g10/import.c:2084 #, c-format msgid "no writable keyring found: %s\n" msgstr "fant ikke skrivbart nøkkelknippe: %s\n" -#: g10/import.c:2112 g10/import.c:2214 g10/import.c:3476 +#: g10/import.c:2116 g10/import.c:2218 g10/import.c:3492 #, c-format msgid "error writing keyring '%s': %s\n" msgstr "feil under skriving av nøkkelknippe «%s»: %s\n" -#: g10/import.c:2135 +#: g10/import.c:2139 #, c-format msgid "key %s: public key \"%s\" imported\n" msgstr "nøkkel %s: offentlig nøkkel «%s» importert\n" -#: g10/import.c:2162 +#: g10/import.c:2166 #, c-format msgid "key %s: doesn't match our copy\n" msgstr "nøkkel %s: stemmer ikke med vår kopi\n" -#: g10/import.c:2230 +#: g10/import.c:2234 #, c-format msgid "key %s: \"%s\" 1 new user ID\n" msgstr "nøkkel %s: «%s» 1 ny bruker-ID\n" -#: g10/import.c:2233 +#: g10/import.c:2237 #, c-format msgid "key %s: \"%s\" %d new user IDs\n" msgstr "nøkkel %s: «%s» %d nye bruker-id-er\n" -#: g10/import.c:2236 +#: g10/import.c:2240 #, c-format msgid "key %s: \"%s\" 1 new signature\n" msgstr "nøkkel %s: «%s» 1 ny signatur\n" -#: g10/import.c:2239 +#: g10/import.c:2243 #, c-format msgid "key %s: \"%s\" %d new signatures\n" msgstr "nøkkel: %s: «%s» %d nye signaturer\n" -#: g10/import.c:2242 +#: g10/import.c:2246 #, c-format msgid "key %s: \"%s\" 1 new subkey\n" msgstr "nøkkel %s: «%s» 1 ny undernøkkel\n" -#: g10/import.c:2245 +#: g10/import.c:2249 #, c-format msgid "key %s: \"%s\" %d new subkeys\n" msgstr "nøkkel %s: «%s» %d nye undernøkler\n" -#: g10/import.c:2248 +#: g10/import.c:2252 #, c-format msgid "key %s: \"%s\" %d signature cleaned\n" msgstr "nøkkel: %s: «%s» %d nye signaturer\n" -#: g10/import.c:2251 +#: g10/import.c:2255 #, c-format msgid "key %s: \"%s\" %d signatures cleaned\n" msgstr "nøkkel: %s: «%s» %d nye signaturer\n" -#: g10/import.c:2254 +#: g10/import.c:2258 #, c-format msgid "key %s: \"%s\" %d user ID cleaned\n" msgstr "nøkkel %s: «%s» %d nye bruker-id-er\n" -#: g10/import.c:2257 +#: g10/import.c:2261 #, c-format msgid "key %s: \"%s\" %d user IDs cleaned\n" msgstr "nøkkel %s: «%s» %d nye bruker-id-er\n" -#: g10/import.c:2293 +#: g10/import.c:2297 #, c-format msgid "key %s: \"%s\" not changed\n" msgstr "nøkkel %s: «%s» ikke endret\n" -#: g10/import.c:2652 g10/import.c:2847 +#: g10/import.c:2667 g10/import.c:2862 #, c-format msgid "key %s: secret key imported\n" msgstr "nøkkel %s: hemmelig nøkkel importert\n" -#: g10/import.c:2660 +#: g10/import.c:2675 #, c-format msgid "key %s: secret key already exists\n" msgstr "nøkkel %s: hemmelig nøkkel finnes allerede\n" -#: g10/import.c:2668 +#: g10/import.c:2683 #, c-format msgid "key %s: error sending to agent: %s\n" msgstr "nøkkel %s: feil under sending til agent: %s\n" @@ -3862,197 +3868,197 @@ #. * Instead, user should be suggested to run 'gpg --card-status', #. * then, references to a card will be automatically created #. * again. -#: g10/import.c:2837 +#: g10/import.c:2852 #, c-format msgid "To migrate '%s', with each smartcard, run: %s\n" msgstr "Kjør følgende kommando for å flytte «%s»: %s\n" -#: g10/import.c:2984 +#: g10/import.c:2999 #, c-format msgid "secret key %s: %s\n" msgstr "hemmelig nøkkel %s: %s\n" -#: g10/import.c:3005 g10/import.c:3044 +#: g10/import.c:3020 g10/import.c:3059 #, c-format msgid "importing secret keys not allowed\n" msgstr "importering av hemmelig nøkkel er ikke tillatt\n" -#: g10/import.c:3032 +#: g10/import.c:3047 #, c-format msgid "key %s: secret key with invalid cipher %d - skipped\n" msgstr "" "nøkkel %s: hemmelig nøkkel med ugyldig krypteringsmetode %d - hoppet over\n" -#: g10/import.c:3194 g10/pkclist.c:72 g10/revoke.c:776 +#: g10/import.c:3209 g10/pkclist.c:72 g10/revoke.c:776 msgid "No reason specified" msgstr "Ingen grunn oppgitt" -#: g10/import.c:3195 g10/pkclist.c:74 g10/revoke.c:778 +#: g10/import.c:3210 g10/pkclist.c:74 g10/revoke.c:778 msgid "Key is superseded" msgstr "Nøkkelen er overgått" -#: g10/import.c:3196 g10/pkclist.c:76 g10/revoke.c:777 +#: g10/import.c:3211 g10/pkclist.c:76 g10/revoke.c:777 msgid "Key has been compromised" msgstr "Nøkkelen har blitt kompromittert" -#: g10/import.c:3197 g10/pkclist.c:78 g10/revoke.c:779 +#: g10/import.c:3212 g10/pkclist.c:78 g10/revoke.c:779 msgid "Key is no longer used" msgstr "Nøkkelen er ikke lengre i bruk" -#: g10/import.c:3198 g10/pkclist.c:80 g10/revoke.c:780 +#: g10/import.c:3213 g10/pkclist.c:80 g10/revoke.c:780 msgid "User ID is no longer valid" msgstr "Bruker-ID er ikke lenger gyldig" -#: g10/import.c:3323 g10/keylist.c:1258 g10/pkclist.c:84 +#: g10/import.c:3338 g10/keylist.c:1258 g10/pkclist.c:84 #, c-format msgid "reason for revocation: " msgstr "grunnen for opphevelse: " -#: g10/import.c:3342 g10/keylist.c:1277 g10/pkclist.c:100 +#: g10/import.c:3357 g10/keylist.c:1277 g10/pkclist.c:100 #, c-format msgid "revocation comment: " msgstr "kommentar til opphevelse: " -#: g10/import.c:3392 +#: g10/import.c:3408 #, c-format msgid "key %s: no public key - can't apply revocation certificate\n" msgstr "" "nøkkel %s: offentlig nøkkel mangler. Klarte ikke å bruke " "opphevelsessertifikat\n" -#: g10/import.c:3423 +#: g10/import.c:3439 #, c-format msgid "key %s: can't locate original keyblock: %s\n" msgstr "nøkkel %s: finner ikke original nøkkelblokk: %s\n" -#: g10/import.c:3430 +#: g10/import.c:3446 #, c-format msgid "key %s: can't read original keyblock: %s\n" msgstr "nøkkel %s: klarte ikke å lese opprinnelig nøkkelblokk: %s\n" -#: g10/import.c:3450 +#: g10/import.c:3466 #, c-format msgid "key %s: invalid revocation certificate: %s - rejected\n" msgstr "nøkkel %s: ugyldig opphevingssertifikat: %s - avvist\n" -#: g10/import.c:3485 +#: g10/import.c:3501 #, c-format msgid "key %s: \"%s\" revocation certificate imported\n" msgstr "nøkkel %s: «%s» opphevingssertifikat importert\n" -#: g10/import.c:3571 +#: g10/import.c:3587 #, c-format msgid "key %s: no user ID for signature\n" msgstr "nøkkel %s: ingen bruker-ID for signatur\n" -#: g10/import.c:3588 +#: g10/import.c:3604 #, c-format msgid "key %s: unsupported public key algorithm on user ID \"%s\"\n" msgstr "" "nøkkel %s: offentlig nøkkelalgoritme for bruker-ID («%s») støttes ikke\n" -#: g10/import.c:3590 +#: g10/import.c:3606 #, c-format msgid "key %s: invalid self-signature on user ID \"%s\"\n" msgstr "nøkkel %s: ugyldig selvsignatur for bruker-ID «%s»\n" -#: g10/import.c:3607 g10/import.c:3635 g10/import.c:3691 +#: g10/import.c:3623 g10/import.c:3651 g10/import.c:3707 #, c-format msgid "key %s: unsupported public key algorithm\n" msgstr "nøkkel %s: ustøttet offentlig nøkkelalgoritme\n" -#: g10/import.c:3608 +#: g10/import.c:3624 #, c-format msgid "key %s: invalid direct key signature\n" msgstr "nøkkel %s: ugyldig direkte nøkkelsignatur\n" -#: g10/import.c:3622 +#: g10/import.c:3638 #, c-format msgid "key %s: no subkey for key binding\n" msgstr "nøkkel %s: ingen undernøkkel for nøkkelbinding\n" -#: g10/import.c:3637 +#: g10/import.c:3653 #, c-format msgid "key %s: invalid subkey binding\n" msgstr "nøkkel %s: ugyldig undernøkkelbinding\n" -#: g10/import.c:3656 +#: g10/import.c:3672 #, c-format msgid "key %s: removed multiple subkey binding\n" msgstr "nøkkel %s: fjernet flere undernøkkelbindinger\n" -#: g10/import.c:3680 +#: g10/import.c:3696 #, c-format msgid "key %s: no subkey for key revocation\n" msgstr "nøkkel %s: ingen undernøkkel for nøkkeloppheving\n" -#: g10/import.c:3693 +#: g10/import.c:3709 #, c-format msgid "key %s: invalid subkey revocation\n" msgstr "nøkkel %s: ugyldig undernøkkeloppheving\n" -#: g10/import.c:3708 +#: g10/import.c:3724 #, c-format msgid "key %s: removed multiple subkey revocation\n" msgstr "nøkkel %s: fjernet flere undernøkkelopphevinger\n" -#: g10/import.c:3752 +#: g10/import.c:3771 #, c-format msgid "key %s: skipped user ID \"%s\"\n" msgstr "nøkkel %s: hoppet over bruker-ID «%s»\n" -#: g10/import.c:3779 +#: g10/import.c:3798 #, c-format msgid "key %s: skipped subkey\n" msgstr "nøkkel %s: hoppet over undernøkkel\n" -#: g10/import.c:3810 +#: g10/import.c:3829 #, c-format msgid "key %s: non exportable signature (class 0x%02X) - skipped\n" msgstr "nøkkel %s: ikke-eksporterbar signatur (klasse 0x%02X) - hoppet over\n" -#: g10/import.c:3821 +#: g10/import.c:3840 #, c-format msgid "key %s: revocation certificate at wrong place - skipped\n" msgstr "nøkkel %s: opphevingssertifikat på feil plass - hoppet over\n" -#: g10/import.c:3839 +#: g10/import.c:3868 #, c-format msgid "key %s: invalid revocation certificate: %s - skipped\n" msgstr "nøkkel %s: ugyldig opphevingssertifikat: %s - hoppet over\n" -#: g10/import.c:3853 +#: g10/import.c:3892 #, c-format msgid "key %s: subkey signature in wrong place - skipped\n" msgstr "nøkkel %s: undernøkkelsignatur på feil plass - hoppet over\n" -#: g10/import.c:3861 +#: g10/import.c:3900 #, c-format msgid "key %s: unexpected signature class (0x%02X) - skipped\n" msgstr "nøkkel %s: uforventet signaturklasse (0x%02X) - hoppet over\n" -#: g10/import.c:4034 +#: g10/import.c:4073 #, c-format msgid "key %s: duplicated user ID detected - merged\n" msgstr "nøkkel %s: oppdaget duplisert bruker-ID. Slått sammen\n" -#: g10/import.c:4099 +#: g10/import.c:4138 #, c-format msgid "WARNING: key %s may be revoked: fetching revocation key %s\n" msgstr "ADVARSEL: nøkkel %s kan være opphevet: henter opphevingsnøkkel %s\n" -#: g10/import.c:4115 +#: g10/import.c:4154 #, c-format msgid "WARNING: key %s may be revoked: revocation key %s not present.\n" msgstr "" "ADVARSEL: nøkkel %s kan være opphevet: opphevingsnøkkel %s ikke tilstede.\n" -#: g10/import.c:4181 +#: g10/import.c:4220 #, c-format msgid "key %s: \"%s\" revocation certificate added\n" msgstr "nøkkel %s: «%s» opphevingssertifikat lagt til\n" -#: g10/import.c:4219 +#: g10/import.c:4258 #, c-format msgid "key %s: direct key signature added\n" msgstr "nøkkel %s: direkte nøkkelsignatur lagt til\n" @@ -4927,7 +4933,7 @@ msgid "You may not add a photo ID to a PGP2-style key.\n" msgstr "Du kan ikke knytte foto-ID til PGP2-nøkler.\n" -#: g10/keyedit.c:4293 g10/keygen.c:2899 +#: g10/keyedit.c:4293 g10/keygen.c:2953 msgid "Such a user ID already exists on this key!\n" msgstr "Valgt bruker-ID finnes allerede på denne nøkkelen!\n" @@ -5208,63 +5214,63 @@ msgid "Displaying %s photo ID of size %ld for key %s (uid %d)\n" msgstr "Viser %s foto-ID av størrelsen %ld for nøkkel %s (uid %d)\n" -#: g10/keygen.c:169 +#: g10/keygen.c:174 #, c-format msgid "invalid value for option '%s'\n" msgstr "ugyldig verdi for valg «%s»\n" -#: g10/keygen.c:322 +#: g10/keygen.c:331 #, c-format msgid "preference '%s' duplicated\n" msgstr "innstilling «%s» er duplisert\n" -#: g10/keygen.c:329 +#: g10/keygen.c:338 #, c-format msgid "too many cipher preferences\n" msgstr "for mange krypteringsinnstillinger\n" -#: g10/keygen.c:331 +#: g10/keygen.c:340 #, c-format msgid "too many digest preferences\n" msgstr "for mange kontrollsum-innstillinger\n" -#: g10/keygen.c:333 +#: g10/keygen.c:342 #, c-format msgid "too many compression preferences\n" msgstr "for mange komprimeringsinnstillinger\n" -#: g10/keygen.c:493 +#: g10/keygen.c:502 #, c-format msgid "invalid item '%s' in preference string\n" msgstr "«%s» er et ugyldig oppsettsvalg\n" -#: g10/keygen.c:972 +#: g10/keygen.c:1020 #, c-format msgid "writing direct signature\n" msgstr "skriver direkte signatur\n" -#: g10/keygen.c:1018 +#: g10/keygen.c:1066 #, c-format msgid "writing self signature\n" msgstr "skriver selvsignatur\n" -#: g10/keygen.c:1075 +#: g10/keygen.c:1123 #, c-format msgid "writing key binding signature\n" msgstr "skriver nøkkelbindende signatur\n" -#: g10/keygen.c:1440 g10/keygen.c:1445 g10/keygen.c:1497 g10/keygen.c:1502 -#: g10/keygen.c:1656 g10/keygen.c:1661 +#: g10/keygen.c:1494 g10/keygen.c:1499 g10/keygen.c:1551 g10/keygen.c:1556 +#: g10/keygen.c:1710 g10/keygen.c:1715 #, c-format msgid "keysize invalid; using %u bits\n" msgstr "ugyldig nøkkelstørrelse. Bruker %u bit\n" -#: g10/keygen.c:1451 g10/keygen.c:1508 g10/keygen.c:1516 g10/keygen.c:1667 +#: g10/keygen.c:1505 g10/keygen.c:1562 g10/keygen.c:1570 g10/keygen.c:1721 #, c-format msgid "keysize rounded up to %u bits\n" msgstr "nøkkelstørrelse rundet opp til %u bit\n" -#: g10/keygen.c:1542 +#: g10/keygen.c:1596 #, c-format msgid "" "WARNING: some OpenPGP programs can't handle a DSA key with this digest size\n" @@ -5272,19 +5278,19 @@ "ADVARSEL: noen OpenPGP-programmer klarer ikke å behandle DSA-nøkler med " "denne kontrollsum-størrelsen\n" -#: g10/keygen.c:1723 +#: g10/keygen.c:1777 msgid "Sign" msgstr "Signere" -#: g10/keygen.c:1726 +#: g10/keygen.c:1780 msgid "Certify" msgstr "Bekrefte" -#: g10/keygen.c:1729 +#: g10/keygen.c:1783 msgid "Encrypt" msgstr "Kryptere data" -#: g10/keygen.c:1732 +#: g10/keygen.c:1786 msgid "Authenticate" msgstr "Autentisere" @@ -5302,162 +5308,162 @@ #. * a = Toggle authentication capability #. * q = Finish #. -#: g10/keygen.c:1753 +#: g10/keygen.c:1807 msgid "SsEeAaQq" msgstr "SsKkAaQq" -#: g10/keygen.c:1784 +#: g10/keygen.c:1838 #, c-format msgid "Possible actions for a %s key: " msgstr "Mulige handlinger med en %s-nøkkel: " -#: g10/keygen.c:1790 +#: g10/keygen.c:1844 msgid "Current allowed actions: " msgstr "Tillatte handlinger: " -#: g10/keygen.c:1795 +#: g10/keygen.c:1849 #, c-format msgid " (%c) Toggle the sign capability\n" msgstr " (%c) Slå av/på signeringsfunksjon\n" -#: g10/keygen.c:1798 +#: g10/keygen.c:1852 #, c-format msgid " (%c) Toggle the encrypt capability\n" msgstr " (%c) Slå av/på krypteringsfunksjon\n" -#: g10/keygen.c:1801 +#: g10/keygen.c:1855 #, c-format msgid " (%c) Toggle the authenticate capability\n" msgstr " (%c) Slå av/på autentiseringsfunksjon\n" -#: g10/keygen.c:1804 +#: g10/keygen.c:1858 #, c-format msgid " (%c) Finished\n" msgstr " (%c) Ferdig\n" -#: g10/keygen.c:1930 +#: g10/keygen.c:1984 #, c-format msgid " (%d) RSA and RSA (default)\n" msgstr " (%d) RSA og RSA (standard)\n" -#: g10/keygen.c:1934 +#: g10/keygen.c:1988 #, c-format msgid " (%d) DSA and Elgamal\n" msgstr " (%d) DSA og Elgamal\n" -#: g10/keygen.c:1937 +#: g10/keygen.c:1991 #, c-format msgid " (%d) DSA (sign only)\n" msgstr " (%d) DSA (bare signering)\n" -#: g10/keygen.c:1939 +#: g10/keygen.c:1993 #, c-format msgid " (%d) RSA (sign only)\n" msgstr " (%d) RSA (bare signering)\n" -#: g10/keygen.c:1945 +#: g10/keygen.c:1999 #, c-format msgid " (%d) Elgamal (encrypt only)\n" msgstr " (%d) ElGamal (bare kryptering)\n" -#: g10/keygen.c:1947 +#: g10/keygen.c:2001 #, c-format msgid " (%d) RSA (encrypt only)\n" msgstr " (%d) RSA (bare kryptering)\n" -#: g10/keygen.c:1953 +#: g10/keygen.c:2007 #, c-format msgid " (%d) DSA (set your own capabilities)\n" msgstr " (%d) DSA (sette dine egne muligheter)\n" -#: g10/keygen.c:1955 +#: g10/keygen.c:2009 #, c-format msgid " (%d) RSA (set your own capabilities)\n" msgstr " (%d) RSA (sette dine egne muligheter)\n" -#: g10/keygen.c:1961 +#: g10/keygen.c:2015 #, c-format msgid " (%d) ECC and ECC\n" msgstr " (%d) ECC og ECC\n" -#: g10/keygen.c:1963 +#: g10/keygen.c:2017 #, c-format msgid " (%d) ECC (sign only)\n" msgstr " (%d) ECC (kun signering)\n" -#: g10/keygen.c:1965 +#: g10/keygen.c:2019 #, c-format msgid " (%d) ECC (set your own capabilities)\n" msgstr " (%d) ECC (velg funksjoner selv)\n" -#: g10/keygen.c:1967 +#: g10/keygen.c:2021 #, c-format msgid " (%d) ECC (encrypt only)\n" msgstr " (%d) ECC (kun kryptering)\n" -#: g10/keygen.c:1971 +#: g10/keygen.c:2025 #, c-format msgid " (%d) Existing key\n" msgstr " (%d) Nøkkel\n" -#: g10/keygen.c:1973 +#: g10/keygen.c:2027 #, fuzzy, c-format #| msgid " (%d) Existing key from card\n" msgid " (%d) Existing key from card\n" msgstr " (%d) Nøkkel fra kort\n" -#: g10/keygen.c:2069 sm/certreqgen-ui.c:202 +#: g10/keygen.c:2123 sm/certreqgen-ui.c:202 msgid "Enter the keygrip: " msgstr "Skriv inn nøkkelgrep: " -#: g10/keygen.c:2082 sm/certreqgen-ui.c:210 +#: g10/keygen.c:2136 sm/certreqgen-ui.c:210 msgid "Not a valid keygrip (expecting 40 hex digits)\n" msgstr "Ugyldig nøkkelgrep (forventer 40 heks-sifre)\n" -#: g10/keygen.c:2084 sm/certreqgen-ui.c:212 +#: g10/keygen.c:2138 sm/certreqgen-ui.c:212 msgid "No key with this keygrip\n" msgstr "Ingen nøkkel med dette nøkkelgrepet\n" -#: g10/keygen.c:2103 g10/keygen.c:2113 g10/keygen.c:3216 g10/keygen.c:3227 +#: g10/keygen.c:2157 g10/keygen.c:2167 g10/keygen.c:3270 g10/keygen.c:3281 #: sm/certreqgen-ui.c:230 sm/certreqgen-ui.c:239 #, c-format msgid "error reading the card: %s\n" msgstr "feil under lesing av kort: %s\n" -#: g10/keygen.c:2107 g10/keygen.c:3220 sm/certreqgen-ui.c:233 +#: g10/keygen.c:2161 g10/keygen.c:3274 sm/certreqgen-ui.c:233 #, c-format msgid "Serial number of the card: %s\n" msgstr "Kortets serienummer: %s\n" -#: g10/keygen.c:2120 sm/certreqgen-ui.c:245 +#: g10/keygen.c:2174 sm/certreqgen-ui.c:245 msgid "Available keys:\n" msgstr "Tilgjengelige nøkler:\n" -#: g10/keygen.c:2297 g10/keygen.c:2311 +#: g10/keygen.c:2351 g10/keygen.c:2365 #, c-format msgid "rounded to %u bits\n" msgstr "rundet av til %u bit\n" -#: g10/keygen.c:2352 +#: g10/keygen.c:2406 #, c-format msgid "%s keys may be between %u and %u bits long.\n" msgstr "%s-nøkler må være mellom %u og %u bit lange.\n" -#: g10/keygen.c:2360 +#: g10/keygen.c:2414 #, c-format msgid "What keysize do you want for the subkey? (%u) " msgstr "Hvor stor vil du at undernøkkelen skal være? (%u) " -#: g10/keygen.c:2377 sm/certreqgen-ui.c:189 +#: g10/keygen.c:2431 sm/certreqgen-ui.c:189 #, c-format msgid "Requested keysize is %u bits\n" msgstr "Forespurt nøkkelstørrelse er %u bit\n" -#: g10/keygen.c:2423 +#: g10/keygen.c:2477 msgid "Please select which elliptic curve you want:\n" msgstr "Velg elliptisk kurve:\n" -#: g10/keygen.c:2611 +#: g10/keygen.c:2665 msgid "" "Please specify how long the key should be valid.\n" " 0 = key does not expire\n" @@ -5473,7 +5479,7 @@ " m = nøkkelen utgår om n months\n" " y = nøkkelen utgår om n years\n" -#: g10/keygen.c:2622 +#: g10/keygen.c:2676 msgid "" "Please specify how long the signature should be valid.\n" " 0 = signature does not expire\n" @@ -5489,38 +5495,38 @@ " m = signaturen utgår om n months\n" " y = signaturen utgår om n years\n" -#: g10/keygen.c:2645 +#: g10/keygen.c:2699 msgid "Key is valid for? (0) " msgstr "Nøkkelen er gyldig for? (0) " -#: g10/keygen.c:2650 +#: g10/keygen.c:2704 #, c-format msgid "Signature is valid for? (%s) " msgstr "Signaturen er gyldig for? (%s) " -#: g10/keygen.c:2663 g10/keygen.c:2688 +#: g10/keygen.c:2717 g10/keygen.c:2742 msgid "invalid value\n" msgstr "ugyldig verdi\n" -#: g10/keygen.c:2670 +#: g10/keygen.c:2724 msgid "Key does not expire at all\n" msgstr "Nøkkel utgår ikke i det hele tatt\n" -#: g10/keygen.c:2671 +#: g10/keygen.c:2725 msgid "Signature does not expire at all\n" msgstr "Signaturen utgår ikke i det hele tatt\n" -#: g10/keygen.c:2676 +#: g10/keygen.c:2730 #, c-format msgid "Key expires at %s\n" msgstr "Nøkkel utgår %s\n" -#: g10/keygen.c:2677 +#: g10/keygen.c:2731 #, c-format msgid "Signature expires at %s\n" msgstr "Signaturen utgår %s\n" -#: g10/keygen.c:2681 +#: g10/keygen.c:2735 msgid "" "Your system can't display dates beyond 2038.\n" "However, it will be correctly handled up to 2106.\n" @@ -5528,11 +5534,11 @@ "Systemet ditt klarer ikke å håndtere datoer etter 2038.\n" "Likevel håndteres det korrekt fram til 2106.\n" -#: g10/keygen.c:2694 +#: g10/keygen.c:2748 msgid "Is this correct? (y/N) " msgstr "Er dette korrekt (j/N)? " -#: g10/keygen.c:2762 +#: g10/keygen.c:2816 msgid "" "\n" "GnuPG needs to construct a user ID to identify your key.\n" @@ -5546,7 +5552,7 @@ #. but you should keep your existing translation. In case #. the new string is not translated this old string will #. be used. -#: g10/keygen.c:2777 +#: g10/keygen.c:2831 msgid "" "\n" "You need a user ID to identify your key; the software constructs the user " @@ -5562,49 +5568,49 @@ " «Heinrich Heine (Der Dichter) »\n" "\n" -#: g10/keygen.c:2796 +#: g10/keygen.c:2850 msgid "Real name: " msgstr "Fullt navn: " -#: g10/keygen.c:2805 +#: g10/keygen.c:2859 msgid "Invalid character in name\n" msgstr "Ugyldig tegn i navn\n" -#: g10/keygen.c:2806 +#: g10/keygen.c:2860 #, c-format msgid "The characters '%s' and '%s' may not appear in name\n" msgstr "Tegnene «%s» og «%s» kan ikke brukes i navn\n" -#: g10/keygen.c:2810 +#: g10/keygen.c:2864 msgid "Name may not start with a digit\n" msgstr "Navn kan ikke begynne med siffer\n" -#: g10/keygen.c:2813 +#: g10/keygen.c:2867 msgid "Name must be at least 5 characters long\n" msgstr "Navnet må bestå av minst 5 tegn\n" -#: g10/keygen.c:2823 +#: g10/keygen.c:2877 msgid "Email address: " msgstr "E-postadresse: " -#: g10/keygen.c:2829 +#: g10/keygen.c:2883 msgid "Not a valid email address\n" msgstr "Ugyldig e-postadresse\n" -#: g10/keygen.c:2838 +#: g10/keygen.c:2892 msgid "Comment: " msgstr "Kommentar: " -#: g10/keygen.c:2844 +#: g10/keygen.c:2898 msgid "Invalid character in comment\n" msgstr "Ugyldig tegn i kommentar\n" -#: g10/keygen.c:2880 +#: g10/keygen.c:2934 #, c-format msgid "You are using the '%s' character set.\n" msgstr "Du bruker tegnsettet «%s».\n" -#: g10/keygen.c:2886 +#: g10/keygen.c:2940 #, c-format msgid "" "You selected this USER-ID:\n" @@ -5615,7 +5621,7 @@ " «%s»\n" "\n" -#: g10/keygen.c:2891 +#: g10/keygen.c:2945 msgid "Please don't put the email address into the real name or the comment\n" msgstr "Ikk bruk e-postadresse som navn eller kommentar\n" @@ -5630,31 +5636,31 @@ #. o = Okay (ready, continue) #. q = Quit #. -#: g10/keygen.c:2916 +#: g10/keygen.c:2970 msgid "NnCcEeOoQq" msgstr "NnKeEeRrAa" -#: g10/keygen.c:2926 +#: g10/keygen.c:2980 msgid "Change (N)ame, (C)omment, (E)mail or (Q)uit? " msgstr "Endre (N)avn, (K)ommentar, (E)postadresse eller (A)vslutt? " -#: g10/keygen.c:2927 +#: g10/keygen.c:2981 msgid "Change (N)ame, (C)omment, (E)mail or (O)kay/(Q)uit? " msgstr "Endre (N)avn, (K)ommentar, (E)postadresse eller (R)iktig/(A)vslutt? " -#: g10/keygen.c:2932 +#: g10/keygen.c:2986 msgid "Change (N)ame, (E)mail, or (Q)uit? " msgstr "Endre (N)avn, (E)postadresse eller (A)vslutt? " -#: g10/keygen.c:2933 +#: g10/keygen.c:2987 msgid "Change (N)ame, (E)mail, or (O)kay/(Q)uit? " msgstr "Endre (N)avn, (E)postadresse eller (R)iktig/(A)vslutt? " -#: g10/keygen.c:2952 +#: g10/keygen.c:3006 msgid "Please correct the error first\n" msgstr "Rett opp feilen først\n" -#: g10/keygen.c:2998 +#: g10/keygen.c:3052 msgid "" "We need to generate a lot of random bytes. It is a good idea to perform\n" "some other action (type on the keyboard, move the mouse, utilize the\n" @@ -5666,13 +5672,13 @@ "diskene jobbe) mens dette pågår. Da får\n" "tallgeneratoren bedre muligheter til å samle inn vilkårlighetsdata.\n" -#: g10/keygen.c:4278 g10/keygen.c:4349 g10/keygen.c:4367 g10/keygen.c:4395 -#: g10/keygen.c:4739 g10/keygen.c:5239 g10/keygen.c:5534 g10/keygen.c:5639 +#: g10/keygen.c:4332 g10/keygen.c:4403 g10/keygen.c:4421 g10/keygen.c:4449 +#: g10/keygen.c:4793 g10/keygen.c:5293 g10/keygen.c:5588 g10/keygen.c:5693 #, c-format msgid "Key generation failed: %s\n" msgstr "Nøkkelgenerering mislyktes: %s\n" -#: g10/keygen.c:4287 +#: g10/keygen.c:4341 #, c-format msgid "" "About to create a key for:\n" @@ -5683,65 +5689,65 @@ " «%s»\n" "\n" -#: g10/keygen.c:4289 +#: g10/keygen.c:4343 msgid "Continue? (Y/n) " msgstr "Vil du fortsette? (J/n) " -#: g10/keygen.c:4310 +#: g10/keygen.c:4364 #, c-format msgid "A key for \"%s\" already exists\n" msgstr "Det finnes allerede en nøkkel for «%s»\n" -#: g10/keygen.c:4315 +#: g10/keygen.c:4369 msgid "Create anyway? (y/N) " msgstr "Vil du lage nøkkel likevel? (j/N) " -#: g10/keygen.c:4321 +#: g10/keygen.c:4375 #, c-format msgid "creating anyway\n" msgstr "lager likevel\n" -#: g10/keygen.c:4722 +#: g10/keygen.c:4776 #, c-format msgid "Note: Use \"%s %s\" for a full featured key generation dialog.\n" msgstr "" "Merk: Bruk «%s %s» for å se et fullverdig dialogvindu for nøkkelgenerering.\n" -#: g10/keygen.c:4771 +#: g10/keygen.c:4825 #, c-format msgid "Key generation canceled.\n" msgstr "Nøkkelgenerering ble avbrutt.\n" -#: g10/keygen.c:4831 +#: g10/keygen.c:4885 #, c-format msgid "can't create backup file '%s': %s\n" msgstr "klarte ikke å lage sikkerhetskopifila «%s»: %s\n" -#: g10/keygen.c:4851 +#: g10/keygen.c:4905 #, c-format msgid "Note: backup of card key saved to '%s'\n" msgstr "Merk: sikkerhetskopi av kortnøkkel lagret på «%s»\n" -#: g10/keygen.c:5010 g10/keygen.c:5172 +#: g10/keygen.c:5064 g10/keygen.c:5226 #, c-format msgid "writing public key to '%s'\n" msgstr "skriver offentlig nøkkel til «%s»\n" -#: g10/keygen.c:5166 +#: g10/keygen.c:5220 #, c-format msgid "no writable public keyring found: %s\n" msgstr "fant ikke skrivbart offentlig nøkkelknippe: %s\n" -#: g10/keygen.c:5180 +#: g10/keygen.c:5234 #, c-format msgid "error writing public keyring '%s': %s\n" msgstr "feil under skriving av offentlig nøkkelknippe «%s»: %s\n" -#: g10/keygen.c:5210 +#: g10/keygen.c:5264 msgid "public and secret key created and signed.\n" msgstr "offentlig og hemmelig nøkkel opprettet og signert.\n" -#: g10/keygen.c:5226 +#: g10/keygen.c:5280 msgid "" "Note that this key cannot be used for encryption. You may want to use\n" "the command \"--edit-key\" to generate a subkey for this purpose.\n" @@ -5750,7 +5756,7 @@ "vurdere å bruke kommandoen «--edit-key» for å lage en\n" "undernøkkel til dette formålet.\n" -#: g10/keygen.c:5401 g10/keygen.c:5590 +#: g10/keygen.c:5455 g10/keygen.c:5644 #, c-format msgid "" "key has been created %lu second in future (time warp or clock problem)\n" @@ -5758,7 +5764,7 @@ "nøkkel har blitt opprettet %lu sekund i framtiden (time warp- eller " "klokkeproblem)\n" -#: g10/keygen.c:5403 g10/keygen.c:5592 +#: g10/keygen.c:5457 g10/keygen.c:5646 #, c-format msgid "" "key has been created %lu seconds in future (time warp or clock problem)\n" @@ -5766,23 +5772,23 @@ "nøkkel har blitt opprettet %lu sekunder i framtiden (time warp- eller " "klokkeproblem)\n" -#: g10/keygen.c:5414 g10/keygen.c:5603 +#: g10/keygen.c:5468 g10/keygen.c:5657 #, c-format msgid "Note: creating subkeys for v3 keys is not OpenPGP compliant\n" msgstr "" "Merk: det strider med OpenPGP-standarden å lage undernøkler for v3-nøkler\n" -#: g10/keygen.c:5426 g10/keygen.c:5428 +#: g10/keygen.c:5480 g10/keygen.c:5482 #, c-format msgid "Secret parts of primary key are not available.\n" msgstr "Hemmelige deler av primærnøkkelen er ikke tilgjengelig.\n" -#: g10/keygen.c:5435 g10/keygen.c:5437 +#: g10/keygen.c:5489 g10/keygen.c:5491 #, c-format msgid "Secret parts of primary key are stored on-card.\n" msgstr "Hemmelige deler av primærnøkkelen er lagret på kort.\n" -#: g10/keygen.c:5456 g10/keygen.c:5617 +#: g10/keygen.c:5510 g10/keygen.c:5671 msgid "Really create? (y/N) " msgstr "Er du sikker på at du vil fortsette? (j/N) " @@ -6859,30 +6865,30 @@ msgid "data not saved; use option \"--output\" to save it\n" msgstr "data ble ikke lagret. Bruk valget «--output» for å lagre\n" -#: g10/plaintext.c:615 +#: g10/plaintext.c:620 msgid "Detached signature.\n" msgstr "Adskilt signatur.\n" -#: g10/plaintext.c:623 +#: g10/plaintext.c:628 msgid "Please enter name of data file: " msgstr "Skriv inn navn på datafil: " -#: g10/plaintext.c:660 +#: g10/plaintext.c:665 #, c-format msgid "reading stdin ...\n" msgstr "leser std.innkanal …\n" -#: g10/plaintext.c:705 +#: g10/plaintext.c:710 #, c-format msgid "no signed data\n" msgstr "ingen signerte data\n" -#: g10/plaintext.c:723 +#: g10/plaintext.c:728 #, c-format msgid "can't open signed data '%s'\n" msgstr "klarte ikke å åpne signert data «%s»\n" -#: g10/plaintext.c:758 +#: g10/plaintext.c:763 #, c-format msgid "can't open signed data fd=%d: %s\n" msgstr "klarte ikke å åpne signert data fd=%d: «%s»\n" @@ -7897,7 +7903,7 @@ msgid "no need for a trustdb check\n" msgstr "kontroll av trustdb er ikke nødvendig\n" -#: g10/trustdb.c:631 g10/trustdb.c:2326 +#: g10/trustdb.c:631 g10/trustdb.c:2338 #, c-format msgid "next trustdb check due at %s\n" msgstr "neste kontroll av trustdb planlagt %s\n" @@ -7927,38 +7933,38 @@ msgid "checking the trustdb\n" msgstr "kontrollerer trustdb\n" -#: g10/trustdb.c:2047 +#: g10/trustdb.c:2059 #, c-format msgid "%d key processed" msgid_plural "%d keys processed" msgstr[0] "%d nøkkel behandlet" msgstr[1] "%d nøkler behandlet" -#: g10/trustdb.c:2050 +#: g10/trustdb.c:2062 #, c-format msgid " (%d validity count cleared)\n" msgid_plural " (%d validity counts cleared)\n" msgstr[0] "(%d gyldighetsantall klarert)\n" msgstr[1] "(%d gyldighetsantall klarert)\n" -#: g10/trustdb.c:2120 +#: g10/trustdb.c:2132 #, c-format msgid "no ultimately trusted keys found\n" msgstr "fant ingen nøkler med absolutt («ultimat») pålitelighet\n" -#: g10/trustdb.c:2134 +#: g10/trustdb.c:2146 #, c-format msgid "public key of ultimately trusted key %s not found\n" msgstr "fant ikke offentlig nøkkel for absolutt pålitelig nøkkel %s\n" -#: g10/trustdb.c:2252 +#: g10/trustdb.c:2264 #, c-format msgid "" "depth: %d valid: %3d signed: %3d trust: %d-, %dq, %dn, %dm, %df, %du\n" msgstr "" "dybde: %d gyldig: %3d signert: %3d tillit: %d-, %dq, %dn, %dm, %df, %du\n" -#: g10/trustdb.c:2333 +#: g10/trustdb.c:2345 #, c-format msgid "unable to update trustdb version record: write failed: %s\n" msgstr "" @@ -8072,84 +8078,90 @@ #. TRANSLATORS: Put a \x1f right before a colon. This can be #. * used by pinentry to nicely align the names and values. Keep #. * the %s at the start and end of the string. -#: scd/app-p15.c:5116 scd/app-openpgp.c:2154 +#: scd/app-p15.c:5145 scd/app-nks.c:1541 scd/app-openpgp.c:2154 #, c-format msgid "%sNumber: %s%%0AHolder: %s%s" msgstr "%sNummer\\x1f: %s%%0AHolder\\x1f: %s%s" #. TRANSLATORS: This is the number of remaining attempts to #. * enter a PIN. Use %%0A (double-percent,0A) for a linefeed. -#: scd/app-p15.c:5135 scd/app-openpgp.c:2170 +#: scd/app-p15.c:5164 scd/app-nks.c:1560 scd/app-openpgp.c:2170 #, c-format msgid "Remaining attempts: %d" msgstr "Gjenstående forsøk: %d" -#: scd/app-p15.c:5214 scd/app-nks.c:1113 +#: scd/app-p15.c:5243 scd/app-nks.c:2112 msgid "||Please enter the PIN for the key to create qualified signatures." msgstr "||Skriv inn PIN for å la nøkkelen lage kvalifiserte signaturer." #. TRANSLATORS: Do not translate the "|A|" prefix but keep it at #. the start of the string. Use %0A (single percent) for a linefeed. -#: scd/app-p15.c:5217 scd/app-openpgp.c:2464 +#: scd/app-p15.c:5246 scd/app-openpgp.c:2465 msgid "|A|Please enter the Admin PIN" msgstr "|A|Skriv inn admin-PIN" -#: scd/app-p15.c:5219 scd/app-nks.c:1103 +#: scd/app-p15.c:5248 scd/app-nks.c:2102 msgid "|P|Please enter the PIN Unblocking Code (PUK) for the standard keys." msgstr "|P|Skriv inn PIN-opplåsingskode (PUK) for standardnøkler." -#: scd/app-p15.c:5222 scd/app-nks.c:1095 +#: scd/app-p15.c:5251 scd/app-nks.c:2093 msgid "||Please enter the PIN for the standard keys." msgstr "||Skriv inn PIN-kode for standardnøkler." -#: scd/app-nks.c:709 scd/app-openpgp.c:3666 +#: scd/app-nks.c:1479 scd/app-openpgp.c:3675 #, c-format msgid "RSA modulus missing or not of size %d bits\n" msgstr "RSA-modulus mangler eller er av annen størrelse enn %d bit\n" -#: scd/app-nks.c:717 scd/app-openpgp.c:3678 +#: scd/app-nks.c:1487 scd/app-openpgp.c:3687 #, c-format msgid "RSA public exponent missing or larger than %d bits\n" msgstr "offentlig RSA-eksponent mangler eller er større enn %d bit\n" -#: scd/app-nks.c:797 scd/app-openpgp.c:2327 scd/app-openpgp.c:2346 -#: scd/app-openpgp.c:2513 scd/app-openpgp.c:2531 scd/app-openpgp.c:2829 -#: scd/app-openpgp.c:2876 scd/app-openpgp.c:2991 scd/app-dinsig.c:302 +#: scd/app-nks.c:1660 +#, fuzzy +#| msgid "the NullPIN has not yet been changed\n" +msgid "Note: PIN has not yet been enabled." +msgstr "NullPIN er ikke blitt endret enda\n" + +#: scd/app-nks.c:1671 scd/app-openpgp.c:2327 scd/app-openpgp.c:2346 +#: scd/app-openpgp.c:2515 scd/app-openpgp.c:2533 scd/app-openpgp.c:2832 +#: scd/app-openpgp.c:2879 scd/app-openpgp.c:3000 scd/app-dinsig.c:303 #, c-format msgid "PIN callback returned error: %s\n" msgstr "PIN-callback returnerte en feil: %s\n" -#: scd/app-nks.c:830 +#: scd/app-nks.c:1707 #, c-format msgid "the NullPIN has not yet been changed\n" msgstr "NullPIN er ikke blitt endret enda\n" -#: scd/app-nks.c:1094 +#: scd/app-nks.c:2092 msgid "|N|Please enter a new PIN for the standard keys." msgstr "|N|Skriv inn ny PIN-kode for standardnøkler." -#: scd/app-nks.c:1101 +#: scd/app-nks.c:2100 msgid "|NP|Please enter a new PIN Unblocking Code (PUK) for the standard keys." msgstr "|NP|Skriv inn ny PIN-opplåsingskode (PUK) for standardnøkler." -#: scd/app-nks.c:1111 +#: scd/app-nks.c:2110 msgid "|N|Please enter a new PIN for the key to create qualified signatures." msgstr "|N|Skriv inn ny PIN for å la nøkkelen lage kvalifiserte signaturer." -#: scd/app-nks.c:1121 +#: scd/app-nks.c:2120 msgid "" "|NP|Please enter a new PIN Unblocking Code (PUK) for the key to create " "qualified signatures." msgstr "" "|NP|Skriv inn ny PUK-kode for å la nøkkelen lage kvalifiserte signaturer." -#: scd/app-nks.c:1123 +#: scd/app-nks.c:2122 msgid "" "|P|Please enter the PIN Unblocking Code (PUK) for the key to create " "qualified signatures." msgstr "|P|Skriv inn PUK-kode for å la nøkkelen lage kvalifiserte signaturer." -#: scd/app-nks.c:1230 scd/app-openpgp.c:2910 scd/app-dinsig.c:532 +#: scd/app-nks.c:2295 scd/app-openpgp.c:2913 scd/app-dinsig.c:535 #, c-format msgid "error getting new PIN: %s\n" msgstr "feil under henting av ny PIN: %s\n" @@ -8164,7 +8176,7 @@ msgid "failed to store the creation date: %s\n" msgstr "klarte ikke å lagre opprettelsesdato: %s\n" -#: scd/app-openpgp.c:1271 scd/app-openpgp.c:2857 scd/app-openpgp.c:5041 +#: scd/app-openpgp.c:1271 scd/app-openpgp.c:2860 scd/app-openpgp.c:5051 #, c-format msgid "error retrieving CHV status from card\n" msgstr "feil under henting av CHV-status fra kort\n" @@ -8184,7 +8196,7 @@ msgid "response does not contain the EC public key\n" msgstr "svar inneholder ikke offentlig EC-nøkkel\n" -#: scd/app-openpgp.c:1664 scd/app-openpgp.c:4286 +#: scd/app-openpgp.c:1664 scd/app-openpgp.c:4295 #, c-format msgid "response does not contain the public key data\n" msgstr "svar inneholder ikke offentlig nøkkeldata\n" @@ -8218,23 +8230,23 @@ msgid "||Please unlock the card" msgstr "||Lås opp kort" -#: scd/app-openpgp.c:2353 scd/app-openpgp.c:2538 scd/app-openpgp.c:2836 +#: scd/app-openpgp.c:2353 scd/app-openpgp.c:2540 scd/app-openpgp.c:2839 #, 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:2367 scd/app-openpgp.c:2414 scd/app-openpgp.c:2552 -#: scd/app-openpgp.c:4644 +#: scd/app-openpgp.c:2368 scd/app-openpgp.c:2415 scd/app-openpgp.c:2554 +#: scd/app-openpgp.c:4654 #, c-format msgid "verify CHV%d failed: %s\n" msgstr "bekreftelse av CHV%d mislyktes: %s\n" -#: scd/app-openpgp.c:2450 scd/app-openpgp.c:5050 +#: scd/app-openpgp.c:2451 scd/app-openpgp.c:5060 #, c-format msgid "card is permanently locked!\n" msgstr "kortet er låst for godt.\n" -#: scd/app-openpgp.c:2454 +#: scd/app-openpgp.c:2455 #, c-format msgid "%d Admin PIN attempt remaining before card is permanently locked\n" msgid_plural "" @@ -8242,20 +8254,20 @@ msgstr[0] "%d Admin-PIN-forsøk gjenstår før kortet blir låst permanent\n" msgstr[1] "%d Admin-PIN-forsøk gjenstår før kortet blir låst permanent\n" -#: scd/app-openpgp.c:2485 +#: scd/app-openpgp.c:2486 #, c-format msgid "access to admin commands is not configured\n" msgstr "tilgang til admin-kommandoer er ikke konfigurert\n" -#: scd/app-openpgp.c:2823 +#: scd/app-openpgp.c:2826 msgid "||Please enter the PIN" msgstr "||Skriv inn PIN-kode" -#: scd/app-openpgp.c:2872 +#: scd/app-openpgp.c:2875 msgid "||Please enter the Reset Code for the card" msgstr "||Skriv inn tilbakestillingskode for kortet" -#: scd/app-openpgp.c:2882 scd/app-openpgp.c:2943 +#: scd/app-openpgp.c:2885 scd/app-openpgp.c:2946 #, c-format msgid "Reset Code is too short; minimum length is %d\n" msgstr "Tilbakestillingskoden er for kort. Minimumslengde er %d\n" @@ -8263,132 +8275,132 @@ #. 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:2905 +#: scd/app-openpgp.c:2908 msgid "|RN|New Reset Code" msgstr "|RN|Ny tilbakestillingskode" -#: scd/app-openpgp.c:2906 +#: scd/app-openpgp.c:2909 msgid "|AN|New Admin PIN" msgstr "|AN|Ny Admin PIN" -#: scd/app-openpgp.c:2906 +#: scd/app-openpgp.c:2909 msgid "|N|New PIN" msgstr "|N|Ny PIN" -#: scd/app-openpgp.c:2987 +#: scd/app-openpgp.c:2996 msgid "||Please enter the Admin PIN and New Admin PIN" msgstr "||Skriv inn admin-PIN og ny admin-PIN" -#: scd/app-openpgp.c:2988 +#: scd/app-openpgp.c:2997 msgid "||Please enter the PIN and New PIN" msgstr "||Skriv inn PIN-kode og ny PIN-kode" -#: scd/app-openpgp.c:3050 scd/app-openpgp.c:4346 +#: scd/app-openpgp.c:3059 scd/app-openpgp.c:4355 #, c-format msgid "error reading application data\n" msgstr "feil under lesing av programdata\n" -#: scd/app-openpgp.c:3056 scd/app-openpgp.c:4353 +#: scd/app-openpgp.c:3065 scd/app-openpgp.c:4362 #, c-format msgid "error reading fingerprint DO\n" msgstr "feil under lesing av fingeravtrykk DO\n" -#: scd/app-openpgp.c:3066 +#: scd/app-openpgp.c:3075 #, c-format msgid "key already exists\n" msgstr "nøkkelen finnes allerede\n" -#: scd/app-openpgp.c:3070 +#: scd/app-openpgp.c:3079 #, c-format msgid "existing key will be replaced\n" msgstr "gjeldende nøkkel blir erstattet\n" -#: scd/app-openpgp.c:3072 +#: scd/app-openpgp.c:3081 #, c-format msgid "generating new key\n" msgstr "lager ny nøkkel\n" -#: scd/app-openpgp.c:3074 +#: scd/app-openpgp.c:3083 #, c-format msgid "writing new key\n" msgstr "skriver ny nøkkel\n" -#: scd/app-openpgp.c:3647 scd/app-openpgp.c:3999 +#: scd/app-openpgp.c:3656 scd/app-openpgp.c:4008 #, c-format msgid "creation timestamp missing\n" msgstr "tidsstempel for opprettelse mangler\n" -#: scd/app-openpgp.c:3688 scd/app-openpgp.c:3696 +#: scd/app-openpgp.c:3697 scd/app-openpgp.c:3705 #, c-format msgid "RSA prime %s missing or not of size %d bits\n" msgstr "RSA-primtall %s mangler eller er av annen størrelse enn %d bit\n" -#: scd/app-openpgp.c:3829 scd/app-openpgp.c:4106 +#: scd/app-openpgp.c:3838 scd/app-openpgp.c:4115 #, c-format msgid "failed to store the key: %s\n" msgstr "klarte ikke å lagre nøkkel: %s\n" -#: scd/app-openpgp.c:3993 +#: scd/app-openpgp.c:4002 #, c-format msgid "unsupported curve\n" msgstr "ustøttet kurve\n" -#: scd/app-openpgp.c:4263 +#: scd/app-openpgp.c:4272 #, c-format msgid "please wait while key is being generated ...\n" msgstr "vent mens nøkkel blir generert …\n" -#: scd/app-openpgp.c:4271 +#: scd/app-openpgp.c:4280 #, c-format msgid "generating key failed\n" msgstr "nøkkelgenerering mislyktes\n" -#: scd/app-openpgp.c:4277 +#: scd/app-openpgp.c:4286 #, c-format msgid "key generation completed (%d second)\n" msgid_plural "key generation completed (%d seconds)\n" msgstr[0] "nøkkelgenerering fullført (%d sekund)\n" msgstr[1] "nøkkelgenerering fullført (%d sekunder)\n" -#: scd/app-openpgp.c:4311 +#: scd/app-openpgp.c:4320 #, c-format msgid "invalid structure of OpenPGP card (DO 0x93)\n" msgstr "ugyldig struktur i OpenPGP-kort (DO 0x93)\n" -#: scd/app-openpgp.c:4361 +#: scd/app-openpgp.c:4370 #, c-format msgid "fingerprint on card does not match requested one\n" msgstr "fingeravtrykk på kort samsvarer ikke med forespurt avtrykk\n" -#: scd/app-openpgp.c:4560 +#: scd/app-openpgp.c:4569 #, c-format msgid "card does not support digest algorithm %s\n" msgstr "kortet støtter ikke kontrollsum-algoritme %s\n" -#: scd/app-openpgp.c:4618 +#: scd/app-openpgp.c:4627 #, c-format msgid "signatures created so far: %lu\n" msgstr "signaturer opprettet så langt: %lu\n" -#: scd/app-openpgp.c:5055 +#: scd/app-openpgp.c:5065 #, c-format 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:5386 scd/app-openpgp.c:5398 +#: scd/app-openpgp.c:5396 scd/app-openpgp.c:5408 #, c-format msgid "can't access %s - invalid OpenPGP card?\n" msgstr "fikk ikke tilgang til %s. Bruker du et ugyldig OpenPGP-kort?\n" -#: scd/app-dinsig.c:298 +#: scd/app-dinsig.c:299 msgid "||Please enter your PIN at the reader's pinpad" msgstr "||Skriv inn PIN-koden på leserens kodetastatur" #. 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-dinsig.c:529 +#: scd/app-dinsig.c:532 msgid "|N|Initial New PIN" msgstr "|N|Ny PIN" @@ -8474,11 +8486,11 @@ msgid "validation model requested by certificate: %s" msgstr "kontrollmodell forespurt av sertifikat: %s" -#: sm/certchain.c:199 sm/certchain.c:2164 +#: sm/certchain.c:199 sm/certchain.c:2165 msgid "chain" msgstr "kjede" -#: sm/certchain.c:200 sm/certchain.c:2164 +#: sm/certchain.c:200 sm/certchain.c:2165 msgid "shell" msgstr "skall" @@ -8501,235 +8513,235 @@ msgid "failed to open '%s': %s\n" msgstr "klarte ikke å åpne «%s»: %s\n" -#: sm/certchain.c:355 sm/certchain.c:384 dirmngr/validate.c:204 +#: sm/certchain.c:355 sm/certchain.c:385 dirmngr/validate.c:204 #, c-format msgid "Note: non-critical certificate policy not allowed" msgstr "Merk: ukritisk sertifikat-regelsett er ikke tillatt" -#: sm/certchain.c:359 sm/certchain.c:388 dirmngr/validate.c:209 +#: sm/certchain.c:359 sm/certchain.c:389 dirmngr/validate.c:209 #, c-format msgid "certificate policy not allowed" msgstr "sertifikatregelverk tillates ikke" -#: sm/certchain.c:595 sm/keydb.c:1084 sm/keydb.c:1171 +#: sm/certchain.c:596 sm/keydb.c:1084 sm/keydb.c:1171 #, c-format msgid "failed to get the fingerprint\n" msgstr "klarte ikke å hente fingeravtrykk\n" -#: sm/certchain.c:624 +#: sm/certchain.c:625 #, c-format msgid "looking up issuer at external location\n" msgstr "slår opp utsteder på ekstern plassering\n" -#: sm/certchain.c:644 +#: sm/certchain.c:645 #, c-format msgid "number of issuers matching: %d\n" msgstr "antall ustedere funnet: %d\n" -#: sm/certchain.c:723 dirmngr/ocsp.c:685 +#: sm/certchain.c:724 dirmngr/ocsp.c:685 #, c-format msgid "can't get authorityInfoAccess: %s\n" msgstr "klarte ikke å hente «authorityInfoAccess»: %s\n" -#: sm/certchain.c:791 +#: sm/certchain.c:792 #, c-format msgid "looking up issuer from the Dirmngr cache\n" msgstr "slår opp utsteder fra Dirmngr-hurtiglager\n" -#: sm/certchain.c:816 +#: sm/certchain.c:817 #, c-format msgid "number of matching certificates: %d\n" msgstr "antall treff på sertifikater: %d\n" -#: sm/certchain.c:819 +#: sm/certchain.c:820 #, c-format msgid "dirmngr cache-only key lookup failed: %s\n" msgstr "nøkkeloppslag i dirmngr-hurtiglager mislyktes: %s\n" -#: sm/certchain.c:1041 sm/certchain.c:1554 sm/certchain.c:2192 sm/decrypt.c:728 +#: sm/certchain.c:1042 sm/certchain.c:1555 sm/certchain.c:2193 sm/decrypt.c:728 #: sm/encrypt.c:345 sm/import.c:415 sm/keydb.c:1091 sm/keydb.c:1178 #: sm/sign.c:337 sm/verify.c:118 #, c-format msgid "failed to allocate keyDB handle\n" msgstr "klarte ikke å tildele nøkkeldatabase-verdi\n" -#: sm/certchain.c:1225 +#: sm/certchain.c:1226 msgid "certificate has been revoked" msgstr "sertifikatet er opphevet" -#: sm/certchain.c:1240 +#: sm/certchain.c:1241 msgid "the status of the certificate is unknown" msgstr "sertifikatet har ukjent status" -#: sm/certchain.c:1247 +#: sm/certchain.c:1248 #, c-format msgid "please make sure that the \"dirmngr\" is properly installed\n" msgstr "kontroller at «dirmngr» er installert skikkelig\n" -#: sm/certchain.c:1253 +#: sm/certchain.c:1254 #, c-format msgid "checking the CRL failed: %s" msgstr "kontroll av CRL mislyktes: %s" -#: sm/certchain.c:1282 sm/certchain.c:1350 dirmngr/validate.c:497 +#: sm/certchain.c:1283 sm/certchain.c:1351 dirmngr/validate.c:497 #, c-format msgid "certificate with invalid validity: %s" msgstr "sertifikat med ugyldig gyldighetsverdi: %s" -#: sm/certchain.c:1297 sm/certchain.c:1382 dirmngr/validate.c:515 +#: sm/certchain.c:1298 sm/certchain.c:1383 dirmngr/validate.c:515 #, c-format msgid "certificate not yet valid" msgstr "sertifikatet er ikke gyldig enda" -#: sm/certchain.c:1298 sm/certchain.c:1383 +#: sm/certchain.c:1299 sm/certchain.c:1384 msgid "root certificate not yet valid" msgstr "rotsertifikat er ikke gyldig enda" -#: sm/certchain.c:1299 sm/certchain.c:1384 +#: sm/certchain.c:1300 sm/certchain.c:1385 msgid "intermediate certificate not yet valid" msgstr "mellomsertifikat er ikke gyldig enda" -#: sm/certchain.c:1312 dirmngr/validate.c:526 +#: sm/certchain.c:1313 dirmngr/validate.c:526 #, c-format msgid "certificate has expired" msgstr "sertifikatet er utgått" -#: sm/certchain.c:1313 +#: sm/certchain.c:1314 msgid "root certificate has expired" msgstr "rotsertifikat er utgått" -#: sm/certchain.c:1314 +#: sm/certchain.c:1315 msgid "intermediate certificate has expired" msgstr "mellomsertifikat er utgått" -#: sm/certchain.c:1356 +#: sm/certchain.c:1357 #, c-format msgid "required certificate attributes missing: %s%s%s" msgstr "påkrevde sertifikategenskaper mangler: %s%s%s" -#: sm/certchain.c:1365 +#: sm/certchain.c:1366 msgid "certificate with invalid validity" msgstr "sertifikat med ugyldig gyldighetsverdi" -#: sm/certchain.c:1402 +#: sm/certchain.c:1403 msgid "signature not created during lifetime of certificate" msgstr "signatur ikke laget innenfor sertifikatets levetid" -#: sm/certchain.c:1404 +#: sm/certchain.c:1405 msgid "certificate not created during lifetime of issuer" msgstr "sertifikat ikke laget innenfor utsteders levetid" -#: sm/certchain.c:1405 +#: sm/certchain.c:1406 msgid "intermediate certificate not created during lifetime of issuer" msgstr "mellomsertifikat ikke laget innenfor utsteders levetid" -#: sm/certchain.c:1409 +#: sm/certchain.c:1410 #, c-format msgid " ( signature created at " msgstr " ( signatur opprettet " -#: sm/certchain.c:1410 +#: sm/certchain.c:1411 #, c-format msgid " (certificate created at " msgstr " (sertifikat opprettet " -#: sm/certchain.c:1413 +#: sm/certchain.c:1414 #, c-format msgid " (certificate valid from " msgstr " (sertifikat gyldig fra " -#: sm/certchain.c:1414 +#: sm/certchain.c:1415 #, c-format msgid " ( issuer valid from " msgstr " ( utsteder gyldig fra " -#: sm/certchain.c:1444 dirmngr/validate.c:577 +#: sm/certchain.c:1445 dirmngr/validate.c:577 #, c-format msgid "fingerprint=%s\n" msgstr "fingeravtrykk=%s\n" -#: sm/certchain.c:1453 +#: sm/certchain.c:1454 #, c-format msgid "root certificate has now been marked as trusted\n" msgstr "rotsertifikat er nå merket som troverdig\n" -#: sm/certchain.c:1466 +#: sm/certchain.c:1467 #, c-format msgid "interactive marking as trusted not enabled in gpg-agent\n" msgstr "interaktiv tillitsmerking er ikke slått på i gpg-agent\n" -#: sm/certchain.c:1472 +#: sm/certchain.c:1473 #, c-format msgid "interactive marking as trusted disabled for this session\n" msgstr "interaktiv tillitsmarkering er slått av for gjeldende økt\n" -#: sm/certchain.c:1531 +#: sm/certchain.c:1532 msgid "WARNING: creation time of signature not known - assuming current time" msgstr "" "ADVARSEL: opprettelsestid for signatur er ukjent. Antar gjeldende tidspunkt" -#: sm/certchain.c:1595 +#: sm/certchain.c:1596 msgid "no issuer found in certificate" msgstr "fant ingen utsteder i sertifikat" -#: sm/certchain.c:1673 +#: sm/certchain.c:1674 msgid "self-signed certificate has a BAD signature" msgstr "selvsignert sertifikat har ugyldig signatur" -#: sm/certchain.c:1742 dirmngr/validate.c:575 +#: sm/certchain.c:1743 dirmngr/validate.c:575 #, c-format msgid "root certificate is not marked trusted" msgstr "rotsertifikat er ikke merket som troverdig" -#: sm/certchain.c:1758 +#: sm/certchain.c:1759 #, c-format msgid "checking the trust list failed: %s\n" msgstr "kontroll av tillitsliste mislyktes: %s\n" -#: sm/certchain.c:1789 sm/import.c:176 sm/keylist.c:1396 dirmngr/validate.c:630 +#: sm/certchain.c:1790 sm/import.c:176 sm/keylist.c:1396 dirmngr/validate.c:630 #, c-format msgid "certificate chain too long\n" msgstr "sertifikatkjede er for langt\n" -#: sm/certchain.c:1801 dirmngr/validate.c:642 +#: sm/certchain.c:1802 dirmngr/validate.c:642 #, c-format msgid "issuer certificate not found" msgstr "fant ikke utstedersertifikat" -#: sm/certchain.c:1834 dirmngr/validate.c:668 +#: sm/certchain.c:1835 dirmngr/validate.c:668 #, c-format msgid "certificate has a BAD signature" msgstr "sertifikatet har ugyldig signatur" -#: sm/certchain.c:1866 dirmngr/validate.c:692 +#: sm/certchain.c:1867 dirmngr/validate.c:692 msgid "found another possible matching CA certificate - trying again" msgstr "fant et annet CA-sertifikat som kan fungere. Prøver igjen" -#: sm/certchain.c:1925 dirmngr/validate.c:717 +#: sm/certchain.c:1926 dirmngr/validate.c:717 #, c-format msgid "certificate chain longer than allowed by CA (%d)" msgstr "sertifikatkjede er lengre enn CA tillater (%d)" -#: sm/certchain.c:1967 sm/certchain.c:2263 dirmngr/validate.c:747 +#: sm/certchain.c:1968 sm/certchain.c:2264 dirmngr/validate.c:747 #, c-format msgid "certificate is good\n" msgstr "sertifikatet er gyldig\n" -#: sm/certchain.c:1968 +#: sm/certchain.c:1969 #, c-format msgid "intermediate certificate is good\n" msgstr "mellomsertifikat er ok\n" -#: sm/certchain.c:1969 +#: sm/certchain.c:1970 #, c-format msgid "root certificate is good\n" msgstr "rotsertifikat er gyldig\n" -#: sm/certchain.c:2151 +#: sm/certchain.c:2152 msgid "switching to chain model" msgstr "bytter til kjedemodell" -#: sm/certchain.c:2160 +#: sm/certchain.c:2161 #, c-format msgid "validation model used: %s" msgstr "gyldighetsmodell: %s" diff -Nru gnupg2-2.2.40/po/pl.po gnupg2-2.2.41/po/pl.po --- gnupg2-2.2.40/po/pl.po 2022-10-10 09:58:26.000000000 +0000 +++ gnupg2-2.2.41/po/pl.po 2022-12-09 08:48:34.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: gnupg-2.2.24\n" "Report-Msgid-Bugs-To: translations@gnupg.org\n" -"POT-Creation-Date: 2022-10-10 11:58+0200\n" +"POT-Creation-Date: 2022-12-09 09:48+0100\n" "PO-Revision-Date: 2020-11-18 17:35+0100\n" "Last-Translator: Jakub Bogusz \n" "Language-Team: Polish \n" @@ -228,20 +228,20 @@ msgid "ssh keys greater than %d bits are not supported\n" msgstr "klucze ssh większe niż %d bitów nie są obsługiwane\n" -#: agent/command-ssh.c:862 common/dotlock.c:856 g10/card-util.c:947 -#: g10/exec.c:554 g10/export.c:1320 g10/gpg.c:1400 g10/keygen.c:4998 +#: agent/command-ssh.c:862 common/dotlock.c:856 g10/card-util.c:946 +#: g10/exec.c:554 g10/export.c:1335 g10/gpg.c:1409 g10/keygen.c:5052 #: g10/keyring.c:1322 g10/keyring.c:1637 g10/openfile.c:291 g10/sign.c:1008 #: g10/sign.c:1322 g10/tdbio.c:753 #, c-format msgid "can't create '%s': %s\n" msgstr "nie można utworzyć ,,%s'': %s\n" -#: agent/command-ssh.c:874 common/helpfile.c:57 g10/card-util.c:904 +#: agent/command-ssh.c:874 common/helpfile.c:57 g10/card-util.c:903 #: g10/dearmor.c:59 g10/dearmor.c:106 g10/decrypt.c:65 g10/decrypt.c:136 -#: g10/decrypt.c:153 g10/encrypt.c:239 g10/encrypt.c:678 g10/gpg.c:1401 -#: g10/import.c:364 g10/import.c:548 g10/import.c:776 g10/keygen.c:4036 +#: g10/decrypt.c:153 g10/encrypt.c:239 g10/encrypt.c:678 g10/gpg.c:1410 +#: g10/import.c:365 g10/import.c:549 g10/import.c:777 g10/keygen.c:4090 #: g10/keyring.c:1663 g10/openfile.c:195 g10/openfile.c:209 g10/plaintext.c:128 -#: g10/plaintext.c:649 g10/sign.c:990 g10/sign.c:1201 g10/sign.c:1306 +#: g10/plaintext.c:654 g10/sign.c:990 g10/sign.c:1201 g10/sign.c:1306 #: g10/sign.c:1451 g10/tdbdump.c:145 g10/tdbdump.c:153 g10/tdbio.c:758 #: g10/tdbio.c:829 g10/verify.c:96 g10/verify.c:160 sm/gpgsm.c:2160 #: sm/gpgsm.c:2190 sm/gpgsm.c:2228 sm/qualified.c:66 dirmngr/certcache.c:420 @@ -465,33 +465,33 @@ msgid "csh-style command output" msgstr "wyjście poleceń w stylu csh" -#: agent/gpg-agent.c:185 g10/gpg.c:579 scd/scdaemon.c:126 sm/gpgsm.c:410 +#: agent/gpg-agent.c:185 g10/gpg.c:580 scd/scdaemon.c:126 sm/gpgsm.c:410 #: dirmngr/dirmngr.c:192 msgid "|FILE|read options from FILE" msgstr "|PLIK|odczyt opcji z PLIKU" -#: agent/gpg-agent.c:189 g10/gpg.c:566 scd/scdaemon.c:130 sm/gpgsm.c:259 +#: agent/gpg-agent.c:189 g10/gpg.c:567 scd/scdaemon.c:130 sm/gpgsm.c:259 #: dirmngr/dirmngr.c:196 msgid "Options controlling the diagnostic output" msgstr "Opcje sterujące wyjściem diagnostycznym" -#: agent/gpg-agent.c:191 g10/gpg.c:568 g10/gpgv.c:78 kbx/kbxutil.c:88 +#: agent/gpg-agent.c:191 g10/gpg.c:569 g10/gpgv.c:78 kbx/kbxutil.c:88 #: scd/scdaemon.c:132 sm/gpgsm.c:261 dirmngr/dirmngr-client.c:70 #: dirmngr/dirmngr.c:198 tools/gpg-connect-agent.c:78 tools/gpgconf.c:110 msgid "verbose" msgstr "więcej komunikatów" -#: agent/gpg-agent.c:192 g10/gpg.c:570 g10/gpgv.c:79 kbx/kbxutil.c:89 +#: agent/gpg-agent.c:192 g10/gpg.c:571 g10/gpgv.c:79 kbx/kbxutil.c:89 #: scd/scdaemon.c:133 sm/gpgsm.c:263 dirmngr/dirmngr-client.c:71 #: dirmngr/dirmngr.c:199 msgid "be somewhat more quiet" msgstr "mniej komunikatów" -#: agent/gpg-agent.c:200 g10/gpg.c:583 sm/gpgsm.c:276 dirmngr/dirmngr.c:209 +#: agent/gpg-agent.c:200 g10/gpg.c:584 sm/gpgsm.c:276 dirmngr/dirmngr.c:209 msgid "|FILE|write server mode logs to FILE" msgstr "|PLIK|zapis logów trybu serwera do PLIKU" -#: agent/gpg-agent.c:204 g10/gpg.c:589 scd/scdaemon.c:147 sm/gpgsm.c:283 +#: agent/gpg-agent.c:204 g10/gpg.c:590 scd/scdaemon.c:147 sm/gpgsm.c:283 #: dirmngr/dirmngr.c:213 msgid "Options controlling the configuration" msgstr "Opcje sterujące konfiguracją" @@ -528,7 +528,7 @@ msgid "enable putty support" msgstr "włączenie obsługi putty" -#: agent/gpg-agent.c:237 g10/gpg.c:831 scd/scdaemon.c:175 sm/gpgsm.c:369 +#: agent/gpg-agent.c:237 g10/gpg.c:832 scd/scdaemon.c:175 sm/gpgsm.c:369 msgid "Options controlling the security" msgstr "Opcje sterujące bezpieczeństwem" @@ -627,7 +627,7 @@ #. reporting address. This is so that we can change the #. reporting address without breaking the translations. #: agent/gpg-agent.c:563 agent/preset-passphrase.c:100 agent/protect-tool.c:155 -#: g10/gpg.c:1108 g10/gpgv.c:149 kbx/kbxutil.c:113 scd/scdaemon.c:313 +#: g10/gpg.c:1117 g10/gpgv.c:149 kbx/kbxutil.c:113 scd/scdaemon.c:313 #: sm/gpgsm.c:600 dirmngr/dirmngr-client.c:168 dirmngr/dirmngr.c:458 #: tools/gpg-connect-agent.c:205 tools/gpgconf.c:154 #: tools/gpg-check-pattern.c:143 @@ -646,26 +646,26 @@ "Składnia: @GPG_AGENT@ [opcje] [polecenie [argumenty]]\n" "Zarządzanie kluczem tajnym dla @GNUPG@\n" -#: agent/gpg-agent.c:619 g10/gpg.c:1304 scd/scdaemon.c:385 sm/gpgsm.c:748 +#: agent/gpg-agent.c:619 g10/gpg.c:1313 scd/scdaemon.c:385 sm/gpgsm.c:748 #: dirmngr/dirmngr.c:542 #, c-format msgid "invalid debug-level '%s' given\n" msgstr "podano błędny poziom diagnostyki ,,%s''\n" -#: agent/gpg-agent.c:988 g10/gpg.c:3810 g10/gpg.c:3834 sm/gpgsm.c:1585 +#: agent/gpg-agent.c:988 g10/gpg.c:3830 g10/gpg.c:3854 sm/gpgsm.c:1585 #: sm/gpgsm.c:1591 #, c-format msgid "selected digest algorithm is invalid\n" msgstr "wybrany algorytm skrótów wiadomości jest niepoprawny\n" #: agent/gpg-agent.c:1216 agent/gpg-agent.c:2029 common/argparse.c:1766 -#: common/argparse.c:1858 g10/gpg.c:2517 scd/scdaemon.c:547 sm/gpgsm.c:1007 +#: common/argparse.c:1858 g10/gpg.c:2526 scd/scdaemon.c:547 sm/gpgsm.c:1007 #: dirmngr/dirmngr.c:1081 dirmngr/dirmngr.c:1937 #, c-format msgid "reading options from '%s'\n" msgstr "odczyt opcji z ,,%s''\n" -#: agent/gpg-agent.c:1332 g10/gpg.c:3751 scd/scdaemon.c:671 sm/gpgsm.c:1522 +#: agent/gpg-agent.c:1332 g10/gpg.c:3769 scd/scdaemon.c:671 sm/gpgsm.c:1522 #: dirmngr/dirmngr.c:1190 tools/gpg-connect-agent.c:1244 tools/gpgconf.c:677 #, c-format msgid "Note: '%s' is not considered an option\n" @@ -796,7 +796,7 @@ "Składnia: gpg-preset-passphrase [opcje] UCHWYT_KLUCZA\n" "Utrzymuwanie pamięci haseł\n" -#: agent/protect-tool.c:108 g10/gpg.c:441 kbx/kbxutil.c:71 sm/gpgsm.c:210 +#: agent/protect-tool.c:108 g10/gpg.c:442 kbx/kbxutil.c:71 sm/gpgsm.c:210 #: dirmngr/dirmngr.c:171 tools/gpgconf.c:80 msgid "" "@Commands:\n" @@ -1022,7 +1022,7 @@ msgid "secret key parts are not available\n" msgstr "tajne części klucza są niedostępne\n" -#: agent/cvt-openpgp.c:344 g10/card-util.c:1556 +#: agent/cvt-openpgp.c:344 g10/card-util.c:1555 #, c-format msgid "public key algorithm %d (%s) is not supported\n" msgstr "algorytm klucza publicznego %d (%s) nie jest obsługiwany\n" @@ -1177,7 +1177,7 @@ msgid "out of core while allocating %lu bytes" msgstr "brak miejsca podczas przydzielania %lu bajtów" -#: common/miscellaneous.c:115 g10/card-util.c:911 tools/no-libgcrypt.c:30 +#: common/miscellaneous.c:115 g10/card-util.c:910 tools/no-libgcrypt.c:30 #, c-format msgid "error allocating enough memory: %s\n" msgstr "błąd przydzielania wystarczającej ilości pamięci: %s\n" @@ -1290,7 +1290,7 @@ msgstr "algorytm: %s" #: common/audit.c:774 common/audit.c:776 common/audit.c:921 common/audit.c:923 -#: scd/app-openpgp.c:3557 +#: scd/app-openpgp.c:3566 #, c-format msgid "unsupported algorithm: %s" msgstr "nieobsługiwany algorytm: %s" @@ -1365,11 +1365,11 @@ msgid "Root certificate trustworthy" msgstr "Certyfikat główny jest zaufany" -#: common/audit.c:1112 sm/certchain.c:1235 +#: common/audit.c:1112 sm/certchain.c:1236 msgid "no CRL found for certificate" msgstr "nie znaleziono CRL dla certyfikatu" -#: common/audit.c:1115 sm/certchain.c:1245 +#: common/audit.c:1115 sm/certchain.c:1246 msgid "the available CRL is too old" msgstr "dostępny CRL jest zbyt stary" @@ -1498,7 +1498,7 @@ msgid "missing argument for option \"%.50s\"\n" msgstr "brak argumentu dla opcji ,,%.50s''\n" -#: common/argparse.c:558 g10/gpg.c:3525 +#: common/argparse.c:558 g10/gpg.c:3543 #, c-format msgid "invalid argument for option \"%.50s\"\n" msgstr "błędny argument dla opcji ,,%.50s''\n" @@ -1597,92 +1597,92 @@ msgid "%s is too old (need %s, have %s)\n" msgstr "biblioteka %s jest zbyt stara (wymagana %s, zainstalowana %s)\n" -#: g10/armor.c:423 +#: g10/armor.c:424 #, c-format msgid "armor: %s\n" msgstr "opakowanie: %s\n" -#: g10/armor.c:462 +#: g10/armor.c:463 #, c-format msgid "invalid armor header: " msgstr "niepoprawny nagłówek opakowania: " -#: g10/armor.c:473 +#: g10/armor.c:474 #, c-format msgid "armor header: " msgstr "nagłówek opakowania: " -#: g10/armor.c:486 +#: g10/armor.c:487 #, c-format msgid "invalid clearsig header\n" msgstr "niewłaściwy nagłówek dokumentu z podpisem na końcu\n" -#: g10/armor.c:499 +#: g10/armor.c:500 #, c-format msgid "unknown armor header: " msgstr "nieznany nagłówek opakowania: " -#: g10/armor.c:552 +#: g10/armor.c:553 #, c-format msgid "nested clear text signatures\n" msgstr "zagnieżdżone podpisy na końcu dokumentu\n" -#: g10/armor.c:687 +#: g10/armor.c:688 #, c-format msgid "unexpected armor: " msgstr "nieoczekiwane opakowanie: " -#: g10/armor.c:700 +#: g10/armor.c:701 #, c-format msgid "invalid dash escaped line: " msgstr "niepoprawne oznaczenie linii minusami: " -#: g10/armor.c:872 g10/armor.c:1492 +#: g10/armor.c:873 g10/armor.c:1493 #, c-format msgid "invalid radix64 character %02X skipped\n" msgstr "niewłaściwy znak formatu radix64 ,,%02X'' został pominięty\n" -#: g10/armor.c:915 +#: g10/armor.c:916 #, c-format msgid "premature eof (no CRC)\n" msgstr "przedwczesny koniec pliku (brak CRC)\n" -#: g10/armor.c:949 +#: g10/armor.c:950 #, c-format msgid "premature eof (in CRC)\n" msgstr "przedwczesny koniec pliku (w CRC)\n" -#: g10/armor.c:957 +#: g10/armor.c:958 #, c-format msgid "malformed CRC\n" msgstr "błąd formatu CRC\n" -#: g10/armor.c:961 g10/armor.c:1529 +#: g10/armor.c:962 g10/armor.c:1530 #, c-format msgid "CRC error; %06lX - %06lX\n" msgstr "Błąd sumy CRC; %06lX - %06lX\n" -#: g10/armor.c:981 +#: g10/armor.c:982 #, c-format msgid "premature eof (in trailer)\n" msgstr "przedwczesny koniec pliku (w linii kończącej)\n" -#: g10/armor.c:985 +#: g10/armor.c:986 #, c-format msgid "error in trailer line\n" msgstr "błąd w linii kończącej\n" -#: g10/armor.c:1305 +#: g10/armor.c:1306 #, c-format msgid "no valid OpenPGP data found.\n" msgstr "nie odnaleziono poprawnych danych w formacie OpenPGP.\n" -#: g10/armor.c:1310 +#: g10/armor.c:1311 #, c-format msgid "invalid armor: line longer than %d characters\n" msgstr "błąd opakowania: linia dłuższa niż %d znaków\n" -#: g10/armor.c:1314 +#: g10/armor.c:1315 #, c-format msgid "" "quoted printable character in armor - probably a buggy MTA has been used\n" @@ -1818,23 +1818,23 @@ msgid "server uses an invalid certificate" msgstr "serwer używa błędnego certyfikatu" -#: g10/call-dirmngr.c:462 g10/gpg.c:4458 +#: g10/call-dirmngr.c:462 g10/gpg.c:4478 #, c-format msgid "Note: %s\n" msgstr "Uwaga: %s\n" -#: g10/card-util.c:86 g10/card-util.c:366 g10/card-util.c:1918 +#: g10/card-util.c:86 g10/card-util.c:366 g10/card-util.c:1917 #, c-format msgid "OpenPGP card not available: %s\n" msgstr "Karta OpenPGP niedostępna: %s\n" -#: g10/card-util.c:91 g10/card-util.c:1924 +#: g10/card-util.c:91 g10/card-util.c:1923 #, c-format msgid "OpenPGP card no. %s detected\n" msgstr "Wykryto kartę OpenPGP nr %s\n" -#: g10/card-util.c:97 g10/card-util.c:2253 g10/delkey.c:160 g10/keyedit.c:1423 -#: g10/keygen.c:4466 g10/revoke.c:214 g10/revoke.c:636 +#: g10/card-util.c:97 g10/card-util.c:2252 g10/delkey.c:160 g10/keyedit.c:1423 +#: g10/keygen.c:4520 g10/revoke.c:214 g10/revoke.c:636 #, c-format msgid "can't do this in batch mode\n" msgstr "nie działa w trybie wsadowym\n" @@ -1844,14 +1844,14 @@ msgid "This command is only available for version 2 cards\n" msgstr "To polecenie jest dostępne tylko dla kart w wersji 2\n" -#: g10/card-util.c:107 scd/app-openpgp.c:2866 +#: g10/card-util.c:107 scd/app-openpgp.c:2869 #, c-format msgid "Reset Code not or not anymore available\n" msgstr "Kod resetujący nie jest (już lub w ogóle) dostępny\n" -#: g10/card-util.c:140 g10/card-util.c:1442 g10/card-util.c:1704 -#: g10/card-util.c:1796 g10/keyedit.c:394 g10/keyedit.c:415 g10/keyedit.c:429 -#: g10/keygen.c:1808 g10/keygen.c:1980 g10/keygen.c:2186 g10/keygen.c:2477 +#: g10/card-util.c:140 g10/card-util.c:1441 g10/card-util.c:1703 +#: g10/card-util.c:1795 g10/keyedit.c:394 g10/keyedit.c:415 g10/keyedit.c:429 +#: g10/keygen.c:1862 g10/keygen.c:2034 g10/keygen.c:2240 g10/keygen.c:2531 #: sm/certreqgen-ui.c:165 sm/certreqgen-ui.c:291 sm/certreqgen-ui.c:325 msgid "Your selection? " msgstr "Twój wybór? " @@ -1901,79 +1901,79 @@ msgid "Error: Combined name too long (limit is %d characters).\n" msgstr "Błąd: pełne personalia zbyt długie (limit to %d znaków).\n" -#: g10/card-util.c:826 +#: g10/card-util.c:825 msgid "URL to retrieve public key: " msgstr "URL do odczytania klucza publicznego: " -#: g10/card-util.c:920 g10/decrypt-data.c:509 g10/import.c:399 g10/import.c:746 -#: g10/import.c:798 dirmngr/crlcache.c:655 dirmngr/crlcache.c:660 +#: g10/card-util.c:919 g10/decrypt-data.c:509 g10/import.c:400 g10/import.c:747 +#: g10/import.c:799 dirmngr/crlcache.c:655 dirmngr/crlcache.c:660 #: dirmngr/crlcache.c:914 dirmngr/crlcache.c:920 dirmngr/dirmngr.c:1748 #: tools/gpgconf.c:483 tools/gpgconf.c:529 #, c-format msgid "error reading '%s': %s\n" msgstr "błąd odczytu ,,%s'': %s\n" -#: g10/card-util.c:953 g10/decrypt-data.c:512 g10/export.c:2467 +#: g10/card-util.c:952 g10/decrypt-data.c:512 g10/export.c:2586 #: dirmngr/crlcache.c:925 #, c-format msgid "error writing '%s': %s\n" msgstr "błąd zapisu ,,%s'': %s\n" -#: g10/card-util.c:980 +#: g10/card-util.c:979 msgid "Login data (account name): " msgstr "Dane logowania (nazwa konta): " -#: g10/card-util.c:1018 +#: g10/card-util.c:1017 msgid "Private DO data: " msgstr "Prywatne dane DO: " -#: g10/card-util.c:1103 +#: g10/card-util.c:1102 msgid "Language preferences: " msgstr "Preferowane języki: " -#: g10/card-util.c:1111 +#: g10/card-util.c:1110 msgid "Error: invalid length of preference string.\n" msgstr "Błąd: niewłaściwa długość tekstu preferencji.\n" -#: g10/card-util.c:1120 +#: g10/card-util.c:1119 msgid "Error: invalid characters in preference string.\n" msgstr "Błąd: niewłaściwe znaki w tekście preferencji.\n" -#: g10/card-util.c:1142 +#: g10/card-util.c:1141 msgid "Salutation (M = Mr., F = Ms., or space): " msgstr "Tutuł (M = Pan, F = Pani lub spacja): " -#: g10/card-util.c:1156 +#: g10/card-util.c:1155 msgid "Error: invalid response.\n" msgstr "Błąd: niewłaściwa odpowiedź.\n" -#: g10/card-util.c:1178 +#: g10/card-util.c:1177 msgid "CA fingerprint: " msgstr "Odcisk CA:" -#: g10/card-util.c:1201 +#: g10/card-util.c:1200 msgid "Error: invalid formatted fingerprint.\n" msgstr "Błąd: niewłaściwie sformatowany odcisk.\n" -#: g10/card-util.c:1252 +#: g10/card-util.c:1251 #, c-format msgid "key operation not possible: %s\n" msgstr "operacja na kluczu niewykonalna: %s\n" -#: g10/card-util.c:1253 +#: g10/card-util.c:1252 msgid "not an OpenPGP card" msgstr "to nie jest karta OpenPGP" -#: g10/card-util.c:1266 g10/keygen.c:4486 g10/keygen.c:5562 +#: g10/card-util.c:1265 g10/keygen.c:4540 g10/keygen.c:5616 #, c-format msgid "error getting current key info: %s\n" msgstr "błąd podczas odczytu aktualnych informacji o kluczu: %s\n" -#: g10/card-util.c:1351 +#: g10/card-util.c:1350 msgid "Replace existing key? (y/N) " msgstr "Zastąpić istniejący klucz? (t/N) " -#: g10/card-util.c:1368 +#: g10/card-util.c:1367 msgid "" "Note: There is no guarantee that the card supports the requested size.\n" " If the key generation does not succeed, please check the\n" @@ -1983,97 +1983,97 @@ " Jeśli tworzenie klucza nie powiedzie się, proszę sprawdzić\n" " dokumentację karty, aby poznać dozwolone rozmiary.\n" -#: g10/card-util.c:1390 g10/keygen.c:2363 sm/certreqgen-ui.c:179 +#: g10/card-util.c:1389 g10/keygen.c:2417 sm/certreqgen-ui.c:179 #, c-format msgid "What keysize do you want? (%u) " msgstr "Jakiej długości klucz wygenerować? (%u) " -#: g10/card-util.c:1400 g10/keygen.c:2286 g10/keygen.c:2318 +#: g10/card-util.c:1399 g10/keygen.c:2340 g10/keygen.c:2372 #: sm/certreqgen-ui.c:194 #, c-format msgid "rounded up to %u bits\n" msgstr "zaokrąglono do %u bitów\n" -#: g10/card-util.c:1408 g10/keygen.c:2371 sm/certreqgen-ui.c:184 +#: g10/card-util.c:1407 g10/keygen.c:2425 sm/certreqgen-ui.c:184 #, c-format msgid "%s keysizes must be in the range %u-%u\n" msgstr "Rozmiary kluczy %s muszą być z przedziału %u-%u\n" -#: g10/card-util.c:1427 +#: g10/card-util.c:1426 msgid "Changing card key attribute for: " msgstr "Zmiana atrybutu klucza karty dla: " -#: g10/card-util.c:1429 +#: g10/card-util.c:1428 msgid "Signature key\n" msgstr "Klucz do podpisów\n" -#: g10/card-util.c:1431 +#: g10/card-util.c:1430 msgid "Encryption key\n" msgstr "Klucz do szyfrowania\n" -#: g10/card-util.c:1433 +#: g10/card-util.c:1432 msgid "Authentication key\n" msgstr "Klucz do uwierzytelniania\n" -#: g10/card-util.c:1435 g10/keygen.c:1926 sm/certreqgen-ui.c:157 +#: g10/card-util.c:1434 g10/keygen.c:1980 sm/certreqgen-ui.c:157 msgid "Please select what kind of key you want:\n" msgstr "Proszę wybrać rodzaj klucza:\n" -#: g10/card-util.c:1436 sm/certreqgen-ui.c:158 +#: g10/card-util.c:1435 sm/certreqgen-ui.c:158 #, c-format msgid " (%d) RSA\n" msgstr " (%d) RSA\n" -#: g10/card-util.c:1437 +#: g10/card-util.c:1436 #, c-format msgid " (%d) ECC\n" msgstr " (%d) ECC\n" -#: g10/card-util.c:1449 g10/card-util.c:1716 g10/card-util.c:1816 -#: g10/keyedit.c:900 g10/keygen.c:1834 g10/keygen.c:1862 g10/keygen.c:1987 -#: g10/keygen.c:2222 g10/keygen.c:2505 g10/revoke.c:838 +#: g10/card-util.c:1448 g10/card-util.c:1715 g10/card-util.c:1815 +#: g10/keyedit.c:900 g10/keygen.c:1888 g10/keygen.c:1916 g10/keygen.c:2041 +#: g10/keygen.c:2276 g10/keygen.c:2559 g10/revoke.c:838 msgid "Invalid selection.\n" msgstr "Niewłaściwy wybór.\n" -#: g10/card-util.c:1522 +#: g10/card-util.c:1521 #, c-format msgid "The card will now be re-configured to generate a key of %u bits\n" msgstr "Karta zostanie przekonfigurowana do tworzenia klucza %u-bitowego\n" -#: g10/card-util.c:1527 +#: g10/card-util.c:1526 #, c-format msgid "The card will now be re-configured to generate a key of type: %s\n" msgstr "Karta zostanie przekonfigurowana do tworzenia klucza typu: %s\n" -#: g10/card-util.c:1563 +#: g10/card-util.c:1562 #, c-format msgid "error changing key attribute for key %d: %s\n" msgstr "błąd podczas zmiany atrybutu klucza %d: %s\n" -#: g10/card-util.c:1579 g10/card-util.c:2106 +#: g10/card-util.c:1578 g10/card-util.c:2105 #, c-format msgid "error getting card info: %s\n" msgstr "błąd podczas pobierania informacji o karcie: %s\n" -#: g10/card-util.c:1585 g10/card-util.c:1930 g10/card-util.c:2112 +#: g10/card-util.c:1584 g10/card-util.c:1929 g10/card-util.c:2111 #, c-format msgid "This command is not supported by this card\n" msgstr "To polecenie nie jest obsługiwane przez tę kartę\n" -#: g10/card-util.c:1631 +#: g10/card-util.c:1630 msgid "Make off-card backup of encryption key? (Y/n) " msgstr "Stworzyć poza kartą kopię zapasową klucza szyfrującego? (T/n) " -#: g10/card-util.c:1645 +#: g10/card-util.c:1644 #, c-format msgid "Note: keys are already stored on the card!\n" msgstr "Uwaga: klucze są już zapisane na karcie!\n" -#: g10/card-util.c:1648 +#: g10/card-util.c:1647 msgid "Replace existing keys? (y/N) " msgstr "Zastąpić istniejące klucze? (t/N) " -#: g10/card-util.c:1660 +#: g10/card-util.c:1659 #, c-format msgid "" "Please note that the factory settings of the PINs are\n" @@ -2084,142 +2084,142 @@ " PIN = ,,%s'' PIN administracyjny = ,,%s''\n" "Należy je zmienić przy użyciu polecenia --change-pin\n" -#: g10/card-util.c:1695 +#: g10/card-util.c:1694 msgid "Please select the type of key to generate:\n" msgstr "Proszę wybrać rodzaj klucza do wygenerowania:\n" -#: g10/card-util.c:1697 g10/card-util.c:1787 +#: g10/card-util.c:1696 g10/card-util.c:1786 msgid " (1) Signature key\n" msgstr " (1) Klucz do podpisów\n" -#: g10/card-util.c:1698 g10/card-util.c:1789 +#: g10/card-util.c:1697 g10/card-util.c:1788 msgid " (2) Encryption key\n" msgstr " (2) Klucz do szyfrowania\n" -#: g10/card-util.c:1699 g10/card-util.c:1791 +#: g10/card-util.c:1698 g10/card-util.c:1790 msgid " (3) Authentication key\n" msgstr " (3) Klucz do uwierzytelniania\n" -#: g10/card-util.c:1784 +#: g10/card-util.c:1783 msgid "Please select where to store the key:\n" msgstr "Proszę wybrać gdzie zapisać klucz:\n" -#: g10/card-util.c:1830 +#: g10/card-util.c:1829 #, c-format msgid "KEYTOCARD failed: %s\n" msgstr "KEYTOCARD nie powiodło się: %s\n" -#: g10/card-util.c:1935 +#: g10/card-util.c:1934 #, c-format msgid "Note: This command destroys all keys stored on the card!\n" msgstr "Uwaga: to polecenie niszczy wszystkie klucze zapisane na karcie!\n" -#: g10/card-util.c:1938 +#: g10/card-util.c:1937 msgid "Continue? (y/N) " msgstr "Kontynuować? (t/N) " -#: g10/card-util.c:1943 +#: g10/card-util.c:1942 msgid "Really do a factory reset? (enter \"yes\") " msgstr "Naprawdę przywrócić stan fabryczny? (proszę wpisać ,,yes'') " -#: g10/card-util.c:2129 +#: g10/card-util.c:2128 #, c-format msgid "error for setup KDF: %s\n" msgstr "błąd przy ustawianiu KDF: %s\n" -#: g10/card-util.c:2158 g10/keyedit.c:1260 +#: g10/card-util.c:2157 g10/keyedit.c:1260 msgid "quit this menu" msgstr "wyjście z tego menu" -#: g10/card-util.c:2160 +#: g10/card-util.c:2159 msgid "show admin commands" msgstr "pokazanie poleceń administratora" -#: g10/card-util.c:2161 g10/keyedit.c:1263 +#: g10/card-util.c:2160 g10/keyedit.c:1263 msgid "show this help" msgstr "ten tekst pomocy" -#: g10/card-util.c:2163 +#: g10/card-util.c:2162 msgid "list all available data" msgstr "wypisanie wszystkich dostępnych danych" -#: g10/card-util.c:2166 +#: g10/card-util.c:2165 msgid "change card holder's name" msgstr "zmiana nazwy posiadacza karty" -#: g10/card-util.c:2167 +#: g10/card-util.c:2166 msgid "change URL to retrieve key" msgstr "zmiana URL-a do odczytu klucza" -#: g10/card-util.c:2168 +#: g10/card-util.c:2167 msgid "fetch the key specified in the card URL" msgstr "pobranie klucza określonego w URL-u karty" -#: g10/card-util.c:2169 +#: g10/card-util.c:2168 msgid "change the login name" msgstr "zmiana nazwy logowania" -#: g10/card-util.c:2170 +#: g10/card-util.c:2169 msgid "change the language preferences" msgstr "zmiana preferowanych języków" -#: g10/card-util.c:2171 +#: g10/card-util.c:2170 msgid "change card holder's salutation" msgstr "zmiana tytułu posiadacza karty" -#: g10/card-util.c:2173 +#: g10/card-util.c:2172 msgid "change a CA fingerprint" msgstr "zmiana odcisku CA" -#: g10/card-util.c:2174 +#: g10/card-util.c:2173 msgid "toggle the signature force PIN flag" msgstr "zmiana flagi wymuszenia PIN-u do podpisu" -#: g10/card-util.c:2175 +#: g10/card-util.c:2174 msgid "generate new keys" msgstr "wygenerowanie nowych kluczy" -#: g10/card-util.c:2176 +#: g10/card-util.c:2175 msgid "menu to change or unblock the PIN" msgstr "menu do zmiany lub odblokowania PIN-u" -#: g10/card-util.c:2177 +#: g10/card-util.c:2176 msgid "verify the PIN and list all data" msgstr "sprawdzenie PIN-u i wypisanie wszystkich danych" -#: g10/card-util.c:2178 +#: g10/card-util.c:2177 msgid "unblock the PIN using a Reset Code" msgstr "odblokowanie PIN-u przy użyciu kodu resetującego" -#: g10/card-util.c:2179 +#: g10/card-util.c:2178 msgid "destroy all keys and data" msgstr "zniszczenie wszystkich kluczy i danych" -#: g10/card-util.c:2180 +#: g10/card-util.c:2179 msgid "setup KDF for PIN authentication" msgstr "ustawienie KDF do uwierzytelniania PIN-em" -#: g10/card-util.c:2181 +#: g10/card-util.c:2180 msgid "change the key attribute" msgstr "zmiana atrybutu klucza" -#: g10/card-util.c:2305 +#: g10/card-util.c:2304 msgid "gpg/card> " msgstr "gpg/karta> " -#: g10/card-util.c:2346 +#: g10/card-util.c:2345 msgid "Admin-only command\n" msgstr "Polecenie tylko dla administratora\n" -#: g10/card-util.c:2377 +#: g10/card-util.c:2376 msgid "Admin commands are allowed\n" msgstr "Polecenia dla administratora są dozwolone\n" -#: g10/card-util.c:2379 +#: g10/card-util.c:2378 msgid "Admin commands are not allowed\n" msgstr "Polecenia dla administratora nie są dozwolone\n" -#: g10/card-util.c:2482 g10/keyedit.c:2229 +#: g10/card-util.c:2481 g10/keyedit.c:2229 msgid "Invalid command (try \"help\")\n" msgstr "Niepoprawne polecenie (spróbuj ,,help'')\n" @@ -2228,21 +2228,21 @@ msgid "--output doesn't work for this command\n" msgstr "opcja --output nie działa z tym poleceniem\n" -#: g10/decrypt.c:247 g10/gpg.c:5155 g10/keyring.c:399 g10/keyring.c:750 +#: g10/decrypt.c:247 g10/gpg.c:5175 g10/keyring.c:399 g10/keyring.c:750 #, c-format msgid "can't open '%s'\n" msgstr "nie można otworzyć ,,%s''\n" -#: g10/delkey.c:83 g10/export.c:1947 g10/export.c:2230 g10/export.c:2351 -#: g10/getkey.c:2108 g10/gpg.c:5100 g10/keyedit.c:1445 g10/keyedit.c:2335 +#: g10/delkey.c:83 g10/export.c:2035 g10/export.c:2349 g10/export.c:2470 +#: g10/getkey.c:2108 g10/gpg.c:5120 g10/keyedit.c:1445 g10/keyedit.c:2335 #: g10/keyedit.c:2637 g10/keyedit.c:4600 g10/keylist.c:693 g10/keyserver.c:1092 #: g10/revoke.c:230 g10/tofu.c:2165 #, c-format msgid "key \"%s\" not found: %s\n" msgstr "klucz ,,%s'' nie został odnaleziony: %s\n" -#: g10/delkey.c:92 g10/export.c:2015 g10/getkey.c:2116 g10/getkey.c:4517 -#: g10/gpg.c:5109 g10/keyedit.c:2308 g10/keyserver.c:1110 g10/revoke.c:236 +#: g10/delkey.c:92 g10/export.c:2103 g10/getkey.c:2116 g10/getkey.c:4517 +#: g10/gpg.c:5129 g10/keyedit.c:2308 g10/keyserver.c:1110 g10/revoke.c:236 #: g10/revoke.c:663 g10/tofu.c:2173 #, c-format msgid "error reading keyblock: %s\n" @@ -2363,13 +2363,13 @@ msgid "WARNING: '%s' is an empty file\n" msgstr "OSTRZEŻENIE: plik ,,%s'' jest pusty\n" -#: g10/encrypt.c:446 g10/encrypt.c:521 g10/decrypt-data.c:266 g10/gpg.c:3959 -#: g10/gpg.c:3999 sm/decrypt.c:826 sm/encrypt.c:416 sm/gpgsm.c:1609 +#: g10/encrypt.c:446 g10/encrypt.c:521 g10/decrypt-data.c:266 g10/gpg.c:3979 +#: g10/gpg.c:4019 sm/decrypt.c:826 sm/encrypt.c:416 sm/gpgsm.c:1609 #, c-format msgid "cipher algorithm '%s' may not be used in %s mode\n" msgstr "szyfr ,,%s'' nie może być używany w trybie %s\n" -#: g10/encrypt.c:455 g10/gpg.c:3965 g10/gpg.c:4011 g10/sig-check.c:175 +#: g10/encrypt.c:455 g10/gpg.c:3985 g10/gpg.c:4031 g10/sig-check.c:175 #: g10/sign.c:391 sm/gpgsm.c:1619 sm/gpgsm.c:1629 sm/sign.c:478 sm/verify.c:506 #, c-format msgid "digest algorithm '%s' may not be used in %s mode\n" @@ -2485,61 +2485,67 @@ msgid "WARNING: unable to remove temp directory '%s': %s\n" msgstr "OSTRZEŻENIE: nie można skasować tymczasowego katalogu ,,%s'': %s\n" -#: g10/export.c:119 +#: g10/export.c:124 msgid "export signatures that are marked as local-only" msgstr "eksport podpisów oznaczonych jako tylko lokalne" -#: g10/export.c:121 +#: g10/export.c:126 msgid "export attribute user IDs (generally photo IDs)" msgstr "eksport atrybutów ID użytkownika (ogólnie ID zdjęć)" -#: g10/export.c:123 +#: g10/export.c:128 msgid "export revocation keys marked as \"sensitive\"" msgstr "eksport kluczy unieważniających oznaczonych jako ,,poufne''" -#: g10/export.c:125 +#: g10/export.c:130 msgid "remove unusable parts from key during export" msgstr "usunięcie bezużytecznych części z klucza przy eksporcie" -#: g10/export.c:127 +#: g10/export.c:132 msgid "remove as much as possible from key during export" msgstr "usunięcie jak największej części klucza przy eksporcie" -#: g10/export.c:133 +#: g10/export.c:138 +#, fuzzy +#| msgid "generate a revocation certificate" +msgid "export only revocation certificates" +msgstr "tworzenie certyfikatu unieważnienia klucza" + +#: g10/export.c:141 msgid "use the GnuPG key backup format" msgstr "użycie formatu kopii zapasowej klucza GnuPG" -#: g10/export.c:1291 +#: g10/export.c:1306 msgid " - skipped" msgstr " - pominięty" -#: g10/export.c:1324 g10/import.c:2085 g10/openfile.c:200 g10/openfile.c:294 +#: g10/export.c:1339 g10/import.c:2089 g10/openfile.c:200 g10/openfile.c:294 #: g10/sign.c:1012 g10/sign.c:1326 #, c-format msgid "writing to '%s'\n" msgstr "zapis do ,,%s''\n" -#: g10/export.c:1769 +#: g10/export.c:1784 #, c-format msgid "key %s: key material on-card - skipped\n" msgstr "klucz %s: zawartość klucza na karcie - pominięto\n" -#: g10/export.c:1964 +#: g10/export.c:2052 #, c-format msgid "exporting secret keys not allowed\n" msgstr "eksport kluczy tajnych nie jest dozwolony\n" -#: g10/export.c:2041 +#: g10/export.c:2129 #, c-format msgid "key %s: PGP 2.x style key - skipped\n" msgstr "klucz %s: klucz PGP 2.x - pominięty\n" -#: g10/export.c:2135 +#: g10/export.c:2254 #, c-format msgid "WARNING: nothing exported\n" msgstr "OSTRZEŻENIE: nic nie zostało wyeksportowane!\n" -#: g10/export.c:2432 g10/plaintext.c:153 g10/plaintext.c:162 +#: g10/export.c:2551 g10/plaintext.c:153 g10/plaintext.c:162 #: g10/plaintext.c:168 g10/plaintext.c:191 #, c-format msgid "error creating '%s': %s\n" @@ -2605,282 +2611,282 @@ msgid "using subkey %s instead of primary key %s\n" msgstr "używany jest podklucz %s zamiast klucza głównego %s\n" -#: g10/getkey.c:4446 g10/gpg.c:2137 +#: g10/getkey.c:4446 g10/gpg.c:2146 #, c-format msgid "valid values for option '%s':\n" msgstr "poprawne argimenty dla opcji ,,%s'':\n" -#: g10/gpg.c:443 sm/gpgsm.c:212 +#: g10/gpg.c:444 sm/gpgsm.c:212 msgid "make a signature" msgstr "złożenie podpisu" -#: g10/gpg.c:444 +#: g10/gpg.c:445 msgid "make a clear text signature" msgstr "złożenie podpisu pod dokumentem" -#: g10/gpg.c:446 sm/gpgsm.c:214 +#: g10/gpg.c:447 sm/gpgsm.c:214 msgid "make a detached signature" msgstr "złożenie podpisu oddzielonego od dokumentu" -#: g10/gpg.c:447 sm/gpgsm.c:215 +#: g10/gpg.c:448 sm/gpgsm.c:215 msgid "encrypt data" msgstr "szyfrowanie danych" -#: g10/gpg.c:449 +#: g10/gpg.c:450 msgid "encryption only with symmetric cipher" msgstr "szyfrowanie tylko szyfrem symetrycznym" -#: g10/gpg.c:451 sm/gpgsm.c:217 +#: g10/gpg.c:452 sm/gpgsm.c:217 msgid "decrypt data (default)" msgstr "odszyfrowywanie danych (domyślne)" -#: g10/gpg.c:453 sm/gpgsm.c:218 +#: g10/gpg.c:454 sm/gpgsm.c:218 msgid "verify a signature" msgstr "sprawdzenie podpisu" -#: g10/gpg.c:455 sm/gpgsm.c:219 +#: g10/gpg.c:456 sm/gpgsm.c:219 msgid "list keys" msgstr "lista kluczy" -#: g10/gpg.c:457 +#: g10/gpg.c:458 msgid "list keys and signatures" msgstr "lista kluczy i podpisów" -#: g10/gpg.c:460 +#: g10/gpg.c:461 msgid "list and check key signatures" msgstr "wypisanie i sprawdzenie podpisów kluczy" -#: g10/gpg.c:462 sm/gpgsm.c:224 +#: g10/gpg.c:463 sm/gpgsm.c:224 msgid "list keys and fingerprints" msgstr "lista kluczy i ich odcisków" -#: g10/gpg.c:463 sm/gpgsm.c:222 +#: g10/gpg.c:464 sm/gpgsm.c:222 msgid "list secret keys" msgstr "lista kluczy prywatnych" -#: g10/gpg.c:465 sm/gpgsm.c:225 +#: g10/gpg.c:466 sm/gpgsm.c:225 msgid "generate a new key pair" msgstr "wygenerowanie nowej pary kluczy" -#: g10/gpg.c:468 +#: g10/gpg.c:469 msgid "quickly generate a new key pair" msgstr "szybkie wygenerowanie nowej pary kluczy" -#: g10/gpg.c:471 +#: g10/gpg.c:472 msgid "quickly add a new user-id" msgstr "szybkie dodanie nowego identyfikatora użytkownika" -#: g10/gpg.c:476 +#: g10/gpg.c:477 msgid "quickly revoke a user-id" msgstr "szybkie unieważnienie identyfikatora użytkownika" -#: g10/gpg.c:479 +#: g10/gpg.c:480 msgid "quickly set a new expiration date" msgstr "szybkie ustawienie nowej daty wygaśnięcia" -#: g10/gpg.c:482 +#: g10/gpg.c:483 msgid "full featured key pair generation" msgstr "wygenerowanie pary kluczy z pełną funkcjonalnością" -#: g10/gpg.c:485 +#: g10/gpg.c:486 msgid "generate a revocation certificate" msgstr "tworzenie certyfikatu unieważnienia klucza" -#: g10/gpg.c:488 sm/gpgsm.c:228 +#: g10/gpg.c:489 sm/gpgsm.c:228 msgid "remove keys from the public keyring" msgstr "usunięcie klucza ze zbioru kluczy publicznych" -#: g10/gpg.c:490 +#: g10/gpg.c:491 msgid "remove keys from the secret keyring" msgstr "usunięcie klucza ze zbioru kluczy prywatnych" -#: g10/gpg.c:492 +#: g10/gpg.c:493 msgid "quickly sign a key" msgstr "szybkie złożenie podpisu na kluczu" -#: g10/gpg.c:494 +#: g10/gpg.c:495 msgid "quickly sign a key locally" msgstr "szybkie złożenie prywatnego podpisu na kluczu" -#: g10/gpg.c:496 +#: g10/gpg.c:497 msgid "quickly revoke a key signature" msgstr "szybkie unieważnienie podpisu klucza" -#: g10/gpg.c:497 +#: g10/gpg.c:498 msgid "sign a key" msgstr "złożenie podpisu na kluczu" -#: g10/gpg.c:498 +#: g10/gpg.c:499 msgid "sign a key locally" msgstr "złożenie prywatnego podpisu na kluczu" -#: g10/gpg.c:499 +#: g10/gpg.c:500 msgid "sign or edit a key" msgstr "podpisanie lub modyfikacja klucza" -#: g10/gpg.c:501 sm/gpgsm.c:246 +#: g10/gpg.c:502 sm/gpgsm.c:246 msgid "change a passphrase" msgstr "zmiana hasła" -#: g10/gpg.c:505 +#: g10/gpg.c:506 msgid "export keys" msgstr "eksport kluczy do pliku" -#: g10/gpg.c:506 +#: g10/gpg.c:507 msgid "export keys to a keyserver" msgstr "eksport kluczy do serwera kluczy" -#: g10/gpg.c:507 +#: g10/gpg.c:508 msgid "import keys from a keyserver" msgstr "import kluczy z serwera kluczy" -#: g10/gpg.c:510 +#: g10/gpg.c:511 msgid "search for keys on a keyserver" msgstr "szukanie kluczy na serwerze" -#: g10/gpg.c:512 +#: g10/gpg.c:513 msgid "update all keys from a keyserver" msgstr "odświeżenie wszystkich kluczy z serwera" -#: g10/gpg.c:520 +#: g10/gpg.c:521 msgid "import/merge keys" msgstr "import/dołączenie kluczy" -#: g10/gpg.c:523 +#: g10/gpg.c:524 msgid "print the card status" msgstr "wyświetlenie stanu karty" -#: g10/gpg.c:524 +#: g10/gpg.c:525 msgid "change data on a card" msgstr "zmiana danych na karcie" -#: g10/gpg.c:526 +#: g10/gpg.c:527 msgid "change a card's PIN" msgstr "zmiana PIN-u karty" -#: g10/gpg.c:538 +#: g10/gpg.c:539 msgid "update the trust database" msgstr "uaktualnienie bazy zaufania" -#: g10/gpg.c:548 +#: g10/gpg.c:549 msgid "print message digests" msgstr "wypisanie skrótów wiadomości" -#: g10/gpg.c:552 sm/gpgsm.c:241 +#: g10/gpg.c:553 sm/gpgsm.c:241 msgid "run in server mode" msgstr "uruchomienie w trybie serwera" -#: g10/gpg.c:554 +#: g10/gpg.c:555 msgid "|VALUE|set the TOFU policy for a key" msgstr "|WARTOŚĆ|ustawienie polityki TOFU dla klucza" -#: g10/gpg.c:594 +#: g10/gpg.c:595 msgid "|NAME|use NAME as default secret key" msgstr "|NAZWA|użycie NAZWY jako domyślnego klucza tajnego" -#: g10/gpg.c:596 sm/gpgsm.c:332 +#: g10/gpg.c:597 sm/gpgsm.c:332 msgid "|NAME|encrypt to user ID NAME as well" msgstr "|NAZWA|szyfrowanie także dla odbiorcy NAZWA" -#: g10/gpg.c:604 +#: g10/gpg.c:605 msgid "|SPEC|set up email aliases" msgstr "|SPEC|określ adres email" -#: g10/gpg.c:616 +#: g10/gpg.c:617 msgid "use strict OpenPGP behavior" msgstr "ścisłe zachowanie OpenPGP" -#: g10/gpg.c:641 kbx/kbxutil.c:90 sm/gpgsm.c:412 tools/gpgconf.c:112 +#: g10/gpg.c:642 kbx/kbxutil.c:90 sm/gpgsm.c:412 tools/gpgconf.c:112 msgid "do not make any changes" msgstr "pozostawienie bez zmian" -#: g10/gpg.c:642 +#: g10/gpg.c:643 msgid "prompt before overwriting" msgstr "pytanie przed nadpisaniem plików" -#: g10/gpg.c:689 sm/gpgsm.c:304 +#: g10/gpg.c:690 sm/gpgsm.c:304 #, fuzzy #| msgid "Options controlling the security" msgid "Options controlling the input" msgstr "Opcje sterujące bezpieczeństwem" -#: g10/gpg.c:707 sm/gpgsm.c:314 +#: g10/gpg.c:708 sm/gpgsm.c:314 #, fuzzy #| msgid "Options controlling the diagnostic output" msgid "Options controlling the output" msgstr "Opcje sterujące wyjściem diagnostycznym" -#: g10/gpg.c:709 sm/gpgsm.c:316 +#: g10/gpg.c:710 sm/gpgsm.c:316 msgid "create ascii armored output" msgstr "opakowanie ASCII pliku wynikowego" -#: g10/gpg.c:713 g10/gpgv.c:82 sm/gpgsm.c:321 +#: g10/gpg.c:714 g10/gpgv.c:82 sm/gpgsm.c:321 msgid "|FILE|write output to FILE" msgstr "|PLIK|zapis wyjścia do PLIKU" -#: g10/gpg.c:726 +#: g10/gpg.c:727 msgid "use canonical text mode" msgstr "kanoniczny format tekstowy" -#: g10/gpg.c:743 +#: g10/gpg.c:744 msgid "|N|set compress level to N (0 disables)" msgstr "|N|ustawienie poziomu kompresji N (0 - bez)" -#: g10/gpg.c:750 sm/gpgsm.c:347 +#: g10/gpg.c:751 sm/gpgsm.c:347 #, fuzzy #| msgid "Options controlling the interactivity and enforcement" msgid "Options controlling key import and export" msgstr "Opcje sterujące interaktywnością i wymuszaniem" -#: g10/gpg.c:753 +#: g10/gpg.c:754 msgid "|MECHANISMS|use MECHANISMS to locate keys by mail address" msgstr "" "|MECHANIZMY|wykorzystaj MECHANIZMY do wyszukiwania kluczy na podstawie " "adresów e-mail" -#: g10/gpg.c:756 +#: g10/gpg.c:757 msgid "import missing key from a signature" msgstr "import brakującego klucza z podpisu" -#: g10/gpg.c:761 +#: g10/gpg.c:762 msgid "include the public key in signatures" msgstr "włączanie klucza publicznego do podpisów" -#: g10/gpg.c:764 sm/gpgsm.c:350 +#: g10/gpg.c:765 sm/gpgsm.c:350 msgid "disable all access to the dirmngr" msgstr "zablokuj dostęp do dirmngr" -#: g10/gpg.c:776 sm/gpgsm.c:357 +#: g10/gpg.c:777 sm/gpgsm.c:357 #, fuzzy #| msgid "Options controlling the configuration" msgid "Options controlling key listings" msgstr "Opcje sterujące konfiguracją" -#: g10/gpg.c:805 sm/gpgsm.c:324 +#: g10/gpg.c:806 sm/gpgsm.c:324 #, fuzzy #| msgid "list secret keys" msgid "Options to specify keys" msgstr "lista kluczy prywatnych" -#: g10/gpg.c:807 sm/gpgsm.c:326 +#: g10/gpg.c:808 sm/gpgsm.c:326 msgid "|USER-ID|encrypt for USER-ID" msgstr "|UŻYTKOWNIK|szyfrowanie dla odbiorcy o tym identyfikatorze" -#: g10/gpg.c:815 sm/gpgsm.c:328 +#: g10/gpg.c:816 sm/gpgsm.c:328 msgid "|USER-ID|use USER-ID to sign or decrypt" msgstr "" "|UŻYTKOWNIK|użycie tego identyfikatora użytkownika do podpisania lub " "odszyfrowania" -#: g10/gpg.c:866 sm/gpgsm.c:396 +#: g10/gpg.c:867 sm/gpgsm.c:396 msgid "Options for unattended use" msgstr "" -#: g10/gpg.c:885 sm/gpgsm.c:408 dirmngr/dirmngr.c:294 +#: g10/gpg.c:886 sm/gpgsm.c:408 dirmngr/dirmngr.c:294 msgid "Other options" msgstr "" -#: g10/gpg.c:953 sm/gpgsm.c:440 +#: g10/gpg.c:955 sm/gpgsm.c:440 msgid "" "@\n" "(See the man page for a complete listing of all commands and options)\n" @@ -2888,7 +2894,7 @@ "@\n" "(Pełną listę poleceń i opcji można znaleźć w podręczniku systemowym.)\n" -#: g10/gpg.c:956 +#: g10/gpg.c:958 msgid "" "@\n" "Examples:\n" @@ -2910,11 +2916,11 @@ " --list-keys [nazwy] pokazanie kluczy\n" " --fingerprint [nazwy] pokazanie odcisków kluczy\n" -#: g10/gpg.c:1130 +#: g10/gpg.c:1139 msgid "Usage: @GPG@ [options] [files] (-h for help)" msgstr "Składnia: @GPG@ [opcje] [pliki] (-h wyświetla pomoc)" -#: g10/gpg.c:1133 +#: g10/gpg.c:1142 msgid "" "Syntax: @GPG@ [options] [files]\n" "Sign, check, encrypt or decrypt\n" @@ -2924,7 +2930,7 @@ "Podpisywanie, sprawdzanie podpisów, szyfrowanie, rozszyfrowywanie\n" "Domyślnie wykonywana operacja zależy od danych wejściowych\n" -#: g10/gpg.c:1144 sm/gpgsm.c:624 +#: g10/gpg.c:1153 sm/gpgsm.c:624 msgid "" "\n" "Supported algorithms:\n" @@ -2932,78 +2938,78 @@ "\n" "Obsługiwane algorytmy:\n" -#: g10/gpg.c:1147 +#: g10/gpg.c:1156 msgid "Pubkey: " msgstr "Asymetryczne: " -#: g10/gpg.c:1154 g10/keyedit.c:3338 +#: g10/gpg.c:1163 g10/keyedit.c:3338 msgid "Cipher: " msgstr "Symetryczne: " -#: g10/gpg.c:1161 +#: g10/gpg.c:1170 msgid "Hash: " msgstr "Skrótów: " -#: g10/gpg.c:1168 g10/keyedit.c:3404 +#: g10/gpg.c:1177 g10/keyedit.c:3404 msgid "Compression: " msgstr "Kompresji: " -#: g10/gpg.c:1241 sm/gpgsm.c:698 +#: g10/gpg.c:1250 sm/gpgsm.c:698 #, c-format msgid "usage: %s [options] %s\n" msgstr "składnia: %s [opcje] %s\n" -#: g10/gpg.c:1436 sm/gpgsm.c:791 +#: g10/gpg.c:1445 sm/gpgsm.c:791 #, c-format msgid "conflicting commands\n" msgstr "sprzeczne polecenia\n" -#: g10/gpg.c:1454 +#: g10/gpg.c:1463 #, c-format msgid "no = sign found in group definition '%s'\n" msgstr "w definicji grupy ,,%s'' brak znaku ,,=''\n" -#: g10/gpg.c:1652 +#: g10/gpg.c:1661 #, c-format msgid "WARNING: unsafe ownership on homedir '%s'\n" msgstr "" "OSTRZEŻENIE: niebezpieczne prawa własności do katalogu domowego ,,%s''\n" -#: g10/gpg.c:1655 +#: g10/gpg.c:1664 #, c-format msgid "WARNING: unsafe ownership on configuration file '%s'\n" msgstr "" "OSTRZEŻENIE: niebezpieczne prawa własności do pliku konfiguracyjnego ,,%s''\n" -#: g10/gpg.c:1658 +#: g10/gpg.c:1667 #, c-format msgid "WARNING: unsafe ownership on extension '%s'\n" msgstr "OSTRZEŻENIE: niebezpieczne prawa własności do rozszerzenia ,,%s''\n" -#: g10/gpg.c:1664 +#: g10/gpg.c:1673 #, c-format msgid "WARNING: unsafe permissions on homedir '%s'\n" msgstr "OSTRZEŻENIE: niebezpieczne prawa dostępu do katalogu domowego ,,%s''\n" -#: g10/gpg.c:1667 +#: g10/gpg.c:1676 #, c-format msgid "WARNING: unsafe permissions on configuration file '%s'\n" msgstr "" "OSTRZEŻENIE: niebezpieczne prawa dostępu do pliku konfiguracyjnego ,,%s''\n" -#: g10/gpg.c:1670 +#: g10/gpg.c:1679 #, c-format msgid "WARNING: unsafe permissions on extension '%s'\n" msgstr "OSTRZEŻENIE: niebezpieczne prawa dostępu do rozszerzenia ,,%s''\n" -#: g10/gpg.c:1676 +#: g10/gpg.c:1685 #, c-format msgid "WARNING: unsafe enclosing directory ownership on homedir '%s'\n" msgstr "" "OSTRZEŻENIE: niebezpieczne prawa własności do katalogu zawierającego katalog " "domowy ,,%s''\n" -#: g10/gpg.c:1679 +#: g10/gpg.c:1688 #, c-format msgid "" "WARNING: unsafe enclosing directory ownership on configuration file '%s'\n" @@ -3011,21 +3017,21 @@ "OSTRZEŻENIE: niebezpieczne prawa własności do katalogu zawierającego plik " "konfiguracyjny ,,%s''\n" -#: g10/gpg.c:1682 +#: g10/gpg.c:1691 #, c-format msgid "WARNING: unsafe enclosing directory ownership on extension '%s'\n" msgstr "" "OSTRZEŻENIE: niebezpieczne prawa własności do katalogu zawierającego " "rozszerzenie ,,%s''\n" -#: g10/gpg.c:1688 +#: g10/gpg.c:1697 #, c-format msgid "WARNING: unsafe enclosing directory permissions on homedir '%s'\n" msgstr "" "OSTRZEŻENIE: niebezpieczne prawa dostępu do katalogu zawierającego katalog " "domowy ,,%s''\n" -#: g10/gpg.c:1691 +#: g10/gpg.c:1700 #, c-format msgid "" "WARNING: unsafe enclosing directory permissions on configuration file '%s'\n" @@ -3033,459 +3039,459 @@ "OSTRZEŻENIE: niebezpieczne prawa dostępu do katalogu zawierającego plik " "konfiguracyjny ,,%s''\n" -#: g10/gpg.c:1694 +#: g10/gpg.c:1703 #, c-format msgid "WARNING: unsafe enclosing directory permissions on extension '%s'\n" msgstr "" "OSTRZEŻENIE: niebezpieczne prawa dostępu do katalogu zawierającego " "rozszerzenie ,,%s''\n" -#: g10/gpg.c:1910 +#: g10/gpg.c:1919 #, c-format msgid "unknown configuration item '%s'\n" msgstr "nieznana opcja konfiguracyjna ,,%s''\n" -#: g10/gpg.c:2009 +#: g10/gpg.c:2018 msgid "display photo IDs during key listings" msgstr "wyświetlenie ID zdjęć przy wypisywaniu kluczy" -#: g10/gpg.c:2011 +#: g10/gpg.c:2020 msgid "show key usage information during key listings" msgstr "pokazywanie informacji o zastosowaniu klucza przy wypisywaniu kluczy" -#: g10/gpg.c:2013 +#: g10/gpg.c:2022 msgid "show policy URLs during signature listings" msgstr "pokazywanie URL-i polityk przy wypisywaniu podpisów" -#: g10/gpg.c:2015 +#: g10/gpg.c:2024 msgid "show all notations during signature listings" msgstr "pokazywanie wszystkich adnotacji przy wypisywaniu podpisów" -#: g10/gpg.c:2017 +#: g10/gpg.c:2026 msgid "show IETF standard notations during signature listings" msgstr "pokazywanie standardowych adnotacji IETF przy wypisywaniu podpisów" -#: g10/gpg.c:2021 +#: g10/gpg.c:2030 msgid "show user-supplied notations during signature listings" msgstr "pokazywanie adnotacji użytkownika przy wypisywaniu podpisów" -#: g10/gpg.c:2023 +#: g10/gpg.c:2032 msgid "show preferred keyserver URLs during signature listings" msgstr "" "pokazywanie URL-i preferowanych serwerów kluczy przy wypisywaniu podpisów" -#: g10/gpg.c:2025 +#: g10/gpg.c:2034 msgid "show user ID validity during key listings" msgstr "pokazywanie poprawności ID użytkownika przy wypisywaniu kluczy" -#: g10/gpg.c:2027 +#: g10/gpg.c:2036 msgid "show revoked and expired user IDs in key listings" msgstr "" "pokazywanie unieważnionych i wygasłych ID użytkownika na listach kluczy" -#: g10/gpg.c:2029 +#: g10/gpg.c:2038 msgid "show revoked and expired subkeys in key listings" msgstr "pokazywanie unieważnionych i wygasłych podkluczy na listach kluczy" -#: g10/gpg.c:2031 +#: g10/gpg.c:2040 msgid "show the keyring name in key listings" msgstr "pokazywanie nazwy zbioru kluczy na listach kluczy" -#: g10/gpg.c:2033 +#: g10/gpg.c:2042 msgid "show expiration dates during signature listings" msgstr "pokazywanie dat wygaśnięcia przy wypisywaniu podpisów" -#: g10/gpg.c:2148 +#: g10/gpg.c:2157 #, c-format msgid "unknown TOFU policy '%s'\n" msgstr "nieznana polityka TOFU ,,%s''\n" -#: g10/gpg.c:2150 +#: g10/gpg.c:2159 #, c-format msgid "(use \"help\" to list choices)\n" msgstr "(,,help'' wyświetli listę wyborów)\n" -#: g10/gpg.c:2240 g10/keyedit.c:1719 +#: g10/gpg.c:2249 g10/keyedit.c:1719 #, c-format msgid "This command is not allowed while in %s mode.\n" msgstr "To polecenie nie jest dostępne w trybie %s.\n" -#: g10/gpg.c:2878 g10/gpg.c:3718 g10/gpg.c:3730 +#: g10/gpg.c:2896 g10/gpg.c:3736 g10/gpg.c:3748 #, c-format msgid "Note: %s is not for normal use!\n" msgstr "Uwaga: %s nie jest do normalnego użytku!\n" -#: g10/gpg.c:3053 g10/gpg.c:3065 +#: g10/gpg.c:3071 g10/gpg.c:3083 #, c-format msgid "'%s' is not a valid signature expiration\n" msgstr ",,%s'' nie jest poprawnym czasem wygaśnięcia podpisu\n" -#: g10/gpg.c:3087 +#: g10/gpg.c:3105 #, c-format msgid "\"%s\" is not a proper mail address\n" msgstr ",,%s'' nie jest niepoprawnym adresem e-mail\n" -#: g10/gpg.c:3119 sm/gpgsm.c:1121 +#: g10/gpg.c:3137 sm/gpgsm.c:1121 #, c-format msgid "invalid pinentry mode '%s'\n" msgstr "błędny tryb pinentry ,,%s''\n" -#: g10/gpg.c:3125 sm/gpgsm.c:1127 +#: g10/gpg.c:3143 sm/gpgsm.c:1127 #, c-format msgid "invalid request origin '%s'\n" msgstr "błędne źródło żądania ,,%s''\n" -#: g10/gpg.c:3179 +#: g10/gpg.c:3197 #, c-format msgid "'%s' is not a valid character set\n" msgstr ",,%s'' nie jest poprawną nazwą zestawu znaków\n" -#: g10/gpg.c:3201 g10/gpg.c:3415 g10/keyedit.c:5338 +#: g10/gpg.c:3219 g10/gpg.c:3433 g10/keyedit.c:5338 #, c-format msgid "could not parse keyserver URL\n" msgstr "niezrozumiały URL serwera kluczy\n" -#: g10/gpg.c:3219 +#: g10/gpg.c:3237 #, c-format msgid "%s:%d: invalid keyserver options\n" msgstr "%s:%d: niepoprawne opcje serwera kluczy\n" -#: g10/gpg.c:3222 +#: g10/gpg.c:3240 #, c-format msgid "invalid keyserver options\n" msgstr "niepoprawne opcje serwera kluczy\n" -#: g10/gpg.c:3229 +#: g10/gpg.c:3247 #, c-format msgid "%s:%d: invalid import options\n" msgstr "%s:%d: niepoprawne opcje wczytania kluczy\n" -#: g10/gpg.c:3232 +#: g10/gpg.c:3250 #, c-format msgid "invalid import options\n" msgstr "niepoprawne opcje wczytania kluczy\n" -#: g10/gpg.c:3238 g10/gpg.c:3253 +#: g10/gpg.c:3256 g10/gpg.c:3271 #, c-format msgid "invalid filter option: %s\n" msgstr "niepoprawne opcje filtrowania: %s\n" -#: g10/gpg.c:3244 +#: g10/gpg.c:3262 #, c-format msgid "%s:%d: invalid export options\n" msgstr "%s:%d niepoprawne opcje eksportu kluczy\n" -#: g10/gpg.c:3247 +#: g10/gpg.c:3265 #, c-format msgid "invalid export options\n" msgstr "niepoprawne opcje eksportu kluczy\n" -#: g10/gpg.c:3259 +#: g10/gpg.c:3277 #, c-format msgid "%s:%d: invalid list options\n" msgstr "%s:%d: niepoprawne opcje wypisywania\n" -#: g10/gpg.c:3262 +#: g10/gpg.c:3280 #, c-format msgid "invalid list options\n" msgstr "niepoprawne opcje wypisywania\n" -#: g10/gpg.c:3270 +#: g10/gpg.c:3288 msgid "display photo IDs during signature verification" msgstr "wyświetlanie ID zdjęć przy sprawdzaniu podpisów" -#: g10/gpg.c:3272 +#: g10/gpg.c:3290 msgid "show policy URLs during signature verification" msgstr "pokazywanie URL-i polityk przy sprawdzaniu podpisów" -#: g10/gpg.c:3274 +#: g10/gpg.c:3292 msgid "show all notations during signature verification" msgstr "pokazywanie wszystkich adnotacji przy sprawdzaniu podpisów" -#: g10/gpg.c:3276 +#: g10/gpg.c:3294 msgid "show IETF standard notations during signature verification" msgstr "pokazywanie standardowych adnotacji IETF przy sprawdzaniu podpisów" -#: g10/gpg.c:3280 +#: g10/gpg.c:3298 msgid "show user-supplied notations during signature verification" msgstr "pokazywanie adnotacji użytkownika przy sprawdzaniu podpisów" -#: g10/gpg.c:3282 +#: g10/gpg.c:3300 msgid "show preferred keyserver URLs during signature verification" msgstr "" "pokazywanie URL-i preferowanych serwerów kluczy przy sprawdzaniu podpisów" -#: g10/gpg.c:3284 +#: g10/gpg.c:3302 msgid "show user ID validity during signature verification" msgstr "pokazywanie poprawności ID użytkownika przy sprawdzaniu podpisów" -#: g10/gpg.c:3286 +#: g10/gpg.c:3304 msgid "show revoked and expired user IDs in signature verification" msgstr "" "pokazywanie unieważnionych i wygasłych ID użytkownika przy sprawdzaniu " "podpisów" -#: g10/gpg.c:3288 +#: g10/gpg.c:3306 msgid "show only the primary user ID in signature verification" msgstr "pokazywanie tylko głównego ID użytkownika przy sprawdzaniu podpisu" -#: g10/gpg.c:3290 +#: g10/gpg.c:3308 msgid "validate signatures with PKA data" msgstr "sprawdzanie podpisów z danymi PKA" -#: g10/gpg.c:3292 +#: g10/gpg.c:3310 msgid "elevate the trust of signatures with valid PKA data" msgstr "zwiększenie zaufania podpisów z poprawnymi danymi PKA" -#: g10/gpg.c:3299 +#: g10/gpg.c:3317 #, c-format msgid "%s:%d: invalid verify options\n" msgstr "%s:%d: niepoprawne opcje sprawdzania\n" -#: g10/gpg.c:3302 +#: g10/gpg.c:3320 #, c-format msgid "invalid verify options\n" msgstr "niepoprawne opcje sprawdzania\n" -#: g10/gpg.c:3309 +#: g10/gpg.c:3327 #, c-format msgid "unable to set exec-path to %s\n" msgstr "nie można ustawić ścieżki programów wykonywalnych na %s\n" -#: g10/gpg.c:3513 +#: g10/gpg.c:3531 #, c-format msgid "%s:%d: invalid auto-key-locate list\n" msgstr "%s:%d: niepoprawna lista auto-key-locate\n" -#: g10/gpg.c:3516 +#: g10/gpg.c:3534 #, c-format msgid "invalid auto-key-locate list\n" msgstr "Niepoprawna lista auto-key-locate\n" -#: g10/gpg.c:3700 sm/gpgsm.c:1492 +#: g10/gpg.c:3718 sm/gpgsm.c:1492 #, c-format msgid "WARNING: program may create a core file!\n" msgstr "OSTRZEŻENIE: program może stworzyć plik zrzutu pamięci!\n" -#: g10/gpg.c:3711 +#: g10/gpg.c:3729 #, c-format msgid "WARNING: %s overrides %s\n" msgstr "OSTRZEŻENIE: %s powoduje obejście %s\n" -#: g10/gpg.c:3720 +#: g10/gpg.c:3738 #, c-format msgid "%s not allowed with %s!\n" msgstr "Nie wolno używać %s z %s!\n" -#: g10/gpg.c:3723 +#: g10/gpg.c:3741 #, c-format msgid "%s makes no sense with %s!\n" msgstr "%s nie ma sensu w połączeniu z %s!\n" -#: g10/gpg.c:3738 sm/gpgsm.c:1509 dirmngr/dirmngr.c:1205 +#: g10/gpg.c:3756 sm/gpgsm.c:1509 dirmngr/dirmngr.c:1205 #, c-format msgid "WARNING: running with faked system time: " msgstr "OSTRZEŻENIE: działanie z fałszywym czasem systemowym: " -#: g10/gpg.c:3759 +#: g10/gpg.c:3777 #, c-format msgid "will not run with insecure memory due to %s\n" msgstr "nie zadziała z niebezpieczną pamięcią z powodu %s\n" -#: g10/gpg.c:3804 g10/gpg.c:3828 sm/gpgsm.c:1579 +#: g10/gpg.c:3824 g10/gpg.c:3848 sm/gpgsm.c:1579 #, c-format msgid "selected cipher algorithm is invalid\n" msgstr "wybrany algorytm szyfrujący jest niepoprawny\n" -#: g10/gpg.c:3816 +#: g10/gpg.c:3836 #, c-format msgid "selected compression algorithm is invalid\n" msgstr "wybrany algorytm kompresji jest niepoprawny\n" -#: g10/gpg.c:3822 +#: g10/gpg.c:3842 #, c-format msgid "selected certification digest algorithm is invalid\n" msgstr "wybrany algorytm skrótów poświadczeń jest niepoprawny\n" -#: g10/gpg.c:3837 +#: g10/gpg.c:3857 #, c-format msgid "completes-needed must be greater than 0\n" msgstr "wartość completes-needed musi być większa od 0\n" -#: g10/gpg.c:3839 +#: g10/gpg.c:3859 #, c-format msgid "marginals-needed must be greater than 1\n" msgstr "wartość marginals-needed musi być większa od 1\n" -#: g10/gpg.c:3841 +#: g10/gpg.c:3861 #, c-format msgid "max-cert-depth must be in the range from 1 to 255\n" msgstr "wartość max-cert-depth musi mieścić się w zakresie od 1 do 255\n" -#: g10/gpg.c:3843 +#: g10/gpg.c:3863 #, c-format msgid "invalid default-cert-level; must be 0, 1, 2, or 3\n" msgstr "" "niewłaściwy domyślny poziom sprawdzania; musi mieć wartość 0, 1, 2 lub 3\n" -#: g10/gpg.c:3845 +#: g10/gpg.c:3865 #, c-format msgid "invalid min-cert-level; must be 1, 2, or 3\n" msgstr "" "niewłaściwy minimalny poziom sprawdzania; musi mieć wartość 0, 1, 2 lub 3\n" -#: g10/gpg.c:3849 +#: g10/gpg.c:3869 #, c-format msgid "Note: simple S2K mode (0) is strongly discouraged\n" msgstr "Uwaga: prosty tryb S2K (0) jest stanowczo odradzany\n" -#: g10/gpg.c:3853 +#: g10/gpg.c:3873 #, c-format msgid "invalid S2K mode; must be 0, 1 or 3\n" msgstr "niepoprawny tryb S2K; musi mieć wartość 0, 1 lub 3\n" -#: g10/gpg.c:3860 +#: g10/gpg.c:3880 #, c-format msgid "invalid default preferences\n" msgstr "niewłaściwe domyślne ustawienia\n" -#: g10/gpg.c:3864 +#: g10/gpg.c:3884 #, c-format msgid "invalid personal cipher preferences\n" msgstr "niewłaściwe ustawienia szyfrów\n" -#: g10/gpg.c:3868 +#: g10/gpg.c:3888 #, c-format msgid "invalid personal digest preferences\n" msgstr "niewłaściwe ustawienia skrótów\n" -#: g10/gpg.c:3872 +#: g10/gpg.c:3892 #, c-format msgid "invalid personal compress preferences\n" msgstr "niewłaściwe ustawienia algorytmów kompresji\n" -#: g10/gpg.c:3908 +#: g10/gpg.c:3928 #, c-format msgid "%s does not yet work with %s\n" msgstr "%s jeszcze nie działa z %s!\n" -#: g10/gpg.c:3971 +#: g10/gpg.c:3991 #, c-format msgid "compression algorithm '%s' may not be used in %s mode\n" msgstr "algorytm kompresji ,,%s'' nie może być używany w trybie %s\n" -#: g10/gpg.c:4115 +#: g10/gpg.c:4135 #, c-format msgid "failed to initialize the TrustDB: %s\n" msgstr "inicjowanie Bazy Zaufania nie powiodło się: %s\n" -#: g10/gpg.c:4127 +#: g10/gpg.c:4147 #, c-format msgid "WARNING: recipients (-r) given without using public key encryption\n" msgstr "OSTRZEŻENIE: podano adresatów (-r) w działaniu które ich nie dotyczy\n" -#: g10/gpg.c:4199 +#: g10/gpg.c:4219 #, c-format msgid "symmetric encryption of '%s' failed: %s\n" msgstr "szyfrowanie symetryczne ,,%s'' nie powiodło się: %s\n" -#: g10/gpg.c:4228 +#: g10/gpg.c:4248 #, c-format msgid "you cannot use --symmetric --encrypt with --s2k-mode 0\n" msgstr "nie można użyć --symmetric --encrypt wraz z --s2k-mode 0\n" -#: g10/gpg.c:4231 +#: g10/gpg.c:4251 #, c-format msgid "you cannot use --symmetric --encrypt in %s mode\n" msgstr "nie można użyć --symmetric --encrypt w trybie %s\n" -#: g10/gpg.c:4289 +#: g10/gpg.c:4309 #, c-format msgid "you cannot use --symmetric --sign --encrypt with --s2k-mode 0\n" msgstr "nie można użyć --symmetric --sign --encrypt wraz z --s2k-mode 0\n" -#: g10/gpg.c:4292 +#: g10/gpg.c:4312 #, c-format msgid "you cannot use --symmetric --sign --encrypt in %s mode\n" msgstr "nie można użyć --symmetric --sign --encrypt w trybie %s\n" -#: g10/gpg.c:4692 g10/keyserver.c:1648 +#: g10/gpg.c:4712 g10/keyserver.c:1648 #, c-format msgid "keyserver send failed: %s\n" msgstr "wysyłka do serwera kluczy nie powiodła się: %s\n" -#: g10/gpg.c:4697 +#: g10/gpg.c:4717 #, c-format msgid "keyserver receive failed: %s\n" msgstr "odbiór z serwera kluczy nie powiódł się: %s\n" -#: g10/gpg.c:4703 +#: g10/gpg.c:4723 #, c-format msgid "key export failed: %s\n" msgstr "eksport kluczy nie powiódł się: %s\n" -#: g10/gpg.c:4716 +#: g10/gpg.c:4736 #, c-format msgid "export as ssh key failed: %s\n" msgstr "eksport do klucza ssh powiódł się: %s\n" -#: g10/gpg.c:4728 +#: g10/gpg.c:4748 #, c-format msgid "keyserver search failed: %s\n" msgstr "szukanie w serwerze kluczy nie powiodło się: %s\n" -#: g10/gpg.c:4741 +#: g10/gpg.c:4761 #, c-format msgid "keyserver refresh failed: %s\n" msgstr "odświeżenie kluczy z serwera nie powiodło się: %s\n" -#: g10/gpg.c:4810 +#: g10/gpg.c:4830 #, c-format msgid "dearmoring failed: %s\n" msgstr "zdjęcie opakowania ASCII nie powiodło się: %s\n" -#: g10/gpg.c:4821 +#: g10/gpg.c:4841 #, c-format msgid "enarmoring failed: %s\n" msgstr "opakowywanie ASCII nie powiodło się: %s\n" -#: g10/gpg.c:4913 +#: g10/gpg.c:4933 #, c-format msgid "invalid hash algorithm '%s'\n" msgstr "niewłaściwy algorytm skrótu ,,%s''\n" -#: g10/gpg.c:5065 g10/tofu.c:2153 +#: g10/gpg.c:5085 g10/tofu.c:2153 #, c-format msgid "error parsing key specification '%s': %s\n" msgstr "błąd analizy specyfikacji klucza ,,%s'': %s\n" -#: g10/gpg.c:5078 +#: g10/gpg.c:5098 #, c-format msgid "'%s' does not appear to be a valid key ID, fingerprint or keygrip\n" msgstr "" ",,%s'' nie wygląda na prawidłowy identyfikator, odcisk ani uchwyt klucza\n" -#: g10/gpg.c:5134 +#: g10/gpg.c:5154 #, c-format msgid "WARNING: no command supplied. Trying to guess what you mean ...\n" msgstr "OSTRZEŻENIE: nie podano polecenia. Próba odgadnięcia zamiaru...\n" -#: g10/gpg.c:5145 +#: g10/gpg.c:5165 #, c-format msgid "Go ahead and type your message ...\n" msgstr "Wpisz tutaj swoją wiadomość ...\n" -#: g10/gpg.c:5490 +#: g10/gpg.c:5510 #, c-format msgid "the given certification policy URL is invalid\n" msgstr "podany URL regulaminu poświadczania jest niepoprawny\n" -#: g10/gpg.c:5492 +#: g10/gpg.c:5512 #, c-format msgid "the given signature policy URL is invalid\n" msgstr "podany URL regulaminu podpisów jest niepoprawny\n" -#: g10/gpg.c:5525 +#: g10/gpg.c:5545 #, c-format msgid "the given preferred keyserver URL is invalid\n" msgstr "podany preferowany URL serwera kluczy jest niepoprawny\n" @@ -3527,145 +3533,145 @@ msgid "No help available for '%s'" msgstr "Brak pomocy o ,,%s''" -#: g10/import.c:169 +#: g10/import.c:170 msgid "import signatures that are marked as local-only" msgstr "import podpisów oznaczonych jako tylko lokalne" -#: g10/import.c:172 +#: g10/import.c:173 msgid "repair damage from the pks keyserver during import" msgstr "naprawienie uszkodzeń z serwera pks przy imporcie" -#: g10/import.c:175 +#: g10/import.c:176 msgid "do not clear the ownertrust values during import" msgstr "nieczyszczenie wartości zaufania podczas importu" -#: g10/import.c:178 +#: g10/import.c:179 msgid "do not update the trustdb after import" msgstr "nieuaktualnianie bazy zaufania po imporcie" -#: g10/import.c:181 +#: g10/import.c:182 msgid "show key during import" msgstr "okazanie klucza podczas importu" -#: g10/import.c:184 +#: g10/import.c:185 msgid "only accept updates to existing keys" msgstr "przyjmowanie tylko uaktualnień istniejących kluczy" -#: g10/import.c:187 +#: g10/import.c:188 msgid "remove unusable parts from key after import" msgstr "usuwanie bezużytecznych części kluczy po imporcie" -#: g10/import.c:190 +#: g10/import.c:191 msgid "remove as much as possible from key after import" msgstr "usuwanie jak największej części kluczy po imporcie" -#: g10/import.c:193 +#: g10/import.c:194 msgid "ignore key-signatures which are not self-signatures" msgstr "ignorowanie podpisów kluczy nie będących podpisami własnymi" -#: g10/import.c:196 +#: g10/import.c:197 msgid "run import filters and export key immediately" msgstr "natychmiastowe uruchomienie filtrów importu i eksport klucza" -#: g10/import.c:199 +#: g10/import.c:200 msgid "assume the GnuPG key backup format" msgstr "przyjęcie wejścia w formacie kopii zapasowej klucza GnuPG" -#: g10/import.c:203 +#: g10/import.c:204 msgid "repair keys on import" msgstr "naprawienie kluczy przy imporcie" -#: g10/import.c:392 g10/import.c:711 +#: g10/import.c:393 g10/import.c:712 #, c-format msgid "skipping block of type %d\n" msgstr "blok typu %d zostaje pominięty\n" -#: g10/import.c:728 +#: g10/import.c:729 #, c-format msgid "%lu keys processed so far\n" msgstr "%lu kluczy przetworzonych do tej chwili\n" -#: g10/import.c:814 +#: g10/import.c:815 #, c-format msgid "Total number processed: %lu\n" msgstr "Ogółem przetworzonych kluczy: %lu\n" -#: g10/import.c:817 +#: g10/import.c:818 #, c-format msgid " skipped PGP-2 keys: %lu\n" msgstr " pominiętych kluczy PGP-2: %lu\n" -#: g10/import.c:819 +#: g10/import.c:820 #, c-format msgid " skipped new keys: %lu\n" msgstr " pominiętych nowych kluczy: %lu\n" -#: g10/import.c:822 +#: g10/import.c:823 #, c-format msgid " w/o user IDs: %lu\n" msgstr " bez identyfikatora: %lu\n" -#: g10/import.c:825 sm/import.c:130 +#: g10/import.c:826 sm/import.c:130 #, c-format msgid " imported: %lu" msgstr " dołączono do zbioru: %lu" -#: g10/import.c:829 sm/import.c:134 +#: g10/import.c:830 sm/import.c:134 #, c-format msgid " unchanged: %lu\n" msgstr " bez zmian: %lu\n" -#: g10/import.c:831 +#: g10/import.c:832 #, c-format msgid " new user IDs: %lu\n" msgstr " nowych identyfikatorów: %lu\n" -#: g10/import.c:833 +#: g10/import.c:834 #, c-format msgid " new subkeys: %lu\n" msgstr " nowych podkluczy: %lu\n" -#: g10/import.c:835 +#: g10/import.c:836 #, c-format msgid " new signatures: %lu\n" msgstr " nowych podpisów: %lu\n" -#: g10/import.c:837 +#: g10/import.c:838 #, c-format msgid " new key revocations: %lu\n" msgstr " nowych unieważnień kluczy: %lu\n" -#: g10/import.c:839 sm/import.c:136 +#: g10/import.c:840 sm/import.c:136 #, c-format msgid " secret keys read: %lu\n" msgstr " tajnych kluczy wczytanych: %lu\n" -#: g10/import.c:841 sm/import.c:138 +#: g10/import.c:842 sm/import.c:138 #, c-format msgid " secret keys imported: %lu\n" msgstr " tajnych kluczy dodanych: %lu\n" -#: g10/import.c:843 sm/import.c:140 +#: g10/import.c:844 sm/import.c:140 #, c-format msgid " secret keys unchanged: %lu\n" msgstr " tajnych kluczy bez zmian: %lu\n" -#: g10/import.c:845 sm/import.c:142 +#: g10/import.c:846 sm/import.c:142 #, c-format msgid " not imported: %lu\n" msgstr " nie włączono do zbioru: %lu\n" -#: g10/import.c:847 +#: g10/import.c:848 #, c-format msgid " signatures cleaned: %lu\n" msgstr " podpisów wyczyszczonych: %lu\n" -#: g10/import.c:849 +#: g10/import.c:850 #, c-format msgid " user IDs cleaned: %lu\n" msgstr "ID użytkownika wyczyszczonych: %lu\n" -#: g10/import.c:1276 +#: g10/import.c:1277 #, c-format msgid "" "WARNING: key %s contains preferences for unavailable\n" @@ -3674,167 +3680,167 @@ "OSTRZEŻENIE: klucz %s zawiera preferencje dla niedostępnych\n" "algorytmów dla tych ID użytkownika:\n" -#: g10/import.c:1318 +#: g10/import.c:1319 #, c-format msgid " \"%s\": preference for cipher algorithm %s\n" msgstr " ,,%s'': preferowany szyfr %s\n" -#: g10/import.c:1333 +#: g10/import.c:1334 #, c-format msgid " \"%s\": preference for digest algorithm %s\n" msgstr " ,,%s'': preferowany algorytm skrótu %s\n" -#: g10/import.c:1345 +#: g10/import.c:1346 #, c-format msgid " \"%s\": preference for compression algorithm %s\n" msgstr " ,,%s'': preferowany algorytm kompresji %s\n" -#: g10/import.c:1358 +#: g10/import.c:1359 #, c-format msgid "it is strongly suggested that you update your preferences and\n" msgstr "zdecydowanie sugerowane jest uaktualnienie ustawień i ponowne\n" -#: g10/import.c:1360 +#: g10/import.c:1361 #, c-format msgid "re-distribute this key to avoid potential algorithm mismatch problems\n" msgstr "rozesłanie tego klucza w celu uniknięcia niezgodności algorytmów\n" -#: g10/import.c:1385 +#: g10/import.c:1386 #, c-format msgid "you can update your preferences with: gpg --edit-key %s updpref save\n" msgstr "" "można uaktualnić swoje ustawienia poprzez: gpg --edit-key %s updpref save\n" -#: g10/import.c:1899 g10/import.c:3013 +#: g10/import.c:1902 g10/import.c:3028 #, c-format msgid "key %s: no user ID\n" msgstr "klucz %s: brak identyfikatora użytkownika\n" -#: g10/import.c:1905 +#: g10/import.c:1908 #, c-format msgid "key %s: %s\n" msgstr "klucz %s: %s\n" -#: g10/import.c:1906 g10/import.c:2985 +#: g10/import.c:1909 g10/import.c:3000 msgid "rejected by import screener" msgstr "odrzucony przez filtr importu" -#: g10/import.c:1950 +#: g10/import.c:1953 #, c-format msgid "key %s: PKS subkey corruption repaired\n" msgstr "klucz %s: podklucz uszkodzony przez serwer został naprawiony\n" -#: g10/import.c:1971 +#: g10/import.c:1974 #, c-format msgid "key %s: accepted non self-signed user ID \"%s\"\n" msgstr "klucz %s: przyjęto identyfikator nie podpisany nim samym ,,%s''\n" -#: g10/import.c:1981 g10/import.c:2012 +#: g10/import.c:1985 g10/import.c:2016 #, c-format msgid "key %s: no valid user IDs\n" msgstr "klucz %s: brak poprawnych identyfikatorów użytkownika\n" -#: g10/import.c:1983 +#: g10/import.c:1987 #, c-format msgid "this may be caused by a missing self-signature\n" msgstr "to może być spowodowane brakiem podpisu klucza nim samym\n" -#: g10/import.c:2062 g10/import.c:3399 +#: g10/import.c:2066 g10/import.c:3415 #, c-format msgid "key %s: public key not found: %s\n" msgstr "klucz %s: brak klucza publicznego: %s\n" -#: g10/import.c:2068 +#: g10/import.c:2072 #, c-format msgid "key %s: new key - skipped\n" msgstr "klucz %s: nowy klucz - pominięty\n" -#: g10/import.c:2080 +#: g10/import.c:2084 #, c-format msgid "no writable keyring found: %s\n" msgstr "brak zapisywalnego zbioru kluczy: %s\n" -#: g10/import.c:2112 g10/import.c:2214 g10/import.c:3476 +#: g10/import.c:2116 g10/import.c:2218 g10/import.c:3492 #, c-format msgid "error writing keyring '%s': %s\n" msgstr "błąd zapisu zbioru kluczy ,,%s'': %s\n" -#: g10/import.c:2135 +#: g10/import.c:2139 #, c-format msgid "key %s: public key \"%s\" imported\n" msgstr "klucz %s: klucz publiczny ,,%s'' wczytano do zbioru\n" -#: g10/import.c:2162 +#: g10/import.c:2166 #, c-format msgid "key %s: doesn't match our copy\n" msgstr "klucz %s: nie zgadza się z lokalną kopią\n" -#: g10/import.c:2230 +#: g10/import.c:2234 #, c-format msgid "key %s: \"%s\" 1 new user ID\n" msgstr "klucz %s: ,,%s'' 1 nowy identyfikator użytkownika\n" -#: g10/import.c:2233 +#: g10/import.c:2237 #, c-format msgid "key %s: \"%s\" %d new user IDs\n" msgstr "klucz %s: ,,%s'' %d nowych identyfikatorów użytkownika\n" -#: g10/import.c:2236 +#: g10/import.c:2240 #, c-format msgid "key %s: \"%s\" 1 new signature\n" msgstr "klucz %s: ,,%s'' 1 nowy podpis\n" -#: g10/import.c:2239 +#: g10/import.c:2243 #, c-format msgid "key %s: \"%s\" %d new signatures\n" msgstr "klucz %s: ,,%s'' %d nowych podpisów\n" -#: g10/import.c:2242 +#: g10/import.c:2246 #, c-format msgid "key %s: \"%s\" 1 new subkey\n" msgstr "klucz %s: ,,%s'' 1 nowy podklucz\n" -#: g10/import.c:2245 +#: g10/import.c:2249 #, c-format msgid "key %s: \"%s\" %d new subkeys\n" msgstr "klucz %s: ,,%s'' %d nowych podkluczy\n" -#: g10/import.c:2248 +#: g10/import.c:2252 #, c-format msgid "key %s: \"%s\" %d signature cleaned\n" msgstr "klucz %s: ,,%s'' %d podpis wyczyszczony\n" -#: g10/import.c:2251 +#: g10/import.c:2255 #, c-format msgid "key %s: \"%s\" %d signatures cleaned\n" msgstr "klucz %s: ,,%s'' %d podpisów wyczyszczonych\n" -#: g10/import.c:2254 +#: g10/import.c:2258 #, c-format msgid "key %s: \"%s\" %d user ID cleaned\n" msgstr "klucz %s: ,,%s'' %d identyfikator użytkownika wyczyszczony\n" -#: g10/import.c:2257 +#: g10/import.c:2261 #, c-format msgid "key %s: \"%s\" %d user IDs cleaned\n" msgstr "klucz %s: ,,%s'' %d identyfikatorów użytkownika wyczyszczonych\n" -#: g10/import.c:2293 +#: g10/import.c:2297 #, c-format msgid "key %s: \"%s\" not changed\n" msgstr "klucz %s: ,,%s'' bez zmian\n" -#: g10/import.c:2652 g10/import.c:2847 +#: g10/import.c:2667 g10/import.c:2862 #, c-format msgid "key %s: secret key imported\n" msgstr "klucz %s: klucz tajny wczytany do zbioru\n" -#: g10/import.c:2660 +#: g10/import.c:2675 #, c-format msgid "key %s: secret key already exists\n" msgstr "klucz %s: klucz prywatny już istnieje\n" -#: g10/import.c:2668 +#: g10/import.c:2683 #, c-format msgid "key %s: error sending to agent: %s\n" msgstr "klucz %s: błąd wysyłania do agenta: %s\n" @@ -3847,201 +3853,201 @@ #. * Instead, user should be suggested to run 'gpg --card-status', #. * then, references to a card will be automatically created #. * again. -#: g10/import.c:2837 +#: g10/import.c:2852 #, c-format msgid "To migrate '%s', with each smartcard, run: %s\n" msgstr "" "Aby zmigrować ,,%s'', dla każdej karty procesorowej należy uruchomić: %s\n" -#: g10/import.c:2984 +#: g10/import.c:2999 #, c-format msgid "secret key %s: %s\n" msgstr "klucz prywatny %s: %s\n" -#: g10/import.c:3005 g10/import.c:3044 +#: g10/import.c:3020 g10/import.c:3059 #, c-format msgid "importing secret keys not allowed\n" msgstr "wczytywanie kluczy tajnych nie jest dozwolone\n" -#: g10/import.c:3032 +#: g10/import.c:3047 #, c-format msgid "key %s: secret key with invalid cipher %d - skipped\n" msgstr "klucz %s: klucz tajny z błędnym szyfrem %d - pominięty\n" -#: g10/import.c:3194 g10/pkclist.c:72 g10/revoke.c:776 +#: g10/import.c:3209 g10/pkclist.c:72 g10/revoke.c:776 msgid "No reason specified" msgstr "nie podano przyczyny" -#: g10/import.c:3195 g10/pkclist.c:74 g10/revoke.c:778 +#: g10/import.c:3210 g10/pkclist.c:74 g10/revoke.c:778 msgid "Key is superseded" msgstr "klucz został zastąpiony" -#: g10/import.c:3196 g10/pkclist.c:76 g10/revoke.c:777 +#: g10/import.c:3211 g10/pkclist.c:76 g10/revoke.c:777 msgid "Key has been compromised" msgstr "klucz został skompromitowany" -#: g10/import.c:3197 g10/pkclist.c:78 g10/revoke.c:779 +#: g10/import.c:3212 g10/pkclist.c:78 g10/revoke.c:779 msgid "Key is no longer used" msgstr "klucz nie jest już używany" -#: g10/import.c:3198 g10/pkclist.c:80 g10/revoke.c:780 +#: g10/import.c:3213 g10/pkclist.c:80 g10/revoke.c:780 msgid "User ID is no longer valid" msgstr "identyfikator użytkownika przestał być poprawny" -#: g10/import.c:3323 g10/keylist.c:1258 g10/pkclist.c:84 +#: g10/import.c:3338 g10/keylist.c:1258 g10/pkclist.c:84 #, c-format msgid "reason for revocation: " msgstr "powód unieważnienia: " -#: g10/import.c:3342 g10/keylist.c:1277 g10/pkclist.c:100 +#: g10/import.c:3357 g10/keylist.c:1277 g10/pkclist.c:100 #, c-format msgid "revocation comment: " msgstr "komentarz do unieważnienia: " -#: g10/import.c:3392 +#: g10/import.c:3408 #, c-format msgid "key %s: no public key - can't apply revocation certificate\n" msgstr "" "klucz %s: brak klucza publicznego, którego dotyczy wczytany certyfikat\n" " unieważnienia\n" -#: g10/import.c:3423 +#: g10/import.c:3439 #, c-format msgid "key %s: can't locate original keyblock: %s\n" msgstr "klucz %s: brak oryginalnego bloku klucza; %s\n" -#: g10/import.c:3430 +#: g10/import.c:3446 #, c-format msgid "key %s: can't read original keyblock: %s\n" msgstr "klucz %s: nie można odczytać oryginalnego bloku klucza: %s\n" -#: g10/import.c:3450 +#: g10/import.c:3466 #, c-format msgid "key %s: invalid revocation certificate: %s - rejected\n" msgstr "klucz %s: niepoprawny certyfikat unieważnienia: %s - odrzucony\n" -#: g10/import.c:3485 +#: g10/import.c:3501 #, c-format msgid "key %s: \"%s\" revocation certificate imported\n" msgstr "klucz %s: ,,%s'' certyfikat unieważnienia został już wczytany\n" -#: g10/import.c:3571 +#: g10/import.c:3587 #, c-format msgid "key %s: no user ID for signature\n" msgstr "klucz %s: brak identyfikatora użytkownika do podpisu\n" -#: g10/import.c:3588 +#: g10/import.c:3604 #, c-format msgid "key %s: unsupported public key algorithm on user ID \"%s\"\n" msgstr "klucz %s: algorytm asymetryczny dla id ,,%s'' nie jest obsługiwany\n" -#: g10/import.c:3590 +#: g10/import.c:3606 #, c-format msgid "key %s: invalid self-signature on user ID \"%s\"\n" msgstr "klucz %s: niepoprawny podpis na identyfikatorze ,,%s''\n" -#: g10/import.c:3607 g10/import.c:3635 g10/import.c:3691 +#: g10/import.c:3623 g10/import.c:3651 g10/import.c:3707 #, c-format msgid "key %s: unsupported public key algorithm\n" msgstr "klucz %s: nieobsługiwany algorytm asymetryczny\n" -#: g10/import.c:3608 +#: g10/import.c:3624 #, c-format msgid "key %s: invalid direct key signature\n" msgstr "klucz %s: nieprawidłowy bezpośredni podpis\n" -#: g10/import.c:3622 +#: g10/import.c:3638 #, c-format msgid "key %s: no subkey for key binding\n" msgstr "klucz %s: brak podklucza do dowiązania\n" -#: g10/import.c:3637 +#: g10/import.c:3653 #, c-format msgid "key %s: invalid subkey binding\n" msgstr "klucz %s: niepoprawne dowiązanie podklucza\n" -#: g10/import.c:3656 +#: g10/import.c:3672 #, c-format msgid "key %s: removed multiple subkey binding\n" msgstr "klucz %s: usunięto wielokrotne dowiązanie podklucza\n" -#: g10/import.c:3680 +#: g10/import.c:3696 #, c-format msgid "key %s: no subkey for key revocation\n" msgstr "klucz %s: brak podklucza, którego dotyczy unieważnienie\n" -#: g10/import.c:3693 +#: g10/import.c:3709 #, c-format msgid "key %s: invalid subkey revocation\n" msgstr "klucz %s: niepoprawne unieważnienie podklucza\n" -#: g10/import.c:3708 +#: g10/import.c:3724 #, c-format msgid "key %s: removed multiple subkey revocation\n" msgstr "klucz %s: usunięto wielokrotne unieważnienie podklucza\n" -#: g10/import.c:3752 +#: g10/import.c:3771 #, c-format msgid "key %s: skipped user ID \"%s\"\n" msgstr "klucz %s: pominięto identyfikator użytkownika ,,%s''\n" -#: g10/import.c:3779 +#: g10/import.c:3798 #, c-format msgid "key %s: skipped subkey\n" msgstr "klucz %s: podklucz pominięty\n" -#: g10/import.c:3810 +#: g10/import.c:3829 #, c-format msgid "key %s: non exportable signature (class 0x%02X) - skipped\n" msgstr "klucz %s: podpis nieeksportowalny (klasy 0x%02X) - pominięty\n" -#: g10/import.c:3821 +#: g10/import.c:3840 #, c-format msgid "key %s: revocation certificate at wrong place - skipped\n" msgstr "" "klucz %s: pominięto certyfikat unieważnienia umieszczony\n" " w niewłaściwym miejscu\n" -#: g10/import.c:3839 +#: g10/import.c:3868 #, c-format msgid "key %s: invalid revocation certificate: %s - skipped\n" msgstr "klucz %s: pominięto - niepoprawny certyfikat unieważnienia: %s\n" -#: g10/import.c:3853 +#: g10/import.c:3892 #, c-format msgid "key %s: subkey signature in wrong place - skipped\n" msgstr "klucz %s: pominięto - podpis na podkluczu w niewłaściwym miejscu\n" -#: g10/import.c:3861 +#: g10/import.c:3900 #, c-format msgid "key %s: unexpected signature class (0x%02X) - skipped\n" msgstr "klucz %s: pominięto - nieoczekiwana klasa podpisu (0x%02X)\n" -#: g10/import.c:4034 +#: g10/import.c:4073 #, c-format msgid "key %s: duplicated user ID detected - merged\n" msgstr "key %s: dołączono powtórzony identyfikator użytkownika\n" -#: g10/import.c:4099 +#: g10/import.c:4138 #, c-format msgid "WARNING: key %s may be revoked: fetching revocation key %s\n" msgstr "" "OSTRZEŻENIE: klucz %s mógł zostać unieważniony:\n" " zapytanie o unieważniający klucz %s w serwerze kluczy\n" -#: g10/import.c:4115 +#: g10/import.c:4154 #, c-format msgid "WARNING: key %s may be revoked: revocation key %s not present.\n" msgstr "" "OSTRZEŻENIE: klucz %s mógł zostać unieważniony:\n" " brak unieważniającego klucza %s.\n" -#: g10/import.c:4181 +#: g10/import.c:4220 #, c-format msgid "key %s: \"%s\" revocation certificate added\n" msgstr "klucz %s: ,,%s'' dodany certyfikat unieważnienia\n" -#: g10/import.c:4219 +#: g10/import.c:4258 #, c-format msgid "key %s: direct key signature added\n" msgstr "klucz %s: dodano bezpośredni podpis\n" @@ -4931,7 +4937,7 @@ msgid "You may not add a photo ID to a PGP2-style key.\n" msgstr "Do klucza dla PGP 2.x nie można dodać zdjęcia.\n" -#: g10/keyedit.c:4293 g10/keygen.c:2899 +#: g10/keyedit.c:4293 g10/keygen.c:2953 msgid "Such a user ID already exists on this key!\n" msgstr "Taki identyfikator użytkownika już istnieje na tym kluczu!\n" @@ -5215,63 +5221,63 @@ "Wyświetlanie zdjęcia w formacie %s o rozmiarze %ld bajtów dla klucza %s (id " "%d).\n" -#: g10/keygen.c:169 +#: g10/keygen.c:174 #, c-format msgid "invalid value for option '%s'\n" msgstr "błędna wartość dla opcji ,,%s''\n" -#: g10/keygen.c:322 +#: g10/keygen.c:331 #, c-format msgid "preference '%s' duplicated\n" msgstr "ustawienie ,,%s'' powtarza się\n" -#: g10/keygen.c:329 +#: g10/keygen.c:338 #, c-format msgid "too many cipher preferences\n" msgstr "zbyt wiele ustawień szyfru\n" -#: g10/keygen.c:331 +#: g10/keygen.c:340 #, c-format msgid "too many digest preferences\n" msgstr "zbyt wiele ustawień funkcji skrótu\n" -#: g10/keygen.c:333 +#: g10/keygen.c:342 #, c-format msgid "too many compression preferences\n" msgstr "zbyt wiele ustawień kompresji\n" -#: g10/keygen.c:493 +#: g10/keygen.c:502 #, c-format msgid "invalid item '%s' in preference string\n" msgstr "niewłaściwy element ,,%s'' w tekście ustawień\n" -#: g10/keygen.c:972 +#: g10/keygen.c:1020 #, c-format msgid "writing direct signature\n" msgstr "zapis podpisu bezpośredniego\n" -#: g10/keygen.c:1018 +#: g10/keygen.c:1066 #, c-format msgid "writing self signature\n" msgstr "zapis podpisu klucza nim samym\n" -#: g10/keygen.c:1075 +#: g10/keygen.c:1123 #, c-format msgid "writing key binding signature\n" msgstr "zapis podpisu wiążącego klucz\n" -#: g10/keygen.c:1440 g10/keygen.c:1445 g10/keygen.c:1497 g10/keygen.c:1502 -#: g10/keygen.c:1656 g10/keygen.c:1661 +#: g10/keygen.c:1494 g10/keygen.c:1499 g10/keygen.c:1551 g10/keygen.c:1556 +#: g10/keygen.c:1710 g10/keygen.c:1715 #, c-format msgid "keysize invalid; using %u bits\n" msgstr "niewłaściwa długość klucza; wykorzystano %u bitów\n" -#: g10/keygen.c:1451 g10/keygen.c:1508 g10/keygen.c:1516 g10/keygen.c:1667 +#: g10/keygen.c:1505 g10/keygen.c:1562 g10/keygen.c:1570 g10/keygen.c:1721 #, c-format msgid "keysize rounded up to %u bits\n" msgstr "rozmiar klucza zaokrąglony w górę do %u bitów\n" -#: g10/keygen.c:1542 +#: g10/keygen.c:1596 #, c-format msgid "" "WARNING: some OpenPGP programs can't handle a DSA key with this digest size\n" @@ -5279,19 +5285,19 @@ "OSTRZEŻENIE: niektóre programy OpenPGP nie potrafią obsłużyć klucza RSA o " "tej długości skrótu\n" -#: g10/keygen.c:1723 +#: g10/keygen.c:1777 msgid "Sign" msgstr "Podpisywanie" -#: g10/keygen.c:1726 +#: g10/keygen.c:1780 msgid "Certify" msgstr "Certyfikowanie" -#: g10/keygen.c:1729 +#: g10/keygen.c:1783 msgid "Encrypt" msgstr "Szyfrowanie" -#: g10/keygen.c:1732 +#: g10/keygen.c:1786 msgid "Authenticate" msgstr "Uwierzytelnianie" @@ -5305,161 +5311,161 @@ #. * a = Toggle authentication capability #. * q = Finish #. -#: g10/keygen.c:1753 +#: g10/keygen.c:1807 msgid "SsEeAaQq" msgstr "PpSsUuZz" -#: g10/keygen.c:1784 +#: g10/keygen.c:1838 #, c-format msgid "Possible actions for a %s key: " msgstr "Możliwe akcje dla klucza %s: " -#: g10/keygen.c:1790 +#: g10/keygen.c:1844 msgid "Current allowed actions: " msgstr "Aktualnie dopuszczalne akcje: " -#: g10/keygen.c:1795 +#: g10/keygen.c:1849 #, c-format msgid " (%c) Toggle the sign capability\n" msgstr " (%c) Przełączenie możliwości podpisywania\n" -#: g10/keygen.c:1798 +#: g10/keygen.c:1852 #, c-format msgid " (%c) Toggle the encrypt capability\n" msgstr " (%c) Przełączenie możliwości szyfrowania\n" -#: g10/keygen.c:1801 +#: g10/keygen.c:1855 #, c-format msgid " (%c) Toggle the authenticate capability\n" msgstr " (%c) Przełączenie możliwości uwierzytelniania\n" -#: g10/keygen.c:1804 +#: g10/keygen.c:1858 #, c-format msgid " (%c) Finished\n" msgstr " (%c) Zakończenie\n" -#: g10/keygen.c:1930 +#: g10/keygen.c:1984 #, c-format msgid " (%d) RSA and RSA (default)\n" msgstr " (%d) RSA i RSA (domyślne)\n" -#: g10/keygen.c:1934 +#: g10/keygen.c:1988 #, c-format msgid " (%d) DSA and Elgamal\n" msgstr " (%d) DSA i Elgamala\n" -#: g10/keygen.c:1937 +#: g10/keygen.c:1991 #, c-format msgid " (%d) DSA (sign only)\n" msgstr " (%d) DSA (tylko do podpisywania)\n" -#: g10/keygen.c:1939 +#: g10/keygen.c:1993 #, c-format msgid " (%d) RSA (sign only)\n" msgstr " (%d) RSA (tylko do podpisywania)\n" -#: g10/keygen.c:1945 +#: g10/keygen.c:1999 #, c-format msgid " (%d) Elgamal (encrypt only)\n" msgstr " (%d) Elgamala (tylko do szyfrowania)\n" -#: g10/keygen.c:1947 +#: g10/keygen.c:2001 #, c-format msgid " (%d) RSA (encrypt only)\n" msgstr " (%d) RSA (tylko do szyfrowania)\n" -#: g10/keygen.c:1953 +#: g10/keygen.c:2007 #, c-format msgid " (%d) DSA (set your own capabilities)\n" msgstr " (%d) DSA (możliwości do ustawienia)\n" -#: g10/keygen.c:1955 +#: g10/keygen.c:2009 #, c-format msgid " (%d) RSA (set your own capabilities)\n" msgstr " (%d) RSA (możliwości do ustawienia)\n" -#: g10/keygen.c:1961 +#: g10/keygen.c:2015 #, c-format msgid " (%d) ECC and ECC\n" msgstr " (%d) ECC i ECC\n" -#: g10/keygen.c:1963 +#: g10/keygen.c:2017 #, c-format msgid " (%d) ECC (sign only)\n" msgstr " (%d) ECC (tylko do podpisywania)\n" -#: g10/keygen.c:1965 +#: g10/keygen.c:2019 #, c-format msgid " (%d) ECC (set your own capabilities)\n" msgstr " (%d) ECC (możliwości do ustawienia)\n" -#: g10/keygen.c:1967 +#: g10/keygen.c:2021 #, c-format msgid " (%d) ECC (encrypt only)\n" msgstr " (%d) ECC (tylko do szyfrowania)\n" -#: g10/keygen.c:1971 +#: g10/keygen.c:2025 #, c-format msgid " (%d) Existing key\n" msgstr " (%d) Istniejący klucz\n" -#: g10/keygen.c:1973 +#: g10/keygen.c:2027 #, c-format msgid " (%d) Existing key from card\n" msgstr " (%d) Istniejący klucz z karty\n" -#: g10/keygen.c:2069 sm/certreqgen-ui.c:202 +#: g10/keygen.c:2123 sm/certreqgen-ui.c:202 msgid "Enter the keygrip: " msgstr "Uchwyt klucza: " -#: g10/keygen.c:2082 sm/certreqgen-ui.c:210 +#: g10/keygen.c:2136 sm/certreqgen-ui.c:210 msgid "Not a valid keygrip (expecting 40 hex digits)\n" msgstr "Nieprawidłowy uchwyt klucza (oczekiwano 40 cyfr szesnastkowych)\n" -#: g10/keygen.c:2084 sm/certreqgen-ui.c:212 +#: g10/keygen.c:2138 sm/certreqgen-ui.c:212 msgid "No key with this keygrip\n" msgstr "Brak klucza o tym uchwycie\n" -#: g10/keygen.c:2103 g10/keygen.c:2113 g10/keygen.c:3216 g10/keygen.c:3227 +#: g10/keygen.c:2157 g10/keygen.c:2167 g10/keygen.c:3270 g10/keygen.c:3281 #: sm/certreqgen-ui.c:230 sm/certreqgen-ui.c:239 #, c-format msgid "error reading the card: %s\n" msgstr "błąd odczytu karty: %s\n" -#: g10/keygen.c:2107 g10/keygen.c:3220 sm/certreqgen-ui.c:233 +#: g10/keygen.c:2161 g10/keygen.c:3274 sm/certreqgen-ui.c:233 #, c-format msgid "Serial number of the card: %s\n" msgstr "Numer seryjny karty: %s\n" -#: g10/keygen.c:2120 sm/certreqgen-ui.c:245 +#: g10/keygen.c:2174 sm/certreqgen-ui.c:245 msgid "Available keys:\n" msgstr "Dostępne klucze:\n" -#: g10/keygen.c:2297 g10/keygen.c:2311 +#: g10/keygen.c:2351 g10/keygen.c:2365 #, c-format msgid "rounded to %u bits\n" msgstr "zaokrąglono do %u bitów\n" -#: g10/keygen.c:2352 +#: g10/keygen.c:2406 #, c-format msgid "%s keys may be between %u and %u bits long.\n" msgstr "Klucze %s będą miały od %u do %u bitów długości.\n" -#: g10/keygen.c:2360 +#: g10/keygen.c:2414 #, c-format msgid "What keysize do you want for the subkey? (%u) " msgstr "Jakiej długości podklucz wygenerować? (%u) " -#: g10/keygen.c:2377 sm/certreqgen-ui.c:189 +#: g10/keygen.c:2431 sm/certreqgen-ui.c:189 #, c-format msgid "Requested keysize is %u bits\n" msgstr "Żądana długość klucza to %u bitów.\n" -#: g10/keygen.c:2423 +#: g10/keygen.c:2477 msgid "Please select which elliptic curve you want:\n" msgstr "Proszę wybrać rodzaj krzywej eliptycznej:\n" -#: g10/keygen.c:2611 +#: g10/keygen.c:2665 msgid "" "Please specify how long the key should be valid.\n" " 0 = key does not expire\n" @@ -5475,7 +5481,7 @@ " m = termin ważności klucza upływa za n miesięcy\n" " y = termin ważności klucza upływa za n lat\n" -#: g10/keygen.c:2622 +#: g10/keygen.c:2676 msgid "" "Please specify how long the signature should be valid.\n" " 0 = signature does not expire\n" @@ -5491,38 +5497,38 @@ " m = termin ważności podpisu upływa za n miesięcy\n" " y = termin ważności podpisu upływa za n lat\n" -#: g10/keygen.c:2645 +#: g10/keygen.c:2699 msgid "Key is valid for? (0) " msgstr "Okres ważności klucza? (0) " -#: g10/keygen.c:2650 +#: g10/keygen.c:2704 #, c-format msgid "Signature is valid for? (%s) " msgstr "Okres ważności podpisu? (%s) " -#: g10/keygen.c:2663 g10/keygen.c:2688 +#: g10/keygen.c:2717 g10/keygen.c:2742 msgid "invalid value\n" msgstr "niepoprawna wartość\n" -#: g10/keygen.c:2670 +#: g10/keygen.c:2724 msgid "Key does not expire at all\n" msgstr "Klucz nie wygaśnie w ogóle\n" -#: g10/keygen.c:2671 +#: g10/keygen.c:2725 msgid "Signature does not expire at all\n" msgstr "Podpis nie wygaśnie w ogóle\n" -#: g10/keygen.c:2676 +#: g10/keygen.c:2730 #, c-format msgid "Key expires at %s\n" msgstr "Klucz traci ważność %s\n" -#: g10/keygen.c:2677 +#: g10/keygen.c:2731 #, c-format msgid "Signature expires at %s\n" msgstr "Ważność podpisu wygasa %s\n" -#: g10/keygen.c:2681 +#: g10/keygen.c:2735 msgid "" "Your system can't display dates beyond 2038.\n" "However, it will be correctly handled up to 2106.\n" @@ -5530,11 +5536,11 @@ "Twój system nie potrafi pokazać daty po roku 2038.\n" "Niemniej daty do roku 2106 będą poprawnie obsługiwane.\n" -#: g10/keygen.c:2694 +#: g10/keygen.c:2748 msgid "Is this correct? (y/N) " msgstr "Czy wszystko się zgadza (t/N)? " -#: g10/keygen.c:2762 +#: g10/keygen.c:2816 msgid "" "\n" "GnuPG needs to construct a user ID to identify your key.\n" @@ -5548,7 +5554,7 @@ #. but you should keep your existing translation. In case #. the new string is not translated this old string will #. be used. -#: g10/keygen.c:2777 +#: g10/keygen.c:2831 msgid "" "\n" "You need a user ID to identify your key; the software constructs the user " @@ -5564,49 +5570,49 @@ " \"Tadeusz Żeleński (Boy) \"\n" "\n" -#: g10/keygen.c:2796 +#: g10/keygen.c:2850 msgid "Real name: " msgstr "Imię i nazwisko: " -#: g10/keygen.c:2805 +#: g10/keygen.c:2859 msgid "Invalid character in name\n" msgstr "Niewłaściwy znak w imieniu lub nazwisku\n" -#: g10/keygen.c:2806 +#: g10/keygen.c:2860 #, c-format msgid "The characters '%s' and '%s' may not appear in name\n" msgstr "Znaki ,,%s'' i ,,%s'' nie mogą występować w inieniu ani nazwisku\n" -#: g10/keygen.c:2810 +#: g10/keygen.c:2864 msgid "Name may not start with a digit\n" msgstr "Imię lub nazwisko nie może zaczynać się od cyfry\n" -#: g10/keygen.c:2813 +#: g10/keygen.c:2867 msgid "Name must be at least 5 characters long\n" msgstr "Imię i nazwisko muszą mieć co najmniej 5 znaków długości.\n" -#: g10/keygen.c:2823 +#: g10/keygen.c:2877 msgid "Email address: " msgstr "Adres poczty elektronicznej: " -#: g10/keygen.c:2829 +#: g10/keygen.c:2883 msgid "Not a valid email address\n" msgstr "To nie jest poprawny adres poczty elektronicznej\n" -#: g10/keygen.c:2838 +#: g10/keygen.c:2892 msgid "Comment: " msgstr "Komentarz: " -#: g10/keygen.c:2844 +#: g10/keygen.c:2898 msgid "Invalid character in comment\n" msgstr "Niewłaściwy znak w komentarzu\n" -#: g10/keygen.c:2880 +#: g10/keygen.c:2934 #, c-format msgid "You are using the '%s' character set.\n" msgstr "Używany zestaw znaków: ,,%s''.\n" -#: g10/keygen.c:2886 +#: g10/keygen.c:2940 #, c-format msgid "" "You selected this USER-ID:\n" @@ -5617,7 +5623,7 @@ " \"%s\"\n" "\n" -#: g10/keygen.c:2891 +#: g10/keygen.c:2945 msgid "Please don't put the email address into the real name or the comment\n" msgstr "" "Nie należy umieszczać adresu poczty elektronicznej w polu nazwiska czy\n" @@ -5634,35 +5640,35 @@ #. o = Okay (ready, continue) #. q = Quit #. -#: g10/keygen.c:2916 +#: g10/keygen.c:2970 msgid "NnCcEeOoQq" msgstr "IiKkEeDdWw" -#: g10/keygen.c:2926 +#: g10/keygen.c:2980 msgid "Change (N)ame, (C)omment, (E)mail or (Q)uit? " msgstr "Zmienić (I)mię/nazwisko, (K)omentarz, adres (E)mail, czy (W)yjść? " -#: g10/keygen.c:2927 +#: g10/keygen.c:2981 msgid "Change (N)ame, (C)omment, (E)mail or (O)kay/(Q)uit? " msgstr "" "Zmienić (I)mię/nazwisko, (K)omentarz, adres (E)mail, przejść (D)alej,\n" "czy (W)yjść z programu? " -#: g10/keygen.c:2932 +#: g10/keygen.c:2986 msgid "Change (N)ame, (E)mail, or (Q)uit? " msgstr "Zmienić (I)mię/nazwisko, adres (E)mail, czy (W)yjść? " -#: g10/keygen.c:2933 +#: g10/keygen.c:2987 msgid "Change (N)ame, (E)mail, or (O)kay/(Q)uit? " msgstr "" "Zmienić (I)mię/nazwisko, adres (E)mail, przejść (D)alej,\n" "czy (W)yjść z programu? " -#: g10/keygen.c:2952 +#: g10/keygen.c:3006 msgid "Please correct the error first\n" msgstr "Najpierw trzeba poprawić ten błąd\n" -#: g10/keygen.c:2998 +#: g10/keygen.c:3052 msgid "" "We need to generate a lot of random bytes. It is a good idea to perform\n" "some other action (type on the keyboard, move the mouse, utilize the\n" @@ -5678,13 +5684,13 @@ "ilości\n" "entropii.\n" -#: g10/keygen.c:4278 g10/keygen.c:4349 g10/keygen.c:4367 g10/keygen.c:4395 -#: g10/keygen.c:4739 g10/keygen.c:5239 g10/keygen.c:5534 g10/keygen.c:5639 +#: g10/keygen.c:4332 g10/keygen.c:4403 g10/keygen.c:4421 g10/keygen.c:4449 +#: g10/keygen.c:4793 g10/keygen.c:5293 g10/keygen.c:5588 g10/keygen.c:5693 #, c-format msgid "Key generation failed: %s\n" msgstr "Generacja klucza nie powiodła się: %s\n" -#: g10/keygen.c:4287 +#: g10/keygen.c:4341 #, c-format msgid "" "About to create a key for:\n" @@ -5695,66 +5701,66 @@ " ,,%s''\n" "\n" -#: g10/keygen.c:4289 +#: g10/keygen.c:4343 msgid "Continue? (Y/n) " msgstr "Kontynuować? (T/n) " -#: g10/keygen.c:4310 +#: g10/keygen.c:4364 #, c-format msgid "A key for \"%s\" already exists\n" msgstr "klucz dla ,,%s'' już istnieje\n" -#: g10/keygen.c:4315 +#: g10/keygen.c:4369 msgid "Create anyway? (y/N) " msgstr "Utworzyć klucz mimo to? (t/N) " -#: g10/keygen.c:4321 +#: g10/keygen.c:4375 #, c-format msgid "creating anyway\n" msgstr "tworzenie mimo to\n" -#: g10/keygen.c:4722 +#: g10/keygen.c:4776 #, c-format msgid "Note: Use \"%s %s\" for a full featured key generation dialog.\n" msgstr "" "Uwaga: pełną funkcjonalność generowania klucza można uzyskać przez ,,%s " "%s''.\n" -#: g10/keygen.c:4771 +#: g10/keygen.c:4825 #, c-format msgid "Key generation canceled.\n" msgstr "Procedura generacji klucza została anulowana.\n" -#: g10/keygen.c:4831 +#: g10/keygen.c:4885 #, c-format msgid "can't create backup file '%s': %s\n" msgstr "nie można utworzyć pliku kopii zapasowej ,,%s'': %s\n" -#: g10/keygen.c:4851 +#: g10/keygen.c:4905 #, c-format msgid "Note: backup of card key saved to '%s'\n" msgstr "Uwaga: kopia zapasowa klucza karty zapisana do ,,%s''\n" -#: g10/keygen.c:5010 g10/keygen.c:5172 +#: g10/keygen.c:5064 g10/keygen.c:5226 #, c-format msgid "writing public key to '%s'\n" msgstr "zapis klucza publicznego w ,,%s''\n" -#: g10/keygen.c:5166 +#: g10/keygen.c:5220 #, c-format msgid "no writable public keyring found: %s\n" msgstr "brak zapisywalnego zbioru kluczy publicznych: %s\n" -#: g10/keygen.c:5180 +#: g10/keygen.c:5234 #, c-format msgid "error writing public keyring '%s': %s\n" msgstr "błąd podczas zapisu zbioru kluczy publicznych ,,%s'': %s\n" -#: g10/keygen.c:5210 +#: g10/keygen.c:5264 msgid "public and secret key created and signed.\n" msgstr "klucz publiczny i prywatny (tajny) zostały utworzone i podpisane.\n" -#: g10/keygen.c:5226 +#: g10/keygen.c:5280 msgid "" "Note that this key cannot be used for encryption. You may want to use\n" "the command \"--edit-key\" to generate a subkey for this purpose.\n" @@ -5762,7 +5768,7 @@ "Ten klucz nie może być wykorzystany do szyfrowania. Komendą \"--edit-key\"\n" "można dodać do niego podklucz szyfrujący.\n" -#: g10/keygen.c:5401 g10/keygen.c:5590 +#: g10/keygen.c:5455 g10/keygen.c:5644 #, c-format msgid "" "key has been created %lu second in future (time warp or clock problem)\n" @@ -5770,7 +5776,7 @@ "klucz został stworzony %lu sekundę w przyszłości (zaburzenia\n" "czasoprzestrzeni, lub źle ustawiony zegar systemowy)\n" -#: g10/keygen.c:5403 g10/keygen.c:5592 +#: g10/keygen.c:5457 g10/keygen.c:5646 #, c-format msgid "" "key has been created %lu seconds in future (time warp or clock problem)\n" @@ -5778,23 +5784,23 @@ "klucz został stworzony %lu sekund w przyszłości (zaburzenia\n" "czasoprzestrzeni, lub źle ustawiony zegar systemowy)\n" -#: g10/keygen.c:5414 g10/keygen.c:5603 +#: g10/keygen.c:5468 g10/keygen.c:5657 #, c-format msgid "Note: creating subkeys for v3 keys is not OpenPGP compliant\n" msgstr "" "Uwaga: tworzenie podkluczy dla kluczy wersji 3 jest niezgodne z OpenPGP.\n" -#: g10/keygen.c:5426 g10/keygen.c:5428 +#: g10/keygen.c:5480 g10/keygen.c:5482 #, c-format msgid "Secret parts of primary key are not available.\n" msgstr "Część tajna głównego klucza jest niedostępna.\n" -#: g10/keygen.c:5435 g10/keygen.c:5437 +#: g10/keygen.c:5489 g10/keygen.c:5491 #, c-format msgid "Secret parts of primary key are stored on-card.\n" msgstr "Część tajna głównego klucza jest zapisana na karcie.\n" -#: g10/keygen.c:5456 g10/keygen.c:5617 +#: g10/keygen.c:5510 g10/keygen.c:5671 msgid "Really create? (y/N) " msgstr "Czy na pewno utworzyć? (t/N) " @@ -6890,30 +6896,30 @@ msgstr "" "dane nie zostały zapisane; aby to zrobić, należy użyć opcji \"--output\"\n" -#: g10/plaintext.c:615 +#: g10/plaintext.c:620 msgid "Detached signature.\n" msgstr "Podpis oddzielony od danych.\n" -#: g10/plaintext.c:623 +#: g10/plaintext.c:628 msgid "Please enter name of data file: " msgstr "Nazwa pliku danych: " -#: g10/plaintext.c:660 +#: g10/plaintext.c:665 #, c-format msgid "reading stdin ...\n" msgstr "czytam strumień standardowego wejścia\n" -#: g10/plaintext.c:705 +#: g10/plaintext.c:710 #, c-format msgid "no signed data\n" msgstr "brak podpisanych danych\n" -#: g10/plaintext.c:723 +#: g10/plaintext.c:728 #, c-format msgid "can't open signed data '%s'\n" msgstr "nie można otworzyć podpisanego pliku ,,%s''\n" -#: g10/plaintext.c:758 +#: g10/plaintext.c:763 #, c-format msgid "can't open signed data fd=%d: %s\n" msgstr "nie można otworzyć podpisanych danych z fd=%d: %s\n" @@ -7978,7 +7984,7 @@ msgid "no need for a trustdb check\n" msgstr "sprawdzanie bazy jest niepotrzebne\n" -#: g10/trustdb.c:631 g10/trustdb.c:2326 +#: g10/trustdb.c:631 g10/trustdb.c:2338 #, c-format msgid "next trustdb check due at %s\n" msgstr "następne sprawdzanie bazy odbędzie się %s\n" @@ -8008,7 +8014,7 @@ msgid "checking the trustdb\n" msgstr "sprawdzanie bazy zaufania\n" -#: g10/trustdb.c:2047 +#: g10/trustdb.c:2059 #, c-format msgid "%d key processed" msgid_plural "%d keys processed" @@ -8016,7 +8022,7 @@ msgstr[1] "przetworzono %d klucze" msgstr[2] "przetworzono %d kluczy" -#: g10/trustdb.c:2050 +#: g10/trustdb.c:2062 #, c-format msgid " (%d validity count cleared)\n" msgid_plural " (%d validity counts cleared)\n" @@ -8024,17 +8030,17 @@ msgstr[1] " (skasowano %d liczniki zaufania)\n" msgstr[2] " (skasowano %d liczników zaufania)\n" -#: g10/trustdb.c:2120 +#: g10/trustdb.c:2132 #, c-format msgid "no ultimately trusted keys found\n" msgstr "brak absolutnie zaufanych kluczy\n" -#: g10/trustdb.c:2134 +#: g10/trustdb.c:2146 #, c-format msgid "public key of ultimately trusted key %s not found\n" msgstr "klucz publiczny absolutnie zaufanego klucza %s nie odnaleziony\n" -#: g10/trustdb.c:2252 +#: g10/trustdb.c:2264 #, c-format msgid "" "depth: %d valid: %3d signed: %3d trust: %d-, %dq, %dn, %dm, %df, %du\n" @@ -8042,7 +8048,7 @@ "poziom: %d poprawnych: %3d podpisanych: %3d zaufanie: %d-,%dq,%dn,%dm,%df," "%du\n" -#: g10/trustdb.c:2333 +#: g10/trustdb.c:2345 #, c-format msgid "unable to update trustdb version record: write failed: %s\n" msgstr "" @@ -8157,75 +8163,81 @@ #. TRANSLATORS: Put a \x1f right before a colon. This can be #. * used by pinentry to nicely align the names and values. Keep #. * the %s at the start and end of the string. -#: scd/app-p15.c:5116 scd/app-openpgp.c:2154 +#: scd/app-p15.c:5145 scd/app-nks.c:1541 scd/app-openpgp.c:2154 #, c-format msgid "%sNumber: %s%%0AHolder: %s%s" msgstr "%sNumer: %s%%0AWłaściciel: %s%s" #. TRANSLATORS: This is the number of remaining attempts to #. * enter a PIN. Use %%0A (double-percent,0A) for a linefeed. -#: scd/app-p15.c:5135 scd/app-openpgp.c:2170 +#: scd/app-p15.c:5164 scd/app-nks.c:1560 scd/app-openpgp.c:2170 #, c-format msgid "Remaining attempts: %d" msgstr "Pozostało prób: %d" -#: scd/app-p15.c:5214 scd/app-nks.c:1113 +#: scd/app-p15.c:5243 scd/app-nks.c:2112 msgid "||Please enter the PIN for the key to create qualified signatures." msgstr "" "||Proszę wprowadzić PIN PIN dla klucza do tworzenia podpisów kwalifikowanych." #. TRANSLATORS: Do not translate the "|A|" prefix but keep it at #. the start of the string. Use %0A (single percent) for a linefeed. -#: scd/app-p15.c:5217 scd/app-openpgp.c:2464 +#: scd/app-p15.c:5246 scd/app-openpgp.c:2465 msgid "|A|Please enter the Admin PIN" msgstr "|A|Proszę wprowadzić PIN administracyjny" -#: scd/app-p15.c:5219 scd/app-nks.c:1103 +#: scd/app-p15.c:5248 scd/app-nks.c:2102 msgid "|P|Please enter the PIN Unblocking Code (PUK) for the standard keys." msgstr "|P|Proszę wprowadzić kod odblokowujący PIN (PUK) dla zwykłych kluczy." -#: scd/app-p15.c:5222 scd/app-nks.c:1095 +#: scd/app-p15.c:5251 scd/app-nks.c:2093 msgid "||Please enter the PIN for the standard keys." msgstr "||Proszę wprowadzić PIN dla zwykłych kluczy." -#: scd/app-nks.c:709 scd/app-openpgp.c:3666 +#: scd/app-nks.c:1479 scd/app-openpgp.c:3675 #, c-format msgid "RSA modulus missing or not of size %d bits\n" msgstr "reszta RSA brakująca lub o rozmiarze innym niż %d bity\n" -#: scd/app-nks.c:717 scd/app-openpgp.c:3678 +#: scd/app-nks.c:1487 scd/app-openpgp.c:3687 #, c-format msgid "RSA public exponent missing or larger than %d bits\n" msgstr "publiczny wykładnik RSA brakujący lub większy niż %d bity\n" -#: scd/app-nks.c:797 scd/app-openpgp.c:2327 scd/app-openpgp.c:2346 -#: scd/app-openpgp.c:2513 scd/app-openpgp.c:2531 scd/app-openpgp.c:2829 -#: scd/app-openpgp.c:2876 scd/app-openpgp.c:2991 scd/app-dinsig.c:302 +#: scd/app-nks.c:1660 +#, fuzzy +#| msgid "the NullPIN has not yet been changed\n" +msgid "Note: PIN has not yet been enabled." +msgstr "NullPIN nie został jeszcze zmieniony\n" + +#: scd/app-nks.c:1671 scd/app-openpgp.c:2327 scd/app-openpgp.c:2346 +#: scd/app-openpgp.c:2515 scd/app-openpgp.c:2533 scd/app-openpgp.c:2832 +#: scd/app-openpgp.c:2879 scd/app-openpgp.c:3000 scd/app-dinsig.c:303 #, c-format msgid "PIN callback returned error: %s\n" msgstr "Zapytanie zwrotne o PIN zwróciło błąd: %s\n" -#: scd/app-nks.c:830 +#: scd/app-nks.c:1707 #, c-format msgid "the NullPIN has not yet been changed\n" msgstr "NullPIN nie został jeszcze zmieniony\n" -#: scd/app-nks.c:1094 +#: scd/app-nks.c:2092 msgid "|N|Please enter a new PIN for the standard keys." msgstr "|N|Proszę wprowadzić nowy PIN dla zwykłych kluczy." -#: scd/app-nks.c:1101 +#: scd/app-nks.c:2100 msgid "|NP|Please enter a new PIN Unblocking Code (PUK) for the standard keys." msgstr "" "|NP|Proszę wprowadzić nowy kod oblokowujący PIN (PUK) dla zwykłych kluczy." -#: scd/app-nks.c:1111 +#: scd/app-nks.c:2110 msgid "|N|Please enter a new PIN for the key to create qualified signatures." msgstr "" "|N|Proszę wprowadzić nowy PIN dla klucza do tworzenia podpisów " "kwalifikowanych." -#: scd/app-nks.c:1121 +#: scd/app-nks.c:2120 msgid "" "|NP|Please enter a new PIN Unblocking Code (PUK) for the key to create " "qualified signatures." @@ -8233,7 +8245,7 @@ "|NP|Proszę wprowadzić nowy kod odblokowujący PIN (PUK) dla klucza do " "tworzenia podpisów kwalifikowanych." -#: scd/app-nks.c:1123 +#: scd/app-nks.c:2122 msgid "" "|P|Please enter the PIN Unblocking Code (PUK) for the key to create " "qualified signatures." @@ -8241,7 +8253,7 @@ "|P|Proszę wprowadzić kod odblokowujący PIN (PUK) dla klucza do tworzenia " "podpisów kwalifikowanych." -#: scd/app-nks.c:1230 scd/app-openpgp.c:2910 scd/app-dinsig.c:532 +#: scd/app-nks.c:2295 scd/app-openpgp.c:2913 scd/app-dinsig.c:535 #, c-format msgid "error getting new PIN: %s\n" msgstr "błąd podczas odczytu nowego PIN-u: %s\n" @@ -8256,7 +8268,7 @@ msgid "failed to store the creation date: %s\n" msgstr "nie powiódł się zapis daty utworzenia: %s\n" -#: scd/app-openpgp.c:1271 scd/app-openpgp.c:2857 scd/app-openpgp.c:5041 +#: scd/app-openpgp.c:1271 scd/app-openpgp.c:2860 scd/app-openpgp.c:5051 #, c-format msgid "error retrieving CHV status from card\n" msgstr "błąd podczas odczytu stanu CHV z karty\n" @@ -8276,7 +8288,7 @@ msgid "response does not contain the EC public key\n" msgstr "odpowiedź nie zawiera klucza publicznego EC\n" -#: scd/app-openpgp.c:1664 scd/app-openpgp.c:4286 +#: scd/app-openpgp.c:1664 scd/app-openpgp.c:4295 #, c-format msgid "response does not contain the public key data\n" msgstr "odpowiedź nie zawiera danych klucza publicznego\n" @@ -8310,23 +8322,23 @@ msgid "||Please unlock the card" msgstr "||Proszę odblokować kartę" -#: scd/app-openpgp.c:2353 scd/app-openpgp.c:2538 scd/app-openpgp.c:2836 +#: scd/app-openpgp.c:2353 scd/app-openpgp.c:2540 scd/app-openpgp.c:2839 #, c-format msgid "PIN for CHV%d is too short; minimum length is %d\n" msgstr "PIN dla CHV%d jest zbyt krótki; minimalna długość to %d\n" -#: scd/app-openpgp.c:2367 scd/app-openpgp.c:2414 scd/app-openpgp.c:2552 -#: scd/app-openpgp.c:4644 +#: scd/app-openpgp.c:2368 scd/app-openpgp.c:2415 scd/app-openpgp.c:2554 +#: scd/app-openpgp.c:4654 #, c-format msgid "verify CHV%d failed: %s\n" msgstr "weryfikacja CHV%d nie powiodła się: %s\n" -#: scd/app-openpgp.c:2450 scd/app-openpgp.c:5050 +#: scd/app-openpgp.c:2451 scd/app-openpgp.c:5060 #, c-format msgid "card is permanently locked!\n" msgstr "karta została trwale zablokowana!\n" -#: scd/app-openpgp.c:2454 +#: scd/app-openpgp.c:2455 #, c-format msgid "%d Admin PIN attempt remaining before card is permanently locked\n" msgid_plural "" @@ -8338,20 +8350,20 @@ msgstr[2] "" "Zostało %d prób PIN-u administracyjnego do trwałego zablokowania karty\n" -#: scd/app-openpgp.c:2485 +#: scd/app-openpgp.c:2486 #, c-format msgid "access to admin commands is not configured\n" msgstr "dostęp do poleceń administratora nie został skonfigurowany\n" -#: scd/app-openpgp.c:2823 +#: scd/app-openpgp.c:2826 msgid "||Please enter the PIN" msgstr "||Proszę wpisać PIN" -#: scd/app-openpgp.c:2872 +#: scd/app-openpgp.c:2875 msgid "||Please enter the Reset Code for the card" msgstr "||Proszę wprowadzić kod resetujący dla karty" -#: scd/app-openpgp.c:2882 scd/app-openpgp.c:2943 +#: scd/app-openpgp.c:2885 scd/app-openpgp.c:2946 #, c-format msgid "Reset Code is too short; minimum length is %d\n" msgstr "Kod resetujący zbyt krótki; minimalna długość to %d\n" @@ -8359,87 +8371,87 @@ #. 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:2905 +#: scd/app-openpgp.c:2908 msgid "|RN|New Reset Code" msgstr "|RN|Nowy kod resetujący" -#: scd/app-openpgp.c:2906 +#: scd/app-openpgp.c:2909 msgid "|AN|New Admin PIN" msgstr "|AN|Nowy PIN administracyjny" -#: scd/app-openpgp.c:2906 +#: scd/app-openpgp.c:2909 msgid "|N|New PIN" msgstr "|N|Nowy PIN" -#: scd/app-openpgp.c:2987 +#: scd/app-openpgp.c:2996 msgid "||Please enter the Admin PIN and New Admin PIN" msgstr "||Proszę wprowadzić PIN administracyjny i nowy PIN administracyjny" -#: scd/app-openpgp.c:2988 +#: scd/app-openpgp.c:2997 msgid "||Please enter the PIN and New PIN" msgstr "||Proszę wprowadzić PIN i nowy PIN" -#: scd/app-openpgp.c:3050 scd/app-openpgp.c:4346 +#: scd/app-openpgp.c:3059 scd/app-openpgp.c:4355 #, c-format msgid "error reading application data\n" msgstr "błąd podczas odczytu danych aplikacji\n" -#: scd/app-openpgp.c:3056 scd/app-openpgp.c:4353 +#: scd/app-openpgp.c:3065 scd/app-openpgp.c:4362 #, c-format msgid "error reading fingerprint DO\n" msgstr "błąd podczas odczytu odcisku DO\n" -#: scd/app-openpgp.c:3066 +#: scd/app-openpgp.c:3075 #, c-format msgid "key already exists\n" msgstr "klucz już istnieje\n" -#: scd/app-openpgp.c:3070 +#: scd/app-openpgp.c:3079 #, c-format msgid "existing key will be replaced\n" msgstr "istniejący klucz zostanie zastąpiony\n" -#: scd/app-openpgp.c:3072 +#: scd/app-openpgp.c:3081 #, c-format msgid "generating new key\n" msgstr "generowanie nowego klucza\n" -#: scd/app-openpgp.c:3074 +#: scd/app-openpgp.c:3083 #, c-format msgid "writing new key\n" msgstr "zapisywanie nowego klucza\n" -#: scd/app-openpgp.c:3647 scd/app-openpgp.c:3999 +#: scd/app-openpgp.c:3656 scd/app-openpgp.c:4008 #, c-format msgid "creation timestamp missing\n" msgstr "brak datownika utworzenia\n" -#: scd/app-openpgp.c:3688 scd/app-openpgp.c:3696 +#: scd/app-openpgp.c:3697 scd/app-openpgp.c:3705 #, c-format msgid "RSA prime %s missing or not of size %d bits\n" msgstr "liczba pierwsza %s RSA brakująca lub o rozmiarze innym niż %d bitów\n" -#: scd/app-openpgp.c:3829 scd/app-openpgp.c:4106 +#: scd/app-openpgp.c:3838 scd/app-openpgp.c:4115 #, c-format msgid "failed to store the key: %s\n" msgstr "nie powiódł się zapis klucza: %s\n" -#: scd/app-openpgp.c:3993 +#: scd/app-openpgp.c:4002 #, c-format msgid "unsupported curve\n" msgstr "nieobsługiwana krzywa\n" -#: scd/app-openpgp.c:4263 +#: scd/app-openpgp.c:4272 #, c-format msgid "please wait while key is being generated ...\n" msgstr "proszę czekać na wygenerowanie klucza...\n" -#: scd/app-openpgp.c:4271 +#: scd/app-openpgp.c:4280 #, c-format msgid "generating key failed\n" msgstr "generowanie klucza nie powiodło się\n" -#: scd/app-openpgp.c:4277 +#: scd/app-openpgp.c:4286 #, c-format msgid "key generation completed (%d second)\n" msgid_plural "key generation completed (%d seconds)\n" @@ -8447,27 +8459,27 @@ msgstr[1] "generowanie klucza zakończone (%d sekundy)\n" msgstr[2] "generowanie klucza zakończone (%d sekund)\n" -#: scd/app-openpgp.c:4311 +#: scd/app-openpgp.c:4320 #, c-format msgid "invalid structure of OpenPGP card (DO 0x93)\n" msgstr "niepoprawna struktura karty OpenPGP (DO 0x93)\n" -#: scd/app-openpgp.c:4361 +#: scd/app-openpgp.c:4370 #, c-format msgid "fingerprint on card does not match requested one\n" msgstr "odcisk na karcie nie zgadza się z żądanym\n" -#: scd/app-openpgp.c:4560 +#: scd/app-openpgp.c:4569 #, c-format msgid "card does not support digest algorithm %s\n" msgstr "karta nie obsługuje algorytmu skrótu %s\n" -#: scd/app-openpgp.c:4618 +#: scd/app-openpgp.c:4627 #, c-format msgid "signatures created so far: %lu\n" msgstr "dotychczas stworzono podpisów: %lu\n" -#: scd/app-openpgp.c:5055 +#: scd/app-openpgp.c:5065 #, c-format msgid "" "verification of Admin PIN is currently prohibited through this command\n" @@ -8475,19 +8487,19 @@ "weryfikacja PIN-u administracyjnego tym poleceniem jest aktualnie " "zabroniona\n" -#: scd/app-openpgp.c:5386 scd/app-openpgp.c:5398 +#: scd/app-openpgp.c:5396 scd/app-openpgp.c:5408 #, c-format msgid "can't access %s - invalid OpenPGP card?\n" msgstr "nie można dostać się do %s - niepoprawna karta OpenPGP?\n" -#: scd/app-dinsig.c:298 +#: scd/app-dinsig.c:299 msgid "||Please enter your PIN at the reader's pinpad" msgstr "||Proszę wprowadzić PIN na klawiaturze czytnika" #. 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-dinsig.c:529 +#: scd/app-dinsig.c:532 msgid "|N|Initial New PIN" msgstr "|N|Początkowy nowy PIN" @@ -8573,11 +8585,11 @@ msgid "validation model requested by certificate: %s" msgstr "model poprawności żądany przez certyfikat: %s" -#: sm/certchain.c:199 sm/certchain.c:2164 +#: sm/certchain.c:199 sm/certchain.c:2165 msgid "chain" msgstr "łańcuchowy" -#: sm/certchain.c:200 sm/certchain.c:2164 +#: sm/certchain.c:200 sm/certchain.c:2165 msgid "shell" msgstr "powłokowy" @@ -8600,236 +8612,236 @@ msgid "failed to open '%s': %s\n" msgstr "nie udało się otworzyć ,,%s'': %s\n" -#: sm/certchain.c:355 sm/certchain.c:384 dirmngr/validate.c:204 +#: sm/certchain.c:355 sm/certchain.c:385 dirmngr/validate.c:204 #, c-format msgid "Note: non-critical certificate policy not allowed" msgstr "Uwaga: niekrytyczna polityka certyfikatu niedozwolona" -#: sm/certchain.c:359 sm/certchain.c:388 dirmngr/validate.c:209 +#: sm/certchain.c:359 sm/certchain.c:389 dirmngr/validate.c:209 #, c-format msgid "certificate policy not allowed" msgstr "polityka certyfikatu niedozwolona" -#: sm/certchain.c:595 sm/keydb.c:1084 sm/keydb.c:1171 +#: sm/certchain.c:596 sm/keydb.c:1084 sm/keydb.c:1171 #, c-format msgid "failed to get the fingerprint\n" msgstr "nie udało się pobrać odcisku\n" -#: sm/certchain.c:624 +#: sm/certchain.c:625 #, c-format msgid "looking up issuer at external location\n" msgstr "poszukiwanie wystawcy na zewnątrz\n" -#: sm/certchain.c:644 +#: sm/certchain.c:645 #, c-format msgid "number of issuers matching: %d\n" msgstr "liczba pasujących wystawców: %d\n" -#: sm/certchain.c:723 dirmngr/ocsp.c:685 +#: sm/certchain.c:724 dirmngr/ocsp.c:685 #, c-format msgid "can't get authorityInfoAccess: %s\n" msgstr "nie można uzyskać authorityInfoAccess: %s\n" -#: sm/certchain.c:791 +#: sm/certchain.c:792 #, c-format msgid "looking up issuer from the Dirmngr cache\n" msgstr "poszukiwanie wystawcy w pamięci podręcznej Dirmngr\n" -#: sm/certchain.c:816 +#: sm/certchain.c:817 #, c-format msgid "number of matching certificates: %d\n" msgstr "liczba pasujących certyfikatów: %d\n" -#: sm/certchain.c:819 +#: sm/certchain.c:820 #, c-format msgid "dirmngr cache-only key lookup failed: %s\n" msgstr "" "wyszukiwanie klucza tylko w pamięci podręcznej dirmngr nie powiodło się: %s\n" -#: sm/certchain.c:1041 sm/certchain.c:1554 sm/certchain.c:2192 sm/decrypt.c:728 +#: sm/certchain.c:1042 sm/certchain.c:1555 sm/certchain.c:2193 sm/decrypt.c:728 #: sm/encrypt.c:345 sm/import.c:415 sm/keydb.c:1091 sm/keydb.c:1178 #: sm/sign.c:337 sm/verify.c:118 #, c-format msgid "failed to allocate keyDB handle\n" msgstr "nie udało się przydzielić uchwytu keyDB\n" -#: sm/certchain.c:1225 +#: sm/certchain.c:1226 msgid "certificate has been revoked" msgstr "certyfikat został unieważniony" -#: sm/certchain.c:1240 +#: sm/certchain.c:1241 msgid "the status of the certificate is unknown" msgstr "status certyfikatu jest nieznany" -#: sm/certchain.c:1247 +#: sm/certchain.c:1248 #, c-format msgid "please make sure that the \"dirmngr\" is properly installed\n" msgstr "proszę upewnić się, że ,,dirmngr'' jest poprawnie zainstalowany\n" -#: sm/certchain.c:1253 +#: sm/certchain.c:1254 #, c-format msgid "checking the CRL failed: %s" msgstr "sprawdzenie CRL nie powiodło się: %s" -#: sm/certchain.c:1282 sm/certchain.c:1350 dirmngr/validate.c:497 +#: sm/certchain.c:1283 sm/certchain.c:1351 dirmngr/validate.c:497 #, c-format msgid "certificate with invalid validity: %s" msgstr "certyfikat z błędną ważnością: %s" -#: sm/certchain.c:1297 sm/certchain.c:1382 dirmngr/validate.c:515 +#: sm/certchain.c:1298 sm/certchain.c:1383 dirmngr/validate.c:515 #, c-format msgid "certificate not yet valid" msgstr "certyfikat jeszcze nie jest ważny" -#: sm/certchain.c:1298 sm/certchain.c:1383 +#: sm/certchain.c:1299 sm/certchain.c:1384 msgid "root certificate not yet valid" msgstr "certyfikat główny jeszcze nie jest ważny" -#: sm/certchain.c:1299 sm/certchain.c:1384 +#: sm/certchain.c:1300 sm/certchain.c:1385 msgid "intermediate certificate not yet valid" msgstr "certyfikat pośredni jeszcze nie jest ważny" -#: sm/certchain.c:1312 dirmngr/validate.c:526 +#: sm/certchain.c:1313 dirmngr/validate.c:526 #, c-format msgid "certificate has expired" msgstr "certyfikat wygasł" -#: sm/certchain.c:1313 +#: sm/certchain.c:1314 msgid "root certificate has expired" msgstr "certyfikat główny wygasł" -#: sm/certchain.c:1314 +#: sm/certchain.c:1315 msgid "intermediate certificate has expired" msgstr "certyfikat pośredni wygasł" -#: sm/certchain.c:1356 +#: sm/certchain.c:1357 #, c-format msgid "required certificate attributes missing: %s%s%s" msgstr "brak wymaganych atrybutów certyfikatu: %s%s%s" -#: sm/certchain.c:1365 +#: sm/certchain.c:1366 msgid "certificate with invalid validity" msgstr "certyfikat o nieważnej ważności" -#: sm/certchain.c:1402 +#: sm/certchain.c:1403 msgid "signature not created during lifetime of certificate" msgstr "podpis nie utworzony w czasie życia certyfikatu" -#: sm/certchain.c:1404 +#: sm/certchain.c:1405 msgid "certificate not created during lifetime of issuer" msgstr "certyfikat nie utworzony w czasie życia wystawcy" -#: sm/certchain.c:1405 +#: sm/certchain.c:1406 msgid "intermediate certificate not created during lifetime of issuer" msgstr "pośredni certyfikat nie utworzony w czasie życia wystawcy" -#: sm/certchain.c:1409 +#: sm/certchain.c:1410 #, c-format msgid " ( signature created at " msgstr " ( podpis utworzony " -#: sm/certchain.c:1410 +#: sm/certchain.c:1411 #, c-format msgid " (certificate created at " msgstr " (certyfikat utworzony " -#: sm/certchain.c:1413 +#: sm/certchain.c:1414 #, c-format msgid " (certificate valid from " msgstr " (certyfikat ważny od " -#: sm/certchain.c:1414 +#: sm/certchain.c:1415 #, c-format msgid " ( issuer valid from " msgstr " ( wystawca ważny od " -#: sm/certchain.c:1444 dirmngr/validate.c:577 +#: sm/certchain.c:1445 dirmngr/validate.c:577 #, c-format msgid "fingerprint=%s\n" msgstr "odcisk=%s\n" -#: sm/certchain.c:1453 +#: sm/certchain.c:1454 #, c-format msgid "root certificate has now been marked as trusted\n" msgstr "główny certyfikat nie został oznaczony jako zaufany\n" -#: sm/certchain.c:1466 +#: sm/certchain.c:1467 #, c-format msgid "interactive marking as trusted not enabled in gpg-agent\n" msgstr "interaktywne oznaczanie zaufania nie włączone w gpg-agencie\n" -#: sm/certchain.c:1472 +#: sm/certchain.c:1473 #, c-format msgid "interactive marking as trusted disabled for this session\n" msgstr "interaktywne oznaczanie zaufania wyłączone dla tej sesji\n" -#: sm/certchain.c:1531 +#: sm/certchain.c:1532 msgid "WARNING: creation time of signature not known - assuming current time" msgstr "" "OSTRZEŻENIE: czas utworzenia podpisu nie jest znany - przyjęto czas bieżący" -#: sm/certchain.c:1595 +#: sm/certchain.c:1596 msgid "no issuer found in certificate" msgstr "nie znaleziono wystawcy w certyfikacie" -#: sm/certchain.c:1673 +#: sm/certchain.c:1674 msgid "self-signed certificate has a BAD signature" msgstr "własnoręcznie podpisany certyfikat ma ZŁY podpis" -#: sm/certchain.c:1742 dirmngr/validate.c:575 +#: sm/certchain.c:1743 dirmngr/validate.c:575 #, c-format msgid "root certificate is not marked trusted" msgstr "główny certyfikat nie jest oznaczony jako zaufany" -#: sm/certchain.c:1758 +#: sm/certchain.c:1759 #, c-format msgid "checking the trust list failed: %s\n" msgstr "sprawdzenie listy zaufania nie powiodło się: %s\n" -#: sm/certchain.c:1789 sm/import.c:176 sm/keylist.c:1396 dirmngr/validate.c:630 +#: sm/certchain.c:1790 sm/import.c:176 sm/keylist.c:1396 dirmngr/validate.c:630 #, c-format msgid "certificate chain too long\n" msgstr "łańcuch certyfikatów zbyt długi\n" -#: sm/certchain.c:1801 dirmngr/validate.c:642 +#: sm/certchain.c:1802 dirmngr/validate.c:642 #, c-format msgid "issuer certificate not found" msgstr "nie znaleziono certyfikatu wystawcy" -#: sm/certchain.c:1834 dirmngr/validate.c:668 +#: sm/certchain.c:1835 dirmngr/validate.c:668 #, c-format msgid "certificate has a BAD signature" msgstr "certyfikat ma ZŁY podpis" -#: sm/certchain.c:1866 dirmngr/validate.c:692 +#: sm/certchain.c:1867 dirmngr/validate.c:692 msgid "found another possible matching CA certificate - trying again" msgstr "znaleziono inny być może pasujący certyfikat CA - ponawianie próby" -#: sm/certchain.c:1925 dirmngr/validate.c:717 +#: sm/certchain.c:1926 dirmngr/validate.c:717 #, c-format msgid "certificate chain longer than allowed by CA (%d)" msgstr "łańcuch certyfikatów dłuższy niż dozwolony przez CA (%d)" -#: sm/certchain.c:1967 sm/certchain.c:2263 dirmngr/validate.c:747 +#: sm/certchain.c:1968 sm/certchain.c:2264 dirmngr/validate.c:747 #, c-format msgid "certificate is good\n" msgstr "certyfikat jest dobry\n" -#: sm/certchain.c:1968 +#: sm/certchain.c:1969 #, c-format msgid "intermediate certificate is good\n" msgstr "certyfikat pośredni jest dobry\n" -#: sm/certchain.c:1969 +#: sm/certchain.c:1970 #, c-format msgid "root certificate is good\n" msgstr "certyfikat główny jest dobry\n" -#: sm/certchain.c:2151 +#: sm/certchain.c:2152 msgid "switching to chain model" msgstr "przełączanie do modelu łańcuchowego" -#: sm/certchain.c:2160 +#: sm/certchain.c:2161 #, c-format msgid "validation model used: %s" msgstr "użyty model poprawności: %s" diff -Nru gnupg2-2.2.40/po/pt.po gnupg2-2.2.41/po/pt.po --- gnupg2-2.2.40/po/pt.po 2022-10-10 09:58:26.000000000 +0000 +++ gnupg2-2.2.41/po/pt.po 2022-12-09 08:48:34.000000000 +0000 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: gnupg\n" "Report-Msgid-Bugs-To: translations@gnupg.org\n" -"POT-Creation-Date: 2022-10-10 11:58+0200\n" +"POT-Creation-Date: 2022-12-09 09:48+0100\n" "PO-Revision-Date: 2015-02-11 19:17+0100\n" "Last-Translator: Pedro Morais \n" "Language-Team: pt \n" @@ -226,8 +226,8 @@ msgid "ssh keys greater than %d bits are not supported\n" msgstr "algoritmo de protecção %d%s não é suportado\n" -#: agent/command-ssh.c:862 common/dotlock.c:856 g10/card-util.c:947 -#: g10/exec.c:554 g10/export.c:1320 g10/gpg.c:1400 g10/keygen.c:4998 +#: agent/command-ssh.c:862 common/dotlock.c:856 g10/card-util.c:946 +#: g10/exec.c:554 g10/export.c:1335 g10/gpg.c:1409 g10/keygen.c:5052 #: g10/keyring.c:1322 g10/keyring.c:1637 g10/openfile.c:291 g10/sign.c:1008 #: g10/sign.c:1322 g10/tdbio.c:753 #, fuzzy, c-format @@ -235,12 +235,12 @@ msgid "can't create '%s': %s\n" msgstr "impossível criar `%s': %s\n" -#: agent/command-ssh.c:874 common/helpfile.c:57 g10/card-util.c:904 +#: agent/command-ssh.c:874 common/helpfile.c:57 g10/card-util.c:903 #: g10/dearmor.c:59 g10/dearmor.c:106 g10/decrypt.c:65 g10/decrypt.c:136 -#: g10/decrypt.c:153 g10/encrypt.c:239 g10/encrypt.c:678 g10/gpg.c:1401 -#: g10/import.c:364 g10/import.c:548 g10/import.c:776 g10/keygen.c:4036 +#: g10/decrypt.c:153 g10/encrypt.c:239 g10/encrypt.c:678 g10/gpg.c:1410 +#: g10/import.c:365 g10/import.c:549 g10/import.c:777 g10/keygen.c:4090 #: g10/keyring.c:1663 g10/openfile.c:195 g10/openfile.c:209 g10/plaintext.c:128 -#: g10/plaintext.c:649 g10/sign.c:990 g10/sign.c:1201 g10/sign.c:1306 +#: g10/plaintext.c:654 g10/sign.c:990 g10/sign.c:1201 g10/sign.c:1306 #: g10/sign.c:1451 g10/tdbdump.c:145 g10/tdbdump.c:153 g10/tdbio.c:758 #: g10/tdbio.c:829 g10/verify.c:96 g10/verify.c:160 sm/gpgsm.c:2160 #: sm/gpgsm.c:2190 sm/gpgsm.c:2228 sm/qualified.c:66 dirmngr/certcache.c:420 @@ -467,34 +467,34 @@ msgid "csh-style command output" msgstr "" -#: agent/gpg-agent.c:185 g10/gpg.c:579 scd/scdaemon.c:126 sm/gpgsm.c:410 +#: agent/gpg-agent.c:185 g10/gpg.c:580 scd/scdaemon.c:126 sm/gpgsm.c:410 #: dirmngr/dirmngr.c:192 #, fuzzy msgid "|FILE|read options from FILE" msgstr "|FICHEIRO|carregar módulo de extensão FICHEIRO" -#: agent/gpg-agent.c:189 g10/gpg.c:566 scd/scdaemon.c:130 sm/gpgsm.c:259 +#: agent/gpg-agent.c:189 g10/gpg.c:567 scd/scdaemon.c:130 sm/gpgsm.c:259 #: dirmngr/dirmngr.c:196 msgid "Options controlling the diagnostic output" msgstr "" -#: agent/gpg-agent.c:191 g10/gpg.c:568 g10/gpgv.c:78 kbx/kbxutil.c:88 +#: agent/gpg-agent.c:191 g10/gpg.c:569 g10/gpgv.c:78 kbx/kbxutil.c:88 #: scd/scdaemon.c:132 sm/gpgsm.c:261 dirmngr/dirmngr-client.c:70 #: dirmngr/dirmngr.c:198 tools/gpg-connect-agent.c:78 tools/gpgconf.c:110 msgid "verbose" msgstr "detalhado" -#: agent/gpg-agent.c:192 g10/gpg.c:570 g10/gpgv.c:79 kbx/kbxutil.c:89 +#: agent/gpg-agent.c:192 g10/gpg.c:571 g10/gpgv.c:79 kbx/kbxutil.c:89 #: scd/scdaemon.c:133 sm/gpgsm.c:263 dirmngr/dirmngr-client.c:71 #: dirmngr/dirmngr.c:199 msgid "be somewhat more quiet" msgstr "ser mais silencioso" -#: agent/gpg-agent.c:200 g10/gpg.c:583 sm/gpgsm.c:276 dirmngr/dirmngr.c:209 +#: agent/gpg-agent.c:200 g10/gpg.c:584 sm/gpgsm.c:276 dirmngr/dirmngr.c:209 msgid "|FILE|write server mode logs to FILE" msgstr "" -#: agent/gpg-agent.c:204 g10/gpg.c:589 scd/scdaemon.c:147 sm/gpgsm.c:283 +#: agent/gpg-agent.c:204 g10/gpg.c:590 scd/scdaemon.c:147 sm/gpgsm.c:283 #: dirmngr/dirmngr.c:213 msgid "Options controlling the configuration" msgstr "" @@ -540,7 +540,7 @@ msgid "enable putty support" msgstr "não suportado" -#: agent/gpg-agent.c:237 g10/gpg.c:831 scd/scdaemon.c:175 sm/gpgsm.c:369 +#: agent/gpg-agent.c:237 g10/gpg.c:832 scd/scdaemon.c:175 sm/gpgsm.c:369 msgid "Options controlling the security" msgstr "" @@ -642,7 +642,7 @@ #. reporting address. This is so that we can change the #. reporting address without breaking the translations. #: agent/gpg-agent.c:563 agent/preset-passphrase.c:100 agent/protect-tool.c:155 -#: g10/gpg.c:1108 g10/gpgv.c:149 kbx/kbxutil.c:113 scd/scdaemon.c:313 +#: g10/gpg.c:1117 g10/gpgv.c:149 kbx/kbxutil.c:113 scd/scdaemon.c:313 #: sm/gpgsm.c:600 dirmngr/dirmngr-client.c:168 dirmngr/dirmngr.c:458 #: tools/gpg-connect-agent.c:205 tools/gpgconf.c:154 #: tools/gpg-check-pattern.c:143 @@ -661,27 +661,27 @@ "Secret key management for @GNUPG@\n" msgstr "" -#: agent/gpg-agent.c:619 g10/gpg.c:1304 scd/scdaemon.c:385 sm/gpgsm.c:748 +#: agent/gpg-agent.c:619 g10/gpg.c:1313 scd/scdaemon.c:385 sm/gpgsm.c:748 #: dirmngr/dirmngr.c:542 #, c-format msgid "invalid debug-level '%s' given\n" msgstr "" -#: agent/gpg-agent.c:988 g10/gpg.c:3810 g10/gpg.c:3834 sm/gpgsm.c:1585 +#: agent/gpg-agent.c:988 g10/gpg.c:3830 g10/gpg.c:3854 sm/gpgsm.c:1585 #: sm/gpgsm.c:1591 #, c-format msgid "selected digest algorithm is invalid\n" msgstr "o algoritmo de \"digest\" selecionado é inválido\n" #: agent/gpg-agent.c:1216 agent/gpg-agent.c:2029 common/argparse.c:1766 -#: common/argparse.c:1858 g10/gpg.c:2517 scd/scdaemon.c:547 sm/gpgsm.c:1007 +#: common/argparse.c:1858 g10/gpg.c:2526 scd/scdaemon.c:547 sm/gpgsm.c:1007 #: dirmngr/dirmngr.c:1081 dirmngr/dirmngr.c:1937 #, fuzzy, c-format #| msgid "reading options from `%s'\n" msgid "reading options from '%s'\n" msgstr "a ler opções de `%s'\n" -#: agent/gpg-agent.c:1332 g10/gpg.c:3751 scd/scdaemon.c:671 sm/gpgsm.c:1522 +#: agent/gpg-agent.c:1332 g10/gpg.c:3769 scd/scdaemon.c:671 sm/gpgsm.c:1522 #: dirmngr/dirmngr.c:1190 tools/gpg-connect-agent.c:1244 tools/gpgconf.c:677 #, fuzzy, c-format #| msgid "WARNING: \"%s\" is a deprecated option\n" @@ -813,7 +813,7 @@ "Password cache maintenance\n" msgstr "" -#: agent/protect-tool.c:108 g10/gpg.c:441 kbx/kbxutil.c:71 sm/gpgsm.c:210 +#: agent/protect-tool.c:108 g10/gpg.c:442 kbx/kbxutil.c:71 sm/gpgsm.c:210 #: dirmngr/dirmngr.c:171 tools/gpgconf.c:80 msgid "" "@Commands:\n" @@ -1033,7 +1033,7 @@ msgid "secret key parts are not available\n" msgstr "partes da chave secreta não disponíveis\n" -#: agent/cvt-openpgp.c:344 g10/card-util.c:1556 +#: agent/cvt-openpgp.c:344 g10/card-util.c:1555 #, fuzzy, c-format #| msgid "protection algorithm %d%s is not supported\n" msgid "public key algorithm %d (%s) is not supported\n" @@ -1194,7 +1194,7 @@ msgid "out of core while allocating %lu bytes" msgstr "" -#: common/miscellaneous.c:115 g10/card-util.c:911 tools/no-libgcrypt.c:30 +#: common/miscellaneous.c:115 g10/card-util.c:910 tools/no-libgcrypt.c:30 #, fuzzy, c-format msgid "error allocating enough memory: %s\n" msgstr "erro ao criar porta-chaves `%s': %s\n" @@ -1317,7 +1317,7 @@ msgstr "armadura: %s\n" #: common/audit.c:774 common/audit.c:776 common/audit.c:921 common/audit.c:923 -#: scd/app-openpgp.c:3557 +#: scd/app-openpgp.c:3566 #, fuzzy, c-format msgid "unsupported algorithm: %s" msgstr "" @@ -1401,12 +1401,12 @@ msgid "Root certificate trustworthy" msgstr "certificado incorrecto" -#: common/audit.c:1112 sm/certchain.c:1235 +#: common/audit.c:1112 sm/certchain.c:1236 #, fuzzy msgid "no CRL found for certificate" msgstr "certificado incorrecto" -#: common/audit.c:1115 sm/certchain.c:1245 +#: common/audit.c:1115 sm/certchain.c:1246 #, fuzzy msgid "the available CRL is too old" msgstr "Nenhuma ajuda disponível" @@ -1549,7 +1549,7 @@ msgid "missing argument for option \"%.50s\"\n" msgstr "" -#: common/argparse.c:558 g10/gpg.c:3525 +#: common/argparse.c:558 g10/gpg.c:3543 #, fuzzy, c-format msgid "invalid argument for option \"%.50s\"\n" msgstr "opções de importação inválidas\n" @@ -1650,92 +1650,92 @@ msgid "%s is too old (need %s, have %s)\n" msgstr "" -#: g10/armor.c:423 +#: g10/armor.c:424 #, c-format msgid "armor: %s\n" msgstr "armadura: %s\n" -#: g10/armor.c:462 +#: g10/armor.c:463 #, c-format msgid "invalid armor header: " msgstr "cabeçalho de armadura inválido: " -#: g10/armor.c:473 +#: g10/armor.c:474 #, c-format msgid "armor header: " msgstr "cabeçalho de armadura: " -#: g10/armor.c:486 +#: g10/armor.c:487 #, c-format msgid "invalid clearsig header\n" msgstr "cabeçalho de assinatura em texto puro inválido\n" -#: g10/armor.c:499 +#: g10/armor.c:500 #, fuzzy, c-format msgid "unknown armor header: " msgstr "cabeçalho de armadura: " -#: g10/armor.c:552 +#: g10/armor.c:553 #, c-format msgid "nested clear text signatures\n" msgstr "assinaturas em texto puro aninhadas\n" -#: g10/armor.c:687 +#: g10/armor.c:688 #, fuzzy, c-format msgid "unexpected armor: " msgstr "armadura inesperada:" -#: g10/armor.c:700 +#: g10/armor.c:701 #, c-format msgid "invalid dash escaped line: " msgstr "linha com hífen inválida: " -#: g10/armor.c:872 g10/armor.c:1492 +#: g10/armor.c:873 g10/armor.c:1493 #, fuzzy, c-format msgid "invalid radix64 character %02X skipped\n" msgstr "caracter radix64 inválido %02x ignorado\n" -#: g10/armor.c:915 +#: g10/armor.c:916 #, c-format msgid "premature eof (no CRC)\n" msgstr "fim de ficheiro prematuro (sem CRC)\n" -#: g10/armor.c:949 +#: g10/armor.c:950 #, c-format msgid "premature eof (in CRC)\n" msgstr "fim de ficheiro prematuro (no CRC)\n" -#: g10/armor.c:957 +#: g10/armor.c:958 #, c-format msgid "malformed CRC\n" msgstr "CRC malformado\n" -#: g10/armor.c:961 g10/armor.c:1529 +#: g10/armor.c:962 g10/armor.c:1530 #, fuzzy, c-format msgid "CRC error; %06lX - %06lX\n" msgstr "erro de CRC; %06lx - %06lx\n" -#: g10/armor.c:981 +#: g10/armor.c:982 #, fuzzy, c-format msgid "premature eof (in trailer)\n" msgstr "fim de ficheiro prematuro (no \"Trailer\")\n" -#: g10/armor.c:985 +#: g10/armor.c:986 #, c-format msgid "error in trailer line\n" msgstr "erro na última linha\n" -#: g10/armor.c:1305 +#: g10/armor.c:1306 #, c-format msgid "no valid OpenPGP data found.\n" msgstr "nenhum dado OpenPGP válido encontrado.\n" -#: g10/armor.c:1310 +#: g10/armor.c:1311 #, c-format msgid "invalid armor: line longer than %d characters\n" msgstr "armadura inválida: linha maior que %d caracteres\n" -#: g10/armor.c:1314 +#: g10/armor.c:1315 #, c-format msgid "" "quoted printable character in armor - probably a buggy MTA has been used\n" @@ -1884,24 +1884,24 @@ msgid "server uses an invalid certificate" msgstr "gerar um certificado de revogação" -#: g10/call-dirmngr.c:462 g10/gpg.c:4458 +#: g10/call-dirmngr.c:462 g10/gpg.c:4478 #, fuzzy, c-format #| msgid "armor: %s\n" msgid "Note: %s\n" msgstr "armadura: %s\n" -#: g10/card-util.c:86 g10/card-util.c:366 g10/card-util.c:1918 +#: g10/card-util.c:86 g10/card-util.c:366 g10/card-util.c:1917 #, fuzzy, c-format msgid "OpenPGP card not available: %s\n" msgstr "chave secreta não disponível" -#: g10/card-util.c:91 g10/card-util.c:1924 +#: g10/card-util.c:91 g10/card-util.c:1923 #, c-format msgid "OpenPGP card no. %s detected\n" msgstr "" -#: g10/card-util.c:97 g10/card-util.c:2253 g10/delkey.c:160 g10/keyedit.c:1423 -#: g10/keygen.c:4466 g10/revoke.c:214 g10/revoke.c:636 +#: g10/card-util.c:97 g10/card-util.c:2252 g10/delkey.c:160 g10/keyedit.c:1423 +#: g10/keygen.c:4520 g10/revoke.c:214 g10/revoke.c:636 #, fuzzy, c-format msgid "can't do this in batch mode\n" msgstr "impossível fazer isso em modo não-interativo\n" @@ -1911,14 +1911,14 @@ msgid "This command is only available for version 2 cards\n" msgstr "Este comando não é permitido no modo %s.\n" -#: g10/card-util.c:107 scd/app-openpgp.c:2866 +#: g10/card-util.c:107 scd/app-openpgp.c:2869 #, fuzzy, c-format msgid "Reset Code not or not anymore available\n" msgstr "partes da chave secreta não disponíveis\n" -#: g10/card-util.c:140 g10/card-util.c:1442 g10/card-util.c:1704 -#: g10/card-util.c:1796 g10/keyedit.c:394 g10/keyedit.c:415 g10/keyedit.c:429 -#: g10/keygen.c:1808 g10/keygen.c:1980 g10/keygen.c:2186 g10/keygen.c:2477 +#: g10/card-util.c:140 g10/card-util.c:1441 g10/card-util.c:1703 +#: g10/card-util.c:1795 g10/keyedit.c:394 g10/keyedit.c:415 g10/keyedit.c:429 +#: g10/keygen.c:1862 g10/keygen.c:2034 g10/keygen.c:2240 g10/keygen.c:2531 #: sm/certreqgen-ui.c:165 sm/certreqgen-ui.c:291 sm/certreqgen-ui.c:325 msgid "Your selection? " msgstr "Opção? " @@ -1969,13 +1969,13 @@ msgid "Error: Combined name too long (limit is %d characters).\n" msgstr "" -#: g10/card-util.c:826 +#: g10/card-util.c:825 #, fuzzy msgid "URL to retrieve public key: " msgstr "a escrever chave pública para `%s'\n" -#: g10/card-util.c:920 g10/decrypt-data.c:509 g10/import.c:399 g10/import.c:746 -#: g10/import.c:798 dirmngr/crlcache.c:655 dirmngr/crlcache.c:660 +#: g10/card-util.c:919 g10/decrypt-data.c:509 g10/import.c:400 g10/import.c:747 +#: g10/import.c:799 dirmngr/crlcache.c:655 dirmngr/crlcache.c:660 #: dirmngr/crlcache.c:914 dirmngr/crlcache.c:920 dirmngr/dirmngr.c:1748 #: tools/gpgconf.c:483 tools/gpgconf.c:529 #, fuzzy, c-format @@ -1983,174 +1983,174 @@ msgid "error reading '%s': %s\n" msgstr "erro na leitura de `%s': %s\n" -#: g10/card-util.c:953 g10/decrypt-data.c:512 g10/export.c:2467 +#: g10/card-util.c:952 g10/decrypt-data.c:512 g10/export.c:2586 #: dirmngr/crlcache.c:925 #, fuzzy, c-format msgid "error writing '%s': %s\n" msgstr "erro na escrita do porta-chaves `%s': %s\n" -#: g10/card-util.c:980 +#: g10/card-util.c:979 msgid "Login data (account name): " msgstr "" -#: g10/card-util.c:1018 +#: g10/card-util.c:1017 msgid "Private DO data: " msgstr "" -#: g10/card-util.c:1103 +#: g10/card-util.c:1102 #, fuzzy msgid "Language preferences: " msgstr "preferências actualizadas" -#: g10/card-util.c:1111 +#: g10/card-util.c:1110 #, fuzzy msgid "Error: invalid length of preference string.\n" msgstr "caracter inválido na cadeia de caractéres da preferência\n" -#: g10/card-util.c:1120 +#: g10/card-util.c:1119 #, fuzzy msgid "Error: invalid characters in preference string.\n" msgstr "caracter inválido na cadeia de caractéres da preferência\n" -#: g10/card-util.c:1142 +#: g10/card-util.c:1141 msgid "Salutation (M = Mr., F = Ms., or space): " msgstr "" -#: g10/card-util.c:1156 +#: g10/card-util.c:1155 #, fuzzy msgid "Error: invalid response.\n" msgstr "%s: versão de ficheiro inválida %d\n" -#: g10/card-util.c:1178 +#: g10/card-util.c:1177 #, fuzzy msgid "CA fingerprint: " msgstr "mostra impressão digital" -#: g10/card-util.c:1201 +#: g10/card-util.c:1200 #, fuzzy msgid "Error: invalid formatted fingerprint.\n" msgstr "%s: versão de ficheiro inválida %d\n" -#: g10/card-util.c:1252 +#: g10/card-util.c:1251 #, fuzzy, c-format msgid "key operation not possible: %s\n" msgstr "A geração de chaves falhou: %s\n" -#: g10/card-util.c:1253 +#: g10/card-util.c:1252 #, fuzzy msgid "not an OpenPGP card" msgstr "nenhum dado OpenPGP válido encontrado.\n" -#: g10/card-util.c:1266 g10/keygen.c:4486 g10/keygen.c:5562 +#: g10/card-util.c:1265 g10/keygen.c:4540 g10/keygen.c:5616 #, fuzzy, c-format msgid "error getting current key info: %s\n" msgstr "erro ao escrever no porta-chaves secreto `%s': %s\n" -#: g10/card-util.c:1351 +#: g10/card-util.c:1350 msgid "Replace existing key? (y/N) " msgstr "" -#: g10/card-util.c:1368 +#: g10/card-util.c:1367 msgid "" "Note: There is no guarantee that the card supports the requested size.\n" " If the key generation does not succeed, please check the\n" " documentation of your card to see what sizes are allowed.\n" msgstr "" -#: g10/card-util.c:1390 g10/keygen.c:2363 sm/certreqgen-ui.c:179 +#: g10/card-util.c:1389 g10/keygen.c:2417 sm/certreqgen-ui.c:179 #, fuzzy, c-format msgid "What keysize do you want? (%u) " msgstr "Qual o tamanho de chave desejado? (1024) " -#: g10/card-util.c:1400 g10/keygen.c:2286 g10/keygen.c:2318 +#: g10/card-util.c:1399 g10/keygen.c:2340 g10/keygen.c:2372 #: sm/certreqgen-ui.c:194 #, c-format msgid "rounded up to %u bits\n" msgstr "arredondado para %u bits\n" -#: g10/card-util.c:1408 g10/keygen.c:2371 sm/certreqgen-ui.c:184 +#: g10/card-util.c:1407 g10/keygen.c:2425 sm/certreqgen-ui.c:184 #, c-format msgid "%s keysizes must be in the range %u-%u\n" msgstr "" -#: g10/card-util.c:1427 +#: g10/card-util.c:1426 msgid "Changing card key attribute for: " msgstr "" -#: g10/card-util.c:1429 +#: g10/card-util.c:1428 #, fuzzy msgid "Signature key\n" msgstr "Esta assinatura expirou em %s.\n" -#: g10/card-util.c:1431 +#: g10/card-util.c:1430 #, fuzzy msgid "Encryption key\n" msgstr " (%d) RSA (apenas cifragem)\n" -#: g10/card-util.c:1433 +#: g10/card-util.c:1432 msgid "Authentication key\n" msgstr "" -#: g10/card-util.c:1435 g10/keygen.c:1926 sm/certreqgen-ui.c:157 +#: g10/card-util.c:1434 g10/keygen.c:1980 sm/certreqgen-ui.c:157 msgid "Please select what kind of key you want:\n" msgstr "Por favor selecione o tipo de chave desejado:\n" -#: g10/card-util.c:1436 sm/certreqgen-ui.c:158 +#: g10/card-util.c:1435 sm/certreqgen-ui.c:158 #, fuzzy, c-format msgid " (%d) RSA\n" msgstr " (%d) RSA (apenas assinatura)\n" -#: g10/card-util.c:1437 +#: g10/card-util.c:1436 #, fuzzy, c-format msgid " (%d) ECC\n" msgstr " (%d) DSA e ElGamal (por omissão)\n" -#: g10/card-util.c:1449 g10/card-util.c:1716 g10/card-util.c:1816 -#: g10/keyedit.c:900 g10/keygen.c:1834 g10/keygen.c:1862 g10/keygen.c:1987 -#: g10/keygen.c:2222 g10/keygen.c:2505 g10/revoke.c:838 +#: g10/card-util.c:1448 g10/card-util.c:1715 g10/card-util.c:1815 +#: g10/keyedit.c:900 g10/keygen.c:1888 g10/keygen.c:1916 g10/keygen.c:2041 +#: g10/keygen.c:2276 g10/keygen.c:2559 g10/revoke.c:838 msgid "Invalid selection.\n" msgstr "Opção inválida.\n" -#: g10/card-util.c:1522 +#: g10/card-util.c:1521 #, c-format msgid "The card will now be re-configured to generate a key of %u bits\n" msgstr "" -#: g10/card-util.c:1527 +#: g10/card-util.c:1526 #, c-format msgid "The card will now be re-configured to generate a key of type: %s\n" msgstr "" -#: g10/card-util.c:1563 +#: g10/card-util.c:1562 #, fuzzy, c-format msgid "error changing key attribute for key %d: %s\n" msgstr "erro ao enviar para `%s': %s\n" -#: g10/card-util.c:1579 g10/card-util.c:2106 +#: g10/card-util.c:1578 g10/card-util.c:2105 #, fuzzy, c-format msgid "error getting card info: %s\n" msgstr "erro ao escrever no porta-chaves secreto `%s': %s\n" -#: g10/card-util.c:1585 g10/card-util.c:1930 g10/card-util.c:2112 +#: g10/card-util.c:1584 g10/card-util.c:1929 g10/card-util.c:2111 #, fuzzy, c-format #| msgid "This command is not allowed while in %s mode.\n" msgid "This command is not supported by this card\n" msgstr "Este comando não é permitido no modo %s.\n" -#: g10/card-util.c:1631 +#: g10/card-util.c:1630 msgid "Make off-card backup of encryption key? (Y/n) " msgstr "" -#: g10/card-util.c:1645 +#: g10/card-util.c:1644 #, fuzzy, c-format msgid "Note: keys are already stored on the card!\n" msgstr "ignorado: a chave secreta já está presente\n" -#: g10/card-util.c:1648 +#: g10/card-util.c:1647 msgid "Replace existing keys? (y/N) " msgstr "" -#: g10/card-util.c:1660 +#: g10/card-util.c:1659 #, c-format msgid "" "Please note that the factory settings of the PINs are\n" @@ -2158,160 +2158,160 @@ "You should change them using the command --change-pin\n" msgstr "" -#: g10/card-util.c:1695 +#: g10/card-util.c:1694 #, fuzzy msgid "Please select the type of key to generate:\n" msgstr "Por favor selecione o tipo de chave desejado:\n" -#: g10/card-util.c:1697 g10/card-util.c:1787 +#: g10/card-util.c:1696 g10/card-util.c:1786 #, fuzzy msgid " (1) Signature key\n" msgstr "Esta assinatura expirou em %s.\n" -#: g10/card-util.c:1698 g10/card-util.c:1789 +#: g10/card-util.c:1697 g10/card-util.c:1788 #, fuzzy msgid " (2) Encryption key\n" msgstr " (%d) RSA (apenas cifragem)\n" -#: g10/card-util.c:1699 g10/card-util.c:1791 +#: g10/card-util.c:1698 g10/card-util.c:1790 msgid " (3) Authentication key\n" msgstr "" -#: g10/card-util.c:1784 +#: g10/card-util.c:1783 #, fuzzy msgid "Please select where to store the key:\n" msgstr "motivo da revocação: " -#: g10/card-util.c:1830 +#: g10/card-util.c:1829 #, fuzzy, c-format msgid "KEYTOCARD failed: %s\n" msgstr "actualização falhou: %s\n" -#: g10/card-util.c:1935 +#: g10/card-util.c:1934 #, fuzzy, c-format msgid "Note: This command destroys all keys stored on the card!\n" msgstr "ignorado: a chave secreta já está presente\n" -#: g10/card-util.c:1938 +#: g10/card-util.c:1937 #, fuzzy msgid "Continue? (y/N) " msgstr "Realmente assinar? " -#: g10/card-util.c:1943 +#: g10/card-util.c:1942 msgid "Really do a factory reset? (enter \"yes\") " msgstr "" -#: g10/card-util.c:2129 +#: g10/card-util.c:2128 #, fuzzy, c-format msgid "error for setup KDF: %s\n" msgstr "erro na leitura de `%s': %s\n" -#: g10/card-util.c:2158 g10/keyedit.c:1260 +#: g10/card-util.c:2157 g10/keyedit.c:1260 msgid "quit this menu" msgstr "sair deste menu" -#: g10/card-util.c:2160 +#: g10/card-util.c:2159 #, fuzzy msgid "show admin commands" msgstr "comandos em conflito\n" -#: g10/card-util.c:2161 g10/keyedit.c:1263 +#: g10/card-util.c:2160 g10/keyedit.c:1263 msgid "show this help" msgstr "mostra esta ajuda" -#: g10/card-util.c:2163 +#: g10/card-util.c:2162 #, fuzzy msgid "list all available data" msgstr "Nenhuma ajuda disponível" -#: g10/card-util.c:2166 +#: g10/card-util.c:2165 msgid "change card holder's name" msgstr "" -#: g10/card-util.c:2167 +#: g10/card-util.c:2166 msgid "change URL to retrieve key" msgstr "" -#: g10/card-util.c:2168 +#: g10/card-util.c:2167 msgid "fetch the key specified in the card URL" msgstr "" -#: g10/card-util.c:2169 +#: g10/card-util.c:2168 #, fuzzy msgid "change the login name" msgstr "muda a data de validade" -#: g10/card-util.c:2170 +#: g10/card-util.c:2169 #, fuzzy msgid "change the language preferences" msgstr "muda os valores de confiança" -#: g10/card-util.c:2171 +#: g10/card-util.c:2170 msgid "change card holder's salutation" msgstr "" -#: g10/card-util.c:2173 +#: g10/card-util.c:2172 #, fuzzy msgid "change a CA fingerprint" msgstr "mostra impressão digital" -#: g10/card-util.c:2174 +#: g10/card-util.c:2173 msgid "toggle the signature force PIN flag" msgstr "" -#: g10/card-util.c:2175 +#: g10/card-util.c:2174 #, fuzzy msgid "generate new keys" msgstr "gerar um novo par de chaves" -#: g10/card-util.c:2176 +#: g10/card-util.c:2175 msgid "menu to change or unblock the PIN" msgstr "" -#: g10/card-util.c:2177 +#: g10/card-util.c:2176 msgid "verify the PIN and list all data" msgstr "" -#: g10/card-util.c:2178 +#: g10/card-util.c:2177 msgid "unblock the PIN using a Reset Code" msgstr "" -#: g10/card-util.c:2179 +#: g10/card-util.c:2178 msgid "destroy all keys and data" msgstr "" -#: g10/card-util.c:2180 +#: g10/card-util.c:2179 #, fuzzy #| msgid "|NAME|use NAME as default recipient" msgid "setup KDF for PIN authentication" msgstr "|NOME|usar NOME como destinatário por omissão" -#: g10/card-util.c:2181 +#: g10/card-util.c:2180 #, fuzzy #| msgid "change the ownertrust" msgid "change the key attribute" msgstr "muda os valores de confiança" -#: g10/card-util.c:2305 +#: g10/card-util.c:2304 msgid "gpg/card> " msgstr "" -#: g10/card-util.c:2346 +#: g10/card-util.c:2345 #, fuzzy msgid "Admin-only command\n" msgstr "comandos em conflito\n" -#: g10/card-util.c:2377 +#: g10/card-util.c:2376 #, fuzzy msgid "Admin commands are allowed\n" msgstr "comandos em conflito\n" -#: g10/card-util.c:2379 +#: g10/card-util.c:2378 #, fuzzy msgid "Admin commands are not allowed\n" msgstr "a escrever chave privada para `%s'\n" -#: g10/card-util.c:2482 g10/keyedit.c:2229 +#: g10/card-util.c:2481 g10/keyedit.c:2229 msgid "Invalid command (try \"help\")\n" msgstr "Comando inválido (tente \"help\")\n" @@ -2320,22 +2320,22 @@ msgid "--output doesn't work for this command\n" msgstr "--output não funciona para este comando\n" -#: g10/decrypt.c:247 g10/gpg.c:5155 g10/keyring.c:399 g10/keyring.c:750 +#: g10/decrypt.c:247 g10/gpg.c:5175 g10/keyring.c:399 g10/keyring.c:750 #, fuzzy, c-format #| msgid "can't open `%s'\n" msgid "can't open '%s'\n" msgstr "impossível abrir `%s'\n" -#: g10/delkey.c:83 g10/export.c:1947 g10/export.c:2230 g10/export.c:2351 -#: g10/getkey.c:2108 g10/gpg.c:5100 g10/keyedit.c:1445 g10/keyedit.c:2335 +#: g10/delkey.c:83 g10/export.c:2035 g10/export.c:2349 g10/export.c:2470 +#: g10/getkey.c:2108 g10/gpg.c:5120 g10/keyedit.c:1445 g10/keyedit.c:2335 #: g10/keyedit.c:2637 g10/keyedit.c:4600 g10/keylist.c:693 g10/keyserver.c:1092 #: g10/revoke.c:230 g10/tofu.c:2165 #, fuzzy, c-format msgid "key \"%s\" not found: %s\n" msgstr "chave `%s' não encontrada: %s\n" -#: g10/delkey.c:92 g10/export.c:2015 g10/getkey.c:2116 g10/getkey.c:4517 -#: g10/gpg.c:5109 g10/keyedit.c:2308 g10/keyserver.c:1110 g10/revoke.c:236 +#: g10/delkey.c:92 g10/export.c:2103 g10/getkey.c:2116 g10/getkey.c:4517 +#: g10/gpg.c:5129 g10/keyedit.c:2308 g10/keyserver.c:1110 g10/revoke.c:236 #: g10/revoke.c:663 g10/tofu.c:2173 #, c-format msgid "error reading keyblock: %s\n" @@ -2458,13 +2458,13 @@ msgid "WARNING: '%s' is an empty file\n" msgstr "AVISO: `%s' é um ficheiro vazio\n" -#: g10/encrypt.c:446 g10/encrypt.c:521 g10/decrypt-data.c:266 g10/gpg.c:3959 -#: g10/gpg.c:3999 sm/decrypt.c:826 sm/encrypt.c:416 sm/gpgsm.c:1609 +#: g10/encrypt.c:446 g10/encrypt.c:521 g10/decrypt-data.c:266 g10/gpg.c:3979 +#: g10/gpg.c:4019 sm/decrypt.c:826 sm/encrypt.c:416 sm/gpgsm.c:1609 #, fuzzy, c-format msgid "cipher algorithm '%s' may not be used in %s mode\n" msgstr "não pode utilizar %s enquanto estiver no modo %s\n" -#: g10/encrypt.c:455 g10/gpg.c:3965 g10/gpg.c:4011 g10/sig-check.c:175 +#: g10/encrypt.c:455 g10/gpg.c:3985 g10/gpg.c:4031 g10/sig-check.c:175 #: g10/sign.c:391 sm/gpgsm.c:1619 sm/gpgsm.c:1629 sm/sign.c:478 sm/verify.c:506 #, fuzzy, c-format msgid "digest algorithm '%s' may not be used in %s mode\n" @@ -2579,68 +2579,74 @@ msgid "WARNING: unable to remove temp directory '%s': %s\n" msgstr "AVISO: dono pouco seguro em %s \"%s\"\n" -#: g10/export.c:119 +#: g10/export.c:124 #, fuzzy msgid "export signatures that are marked as local-only" msgstr "" "\n" "A assinatura será marcada como não-revocável.\n" -#: g10/export.c:121 +#: g10/export.c:126 msgid "export attribute user IDs (generally photo IDs)" msgstr "" -#: g10/export.c:123 +#: g10/export.c:128 msgid "export revocation keys marked as \"sensitive\"" msgstr "" -#: g10/export.c:125 +#: g10/export.c:130 #, fuzzy msgid "remove unusable parts from key during export" msgstr "chave secreta não utilizável" -#: g10/export.c:127 +#: g10/export.c:132 msgid "remove as much as possible from key during export" msgstr "" -#: g10/export.c:133 +#: g10/export.c:138 +#, fuzzy +#| msgid "generate a revocation certificate" +msgid "export only revocation certificates" +msgstr "gerar um certificado de revogação" + +#: g10/export.c:141 msgid "use the GnuPG key backup format" msgstr "" -#: g10/export.c:1291 +#: g10/export.c:1306 #, fuzzy #| msgid "%s: skipped: %s\n" msgid " - skipped" msgstr "%s: ignorado: %s\n" -#: g10/export.c:1324 g10/import.c:2085 g10/openfile.c:200 g10/openfile.c:294 +#: g10/export.c:1339 g10/import.c:2089 g10/openfile.c:200 g10/openfile.c:294 #: g10/sign.c:1012 g10/sign.c:1326 #, fuzzy, c-format #| msgid "writing to `%s'\n" msgid "writing to '%s'\n" msgstr "a escrever para `%s'\n" -#: g10/export.c:1769 +#: g10/export.c:1784 #, fuzzy, c-format msgid "key %s: key material on-card - skipped\n" msgstr "chave %08lX: assintura da subchave no local errado - ignorado\n" -#: g10/export.c:1964 +#: g10/export.c:2052 #, fuzzy, c-format msgid "exporting secret keys not allowed\n" msgstr "a escrever chave privada para `%s'\n" -#: g10/export.c:2041 +#: g10/export.c:2129 #, fuzzy, c-format msgid "key %s: PGP 2.x style key - skipped\n" msgstr "chave %08lX: tipo PGP 2.x - ignorada\n" -#: g10/export.c:2135 +#: g10/export.c:2254 #, c-format msgid "WARNING: nothing exported\n" msgstr "AVISO: nada exportado\n" -#: g10/export.c:2432 g10/plaintext.c:153 g10/plaintext.c:162 +#: g10/export.c:2551 g10/plaintext.c:153 g10/plaintext.c:162 #: g10/plaintext.c:168 g10/plaintext.c:191 #, fuzzy, c-format #| msgid "error creating `%s': %s\n" @@ -2709,301 +2715,301 @@ msgid "using subkey %s instead of primary key %s\n" msgstr "usando chave secundária %08lX ao invés de chave primária %08lX\n" -#: g10/getkey.c:4446 g10/gpg.c:2137 +#: g10/getkey.c:4446 g10/gpg.c:2146 #, fuzzy, c-format msgid "valid values for option '%s':\n" msgstr "opções de importação inválidas\n" -#: g10/gpg.c:443 sm/gpgsm.c:212 +#: g10/gpg.c:444 sm/gpgsm.c:212 #, fuzzy msgid "make a signature" msgstr "fazer uma assinatura separada" -#: g10/gpg.c:444 +#: g10/gpg.c:445 #, fuzzy msgid "make a clear text signature" msgstr "|[ficheiro]|fazer uma assinatura em texto puro" -#: g10/gpg.c:446 sm/gpgsm.c:214 +#: g10/gpg.c:447 sm/gpgsm.c:214 msgid "make a detached signature" msgstr "fazer uma assinatura separada" -#: g10/gpg.c:447 sm/gpgsm.c:215 +#: g10/gpg.c:448 sm/gpgsm.c:215 msgid "encrypt data" msgstr "cifrar dados" -#: g10/gpg.c:449 +#: g10/gpg.c:450 msgid "encryption only with symmetric cipher" msgstr "cifrar apenas com cifra simétrica" -#: g10/gpg.c:451 sm/gpgsm.c:217 +#: g10/gpg.c:452 sm/gpgsm.c:217 msgid "decrypt data (default)" msgstr "decifrar dados (acção por omissão)" -#: g10/gpg.c:453 sm/gpgsm.c:218 +#: g10/gpg.c:454 sm/gpgsm.c:218 msgid "verify a signature" msgstr "verificar uma assinatura" -#: g10/gpg.c:455 sm/gpgsm.c:219 +#: g10/gpg.c:456 sm/gpgsm.c:219 msgid "list keys" msgstr "listar as chaves" -#: g10/gpg.c:457 +#: g10/gpg.c:458 msgid "list keys and signatures" msgstr "listar as chaves e as assinaturas" -#: g10/gpg.c:460 +#: g10/gpg.c:461 #, fuzzy msgid "list and check key signatures" msgstr "verificar as assinaturas das chaves" -#: g10/gpg.c:462 sm/gpgsm.c:224 +#: g10/gpg.c:463 sm/gpgsm.c:224 msgid "list keys and fingerprints" msgstr "listar as chaves e as impressões digitais" -#: g10/gpg.c:463 sm/gpgsm.c:222 +#: g10/gpg.c:464 sm/gpgsm.c:222 msgid "list secret keys" msgstr "listar as chaves secretas" -#: g10/gpg.c:465 sm/gpgsm.c:225 +#: g10/gpg.c:466 sm/gpgsm.c:225 msgid "generate a new key pair" msgstr "gerar um novo par de chaves" -#: g10/gpg.c:468 +#: g10/gpg.c:469 #, fuzzy #| msgid "generate a new key pair" msgid "quickly generate a new key pair" msgstr "gerar um novo par de chaves" -#: g10/gpg.c:471 +#: g10/gpg.c:472 #, fuzzy #| msgid "generate a new key pair" msgid "quickly add a new user-id" msgstr "gerar um novo par de chaves" -#: g10/gpg.c:476 +#: g10/gpg.c:477 #, fuzzy #| msgid "generate a new key pair" msgid "quickly revoke a user-id" msgstr "gerar um novo par de chaves" -#: g10/gpg.c:479 +#: g10/gpg.c:480 #, fuzzy #| msgid "generate a new key pair" msgid "quickly set a new expiration date" msgstr "gerar um novo par de chaves" -#: g10/gpg.c:482 +#: g10/gpg.c:483 msgid "full featured key pair generation" msgstr "" -#: g10/gpg.c:485 +#: g10/gpg.c:486 msgid "generate a revocation certificate" msgstr "gerar um certificado de revogação" -#: g10/gpg.c:488 sm/gpgsm.c:228 +#: g10/gpg.c:489 sm/gpgsm.c:228 msgid "remove keys from the public keyring" msgstr "remover chaves do porta-chaves público" -#: g10/gpg.c:490 +#: g10/gpg.c:491 msgid "remove keys from the secret keyring" msgstr "remover chaves do porta-chaves secreto" -#: g10/gpg.c:492 +#: g10/gpg.c:493 #, fuzzy #| msgid "sign a key" msgid "quickly sign a key" msgstr "assinar uma chave" -#: g10/gpg.c:494 +#: g10/gpg.c:495 #, fuzzy #| msgid "sign a key locally" msgid "quickly sign a key locally" msgstr "assinar uma chave localmente" -#: g10/gpg.c:496 +#: g10/gpg.c:497 #, fuzzy #| msgid "generate a new key pair" msgid "quickly revoke a key signature" msgstr "gerar um novo par de chaves" -#: g10/gpg.c:497 +#: g10/gpg.c:498 msgid "sign a key" msgstr "assinar uma chave" -#: g10/gpg.c:498 +#: g10/gpg.c:499 msgid "sign a key locally" msgstr "assinar uma chave localmente" -#: g10/gpg.c:499 +#: g10/gpg.c:500 msgid "sign or edit a key" msgstr "assinar ou editar uma chave" -#: g10/gpg.c:501 sm/gpgsm.c:246 +#: g10/gpg.c:502 sm/gpgsm.c:246 #, fuzzy msgid "change a passphrase" msgstr "muda a frase secreta" -#: g10/gpg.c:505 +#: g10/gpg.c:506 msgid "export keys" msgstr "exportar chaves" -#: g10/gpg.c:506 +#: g10/gpg.c:507 msgid "export keys to a keyserver" msgstr "exportar chaves para um servidor de chaves" -#: g10/gpg.c:507 +#: g10/gpg.c:508 msgid "import keys from a keyserver" msgstr "importar chaves de um servidor de chaves" -#: g10/gpg.c:510 +#: g10/gpg.c:511 msgid "search for keys on a keyserver" msgstr "procurar chaves num servidor de chaves" -#: g10/gpg.c:512 +#: g10/gpg.c:513 msgid "update all keys from a keyserver" msgstr "actualizar todas as chaves a partir de um servidor de chaves" -#: g10/gpg.c:520 +#: g10/gpg.c:521 msgid "import/merge keys" msgstr "importar/fundir chaves" -#: g10/gpg.c:523 +#: g10/gpg.c:524 msgid "print the card status" msgstr "" -#: g10/gpg.c:524 +#: g10/gpg.c:525 msgid "change data on a card" msgstr "" -#: g10/gpg.c:526 +#: g10/gpg.c:527 msgid "change a card's PIN" msgstr "" -#: g10/gpg.c:538 +#: g10/gpg.c:539 msgid "update the trust database" msgstr "actualizar a base de dados de confiança" -#: g10/gpg.c:548 +#: g10/gpg.c:549 #, fuzzy msgid "print message digests" msgstr "|algo [ficheiros]|imprimir \"digests\" de mensagens" -#: g10/gpg.c:552 sm/gpgsm.c:241 +#: g10/gpg.c:553 sm/gpgsm.c:241 msgid "run in server mode" msgstr "" -#: g10/gpg.c:554 +#: g10/gpg.c:555 msgid "|VALUE|set the TOFU policy for a key" msgstr "" -#: g10/gpg.c:594 +#: g10/gpg.c:595 msgid "|NAME|use NAME as default secret key" msgstr "|NOME|usar NOME como chave secreta por omissão" -#: g10/gpg.c:596 sm/gpgsm.c:332 +#: g10/gpg.c:597 sm/gpgsm.c:332 #, fuzzy msgid "|NAME|encrypt to user ID NAME as well" msgstr "|NOME|cifrar para NOME" -#: g10/gpg.c:604 +#: g10/gpg.c:605 msgid "|SPEC|set up email aliases" msgstr "" -#: g10/gpg.c:616 +#: g10/gpg.c:617 msgid "use strict OpenPGP behavior" msgstr "" -#: g10/gpg.c:641 kbx/kbxutil.c:90 sm/gpgsm.c:412 tools/gpgconf.c:112 +#: g10/gpg.c:642 kbx/kbxutil.c:90 sm/gpgsm.c:412 tools/gpgconf.c:112 msgid "do not make any changes" msgstr "não fazer alterações" -#: g10/gpg.c:642 +#: g10/gpg.c:643 msgid "prompt before overwriting" msgstr "perguntar antes de sobrepôr" -#: g10/gpg.c:689 sm/gpgsm.c:304 +#: g10/gpg.c:690 sm/gpgsm.c:304 msgid "Options controlling the input" msgstr "" -#: g10/gpg.c:707 sm/gpgsm.c:314 +#: g10/gpg.c:708 sm/gpgsm.c:314 msgid "Options controlling the output" msgstr "" -#: g10/gpg.c:709 sm/gpgsm.c:316 +#: g10/gpg.c:710 sm/gpgsm.c:316 msgid "create ascii armored output" msgstr "criar saída com armadura ascii" -#: g10/gpg.c:713 g10/gpgv.c:82 sm/gpgsm.c:321 +#: g10/gpg.c:714 g10/gpgv.c:82 sm/gpgsm.c:321 #, fuzzy msgid "|FILE|write output to FILE" msgstr "|FICHEIRO|carregar módulo de extensão FICHEIRO" -#: g10/gpg.c:726 +#: g10/gpg.c:727 msgid "use canonical text mode" msgstr "usar modo de texto canônico" -#: g10/gpg.c:743 +#: g10/gpg.c:744 #, fuzzy msgid "|N|set compress level to N (0 disables)" msgstr "" "|N|estabelecer nível de compressão N\n" "(0 desactiva)" -#: g10/gpg.c:750 sm/gpgsm.c:347 +#: g10/gpg.c:751 sm/gpgsm.c:347 msgid "Options controlling key import and export" msgstr "" -#: g10/gpg.c:753 +#: g10/gpg.c:754 msgid "|MECHANISMS|use MECHANISMS to locate keys by mail address" msgstr "" -#: g10/gpg.c:756 +#: g10/gpg.c:757 #, fuzzy #| msgid "import keys from a keyserver" msgid "import missing key from a signature" msgstr "importar chaves de um servidor de chaves" -#: g10/gpg.c:761 +#: g10/gpg.c:762 #, fuzzy msgid "include the public key in signatures" msgstr "verificar as assinaturas das chaves" -#: g10/gpg.c:764 sm/gpgsm.c:350 +#: g10/gpg.c:765 sm/gpgsm.c:350 msgid "disable all access to the dirmngr" msgstr "" -#: g10/gpg.c:776 sm/gpgsm.c:357 +#: g10/gpg.c:777 sm/gpgsm.c:357 msgid "Options controlling key listings" msgstr "" -#: g10/gpg.c:805 sm/gpgsm.c:324 +#: g10/gpg.c:806 sm/gpgsm.c:324 #, fuzzy #| msgid "list secret keys" msgid "Options to specify keys" msgstr "listar as chaves secretas" -#: g10/gpg.c:807 sm/gpgsm.c:326 +#: g10/gpg.c:808 sm/gpgsm.c:326 #, fuzzy msgid "|USER-ID|encrypt for USER-ID" msgstr "|NOME|cifrar para NOME" -#: g10/gpg.c:815 sm/gpgsm.c:328 +#: g10/gpg.c:816 sm/gpgsm.c:328 #, fuzzy msgid "|USER-ID|use USER-ID to sign or decrypt" msgstr "" "usar este identificador de utilizador para\n" "assinar ou decifrar" -#: g10/gpg.c:866 sm/gpgsm.c:396 +#: g10/gpg.c:867 sm/gpgsm.c:396 msgid "Options for unattended use" msgstr "" -#: g10/gpg.c:885 sm/gpgsm.c:408 dirmngr/dirmngr.c:294 +#: g10/gpg.c:886 sm/gpgsm.c:408 dirmngr/dirmngr.c:294 msgid "Other options" msgstr "" -#: g10/gpg.c:953 sm/gpgsm.c:440 +#: g10/gpg.c:955 sm/gpgsm.c:440 msgid "" "@\n" "(See the man page for a complete listing of all commands and options)\n" @@ -3011,7 +3017,7 @@ "@\n" "(Veja a página man para uma lista completa de comandos e opções)\n" -#: g10/gpg.c:956 +#: g10/gpg.c:958 #, fuzzy #| msgid "" #| "@\n" @@ -3041,13 +3047,13 @@ " --list-keys [nomes] mostrar chaves\n" " --fingerprint [nomes] mostrar impressões digitais\n" -#: g10/gpg.c:1130 +#: g10/gpg.c:1139 #, fuzzy #| msgid "Usage: gpg [options] [files] (-h for help)" msgid "Usage: @GPG@ [options] [files] (-h for help)" msgstr "Uso: gpg [opções] [ficheiros] (-h para ajuda)" -#: g10/gpg.c:1133 +#: g10/gpg.c:1142 #, fuzzy #| msgid "" #| "Syntax: gpg [options] [files]\n" @@ -3062,7 +3068,7 @@ "assina, verifica, cifra ou decifra\n" "a operação por omissão depende dos dados de entrada\n" -#: g10/gpg.c:1144 sm/gpgsm.c:624 +#: g10/gpg.c:1153 sm/gpgsm.c:624 msgid "" "\n" "Supported algorithms:\n" @@ -3070,550 +3076,550 @@ "\n" "Algoritmos suportados:\n" -#: g10/gpg.c:1147 +#: g10/gpg.c:1156 msgid "Pubkey: " msgstr "Chave pública: " -#: g10/gpg.c:1154 g10/keyedit.c:3338 +#: g10/gpg.c:1163 g10/keyedit.c:3338 msgid "Cipher: " msgstr "Cifra: " -#: g10/gpg.c:1161 +#: g10/gpg.c:1170 msgid "Hash: " msgstr "Dispersão: " -#: g10/gpg.c:1168 g10/keyedit.c:3404 +#: g10/gpg.c:1177 g10/keyedit.c:3404 msgid "Compression: " msgstr "Compressão: " -#: g10/gpg.c:1241 sm/gpgsm.c:698 +#: g10/gpg.c:1250 sm/gpgsm.c:698 #, fuzzy, c-format msgid "usage: %s [options] %s\n" msgstr "uso: gpg [opções] " -#: g10/gpg.c:1436 sm/gpgsm.c:791 +#: g10/gpg.c:1445 sm/gpgsm.c:791 #, c-format msgid "conflicting commands\n" msgstr "comandos em conflito\n" -#: g10/gpg.c:1454 +#: g10/gpg.c:1463 #, fuzzy, c-format msgid "no = sign found in group definition '%s'\n" msgstr "nenhum sinal = encontrada na definição de grupo \"%s\"\n" -#: g10/gpg.c:1652 +#: g10/gpg.c:1661 #, fuzzy, c-format msgid "WARNING: unsafe ownership on homedir '%s'\n" msgstr "AVISO: dono pouco seguro em %s \"%s\"\n" -#: g10/gpg.c:1655 +#: g10/gpg.c:1664 #, fuzzy, c-format msgid "WARNING: unsafe ownership on configuration file '%s'\n" msgstr "AVISO: dono pouco seguro em %s \"%s\"\n" -#: g10/gpg.c:1658 +#: g10/gpg.c:1667 #, fuzzy, c-format msgid "WARNING: unsafe ownership on extension '%s'\n" msgstr "AVISO: dono pouco seguro em %s \"%s\"\n" -#: g10/gpg.c:1664 +#: g10/gpg.c:1673 #, fuzzy, c-format msgid "WARNING: unsafe permissions on homedir '%s'\n" msgstr "AVISO: permissões pouco seguras em %s \"%s\"\n" -#: g10/gpg.c:1667 +#: g10/gpg.c:1676 #, fuzzy, c-format msgid "WARNING: unsafe permissions on configuration file '%s'\n" msgstr "AVISO: permissões pouco seguras em %s \"%s\"\n" -#: g10/gpg.c:1670 +#: g10/gpg.c:1679 #, fuzzy, c-format msgid "WARNING: unsafe permissions on extension '%s'\n" msgstr "AVISO: permissões pouco seguras em %s \"%s\"\n" -#: g10/gpg.c:1676 +#: g10/gpg.c:1685 #, fuzzy, c-format msgid "WARNING: unsafe enclosing directory ownership on homedir '%s'\n" msgstr "AVISO: dono pouco seguro em %s \"%s\"\n" -#: g10/gpg.c:1679 +#: g10/gpg.c:1688 #, fuzzy, c-format msgid "" "WARNING: unsafe enclosing directory ownership on configuration file '%s'\n" msgstr "AVISO: dono pouco seguro em %s \"%s\"\n" -#: g10/gpg.c:1682 +#: g10/gpg.c:1691 #, fuzzy, c-format msgid "WARNING: unsafe enclosing directory ownership on extension '%s'\n" msgstr "AVISO: dono pouco seguro em %s \"%s\"\n" -#: g10/gpg.c:1688 +#: g10/gpg.c:1697 #, fuzzy, c-format msgid "WARNING: unsafe enclosing directory permissions on homedir '%s'\n" msgstr "AVISO: permissões pouco seguras em %s \"%s\"\n" -#: g10/gpg.c:1691 +#: g10/gpg.c:1700 #, fuzzy, c-format msgid "" "WARNING: unsafe enclosing directory permissions on configuration file '%s'\n" msgstr "AVISO: permissões pouco seguras em %s \"%s\"\n" -#: g10/gpg.c:1694 +#: g10/gpg.c:1703 #, fuzzy, c-format msgid "WARNING: unsafe enclosing directory permissions on extension '%s'\n" msgstr "AVISO: permissões pouco seguras em %s \"%s\"\n" -#: g10/gpg.c:1910 +#: g10/gpg.c:1919 #, fuzzy, c-format msgid "unknown configuration item '%s'\n" msgstr "criado um novo ficheiro de configuração `%s'\n" -#: g10/gpg.c:2009 +#: g10/gpg.c:2018 msgid "display photo IDs during key listings" msgstr "" -#: g10/gpg.c:2011 +#: g10/gpg.c:2020 #, fuzzy msgid "show key usage information during key listings" msgstr "Nenhuma assinatura correspondente no porta-chaves secreto\n" -#: g10/gpg.c:2013 +#: g10/gpg.c:2022 msgid "show policy URLs during signature listings" msgstr "" -#: g10/gpg.c:2015 +#: g10/gpg.c:2024 #, fuzzy msgid "show all notations during signature listings" msgstr "Nenhuma assinatura correspondente no porta-chaves secreto\n" -#: g10/gpg.c:2017 +#: g10/gpg.c:2026 msgid "show IETF standard notations during signature listings" msgstr "" -#: g10/gpg.c:2021 +#: g10/gpg.c:2030 msgid "show user-supplied notations during signature listings" msgstr "" -#: g10/gpg.c:2023 +#: g10/gpg.c:2032 #, fuzzy msgid "show preferred keyserver URLs during signature listings" msgstr "a URL de política de assinatura dada é inválida\n" -#: g10/gpg.c:2025 +#: g10/gpg.c:2034 msgid "show user ID validity during key listings" msgstr "" -#: g10/gpg.c:2027 +#: g10/gpg.c:2036 msgid "show revoked and expired user IDs in key listings" msgstr "" -#: g10/gpg.c:2029 +#: g10/gpg.c:2038 msgid "show revoked and expired subkeys in key listings" msgstr "" -#: g10/gpg.c:2031 +#: g10/gpg.c:2040 #, fuzzy msgid "show the keyring name in key listings" msgstr "mostrar em que porta-chave a chave está" -#: g10/gpg.c:2033 +#: g10/gpg.c:2042 #, fuzzy msgid "show expiration dates during signature listings" msgstr "Nenhuma assinatura correspondente no porta-chaves secreto\n" -#: g10/gpg.c:2148 +#: g10/gpg.c:2157 #, fuzzy, c-format msgid "unknown TOFU policy '%s'\n" msgstr "destinatário por omissão desconhecido `%s'\n" -#: g10/gpg.c:2150 +#: g10/gpg.c:2159 #, c-format msgid "(use \"help\" to list choices)\n" msgstr "" -#: g10/gpg.c:2240 g10/keyedit.c:1719 +#: g10/gpg.c:2249 g10/keyedit.c:1719 #, c-format msgid "This command is not allowed while in %s mode.\n" msgstr "Este comando não é permitido no modo %s.\n" -#: g10/gpg.c:2878 g10/gpg.c:3718 g10/gpg.c:3730 +#: g10/gpg.c:2896 g10/gpg.c:3736 g10/gpg.c:3748 #, fuzzy, c-format #| msgid "NOTE: %s is not for normal use!\n" msgid "Note: %s is not for normal use!\n" msgstr "NOTA: %s não é para uso normal!\n" -#: g10/gpg.c:3053 g10/gpg.c:3065 +#: g10/gpg.c:3071 g10/gpg.c:3083 #, fuzzy, c-format msgid "'%s' is not a valid signature expiration\n" msgstr "%s não é um conjunto de caracteres válido\n" -#: g10/gpg.c:3087 +#: g10/gpg.c:3105 #, fuzzy, c-format msgid "\"%s\" is not a proper mail address\n" msgstr "Endereço eletrónico inválido\n" -#: g10/gpg.c:3119 sm/gpgsm.c:1121 +#: g10/gpg.c:3137 sm/gpgsm.c:1121 #, fuzzy, c-format msgid "invalid pinentry mode '%s'\n" msgstr "algoritmo de dispersão inválido `%s'\n" -#: g10/gpg.c:3125 sm/gpgsm.c:1127 +#: g10/gpg.c:3143 sm/gpgsm.c:1127 #, fuzzy, c-format msgid "invalid request origin '%s'\n" msgstr "opções de importação inválidas\n" -#: g10/gpg.c:3179 +#: g10/gpg.c:3197 #, fuzzy, c-format msgid "'%s' is not a valid character set\n" msgstr "%s não é um conjunto de caracteres válido\n" -#: g10/gpg.c:3201 g10/gpg.c:3415 g10/keyedit.c:5338 +#: g10/gpg.c:3219 g10/gpg.c:3433 g10/keyedit.c:5338 #, fuzzy, c-format msgid "could not parse keyserver URL\n" msgstr "não consegui processar a URI do servidor de chaves\n" -#: g10/gpg.c:3219 +#: g10/gpg.c:3237 #, fuzzy, c-format msgid "%s:%d: invalid keyserver options\n" msgstr "%s:%d: opções de exportação inválidas\n" -#: g10/gpg.c:3222 +#: g10/gpg.c:3240 #, fuzzy, c-format msgid "invalid keyserver options\n" msgstr "opções de exportação inválidas\n" -#: g10/gpg.c:3229 +#: g10/gpg.c:3247 #, c-format msgid "%s:%d: invalid import options\n" msgstr "%s:%d: opções de importação inválidas\n" -#: g10/gpg.c:3232 +#: g10/gpg.c:3250 #, c-format msgid "invalid import options\n" msgstr "opções de importação inválidas\n" -#: g10/gpg.c:3238 g10/gpg.c:3253 +#: g10/gpg.c:3256 g10/gpg.c:3271 #, fuzzy, c-format msgid "invalid filter option: %s\n" msgstr "opções de importação inválidas\n" -#: g10/gpg.c:3244 +#: g10/gpg.c:3262 #, c-format msgid "%s:%d: invalid export options\n" msgstr "%s:%d: opções de exportação inválidas\n" -#: g10/gpg.c:3247 +#: g10/gpg.c:3265 #, c-format msgid "invalid export options\n" msgstr "opções de exportação inválidas\n" -#: g10/gpg.c:3259 +#: g10/gpg.c:3277 #, fuzzy, c-format msgid "%s:%d: invalid list options\n" msgstr "%s:%d: opções de importação inválidas\n" -#: g10/gpg.c:3262 +#: g10/gpg.c:3280 #, fuzzy, c-format msgid "invalid list options\n" msgstr "opções de importação inválidas\n" -#: g10/gpg.c:3270 +#: g10/gpg.c:3288 msgid "display photo IDs during signature verification" msgstr "" -#: g10/gpg.c:3272 +#: g10/gpg.c:3290 msgid "show policy URLs during signature verification" msgstr "" -#: g10/gpg.c:3274 +#: g10/gpg.c:3292 #, fuzzy msgid "show all notations during signature verification" msgstr "%s não é um conjunto de caracteres válido\n" -#: g10/gpg.c:3276 +#: g10/gpg.c:3294 msgid "show IETF standard notations during signature verification" msgstr "" -#: g10/gpg.c:3280 +#: g10/gpg.c:3298 msgid "show user-supplied notations during signature verification" msgstr "" -#: g10/gpg.c:3282 +#: g10/gpg.c:3300 #, fuzzy msgid "show preferred keyserver URLs during signature verification" msgstr "a URL de política de assinatura dada é inválida\n" -#: g10/gpg.c:3284 +#: g10/gpg.c:3302 #, fuzzy msgid "show user ID validity during signature verification" msgstr "%s não é um conjunto de caracteres válido\n" -#: g10/gpg.c:3286 +#: g10/gpg.c:3304 msgid "show revoked and expired user IDs in signature verification" msgstr "" -#: g10/gpg.c:3288 +#: g10/gpg.c:3306 #, fuzzy msgid "show only the primary user ID in signature verification" msgstr "%s não é um conjunto de caracteres válido\n" -#: g10/gpg.c:3290 +#: g10/gpg.c:3308 msgid "validate signatures with PKA data" msgstr "" -#: g10/gpg.c:3292 +#: g10/gpg.c:3310 msgid "elevate the trust of signatures with valid PKA data" msgstr "" -#: g10/gpg.c:3299 +#: g10/gpg.c:3317 #, fuzzy, c-format msgid "%s:%d: invalid verify options\n" msgstr "%s:%d: opções de exportação inválidas\n" -#: g10/gpg.c:3302 +#: g10/gpg.c:3320 #, fuzzy, c-format msgid "invalid verify options\n" msgstr "opções de exportação inválidas\n" -#: g10/gpg.c:3309 +#: g10/gpg.c:3327 #, c-format msgid "unable to set exec-path to %s\n" msgstr "não foi possível alterar o exec-path para %s\n" -#: g10/gpg.c:3513 +#: g10/gpg.c:3531 #, fuzzy, c-format msgid "%s:%d: invalid auto-key-locate list\n" msgstr "%s:%d: opções de exportação inválidas\n" -#: g10/gpg.c:3516 +#: g10/gpg.c:3534 #, c-format msgid "invalid auto-key-locate list\n" msgstr "" -#: g10/gpg.c:3700 sm/gpgsm.c:1492 +#: g10/gpg.c:3718 sm/gpgsm.c:1492 #, c-format msgid "WARNING: program may create a core file!\n" msgstr "AVISO: O programa pode criar um ficheiro core!\n" -#: g10/gpg.c:3711 +#: g10/gpg.c:3729 #, c-format msgid "WARNING: %s overrides %s\n" msgstr "AVISO: %s sobrepõe %s\n" -#: g10/gpg.c:3720 +#: g10/gpg.c:3738 #, c-format msgid "%s not allowed with %s!\n" msgstr "%s não é permitido com %s!\n" -#: g10/gpg.c:3723 +#: g10/gpg.c:3741 #, c-format msgid "%s makes no sense with %s!\n" msgstr "%s não faz sentido com %s!\n" -#: g10/gpg.c:3738 sm/gpgsm.c:1509 dirmngr/dirmngr.c:1205 +#: g10/gpg.c:3756 sm/gpgsm.c:1509 dirmngr/dirmngr.c:1205 #, c-format msgid "WARNING: running with faked system time: " msgstr "" -#: g10/gpg.c:3759 +#: g10/gpg.c:3777 #, fuzzy, c-format msgid "will not run with insecure memory due to %s\n" msgstr "a escrever chave privada para `%s'\n" -#: g10/gpg.c:3804 g10/gpg.c:3828 sm/gpgsm.c:1579 +#: g10/gpg.c:3824 g10/gpg.c:3848 sm/gpgsm.c:1579 #, c-format msgid "selected cipher algorithm is invalid\n" msgstr "o algoritmo de cifragem selecionado é inválido\n" -#: g10/gpg.c:3816 +#: g10/gpg.c:3836 #, fuzzy, c-format msgid "selected compression algorithm is invalid\n" msgstr "o algoritmo de cifragem selecionado é inválido\n" -#: g10/gpg.c:3822 +#: g10/gpg.c:3842 #, c-format msgid "selected certification digest algorithm is invalid\n" msgstr "o algoritmo de \"digest\" de certificação selecionado é inválido\n" -#: g10/gpg.c:3837 +#: g10/gpg.c:3857 #, c-format msgid "completes-needed must be greater than 0\n" msgstr "completes-needed deve ser maior que 0\n" -#: g10/gpg.c:3839 +#: g10/gpg.c:3859 #, c-format msgid "marginals-needed must be greater than 1\n" msgstr "marginals-needed deve ser maior que 1\n" -#: g10/gpg.c:3841 +#: g10/gpg.c:3861 #, fuzzy, c-format msgid "max-cert-depth must be in the range from 1 to 255\n" msgstr "max-cert-depth deve estar na entre 1 e 255\n" -#: g10/gpg.c:3843 +#: g10/gpg.c:3863 #, fuzzy, c-format msgid "invalid default-cert-level; must be 0, 1, 2, or 3\n" msgstr "nível de verificação por omissão inválido: deve ser 0, 1, 2 ou 3\n" -#: g10/gpg.c:3845 +#: g10/gpg.c:3865 #, fuzzy, c-format msgid "invalid min-cert-level; must be 1, 2, or 3\n" msgstr "nível de verificação por omissão inválido: deve ser 0, 1, 2 ou 3\n" -#: g10/gpg.c:3849 +#: g10/gpg.c:3869 #, fuzzy, c-format #| msgid "NOTE: simple S2K mode (0) is strongly discouraged\n" msgid "Note: simple S2K mode (0) is strongly discouraged\n" msgstr "NOTA: o modo S2K simples (0) não é recomendável\n" -#: g10/gpg.c:3853 +#: g10/gpg.c:3873 #, c-format msgid "invalid S2K mode; must be 0, 1 or 3\n" msgstr "modo S2K inválido: deve ser 0, 1 ou 3\n" -#: g10/gpg.c:3860 +#: g10/gpg.c:3880 #, c-format msgid "invalid default preferences\n" msgstr "preferências por omissão inválidas\n" -#: g10/gpg.c:3864 +#: g10/gpg.c:3884 #, c-format msgid "invalid personal cipher preferences\n" msgstr "preferências pessoais de cifra inválidas\n" -#: g10/gpg.c:3868 +#: g10/gpg.c:3888 #, c-format msgid "invalid personal digest preferences\n" msgstr "preferências pessoais de 'digest' inválidas\n" -#: g10/gpg.c:3872 +#: g10/gpg.c:3892 #, c-format msgid "invalid personal compress preferences\n" msgstr "preferências pessoais de compressão inválidas\n" -#: g10/gpg.c:3908 +#: g10/gpg.c:3928 #, fuzzy, c-format msgid "%s does not yet work with %s\n" msgstr "%s não faz sentido com %s!\n" -#: g10/gpg.c:3971 +#: g10/gpg.c:3991 #, fuzzy, c-format msgid "compression algorithm '%s' may not be used in %s mode\n" msgstr "não pode utilizar %s enquanto estiver no modo %s\n" -#: g10/gpg.c:4115 +#: g10/gpg.c:4135 #, c-format msgid "failed to initialize the TrustDB: %s\n" msgstr "falha ao inicializar a base de dados de confiança: %s\n" -#: g10/gpg.c:4127 +#: g10/gpg.c:4147 #, c-format msgid "WARNING: recipients (-r) given without using public key encryption\n" msgstr "" "AVISO: destinatários (-r) dados sem utilizar uma cifra de chave pública\n" -#: g10/gpg.c:4199 +#: g10/gpg.c:4219 #, fuzzy, c-format msgid "symmetric encryption of '%s' failed: %s\n" msgstr "decifragem falhou: %s\n" -#: g10/gpg.c:4228 +#: g10/gpg.c:4248 #, c-format msgid "you cannot use --symmetric --encrypt with --s2k-mode 0\n" msgstr "" -#: g10/gpg.c:4231 +#: g10/gpg.c:4251 #, fuzzy, c-format msgid "you cannot use --symmetric --encrypt in %s mode\n" msgstr "não pode utilizar %s enquanto estiver no modo %s\n" -#: g10/gpg.c:4289 +#: g10/gpg.c:4309 #, c-format msgid "you cannot use --symmetric --sign --encrypt with --s2k-mode 0\n" msgstr "" -#: g10/gpg.c:4292 +#: g10/gpg.c:4312 #, fuzzy, c-format msgid "you cannot use --symmetric --sign --encrypt in %s mode\n" msgstr "não pode utilizar %s enquanto estiver no modo %s\n" -#: g10/gpg.c:4692 g10/keyserver.c:1648 +#: g10/gpg.c:4712 g10/keyserver.c:1648 #, fuzzy, c-format msgid "keyserver send failed: %s\n" msgstr "A geração de chaves falhou: %s\n" -#: g10/gpg.c:4697 +#: g10/gpg.c:4717 #, fuzzy, c-format msgid "keyserver receive failed: %s\n" msgstr "A geração de chaves falhou: %s\n" -#: g10/gpg.c:4703 +#: g10/gpg.c:4723 #, fuzzy, c-format msgid "key export failed: %s\n" msgstr "A geração de chaves falhou: %s\n" -#: g10/gpg.c:4716 +#: g10/gpg.c:4736 #, fuzzy, c-format msgid "export as ssh key failed: %s\n" msgstr "A geração de chaves falhou: %s\n" -#: g10/gpg.c:4728 +#: g10/gpg.c:4748 #, fuzzy, c-format msgid "keyserver search failed: %s\n" msgstr "A geração de chaves falhou: %s\n" -#: g10/gpg.c:4741 +#: g10/gpg.c:4761 #, fuzzy, c-format msgid "keyserver refresh failed: %s\n" msgstr "actualização da chave secreta falhou: %s\n" -#: g10/gpg.c:4810 +#: g10/gpg.c:4830 #, c-format msgid "dearmoring failed: %s\n" msgstr "retirada de armadura falhou: %s\n" -#: g10/gpg.c:4821 +#: g10/gpg.c:4841 #, c-format msgid "enarmoring failed: %s\n" msgstr "criação de armadura falhou: %s\n" -#: g10/gpg.c:4913 +#: g10/gpg.c:4933 #, fuzzy, c-format #| msgid "invalid hash algorithm `%s'\n" msgid "invalid hash algorithm '%s'\n" msgstr "algoritmo de dispersão inválido `%s'\n" -#: g10/gpg.c:5065 g10/tofu.c:2153 +#: g10/gpg.c:5085 g10/tofu.c:2153 #, fuzzy, c-format msgid "error parsing key specification '%s': %s\n" msgstr "erro na criação da frase secreta: %s\n" -#: g10/gpg.c:5078 +#: g10/gpg.c:5098 #, c-format msgid "'%s' does not appear to be a valid key ID, fingerprint or keygrip\n" msgstr "" -#: g10/gpg.c:5134 +#: g10/gpg.c:5154 #, c-format msgid "WARNING: no command supplied. Trying to guess what you mean ...\n" msgstr "" -#: g10/gpg.c:5145 +#: g10/gpg.c:5165 #, c-format msgid "Go ahead and type your message ...\n" msgstr "Digite a sua mensagem ...\n" -#: g10/gpg.c:5490 +#: g10/gpg.c:5510 #, c-format msgid "the given certification policy URL is invalid\n" msgstr "a URL de política de certificação dada é inválida\n" -#: g10/gpg.c:5492 +#: g10/gpg.c:5512 #, c-format msgid "the given signature policy URL is invalid\n" msgstr "a URL de política de assinatura dada é inválida\n" -#: g10/gpg.c:5525 +#: g10/gpg.c:5545 #, fuzzy, c-format msgid "the given preferred keyserver URL is invalid\n" msgstr "a URL de política de assinatura dada é inválida\n" @@ -3659,319 +3665,319 @@ msgid "No help available for '%s'" msgstr "Nenhuma ajuda disponível para `%s'" -#: g10/import.c:169 +#: g10/import.c:170 msgid "import signatures that are marked as local-only" msgstr "" -#: g10/import.c:172 +#: g10/import.c:173 msgid "repair damage from the pks keyserver during import" msgstr "" -#: g10/import.c:175 +#: g10/import.c:176 #, fuzzy msgid "do not clear the ownertrust values during import" msgstr "actualizar a base de dados de confiança" -#: g10/import.c:178 +#: g10/import.c:179 #, fuzzy msgid "do not update the trustdb after import" msgstr "actualizar a base de dados de confiança" -#: g10/import.c:181 +#: g10/import.c:182 #, fuzzy msgid "show key during import" msgstr "mostra impressão digital" -#: g10/import.c:184 +#: g10/import.c:185 msgid "only accept updates to existing keys" msgstr "" -#: g10/import.c:187 +#: g10/import.c:188 #, fuzzy msgid "remove unusable parts from key after import" msgstr "chave secreta não utilizável" -#: g10/import.c:190 +#: g10/import.c:191 msgid "remove as much as possible from key after import" msgstr "" -#: g10/import.c:193 +#: g10/import.c:194 msgid "ignore key-signatures which are not self-signatures" msgstr "" -#: g10/import.c:196 +#: g10/import.c:197 msgid "run import filters and export key immediately" msgstr "" -#: g10/import.c:199 +#: g10/import.c:200 msgid "assume the GnuPG key backup format" msgstr "" -#: g10/import.c:203 +#: g10/import.c:204 #, fuzzy msgid "repair keys on import" msgstr "mostra impressão digital" -#: g10/import.c:392 g10/import.c:711 +#: g10/import.c:393 g10/import.c:712 #, c-format msgid "skipping block of type %d\n" msgstr "ignorando bloco do tipo %d\n" -#: g10/import.c:728 +#: g10/import.c:729 #, fuzzy, c-format msgid "%lu keys processed so far\n" msgstr "%lu chaves processadas até agora\n" -#: g10/import.c:814 +#: g10/import.c:815 #, c-format msgid "Total number processed: %lu\n" msgstr "Número total processado: %lu\n" -#: g10/import.c:817 +#: g10/import.c:818 #, fuzzy, c-format #| msgid " skipped new keys: %lu\n" msgid " skipped PGP-2 keys: %lu\n" msgstr " ignorei novas chaves: %lu\n" -#: g10/import.c:819 +#: g10/import.c:820 #, c-format msgid " skipped new keys: %lu\n" msgstr " ignorei novas chaves: %lu\n" -#: g10/import.c:822 +#: g10/import.c:823 #, c-format msgid " w/o user IDs: %lu\n" msgstr " sem IDs de utilizadores: %lu\n" -#: g10/import.c:825 sm/import.c:130 +#: g10/import.c:826 sm/import.c:130 #, c-format msgid " imported: %lu" msgstr " importados: %lu" -#: g10/import.c:829 sm/import.c:134 +#: g10/import.c:830 sm/import.c:134 #, c-format msgid " unchanged: %lu\n" msgstr " não modificados: %lu\n" -#: g10/import.c:831 +#: g10/import.c:832 #, c-format msgid " new user IDs: %lu\n" msgstr " novos IDs de utilizadores: %lu\n" -#: g10/import.c:833 +#: g10/import.c:834 #, c-format msgid " new subkeys: %lu\n" msgstr " novas subchaves: %lu\n" -#: g10/import.c:835 +#: g10/import.c:836 #, c-format msgid " new signatures: %lu\n" msgstr " novas assinaturas: %lu\n" -#: g10/import.c:837 +#: g10/import.c:838 #, c-format msgid " new key revocations: %lu\n" msgstr " novas revogações de chaves: %lu\n" -#: g10/import.c:839 sm/import.c:136 +#: g10/import.c:840 sm/import.c:136 #, c-format msgid " secret keys read: %lu\n" msgstr " chaves secretas lidas: %lu\n" -#: g10/import.c:841 sm/import.c:138 +#: g10/import.c:842 sm/import.c:138 #, c-format msgid " secret keys imported: %lu\n" msgstr " chaves secretas importadas: %lu\n" -#: g10/import.c:843 sm/import.c:140 +#: g10/import.c:844 sm/import.c:140 #, c-format msgid " secret keys unchanged: %lu\n" msgstr " chaves secretas não modificadas: %lu\n" -#: g10/import.c:845 sm/import.c:142 +#: g10/import.c:846 sm/import.c:142 #, c-format msgid " not imported: %lu\n" msgstr " não importadas: %lu\n" -#: g10/import.c:847 +#: g10/import.c:848 #, fuzzy, c-format msgid " signatures cleaned: %lu\n" msgstr " novas assinaturas: %lu\n" -#: g10/import.c:849 +#: g10/import.c:850 #, fuzzy, c-format msgid " user IDs cleaned: %lu\n" msgstr " chaves secretas lidas: %lu\n" -#: g10/import.c:1276 +#: g10/import.c:1277 #, c-format msgid "" "WARNING: key %s contains preferences for unavailable\n" "algorithms on these user IDs:\n" msgstr "" -#: g10/import.c:1318 +#: g10/import.c:1319 #, c-format msgid " \"%s\": preference for cipher algorithm %s\n" msgstr "" -#: g10/import.c:1333 +#: g10/import.c:1334 #, fuzzy, c-format msgid " \"%s\": preference for digest algorithm %s\n" msgstr "assinatura %s de: \"%s\"\n" -#: g10/import.c:1345 +#: g10/import.c:1346 #, c-format msgid " \"%s\": preference for compression algorithm %s\n" msgstr "" -#: g10/import.c:1358 +#: g10/import.c:1359 #, c-format msgid "it is strongly suggested that you update your preferences and\n" msgstr "" -#: g10/import.c:1360 +#: g10/import.c:1361 #, c-format msgid "re-distribute this key to avoid potential algorithm mismatch problems\n" msgstr "" -#: g10/import.c:1385 +#: g10/import.c:1386 #, c-format msgid "you can update your preferences with: gpg --edit-key %s updpref save\n" msgstr "" -#: g10/import.c:1899 g10/import.c:3013 +#: g10/import.c:1902 g10/import.c:3028 #, fuzzy, c-format msgid "key %s: no user ID\n" msgstr "chave %08lX: sem ID de utilizador\n" -#: g10/import.c:1905 +#: g10/import.c:1908 #, fuzzy, c-format msgid "key %s: %s\n" msgstr "ignorado `%s': %s\n" -#: g10/import.c:1906 g10/import.c:2985 +#: g10/import.c:1909 g10/import.c:3000 msgid "rejected by import screener" msgstr "" -#: g10/import.c:1950 +#: g10/import.c:1953 #, fuzzy, c-format msgid "key %s: PKS subkey corruption repaired\n" msgstr "chave %08lX: subchave HKP corrompida foi reparada\n" -#: g10/import.c:1971 +#: g10/import.c:1974 #, fuzzy, c-format msgid "key %s: accepted non self-signed user ID \"%s\"\n" msgstr "chave %08lX: aceite ID de utilizador sem auto-assinatura '%s'\n" -#: g10/import.c:1981 g10/import.c:2012 +#: g10/import.c:1985 g10/import.c:2016 #, fuzzy, c-format msgid "key %s: no valid user IDs\n" msgstr "chave %08lX: sem IDs de utilizadores válidos\n" -#: g10/import.c:1983 +#: g10/import.c:1987 #, c-format msgid "this may be caused by a missing self-signature\n" msgstr "isto pode ser causado por falta de auto-assinatura\n" -#: g10/import.c:2062 g10/import.c:3399 +#: g10/import.c:2066 g10/import.c:3415 #, fuzzy, c-format msgid "key %s: public key not found: %s\n" msgstr "chave %08lX: chave pública não encontrada: %s\n" -#: g10/import.c:2068 +#: g10/import.c:2072 #, fuzzy, c-format msgid "key %s: new key - skipped\n" msgstr "chave %08lX: chave nova - ignorada\n" -#: g10/import.c:2080 +#: g10/import.c:2084 #, c-format msgid "no writable keyring found: %s\n" msgstr "não foi encontrada nenhum porta-chaves onde escrever: %s\n" -#: g10/import.c:2112 g10/import.c:2214 g10/import.c:3476 +#: g10/import.c:2116 g10/import.c:2218 g10/import.c:3492 #, fuzzy, c-format #| msgid "error writing keyring `%s': %s\n" msgid "error writing keyring '%s': %s\n" msgstr "erro na escrita do porta-chaves `%s': %s\n" -#: g10/import.c:2135 +#: g10/import.c:2139 #, fuzzy, c-format msgid "key %s: public key \"%s\" imported\n" msgstr "chave %08lX: chave pública \"%s\" importada\n" -#: g10/import.c:2162 +#: g10/import.c:2166 #, fuzzy, c-format msgid "key %s: doesn't match our copy\n" msgstr "chave %08lX: não corresponde à nossa cópia\n" -#: g10/import.c:2230 +#: g10/import.c:2234 #, fuzzy, c-format msgid "key %s: \"%s\" 1 new user ID\n" msgstr "chave %8lX: \"%s\" 1 novo ID de utilizador\n" -#: g10/import.c:2233 +#: g10/import.c:2237 #, fuzzy, c-format msgid "key %s: \"%s\" %d new user IDs\n" msgstr "chave %08lX: \"%s\" %d novos IDs de utilizadores\n" -#: g10/import.c:2236 +#: g10/import.c:2240 #, fuzzy, c-format msgid "key %s: \"%s\" 1 new signature\n" msgstr "chave %08lX: \"%s\" 1 nova assinatura\n" -#: g10/import.c:2239 +#: g10/import.c:2243 #, fuzzy, c-format msgid "key %s: \"%s\" %d new signatures\n" msgstr "chave %08lX: \"%s\" %d novas assinaturas\n" -#: g10/import.c:2242 +#: g10/import.c:2246 #, fuzzy, c-format msgid "key %s: \"%s\" 1 new subkey\n" msgstr "chave %08lX: \"%s\" 1 nova subchave\n" -#: g10/import.c:2245 +#: g10/import.c:2249 #, fuzzy, c-format msgid "key %s: \"%s\" %d new subkeys\n" msgstr "chave %08lX: \"%s\" %d novas subchaves\n" -#: g10/import.c:2248 +#: g10/import.c:2252 #, fuzzy, c-format msgid "key %s: \"%s\" %d signature cleaned\n" msgstr "chave %08lX: \"%s\" %d novas assinaturas\n" -#: g10/import.c:2251 +#: g10/import.c:2255 #, fuzzy, c-format msgid "key %s: \"%s\" %d signatures cleaned\n" msgstr "chave %08lX: \"%s\" %d novas assinaturas\n" -#: g10/import.c:2254 +#: g10/import.c:2258 #, fuzzy, c-format msgid "key %s: \"%s\" %d user ID cleaned\n" msgstr "chave %08lX: \"%s\" %d novos IDs de utilizadores\n" -#: g10/import.c:2257 +#: g10/import.c:2261 #, fuzzy, c-format msgid "key %s: \"%s\" %d user IDs cleaned\n" msgstr "chave %08lX: \"%s\" %d novos IDs de utilizadores\n" -#: g10/import.c:2293 +#: g10/import.c:2297 #, fuzzy, c-format msgid "key %s: \"%s\" not changed\n" msgstr "chave %08lX: \"%s\" não modificada\n" -#: g10/import.c:2652 g10/import.c:2847 +#: g10/import.c:2667 g10/import.c:2862 #, fuzzy, c-format msgid "key %s: secret key imported\n" msgstr "chave %08lX: chave secreta importada\n" -#: g10/import.c:2660 +#: g10/import.c:2675 #, fuzzy, c-format #| msgid "skipped: secret key already present\n" msgid "key %s: secret key already exists\n" msgstr "ignorado: a chave secreta já está presente\n" -#: g10/import.c:2668 +#: g10/import.c:2683 #, fuzzy, c-format msgid "key %s: error sending to agent: %s\n" msgstr "erro ao enviar para `%s': %s\n" @@ -3984,199 +3990,199 @@ #. * Instead, user should be suggested to run 'gpg --card-status', #. * then, references to a card will be automatically created #. * again. -#: g10/import.c:2837 +#: g10/import.c:2852 #, c-format msgid "To migrate '%s', with each smartcard, run: %s\n" msgstr "" -#: g10/import.c:2984 +#: g10/import.c:2999 #, fuzzy, c-format msgid "secret key %s: %s\n" msgstr "chave `%s' não encontrada: %s\n" -#: g10/import.c:3005 g10/import.c:3044 +#: g10/import.c:3020 g10/import.c:3059 #, fuzzy, c-format msgid "importing secret keys not allowed\n" msgstr "a escrever chave privada para `%s'\n" -#: g10/import.c:3032 +#: g10/import.c:3047 #, fuzzy, c-format msgid "key %s: secret key with invalid cipher %d - skipped\n" msgstr "chave %08lX: chave secreta com cifra inválida %d - ignorada\n" -#: g10/import.c:3194 g10/pkclist.c:72 g10/revoke.c:776 +#: g10/import.c:3209 g10/pkclist.c:72 g10/revoke.c:776 msgid "No reason specified" msgstr "Nenhum motivo especificado" -#: g10/import.c:3195 g10/pkclist.c:74 g10/revoke.c:778 +#: g10/import.c:3210 g10/pkclist.c:74 g10/revoke.c:778 msgid "Key is superseded" msgstr "A chave foi substituída" -#: g10/import.c:3196 g10/pkclist.c:76 g10/revoke.c:777 +#: g10/import.c:3211 g10/pkclist.c:76 g10/revoke.c:777 msgid "Key has been compromised" msgstr "A chave foi comprometida" -#: g10/import.c:3197 g10/pkclist.c:78 g10/revoke.c:779 +#: g10/import.c:3212 g10/pkclist.c:78 g10/revoke.c:779 msgid "Key is no longer used" msgstr "A chave já não é utilizada" -#: g10/import.c:3198 g10/pkclist.c:80 g10/revoke.c:780 +#: g10/import.c:3213 g10/pkclist.c:80 g10/revoke.c:780 msgid "User ID is no longer valid" msgstr "O identificador do utilizador já não é válido" -#: g10/import.c:3323 g10/keylist.c:1258 g10/pkclist.c:84 +#: g10/import.c:3338 g10/keylist.c:1258 g10/pkclist.c:84 #, c-format msgid "reason for revocation: " msgstr "motivo da revocação: " -#: g10/import.c:3342 g10/keylist.c:1277 g10/pkclist.c:100 +#: g10/import.c:3357 g10/keylist.c:1277 g10/pkclist.c:100 #, c-format msgid "revocation comment: " msgstr "comentário da revocação: " -#: g10/import.c:3392 +#: g10/import.c:3408 #, fuzzy, c-format msgid "key %s: no public key - can't apply revocation certificate\n" msgstr "" "chave %08lX: sem chave pública - impossível aplicar certificado\n" "de revogação\n" -#: g10/import.c:3423 +#: g10/import.c:3439 #, fuzzy, c-format msgid "key %s: can't locate original keyblock: %s\n" msgstr "chave %08lX: impossível localizar bloco de chaves original: %s\n" -#: g10/import.c:3430 +#: g10/import.c:3446 #, fuzzy, c-format msgid "key %s: can't read original keyblock: %s\n" msgstr "chave %08lX: impossível ler bloco de chaves original: %s\n" -#: g10/import.c:3450 +#: g10/import.c:3466 #, fuzzy, c-format msgid "key %s: invalid revocation certificate: %s - rejected\n" msgstr "chave %08lX: certificado de revogação inválido: %s - rejeitado\n" -#: g10/import.c:3485 +#: g10/import.c:3501 #, fuzzy, c-format msgid "key %s: \"%s\" revocation certificate imported\n" msgstr "chave %08lX: \"%s\" certificado de revogação importado\n" -#: g10/import.c:3571 +#: g10/import.c:3587 #, fuzzy, c-format msgid "key %s: no user ID for signature\n" msgstr "chave %08lX: nenhum ID de utilizador para assinatura\n" -#: g10/import.c:3588 +#: g10/import.c:3604 #, fuzzy, c-format msgid "key %s: unsupported public key algorithm on user ID \"%s\"\n" msgstr "" "chave %08lX: algoritmo de chave pública não suportado no utilizador \"%s\"\n" -#: g10/import.c:3590 +#: g10/import.c:3606 #, fuzzy, c-format msgid "key %s: invalid self-signature on user ID \"%s\"\n" msgstr "chave %08lX: auto-assinatura inválida do utilizador \"%s\"\n" -#: g10/import.c:3607 g10/import.c:3635 g10/import.c:3691 +#: g10/import.c:3623 g10/import.c:3651 g10/import.c:3707 #, fuzzy, c-format msgid "key %s: unsupported public key algorithm\n" msgstr "chave %08lX: algoritmo de chave pública não suportado\n" -#: g10/import.c:3608 +#: g10/import.c:3624 #, fuzzy, c-format msgid "key %s: invalid direct key signature\n" msgstr "chave %08lX: assinatura directa de chave adicionada\n" -#: g10/import.c:3622 +#: g10/import.c:3638 #, fuzzy, c-format msgid "key %s: no subkey for key binding\n" msgstr "chave %08lX: sem subchave para ligação de chaves\n" -#: g10/import.c:3637 +#: g10/import.c:3653 #, fuzzy, c-format msgid "key %s: invalid subkey binding\n" msgstr "chave %08lX: ligação de subchave inválida\n" -#: g10/import.c:3656 +#: g10/import.c:3672 #, fuzzy, c-format msgid "key %s: removed multiple subkey binding\n" msgstr "chave %08lX: apagada ligação múltipla de subchave \n" -#: g10/import.c:3680 +#: g10/import.c:3696 #, fuzzy, c-format msgid "key %s: no subkey for key revocation\n" msgstr "chave %08lX: sem subchave para revocação de chave\n" -#: g10/import.c:3693 +#: g10/import.c:3709 #, fuzzy, c-format msgid "key %s: invalid subkey revocation\n" msgstr "chave %08lX: revocação de subchave inválida\n" -#: g10/import.c:3708 +#: g10/import.c:3724 #, fuzzy, c-format msgid "key %s: removed multiple subkey revocation\n" msgstr "chave %08lX: removida revogação múltiplace de subchaves\n" -#: g10/import.c:3752 +#: g10/import.c:3771 #, fuzzy, c-format msgid "key %s: skipped user ID \"%s\"\n" msgstr "chave %08lX: ignorado ID de utilizador '" -#: g10/import.c:3779 +#: g10/import.c:3798 #, fuzzy, c-format msgid "key %s: skipped subkey\n" msgstr "chave %08lX: subchave ignorada\n" -#: g10/import.c:3810 +#: g10/import.c:3829 #, fuzzy, c-format msgid "key %s: non exportable signature (class 0x%02X) - skipped\n" msgstr "chave %08lX: assinatura não exportável (classe %02x) - ignorada\n" -#: g10/import.c:3821 +#: g10/import.c:3840 #, fuzzy, c-format msgid "key %s: revocation certificate at wrong place - skipped\n" msgstr "chave %08lX: certificado de revogação no local errado - ignorado\n" -#: g10/import.c:3839 +#: g10/import.c:3868 #, fuzzy, c-format msgid "key %s: invalid revocation certificate: %s - skipped\n" msgstr "chave %08lX: certificado de revogação inválido: %s - ignorado\n" -#: g10/import.c:3853 +#: g10/import.c:3892 #, fuzzy, c-format msgid "key %s: subkey signature in wrong place - skipped\n" msgstr "chave %08lX: assintura da subchave no local errado - ignorado\n" -#: g10/import.c:3861 +#: g10/import.c:3900 #, fuzzy, c-format msgid "key %s: unexpected signature class (0x%02X) - skipped\n" msgstr "chave %08lX: classe de assinatura inesperada (%02x) - ignorada\n" -#: g10/import.c:4034 +#: g10/import.c:4073 #, fuzzy, c-format msgid "key %s: duplicated user ID detected - merged\n" msgstr "chave %08lX: detectado ID de utilizador duplicado - fundido\n" -#: g10/import.c:4099 +#: g10/import.c:4138 #, fuzzy, c-format msgid "WARNING: key %s may be revoked: fetching revocation key %s\n" msgstr "" "AVISO: a chave %08lX pode estar revocada: a transferir a chave de revocação " "%08lX\n" -#: g10/import.c:4115 +#: g10/import.c:4154 #, fuzzy, c-format msgid "WARNING: key %s may be revoked: revocation key %s not present.\n" msgstr "" "AVISO: a chave %08lX pode estar revocada: chave de revocação %08lX não " "presente.\n" -#: g10/import.c:4181 +#: g10/import.c:4220 #, fuzzy, c-format msgid "key %s: \"%s\" revocation certificate added\n" msgstr "chave %08lX: certificado de revogação \"%s\" adicionado\n" -#: g10/import.c:4219 +#: g10/import.c:4258 #, fuzzy, c-format msgid "key %s: direct key signature added\n" msgstr "chave %08lX: assinatura directa de chave adicionada\n" @@ -5114,7 +5120,7 @@ msgstr "" "Não pode adicionar um identificador fotográfico a uma chave tipo PGP2.\n" -#: g10/keyedit.c:4293 g10/keygen.c:2899 +#: g10/keyedit.c:4293 g10/keygen.c:2953 msgid "Such a user ID already exists on this key!\n" msgstr "" @@ -5404,83 +5410,83 @@ msgstr "" "A mostrar a fotografia %s com o tamanho %ld da chave 0x%08lX (uid %d)\n" -#: g10/keygen.c:169 +#: g10/keygen.c:174 #, fuzzy, c-format msgid "invalid value for option '%s'\n" msgstr "opções de importação inválidas\n" -#: g10/keygen.c:322 +#: g10/keygen.c:331 #, fuzzy, c-format msgid "preference '%s' duplicated\n" msgstr "preferência %c%lu duplicada\n" -#: g10/keygen.c:329 +#: g10/keygen.c:338 #, fuzzy, c-format msgid "too many cipher preferences\n" msgstr "demasiadas preferências `%c'\n" -#: g10/keygen.c:331 +#: g10/keygen.c:340 #, fuzzy, c-format msgid "too many digest preferences\n" msgstr "demasiadas preferências `%c'\n" -#: g10/keygen.c:333 +#: g10/keygen.c:342 #, fuzzy, c-format msgid "too many compression preferences\n" msgstr "demasiadas preferências `%c'\n" -#: g10/keygen.c:493 +#: g10/keygen.c:502 #, fuzzy, c-format msgid "invalid item '%s' in preference string\n" msgstr "caracter inválido na cadeia de caractéres da preferência\n" -#: g10/keygen.c:972 +#: g10/keygen.c:1020 #, c-format msgid "writing direct signature\n" msgstr "a escrever a assinatura directa\n" -#: g10/keygen.c:1018 +#: g10/keygen.c:1066 #, c-format msgid "writing self signature\n" msgstr "a escrever a auto-assinatura\n" -#: g10/keygen.c:1075 +#: g10/keygen.c:1123 #, c-format msgid "writing key binding signature\n" msgstr "a escrever a assinatura ligada a uma chave\n" -#: g10/keygen.c:1440 g10/keygen.c:1445 g10/keygen.c:1497 g10/keygen.c:1502 -#: g10/keygen.c:1656 g10/keygen.c:1661 +#: g10/keygen.c:1494 g10/keygen.c:1499 g10/keygen.c:1551 g10/keygen.c:1556 +#: g10/keygen.c:1710 g10/keygen.c:1715 #, c-format msgid "keysize invalid; using %u bits\n" msgstr "tamanho de chave inválido; a utilizar %u bits\n" -#: g10/keygen.c:1451 g10/keygen.c:1508 g10/keygen.c:1516 g10/keygen.c:1667 +#: g10/keygen.c:1505 g10/keygen.c:1562 g10/keygen.c:1570 g10/keygen.c:1721 #, c-format msgid "keysize rounded up to %u bits\n" msgstr "tamanho da chave arredondado para %u bits\n" -#: g10/keygen.c:1542 +#: g10/keygen.c:1596 #, c-format msgid "" "WARNING: some OpenPGP programs can't handle a DSA key with this digest size\n" msgstr "" -#: g10/keygen.c:1723 +#: g10/keygen.c:1777 #, fuzzy msgid "Sign" msgstr "sign" -#: g10/keygen.c:1726 +#: g10/keygen.c:1780 msgid "Certify" msgstr "" -#: g10/keygen.c:1729 +#: g10/keygen.c:1783 #, fuzzy msgid "Encrypt" msgstr "cifrar dados" -#: g10/keygen.c:1732 +#: g10/keygen.c:1786 msgid "Authenticate" msgstr "" @@ -5494,169 +5500,169 @@ #. * a = Toggle authentication capability #. * q = Finish #. -#: g10/keygen.c:1753 +#: g10/keygen.c:1807 msgid "SsEeAaQq" msgstr "" -#: g10/keygen.c:1784 +#: g10/keygen.c:1838 #, c-format msgid "Possible actions for a %s key: " msgstr "" -#: g10/keygen.c:1790 +#: g10/keygen.c:1844 msgid "Current allowed actions: " msgstr "" -#: g10/keygen.c:1795 +#: g10/keygen.c:1849 #, c-format msgid " (%c) Toggle the sign capability\n" msgstr "" -#: g10/keygen.c:1798 +#: g10/keygen.c:1852 #, fuzzy, c-format msgid " (%c) Toggle the encrypt capability\n" msgstr " (%d) ElGamal (apenas cifragem)\n" -#: g10/keygen.c:1801 +#: g10/keygen.c:1855 #, c-format msgid " (%c) Toggle the authenticate capability\n" msgstr "" -#: g10/keygen.c:1804 +#: g10/keygen.c:1858 #, c-format msgid " (%c) Finished\n" msgstr "" -#: g10/keygen.c:1930 +#: g10/keygen.c:1984 #, fuzzy, c-format msgid " (%d) RSA and RSA (default)\n" msgstr " (%d) DSA e ElGamal (por omissão)\n" -#: g10/keygen.c:1934 +#: g10/keygen.c:1988 #, fuzzy, c-format msgid " (%d) DSA and Elgamal\n" msgstr " (%d) DSA e ElGamal (por omissão)\n" -#: g10/keygen.c:1937 +#: g10/keygen.c:1991 #, c-format msgid " (%d) DSA (sign only)\n" msgstr " (%d) DSA (apenas assinatura)\n" -#: g10/keygen.c:1939 +#: g10/keygen.c:1993 #, c-format msgid " (%d) RSA (sign only)\n" msgstr " (%d) RSA (apenas assinatura)\n" -#: g10/keygen.c:1945 +#: g10/keygen.c:1999 #, fuzzy, c-format msgid " (%d) Elgamal (encrypt only)\n" msgstr " (%d) ElGamal (apenas cifragem)\n" -#: g10/keygen.c:1947 +#: g10/keygen.c:2001 #, c-format msgid " (%d) RSA (encrypt only)\n" msgstr " (%d) RSA (apenas cifragem)\n" -#: g10/keygen.c:1953 +#: g10/keygen.c:2007 #, fuzzy, c-format msgid " (%d) DSA (set your own capabilities)\n" msgstr " (%d) RSA (apenas cifragem)\n" -#: g10/keygen.c:1955 +#: g10/keygen.c:2009 #, fuzzy, c-format msgid " (%d) RSA (set your own capabilities)\n" msgstr " (%d) RSA (apenas cifragem)\n" -#: g10/keygen.c:1961 +#: g10/keygen.c:2015 #, fuzzy, c-format msgid " (%d) ECC and ECC\n" msgstr " (%d) DSA e ElGamal (por omissão)\n" -#: g10/keygen.c:1963 +#: g10/keygen.c:2017 #, fuzzy, c-format #| msgid " (%d) DSA (sign only)\n" msgid " (%d) ECC (sign only)\n" msgstr " (%d) DSA (apenas assinatura)\n" -#: g10/keygen.c:1965 +#: g10/keygen.c:2019 #, fuzzy, c-format msgid " (%d) ECC (set your own capabilities)\n" msgstr " (%d) RSA (apenas cifragem)\n" -#: g10/keygen.c:1967 +#: g10/keygen.c:2021 #, fuzzy, c-format #| msgid " (%d) RSA (encrypt only)\n" msgid " (%d) ECC (encrypt only)\n" msgstr " (%d) RSA (apenas cifragem)\n" -#: g10/keygen.c:1971 +#: g10/keygen.c:2025 #, fuzzy, c-format msgid " (%d) Existing key\n" msgstr " (%d) RSA (apenas cifragem)\n" -#: g10/keygen.c:1973 +#: g10/keygen.c:2027 #, fuzzy, c-format msgid " (%d) Existing key from card\n" msgstr " (%d) RSA (apenas cifragem)\n" -#: g10/keygen.c:2069 sm/certreqgen-ui.c:202 +#: g10/keygen.c:2123 sm/certreqgen-ui.c:202 #, fuzzy msgid "Enter the keygrip: " msgstr "Notação de assinatura: " -#: g10/keygen.c:2082 sm/certreqgen-ui.c:210 +#: g10/keygen.c:2136 sm/certreqgen-ui.c:210 msgid "Not a valid keygrip (expecting 40 hex digits)\n" msgstr "" -#: g10/keygen.c:2084 sm/certreqgen-ui.c:212 +#: g10/keygen.c:2138 sm/certreqgen-ui.c:212 #, fuzzy msgid "No key with this keygrip\n" msgstr "Nenhum ID de utilizador com índice %d\n" -#: g10/keygen.c:2103 g10/keygen.c:2113 g10/keygen.c:3216 g10/keygen.c:3227 +#: g10/keygen.c:2157 g10/keygen.c:2167 g10/keygen.c:3270 g10/keygen.c:3281 #: sm/certreqgen-ui.c:230 sm/certreqgen-ui.c:239 #, fuzzy, c-format msgid "error reading the card: %s\n" msgstr "%s: erro ao ler registo livre: %s\n" -#: g10/keygen.c:2107 g10/keygen.c:3220 sm/certreqgen-ui.c:233 +#: g10/keygen.c:2161 g10/keygen.c:3274 sm/certreqgen-ui.c:233 #, fuzzy, c-format msgid "Serial number of the card: %s\n" msgstr "erro na criação da frase secreta: %s\n" -#: g10/keygen.c:2120 sm/certreqgen-ui.c:245 +#: g10/keygen.c:2174 sm/certreqgen-ui.c:245 #, fuzzy msgid "Available keys:\n" msgstr "desactiva uma chave" -#: g10/keygen.c:2297 g10/keygen.c:2311 +#: g10/keygen.c:2351 g10/keygen.c:2365 #, fuzzy, c-format #| msgid "rounded up to %u bits\n" msgid "rounded to %u bits\n" msgstr "arredondado para %u bits\n" -#: g10/keygen.c:2352 +#: g10/keygen.c:2406 #, c-format msgid "%s keys may be between %u and %u bits long.\n" msgstr "" -#: g10/keygen.c:2360 +#: g10/keygen.c:2414 #, fuzzy, c-format msgid "What keysize do you want for the subkey? (%u) " msgstr "Qual o tamanho de chave desejado? (1024) " -#: g10/keygen.c:2377 sm/certreqgen-ui.c:189 +#: g10/keygen.c:2431 sm/certreqgen-ui.c:189 #, c-format msgid "Requested keysize is %u bits\n" msgstr "O tamanho de chave pedido é %u bits\n" -#: g10/keygen.c:2423 +#: g10/keygen.c:2477 #, fuzzy #| msgid "Please select what kind of key you want:\n" msgid "Please select which elliptic curve you want:\n" msgstr "Por favor selecione o tipo de chave desejado:\n" -#: g10/keygen.c:2611 +#: g10/keygen.c:2665 msgid "" "Please specify how long the key should be valid.\n" " 0 = key does not expire\n" @@ -5672,7 +5678,7 @@ " m = chave expira em n meses\n" " y = chave expira em n anos\n" -#: g10/keygen.c:2622 +#: g10/keygen.c:2676 msgid "" "Please specify how long the signature should be valid.\n" " 0 = signature does not expire\n" @@ -5688,40 +5694,40 @@ " m = assinatura expira em n meses\n" " y = assinatura expira em n anos\n" -#: g10/keygen.c:2645 +#: g10/keygen.c:2699 msgid "Key is valid for? (0) " msgstr "A chave é valida por? (0) " -#: g10/keygen.c:2650 +#: g10/keygen.c:2704 #, fuzzy, c-format msgid "Signature is valid for? (%s) " msgstr "A assinatura é valida por? (0) " -#: g10/keygen.c:2663 g10/keygen.c:2688 +#: g10/keygen.c:2717 g10/keygen.c:2742 msgid "invalid value\n" msgstr "valor inválido\n" -#: g10/keygen.c:2670 +#: g10/keygen.c:2724 #, fuzzy msgid "Key does not expire at all\n" msgstr "A %s não expira nunca\n" -#: g10/keygen.c:2671 +#: g10/keygen.c:2725 #, fuzzy msgid "Signature does not expire at all\n" msgstr "A %s não expira nunca\n" -#: g10/keygen.c:2676 +#: g10/keygen.c:2730 #, fuzzy, c-format msgid "Key expires at %s\n" msgstr "%s expira em %s\n" -#: g10/keygen.c:2677 +#: g10/keygen.c:2731 #, fuzzy, c-format msgid "Signature expires at %s\n" msgstr "Esta assinatura expirou em %s.\n" -#: g10/keygen.c:2681 +#: g10/keygen.c:2735 msgid "" "Your system can't display dates beyond 2038.\n" "However, it will be correctly handled up to 2106.\n" @@ -5729,12 +5735,12 @@ "O seu sistema não consegue mostrar datas para além de 2038.\n" "No entanto, estas vão ser tratadas correctamente até 2106.\n" -#: g10/keygen.c:2694 +#: g10/keygen.c:2748 #, fuzzy msgid "Is this correct? (y/N) " msgstr "Está correto (s/n)? " -#: g10/keygen.c:2762 +#: g10/keygen.c:2816 msgid "" "\n" "GnuPG needs to construct a user ID to identify your key.\n" @@ -5745,7 +5751,7 @@ #. but you should keep your existing translation. In case #. the new string is not translated this old string will #. be used. -#: g10/keygen.c:2777 +#: g10/keygen.c:2831 #, fuzzy msgid "" "\n" @@ -5763,50 +5769,50 @@ " \"Heinrich Heine (Der Dichter) \"\n" "\n" -#: g10/keygen.c:2796 +#: g10/keygen.c:2850 msgid "Real name: " msgstr "Nome completo: " -#: g10/keygen.c:2805 +#: g10/keygen.c:2859 msgid "Invalid character in name\n" msgstr "Caracter inválido no nome\n" -#: g10/keygen.c:2806 +#: g10/keygen.c:2860 #, c-format msgid "The characters '%s' and '%s' may not appear in name\n" msgstr "" -#: g10/keygen.c:2810 +#: g10/keygen.c:2864 msgid "Name may not start with a digit\n" msgstr "O nome não pode começar com um dígito\n" -#: g10/keygen.c:2813 +#: g10/keygen.c:2867 msgid "Name must be at least 5 characters long\n" msgstr "O nome deve ter pelo menos 5 caracteres\n" -#: g10/keygen.c:2823 +#: g10/keygen.c:2877 msgid "Email address: " msgstr "Endereço de correio eletrónico: " -#: g10/keygen.c:2829 +#: g10/keygen.c:2883 msgid "Not a valid email address\n" msgstr "Endereço eletrónico inválido\n" -#: g10/keygen.c:2838 +#: g10/keygen.c:2892 msgid "Comment: " msgstr "Comentário: " -#: g10/keygen.c:2844 +#: g10/keygen.c:2898 msgid "Invalid character in comment\n" msgstr "Caracter inválido no comentário\n" -#: g10/keygen.c:2880 +#: g10/keygen.c:2934 #, fuzzy, c-format #| msgid "You are using the `%s' character set.\n" msgid "You are using the '%s' character set.\n" msgstr "Você está usando o conjunto de caracteres `%s'.\n" -#: g10/keygen.c:2886 +#: g10/keygen.c:2940 #, c-format msgid "" "You selected this USER-ID:\n" @@ -5817,7 +5823,7 @@ " \"%s\"\n" "\n" -#: g10/keygen.c:2891 +#: g10/keygen.c:2945 msgid "Please don't put the email address into the real name or the comment\n" msgstr "" "Por favor não coloque o endereço de email no nome verdadeiro ou no " @@ -5834,35 +5840,35 @@ #. o = Okay (ready, continue) #. q = Quit #. -#: g10/keygen.c:2916 +#: g10/keygen.c:2970 msgid "NnCcEeOoQq" msgstr "NnCcEeOoSs" -#: g10/keygen.c:2926 +#: g10/keygen.c:2980 msgid "Change (N)ame, (C)omment, (E)mail or (Q)uit? " msgstr "Mudar (N)ome, (C)omentário, (E)mail ou (S)air? " -#: g10/keygen.c:2927 +#: g10/keygen.c:2981 msgid "Change (N)ame, (C)omment, (E)mail or (O)kay/(Q)uit? " msgstr "Mudar (N)ome, (C)omentário, (E)ndereço ou (O)k/(S)air? " -#: g10/keygen.c:2932 +#: g10/keygen.c:2986 #, fuzzy #| msgid "Change (N)ame, (C)omment, (E)mail or (Q)uit? " msgid "Change (N)ame, (E)mail, or (Q)uit? " msgstr "Mudar (N)ome, (C)omentário, (E)mail ou (S)air? " -#: g10/keygen.c:2933 +#: g10/keygen.c:2987 #, fuzzy #| msgid "Change (N)ame, (C)omment, (E)mail or (O)kay/(Q)uit? " msgid "Change (N)ame, (E)mail, or (O)kay/(Q)uit? " msgstr "Mudar (N)ome, (C)omentário, (E)ndereço ou (O)k/(S)air? " -#: g10/keygen.c:2952 +#: g10/keygen.c:3006 msgid "Please correct the error first\n" msgstr "Por favor corrija primeiro o erro\n" -#: g10/keygen.c:2998 +#: g10/keygen.c:3052 msgid "" "We need to generate a lot of random bytes. It is a good idea to perform\n" "some other action (type on the keyboard, move the mouse, utilize the\n" @@ -5874,13 +5880,13 @@ "geração dos números primos; isso dá ao gerador de números aleatórios\n" "uma hipótese maior de ganhar entropia suficiente.\n" -#: g10/keygen.c:4278 g10/keygen.c:4349 g10/keygen.c:4367 g10/keygen.c:4395 -#: g10/keygen.c:4739 g10/keygen.c:5239 g10/keygen.c:5534 g10/keygen.c:5639 +#: g10/keygen.c:4332 g10/keygen.c:4403 g10/keygen.c:4421 g10/keygen.c:4449 +#: g10/keygen.c:4793 g10/keygen.c:5293 g10/keygen.c:5588 g10/keygen.c:5693 #, c-format msgid "Key generation failed: %s\n" msgstr "A geração de chaves falhou: %s\n" -#: g10/keygen.c:4287 +#: g10/keygen.c:4341 #, c-format msgid "" "About to create a key for:\n" @@ -5888,69 +5894,69 @@ "\n" msgstr "" -#: g10/keygen.c:4289 +#: g10/keygen.c:4343 msgid "Continue? (Y/n) " msgstr "" -#: g10/keygen.c:4310 +#: g10/keygen.c:4364 #, fuzzy, c-format msgid "A key for \"%s\" already exists\n" msgstr "%s' já comprimido\n" -#: g10/keygen.c:4315 +#: g10/keygen.c:4369 #, fuzzy #| msgid "Create anyway? " msgid "Create anyway? (y/N) " msgstr "Criar mesmo assim?" -#: g10/keygen.c:4321 +#: g10/keygen.c:4375 #, fuzzy, c-format #| msgid "Create anyway? " msgid "creating anyway\n" msgstr "Criar mesmo assim?" -#: g10/keygen.c:4722 +#: g10/keygen.c:4776 #, c-format msgid "Note: Use \"%s %s\" for a full featured key generation dialog.\n" msgstr "" -#: g10/keygen.c:4771 +#: g10/keygen.c:4825 #, c-format msgid "Key generation canceled.\n" msgstr "Geração de chave cancelada.\n" -#: g10/keygen.c:4831 +#: g10/keygen.c:4885 #, fuzzy, c-format msgid "can't create backup file '%s': %s\n" msgstr "impossível criar `%s': %s\n" -#: g10/keygen.c:4851 +#: g10/keygen.c:4905 #, fuzzy, c-format msgid "Note: backup of card key saved to '%s'\n" msgstr "NOTA: chave secreta %08lX expirou em %s\n" -#: g10/keygen.c:5010 g10/keygen.c:5172 +#: g10/keygen.c:5064 g10/keygen.c:5226 #, fuzzy, c-format #| msgid "writing public key to `%s'\n" msgid "writing public key to '%s'\n" msgstr "a escrever chave pública para `%s'\n" -#: g10/keygen.c:5166 +#: g10/keygen.c:5220 #, c-format msgid "no writable public keyring found: %s\n" msgstr "nenhum porta-chaves público com permissões de escrita encontrado: %s\n" -#: g10/keygen.c:5180 +#: g10/keygen.c:5234 #, fuzzy, c-format #| msgid "error writing public keyring `%s': %s\n" msgid "error writing public keyring '%s': %s\n" msgstr "erro ao escrever no porta-chaves público `%s': %s\n" -#: g10/keygen.c:5210 +#: g10/keygen.c:5264 msgid "public and secret key created and signed.\n" msgstr "chaves pública e privada criadas e assinadas.\n" -#: g10/keygen.c:5226 +#: g10/keygen.c:5280 #, fuzzy msgid "" "Note that this key cannot be used for encryption. You may want to use\n" @@ -5959,7 +5965,7 @@ "Note que esta chave não pode ser usada para cifragem. Você pode usar\n" "o comando \"--edit-key\" para gerar uma chave secundária para esse fim.\n" -#: g10/keygen.c:5401 g10/keygen.c:5590 +#: g10/keygen.c:5455 g10/keygen.c:5644 #, c-format msgid "" "key has been created %lu second in future (time warp or clock problem)\n" @@ -5967,7 +5973,7 @@ "a chave foi criada %lu segundo no futuro\n" "(viagem no tempo ou problema no relógio)\n" -#: g10/keygen.c:5403 g10/keygen.c:5592 +#: g10/keygen.c:5457 g10/keygen.c:5646 #, c-format msgid "" "key has been created %lu seconds in future (time warp or clock problem)\n" @@ -5975,23 +5981,23 @@ "a chave foi criada %lu segundos no futuro\n" "(viagem no tempo ou problema no relógio)\n" -#: g10/keygen.c:5414 g10/keygen.c:5603 +#: g10/keygen.c:5468 g10/keygen.c:5657 #, fuzzy, c-format #| msgid "NOTE: creating subkeys for v3 keys is not OpenPGP compliant\n" msgid "Note: creating subkeys for v3 keys is not OpenPGP compliant\n" msgstr "NOTA: a criação de sub-chave para chaves v3 não respeito o OpenPGP\n" -#: g10/keygen.c:5426 g10/keygen.c:5428 +#: g10/keygen.c:5480 g10/keygen.c:5482 #, c-format msgid "Secret parts of primary key are not available.\n" msgstr "Componentes secretas da chave primária não disponíveis.\n" -#: g10/keygen.c:5435 g10/keygen.c:5437 +#: g10/keygen.c:5489 g10/keygen.c:5491 #, fuzzy, c-format msgid "Secret parts of primary key are stored on-card.\n" msgstr "Componentes secretas da chave primária não disponíveis.\n" -#: g10/keygen.c:5456 g10/keygen.c:5617 +#: g10/keygen.c:5510 g10/keygen.c:5671 #, fuzzy msgid "Really create? (y/N) " msgstr "Realmente criar? " @@ -7093,31 +7099,31 @@ msgid "data not saved; use option \"--output\" to save it\n" msgstr "dados não gravados; use a opção \"--output\" para gravá-los\n" -#: g10/plaintext.c:615 +#: g10/plaintext.c:620 msgid "Detached signature.\n" msgstr "Assinatura separada.\n" -#: g10/plaintext.c:623 +#: g10/plaintext.c:628 msgid "Please enter name of data file: " msgstr "Por favor digite o nome do ficheiro de dados: " -#: g10/plaintext.c:660 +#: g10/plaintext.c:665 #, c-format msgid "reading stdin ...\n" msgstr "lendo do \"stdin\" ...\n" -#: g10/plaintext.c:705 +#: g10/plaintext.c:710 #, c-format msgid "no signed data\n" msgstr "não há dados assinados\n" -#: g10/plaintext.c:723 +#: g10/plaintext.c:728 #, fuzzy, c-format #| msgid "can't open signed data `%s'\n" msgid "can't open signed data '%s'\n" msgstr "impossível abrir dados assinados `%s'\n" -#: g10/plaintext.c:758 +#: g10/plaintext.c:763 #, fuzzy, c-format msgid "can't open signed data fd=%d: %s\n" msgstr "impossível abrir dados assinados `%s'\n" @@ -8126,7 +8132,7 @@ msgid "no need for a trustdb check\n" msgstr "não é necessária uma verificação da base de dados de confiança\n" -#: g10/trustdb.c:631 g10/trustdb.c:2326 +#: g10/trustdb.c:631 g10/trustdb.c:2338 #, c-format msgid "next trustdb check due at %s\n" msgstr "proxima verificação da base de dados de confiança a %s\n" @@ -8156,39 +8162,39 @@ msgid "checking the trustdb\n" msgstr "a verificar a base de dados de confiança\n" -#: g10/trustdb.c:2047 +#: g10/trustdb.c:2059 #, fuzzy, c-format msgid "%d key processed" msgid_plural "%d keys processed" msgstr[0] "%lu chaves processadas até agora\n" msgstr[1] "%lu chaves processadas até agora\n" -#: g10/trustdb.c:2050 +#: g10/trustdb.c:2062 #, c-format msgid " (%d validity count cleared)\n" msgid_plural " (%d validity counts cleared)\n" msgstr[0] "" msgstr[1] "" -#: g10/trustdb.c:2120 +#: g10/trustdb.c:2132 #, fuzzy, c-format msgid "no ultimately trusted keys found\n" msgstr "" "chave pública da chave absolutamente de confiança %08lX não encontrada\n" -#: g10/trustdb.c:2134 +#: g10/trustdb.c:2146 #, fuzzy, c-format msgid "public key of ultimately trusted key %s not found\n" msgstr "" "chave pública da chave absolutamente de confiança %08lX não encontrada\n" -#: g10/trustdb.c:2252 +#: g10/trustdb.c:2264 #, c-format msgid "" "depth: %d valid: %3d signed: %3d trust: %d-, %dq, %dn, %dm, %df, %du\n" msgstr "" -#: g10/trustdb.c:2333 +#: g10/trustdb.c:2345 #, fuzzy, c-format msgid "unable to update trustdb version record: write failed: %s\n" msgstr "registo de confiança %lu, tipo %d: escrita falhou: %s\n" @@ -8304,88 +8310,94 @@ #. TRANSLATORS: Put a \x1f right before a colon. This can be #. * used by pinentry to nicely align the names and values. Keep #. * the %s at the start and end of the string. -#: scd/app-p15.c:5116 scd/app-openpgp.c:2154 +#: scd/app-p15.c:5145 scd/app-nks.c:1541 scd/app-openpgp.c:2154 #, c-format msgid "%sNumber: %s%%0AHolder: %s%s" msgstr "" #. TRANSLATORS: This is the number of remaining attempts to #. * enter a PIN. Use %%0A (double-percent,0A) for a linefeed. -#: scd/app-p15.c:5135 scd/app-openpgp.c:2170 +#: scd/app-p15.c:5164 scd/app-nks.c:1560 scd/app-openpgp.c:2170 #, c-format msgid "Remaining attempts: %d" msgstr "" -#: scd/app-p15.c:5214 scd/app-nks.c:1113 +#: scd/app-p15.c:5243 scd/app-nks.c:2112 msgid "||Please enter the PIN for the key to create qualified signatures." msgstr "" #. TRANSLATORS: Do not translate the "|A|" prefix but keep it at #. the start of the string. Use %0A (single percent) for a linefeed. -#: scd/app-p15.c:5217 scd/app-openpgp.c:2464 +#: scd/app-p15.c:5246 scd/app-openpgp.c:2465 #, fuzzy msgid "|A|Please enter the Admin PIN" msgstr "muda a frase secreta" -#: scd/app-p15.c:5219 scd/app-nks.c:1103 +#: scd/app-p15.c:5248 scd/app-nks.c:2102 #, fuzzy msgid "|P|Please enter the PIN Unblocking Code (PUK) for the standard keys." msgstr "motivo da revocação: " -#: scd/app-p15.c:5222 scd/app-nks.c:1095 +#: scd/app-p15.c:5251 scd/app-nks.c:2093 #, fuzzy msgid "||Please enter the PIN for the standard keys." msgstr "muda a frase secreta" -#: scd/app-nks.c:709 scd/app-openpgp.c:3666 +#: scd/app-nks.c:1479 scd/app-openpgp.c:3675 #, c-format msgid "RSA modulus missing or not of size %d bits\n" msgstr "" -#: scd/app-nks.c:717 scd/app-openpgp.c:3678 +#: scd/app-nks.c:1487 scd/app-openpgp.c:3687 #, c-format msgid "RSA public exponent missing or larger than %d bits\n" msgstr "" -#: scd/app-nks.c:797 scd/app-openpgp.c:2327 scd/app-openpgp.c:2346 -#: scd/app-openpgp.c:2513 scd/app-openpgp.c:2531 scd/app-openpgp.c:2829 -#: scd/app-openpgp.c:2876 scd/app-openpgp.c:2991 scd/app-dinsig.c:302 +#: scd/app-nks.c:1660 +#, fuzzy +#| msgid "Note: This key has been disabled.\n" +msgid "Note: PIN has not yet been enabled." +msgstr "Nota: Esta chave foi desactivada.\n" + +#: scd/app-nks.c:1671 scd/app-openpgp.c:2327 scd/app-openpgp.c:2346 +#: scd/app-openpgp.c:2515 scd/app-openpgp.c:2533 scd/app-openpgp.c:2832 +#: scd/app-openpgp.c:2879 scd/app-openpgp.c:3000 scd/app-dinsig.c:303 #, c-format msgid "PIN callback returned error: %s\n" msgstr "" -#: scd/app-nks.c:830 +#: scd/app-nks.c:1707 #, c-format msgid "the NullPIN has not yet been changed\n" msgstr "" -#: scd/app-nks.c:1094 +#: scd/app-nks.c:2092 #, fuzzy msgid "|N|Please enter a new PIN for the standard keys." msgstr "muda a frase secreta" -#: scd/app-nks.c:1101 +#: scd/app-nks.c:2100 #, fuzzy msgid "|NP|Please enter a new PIN Unblocking Code (PUK) for the standard keys." msgstr "motivo da revocação: " -#: scd/app-nks.c:1111 +#: scd/app-nks.c:2110 msgid "|N|Please enter a new PIN for the key to create qualified signatures." msgstr "" -#: scd/app-nks.c:1121 +#: scd/app-nks.c:2120 msgid "" "|NP|Please enter a new PIN Unblocking Code (PUK) for the key to create " "qualified signatures." msgstr "" -#: scd/app-nks.c:1123 +#: scd/app-nks.c:2122 msgid "" "|P|Please enter the PIN Unblocking Code (PUK) for the key to create " "qualified signatures." msgstr "" -#: scd/app-nks.c:1230 scd/app-openpgp.c:2910 scd/app-dinsig.c:532 +#: scd/app-nks.c:2295 scd/app-openpgp.c:2913 scd/app-dinsig.c:535 #, fuzzy, c-format msgid "error getting new PIN: %s\n" msgstr "erro na criação da frase secreta: %s\n" @@ -8400,7 +8412,7 @@ msgid "failed to store the creation date: %s\n" msgstr "falha ao criar 'cache' do porta-chaves: %s\n" -#: scd/app-openpgp.c:1271 scd/app-openpgp.c:2857 scd/app-openpgp.c:5041 +#: scd/app-openpgp.c:1271 scd/app-openpgp.c:2860 scd/app-openpgp.c:5051 #, c-format msgid "error retrieving CHV status from card\n" msgstr "" @@ -8421,7 +8433,7 @@ msgid "response does not contain the EC public key\n" msgstr "remover chaves do porta-chaves público" -#: scd/app-openpgp.c:1664 scd/app-openpgp.c:4286 +#: scd/app-openpgp.c:1664 scd/app-openpgp.c:4295 #, c-format msgid "response does not contain the public key data\n" msgstr "" @@ -8454,23 +8466,23 @@ msgid "||Please unlock the card" msgstr "muda a frase secreta" -#: scd/app-openpgp.c:2353 scd/app-openpgp.c:2538 scd/app-openpgp.c:2836 +#: scd/app-openpgp.c:2353 scd/app-openpgp.c:2540 scd/app-openpgp.c:2839 #, c-format msgid "PIN for CHV%d is too short; minimum length is %d\n" msgstr "" -#: scd/app-openpgp.c:2367 scd/app-openpgp.c:2414 scd/app-openpgp.c:2552 -#: scd/app-openpgp.c:4644 +#: scd/app-openpgp.c:2368 scd/app-openpgp.c:2415 scd/app-openpgp.c:2554 +#: scd/app-openpgp.c:4654 #, fuzzy, c-format msgid "verify CHV%d failed: %s\n" msgstr "A geração de chaves falhou: %s\n" -#: scd/app-openpgp.c:2450 scd/app-openpgp.c:5050 +#: scd/app-openpgp.c:2451 scd/app-openpgp.c:5060 #, c-format msgid "card is permanently locked!\n" msgstr "" -#: scd/app-openpgp.c:2454 +#: scd/app-openpgp.c:2455 #, c-format msgid "%d Admin PIN attempt remaining before card is permanently locked\n" msgid_plural "" @@ -8478,22 +8490,22 @@ msgstr[0] "" msgstr[1] "" -#: scd/app-openpgp.c:2485 +#: scd/app-openpgp.c:2486 #, c-format msgid "access to admin commands is not configured\n" msgstr "" -#: scd/app-openpgp.c:2823 +#: scd/app-openpgp.c:2826 #, fuzzy msgid "||Please enter the PIN" msgstr "muda a frase secreta" -#: scd/app-openpgp.c:2872 +#: scd/app-openpgp.c:2875 #, fuzzy msgid "||Please enter the Reset Code for the card" msgstr "motivo da revocação: " -#: scd/app-openpgp.c:2882 scd/app-openpgp.c:2943 +#: scd/app-openpgp.c:2885 scd/app-openpgp.c:2946 #, c-format msgid "Reset Code is too short; minimum length is %d\n" msgstr "" @@ -8501,128 +8513,128 @@ #. 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:2905 +#: scd/app-openpgp.c:2908 msgid "|RN|New Reset Code" msgstr "" -#: scd/app-openpgp.c:2906 +#: scd/app-openpgp.c:2909 msgid "|AN|New Admin PIN" msgstr "" -#: scd/app-openpgp.c:2906 +#: scd/app-openpgp.c:2909 msgid "|N|New PIN" msgstr "" -#: scd/app-openpgp.c:2987 +#: scd/app-openpgp.c:2996 #, fuzzy msgid "||Please enter the Admin PIN and New Admin PIN" msgstr "muda a frase secreta" -#: scd/app-openpgp.c:2988 +#: scd/app-openpgp.c:2997 #, fuzzy msgid "||Please enter the PIN and New PIN" msgstr "muda a frase secreta" -#: scd/app-openpgp.c:3050 scd/app-openpgp.c:4346 +#: scd/app-openpgp.c:3059 scd/app-openpgp.c:4355 #, fuzzy, c-format msgid "error reading application data\n" msgstr "erro na leitura do bloco de chave: %s\n" -#: scd/app-openpgp.c:3056 scd/app-openpgp.c:4353 +#: scd/app-openpgp.c:3065 scd/app-openpgp.c:4362 #, fuzzy, c-format msgid "error reading fingerprint DO\n" msgstr "%s: erro ao ler registo livre: %s\n" -#: scd/app-openpgp.c:3066 +#: scd/app-openpgp.c:3075 #, fuzzy, c-format msgid "key already exists\n" msgstr "%s' já comprimido\n" -#: scd/app-openpgp.c:3070 +#: scd/app-openpgp.c:3079 #, c-format msgid "existing key will be replaced\n" msgstr "" -#: scd/app-openpgp.c:3072 +#: scd/app-openpgp.c:3081 #, fuzzy, c-format msgid "generating new key\n" msgstr "gerar um novo par de chaves" -#: scd/app-openpgp.c:3074 +#: scd/app-openpgp.c:3083 #, fuzzy, c-format msgid "writing new key\n" msgstr "gerar um novo par de chaves" -#: scd/app-openpgp.c:3647 scd/app-openpgp.c:3999 +#: scd/app-openpgp.c:3656 scd/app-openpgp.c:4008 #, c-format msgid "creation timestamp missing\n" msgstr "" -#: scd/app-openpgp.c:3688 scd/app-openpgp.c:3696 +#: scd/app-openpgp.c:3697 scd/app-openpgp.c:3705 #, c-format msgid "RSA prime %s missing or not of size %d bits\n" msgstr "" -#: scd/app-openpgp.c:3829 scd/app-openpgp.c:4106 +#: scd/app-openpgp.c:3838 scd/app-openpgp.c:4115 #, 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:3993 +#: scd/app-openpgp.c:4002 #, fuzzy, c-format #| msgid "unsupported URI" msgid "unsupported curve\n" msgstr "URI não suportado" -#: scd/app-openpgp.c:4263 +#: scd/app-openpgp.c:4272 #, c-format msgid "please wait while key is being generated ...\n" msgstr "" -#: scd/app-openpgp.c:4271 +#: scd/app-openpgp.c:4280 #, fuzzy, c-format msgid "generating key failed\n" msgstr "remoção do bloco de chave falhou: %s\n" -#: scd/app-openpgp.c:4277 +#: scd/app-openpgp.c:4286 #, fuzzy, c-format msgid "key generation completed (%d second)\n" msgid_plural "key generation completed (%d seconds)\n" msgstr[0] "A geração de chaves falhou: %s\n" msgstr[1] "A geração de chaves falhou: %s\n" -#: scd/app-openpgp.c:4311 +#: scd/app-openpgp.c:4320 #, c-format msgid "invalid structure of OpenPGP card (DO 0x93)\n" msgstr "" -#: scd/app-openpgp.c:4361 +#: scd/app-openpgp.c:4370 #, c-format msgid "fingerprint on card does not match requested one\n" msgstr "" -#: scd/app-openpgp.c:4560 +#: scd/app-openpgp.c:4569 #, fuzzy, c-format msgid "card does not support digest algorithm %s\n" msgstr "assinatura %s de: \"%s\"\n" -#: scd/app-openpgp.c:4618 +#: scd/app-openpgp.c:4627 #, c-format msgid "signatures created so far: %lu\n" msgstr "" -#: scd/app-openpgp.c:5055 +#: scd/app-openpgp.c:5065 #, c-format msgid "" "verification of Admin PIN is currently prohibited through this command\n" msgstr "" -#: scd/app-openpgp.c:5386 scd/app-openpgp.c:5398 +#: scd/app-openpgp.c:5396 scd/app-openpgp.c:5408 #, fuzzy, c-format msgid "can't access %s - invalid OpenPGP card?\n" msgstr "nenhum dado OpenPGP válido encontrado.\n" -#: scd/app-dinsig.c:298 +#: scd/app-dinsig.c:299 #, fuzzy msgid "||Please enter your PIN at the reader's pinpad" msgstr "muda a frase secreta" @@ -8630,7 +8642,7 @@ #. 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-dinsig.c:529 +#: scd/app-dinsig.c:532 msgid "|N|Initial New PIN" msgstr "" @@ -8720,11 +8732,11 @@ msgid "validation model requested by certificate: %s" msgstr "" -#: sm/certchain.c:199 sm/certchain.c:2164 +#: sm/certchain.c:199 sm/certchain.c:2165 msgid "chain" msgstr "" -#: sm/certchain.c:200 sm/certchain.c:2164 +#: sm/certchain.c:200 sm/certchain.c:2165 #, fuzzy msgid "shell" msgstr "help" @@ -8748,241 +8760,241 @@ msgid "failed to open '%s': %s\n" msgstr "impossível abrir `%s': %s\n" -#: sm/certchain.c:355 sm/certchain.c:384 dirmngr/validate.c:204 +#: sm/certchain.c:355 sm/certchain.c:385 dirmngr/validate.c:204 #, fuzzy, c-format msgid "Note: non-critical certificate policy not allowed" msgstr "a escrever chave privada para `%s'\n" -#: sm/certchain.c:359 sm/certchain.c:388 dirmngr/validate.c:209 +#: sm/certchain.c:359 sm/certchain.c:389 dirmngr/validate.c:209 #, fuzzy, c-format msgid "certificate policy not allowed" msgstr "a escrever chave privada para `%s'\n" -#: sm/certchain.c:595 sm/keydb.c:1084 sm/keydb.c:1171 +#: sm/certchain.c:596 sm/keydb.c:1084 sm/keydb.c:1171 #, fuzzy, c-format msgid "failed to get the fingerprint\n" msgstr "falha ao inicializar a base de dados de confiança: %s\n" -#: sm/certchain.c:624 +#: sm/certchain.c:625 #, c-format msgid "looking up issuer at external location\n" msgstr "" -#: sm/certchain.c:644 +#: sm/certchain.c:645 #, c-format msgid "number of issuers matching: %d\n" msgstr "" -#: sm/certchain.c:723 dirmngr/ocsp.c:685 +#: sm/certchain.c:724 dirmngr/ocsp.c:685 #, fuzzy, c-format #| msgid "%s: can't access: %s\n" msgid "can't get authorityInfoAccess: %s\n" msgstr "%s: impossível aceder: %s\n" -#: sm/certchain.c:791 +#: sm/certchain.c:792 #, c-format msgid "looking up issuer from the Dirmngr cache\n" msgstr "" -#: sm/certchain.c:816 +#: sm/certchain.c:817 #, fuzzy, c-format msgid "number of matching certificates: %d\n" msgstr "erro na criação da frase secreta: %s\n" -#: sm/certchain.c:819 +#: sm/certchain.c:820 #, fuzzy, c-format msgid "dirmngr cache-only key lookup failed: %s\n" msgstr "remoção do bloco de chave falhou: %s\n" -#: sm/certchain.c:1041 sm/certchain.c:1554 sm/certchain.c:2192 sm/decrypt.c:728 +#: sm/certchain.c:1042 sm/certchain.c:1555 sm/certchain.c:2193 sm/decrypt.c:728 #: sm/encrypt.c:345 sm/import.c:415 sm/keydb.c:1091 sm/keydb.c:1178 #: sm/sign.c:337 sm/verify.c:118 #, fuzzy, c-format msgid "failed to allocate keyDB handle\n" msgstr "falha ao inicializar a base de dados de confiança: %s\n" -#: sm/certchain.c:1225 +#: sm/certchain.c:1226 #, fuzzy msgid "certificate has been revoked" msgstr "NOTA: a chave foi revogada" -#: sm/certchain.c:1240 +#: sm/certchain.c:1241 msgid "the status of the certificate is unknown" msgstr "" -#: sm/certchain.c:1247 +#: sm/certchain.c:1248 #, c-format msgid "please make sure that the \"dirmngr\" is properly installed\n" msgstr "" -#: sm/certchain.c:1253 +#: sm/certchain.c:1254 #, fuzzy, c-format msgid "checking the CRL failed: %s" msgstr "verificação da assinatura criada falhou: %s\n" -#: sm/certchain.c:1282 sm/certchain.c:1350 dirmngr/validate.c:497 +#: sm/certchain.c:1283 sm/certchain.c:1351 dirmngr/validate.c:497 #, c-format msgid "certificate with invalid validity: %s" msgstr "" -#: sm/certchain.c:1297 sm/certchain.c:1382 dirmngr/validate.c:515 +#: sm/certchain.c:1298 sm/certchain.c:1383 dirmngr/validate.c:515 #, c-format msgid "certificate not yet valid" msgstr "" -#: sm/certchain.c:1298 sm/certchain.c:1383 +#: sm/certchain.c:1299 sm/certchain.c:1384 #, fuzzy msgid "root certificate not yet valid" msgstr "a escrever chave privada para `%s'\n" -#: sm/certchain.c:1299 sm/certchain.c:1384 +#: sm/certchain.c:1300 sm/certchain.c:1385 msgid "intermediate certificate not yet valid" msgstr "" -#: sm/certchain.c:1312 dirmngr/validate.c:526 +#: sm/certchain.c:1313 dirmngr/validate.c:526 #, fuzzy, c-format msgid "certificate has expired" msgstr "Esta chave expirou!" -#: sm/certchain.c:1313 +#: sm/certchain.c:1314 #, fuzzy msgid "root certificate has expired" msgstr "Esta chave expirou!" -#: sm/certchain.c:1314 +#: sm/certchain.c:1315 #, fuzzy msgid "intermediate certificate has expired" msgstr "Esta chave expirou!" -#: sm/certchain.c:1356 +#: sm/certchain.c:1357 #, c-format msgid "required certificate attributes missing: %s%s%s" msgstr "" -#: sm/certchain.c:1365 +#: sm/certchain.c:1366 #, fuzzy msgid "certificate with invalid validity" msgstr "Esta chave expirou!" -#: sm/certchain.c:1402 +#: sm/certchain.c:1403 msgid "signature not created during lifetime of certificate" msgstr "" -#: sm/certchain.c:1404 +#: sm/certchain.c:1405 msgid "certificate not created during lifetime of issuer" msgstr "" -#: sm/certchain.c:1405 +#: sm/certchain.c:1406 msgid "intermediate certificate not created during lifetime of issuer" msgstr "" -#: sm/certchain.c:1409 +#: sm/certchain.c:1410 #, fuzzy, c-format msgid " ( signature created at " msgstr " novas assinaturas: %lu\n" -#: sm/certchain.c:1410 +#: sm/certchain.c:1411 #, fuzzy, c-format msgid " (certificate created at " msgstr "chave %08lX: certificado de revogação \"%s\" adicionado\n" -#: sm/certchain.c:1413 +#: sm/certchain.c:1414 #, fuzzy, c-format msgid " (certificate valid from " msgstr "certificado incorrecto" -#: sm/certchain.c:1414 +#: sm/certchain.c:1415 #, c-format msgid " ( issuer valid from " msgstr "" -#: sm/certchain.c:1444 dirmngr/validate.c:577 +#: sm/certchain.c:1445 dirmngr/validate.c:577 #, fuzzy, c-format msgid "fingerprint=%s\n" msgstr "mostra impressão digital" -#: sm/certchain.c:1453 +#: sm/certchain.c:1454 #, c-format msgid "root certificate has now been marked as trusted\n" msgstr "" -#: sm/certchain.c:1466 +#: sm/certchain.c:1467 #, c-format msgid "interactive marking as trusted not enabled in gpg-agent\n" msgstr "" -#: sm/certchain.c:1472 +#: sm/certchain.c:1473 #, c-format msgid "interactive marking as trusted disabled for this session\n" msgstr "" -#: sm/certchain.c:1531 +#: sm/certchain.c:1532 msgid "WARNING: creation time of signature not known - assuming current time" msgstr "" -#: sm/certchain.c:1595 +#: sm/certchain.c:1596 #, fuzzy msgid "no issuer found in certificate" msgstr "gerar um certificado de revogação" -#: sm/certchain.c:1673 +#: sm/certchain.c:1674 msgid "self-signed certificate has a BAD signature" msgstr "" -#: sm/certchain.c:1742 dirmngr/validate.c:575 +#: sm/certchain.c:1743 dirmngr/validate.c:575 #, c-format msgid "root certificate is not marked trusted" msgstr "" -#: sm/certchain.c:1758 +#: sm/certchain.c:1759 #, fuzzy, c-format msgid "checking the trust list failed: %s\n" msgstr "verificação da assinatura criada falhou: %s\n" -#: sm/certchain.c:1789 sm/import.c:176 sm/keylist.c:1396 dirmngr/validate.c:630 +#: sm/certchain.c:1790 sm/import.c:176 sm/keylist.c:1396 dirmngr/validate.c:630 #, c-format msgid "certificate chain too long\n" msgstr "" -#: sm/certchain.c:1801 dirmngr/validate.c:642 +#: sm/certchain.c:1802 dirmngr/validate.c:642 #, c-format msgid "issuer certificate not found" msgstr "" -#: sm/certchain.c:1834 dirmngr/validate.c:668 +#: sm/certchain.c:1835 dirmngr/validate.c:668 #, fuzzy, c-format msgid "certificate has a BAD signature" msgstr "verificar uma assinatura" -#: sm/certchain.c:1866 dirmngr/validate.c:692 +#: sm/certchain.c:1867 dirmngr/validate.c:692 msgid "found another possible matching CA certificate - trying again" msgstr "" -#: sm/certchain.c:1925 dirmngr/validate.c:717 +#: sm/certchain.c:1926 dirmngr/validate.c:717 #, c-format msgid "certificate chain longer than allowed by CA (%d)" msgstr "" -#: sm/certchain.c:1967 sm/certchain.c:2263 dirmngr/validate.c:747 +#: sm/certchain.c:1968 sm/certchain.c:2264 dirmngr/validate.c:747 #, fuzzy, c-format msgid "certificate is good\n" msgstr "preferência %c%lu duplicada\n" -#: sm/certchain.c:1968 +#: sm/certchain.c:1969 #, fuzzy, c-format msgid "intermediate certificate is good\n" msgstr "chave %08lX: certificado de revogação \"%s\" adicionado\n" -#: sm/certchain.c:1969 +#: sm/certchain.c:1970 #, fuzzy, c-format msgid "root certificate is good\n" msgstr "certificado incorrecto" -#: sm/certchain.c:2151 +#: sm/certchain.c:2152 msgid "switching to chain model" msgstr "" -#: sm/certchain.c:2160 +#: sm/certchain.c:2161 #, c-format msgid "validation model used: %s" msgstr "" diff -Nru gnupg2-2.2.40/po/ro.po gnupg2-2.2.41/po/ro.po --- gnupg2-2.2.40/po/ro.po 2022-10-10 09:58:26.000000000 +0000 +++ gnupg2-2.2.41/po/ro.po 2022-12-09 08:48:35.000000000 +0000 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: gnupg 1.4.2rc1\n" "Report-Msgid-Bugs-To: translations@gnupg.org\n" -"POT-Creation-Date: 2022-10-10 11:58+0200\n" +"POT-Creation-Date: 2022-12-09 09:48+0100\n" "PO-Revision-Date: 2017-12-19 12:30+0100\n" "Last-Translator: Laurentiu Buzdugan \n" "Language-Team: Romanian \n" @@ -231,8 +231,8 @@ msgid "ssh keys greater than %d bits are not supported\n" msgstr "algoritm rezumat %d nu este suportat\n" -#: agent/command-ssh.c:862 common/dotlock.c:856 g10/card-util.c:947 -#: g10/exec.c:554 g10/export.c:1320 g10/gpg.c:1400 g10/keygen.c:4998 +#: agent/command-ssh.c:862 common/dotlock.c:856 g10/card-util.c:946 +#: g10/exec.c:554 g10/export.c:1335 g10/gpg.c:1409 g10/keygen.c:5052 #: g10/keyring.c:1322 g10/keyring.c:1637 g10/openfile.c:291 g10/sign.c:1008 #: g10/sign.c:1322 g10/tdbio.c:753 #, fuzzy, c-format @@ -240,12 +240,12 @@ msgid "can't create '%s': %s\n" msgstr "nu pot crea `%s': %s\n" -#: agent/command-ssh.c:874 common/helpfile.c:57 g10/card-util.c:904 +#: agent/command-ssh.c:874 common/helpfile.c:57 g10/card-util.c:903 #: g10/dearmor.c:59 g10/dearmor.c:106 g10/decrypt.c:65 g10/decrypt.c:136 -#: g10/decrypt.c:153 g10/encrypt.c:239 g10/encrypt.c:678 g10/gpg.c:1401 -#: g10/import.c:364 g10/import.c:548 g10/import.c:776 g10/keygen.c:4036 +#: g10/decrypt.c:153 g10/encrypt.c:239 g10/encrypt.c:678 g10/gpg.c:1410 +#: g10/import.c:365 g10/import.c:549 g10/import.c:777 g10/keygen.c:4090 #: g10/keyring.c:1663 g10/openfile.c:195 g10/openfile.c:209 g10/plaintext.c:128 -#: g10/plaintext.c:649 g10/sign.c:990 g10/sign.c:1201 g10/sign.c:1306 +#: g10/plaintext.c:654 g10/sign.c:990 g10/sign.c:1201 g10/sign.c:1306 #: g10/sign.c:1451 g10/tdbdump.c:145 g10/tdbdump.c:153 g10/tdbio.c:758 #: g10/tdbio.c:829 g10/verify.c:96 g10/verify.c:160 sm/gpgsm.c:2160 #: sm/gpgsm.c:2190 sm/gpgsm.c:2228 sm/qualified.c:66 dirmngr/certcache.c:420 @@ -480,34 +480,34 @@ msgid "csh-style command output" msgstr "" -#: agent/gpg-agent.c:185 g10/gpg.c:579 scd/scdaemon.c:126 sm/gpgsm.c:410 +#: agent/gpg-agent.c:185 g10/gpg.c:580 scd/scdaemon.c:126 sm/gpgsm.c:410 #: dirmngr/dirmngr.c:192 #, fuzzy msgid "|FILE|read options from FILE" msgstr "|FIŞIER|încarcă modulul extensie FIŞIER" -#: agent/gpg-agent.c:189 g10/gpg.c:566 scd/scdaemon.c:130 sm/gpgsm.c:259 +#: agent/gpg-agent.c:189 g10/gpg.c:567 scd/scdaemon.c:130 sm/gpgsm.c:259 #: dirmngr/dirmngr.c:196 msgid "Options controlling the diagnostic output" msgstr "" -#: agent/gpg-agent.c:191 g10/gpg.c:568 g10/gpgv.c:78 kbx/kbxutil.c:88 +#: agent/gpg-agent.c:191 g10/gpg.c:569 g10/gpgv.c:78 kbx/kbxutil.c:88 #: scd/scdaemon.c:132 sm/gpgsm.c:261 dirmngr/dirmngr-client.c:70 #: dirmngr/dirmngr.c:198 tools/gpg-connect-agent.c:78 tools/gpgconf.c:110 msgid "verbose" msgstr "locvace" -#: agent/gpg-agent.c:192 g10/gpg.c:570 g10/gpgv.c:79 kbx/kbxutil.c:89 +#: agent/gpg-agent.c:192 g10/gpg.c:571 g10/gpgv.c:79 kbx/kbxutil.c:89 #: scd/scdaemon.c:133 sm/gpgsm.c:263 dirmngr/dirmngr-client.c:71 #: dirmngr/dirmngr.c:199 msgid "be somewhat more quiet" msgstr "fii oarecum mai tăcut" -#: agent/gpg-agent.c:200 g10/gpg.c:583 sm/gpgsm.c:276 dirmngr/dirmngr.c:209 +#: agent/gpg-agent.c:200 g10/gpg.c:584 sm/gpgsm.c:276 dirmngr/dirmngr.c:209 msgid "|FILE|write server mode logs to FILE" msgstr "" -#: agent/gpg-agent.c:204 g10/gpg.c:589 scd/scdaemon.c:147 sm/gpgsm.c:283 +#: agent/gpg-agent.c:204 g10/gpg.c:590 scd/scdaemon.c:147 sm/gpgsm.c:283 #: dirmngr/dirmngr.c:213 msgid "Options controlling the configuration" msgstr "" @@ -551,7 +551,7 @@ msgid "enable putty support" msgstr "nu este suportat(ă)" -#: agent/gpg-agent.c:237 g10/gpg.c:831 scd/scdaemon.c:175 sm/gpgsm.c:369 +#: agent/gpg-agent.c:237 g10/gpg.c:832 scd/scdaemon.c:175 sm/gpgsm.c:369 msgid "Options controlling the security" msgstr "" @@ -653,7 +653,7 @@ #. reporting address. This is so that we can change the #. reporting address without breaking the translations. #: agent/gpg-agent.c:563 agent/preset-passphrase.c:100 agent/protect-tool.c:155 -#: g10/gpg.c:1108 g10/gpgv.c:149 kbx/kbxutil.c:113 scd/scdaemon.c:313 +#: g10/gpg.c:1117 g10/gpgv.c:149 kbx/kbxutil.c:113 scd/scdaemon.c:313 #: sm/gpgsm.c:600 dirmngr/dirmngr-client.c:168 dirmngr/dirmngr.c:458 #: tools/gpg-connect-agent.c:205 tools/gpgconf.c:154 #: tools/gpg-check-pattern.c:143 @@ -672,27 +672,27 @@ "Secret key management for @GNUPG@\n" msgstr "" -#: agent/gpg-agent.c:619 g10/gpg.c:1304 scd/scdaemon.c:385 sm/gpgsm.c:748 +#: agent/gpg-agent.c:619 g10/gpg.c:1313 scd/scdaemon.c:385 sm/gpgsm.c:748 #: dirmngr/dirmngr.c:542 #, c-format msgid "invalid debug-level '%s' given\n" msgstr "" -#: agent/gpg-agent.c:988 g10/gpg.c:3810 g10/gpg.c:3834 sm/gpgsm.c:1585 +#: agent/gpg-agent.c:988 g10/gpg.c:3830 g10/gpg.c:3854 sm/gpgsm.c:1585 #: sm/gpgsm.c:1591 #, c-format msgid "selected digest algorithm is invalid\n" msgstr "algoritm rezumat selectat este invalid\n" #: agent/gpg-agent.c:1216 agent/gpg-agent.c:2029 common/argparse.c:1766 -#: common/argparse.c:1858 g10/gpg.c:2517 scd/scdaemon.c:547 sm/gpgsm.c:1007 +#: common/argparse.c:1858 g10/gpg.c:2526 scd/scdaemon.c:547 sm/gpgsm.c:1007 #: dirmngr/dirmngr.c:1081 dirmngr/dirmngr.c:1937 #, fuzzy, c-format #| msgid "reading options from `%s'\n" msgid "reading options from '%s'\n" msgstr "citesc opţiuni din `%s'\n" -#: agent/gpg-agent.c:1332 g10/gpg.c:3751 scd/scdaemon.c:671 sm/gpgsm.c:1522 +#: agent/gpg-agent.c:1332 g10/gpg.c:3769 scd/scdaemon.c:671 sm/gpgsm.c:1522 #: dirmngr/dirmngr.c:1190 tools/gpg-connect-agent.c:1244 tools/gpgconf.c:677 #, fuzzy, c-format #| msgid "WARNING: \"%s\" is a deprecated option\n" @@ -826,7 +826,7 @@ "Password cache maintenance\n" msgstr "" -#: agent/protect-tool.c:108 g10/gpg.c:441 kbx/kbxutil.c:71 sm/gpgsm.c:210 +#: agent/protect-tool.c:108 g10/gpg.c:442 kbx/kbxutil.c:71 sm/gpgsm.c:210 #: dirmngr/dirmngr.c:171 tools/gpgconf.c:80 msgid "" "@Commands:\n" @@ -1051,7 +1051,7 @@ msgid "secret key parts are not available\n" msgstr "părţi ale cheii secrete nu sunt disponibile\n" -#: agent/cvt-openpgp.c:344 g10/card-util.c:1556 +#: agent/cvt-openpgp.c:344 g10/card-util.c:1555 #, fuzzy, c-format #| msgid "protection algorithm %d%s is not supported\n" msgid "public key algorithm %d (%s) is not supported\n" @@ -1211,7 +1211,7 @@ msgid "out of core while allocating %lu bytes" msgstr "" -#: common/miscellaneous.c:115 g10/card-util.c:911 tools/no-libgcrypt.c:30 +#: common/miscellaneous.c:115 g10/card-util.c:910 tools/no-libgcrypt.c:30 #, fuzzy, c-format msgid "error allocating enough memory: %s\n" msgstr "eroare la crearea inelului de chei `%s': %s\n" @@ -1336,7 +1336,7 @@ msgstr "validitate: %s" #: common/audit.c:774 common/audit.c:776 common/audit.c:921 common/audit.c:923 -#: scd/app-openpgp.c:3557 +#: scd/app-openpgp.c:3566 #, fuzzy, c-format msgid "unsupported algorithm: %s" msgstr "" @@ -1421,12 +1421,12 @@ msgid "Root certificate trustworthy" msgstr "certificat incorect" -#: common/audit.c:1112 sm/certchain.c:1235 +#: common/audit.c:1112 sm/certchain.c:1236 #, fuzzy msgid "no CRL found for certificate" msgstr "certificat incorect" -#: common/audit.c:1115 sm/certchain.c:1245 +#: common/audit.c:1115 sm/certchain.c:1246 #, fuzzy msgid "the available CRL is too old" msgstr "Cheie disponibilă la: " @@ -1569,7 +1569,7 @@ msgid "missing argument for option \"%.50s\"\n" msgstr "" -#: common/argparse.c:558 g10/gpg.c:3525 +#: common/argparse.c:558 g10/gpg.c:3543 #, fuzzy, c-format msgid "invalid argument for option \"%.50s\"\n" msgstr "opţiuni enumerare invalide\n" @@ -1670,92 +1670,92 @@ msgid "%s is too old (need %s, have %s)\n" msgstr "" -#: g10/armor.c:423 +#: g10/armor.c:424 #, c-format msgid "armor: %s\n" msgstr "armură: %s\n" -#: g10/armor.c:462 +#: g10/armor.c:463 #, c-format msgid "invalid armor header: " msgstr "header armură invalid: " -#: g10/armor.c:473 +#: g10/armor.c:474 #, c-format msgid "armor header: " msgstr "header armură: " -#: g10/armor.c:486 +#: g10/armor.c:487 #, c-format msgid "invalid clearsig header\n" msgstr "header clearsig invalid\n" -#: g10/armor.c:499 +#: g10/armor.c:500 #, fuzzy, c-format msgid "unknown armor header: " msgstr "header armură: " -#: g10/armor.c:552 +#: g10/armor.c:553 #, c-format msgid "nested clear text signatures\n" msgstr "semnături text în clar încuibărite\n" -#: g10/armor.c:687 +#: g10/armor.c:688 #, c-format msgid "unexpected armor: " msgstr "armură neaşteptată: " -#: g10/armor.c:700 +#: g10/armor.c:701 #, c-format msgid "invalid dash escaped line: " msgstr "linie cu liniuţă escape invalidă: " -#: g10/armor.c:872 g10/armor.c:1492 +#: g10/armor.c:873 g10/armor.c:1493 #, c-format msgid "invalid radix64 character %02X skipped\n" msgstr "caracter radix64 invalid %02X sărit\n" -#: g10/armor.c:915 +#: g10/armor.c:916 #, c-format msgid "premature eof (no CRC)\n" msgstr "eof prematur (nici un CRC)\n" -#: g10/armor.c:949 +#: g10/armor.c:950 #, c-format msgid "premature eof (in CRC)\n" msgstr "eof prematur (în CRC)\n" -#: g10/armor.c:957 +#: g10/armor.c:958 #, c-format msgid "malformed CRC\n" msgstr "CRC anormal\n" -#: g10/armor.c:961 g10/armor.c:1529 +#: g10/armor.c:962 g10/armor.c:1530 #, c-format msgid "CRC error; %06lX - %06lX\n" msgstr "eroare CRC; %06lX - %06lX\n" -#: g10/armor.c:981 +#: g10/armor.c:982 #, c-format msgid "premature eof (in trailer)\n" msgstr "eof prematur (în trailer)\n" -#: g10/armor.c:985 +#: g10/armor.c:986 #, c-format msgid "error in trailer line\n" msgstr "eroare linia de trailer\n" -#: g10/armor.c:1305 +#: g10/armor.c:1306 #, c-format msgid "no valid OpenPGP data found.\n" msgstr "nici o dată OpenPGP validă găsită.\n" -#: g10/armor.c:1310 +#: g10/armor.c:1311 #, c-format msgid "invalid armor: line longer than %d characters\n" msgstr "armură invalidă: linie mai lungă de %d caractere\n" -#: g10/armor.c:1314 +#: g10/armor.c:1315 #, c-format msgid "" "quoted printable character in armor - probably a buggy MTA has been used\n" @@ -1909,24 +1909,24 @@ msgid "server uses an invalid certificate" msgstr "generează un certificat de revocare" -#: g10/call-dirmngr.c:462 g10/gpg.c:4458 +#: g10/call-dirmngr.c:462 g10/gpg.c:4478 #, fuzzy, c-format #| msgid "armor: %s\n" msgid "Note: %s\n" msgstr "armură: %s\n" -#: g10/card-util.c:86 g10/card-util.c:366 g10/card-util.c:1918 +#: g10/card-util.c:86 g10/card-util.c:366 g10/card-util.c:1917 #, c-format msgid "OpenPGP card not available: %s\n" msgstr "cardul OpenPGP nu e disponibil: %s\n" -#: g10/card-util.c:91 g10/card-util.c:1924 +#: g10/card-util.c:91 g10/card-util.c:1923 #, c-format msgid "OpenPGP card no. %s detected\n" msgstr "cardul OpenPGP nr. %s detectat\n" -#: g10/card-util.c:97 g10/card-util.c:2253 g10/delkey.c:160 g10/keyedit.c:1423 -#: g10/keygen.c:4466 g10/revoke.c:214 g10/revoke.c:636 +#: g10/card-util.c:97 g10/card-util.c:2252 g10/delkey.c:160 g10/keyedit.c:1423 +#: g10/keygen.c:4520 g10/revoke.c:214 g10/revoke.c:636 #, c-format msgid "can't do this in batch mode\n" msgstr "nu pot face acest lucru în modul batch\n" @@ -1936,14 +1936,14 @@ msgid "This command is only available for version 2 cards\n" msgstr "Această comandă nu este permisă în modul %s.\n" -#: g10/card-util.c:107 scd/app-openpgp.c:2866 +#: g10/card-util.c:107 scd/app-openpgp.c:2869 #, fuzzy, c-format msgid "Reset Code not or not anymore available\n" msgstr "părţi ale cheii secrete nu sunt disponibile\n" -#: g10/card-util.c:140 g10/card-util.c:1442 g10/card-util.c:1704 -#: g10/card-util.c:1796 g10/keyedit.c:394 g10/keyedit.c:415 g10/keyedit.c:429 -#: g10/keygen.c:1808 g10/keygen.c:1980 g10/keygen.c:2186 g10/keygen.c:2477 +#: g10/card-util.c:140 g10/card-util.c:1441 g10/card-util.c:1703 +#: g10/card-util.c:1795 g10/keyedit.c:394 g10/keyedit.c:415 g10/keyedit.c:429 +#: g10/keygen.c:1862 g10/keygen.c:2034 g10/keygen.c:2240 g10/keygen.c:2531 #: sm/certreqgen-ui.c:165 sm/certreqgen-ui.c:291 sm/certreqgen-ui.c:325 msgid "Your selection? " msgstr "Selecţia d-voastră? " @@ -1993,12 +1993,12 @@ msgid "Error: Combined name too long (limit is %d characters).\n" msgstr "Eroare: Nume combinat prea lung (limita este de %d caractere).\n" -#: g10/card-util.c:826 +#: g10/card-util.c:825 msgid "URL to retrieve public key: " msgstr "URL pentru a aduce cheia publică: " -#: g10/card-util.c:920 g10/decrypt-data.c:509 g10/import.c:399 g10/import.c:746 -#: g10/import.c:798 dirmngr/crlcache.c:655 dirmngr/crlcache.c:660 +#: g10/card-util.c:919 g10/decrypt-data.c:509 g10/import.c:400 g10/import.c:747 +#: g10/import.c:799 dirmngr/crlcache.c:655 dirmngr/crlcache.c:660 #: dirmngr/crlcache.c:914 dirmngr/crlcache.c:920 dirmngr/dirmngr.c:1748 #: tools/gpgconf.c:483 tools/gpgconf.c:529 #, fuzzy, c-format @@ -2006,172 +2006,172 @@ msgid "error reading '%s': %s\n" msgstr "eroare la citire `%s': %s\n" -#: g10/card-util.c:953 g10/decrypt-data.c:512 g10/export.c:2467 +#: g10/card-util.c:952 g10/decrypt-data.c:512 g10/export.c:2586 #: dirmngr/crlcache.c:925 #, fuzzy, c-format msgid "error writing '%s': %s\n" msgstr "eroare la scrierea inelului de chei `%s': %s\n" -#: g10/card-util.c:980 +#: g10/card-util.c:979 msgid "Login data (account name): " msgstr "Date login (nume cont): " -#: g10/card-util.c:1018 +#: g10/card-util.c:1017 msgid "Private DO data: " msgstr "Date DO personale: " -#: g10/card-util.c:1103 +#: g10/card-util.c:1102 msgid "Language preferences: " msgstr "Preferinţe limbă: " -#: g10/card-util.c:1111 +#: g10/card-util.c:1110 msgid "Error: invalid length of preference string.\n" msgstr "Eroare: lungime invalidă pentru şir preferinţe.\n" -#: g10/card-util.c:1120 +#: g10/card-util.c:1119 msgid "Error: invalid characters in preference string.\n" msgstr "Eroare: caractere invalide în şir preferinţe.\n" -#: g10/card-util.c:1142 +#: g10/card-util.c:1141 msgid "Salutation (M = Mr., F = Ms., or space): " msgstr "" -#: g10/card-util.c:1156 +#: g10/card-util.c:1155 msgid "Error: invalid response.\n" msgstr "Eroare: răspuns invalid.\n" -#: g10/card-util.c:1178 +#: g10/card-util.c:1177 msgid "CA fingerprint: " msgstr "Amprenta CA: " -#: g10/card-util.c:1201 +#: g10/card-util.c:1200 msgid "Error: invalid formatted fingerprint.\n" msgstr "Eroare: amprentă formatată invalid.\n" -#: g10/card-util.c:1252 +#: g10/card-util.c:1251 #, c-format msgid "key operation not possible: %s\n" msgstr "operaţia pe cheie nu e posibilă: %s\n" -#: g10/card-util.c:1253 +#: g10/card-util.c:1252 msgid "not an OpenPGP card" msgstr "nu este un card OpenPGP" -#: g10/card-util.c:1266 g10/keygen.c:4486 g10/keygen.c:5562 +#: g10/card-util.c:1265 g10/keygen.c:4540 g10/keygen.c:5616 #, c-format msgid "error getting current key info: %s\n" msgstr "eroare la obţinerea informaţiei pentru cheia curentă: %s\n" -#: g10/card-util.c:1351 +#: g10/card-util.c:1350 msgid "Replace existing key? (y/N) " msgstr "Înlocuiesc cheia existentă? (d/N) " -#: g10/card-util.c:1368 +#: g10/card-util.c:1367 msgid "" "Note: There is no guarantee that the card supports the requested size.\n" " If the key generation does not succeed, please check the\n" " documentation of your card to see what sizes are allowed.\n" msgstr "" -#: g10/card-util.c:1390 g10/keygen.c:2363 sm/certreqgen-ui.c:179 +#: g10/card-util.c:1389 g10/keygen.c:2417 sm/certreqgen-ui.c:179 #, c-format msgid "What keysize do you want? (%u) " msgstr "Ce lungime de cheie doriţi? (%u) " -#: g10/card-util.c:1400 g10/keygen.c:2286 g10/keygen.c:2318 +#: g10/card-util.c:1399 g10/keygen.c:2340 g10/keygen.c:2372 #: sm/certreqgen-ui.c:194 #, c-format msgid "rounded up to %u bits\n" msgstr "rotunjită prin adaos la %u biţi\n" -#: g10/card-util.c:1408 g10/keygen.c:2371 sm/certreqgen-ui.c:184 +#: g10/card-util.c:1407 g10/keygen.c:2425 sm/certreqgen-ui.c:184 #, c-format msgid "%s keysizes must be in the range %u-%u\n" msgstr "dimensiunile cheii %s trebuie să fie în intervalul %u-%u\n" -#: g10/card-util.c:1427 +#: g10/card-util.c:1426 msgid "Changing card key attribute for: " msgstr "" -#: g10/card-util.c:1429 +#: g10/card-util.c:1428 #, fuzzy #| msgid " (1) Signature key\n" msgid "Signature key\n" msgstr " (1) Cheie de semnare\n" -#: g10/card-util.c:1431 +#: g10/card-util.c:1430 #, fuzzy #| msgid " (2) Encryption key\n" msgid "Encryption key\n" msgstr " (2) Cheie de cifrare\n" -#: g10/card-util.c:1433 +#: g10/card-util.c:1432 #, fuzzy #| msgid " (3) Authentication key\n" msgid "Authentication key\n" msgstr " (3) Cheie de autentificare\n" -#: g10/card-util.c:1435 g10/keygen.c:1926 sm/certreqgen-ui.c:157 +#: g10/card-util.c:1434 g10/keygen.c:1980 sm/certreqgen-ui.c:157 msgid "Please select what kind of key you want:\n" msgstr "Selectaţi ce fel de cheie doriţi:\n" -#: g10/card-util.c:1436 sm/certreqgen-ui.c:158 +#: g10/card-util.c:1435 sm/certreqgen-ui.c:158 #, fuzzy, c-format msgid " (%d) RSA\n" msgstr " (%d) RSA (numai semnare)\n" -#: g10/card-util.c:1437 +#: g10/card-util.c:1436 #, fuzzy, c-format msgid " (%d) ECC\n" msgstr " (%d) DSA şi Elgamal (implicit)\n" -#: g10/card-util.c:1449 g10/card-util.c:1716 g10/card-util.c:1816 -#: g10/keyedit.c:900 g10/keygen.c:1834 g10/keygen.c:1862 g10/keygen.c:1987 -#: g10/keygen.c:2222 g10/keygen.c:2505 g10/revoke.c:838 +#: g10/card-util.c:1448 g10/card-util.c:1715 g10/card-util.c:1815 +#: g10/keyedit.c:900 g10/keygen.c:1888 g10/keygen.c:1916 g10/keygen.c:2041 +#: g10/keygen.c:2276 g10/keygen.c:2559 g10/revoke.c:838 msgid "Invalid selection.\n" msgstr "Selecţie invalidă.\n" -#: g10/card-util.c:1522 +#: g10/card-util.c:1521 #, c-format msgid "The card will now be re-configured to generate a key of %u bits\n" msgstr "" -#: g10/card-util.c:1527 +#: g10/card-util.c:1526 #, c-format msgid "The card will now be re-configured to generate a key of type: %s\n" msgstr "" -#: g10/card-util.c:1563 +#: g10/card-util.c:1562 #, fuzzy, c-format msgid "error changing key attribute for key %d: %s\n" msgstr "eroare trimitere la `%s': %s\n" -#: g10/card-util.c:1579 g10/card-util.c:2106 +#: g10/card-util.c:1578 g10/card-util.c:2105 #, fuzzy, c-format #| msgid "error getting current key info: %s\n" msgid "error getting card info: %s\n" msgstr "eroare la obţinerea informaţiei pentru cheia curentă: %s\n" -#: g10/card-util.c:1585 g10/card-util.c:1930 g10/card-util.c:2112 +#: g10/card-util.c:1584 g10/card-util.c:1929 g10/card-util.c:2111 #, fuzzy, c-format #| msgid "This command is not allowed while in %s mode.\n" msgid "This command is not supported by this card\n" msgstr "Această comandă nu este permisă în modul %s.\n" -#: g10/card-util.c:1631 +#: g10/card-util.c:1630 msgid "Make off-card backup of encryption key? (Y/n) " msgstr "Creez copie de rezervă a cheii de cifrare în afara cardului? (d/N) " -#: g10/card-util.c:1645 +#: g10/card-util.c:1644 #, fuzzy, c-format msgid "Note: keys are already stored on the card!\n" msgstr "cheia secretă deja stocată pe un card\n" -#: g10/card-util.c:1648 +#: g10/card-util.c:1647 msgid "Replace existing keys? (y/N) " msgstr "Înlocuiesc cheile existente? (d/N) " -#: g10/card-util.c:1660 +#: g10/card-util.c:1659 #, fuzzy, c-format #| msgid "" #| "Please note that the factory settings of the PINs are\n" @@ -2186,150 +2186,150 @@ " PIN = `%s' PIN Admin = `%s'\n" "Ar trebui să le schimbaţi folosind comanda --change-pin\n" -#: g10/card-util.c:1695 +#: g10/card-util.c:1694 msgid "Please select the type of key to generate:\n" msgstr "Vă rugăm selectaţi tipul de cheie de generat:\n" -#: g10/card-util.c:1697 g10/card-util.c:1787 +#: g10/card-util.c:1696 g10/card-util.c:1786 msgid " (1) Signature key\n" msgstr " (1) Cheie de semnare\n" -#: g10/card-util.c:1698 g10/card-util.c:1789 +#: g10/card-util.c:1697 g10/card-util.c:1788 msgid " (2) Encryption key\n" msgstr " (2) Cheie de cifrare\n" -#: g10/card-util.c:1699 g10/card-util.c:1791 +#: g10/card-util.c:1698 g10/card-util.c:1790 msgid " (3) Authentication key\n" msgstr " (3) Cheie de autentificare\n" -#: g10/card-util.c:1784 +#: g10/card-util.c:1783 msgid "Please select where to store the key:\n" msgstr "Vă rugăm selectaţi unde să fie stocată cheia:\n" -#: g10/card-util.c:1830 +#: g10/card-util.c:1829 #, fuzzy, c-format msgid "KEYTOCARD failed: %s\n" msgstr "actualizarea a eşuat: %s\n" -#: g10/card-util.c:1935 +#: g10/card-util.c:1934 #, fuzzy, c-format msgid "Note: This command destroys all keys stored on the card!\n" msgstr "cheia secretă deja stocată pe un card\n" -#: g10/card-util.c:1938 +#: g10/card-util.c:1937 #, fuzzy #| msgid "Sign it? (y/N) " msgid "Continue? (y/N) " msgstr "Doriţi să-l semnaţi? (d/N) " -#: g10/card-util.c:1943 +#: g10/card-util.c:1942 msgid "Really do a factory reset? (enter \"yes\") " msgstr "" -#: g10/card-util.c:2129 +#: g10/card-util.c:2128 #, fuzzy, c-format msgid "error for setup KDF: %s\n" msgstr "eroare în `%s': %s\n" -#: g10/card-util.c:2158 g10/keyedit.c:1260 +#: g10/card-util.c:2157 g10/keyedit.c:1260 msgid "quit this menu" msgstr "ieşi din acest meniu" -#: g10/card-util.c:2160 +#: g10/card-util.c:2159 msgid "show admin commands" msgstr "arată comenzi administrare" -#: g10/card-util.c:2161 g10/keyedit.c:1263 +#: g10/card-util.c:2160 g10/keyedit.c:1263 msgid "show this help" msgstr "afişează acest mesaj" -#: g10/card-util.c:2163 +#: g10/card-util.c:2162 msgid "list all available data" msgstr "afişează toate datele disponibile" -#: g10/card-util.c:2166 +#: g10/card-util.c:2165 msgid "change card holder's name" msgstr "schimbă numele purtătorului cardului" -#: g10/card-util.c:2167 +#: g10/card-util.c:2166 msgid "change URL to retrieve key" msgstr "schimbă URL-ul de unde să fie adusă cheia" -#: g10/card-util.c:2168 +#: g10/card-util.c:2167 msgid "fetch the key specified in the card URL" msgstr "adu cheia specificată de URL-ul de pe card" -#: g10/card-util.c:2169 +#: g10/card-util.c:2168 msgid "change the login name" msgstr "schimbă numele de login" -#: g10/card-util.c:2170 +#: g10/card-util.c:2169 msgid "change the language preferences" msgstr "schimbă preferinţele de limbă" -#: g10/card-util.c:2171 +#: g10/card-util.c:2170 #, fuzzy #| msgid "change card holder's sex" msgid "change card holder's salutation" msgstr "schimbă sexul purtătorului cardului" -#: g10/card-util.c:2173 +#: g10/card-util.c:2172 msgid "change a CA fingerprint" msgstr "schimbă o amprentă CA" -#: g10/card-util.c:2174 +#: g10/card-util.c:2173 msgid "toggle the signature force PIN flag" msgstr "comută fanionul PIN de forţare a semnăturii" -#: g10/card-util.c:2175 +#: g10/card-util.c:2174 msgid "generate new keys" msgstr "generează noi chei" -#: g10/card-util.c:2176 +#: g10/card-util.c:2175 msgid "menu to change or unblock the PIN" msgstr "meniu pentru a schimba sau debloca PIN-ul" -#: g10/card-util.c:2177 +#: g10/card-util.c:2176 msgid "verify the PIN and list all data" msgstr "verifică PIN-ul şi listează toate datele" -#: g10/card-util.c:2178 +#: g10/card-util.c:2177 msgid "unblock the PIN using a Reset Code" msgstr "" -#: g10/card-util.c:2179 +#: g10/card-util.c:2178 msgid "destroy all keys and data" msgstr "" -#: g10/card-util.c:2180 +#: g10/card-util.c:2179 #, fuzzy #| msgid "|NAME|use NAME as default recipient" msgid "setup KDF for PIN authentication" msgstr "|NUME|foloseşte NUME ca destinatar implicit" -#: g10/card-util.c:2181 +#: g10/card-util.c:2180 #, fuzzy #| msgid "change the ownertrust" msgid "change the key attribute" msgstr "schimbă încrederea pentru proprietar" -#: g10/card-util.c:2305 +#: g10/card-util.c:2304 msgid "gpg/card> " msgstr "" -#: g10/card-util.c:2346 +#: g10/card-util.c:2345 msgid "Admin-only command\n" msgstr "Comandă numai-administrare\n" -#: g10/card-util.c:2377 +#: g10/card-util.c:2376 msgid "Admin commands are allowed\n" msgstr "Sunt permise comenzi administrare\n" -#: g10/card-util.c:2379 +#: g10/card-util.c:2378 msgid "Admin commands are not allowed\n" msgstr "Nu sunt permise comenzi administrare\n" -#: g10/card-util.c:2482 g10/keyedit.c:2229 +#: g10/card-util.c:2481 g10/keyedit.c:2229 msgid "Invalid command (try \"help\")\n" msgstr "Comandă invalidă (încercaţi \"ajutor\")\n" @@ -2338,22 +2338,22 @@ msgid "--output doesn't work for this command\n" msgstr "--output nu merge pentru această comandă\n" -#: g10/decrypt.c:247 g10/gpg.c:5155 g10/keyring.c:399 g10/keyring.c:750 +#: g10/decrypt.c:247 g10/gpg.c:5175 g10/keyring.c:399 g10/keyring.c:750 #, fuzzy, c-format #| msgid "can't open `%s'\n" msgid "can't open '%s'\n" msgstr "nu pot deschide `%s'\n" -#: g10/delkey.c:83 g10/export.c:1947 g10/export.c:2230 g10/export.c:2351 -#: g10/getkey.c:2108 g10/gpg.c:5100 g10/keyedit.c:1445 g10/keyedit.c:2335 +#: g10/delkey.c:83 g10/export.c:2035 g10/export.c:2349 g10/export.c:2470 +#: g10/getkey.c:2108 g10/gpg.c:5120 g10/keyedit.c:1445 g10/keyedit.c:2335 #: g10/keyedit.c:2637 g10/keyedit.c:4600 g10/keylist.c:693 g10/keyserver.c:1092 #: g10/revoke.c:230 g10/tofu.c:2165 #, c-format msgid "key \"%s\" not found: %s\n" msgstr "cheia \"%s\" nu a fost găsită: %s\n" -#: g10/delkey.c:92 g10/export.c:2015 g10/getkey.c:2116 g10/getkey.c:4517 -#: g10/gpg.c:5109 g10/keyedit.c:2308 g10/keyserver.c:1110 g10/revoke.c:236 +#: g10/delkey.c:92 g10/export.c:2103 g10/getkey.c:2116 g10/getkey.c:4517 +#: g10/gpg.c:5129 g10/keyedit.c:2308 g10/keyserver.c:1110 g10/revoke.c:236 #: g10/revoke.c:663 g10/tofu.c:2173 #, c-format msgid "error reading keyblock: %s\n" @@ -2478,14 +2478,14 @@ msgid "WARNING: '%s' is an empty file\n" msgstr "AVERTISMENT: `%s' este un fişier gol\n" -#: g10/encrypt.c:446 g10/encrypt.c:521 g10/decrypt-data.c:266 g10/gpg.c:3959 -#: g10/gpg.c:3999 sm/decrypt.c:826 sm/encrypt.c:416 sm/gpgsm.c:1609 +#: g10/encrypt.c:446 g10/encrypt.c:521 g10/decrypt-data.c:266 g10/gpg.c:3979 +#: g10/gpg.c:4019 sm/decrypt.c:826 sm/encrypt.c:416 sm/gpgsm.c:1609 #, fuzzy, c-format #| msgid "you may not use cipher algorithm `%s' while in %s mode\n" msgid "cipher algorithm '%s' may not be used in %s mode\n" msgstr "nu puteţi folosi algoritmul de cifrare `%s' câtă vreme în modul %s\n" -#: g10/encrypt.c:455 g10/gpg.c:3965 g10/gpg.c:4011 g10/sig-check.c:175 +#: g10/encrypt.c:455 g10/gpg.c:3985 g10/gpg.c:4031 g10/sig-check.c:175 #: g10/sign.c:391 sm/gpgsm.c:1619 sm/gpgsm.c:1629 sm/sign.c:478 sm/verify.c:506 #, fuzzy, c-format #| msgid "you may not use digest algorithm `%s' while in %s mode\n" @@ -2609,67 +2609,73 @@ msgid "WARNING: unable to remove temp directory '%s': %s\n" msgstr "AVERTISMENT: nu pot şterge directorul temporar `%s': %s\n" -#: g10/export.c:119 +#: g10/export.c:124 #, fuzzy msgid "export signatures that are marked as local-only" msgstr "Semnătura va fi marcată ca non-revocabilă.\n" -#: g10/export.c:121 +#: g10/export.c:126 msgid "export attribute user IDs (generally photo IDs)" msgstr "" -#: g10/export.c:123 +#: g10/export.c:128 #, fuzzy msgid "export revocation keys marked as \"sensitive\"" msgstr "nici o cheie de revocare găsită pentru \"%s\"\n" -#: g10/export.c:125 +#: g10/export.c:130 #, fuzzy msgid "remove unusable parts from key during export" msgstr "cheie secretă de nefolosit" -#: g10/export.c:127 +#: g10/export.c:132 msgid "remove as much as possible from key during export" msgstr "" -#: g10/export.c:133 +#: g10/export.c:138 +#, fuzzy +#| msgid "generate a revocation certificate" +msgid "export only revocation certificates" +msgstr "generează un certificat de revocare" + +#: g10/export.c:141 msgid "use the GnuPG key backup format" msgstr "" -#: g10/export.c:1291 +#: g10/export.c:1306 #, fuzzy #| msgid "%s: skipped: %s\n" msgid " - skipped" msgstr "%s: sărită: %s\n" -#: g10/export.c:1324 g10/import.c:2085 g10/openfile.c:200 g10/openfile.c:294 +#: g10/export.c:1339 g10/import.c:2089 g10/openfile.c:200 g10/openfile.c:294 #: g10/sign.c:1012 g10/sign.c:1326 #, fuzzy, c-format #| msgid "writing to `%s'\n" msgid "writing to '%s'\n" msgstr "scriu în `%s'\n" -#: g10/export.c:1769 +#: g10/export.c:1784 #, fuzzy, c-format msgid "key %s: key material on-card - skipped\n" msgstr "cheia %s: semnătură subcheie într-un loc greşit - sărită\n" -#: g10/export.c:1964 +#: g10/export.c:2052 #, c-format msgid "exporting secret keys not allowed\n" msgstr "exportul cheilor secrete nu este permis\n" -#: g10/export.c:2041 +#: g10/export.c:2129 #, c-format msgid "key %s: PGP 2.x style key - skipped\n" msgstr "cheia %s: cheie stil PGP 2.x - sărită\n" -#: g10/export.c:2135 +#: g10/export.c:2254 #, c-format msgid "WARNING: nothing exported\n" msgstr "AVERTISMENT: nimic exportat\n" -#: g10/export.c:2432 g10/plaintext.c:153 g10/plaintext.c:162 +#: g10/export.c:2551 g10/plaintext.c:153 g10/plaintext.c:162 #: g10/plaintext.c:168 g10/plaintext.c:191 #, fuzzy, c-format #| msgid "error creating `%s': %s\n" @@ -2737,297 +2743,297 @@ msgid "using subkey %s instead of primary key %s\n" msgstr "folosim subcheia %s în loc de cheia primară %s\n" -#: g10/getkey.c:4446 g10/gpg.c:2137 +#: g10/getkey.c:4446 g10/gpg.c:2146 #, fuzzy, c-format msgid "valid values for option '%s':\n" msgstr "opţiuni enumerare invalide\n" -#: g10/gpg.c:443 sm/gpgsm.c:212 +#: g10/gpg.c:444 sm/gpgsm.c:212 #, fuzzy msgid "make a signature" msgstr "|[fişier]|crează o semnătură" -#: g10/gpg.c:444 +#: g10/gpg.c:445 #, fuzzy msgid "make a clear text signature" msgstr "|[fişier]|crează o semnătură text în clar" -#: g10/gpg.c:446 sm/gpgsm.c:214 +#: g10/gpg.c:447 sm/gpgsm.c:214 msgid "make a detached signature" msgstr "crează o semnătură detaşată" -#: g10/gpg.c:447 sm/gpgsm.c:215 +#: g10/gpg.c:448 sm/gpgsm.c:215 msgid "encrypt data" msgstr "cifrează datele" -#: g10/gpg.c:449 +#: g10/gpg.c:450 msgid "encryption only with symmetric cipher" msgstr "cifrează numai cu cifru simetric" -#: g10/gpg.c:451 sm/gpgsm.c:217 +#: g10/gpg.c:452 sm/gpgsm.c:217 msgid "decrypt data (default)" msgstr "decriptează datele (implicit)" -#: g10/gpg.c:453 sm/gpgsm.c:218 +#: g10/gpg.c:454 sm/gpgsm.c:218 msgid "verify a signature" msgstr "verifică o semnătură" -#: g10/gpg.c:455 sm/gpgsm.c:219 +#: g10/gpg.c:456 sm/gpgsm.c:219 msgid "list keys" msgstr "enumeră chei" -#: g10/gpg.c:457 +#: g10/gpg.c:458 msgid "list keys and signatures" msgstr "enumeră chei şi semnături" -#: g10/gpg.c:460 +#: g10/gpg.c:461 msgid "list and check key signatures" msgstr "enumeră şi verifică semnăturile cheii" -#: g10/gpg.c:462 sm/gpgsm.c:224 +#: g10/gpg.c:463 sm/gpgsm.c:224 msgid "list keys and fingerprints" msgstr "enumeră chei şi amprente" -#: g10/gpg.c:463 sm/gpgsm.c:222 +#: g10/gpg.c:464 sm/gpgsm.c:222 msgid "list secret keys" msgstr "enumeră chei secrete" -#: g10/gpg.c:465 sm/gpgsm.c:225 +#: g10/gpg.c:466 sm/gpgsm.c:225 msgid "generate a new key pair" msgstr "generează o nouă perechi de chei" -#: g10/gpg.c:468 +#: g10/gpg.c:469 #, fuzzy #| msgid "generate a new key pair" msgid "quickly generate a new key pair" msgstr "generează o nouă perechi de chei" -#: g10/gpg.c:471 +#: g10/gpg.c:472 #, fuzzy #| msgid "generate a new key pair" msgid "quickly add a new user-id" msgstr "generează o nouă perechi de chei" -#: g10/gpg.c:476 +#: g10/gpg.c:477 #, fuzzy #| msgid "generate a new key pair" msgid "quickly revoke a user-id" msgstr "generează o nouă perechi de chei" -#: g10/gpg.c:479 +#: g10/gpg.c:480 #, fuzzy #| msgid "generate a new key pair" msgid "quickly set a new expiration date" msgstr "generează o nouă perechi de chei" -#: g10/gpg.c:482 +#: g10/gpg.c:483 msgid "full featured key pair generation" msgstr "" -#: g10/gpg.c:485 +#: g10/gpg.c:486 msgid "generate a revocation certificate" msgstr "generează un certificat de revocare" -#: g10/gpg.c:488 sm/gpgsm.c:228 +#: g10/gpg.c:489 sm/gpgsm.c:228 msgid "remove keys from the public keyring" msgstr "şterge chei de pe inelul de chei public" -#: g10/gpg.c:490 +#: g10/gpg.c:491 msgid "remove keys from the secret keyring" msgstr "şterge chei de pe inelul de chei secret" -#: g10/gpg.c:492 +#: g10/gpg.c:493 #, fuzzy #| msgid "sign a key" msgid "quickly sign a key" msgstr "semnează o cheie" -#: g10/gpg.c:494 +#: g10/gpg.c:495 #, fuzzy #| msgid "sign a key locally" msgid "quickly sign a key locally" msgstr "semnează o cheie local" -#: g10/gpg.c:496 +#: g10/gpg.c:497 #, fuzzy #| msgid "generate a new key pair" msgid "quickly revoke a key signature" msgstr "generează o nouă perechi de chei" -#: g10/gpg.c:497 +#: g10/gpg.c:498 msgid "sign a key" msgstr "semnează o cheie" -#: g10/gpg.c:498 +#: g10/gpg.c:499 msgid "sign a key locally" msgstr "semnează o cheie local" -#: g10/gpg.c:499 +#: g10/gpg.c:500 msgid "sign or edit a key" msgstr "semnează sau editează o cheie" -#: g10/gpg.c:501 sm/gpgsm.c:246 +#: g10/gpg.c:502 sm/gpgsm.c:246 #, fuzzy msgid "change a passphrase" msgstr "schimbă fraza-parolă" -#: g10/gpg.c:505 +#: g10/gpg.c:506 msgid "export keys" msgstr "exportă chei" -#: g10/gpg.c:506 +#: g10/gpg.c:507 msgid "export keys to a keyserver" msgstr "exportă chei pentru un server de chei" -#: g10/gpg.c:507 +#: g10/gpg.c:508 msgid "import keys from a keyserver" msgstr "importă chei de la un server de chei" -#: g10/gpg.c:510 +#: g10/gpg.c:511 msgid "search for keys on a keyserver" msgstr "caută pentru chei pe un server de chei" -#: g10/gpg.c:512 +#: g10/gpg.c:513 msgid "update all keys from a keyserver" msgstr "actualizează toate cheile de la un server de chei" -#: g10/gpg.c:520 +#: g10/gpg.c:521 msgid "import/merge keys" msgstr "importă/combină chei" -#: g10/gpg.c:523 +#: g10/gpg.c:524 msgid "print the card status" msgstr "afişează starea cardului" -#: g10/gpg.c:524 +#: g10/gpg.c:525 msgid "change data on a card" msgstr "schimbă data de pe card" -#: g10/gpg.c:526 +#: g10/gpg.c:527 msgid "change a card's PIN" msgstr "schimbă PIN-ul unui card" -#: g10/gpg.c:538 +#: g10/gpg.c:539 msgid "update the trust database" msgstr "actualizează baza de date de încredere" -#: g10/gpg.c:548 +#: g10/gpg.c:549 #, fuzzy msgid "print message digests" msgstr "|algo [fişiere]|afişează rezumate mesaje" -#: g10/gpg.c:552 sm/gpgsm.c:241 +#: g10/gpg.c:553 sm/gpgsm.c:241 msgid "run in server mode" msgstr "" -#: g10/gpg.c:554 +#: g10/gpg.c:555 msgid "|VALUE|set the TOFU policy for a key" msgstr "" -#: g10/gpg.c:594 +#: g10/gpg.c:595 msgid "|NAME|use NAME as default secret key" msgstr "|NUME|foloseşte NUME ca cheie secretă implicită" -#: g10/gpg.c:596 sm/gpgsm.c:332 +#: g10/gpg.c:597 sm/gpgsm.c:332 #, fuzzy msgid "|NAME|encrypt to user ID NAME as well" msgstr "|NUME|cifrare pentru NUME" -#: g10/gpg.c:604 +#: g10/gpg.c:605 msgid "|SPEC|set up email aliases" msgstr "" -#: g10/gpg.c:616 +#: g10/gpg.c:617 msgid "use strict OpenPGP behavior" msgstr "foloseşte comportament strict OpenPGP" -#: g10/gpg.c:641 kbx/kbxutil.c:90 sm/gpgsm.c:412 tools/gpgconf.c:112 +#: g10/gpg.c:642 kbx/kbxutil.c:90 sm/gpgsm.c:412 tools/gpgconf.c:112 msgid "do not make any changes" msgstr "nu face nici o schimbare" -#: g10/gpg.c:642 +#: g10/gpg.c:643 msgid "prompt before overwriting" msgstr "întreabă înainte de a suprascrie" -#: g10/gpg.c:689 sm/gpgsm.c:304 +#: g10/gpg.c:690 sm/gpgsm.c:304 msgid "Options controlling the input" msgstr "" -#: g10/gpg.c:707 sm/gpgsm.c:314 +#: g10/gpg.c:708 sm/gpgsm.c:314 msgid "Options controlling the output" msgstr "" -#: g10/gpg.c:709 sm/gpgsm.c:316 +#: g10/gpg.c:710 sm/gpgsm.c:316 msgid "create ascii armored output" msgstr "crează ieşire în armură ascii" -#: g10/gpg.c:713 g10/gpgv.c:82 sm/gpgsm.c:321 +#: g10/gpg.c:714 g10/gpgv.c:82 sm/gpgsm.c:321 #, fuzzy msgid "|FILE|write output to FILE" msgstr "|FIŞIER|încarcă modulul extensie FIŞIER" -#: g10/gpg.c:726 +#: g10/gpg.c:727 msgid "use canonical text mode" msgstr "foloseşte modul text canonic" -#: g10/gpg.c:743 +#: g10/gpg.c:744 #, fuzzy msgid "|N|set compress level to N (0 disables)" msgstr "|N|setează nivel de compresie N (0 deactivează)" -#: g10/gpg.c:750 sm/gpgsm.c:347 +#: g10/gpg.c:751 sm/gpgsm.c:347 msgid "Options controlling key import and export" msgstr "" -#: g10/gpg.c:753 +#: g10/gpg.c:754 msgid "|MECHANISMS|use MECHANISMS to locate keys by mail address" msgstr "" -#: g10/gpg.c:756 +#: g10/gpg.c:757 #, fuzzy #| msgid "import keys from a keyserver" msgid "import missing key from a signature" msgstr "importă chei de la un server de chei" -#: g10/gpg.c:761 +#: g10/gpg.c:762 #, fuzzy #| msgid "list and check key signatures" msgid "include the public key in signatures" msgstr "enumeră şi verifică semnăturile cheii" -#: g10/gpg.c:764 sm/gpgsm.c:350 +#: g10/gpg.c:765 sm/gpgsm.c:350 msgid "disable all access to the dirmngr" msgstr "" -#: g10/gpg.c:776 sm/gpgsm.c:357 +#: g10/gpg.c:777 sm/gpgsm.c:357 msgid "Options controlling key listings" msgstr "" -#: g10/gpg.c:805 sm/gpgsm.c:324 +#: g10/gpg.c:806 sm/gpgsm.c:324 #, fuzzy #| msgid "list secret keys" msgid "Options to specify keys" msgstr "enumeră chei secrete" -#: g10/gpg.c:807 sm/gpgsm.c:326 +#: g10/gpg.c:808 sm/gpgsm.c:326 #, fuzzy msgid "|USER-ID|encrypt for USER-ID" msgstr "|NUME|cifrare pentru NUME" -#: g10/gpg.c:815 sm/gpgsm.c:328 +#: g10/gpg.c:816 sm/gpgsm.c:328 #, fuzzy msgid "|USER-ID|use USER-ID to sign or decrypt" msgstr "foloseşte acest id-utilizator pentru a semna sau decripta" -#: g10/gpg.c:866 sm/gpgsm.c:396 +#: g10/gpg.c:867 sm/gpgsm.c:396 msgid "Options for unattended use" msgstr "" -#: g10/gpg.c:885 sm/gpgsm.c:408 dirmngr/dirmngr.c:294 +#: g10/gpg.c:886 sm/gpgsm.c:408 dirmngr/dirmngr.c:294 msgid "Other options" msgstr "" -#: g10/gpg.c:953 sm/gpgsm.c:440 +#: g10/gpg.c:955 sm/gpgsm.c:440 msgid "" "@\n" "(See the man page for a complete listing of all commands and options)\n" @@ -3035,7 +3041,7 @@ "@\n" "(Arată pagina man pentru o listă completă a comenzilor şi opţiunilor)\n" -#: g10/gpg.c:956 +#: g10/gpg.c:958 #, fuzzy #| msgid "" #| "@\n" @@ -3065,13 +3071,13 @@ " --list-keys [nume] arată chei\n" " --fingerprint [nume] arată amprente\n" -#: g10/gpg.c:1130 +#: g10/gpg.c:1139 #, fuzzy #| msgid "Usage: gpg [options] [files] (-h for help)" msgid "Usage: @GPG@ [options] [files] (-h for help)" msgstr "Folosire: gpg [opţiuni] [fişiere] (-h pentru ajutor)" -#: g10/gpg.c:1133 +#: g10/gpg.c:1142 #, fuzzy #| msgid "" #| "Syntax: gpg [options] [files]\n" @@ -3086,7 +3092,7 @@ "sign, check, encrypt sau decrypt\n" "operaţiunea implicită depinde de datele de intrare\n" -#: g10/gpg.c:1144 sm/gpgsm.c:624 +#: g10/gpg.c:1153 sm/gpgsm.c:624 msgid "" "\n" "Supported algorithms:\n" @@ -3094,79 +3100,79 @@ "\n" "Algoritmuri suportate:\n" -#: g10/gpg.c:1147 +#: g10/gpg.c:1156 msgid "Pubkey: " msgstr "Pubkey: " -#: g10/gpg.c:1154 g10/keyedit.c:3338 +#: g10/gpg.c:1163 g10/keyedit.c:3338 msgid "Cipher: " msgstr "Cifru: " -#: g10/gpg.c:1161 +#: g10/gpg.c:1170 msgid "Hash: " msgstr "Hash: " -#: g10/gpg.c:1168 g10/keyedit.c:3404 +#: g10/gpg.c:1177 g10/keyedit.c:3404 msgid "Compression: " msgstr "Compresie: " -#: g10/gpg.c:1241 sm/gpgsm.c:698 +#: g10/gpg.c:1250 sm/gpgsm.c:698 #, fuzzy, c-format msgid "usage: %s [options] %s\n" msgstr "folosire: gpg [opţiuni] " -#: g10/gpg.c:1436 sm/gpgsm.c:791 +#: g10/gpg.c:1445 sm/gpgsm.c:791 #, c-format msgid "conflicting commands\n" msgstr "comenzi în conflict\n" -#: g10/gpg.c:1454 +#: g10/gpg.c:1463 #, fuzzy, c-format #| msgid "no = sign found in group definition `%s'\n" msgid "no = sign found in group definition '%s'\n" msgstr "nu am găsit nici un semn = în definiţia grupului `%s'\n" -#: g10/gpg.c:1652 +#: g10/gpg.c:1661 #, fuzzy, c-format #| msgid "WARNING: unsafe ownership on homedir `%s'\n" msgid "WARNING: unsafe ownership on homedir '%s'\n" msgstr "" "AVERTISMENT: proprietate nesigură (unsafe) pentru directorul home `%s'\n" -#: g10/gpg.c:1655 +#: g10/gpg.c:1664 #, fuzzy, c-format #| msgid "WARNING: unsafe ownership on configuration file `%s'\n" msgid "WARNING: unsafe ownership on configuration file '%s'\n" msgstr "" "AVERTISMENT: proprietate nesigură (unsafe) pentru fişier configurare `%s'\n" -#: g10/gpg.c:1658 +#: g10/gpg.c:1667 #, fuzzy, c-format #| msgid "WARNING: unsafe ownership on extension `%s'\n" msgid "WARNING: unsafe ownership on extension '%s'\n" msgstr "AVERTISMENT: proprietate nesigură (unsafe) pentru extensia `%s'\n" -#: g10/gpg.c:1664 +#: g10/gpg.c:1673 #, fuzzy, c-format #| msgid "WARNING: unsafe permissions on homedir `%s'\n" msgid "WARNING: unsafe permissions on homedir '%s'\n" msgstr "" "AVERTISMENT: permisiuni nesigure (unsafe) pentru directorul home `%s'\n" -#: g10/gpg.c:1667 +#: g10/gpg.c:1676 #, fuzzy, c-format #| msgid "WARNING: unsafe permissions on configuration file `%s'\n" msgid "WARNING: unsafe permissions on configuration file '%s'\n" msgstr "" "AVERTISMENT: permisiuni nesigure (unsafe) pentru fişier configurare `%s'\n" -#: g10/gpg.c:1670 +#: g10/gpg.c:1679 #, fuzzy, c-format #| msgid "WARNING: unsafe permissions on extension `%s'\n" msgid "WARNING: unsafe permissions on extension '%s'\n" msgstr "AVERTISMENT: permisiuni nesigure (unsafe) pentru extensia `%s'\n" -#: g10/gpg.c:1676 +#: g10/gpg.c:1685 #, fuzzy, c-format #| msgid "WARNING: unsafe enclosing directory ownership on homedir `%s'\n" msgid "WARNING: unsafe enclosing directory ownership on homedir '%s'\n" @@ -3174,7 +3180,7 @@ "AVERTISMENT: proprietate director incluziuni nesigur (unsafe) pentru " "directorul home `%s'\n" -#: g10/gpg.c:1679 +#: g10/gpg.c:1688 #, fuzzy, c-format #| msgid "" #| "WARNING: unsafe enclosing directory ownership on configuration file `%s'\n" @@ -3184,7 +3190,7 @@ "AVERTISMENT: proprietate director incluziuni nesigur (unsafe) pentru fişier " "configurare `%s'\n" -#: g10/gpg.c:1682 +#: g10/gpg.c:1691 #, fuzzy, c-format #| msgid "WARNING: unsafe enclosing directory ownership on extension `%s'\n" msgid "WARNING: unsafe enclosing directory ownership on extension '%s'\n" @@ -3192,7 +3198,7 @@ "AVERTISMENT: proprietate director incluziuni nesigur (unsafe) pentru " "extensia `%s'\n" -#: g10/gpg.c:1688 +#: g10/gpg.c:1697 #, fuzzy, c-format #| msgid "WARNING: unsafe enclosing directory permissions on homedir `%s'\n" msgid "WARNING: unsafe enclosing directory permissions on homedir '%s'\n" @@ -3200,7 +3206,7 @@ "AVERTISMENT: permisiuni director incluziuni nesigure (unsafe) pentru " "directorul home `%s'\n" -#: g10/gpg.c:1691 +#: g10/gpg.c:1700 #, fuzzy, c-format #| msgid "" #| "WARNING: unsafe enclosing directory permissions on configuration file `" @@ -3211,7 +3217,7 @@ "AVERTISMENT: permisiuni director incluziuni nesigure (unsafe) pentru fişier " "configurare `%s'\n" -#: g10/gpg.c:1694 +#: g10/gpg.c:1703 #, fuzzy, c-format #| msgid "WARNING: unsafe enclosing directory permissions on extension `%s'\n" msgid "WARNING: unsafe enclosing directory permissions on extension '%s'\n" @@ -3219,469 +3225,469 @@ "AVERTISMENT: permisiuni director incluziuni nesigure (unsafe) pentru " "extensia `%s'\n" -#: g10/gpg.c:1910 +#: g10/gpg.c:1919 #, fuzzy, c-format #| msgid "unknown configuration item `%s'\n" msgid "unknown configuration item '%s'\n" msgstr "articol configurare necunoscut `%s'\n" -#: g10/gpg.c:2009 +#: g10/gpg.c:2018 msgid "display photo IDs during key listings" msgstr "" -#: g10/gpg.c:2011 +#: g10/gpg.c:2020 #, fuzzy msgid "show key usage information during key listings" msgstr "Nici o semnătură corespunzătoare în inelul secret\n" -#: g10/gpg.c:2013 +#: g10/gpg.c:2022 msgid "show policy URLs during signature listings" msgstr "" -#: g10/gpg.c:2015 +#: g10/gpg.c:2024 #, fuzzy msgid "show all notations during signature listings" msgstr "Nici o semnătură corespunzătoare în inelul secret\n" -#: g10/gpg.c:2017 +#: g10/gpg.c:2026 msgid "show IETF standard notations during signature listings" msgstr "" -#: g10/gpg.c:2021 +#: g10/gpg.c:2030 msgid "show user-supplied notations during signature listings" msgstr "" -#: g10/gpg.c:2023 +#: g10/gpg.c:2032 #, fuzzy msgid "show preferred keyserver URLs during signature listings" msgstr "URL-ul serverului de chei preferat furnizat este invalid\n" -#: g10/gpg.c:2025 +#: g10/gpg.c:2034 msgid "show user ID validity during key listings" msgstr "" -#: g10/gpg.c:2027 +#: g10/gpg.c:2036 msgid "show revoked and expired user IDs in key listings" msgstr "" -#: g10/gpg.c:2029 +#: g10/gpg.c:2038 msgid "show revoked and expired subkeys in key listings" msgstr "" -#: g10/gpg.c:2031 +#: g10/gpg.c:2040 #, fuzzy msgid "show the keyring name in key listings" msgstr "arată căruia dintre inelele de chei îi aparţine o cheie enumerată" -#: g10/gpg.c:2033 +#: g10/gpg.c:2042 #, fuzzy msgid "show expiration dates during signature listings" msgstr "Nici o semnătură corespunzătoare în inelul secret\n" -#: g10/gpg.c:2148 +#: g10/gpg.c:2157 #, fuzzy, c-format #| msgid "unknown option `%s'\n" msgid "unknown TOFU policy '%s'\n" msgstr "opţiune necunoscută `%s'\n" -#: g10/gpg.c:2150 +#: g10/gpg.c:2159 #, c-format msgid "(use \"help\" to list choices)\n" msgstr "" -#: g10/gpg.c:2240 g10/keyedit.c:1719 +#: g10/gpg.c:2249 g10/keyedit.c:1719 #, c-format msgid "This command is not allowed while in %s mode.\n" msgstr "Această comandă nu este permisă în modul %s.\n" -#: g10/gpg.c:2878 g10/gpg.c:3718 g10/gpg.c:3730 +#: g10/gpg.c:2896 g10/gpg.c:3736 g10/gpg.c:3748 #, fuzzy, c-format #| msgid "NOTE: %s is not for normal use!\n" msgid "Note: %s is not for normal use!\n" msgstr "NOTĂ: %s nu este pentru o folosire normală!\n" -#: g10/gpg.c:3053 g10/gpg.c:3065 +#: g10/gpg.c:3071 g10/gpg.c:3083 #, fuzzy, c-format #| msgid "`%s' is not a valid signature expiration\n" msgid "'%s' is not a valid signature expiration\n" msgstr "`%s' nu este expirare de semnătură validă\n" -#: g10/gpg.c:3087 +#: g10/gpg.c:3105 #, fuzzy, c-format msgid "\"%s\" is not a proper mail address\n" msgstr "Nu este o adresă de email validă\n" -#: g10/gpg.c:3119 sm/gpgsm.c:1121 +#: g10/gpg.c:3137 sm/gpgsm.c:1121 #, fuzzy, c-format msgid "invalid pinentry mode '%s'\n" msgstr "algoritm hash invalid `%s'\n" -#: g10/gpg.c:3125 sm/gpgsm.c:1127 +#: g10/gpg.c:3143 sm/gpgsm.c:1127 #, fuzzy, c-format msgid "invalid request origin '%s'\n" msgstr "opţiuni enumerare invalide\n" -#: g10/gpg.c:3179 +#: g10/gpg.c:3197 #, fuzzy, c-format #| msgid "`%s' is not a valid character set\n" msgid "'%s' is not a valid character set\n" msgstr "`%s' nu este un set de carectere valid\n" # -#: g10/gpg.c:3201 g10/gpg.c:3415 g10/keyedit.c:5338 +#: g10/gpg.c:3219 g10/gpg.c:3433 g10/keyedit.c:5338 #, c-format msgid "could not parse keyserver URL\n" msgstr "nu am putut interpreta URL-ul serverului de chei\n" -#: g10/gpg.c:3219 +#: g10/gpg.c:3237 #, c-format msgid "%s:%d: invalid keyserver options\n" msgstr "%s:%d: opţiuni server de chei invalide\n" -#: g10/gpg.c:3222 +#: g10/gpg.c:3240 #, c-format msgid "invalid keyserver options\n" msgstr "opţiuni server de chei invalide\n" -#: g10/gpg.c:3229 +#: g10/gpg.c:3247 #, c-format msgid "%s:%d: invalid import options\n" msgstr "%s:%d: opţiuni import invalide\n" -#: g10/gpg.c:3232 +#: g10/gpg.c:3250 #, c-format msgid "invalid import options\n" msgstr "opţiuni import invalide\n" -#: g10/gpg.c:3238 g10/gpg.c:3253 +#: g10/gpg.c:3256 g10/gpg.c:3271 #, fuzzy, c-format #| msgid "invalid list options\n" msgid "invalid filter option: %s\n" msgstr "opţiuni enumerare invalide\n" -#: g10/gpg.c:3244 +#: g10/gpg.c:3262 #, c-format msgid "%s:%d: invalid export options\n" msgstr "%s:%d: opţiuni export invalide\n" -#: g10/gpg.c:3247 +#: g10/gpg.c:3265 #, c-format msgid "invalid export options\n" msgstr "opţiuni export invalide\n" -#: g10/gpg.c:3259 +#: g10/gpg.c:3277 #, c-format msgid "%s:%d: invalid list options\n" msgstr "%s:%d: opţiuni enumerare invalide\n" -#: g10/gpg.c:3262 +#: g10/gpg.c:3280 #, c-format msgid "invalid list options\n" msgstr "opţiuni enumerare invalide\n" -#: g10/gpg.c:3270 +#: g10/gpg.c:3288 msgid "display photo IDs during signature verification" msgstr "" -#: g10/gpg.c:3272 +#: g10/gpg.c:3290 msgid "show policy URLs during signature verification" msgstr "" -#: g10/gpg.c:3274 +#: g10/gpg.c:3292 #, fuzzy msgid "show all notations during signature verification" msgstr "`%s' nu este expirare de semnătură validă\n" -#: g10/gpg.c:3276 +#: g10/gpg.c:3294 msgid "show IETF standard notations during signature verification" msgstr "" -#: g10/gpg.c:3280 +#: g10/gpg.c:3298 msgid "show user-supplied notations during signature verification" msgstr "" -#: g10/gpg.c:3282 +#: g10/gpg.c:3300 #, fuzzy msgid "show preferred keyserver URLs during signature verification" msgstr "URL-ul serverului de chei preferat furnizat este invalid\n" -#: g10/gpg.c:3284 +#: g10/gpg.c:3302 #, fuzzy msgid "show user ID validity during signature verification" msgstr "`%s' nu este expirare de semnătură validă\n" -#: g10/gpg.c:3286 +#: g10/gpg.c:3304 msgid "show revoked and expired user IDs in signature verification" msgstr "" -#: g10/gpg.c:3288 +#: g10/gpg.c:3306 #, fuzzy msgid "show only the primary user ID in signature verification" msgstr "`%s' nu este expirare de semnătură validă\n" -#: g10/gpg.c:3290 +#: g10/gpg.c:3308 msgid "validate signatures with PKA data" msgstr "" -#: g10/gpg.c:3292 +#: g10/gpg.c:3310 msgid "elevate the trust of signatures with valid PKA data" msgstr "" -#: g10/gpg.c:3299 +#: g10/gpg.c:3317 #, c-format msgid "%s:%d: invalid verify options\n" msgstr "%s:%d: opţiuni verificare invalide\n" -#: g10/gpg.c:3302 +#: g10/gpg.c:3320 #, c-format msgid "invalid verify options\n" msgstr "opţiuni verificare invalide\n" -#: g10/gpg.c:3309 +#: g10/gpg.c:3327 #, c-format msgid "unable to set exec-path to %s\n" msgstr "nu pot seta cale-execuţie ca %s\n" -#: g10/gpg.c:3513 +#: g10/gpg.c:3531 #, fuzzy, c-format msgid "%s:%d: invalid auto-key-locate list\n" msgstr "%s:%d: opţiuni verificare invalide\n" -#: g10/gpg.c:3516 +#: g10/gpg.c:3534 #, c-format msgid "invalid auto-key-locate list\n" msgstr "" -#: g10/gpg.c:3700 sm/gpgsm.c:1492 +#: g10/gpg.c:3718 sm/gpgsm.c:1492 #, c-format msgid "WARNING: program may create a core file!\n" msgstr "AVERTISMENT: programul ar putea crea un fişier core!\n" -#: g10/gpg.c:3711 +#: g10/gpg.c:3729 #, c-format msgid "WARNING: %s overrides %s\n" msgstr "AVERTISMENT: %s înlocuieşte %s\n" -#: g10/gpg.c:3720 +#: g10/gpg.c:3738 #, c-format msgid "%s not allowed with %s!\n" msgstr "%s nu este permis cu %s!\n" -#: g10/gpg.c:3723 +#: g10/gpg.c:3741 #, c-format msgid "%s makes no sense with %s!\n" msgstr "%s nu are sens cu %s!\n" -#: g10/gpg.c:3738 sm/gpgsm.c:1509 dirmngr/dirmngr.c:1205 +#: g10/gpg.c:3756 sm/gpgsm.c:1509 dirmngr/dirmngr.c:1205 #, c-format msgid "WARNING: running with faked system time: " msgstr "" -#: g10/gpg.c:3759 +#: g10/gpg.c:3777 #, c-format msgid "will not run with insecure memory due to %s\n" msgstr "nu va rula cu memorie neprotejată (insecure) pentru că %s\n" -#: g10/gpg.c:3804 g10/gpg.c:3828 sm/gpgsm.c:1579 +#: g10/gpg.c:3824 g10/gpg.c:3848 sm/gpgsm.c:1579 #, c-format msgid "selected cipher algorithm is invalid\n" msgstr "algoritm cifrare selectat este invalid\n" -#: g10/gpg.c:3816 +#: g10/gpg.c:3836 #, c-format msgid "selected compression algorithm is invalid\n" msgstr "algoritm compresie selectat este invalid\n" -#: g10/gpg.c:3822 +#: g10/gpg.c:3842 #, c-format msgid "selected certification digest algorithm is invalid\n" msgstr "algoritm rezumat certificare selectat este invalid\n" -#: g10/gpg.c:3837 +#: g10/gpg.c:3857 #, c-format msgid "completes-needed must be greater than 0\n" msgstr "completes-needed trebuie să fie mai mare decât 0\n" -#: g10/gpg.c:3839 +#: g10/gpg.c:3859 #, c-format msgid "marginals-needed must be greater than 1\n" msgstr "marginals-needed trebuie să fie mai mare decât 1\n" -#: g10/gpg.c:3841 +#: g10/gpg.c:3861 #, c-format msgid "max-cert-depth must be in the range from 1 to 255\n" msgstr "max-cert-depth trebuie să fie în intervalul de la 1 la 255\n" -#: g10/gpg.c:3843 +#: g10/gpg.c:3863 #, c-format msgid "invalid default-cert-level; must be 0, 1, 2, or 3\n" msgstr "default-cert-level invalid; trebuie să fie 0, 1, 2 sau 3\n" -#: g10/gpg.c:3845 +#: g10/gpg.c:3865 #, c-format msgid "invalid min-cert-level; must be 1, 2, or 3\n" msgstr "min-cert-level invalid; trebuie să fie 0, 1, 2 sau 3\n" -#: g10/gpg.c:3849 +#: g10/gpg.c:3869 #, fuzzy, c-format #| msgid "NOTE: simple S2K mode (0) is strongly discouraged\n" msgid "Note: simple S2K mode (0) is strongly discouraged\n" msgstr "NOTĂ: modul S2K simplu (0) este contraindicat cu insistenţă\n" -#: g10/gpg.c:3853 +#: g10/gpg.c:3873 #, c-format msgid "invalid S2K mode; must be 0, 1 or 3\n" msgstr "mod S2K invalid; trebuie să fie 0, 1 sau 3\n" -#: g10/gpg.c:3860 +#: g10/gpg.c:3880 #, c-format msgid "invalid default preferences\n" msgstr "preferinţe implicite invalide\n" -#: g10/gpg.c:3864 +#: g10/gpg.c:3884 #, c-format msgid "invalid personal cipher preferences\n" msgstr "preferinţe cifrare personale invalide\n" -#: g10/gpg.c:3868 +#: g10/gpg.c:3888 #, c-format msgid "invalid personal digest preferences\n" msgstr "preferinţe rezumat personale invalide\n" -#: g10/gpg.c:3872 +#: g10/gpg.c:3892 #, c-format msgid "invalid personal compress preferences\n" msgstr "preferinţe compresie personale invalide\n" -#: g10/gpg.c:3908 +#: g10/gpg.c:3928 #, c-format msgid "%s does not yet work with %s\n" msgstr "%s nu merge încă cu %s!\n" -#: g10/gpg.c:3971 +#: g10/gpg.c:3991 #, fuzzy, c-format #| msgid "you may not use compression algorithm `%s' while in %s mode\n" msgid "compression algorithm '%s' may not be used in %s mode\n" msgstr "nu puteţi folosi algoritmul de compresie `%s' câtă vreme în modul %s\n" -#: g10/gpg.c:4115 +#: g10/gpg.c:4135 #, c-format msgid "failed to initialize the TrustDB: %s\n" msgstr "am eşuat să iniţializez TrustDB:%s\n" -#: g10/gpg.c:4127 +#: g10/gpg.c:4147 #, c-format msgid "WARNING: recipients (-r) given without using public key encryption\n" msgstr "" "AVERTISMENT: destinatari (-r) furnizaţi fără a folosi cifrare cu cheie " "publică\n" -#: g10/gpg.c:4199 +#: g10/gpg.c:4219 #, fuzzy, c-format #| msgid "symmetric encryption of `%s' failed: %s\n" msgid "symmetric encryption of '%s' failed: %s\n" msgstr "cifrarea simetrică a lui `%s' a eşuat: %s\n" -#: g10/gpg.c:4228 +#: g10/gpg.c:4248 #, c-format msgid "you cannot use --symmetric --encrypt with --s2k-mode 0\n" msgstr "nu puteţi folosi --symmetric --encrypt cu --s2k-mode 0\n" -#: g10/gpg.c:4231 +#: g10/gpg.c:4251 #, fuzzy, c-format #| msgid "you cannot use --symmetric --encrypt while in %s mode\n" msgid "you cannot use --symmetric --encrypt in %s mode\n" msgstr "nu puteţi folosi --symmetric --encrypt câtă vreme în modul %s\n" -#: g10/gpg.c:4289 +#: g10/gpg.c:4309 #, c-format msgid "you cannot use --symmetric --sign --encrypt with --s2k-mode 0\n" msgstr "nu puteţi folosi --symmetric --sign --encrypt cu --s2k-mode 0\n" -#: g10/gpg.c:4292 +#: g10/gpg.c:4312 #, fuzzy, c-format #| msgid "you cannot use --symmetric --sign --encrypt while in %s mode\n" msgid "you cannot use --symmetric --sign --encrypt in %s mode\n" msgstr "nu puteţi folosi --symmetric --sign --encrypt câtă vreme în modul %s\n" -#: g10/gpg.c:4692 g10/keyserver.c:1648 +#: g10/gpg.c:4712 g10/keyserver.c:1648 #, c-format msgid "keyserver send failed: %s\n" msgstr "trimitere server de chei eşuată: %s\n" -#: g10/gpg.c:4697 +#: g10/gpg.c:4717 #, c-format msgid "keyserver receive failed: %s\n" msgstr "recepţie server de chei eşuată: %s\n" -#: g10/gpg.c:4703 +#: g10/gpg.c:4723 #, c-format msgid "key export failed: %s\n" msgstr "export cheie eşuat: %s\n" -#: g10/gpg.c:4716 +#: g10/gpg.c:4736 #, fuzzy, c-format #| msgid "key export failed: %s\n" msgid "export as ssh key failed: %s\n" msgstr "export cheie eşuat: %s\n" -#: g10/gpg.c:4728 +#: g10/gpg.c:4748 #, c-format msgid "keyserver search failed: %s\n" msgstr "căutare server de chei eşuată: %s\n" -#: g10/gpg.c:4741 +#: g10/gpg.c:4761 #, c-format msgid "keyserver refresh failed: %s\n" msgstr "actualizare server de chei eşuată: %s\n" -#: g10/gpg.c:4810 +#: g10/gpg.c:4830 #, c-format msgid "dearmoring failed: %s\n" msgstr "eliminarea armurii a eşuat: %s\n" -#: g10/gpg.c:4821 +#: g10/gpg.c:4841 #, c-format msgid "enarmoring failed: %s\n" msgstr "punerea armurii a eşuat: %s\n" -#: g10/gpg.c:4913 +#: g10/gpg.c:4933 #, fuzzy, c-format #| msgid "invalid hash algorithm `%s'\n" msgid "invalid hash algorithm '%s'\n" msgstr "algoritm hash invalid `%s'\n" -#: g10/gpg.c:5065 g10/tofu.c:2153 +#: g10/gpg.c:5085 g10/tofu.c:2153 #, fuzzy, c-format msgid "error parsing key specification '%s': %s\n" msgstr "eroare la obţinerea numărului serial: %s\n" -#: g10/gpg.c:5078 +#: g10/gpg.c:5098 #, c-format msgid "'%s' does not appear to be a valid key ID, fingerprint or keygrip\n" msgstr "" -#: g10/gpg.c:5134 +#: g10/gpg.c:5154 #, c-format msgid "WARNING: no command supplied. Trying to guess what you mean ...\n" msgstr "" -#: g10/gpg.c:5145 +#: g10/gpg.c:5165 #, c-format msgid "Go ahead and type your message ...\n" msgstr "Daţi-i drumul şi scrieţi mesajul ...\n" -#: g10/gpg.c:5490 +#: g10/gpg.c:5510 #, c-format msgid "the given certification policy URL is invalid\n" msgstr "URL-ul politicii de certificare furnizat este invalid\n" -#: g10/gpg.c:5492 +#: g10/gpg.c:5512 #, c-format msgid "the given signature policy URL is invalid\n" msgstr "URL-ul politicii de semnături furnizat este invalid\n" -#: g10/gpg.c:5525 +#: g10/gpg.c:5545 #, c-format msgid "the given preferred keyserver URL is invalid\n" msgstr "URL-ul serverului de chei preferat furnizat este invalid\n" @@ -3726,325 +3732,325 @@ msgid "No help available for '%s'" msgstr "Nici un disponibil disponibil pentru `%s'" -#: g10/import.c:169 +#: g10/import.c:170 msgid "import signatures that are marked as local-only" msgstr "" -#: g10/import.c:172 +#: g10/import.c:173 msgid "repair damage from the pks keyserver during import" msgstr "" -#: g10/import.c:175 +#: g10/import.c:176 #, fuzzy msgid "do not clear the ownertrust values during import" msgstr "actualizează baza de date de încredere" -#: g10/import.c:178 +#: g10/import.c:179 #, fuzzy msgid "do not update the trustdb after import" msgstr "actualizează baza de date de încredere" -#: g10/import.c:181 +#: g10/import.c:182 #, fuzzy #| msgid "show key fingerprint" msgid "show key during import" msgstr "afişează amprenta cheii" -#: g10/import.c:184 +#: g10/import.c:185 msgid "only accept updates to existing keys" msgstr "" -#: g10/import.c:187 +#: g10/import.c:188 #, fuzzy msgid "remove unusable parts from key after import" msgstr "cheie secretă de nefolosit" -#: g10/import.c:190 +#: g10/import.c:191 msgid "remove as much as possible from key after import" msgstr "" -#: g10/import.c:193 +#: g10/import.c:194 msgid "ignore key-signatures which are not self-signatures" msgstr "" -#: g10/import.c:196 +#: g10/import.c:197 msgid "run import filters and export key immediately" msgstr "" -#: g10/import.c:199 +#: g10/import.c:200 msgid "assume the GnuPG key backup format" msgstr "" -#: g10/import.c:203 +#: g10/import.c:204 #, fuzzy #| msgid "show key fingerprint" msgid "repair keys on import" msgstr "afişează amprenta cheii" -#: g10/import.c:392 g10/import.c:711 +#: g10/import.c:393 g10/import.c:712 #, c-format msgid "skipping block of type %d\n" msgstr "bloc de tip %d sărit\n" -#: g10/import.c:728 +#: g10/import.c:729 #, c-format msgid "%lu keys processed so far\n" msgstr "%lu chei procesate până acum\n" -#: g10/import.c:814 +#: g10/import.c:815 #, c-format msgid "Total number processed: %lu\n" msgstr "Număr total procesate: %lu\n" -#: g10/import.c:817 +#: g10/import.c:818 #, fuzzy, c-format #| msgid " skipped new keys: %lu\n" msgid " skipped PGP-2 keys: %lu\n" msgstr " chei noi sărite: %lu\n" -#: g10/import.c:819 +#: g10/import.c:820 #, c-format msgid " skipped new keys: %lu\n" msgstr " chei noi sărite: %lu\n" -#: g10/import.c:822 +#: g10/import.c:823 #, c-format msgid " w/o user IDs: %lu\n" msgstr " fără ID-uri utilizator: %lu\n" -#: g10/import.c:825 sm/import.c:130 +#: g10/import.c:826 sm/import.c:130 #, c-format msgid " imported: %lu" msgstr " importate: %lu" -#: g10/import.c:829 sm/import.c:134 +#: g10/import.c:830 sm/import.c:134 #, c-format msgid " unchanged: %lu\n" msgstr " neschimbate: %lu\n" -#: g10/import.c:831 +#: g10/import.c:832 #, c-format msgid " new user IDs: %lu\n" msgstr " noi ID-uri utilizator: %lu\n" -#: g10/import.c:833 +#: g10/import.c:834 #, c-format msgid " new subkeys: %lu\n" msgstr " noi subchei: %lu\n" -#: g10/import.c:835 +#: g10/import.c:836 #, c-format msgid " new signatures: %lu\n" msgstr " noi semnături: %lu\n" -#: g10/import.c:837 +#: g10/import.c:838 #, c-format msgid " new key revocations: %lu\n" msgstr " noi revocări de chei: %lu\n" -#: g10/import.c:839 sm/import.c:136 +#: g10/import.c:840 sm/import.c:136 #, c-format msgid " secret keys read: %lu\n" msgstr " chei secrete citite: %lu\n" -#: g10/import.c:841 sm/import.c:138 +#: g10/import.c:842 sm/import.c:138 #, c-format msgid " secret keys imported: %lu\n" msgstr " chei secrete importate: %lu\n" -#: g10/import.c:843 sm/import.c:140 +#: g10/import.c:844 sm/import.c:140 #, c-format msgid " secret keys unchanged: %lu\n" msgstr "chei secrete neschimbate: %lu\n" -#: g10/import.c:845 sm/import.c:142 +#: g10/import.c:846 sm/import.c:142 #, c-format msgid " not imported: %lu\n" msgstr " ne importate: %lu\n" -#: g10/import.c:847 +#: g10/import.c:848 #, fuzzy, c-format msgid " signatures cleaned: %lu\n" msgstr "semnături create până acum: %lu\n" -#: g10/import.c:849 +#: g10/import.c:850 #, fuzzy, c-format msgid " user IDs cleaned: %lu\n" msgstr " chei secrete citite: %lu\n" -#: g10/import.c:1276 +#: g10/import.c:1277 #, fuzzy, c-format msgid "" "WARNING: key %s contains preferences for unavailable\n" "algorithms on these user IDs:\n" msgstr "AVERTISMENT: cheia %s conţine preferinţe pentru indisponibil\n" -#: g10/import.c:1318 +#: g10/import.c:1319 #, c-format msgid " \"%s\": preference for cipher algorithm %s\n" msgstr " \"%s\": preferinţă pentru algoritm de cifrare %s\n" -#: g10/import.c:1333 +#: g10/import.c:1334 #, c-format msgid " \"%s\": preference for digest algorithm %s\n" msgstr " \"%s\": preferinţă pentru algoritm rezumat %s\n" -#: g10/import.c:1345 +#: g10/import.c:1346 #, c-format msgid " \"%s\": preference for compression algorithm %s\n" msgstr " \"%s\": preferinţă pentru algoritm compresie %s\n" -#: g10/import.c:1358 +#: g10/import.c:1359 #, c-format msgid "it is strongly suggested that you update your preferences and\n" msgstr "" "este puternic sugerat să vă actualizaţi preferinţele şi re-distribuiţi\n" -#: g10/import.c:1360 +#: g10/import.c:1361 #, c-format msgid "re-distribute this key to avoid potential algorithm mismatch problems\n" msgstr "" "această cheie pentru a avita probleme potenţiale de ne-potrivire de " "algoritm\n" -#: g10/import.c:1385 +#: g10/import.c:1386 #, c-format msgid "you can update your preferences with: gpg --edit-key %s updpref save\n" msgstr "vă puteţi actualiza preferinţele cu: gpg --edit-key %s updpref save\n" -#: g10/import.c:1899 g10/import.c:3013 +#: g10/import.c:1902 g10/import.c:3028 #, c-format msgid "key %s: no user ID\n" msgstr "cheia %s: nici un ID utilizator\n" -#: g10/import.c:1905 +#: g10/import.c:1908 #, fuzzy, c-format #| msgid "skipped \"%s\": %s\n" msgid "key %s: %s\n" msgstr "sărită \"%s\": %s\n" -#: g10/import.c:1906 g10/import.c:2985 +#: g10/import.c:1909 g10/import.c:3000 msgid "rejected by import screener" msgstr "" -#: g10/import.c:1950 +#: g10/import.c:1953 #, c-format msgid "key %s: PKS subkey corruption repaired\n" msgstr "cheia %s: subcheia HPK coruptă a fost reparată\n" -#: g10/import.c:1971 +#: g10/import.c:1974 #, c-format msgid "key %s: accepted non self-signed user ID \"%s\"\n" msgstr "cheia %s: am acceptat ID-ul utilizator ce nu e auto-semnat \"%s\"\n" -#: g10/import.c:1981 g10/import.c:2012 +#: g10/import.c:1985 g10/import.c:2016 #, c-format msgid "key %s: no valid user IDs\n" msgstr "cheia %s: nici un ID utilizator valid\n" -#: g10/import.c:1983 +#: g10/import.c:1987 #, c-format msgid "this may be caused by a missing self-signature\n" msgstr "aceasta poate fi cauzată de o auto-semnătură ce lipseşte\n" -#: g10/import.c:2062 g10/import.c:3399 +#: g10/import.c:2066 g10/import.c:3415 #, c-format msgid "key %s: public key not found: %s\n" msgstr "cheia %s: cheia publică nu a fost găsită: %s\n" -#: g10/import.c:2068 +#: g10/import.c:2072 #, c-format msgid "key %s: new key - skipped\n" msgstr "cheia %s: cheie nouă - sărită\n" -#: g10/import.c:2080 +#: g10/import.c:2084 #, c-format msgid "no writable keyring found: %s\n" msgstr "n-am găsit nici un inel de chei ce poate fi scris: %s\n" -#: g10/import.c:2112 g10/import.c:2214 g10/import.c:3476 +#: g10/import.c:2116 g10/import.c:2218 g10/import.c:3492 #, fuzzy, c-format #| msgid "error writing keyring `%s': %s\n" msgid "error writing keyring '%s': %s\n" msgstr "eroare la scrierea inelului de chei `%s': %s\n" -#: g10/import.c:2135 +#: g10/import.c:2139 #, c-format msgid "key %s: public key \"%s\" imported\n" msgstr "cheia %s: cheia publică \"%s\" importată\n" -#: g10/import.c:2162 +#: g10/import.c:2166 #, c-format msgid "key %s: doesn't match our copy\n" msgstr "cheia %s: nu se potriveşte cu copia noastră\n" -#: g10/import.c:2230 +#: g10/import.c:2234 #, c-format msgid "key %s: \"%s\" 1 new user ID\n" msgstr "cheia %s: \"%s\" 1 nou ID utilizator\n" -#: g10/import.c:2233 +#: g10/import.c:2237 #, c-format msgid "key %s: \"%s\" %d new user IDs\n" msgstr "cheia %s: \"%s\" %d noi ID-uri utilizator\n" -#: g10/import.c:2236 +#: g10/import.c:2240 #, c-format msgid "key %s: \"%s\" 1 new signature\n" msgstr "cheia %s: \"%s\" 1 nouă semnătură\n" -#: g10/import.c:2239 +#: g10/import.c:2243 #, c-format msgid "key %s: \"%s\" %d new signatures\n" msgstr "cheia %s: \"%s\" %d noi semnături\n" -#: g10/import.c:2242 +#: g10/import.c:2246 #, c-format msgid "key %s: \"%s\" 1 new subkey\n" msgstr "cheia %s: \"%s\" 1 nouă subcheie\n" -#: g10/import.c:2245 +#: g10/import.c:2249 #, c-format msgid "key %s: \"%s\" %d new subkeys\n" msgstr "cheia %s: \"%s\" %d noi subchei\n" -#: g10/import.c:2248 +#: g10/import.c:2252 #, fuzzy, c-format msgid "key %s: \"%s\" %d signature cleaned\n" msgstr "cheia %s: \"%s\" %d noi semnături\n" -#: g10/import.c:2251 +#: g10/import.c:2255 #, fuzzy, c-format msgid "key %s: \"%s\" %d signatures cleaned\n" msgstr "cheia %s: \"%s\" %d noi semnături\n" -#: g10/import.c:2254 +#: g10/import.c:2258 #, fuzzy, c-format msgid "key %s: \"%s\" %d user ID cleaned\n" msgstr "cheia %s: \"%s\" %d noi ID-uri utilizator\n" -#: g10/import.c:2257 +#: g10/import.c:2261 #, fuzzy, c-format msgid "key %s: \"%s\" %d user IDs cleaned\n" msgstr "cheia %s: \"%s\" %d noi ID-uri utilizator\n" -#: g10/import.c:2293 +#: g10/import.c:2297 #, c-format msgid "key %s: \"%s\" not changed\n" msgstr "cheia %s: \"%s\" nu a fost schimbată\n" -#: g10/import.c:2652 g10/import.c:2847 +#: g10/import.c:2667 g10/import.c:2862 #, c-format msgid "key %s: secret key imported\n" msgstr "cheia %s: cheie secretă importată\n" -#: g10/import.c:2660 +#: g10/import.c:2675 #, fuzzy, c-format #| msgid "skipped: secret key already present\n" msgid "key %s: secret key already exists\n" msgstr "sărită: cheia secretă deja prezentă\n" -#: g10/import.c:2668 +#: g10/import.c:2683 #, fuzzy, c-format msgid "key %s: error sending to agent: %s\n" msgstr "eroare trimitere la `%s': %s\n" @@ -4057,198 +4063,198 @@ #. * Instead, user should be suggested to run 'gpg --card-status', #. * then, references to a card will be automatically created #. * again. -#: g10/import.c:2837 +#: g10/import.c:2852 #, c-format msgid "To migrate '%s', with each smartcard, run: %s\n" msgstr "" -#: g10/import.c:2984 +#: g10/import.c:2999 #, fuzzy, c-format #| msgid "secret key \"%s\" not found: %s\n" msgid "secret key %s: %s\n" msgstr "cheia secretă \"%s\" nu a fost găsită: %s\n" -#: g10/import.c:3005 g10/import.c:3044 +#: g10/import.c:3020 g10/import.c:3059 #, c-format msgid "importing secret keys not allowed\n" msgstr "importul de chei secrete nu este permis\n" -#: g10/import.c:3032 +#: g10/import.c:3047 #, c-format msgid "key %s: secret key with invalid cipher %d - skipped\n" msgstr "cheia %s: cheie secretă cu cifru invalid %d - sărită\n" -#: g10/import.c:3194 g10/pkclist.c:72 g10/revoke.c:776 +#: g10/import.c:3209 g10/pkclist.c:72 g10/revoke.c:776 msgid "No reason specified" msgstr "Nici un motiv specificat" -#: g10/import.c:3195 g10/pkclist.c:74 g10/revoke.c:778 +#: g10/import.c:3210 g10/pkclist.c:74 g10/revoke.c:778 msgid "Key is superseded" msgstr "Cheia este înlocuită" -#: g10/import.c:3196 g10/pkclist.c:76 g10/revoke.c:777 +#: g10/import.c:3211 g10/pkclist.c:76 g10/revoke.c:777 msgid "Key has been compromised" msgstr "Cheia a fost compromisă" -#: g10/import.c:3197 g10/pkclist.c:78 g10/revoke.c:779 +#: g10/import.c:3212 g10/pkclist.c:78 g10/revoke.c:779 msgid "Key is no longer used" msgstr "Cheia nu mai este folosită" -#: g10/import.c:3198 g10/pkclist.c:80 g10/revoke.c:780 +#: g10/import.c:3213 g10/pkclist.c:80 g10/revoke.c:780 msgid "User ID is no longer valid" msgstr "ID utilizator nu mai este valid" -#: g10/import.c:3323 g10/keylist.c:1258 g10/pkclist.c:84 +#: g10/import.c:3338 g10/keylist.c:1258 g10/pkclist.c:84 #, c-format msgid "reason for revocation: " msgstr "motiv pentru revocare: " -#: g10/import.c:3342 g10/keylist.c:1277 g10/pkclist.c:100 +#: g10/import.c:3357 g10/keylist.c:1277 g10/pkclist.c:100 #, c-format msgid "revocation comment: " msgstr "comentariu revocare: " -#: g10/import.c:3392 +#: g10/import.c:3408 #, c-format msgid "key %s: no public key - can't apply revocation certificate\n" msgstr "" "cheia %s: nici o cheie publică - nu pot aplica certificatul de revocare\n" -#: g10/import.c:3423 +#: g10/import.c:3439 #, c-format msgid "key %s: can't locate original keyblock: %s\n" msgstr "cheia %s: nu pot găsi keyblock-ul original: %s\n" -#: g10/import.c:3430 +#: g10/import.c:3446 #, c-format msgid "key %s: can't read original keyblock: %s\n" msgstr "cheia %s: nu pot citi keyblock-ul original: %s\n" -#: g10/import.c:3450 +#: g10/import.c:3466 #, c-format msgid "key %s: invalid revocation certificate: %s - rejected\n" msgstr "cheia %s: certificat de revocare invalid: %s - respins\n" -#: g10/import.c:3485 +#: g10/import.c:3501 #, c-format msgid "key %s: \"%s\" revocation certificate imported\n" msgstr "cheia %s: certificatul de revocare \"%s\" importat\n" -#: g10/import.c:3571 +#: g10/import.c:3587 #, c-format msgid "key %s: no user ID for signature\n" msgstr "cheia %s: nici un ID utilizator pentru semnătură\n" -#: g10/import.c:3588 +#: g10/import.c:3604 #, c-format msgid "key %s: unsupported public key algorithm on user ID \"%s\"\n" msgstr "" "cheia %s: algoritm cu cheie publică nesuportat pentru ID-ul utilizator \"%s" "\"\n" -#: g10/import.c:3590 +#: g10/import.c:3606 #, c-format msgid "key %s: invalid self-signature on user ID \"%s\"\n" msgstr "cheia %s: auto-semnătură invalidă pentru ID-ul utilizator \"%s\"\n" -#: g10/import.c:3607 g10/import.c:3635 g10/import.c:3691 +#: g10/import.c:3623 g10/import.c:3651 g10/import.c:3707 #, c-format msgid "key %s: unsupported public key algorithm\n" msgstr "cheia %s: algoritm cu cheie publică nesuportat\n" -#: g10/import.c:3608 +#: g10/import.c:3624 #, fuzzy, c-format msgid "key %s: invalid direct key signature\n" msgstr "cheia %s: am adăugat semnătura de cheie directă\n" -#: g10/import.c:3622 +#: g10/import.c:3638 #, c-format msgid "key %s: no subkey for key binding\n" msgstr "cheia %s: nici o subcheie pentru legarea cheii\n" -#: g10/import.c:3637 +#: g10/import.c:3653 #, c-format msgid "key %s: invalid subkey binding\n" msgstr "cheia %s: legare subcheie invalidă\n" -#: g10/import.c:3656 +#: g10/import.c:3672 #, c-format msgid "key %s: removed multiple subkey binding\n" msgstr "cheia %s: am şters multiple legături de subchei\n" -#: g10/import.c:3680 +#: g10/import.c:3696 #, c-format msgid "key %s: no subkey for key revocation\n" msgstr "cheia %s: nici o subcheie pentru revocare de cheie\n" -#: g10/import.c:3693 +#: g10/import.c:3709 #, c-format msgid "key %s: invalid subkey revocation\n" msgstr "cheia %s: revocare de subcheie invalidă\n" -#: g10/import.c:3708 +#: g10/import.c:3724 #, c-format msgid "key %s: removed multiple subkey revocation\n" msgstr "cheia %s: am şters multiple revocări de subcheie\n" -#: g10/import.c:3752 +#: g10/import.c:3771 #, c-format msgid "key %s: skipped user ID \"%s\"\n" msgstr "cheia %s: am sărit ID-ul utilizator \"%s\"\n" -#: g10/import.c:3779 +#: g10/import.c:3798 #, c-format msgid "key %s: skipped subkey\n" msgstr "cheia %s: am sărit subcheia\n" -#: g10/import.c:3810 +#: g10/import.c:3829 #, c-format msgid "key %s: non exportable signature (class 0x%02X) - skipped\n" msgstr "cheia %s: semnătura nu poate fi exportată (clasa 0x%02X) - sărită\n" -#: g10/import.c:3821 +#: g10/import.c:3840 #, c-format msgid "key %s: revocation certificate at wrong place - skipped\n" msgstr "cheia %s: certificat de revocare într-un loc greşit - sărit\n" -#: g10/import.c:3839 +#: g10/import.c:3868 #, c-format msgid "key %s: invalid revocation certificate: %s - skipped\n" msgstr "cheia %s: certificat de revocare invalid: %s - sărit\n" -#: g10/import.c:3853 +#: g10/import.c:3892 #, c-format msgid "key %s: subkey signature in wrong place - skipped\n" msgstr "cheia %s: semnătură subcheie într-un loc greşit - sărită\n" -#: g10/import.c:3861 +#: g10/import.c:3900 #, c-format msgid "key %s: unexpected signature class (0x%02X) - skipped\n" msgstr "cheia %s: clasă de semnătură neaşteptată (0x%02X) - sărită\n" -#: g10/import.c:4034 +#: g10/import.c:4073 #, c-format msgid "key %s: duplicated user ID detected - merged\n" msgstr "cheia %s: am detectat un ID utilizator duplicat - combinate\n" -#: g10/import.c:4099 +#: g10/import.c:4138 #, c-format msgid "WARNING: key %s may be revoked: fetching revocation key %s\n" msgstr "AVERTISMENT: cheia %s poate fi revocată: aduc revocarea cheii %s\n" -#: g10/import.c:4115 +#: g10/import.c:4154 #, c-format msgid "WARNING: key %s may be revoked: revocation key %s not present.\n" msgstr "" "AVERTISMENT: cheia %s poate fi revocată: cheia de revocare %s nu este " "prezentă.\n" -#: g10/import.c:4181 +#: g10/import.c:4220 #, c-format msgid "key %s: \"%s\" revocation certificate added\n" msgstr "cheia %s: am adăugat certificatul de revocare \"%s\"\n" -#: g10/import.c:4219 +#: g10/import.c:4258 #, c-format msgid "key %s: direct key signature added\n" msgstr "cheia %s: am adăugat semnătura de cheie directă\n" @@ -5161,7 +5167,7 @@ msgid "You may not add a photo ID to a PGP2-style key.\n" msgstr "Nu puteţi adăuga o poză ID la o cheie stil PGP2.\n" -#: g10/keyedit.c:4293 g10/keygen.c:2899 +#: g10/keyedit.c:4293 g10/keygen.c:2953 msgid "Such a user ID already exists on this key!\n" msgstr "" @@ -5457,83 +5463,83 @@ msgid "Displaying %s photo ID of size %ld for key %s (uid %d)\n" msgstr "Afişez poza ID %s de dimensiune %ld pentru cheia %s (uid %d)\n" -#: g10/keygen.c:169 +#: g10/keygen.c:174 #, fuzzy, c-format msgid "invalid value for option '%s'\n" msgstr "opţiuni enumerare invalide\n" -#: g10/keygen.c:322 +#: g10/keygen.c:331 #, fuzzy, c-format #| msgid "preference `%s' duplicated\n" msgid "preference '%s' duplicated\n" msgstr "preferinţa `%s' duplicată\n" -#: g10/keygen.c:329 +#: g10/keygen.c:338 #, c-format msgid "too many cipher preferences\n" msgstr "prea multe preferinţe de cifrare\n" -#: g10/keygen.c:331 +#: g10/keygen.c:340 #, c-format msgid "too many digest preferences\n" msgstr "prea multe preferinţe de rezumat\n" -#: g10/keygen.c:333 +#: g10/keygen.c:342 #, c-format msgid "too many compression preferences\n" msgstr "prea multe preferinţe de compresie\n" -#: g10/keygen.c:493 +#: g10/keygen.c:502 #, fuzzy, c-format #| msgid "invalid item `%s' in preference string\n" msgid "invalid item '%s' in preference string\n" msgstr "articol invalid `%s' în şirul de preferinţe\n" -#: g10/keygen.c:972 +#: g10/keygen.c:1020 #, c-format msgid "writing direct signature\n" msgstr "scriu semnătură directă\n" -#: g10/keygen.c:1018 +#: g10/keygen.c:1066 #, c-format msgid "writing self signature\n" msgstr "scriu auto semnătură\n" -#: g10/keygen.c:1075 +#: g10/keygen.c:1123 #, c-format msgid "writing key binding signature\n" msgstr "scriu semnătură legată de cheie\n" -#: g10/keygen.c:1440 g10/keygen.c:1445 g10/keygen.c:1497 g10/keygen.c:1502 -#: g10/keygen.c:1656 g10/keygen.c:1661 +#: g10/keygen.c:1494 g10/keygen.c:1499 g10/keygen.c:1551 g10/keygen.c:1556 +#: g10/keygen.c:1710 g10/keygen.c:1715 #, c-format msgid "keysize invalid; using %u bits\n" msgstr "lungime cheie invalidă; folosesc %u biţi\n" -#: g10/keygen.c:1451 g10/keygen.c:1508 g10/keygen.c:1516 g10/keygen.c:1667 +#: g10/keygen.c:1505 g10/keygen.c:1562 g10/keygen.c:1570 g10/keygen.c:1721 #, c-format msgid "keysize rounded up to %u bits\n" msgstr "lungime cheie rotunjită la %u biţi\n" -#: g10/keygen.c:1542 +#: g10/keygen.c:1596 #, c-format msgid "" "WARNING: some OpenPGP programs can't handle a DSA key with this digest size\n" msgstr "" -#: g10/keygen.c:1723 +#: g10/keygen.c:1777 msgid "Sign" msgstr "Semnează" -#: g10/keygen.c:1726 +#: g10/keygen.c:1780 msgid "Certify" msgstr "" -#: g10/keygen.c:1729 +#: g10/keygen.c:1783 msgid "Encrypt" msgstr "Cifrează" -#: g10/keygen.c:1732 +#: g10/keygen.c:1786 msgid "Authenticate" msgstr "Autentifică" @@ -5547,170 +5553,170 @@ #. * a = Toggle authentication capability #. * q = Finish #. -#: g10/keygen.c:1753 +#: g10/keygen.c:1807 msgid "SsEeAaQq" msgstr "SsCcAaTt" -#: g10/keygen.c:1784 +#: g10/keygen.c:1838 #, c-format msgid "Possible actions for a %s key: " msgstr "Acţiuni posibile pentru o cheie %s: " -#: g10/keygen.c:1790 +#: g10/keygen.c:1844 msgid "Current allowed actions: " msgstr "Acţiuni permise curent: " -#: g10/keygen.c:1795 +#: g10/keygen.c:1849 #, c-format msgid " (%c) Toggle the sign capability\n" msgstr " (%c) Comută capabilitatea de semnare\n" -#: g10/keygen.c:1798 +#: g10/keygen.c:1852 #, c-format msgid " (%c) Toggle the encrypt capability\n" msgstr " (%c) Comută capabilitatea de cifrare\n" -#: g10/keygen.c:1801 +#: g10/keygen.c:1855 #, c-format msgid " (%c) Toggle the authenticate capability\n" msgstr " (%c) Comută capabilitatea de autentificare\n" -#: g10/keygen.c:1804 +#: g10/keygen.c:1858 #, c-format msgid " (%c) Finished\n" msgstr " (%c) Terminat\n" -#: g10/keygen.c:1930 +#: g10/keygen.c:1984 #, fuzzy, c-format msgid " (%d) RSA and RSA (default)\n" msgstr " (%d) DSA şi Elgamal (implicit)\n" -#: g10/keygen.c:1934 +#: g10/keygen.c:1988 #, fuzzy, c-format msgid " (%d) DSA and Elgamal\n" msgstr " (%d) DSA şi Elgamal (implicit)\n" -#: g10/keygen.c:1937 +#: g10/keygen.c:1991 #, c-format msgid " (%d) DSA (sign only)\n" msgstr " (%d) DSA (numai semnare)\n" -#: g10/keygen.c:1939 +#: g10/keygen.c:1993 #, c-format msgid " (%d) RSA (sign only)\n" msgstr " (%d) RSA (numai semnare)\n" -#: g10/keygen.c:1945 +#: g10/keygen.c:1999 #, c-format msgid " (%d) Elgamal (encrypt only)\n" msgstr " (%d) Elgamal (numai cifrare)\n" -#: g10/keygen.c:1947 +#: g10/keygen.c:2001 #, c-format msgid " (%d) RSA (encrypt only)\n" msgstr " (%d) RSA (numai cifrare)\n" -#: g10/keygen.c:1953 +#: g10/keygen.c:2007 #, c-format msgid " (%d) DSA (set your own capabilities)\n" msgstr " (%d) DSA (setează singur capabilităţile)\n" -#: g10/keygen.c:1955 +#: g10/keygen.c:2009 #, c-format msgid " (%d) RSA (set your own capabilities)\n" msgstr " (%d) RSA (setează singur capabilităţile)\n" -#: g10/keygen.c:1961 +#: g10/keygen.c:2015 #, fuzzy, c-format msgid " (%d) ECC and ECC\n" msgstr " (%d) DSA şi Elgamal (implicit)\n" -#: g10/keygen.c:1963 +#: g10/keygen.c:2017 #, fuzzy, c-format #| msgid " (%d) DSA (sign only)\n" msgid " (%d) ECC (sign only)\n" msgstr " (%d) DSA (numai semnare)\n" -#: g10/keygen.c:1965 +#: g10/keygen.c:2019 #, fuzzy, c-format #| msgid " (%d) DSA (set your own capabilities)\n" msgid " (%d) ECC (set your own capabilities)\n" msgstr " (%d) DSA (setează singur capabilităţile)\n" -#: g10/keygen.c:1967 +#: g10/keygen.c:2021 #, fuzzy, c-format #| msgid " (%d) RSA (encrypt only)\n" msgid " (%d) ECC (encrypt only)\n" msgstr " (%d) RSA (numai cifrare)\n" -#: g10/keygen.c:1971 +#: g10/keygen.c:2025 #, fuzzy, c-format msgid " (%d) Existing key\n" msgstr " (2) Cheie de cifrare\n" -#: g10/keygen.c:1973 +#: g10/keygen.c:2027 #, fuzzy, c-format msgid " (%d) Existing key from card\n" msgstr " (2) Cheie de cifrare\n" -#: g10/keygen.c:2069 sm/certreqgen-ui.c:202 +#: g10/keygen.c:2123 sm/certreqgen-ui.c:202 #, fuzzy msgid "Enter the keygrip: " msgstr "Notare semnătură: " -#: g10/keygen.c:2082 sm/certreqgen-ui.c:210 +#: g10/keygen.c:2136 sm/certreqgen-ui.c:210 msgid "Not a valid keygrip (expecting 40 hex digits)\n" msgstr "" -#: g10/keygen.c:2084 sm/certreqgen-ui.c:212 +#: g10/keygen.c:2138 sm/certreqgen-ui.c:212 #, fuzzy msgid "No key with this keygrip\n" msgstr "Nici o subcheie cu indicele %d\n" -#: g10/keygen.c:2103 g10/keygen.c:2113 g10/keygen.c:3216 g10/keygen.c:3227 +#: g10/keygen.c:2157 g10/keygen.c:2167 g10/keygen.c:3270 g10/keygen.c:3281 #: sm/certreqgen-ui.c:230 sm/certreqgen-ui.c:239 #, fuzzy, c-format msgid "error reading the card: %s\n" msgstr "%s: eroare citire înregistrare liberă: %s\n" -#: g10/keygen.c:2107 g10/keygen.c:3220 sm/certreqgen-ui.c:233 +#: g10/keygen.c:2161 g10/keygen.c:3274 sm/certreqgen-ui.c:233 #, fuzzy, c-format msgid "Serial number of the card: %s\n" msgstr "eroare la obţinerea numărului serial: %s\n" -#: g10/keygen.c:2120 sm/certreqgen-ui.c:245 +#: g10/keygen.c:2174 sm/certreqgen-ui.c:245 #, fuzzy msgid "Available keys:\n" msgstr "deactivează cheia" -#: g10/keygen.c:2297 g10/keygen.c:2311 +#: g10/keygen.c:2351 g10/keygen.c:2365 #, fuzzy, c-format #| msgid "rounded up to %u bits\n" msgid "rounded to %u bits\n" msgstr "rotunjită prin adaos la %u biţi\n" -#: g10/keygen.c:2352 +#: g10/keygen.c:2406 #, c-format msgid "%s keys may be between %u and %u bits long.\n" msgstr "cheile %s pot avea lungimea între %u şi %u biţi.\n" -#: g10/keygen.c:2360 +#: g10/keygen.c:2414 #, fuzzy, c-format msgid "What keysize do you want for the subkey? (%u) " msgstr "Ce lungime de cheie doriţi? (%u) " -#: g10/keygen.c:2377 sm/certreqgen-ui.c:189 +#: g10/keygen.c:2431 sm/certreqgen-ui.c:189 #, c-format msgid "Requested keysize is %u bits\n" msgstr "Lungimea cheii necesară este %u biţi\n" -#: g10/keygen.c:2423 +#: g10/keygen.c:2477 #, fuzzy #| msgid "Please select what kind of key you want:\n" msgid "Please select which elliptic curve you want:\n" msgstr "Selectaţi ce fel de cheie doriţi:\n" -#: g10/keygen.c:2611 +#: g10/keygen.c:2665 msgid "" "Please specify how long the key should be valid.\n" " 0 = key does not expire\n" @@ -5726,7 +5732,7 @@ " m = cheia expiră în n luni\n" " y = cheia expiră în n ani\n" -#: g10/keygen.c:2622 +#: g10/keygen.c:2676 msgid "" "Please specify how long the signature should be valid.\n" " 0 = signature does not expire\n" @@ -5742,38 +5748,38 @@ " m = semnătura expiră în n luni\n" " y = semnătura expiră în n ani\n" -#: g10/keygen.c:2645 +#: g10/keygen.c:2699 msgid "Key is valid for? (0) " msgstr "Cheia este validă pentru? (0) " -#: g10/keygen.c:2650 +#: g10/keygen.c:2704 #, c-format msgid "Signature is valid for? (%s) " msgstr "Semnătura este validă pentru? (%s) " -#: g10/keygen.c:2663 g10/keygen.c:2688 +#: g10/keygen.c:2717 g10/keygen.c:2742 msgid "invalid value\n" msgstr "valoare invalidă\n" -#: g10/keygen.c:2670 +#: g10/keygen.c:2724 msgid "Key does not expire at all\n" msgstr "Cheia nu expiră deloc\n" -#: g10/keygen.c:2671 +#: g10/keygen.c:2725 msgid "Signature does not expire at all\n" msgstr "Semnătura nu expiră deloc\n" -#: g10/keygen.c:2676 +#: g10/keygen.c:2730 #, c-format msgid "Key expires at %s\n" msgstr "Cheia expiră pe %s\n" -#: g10/keygen.c:2677 +#: g10/keygen.c:2731 #, c-format msgid "Signature expires at %s\n" msgstr "Semnătura expiră pe %s\n" -#: g10/keygen.c:2681 +#: g10/keygen.c:2735 msgid "" "Your system can't display dates beyond 2038.\n" "However, it will be correctly handled up to 2106.\n" @@ -5781,11 +5787,11 @@ "Sistemul d-voastră nu poate afişa date după 2038.\n" "Totuşi, acestea vor fi corect mânuite până în 2106.\n" -#: g10/keygen.c:2694 +#: g10/keygen.c:2748 msgid "Is this correct? (y/N) " msgstr "Este aceasta corect? (d/N) " -#: g10/keygen.c:2762 +#: g10/keygen.c:2816 msgid "" "\n" "GnuPG needs to construct a user ID to identify your key.\n" @@ -5796,7 +5802,7 @@ #. but you should keep your existing translation. In case #. the new string is not translated this old string will #. be used. -#: g10/keygen.c:2777 +#: g10/keygen.c:2831 msgid "" "\n" "You need a user ID to identify your key; the software constructs the user " @@ -5813,50 +5819,50 @@ " \"Popa Ioan (popică) \"\n" "\n" -#: g10/keygen.c:2796 +#: g10/keygen.c:2850 msgid "Real name: " msgstr "Nume real: " -#: g10/keygen.c:2805 +#: g10/keygen.c:2859 msgid "Invalid character in name\n" msgstr "Caracter invalid în nume\n" -#: g10/keygen.c:2806 +#: g10/keygen.c:2860 #, c-format msgid "The characters '%s' and '%s' may not appear in name\n" msgstr "" -#: g10/keygen.c:2810 +#: g10/keygen.c:2864 msgid "Name may not start with a digit\n" msgstr "Numele nu poate începe cu o cifră\n" -#: g10/keygen.c:2813 +#: g10/keygen.c:2867 msgid "Name must be at least 5 characters long\n" msgstr "Numele trebuie să fie de cel puţin 5 caractere\n" -#: g10/keygen.c:2823 +#: g10/keygen.c:2877 msgid "Email address: " msgstr "Adresă de email: " -#: g10/keygen.c:2829 +#: g10/keygen.c:2883 msgid "Not a valid email address\n" msgstr "Nu este o adresă de email validă\n" -#: g10/keygen.c:2838 +#: g10/keygen.c:2892 msgid "Comment: " msgstr "Comentariu: " -#: g10/keygen.c:2844 +#: g10/keygen.c:2898 msgid "Invalid character in comment\n" msgstr "Caracter invalid în comentariu\n" -#: g10/keygen.c:2880 +#: g10/keygen.c:2934 #, fuzzy, c-format #| msgid "You are using the `%s' character set.\n" msgid "You are using the '%s' character set.\n" msgstr "Folosiţi setul de caractere `%s'\n" -#: g10/keygen.c:2886 +#: g10/keygen.c:2940 #, c-format msgid "" "You selected this USER-ID:\n" @@ -5867,7 +5873,7 @@ " \"%s\"\n" "\n" -#: g10/keygen.c:2891 +#: g10/keygen.c:2945 msgid "Please don't put the email address into the real name or the comment\n" msgstr "Vă rugăm nu puneţi adresa de email în numele real sau comentariu\n" @@ -5882,35 +5888,35 @@ #. o = Okay (ready, continue) #. q = Quit #. -#: g10/keygen.c:2916 +#: g10/keygen.c:2970 msgid "NnCcEeOoQq" msgstr "NnCcEeOoTt" -#: g10/keygen.c:2926 +#: g10/keygen.c:2980 msgid "Change (N)ame, (C)omment, (E)mail or (Q)uit? " msgstr "Schimbă (N)ume, (C)omentariu, (E)mail sau (T)Termină? " -#: g10/keygen.c:2927 +#: g10/keygen.c:2981 msgid "Change (N)ame, (C)omment, (E)mail or (O)kay/(Q)uit? " msgstr "Schimbă (N)ume, (C)omentariu, (E)mail sau (O)K/(T)Termină? " -#: g10/keygen.c:2932 +#: g10/keygen.c:2986 #, fuzzy #| msgid "Change (N)ame, (C)omment, (E)mail or (Q)uit? " msgid "Change (N)ame, (E)mail, or (Q)uit? " msgstr "Schimbă (N)ume, (C)omentariu, (E)mail sau (T)Termină? " -#: g10/keygen.c:2933 +#: g10/keygen.c:2987 #, fuzzy #| msgid "Change (N)ame, (C)omment, (E)mail or (O)kay/(Q)uit? " msgid "Change (N)ame, (E)mail, or (O)kay/(Q)uit? " msgstr "Schimbă (N)ume, (C)omentariu, (E)mail sau (O)K/(T)Termină? " -#: g10/keygen.c:2952 +#: g10/keygen.c:3006 msgid "Please correct the error first\n" msgstr "Vă rugăm corectaţi mai întâi eroarea\n" -#: g10/keygen.c:2998 +#: g10/keygen.c:3052 msgid "" "We need to generate a lot of random bytes. It is a good idea to perform\n" "some other action (type on the keyboard, move the mouse, utilize the\n" @@ -5922,13 +5928,13 @@ "în timpul generării numerelor prime; aceasta dă o şansă generatorului de\n" "numere aleatoare o şansă mai bună de a aduna destulă entropie.\n" -#: g10/keygen.c:4278 g10/keygen.c:4349 g10/keygen.c:4367 g10/keygen.c:4395 -#: g10/keygen.c:4739 g10/keygen.c:5239 g10/keygen.c:5534 g10/keygen.c:5639 +#: g10/keygen.c:4332 g10/keygen.c:4403 g10/keygen.c:4421 g10/keygen.c:4449 +#: g10/keygen.c:4793 g10/keygen.c:5293 g10/keygen.c:5588 g10/keygen.c:5693 #, c-format msgid "Key generation failed: %s\n" msgstr "Generarea cheii a eşuat: %s\n" -#: g10/keygen.c:4287 +#: g10/keygen.c:4341 #, c-format msgid "" "About to create a key for:\n" @@ -5936,72 +5942,72 @@ "\n" msgstr "" -#: g10/keygen.c:4289 +#: g10/keygen.c:4343 msgid "Continue? (Y/n) " msgstr "" -#: g10/keygen.c:4310 +#: g10/keygen.c:4364 #, fuzzy, c-format #| msgid "key already exists\n" msgid "A key for \"%s\" already exists\n" msgstr "cheia există deja\n" -#: g10/keygen.c:4315 +#: g10/keygen.c:4369 #, fuzzy #| msgid "Create anyway? " msgid "Create anyway? (y/N) " msgstr "Creaţi oricum? " -#: g10/keygen.c:4321 +#: g10/keygen.c:4375 #, fuzzy, c-format #| msgid "Create anyway? " msgid "creating anyway\n" msgstr "Creaţi oricum? " -#: g10/keygen.c:4722 +#: g10/keygen.c:4776 #, c-format msgid "Note: Use \"%s %s\" for a full featured key generation dialog.\n" msgstr "" -#: g10/keygen.c:4771 +#: g10/keygen.c:4825 #, c-format msgid "Key generation canceled.\n" msgstr "Generarea cheii a fost anulată.\n" -#: g10/keygen.c:4831 +#: g10/keygen.c:4885 #, fuzzy, c-format #| msgid "can't create backup file `%s': %s\n" msgid "can't create backup file '%s': %s\n" msgstr "nu pot crea fişier de rezervă `%s': %s\n" -#: g10/keygen.c:4851 +#: g10/keygen.c:4905 #, fuzzy, c-format #| msgid "NOTE: backup of card key saved to `%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/keygen.c:5010 g10/keygen.c:5172 +#: g10/keygen.c:5064 g10/keygen.c:5226 #, fuzzy, c-format #| msgid "writing public key to `%s'\n" msgid "writing public key to '%s'\n" msgstr "scriu cheia publică în `%s'\n" -#: g10/keygen.c:5166 +#: g10/keygen.c:5220 #, c-format msgid "no writable public keyring found: %s\n" msgstr "nu am găsit nici un inel de chei public de scris: %s\n" -#: g10/keygen.c:5180 +#: g10/keygen.c:5234 #, fuzzy, c-format #| msgid "error writing public keyring `%s': %s\n" msgid "error writing public keyring '%s': %s\n" msgstr "eroare la scrierea inelului de chei public `%s': %s\n" -#: g10/keygen.c:5210 +#: g10/keygen.c:5264 msgid "public and secret key created and signed.\n" msgstr "cheile secretă şi publică au fost create şi semnate.\n" -#: g10/keygen.c:5226 +#: g10/keygen.c:5280 msgid "" "Note that this key cannot be used for encryption. You may want to use\n" "the command \"--edit-key\" to generate a subkey for this purpose.\n" @@ -6011,7 +6017,7 @@ "să folosiţi comanda \"--edit-key\" pentru a genera o subcheie secundară\n" "pentru acest scop.\n" -#: g10/keygen.c:5401 g10/keygen.c:5590 +#: g10/keygen.c:5455 g10/keygen.c:5644 #, c-format msgid "" "key has been created %lu second in future (time warp or clock problem)\n" @@ -6019,7 +6025,7 @@ "cheia a fost creată %lu secundă în viitor (warp în timp sau probleme cu " "ceasul)\n" -#: g10/keygen.c:5403 g10/keygen.c:5592 +#: g10/keygen.c:5457 g10/keygen.c:5646 #, c-format msgid "" "key has been created %lu seconds in future (time warp or clock problem)\n" @@ -6027,23 +6033,23 @@ "cheia a fost creată %lu secunde în viitor (warp în timp sau probleme cu " "ceasul)\n" -#: g10/keygen.c:5414 g10/keygen.c:5603 +#: g10/keygen.c:5468 g10/keygen.c:5657 #, fuzzy, c-format #| msgid "NOTE: creating subkeys for v3 keys is not OpenPGP compliant\n" msgid "Note: creating subkeys for v3 keys is not OpenPGP compliant\n" msgstr "NOTĂ: crearea de subchei pentru chei v3 nu este conform OpenPGP\n" -#: g10/keygen.c:5426 g10/keygen.c:5428 +#: g10/keygen.c:5480 g10/keygen.c:5482 #, c-format msgid "Secret parts of primary key are not available.\n" msgstr "Părţile secrete ale cheii primare nu sunt disponibile.\n" -#: g10/keygen.c:5435 g10/keygen.c:5437 +#: g10/keygen.c:5489 g10/keygen.c:5491 #, c-format msgid "Secret parts of primary key are stored on-card.\n" msgstr "Părţi secrete ale cheii primare sunt stacate pe card.\n" -#: g10/keygen.c:5456 g10/keygen.c:5617 +#: g10/keygen.c:5510 g10/keygen.c:5671 msgid "Really create? (y/N) " msgstr "Creaţi într-adevăr? (d/N) " @@ -7166,31 +7172,31 @@ msgstr "" "datele nu au fost salvate: folosiţi opţiunea \"--output\" pentru a le salva\n" -#: g10/plaintext.c:615 +#: g10/plaintext.c:620 msgid "Detached signature.\n" msgstr "Semnătură detaşată.\n" -#: g10/plaintext.c:623 +#: g10/plaintext.c:628 msgid "Please enter name of data file: " msgstr "Vă rugăm introduceţi numele fişierului de date: " -#: g10/plaintext.c:660 +#: g10/plaintext.c:665 #, c-format msgid "reading stdin ...\n" msgstr "citesc stdin ...\n" -#: g10/plaintext.c:705 +#: g10/plaintext.c:710 #, c-format msgid "no signed data\n" msgstr "nici o dată semnată\n" -#: g10/plaintext.c:723 +#: g10/plaintext.c:728 #, fuzzy, c-format #| msgid "can't open signed data `%s'\n" msgid "can't open signed data '%s'\n" msgstr "nu pot deschide date semnate `%s'\n" -#: g10/plaintext.c:758 +#: g10/plaintext.c:763 #, fuzzy, c-format msgid "can't open signed data fd=%d: %s\n" msgstr "nu pot deschide date semnate `%s'\n" @@ -8217,7 +8223,7 @@ msgid "no need for a trustdb check\n" msgstr "nu e nevoie de o verificare trustdb\n" -#: g10/trustdb.c:631 g10/trustdb.c:2326 +#: g10/trustdb.c:631 g10/trustdb.c:2338 #, c-format msgid "next trustdb check due at %s\n" msgstr "următoarea verificare trustdb programată pe %s\n" @@ -8249,7 +8255,7 @@ msgid "checking the trustdb\n" msgstr "verific trustdb\n" -#: g10/trustdb.c:2047 +#: g10/trustdb.c:2059 #, fuzzy, c-format #| msgid "%lu keys processed so far\n" msgid "%d key processed" @@ -8257,7 +8263,7 @@ msgstr[0] "%lu chei procesate până acum\n" msgstr[1] "%lu chei procesate până acum\n" -#: g10/trustdb.c:2050 +#: g10/trustdb.c:2062 #, fuzzy, c-format #| msgid "%d keys processed (%d validity counts cleared)\n" msgid " (%d validity count cleared)\n" @@ -8265,24 +8271,24 @@ msgstr[0] "%d chei procesate (%d numărători valide anulate)\n" msgstr[1] "%d chei procesate (%d numărători valide anulate)\n" -#: g10/trustdb.c:2120 +#: g10/trustdb.c:2132 #, c-format msgid "no ultimately trusted keys found\n" msgstr "nu am găsit nici o cheie cu încredere supremă\n" -#: g10/trustdb.c:2134 +#: g10/trustdb.c:2146 #, c-format msgid "public key of ultimately trusted key %s not found\n" msgstr "cheia publică a cheii cu încredere supremă %s nu a fost găsită\n" -#: g10/trustdb.c:2252 +#: g10/trustdb.c:2264 #, c-format msgid "" "depth: %d valid: %3d signed: %3d trust: %d-, %dq, %dn, %dm, %df, %du\n" msgstr "" "adânc: %d valid: %3d semnat: %3d încredere: %d-, %dq, %dn, %dm, %df, %du\n" -#: g10/trustdb.c:2333 +#: g10/trustdb.c:2345 #, c-format msgid "unable to update trustdb version record: write failed: %s\n" msgstr "" @@ -8400,88 +8406,94 @@ #. TRANSLATORS: Put a \x1f right before a colon. This can be #. * used by pinentry to nicely align the names and values. Keep #. * the %s at the start and end of the string. -#: scd/app-p15.c:5116 scd/app-openpgp.c:2154 +#: scd/app-p15.c:5145 scd/app-nks.c:1541 scd/app-openpgp.c:2154 #, c-format msgid "%sNumber: %s%%0AHolder: %s%s" msgstr "" #. TRANSLATORS: This is the number of remaining attempts to #. * enter a PIN. Use %%0A (double-percent,0A) for a linefeed. -#: scd/app-p15.c:5135 scd/app-openpgp.c:2170 +#: scd/app-p15.c:5164 scd/app-nks.c:1560 scd/app-openpgp.c:2170 #, c-format msgid "Remaining attempts: %d" msgstr "" -#: scd/app-p15.c:5214 scd/app-nks.c:1113 +#: scd/app-p15.c:5243 scd/app-nks.c:2112 msgid "||Please enter the PIN for the key to create qualified signatures." msgstr "" #. TRANSLATORS: Do not translate the "|A|" prefix but keep it at #. the start of the string. Use %0A (single percent) for a linefeed. -#: scd/app-p15.c:5217 scd/app-openpgp.c:2464 +#: scd/app-p15.c:5246 scd/app-openpgp.c:2465 #, fuzzy msgid "|A|Please enter the Admin PIN" msgstr "||Vă rugăm introduceţi PIN%%0A[semnături făcute: %lu]" -#: scd/app-p15.c:5219 scd/app-nks.c:1103 +#: scd/app-p15.c:5248 scd/app-nks.c:2102 #, fuzzy msgid "|P|Please enter the PIN Unblocking Code (PUK) for the standard keys." msgstr "||Vă rugăm introduceţi PIN%%0A[semnături făcute: %lu]" -#: scd/app-p15.c:5222 scd/app-nks.c:1095 +#: scd/app-p15.c:5251 scd/app-nks.c:2093 #, fuzzy msgid "||Please enter the PIN for the standard keys." msgstr "||Vă rugăm introduceţi PIN%%0A[semnături făcute: %lu]" -#: scd/app-nks.c:709 scd/app-openpgp.c:3666 +#: scd/app-nks.c:1479 scd/app-openpgp.c:3675 #, 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-nks.c:717 scd/app-openpgp.c:3678 +#: scd/app-nks.c:1487 scd/app-openpgp.c:3687 #, 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-nks.c:797 scd/app-openpgp.c:2327 scd/app-openpgp.c:2346 -#: scd/app-openpgp.c:2513 scd/app-openpgp.c:2531 scd/app-openpgp.c:2829 -#: scd/app-openpgp.c:2876 scd/app-openpgp.c:2991 scd/app-dinsig.c:302 +#: scd/app-nks.c:1660 +#, fuzzy +#| msgid "Note: This key has been disabled.\n" +msgid "Note: PIN has not yet been enabled." +msgstr "Notă: Această cheie a fost deactivată.\n" + +#: scd/app-nks.c:1671 scd/app-openpgp.c:2327 scd/app-openpgp.c:2346 +#: scd/app-openpgp.c:2515 scd/app-openpgp.c:2533 scd/app-openpgp.c:2832 +#: scd/app-openpgp.c:2879 scd/app-openpgp.c:3000 scd/app-dinsig.c:303 #, c-format msgid "PIN callback returned error: %s\n" msgstr "apelul PIN a returnat eroare: %s\n" -#: scd/app-nks.c:830 +#: scd/app-nks.c:1707 #, c-format msgid "the NullPIN has not yet been changed\n" msgstr "" -#: scd/app-nks.c:1094 +#: scd/app-nks.c:2092 #, fuzzy msgid "|N|Please enter a new PIN for the standard keys." msgstr "||Vă rugăm introduceţi PIN%%0A[semnături făcute: %lu]" -#: scd/app-nks.c:1101 +#: scd/app-nks.c:2100 #, fuzzy msgid "|NP|Please enter a new PIN Unblocking Code (PUK) for the standard keys." msgstr "||Vă rugăm introduceţi PIN%%0A[semnături făcute: %lu]" -#: scd/app-nks.c:1111 +#: scd/app-nks.c:2110 msgid "|N|Please enter a new PIN for the key to create qualified signatures." msgstr "" -#: scd/app-nks.c:1121 +#: scd/app-nks.c:2120 msgid "" "|NP|Please enter a new PIN Unblocking Code (PUK) for the key to create " "qualified signatures." msgstr "" -#: scd/app-nks.c:1123 +#: scd/app-nks.c:2122 msgid "" "|P|Please enter the PIN Unblocking Code (PUK) for the key to create " "qualified signatures." msgstr "" -#: scd/app-nks.c:1230 scd/app-openpgp.c:2910 scd/app-dinsig.c:532 +#: scd/app-nks.c:2295 scd/app-openpgp.c:2913 scd/app-dinsig.c:535 #, c-format msgid "error getting new PIN: %s\n" msgstr "eroare la obţinere noului PIN: %s\n" @@ -8496,7 +8508,7 @@ msgid "failed to store the creation date: %s\n" msgstr "am eşuat să stochez data creării: %s\n" -#: scd/app-openpgp.c:1271 scd/app-openpgp.c:2857 scd/app-openpgp.c:5041 +#: scd/app-openpgp.c:1271 scd/app-openpgp.c:2860 scd/app-openpgp.c:5051 #, c-format msgid "error retrieving CHV status from card\n" msgstr "eroare la recuperarea stării CHV de pe card\n" @@ -8517,7 +8529,7 @@ msgid "response does not contain the EC public key\n" msgstr "răspunsul nu conţine exponentul public RSA\n" -#: scd/app-openpgp.c:1664 scd/app-openpgp.c:4286 +#: scd/app-openpgp.c:1664 scd/app-openpgp.c:4295 #, c-format msgid "response does not contain the public key data\n" msgstr "răspunsul nu conţine datele cheii publice\n" @@ -8550,23 +8562,23 @@ msgid "||Please unlock the card" msgstr "||Vă rugăm introduceţi PIN%%0A[semnături făcute: %lu]" -#: scd/app-openpgp.c:2353 scd/app-openpgp.c:2538 scd/app-openpgp.c:2836 +#: scd/app-openpgp.c:2353 scd/app-openpgp.c:2540 scd/app-openpgp.c:2839 #, 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:2367 scd/app-openpgp.c:2414 scd/app-openpgp.c:2552 -#: scd/app-openpgp.c:4644 +#: scd/app-openpgp.c:2368 scd/app-openpgp.c:2415 scd/app-openpgp.c:2554 +#: scd/app-openpgp.c:4654 #, c-format msgid "verify CHV%d failed: %s\n" msgstr "verificarea CHV%d a eşuat: %s\n" -#: scd/app-openpgp.c:2450 scd/app-openpgp.c:5050 +#: scd/app-openpgp.c:2451 scd/app-openpgp.c:5060 #, c-format msgid "card is permanently locked!\n" msgstr "cardul este încuiat permanent!\n" -#: scd/app-openpgp.c:2454 +#: scd/app-openpgp.c:2455 #, fuzzy, c-format #| msgid "%d Admin PIN attempts remaining before card is permanently locked\n" msgid "%d Admin PIN attempt remaining before card is permanently locked\n" @@ -8577,22 +8589,22 @@ msgstr[1] "" "%d încercări PIN Admin rămase înainte de a încuia cardul permanent\n" -#: scd/app-openpgp.c:2485 +#: scd/app-openpgp.c:2486 #, c-format msgid "access to admin commands is not configured\n" msgstr "accesul la comenzile de administrare nu este configurată\n" -#: scd/app-openpgp.c:2823 +#: scd/app-openpgp.c:2826 #, fuzzy msgid "||Please enter the PIN" msgstr "||Vă rugăm introduceţi PIN%%0A[semnături făcute: %lu]" -#: scd/app-openpgp.c:2872 +#: scd/app-openpgp.c:2875 #, fuzzy msgid "||Please enter the Reset Code for the card" msgstr "||Vă rugăm introduceţi PIN%%0A[semnături făcute: %lu]" -#: scd/app-openpgp.c:2882 scd/app-openpgp.c:2943 +#: scd/app-openpgp.c:2885 scd/app-openpgp.c:2946 #, fuzzy, c-format msgid "Reset Code is too short; minimum length is %d\n" msgstr "PIN-ul pentru CHV%d este prea scurt; lungimea minimă este %d\n" @@ -8600,90 +8612,90 @@ #. 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:2905 +#: scd/app-openpgp.c:2908 msgid "|RN|New Reset Code" msgstr "" -#: scd/app-openpgp.c:2906 +#: scd/app-openpgp.c:2909 msgid "|AN|New Admin PIN" msgstr "|AN|PIN Admin Nou" -#: scd/app-openpgp.c:2906 +#: scd/app-openpgp.c:2909 msgid "|N|New PIN" msgstr "|N|PIN Nou" -#: scd/app-openpgp.c:2987 +#: scd/app-openpgp.c:2996 #, fuzzy msgid "||Please enter the Admin PIN and New Admin PIN" msgstr "||Vă rugăm introduceţi PIN%%0A[semnături făcute: %lu]" -#: scd/app-openpgp.c:2988 +#: scd/app-openpgp.c:2997 #, fuzzy msgid "||Please enter the PIN and New PIN" msgstr "||Vă rugăm introduceţi PIN%%0A[semnături făcute: %lu]" -#: scd/app-openpgp.c:3050 scd/app-openpgp.c:4346 +#: scd/app-openpgp.c:3059 scd/app-openpgp.c:4355 #, c-format msgid "error reading application data\n" msgstr "eroare la citirea datelor aplicaţiei\n" -#: scd/app-openpgp.c:3056 scd/app-openpgp.c:4353 +#: scd/app-openpgp.c:3065 scd/app-openpgp.c:4362 #, c-format msgid "error reading fingerprint DO\n" msgstr "eroare la citirea amprentei DO\n" -#: scd/app-openpgp.c:3066 +#: scd/app-openpgp.c:3075 #, c-format msgid "key already exists\n" msgstr "cheia există deja\n" -#: scd/app-openpgp.c:3070 +#: scd/app-openpgp.c:3079 #, c-format msgid "existing key will be replaced\n" msgstr "cheia existentă va fi înlocuită\n" -#: scd/app-openpgp.c:3072 +#: scd/app-openpgp.c:3081 #, c-format msgid "generating new key\n" msgstr "generez o nouă cheie\n" -#: scd/app-openpgp.c:3074 +#: scd/app-openpgp.c:3083 #, fuzzy, c-format msgid "writing new key\n" msgstr "generez o nouă cheie\n" -#: scd/app-openpgp.c:3647 scd/app-openpgp.c:3999 +#: scd/app-openpgp.c:3656 scd/app-openpgp.c:4008 #, c-format msgid "creation timestamp missing\n" msgstr "timestamp-ul de creare lipseşte\n" -#: scd/app-openpgp.c:3688 scd/app-openpgp.c:3696 +#: scd/app-openpgp.c:3697 scd/app-openpgp.c:3705 #, 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:3829 scd/app-openpgp.c:4106 +#: scd/app-openpgp.c:3838 scd/app-openpgp.c:4115 #, c-format msgid "failed to store the key: %s\n" msgstr "am eşuat să stochez cheia: %s\n" -#: scd/app-openpgp.c:3993 +#: scd/app-openpgp.c:4002 #, fuzzy, c-format #| msgid "unsupported URI" msgid "unsupported curve\n" msgstr "URI nesuportat" -#: scd/app-openpgp.c:4263 +#: scd/app-openpgp.c:4272 #, c-format 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:4271 +#: scd/app-openpgp.c:4280 #, c-format msgid "generating key failed\n" msgstr "generarea cheii a eşuat\n" -#: scd/app-openpgp.c:4277 +#: scd/app-openpgp.c:4286 #, fuzzy, c-format #| msgid "key generation completed (%d seconds)\n" msgid "key generation completed (%d second)\n" @@ -8691,39 +8703,39 @@ msgstr[0] "generarea cheii este completă (%d secunde)\n" msgstr[1] "generarea cheii este completă (%d secunde)\n" -#: scd/app-openpgp.c:4311 +#: scd/app-openpgp.c:4320 #, c-format msgid "invalid structure of OpenPGP card (DO 0x93)\n" msgstr "structură invalidă a cardului OpenPGP (DO 0x93)\n" -#: scd/app-openpgp.c:4361 +#: scd/app-openpgp.c:4370 #, c-format msgid "fingerprint on card does not match requested one\n" msgstr "" -#: scd/app-openpgp.c:4560 +#: scd/app-openpgp.c:4569 #, fuzzy, c-format msgid "card does not support digest algorithm %s\n" msgstr "semnătură %s, algoritm rezumat %s\n" -#: scd/app-openpgp.c:4618 +#: scd/app-openpgp.c:4627 #, c-format msgid "signatures created so far: %lu\n" msgstr "semnături create până acum: %lu\n" -#: scd/app-openpgp.c:5055 +#: scd/app-openpgp.c:5065 #, c-format 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:5386 scd/app-openpgp.c:5398 +#: scd/app-openpgp.c:5396 scd/app-openpgp.c:5408 #, c-format msgid "can't access %s - invalid OpenPGP card?\n" msgstr "nu pot accesa %s - card OpenPGP invalid?\n" -#: scd/app-dinsig.c:298 +#: scd/app-dinsig.c:299 #, fuzzy msgid "||Please enter your PIN at the reader's pinpad" msgstr "||Vă rugăm introduceţi PIN%%0A[semnături făcute: %lu]" @@ -8731,7 +8743,7 @@ #. 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-dinsig.c:529 +#: scd/app-dinsig.c:532 #, fuzzy msgid "|N|Initial New PIN" msgstr "|N|PIN Nou" @@ -8822,11 +8834,11 @@ msgid "validation model requested by certificate: %s" msgstr "" -#: sm/certchain.c:199 sm/certchain.c:2164 +#: sm/certchain.c:199 sm/certchain.c:2165 msgid "chain" msgstr "" -#: sm/certchain.c:200 sm/certchain.c:2164 +#: sm/certchain.c:200 sm/certchain.c:2165 #, fuzzy msgid "shell" msgstr "ajutor" @@ -8850,241 +8862,241 @@ msgid "failed to open '%s': %s\n" msgstr "Nu pot deschide `%s': %s\n" -#: sm/certchain.c:355 sm/certchain.c:384 dirmngr/validate.c:204 +#: sm/certchain.c:355 sm/certchain.c:385 dirmngr/validate.c:204 #, fuzzy, c-format msgid "Note: non-critical certificate policy not allowed" msgstr "exportul cheilor secrete nu este permis\n" -#: sm/certchain.c:359 sm/certchain.c:388 dirmngr/validate.c:209 +#: sm/certchain.c:359 sm/certchain.c:389 dirmngr/validate.c:209 #, fuzzy, c-format msgid "certificate policy not allowed" msgstr "exportul cheilor secrete nu este permis\n" -#: sm/certchain.c:595 sm/keydb.c:1084 sm/keydb.c:1171 +#: sm/certchain.c:596 sm/keydb.c:1084 sm/keydb.c:1171 #, fuzzy, c-format msgid "failed to get the fingerprint\n" msgstr "am eşuat să stochez amprenta: %s\n" -#: sm/certchain.c:624 +#: sm/certchain.c:625 #, c-format msgid "looking up issuer at external location\n" msgstr "" -#: sm/certchain.c:644 +#: sm/certchain.c:645 #, c-format msgid "number of issuers matching: %d\n" msgstr "" -#: sm/certchain.c:723 dirmngr/ocsp.c:685 +#: sm/certchain.c:724 dirmngr/ocsp.c:685 #, fuzzy, c-format #| msgid "%s: can't access: %s\n" msgid "can't get authorityInfoAccess: %s\n" msgstr "%s: nu pot accesa: %s\n" -#: sm/certchain.c:791 +#: sm/certchain.c:792 #, c-format msgid "looking up issuer from the Dirmngr cache\n" msgstr "" -#: sm/certchain.c:816 +#: sm/certchain.c:817 #, fuzzy, c-format msgid "number of matching certificates: %d\n" msgstr "eroare la obţinerea numărului serial: %s\n" -#: sm/certchain.c:819 +#: sm/certchain.c:820 #, fuzzy, c-format msgid "dirmngr cache-only key lookup failed: %s\n" msgstr "citirea cheii publice a eşuat: %s\n" -#: sm/certchain.c:1041 sm/certchain.c:1554 sm/certchain.c:2192 sm/decrypt.c:728 +#: sm/certchain.c:1042 sm/certchain.c:1555 sm/certchain.c:2193 sm/decrypt.c:728 #: sm/encrypt.c:345 sm/import.c:415 sm/keydb.c:1091 sm/keydb.c:1178 #: sm/sign.c:337 sm/verify.c:118 #, fuzzy, c-format msgid "failed to allocate keyDB handle\n" msgstr "am eşuat să stochez cheia: %s\n" -#: sm/certchain.c:1225 +#: sm/certchain.c:1226 #, fuzzy msgid "certificate has been revoked" msgstr "NOTĂ: cheia a fost revocată" -#: sm/certchain.c:1240 +#: sm/certchain.c:1241 msgid "the status of the certificate is unknown" msgstr "" -#: sm/certchain.c:1247 +#: sm/certchain.c:1248 #, c-format msgid "please make sure that the \"dirmngr\" is properly installed\n" msgstr "" -#: sm/certchain.c:1253 +#: sm/certchain.c:1254 #, fuzzy, c-format msgid "checking the CRL failed: %s" msgstr "verificarea semnăturii create a eşuat: %s\n" -#: sm/certchain.c:1282 sm/certchain.c:1350 dirmngr/validate.c:497 +#: sm/certchain.c:1283 sm/certchain.c:1351 dirmngr/validate.c:497 #, c-format msgid "certificate with invalid validity: %s" msgstr "" -#: sm/certchain.c:1297 sm/certchain.c:1382 dirmngr/validate.c:515 +#: sm/certchain.c:1298 sm/certchain.c:1383 dirmngr/validate.c:515 #, c-format msgid "certificate not yet valid" msgstr "" -#: sm/certchain.c:1298 sm/certchain.c:1383 +#: sm/certchain.c:1299 sm/certchain.c:1384 #, fuzzy msgid "root certificate not yet valid" msgstr "exportul cheilor secrete nu este permis\n" -#: sm/certchain.c:1299 sm/certchain.c:1384 +#: sm/certchain.c:1300 sm/certchain.c:1385 msgid "intermediate certificate not yet valid" msgstr "" -#: sm/certchain.c:1312 dirmngr/validate.c:526 +#: sm/certchain.c:1313 dirmngr/validate.c:526 #, fuzzy, c-format msgid "certificate has expired" msgstr "Această cheie a expirat!" -#: sm/certchain.c:1313 +#: sm/certchain.c:1314 #, fuzzy msgid "root certificate has expired" msgstr "Această cheie a expirat!" -#: sm/certchain.c:1314 +#: sm/certchain.c:1315 #, fuzzy msgid "intermediate certificate has expired" msgstr "Această cheie a expirat!" -#: sm/certchain.c:1356 +#: sm/certchain.c:1357 #, c-format msgid "required certificate attributes missing: %s%s%s" msgstr "" -#: sm/certchain.c:1365 +#: sm/certchain.c:1366 #, fuzzy msgid "certificate with invalid validity" msgstr "Această cheie a expirat!" -#: sm/certchain.c:1402 +#: sm/certchain.c:1403 msgid "signature not created during lifetime of certificate" msgstr "" -#: sm/certchain.c:1404 +#: sm/certchain.c:1405 msgid "certificate not created during lifetime of issuer" msgstr "" -#: sm/certchain.c:1405 +#: sm/certchain.c:1406 msgid "intermediate certificate not created during lifetime of issuer" msgstr "" -#: sm/certchain.c:1409 +#: sm/certchain.c:1410 #, fuzzy, c-format msgid " ( signature created at " msgstr "semnături create până acum: %lu\n" -#: sm/certchain.c:1410 +#: sm/certchain.c:1411 #, fuzzy, c-format msgid " (certificate created at " msgstr "Certificat de revocare creat.\n" -#: sm/certchain.c:1413 +#: sm/certchain.c:1414 #, fuzzy, c-format msgid " (certificate valid from " msgstr "certificat incorect" -#: sm/certchain.c:1414 +#: sm/certchain.c:1415 #, fuzzy, c-format msgid " ( issuer valid from " msgstr " Card nr. serie =" -#: sm/certchain.c:1444 dirmngr/validate.c:577 +#: sm/certchain.c:1445 dirmngr/validate.c:577 #, fuzzy, c-format msgid "fingerprint=%s\n" msgstr "Amprenta CA: " -#: sm/certchain.c:1453 +#: sm/certchain.c:1454 #, c-format msgid "root certificate has now been marked as trusted\n" msgstr "" -#: sm/certchain.c:1466 +#: sm/certchain.c:1467 #, c-format msgid "interactive marking as trusted not enabled in gpg-agent\n" msgstr "" -#: sm/certchain.c:1472 +#: sm/certchain.c:1473 #, c-format msgid "interactive marking as trusted disabled for this session\n" msgstr "" -#: sm/certchain.c:1531 +#: sm/certchain.c:1532 msgid "WARNING: creation time of signature not known - assuming current time" msgstr "" -#: sm/certchain.c:1595 +#: sm/certchain.c:1596 #, fuzzy msgid "no issuer found in certificate" msgstr "generează un certificat de revocare" -#: sm/certchain.c:1673 +#: sm/certchain.c:1674 msgid "self-signed certificate has a BAD signature" msgstr "" -#: sm/certchain.c:1742 dirmngr/validate.c:575 +#: sm/certchain.c:1743 dirmngr/validate.c:575 #, c-format msgid "root certificate is not marked trusted" msgstr "" -#: sm/certchain.c:1758 +#: sm/certchain.c:1759 #, fuzzy, c-format msgid "checking the trust list failed: %s\n" msgstr "verificarea semnăturii create a eşuat: %s\n" -#: sm/certchain.c:1789 sm/import.c:176 sm/keylist.c:1396 dirmngr/validate.c:630 +#: sm/certchain.c:1790 sm/import.c:176 sm/keylist.c:1396 dirmngr/validate.c:630 #, c-format msgid "certificate chain too long\n" msgstr "" -#: sm/certchain.c:1801 dirmngr/validate.c:642 +#: sm/certchain.c:1802 dirmngr/validate.c:642 #, c-format msgid "issuer certificate not found" msgstr "" -#: sm/certchain.c:1834 dirmngr/validate.c:668 +#: sm/certchain.c:1835 dirmngr/validate.c:668 #, fuzzy, c-format msgid "certificate has a BAD signature" msgstr "verifică o semnătură" -#: sm/certchain.c:1866 dirmngr/validate.c:692 +#: sm/certchain.c:1867 dirmngr/validate.c:692 msgid "found another possible matching CA certificate - trying again" msgstr "" -#: sm/certchain.c:1925 dirmngr/validate.c:717 +#: sm/certchain.c:1926 dirmngr/validate.c:717 #, c-format msgid "certificate chain longer than allowed by CA (%d)" msgstr "" -#: sm/certchain.c:1967 sm/certchain.c:2263 dirmngr/validate.c:747 +#: sm/certchain.c:1968 sm/certchain.c:2264 dirmngr/validate.c:747 #, fuzzy, c-format msgid "certificate is good\n" msgstr "preferinţa `%s' duplicată\n" -#: sm/certchain.c:1968 +#: sm/certchain.c:1969 #, fuzzy, c-format msgid "intermediate certificate is good\n" msgstr "Certificat de revocare creat.\n" -#: sm/certchain.c:1969 +#: sm/certchain.c:1970 #, fuzzy, c-format msgid "root certificate is good\n" msgstr "certificat incorect" -#: sm/certchain.c:2151 +#: sm/certchain.c:2152 msgid "switching to chain model" msgstr "" -#: sm/certchain.c:2160 +#: sm/certchain.c:2161 #, c-format msgid "validation model used: %s" msgstr "" diff -Nru gnupg2-2.2.40/po/ru.po gnupg2-2.2.41/po/ru.po --- gnupg2-2.2.40/po/ru.po 2022-10-10 09:58:26.000000000 +0000 +++ gnupg2-2.2.41/po/ru.po 2022-12-09 08:48:35.000000000 +0000 @@ -13,7 +13,7 @@ msgstr "" "Project-Id-Version: GnuPG 2.2.0\n" "Report-Msgid-Bugs-To: translations@gnupg.org\n" -"POT-Creation-Date: 2022-10-10 11:58+0200\n" +"POT-Creation-Date: 2022-12-09 09:48+0100\n" "PO-Revision-Date: 2021-10-12 08:13+0200\n" "Last-Translator: Ineiev \n" "Language-Team: Russian \n" @@ -227,20 +227,20 @@ msgid "ssh keys greater than %d bits are not supported\n" msgstr "ключи ssh длиннее %d бит не поддерживаются\n" -#: agent/command-ssh.c:862 common/dotlock.c:856 g10/card-util.c:947 -#: g10/exec.c:554 g10/export.c:1320 g10/gpg.c:1400 g10/keygen.c:4998 +#: agent/command-ssh.c:862 common/dotlock.c:856 g10/card-util.c:946 +#: g10/exec.c:554 g10/export.c:1335 g10/gpg.c:1409 g10/keygen.c:5052 #: g10/keyring.c:1322 g10/keyring.c:1637 g10/openfile.c:291 g10/sign.c:1008 #: g10/sign.c:1322 g10/tdbio.c:753 #, c-format msgid "can't create '%s': %s\n" msgstr "не могу создать '%s': %s\n" -#: agent/command-ssh.c:874 common/helpfile.c:57 g10/card-util.c:904 +#: agent/command-ssh.c:874 common/helpfile.c:57 g10/card-util.c:903 #: g10/dearmor.c:59 g10/dearmor.c:106 g10/decrypt.c:65 g10/decrypt.c:136 -#: g10/decrypt.c:153 g10/encrypt.c:239 g10/encrypt.c:678 g10/gpg.c:1401 -#: g10/import.c:364 g10/import.c:548 g10/import.c:776 g10/keygen.c:4036 +#: g10/decrypt.c:153 g10/encrypt.c:239 g10/encrypt.c:678 g10/gpg.c:1410 +#: g10/import.c:365 g10/import.c:549 g10/import.c:777 g10/keygen.c:4090 #: g10/keyring.c:1663 g10/openfile.c:195 g10/openfile.c:209 g10/plaintext.c:128 -#: g10/plaintext.c:649 g10/sign.c:990 g10/sign.c:1201 g10/sign.c:1306 +#: g10/plaintext.c:654 g10/sign.c:990 g10/sign.c:1201 g10/sign.c:1306 #: g10/sign.c:1451 g10/tdbdump.c:145 g10/tdbdump.c:153 g10/tdbio.c:758 #: g10/tdbio.c:829 g10/verify.c:96 g10/verify.c:160 sm/gpgsm.c:2160 #: sm/gpgsm.c:2190 sm/gpgsm.c:2228 sm/qualified.c:66 dirmngr/certcache.c:420 @@ -471,33 +471,33 @@ msgid "csh-style command output" msgstr "вывод команд в стиле csh" -#: agent/gpg-agent.c:185 g10/gpg.c:579 scd/scdaemon.c:126 sm/gpgsm.c:410 +#: agent/gpg-agent.c:185 g10/gpg.c:580 scd/scdaemon.c:126 sm/gpgsm.c:410 #: dirmngr/dirmngr.c:192 msgid "|FILE|read options from FILE" msgstr "|FILE|взять параметры из файла FILE" -#: agent/gpg-agent.c:189 g10/gpg.c:566 scd/scdaemon.c:130 sm/gpgsm.c:259 +#: agent/gpg-agent.c:189 g10/gpg.c:567 scd/scdaemon.c:130 sm/gpgsm.c:259 #: dirmngr/dirmngr.c:196 msgid "Options controlling the diagnostic output" msgstr "Параметры, управляющие выводом диагностики" -#: agent/gpg-agent.c:191 g10/gpg.c:568 g10/gpgv.c:78 kbx/kbxutil.c:88 +#: agent/gpg-agent.c:191 g10/gpg.c:569 g10/gpgv.c:78 kbx/kbxutil.c:88 #: scd/scdaemon.c:132 sm/gpgsm.c:261 dirmngr/dirmngr-client.c:70 #: dirmngr/dirmngr.c:198 tools/gpg-connect-agent.c:78 tools/gpgconf.c:110 msgid "verbose" msgstr "подробно" -#: agent/gpg-agent.c:192 g10/gpg.c:570 g10/gpgv.c:79 kbx/kbxutil.c:89 +#: agent/gpg-agent.c:192 g10/gpg.c:571 g10/gpgv.c:79 kbx/kbxutil.c:89 #: scd/scdaemon.c:133 sm/gpgsm.c:263 dirmngr/dirmngr-client.c:71 #: dirmngr/dirmngr.c:199 msgid "be somewhat more quiet" msgstr "сократить подробности" -#: agent/gpg-agent.c:200 g10/gpg.c:583 sm/gpgsm.c:276 dirmngr/dirmngr.c:209 +#: agent/gpg-agent.c:200 g10/gpg.c:584 sm/gpgsm.c:276 dirmngr/dirmngr.c:209 msgid "|FILE|write server mode logs to FILE" msgstr "|FILE|сохранять журнал режима сервера в файле FILE" -#: agent/gpg-agent.c:204 g10/gpg.c:589 scd/scdaemon.c:147 sm/gpgsm.c:283 +#: agent/gpg-agent.c:204 g10/gpg.c:590 scd/scdaemon.c:147 sm/gpgsm.c:283 #: dirmngr/dirmngr.c:213 msgid "Options controlling the configuration" msgstr "Параметры, управляющие настройками" @@ -534,7 +534,7 @@ msgid "enable putty support" msgstr "включить поддержку putty" -#: agent/gpg-agent.c:237 g10/gpg.c:831 scd/scdaemon.c:175 sm/gpgsm.c:369 +#: agent/gpg-agent.c:237 g10/gpg.c:832 scd/scdaemon.c:175 sm/gpgsm.c:369 msgid "Options controlling the security" msgstr "Параметры, управляющие безопасностью" @@ -635,7 +635,7 @@ #. reporting address. This is so that we can change the #. reporting address without breaking the translations. #: agent/gpg-agent.c:563 agent/preset-passphrase.c:100 agent/protect-tool.c:155 -#: g10/gpg.c:1108 g10/gpgv.c:149 kbx/kbxutil.c:113 scd/scdaemon.c:313 +#: g10/gpg.c:1117 g10/gpgv.c:149 kbx/kbxutil.c:113 scd/scdaemon.c:313 #: sm/gpgsm.c:600 dirmngr/dirmngr-client.c:168 dirmngr/dirmngr.c:458 #: tools/gpg-connect-agent.c:205 tools/gpgconf.c:154 #: tools/gpg-check-pattern.c:143 @@ -654,26 +654,26 @@ "Синтаксис: @GPG_AGENT@ [параметры] [команда [аргументы]]\n" "Управление секретными ключами для @GNUPG@\n" -#: agent/gpg-agent.c:619 g10/gpg.c:1304 scd/scdaemon.c:385 sm/gpgsm.c:748 +#: agent/gpg-agent.c:619 g10/gpg.c:1313 scd/scdaemon.c:385 sm/gpgsm.c:748 #: dirmngr/dirmngr.c:542 #, c-format msgid "invalid debug-level '%s' given\n" msgstr "запрошен недопустимый уровень отладки '%s'\n" -#: agent/gpg-agent.c:988 g10/gpg.c:3810 g10/gpg.c:3834 sm/gpgsm.c:1585 +#: agent/gpg-agent.c:988 g10/gpg.c:3830 g10/gpg.c:3854 sm/gpgsm.c:1585 #: sm/gpgsm.c:1591 #, c-format msgid "selected digest algorithm is invalid\n" msgstr "выбрана недопустимая хеш-функция\n" #: agent/gpg-agent.c:1216 agent/gpg-agent.c:2029 common/argparse.c:1766 -#: common/argparse.c:1858 g10/gpg.c:2517 scd/scdaemon.c:547 sm/gpgsm.c:1007 +#: common/argparse.c:1858 g10/gpg.c:2526 scd/scdaemon.c:547 sm/gpgsm.c:1007 #: dirmngr/dirmngr.c:1081 dirmngr/dirmngr.c:1937 #, c-format msgid "reading options from '%s'\n" msgstr "чтение параметров из '%s'\n" -#: agent/gpg-agent.c:1332 g10/gpg.c:3751 scd/scdaemon.c:671 sm/gpgsm.c:1522 +#: agent/gpg-agent.c:1332 g10/gpg.c:3769 scd/scdaemon.c:671 sm/gpgsm.c:1522 #: dirmngr/dirmngr.c:1190 tools/gpg-connect-agent.c:1244 tools/gpgconf.c:677 #, c-format msgid "Note: '%s' is not considered an option\n" @@ -803,7 +803,7 @@ "Синтаксис: gpg-preset-passphrase [параметры] КОД_КЛЮЧА\n" "Работа с буфером паролей\n" -#: agent/protect-tool.c:108 g10/gpg.c:441 kbx/kbxutil.c:71 sm/gpgsm.c:210 +#: agent/protect-tool.c:108 g10/gpg.c:442 kbx/kbxutil.c:71 sm/gpgsm.c:210 #: dirmngr/dirmngr.c:171 tools/gpgconf.c:80 msgid "" "@Commands:\n" @@ -1028,7 +1028,7 @@ msgid "secret key parts are not available\n" msgstr "секретная часть ключа недоступна\n" -#: agent/cvt-openpgp.c:344 g10/card-util.c:1556 +#: agent/cvt-openpgp.c:344 g10/card-util.c:1555 #, c-format msgid "public key algorithm %d (%s) is not supported\n" msgstr "алгоритм шифрования с открытым ключом %d (%s) не поддерживается\n" @@ -1183,7 +1183,7 @@ msgid "out of core while allocating %lu bytes" msgstr "выход за границы при размещении %lu байтов" -#: common/miscellaneous.c:115 g10/card-util.c:911 tools/no-libgcrypt.c:30 +#: common/miscellaneous.c:115 g10/card-util.c:910 tools/no-libgcrypt.c:30 #, c-format msgid "error allocating enough memory: %s\n" msgstr "ошибка выделения достаточной памяти: %s\n" @@ -1296,7 +1296,7 @@ msgstr "алгоритм: %s" #: common/audit.c:774 common/audit.c:776 common/audit.c:921 common/audit.c:923 -#: scd/app-openpgp.c:3557 +#: scd/app-openpgp.c:3566 #, c-format msgid "unsupported algorithm: %s" msgstr "алгоритм (не поддерживается): %s" @@ -1371,11 +1371,11 @@ msgid "Root certificate trustworthy" msgstr "Корневой сертификат достоверен" -#: common/audit.c:1112 sm/certchain.c:1235 +#: common/audit.c:1112 sm/certchain.c:1236 msgid "no CRL found for certificate" msgstr "для сертификата не найден список отозванных сертификатов" -#: common/audit.c:1115 sm/certchain.c:1245 +#: common/audit.c:1115 sm/certchain.c:1246 msgid "the available CRL is too old" msgstr "доступный список отозванных сертификатов слишком стар" @@ -1498,7 +1498,7 @@ msgid "missing argument for option \"%.50s\"\n" msgstr "не хватает аргумента для параметра \"%.50s\"\n" -#: common/argparse.c:558 g10/gpg.c:3525 +#: common/argparse.c:558 g10/gpg.c:3543 #, c-format msgid "invalid argument for option \"%.50s\"\n" msgstr "недопустимый аргумент для параметра \"%.50s\"\n" @@ -1598,92 +1598,92 @@ msgid "%s is too old (need %s, have %s)\n" msgstr "слишком старая версия %s (нужно %s, есть %s)\n" -#: g10/armor.c:423 +#: g10/armor.c:424 #, c-format msgid "armor: %s\n" msgstr "текстовый формат: %s\n" -#: g10/armor.c:462 +#: g10/armor.c:463 #, c-format msgid "invalid armor header: " msgstr "недопустимый текстовый заголовок: " -#: g10/armor.c:473 +#: g10/armor.c:474 #, c-format msgid "armor header: " msgstr "текстовый заголовок: " -#: g10/armor.c:486 +#: g10/armor.c:487 #, c-format msgid "invalid clearsig header\n" msgstr "недопустимый заголовок текстовой подписи\n" -#: g10/armor.c:499 +#: g10/armor.c:500 #, c-format msgid "unknown armor header: " msgstr "неизвестный текстовый заголовок: " -#: g10/armor.c:552 +#: g10/armor.c:553 #, c-format msgid "nested clear text signatures\n" msgstr "вложенные текстовые подписи\n" -#: g10/armor.c:687 +#: g10/armor.c:688 #, c-format msgid "unexpected armor: " msgstr "неожиданный текстовый формат: " -#: g10/armor.c:700 +#: g10/armor.c:701 #, c-format msgid "invalid dash escaped line: " msgstr "недопустимая строка с выключенными дефисами: " -#: g10/armor.c:872 g10/armor.c:1492 +#: g10/armor.c:873 g10/armor.c:1493 #, c-format msgid "invalid radix64 character %02X skipped\n" msgstr "недопустимый символ radix64 %02X (игнорируется)\n" -#: g10/armor.c:915 +#: g10/armor.c:916 #, c-format msgid "premature eof (no CRC)\n" msgstr "преждевременный конец файла (нет контрольной суммы)\n" -#: g10/armor.c:949 +#: g10/armor.c:950 #, c-format msgid "premature eof (in CRC)\n" msgstr "преждевременный конец файла (в контрольной сумме)\n" -#: g10/armor.c:957 +#: g10/armor.c:958 #, c-format msgid "malformed CRC\n" msgstr "поврежденная контрольная сумма\n" -#: g10/armor.c:961 g10/armor.c:1529 +#: g10/armor.c:962 g10/armor.c:1530 #, c-format msgid "CRC error; %06lX - %06lX\n" msgstr "ошибка контрольной суммы; %06lX - %06lX\n" -#: g10/armor.c:981 +#: g10/armor.c:982 #, c-format msgid "premature eof (in trailer)\n" msgstr "преждевременный конец файла (в дополнении)\n" -#: g10/armor.c:985 +#: g10/armor.c:986 #, c-format msgid "error in trailer line\n" msgstr "ошибка в строке дополнения\n" -#: g10/armor.c:1305 +#: g10/armor.c:1306 #, c-format msgid "no valid OpenPGP data found.\n" msgstr "не найдено данных формата OpenPGP.\n" -#: g10/armor.c:1310 +#: g10/armor.c:1311 #, c-format msgid "invalid armor: line longer than %d characters\n" msgstr "недопустимый текстовый формат: строка длиннее %d символов\n" -#: g10/armor.c:1314 +#: g10/armor.c:1315 #, c-format msgid "" "quoted printable character in armor - probably a buggy MTA has been used\n" @@ -1820,23 +1820,23 @@ msgid "server uses an invalid certificate" msgstr "на сервере применяется непригодный сертификат" -#: g10/call-dirmngr.c:462 g10/gpg.c:4458 +#: g10/call-dirmngr.c:462 g10/gpg.c:4478 #, c-format msgid "Note: %s\n" msgstr "Замечание: %s\n" -#: g10/card-util.c:86 g10/card-util.c:366 g10/card-util.c:1918 +#: g10/card-util.c:86 g10/card-util.c:366 g10/card-util.c:1917 #, c-format msgid "OpenPGP card not available: %s\n" msgstr "Карта OpenPGP недоступна: %s\n" -#: g10/card-util.c:91 g10/card-util.c:1924 +#: g10/card-util.c:91 g10/card-util.c:1923 #, c-format msgid "OpenPGP card no. %s detected\n" msgstr "Обнаружена карта OpenPGP номер %s\n" -#: g10/card-util.c:97 g10/card-util.c:2253 g10/delkey.c:160 g10/keyedit.c:1423 -#: g10/keygen.c:4466 g10/revoke.c:214 g10/revoke.c:636 +#: g10/card-util.c:97 g10/card-util.c:2252 g10/delkey.c:160 g10/keyedit.c:1423 +#: g10/keygen.c:4520 g10/revoke.c:214 g10/revoke.c:636 #, c-format msgid "can't do this in batch mode\n" msgstr "в пакетном режиме это действие невозможно\n" @@ -1846,14 +1846,14 @@ msgid "This command is only available for version 2 cards\n" msgstr "Эта команда доступна только для карт версии 2\n" -#: g10/card-util.c:107 scd/app-openpgp.c:2866 +#: g10/card-util.c:107 scd/app-openpgp.c:2869 #, c-format msgid "Reset Code not or not anymore available\n" msgstr "Код сброса (больше) не доступен\n" -#: g10/card-util.c:140 g10/card-util.c:1442 g10/card-util.c:1704 -#: g10/card-util.c:1796 g10/keyedit.c:394 g10/keyedit.c:415 g10/keyedit.c:429 -#: g10/keygen.c:1808 g10/keygen.c:1980 g10/keygen.c:2186 g10/keygen.c:2477 +#: g10/card-util.c:140 g10/card-util.c:1441 g10/card-util.c:1703 +#: g10/card-util.c:1795 g10/keyedit.c:394 g10/keyedit.c:415 g10/keyedit.c:429 +#: g10/keygen.c:1862 g10/keygen.c:2034 g10/keygen.c:2240 g10/keygen.c:2531 #: sm/certreqgen-ui.c:165 sm/certreqgen-ui.c:291 sm/certreqgen-ui.c:325 msgid "Your selection? " msgstr "Ваш выбор? " @@ -1903,79 +1903,79 @@ msgid "Error: Combined name too long (limit is %d characters).\n" msgstr "Ошибка: Слишком длинное полное имя (предел - %d символов).\n" -#: g10/card-util.c:826 +#: g10/card-util.c:825 msgid "URL to retrieve public key: " msgstr "URL для получения открытого ключа: " -#: g10/card-util.c:920 g10/decrypt-data.c:509 g10/import.c:399 g10/import.c:746 -#: g10/import.c:798 dirmngr/crlcache.c:655 dirmngr/crlcache.c:660 +#: g10/card-util.c:919 g10/decrypt-data.c:509 g10/import.c:400 g10/import.c:747 +#: g10/import.c:799 dirmngr/crlcache.c:655 dirmngr/crlcache.c:660 #: dirmngr/crlcache.c:914 dirmngr/crlcache.c:920 dirmngr/dirmngr.c:1748 #: tools/gpgconf.c:483 tools/gpgconf.c:529 #, c-format msgid "error reading '%s': %s\n" msgstr "ошибка чтения '%s': %s\n" -#: g10/card-util.c:953 g10/decrypt-data.c:512 g10/export.c:2467 +#: g10/card-util.c:952 g10/decrypt-data.c:512 g10/export.c:2586 #: dirmngr/crlcache.c:925 #, c-format msgid "error writing '%s': %s\n" msgstr "ошибка записи '%s': %s\n" -#: g10/card-util.c:980 +#: g10/card-util.c:979 msgid "Login data (account name): " msgstr "Учетная запись (имя): " -#: g10/card-util.c:1018 +#: g10/card-util.c:1017 msgid "Private DO data: " msgstr "Секретные данные DO:" -#: g10/card-util.c:1103 +#: g10/card-util.c:1102 msgid "Language preferences: " msgstr "Предпочтительный язык: " -#: g10/card-util.c:1111 +#: g10/card-util.c:1110 msgid "Error: invalid length of preference string.\n" msgstr "Ошибка: недопустимая длина строки предпочтений.\n" -#: g10/card-util.c:1120 +#: g10/card-util.c:1119 msgid "Error: invalid characters in preference string.\n" msgstr "Ошибка: недопустимые символы в строке предпочтений.\n" -#: g10/card-util.c:1142 +#: g10/card-util.c:1141 msgid "Salutation (M = Mr., F = Ms., or space): " msgstr "Приветствие (M = Уважаемый, F = Уважаемая, пробел - не задано): " -#: g10/card-util.c:1156 +#: g10/card-util.c:1155 msgid "Error: invalid response.\n" msgstr "Ошибка: недопустимый ответ.\n" -#: g10/card-util.c:1178 +#: g10/card-util.c:1177 msgid "CA fingerprint: " msgstr "отпечаток удостоверяющего центра: " -#: g10/card-util.c:1201 +#: g10/card-util.c:1200 msgid "Error: invalid formatted fingerprint.\n" msgstr "Ошибка: недопустимый формат отпечатка.\n" -#: g10/card-util.c:1252 +#: g10/card-util.c:1251 #, c-format msgid "key operation not possible: %s\n" msgstr "операция с ключом невозможна: %s\n" -#: g10/card-util.c:1253 +#: g10/card-util.c:1252 msgid "not an OpenPGP card" msgstr "это не карта OpenPGP" -#: g10/card-util.c:1266 g10/keygen.c:4486 g10/keygen.c:5562 +#: g10/card-util.c:1265 g10/keygen.c:4540 g10/keygen.c:5616 #, c-format msgid "error getting current key info: %s\n" msgstr "ошибка при считывании информации ключа: %s\n" -#: g10/card-util.c:1351 +#: g10/card-util.c:1350 msgid "Replace existing key? (y/N) " msgstr "Заменить существующий ключ? (y/N) " -#: g10/card-util.c:1368 +#: g10/card-util.c:1367 msgid "" "Note: There is no guarantee that the card supports the requested size.\n" " If the key generation does not succeed, please check the\n" @@ -1985,97 +1985,97 @@ " Если создать ключ не удастся, сверьтесь с документацией\n" " на карту и выясните, какие размеры допустимы.\n" -#: g10/card-util.c:1390 g10/keygen.c:2363 sm/certreqgen-ui.c:179 +#: g10/card-util.c:1389 g10/keygen.c:2417 sm/certreqgen-ui.c:179 #, c-format msgid "What keysize do you want? (%u) " msgstr "Какой размер ключа Вам необходим? (%u) " -#: g10/card-util.c:1400 g10/keygen.c:2286 g10/keygen.c:2318 +#: g10/card-util.c:1399 g10/keygen.c:2340 g10/keygen.c:2372 #: sm/certreqgen-ui.c:194 #, c-format msgid "rounded up to %u bits\n" msgstr "округлен до %u бит\n" -#: g10/card-util.c:1408 g10/keygen.c:2371 sm/certreqgen-ui.c:184 +#: g10/card-util.c:1407 g10/keygen.c:2425 sm/certreqgen-ui.c:184 #, c-format msgid "%s keysizes must be in the range %u-%u\n" msgstr "размер ключей %s должен быть в пределах %u-%u\n" -#: g10/card-util.c:1427 +#: g10/card-util.c:1426 msgid "Changing card key attribute for: " msgstr "Изменение атрибутов ключа на карте:" -#: g10/card-util.c:1429 +#: g10/card-util.c:1428 msgid "Signature key\n" msgstr "Ключа для подписи\n" -#: g10/card-util.c:1431 +#: g10/card-util.c:1430 msgid "Encryption key\n" msgstr "Ключа для шифрования\n" -#: g10/card-util.c:1433 +#: g10/card-util.c:1432 msgid "Authentication key\n" msgstr "Ключа для удостоверения личности\n" -#: g10/card-util.c:1435 g10/keygen.c:1926 sm/certreqgen-ui.c:157 +#: g10/card-util.c:1434 g10/keygen.c:1980 sm/certreqgen-ui.c:157 msgid "Please select what kind of key you want:\n" msgstr "Выберите тип ключа:\n" -#: g10/card-util.c:1436 sm/certreqgen-ui.c:158 +#: g10/card-util.c:1435 sm/certreqgen-ui.c:158 #, c-format msgid " (%d) RSA\n" msgstr " (%d) RSA\n" -#: g10/card-util.c:1437 +#: g10/card-util.c:1436 #, c-format msgid " (%d) ECC\n" msgstr " (%d) ECC\n" -#: g10/card-util.c:1449 g10/card-util.c:1716 g10/card-util.c:1816 -#: g10/keyedit.c:900 g10/keygen.c:1834 g10/keygen.c:1862 g10/keygen.c:1987 -#: g10/keygen.c:2222 g10/keygen.c:2505 g10/revoke.c:838 +#: g10/card-util.c:1448 g10/card-util.c:1715 g10/card-util.c:1815 +#: g10/keyedit.c:900 g10/keygen.c:1888 g10/keygen.c:1916 g10/keygen.c:2041 +#: g10/keygen.c:2276 g10/keygen.c:2559 g10/revoke.c:838 msgid "Invalid selection.\n" msgstr "Неправильный выбор.\n" -#: g10/card-util.c:1522 +#: g10/card-util.c:1521 #, c-format msgid "The card will now be re-configured to generate a key of %u bits\n" msgstr "Теперь карта будет перенастроена на генерацию ключа длиной %u бит\n" -#: g10/card-util.c:1527 +#: g10/card-util.c:1526 #, c-format msgid "The card will now be re-configured to generate a key of type: %s\n" msgstr "Теперь карта будет перенастроена на генерацию ключа типа %s\n" -#: g10/card-util.c:1563 +#: g10/card-util.c:1562 #, c-format msgid "error changing key attribute for key %d: %s\n" msgstr "ошибка изменения атрибута ключа %d: %s\n" -#: g10/card-util.c:1579 g10/card-util.c:2106 +#: g10/card-util.c:1578 g10/card-util.c:2105 #, c-format msgid "error getting card info: %s\n" msgstr "ошибка при считывании информации карты: %s\n" -#: g10/card-util.c:1585 g10/card-util.c:1930 g10/card-util.c:2112 +#: g10/card-util.c:1584 g10/card-util.c:1929 g10/card-util.c:2111 #, c-format msgid "This command is not supported by this card\n" msgstr "Данная команда этой картой не поддерживается\n" -#: g10/card-util.c:1631 +#: g10/card-util.c:1630 msgid "Make off-card backup of encryption key? (Y/n) " msgstr "Сделать вне карты архивную копию ключа шифрования? (Y/n) " -#: g10/card-util.c:1645 +#: g10/card-util.c:1644 #, c-format msgid "Note: keys are already stored on the card!\n" msgstr "Замечание: ключи уже хранятся на карте!\n" -#: g10/card-util.c:1648 +#: g10/card-util.c:1647 msgid "Replace existing keys? (y/N) " msgstr "Заменить существующие ключи? (y/N) " -#: g10/card-util.c:1660 +#: g10/card-util.c:1659 #, c-format msgid "" "Please note that the factory settings of the PINs are\n" @@ -2086,142 +2086,142 @@ " PIN = '%s' Админ. PIN = '%s'\n" "Вам следует изменить их командой --change-pin\n" -#: g10/card-util.c:1695 +#: g10/card-util.c:1694 msgid "Please select the type of key to generate:\n" msgstr "Выберите тип создаваемого ключа:\n" -#: g10/card-util.c:1697 g10/card-util.c:1787 +#: g10/card-util.c:1696 g10/card-util.c:1786 msgid " (1) Signature key\n" msgstr " (1) Ключ подписи\n" -#: g10/card-util.c:1698 g10/card-util.c:1789 +#: g10/card-util.c:1697 g10/card-util.c:1788 msgid " (2) Encryption key\n" msgstr " (2) Ключ шифрования\n" -#: g10/card-util.c:1699 g10/card-util.c:1791 +#: g10/card-util.c:1698 g10/card-util.c:1790 msgid " (3) Authentication key\n" msgstr " (3) Ключ удостоверения личности\n" -#: g10/card-util.c:1784 +#: g10/card-util.c:1783 msgid "Please select where to store the key:\n" msgstr "Выберите, где хранить ключ:\n" -#: g10/card-util.c:1830 +#: g10/card-util.c:1829 #, c-format msgid "KEYTOCARD failed: %s\n" msgstr "сбой записи ключа на карту: %s\n" -#: g10/card-util.c:1935 +#: g10/card-util.c:1934 #, c-format msgid "Note: This command destroys all keys stored on the card!\n" msgstr "Замечание: эта команда сотрет с карты все ключи!\n" -#: g10/card-util.c:1938 +#: g10/card-util.c:1937 msgid "Continue? (y/N) " msgstr "Продолжить? (y/N) " -#: g10/card-util.c:1943 +#: g10/card-util.c:1942 msgid "Really do a factory reset? (enter \"yes\") " msgstr "Подтвердите сброс к заводским установкам (введите \"yes\") " -#: g10/card-util.c:2129 +#: g10/card-util.c:2128 #, c-format msgid "error for setup KDF: %s\n" msgstr "ошибка при настройке KDF: %s\n" -#: g10/card-util.c:2158 g10/keyedit.c:1260 +#: g10/card-util.c:2157 g10/keyedit.c:1260 msgid "quit this menu" msgstr "выйти из этого меню" -#: g10/card-util.c:2160 +#: g10/card-util.c:2159 msgid "show admin commands" msgstr "показать административные команды" -#: g10/card-util.c:2161 g10/keyedit.c:1263 +#: g10/card-util.c:2160 g10/keyedit.c:1263 msgid "show this help" msgstr "показать данную справку" -#: g10/card-util.c:2163 +#: g10/card-util.c:2162 msgid "list all available data" msgstr "вывести все доступные данные" -#: g10/card-util.c:2166 +#: g10/card-util.c:2165 msgid "change card holder's name" msgstr "изменить имя держателя карты" -#: g10/card-util.c:2167 +#: g10/card-util.c:2166 msgid "change URL to retrieve key" msgstr "изменить URL получения ключа" -#: g10/card-util.c:2168 +#: g10/card-util.c:2167 msgid "fetch the key specified in the card URL" msgstr "запросить ключ по заданному картой URL" -#: g10/card-util.c:2169 +#: g10/card-util.c:2168 msgid "change the login name" msgstr "изменить имя учетной записи" -#: g10/card-util.c:2170 +#: g10/card-util.c:2169 msgid "change the language preferences" msgstr "изменить языковые предпочтения" -#: g10/card-util.c:2171 +#: g10/card-util.c:2170 msgid "change card holder's salutation" msgstr "изменить приветствие для держателя карты" -#: g10/card-util.c:2173 +#: g10/card-util.c:2172 msgid "change a CA fingerprint" msgstr "сменить отпечаток удостоверяющего центра" -#: g10/card-util.c:2174 +#: g10/card-util.c:2173 msgid "toggle the signature force PIN flag" msgstr "переключить признак 'подпись требует PIN'" -#: g10/card-util.c:2175 +#: g10/card-util.c:2174 msgid "generate new keys" msgstr "создать новые ключи" -#: g10/card-util.c:2176 +#: g10/card-util.c:2175 msgid "menu to change or unblock the PIN" msgstr "меню изменения или разблокировки PIN" -#: g10/card-util.c:2177 +#: g10/card-util.c:2176 msgid "verify the PIN and list all data" msgstr "проверить PIN и показать все данные" -#: g10/card-util.c:2178 +#: g10/card-util.c:2177 msgid "unblock the PIN using a Reset Code" msgstr "разблокировать PIN с помощью кода сброса" -#: g10/card-util.c:2179 +#: g10/card-util.c:2178 msgid "destroy all keys and data" msgstr "уничтожить все ключи и данные" -#: g10/card-util.c:2180 +#: g10/card-util.c:2179 msgid "setup KDF for PIN authentication" msgstr "настроить KDF для проверки по PIN" -#: g10/card-util.c:2181 +#: g10/card-util.c:2180 msgid "change the key attribute" msgstr "изменить атрибут ключа" -#: g10/card-util.c:2305 +#: g10/card-util.c:2304 msgid "gpg/card> " msgstr "gpg/card> " -#: g10/card-util.c:2346 +#: g10/card-util.c:2345 msgid "Admin-only command\n" msgstr "Команды администрирования\n" -#: g10/card-util.c:2377 +#: g10/card-util.c:2376 msgid "Admin commands are allowed\n" msgstr "Команды администрирования разрешены\n" -#: g10/card-util.c:2379 +#: g10/card-util.c:2378 msgid "Admin commands are not allowed\n" msgstr "Команды администрирования не разрешены\n" -#: g10/card-util.c:2482 g10/keyedit.c:2229 +#: g10/card-util.c:2481 g10/keyedit.c:2229 msgid "Invalid command (try \"help\")\n" msgstr "Недопустимая команда (список команд: \"help\")\n" @@ -2230,21 +2230,21 @@ msgid "--output doesn't work for this command\n" msgstr "--output для данной команды не работает\n" -#: g10/decrypt.c:247 g10/gpg.c:5155 g10/keyring.c:399 g10/keyring.c:750 +#: g10/decrypt.c:247 g10/gpg.c:5175 g10/keyring.c:399 g10/keyring.c:750 #, c-format msgid "can't open '%s'\n" msgstr "не могу открыть '%s'\n" -#: g10/delkey.c:83 g10/export.c:1947 g10/export.c:2230 g10/export.c:2351 -#: g10/getkey.c:2108 g10/gpg.c:5100 g10/keyedit.c:1445 g10/keyedit.c:2335 +#: g10/delkey.c:83 g10/export.c:2035 g10/export.c:2349 g10/export.c:2470 +#: g10/getkey.c:2108 g10/gpg.c:5120 g10/keyedit.c:1445 g10/keyedit.c:2335 #: g10/keyedit.c:2637 g10/keyedit.c:4600 g10/keylist.c:693 g10/keyserver.c:1092 #: g10/revoke.c:230 g10/tofu.c:2165 #, c-format msgid "key \"%s\" not found: %s\n" msgstr "ключ \"%s\" не найден: %s\n" -#: g10/delkey.c:92 g10/export.c:2015 g10/getkey.c:2116 g10/getkey.c:4517 -#: g10/gpg.c:5109 g10/keyedit.c:2308 g10/keyserver.c:1110 g10/revoke.c:236 +#: g10/delkey.c:92 g10/export.c:2103 g10/getkey.c:2116 g10/getkey.c:4517 +#: g10/gpg.c:5129 g10/keyedit.c:2308 g10/keyserver.c:1110 g10/revoke.c:236 #: g10/revoke.c:663 g10/tofu.c:2173 #, c-format msgid "error reading keyblock: %s\n" @@ -2365,13 +2365,13 @@ msgid "WARNING: '%s' is an empty file\n" msgstr "Внимание: файл '%s' пуст\n" -#: g10/encrypt.c:446 g10/encrypt.c:521 g10/decrypt-data.c:266 g10/gpg.c:3959 -#: g10/gpg.c:3999 sm/decrypt.c:826 sm/encrypt.c:416 sm/gpgsm.c:1609 +#: g10/encrypt.c:446 g10/encrypt.c:521 g10/decrypt-data.c:266 g10/gpg.c:3979 +#: g10/gpg.c:4019 sm/decrypt.c:826 sm/encrypt.c:416 sm/gpgsm.c:1609 #, c-format msgid "cipher algorithm '%s' may not be used in %s mode\n" msgstr "алгоритм шифрования '%s' нельзя использовать в режиме %s\n" -#: g10/encrypt.c:455 g10/gpg.c:3965 g10/gpg.c:4011 g10/sig-check.c:175 +#: g10/encrypt.c:455 g10/gpg.c:3985 g10/gpg.c:4031 g10/sig-check.c:175 #: g10/sign.c:391 sm/gpgsm.c:1619 sm/gpgsm.c:1629 sm/sign.c:478 sm/verify.c:506 #, c-format msgid "digest algorithm '%s' may not be used in %s mode\n" @@ -2485,63 +2485,69 @@ msgid "WARNING: unable to remove temp directory '%s': %s\n" msgstr "Внимание: не могу удалить временный каталог '%s': %s\n" -#: g10/export.c:119 +#: g10/export.c:124 msgid "export signatures that are marked as local-only" msgstr "экспортировать подписи, помеченные как 'только локальные'" -#: g10/export.c:121 +#: g10/export.c:126 msgid "export attribute user IDs (generally photo IDs)" msgstr "" "экспортировать атрибутные идентификаторы пользователя (обычно " "фотоидентификаторы)" -#: g10/export.c:123 +#: g10/export.c:128 msgid "export revocation keys marked as \"sensitive\"" msgstr "экспортировать ключи отзыва, помеченные как 'особо важные'" -#: g10/export.c:125 +#: g10/export.c:130 msgid "remove unusable parts from key during export" msgstr "удалить при экспорте непригодные части ключа" -#: g10/export.c:127 +#: g10/export.c:132 msgid "remove as much as possible from key during export" msgstr "при экспорте удалить из ключа как можно больше" -#: g10/export.c:133 +#: g10/export.c:138 +#, fuzzy +#| msgid "generate a revocation certificate" +msgid "export only revocation certificates" +msgstr "создать сертификат отзыва" + +#: g10/export.c:141 msgid "use the GnuPG key backup format" msgstr "пользоваться архивным форматом ключей GnuPG" -#: g10/export.c:1291 +#: g10/export.c:1306 msgid " - skipped" msgstr " - пропущено" -#: g10/export.c:1324 g10/import.c:2085 g10/openfile.c:200 g10/openfile.c:294 +#: g10/export.c:1339 g10/import.c:2089 g10/openfile.c:200 g10/openfile.c:294 #: g10/sign.c:1012 g10/sign.c:1326 #, c-format msgid "writing to '%s'\n" msgstr "сохраняю в '%s'\n" -#: g10/export.c:1769 +#: g10/export.c:1784 #, c-format msgid "key %s: key material on-card - skipped\n" msgstr "ключ %s: материал ключа на карте - пропущен\n" -#: g10/export.c:1964 +#: g10/export.c:2052 #, c-format msgid "exporting secret keys not allowed\n" msgstr "экспорт секретных ключей не разрешен\n" -#: g10/export.c:2041 +#: g10/export.c:2129 #, c-format msgid "key %s: PGP 2.x style key - skipped\n" msgstr "ключ %s: ключ типа PGP 2.x - пропущен\n" -#: g10/export.c:2135 +#: g10/export.c:2254 #, c-format msgid "WARNING: nothing exported\n" msgstr "Внимание: нечего экспортировать\n" -#: g10/export.c:2432 g10/plaintext.c:153 g10/plaintext.c:162 +#: g10/export.c:2551 g10/plaintext.c:153 g10/plaintext.c:162 #: g10/plaintext.c:168 g10/plaintext.c:191 #, c-format msgid "error creating '%s': %s\n" @@ -2608,280 +2614,280 @@ msgid "using subkey %s instead of primary key %s\n" msgstr "использую подключ %s вместо первичного ключа %s\n" -#: g10/getkey.c:4446 g10/gpg.c:2137 +#: g10/getkey.c:4446 g10/gpg.c:2146 #, c-format msgid "valid values for option '%s':\n" msgstr "недопустимые значения для параметра \"%s\"\n" -#: g10/gpg.c:443 sm/gpgsm.c:212 +#: g10/gpg.c:444 sm/gpgsm.c:212 msgid "make a signature" msgstr "создать подпись" -#: g10/gpg.c:444 +#: g10/gpg.c:445 msgid "make a clear text signature" msgstr "создать текстовую подпись" -#: g10/gpg.c:446 sm/gpgsm.c:214 +#: g10/gpg.c:447 sm/gpgsm.c:214 msgid "make a detached signature" msgstr "создать отделенную подпись" -#: g10/gpg.c:447 sm/gpgsm.c:215 +#: g10/gpg.c:448 sm/gpgsm.c:215 msgid "encrypt data" msgstr "зашифровать данные" -#: g10/gpg.c:449 +#: g10/gpg.c:450 msgid "encryption only with symmetric cipher" msgstr "шифрование только симметричным шифром" -#: g10/gpg.c:451 sm/gpgsm.c:217 +#: g10/gpg.c:452 sm/gpgsm.c:217 msgid "decrypt data (default)" msgstr "расшифровать данные (по умолчанию)" -#: g10/gpg.c:453 sm/gpgsm.c:218 +#: g10/gpg.c:454 sm/gpgsm.c:218 msgid "verify a signature" msgstr "проверить подпись" -#: g10/gpg.c:455 sm/gpgsm.c:219 +#: g10/gpg.c:456 sm/gpgsm.c:219 msgid "list keys" msgstr "вывести список ключей" -#: g10/gpg.c:457 +#: g10/gpg.c:458 msgid "list keys and signatures" msgstr "вывести список ключей и подписей" -#: g10/gpg.c:460 +#: g10/gpg.c:461 msgid "list and check key signatures" msgstr "вывести и проверить подписи ключей" -#: g10/gpg.c:462 sm/gpgsm.c:224 +#: g10/gpg.c:463 sm/gpgsm.c:224 msgid "list keys and fingerprints" msgstr "вывести список ключей и их отпечатков" -#: g10/gpg.c:463 sm/gpgsm.c:222 +#: g10/gpg.c:464 sm/gpgsm.c:222 msgid "list secret keys" msgstr "вывести список секретных ключей" -#: g10/gpg.c:465 sm/gpgsm.c:225 +#: g10/gpg.c:466 sm/gpgsm.c:225 msgid "generate a new key pair" msgstr "создать новую пару ключей" -#: g10/gpg.c:468 +#: g10/gpg.c:469 msgid "quickly generate a new key pair" msgstr "быстро создать новую пару ключей" -#: g10/gpg.c:471 +#: g10/gpg.c:472 msgid "quickly add a new user-id" msgstr "быстро добавить новый идентификатор пользователя" -#: g10/gpg.c:476 +#: g10/gpg.c:477 msgid "quickly revoke a user-id" msgstr "быстро отозвать идентификатор пользователя" -#: g10/gpg.c:479 +#: g10/gpg.c:480 msgid "quickly set a new expiration date" msgstr "быстро установить новый срок действия" -#: g10/gpg.c:482 +#: g10/gpg.c:483 msgid "full featured key pair generation" msgstr "создание полноценной пары ключей" -#: g10/gpg.c:485 +#: g10/gpg.c:486 msgid "generate a revocation certificate" msgstr "создать сертификат отзыва" -#: g10/gpg.c:488 sm/gpgsm.c:228 +#: g10/gpg.c:489 sm/gpgsm.c:228 msgid "remove keys from the public keyring" msgstr "удалить ключи из таблицы открытых ключей" -#: g10/gpg.c:490 +#: g10/gpg.c:491 msgid "remove keys from the secret keyring" msgstr "удалить ключи из таблицы секретных ключей" -#: g10/gpg.c:492 +#: g10/gpg.c:493 msgid "quickly sign a key" msgstr "быстро подписать ключ" -#: g10/gpg.c:494 +#: g10/gpg.c:495 msgid "quickly sign a key locally" msgstr "быстро подписать ключ локально" -#: g10/gpg.c:496 +#: g10/gpg.c:497 msgid "quickly revoke a key signature" msgstr "быстро отозвать подпись с ключа" -#: g10/gpg.c:497 +#: g10/gpg.c:498 msgid "sign a key" msgstr "подписать ключ" -#: g10/gpg.c:498 +#: g10/gpg.c:499 msgid "sign a key locally" msgstr "подписать ключ локально" -#: g10/gpg.c:499 +#: g10/gpg.c:500 msgid "sign or edit a key" msgstr "подписать или редактировать ключ" -#: g10/gpg.c:501 sm/gpgsm.c:246 +#: g10/gpg.c:502 sm/gpgsm.c:246 msgid "change a passphrase" msgstr "сменить фразу-пароль" -#: g10/gpg.c:505 +#: g10/gpg.c:506 msgid "export keys" msgstr "экспортировать ключи" -#: g10/gpg.c:506 +#: g10/gpg.c:507 msgid "export keys to a keyserver" msgstr "экспортировать ключи на сервер ключей" -#: g10/gpg.c:507 +#: g10/gpg.c:508 msgid "import keys from a keyserver" msgstr "импортировать ключи с сервера ключей" -#: g10/gpg.c:510 +#: g10/gpg.c:511 msgid "search for keys on a keyserver" msgstr "искать ключи на сервере ключей" -#: g10/gpg.c:512 +#: g10/gpg.c:513 msgid "update all keys from a keyserver" msgstr "обновить все ключи с сервера ключей" -#: g10/gpg.c:520 +#: g10/gpg.c:521 msgid "import/merge keys" msgstr "импортировать/объединить ключи" -#: g10/gpg.c:523 +#: g10/gpg.c:524 msgid "print the card status" msgstr "показать состояние карты" -#: g10/gpg.c:524 +#: g10/gpg.c:525 msgid "change data on a card" msgstr "изменить данные на карте" -#: g10/gpg.c:526 +#: g10/gpg.c:527 msgid "change a card's PIN" msgstr "сменить PIN карты" -#: g10/gpg.c:538 +#: g10/gpg.c:539 msgid "update the trust database" msgstr "обновить таблицу доверия" -#: g10/gpg.c:548 +#: g10/gpg.c:549 msgid "print message digests" msgstr "вывести хеши сообщений" -#: g10/gpg.c:552 sm/gpgsm.c:241 +#: g10/gpg.c:553 sm/gpgsm.c:241 msgid "run in server mode" msgstr "запуск в режиме сервера" -#: g10/gpg.c:554 +#: g10/gpg.c:555 msgid "|VALUE|set the TOFU policy for a key" msgstr "|VALUE|установить правила TOFU для ключа" -#: g10/gpg.c:594 +#: g10/gpg.c:595 msgid "|NAME|use NAME as default secret key" msgstr "|NAME|использовать NAME как основной секретный ключ" -#: g10/gpg.c:596 sm/gpgsm.c:332 +#: g10/gpg.c:597 sm/gpgsm.c:332 msgid "|NAME|encrypt to user ID NAME as well" msgstr "|NAME|зашифровывать также для идентификатора пользователя NAME" -#: g10/gpg.c:604 +#: g10/gpg.c:605 msgid "|SPEC|set up email aliases" msgstr "|SPEC|установить синонимы электронной почты" -#: g10/gpg.c:616 +#: g10/gpg.c:617 msgid "use strict OpenPGP behavior" msgstr "строго следовать стандарту OpenPGP" -#: g10/gpg.c:641 kbx/kbxutil.c:90 sm/gpgsm.c:412 tools/gpgconf.c:112 +#: g10/gpg.c:642 kbx/kbxutil.c:90 sm/gpgsm.c:412 tools/gpgconf.c:112 msgid "do not make any changes" msgstr "не делать никаких изменений" -#: g10/gpg.c:642 +#: g10/gpg.c:643 msgid "prompt before overwriting" msgstr "спросить перед перезаписью" -#: g10/gpg.c:689 sm/gpgsm.c:304 +#: g10/gpg.c:690 sm/gpgsm.c:304 #, fuzzy #| msgid "Options controlling the security" msgid "Options controlling the input" msgstr "Параметры, управляющие безопасностью" -#: g10/gpg.c:707 sm/gpgsm.c:314 +#: g10/gpg.c:708 sm/gpgsm.c:314 #, fuzzy #| msgid "Options controlling the diagnostic output" msgid "Options controlling the output" msgstr "Параметры, управляющие выводом диагностики" -#: g10/gpg.c:709 sm/gpgsm.c:316 +#: g10/gpg.c:710 sm/gpgsm.c:316 msgid "create ascii armored output" msgstr "вывод в текстовом формате" -#: g10/gpg.c:713 g10/gpgv.c:82 sm/gpgsm.c:321 +#: g10/gpg.c:714 g10/gpgv.c:82 sm/gpgsm.c:321 msgid "|FILE|write output to FILE" msgstr "|FILE|выводить данные в файл FILE" -#: g10/gpg.c:726 +#: g10/gpg.c:727 msgid "use canonical text mode" msgstr "использовать канонический текстовый режим" -#: g10/gpg.c:743 +#: g10/gpg.c:744 msgid "|N|set compress level to N (0 disables)" msgstr "|N|установить уровень сжатия N (0 - без сжатия)" -#: g10/gpg.c:750 sm/gpgsm.c:347 +#: g10/gpg.c:751 sm/gpgsm.c:347 #, fuzzy #| msgid "Options controlling the interactivity and enforcement" msgid "Options controlling key import and export" msgstr "Параметры, управляющие интерактивностью и принудительными действиями" -#: g10/gpg.c:753 +#: g10/gpg.c:754 msgid "|MECHANISMS|use MECHANISMS to locate keys by mail address" msgstr "" "|MECHANISMS|использовать механизмы MECHANISMS для поиска ключей по адресу " "электронной почты" -#: g10/gpg.c:756 +#: g10/gpg.c:757 msgid "import missing key from a signature" msgstr "импортировать недостающий ключ из подписи" -#: g10/gpg.c:761 +#: g10/gpg.c:762 msgid "include the public key in signatures" msgstr "вносить открытый ключ в подписи" -#: g10/gpg.c:764 sm/gpgsm.c:350 +#: g10/gpg.c:765 sm/gpgsm.c:350 msgid "disable all access to the dirmngr" msgstr "полностью запретить доступ к dirmngr" -#: g10/gpg.c:776 sm/gpgsm.c:357 +#: g10/gpg.c:777 sm/gpgsm.c:357 #, fuzzy #| msgid "Options controlling the configuration" msgid "Options controlling key listings" msgstr "Параметры, управляющие настройками" -#: g10/gpg.c:805 sm/gpgsm.c:324 +#: g10/gpg.c:806 sm/gpgsm.c:324 #, fuzzy #| msgid "list secret keys" msgid "Options to specify keys" msgstr "вывести список секретных ключей" -#: g10/gpg.c:807 sm/gpgsm.c:326 +#: g10/gpg.c:808 sm/gpgsm.c:326 msgid "|USER-ID|encrypt for USER-ID" msgstr "|USER-ID|зашифровать для пользователя USER-ID" -#: g10/gpg.c:815 sm/gpgsm.c:328 +#: g10/gpg.c:816 sm/gpgsm.c:328 msgid "|USER-ID|use USER-ID to sign or decrypt" msgstr "|USER-ID|использовать ключ USER-ID для подписи и расшифровки" -#: g10/gpg.c:866 sm/gpgsm.c:396 +#: g10/gpg.c:867 sm/gpgsm.c:396 msgid "Options for unattended use" msgstr "" -#: g10/gpg.c:885 sm/gpgsm.c:408 dirmngr/dirmngr.c:294 +#: g10/gpg.c:886 sm/gpgsm.c:408 dirmngr/dirmngr.c:294 msgid "Other options" msgstr "" -#: g10/gpg.c:953 sm/gpgsm.c:440 +#: g10/gpg.c:955 sm/gpgsm.c:440 msgid "" "@\n" "(See the man page for a complete listing of all commands and options)\n" @@ -2889,7 +2895,7 @@ "@\n" "(Полный список команд и параметров см. на странице man)\n" -#: g10/gpg.c:956 +#: g10/gpg.c:958 msgid "" "@\n" "Examples:\n" @@ -2909,11 +2915,11 @@ " --list-keys [имена] показать ключи\n" " --fingerprint [имена] показать отпечатки\n" -#: g10/gpg.c:1130 +#: g10/gpg.c:1139 msgid "Usage: @GPG@ [options] [files] (-h for help)" msgstr "Вызов: @GPG@ [параметры] [файлы] (-h - подсказка)" -#: g10/gpg.c:1133 +#: g10/gpg.c:1142 msgid "" "Syntax: @GPG@ [options] [files]\n" "Sign, check, encrypt or decrypt\n" @@ -2923,7 +2929,7 @@ "Подписи и их проверка, шифрование и расшифровка\n" "Действие по умолчанию зависит от входных данных\n" -#: g10/gpg.c:1144 sm/gpgsm.c:624 +#: g10/gpg.c:1153 sm/gpgsm.c:624 msgid "" "\n" "Supported algorithms:\n" @@ -2931,95 +2937,95 @@ "\n" "Поддерживаются следующие алгоритмы:\n" -#: g10/gpg.c:1147 +#: g10/gpg.c:1156 msgid "Pubkey: " msgstr "С открытым ключом: " -#: g10/gpg.c:1154 g10/keyedit.c:3338 +#: g10/gpg.c:1163 g10/keyedit.c:3338 msgid "Cipher: " msgstr "Симметричные шифры: " -#: g10/gpg.c:1161 +#: g10/gpg.c:1170 msgid "Hash: " msgstr "Хеш-функции: " -#: g10/gpg.c:1168 g10/keyedit.c:3404 +#: g10/gpg.c:1177 g10/keyedit.c:3404 msgid "Compression: " msgstr "Алгоритмы сжатия: " -#: g10/gpg.c:1241 sm/gpgsm.c:698 +#: g10/gpg.c:1250 sm/gpgsm.c:698 #, c-format msgid "usage: %s [options] %s\n" msgstr "вызов: %s [параметры] %s\n" -#: g10/gpg.c:1436 sm/gpgsm.c:791 +#: g10/gpg.c:1445 sm/gpgsm.c:791 #, c-format msgid "conflicting commands\n" msgstr "несовместимые команды\n" -#: g10/gpg.c:1454 +#: g10/gpg.c:1463 #, c-format msgid "no = sign found in group definition '%s'\n" msgstr "в определении группы '%s' отсутствует знак =\n" -#: g10/gpg.c:1652 +#: g10/gpg.c:1661 #, c-format msgid "WARNING: unsafe ownership on homedir '%s'\n" msgstr "Внимание: небезопасный владелец домашнего каталога '%s'\n" -#: g10/gpg.c:1655 +#: g10/gpg.c:1664 #, c-format msgid "WARNING: unsafe ownership on configuration file '%s'\n" msgstr "Внимание: небезопасный владелец файла настроек '%s'\n" -#: g10/gpg.c:1658 +#: g10/gpg.c:1667 #, c-format msgid "WARNING: unsafe ownership on extension '%s'\n" msgstr "Внимание: небезопасный владелец файла модуля расширения '%s'\n" -#: g10/gpg.c:1664 +#: g10/gpg.c:1673 #, c-format msgid "WARNING: unsafe permissions on homedir '%s'\n" msgstr "Внимание: небезопасные права доступа к домашнему каталогу '%s'\n" -#: g10/gpg.c:1667 +#: g10/gpg.c:1676 #, c-format msgid "WARNING: unsafe permissions on configuration file '%s'\n" msgstr "Внимание: небезопасные права доступа к файлу настроек '%s'\n" -#: g10/gpg.c:1670 +#: g10/gpg.c:1679 #, c-format msgid "WARNING: unsafe permissions on extension '%s'\n" msgstr "Внимание: небезопасные права доступа к файлу модуля расширения '%s'\n" -#: g10/gpg.c:1676 +#: g10/gpg.c:1685 #, c-format msgid "WARNING: unsafe enclosing directory ownership on homedir '%s'\n" msgstr "" "Внимание: небезопасный владелец каталога, содержащего домашний каталог '%s'\n" -#: g10/gpg.c:1679 +#: g10/gpg.c:1688 #, c-format msgid "" "WARNING: unsafe enclosing directory ownership on configuration file '%s'\n" msgstr "" "Внимание: небезопасный владелец каталога, содержащего файл настроек '%s'\n" -#: g10/gpg.c:1682 +#: g10/gpg.c:1691 #, c-format msgid "WARNING: unsafe enclosing directory ownership on extension '%s'\n" msgstr "" "Внимание: небезопасный владелец каталога,\n" " содержащего модуль расширения '%s'\n" -#: g10/gpg.c:1688 +#: g10/gpg.c:1697 #, c-format msgid "WARNING: unsafe enclosing directory permissions on homedir '%s'\n" msgstr "" "Внимание: небезопасные права доступа к каталогу,\n" " содержащему домашний каталог '%s'\n" -#: g10/gpg.c:1691 +#: g10/gpg.c:1700 #, c-format msgid "" "WARNING: unsafe enclosing directory permissions on configuration file '%s'\n" @@ -3027,461 +3033,461 @@ "ВНИМАНИЕ: небезопасные права доступа к каталогу,\n" " содержащему файл настроек '%s'\n" -#: g10/gpg.c:1694 +#: g10/gpg.c:1703 #, c-format msgid "WARNING: unsafe enclosing directory permissions on extension '%s'\n" msgstr "" "Внимание: небезопасные права доступа к каталогу,\n" " содержащему файл модуля расширения '%s'\n" -#: g10/gpg.c:1910 +#: g10/gpg.c:1919 #, c-format msgid "unknown configuration item '%s'\n" msgstr "неизвестный элемент в файле настроек '%s'\n" -#: g10/gpg.c:2009 +#: g10/gpg.c:2018 msgid "display photo IDs during key listings" msgstr "показывать в списке ключей фотоидентификаторы" -#: g10/gpg.c:2011 +#: g10/gpg.c:2020 msgid "show key usage information during key listings" msgstr "показывать в списке ключей сведения о назначении ключа" -#: g10/gpg.c:2013 +#: g10/gpg.c:2022 msgid "show policy URLs during signature listings" msgstr "показывать в списке подписей URL правил" -#: g10/gpg.c:2015 +#: g10/gpg.c:2024 msgid "show all notations during signature listings" msgstr "показывать в списке подписей все замечания" -#: g10/gpg.c:2017 +#: g10/gpg.c:2026 msgid "show IETF standard notations during signature listings" msgstr "показывать в списке подписей замечания стандарта IETF" -#: g10/gpg.c:2021 +#: g10/gpg.c:2030 msgid "show user-supplied notations during signature listings" msgstr "показывать в списке подписей пользовательские замечания" -#: g10/gpg.c:2023 +#: g10/gpg.c:2032 msgid "show preferred keyserver URLs during signature listings" msgstr "показывать в списке подписей URL предпочтительных серверов ключей" -#: g10/gpg.c:2025 +#: g10/gpg.c:2034 msgid "show user ID validity during key listings" msgstr "" "показывать в списке ключей действительность идентификаторов пользователей" -#: g10/gpg.c:2027 +#: g10/gpg.c:2036 msgid "show revoked and expired user IDs in key listings" msgstr "" "показывать в списке ключей отозванные и просроченные идентификаторы " "пользователей" -#: g10/gpg.c:2029 +#: g10/gpg.c:2038 msgid "show revoked and expired subkeys in key listings" msgstr "показывать в списке ключей отозванные и просроченные подключи" -#: g10/gpg.c:2031 +#: g10/gpg.c:2040 msgid "show the keyring name in key listings" msgstr "показывать в списке ключей название таблицы ключей" -#: g10/gpg.c:2033 +#: g10/gpg.c:2042 msgid "show expiration dates during signature listings" msgstr "показывать в списке подписей сроки действия" -#: g10/gpg.c:2148 +#: g10/gpg.c:2157 #, c-format msgid "unknown TOFU policy '%s'\n" msgstr "неизвестные правила TOFU '%s'\n" -#: g10/gpg.c:2150 +#: g10/gpg.c:2159 #, c-format msgid "(use \"help\" to list choices)\n" msgstr "(\"help\" выведет список вариантов)\n" -#: g10/gpg.c:2240 g10/keyedit.c:1719 +#: g10/gpg.c:2249 g10/keyedit.c:1719 #, c-format msgid "This command is not allowed while in %s mode.\n" msgstr "Данная команда в режиме %s недопустима.\n" -#: g10/gpg.c:2878 g10/gpg.c:3718 g10/gpg.c:3730 +#: g10/gpg.c:2896 g10/gpg.c:3736 g10/gpg.c:3748 #, c-format msgid "Note: %s is not for normal use!\n" msgstr "Замечание: %s не предназначен для нормального применения!\n" -#: g10/gpg.c:3053 g10/gpg.c:3065 +#: g10/gpg.c:3071 g10/gpg.c:3083 #, c-format msgid "'%s' is not a valid signature expiration\n" msgstr "'%s' - не допустимый срок действия подписи\n" -#: g10/gpg.c:3087 +#: g10/gpg.c:3105 #, c-format msgid "\"%s\" is not a proper mail address\n" msgstr "\"%s\" не является адресом электронной почты\n" -#: g10/gpg.c:3119 sm/gpgsm.c:1121 +#: g10/gpg.c:3137 sm/gpgsm.c:1121 #, c-format msgid "invalid pinentry mode '%s'\n" msgstr "недопустимый режим ввода пароля '%s'\n" -#: g10/gpg.c:3125 sm/gpgsm.c:1127 +#: g10/gpg.c:3143 sm/gpgsm.c:1127 #, c-format msgid "invalid request origin '%s'\n" msgstr "недопустимый источник запроса '%s'\n" -#: g10/gpg.c:3179 +#: g10/gpg.c:3197 #, c-format msgid "'%s' is not a valid character set\n" msgstr "'%s' - не допустимая таблица символов\n" -#: g10/gpg.c:3201 g10/gpg.c:3415 g10/keyedit.c:5338 +#: g10/gpg.c:3219 g10/gpg.c:3433 g10/keyedit.c:5338 #, c-format msgid "could not parse keyserver URL\n" msgstr "не могу интерпретировать URL сервера ключей\n" -#: g10/gpg.c:3219 +#: g10/gpg.c:3237 #, c-format msgid "%s:%d: invalid keyserver options\n" msgstr "%s:%d: недопустимые параметры сервера ключей\n" -#: g10/gpg.c:3222 +#: g10/gpg.c:3240 #, c-format msgid "invalid keyserver options\n" msgstr "недопустимые параметры сервера ключей\n" -#: g10/gpg.c:3229 +#: g10/gpg.c:3247 #, c-format msgid "%s:%d: invalid import options\n" msgstr "%s:%d: недопустимые параметры импорта\n" -#: g10/gpg.c:3232 +#: g10/gpg.c:3250 #, c-format msgid "invalid import options\n" msgstr "недопустимые параметры импорта\n" -#: g10/gpg.c:3238 g10/gpg.c:3253 +#: g10/gpg.c:3256 g10/gpg.c:3271 #, c-format msgid "invalid filter option: %s\n" msgstr "недопустимый параметр фильтра: %s\n" -#: g10/gpg.c:3244 +#: g10/gpg.c:3262 #, c-format msgid "%s:%d: invalid export options\n" msgstr "%s:%d: недопустимые параметры экспорта\n" -#: g10/gpg.c:3247 +#: g10/gpg.c:3265 #, c-format msgid "invalid export options\n" msgstr "недопустимые параметры экспорта\n" -#: g10/gpg.c:3259 +#: g10/gpg.c:3277 #, c-format msgid "%s:%d: invalid list options\n" msgstr "%s:%d: недопустимые параметры списка\n" -#: g10/gpg.c:3262 +#: g10/gpg.c:3280 #, c-format msgid "invalid list options\n" msgstr "недопустимые параметры списка\n" -#: g10/gpg.c:3270 +#: g10/gpg.c:3288 msgid "display photo IDs during signature verification" msgstr "показать при проверке подписи фотоидентификаторы" -#: g10/gpg.c:3272 +#: g10/gpg.c:3290 msgid "show policy URLs during signature verification" msgstr "показать при проверке подписи URL правил" -#: g10/gpg.c:3274 +#: g10/gpg.c:3292 msgid "show all notations during signature verification" msgstr "показать при проверке подписей все замечания" -#: g10/gpg.c:3276 +#: g10/gpg.c:3294 msgid "show IETF standard notations during signature verification" msgstr "показать при проверке подписей замечания стандарта IETF" -#: g10/gpg.c:3280 +#: g10/gpg.c:3298 msgid "show user-supplied notations during signature verification" msgstr "показать при проверке подписей пользовательские замечания" -#: g10/gpg.c:3282 +#: g10/gpg.c:3300 msgid "show preferred keyserver URLs during signature verification" msgstr "показать при проверке подписей URL предпочтительных серверов ключей" -#: g10/gpg.c:3284 +#: g10/gpg.c:3302 msgid "show user ID validity during signature verification" msgstr "" "показать при проверке подписей действительность идентификаторов пользователей" -#: g10/gpg.c:3286 +#: g10/gpg.c:3304 msgid "show revoked and expired user IDs in signature verification" msgstr "" "показать при проверке подписей отозванные и просроченные идентификаторы " "пользователя" -#: g10/gpg.c:3288 +#: g10/gpg.c:3306 msgid "show only the primary user ID in signature verification" msgstr "" "показать при проверке подписей только первичный идентификатор пользователя" -#: g10/gpg.c:3290 +#: g10/gpg.c:3308 msgid "validate signatures with PKA data" msgstr "проверить подписи по данным PKA" -#: g10/gpg.c:3292 +#: g10/gpg.c:3310 msgid "elevate the trust of signatures with valid PKA data" msgstr "поднять доверие подписей по действительным данным PKA" -#: g10/gpg.c:3299 +#: g10/gpg.c:3317 #, c-format msgid "%s:%d: invalid verify options\n" msgstr "%s:%d: недопустимые параметры проверки\n" -#: g10/gpg.c:3302 +#: g10/gpg.c:3320 #, c-format msgid "invalid verify options\n" msgstr "недопустимые параметры проверки\n" -#: g10/gpg.c:3309 +#: g10/gpg.c:3327 #, c-format msgid "unable to set exec-path to %s\n" msgstr "не могу определить путь запуска для %s\n" -#: g10/gpg.c:3513 +#: g10/gpg.c:3531 #, c-format msgid "%s:%d: invalid auto-key-locate list\n" msgstr "%s:%d: недопустимый список auto-key-locate\n" -#: g10/gpg.c:3516 +#: g10/gpg.c:3534 #, c-format msgid "invalid auto-key-locate list\n" msgstr "недопустимый список auto-key-locate\n" -#: g10/gpg.c:3700 sm/gpgsm.c:1492 +#: g10/gpg.c:3718 sm/gpgsm.c:1492 #, c-format msgid "WARNING: program may create a core file!\n" msgstr "Внимание: возможно создание файла образа памяти!\n" -#: g10/gpg.c:3711 +#: g10/gpg.c:3729 #, c-format msgid "WARNING: %s overrides %s\n" msgstr "Внимание: %s отменяет %s\n" -#: g10/gpg.c:3720 +#: g10/gpg.c:3738 #, c-format msgid "%s not allowed with %s!\n" msgstr "%s с %s недопустимо!\n" -#: g10/gpg.c:3723 +#: g10/gpg.c:3741 #, c-format msgid "%s makes no sense with %s!\n" msgstr "%s с %s не имеет смысла!\n" -#: g10/gpg.c:3738 sm/gpgsm.c:1509 dirmngr/dirmngr.c:1205 +#: g10/gpg.c:3756 sm/gpgsm.c:1509 dirmngr/dirmngr.c:1205 #, c-format msgid "WARNING: running with faked system time: " msgstr "Внимание: работаем с фальшивым системным временем: " -#: g10/gpg.c:3759 +#: g10/gpg.c:3777 #, c-format msgid "will not run with insecure memory due to %s\n" msgstr "отказываюсь работать с небезопасной памятью из-за %s\n" -#: g10/gpg.c:3804 g10/gpg.c:3828 sm/gpgsm.c:1579 +#: g10/gpg.c:3824 g10/gpg.c:3848 sm/gpgsm.c:1579 #, c-format msgid "selected cipher algorithm is invalid\n" msgstr "выбран недопустимый алгоритм шифрования\n" -#: g10/gpg.c:3816 +#: g10/gpg.c:3836 #, c-format msgid "selected compression algorithm is invalid\n" msgstr "выбран недопустимый алгоритм сжатия\n" -#: g10/gpg.c:3822 +#: g10/gpg.c:3842 #, c-format msgid "selected certification digest algorithm is invalid\n" msgstr "выбрана недопустимая хеш-функция для сертификации\n" -#: g10/gpg.c:3837 +#: g10/gpg.c:3857 #, c-format msgid "completes-needed must be greater than 0\n" msgstr "completes-needed должен быть больше 0\n" -#: g10/gpg.c:3839 +#: g10/gpg.c:3859 #, c-format msgid "marginals-needed must be greater than 1\n" msgstr "marginals-needed должен быть больше 1\n" -#: g10/gpg.c:3841 +#: g10/gpg.c:3861 #, c-format msgid "max-cert-depth must be in the range from 1 to 255\n" msgstr "max-cert-depth должен быть в диапазоне от 1 до 255\n" -#: g10/gpg.c:3843 +#: g10/gpg.c:3863 #, c-format 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:3845 +#: g10/gpg.c:3865 #, c-format msgid "invalid min-cert-level; must be 1, 2, or 3\n" msgstr "недопустимый min-cert-level; должен быть 0, 1, 2 или 3\n" -#: g10/gpg.c:3849 +#: g10/gpg.c:3869 #, c-format msgid "Note: simple S2K mode (0) is strongly discouraged\n" msgstr "Замечание: простой режим S2K (0) строго противопоказан\n" -#: g10/gpg.c:3853 +#: g10/gpg.c:3873 #, c-format msgid "invalid S2K mode; must be 0, 1 or 3\n" msgstr "недопустимый режим S2K; должно быть 0, 1 или 3\n" -#: g10/gpg.c:3860 +#: g10/gpg.c:3880 #, c-format msgid "invalid default preferences\n" msgstr "недопустимые предпочтения по умолчанию\n" -#: g10/gpg.c:3864 +#: g10/gpg.c:3884 #, c-format msgid "invalid personal cipher preferences\n" msgstr "недопустимые личные предпочтения шифра\n" -#: g10/gpg.c:3868 +#: g10/gpg.c:3888 #, c-format msgid "invalid personal digest preferences\n" msgstr "недопустимые личные предпочтения хеш-функции\n" -#: g10/gpg.c:3872 +#: g10/gpg.c:3892 #, c-format msgid "invalid personal compress preferences\n" msgstr "недопустимые личные предпочтения алгоритмов сжатия\n" -#: g10/gpg.c:3908 +#: g10/gpg.c:3928 #, c-format msgid "%s does not yet work with %s\n" msgstr "%s пока не работает совместно с %s!\n" -#: g10/gpg.c:3971 +#: g10/gpg.c:3991 #, c-format msgid "compression algorithm '%s' may not be used in %s mode\n" msgstr "алгоритм сжатия '%s' нельзя использовать в режиме %s\n" -#: g10/gpg.c:4115 +#: g10/gpg.c:4135 #, c-format msgid "failed to initialize the TrustDB: %s\n" msgstr "сбой инициализации таблицы доверия: %s\n" -#: g10/gpg.c:4127 +#: g10/gpg.c:4147 #, c-format msgid "WARNING: recipients (-r) given without using public key encryption\n" msgstr "" "ВНИМАНИЕ: получатели (-r) заданы без использования шифрования с открытым " "ключом\n" -#: g10/gpg.c:4199 +#: g10/gpg.c:4219 #, c-format msgid "symmetric encryption of '%s' failed: %s\n" msgstr "сбой симметричного шифрования '%s': %s\n" -#: g10/gpg.c:4228 +#: g10/gpg.c:4248 #, c-format msgid "you cannot use --symmetric --encrypt with --s2k-mode 0\n" msgstr "--symmetric --encrypt нельзя использовать совместно с --s2k-mode 0\n" -#: g10/gpg.c:4231 +#: g10/gpg.c:4251 #, c-format msgid "you cannot use --symmetric --encrypt in %s mode\n" msgstr "в режиме %s нельзя использовать --symmetric --encrypt\n" -#: g10/gpg.c:4289 +#: g10/gpg.c:4309 #, c-format msgid "you cannot use --symmetric --sign --encrypt with --s2k-mode 0\n" msgstr "" "нельзя использовать --symmetric --sign --encrypt совместно с --s2k-mode 0\n" -#: g10/gpg.c:4292 +#: g10/gpg.c:4312 #, c-format msgid "you cannot use --symmetric --sign --encrypt in %s mode\n" msgstr "в режиме %s нельзя использовать --symmetric --sign --encrypt\n" -#: g10/gpg.c:4692 g10/keyserver.c:1648 +#: g10/gpg.c:4712 g10/keyserver.c:1648 #, c-format msgid "keyserver send failed: %s\n" msgstr "сбой при отправке на сервер ключей: %s\n" -#: g10/gpg.c:4697 +#: g10/gpg.c:4717 #, c-format msgid "keyserver receive failed: %s\n" msgstr "сбой при получении с сервера ключей: %s\n" -#: g10/gpg.c:4703 +#: g10/gpg.c:4723 #, c-format msgid "key export failed: %s\n" msgstr "сбой при экспорте ключа: %s\n" -#: g10/gpg.c:4716 +#: g10/gpg.c:4736 #, c-format msgid "export as ssh key failed: %s\n" msgstr "сбой при экспорте в виде ключа ssh: %s\n" -#: g10/gpg.c:4728 +#: g10/gpg.c:4748 #, c-format msgid "keyserver search failed: %s\n" msgstr "сбой при поиске на сервере ключей: %s\n" -#: g10/gpg.c:4741 +#: g10/gpg.c:4761 #, c-format msgid "keyserver refresh failed: %s\n" msgstr "сбой при обновлении с сервера ключей: %s\n" -#: g10/gpg.c:4810 +#: g10/gpg.c:4830 #, c-format msgid "dearmoring failed: %s\n" msgstr "ошибка преобразования из текстового формата: %s\n" -#: g10/gpg.c:4821 +#: g10/gpg.c:4841 #, c-format msgid "enarmoring failed: %s\n" msgstr "ошибка преобразования в текстовый формат: %s\n" -#: g10/gpg.c:4913 +#: g10/gpg.c:4933 #, c-format msgid "invalid hash algorithm '%s'\n" msgstr "недопустимая хеш-функция '%s'\n" -#: g10/gpg.c:5065 g10/tofu.c:2153 +#: g10/gpg.c:5085 g10/tofu.c:2153 #, c-format msgid "error parsing key specification '%s': %s\n" msgstr "ошибка синтаксического анализа спецификации ключа '%s': %s\n" -#: g10/gpg.c:5078 +#: g10/gpg.c:5098 #, c-format msgid "'%s' does not appear to be a valid key ID, fingerprint or keygrip\n" msgstr "'%s' не является идентификатором, отпечатком или кодом ключа\n" -#: g10/gpg.c:5134 +#: g10/gpg.c:5154 #, c-format msgid "WARNING: no command supplied. Trying to guess what you mean ...\n" msgstr "Внимание: команда не отдана. Пытаюсь угадать, что имелось в виду ...\n" -#: g10/gpg.c:5145 +#: g10/gpg.c:5165 #, c-format msgid "Go ahead and type your message ...\n" msgstr "Пишите сообщение ...\n" -#: g10/gpg.c:5490 +#: g10/gpg.c:5510 #, c-format msgid "the given certification policy URL is invalid\n" msgstr "заданный URL правил сертификации неверен\n" -#: g10/gpg.c:5492 +#: g10/gpg.c:5512 #, c-format msgid "the given signature policy URL is invalid\n" msgstr "заданный URL правил подписи неверен\n" -#: g10/gpg.c:5525 +#: g10/gpg.c:5545 #, c-format msgid "the given preferred keyserver URL is invalid\n" msgstr "заданный URL предпочтительного сервера ключей неверен\n" @@ -3523,145 +3529,145 @@ msgid "No help available for '%s'" msgstr "Нет справки по ключевому слову '%s'" -#: g10/import.c:169 +#: g10/import.c:170 msgid "import signatures that are marked as local-only" msgstr "импортировать подписи, обозначенные как 'только локальные'" -#: g10/import.c:172 +#: g10/import.c:173 msgid "repair damage from the pks keyserver during import" msgstr "устранить при импорте повреждения от сервера ключей pks" -#: g10/import.c:175 +#: g10/import.c:176 msgid "do not clear the ownertrust values during import" msgstr "не сбрасывать уровни доверия владельцам при импорте" -#: g10/import.c:178 +#: g10/import.c:179 msgid "do not update the trustdb after import" msgstr "не обновлять таблицу доверия после импорта" -#: g10/import.c:181 +#: g10/import.c:182 msgid "show key during import" msgstr "показывать ключ во время импорта" -#: g10/import.c:184 +#: g10/import.c:185 msgid "only accept updates to existing keys" msgstr "обновлять только существующие ключи" -#: g10/import.c:187 +#: g10/import.c:188 msgid "remove unusable parts from key after import" msgstr "удалить после импорта непригодные части ключа" -#: g10/import.c:190 +#: g10/import.c:191 msgid "remove as much as possible from key after import" msgstr "удалить после импорта из ключа как можно больше" -#: g10/import.c:193 +#: g10/import.c:194 msgid "ignore key-signatures which are not self-signatures" msgstr "игнорировать подписи ключей, кроме самоподписей" -#: g10/import.c:196 +#: g10/import.c:197 msgid "run import filters and export key immediately" msgstr "применить фильтры импорта и немедленно экспортировать ключ" -#: g10/import.c:199 +#: g10/import.c:200 msgid "assume the GnuPG key backup format" msgstr "ожидать ключи в архивном формате GnuPG" -#: g10/import.c:203 +#: g10/import.c:204 msgid "repair keys on import" msgstr "исправлять ключи при импорте" -#: g10/import.c:392 g10/import.c:711 +#: g10/import.c:393 g10/import.c:712 #, c-format msgid "skipping block of type %d\n" msgstr "пропущен блок типа %d\n" -#: g10/import.c:728 +#: g10/import.c:729 #, c-format msgid "%lu keys processed so far\n" msgstr "обработано %lu ключей\n" -#: g10/import.c:814 +#: g10/import.c:815 #, c-format msgid "Total number processed: %lu\n" msgstr "Всего обработано: %lu\n" -#: g10/import.c:817 +#: g10/import.c:818 #, c-format msgid " skipped PGP-2 keys: %lu\n" msgstr " пропущено ключей PGP-2: %lu\n" -#: g10/import.c:819 +#: g10/import.c:820 #, c-format msgid " skipped new keys: %lu\n" msgstr " пропущено новых ключей: %lu\n" -#: g10/import.c:822 +#: g10/import.c:823 #, c-format msgid " w/o user IDs: %lu\n" msgstr " без идентификатора пользователя: %lu\n" -#: g10/import.c:825 sm/import.c:130 +#: g10/import.c:826 sm/import.c:130 #, c-format msgid " imported: %lu" msgstr " импортировано: %lu" -#: g10/import.c:829 sm/import.c:134 +#: g10/import.c:830 sm/import.c:134 #, c-format msgid " unchanged: %lu\n" msgstr " неизмененных: %lu\n" -#: g10/import.c:831 +#: g10/import.c:832 #, c-format msgid " new user IDs: %lu\n" msgstr " новых идентификаторов пользователя: %lu\n" -#: g10/import.c:833 +#: g10/import.c:834 #, c-format msgid " new subkeys: %lu\n" msgstr " новых подключей: %lu\n" -#: g10/import.c:835 +#: g10/import.c:836 #, c-format msgid " new signatures: %lu\n" msgstr " новых подписей: %lu\n" -#: g10/import.c:837 +#: g10/import.c:838 #, c-format msgid " new key revocations: %lu\n" msgstr " новых отзывов ключей: %lu\n" -#: g10/import.c:839 sm/import.c:136 +#: g10/import.c:840 sm/import.c:136 #, c-format msgid " secret keys read: %lu\n" msgstr " прочитано секретных ключей: %lu\n" -#: g10/import.c:841 sm/import.c:138 +#: g10/import.c:842 sm/import.c:138 #, c-format msgid " secret keys imported: %lu\n" msgstr "импортировано секретных ключей: %lu\n" -#: g10/import.c:843 sm/import.c:140 +#: g10/import.c:844 sm/import.c:140 #, c-format msgid " secret keys unchanged: %lu\n" msgstr " неизмененных секретных ключей: %lu\n" -#: g10/import.c:845 sm/import.c:142 +#: g10/import.c:846 sm/import.c:142 #, c-format msgid " not imported: %lu\n" msgstr " не импортировано: %lu\n" -#: g10/import.c:847 +#: g10/import.c:848 #, c-format msgid " signatures cleaned: %lu\n" msgstr " очищено подписей: %lu\n" -#: g10/import.c:849 +#: g10/import.c:850 #, c-format msgid " user IDs cleaned: %lu\n" msgstr " очищено идентификаторов пользователей: %lu\n" -#: g10/import.c:1276 +#: g10/import.c:1277 #, c-format msgid "" "WARNING: key %s contains preferences for unavailable\n" @@ -3670,169 +3676,169 @@ "Внимание: ключ %s содержит предпочтения для недоступных\n" "алгоритмов для следующих идентификаторов пользователей:\n" -#: g10/import.c:1318 +#: g10/import.c:1319 #, c-format msgid " \"%s\": preference for cipher algorithm %s\n" msgstr " \"%s\": предпочитает шифр %s\n" -#: g10/import.c:1333 +#: g10/import.c:1334 #, c-format msgid " \"%s\": preference for digest algorithm %s\n" msgstr " \"%s\": предпочитает хеш-функцию %s\n" -#: g10/import.c:1345 +#: g10/import.c:1346 #, c-format msgid " \"%s\": preference for compression algorithm %s\n" msgstr " \"%s\": предпочитает алгоритм сжатия %s\n" -#: g10/import.c:1358 +#: g10/import.c:1359 #, c-format msgid "it is strongly suggested that you update your preferences and\n" msgstr "крайне желательно, чтобы Вы обновили свои предпочтения и\n" -#: g10/import.c:1360 +#: g10/import.c:1361 #, c-format msgid "re-distribute this key to avoid potential algorithm mismatch problems\n" msgstr "" "распространили этот ключ во избежание возможных нестыковок алгоритмов\n" -#: g10/import.c:1385 +#: g10/import.c:1386 #, c-format msgid "you can update your preferences with: gpg --edit-key %s updpref save\n" msgstr "" "свои предпочтения можно обновить командой gpg --edit-key %s updpref save\n" -#: g10/import.c:1899 g10/import.c:3013 +#: g10/import.c:1902 g10/import.c:3028 #, c-format msgid "key %s: no user ID\n" msgstr "ключ %s: нет идентификатора пользователя\n" -#: g10/import.c:1905 +#: g10/import.c:1908 #, c-format msgid "key %s: %s\n" msgstr "ключ %s: %s\n" -#: g10/import.c:1906 g10/import.c:2985 +#: g10/import.c:1909 g10/import.c:3000 msgid "rejected by import screener" msgstr "исключен фильтром импорта" -#: g10/import.c:1950 +#: g10/import.c:1953 #, c-format msgid "key %s: PKS subkey corruption repaired\n" msgstr "ключ %s: повреждение подключа PKS исправлено\n" -#: g10/import.c:1971 +#: g10/import.c:1974 #, c-format msgid "key %s: accepted non self-signed user ID \"%s\"\n" msgstr "" "ключ %s: принят без самозаверенного идентификатора пользователя \"%s\"\n" -#: g10/import.c:1981 g10/import.c:2012 +#: g10/import.c:1985 g10/import.c:2016 #, c-format msgid "key %s: no valid user IDs\n" msgstr "ключ %s: нет действительных идентификаторов пользователя\n" -#: g10/import.c:1983 +#: g10/import.c:1987 #, c-format msgid "this may be caused by a missing self-signature\n" msgstr "может быть, из-за отсутствия самоподписи\n" -#: g10/import.c:2062 g10/import.c:3399 +#: g10/import.c:2066 g10/import.c:3415 #, c-format msgid "key %s: public key not found: %s\n" msgstr "ключ %s: не найден открытый ключ: %s\n" -#: g10/import.c:2068 +#: g10/import.c:2072 #, c-format msgid "key %s: new key - skipped\n" msgstr "ключ %s: новый ключ - пропущен\n" -#: g10/import.c:2080 +#: g10/import.c:2084 #, c-format msgid "no writable keyring found: %s\n" msgstr "нет доступной для записи таблицы ключей: %s\n" -#: g10/import.c:2112 g10/import.c:2214 g10/import.c:3476 +#: g10/import.c:2116 g10/import.c:2218 g10/import.c:3492 #, c-format msgid "error writing keyring '%s': %s\n" msgstr "ошибка записи таблицы ключей '%s': %s\n" -#: g10/import.c:2135 +#: g10/import.c:2139 #, c-format msgid "key %s: public key \"%s\" imported\n" msgstr "ключ %s: импортирован открытый ключ \"%s\"\n" -#: g10/import.c:2162 +#: g10/import.c:2166 #, c-format msgid "key %s: doesn't match our copy\n" msgstr "ключ %s: не совпадает с нашей копией\n" -#: g10/import.c:2230 +#: g10/import.c:2234 #, c-format msgid "key %s: \"%s\" 1 new user ID\n" msgstr "ключ %s: \"%s\" 1 новый идентификатор пользователя\n" -#: g10/import.c:2233 +#: g10/import.c:2237 #, c-format msgid "key %s: \"%s\" %d new user IDs\n" msgstr "ключ %s: \"%s\" %d новых идентификаторов пользователя\n" -#: g10/import.c:2236 +#: g10/import.c:2240 #, c-format msgid "key %s: \"%s\" 1 new signature\n" msgstr "ключ %s: \"%s\" 1 новая подпись\n" -#: g10/import.c:2239 +#: g10/import.c:2243 #, c-format msgid "key %s: \"%s\" %d new signatures\n" msgstr "ключ %s: \"%s\" %d новых подписей\n" -#: g10/import.c:2242 +#: g10/import.c:2246 #, c-format msgid "key %s: \"%s\" 1 new subkey\n" msgstr "ключ %s: \"%s\" 1 новый подключ\n" -#: g10/import.c:2245 +#: g10/import.c:2249 #, c-format msgid "key %s: \"%s\" %d new subkeys\n" msgstr "ключ %s: \"%s\" %d новых подключей\n" -#: g10/import.c:2248 +#: g10/import.c:2252 #, c-format msgid "key %s: \"%s\" %d signature cleaned\n" msgstr "ключ %s: \"%s\" %d подпись очищена\n" -#: g10/import.c:2251 +#: g10/import.c:2255 #, c-format msgid "key %s: \"%s\" %d signatures cleaned\n" msgstr "ключ %s: \"%s\" %d подписей очищено\n" -#: g10/import.c:2254 +#: g10/import.c:2258 #, c-format msgid "key %s: \"%s\" %d user ID cleaned\n" msgstr "ключ %s: \"%s\" %d идентификатор пользователя очищен\n" -#: g10/import.c:2257 +#: g10/import.c:2261 #, c-format msgid "key %s: \"%s\" %d user IDs cleaned\n" msgstr "ключ %s: \"%s\" %d идентификаторов пользователя очищено\n" -#: g10/import.c:2293 +#: g10/import.c:2297 #, c-format msgid "key %s: \"%s\" not changed\n" msgstr "ключ %s: \"%s\" не изменен\n" -#: g10/import.c:2652 g10/import.c:2847 +#: g10/import.c:2667 g10/import.c:2862 #, c-format msgid "key %s: secret key imported\n" msgstr "ключ %s: импортирован секретный ключ\n" -#: g10/import.c:2660 +#: g10/import.c:2675 #, c-format msgid "key %s: secret key already exists\n" msgstr "ключ %s: секретный ключ уже имеется\n" -#: g10/import.c:2668 +#: g10/import.c:2683 #, c-format msgid "key %s: error sending to agent: %s\n" msgstr "ключ %s: ошибка отправки в агент: %s\n" @@ -3845,196 +3851,196 @@ #. * Instead, user should be suggested to run 'gpg --card-status', #. * then, references to a card will be automatically created #. * again. -#: g10/import.c:2837 +#: g10/import.c:2852 #, c-format msgid "To migrate '%s', with each smartcard, run: %s\n" msgstr "Для переноса '%s' выполните на каждой криптографической карте: %s\n" -#: g10/import.c:2984 +#: g10/import.c:2999 #, c-format msgid "secret key %s: %s\n" msgstr "секретный ключ %s: %s\n" -#: g10/import.c:3005 g10/import.c:3044 +#: g10/import.c:3020 g10/import.c:3059 #, c-format msgid "importing secret keys not allowed\n" msgstr "импорт секретного ключа не допускается\n" -#: g10/import.c:3032 +#: g10/import.c:3047 #, c-format msgid "key %s: secret key with invalid cipher %d - skipped\n" msgstr "ключ %s: секретный ключ с недопустимым шифром %d - пропущен\n" -#: g10/import.c:3194 g10/pkclist.c:72 g10/revoke.c:776 +#: g10/import.c:3209 g10/pkclist.c:72 g10/revoke.c:776 msgid "No reason specified" msgstr "Причина не указана" -#: g10/import.c:3195 g10/pkclist.c:74 g10/revoke.c:778 +#: g10/import.c:3210 g10/pkclist.c:74 g10/revoke.c:778 msgid "Key is superseded" msgstr "Ключ заменен другим" -#: g10/import.c:3196 g10/pkclist.c:76 g10/revoke.c:777 +#: g10/import.c:3211 g10/pkclist.c:76 g10/revoke.c:777 msgid "Key has been compromised" msgstr "Ключ был раскрыт" -#: g10/import.c:3197 g10/pkclist.c:78 g10/revoke.c:779 +#: g10/import.c:3212 g10/pkclist.c:78 g10/revoke.c:779 msgid "Key is no longer used" msgstr "Ключ больше не используется" -#: g10/import.c:3198 g10/pkclist.c:80 g10/revoke.c:780 +#: g10/import.c:3213 g10/pkclist.c:80 g10/revoke.c:780 msgid "User ID is no longer valid" msgstr "Идентификатор пользователя больше не действителен" -#: g10/import.c:3323 g10/keylist.c:1258 g10/pkclist.c:84 +#: g10/import.c:3338 g10/keylist.c:1258 g10/pkclist.c:84 #, c-format msgid "reason for revocation: " msgstr "причина отзыва: " -#: g10/import.c:3342 g10/keylist.c:1277 g10/pkclist.c:100 +#: g10/import.c:3357 g10/keylist.c:1277 g10/pkclist.c:100 #, c-format msgid "revocation comment: " msgstr "пояснение к отзыву: " -#: g10/import.c:3392 +#: g10/import.c:3408 #, c-format msgid "key %s: no public key - can't apply revocation certificate\n" msgstr "ключ %s: нет открытого ключа - не могу применить сертификат отзыва\n" -#: g10/import.c:3423 +#: g10/import.c:3439 #, c-format msgid "key %s: can't locate original keyblock: %s\n" msgstr "ключ %s: оригинальный блок ключей не найден: %s\n" -#: g10/import.c:3430 +#: g10/import.c:3446 #, c-format msgid "key %s: can't read original keyblock: %s\n" msgstr "ключ %s: оригинальный блок ключей не читается: %s\n" -#: g10/import.c:3450 +#: g10/import.c:3466 #, c-format msgid "key %s: invalid revocation certificate: %s - rejected\n" msgstr "ключ %s: недействительный сертификат отзыва: %s - отвергнут\n" -#: g10/import.c:3485 +#: g10/import.c:3501 #, c-format msgid "key %s: \"%s\" revocation certificate imported\n" msgstr "ключ %s: сертификат отзыва \"%s\" импортирован\n" -#: g10/import.c:3571 +#: g10/import.c:3587 #, c-format msgid "key %s: no user ID for signature\n" msgstr "ключ %s: нет идентификатора пользователя для подписи\n" -#: g10/import.c:3588 +#: g10/import.c:3604 #, c-format msgid "key %s: unsupported public key algorithm on user ID \"%s\"\n" msgstr "" "ключ %s: алгоритм с открытым ключом у идентификатора пользователя \"%s\" не " "поддерживается\n" -#: g10/import.c:3590 +#: g10/import.c:3606 #, c-format msgid "key %s: invalid self-signature on user ID \"%s\"\n" msgstr "" "ключ %s: неправильная самоподпись на идентификаторе пользователя \"%s\"\n" -#: g10/import.c:3607 g10/import.c:3635 g10/import.c:3691 +#: g10/import.c:3623 g10/import.c:3651 g10/import.c:3707 #, c-format msgid "key %s: unsupported public key algorithm\n" msgstr "ключ %s: алгоритм с открытым ключом не поддерживается\n" -#: g10/import.c:3608 +#: g10/import.c:3624 #, c-format msgid "key %s: invalid direct key signature\n" msgstr "ключ %s: недействительная прямая подпись ключа\n" -#: g10/import.c:3622 +#: g10/import.c:3638 #, c-format msgid "key %s: no subkey for key binding\n" msgstr "ключ %s: нет подключа для связывания ключей\n" -#: g10/import.c:3637 +#: g10/import.c:3653 #, c-format msgid "key %s: invalid subkey binding\n" msgstr "ключ %s: недопустимая связь подключей\n" -#: g10/import.c:3656 +#: g10/import.c:3672 #, c-format msgid "key %s: removed multiple subkey binding\n" msgstr "ключ %s: удалена многократная связь подключей\n" -#: g10/import.c:3680 +#: g10/import.c:3696 #, c-format msgid "key %s: no subkey for key revocation\n" msgstr "ключ %s: нет подключа для отзыва ключа\n" -#: g10/import.c:3693 +#: g10/import.c:3709 #, c-format msgid "key %s: invalid subkey revocation\n" msgstr "ключ %s: неверный отзыв подключа\n" -#: g10/import.c:3708 +#: g10/import.c:3724 #, c-format msgid "key %s: removed multiple subkey revocation\n" msgstr "ключ %s: удален многократный отзыв подключей\n" -#: g10/import.c:3752 +#: g10/import.c:3771 #, c-format msgid "key %s: skipped user ID \"%s\"\n" msgstr "ключ %s: пропущен идентификатор пользователя \"%s\"\n" -#: g10/import.c:3779 +#: g10/import.c:3798 #, c-format msgid "key %s: skipped subkey\n" msgstr "ключ %s: пропущен подключ\n" -#: g10/import.c:3810 +#: g10/import.c:3829 #, c-format msgid "key %s: non exportable signature (class 0x%02X) - skipped\n" msgstr "ключ %s: неэкспортируемая подпись (класс 0x%02X) - пропущена\n" -#: g10/import.c:3821 +#: g10/import.c:3840 #, c-format msgid "key %s: revocation certificate at wrong place - skipped\n" msgstr "ключ %s: сертификат отзыва в неправильном месте - пропущен\n" -#: g10/import.c:3839 +#: g10/import.c:3868 #, c-format msgid "key %s: invalid revocation certificate: %s - skipped\n" msgstr "ключ %s: недействительный сертификат отзыва: %s - пропущен\n" -#: g10/import.c:3853 +#: g10/import.c:3892 #, c-format msgid "key %s: subkey signature in wrong place - skipped\n" msgstr "ключ %s: подпись подключа в неправильном месте - пропущена\n" -#: g10/import.c:3861 +#: g10/import.c:3900 #, c-format msgid "key %s: unexpected signature class (0x%02X) - skipped\n" msgstr "ключ %s: неожиданный класс подписи (0x%02X) - пропущена\n" -#: g10/import.c:4034 +#: g10/import.c:4073 #, c-format msgid "key %s: duplicated user ID detected - merged\n" msgstr "" "ключ %s: обнаружено дублирование идентификатора пользователя - объединены\n" -#: g10/import.c:4099 +#: g10/import.c:4138 #, c-format msgid "WARNING: key %s may be revoked: fetching revocation key %s\n" msgstr "Внимание: ключ %s, возможно, отозван: запрашиваю ключ отзыва %s\n" -#: g10/import.c:4115 +#: g10/import.c:4154 #, c-format msgid "WARNING: key %s may be revoked: revocation key %s not present.\n" msgstr "Внимание: ключ %s, возможно, отозван: ключ отзыва %s отсутствует.\n" -#: g10/import.c:4181 +#: g10/import.c:4220 #, c-format msgid "key %s: \"%s\" revocation certificate added\n" msgstr "ключ %s: добавлен сертификат отзыва \"%s\"\n" -#: g10/import.c:4219 +#: g10/import.c:4258 #, c-format msgid "key %s: direct key signature added\n" msgstr "ключ %s: добавлена прямая подпись ключа\n" @@ -4920,7 +4926,7 @@ msgid "You may not add a photo ID to a PGP2-style key.\n" msgstr "Нельзя добавить фотоидентификатор в ключ типа PGP2.\n" -#: g10/keyedit.c:4293 g10/keygen.c:2899 +#: g10/keyedit.c:4293 g10/keygen.c:2953 msgid "Such a user ID already exists on this key!\n" msgstr "Такой идентификатор пользователя на этом ключе уже есть!\n" @@ -5201,63 +5207,63 @@ "Показ фотоидентификатора %s размера %ld для ключа %s (идентификатор " "пользователя %d)\n" -#: g10/keygen.c:169 +#: g10/keygen.c:174 #, c-format msgid "invalid value for option '%s'\n" msgstr "недопустимое значения параметра \"%s\"\n" -#: g10/keygen.c:322 +#: g10/keygen.c:331 #, c-format msgid "preference '%s' duplicated\n" msgstr "предпочтение '%s' дублируется\n" -#: g10/keygen.c:329 +#: g10/keygen.c:338 #, c-format msgid "too many cipher preferences\n" msgstr "слишком много предпочтений шифров\n" -#: g10/keygen.c:331 +#: g10/keygen.c:340 #, c-format msgid "too many digest preferences\n" msgstr "слишком много предпочтений хеш-функций\n" -#: g10/keygen.c:333 +#: g10/keygen.c:342 #, c-format msgid "too many compression preferences\n" msgstr "слишком много предпочтений методов сжатия\n" -#: g10/keygen.c:493 +#: g10/keygen.c:502 #, c-format msgid "invalid item '%s' in preference string\n" msgstr "недопустимый элемент '%s' в строке предпочтений\n" -#: g10/keygen.c:972 +#: g10/keygen.c:1020 #, c-format msgid "writing direct signature\n" msgstr "запись прямой подписи\n" -#: g10/keygen.c:1018 +#: g10/keygen.c:1066 #, c-format msgid "writing self signature\n" msgstr "запись самоподписи\n" -#: g10/keygen.c:1075 +#: g10/keygen.c:1123 #, c-format msgid "writing key binding signature\n" msgstr "запись связующей подписи\n" -#: g10/keygen.c:1440 g10/keygen.c:1445 g10/keygen.c:1497 g10/keygen.c:1502 -#: g10/keygen.c:1656 g10/keygen.c:1661 +#: g10/keygen.c:1494 g10/keygen.c:1499 g10/keygen.c:1551 g10/keygen.c:1556 +#: g10/keygen.c:1710 g10/keygen.c:1715 #, c-format msgid "keysize invalid; using %u bits\n" msgstr "неверный размер ключа; использую %u бит\n" -#: g10/keygen.c:1451 g10/keygen.c:1508 g10/keygen.c:1516 g10/keygen.c:1667 +#: g10/keygen.c:1505 g10/keygen.c:1562 g10/keygen.c:1570 g10/keygen.c:1721 #, c-format msgid "keysize rounded up to %u bits\n" msgstr "размер ключа округлен вверх до %u бит\n" -#: g10/keygen.c:1542 +#: g10/keygen.c:1596 #, c-format msgid "" "WARNING: some OpenPGP programs can't handle a DSA key with this digest size\n" @@ -5265,19 +5271,19 @@ "Внимание: некоторые реализации OpenPGP не могут обрабатывать ключи DSA с " "такой длиной хеша\n" -#: g10/keygen.c:1723 +#: g10/keygen.c:1777 msgid "Sign" msgstr "Подписать" -#: g10/keygen.c:1726 +#: g10/keygen.c:1780 msgid "Certify" msgstr "Заверить" -#: g10/keygen.c:1729 +#: g10/keygen.c:1783 msgid "Encrypt" msgstr "Зашифровать" -#: g10/keygen.c:1732 +#: g10/keygen.c:1786 msgid "Authenticate" msgstr "Удостоверить личность" @@ -5291,161 +5297,161 @@ #. * a = Toggle authentication capability #. * q = Finish #. -#: g10/keygen.c:1753 +#: g10/keygen.c:1807 msgid "SsEeAaQq" msgstr "11223300" -#: g10/keygen.c:1784 +#: g10/keygen.c:1838 #, c-format msgid "Possible actions for a %s key: " msgstr "Возможные действия для ключа %s: " -#: g10/keygen.c:1790 +#: g10/keygen.c:1844 msgid "Current allowed actions: " msgstr "Допустимы действия: " -#: g10/keygen.c:1795 +#: g10/keygen.c:1849 #, c-format msgid " (%c) Toggle the sign capability\n" msgstr " (%c) Переключить возможность подписи\n" -#: g10/keygen.c:1798 +#: g10/keygen.c:1852 #, c-format msgid " (%c) Toggle the encrypt capability\n" msgstr " (%c) Переключить возможность шифрования\n" -#: g10/keygen.c:1801 +#: g10/keygen.c:1855 #, c-format msgid " (%c) Toggle the authenticate capability\n" msgstr " (%c) Переключить возможность удостоверения личности\n" -#: g10/keygen.c:1804 +#: g10/keygen.c:1858 #, c-format msgid " (%c) Finished\n" msgstr " (%c) Завершено\n" -#: g10/keygen.c:1930 +#: g10/keygen.c:1984 #, c-format msgid " (%d) RSA and RSA (default)\n" msgstr " (%d) RSA и RSA (по умолчанию)\n" -#: g10/keygen.c:1934 +#: g10/keygen.c:1988 #, c-format msgid " (%d) DSA and Elgamal\n" msgstr " (%d) DSA и Elgamal\n" -#: g10/keygen.c:1937 +#: g10/keygen.c:1991 #, c-format msgid " (%d) DSA (sign only)\n" msgstr " (%d) DSA (только для подписи)\n" -#: g10/keygen.c:1939 +#: g10/keygen.c:1993 #, c-format msgid " (%d) RSA (sign only)\n" msgstr " (%d) RSA (только для подписи)\n" -#: g10/keygen.c:1945 +#: g10/keygen.c:1999 #, c-format msgid " (%d) Elgamal (encrypt only)\n" msgstr " (%d) Elgamal (только для шифрования)\n" -#: g10/keygen.c:1947 +#: g10/keygen.c:2001 #, c-format msgid " (%d) RSA (encrypt only)\n" msgstr " (%d) RSA (только для шифрования)\n" -#: g10/keygen.c:1953 +#: g10/keygen.c:2007 #, c-format msgid " (%d) DSA (set your own capabilities)\n" msgstr " (%d) DSA (задать возможности)\n" -#: g10/keygen.c:1955 +#: g10/keygen.c:2009 #, c-format msgid " (%d) RSA (set your own capabilities)\n" msgstr " (%d) RSA (задать возможности)\n" -#: g10/keygen.c:1961 +#: g10/keygen.c:2015 #, c-format msgid " (%d) ECC and ECC\n" msgstr " (%d) ECC и ECC\n" -#: g10/keygen.c:1963 +#: g10/keygen.c:2017 #, c-format msgid " (%d) ECC (sign only)\n" msgstr " (%d) ECC (только для подписи)\n" -#: g10/keygen.c:1965 +#: g10/keygen.c:2019 #, c-format msgid " (%d) ECC (set your own capabilities)\n" msgstr " (%d) ECC (задать возможности)\n" -#: g10/keygen.c:1967 +#: g10/keygen.c:2021 #, c-format msgid " (%d) ECC (encrypt only)\n" msgstr " (%d) ECC (только для шифрования)\n" -#: g10/keygen.c:1971 +#: g10/keygen.c:2025 #, c-format msgid " (%d) Existing key\n" msgstr " (%d) Имеющийся ключ\n" -#: g10/keygen.c:1973 +#: g10/keygen.c:2027 #, c-format msgid " (%d) Existing key from card\n" msgstr " (%d) Имеющийся на карте ключ\n" -#: g10/keygen.c:2069 sm/certreqgen-ui.c:202 +#: g10/keygen.c:2123 sm/certreqgen-ui.c:202 msgid "Enter the keygrip: " msgstr "Введите код ключа:" -#: g10/keygen.c:2082 sm/certreqgen-ui.c:210 +#: g10/keygen.c:2136 sm/certreqgen-ui.c:210 msgid "Not a valid keygrip (expecting 40 hex digits)\n" msgstr "Недопустимый код ключа (ожидается 40 шестнадцатеричных цифр)\n" -#: g10/keygen.c:2084 sm/certreqgen-ui.c:212 +#: g10/keygen.c:2138 sm/certreqgen-ui.c:212 msgid "No key with this keygrip\n" msgstr "Нет ключа с таким кодом\n" -#: g10/keygen.c:2103 g10/keygen.c:2113 g10/keygen.c:3216 g10/keygen.c:3227 +#: g10/keygen.c:2157 g10/keygen.c:2167 g10/keygen.c:3270 g10/keygen.c:3281 #: sm/certreqgen-ui.c:230 sm/certreqgen-ui.c:239 #, c-format msgid "error reading the card: %s\n" msgstr "ошибка чтения карты: %s\n" -#: g10/keygen.c:2107 g10/keygen.c:3220 sm/certreqgen-ui.c:233 +#: g10/keygen.c:2161 g10/keygen.c:3274 sm/certreqgen-ui.c:233 #, c-format msgid "Serial number of the card: %s\n" msgstr "Серийный номер карты: %s\n" -#: g10/keygen.c:2120 sm/certreqgen-ui.c:245 +#: g10/keygen.c:2174 sm/certreqgen-ui.c:245 msgid "Available keys:\n" msgstr "Доступные ключи:\n" -#: g10/keygen.c:2297 g10/keygen.c:2311 +#: g10/keygen.c:2351 g10/keygen.c:2365 #, c-format msgid "rounded to %u bits\n" msgstr "округлен до %u бит\n" -#: g10/keygen.c:2352 +#: g10/keygen.c:2406 #, c-format msgid "%s keys may be between %u and %u bits long.\n" msgstr "длина ключей %s может быть от %u до %u.\n" -#: g10/keygen.c:2360 +#: g10/keygen.c:2414 #, c-format msgid "What keysize do you want for the subkey? (%u) " msgstr "Какой размер подключа необходим? (%u) " -#: g10/keygen.c:2377 sm/certreqgen-ui.c:189 +#: g10/keygen.c:2431 sm/certreqgen-ui.c:189 #, c-format msgid "Requested keysize is %u bits\n" msgstr "Запрошенный размер ключа - %u бит\n" -#: g10/keygen.c:2423 +#: g10/keygen.c:2477 msgid "Please select which elliptic curve you want:\n" msgstr "Выберите эллиптическую кривую:\n" -#: g10/keygen.c:2611 +#: g10/keygen.c:2665 msgid "" "Please specify how long the key should be valid.\n" " 0 = key does not expire\n" @@ -5461,7 +5467,7 @@ " m = срок действия ключа - n месяцев\n" " y = срок действия ключа - n лет\n" -#: g10/keygen.c:2622 +#: g10/keygen.c:2676 msgid "" "Please specify how long the signature should be valid.\n" " 0 = signature does not expire\n" @@ -5477,38 +5483,38 @@ " m = срок действия подписи - n месяцев\n" " y = срок действия подписи - n лет\n" -#: g10/keygen.c:2645 +#: g10/keygen.c:2699 msgid "Key is valid for? (0) " msgstr "Срок действия ключа? (0) " -#: g10/keygen.c:2650 +#: g10/keygen.c:2704 #, c-format msgid "Signature is valid for? (%s) " msgstr "Срок действия подписи? (%s) " -#: g10/keygen.c:2663 g10/keygen.c:2688 +#: g10/keygen.c:2717 g10/keygen.c:2742 msgid "invalid value\n" msgstr "недопустимое значение\n" -#: g10/keygen.c:2670 +#: g10/keygen.c:2724 msgid "Key does not expire at all\n" msgstr "Срок действия ключа не ограничен\n" -#: g10/keygen.c:2671 +#: g10/keygen.c:2725 msgid "Signature does not expire at all\n" msgstr "Срок действия подписи не ограничен\n" -#: g10/keygen.c:2676 +#: g10/keygen.c:2730 #, c-format msgid "Key expires at %s\n" msgstr "Ключ действителен до %s\n" -#: g10/keygen.c:2677 +#: g10/keygen.c:2731 #, c-format msgid "Signature expires at %s\n" msgstr "Подпись действительна до %s\n" -#: g10/keygen.c:2681 +#: g10/keygen.c:2735 msgid "" "Your system can't display dates beyond 2038.\n" "However, it will be correctly handled up to 2106.\n" @@ -5516,11 +5522,11 @@ "Ваша система не может отображать даты после 2038 года.\n" "Однако даты до 2106 года будут обрабатываться верно.\n" -#: g10/keygen.c:2694 +#: g10/keygen.c:2748 msgid "Is this correct? (y/N) " msgstr "Все верно? (y/N) " -#: g10/keygen.c:2762 +#: g10/keygen.c:2816 msgid "" "\n" "GnuPG needs to construct a user ID to identify your key.\n" @@ -5534,7 +5540,7 @@ #. but you should keep your existing translation. In case #. the new string is not translated this old string will #. be used. -#: g10/keygen.c:2777 +#: g10/keygen.c:2831 msgid "" "\n" "You need a user ID to identify your key; the software constructs the user " @@ -5550,49 +5556,49 @@ " \"Вася Пушкин (персонаж) \"\n" "\n" -#: g10/keygen.c:2796 +#: g10/keygen.c:2850 msgid "Real name: " msgstr "Ваше полное имя: " -#: g10/keygen.c:2805 +#: g10/keygen.c:2859 msgid "Invalid character in name\n" msgstr "Недопустимый символ в имени\n" -#: g10/keygen.c:2806 +#: g10/keygen.c:2860 #, c-format msgid "The characters '%s' and '%s' may not appear in name\n" msgstr "Символы '%s' и '%s' в имени появляться не могут\n" -#: g10/keygen.c:2810 +#: g10/keygen.c:2864 msgid "Name may not start with a digit\n" msgstr "Имя не должно начинаться с цифры\n" -#: g10/keygen.c:2813 +#: g10/keygen.c:2867 msgid "Name must be at least 5 characters long\n" msgstr "Имя не должно быть короче 5 символов\n" -#: g10/keygen.c:2823 +#: g10/keygen.c:2877 msgid "Email address: " msgstr "Адрес электронной почты: " -#: g10/keygen.c:2829 +#: g10/keygen.c:2883 msgid "Not a valid email address\n" msgstr "Неправильный адрес электронной почты\n" -#: g10/keygen.c:2838 +#: g10/keygen.c:2892 msgid "Comment: " msgstr "Примечание: " -#: g10/keygen.c:2844 +#: g10/keygen.c:2898 msgid "Invalid character in comment\n" msgstr "Недопустимый символ в примечании\n" -#: g10/keygen.c:2880 +#: g10/keygen.c:2934 #, c-format msgid "You are using the '%s' character set.\n" msgstr "Используется таблица символов '%s'.\n" -#: g10/keygen.c:2886 +#: g10/keygen.c:2940 #, c-format msgid "" "You selected this USER-ID:\n" @@ -5603,7 +5609,7 @@ " \"%s\"\n" "\n" -#: g10/keygen.c:2891 +#: g10/keygen.c:2945 msgid "Please don't put the email address into the real name or the comment\n" msgstr "" "Не вставляйте адрес электронной почты в имя пользователя или примечание\n" @@ -5619,31 +5625,31 @@ #. o = Okay (ready, continue) #. q = Quit #. -#: g10/keygen.c:2916 +#: g10/keygen.c:2970 msgid "NnCcEeOoQq" msgstr "NnCcEeOoQq" -#: g10/keygen.c:2926 +#: g10/keygen.c:2980 msgid "Change (N)ame, (C)omment, (E)mail or (Q)uit? " msgstr "Сменить (N)Имя, (C)Примечание, (E)Адрес; (Q)Выход? " -#: g10/keygen.c:2927 +#: g10/keygen.c:2981 msgid "Change (N)ame, (C)omment, (E)mail or (O)kay/(Q)uit? " msgstr "Сменить (N)Имя, (C)Примечание, (E)Адрес; (O)Принять/(Q)Выход? " -#: g10/keygen.c:2932 +#: g10/keygen.c:2986 msgid "Change (N)ame, (E)mail, or (Q)uit? " msgstr "Сменить (N)Имя, (E)Адрес; (Q)Выход? " -#: g10/keygen.c:2933 +#: g10/keygen.c:2987 msgid "Change (N)ame, (E)mail, or (O)kay/(Q)uit? " msgstr "Сменить (N)Имя, (E)Адрес; (O)Принять/(Q)Выход? " -#: g10/keygen.c:2952 +#: g10/keygen.c:3006 msgid "Please correct the error first\n" msgstr "Сначала исправьте ошибку\n" -#: g10/keygen.c:2998 +#: g10/keygen.c:3052 msgid "" "We need to generate a lot of random bytes. It is a good idea to perform\n" "some other action (type on the keyboard, move the mouse, utilize the\n" @@ -5656,13 +5662,13 @@ "случайных чисел больше возможностей получить достаточное количество " "энтропии.\n" -#: g10/keygen.c:4278 g10/keygen.c:4349 g10/keygen.c:4367 g10/keygen.c:4395 -#: g10/keygen.c:4739 g10/keygen.c:5239 g10/keygen.c:5534 g10/keygen.c:5639 +#: g10/keygen.c:4332 g10/keygen.c:4403 g10/keygen.c:4421 g10/keygen.c:4449 +#: g10/keygen.c:4793 g10/keygen.c:5293 g10/keygen.c:5588 g10/keygen.c:5693 #, c-format msgid "Key generation failed: %s\n" msgstr "Сбой при создании ключа: %s\n" -#: g10/keygen.c:4287 +#: g10/keygen.c:4341 #, c-format msgid "" "About to create a key for:\n" @@ -5673,65 +5679,65 @@ " \"%s\"\n" "\n" -#: g10/keygen.c:4289 +#: g10/keygen.c:4343 msgid "Continue? (Y/n) " msgstr "Продолжить? (Y/n) " -#: g10/keygen.c:4310 +#: g10/keygen.c:4364 #, c-format msgid "A key for \"%s\" already exists\n" msgstr "Ключ пользователя \"%s\" уже существует\n" -#: g10/keygen.c:4315 +#: g10/keygen.c:4369 msgid "Create anyway? (y/N) " msgstr "Все равно создать новый? (y/N) " -#: g10/keygen.c:4321 +#: g10/keygen.c:4375 #, c-format msgid "creating anyway\n" msgstr "принудительное создание\n" -#: g10/keygen.c:4722 +#: g10/keygen.c:4776 #, c-format msgid "Note: Use \"%s %s\" for a full featured key generation dialog.\n" msgstr "" "Замечание: \"%s %s\" вызывает полнофункциональный диалог создания ключа.\n" -#: g10/keygen.c:4771 +#: g10/keygen.c:4825 #, c-format msgid "Key generation canceled.\n" msgstr "Создание ключа прервано.\n" -#: g10/keygen.c:4831 +#: g10/keygen.c:4885 #, c-format msgid "can't create backup file '%s': %s\n" msgstr "не могу создать архивную копию, файл '%s': %s\n" -#: g10/keygen.c:4851 +#: g10/keygen.c:4905 #, c-format msgid "Note: backup of card key saved to '%s'\n" msgstr "Замечание: архивная копия ключа с карты сохранена в '%s'\n" -#: g10/keygen.c:5010 g10/keygen.c:5172 +#: g10/keygen.c:5064 g10/keygen.c:5226 #, c-format msgid "writing public key to '%s'\n" msgstr "сохранение открытого ключа в '%s'\n" -#: g10/keygen.c:5166 +#: g10/keygen.c:5220 #, c-format msgid "no writable public keyring found: %s\n" msgstr "нет доступной для записи таблицы открытых ключей: %s\n" -#: g10/keygen.c:5180 +#: g10/keygen.c:5234 #, c-format msgid "error writing public keyring '%s': %s\n" msgstr "ошибка записи таблицы открытых ключей '%s': %s\n" -#: g10/keygen.c:5210 +#: g10/keygen.c:5264 msgid "public and secret key created and signed.\n" msgstr "открытый и секретный ключи созданы и подписаны.\n" -#: g10/keygen.c:5226 +#: g10/keygen.c:5280 msgid "" "Note that this key cannot be used for encryption. You may want to use\n" "the command \"--edit-key\" to generate a subkey for this purpose.\n" @@ -5739,7 +5745,7 @@ "Учтите, что данный ключ не может использоваться для шифрования. Можно\n" "воспользоваться командой \"--edit-key\" и создать подключ для этих целей.\n" -#: g10/keygen.c:5401 g10/keygen.c:5590 +#: g10/keygen.c:5455 g10/keygen.c:5644 #, c-format msgid "" "key has been created %lu second in future (time warp or clock problem)\n" @@ -5747,7 +5753,7 @@ "ключ создан на %lu секунду в будущем (петля во времени или проблемы с " "часами)\n" -#: g10/keygen.c:5403 g10/keygen.c:5592 +#: g10/keygen.c:5457 g10/keygen.c:5646 #, c-format msgid "" "key has been created %lu seconds in future (time warp or clock problem)\n" @@ -5755,22 +5761,22 @@ "ключ создан на %lu секунд в будущем (петля во времени или проблемы с " "часами)\n" -#: g10/keygen.c:5414 g10/keygen.c:5603 +#: g10/keygen.c:5468 g10/keygen.c:5657 #, c-format msgid "Note: creating subkeys for v3 keys is not OpenPGP compliant\n" msgstr "Замечание: создание подключей для ключей v3 не совместимо с OpenPGP\n" -#: g10/keygen.c:5426 g10/keygen.c:5428 +#: g10/keygen.c:5480 g10/keygen.c:5482 #, c-format msgid "Secret parts of primary key are not available.\n" msgstr "Секретные части первичного ключа отсутствуют.\n" -#: g10/keygen.c:5435 g10/keygen.c:5437 +#: g10/keygen.c:5489 g10/keygen.c:5491 #, c-format msgid "Secret parts of primary key are stored on-card.\n" msgstr "Секретные части первичного ключа хранятся на карте.\n" -#: g10/keygen.c:5456 g10/keygen.c:5617 +#: g10/keygen.c:5510 g10/keygen.c:5671 msgid "Really create? (y/N) " msgstr "Действительно создать? (y/N) " @@ -6851,30 +6857,30 @@ msgid "data not saved; use option \"--output\" to save it\n" msgstr "данные не сохранены; используйте \"--output\" для сохранения\n" -#: g10/plaintext.c:615 +#: g10/plaintext.c:620 msgid "Detached signature.\n" msgstr "Отделенная подпись.\n" -#: g10/plaintext.c:623 +#: g10/plaintext.c:628 msgid "Please enter name of data file: " msgstr "Введите имя файла с данными: " -#: g10/plaintext.c:660 +#: g10/plaintext.c:665 #, c-format msgid "reading stdin ...\n" msgstr "читаю stdin ...\n" -#: g10/plaintext.c:705 +#: g10/plaintext.c:710 #, c-format msgid "no signed data\n" msgstr "нет подписанных данных\n" -#: g10/plaintext.c:723 +#: g10/plaintext.c:728 #, c-format msgid "can't open signed data '%s'\n" msgstr "не могу открыть подписанные данные '%s'\n" -#: g10/plaintext.c:758 +#: g10/plaintext.c:763 #, c-format msgid "can't open signed data fd=%d: %s\n" msgstr "не могу открыть подписанные данные fd=%d: %s\n" @@ -7928,7 +7934,7 @@ msgid "no need for a trustdb check\n" msgstr "проверка таблицы доверия не нужна\n" -#: g10/trustdb.c:631 g10/trustdb.c:2326 +#: g10/trustdb.c:631 g10/trustdb.c:2338 #, c-format msgid "next trustdb check due at %s\n" msgstr "срок следующей проверки таблицы доверия %s\n" @@ -7958,7 +7964,7 @@ msgid "checking the trustdb\n" msgstr "проверка таблицы доверия\n" -#: g10/trustdb.c:2047 +#: g10/trustdb.c:2059 #, c-format msgid "%d key processed" msgid_plural "%d keys processed" @@ -7966,7 +7972,7 @@ msgstr[1] "обработаны %d ключа" msgstr[2] "обработано %d ключей" -#: g10/trustdb.c:2050 +#: g10/trustdb.c:2062 #, c-format msgid " (%d validity count cleared)\n" msgid_plural " (%d validity counts cleared)\n" @@ -7974,17 +7980,17 @@ msgstr[1] " (сброшены %d счетчика достоверности)\n" msgstr[2] " (сброшено %d счетчиков достоверности)\n" -#: g10/trustdb.c:2120 +#: g10/trustdb.c:2132 #, c-format msgid "no ultimately trusted keys found\n" msgstr "абсолютно доверенных ключей не найдено\n" -#: g10/trustdb.c:2134 +#: g10/trustdb.c:2146 #, c-format msgid "public key of ultimately trusted key %s not found\n" msgstr "открытый ключ для абсолютно доверенного ключа %s не найден\n" -#: g10/trustdb.c:2252 +#: g10/trustdb.c:2264 #, c-format msgid "" "depth: %d valid: %3d signed: %3d trust: %d-, %dq, %dn, %dm, %df, %du\n" @@ -7992,7 +7998,7 @@ "глубина: %d достоверных: %3d подписанных: %3d доверие: %d-, %dq, %dn, " "%dm, %df, %du\n" -#: g10/trustdb.c:2333 +#: g10/trustdb.c:2345 #, c-format msgid "unable to update trustdb version record: write failed: %s\n" msgstr "" @@ -8106,71 +8112,77 @@ #. TRANSLATORS: Put a \x1f right before a colon. This can be #. * used by pinentry to nicely align the names and values. Keep #. * the %s at the start and end of the string. -#: scd/app-p15.c:5116 scd/app-openpgp.c:2154 +#: scd/app-p15.c:5145 scd/app-nks.c:1541 scd/app-openpgp.c:2154 #, c-format msgid "%sNumber: %s%%0AHolder: %s%s" msgstr "%sНомер: %s%%0AДержатель: %s%s" #. TRANSLATORS: This is the number of remaining attempts to #. * enter a PIN. Use %%0A (double-percent,0A) for a linefeed. -#: scd/app-p15.c:5135 scd/app-openpgp.c:2170 +#: scd/app-p15.c:5164 scd/app-nks.c:1560 scd/app-openpgp.c:2170 #, c-format msgid "Remaining attempts: %d" msgstr "Осталось попыток: %d" -#: scd/app-p15.c:5214 scd/app-nks.c:1113 +#: scd/app-p15.c:5243 scd/app-nks.c:2112 msgid "||Please enter the PIN for the key to create qualified signatures." msgstr "||Введите PIN ключа для создания квалифицированных подписей." #. TRANSLATORS: Do not translate the "|A|" prefix but keep it at #. the start of the string. Use %0A (single percent) for a linefeed. -#: scd/app-p15.c:5217 scd/app-openpgp.c:2464 +#: scd/app-p15.c:5246 scd/app-openpgp.c:2465 msgid "|A|Please enter the Admin PIN" msgstr "|A|Введите административный PIN" -#: scd/app-p15.c:5219 scd/app-nks.c:1103 +#: scd/app-p15.c:5248 scd/app-nks.c:2102 msgid "|P|Please enter the PIN Unblocking Code (PUK) for the standard keys." msgstr "|P|Введите код разблокировки PIN (PUK) для стандартных ключей." -#: scd/app-p15.c:5222 scd/app-nks.c:1095 +#: scd/app-p15.c:5251 scd/app-nks.c:2093 msgid "||Please enter the PIN for the standard keys." msgstr "|A|Введите PIN для стандартных ключей." -#: scd/app-nks.c:709 scd/app-openpgp.c:3666 +#: scd/app-nks.c:1479 scd/app-openpgp.c:3675 #, c-format msgid "RSA modulus missing or not of size %d bits\n" msgstr "Модули RSA пропущены, или их размер не равен %d бит\n" -#: scd/app-nks.c:717 scd/app-openpgp.c:3678 +#: scd/app-nks.c:1487 scd/app-openpgp.c:3687 #, c-format msgid "RSA public exponent missing or larger than %d bits\n" msgstr "отсутствует открытая экспонента RSA, или ее размер превышает %d бит\n" -#: scd/app-nks.c:797 scd/app-openpgp.c:2327 scd/app-openpgp.c:2346 -#: scd/app-openpgp.c:2513 scd/app-openpgp.c:2531 scd/app-openpgp.c:2829 -#: scd/app-openpgp.c:2876 scd/app-openpgp.c:2991 scd/app-dinsig.c:302 +#: scd/app-nks.c:1660 +#, fuzzy +#| msgid "the NullPIN has not yet been changed\n" +msgid "Note: PIN has not yet been enabled." +msgstr "пустой PIN до сих пор не изменен\n" + +#: scd/app-nks.c:1671 scd/app-openpgp.c:2327 scd/app-openpgp.c:2346 +#: scd/app-openpgp.c:2515 scd/app-openpgp.c:2533 scd/app-openpgp.c:2832 +#: scd/app-openpgp.c:2879 scd/app-openpgp.c:3000 scd/app-dinsig.c:303 #, c-format msgid "PIN callback returned error: %s\n" msgstr "Функция обработки PIN возвратила ошибку: %s\n" -#: scd/app-nks.c:830 +#: scd/app-nks.c:1707 #, c-format msgid "the NullPIN has not yet been changed\n" msgstr "пустой PIN до сих пор не изменен\n" -#: scd/app-nks.c:1094 +#: scd/app-nks.c:2092 msgid "|N|Please enter a new PIN for the standard keys." msgstr "|A|Введите новый PIN для стандартных ключей." -#: scd/app-nks.c:1101 +#: scd/app-nks.c:2100 msgid "|NP|Please enter a new PIN Unblocking Code (PUK) for the standard keys." msgstr "|NP|Введите новый код разблокировки PIN (PUK) для стандартных ключей." -#: scd/app-nks.c:1111 +#: scd/app-nks.c:2110 msgid "|N|Please enter a new PIN for the key to create qualified signatures." msgstr "|N|Введите новый PIN ключа для создания квалифицированных подписей." -#: scd/app-nks.c:1121 +#: scd/app-nks.c:2120 msgid "" "|NP|Please enter a new PIN Unblocking Code (PUK) for the key to create " "qualified signatures." @@ -8178,7 +8190,7 @@ "|NP|Введите новый код разблокировки PIN (PUK) ключа для создания " "квалифицированных подписей." -#: scd/app-nks.c:1123 +#: scd/app-nks.c:2122 msgid "" "|P|Please enter the PIN Unblocking Code (PUK) for the key to create " "qualified signatures." @@ -8186,7 +8198,7 @@ "|P|Введите код разблокировки PIN (PUK) ключа для создания квалифицированных " "подписей." -#: scd/app-nks.c:1230 scd/app-openpgp.c:2910 scd/app-dinsig.c:532 +#: scd/app-nks.c:2295 scd/app-openpgp.c:2913 scd/app-dinsig.c:535 #, c-format msgid "error getting new PIN: %s\n" msgstr "ошибка при получении нового PIN: %s\n" @@ -8201,7 +8213,7 @@ msgid "failed to store the creation date: %s\n" msgstr "сбой при сохранении даты создания: %s\n" -#: scd/app-openpgp.c:1271 scd/app-openpgp.c:2857 scd/app-openpgp.c:5041 +#: scd/app-openpgp.c:1271 scd/app-openpgp.c:2860 scd/app-openpgp.c:5051 #, c-format msgid "error retrieving CHV status from card\n" msgstr "ошибка получения статуса CHV с карты\n" @@ -8221,7 +8233,7 @@ msgid "response does not contain the EC public key\n" msgstr "в ответе отсутствует открытый ключ эллиптической кривой\n" -#: scd/app-openpgp.c:1664 scd/app-openpgp.c:4286 +#: scd/app-openpgp.c:1664 scd/app-openpgp.c:4295 #, c-format msgid "response does not contain the public key data\n" msgstr "ответ не содержит данных открытого ключа\n" @@ -8255,23 +8267,23 @@ msgid "||Please unlock the card" msgstr "||Разблокируйте карту" -#: scd/app-openpgp.c:2353 scd/app-openpgp.c:2538 scd/app-openpgp.c:2836 +#: scd/app-openpgp.c:2353 scd/app-openpgp.c:2540 scd/app-openpgp.c:2839 #, 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:2367 scd/app-openpgp.c:2414 scd/app-openpgp.c:2552 -#: scd/app-openpgp.c:4644 +#: scd/app-openpgp.c:2368 scd/app-openpgp.c:2415 scd/app-openpgp.c:2554 +#: scd/app-openpgp.c:4654 #, c-format msgid "verify CHV%d failed: %s\n" msgstr "сбой при проверке CHV%d: %s\n" -#: scd/app-openpgp.c:2450 scd/app-openpgp.c:5050 +#: scd/app-openpgp.c:2451 scd/app-openpgp.c:5060 #, c-format msgid "card is permanently locked!\n" msgstr "карта окончательно заблокирована!\n" -#: scd/app-openpgp.c:2454 +#: scd/app-openpgp.c:2455 #, c-format msgid "%d Admin PIN attempt remaining before card is permanently locked\n" msgid_plural "" @@ -8283,20 +8295,20 @@ msgstr[2] "" "осталось %d попыток ввода административного PIN перед блокировкой карты\n" -#: scd/app-openpgp.c:2485 +#: scd/app-openpgp.c:2486 #, c-format msgid "access to admin commands is not configured\n" msgstr "доступ к командам управления не настроен\n" -#: scd/app-openpgp.c:2823 +#: scd/app-openpgp.c:2826 msgid "||Please enter the PIN" msgstr "||Введите PIN" -#: scd/app-openpgp.c:2872 +#: scd/app-openpgp.c:2875 msgid "||Please enter the Reset Code for the card" msgstr "||Введите код сброса для карты" -#: scd/app-openpgp.c:2882 scd/app-openpgp.c:2943 +#: scd/app-openpgp.c:2885 scd/app-openpgp.c:2946 #, c-format msgid "Reset Code is too short; minimum length is %d\n" msgstr "Код сброса слишком короток; минимальная длина %d\n" @@ -8304,87 +8316,87 @@ #. 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:2905 +#: scd/app-openpgp.c:2908 msgid "|RN|New Reset Code" msgstr "|RN|Новый код сброса" -#: scd/app-openpgp.c:2906 +#: scd/app-openpgp.c:2909 msgid "|AN|New Admin PIN" msgstr "|AN|Новый административный PIN" -#: scd/app-openpgp.c:2906 +#: scd/app-openpgp.c:2909 msgid "|N|New PIN" msgstr "|N|Новый PIN" -#: scd/app-openpgp.c:2987 +#: scd/app-openpgp.c:2996 msgid "||Please enter the Admin PIN and New Admin PIN" msgstr "|A|Введите административный PIN и новый административный PIN" -#: scd/app-openpgp.c:2988 +#: scd/app-openpgp.c:2997 msgid "||Please enter the PIN and New PIN" msgstr "||Введите PIN и новый PIN" -#: scd/app-openpgp.c:3050 scd/app-openpgp.c:4346 +#: scd/app-openpgp.c:3059 scd/app-openpgp.c:4355 #, c-format msgid "error reading application data\n" msgstr "ошибка чтения данных приложения\n" -#: scd/app-openpgp.c:3056 scd/app-openpgp.c:4353 +#: scd/app-openpgp.c:3065 scd/app-openpgp.c:4362 #, c-format msgid "error reading fingerprint DO\n" msgstr "ошибка чтения отпечатка DO\n" -#: scd/app-openpgp.c:3066 +#: scd/app-openpgp.c:3075 #, c-format msgid "key already exists\n" msgstr "ключ уже существует\n" -#: scd/app-openpgp.c:3070 +#: scd/app-openpgp.c:3079 #, c-format msgid "existing key will be replaced\n" msgstr "существующий ключ будет заменен\n" -#: scd/app-openpgp.c:3072 +#: scd/app-openpgp.c:3081 #, c-format msgid "generating new key\n" msgstr "генерация нового ключа\n" -#: scd/app-openpgp.c:3074 +#: scd/app-openpgp.c:3083 #, c-format msgid "writing new key\n" msgstr "запись нового ключа\n" -#: scd/app-openpgp.c:3647 scd/app-openpgp.c:3999 +#: scd/app-openpgp.c:3656 scd/app-openpgp.c:4008 #, c-format msgid "creation timestamp missing\n" msgstr "пропущена метка времени создания\n" -#: scd/app-openpgp.c:3688 scd/app-openpgp.c:3696 +#: scd/app-openpgp.c:3697 scd/app-openpgp.c:3705 #, c-format msgid "RSA prime %s missing or not of size %d bits\n" msgstr "Простое число RSA %s пропущено или его размер не равен %d\n" -#: scd/app-openpgp.c:3829 scd/app-openpgp.c:4106 +#: scd/app-openpgp.c:3838 scd/app-openpgp.c:4115 #, c-format msgid "failed to store the key: %s\n" msgstr "сбой сохранения ключа: %s\n" -#: scd/app-openpgp.c:3993 +#: scd/app-openpgp.c:4002 #, c-format msgid "unsupported curve\n" msgstr "кривая не поддерживается\n" -#: scd/app-openpgp.c:4263 +#: scd/app-openpgp.c:4272 #, c-format msgid "please wait while key is being generated ...\n" msgstr "пожалуйста, подождите, пока будет генерироваться ключ ...\n" -#: scd/app-openpgp.c:4271 +#: scd/app-openpgp.c:4280 #, c-format msgid "generating key failed\n" msgstr "сбой при генерации ключа\n" -#: scd/app-openpgp.c:4277 +#: scd/app-openpgp.c:4286 #, c-format msgid "key generation completed (%d second)\n" msgid_plural "key generation completed (%d seconds)\n" @@ -8392,46 +8404,46 @@ msgstr[1] "создание ключа завершено (%d секунды)\n" msgstr[2] "создание ключа завершено (%d секунд)\n" -#: scd/app-openpgp.c:4311 +#: scd/app-openpgp.c:4320 #, c-format msgid "invalid structure of OpenPGP card (DO 0x93)\n" msgstr "недопустимая структура карты OpenPGP (DO 0x93)\n" -#: scd/app-openpgp.c:4361 +#: scd/app-openpgp.c:4370 #, c-format msgid "fingerprint on card does not match requested one\n" msgstr "отпечаток на карте не совпадает с запрошенным\n" -#: scd/app-openpgp.c:4560 +#: scd/app-openpgp.c:4569 #, c-format msgid "card does not support digest algorithm %s\n" msgstr "карта не поддерживает хеш-функцию %s\n" -#: scd/app-openpgp.c:4618 +#: scd/app-openpgp.c:4627 #, c-format msgid "signatures created so far: %lu\n" msgstr "создано подписей: %lu\n" -#: scd/app-openpgp.c:5055 +#: scd/app-openpgp.c:5065 #, c-format msgid "" "verification of Admin PIN is currently prohibited through this command\n" msgstr "" "проверка административного PIN в данный момент запрещена этой командой\n" -#: scd/app-openpgp.c:5386 scd/app-openpgp.c:5398 +#: scd/app-openpgp.c:5396 scd/app-openpgp.c:5408 #, c-format msgid "can't access %s - invalid OpenPGP card?\n" msgstr "нет доступа к %s - непригодная карта OpenPGP?\n" -#: scd/app-dinsig.c:298 +#: scd/app-dinsig.c:299 msgid "||Please enter your PIN at the reader's pinpad" msgstr "||Введите 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-dinsig.c:529 +#: scd/app-dinsig.c:532 msgid "|N|Initial New PIN" msgstr "|N|Первоначальный новый PIN" @@ -8518,11 +8530,11 @@ msgid "validation model requested by certificate: %s" msgstr "схема проверки, запрошенная сертификатом: %s" -#: sm/certchain.c:199 sm/certchain.c:2164 +#: sm/certchain.c:199 sm/certchain.c:2165 msgid "chain" msgstr "цепь" -#: sm/certchain.c:200 sm/certchain.c:2164 +#: sm/certchain.c:200 sm/certchain.c:2165 msgid "shell" msgstr "оболочка" @@ -8545,238 +8557,238 @@ msgid "failed to open '%s': %s\n" msgstr "не могу открыть '%s': %s\n" -#: sm/certchain.c:355 sm/certchain.c:384 dirmngr/validate.c:204 +#: sm/certchain.c:355 sm/certchain.c:385 dirmngr/validate.c:204 #, c-format msgid "Note: non-critical certificate policy not allowed" msgstr "Замечание: некритичные правила сертификата недопустимы" -#: sm/certchain.c:359 sm/certchain.c:388 dirmngr/validate.c:209 +#: sm/certchain.c:359 sm/certchain.c:389 dirmngr/validate.c:209 #, c-format msgid "certificate policy not allowed" msgstr "правила сертификата недопустимы" -#: sm/certchain.c:595 sm/keydb.c:1084 sm/keydb.c:1171 +#: sm/certchain.c:596 sm/keydb.c:1084 sm/keydb.c:1171 #, c-format msgid "failed to get the fingerprint\n" msgstr "сбой получения отпечатка\n" -#: sm/certchain.c:624 +#: sm/certchain.c:625 #, c-format msgid "looking up issuer at external location\n" msgstr "внешний поиск издателя\n" -#: sm/certchain.c:644 +#: sm/certchain.c:645 #, c-format msgid "number of issuers matching: %d\n" msgstr "число соответствующих издателей: %d\n" -#: sm/certchain.c:723 dirmngr/ocsp.c:685 +#: sm/certchain.c:724 dirmngr/ocsp.c:685 #, c-format msgid "can't get authorityInfoAccess: %s\n" msgstr "не могу получить authorityInfoAccess: %s\n" -#: sm/certchain.c:791 +#: sm/certchain.c:792 #, c-format msgid "looking up issuer from the Dirmngr cache\n" msgstr "поиск издателя в буфере Dirmngr\n" -#: sm/certchain.c:816 +#: sm/certchain.c:817 #, c-format msgid "number of matching certificates: %d\n" msgstr "число соответствующих сертификатов: %d\n" -#: sm/certchain.c:819 +#: sm/certchain.c:820 #, c-format msgid "dirmngr cache-only key lookup failed: %s\n" msgstr "ключ в буфере dirmngr не найден: %s\n" -#: sm/certchain.c:1041 sm/certchain.c:1554 sm/certchain.c:2192 sm/decrypt.c:728 +#: sm/certchain.c:1042 sm/certchain.c:1555 sm/certchain.c:2193 sm/decrypt.c:728 #: sm/encrypt.c:345 sm/import.c:415 sm/keydb.c:1091 sm/keydb.c:1178 #: sm/sign.c:337 sm/verify.c:118 #, c-format msgid "failed to allocate keyDB handle\n" msgstr "сбой при выделении памяти под указатель на базу данных\n" -#: sm/certchain.c:1225 +#: sm/certchain.c:1226 msgid "certificate has been revoked" msgstr "сертификат был отозван" -#: sm/certchain.c:1240 +#: sm/certchain.c:1241 msgid "the status of the certificate is unknown" msgstr "статус сертификата неизвестен" -#: sm/certchain.c:1247 +#: sm/certchain.c:1248 #, c-format msgid "please make sure that the \"dirmngr\" is properly installed\n" msgstr "проверьте, что \"dirmngr\" установлен корректно\n" -#: sm/certchain.c:1253 +#: sm/certchain.c:1254 #, c-format msgid "checking the CRL failed: %s" msgstr "сбой проверки списка отозванных сертификатов: %s" -#: sm/certchain.c:1282 sm/certchain.c:1350 dirmngr/validate.c:497 +#: sm/certchain.c:1283 sm/certchain.c:1351 dirmngr/validate.c:497 #, c-format msgid "certificate with invalid validity: %s" msgstr "сертификат с недействительной достоверностью: %s" -#: sm/certchain.c:1297 sm/certchain.c:1382 dirmngr/validate.c:515 +#: sm/certchain.c:1298 sm/certchain.c:1383 dirmngr/validate.c:515 #, c-format msgid "certificate not yet valid" msgstr "сертификат еще не достоверен" -#: sm/certchain.c:1298 sm/certchain.c:1383 +#: sm/certchain.c:1299 sm/certchain.c:1384 msgid "root certificate not yet valid" msgstr "корневой сертификат еще не достоверен" -#: sm/certchain.c:1299 sm/certchain.c:1384 +#: sm/certchain.c:1300 sm/certchain.c:1385 msgid "intermediate certificate not yet valid" msgstr "промежуточный сертификат еще не достоверен" -#: sm/certchain.c:1312 dirmngr/validate.c:526 +#: sm/certchain.c:1313 dirmngr/validate.c:526 #, c-format msgid "certificate has expired" msgstr "сертификат просрочен" -#: sm/certchain.c:1313 +#: sm/certchain.c:1314 msgid "root certificate has expired" msgstr "корневой сертификат просрочен" -#: sm/certchain.c:1314 +#: sm/certchain.c:1315 msgid "intermediate certificate has expired" msgstr "промежуточный сертификат просрочен" -#: sm/certchain.c:1356 +#: sm/certchain.c:1357 #, c-format msgid "required certificate attributes missing: %s%s%s" msgstr "сертификат не имеет требуемых атрибутов: %s%s%s" -#: sm/certchain.c:1365 +#: sm/certchain.c:1366 msgid "certificate with invalid validity" msgstr "сертификат с недействительной достоверностью" -#: sm/certchain.c:1402 +#: sm/certchain.c:1403 msgid "signature not created during lifetime of certificate" msgstr "подпись создана вне времени действия сертификата" -#: sm/certchain.c:1404 +#: sm/certchain.c:1405 msgid "certificate not created during lifetime of issuer" msgstr "сертификат создан вне времени действия издателя" -#: sm/certchain.c:1405 +#: sm/certchain.c:1406 msgid "intermediate certificate not created during lifetime of issuer" msgstr "промежуточный сертификат создан вне времени действия издателя" -#: sm/certchain.c:1409 +#: sm/certchain.c:1410 #, c-format msgid " ( signature created at " msgstr " ( подпись создана " -#: sm/certchain.c:1410 +#: sm/certchain.c:1411 #, c-format msgid " (certificate created at " msgstr " ( сертификат создан " -#: sm/certchain.c:1413 +#: sm/certchain.c:1414 #, c-format msgid " (certificate valid from " msgstr " (сертификат действителен с " -#: sm/certchain.c:1414 +#: sm/certchain.c:1415 #, c-format msgid " ( issuer valid from " msgstr " ( издатель действителен с " -#: sm/certchain.c:1444 dirmngr/validate.c:577 +#: sm/certchain.c:1445 dirmngr/validate.c:577 #, c-format msgid "fingerprint=%s\n" msgstr "отпечаток=%s\n" -#: sm/certchain.c:1453 +#: sm/certchain.c:1454 #, c-format msgid "root certificate has now been marked as trusted\n" msgstr "корневой сертификат теперь помечен как доверенный\n" -#: sm/certchain.c:1466 +#: sm/certchain.c:1467 #, c-format msgid "interactive marking as trusted not enabled in gpg-agent\n" msgstr "в агенте gpg нельзя интерактивно сделать сертификат доверенным\n" -#: sm/certchain.c:1472 +#: sm/certchain.c:1473 #, c-format msgid "interactive marking as trusted disabled for this session\n" msgstr "" "для данного сеанса запрещено интерактивно делать сертификат доверенным\n" -#: sm/certchain.c:1531 +#: sm/certchain.c:1532 msgid "WARNING: creation time of signature not known - assuming current time" msgstr "" "Внимание: время создания подписи неизвестно - предполагается текущий момент" -#: sm/certchain.c:1595 +#: sm/certchain.c:1596 msgid "no issuer found in certificate" msgstr "в сертификате не найден издатель" -#: sm/certchain.c:1673 +#: sm/certchain.c:1674 msgid "self-signed certificate has a BAD signature" msgstr "у самозаверенного сертификата ПЛОХАЯ подпись" -#: sm/certchain.c:1742 dirmngr/validate.c:575 +#: sm/certchain.c:1743 dirmngr/validate.c:575 #, c-format msgid "root certificate is not marked trusted" msgstr "корневой сертификат не помечен как доверенный" -#: sm/certchain.c:1758 +#: sm/certchain.c:1759 #, c-format msgid "checking the trust list failed: %s\n" msgstr "сбой проверки списка доверия: %s\n" -#: sm/certchain.c:1789 sm/import.c:176 sm/keylist.c:1396 dirmngr/validate.c:630 +#: sm/certchain.c:1790 sm/import.c:176 sm/keylist.c:1396 dirmngr/validate.c:630 #, c-format msgid "certificate chain too long\n" msgstr "слишком длинная цепочка сертификатов\n" -#: sm/certchain.c:1801 dirmngr/validate.c:642 +#: sm/certchain.c:1802 dirmngr/validate.c:642 #, c-format msgid "issuer certificate not found" msgstr "не найден издатель сертификата" -#: sm/certchain.c:1834 dirmngr/validate.c:668 +#: sm/certchain.c:1835 dirmngr/validate.c:668 #, c-format msgid "certificate has a BAD signature" msgstr "сертификат имеет ПЛОХУЮ подпись" -#: sm/certchain.c:1866 dirmngr/validate.c:692 +#: sm/certchain.c:1867 dirmngr/validate.c:692 msgid "found another possible matching CA certificate - trying again" msgstr "" "найден еще один возможный сертификат удостоверяющего центра - повторная " "попытка" -#: sm/certchain.c:1925 dirmngr/validate.c:717 +#: sm/certchain.c:1926 dirmngr/validate.c:717 #, c-format msgid "certificate chain longer than allowed by CA (%d)" msgstr "цепочка сертификатов длиннее допускаемой удостоверяющим центром (%d)" -#: sm/certchain.c:1967 sm/certchain.c:2263 dirmngr/validate.c:747 +#: sm/certchain.c:1968 sm/certchain.c:2264 dirmngr/validate.c:747 #, c-format msgid "certificate is good\n" msgstr "хороший сертификат\n" -#: sm/certchain.c:1968 +#: sm/certchain.c:1969 #, c-format msgid "intermediate certificate is good\n" msgstr "хороший промежуточный сертификат\n" -#: sm/certchain.c:1969 +#: sm/certchain.c:1970 #, c-format msgid "root certificate is good\n" msgstr "хороший корневой сертификат\n" -#: sm/certchain.c:2151 +#: sm/certchain.c:2152 msgid "switching to chain model" msgstr "переключение на цепную схему" -#: sm/certchain.c:2160 +#: sm/certchain.c:2161 #, c-format msgid "validation model used: %s" msgstr "используется схема проверки: %s" diff -Nru gnupg2-2.2.40/po/sk.po gnupg2-2.2.41/po/sk.po --- gnupg2-2.2.40/po/sk.po 2022-10-10 09:58:26.000000000 +0000 +++ gnupg2-2.2.41/po/sk.po 2022-12-09 08:48:35.000000000 +0000 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: gnupg 1.2.5\n" "Report-Msgid-Bugs-To: translations@gnupg.org\n" -"POT-Creation-Date: 2022-10-10 11:58+0200\n" +"POT-Creation-Date: 2022-12-09 09:48+0100\n" "PO-Revision-Date: 2004-07-20 15:52+0200\n" "Last-Translator: Michal Majer \n" "Language-Team: Slovak \n" @@ -226,8 +226,8 @@ msgid "ssh keys greater than %d bits are not supported\n" msgstr "ochranný algoritmus %d%s nie je podporováný\n" -#: agent/command-ssh.c:862 common/dotlock.c:856 g10/card-util.c:947 -#: g10/exec.c:554 g10/export.c:1320 g10/gpg.c:1400 g10/keygen.c:4998 +#: agent/command-ssh.c:862 common/dotlock.c:856 g10/card-util.c:946 +#: g10/exec.c:554 g10/export.c:1335 g10/gpg.c:1409 g10/keygen.c:5052 #: g10/keyring.c:1322 g10/keyring.c:1637 g10/openfile.c:291 g10/sign.c:1008 #: g10/sign.c:1322 g10/tdbio.c:753 #, fuzzy, c-format @@ -235,12 +235,12 @@ msgid "can't create '%s': %s\n" msgstr "nemôžem vytvoriť `%s': %s\n" -#: agent/command-ssh.c:874 common/helpfile.c:57 g10/card-util.c:904 +#: agent/command-ssh.c:874 common/helpfile.c:57 g10/card-util.c:903 #: g10/dearmor.c:59 g10/dearmor.c:106 g10/decrypt.c:65 g10/decrypt.c:136 -#: g10/decrypt.c:153 g10/encrypt.c:239 g10/encrypt.c:678 g10/gpg.c:1401 -#: g10/import.c:364 g10/import.c:548 g10/import.c:776 g10/keygen.c:4036 +#: g10/decrypt.c:153 g10/encrypt.c:239 g10/encrypt.c:678 g10/gpg.c:1410 +#: g10/import.c:365 g10/import.c:549 g10/import.c:777 g10/keygen.c:4090 #: g10/keyring.c:1663 g10/openfile.c:195 g10/openfile.c:209 g10/plaintext.c:128 -#: g10/plaintext.c:649 g10/sign.c:990 g10/sign.c:1201 g10/sign.c:1306 +#: g10/plaintext.c:654 g10/sign.c:990 g10/sign.c:1201 g10/sign.c:1306 #: g10/sign.c:1451 g10/tdbdump.c:145 g10/tdbdump.c:153 g10/tdbio.c:758 #: g10/tdbio.c:829 g10/verify.c:96 g10/verify.c:160 sm/gpgsm.c:2160 #: sm/gpgsm.c:2190 sm/gpgsm.c:2228 sm/qualified.c:66 dirmngr/certcache.c:420 @@ -467,34 +467,34 @@ msgid "csh-style command output" msgstr "" -#: agent/gpg-agent.c:185 g10/gpg.c:579 scd/scdaemon.c:126 sm/gpgsm.c:410 +#: agent/gpg-agent.c:185 g10/gpg.c:580 scd/scdaemon.c:126 sm/gpgsm.c:410 #: dirmngr/dirmngr.c:192 #, fuzzy msgid "|FILE|read options from FILE" msgstr "|SÚBOR|nahrať rozširujúci modul SÚBOR" -#: agent/gpg-agent.c:189 g10/gpg.c:566 scd/scdaemon.c:130 sm/gpgsm.c:259 +#: agent/gpg-agent.c:189 g10/gpg.c:567 scd/scdaemon.c:130 sm/gpgsm.c:259 #: dirmngr/dirmngr.c:196 msgid "Options controlling the diagnostic output" msgstr "" -#: agent/gpg-agent.c:191 g10/gpg.c:568 g10/gpgv.c:78 kbx/kbxutil.c:88 +#: agent/gpg-agent.c:191 g10/gpg.c:569 g10/gpgv.c:78 kbx/kbxutil.c:88 #: scd/scdaemon.c:132 sm/gpgsm.c:261 dirmngr/dirmngr-client.c:70 #: dirmngr/dirmngr.c:198 tools/gpg-connect-agent.c:78 tools/gpgconf.c:110 msgid "verbose" msgstr "s dodatočnými informáciami" -#: agent/gpg-agent.c:192 g10/gpg.c:570 g10/gpgv.c:79 kbx/kbxutil.c:89 +#: agent/gpg-agent.c:192 g10/gpg.c:571 g10/gpgv.c:79 kbx/kbxutil.c:89 #: scd/scdaemon.c:133 sm/gpgsm.c:263 dirmngr/dirmngr-client.c:71 #: dirmngr/dirmngr.c:199 msgid "be somewhat more quiet" msgstr "byť o trochu tichší" -#: agent/gpg-agent.c:200 g10/gpg.c:583 sm/gpgsm.c:276 dirmngr/dirmngr.c:209 +#: agent/gpg-agent.c:200 g10/gpg.c:584 sm/gpgsm.c:276 dirmngr/dirmngr.c:209 msgid "|FILE|write server mode logs to FILE" msgstr "" -#: agent/gpg-agent.c:204 g10/gpg.c:589 scd/scdaemon.c:147 sm/gpgsm.c:283 +#: agent/gpg-agent.c:204 g10/gpg.c:590 scd/scdaemon.c:147 sm/gpgsm.c:283 #: dirmngr/dirmngr.c:213 msgid "Options controlling the configuration" msgstr "" @@ -538,7 +538,7 @@ msgid "enable putty support" msgstr "nepodporované" -#: agent/gpg-agent.c:237 g10/gpg.c:831 scd/scdaemon.c:175 sm/gpgsm.c:369 +#: agent/gpg-agent.c:237 g10/gpg.c:832 scd/scdaemon.c:175 sm/gpgsm.c:369 msgid "Options controlling the security" msgstr "" @@ -640,7 +640,7 @@ #. reporting address. This is so that we can change the #. reporting address without breaking the translations. #: agent/gpg-agent.c:563 agent/preset-passphrase.c:100 agent/protect-tool.c:155 -#: g10/gpg.c:1108 g10/gpgv.c:149 kbx/kbxutil.c:113 scd/scdaemon.c:313 +#: g10/gpg.c:1117 g10/gpgv.c:149 kbx/kbxutil.c:113 scd/scdaemon.c:313 #: sm/gpgsm.c:600 dirmngr/dirmngr-client.c:168 dirmngr/dirmngr.c:458 #: tools/gpg-connect-agent.c:205 tools/gpgconf.c:154 #: tools/gpg-check-pattern.c:143 @@ -661,27 +661,27 @@ "Secret key management for @GNUPG@\n" msgstr "" -#: agent/gpg-agent.c:619 g10/gpg.c:1304 scd/scdaemon.c:385 sm/gpgsm.c:748 +#: agent/gpg-agent.c:619 g10/gpg.c:1313 scd/scdaemon.c:385 sm/gpgsm.c:748 #: dirmngr/dirmngr.c:542 #, c-format msgid "invalid debug-level '%s' given\n" msgstr "" -#: agent/gpg-agent.c:988 g10/gpg.c:3810 g10/gpg.c:3834 sm/gpgsm.c:1585 +#: agent/gpg-agent.c:988 g10/gpg.c:3830 g10/gpg.c:3854 sm/gpgsm.c:1585 #: sm/gpgsm.c:1591 #, c-format msgid "selected digest algorithm is invalid\n" msgstr "vybraný hashovací algoritmus je neplatný\n" #: agent/gpg-agent.c:1216 agent/gpg-agent.c:2029 common/argparse.c:1766 -#: common/argparse.c:1858 g10/gpg.c:2517 scd/scdaemon.c:547 sm/gpgsm.c:1007 +#: common/argparse.c:1858 g10/gpg.c:2526 scd/scdaemon.c:547 sm/gpgsm.c:1007 #: dirmngr/dirmngr.c:1081 dirmngr/dirmngr.c:1937 #, fuzzy, c-format #| msgid "reading options from `%s'\n" msgid "reading options from '%s'\n" msgstr "čítam možnosti z `%s'\n" -#: agent/gpg-agent.c:1332 g10/gpg.c:3751 scd/scdaemon.c:671 sm/gpgsm.c:1522 +#: agent/gpg-agent.c:1332 g10/gpg.c:3769 scd/scdaemon.c:671 sm/gpgsm.c:1522 #: dirmngr/dirmngr.c:1190 tools/gpg-connect-agent.c:1244 tools/gpgconf.c:677 #, fuzzy, c-format #| msgid "WARNING: \"%s\" is a deprecated option\n" @@ -814,7 +814,7 @@ "Password cache maintenance\n" msgstr "" -#: agent/protect-tool.c:108 g10/gpg.c:441 kbx/kbxutil.c:71 sm/gpgsm.c:210 +#: agent/protect-tool.c:108 g10/gpg.c:442 kbx/kbxutil.c:71 sm/gpgsm.c:210 #: dirmngr/dirmngr.c:171 tools/gpgconf.c:80 msgid "" "@Commands:\n" @@ -1034,7 +1034,7 @@ msgid "secret key parts are not available\n" msgstr "tajné časti kľúča nie sú dostupné\n" -#: agent/cvt-openpgp.c:344 g10/card-util.c:1556 +#: agent/cvt-openpgp.c:344 g10/card-util.c:1555 #, fuzzy, c-format #| msgid "protection algorithm %d%s is not supported\n" msgid "public key algorithm %d (%s) is not supported\n" @@ -1194,7 +1194,7 @@ msgid "out of core while allocating %lu bytes" msgstr "" -#: common/miscellaneous.c:115 g10/card-util.c:911 tools/no-libgcrypt.c:30 +#: common/miscellaneous.c:115 g10/card-util.c:910 tools/no-libgcrypt.c:30 #, fuzzy, c-format msgid "error allocating enough memory: %s\n" msgstr "chyba pri vytváraní súboru kľúčov (keyring)`%s': %s\n" @@ -1317,7 +1317,7 @@ msgstr "ASCII kódovanie: %s\n" #: common/audit.c:774 common/audit.c:776 common/audit.c:921 common/audit.c:923 -#: scd/app-openpgp.c:3557 +#: scd/app-openpgp.c:3566 #, fuzzy, c-format msgid "unsupported algorithm: %s" msgstr "" @@ -1401,12 +1401,12 @@ msgid "Root certificate trustworthy" msgstr "nesprávny certifikát" -#: common/audit.c:1112 sm/certchain.c:1235 +#: common/audit.c:1112 sm/certchain.c:1236 #, fuzzy msgid "no CRL found for certificate" msgstr "nesprávny certifikát" -#: common/audit.c:1115 sm/certchain.c:1245 +#: common/audit.c:1115 sm/certchain.c:1246 #, fuzzy msgid "the available CRL is too old" msgstr "Kľúč k dispozícii na: " @@ -1549,7 +1549,7 @@ msgid "missing argument for option \"%.50s\"\n" msgstr "" -#: common/argparse.c:558 g10/gpg.c:3525 +#: common/argparse.c:558 g10/gpg.c:3543 #, fuzzy, c-format msgid "invalid argument for option \"%.50s\"\n" msgstr "neplatný parameter pre import\n" @@ -1650,92 +1650,92 @@ msgid "%s is too old (need %s, have %s)\n" msgstr "" -#: g10/armor.c:423 +#: g10/armor.c:424 #, c-format msgid "armor: %s\n" msgstr "ASCII kódovanie: %s\n" -#: g10/armor.c:462 +#: g10/armor.c:463 #, c-format msgid "invalid armor header: " msgstr "neplatná hlavička ASCII kódovania: " -#: g10/armor.c:473 +#: g10/armor.c:474 #, c-format msgid "armor header: " msgstr "ASCII hlavička: " -#: g10/armor.c:486 +#: g10/armor.c:487 #, c-format msgid "invalid clearsig header\n" msgstr "neplatná hlavička podpisu v čitateľnom formáte\n" -#: g10/armor.c:499 +#: g10/armor.c:500 #, fuzzy, c-format msgid "unknown armor header: " msgstr "ASCII hlavička: " -#: g10/armor.c:552 +#: g10/armor.c:553 #, c-format msgid "nested clear text signatures\n" msgstr "vnorené podpisy v čitateľnom formátu\n" -#: g10/armor.c:687 +#: g10/armor.c:688 #, fuzzy, c-format msgid "unexpected armor: " msgstr "neočakávané kódovanie ASCII:" -#: g10/armor.c:700 +#: g10/armor.c:701 #, c-format msgid "invalid dash escaped line: " msgstr "nesprávne označenie riadku mínusmi: " -#: g10/armor.c:872 g10/armor.c:1492 +#: g10/armor.c:873 g10/armor.c:1493 #, fuzzy, c-format msgid "invalid radix64 character %02X skipped\n" msgstr "neplatný znak vo formáte radix64 %02x bol preskočený\n" -#: g10/armor.c:915 +#: g10/armor.c:916 #, c-format msgid "premature eof (no CRC)\n" msgstr "predčasný koniec súboru (žiadne CRC)\n" -#: g10/armor.c:949 +#: g10/armor.c:950 #, c-format msgid "premature eof (in CRC)\n" msgstr "predčasný koniec súboru (v CRC)\n" -#: g10/armor.c:957 +#: g10/armor.c:958 #, c-format msgid "malformed CRC\n" msgstr "nesprávny formát CRC\n" -#: g10/armor.c:961 g10/armor.c:1529 +#: g10/armor.c:962 g10/armor.c:1530 #, fuzzy, c-format msgid "CRC error; %06lX - %06lX\n" msgstr "Chyba CRC; %06lx - %06lx\n" -#: g10/armor.c:981 +#: g10/armor.c:982 #, fuzzy, c-format msgid "premature eof (in trailer)\n" msgstr "predčasný koniec súboru (v pätičke)\n" -#: g10/armor.c:985 +#: g10/armor.c:986 #, c-format msgid "error in trailer line\n" msgstr "chyba v pätičke\n" -#: g10/armor.c:1305 +#: g10/armor.c:1306 #, c-format msgid "no valid OpenPGP data found.\n" msgstr "nenájdené žiadne platné dáta vo formáte OpenPGP.\n" -#: g10/armor.c:1310 +#: g10/armor.c:1311 #, c-format msgid "invalid armor: line longer than %d characters\n" msgstr "neplatné kódovanie ASCII: riadok je dlhší ako %d znakov\n" -#: g10/armor.c:1314 +#: g10/armor.c:1315 #, c-format msgid "" "quoted printable character in armor - probably a buggy MTA has been used\n" @@ -1887,24 +1887,24 @@ msgid "server uses an invalid certificate" msgstr "vytvoriť revokačný certifikát" -#: g10/call-dirmngr.c:462 g10/gpg.c:4458 +#: g10/call-dirmngr.c:462 g10/gpg.c:4478 #, fuzzy, c-format #| msgid "armor: %s\n" msgid "Note: %s\n" msgstr "ASCII kódovanie: %s\n" -#: g10/card-util.c:86 g10/card-util.c:366 g10/card-util.c:1918 +#: g10/card-util.c:86 g10/card-util.c:366 g10/card-util.c:1917 #, fuzzy, c-format msgid "OpenPGP card not available: %s\n" msgstr "tajný kľúč nie je dostupný" -#: g10/card-util.c:91 g10/card-util.c:1924 +#: g10/card-util.c:91 g10/card-util.c:1923 #, c-format msgid "OpenPGP card no. %s detected\n" msgstr "" -#: g10/card-util.c:97 g10/card-util.c:2253 g10/delkey.c:160 g10/keyedit.c:1423 -#: g10/keygen.c:4466 g10/revoke.c:214 g10/revoke.c:636 +#: g10/card-util.c:97 g10/card-util.c:2252 g10/delkey.c:160 g10/keyedit.c:1423 +#: g10/keygen.c:4520 g10/revoke.c:214 g10/revoke.c:636 #, fuzzy, c-format msgid "can't do this in batch mode\n" msgstr "nemožno previesť v dávkovom móde\n" @@ -1914,14 +1914,14 @@ msgid "This command is only available for version 2 cards\n" msgstr "Tento príkaz nie je v módoch %s dovolený.\n" -#: g10/card-util.c:107 scd/app-openpgp.c:2866 +#: g10/card-util.c:107 scd/app-openpgp.c:2869 #, fuzzy, c-format msgid "Reset Code not or not anymore available\n" msgstr "tajné časti kľúča nie sú dostupné\n" -#: g10/card-util.c:140 g10/card-util.c:1442 g10/card-util.c:1704 -#: g10/card-util.c:1796 g10/keyedit.c:394 g10/keyedit.c:415 g10/keyedit.c:429 -#: g10/keygen.c:1808 g10/keygen.c:1980 g10/keygen.c:2186 g10/keygen.c:2477 +#: g10/card-util.c:140 g10/card-util.c:1441 g10/card-util.c:1703 +#: g10/card-util.c:1795 g10/keyedit.c:394 g10/keyedit.c:415 g10/keyedit.c:429 +#: g10/keygen.c:1862 g10/keygen.c:2034 g10/keygen.c:2240 g10/keygen.c:2531 #: sm/certreqgen-ui.c:165 sm/certreqgen-ui.c:291 sm/certreqgen-ui.c:325 msgid "Your selection? " msgstr "Váš výber? " @@ -1972,13 +1972,13 @@ msgid "Error: Combined name too long (limit is %d characters).\n" msgstr "" -#: g10/card-util.c:826 +#: g10/card-util.c:825 #, fuzzy msgid "URL to retrieve public key: " msgstr "žiadny zodpovedajúci verejný kľúč: %s\n" -#: g10/card-util.c:920 g10/decrypt-data.c:509 g10/import.c:399 g10/import.c:746 -#: g10/import.c:798 dirmngr/crlcache.c:655 dirmngr/crlcache.c:660 +#: g10/card-util.c:919 g10/decrypt-data.c:509 g10/import.c:400 g10/import.c:747 +#: g10/import.c:799 dirmngr/crlcache.c:655 dirmngr/crlcache.c:660 #: dirmngr/crlcache.c:914 dirmngr/crlcache.c:920 dirmngr/dirmngr.c:1748 #: tools/gpgconf.c:483 tools/gpgconf.c:529 #, fuzzy, c-format @@ -1986,174 +1986,174 @@ msgid "error reading '%s': %s\n" msgstr "chyba pri čítaní `%s': %s\n" -#: g10/card-util.c:953 g10/decrypt-data.c:512 g10/export.c:2467 +#: g10/card-util.c:952 g10/decrypt-data.c:512 g10/export.c:2586 #: dirmngr/crlcache.c:925 #, fuzzy, c-format msgid "error writing '%s': %s\n" msgstr "chyba pri zápise súboru kľúčov (keyring) `%s': %s\n" -#: g10/card-util.c:980 +#: g10/card-util.c:979 msgid "Login data (account name): " msgstr "" -#: g10/card-util.c:1018 +#: g10/card-util.c:1017 msgid "Private DO data: " msgstr "" -#: g10/card-util.c:1103 +#: g10/card-util.c:1102 #, fuzzy msgid "Language preferences: " msgstr "aktualizovať predvoľby" -#: g10/card-util.c:1111 +#: g10/card-util.c:1110 #, fuzzy msgid "Error: invalid length of preference string.\n" msgstr "neplatný znak v reťazci s predvoľbami\n" -#: g10/card-util.c:1120 +#: g10/card-util.c:1119 #, fuzzy msgid "Error: invalid characters in preference string.\n" msgstr "neplatný znak v reťazci s predvoľbami\n" -#: g10/card-util.c:1142 +#: g10/card-util.c:1141 msgid "Salutation (M = Mr., F = Ms., or space): " msgstr "" -#: g10/card-util.c:1156 +#: g10/card-util.c:1155 #, fuzzy msgid "Error: invalid response.\n" msgstr "chyba: neplatný odtlačok\n" -#: g10/card-util.c:1178 +#: g10/card-util.c:1177 #, fuzzy msgid "CA fingerprint: " msgstr "vypísať fingerprint" -#: g10/card-util.c:1201 +#: g10/card-util.c:1200 #, fuzzy msgid "Error: invalid formatted fingerprint.\n" msgstr "chyba: neplatný odtlačok\n" -#: g10/card-util.c:1252 +#: g10/card-util.c:1251 #, fuzzy, c-format msgid "key operation not possible: %s\n" msgstr "Vytvorenie kľúča sa nepodarilo: %s\n" -#: g10/card-util.c:1253 +#: g10/card-util.c:1252 #, fuzzy msgid "not an OpenPGP card" msgstr "nenájdené žiadne platné dáta vo formáte OpenPGP.\n" -#: g10/card-util.c:1266 g10/keygen.c:4486 g10/keygen.c:5562 +#: g10/card-util.c:1265 g10/keygen.c:4540 g10/keygen.c:5616 #, fuzzy, c-format msgid "error getting current key info: %s\n" msgstr "chyba pri zápise do súboru tajných kľúčov `%s': %s\n" -#: g10/card-util.c:1351 +#: g10/card-util.c:1350 msgid "Replace existing key? (y/N) " msgstr "" -#: g10/card-util.c:1368 +#: g10/card-util.c:1367 msgid "" "Note: There is no guarantee that the card supports the requested size.\n" " If the key generation does not succeed, please check the\n" " documentation of your card to see what sizes are allowed.\n" msgstr "" -#: g10/card-util.c:1390 g10/keygen.c:2363 sm/certreqgen-ui.c:179 +#: g10/card-util.c:1389 g10/keygen.c:2417 sm/certreqgen-ui.c:179 #, fuzzy, c-format msgid "What keysize do you want? (%u) " msgstr "Akú veľkosť kľúča si prajete? (1024) " -#: g10/card-util.c:1400 g10/keygen.c:2286 g10/keygen.c:2318 +#: g10/card-util.c:1399 g10/keygen.c:2340 g10/keygen.c:2372 #: sm/certreqgen-ui.c:194 #, c-format msgid "rounded up to %u bits\n" msgstr "zaokrúhlené na %u bitov\n" -#: g10/card-util.c:1408 g10/keygen.c:2371 sm/certreqgen-ui.c:184 +#: g10/card-util.c:1407 g10/keygen.c:2425 sm/certreqgen-ui.c:184 #, c-format msgid "%s keysizes must be in the range %u-%u\n" msgstr "" -#: g10/card-util.c:1427 +#: g10/card-util.c:1426 msgid "Changing card key attribute for: " msgstr "" -#: g10/card-util.c:1429 +#: g10/card-util.c:1428 #, fuzzy msgid "Signature key\n" msgstr "Platnosť podpisu vypršala %s\n" -#: g10/card-util.c:1431 +#: g10/card-util.c:1430 #, fuzzy msgid "Encryption key\n" msgstr " (%d) RSA (len na šifrovanie)\n" -#: g10/card-util.c:1433 +#: g10/card-util.c:1432 msgid "Authentication key\n" msgstr "" -#: g10/card-util.c:1435 g10/keygen.c:1926 sm/certreqgen-ui.c:157 +#: g10/card-util.c:1434 g10/keygen.c:1980 sm/certreqgen-ui.c:157 msgid "Please select what kind of key you want:\n" msgstr "Prosím, vyberte druh kľúča, ktorý chcete:\n" -#: g10/card-util.c:1436 sm/certreqgen-ui.c:158 +#: g10/card-util.c:1435 sm/certreqgen-ui.c:158 #, fuzzy, c-format msgid " (%d) RSA\n" msgstr " (%d) RSA (len na podpis)\n" -#: g10/card-util.c:1437 +#: g10/card-util.c:1436 #, fuzzy, c-format msgid " (%d) ECC\n" msgstr " (%d) DSA a ElGamal (implicitný)\n" -#: g10/card-util.c:1449 g10/card-util.c:1716 g10/card-util.c:1816 -#: g10/keyedit.c:900 g10/keygen.c:1834 g10/keygen.c:1862 g10/keygen.c:1987 -#: g10/keygen.c:2222 g10/keygen.c:2505 g10/revoke.c:838 +#: g10/card-util.c:1448 g10/card-util.c:1715 g10/card-util.c:1815 +#: g10/keyedit.c:900 g10/keygen.c:1888 g10/keygen.c:1916 g10/keygen.c:2041 +#: g10/keygen.c:2276 g10/keygen.c:2559 g10/revoke.c:838 msgid "Invalid selection.\n" msgstr "Neplatný výber.\n" -#: g10/card-util.c:1522 +#: g10/card-util.c:1521 #, c-format msgid "The card will now be re-configured to generate a key of %u bits\n" msgstr "" -#: g10/card-util.c:1527 +#: g10/card-util.c:1526 #, c-format msgid "The card will now be re-configured to generate a key of type: %s\n" msgstr "" -#: g10/card-util.c:1563 +#: g10/card-util.c:1562 #, fuzzy, c-format msgid "error changing key attribute for key %d: %s\n" msgstr "chyba pri posielaní na `%s': %s\n" -#: g10/card-util.c:1579 g10/card-util.c:2106 +#: g10/card-util.c:1578 g10/card-util.c:2105 #, fuzzy, c-format msgid "error getting card info: %s\n" msgstr "chyba pri zápise do súboru tajných kľúčov `%s': %s\n" -#: g10/card-util.c:1585 g10/card-util.c:1930 g10/card-util.c:2112 +#: g10/card-util.c:1584 g10/card-util.c:1929 g10/card-util.c:2111 #, fuzzy, c-format #| msgid "This command is not allowed while in %s mode.\n" msgid "This command is not supported by this card\n" msgstr "Tento príkaz nie je v módoch %s dovolený.\n" -#: g10/card-util.c:1631 +#: g10/card-util.c:1630 msgid "Make off-card backup of encryption key? (Y/n) " msgstr "" -#: g10/card-util.c:1645 +#: g10/card-util.c:1644 #, fuzzy, c-format msgid "Note: keys are already stored on the card!\n" msgstr "preskočené: tajný kľúč je už v databáze\n" -#: g10/card-util.c:1648 +#: g10/card-util.c:1647 msgid "Replace existing keys? (y/N) " msgstr "" -#: g10/card-util.c:1660 +#: g10/card-util.c:1659 #, c-format msgid "" "Please note that the factory settings of the PINs are\n" @@ -2161,160 +2161,160 @@ "You should change them using the command --change-pin\n" msgstr "" -#: g10/card-util.c:1695 +#: g10/card-util.c:1694 #, fuzzy msgid "Please select the type of key to generate:\n" msgstr "Prosím, vyberte druh kľúča, ktorý chcete:\n" -#: g10/card-util.c:1697 g10/card-util.c:1787 +#: g10/card-util.c:1696 g10/card-util.c:1786 #, fuzzy msgid " (1) Signature key\n" msgstr "Platnosť podpisu vypršala %s\n" -#: g10/card-util.c:1698 g10/card-util.c:1789 +#: g10/card-util.c:1697 g10/card-util.c:1788 #, fuzzy msgid " (2) Encryption key\n" msgstr " (%d) RSA (len na šifrovanie)\n" -#: g10/card-util.c:1699 g10/card-util.c:1791 +#: g10/card-util.c:1698 g10/card-util.c:1790 msgid " (3) Authentication key\n" msgstr "" -#: g10/card-util.c:1784 +#: g10/card-util.c:1783 #, fuzzy msgid "Please select where to store the key:\n" msgstr "Prosím výberte dôvod na revokáciu:\n" -#: g10/card-util.c:1830 +#: g10/card-util.c:1829 #, fuzzy, c-format msgid "KEYTOCARD failed: %s\n" msgstr "aktualizácia zlyhala: %s\n" -#: g10/card-util.c:1935 +#: g10/card-util.c:1934 #, fuzzy, c-format msgid "Note: This command destroys all keys stored on the card!\n" msgstr "preskočené: tajný kľúč je už v databáze\n" -#: g10/card-util.c:1938 +#: g10/card-util.c:1937 #, fuzzy msgid "Continue? (y/N) " msgstr "Skutočne podpísať? " -#: g10/card-util.c:1943 +#: g10/card-util.c:1942 msgid "Really do a factory reset? (enter \"yes\") " msgstr "" -#: g10/card-util.c:2129 +#: g10/card-util.c:2128 #, fuzzy, c-format msgid "error for setup KDF: %s\n" msgstr "chyba pri čítaní `%s': %s\n" -#: g10/card-util.c:2158 g10/keyedit.c:1260 +#: g10/card-util.c:2157 g10/keyedit.c:1260 msgid "quit this menu" msgstr "ukončiť toto menu" -#: g10/card-util.c:2160 +#: g10/card-util.c:2159 #, fuzzy msgid "show admin commands" msgstr "konfliktné príkazy\n" -#: g10/card-util.c:2161 g10/keyedit.c:1263 +#: g10/card-util.c:2160 g10/keyedit.c:1263 msgid "show this help" msgstr "ukázať túto pomoc" -#: g10/card-util.c:2163 +#: g10/card-util.c:2162 #, fuzzy msgid "list all available data" msgstr "Kľúč k dispozícii na: " -#: g10/card-util.c:2166 +#: g10/card-util.c:2165 msgid "change card holder's name" msgstr "" -#: g10/card-util.c:2167 +#: g10/card-util.c:2166 msgid "change URL to retrieve key" msgstr "" -#: g10/card-util.c:2168 +#: g10/card-util.c:2167 msgid "fetch the key specified in the card URL" msgstr "" -#: g10/card-util.c:2169 +#: g10/card-util.c:2168 #, fuzzy msgid "change the login name" msgstr "zmeniť dobu platnosti" -#: g10/card-util.c:2170 +#: g10/card-util.c:2169 #, fuzzy msgid "change the language preferences" msgstr "zmeniť dôveryhodnosť vlastníka kľúča" -#: g10/card-util.c:2171 +#: g10/card-util.c:2170 msgid "change card holder's salutation" msgstr "" -#: g10/card-util.c:2173 +#: g10/card-util.c:2172 #, fuzzy msgid "change a CA fingerprint" msgstr "vypísať fingerprint" -#: g10/card-util.c:2174 +#: g10/card-util.c:2173 msgid "toggle the signature force PIN flag" msgstr "" -#: g10/card-util.c:2175 +#: g10/card-util.c:2174 #, fuzzy msgid "generate new keys" msgstr "vytvoriť nový pár kľúčov" -#: g10/card-util.c:2176 +#: g10/card-util.c:2175 msgid "menu to change or unblock the PIN" msgstr "" -#: g10/card-util.c:2177 +#: g10/card-util.c:2176 msgid "verify the PIN and list all data" msgstr "" -#: g10/card-util.c:2178 +#: g10/card-util.c:2177 msgid "unblock the PIN using a Reset Code" msgstr "" -#: g10/card-util.c:2179 +#: g10/card-util.c:2178 msgid "destroy all keys and data" msgstr "" -#: g10/card-util.c:2180 +#: g10/card-util.c:2179 #, fuzzy #| msgid "|NAME|use NAME as default recipient" msgid "setup KDF for PIN authentication" msgstr "|MENO|použiť MENO ako implicitného adresáta" -#: g10/card-util.c:2181 +#: g10/card-util.c:2180 #, fuzzy #| msgid "change the ownertrust" msgid "change the key attribute" msgstr "zmeniť dôveryhodnosť vlastníka kľúča" -#: g10/card-util.c:2305 +#: g10/card-util.c:2304 msgid "gpg/card> " msgstr "" -#: g10/card-util.c:2346 +#: g10/card-util.c:2345 #, fuzzy msgid "Admin-only command\n" msgstr "konfliktné príkazy\n" -#: g10/card-util.c:2377 +#: g10/card-util.c:2376 #, fuzzy msgid "Admin commands are allowed\n" msgstr "konfliktné príkazy\n" -#: g10/card-util.c:2379 +#: g10/card-util.c:2378 #, fuzzy msgid "Admin commands are not allowed\n" msgstr "zapisujem tajný kľúč do `%s'\n" -#: g10/card-util.c:2482 g10/keyedit.c:2229 +#: g10/card-util.c:2481 g10/keyedit.c:2229 msgid "Invalid command (try \"help\")\n" msgstr "Neplatný príkaz (skúste \"help\")\n" @@ -2323,22 +2323,22 @@ msgid "--output doesn't work for this command\n" msgstr "--output pre tento príkaz nefunguje\n" -#: g10/decrypt.c:247 g10/gpg.c:5155 g10/keyring.c:399 g10/keyring.c:750 +#: g10/decrypt.c:247 g10/gpg.c:5175 g10/keyring.c:399 g10/keyring.c:750 #, fuzzy, c-format #| msgid "can't open `%s'\n" msgid "can't open '%s'\n" msgstr "nemožno otvoriť `%s'\n" -#: g10/delkey.c:83 g10/export.c:1947 g10/export.c:2230 g10/export.c:2351 -#: g10/getkey.c:2108 g10/gpg.c:5100 g10/keyedit.c:1445 g10/keyedit.c:2335 +#: g10/delkey.c:83 g10/export.c:2035 g10/export.c:2349 g10/export.c:2470 +#: g10/getkey.c:2108 g10/gpg.c:5120 g10/keyedit.c:1445 g10/keyedit.c:2335 #: g10/keyedit.c:2637 g10/keyedit.c:4600 g10/keylist.c:693 g10/keyserver.c:1092 #: g10/revoke.c:230 g10/tofu.c:2165 #, fuzzy, c-format msgid "key \"%s\" not found: %s\n" msgstr "kľúč `%s' nebol nájdený: %s\n" -#: g10/delkey.c:92 g10/export.c:2015 g10/getkey.c:2116 g10/getkey.c:4517 -#: g10/gpg.c:5109 g10/keyedit.c:2308 g10/keyserver.c:1110 g10/revoke.c:236 +#: g10/delkey.c:92 g10/export.c:2103 g10/getkey.c:2116 g10/getkey.c:4517 +#: g10/gpg.c:5129 g10/keyedit.c:2308 g10/keyserver.c:1110 g10/revoke.c:236 #: g10/revoke.c:663 g10/tofu.c:2173 #, c-format msgid "error reading keyblock: %s\n" @@ -2460,13 +2460,13 @@ msgid "WARNING: '%s' is an empty file\n" msgstr "VAROVANIE: súbor `%s' je prázdny\n" -#: g10/encrypt.c:446 g10/encrypt.c:521 g10/decrypt-data.c:266 g10/gpg.c:3959 -#: g10/gpg.c:3999 sm/decrypt.c:826 sm/encrypt.c:416 sm/gpgsm.c:1609 +#: g10/encrypt.c:446 g10/encrypt.c:521 g10/decrypt-data.c:266 g10/gpg.c:3979 +#: g10/gpg.c:4019 sm/decrypt.c:826 sm/encrypt.c:416 sm/gpgsm.c:1609 #, fuzzy, c-format msgid "cipher algorithm '%s' may not be used in %s mode\n" msgstr "nemôžete použiť šifrovací algoritmus \"%s\" v móde %s\n" -#: g10/encrypt.c:455 g10/gpg.c:3965 g10/gpg.c:4011 g10/sig-check.c:175 +#: g10/encrypt.c:455 g10/gpg.c:3985 g10/gpg.c:4031 g10/sig-check.c:175 #: g10/sign.c:391 sm/gpgsm.c:1619 sm/gpgsm.c:1629 sm/sign.c:478 sm/verify.c:506 #, fuzzy, c-format msgid "digest algorithm '%s' may not be used in %s mode\n" @@ -2587,69 +2587,75 @@ msgid "WARNING: unable to remove temp directory '%s': %s\n" msgstr "VAROVANIE: nemôžem vymazať dočasný adresár `%s': %s\n" -#: g10/export.c:119 +#: g10/export.c:124 #, fuzzy msgid "export signatures that are marked as local-only" msgstr "" "\n" "Podpis bude označený ako neodvolateľný (non-revocable).\n" -#: g10/export.c:121 +#: g10/export.c:126 msgid "export attribute user IDs (generally photo IDs)" msgstr "" -#: g10/export.c:123 +#: g10/export.c:128 #, fuzzy msgid "export revocation keys marked as \"sensitive\"" msgstr "žiadne revokačné kľúče pre `%s' nenájdené\n" -#: g10/export.c:125 +#: g10/export.c:130 #, fuzzy msgid "remove unusable parts from key during export" msgstr "nepoužiteľný tajný kľúč" -#: g10/export.c:127 +#: g10/export.c:132 msgid "remove as much as possible from key during export" msgstr "" -#: g10/export.c:133 +#: g10/export.c:138 +#, fuzzy +#| msgid "generate a revocation certificate" +msgid "export only revocation certificates" +msgstr "vytvoriť revokačný certifikát" + +#: g10/export.c:141 msgid "use the GnuPG key backup format" msgstr "" -#: g10/export.c:1291 +#: g10/export.c:1306 #, fuzzy #| msgid "%s: skipped: %s\n" msgid " - skipped" msgstr "%s: preskočené: %s\n" -#: g10/export.c:1324 g10/import.c:2085 g10/openfile.c:200 g10/openfile.c:294 +#: g10/export.c:1339 g10/import.c:2089 g10/openfile.c:200 g10/openfile.c:294 #: g10/sign.c:1012 g10/sign.c:1326 #, fuzzy, c-format #| msgid "writing to `%s'\n" msgid "writing to '%s'\n" msgstr "zapisujem do '%s'\n" -#: g10/export.c:1769 +#: g10/export.c:1784 #, fuzzy, c-format msgid "key %s: key material on-card - skipped\n" msgstr "kľúč %08lX: podpis subkľúča na zlom mieste - preskočené \n" -#: g10/export.c:1964 +#: g10/export.c:2052 #, fuzzy, c-format msgid "exporting secret keys not allowed\n" msgstr "zapisujem tajný kľúč do `%s'\n" -#: g10/export.c:2041 +#: g10/export.c:2129 #, fuzzy, c-format msgid "key %s: PGP 2.x style key - skipped\n" msgstr "kľúč %08lX: PGP 2.x kľúč - preskočené\n" -#: g10/export.c:2135 +#: g10/export.c:2254 #, c-format msgid "WARNING: nothing exported\n" msgstr "VAROVANIE: nič nebolo vyexportované\n" -#: g10/export.c:2432 g10/plaintext.c:153 g10/plaintext.c:162 +#: g10/export.c:2551 g10/plaintext.c:153 g10/plaintext.c:162 #: g10/plaintext.c:168 g10/plaintext.c:191 #, fuzzy, c-format #| msgid "error creating `%s': %s\n" @@ -2720,301 +2726,301 @@ msgid "using subkey %s instead of primary key %s\n" msgstr "používam sekundárny kľúč %08lX namiesto primárneho kľúča %08lX\n" -#: g10/getkey.c:4446 g10/gpg.c:2137 +#: g10/getkey.c:4446 g10/gpg.c:2146 #, fuzzy, c-format msgid "valid values for option '%s':\n" msgstr "neplatný parameter pre import\n" -#: g10/gpg.c:443 sm/gpgsm.c:212 +#: g10/gpg.c:444 sm/gpgsm.c:212 #, fuzzy msgid "make a signature" msgstr "vytvoriť podpis oddelený od dokumentu" -#: g10/gpg.c:444 +#: g10/gpg.c:445 #, fuzzy msgid "make a clear text signature" msgstr "|[súbor]|vytvoriť podpis v čitateľnom dokumente" -#: g10/gpg.c:446 sm/gpgsm.c:214 +#: g10/gpg.c:447 sm/gpgsm.c:214 msgid "make a detached signature" msgstr "vytvoriť podpis oddelený od dokumentu" -#: g10/gpg.c:447 sm/gpgsm.c:215 +#: g10/gpg.c:448 sm/gpgsm.c:215 msgid "encrypt data" msgstr "šifrovať dáta" -#: g10/gpg.c:449 +#: g10/gpg.c:450 msgid "encryption only with symmetric cipher" msgstr "šifrovanie len so symetrickou šifrou" -#: g10/gpg.c:451 sm/gpgsm.c:217 +#: g10/gpg.c:452 sm/gpgsm.c:217 msgid "decrypt data (default)" msgstr "dešifrovať dáta (implicitne)" -#: g10/gpg.c:453 sm/gpgsm.c:218 +#: g10/gpg.c:454 sm/gpgsm.c:218 msgid "verify a signature" msgstr "verifikovať podpis" -#: g10/gpg.c:455 sm/gpgsm.c:219 +#: g10/gpg.c:456 sm/gpgsm.c:219 msgid "list keys" msgstr "vypísať zoznam kľúčov" -#: g10/gpg.c:457 +#: g10/gpg.c:458 msgid "list keys and signatures" msgstr "vypísať zoznam kľúčov a podpisov" -#: g10/gpg.c:460 +#: g10/gpg.c:461 #, fuzzy msgid "list and check key signatures" msgstr "skontrolovať podpisy kľúčov" -#: g10/gpg.c:462 sm/gpgsm.c:224 +#: g10/gpg.c:463 sm/gpgsm.c:224 msgid "list keys and fingerprints" msgstr "vypísať zoznam kľúčov a fingerprintov" -#: g10/gpg.c:463 sm/gpgsm.c:222 +#: g10/gpg.c:464 sm/gpgsm.c:222 msgid "list secret keys" msgstr "vypísať zoznam tajných kľúčov" -#: g10/gpg.c:465 sm/gpgsm.c:225 +#: g10/gpg.c:466 sm/gpgsm.c:225 msgid "generate a new key pair" msgstr "vytvoriť nový pár kľúčov" -#: g10/gpg.c:468 +#: g10/gpg.c:469 #, fuzzy #| msgid "generate a new key pair" msgid "quickly generate a new key pair" msgstr "vytvoriť nový pár kľúčov" -#: g10/gpg.c:471 +#: g10/gpg.c:472 #, fuzzy #| msgid "generate a new key pair" msgid "quickly add a new user-id" msgstr "vytvoriť nový pár kľúčov" -#: g10/gpg.c:476 +#: g10/gpg.c:477 #, fuzzy #| msgid "generate a new key pair" msgid "quickly revoke a user-id" msgstr "vytvoriť nový pár kľúčov" -#: g10/gpg.c:479 +#: g10/gpg.c:480 #, fuzzy #| msgid "generate a new key pair" msgid "quickly set a new expiration date" msgstr "vytvoriť nový pár kľúčov" -#: g10/gpg.c:482 +#: g10/gpg.c:483 msgid "full featured key pair generation" msgstr "" -#: g10/gpg.c:485 +#: g10/gpg.c:486 msgid "generate a revocation certificate" msgstr "vytvoriť revokačný certifikát" -#: g10/gpg.c:488 sm/gpgsm.c:228 +#: g10/gpg.c:489 sm/gpgsm.c:228 msgid "remove keys from the public keyring" msgstr "odstrániť kľúč zo súboru verejných kľúčov" -#: g10/gpg.c:490 +#: g10/gpg.c:491 msgid "remove keys from the secret keyring" msgstr "odstrániť kľúč zo súboru tajných kľúčov" -#: g10/gpg.c:492 +#: g10/gpg.c:493 #, fuzzy #| msgid "sign a key" msgid "quickly sign a key" msgstr "podpísať kľúč" -#: g10/gpg.c:494 +#: g10/gpg.c:495 #, fuzzy #| msgid "sign a key locally" msgid "quickly sign a key locally" msgstr "podpísať kľúč lokálne" -#: g10/gpg.c:496 +#: g10/gpg.c:497 #, fuzzy #| msgid "generate a new key pair" msgid "quickly revoke a key signature" msgstr "vytvoriť nový pár kľúčov" -#: g10/gpg.c:497 +#: g10/gpg.c:498 msgid "sign a key" msgstr "podpísať kľúč" -#: g10/gpg.c:498 +#: g10/gpg.c:499 msgid "sign a key locally" msgstr "podpísať kľúč lokálne" -#: g10/gpg.c:499 +#: g10/gpg.c:500 msgid "sign or edit a key" msgstr "podpísať alebo modifikovať kľúč" -#: g10/gpg.c:501 sm/gpgsm.c:246 +#: g10/gpg.c:502 sm/gpgsm.c:246 #, fuzzy msgid "change a passphrase" msgstr "zmeniť heslo" -#: g10/gpg.c:505 +#: g10/gpg.c:506 msgid "export keys" msgstr "exportovať kľúče" -#: g10/gpg.c:506 +#: g10/gpg.c:507 msgid "export keys to a keyserver" msgstr "exportovať kľúče na server kľúčov" -#: g10/gpg.c:507 +#: g10/gpg.c:508 msgid "import keys from a keyserver" msgstr "importovať kľúče zo servera kľúčov" -#: g10/gpg.c:510 +#: g10/gpg.c:511 msgid "search for keys on a keyserver" msgstr "vyhľadať kľúče na serveri kľúčov" -#: g10/gpg.c:512 +#: g10/gpg.c:513 msgid "update all keys from a keyserver" msgstr "aktualizovať všetky kľúče zo servera kľúčov" -#: g10/gpg.c:520 +#: g10/gpg.c:521 msgid "import/merge keys" msgstr "importovať/zlúčiť kľúče" -#: g10/gpg.c:523 +#: g10/gpg.c:524 msgid "print the card status" msgstr "" -#: g10/gpg.c:524 +#: g10/gpg.c:525 msgid "change data on a card" msgstr "" -#: g10/gpg.c:526 +#: g10/gpg.c:527 msgid "change a card's PIN" msgstr "" -#: g10/gpg.c:538 +#: g10/gpg.c:539 msgid "update the trust database" msgstr "aktualizovať databázu dôvery" -#: g10/gpg.c:548 +#: g10/gpg.c:549 #, fuzzy msgid "print message digests" msgstr "|algo [súbory]|vypíš hash" -#: g10/gpg.c:552 sm/gpgsm.c:241 +#: g10/gpg.c:553 sm/gpgsm.c:241 msgid "run in server mode" msgstr "" -#: g10/gpg.c:554 +#: g10/gpg.c:555 msgid "|VALUE|set the TOFU policy for a key" msgstr "" -#: g10/gpg.c:594 +#: g10/gpg.c:595 msgid "|NAME|use NAME as default secret key" msgstr "|MENO|použi MENO ako implicitný tajný kľúč" -#: g10/gpg.c:596 sm/gpgsm.c:332 +#: g10/gpg.c:597 sm/gpgsm.c:332 #, fuzzy msgid "|NAME|encrypt to user ID NAME as well" msgstr "|MENO|šifrovať pre MENO" -#: g10/gpg.c:604 +#: g10/gpg.c:605 msgid "|SPEC|set up email aliases" msgstr "" -#: g10/gpg.c:616 +#: g10/gpg.c:617 msgid "use strict OpenPGP behavior" msgstr "" -#: g10/gpg.c:641 kbx/kbxutil.c:90 sm/gpgsm.c:412 tools/gpgconf.c:112 +#: g10/gpg.c:642 kbx/kbxutil.c:90 sm/gpgsm.c:412 tools/gpgconf.c:112 msgid "do not make any changes" msgstr "nevykonať žiadne zmeny" -#: g10/gpg.c:642 +#: g10/gpg.c:643 msgid "prompt before overwriting" msgstr "vyžiadať potvrdenie pred prepísaním" -#: g10/gpg.c:689 sm/gpgsm.c:304 +#: g10/gpg.c:690 sm/gpgsm.c:304 msgid "Options controlling the input" msgstr "" -#: g10/gpg.c:707 sm/gpgsm.c:314 +#: g10/gpg.c:708 sm/gpgsm.c:314 msgid "Options controlling the output" msgstr "" -#: g10/gpg.c:709 sm/gpgsm.c:316 +#: g10/gpg.c:710 sm/gpgsm.c:316 msgid "create ascii armored output" msgstr "vytvor výstup zakódovaný pomocou ASCII" -#: g10/gpg.c:713 g10/gpgv.c:82 sm/gpgsm.c:321 +#: g10/gpg.c:714 g10/gpgv.c:82 sm/gpgsm.c:321 #, fuzzy msgid "|FILE|write output to FILE" msgstr "|SÚBOR|nahrať rozširujúci modul SÚBOR" -#: g10/gpg.c:726 +#: g10/gpg.c:727 msgid "use canonical text mode" msgstr "použiť kánonický textový mód" -#: g10/gpg.c:743 +#: g10/gpg.c:744 #, fuzzy msgid "|N|set compress level to N (0 disables)" msgstr "" "|N|nastaviť úroveň komprimácie N (0 - žiadna\n" " komprimácia)" -#: g10/gpg.c:750 sm/gpgsm.c:347 +#: g10/gpg.c:751 sm/gpgsm.c:347 msgid "Options controlling key import and export" msgstr "" -#: g10/gpg.c:753 +#: g10/gpg.c:754 msgid "|MECHANISMS|use MECHANISMS to locate keys by mail address" msgstr "" -#: g10/gpg.c:756 +#: g10/gpg.c:757 #, fuzzy #| msgid "import keys from a keyserver" msgid "import missing key from a signature" msgstr "importovať kľúče zo servera kľúčov" -#: g10/gpg.c:761 +#: g10/gpg.c:762 #, fuzzy msgid "include the public key in signatures" msgstr "skontrolovať podpisy kľúčov" -#: g10/gpg.c:764 sm/gpgsm.c:350 +#: g10/gpg.c:765 sm/gpgsm.c:350 msgid "disable all access to the dirmngr" msgstr "" -#: g10/gpg.c:776 sm/gpgsm.c:357 +#: g10/gpg.c:777 sm/gpgsm.c:357 msgid "Options controlling key listings" msgstr "" -#: g10/gpg.c:805 sm/gpgsm.c:324 +#: g10/gpg.c:806 sm/gpgsm.c:324 #, fuzzy #| msgid "list secret keys" msgid "Options to specify keys" msgstr "vypísať zoznam tajných kľúčov" -#: g10/gpg.c:807 sm/gpgsm.c:326 +#: g10/gpg.c:808 sm/gpgsm.c:326 #, fuzzy msgid "|USER-ID|encrypt for USER-ID" msgstr "|MENO|šifrovať pre MENO" -#: g10/gpg.c:815 sm/gpgsm.c:328 +#: g10/gpg.c:816 sm/gpgsm.c:328 #, fuzzy msgid "|USER-ID|use USER-ID to sign or decrypt" msgstr "" "použiť toto id užívateľa na podpísanie\n" " alebo dešifrovanie" -#: g10/gpg.c:866 sm/gpgsm.c:396 +#: g10/gpg.c:867 sm/gpgsm.c:396 msgid "Options for unattended use" msgstr "" -#: g10/gpg.c:885 sm/gpgsm.c:408 dirmngr/dirmngr.c:294 +#: g10/gpg.c:886 sm/gpgsm.c:408 dirmngr/dirmngr.c:294 msgid "Other options" msgstr "" -#: g10/gpg.c:953 sm/gpgsm.c:440 +#: g10/gpg.c:955 sm/gpgsm.c:440 msgid "" "@\n" "(See the man page for a complete listing of all commands and options)\n" @@ -3023,7 +3029,7 @@ "(Použite manuálové stránky pre kompletný zoznam všetkých príkazov a " "možností)\n" -#: g10/gpg.c:956 +#: g10/gpg.c:958 #, fuzzy #| msgid "" #| "@\n" @@ -3053,13 +3059,13 @@ " --list-keys [mená] vypísať kľúče\n" " --fingerprint [mená] vypísať fingerprinty\n" -#: g10/gpg.c:1130 +#: g10/gpg.c:1139 #, fuzzy #| msgid "Usage: gpg [options] [files] (-h for help)" msgid "Usage: @GPG@ [options] [files] (-h for help)" msgstr "Použitie: gpg [možnosti] [súbory] (-h pre pomoc)" -#: g10/gpg.c:1133 +#: g10/gpg.c:1142 #, fuzzy #| msgid "" #| "Syntax: gpg [options] [files]\n" @@ -3074,7 +3080,7 @@ "podpísať, overiť, šifrovať alebo dešifrovať\n" "implicitné operácie závisia od vstupných dát\n" -#: g10/gpg.c:1144 sm/gpgsm.c:624 +#: g10/gpg.c:1153 sm/gpgsm.c:624 msgid "" "\n" "Supported algorithms:\n" @@ -3082,558 +3088,558 @@ "\n" "Podporované algoritmy:\n" -#: g10/gpg.c:1147 +#: g10/gpg.c:1156 msgid "Pubkey: " msgstr "Verejné kľúče: " -#: g10/gpg.c:1154 g10/keyedit.c:3338 +#: g10/gpg.c:1163 g10/keyedit.c:3338 msgid "Cipher: " msgstr "Šifry: " -#: g10/gpg.c:1161 +#: g10/gpg.c:1170 msgid "Hash: " msgstr "Hash: " -#: g10/gpg.c:1168 g10/keyedit.c:3404 +#: g10/gpg.c:1177 g10/keyedit.c:3404 msgid "Compression: " msgstr "Kompresia: " -#: g10/gpg.c:1241 sm/gpgsm.c:698 +#: g10/gpg.c:1250 sm/gpgsm.c:698 #, fuzzy, c-format msgid "usage: %s [options] %s\n" msgstr "použitie: gpg [možnosti] " -#: g10/gpg.c:1436 sm/gpgsm.c:791 +#: g10/gpg.c:1445 sm/gpgsm.c:791 #, c-format msgid "conflicting commands\n" msgstr "konfliktné príkazy\n" -#: g10/gpg.c:1454 +#: g10/gpg.c:1463 #, fuzzy, c-format msgid "no = sign found in group definition '%s'\n" msgstr "no = podpis nájdený v definícii skupiny \"%s\"\n" -#: g10/gpg.c:1652 +#: g10/gpg.c:1661 #, fuzzy, c-format msgid "WARNING: unsafe ownership on homedir '%s'\n" msgstr "VAROVANIE: vlastníctvo pre %s nastavené nebezpečne \"%s\"\n" -#: g10/gpg.c:1655 +#: g10/gpg.c:1664 #, fuzzy, c-format msgid "WARNING: unsafe ownership on configuration file '%s'\n" msgstr "VAROVANIE: vlastníctvo pre %s nastavené nebezpečne \"%s\"\n" -#: g10/gpg.c:1658 +#: g10/gpg.c:1667 #, fuzzy, c-format msgid "WARNING: unsafe ownership on extension '%s'\n" msgstr "VAROVANIE: vlastníctvo pre %s nastavené nebezpečne \"%s\"\n" -#: g10/gpg.c:1664 +#: g10/gpg.c:1673 #, fuzzy, c-format msgid "WARNING: unsafe permissions on homedir '%s'\n" msgstr "VAROVANIE: prístupové práva pre %s nie sú nastavené bezpečne \"%s\"\n" -#: g10/gpg.c:1667 +#: g10/gpg.c:1676 #, fuzzy, c-format msgid "WARNING: unsafe permissions on configuration file '%s'\n" msgstr "VAROVANIE: prístupové práva pre %s nie sú nastavené bezpečne \"%s\"\n" -#: g10/gpg.c:1670 +#: g10/gpg.c:1679 #, fuzzy, c-format msgid "WARNING: unsafe permissions on extension '%s'\n" msgstr "VAROVANIE: prístupové práva pre %s nie sú nastavené bezpečne \"%s\"\n" -#: g10/gpg.c:1676 +#: g10/gpg.c:1685 #, fuzzy, c-format msgid "WARNING: unsafe enclosing directory ownership on homedir '%s'\n" msgstr "VAROVANIE: vlastníctvo adresára %s nastavené nebezpečne \"%s\"\n" -#: g10/gpg.c:1679 +#: g10/gpg.c:1688 #, fuzzy, c-format msgid "" "WARNING: unsafe enclosing directory ownership on configuration file '%s'\n" msgstr "VAROVANIE: vlastníctvo adresára %s nastavené nebezpečne \"%s\"\n" -#: g10/gpg.c:1682 +#: g10/gpg.c:1691 #, fuzzy, c-format msgid "WARNING: unsafe enclosing directory ownership on extension '%s'\n" msgstr "VAROVANIE: vlastníctvo adresára %s nastavené nebezpečne \"%s\"\n" -#: g10/gpg.c:1688 +#: g10/gpg.c:1697 #, fuzzy, c-format msgid "WARNING: unsafe enclosing directory permissions on homedir '%s'\n" msgstr "" "VAROVANIE: prístupové práva adresára %s nie sú nastavené bezpečne \"%s\"\n" -#: g10/gpg.c:1691 +#: g10/gpg.c:1700 #, fuzzy, c-format msgid "" "WARNING: unsafe enclosing directory permissions on configuration file '%s'\n" msgstr "" "VAROVANIE: prístupové práva adresára %s nie sú nastavené bezpečne \"%s\"\n" -#: g10/gpg.c:1694 +#: g10/gpg.c:1703 #, fuzzy, c-format msgid "WARNING: unsafe enclosing directory permissions on extension '%s'\n" msgstr "" "VAROVANIE: prístupové práva adresára %s nie sú nastavené bezpečne \"%s\"\n" -#: g10/gpg.c:1910 +#: g10/gpg.c:1919 #, fuzzy, c-format msgid "unknown configuration item '%s'\n" msgstr "neznáma položka konfigurácie \"%s\"\n" -#: g10/gpg.c:2009 +#: g10/gpg.c:2018 msgid "display photo IDs during key listings" msgstr "" -#: g10/gpg.c:2011 +#: g10/gpg.c:2020 #, fuzzy msgid "show key usage information during key listings" msgstr "V súbore tajných kľúčov chýba zodpovedajúci podpis\n" -#: g10/gpg.c:2013 +#: g10/gpg.c:2022 msgid "show policy URLs during signature listings" msgstr "" -#: g10/gpg.c:2015 +#: g10/gpg.c:2024 #, fuzzy msgid "show all notations during signature listings" msgstr "V súbore tajných kľúčov chýba zodpovedajúci podpis\n" -#: g10/gpg.c:2017 +#: g10/gpg.c:2026 msgid "show IETF standard notations during signature listings" msgstr "" -#: g10/gpg.c:2021 +#: g10/gpg.c:2030 msgid "show user-supplied notations during signature listings" msgstr "" -#: g10/gpg.c:2023 +#: g10/gpg.c:2032 #, fuzzy msgid "show preferred keyserver URLs during signature listings" msgstr "zadané URL pre podpisovú politiku je neplatné\n" -#: g10/gpg.c:2025 +#: g10/gpg.c:2034 msgid "show user ID validity during key listings" msgstr "" -#: g10/gpg.c:2027 +#: g10/gpg.c:2036 msgid "show revoked and expired user IDs in key listings" msgstr "" -#: g10/gpg.c:2029 +#: g10/gpg.c:2038 msgid "show revoked and expired subkeys in key listings" msgstr "" -#: g10/gpg.c:2031 +#: g10/gpg.c:2040 #, fuzzy msgid "show the keyring name in key listings" msgstr "ukáž v ktorom súbore kľúčov je vypísaný kľúč" -#: g10/gpg.c:2033 +#: g10/gpg.c:2042 #, fuzzy msgid "show expiration dates during signature listings" msgstr "V súbore tajných kľúčov chýba zodpovedajúci podpis\n" -#: g10/gpg.c:2148 +#: g10/gpg.c:2157 #, fuzzy, c-format msgid "unknown TOFU policy '%s'\n" msgstr "neznámy implicitný adresát `%s'\n" -#: g10/gpg.c:2150 +#: g10/gpg.c:2159 #, c-format msgid "(use \"help\" to list choices)\n" msgstr "" -#: g10/gpg.c:2240 g10/keyedit.c:1719 +#: g10/gpg.c:2249 g10/keyedit.c:1719 #, c-format msgid "This command is not allowed while in %s mode.\n" msgstr "Tento príkaz nie je v módoch %s dovolený.\n" -#: g10/gpg.c:2878 g10/gpg.c:3718 g10/gpg.c:3730 +#: g10/gpg.c:2896 g10/gpg.c:3736 g10/gpg.c:3748 #, fuzzy, c-format #| msgid "NOTE: %s is not for normal use!\n" msgid "Note: %s is not for normal use!\n" msgstr "POZNÁMKA: %s nie je pre normálne použitie!\n" -#: g10/gpg.c:3053 g10/gpg.c:3065 +#: g10/gpg.c:3071 g10/gpg.c:3083 #, fuzzy, c-format msgid "'%s' is not a valid signature expiration\n" msgstr "%s nie je platná znaková sada\n" -#: g10/gpg.c:3087 +#: g10/gpg.c:3105 #, fuzzy, c-format msgid "\"%s\" is not a proper mail address\n" msgstr "Neplatná e-mailová adresa\n" -#: g10/gpg.c:3119 sm/gpgsm.c:1121 +#: g10/gpg.c:3137 sm/gpgsm.c:1121 #, fuzzy, c-format msgid "invalid pinentry mode '%s'\n" msgstr "neplatný hashovací algoritmus `%s'\n" -#: g10/gpg.c:3125 sm/gpgsm.c:1127 +#: g10/gpg.c:3143 sm/gpgsm.c:1127 #, fuzzy, c-format msgid "invalid request origin '%s'\n" msgstr "neplatný parameter pre import\n" -#: g10/gpg.c:3179 +#: g10/gpg.c:3197 #, fuzzy, c-format msgid "'%s' is not a valid character set\n" msgstr "%s nie je platná znaková sada\n" -#: g10/gpg.c:3201 g10/gpg.c:3415 g10/keyedit.c:5338 +#: g10/gpg.c:3219 g10/gpg.c:3433 g10/keyedit.c:5338 #, fuzzy, c-format msgid "could not parse keyserver URL\n" msgstr "nemožno použiť URI servera kľúčov - chyba analýzy URI\n" -#: g10/gpg.c:3219 +#: g10/gpg.c:3237 #, fuzzy, c-format msgid "%s:%d: invalid keyserver options\n" msgstr "%s:%d: neplatný parameter pre export\n" -#: g10/gpg.c:3222 +#: g10/gpg.c:3240 #, fuzzy, c-format msgid "invalid keyserver options\n" msgstr "neplatný parameter pre export\n" -#: g10/gpg.c:3229 +#: g10/gpg.c:3247 #, c-format msgid "%s:%d: invalid import options\n" msgstr "%s:%d: neplatný parameter pre import\n" -#: g10/gpg.c:3232 +#: g10/gpg.c:3250 #, c-format msgid "invalid import options\n" msgstr "neplatný parameter pre import\n" -#: g10/gpg.c:3238 g10/gpg.c:3253 +#: g10/gpg.c:3256 g10/gpg.c:3271 #, fuzzy, c-format msgid "invalid filter option: %s\n" msgstr "neplatný parameter pre import\n" -#: g10/gpg.c:3244 +#: g10/gpg.c:3262 #, c-format msgid "%s:%d: invalid export options\n" msgstr "%s:%d: neplatný parameter pre export\n" -#: g10/gpg.c:3247 +#: g10/gpg.c:3265 #, c-format msgid "invalid export options\n" msgstr "neplatný parameter pre export\n" -#: g10/gpg.c:3259 +#: g10/gpg.c:3277 #, fuzzy, c-format msgid "%s:%d: invalid list options\n" msgstr "%s:%d: neplatný parameter pre import\n" -#: g10/gpg.c:3262 +#: g10/gpg.c:3280 #, fuzzy, c-format msgid "invalid list options\n" msgstr "neplatný parameter pre import\n" -#: g10/gpg.c:3270 +#: g10/gpg.c:3288 msgid "display photo IDs during signature verification" msgstr "" -#: g10/gpg.c:3272 +#: g10/gpg.c:3290 msgid "show policy URLs during signature verification" msgstr "" -#: g10/gpg.c:3274 +#: g10/gpg.c:3292 #, fuzzy msgid "show all notations during signature verification" msgstr "%s nie je platná znaková sada\n" -#: g10/gpg.c:3276 +#: g10/gpg.c:3294 msgid "show IETF standard notations during signature verification" msgstr "" -#: g10/gpg.c:3280 +#: g10/gpg.c:3298 msgid "show user-supplied notations during signature verification" msgstr "" -#: g10/gpg.c:3282 +#: g10/gpg.c:3300 #, fuzzy msgid "show preferred keyserver URLs during signature verification" msgstr "zadané URL pre podpisovú politiku je neplatné\n" -#: g10/gpg.c:3284 +#: g10/gpg.c:3302 #, fuzzy msgid "show user ID validity during signature verification" msgstr "%s nie je platná znaková sada\n" -#: g10/gpg.c:3286 +#: g10/gpg.c:3304 msgid "show revoked and expired user IDs in signature verification" msgstr "" -#: g10/gpg.c:3288 +#: g10/gpg.c:3306 #, fuzzy msgid "show only the primary user ID in signature verification" msgstr "%s nie je platná znaková sada\n" -#: g10/gpg.c:3290 +#: g10/gpg.c:3308 msgid "validate signatures with PKA data" msgstr "" -#: g10/gpg.c:3292 +#: g10/gpg.c:3310 msgid "elevate the trust of signatures with valid PKA data" msgstr "" -#: g10/gpg.c:3299 +#: g10/gpg.c:3317 #, fuzzy, c-format msgid "%s:%d: invalid verify options\n" msgstr "%s:%d: neplatný parameter pre export\n" -#: g10/gpg.c:3302 +#: g10/gpg.c:3320 #, fuzzy, c-format msgid "invalid verify options\n" msgstr "neplatný parameter pre export\n" -#: g10/gpg.c:3309 +#: g10/gpg.c:3327 #, c-format msgid "unable to set exec-path to %s\n" msgstr "nemožno nastaviť exec-path na %s\n" -#: g10/gpg.c:3513 +#: g10/gpg.c:3531 #, fuzzy, c-format msgid "%s:%d: invalid auto-key-locate list\n" msgstr "%s:%d: neplatný parameter pre export\n" -#: g10/gpg.c:3516 +#: g10/gpg.c:3534 #, c-format msgid "invalid auto-key-locate list\n" msgstr "" -#: g10/gpg.c:3700 sm/gpgsm.c:1492 +#: g10/gpg.c:3718 sm/gpgsm.c:1492 #, c-format msgid "WARNING: program may create a core file!\n" msgstr "VAROVANIE: program môže vytvoriť súbor core!\n" -#: g10/gpg.c:3711 +#: g10/gpg.c:3729 #, c-format msgid "WARNING: %s overrides %s\n" msgstr "VAROVANIE: %s prepíše %s\n" -#: g10/gpg.c:3720 +#: g10/gpg.c:3738 #, c-format msgid "%s not allowed with %s!\n" msgstr "Nie je dovolené používať %s s %s!\n" -#: g10/gpg.c:3723 +#: g10/gpg.c:3741 #, c-format msgid "%s makes no sense with %s!\n" msgstr "%s nedáva s %s zmysel!\n" -#: g10/gpg.c:3738 sm/gpgsm.c:1509 dirmngr/dirmngr.c:1205 +#: g10/gpg.c:3756 sm/gpgsm.c:1509 dirmngr/dirmngr.c:1205 #, c-format msgid "WARNING: running with faked system time: " msgstr "" -#: g10/gpg.c:3759 +#: g10/gpg.c:3777 #, fuzzy, c-format msgid "will not run with insecure memory due to %s\n" msgstr "zapisujem tajný kľúč do `%s'\n" -#: g10/gpg.c:3804 g10/gpg.c:3828 sm/gpgsm.c:1579 +#: g10/gpg.c:3824 g10/gpg.c:3848 sm/gpgsm.c:1579 #, c-format msgid "selected cipher algorithm is invalid\n" msgstr "vybraný šifrovací algoritmus je neplatný\n" -#: g10/gpg.c:3816 +#: g10/gpg.c:3836 #, fuzzy, c-format msgid "selected compression algorithm is invalid\n" msgstr "vybraný šifrovací algoritmus je neplatný\n" -#: g10/gpg.c:3822 +#: g10/gpg.c:3842 #, c-format msgid "selected certification digest algorithm is invalid\n" msgstr "vybraný hashovací algoritmus je neplatný\n" -#: g10/gpg.c:3837 +#: g10/gpg.c:3857 #, c-format msgid "completes-needed must be greater than 0\n" msgstr "položka completes-needed musí byť väčšia ako 0\n" -#: g10/gpg.c:3839 +#: g10/gpg.c:3859 #, c-format msgid "marginals-needed must be greater than 1\n" msgstr "položka marginals-needed musí byť väčšia ako 1\n" -#: g10/gpg.c:3841 +#: g10/gpg.c:3861 #, fuzzy, c-format msgid "max-cert-depth must be in the range from 1 to 255\n" msgstr "položka max-cert-depth musí byť v rozmedzí od 1 do 255\n" -#: g10/gpg.c:3843 +#: g10/gpg.c:3863 #, c-format msgid "invalid default-cert-level; must be 0, 1, 2, or 3\n" msgstr "neplatná implicitná úroveň certifikácie; musí byť 0, 1, 2 alebo 3\n" -#: g10/gpg.c:3845 +#: g10/gpg.c:3865 #, c-format msgid "invalid min-cert-level; must be 1, 2, or 3\n" msgstr "neplatná minimálna úroveň certifikácie; musí byť 0, 1, 2 alebo 3\n" -#: g10/gpg.c:3849 +#: g10/gpg.c:3869 #, fuzzy, c-format #| msgid "NOTE: simple S2K mode (0) is strongly discouraged\n" msgid "Note: simple S2K mode (0) is strongly discouraged\n" msgstr "POZNÁMKA: jednoduchý mód S2K (0) je dôrazne nedoporučovaný\n" -#: g10/gpg.c:3853 +#: g10/gpg.c:3873 #, c-format msgid "invalid S2K mode; must be 0, 1 or 3\n" msgstr "neplatný mód S2K; musí byť 0, 1 alebo 3\n" -#: g10/gpg.c:3860 +#: g10/gpg.c:3880 #, c-format msgid "invalid default preferences\n" msgstr "neplatné defaultné predvoľby\n" -#: g10/gpg.c:3864 +#: g10/gpg.c:3884 #, c-format msgid "invalid personal cipher preferences\n" msgstr "neplatné užívateľské predvoľby pre šifrovanie\n" -#: g10/gpg.c:3868 +#: g10/gpg.c:3888 #, c-format msgid "invalid personal digest preferences\n" msgstr "neplatné užívateľské predvoľby pre hashovanie\n" -#: g10/gpg.c:3872 +#: g10/gpg.c:3892 #, c-format msgid "invalid personal compress preferences\n" msgstr "neplatné užívateľské predvoľby pre kompresiu\n" -#: g10/gpg.c:3908 +#: g10/gpg.c:3928 #, c-format msgid "%s does not yet work with %s\n" msgstr "%s ešte nepracuje s %s\n" -#: g10/gpg.c:3971 +#: g10/gpg.c:3991 #, fuzzy, c-format msgid "compression algorithm '%s' may not be used in %s mode\n" msgstr "nemôžete použiť kompresný algoritmus \"%s\" v móde %s\n" -#: g10/gpg.c:4115 +#: g10/gpg.c:4135 #, c-format msgid "failed to initialize the TrustDB: %s\n" msgstr "nemôžem inicializovať databázu dôvery: %s\n" -#: g10/gpg.c:4127 +#: g10/gpg.c:4147 #, c-format msgid "WARNING: recipients (-r) given without using public key encryption\n" msgstr "" "VAROVANIE: daný adresát (-r) bez použitia šifrovania s verejným kľúčom\n" -#: g10/gpg.c:4199 +#: g10/gpg.c:4219 #, fuzzy, c-format msgid "symmetric encryption of '%s' failed: %s\n" msgstr "dešifrovanie zlyhalo: %s\n" -#: g10/gpg.c:4228 +#: g10/gpg.c:4248 #, c-format msgid "you cannot use --symmetric --encrypt with --s2k-mode 0\n" msgstr "" -#: g10/gpg.c:4231 +#: g10/gpg.c:4251 #, fuzzy, c-format msgid "you cannot use --symmetric --encrypt in %s mode\n" msgstr "" "použitie %s nie je v móde %s dovolené\n" "\n" -#: g10/gpg.c:4289 +#: g10/gpg.c:4309 #, c-format msgid "you cannot use --symmetric --sign --encrypt with --s2k-mode 0\n" msgstr "" -#: g10/gpg.c:4292 +#: g10/gpg.c:4312 #, fuzzy, c-format msgid "you cannot use --symmetric --sign --encrypt in %s mode\n" msgstr "" "použitie %s nie je v móde %s dovolené\n" "\n" -#: g10/gpg.c:4692 g10/keyserver.c:1648 +#: g10/gpg.c:4712 g10/keyserver.c:1648 #, c-format msgid "keyserver send failed: %s\n" msgstr "nepodarilo poslať kľúč na server: %s\n" -#: g10/gpg.c:4697 +#: g10/gpg.c:4717 #, c-format msgid "keyserver receive failed: %s\n" msgstr "nepodarilo sa prijať kľúč zo servera: %s\n" -#: g10/gpg.c:4703 +#: g10/gpg.c:4723 #, c-format msgid "key export failed: %s\n" msgstr "nepodaril sa export kľúča: %s\n" -#: g10/gpg.c:4716 +#: g10/gpg.c:4736 #, fuzzy, c-format #| msgid "key export failed: %s\n" msgid "export as ssh key failed: %s\n" msgstr "nepodaril sa export kľúča: %s\n" -#: g10/gpg.c:4728 +#: g10/gpg.c:4748 #, c-format msgid "keyserver search failed: %s\n" msgstr "nepodarilo sa nájsť server: %s\n" -#: g10/gpg.c:4741 +#: g10/gpg.c:4761 #, c-format msgid "keyserver refresh failed: %s\n" msgstr "aktualizácia servera zlyhala: %s\n" -#: g10/gpg.c:4810 +#: g10/gpg.c:4830 #, c-format msgid "dearmoring failed: %s\n" msgstr "dekódovanie z ASCII formátu zlyhalo: %s\n" -#: g10/gpg.c:4821 +#: g10/gpg.c:4841 #, c-format msgid "enarmoring failed: %s\n" msgstr "kódovanie do ASCII formátu zlyhalo: %s\n" -#: g10/gpg.c:4913 +#: g10/gpg.c:4933 #, fuzzy, c-format #| msgid "invalid hash algorithm `%s'\n" msgid "invalid hash algorithm '%s'\n" msgstr "neplatný hashovací algoritmus `%s'\n" -#: g10/gpg.c:5065 g10/tofu.c:2153 +#: g10/gpg.c:5085 g10/tofu.c:2153 #, fuzzy, c-format msgid "error parsing key specification '%s': %s\n" msgstr "chyba pri vytváraní hesla: %s\n" -#: g10/gpg.c:5078 +#: g10/gpg.c:5098 #, c-format msgid "'%s' does not appear to be a valid key ID, fingerprint or keygrip\n" msgstr "" -#: g10/gpg.c:5134 +#: g10/gpg.c:5154 #, c-format msgid "WARNING: no command supplied. Trying to guess what you mean ...\n" msgstr "" -#: g10/gpg.c:5145 +#: g10/gpg.c:5165 #, c-format msgid "Go ahead and type your message ...\n" msgstr "Začnite písať svoju správu ...\n" -#: g10/gpg.c:5490 +#: g10/gpg.c:5510 #, c-format msgid "the given certification policy URL is invalid\n" msgstr "zadané URL pre certifikačnú politiku je neplatné\n" -#: g10/gpg.c:5492 +#: g10/gpg.c:5512 #, c-format msgid "the given signature policy URL is invalid\n" msgstr "zadané URL pre podpisovú politiku je neplatné\n" -#: g10/gpg.c:5525 +#: g10/gpg.c:5545 #, fuzzy, c-format msgid "the given preferred keyserver URL is invalid\n" msgstr "zadané URL pre podpisovú politiku je neplatné\n" @@ -3678,321 +3684,321 @@ msgid "No help available for '%s'" msgstr "Pomoc nie je dostupná pre '%s'" -#: g10/import.c:169 +#: g10/import.c:170 msgid "import signatures that are marked as local-only" msgstr "" -#: g10/import.c:172 +#: g10/import.c:173 msgid "repair damage from the pks keyserver during import" msgstr "" -#: g10/import.c:175 +#: g10/import.c:176 #, fuzzy msgid "do not clear the ownertrust values during import" msgstr "aktualizovať databázu dôvery" -#: g10/import.c:178 +#: g10/import.c:179 #, fuzzy msgid "do not update the trustdb after import" msgstr "aktualizovať databázu dôvery" -#: g10/import.c:181 +#: g10/import.c:182 #, fuzzy msgid "show key during import" msgstr "vypísať fingerprint" -#: g10/import.c:184 +#: g10/import.c:185 msgid "only accept updates to existing keys" msgstr "" -#: g10/import.c:187 +#: g10/import.c:188 #, fuzzy msgid "remove unusable parts from key after import" msgstr "nepoužiteľný tajný kľúč" -#: g10/import.c:190 +#: g10/import.c:191 msgid "remove as much as possible from key after import" msgstr "" -#: g10/import.c:193 +#: g10/import.c:194 msgid "ignore key-signatures which are not self-signatures" msgstr "" -#: g10/import.c:196 +#: g10/import.c:197 msgid "run import filters and export key immediately" msgstr "" -#: g10/import.c:199 +#: g10/import.c:200 msgid "assume the GnuPG key backup format" msgstr "" -#: g10/import.c:203 +#: g10/import.c:204 #, fuzzy msgid "repair keys on import" msgstr "vypísať fingerprint" -#: g10/import.c:392 g10/import.c:711 +#: g10/import.c:393 g10/import.c:712 #, c-format msgid "skipping block of type %d\n" msgstr "blok typu %d bol preskočený\n" -#: g10/import.c:728 +#: g10/import.c:729 #, fuzzy, c-format msgid "%lu keys processed so far\n" msgstr "%lu kľúče boli doteraz spracované\n" -#: g10/import.c:814 +#: g10/import.c:815 #, c-format msgid "Total number processed: %lu\n" msgstr "Celkovo spracovaných kľúčov: %lu\n" -#: g10/import.c:817 +#: g10/import.c:818 #, fuzzy, c-format #| msgid " skipped new keys: %lu\n" msgid " skipped PGP-2 keys: %lu\n" msgstr " preskočené nové kľúče: %lu\n" -#: g10/import.c:819 +#: g10/import.c:820 #, c-format msgid " skipped new keys: %lu\n" msgstr " preskočené nové kľúče: %lu\n" -#: g10/import.c:822 +#: g10/import.c:823 #, c-format msgid " w/o user IDs: %lu\n" msgstr " bez identifikátorov: %lu\n" -#: g10/import.c:825 sm/import.c:130 +#: g10/import.c:826 sm/import.c:130 #, c-format msgid " imported: %lu" msgstr " importované: %lu" -#: g10/import.c:829 sm/import.c:134 +#: g10/import.c:830 sm/import.c:134 #, c-format msgid " unchanged: %lu\n" msgstr " bez zmien: %lu\n" -#: g10/import.c:831 +#: g10/import.c:832 #, c-format msgid " new user IDs: %lu\n" msgstr " nové id užívateľov: %lu\n" -#: g10/import.c:833 +#: g10/import.c:834 #, c-format msgid " new subkeys: %lu\n" msgstr " nové podkľúče: %lu\n" -#: g10/import.c:835 +#: g10/import.c:836 #, c-format msgid " new signatures: %lu\n" msgstr " nové podpisy: %lu\n" -#: g10/import.c:837 +#: g10/import.c:838 #, c-format msgid " new key revocations: %lu\n" msgstr " nové revokácie kľúčov: %lu\n" -#: g10/import.c:839 sm/import.c:136 +#: g10/import.c:840 sm/import.c:136 #, c-format msgid " secret keys read: %lu\n" msgstr " prečítané tajné kľúče: %lu\n" -#: g10/import.c:841 sm/import.c:138 +#: g10/import.c:842 sm/import.c:138 #, c-format msgid " secret keys imported: %lu\n" msgstr " importované tajné kľúče: %lu\n" -#: g10/import.c:843 sm/import.c:140 +#: g10/import.c:844 sm/import.c:140 #, c-format msgid " secret keys unchanged: %lu\n" msgstr " tajné kľúče nezmenené: %lu\n" -#: g10/import.c:845 sm/import.c:142 +#: g10/import.c:846 sm/import.c:142 #, c-format msgid " not imported: %lu\n" msgstr " neimportované: %lu\n" -#: g10/import.c:847 +#: g10/import.c:848 #, fuzzy, c-format msgid " signatures cleaned: %lu\n" msgstr " nové podpisy: %lu\n" -#: g10/import.c:849 +#: g10/import.c:850 #, fuzzy, c-format msgid " user IDs cleaned: %lu\n" msgstr " prečítané tajné kľúče: %lu\n" -#: g10/import.c:1276 +#: g10/import.c:1277 #, c-format msgid "" "WARNING: key %s contains preferences for unavailable\n" "algorithms on these user IDs:\n" msgstr "" -#: g10/import.c:1318 +#: g10/import.c:1319 #, c-format msgid " \"%s\": preference for cipher algorithm %s\n" msgstr "" -#: g10/import.c:1333 +#: g10/import.c:1334 #, fuzzy, c-format msgid " \"%s\": preference for digest algorithm %s\n" msgstr "%s podpis, hashovací algoritmus %s\n" -#: g10/import.c:1345 +#: g10/import.c:1346 #, c-format msgid " \"%s\": preference for compression algorithm %s\n" msgstr "" -#: g10/import.c:1358 +#: g10/import.c:1359 #, c-format msgid "it is strongly suggested that you update your preferences and\n" msgstr "" -#: g10/import.c:1360 +#: g10/import.c:1361 #, c-format msgid "re-distribute this key to avoid potential algorithm mismatch problems\n" msgstr "" -#: g10/import.c:1385 +#: g10/import.c:1386 #, c-format msgid "you can update your preferences with: gpg --edit-key %s updpref save\n" msgstr "" -#: g10/import.c:1899 g10/import.c:3013 +#: g10/import.c:1902 g10/import.c:3028 #, fuzzy, c-format msgid "key %s: no user ID\n" msgstr "kľúč %08lX: chyba identifikátor užívateľa\n" -#: g10/import.c:1905 +#: g10/import.c:1908 #, fuzzy, c-format msgid "key %s: %s\n" msgstr "preskočený `%s': %s\n" -#: g10/import.c:1906 g10/import.c:2985 +#: g10/import.c:1909 g10/import.c:3000 msgid "rejected by import screener" msgstr "" -#: g10/import.c:1950 +#: g10/import.c:1953 #, fuzzy, c-format msgid "key %s: PKS subkey corruption repaired\n" msgstr "kľúč %08lX: HKP poškodenie podkľúča opravené\n" # c-format -#: g10/import.c:1971 +#: g10/import.c:1974 #, fuzzy, c-format msgid "key %s: accepted non self-signed user ID \"%s\"\n" msgstr "" "kľúč %08lX: prijaté id užívateľa '%s', ktorý nie je podpísaný ním samým\n" -#: g10/import.c:1981 g10/import.c:2012 +#: g10/import.c:1985 g10/import.c:2016 #, fuzzy, c-format msgid "key %s: no valid user IDs\n" msgstr "kľúč %08lX: chýba platný identifikátor užívateľa\n" -#: g10/import.c:1983 +#: g10/import.c:1987 #, c-format msgid "this may be caused by a missing self-signature\n" msgstr "môže to byť spôsobené chýbajúcim podpisom kľúča ním samým\n" -#: g10/import.c:2062 g10/import.c:3399 +#: g10/import.c:2066 g10/import.c:3415 #, fuzzy, c-format msgid "key %s: public key not found: %s\n" msgstr "kľúč %08lX: verejný kľúč nenájdený: %s\n" -#: g10/import.c:2068 +#: g10/import.c:2072 #, fuzzy, c-format msgid "key %s: new key - skipped\n" msgstr "kľúč %08lX: nový kľúč - preskočený\n" -#: g10/import.c:2080 +#: g10/import.c:2084 #, c-format msgid "no writable keyring found: %s\n" msgstr "nenájdený zapisovateľný súbor kľúčov (keyring): %s\n" -#: g10/import.c:2112 g10/import.c:2214 g10/import.c:3476 +#: g10/import.c:2116 g10/import.c:2218 g10/import.c:3492 #, fuzzy, c-format #| msgid "error writing keyring `%s': %s\n" msgid "error writing keyring '%s': %s\n" msgstr "chyba pri zápise súboru kľúčov (keyring) `%s': %s\n" -#: g10/import.c:2135 +#: g10/import.c:2139 #, fuzzy, c-format msgid "key %s: public key \"%s\" imported\n" msgstr "kľúč %08lX: verejný kľúč \"%s\" importovaný\n" -#: g10/import.c:2162 +#: g10/import.c:2166 #, fuzzy, c-format msgid "key %s: doesn't match our copy\n" msgstr "kľúč %08lX: nezodpovedá našej kópii\n" -#: g10/import.c:2230 +#: g10/import.c:2234 #, fuzzy, c-format msgid "key %s: \"%s\" 1 new user ID\n" msgstr "kľúč %08lX: \"%s\" 1 nový identifikátor užívateľa\n" -#: g10/import.c:2233 +#: g10/import.c:2237 #, fuzzy, c-format msgid "key %s: \"%s\" %d new user IDs\n" msgstr "kľúč %08lX: \"%s\" %d nových identifikátorov užívateľa\n" -#: g10/import.c:2236 +#: g10/import.c:2240 #, fuzzy, c-format msgid "key %s: \"%s\" 1 new signature\n" msgstr "kľúč %08lX: \"%s\" 1 nový podpis\n" -#: g10/import.c:2239 +#: g10/import.c:2243 #, fuzzy, c-format msgid "key %s: \"%s\" %d new signatures\n" msgstr "kľúč %08lX: \"%s\" %d nových podpisov\n" -#: g10/import.c:2242 +#: g10/import.c:2246 #, fuzzy, c-format msgid "key %s: \"%s\" 1 new subkey\n" msgstr "kľúč %08lX: \"%s\" 1 nový podkľúč\n" -#: g10/import.c:2245 +#: g10/import.c:2249 #, fuzzy, c-format msgid "key %s: \"%s\" %d new subkeys\n" msgstr "kľúč %08lX: \"%s\" %d nových podkľúčov\n" -#: g10/import.c:2248 +#: g10/import.c:2252 #, fuzzy, c-format msgid "key %s: \"%s\" %d signature cleaned\n" msgstr "kľúč %08lX: \"%s\" %d nových podpisov\n" -#: g10/import.c:2251 +#: g10/import.c:2255 #, fuzzy, c-format msgid "key %s: \"%s\" %d signatures cleaned\n" msgstr "kľúč %08lX: \"%s\" %d nových podpisov\n" -#: g10/import.c:2254 +#: g10/import.c:2258 #, fuzzy, c-format msgid "key %s: \"%s\" %d user ID cleaned\n" msgstr "kľúč %08lX: \"%s\" %d nových identifikátorov užívateľa\n" -#: g10/import.c:2257 +#: g10/import.c:2261 #, fuzzy, c-format msgid "key %s: \"%s\" %d user IDs cleaned\n" msgstr "kľúč %08lX: \"%s\" %d nových identifikátorov užívateľa\n" -#: g10/import.c:2293 +#: g10/import.c:2297 #, fuzzy, c-format msgid "key %s: \"%s\" not changed\n" msgstr "kľúč %08lX: \"%s\" bez zmeny\n" -#: g10/import.c:2652 g10/import.c:2847 +#: g10/import.c:2667 g10/import.c:2862 #, fuzzy, c-format msgid "key %s: secret key imported\n" msgstr "kľúč %08lX: tajný kľúč importovaný\n" -#: g10/import.c:2660 +#: g10/import.c:2675 #, fuzzy, c-format #| msgid "skipped: secret key already present\n" msgid "key %s: secret key already exists\n" msgstr "preskočené: tajný kľúč je už v databáze\n" -#: g10/import.c:2668 +#: g10/import.c:2683 #, fuzzy, c-format msgid "key %s: error sending to agent: %s\n" msgstr "chyba pri posielaní na `%s': %s\n" @@ -4005,199 +4011,199 @@ #. * Instead, user should be suggested to run 'gpg --card-status', #. * then, references to a card will be automatically created #. * again. -#: g10/import.c:2837 +#: g10/import.c:2852 #, c-format msgid "To migrate '%s', with each smartcard, run: %s\n" msgstr "" -#: g10/import.c:2984 +#: g10/import.c:2999 #, fuzzy, c-format msgid "secret key %s: %s\n" msgstr "tajný kľúč `%s' nebol nájdený: %s\n" -#: g10/import.c:3005 g10/import.c:3044 +#: g10/import.c:3020 g10/import.c:3059 #, fuzzy, c-format msgid "importing secret keys not allowed\n" msgstr "zapisujem tajný kľúč do `%s'\n" -#: g10/import.c:3032 +#: g10/import.c:3047 #, fuzzy, c-format msgid "key %s: secret key with invalid cipher %d - skipped\n" msgstr "kľúč %08lX: tajný kľúč bez verejného kľúča %d - preskočené\n" -#: g10/import.c:3194 g10/pkclist.c:72 g10/revoke.c:776 +#: g10/import.c:3209 g10/pkclist.c:72 g10/revoke.c:776 msgid "No reason specified" msgstr "Dôvod nebol špecifikovaný" -#: g10/import.c:3195 g10/pkclist.c:74 g10/revoke.c:778 +#: g10/import.c:3210 g10/pkclist.c:74 g10/revoke.c:778 msgid "Key is superseded" msgstr "Kľúč je nahradený" -#: g10/import.c:3196 g10/pkclist.c:76 g10/revoke.c:777 +#: g10/import.c:3211 g10/pkclist.c:76 g10/revoke.c:777 msgid "Key has been compromised" msgstr "Kľúč bol skompromitovaný" -#: g10/import.c:3197 g10/pkclist.c:78 g10/revoke.c:779 +#: g10/import.c:3212 g10/pkclist.c:78 g10/revoke.c:779 msgid "Key is no longer used" msgstr "Kľúč sa už nepoužíva" -#: g10/import.c:3198 g10/pkclist.c:80 g10/revoke.c:780 +#: g10/import.c:3213 g10/pkclist.c:80 g10/revoke.c:780 msgid "User ID is no longer valid" msgstr "Identifikátor užívateľa už neplatí" -#: g10/import.c:3323 g10/keylist.c:1258 g10/pkclist.c:84 +#: g10/import.c:3338 g10/keylist.c:1258 g10/pkclist.c:84 #, c-format msgid "reason for revocation: " msgstr "dôvod na revokáciu: " -#: g10/import.c:3342 g10/keylist.c:1277 g10/pkclist.c:100 +#: g10/import.c:3357 g10/keylist.c:1277 g10/pkclist.c:100 #, c-format msgid "revocation comment: " msgstr "revokačná poznámka: " -#: g10/import.c:3392 +#: g10/import.c:3408 #, fuzzy, c-format msgid "key %s: no public key - can't apply revocation certificate\n" msgstr "" "kľúč %08lX: chýba verejný kľúč - nemôžem aplikovať revokačný certifikát\n" -#: g10/import.c:3423 +#: g10/import.c:3439 #, fuzzy, c-format msgid "key %s: can't locate original keyblock: %s\n" msgstr "kľúč %08lX: nemôžem nájsť originálny blok kľúča: %s\n" -#: g10/import.c:3430 +#: g10/import.c:3446 #, fuzzy, c-format msgid "key %s: can't read original keyblock: %s\n" msgstr "kľúč %08lX: nemôžem čítať originálny blok kľúča: %s\n" -#: g10/import.c:3450 +#: g10/import.c:3466 #, fuzzy, c-format msgid "key %s: invalid revocation certificate: %s - rejected\n" msgstr "kľúč %08lX: neplatný revokačný certifikát: %s - zamietnuté\n" -#: g10/import.c:3485 +#: g10/import.c:3501 #, fuzzy, c-format msgid "key %s: \"%s\" revocation certificate imported\n" msgstr "kľúč %08lX: \"%s\" revokačný certifikát importovaný\n" -#: g10/import.c:3571 +#: g10/import.c:3587 #, fuzzy, c-format msgid "key %s: no user ID for signature\n" msgstr "kľúč %08lX: neexistuje id užívateľa pre podpis\n" -#: g10/import.c:3588 +#: g10/import.c:3604 #, fuzzy, c-format msgid "key %s: unsupported public key algorithm on user ID \"%s\"\n" msgstr "" "kľúč %08lX: nepodporovaný algoritmus verejného kľúča u užívateľského id \"%s" "\"\n" -#: g10/import.c:3590 +#: g10/import.c:3606 #, fuzzy, c-format msgid "key %s: invalid self-signature on user ID \"%s\"\n" msgstr "" "kľúč %08lX: neplatný podpis kľúča ním samým u užívateľského id \"%s\"\n" -#: g10/import.c:3607 g10/import.c:3635 g10/import.c:3691 +#: g10/import.c:3623 g10/import.c:3651 g10/import.c:3707 #, fuzzy, c-format msgid "key %s: unsupported public key algorithm\n" msgstr "kľúč %08lX: nepodporovaný algoritmus verejného kľúča\n" -#: g10/import.c:3608 +#: g10/import.c:3624 #, fuzzy, c-format msgid "key %s: invalid direct key signature\n" msgstr "kľúč %08lX: podpis kľúča ním samým (direct key signature)\n" -#: g10/import.c:3622 +#: g10/import.c:3638 #, fuzzy, c-format msgid "key %s: no subkey for key binding\n" msgstr "kľúč %08lX: neexistuje podkľúč pre viazanie kľúčov\n" -#: g10/import.c:3637 +#: g10/import.c:3653 #, fuzzy, c-format msgid "key %s: invalid subkey binding\n" msgstr "kľúč %08lX: neplatná väzba podkľúča\n" -#: g10/import.c:3656 +#: g10/import.c:3672 #, fuzzy, c-format msgid "key %s: removed multiple subkey binding\n" msgstr "kľúč %08lX: zmazaná viacnásobná väzba podkľúča\n" -#: g10/import.c:3680 +#: g10/import.c:3696 #, fuzzy, c-format msgid "key %s: no subkey for key revocation\n" msgstr "kľúč %08lX: neexistuje podkľúč na revokáciu kľúča\n" -#: g10/import.c:3693 +#: g10/import.c:3709 #, fuzzy, c-format msgid "key %s: invalid subkey revocation\n" msgstr "kľúč %08lX: neplatný revokačný podkľúč\n" -#: g10/import.c:3708 +#: g10/import.c:3724 #, fuzzy, c-format msgid "key %s: removed multiple subkey revocation\n" msgstr "kľúč %08lX: zmazaná viacnásobná revokácia podkľúča\n" -#: g10/import.c:3752 +#: g10/import.c:3771 #, fuzzy, c-format msgid "key %s: skipped user ID \"%s\"\n" msgstr "kľúč %08lX: identifikátor užívateľa preskočený '" -#: g10/import.c:3779 +#: g10/import.c:3798 #, fuzzy, c-format msgid "key %s: skipped subkey\n" msgstr "kľúč %08lX: podkľúč preskočený\n" -#: g10/import.c:3810 +#: g10/import.c:3829 #, fuzzy, c-format msgid "key %s: non exportable signature (class 0x%02X) - skipped\n" msgstr "kľúč %08lX: podpis nie je exportovateľný (trieda %02x) - preskočené\n" -#: g10/import.c:3821 +#: g10/import.c:3840 #, fuzzy, c-format msgid "key %s: revocation certificate at wrong place - skipped\n" msgstr "kľúč %08lX: revokačný certifikát na zlom mieste - preskočené \n" -#: g10/import.c:3839 +#: g10/import.c:3868 #, fuzzy, c-format msgid "key %s: invalid revocation certificate: %s - skipped\n" msgstr "kľúč %08lX: neplatný revokačný certifikát: %s - preskočené\n" -#: g10/import.c:3853 +#: g10/import.c:3892 #, fuzzy, c-format msgid "key %s: subkey signature in wrong place - skipped\n" msgstr "kľúč %08lX: podpis subkľúča na zlom mieste - preskočené \n" -#: g10/import.c:3861 +#: g10/import.c:3900 #, fuzzy, c-format msgid "key %s: unexpected signature class (0x%02X) - skipped\n" msgstr "kľúč %08lX: neočakávaná podpisová trieda (0x%02X) - preskočené\n" -#: g10/import.c:4034 +#: g10/import.c:4073 #, fuzzy, c-format msgid "key %s: duplicated user ID detected - merged\n" msgstr "kľúč %08lX: zistený duplikovaný identifikátor užívateľa - zlúčený\n" -#: g10/import.c:4099 +#: g10/import.c:4138 #, fuzzy, c-format msgid "WARNING: key %s may be revoked: fetching revocation key %s\n" msgstr "" "VAROVANIE: kľúč %08lX môže byť revokovaný: skúšam získať revokačný kľúč " "%08lX\n" -#: g10/import.c:4115 +#: g10/import.c:4154 #, fuzzy, c-format msgid "WARNING: key %s may be revoked: revocation key %s not present.\n" msgstr "" "VAROVANIE: kľúč %08lX môže byť revokovaný: revokačný kľúč %08lX nenájdený.\n" -#: g10/import.c:4181 +#: g10/import.c:4220 #, fuzzy, c-format msgid "key %s: \"%s\" revocation certificate added\n" msgstr "kľúč %08lX: pridaný revokačný certifikát \"%s\"\n" -#: g10/import.c:4219 +#: g10/import.c:4258 #, fuzzy, c-format msgid "key %s: direct key signature added\n" msgstr "kľúč %08lX: podpis kľúča ním samým (direct key signature)\n" @@ -5133,7 +5139,7 @@ msgid "You may not add a photo ID to a PGP2-style key.\n" msgstr "Nemali by ste pridávať fotografické ID k PGP2 kľúču.\n" -#: g10/keyedit.c:4293 g10/keygen.c:2899 +#: g10/keyedit.c:4293 g10/keygen.c:2953 msgid "Such a user ID already exists on this key!\n" msgstr "" @@ -5421,83 +5427,83 @@ msgstr "" "Zobrazujem %s fotografické ID s veľkosťou %ld pre kľúč 0x%08lX (uid %d)\n" -#: g10/keygen.c:169 +#: g10/keygen.c:174 #, fuzzy, c-format msgid "invalid value for option '%s'\n" msgstr "neplatný parameter pre import\n" -#: g10/keygen.c:322 +#: g10/keygen.c:331 #, fuzzy, c-format msgid "preference '%s' duplicated\n" msgstr "duplicita predvoľby %c%lu\n" -#: g10/keygen.c:329 +#: g10/keygen.c:338 #, fuzzy, c-format msgid "too many cipher preferences\n" msgstr "príliš veľa `%c' predvolieb\n" -#: g10/keygen.c:331 +#: g10/keygen.c:340 #, fuzzy, c-format msgid "too many digest preferences\n" msgstr "príliš veľa `%c' predvolieb\n" -#: g10/keygen.c:333 +#: g10/keygen.c:342 #, fuzzy, c-format msgid "too many compression preferences\n" msgstr "príliš veľa `%c' predvolieb\n" -#: g10/keygen.c:493 +#: g10/keygen.c:502 #, fuzzy, c-format msgid "invalid item '%s' in preference string\n" msgstr "neplatný znak v reťazci s predvoľbami\n" -#: g10/keygen.c:972 +#: g10/keygen.c:1020 #, c-format msgid "writing direct signature\n" msgstr "zapisujem podpis kľúča ním samým (direct signature)\n" -#: g10/keygen.c:1018 +#: g10/keygen.c:1066 #, c-format msgid "writing self signature\n" msgstr "zapisujem podpis kľúča sebou samým\n" -#: g10/keygen.c:1075 +#: g10/keygen.c:1123 #, c-format msgid "writing key binding signature\n" msgstr "zapisujem \"key-binding\" podpis\n" -#: g10/keygen.c:1440 g10/keygen.c:1445 g10/keygen.c:1497 g10/keygen.c:1502 -#: g10/keygen.c:1656 g10/keygen.c:1661 +#: g10/keygen.c:1494 g10/keygen.c:1499 g10/keygen.c:1551 g10/keygen.c:1556 +#: g10/keygen.c:1710 g10/keygen.c:1715 #, c-format msgid "keysize invalid; using %u bits\n" msgstr "neplatná dĺžka kľúča; použijem %u bitov\n" -#: g10/keygen.c:1451 g10/keygen.c:1508 g10/keygen.c:1516 g10/keygen.c:1667 +#: g10/keygen.c:1505 g10/keygen.c:1562 g10/keygen.c:1570 g10/keygen.c:1721 #, c-format msgid "keysize rounded up to %u bits\n" msgstr "dĺžka kľúča zaokrúhlená na %u bitov\n" -#: g10/keygen.c:1542 +#: g10/keygen.c:1596 #, c-format msgid "" "WARNING: some OpenPGP programs can't handle a DSA key with this digest size\n" msgstr "" -#: g10/keygen.c:1723 +#: g10/keygen.c:1777 #, fuzzy msgid "Sign" msgstr "sign" -#: g10/keygen.c:1726 +#: g10/keygen.c:1780 msgid "Certify" msgstr "" -#: g10/keygen.c:1729 +#: g10/keygen.c:1783 #, fuzzy msgid "Encrypt" msgstr "šifrovať dáta" -#: g10/keygen.c:1732 +#: g10/keygen.c:1786 msgid "Authenticate" msgstr "" @@ -5511,169 +5517,169 @@ #. * a = Toggle authentication capability #. * q = Finish #. -#: g10/keygen.c:1753 +#: g10/keygen.c:1807 msgid "SsEeAaQq" msgstr "" -#: g10/keygen.c:1784 +#: g10/keygen.c:1838 #, c-format msgid "Possible actions for a %s key: " msgstr "" -#: g10/keygen.c:1790 +#: g10/keygen.c:1844 msgid "Current allowed actions: " msgstr "" -#: g10/keygen.c:1795 +#: g10/keygen.c:1849 #, c-format msgid " (%c) Toggle the sign capability\n" msgstr "" -#: g10/keygen.c:1798 +#: g10/keygen.c:1852 #, fuzzy, c-format msgid " (%c) Toggle the encrypt capability\n" msgstr " (%d) ElGamal (len na šifrovanie)\n" -#: g10/keygen.c:1801 +#: g10/keygen.c:1855 #, c-format msgid " (%c) Toggle the authenticate capability\n" msgstr "" -#: g10/keygen.c:1804 +#: g10/keygen.c:1858 #, c-format msgid " (%c) Finished\n" msgstr "" -#: g10/keygen.c:1930 +#: g10/keygen.c:1984 #, fuzzy, c-format msgid " (%d) RSA and RSA (default)\n" msgstr " (%d) DSA a ElGamal (implicitný)\n" -#: g10/keygen.c:1934 +#: g10/keygen.c:1988 #, fuzzy, c-format msgid " (%d) DSA and Elgamal\n" msgstr " (%d) DSA a ElGamal (implicitný)\n" -#: g10/keygen.c:1937 +#: g10/keygen.c:1991 #, c-format msgid " (%d) DSA (sign only)\n" msgstr " (%d) DSA (len na podpis)\n" -#: g10/keygen.c:1939 +#: g10/keygen.c:1993 #, c-format msgid " (%d) RSA (sign only)\n" msgstr " (%d) RSA (len na podpis)\n" -#: g10/keygen.c:1945 +#: g10/keygen.c:1999 #, fuzzy, c-format msgid " (%d) Elgamal (encrypt only)\n" msgstr " (%d) ElGamal (len na šifrovanie)\n" -#: g10/keygen.c:1947 +#: g10/keygen.c:2001 #, c-format msgid " (%d) RSA (encrypt only)\n" msgstr " (%d) RSA (len na šifrovanie)\n" -#: g10/keygen.c:1953 +#: g10/keygen.c:2007 #, fuzzy, c-format msgid " (%d) DSA (set your own capabilities)\n" msgstr " (%d) RSA (len na šifrovanie)\n" -#: g10/keygen.c:1955 +#: g10/keygen.c:2009 #, fuzzy, c-format msgid " (%d) RSA (set your own capabilities)\n" msgstr " (%d) RSA (len na šifrovanie)\n" -#: g10/keygen.c:1961 +#: g10/keygen.c:2015 #, fuzzy, c-format msgid " (%d) ECC and ECC\n" msgstr " (%d) DSA a ElGamal (implicitný)\n" -#: g10/keygen.c:1963 +#: g10/keygen.c:2017 #, fuzzy, c-format #| msgid " (%d) DSA (sign only)\n" msgid " (%d) ECC (sign only)\n" msgstr " (%d) DSA (len na podpis)\n" -#: g10/keygen.c:1965 +#: g10/keygen.c:2019 #, fuzzy, c-format msgid " (%d) ECC (set your own capabilities)\n" msgstr " (%d) RSA (len na šifrovanie)\n" -#: g10/keygen.c:1967 +#: g10/keygen.c:2021 #, fuzzy, c-format #| msgid " (%d) RSA (encrypt only)\n" msgid " (%d) ECC (encrypt only)\n" msgstr " (%d) RSA (len na šifrovanie)\n" -#: g10/keygen.c:1971 +#: g10/keygen.c:2025 #, fuzzy, c-format msgid " (%d) Existing key\n" msgstr " (%d) RSA (len na šifrovanie)\n" -#: g10/keygen.c:1973 +#: g10/keygen.c:2027 #, fuzzy, c-format msgid " (%d) Existing key from card\n" msgstr " (%d) RSA (len na šifrovanie)\n" -#: g10/keygen.c:2069 sm/certreqgen-ui.c:202 +#: g10/keygen.c:2123 sm/certreqgen-ui.c:202 #, fuzzy msgid "Enter the keygrip: " msgstr "Podpisová notácia: " -#: g10/keygen.c:2082 sm/certreqgen-ui.c:210 +#: g10/keygen.c:2136 sm/certreqgen-ui.c:210 msgid "Not a valid keygrip (expecting 40 hex digits)\n" msgstr "" -#: g10/keygen.c:2084 sm/certreqgen-ui.c:212 +#: g10/keygen.c:2138 sm/certreqgen-ui.c:212 #, fuzzy msgid "No key with this keygrip\n" msgstr "Neexistuje identifikátor užívateľa s indexom %d\n" -#: g10/keygen.c:2103 g10/keygen.c:2113 g10/keygen.c:3216 g10/keygen.c:3227 +#: g10/keygen.c:2157 g10/keygen.c:2167 g10/keygen.c:3270 g10/keygen.c:3281 #: sm/certreqgen-ui.c:230 sm/certreqgen-ui.c:239 #, fuzzy, c-format msgid "error reading the card: %s\n" msgstr "%s: chyba pri čítaní voľného záznamu: %s\n" -#: g10/keygen.c:2107 g10/keygen.c:3220 sm/certreqgen-ui.c:233 +#: g10/keygen.c:2161 g10/keygen.c:3274 sm/certreqgen-ui.c:233 #, fuzzy, c-format msgid "Serial number of the card: %s\n" msgstr "chyba pri vytváraní hesla: %s\n" -#: g10/keygen.c:2120 sm/certreqgen-ui.c:245 +#: g10/keygen.c:2174 sm/certreqgen-ui.c:245 #, fuzzy msgid "Available keys:\n" msgstr "nastaviť kľúč ako neplatný (disable)" -#: g10/keygen.c:2297 g10/keygen.c:2311 +#: g10/keygen.c:2351 g10/keygen.c:2365 #, fuzzy, c-format #| msgid "rounded up to %u bits\n" msgid "rounded to %u bits\n" msgstr "zaokrúhlené na %u bitov\n" -#: g10/keygen.c:2352 +#: g10/keygen.c:2406 #, c-format msgid "%s keys may be between %u and %u bits long.\n" msgstr "" -#: g10/keygen.c:2360 +#: g10/keygen.c:2414 #, fuzzy, c-format msgid "What keysize do you want for the subkey? (%u) " msgstr "Akú veľkosť kľúča si prajete? (1024) " -#: g10/keygen.c:2377 sm/certreqgen-ui.c:189 +#: g10/keygen.c:2431 sm/certreqgen-ui.c:189 #, c-format msgid "Requested keysize is %u bits\n" msgstr "Požadovaná dĺžka kľúča je %u bitov.\n" -#: g10/keygen.c:2423 +#: g10/keygen.c:2477 #, fuzzy #| msgid "Please select what kind of key you want:\n" msgid "Please select which elliptic curve you want:\n" msgstr "Prosím, vyberte druh kľúča, ktorý chcete:\n" -#: g10/keygen.c:2611 +#: g10/keygen.c:2665 msgid "" "Please specify how long the key should be valid.\n" " 0 = key does not expire\n" @@ -5689,7 +5695,7 @@ " m = doba platnosti kľúča skončí za n mesiacov\n" " y = doba platnosti kľúča skončí za n rokov\n" -#: g10/keygen.c:2622 +#: g10/keygen.c:2676 msgid "" "Please specify how long the signature should be valid.\n" " 0 = signature does not expire\n" @@ -5705,40 +5711,40 @@ " m = doba platnosti podpisu skončí za n mesiacov\n" " y = doba platnosti podpisu skončí za n rokov\n" -#: g10/keygen.c:2645 +#: g10/keygen.c:2699 msgid "Key is valid for? (0) " msgstr "Kľúč je platný na? (0) " -#: g10/keygen.c:2650 +#: g10/keygen.c:2704 #, fuzzy, c-format msgid "Signature is valid for? (%s) " msgstr "Podpis je platný na? (0) " -#: g10/keygen.c:2663 g10/keygen.c:2688 +#: g10/keygen.c:2717 g10/keygen.c:2742 msgid "invalid value\n" msgstr "neplatná hodnota\n" -#: g10/keygen.c:2670 +#: g10/keygen.c:2724 #, fuzzy msgid "Key does not expire at all\n" msgstr "platnosť %s neskončí\n" -#: g10/keygen.c:2671 +#: g10/keygen.c:2725 #, fuzzy msgid "Signature does not expire at all\n" msgstr "platnosť %s neskončí\n" -#: g10/keygen.c:2676 +#: g10/keygen.c:2730 #, fuzzy, c-format msgid "Key expires at %s\n" msgstr "platnosť %s skončí %s\n" -#: g10/keygen.c:2677 +#: g10/keygen.c:2731 #, fuzzy, c-format msgid "Signature expires at %s\n" msgstr "Platnosť podpisu vyprší %s\n" -#: g10/keygen.c:2681 +#: g10/keygen.c:2735 msgid "" "Your system can't display dates beyond 2038.\n" "However, it will be correctly handled up to 2106.\n" @@ -5746,12 +5752,12 @@ "Váš systém nevie zobraziť dátumy po roku 2038.\n" "V každom prípade budú dátumy korektne spracovávané do roku 2106.\n" -#: g10/keygen.c:2694 +#: g10/keygen.c:2748 #, fuzzy msgid "Is this correct? (y/N) " msgstr "Je to správne (a/n)? " -#: g10/keygen.c:2762 +#: g10/keygen.c:2816 msgid "" "\n" "GnuPG needs to construct a user ID to identify your key.\n" @@ -5762,7 +5768,7 @@ #. but you should keep your existing translation. In case #. the new string is not translated this old string will #. be used. -#: g10/keygen.c:2777 +#: g10/keygen.c:2831 #, fuzzy msgid "" "\n" @@ -5779,50 +5785,50 @@ " \"Jozko Mrkvicka (student) \"\n" "\n" -#: g10/keygen.c:2796 +#: g10/keygen.c:2850 msgid "Real name: " msgstr "Meno a priezvisko: " -#: g10/keygen.c:2805 +#: g10/keygen.c:2859 msgid "Invalid character in name\n" msgstr "Neplatný znak ve mene\n" -#: g10/keygen.c:2806 +#: g10/keygen.c:2860 #, c-format msgid "The characters '%s' and '%s' may not appear in name\n" msgstr "" -#: g10/keygen.c:2810 +#: g10/keygen.c:2864 msgid "Name may not start with a digit\n" msgstr "Meno nemôže začínať číslicou\n" -#: g10/keygen.c:2813 +#: g10/keygen.c:2867 msgid "Name must be at least 5 characters long\n" msgstr "Meno musí byť dlhé aspoň 5 znakov\n" -#: g10/keygen.c:2823 +#: g10/keygen.c:2877 msgid "Email address: " msgstr "E-mailová adresa: " -#: g10/keygen.c:2829 +#: g10/keygen.c:2883 msgid "Not a valid email address\n" msgstr "Neplatná e-mailová adresa\n" -#: g10/keygen.c:2838 +#: g10/keygen.c:2892 msgid "Comment: " msgstr "Komentár: " -#: g10/keygen.c:2844 +#: g10/keygen.c:2898 msgid "Invalid character in comment\n" msgstr "Neplatný znak v komentári\n" -#: g10/keygen.c:2880 +#: g10/keygen.c:2934 #, fuzzy, c-format #| msgid "You are using the `%s' character set.\n" msgid "You are using the '%s' character set.\n" msgstr "Používate znakovú sadu `%s'.\n" -#: g10/keygen.c:2886 +#: g10/keygen.c:2940 #, c-format msgid "" "You selected this USER-ID:\n" @@ -5833,7 +5839,7 @@ " \"%s\"\n" "\n" -#: g10/keygen.c:2891 +#: g10/keygen.c:2945 msgid "Please don't put the email address into the real name or the comment\n" msgstr "Do poľa meno alebo komentár nepíšte, prosím, e-mailovú adresu.\n" @@ -5848,35 +5854,35 @@ #. o = Okay (ready, continue) #. q = Quit #. -#: g10/keygen.c:2916 +#: g10/keygen.c:2970 msgid "NnCcEeOoQq" msgstr "mMkKeEPpUu" -#: g10/keygen.c:2926 +#: g10/keygen.c:2980 msgid "Change (N)ame, (C)omment, (E)mail or (Q)uit? " msgstr "Zmeniť (M)eno, (K)omentár, (E)-mail alebo (U)končiť? " -#: g10/keygen.c:2927 +#: g10/keygen.c:2981 msgid "Change (N)ame, (C)omment, (E)mail or (O)kay/(Q)uit? " msgstr "Zmeniť (M)eno, (K)omentár, (E)-mail alebo (P)okračovať/(U)končiť? " -#: g10/keygen.c:2932 +#: g10/keygen.c:2986 #, fuzzy #| msgid "Change (N)ame, (C)omment, (E)mail or (Q)uit? " msgid "Change (N)ame, (E)mail, or (Q)uit? " msgstr "Zmeniť (M)eno, (K)omentár, (E)-mail alebo (U)končiť? " -#: g10/keygen.c:2933 +#: g10/keygen.c:2987 #, fuzzy #| msgid "Change (N)ame, (C)omment, (E)mail or (O)kay/(Q)uit? " msgid "Change (N)ame, (E)mail, or (O)kay/(Q)uit? " msgstr "Zmeniť (M)eno, (K)omentár, (E)-mail alebo (P)okračovať/(U)končiť? " -#: g10/keygen.c:2952 +#: g10/keygen.c:3006 msgid "Please correct the error first\n" msgstr "Najskôr, prosím, opravte chybu\n" -#: g10/keygen.c:2998 +#: g10/keygen.c:3052 msgid "" "We need to generate a lot of random bytes. It is a good idea to perform\n" "some other action (type on the keyboard, move the mouse, utilize the\n" @@ -5888,13 +5894,13 @@ "používať disky); vďaka tomu má generátor lepšiu šancu získať dostatok " "entropie.\n" -#: g10/keygen.c:4278 g10/keygen.c:4349 g10/keygen.c:4367 g10/keygen.c:4395 -#: g10/keygen.c:4739 g10/keygen.c:5239 g10/keygen.c:5534 g10/keygen.c:5639 +#: g10/keygen.c:4332 g10/keygen.c:4403 g10/keygen.c:4421 g10/keygen.c:4449 +#: g10/keygen.c:4793 g10/keygen.c:5293 g10/keygen.c:5588 g10/keygen.c:5693 #, c-format msgid "Key generation failed: %s\n" msgstr "Vytvorenie kľúča sa nepodarilo: %s\n" -#: g10/keygen.c:4287 +#: g10/keygen.c:4341 #, c-format msgid "" "About to create a key for:\n" @@ -5902,67 +5908,67 @@ "\n" msgstr "" -#: g10/keygen.c:4289 +#: g10/keygen.c:4343 msgid "Continue? (Y/n) " msgstr "" -#: g10/keygen.c:4310 +#: g10/keygen.c:4364 #, fuzzy, c-format msgid "A key for \"%s\" already exists\n" msgstr "`%s' je už skomprimovaný\n" -#: g10/keygen.c:4315 +#: g10/keygen.c:4369 #, fuzzy msgid "Create anyway? (y/N) " msgstr "Použiť napriek tomu tento kľúč? " -#: g10/keygen.c:4321 +#: g10/keygen.c:4375 #, fuzzy, c-format msgid "creating anyway\n" msgstr "vytvoriť nový pár kľúčov" -#: g10/keygen.c:4722 +#: g10/keygen.c:4776 #, c-format msgid "Note: Use \"%s %s\" for a full featured key generation dialog.\n" msgstr "" -#: g10/keygen.c:4771 +#: g10/keygen.c:4825 #, c-format msgid "Key generation canceled.\n" msgstr "Vytváranie kľúča bolo zrušené.\n" -#: g10/keygen.c:4831 +#: g10/keygen.c:4885 #, fuzzy, c-format msgid "can't create backup file '%s': %s\n" msgstr "nemôžem vytvoriť `%s': %s\n" -#: g10/keygen.c:4851 +#: g10/keygen.c:4905 #, fuzzy, c-format msgid "Note: backup of card key saved to '%s'\n" msgstr "POZNÁMKA: platnosť tajného kľúča %08lX skončila %s\n" -#: g10/keygen.c:5010 g10/keygen.c:5172 +#: g10/keygen.c:5064 g10/keygen.c:5226 #, fuzzy, c-format #| msgid "writing public key to `%s'\n" msgid "writing public key to '%s'\n" msgstr "zapisujem verejný kľúč do `%s'\n" -#: g10/keygen.c:5166 +#: g10/keygen.c:5220 #, c-format msgid "no writable public keyring found: %s\n" msgstr "nenájdený zapisovateľný súbor verejných kľúčov (pubring): %s\n" -#: g10/keygen.c:5180 +#: g10/keygen.c:5234 #, fuzzy, c-format #| msgid "error writing public keyring `%s': %s\n" msgid "error writing public keyring '%s': %s\n" msgstr "chyba pri zápise do súboru verejných kľúčov `%s': %s\n" -#: g10/keygen.c:5210 +#: g10/keygen.c:5264 msgid "public and secret key created and signed.\n" msgstr "verejný a tajný kľúč boli vytvorené a podpísané.\n" -#: g10/keygen.c:5226 +#: g10/keygen.c:5280 #, fuzzy msgid "" "Note that this key cannot be used for encryption. You may want to use\n" @@ -5971,7 +5977,7 @@ "Tento kľúč nemôže byť použitý na šifrovanie. Pre vytvorenie\n" "sekundárneho kľúča na tento účel môžete použiť príkaz \"--edit-key\".\n" -#: g10/keygen.c:5401 g10/keygen.c:5590 +#: g10/keygen.c:5455 g10/keygen.c:5644 #, c-format msgid "" "key has been created %lu second in future (time warp or clock problem)\n" @@ -5979,7 +5985,7 @@ "kľúč bol vytvorený %lu sekund v budúcnosti (došlo k zmene času alebo\n" "je problém so systémovým časom)\n" -#: g10/keygen.c:5403 g10/keygen.c:5592 +#: g10/keygen.c:5457 g10/keygen.c:5646 #, c-format msgid "" "key has been created %lu seconds in future (time warp or clock problem)\n" @@ -5987,23 +5993,23 @@ "kľúč bol vytvorený %lu sekund v budúcnosti (došlo k zmene času alebo\n" "je problém so systémovým časom)\n" -#: g10/keygen.c:5414 g10/keygen.c:5603 +#: g10/keygen.c:5468 g10/keygen.c:5657 #, fuzzy, c-format #| msgid "NOTE: creating subkeys for v3 keys is not OpenPGP compliant\n" msgid "Note: creating subkeys for v3 keys is not OpenPGP compliant\n" msgstr "POZNÁMKA: vytvorenie podkľúča pre kľúče v3 nie je v súlade s OpenPGP\n" -#: g10/keygen.c:5426 g10/keygen.c:5428 +#: g10/keygen.c:5480 g10/keygen.c:5482 #, c-format msgid "Secret parts of primary key are not available.\n" msgstr "Tajné časti primárneho kľúča nie sú dostupné.\n" -#: g10/keygen.c:5435 g10/keygen.c:5437 +#: g10/keygen.c:5489 g10/keygen.c:5491 #, fuzzy, c-format msgid "Secret parts of primary key are stored on-card.\n" msgstr "Tajné časti primárneho kľúča nie sú dostupné.\n" -#: g10/keygen.c:5456 g10/keygen.c:5617 +#: g10/keygen.c:5510 g10/keygen.c:5671 #, fuzzy msgid "Really create? (y/N) " msgstr "Skutočne vytvoriť? " @@ -7115,31 +7121,31 @@ msgid "data not saved; use option \"--output\" to save it\n" msgstr "dáta neboli uložené; na ich uloženie použite prepínač \"--output\"\n" -#: g10/plaintext.c:615 +#: g10/plaintext.c:620 msgid "Detached signature.\n" msgstr "Podpis oddelený od dokumentu.\n" -#: g10/plaintext.c:623 +#: g10/plaintext.c:628 msgid "Please enter name of data file: " msgstr "Prosím, vložte názov dátového súboru: " -#: g10/plaintext.c:660 +#: g10/plaintext.c:665 #, c-format msgid "reading stdin ...\n" msgstr "čítam štandardný vstup (stdin) ...\n" -#: g10/plaintext.c:705 +#: g10/plaintext.c:710 #, c-format msgid "no signed data\n" msgstr "chýbajú podpísané dáta\n" -#: g10/plaintext.c:723 +#: g10/plaintext.c:728 #, fuzzy, c-format #| msgid "can't open signed data `%s'\n" msgid "can't open signed data '%s'\n" msgstr "nemôžem otvoriť podpísané dáta '%s'\n" -#: g10/plaintext.c:758 +#: g10/plaintext.c:763 #, fuzzy, c-format msgid "can't open signed data fd=%d: %s\n" msgstr "nemôžem otvoriť podpísané dáta '%s'\n" @@ -8159,7 +8165,7 @@ msgid "no need for a trustdb check\n" msgstr "nie je nutné kontrolovať databázu dôvery\n" -#: g10/trustdb.c:631 g10/trustdb.c:2326 +#: g10/trustdb.c:631 g10/trustdb.c:2338 #, c-format msgid "next trustdb check due at %s\n" msgstr "dalšia kontrola databázy dôvery %s\n" @@ -8189,14 +8195,14 @@ msgid "checking the trustdb\n" msgstr "kontrolujem databázu dôvery\n" -#: g10/trustdb.c:2047 +#: g10/trustdb.c:2059 #, fuzzy, c-format msgid "%d key processed" msgid_plural "%d keys processed" msgstr[0] "%lu kľúče boli doteraz spracované\n" msgstr[1] "%lu kľúče boli doteraz spracované\n" -#: g10/trustdb.c:2050 +#: g10/trustdb.c:2062 #, fuzzy, c-format #| msgid "%d keys processed (%d validity counts cleared)\n" msgid " (%d validity count cleared)\n" @@ -8204,23 +8210,23 @@ msgstr[0] "%d kľúčov spracovaných (%d počtov platnosti vymazaných)\n" msgstr[1] "%d kľúčov spracovaných (%d počtov platnosti vymazaných)\n" -#: g10/trustdb.c:2120 +#: g10/trustdb.c:2132 #, c-format msgid "no ultimately trusted keys found\n" msgstr "neboli nájdené žiadne absolútne dôveryhodné kľúče\n" -#: g10/trustdb.c:2134 +#: g10/trustdb.c:2146 #, fuzzy, c-format msgid "public key of ultimately trusted key %s not found\n" msgstr "verejný kľúč k absolútne dôveryhodnému kľúču %08lX nebol nájdený\n" -#: g10/trustdb.c:2252 +#: g10/trustdb.c:2264 #, c-format msgid "" "depth: %d valid: %3d signed: %3d trust: %d-, %dq, %dn, %dm, %df, %du\n" msgstr "" -#: g10/trustdb.c:2333 +#: g10/trustdb.c:2345 #, fuzzy, c-format msgid "unable to update trustdb version record: write failed: %s\n" msgstr "záznam dôvery %lu, typ %d: zápis zlyhal: %s\n" @@ -8338,88 +8344,94 @@ #. TRANSLATORS: Put a \x1f right before a colon. This can be #. * used by pinentry to nicely align the names and values. Keep #. * the %s at the start and end of the string. -#: scd/app-p15.c:5116 scd/app-openpgp.c:2154 +#: scd/app-p15.c:5145 scd/app-nks.c:1541 scd/app-openpgp.c:2154 #, c-format msgid "%sNumber: %s%%0AHolder: %s%s" msgstr "" #. TRANSLATORS: This is the number of remaining attempts to #. * enter a PIN. Use %%0A (double-percent,0A) for a linefeed. -#: scd/app-p15.c:5135 scd/app-openpgp.c:2170 +#: scd/app-p15.c:5164 scd/app-nks.c:1560 scd/app-openpgp.c:2170 #, c-format msgid "Remaining attempts: %d" msgstr "" -#: scd/app-p15.c:5214 scd/app-nks.c:1113 +#: scd/app-p15.c:5243 scd/app-nks.c:2112 msgid "||Please enter the PIN for the key to create qualified signatures." msgstr "" #. TRANSLATORS: Do not translate the "|A|" prefix but keep it at #. the start of the string. Use %0A (single percent) for a linefeed. -#: scd/app-p15.c:5217 scd/app-openpgp.c:2464 +#: scd/app-p15.c:5246 scd/app-openpgp.c:2465 #, fuzzy msgid "|A|Please enter the Admin PIN" msgstr "zmeniť heslo" -#: scd/app-p15.c:5219 scd/app-nks.c:1103 +#: scd/app-p15.c:5248 scd/app-nks.c:2102 #, fuzzy msgid "|P|Please enter the PIN Unblocking Code (PUK) for the standard keys." msgstr "Prosím výberte dôvod na revokáciu:\n" -#: scd/app-p15.c:5222 scd/app-nks.c:1095 +#: scd/app-p15.c:5251 scd/app-nks.c:2093 #, fuzzy msgid "||Please enter the PIN for the standard keys." msgstr "zmeniť heslo" -#: scd/app-nks.c:709 scd/app-openpgp.c:3666 +#: scd/app-nks.c:1479 scd/app-openpgp.c:3675 #, c-format msgid "RSA modulus missing or not of size %d bits\n" msgstr "" -#: scd/app-nks.c:717 scd/app-openpgp.c:3678 +#: scd/app-nks.c:1487 scd/app-openpgp.c:3687 #, c-format msgid "RSA public exponent missing or larger than %d bits\n" msgstr "" -#: scd/app-nks.c:797 scd/app-openpgp.c:2327 scd/app-openpgp.c:2346 -#: scd/app-openpgp.c:2513 scd/app-openpgp.c:2531 scd/app-openpgp.c:2829 -#: scd/app-openpgp.c:2876 scd/app-openpgp.c:2991 scd/app-dinsig.c:302 +#: scd/app-nks.c:1660 +#, fuzzy +#| msgid "Note: This key has been disabled.\n" +msgid "Note: PIN has not yet been enabled." +msgstr "Poznámka: Tento kľúč bol označený ako neplatný (disabled).\n" + +#: scd/app-nks.c:1671 scd/app-openpgp.c:2327 scd/app-openpgp.c:2346 +#: scd/app-openpgp.c:2515 scd/app-openpgp.c:2533 scd/app-openpgp.c:2832 +#: scd/app-openpgp.c:2879 scd/app-openpgp.c:3000 scd/app-dinsig.c:303 #, c-format msgid "PIN callback returned error: %s\n" msgstr "" -#: scd/app-nks.c:830 +#: scd/app-nks.c:1707 #, c-format msgid "the NullPIN has not yet been changed\n" msgstr "" -#: scd/app-nks.c:1094 +#: scd/app-nks.c:2092 #, fuzzy msgid "|N|Please enter a new PIN for the standard keys." msgstr "zmeniť heslo" -#: scd/app-nks.c:1101 +#: scd/app-nks.c:2100 #, fuzzy msgid "|NP|Please enter a new PIN Unblocking Code (PUK) for the standard keys." msgstr "Prosím výberte dôvod na revokáciu:\n" -#: scd/app-nks.c:1111 +#: scd/app-nks.c:2110 msgid "|N|Please enter a new PIN for the key to create qualified signatures." msgstr "" -#: scd/app-nks.c:1121 +#: scd/app-nks.c:2120 msgid "" "|NP|Please enter a new PIN Unblocking Code (PUK) for the key to create " "qualified signatures." msgstr "" -#: scd/app-nks.c:1123 +#: scd/app-nks.c:2122 msgid "" "|P|Please enter the PIN Unblocking Code (PUK) for the key to create " "qualified signatures." msgstr "" -#: scd/app-nks.c:1230 scd/app-openpgp.c:2910 scd/app-dinsig.c:532 +#: scd/app-nks.c:2295 scd/app-openpgp.c:2913 scd/app-dinsig.c:535 #, fuzzy, c-format msgid "error getting new PIN: %s\n" msgstr "chyba pri vytváraní hesla: %s\n" @@ -8434,7 +8446,7 @@ msgid "failed to store the creation date: %s\n" msgstr "zlyhalo obnovenie vyrovnávacej pamäti kľúčov: %s\n" -#: scd/app-openpgp.c:1271 scd/app-openpgp.c:2857 scd/app-openpgp.c:5041 +#: scd/app-openpgp.c:1271 scd/app-openpgp.c:2860 scd/app-openpgp.c:5051 #, c-format msgid "error retrieving CHV status from card\n" msgstr "" @@ -8455,7 +8467,7 @@ msgid "response does not contain the EC public key\n" msgstr "odstrániť kľúč zo súboru verejných kľúčov" -#: scd/app-openpgp.c:1664 scd/app-openpgp.c:4286 +#: scd/app-openpgp.c:1664 scd/app-openpgp.c:4295 #, c-format msgid "response does not contain the public key data\n" msgstr "" @@ -8488,23 +8500,23 @@ msgid "||Please unlock the card" msgstr "zmeniť heslo" -#: scd/app-openpgp.c:2353 scd/app-openpgp.c:2538 scd/app-openpgp.c:2836 +#: scd/app-openpgp.c:2353 scd/app-openpgp.c:2540 scd/app-openpgp.c:2839 #, c-format msgid "PIN for CHV%d is too short; minimum length is %d\n" msgstr "" -#: scd/app-openpgp.c:2367 scd/app-openpgp.c:2414 scd/app-openpgp.c:2552 -#: scd/app-openpgp.c:4644 +#: scd/app-openpgp.c:2368 scd/app-openpgp.c:2415 scd/app-openpgp.c:2554 +#: scd/app-openpgp.c:4654 #, fuzzy, c-format msgid "verify CHV%d failed: %s\n" msgstr "nepodarilo poslať kľúč na server: %s\n" -#: scd/app-openpgp.c:2450 scd/app-openpgp.c:5050 +#: scd/app-openpgp.c:2451 scd/app-openpgp.c:5060 #, c-format msgid "card is permanently locked!\n" msgstr "" -#: scd/app-openpgp.c:2454 +#: scd/app-openpgp.c:2455 #, c-format msgid "%d Admin PIN attempt remaining before card is permanently locked\n" msgid_plural "" @@ -8512,22 +8524,22 @@ msgstr[0] "" msgstr[1] "" -#: scd/app-openpgp.c:2485 +#: scd/app-openpgp.c:2486 #, c-format msgid "access to admin commands is not configured\n" msgstr "" -#: scd/app-openpgp.c:2823 +#: scd/app-openpgp.c:2826 #, fuzzy msgid "||Please enter the PIN" msgstr "zmeniť heslo" -#: scd/app-openpgp.c:2872 +#: scd/app-openpgp.c:2875 #, fuzzy msgid "||Please enter the Reset Code for the card" msgstr "Prosím výberte dôvod na revokáciu:\n" -#: scd/app-openpgp.c:2882 scd/app-openpgp.c:2943 +#: scd/app-openpgp.c:2885 scd/app-openpgp.c:2946 #, c-format msgid "Reset Code is too short; minimum length is %d\n" msgstr "" @@ -8535,128 +8547,128 @@ #. 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:2905 +#: scd/app-openpgp.c:2908 msgid "|RN|New Reset Code" msgstr "" -#: scd/app-openpgp.c:2906 +#: scd/app-openpgp.c:2909 msgid "|AN|New Admin PIN" msgstr "" -#: scd/app-openpgp.c:2906 +#: scd/app-openpgp.c:2909 msgid "|N|New PIN" msgstr "" -#: scd/app-openpgp.c:2987 +#: scd/app-openpgp.c:2996 #, fuzzy msgid "||Please enter the Admin PIN and New Admin PIN" msgstr "zmeniť heslo" -#: scd/app-openpgp.c:2988 +#: scd/app-openpgp.c:2997 #, fuzzy msgid "||Please enter the PIN and New PIN" msgstr "zmeniť heslo" -#: scd/app-openpgp.c:3050 scd/app-openpgp.c:4346 +#: scd/app-openpgp.c:3059 scd/app-openpgp.c:4355 #, fuzzy, c-format msgid "error reading application data\n" msgstr "chyba pri čítaní bloku kľúča: %s\n" -#: scd/app-openpgp.c:3056 scd/app-openpgp.c:4353 +#: scd/app-openpgp.c:3065 scd/app-openpgp.c:4362 #, fuzzy, c-format msgid "error reading fingerprint DO\n" msgstr "%s: chyba pri čítaní voľného záznamu: %s\n" -#: scd/app-openpgp.c:3066 +#: scd/app-openpgp.c:3075 #, fuzzy, c-format msgid "key already exists\n" msgstr "`%s' je už skomprimovaný\n" -#: scd/app-openpgp.c:3070 +#: scd/app-openpgp.c:3079 #, c-format msgid "existing key will be replaced\n" msgstr "" -#: scd/app-openpgp.c:3072 +#: scd/app-openpgp.c:3081 #, fuzzy, c-format msgid "generating new key\n" msgstr "vytvoriť nový pár kľúčov" -#: scd/app-openpgp.c:3074 +#: scd/app-openpgp.c:3083 #, fuzzy, c-format msgid "writing new key\n" msgstr "vytvoriť nový pár kľúčov" -#: scd/app-openpgp.c:3647 scd/app-openpgp.c:3999 +#: scd/app-openpgp.c:3656 scd/app-openpgp.c:4008 #, c-format msgid "creation timestamp missing\n" msgstr "" -#: scd/app-openpgp.c:3688 scd/app-openpgp.c:3696 +#: scd/app-openpgp.c:3697 scd/app-openpgp.c:3705 #, c-format msgid "RSA prime %s missing or not of size %d bits\n" msgstr "" -#: scd/app-openpgp.c:3829 scd/app-openpgp.c:4106 +#: scd/app-openpgp.c:3838 scd/app-openpgp.c:4115 #, 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:3993 +#: scd/app-openpgp.c:4002 #, fuzzy, c-format #| msgid "unsupported URI" msgid "unsupported curve\n" msgstr "toto URI nie je podporované" -#: scd/app-openpgp.c:4263 +#: scd/app-openpgp.c:4272 #, c-format msgid "please wait while key is being generated ...\n" msgstr "" -#: scd/app-openpgp.c:4271 +#: scd/app-openpgp.c:4280 #, fuzzy, c-format msgid "generating key failed\n" msgstr "zmazanie bloku kľúča sa nepodarilo: %s\n" -#: scd/app-openpgp.c:4277 +#: scd/app-openpgp.c:4286 #, fuzzy, c-format msgid "key generation completed (%d second)\n" msgid_plural "key generation completed (%d seconds)\n" msgstr[0] "Vytvorenie kľúča sa nepodarilo: %s\n" msgstr[1] "Vytvorenie kľúča sa nepodarilo: %s\n" -#: scd/app-openpgp.c:4311 +#: scd/app-openpgp.c:4320 #, c-format msgid "invalid structure of OpenPGP card (DO 0x93)\n" msgstr "" -#: scd/app-openpgp.c:4361 +#: scd/app-openpgp.c:4370 #, c-format msgid "fingerprint on card does not match requested one\n" msgstr "" -#: scd/app-openpgp.c:4560 +#: scd/app-openpgp.c:4569 #, fuzzy, c-format msgid "card does not support digest algorithm %s\n" msgstr "%s podpis, hashovací algoritmus %s\n" -#: scd/app-openpgp.c:4618 +#: scd/app-openpgp.c:4627 #, c-format msgid "signatures created so far: %lu\n" msgstr "" -#: scd/app-openpgp.c:5055 +#: scd/app-openpgp.c:5065 #, c-format msgid "" "verification of Admin PIN is currently prohibited through this command\n" msgstr "" -#: scd/app-openpgp.c:5386 scd/app-openpgp.c:5398 +#: scd/app-openpgp.c:5396 scd/app-openpgp.c:5408 #, fuzzy, c-format msgid "can't access %s - invalid OpenPGP card?\n" msgstr "nenájdené žiadne platné dáta vo formáte OpenPGP.\n" -#: scd/app-dinsig.c:298 +#: scd/app-dinsig.c:299 #, fuzzy msgid "||Please enter your PIN at the reader's pinpad" msgstr "zmeniť heslo" @@ -8664,7 +8676,7 @@ #. 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-dinsig.c:529 +#: scd/app-dinsig.c:532 msgid "|N|Initial New PIN" msgstr "" @@ -8754,11 +8766,11 @@ msgid "validation model requested by certificate: %s" msgstr "" -#: sm/certchain.c:199 sm/certchain.c:2164 +#: sm/certchain.c:199 sm/certchain.c:2165 msgid "chain" msgstr "" -#: sm/certchain.c:200 sm/certchain.c:2164 +#: sm/certchain.c:200 sm/certchain.c:2165 #, fuzzy msgid "shell" msgstr "help" @@ -8782,241 +8794,241 @@ msgid "failed to open '%s': %s\n" msgstr "nemôžem otvoriť `%s': %s\n" -#: sm/certchain.c:355 sm/certchain.c:384 dirmngr/validate.c:204 +#: sm/certchain.c:355 sm/certchain.c:385 dirmngr/validate.c:204 #, fuzzy, c-format msgid "Note: non-critical certificate policy not allowed" msgstr "zapisujem tajný kľúč do `%s'\n" -#: sm/certchain.c:359 sm/certchain.c:388 dirmngr/validate.c:209 +#: sm/certchain.c:359 sm/certchain.c:389 dirmngr/validate.c:209 #, fuzzy, c-format msgid "certificate policy not allowed" msgstr "zapisujem tajný kľúč do `%s'\n" -#: sm/certchain.c:595 sm/keydb.c:1084 sm/keydb.c:1171 +#: sm/certchain.c:596 sm/keydb.c:1084 sm/keydb.c:1171 #, fuzzy, c-format msgid "failed to get the fingerprint\n" msgstr "nemôžem inicializovať databázu dôvery: %s\n" -#: sm/certchain.c:624 +#: sm/certchain.c:625 #, c-format msgid "looking up issuer at external location\n" msgstr "" -#: sm/certchain.c:644 +#: sm/certchain.c:645 #, c-format msgid "number of issuers matching: %d\n" msgstr "" -#: sm/certchain.c:723 dirmngr/ocsp.c:685 +#: sm/certchain.c:724 dirmngr/ocsp.c:685 #, fuzzy, c-format #| msgid "%s: can't access: %s\n" msgid "can't get authorityInfoAccess: %s\n" msgstr "%s: nemôžem pristupovať k: %s\n" -#: sm/certchain.c:791 +#: sm/certchain.c:792 #, c-format msgid "looking up issuer from the Dirmngr cache\n" msgstr "" -#: sm/certchain.c:816 +#: sm/certchain.c:817 #, fuzzy, c-format msgid "number of matching certificates: %d\n" msgstr "chyba pri vytváraní hesla: %s\n" -#: sm/certchain.c:819 +#: sm/certchain.c:820 #, fuzzy, c-format msgid "dirmngr cache-only key lookup failed: %s\n" msgstr "zmazanie bloku kľúča sa nepodarilo: %s\n" -#: sm/certchain.c:1041 sm/certchain.c:1554 sm/certchain.c:2192 sm/decrypt.c:728 +#: sm/certchain.c:1042 sm/certchain.c:1555 sm/certchain.c:2193 sm/decrypt.c:728 #: sm/encrypt.c:345 sm/import.c:415 sm/keydb.c:1091 sm/keydb.c:1178 #: sm/sign.c:337 sm/verify.c:118 #, fuzzy, c-format msgid "failed to allocate keyDB handle\n" msgstr "nemôžem inicializovať databázu dôvery: %s\n" -#: sm/certchain.c:1225 +#: sm/certchain.c:1226 #, fuzzy msgid "certificate has been revoked" msgstr "POZNÁMKA: kľúč bol revokovaný" -#: sm/certchain.c:1240 +#: sm/certchain.c:1241 msgid "the status of the certificate is unknown" msgstr "" -#: sm/certchain.c:1247 +#: sm/certchain.c:1248 #, c-format msgid "please make sure that the \"dirmngr\" is properly installed\n" msgstr "" -#: sm/certchain.c:1253 +#: sm/certchain.c:1254 #, fuzzy, c-format msgid "checking the CRL failed: %s" msgstr "kontrola vytvoreného podpisu sa nepodarila: %s\n" -#: sm/certchain.c:1282 sm/certchain.c:1350 dirmngr/validate.c:497 +#: sm/certchain.c:1283 sm/certchain.c:1351 dirmngr/validate.c:497 #, c-format msgid "certificate with invalid validity: %s" msgstr "" -#: sm/certchain.c:1297 sm/certchain.c:1382 dirmngr/validate.c:515 +#: sm/certchain.c:1298 sm/certchain.c:1383 dirmngr/validate.c:515 #, c-format msgid "certificate not yet valid" msgstr "" -#: sm/certchain.c:1298 sm/certchain.c:1383 +#: sm/certchain.c:1299 sm/certchain.c:1384 #, fuzzy msgid "root certificate not yet valid" msgstr "zapisujem tajný kľúč do `%s'\n" -#: sm/certchain.c:1299 sm/certchain.c:1384 +#: sm/certchain.c:1300 sm/certchain.c:1385 msgid "intermediate certificate not yet valid" msgstr "" -#: sm/certchain.c:1312 dirmngr/validate.c:526 +#: sm/certchain.c:1313 dirmngr/validate.c:526 #, fuzzy, c-format msgid "certificate has expired" msgstr "Platnosť kľúča vypršala!" -#: sm/certchain.c:1313 +#: sm/certchain.c:1314 #, fuzzy msgid "root certificate has expired" msgstr "Platnosť kľúča vypršala!" -#: sm/certchain.c:1314 +#: sm/certchain.c:1315 #, fuzzy msgid "intermediate certificate has expired" msgstr "Platnosť kľúča vypršala!" -#: sm/certchain.c:1356 +#: sm/certchain.c:1357 #, c-format msgid "required certificate attributes missing: %s%s%s" msgstr "" -#: sm/certchain.c:1365 +#: sm/certchain.c:1366 #, fuzzy msgid "certificate with invalid validity" msgstr "Platnosť kľúča vypršala!" -#: sm/certchain.c:1402 +#: sm/certchain.c:1403 msgid "signature not created during lifetime of certificate" msgstr "" -#: sm/certchain.c:1404 +#: sm/certchain.c:1405 msgid "certificate not created during lifetime of issuer" msgstr "" -#: sm/certchain.c:1405 +#: sm/certchain.c:1406 msgid "intermediate certificate not created during lifetime of issuer" msgstr "" -#: sm/certchain.c:1409 +#: sm/certchain.c:1410 #, fuzzy, c-format msgid " ( signature created at " msgstr " nové podpisy: %lu\n" -#: sm/certchain.c:1410 +#: sm/certchain.c:1411 #, fuzzy, c-format msgid " (certificate created at " msgstr "Revokačný certifikát bol vytvorený.\n" -#: sm/certchain.c:1413 +#: sm/certchain.c:1414 #, fuzzy, c-format msgid " (certificate valid from " msgstr "nesprávny certifikát" -#: sm/certchain.c:1414 +#: sm/certchain.c:1415 #, c-format msgid " ( issuer valid from " msgstr "" -#: sm/certchain.c:1444 dirmngr/validate.c:577 +#: sm/certchain.c:1445 dirmngr/validate.c:577 #, fuzzy, c-format msgid "fingerprint=%s\n" msgstr "vypísať fingerprint" -#: sm/certchain.c:1453 +#: sm/certchain.c:1454 #, c-format msgid "root certificate has now been marked as trusted\n" msgstr "" -#: sm/certchain.c:1466 +#: sm/certchain.c:1467 #, c-format msgid "interactive marking as trusted not enabled in gpg-agent\n" msgstr "" -#: sm/certchain.c:1472 +#: sm/certchain.c:1473 #, c-format msgid "interactive marking as trusted disabled for this session\n" msgstr "" -#: sm/certchain.c:1531 +#: sm/certchain.c:1532 msgid "WARNING: creation time of signature not known - assuming current time" msgstr "" -#: sm/certchain.c:1595 +#: sm/certchain.c:1596 #, fuzzy msgid "no issuer found in certificate" msgstr "vytvoriť revokačný certifikát" -#: sm/certchain.c:1673 +#: sm/certchain.c:1674 msgid "self-signed certificate has a BAD signature" msgstr "" -#: sm/certchain.c:1742 dirmngr/validate.c:575 +#: sm/certchain.c:1743 dirmngr/validate.c:575 #, c-format msgid "root certificate is not marked trusted" msgstr "" -#: sm/certchain.c:1758 +#: sm/certchain.c:1759 #, fuzzy, c-format msgid "checking the trust list failed: %s\n" msgstr "kontrola vytvoreného podpisu sa nepodarila: %s\n" -#: sm/certchain.c:1789 sm/import.c:176 sm/keylist.c:1396 dirmngr/validate.c:630 +#: sm/certchain.c:1790 sm/import.c:176 sm/keylist.c:1396 dirmngr/validate.c:630 #, c-format msgid "certificate chain too long\n" msgstr "" -#: sm/certchain.c:1801 dirmngr/validate.c:642 +#: sm/certchain.c:1802 dirmngr/validate.c:642 #, c-format msgid "issuer certificate not found" msgstr "" -#: sm/certchain.c:1834 dirmngr/validate.c:668 +#: sm/certchain.c:1835 dirmngr/validate.c:668 #, fuzzy, c-format msgid "certificate has a BAD signature" msgstr "verifikovať podpis" -#: sm/certchain.c:1866 dirmngr/validate.c:692 +#: sm/certchain.c:1867 dirmngr/validate.c:692 msgid "found another possible matching CA certificate - trying again" msgstr "" -#: sm/certchain.c:1925 dirmngr/validate.c:717 +#: sm/certchain.c:1926 dirmngr/validate.c:717 #, c-format msgid "certificate chain longer than allowed by CA (%d)" msgstr "" -#: sm/certchain.c:1967 sm/certchain.c:2263 dirmngr/validate.c:747 +#: sm/certchain.c:1968 sm/certchain.c:2264 dirmngr/validate.c:747 #, fuzzy, c-format msgid "certificate is good\n" msgstr "duplicita predvoľby %c%lu\n" -#: sm/certchain.c:1968 +#: sm/certchain.c:1969 #, fuzzy, c-format msgid "intermediate certificate is good\n" msgstr "Revokačný certifikát bol vytvorený.\n" -#: sm/certchain.c:1969 +#: sm/certchain.c:1970 #, fuzzy, c-format msgid "root certificate is good\n" msgstr "nesprávny certifikát" -#: sm/certchain.c:2151 +#: sm/certchain.c:2152 msgid "switching to chain model" msgstr "" -#: sm/certchain.c:2160 +#: sm/certchain.c:2161 #, c-format msgid "validation model used: %s" msgstr "" diff -Nru gnupg2-2.2.40/po/sv.po gnupg2-2.2.41/po/sv.po --- gnupg2-2.2.40/po/sv.po 2022-10-10 09:58:26.000000000 +0000 +++ gnupg2-2.2.41/po/sv.po 2022-12-09 08:48:35.000000000 +0000 @@ -24,7 +24,7 @@ msgstr "" "Project-Id-Version: gnupg trunk\n" "Report-Msgid-Bugs-To: translations@gnupg.org\n" -"POT-Creation-Date: 2022-10-10 11:58+0200\n" +"POT-Creation-Date: 2022-12-09 09:48+0100\n" "PO-Revision-Date: 2017-11-02 17:41+0100\n" "Last-Translator: Daniel Nylander \n" "Language-Team: Swedish \n" @@ -264,8 +264,8 @@ msgid "ssh keys greater than %d bits are not supported\n" msgstr "ssh-nycklar större än %d bitar stöds inte\n" -#: agent/command-ssh.c:862 common/dotlock.c:856 g10/card-util.c:947 -#: g10/exec.c:554 g10/export.c:1320 g10/gpg.c:1400 g10/keygen.c:4998 +#: agent/command-ssh.c:862 common/dotlock.c:856 g10/card-util.c:946 +#: g10/exec.c:554 g10/export.c:1335 g10/gpg.c:1409 g10/keygen.c:5052 #: g10/keyring.c:1322 g10/keyring.c:1637 g10/openfile.c:291 g10/sign.c:1008 #: g10/sign.c:1322 g10/tdbio.c:753 #, fuzzy, c-format @@ -273,12 +273,12 @@ msgid "can't create '%s': %s\n" msgstr "kan inte skapa \"%s\": %s\n" -#: agent/command-ssh.c:874 common/helpfile.c:57 g10/card-util.c:904 +#: agent/command-ssh.c:874 common/helpfile.c:57 g10/card-util.c:903 #: g10/dearmor.c:59 g10/dearmor.c:106 g10/decrypt.c:65 g10/decrypt.c:136 -#: g10/decrypt.c:153 g10/encrypt.c:239 g10/encrypt.c:678 g10/gpg.c:1401 -#: g10/import.c:364 g10/import.c:548 g10/import.c:776 g10/keygen.c:4036 +#: g10/decrypt.c:153 g10/encrypt.c:239 g10/encrypt.c:678 g10/gpg.c:1410 +#: g10/import.c:365 g10/import.c:549 g10/import.c:777 g10/keygen.c:4090 #: g10/keyring.c:1663 g10/openfile.c:195 g10/openfile.c:209 g10/plaintext.c:128 -#: g10/plaintext.c:649 g10/sign.c:990 g10/sign.c:1201 g10/sign.c:1306 +#: g10/plaintext.c:654 g10/sign.c:990 g10/sign.c:1201 g10/sign.c:1306 #: g10/sign.c:1451 g10/tdbdump.c:145 g10/tdbdump.c:153 g10/tdbio.c:758 #: g10/tdbio.c:829 g10/verify.c:96 g10/verify.c:160 sm/gpgsm.c:2160 #: sm/gpgsm.c:2190 sm/gpgsm.c:2228 sm/qualified.c:66 dirmngr/certcache.c:420 @@ -531,33 +531,33 @@ msgid "csh-style command output" msgstr "csh-liknande kommandoutdata" -#: agent/gpg-agent.c:185 g10/gpg.c:579 scd/scdaemon.c:126 sm/gpgsm.c:410 +#: agent/gpg-agent.c:185 g10/gpg.c:580 scd/scdaemon.c:126 sm/gpgsm.c:410 #: dirmngr/dirmngr.c:192 msgid "|FILE|read options from FILE" msgstr "|FIL|läs inställningar från FIL" -#: agent/gpg-agent.c:189 g10/gpg.c:566 scd/scdaemon.c:130 sm/gpgsm.c:259 +#: agent/gpg-agent.c:189 g10/gpg.c:567 scd/scdaemon.c:130 sm/gpgsm.c:259 #: dirmngr/dirmngr.c:196 msgid "Options controlling the diagnostic output" msgstr "Flaggor som kontrollerar diagnosutdata" -#: agent/gpg-agent.c:191 g10/gpg.c:568 g10/gpgv.c:78 kbx/kbxutil.c:88 +#: agent/gpg-agent.c:191 g10/gpg.c:569 g10/gpgv.c:78 kbx/kbxutil.c:88 #: scd/scdaemon.c:132 sm/gpgsm.c:261 dirmngr/dirmngr-client.c:70 #: dirmngr/dirmngr.c:198 tools/gpg-connect-agent.c:78 tools/gpgconf.c:110 msgid "verbose" msgstr "utförlig" -#: agent/gpg-agent.c:192 g10/gpg.c:570 g10/gpgv.c:79 kbx/kbxutil.c:89 +#: agent/gpg-agent.c:192 g10/gpg.c:571 g10/gpgv.c:79 kbx/kbxutil.c:89 #: scd/scdaemon.c:133 sm/gpgsm.c:263 dirmngr/dirmngr-client.c:71 #: dirmngr/dirmngr.c:199 msgid "be somewhat more quiet" msgstr "var något tystare" -#: agent/gpg-agent.c:200 g10/gpg.c:583 sm/gpgsm.c:276 dirmngr/dirmngr.c:209 +#: agent/gpg-agent.c:200 g10/gpg.c:584 sm/gpgsm.c:276 dirmngr/dirmngr.c:209 msgid "|FILE|write server mode logs to FILE" msgstr "|FIL|skriv serverlägesloggar till FIL" -#: agent/gpg-agent.c:204 g10/gpg.c:589 scd/scdaemon.c:147 sm/gpgsm.c:283 +#: agent/gpg-agent.c:204 g10/gpg.c:590 scd/scdaemon.c:147 sm/gpgsm.c:283 #: dirmngr/dirmngr.c:213 msgid "Options controlling the configuration" msgstr "Flaggor som kontrollerar konfigurationen" @@ -598,7 +598,7 @@ msgid "enable putty support" msgstr "" -#: agent/gpg-agent.c:237 g10/gpg.c:831 scd/scdaemon.c:175 sm/gpgsm.c:369 +#: agent/gpg-agent.c:237 g10/gpg.c:832 scd/scdaemon.c:175 sm/gpgsm.c:369 msgid "Options controlling the security" msgstr "Flaggor som kontrollerar säkerheten" @@ -705,7 +705,7 @@ #. reporting address. This is so that we can change the #. reporting address without breaking the translations. #: agent/gpg-agent.c:563 agent/preset-passphrase.c:100 agent/protect-tool.c:155 -#: g10/gpg.c:1108 g10/gpgv.c:149 kbx/kbxutil.c:113 scd/scdaemon.c:313 +#: g10/gpg.c:1117 g10/gpgv.c:149 kbx/kbxutil.c:113 scd/scdaemon.c:313 #: sm/gpgsm.c:600 dirmngr/dirmngr-client.c:168 dirmngr/dirmngr.c:458 #: tools/gpg-connect-agent.c:205 tools/gpgconf.c:154 #: tools/gpg-check-pattern.c:143 @@ -732,28 +732,28 @@ "Syntax: gpg-agent [flaggor] [kommando [argument]]\n" "Hantering av hemliga nycklar för GnuPG\n" -#: agent/gpg-agent.c:619 g10/gpg.c:1304 scd/scdaemon.c:385 sm/gpgsm.c:748 +#: agent/gpg-agent.c:619 g10/gpg.c:1313 scd/scdaemon.c:385 sm/gpgsm.c:748 #: dirmngr/dirmngr.c:542 #, fuzzy, c-format #| msgid "invalid debug-level `%s' given\n" msgid "invalid debug-level '%s' given\n" msgstr "ogiltig debug-level \"%s\" angiven\n" -#: agent/gpg-agent.c:988 g10/gpg.c:3810 g10/gpg.c:3834 sm/gpgsm.c:1585 +#: agent/gpg-agent.c:988 g10/gpg.c:3830 g10/gpg.c:3854 sm/gpgsm.c:1585 #: sm/gpgsm.c:1591 #, c-format msgid "selected digest algorithm is invalid\n" msgstr "vald sammandragsalgoritm är ogiltig\n" #: agent/gpg-agent.c:1216 agent/gpg-agent.c:2029 common/argparse.c:1766 -#: common/argparse.c:1858 g10/gpg.c:2517 scd/scdaemon.c:547 sm/gpgsm.c:1007 +#: common/argparse.c:1858 g10/gpg.c:2526 scd/scdaemon.c:547 sm/gpgsm.c:1007 #: dirmngr/dirmngr.c:1081 dirmngr/dirmngr.c:1937 #, fuzzy, c-format #| msgid "reading options from `%s'\n" msgid "reading options from '%s'\n" msgstr "läser inställningar från \"%s\"\n" -#: agent/gpg-agent.c:1332 g10/gpg.c:3751 scd/scdaemon.c:671 sm/gpgsm.c:1522 +#: agent/gpg-agent.c:1332 g10/gpg.c:3769 scd/scdaemon.c:671 sm/gpgsm.c:1522 #: dirmngr/dirmngr.c:1190 tools/gpg-connect-agent.c:1244 tools/gpgconf.c:677 #, fuzzy, c-format #| msgid "WARNING: \"%s\" is a deprecated option\n" @@ -898,7 +898,7 @@ "Syntax: gpg-preset-passphrase [flaggor] NYCKELHASH\n" "Underhåll av lösenordscache\n" -#: agent/protect-tool.c:108 g10/gpg.c:441 kbx/kbxutil.c:71 sm/gpgsm.c:210 +#: agent/protect-tool.c:108 g10/gpg.c:442 kbx/kbxutil.c:71 sm/gpgsm.c:210 #: dirmngr/dirmngr.c:171 tools/gpgconf.c:80 msgid "" "@Commands:\n" @@ -1136,7 +1136,7 @@ msgid "secret key parts are not available\n" msgstr "de hemliga nyckeldelarna är inte tillgängliga\n" -#: agent/cvt-openpgp.c:344 g10/card-util.c:1556 +#: agent/cvt-openpgp.c:344 g10/card-util.c:1555 #, fuzzy, c-format #| msgid "protection algorithm %d%s is not supported\n" msgid "public key algorithm %d (%s) is not supported\n" @@ -1303,7 +1303,7 @@ msgid "out of core while allocating %lu bytes" msgstr "slut på kärna vid allokering av %lu byte" -#: common/miscellaneous.c:115 g10/card-util.c:911 tools/no-libgcrypt.c:30 +#: common/miscellaneous.c:115 g10/card-util.c:910 tools/no-libgcrypt.c:30 #, c-format msgid "error allocating enough memory: %s\n" msgstr "fel vid allokering av tillräckligt mycket minne: %s\n" @@ -1422,7 +1422,7 @@ msgstr "algoritm: %s" #: common/audit.c:774 common/audit.c:776 common/audit.c:921 common/audit.c:923 -#: scd/app-openpgp.c:3557 +#: scd/app-openpgp.c:3566 #, c-format msgid "unsupported algorithm: %s" msgstr "algoritmen stöds inte: %s" @@ -1497,11 +1497,11 @@ msgid "Root certificate trustworthy" msgstr "rotcertifikatet är pålitligt" -#: common/audit.c:1112 sm/certchain.c:1235 +#: common/audit.c:1112 sm/certchain.c:1236 msgid "no CRL found for certificate" msgstr "ingen spärrlista hittades för certifikatet" -#: common/audit.c:1115 sm/certchain.c:1245 +#: common/audit.c:1115 sm/certchain.c:1246 msgid "the available CRL is too old" msgstr "den tillgängliga spärrlistan är för gammal" @@ -1634,7 +1634,7 @@ msgid "missing argument for option \"%.50s\"\n" msgstr "argument för flaggan \"%.50s\" saknas\n" -#: common/argparse.c:558 g10/gpg.c:3525 +#: common/argparse.c:558 g10/gpg.c:3543 #, fuzzy, c-format #| msgid "missing argument for option \"%.50s\"\n" msgid "invalid argument for option \"%.50s\"\n" @@ -1741,95 +1741,95 @@ msgid "%s is too old (need %s, have %s)\n" msgstr "%s är för gammal (behöver %s, har %s)\n" -#: g10/armor.c:423 +#: g10/armor.c:424 #, c-format msgid "armor: %s\n" msgstr "ASCII-skal: %s\n" -#: g10/armor.c:462 +#: g10/armor.c:463 #, c-format msgid "invalid armor header: " msgstr "ogiltig rubrikrad i ASCII-skalet: " -#: g10/armor.c:473 +#: g10/armor.c:474 #, c-format msgid "armor header: " msgstr "ASCII-skal: " -#: g10/armor.c:486 +#: g10/armor.c:487 #, c-format msgid "invalid clearsig header\n" msgstr "ogiltig rubrikrad i klartextsignatur\n" -#: g10/armor.c:499 +#: g10/armor.c:500 #, c-format msgid "unknown armor header: " msgstr "okänt ASCII-skalhuvud: " -#: g10/armor.c:552 +#: g10/armor.c:553 #, c-format msgid "nested clear text signatures\n" msgstr "flera klartextsignaturer går in i varandra\n" -#: g10/armor.c:687 +#: g10/armor.c:688 #, c-format msgid "unexpected armor: " msgstr "oväntat skal: " # rader i klartexten som inleds med bindestreck får ett extra bindestreck vid klartextsignatur (för att lättare hitta "---- Begin ..." -#: g10/armor.c:700 +#: g10/armor.c:701 #, c-format msgid "invalid dash escaped line: " msgstr "ogiltig rad som börjar med bindestreck: " # överhoppad eller hoppades över? -#: g10/armor.c:872 g10/armor.c:1492 +#: g10/armor.c:873 g10/armor.c:1493 #, c-format msgid "invalid radix64 character %02X skipped\n" msgstr "ogiltigt radix64-tecken %02X hoppades över\n" # CRC Cyclic Redundancy Checksum används för att upptäcka fel i ascii-skalet. Används allmänt, trots att det inte höjer säkerheten. -#: g10/armor.c:915 +#: g10/armor.c:916 #, c-format msgid "premature eof (no CRC)\n" msgstr "för tidigt filslut (ingen CRC-summa)\n" -#: g10/armor.c:949 +#: g10/armor.c:950 #, c-format msgid "premature eof (in CRC)\n" msgstr "för tidigt filslut (i CRC-summan)\n" -#: g10/armor.c:957 +#: g10/armor.c:958 #, c-format msgid "malformed CRC\n" msgstr "felformaterad CRC-summa\n" -#: g10/armor.c:961 g10/armor.c:1529 +#: g10/armor.c:962 g10/armor.c:1530 #, c-format msgid "CRC error; %06lX - %06lX\n" msgstr "CRC-fel; %06lX - %06lX\n" -#: g10/armor.c:981 +#: g10/armor.c:982 #, c-format msgid "premature eof (in trailer)\n" msgstr "för tidigt filslut (i den avslutande raden)\n" -#: g10/armor.c:985 +#: g10/armor.c:986 #, c-format msgid "error in trailer line\n" msgstr "fel i avslutande rad\n" -#: g10/armor.c:1305 +#: g10/armor.c:1306 #, c-format msgid "no valid OpenPGP data found.\n" msgstr "hittade ingen giltig OpenPGP-data.\n" -#: g10/armor.c:1310 +#: g10/armor.c:1311 #, c-format msgid "invalid armor: line longer than %d characters\n" msgstr "ogiltigt ASCII-skal: raden är längre än %d tecken\n" -#: g10/armor.c:1314 +#: g10/armor.c:1315 #, c-format msgid "" "quoted printable character in armor - probably a buggy MTA has been used\n" @@ -1987,24 +1987,24 @@ msgid "server uses an invalid certificate" msgstr "generera ett spärrcertifikat" -#: g10/call-dirmngr.c:462 g10/gpg.c:4458 +#: g10/call-dirmngr.c:462 g10/gpg.c:4478 #, fuzzy, c-format #| msgid "armor: %s\n" msgid "Note: %s\n" msgstr "ASCII-skal: %s\n" -#: g10/card-util.c:86 g10/card-util.c:366 g10/card-util.c:1918 +#: g10/card-util.c:86 g10/card-util.c:366 g10/card-util.c:1917 #, c-format msgid "OpenPGP card not available: %s\n" msgstr "OpenPGP-kort är inte tillgängligt: %s\n" -#: g10/card-util.c:91 g10/card-util.c:1924 +#: g10/card-util.c:91 g10/card-util.c:1923 #, c-format msgid "OpenPGP card no. %s detected\n" msgstr "OpenPGP-kort nr. %s identifierades\n" -#: g10/card-util.c:97 g10/card-util.c:2253 g10/delkey.c:160 g10/keyedit.c:1423 -#: g10/keygen.c:4466 g10/revoke.c:214 g10/revoke.c:636 +#: g10/card-util.c:97 g10/card-util.c:2252 g10/delkey.c:160 g10/keyedit.c:1423 +#: g10/keygen.c:4520 g10/revoke.c:214 g10/revoke.c:636 #, c-format msgid "can't do this in batch mode\n" msgstr "kan inte göra detta i satsläge\n" @@ -2014,14 +2014,14 @@ msgid "This command is only available for version 2 cards\n" msgstr "Detta kommando är endast tillgängligt för kort av version 2\n" -#: g10/card-util.c:107 scd/app-openpgp.c:2866 +#: g10/card-util.c:107 scd/app-openpgp.c:2869 #, c-format msgid "Reset Code not or not anymore available\n" msgstr "Återställningskoden är inte tillgänglig längre\n" -#: g10/card-util.c:140 g10/card-util.c:1442 g10/card-util.c:1704 -#: g10/card-util.c:1796 g10/keyedit.c:394 g10/keyedit.c:415 g10/keyedit.c:429 -#: g10/keygen.c:1808 g10/keygen.c:1980 g10/keygen.c:2186 g10/keygen.c:2477 +#: g10/card-util.c:140 g10/card-util.c:1441 g10/card-util.c:1703 +#: g10/card-util.c:1795 g10/keyedit.c:394 g10/keyedit.c:415 g10/keyedit.c:429 +#: g10/keygen.c:1862 g10/keygen.c:2034 g10/keygen.c:2240 g10/keygen.c:2531 #: sm/certreqgen-ui.c:165 sm/certreqgen-ui.c:291 sm/certreqgen-ui.c:325 msgid "Your selection? " msgstr "Vad väljer du? " @@ -2071,12 +2071,12 @@ msgid "Error: Combined name too long (limit is %d characters).\n" msgstr "Fel: Fullständigt namn för långt (gränsen är %d tecken).\n" -#: g10/card-util.c:826 +#: g10/card-util.c:825 msgid "URL to retrieve public key: " msgstr "Url för att hämta publik nyckel: " -#: g10/card-util.c:920 g10/decrypt-data.c:509 g10/import.c:399 g10/import.c:746 -#: g10/import.c:798 dirmngr/crlcache.c:655 dirmngr/crlcache.c:660 +#: g10/card-util.c:919 g10/decrypt-data.c:509 g10/import.c:400 g10/import.c:747 +#: g10/import.c:799 dirmngr/crlcache.c:655 dirmngr/crlcache.c:660 #: dirmngr/crlcache.c:914 dirmngr/crlcache.c:920 dirmngr/dirmngr.c:1748 #: tools/gpgconf.c:483 tools/gpgconf.c:529 #, fuzzy, c-format @@ -2084,68 +2084,68 @@ msgid "error reading '%s': %s\n" msgstr "fel vid läsning av \"%s\": %s\n" -#: g10/card-util.c:953 g10/decrypt-data.c:512 g10/export.c:2467 +#: g10/card-util.c:952 g10/decrypt-data.c:512 g10/export.c:2586 #: dirmngr/crlcache.c:925 #, fuzzy, c-format #| msgid "error writing `%s': %s\n" msgid "error writing '%s': %s\n" msgstr "fel vid skrivning till \"%s\": %s\n" -#: g10/card-util.c:980 +#: g10/card-util.c:979 msgid "Login data (account name): " msgstr "Inloggningsdata (kontonamn): " -#: g10/card-util.c:1018 +#: g10/card-util.c:1017 msgid "Private DO data: " msgstr "Privat DO-data: " -#: g10/card-util.c:1103 +#: g10/card-util.c:1102 msgid "Language preferences: " msgstr "Språkinställningar: " -#: g10/card-util.c:1111 +#: g10/card-util.c:1110 msgid "Error: invalid length of preference string.\n" msgstr "Fel: ogiltig längd på inställningssträngen\n" -#: g10/card-util.c:1120 +#: g10/card-util.c:1119 msgid "Error: invalid characters in preference string.\n" msgstr "Fel: ogiltiga tecken i inställningssträngen.\n" -#: g10/card-util.c:1142 +#: g10/card-util.c:1141 msgid "Salutation (M = Mr., F = Ms., or space): " msgstr "" -#: g10/card-util.c:1156 +#: g10/card-util.c:1155 msgid "Error: invalid response.\n" msgstr "Fel: ogiltigt svar.\n" -#: g10/card-util.c:1178 +#: g10/card-util.c:1177 msgid "CA fingerprint: " msgstr "CA-fingeravtryck: " -#: g10/card-util.c:1201 +#: g10/card-util.c:1200 msgid "Error: invalid formatted fingerprint.\n" msgstr "Fel: ogiltigt formaterat fingeravtryck.\n" -#: g10/card-util.c:1252 +#: g10/card-util.c:1251 #, c-format msgid "key operation not possible: %s\n" msgstr "nyckelåtgärden är inte möjlig: %s\n" -#: g10/card-util.c:1253 +#: g10/card-util.c:1252 msgid "not an OpenPGP card" msgstr "inte ett OpenPGP-kort" -#: g10/card-util.c:1266 g10/keygen.c:4486 g10/keygen.c:5562 +#: g10/card-util.c:1265 g10/keygen.c:4540 g10/keygen.c:5616 #, c-format msgid "error getting current key info: %s\n" msgstr "fel vid hämtning av aktuell nyckelinformation: %s\n" -#: g10/card-util.c:1351 +#: g10/card-util.c:1350 msgid "Replace existing key? (y/N) " msgstr "Ersätt existerande nyckel? (j/N) " -#: g10/card-util.c:1368 +#: g10/card-util.c:1367 msgid "" "Note: There is no guarantee that the card supports the requested size.\n" " If the key generation does not succeed, please check the\n" @@ -2156,73 +2156,73 @@ " kontrollera dokumentationen för ditt kort för att se vilka storlekar\n" " som tillåts.\n" -#: g10/card-util.c:1390 g10/keygen.c:2363 sm/certreqgen-ui.c:179 +#: g10/card-util.c:1389 g10/keygen.c:2417 sm/certreqgen-ui.c:179 #, c-format msgid "What keysize do you want? (%u) " msgstr "Vilken nyckelstorlek vill du ha? (%u) " -#: g10/card-util.c:1400 g10/keygen.c:2286 g10/keygen.c:2318 +#: g10/card-util.c:1399 g10/keygen.c:2340 g10/keygen.c:2372 #: sm/certreqgen-ui.c:194 #, c-format msgid "rounded up to %u bits\n" msgstr "avrundade uppåt till %u bitar\n" -#: g10/card-util.c:1408 g10/keygen.c:2371 sm/certreqgen-ui.c:184 +#: g10/card-util.c:1407 g10/keygen.c:2425 sm/certreqgen-ui.c:184 #, c-format msgid "%s keysizes must be in the range %u-%u\n" msgstr "%s nyckelstorlekar måste vara inom intervallet %u-%u\n" -#: g10/card-util.c:1427 +#: g10/card-util.c:1426 msgid "Changing card key attribute for: " msgstr "" -#: g10/card-util.c:1429 +#: g10/card-util.c:1428 #, fuzzy #| msgid " (1) Signature key\n" msgid "Signature key\n" msgstr " (1) Signeringsnyckel\n" -#: g10/card-util.c:1431 +#: g10/card-util.c:1430 #, fuzzy #| msgid " (2) Encryption key\n" msgid "Encryption key\n" msgstr " (2) Krypteringsnyckel\n" -#: g10/card-util.c:1433 +#: g10/card-util.c:1432 #, fuzzy #| msgid " (3) Authentication key\n" msgid "Authentication key\n" msgstr " (3) Autentiseringsnyckel\n" -#: g10/card-util.c:1435 g10/keygen.c:1926 sm/certreqgen-ui.c:157 +#: g10/card-util.c:1434 g10/keygen.c:1980 sm/certreqgen-ui.c:157 msgid "Please select what kind of key you want:\n" msgstr "Välj vilken typ av nyckel du vill ha:\n" -#: g10/card-util.c:1436 sm/certreqgen-ui.c:158 +#: g10/card-util.c:1435 sm/certreqgen-ui.c:158 #, c-format msgid " (%d) RSA\n" msgstr " (%d) RSA\n" -#: g10/card-util.c:1437 +#: g10/card-util.c:1436 #, fuzzy, c-format #| msgid " (%d) DSA and Elgamal\n" msgid " (%d) ECC\n" msgstr " (%d) DSA och Elgamal\n" -#: g10/card-util.c:1449 g10/card-util.c:1716 g10/card-util.c:1816 -#: g10/keyedit.c:900 g10/keygen.c:1834 g10/keygen.c:1862 g10/keygen.c:1987 -#: g10/keygen.c:2222 g10/keygen.c:2505 g10/revoke.c:838 +#: g10/card-util.c:1448 g10/card-util.c:1715 g10/card-util.c:1815 +#: g10/keyedit.c:900 g10/keygen.c:1888 g10/keygen.c:1916 g10/keygen.c:2041 +#: g10/keygen.c:2276 g10/keygen.c:2559 g10/revoke.c:838 msgid "Invalid selection.\n" msgstr "Ogiltigt val.\n" -#: g10/card-util.c:1522 +#: g10/card-util.c:1521 #, c-format msgid "The card will now be re-configured to generate a key of %u bits\n" msgstr "" "Kortet kommer nu att konfigureras om för att generera en nyckel med %u " "bitar\n" -#: g10/card-util.c:1527 +#: g10/card-util.c:1526 #, fuzzy, c-format #| msgid "The card will now be re-configured to generate a key of %u bits\n" msgid "The card will now be re-configured to generate a key of type: %s\n" @@ -2230,39 +2230,39 @@ "Kortet kommer nu att konfigureras om för att generera en nyckel med %u " "bitar\n" -#: g10/card-util.c:1563 +#: g10/card-util.c:1562 #, fuzzy, c-format #| msgid "error changing size of key %d to %u bits: %s\n" msgid "error changing key attribute for key %d: %s\n" msgstr "fel vid ändring av storlek för nyckel %d till %u bitar: %s\n" -#: g10/card-util.c:1579 g10/card-util.c:2106 +#: g10/card-util.c:1578 g10/card-util.c:2105 #, fuzzy, c-format #| msgid "error getting current key info: %s\n" msgid "error getting card info: %s\n" msgstr "fel vid hämtning av aktuell nyckelinformation: %s\n" -#: g10/card-util.c:1585 g10/card-util.c:1930 g10/card-util.c:2112 +#: g10/card-util.c:1584 g10/card-util.c:1929 g10/card-util.c:2111 #, fuzzy, c-format #| msgid "This command is not allowed while in %s mode.\n" msgid "This command is not supported by this card\n" msgstr "Detta kommando är inte tillåtet när du är i %s-läge.\n" -#: g10/card-util.c:1631 +#: g10/card-util.c:1630 msgid "Make off-card backup of encryption key? (Y/n) " msgstr "Skapa säkerhetskopia av krypteringsnyckel utanför kortet? (J/n) " -#: g10/card-util.c:1645 +#: g10/card-util.c:1644 #, fuzzy, c-format #| msgid "NOTE: keys are already stored on the card!\n" msgid "Note: keys are already stored on the card!\n" msgstr "OBSERVERA: nycklar har redan lagrats på kortet!\n" -#: g10/card-util.c:1648 +#: g10/card-util.c:1647 msgid "Replace existing keys? (y/N) " msgstr "Ersätt existerande nycklar? (j/N) " -#: g10/card-util.c:1660 +#: g10/card-util.c:1659 #, fuzzy, c-format #| msgid "" #| "Please note that the factory settings of the PINs are\n" @@ -2277,156 +2277,156 @@ " PIN-kod = \"%s\" Admin PIN-kod = \"%s\"\n" "Du bör ändra dem med kommandot --change-pin\n" -#: g10/card-util.c:1695 +#: g10/card-util.c:1694 msgid "Please select the type of key to generate:\n" msgstr "Välj vilken typ av nyckel som ska genereras:\n" -#: g10/card-util.c:1697 g10/card-util.c:1787 +#: g10/card-util.c:1696 g10/card-util.c:1786 msgid " (1) Signature key\n" msgstr " (1) Signeringsnyckel\n" -#: g10/card-util.c:1698 g10/card-util.c:1789 +#: g10/card-util.c:1697 g10/card-util.c:1788 msgid " (2) Encryption key\n" msgstr " (2) Krypteringsnyckel\n" -#: g10/card-util.c:1699 g10/card-util.c:1791 +#: g10/card-util.c:1698 g10/card-util.c:1790 msgid " (3) Authentication key\n" msgstr " (3) Autentiseringsnyckel\n" -#: g10/card-util.c:1784 +#: g10/card-util.c:1783 msgid "Please select where to store the key:\n" msgstr "Välj var nyckeln ska sparas:\n" -#: g10/card-util.c:1830 +#: g10/card-util.c:1829 #, fuzzy, c-format #| msgid "read failed: %s\n" msgid "KEYTOCARD failed: %s\n" msgstr "läsning misslyckades: %s\n" -#: g10/card-util.c:1935 +#: g10/card-util.c:1934 #, fuzzy, c-format #| msgid "NOTE: keys are already stored on the card!\n" msgid "Note: This command destroys all keys stored on the card!\n" msgstr "OBSERVERA: nycklar har redan lagrats på kortet!\n" -#: g10/card-util.c:1938 +#: g10/card-util.c:1937 #, fuzzy #| msgid "Sign it? (y/N) " msgid "Continue? (y/N) " msgstr "Signera den? (j/N) " -#: g10/card-util.c:1943 +#: g10/card-util.c:1942 msgid "Really do a factory reset? (enter \"yes\") " msgstr "" -#: g10/card-util.c:2129 +#: g10/card-util.c:2128 #, fuzzy, c-format #| msgid "error closing %s: %s\n" msgid "error for setup KDF: %s\n" msgstr "fel vid stängning av %s: %s\n" -#: g10/card-util.c:2158 g10/keyedit.c:1260 +#: g10/card-util.c:2157 g10/keyedit.c:1260 msgid "quit this menu" msgstr "avsluta denna meny" -#: g10/card-util.c:2160 +#: g10/card-util.c:2159 msgid "show admin commands" msgstr "visa administratörskommandon" -#: g10/card-util.c:2161 g10/keyedit.c:1263 +#: g10/card-util.c:2160 g10/keyedit.c:1263 msgid "show this help" msgstr "visa denna hjälp" -#: g10/card-util.c:2163 +#: g10/card-util.c:2162 msgid "list all available data" msgstr "lista allt tillgängligt data" -#: g10/card-util.c:2166 +#: g10/card-util.c:2165 msgid "change card holder's name" msgstr "ändra kortinnehavarens namn" -#: g10/card-util.c:2167 +#: g10/card-util.c:2166 msgid "change URL to retrieve key" msgstr "ändra url för att hämta nyckel" -#: g10/card-util.c:2168 +#: g10/card-util.c:2167 msgid "fetch the key specified in the card URL" msgstr "hämta nyckel som anges i kortets url" -#: g10/card-util.c:2169 +#: g10/card-util.c:2168 msgid "change the login name" msgstr "ändra inloggningsnamnet" # originalet borde ha ett value -#: g10/card-util.c:2170 +#: g10/card-util.c:2169 msgid "change the language preferences" msgstr "ändra språkinställningarna" -#: g10/card-util.c:2171 +#: g10/card-util.c:2170 #, fuzzy #| msgid "change card holder's sex" msgid "change card holder's salutation" msgstr "ändra kortinnehavarens kön" -#: g10/card-util.c:2173 +#: g10/card-util.c:2172 msgid "change a CA fingerprint" msgstr "ändra ett CA-fingeravtryck" # den låter skum -#: g10/card-util.c:2174 +#: g10/card-util.c:2173 msgid "toggle the signature force PIN flag" msgstr "växla flagga för att tvinga signatur-PIN-kod" -#: g10/card-util.c:2175 +#: g10/card-util.c:2174 msgid "generate new keys" msgstr "generera nya nycklar" -#: g10/card-util.c:2176 +#: g10/card-util.c:2175 msgid "menu to change or unblock the PIN" msgstr "meny för att ändra eller avblockera PIN-koden" -#: g10/card-util.c:2177 +#: g10/card-util.c:2176 msgid "verify the PIN and list all data" msgstr "validera PIN-koden och lista allt data" -#: g10/card-util.c:2178 +#: g10/card-util.c:2177 msgid "unblock the PIN using a Reset Code" msgstr "lås upp PIN-koden med en nollställningskod" -#: g10/card-util.c:2179 +#: g10/card-util.c:2178 msgid "destroy all keys and data" msgstr "" -#: g10/card-util.c:2180 +#: g10/card-util.c:2179 #, fuzzy #| msgid "|NAME|use NAME as default recipient" msgid "setup KDF for PIN authentication" msgstr "|NAMN|använd NAMN som standardmottagare" # originalet borde ha ett value -#: g10/card-util.c:2181 +#: g10/card-util.c:2180 #, fuzzy #| msgid "change the ownertrust" msgid "change the key attribute" msgstr "ändra ägartillitsvärdet" -#: g10/card-util.c:2305 +#: g10/card-util.c:2304 msgid "gpg/card> " msgstr "gpg/kort> " -#: g10/card-util.c:2346 +#: g10/card-util.c:2345 msgid "Admin-only command\n" msgstr "Kommandon endast för administratör\n" -#: g10/card-util.c:2377 +#: g10/card-util.c:2376 msgid "Admin commands are allowed\n" msgstr "Administrationskommandon tillåts\n" -#: g10/card-util.c:2379 +#: g10/card-util.c:2378 msgid "Admin commands are not allowed\n" msgstr "Administrationskommandon tillåts inte\n" -#: g10/card-util.c:2482 g10/keyedit.c:2229 +#: g10/card-util.c:2481 g10/keyedit.c:2229 msgid "Invalid command (try \"help\")\n" msgstr "Ogiltigt kommando (prova med \"help\")\n" @@ -2436,22 +2436,22 @@ msgstr "--output kan inte användas för detta kommando\n" # se förra kommentaren -#: g10/decrypt.c:247 g10/gpg.c:5155 g10/keyring.c:399 g10/keyring.c:750 +#: g10/decrypt.c:247 g10/gpg.c:5175 g10/keyring.c:399 g10/keyring.c:750 #, fuzzy, c-format #| msgid "can't open `%s'\n" msgid "can't open '%s'\n" msgstr "kan inte öppna \"%s\"\n" -#: g10/delkey.c:83 g10/export.c:1947 g10/export.c:2230 g10/export.c:2351 -#: g10/getkey.c:2108 g10/gpg.c:5100 g10/keyedit.c:1445 g10/keyedit.c:2335 +#: g10/delkey.c:83 g10/export.c:2035 g10/export.c:2349 g10/export.c:2470 +#: g10/getkey.c:2108 g10/gpg.c:5120 g10/keyedit.c:1445 g10/keyedit.c:2335 #: g10/keyedit.c:2637 g10/keyedit.c:4600 g10/keylist.c:693 g10/keyserver.c:1092 #: g10/revoke.c:230 g10/tofu.c:2165 #, c-format msgid "key \"%s\" not found: %s\n" msgstr "nyckeln \"%s\" hittades inte: %s\n" -#: g10/delkey.c:92 g10/export.c:2015 g10/getkey.c:2116 g10/getkey.c:4517 -#: g10/gpg.c:5109 g10/keyedit.c:2308 g10/keyserver.c:1110 g10/revoke.c:236 +#: g10/delkey.c:92 g10/export.c:2103 g10/getkey.c:2116 g10/getkey.c:4517 +#: g10/gpg.c:5129 g10/keyedit.c:2308 g10/keyserver.c:1110 g10/revoke.c:236 #: g10/revoke.c:663 g10/tofu.c:2173 #, c-format msgid "error reading keyblock: %s\n" @@ -2575,14 +2575,14 @@ msgid "WARNING: '%s' is an empty file\n" msgstr "VARNING: \"%s\" är en tom fil\n" -#: g10/encrypt.c:446 g10/encrypt.c:521 g10/decrypt-data.c:266 g10/gpg.c:3959 -#: g10/gpg.c:3999 sm/decrypt.c:826 sm/encrypt.c:416 sm/gpgsm.c:1609 +#: g10/encrypt.c:446 g10/encrypt.c:521 g10/decrypt-data.c:266 g10/gpg.c:3979 +#: g10/gpg.c:4019 sm/decrypt.c:826 sm/encrypt.c:416 sm/gpgsm.c:1609 #, fuzzy, c-format #| msgid "you may not use cipher algorithm `%s' while in %s mode\n" msgid "cipher algorithm '%s' may not be used in %s mode\n" msgstr "du får inte använda chifferalgoritmen \"%s\" när du är i %s-läget\n" -#: g10/encrypt.c:455 g10/gpg.c:3965 g10/gpg.c:4011 g10/sig-check.c:175 +#: g10/encrypt.c:455 g10/gpg.c:3985 g10/gpg.c:4031 g10/sig-check.c:175 #: g10/sign.c:391 sm/gpgsm.c:1619 sm/gpgsm.c:1629 sm/sign.c:478 sm/verify.c:506 #, fuzzy, c-format #| msgid "you may not use digest algorithm `%s' while in %s mode\n" @@ -2709,64 +2709,70 @@ msgid "WARNING: unable to remove temp directory '%s': %s\n" msgstr "VARNING: kunde inte ta bort temp-katalogen \"%s\": %s\n" -#: g10/export.c:119 +#: g10/export.c:124 msgid "export signatures that are marked as local-only" msgstr "exportera signaturer som är märkta som endast lokala" -#: g10/export.c:121 +#: g10/export.c:126 msgid "export attribute user IDs (generally photo IDs)" msgstr "exportera attribut i användaridentiteter (vanligtvis foto-id)" -#: g10/export.c:123 +#: g10/export.c:128 msgid "export revocation keys marked as \"sensitive\"" msgstr "exportera spärrnycklar markerade som \"känslig\"" -#: g10/export.c:125 +#: g10/export.c:130 msgid "remove unusable parts from key during export" msgstr "ta bort oanvändbara delar från nyckeln under exportering" -#: g10/export.c:127 +#: g10/export.c:132 msgid "remove as much as possible from key during export" msgstr "ta bort så mycket som möjligt från nyckeln under exportering" -#: g10/export.c:133 +#: g10/export.c:138 +#, fuzzy +#| msgid "generate a revocation certificate" +msgid "export only revocation certificates" +msgstr "generera ett spärrcertifikat" + +#: g10/export.c:141 msgid "use the GnuPG key backup format" msgstr "" -#: g10/export.c:1291 +#: g10/export.c:1306 #, fuzzy #| msgid "%s: skipped: %s\n" msgid " - skipped" msgstr "%s: hoppade över: %s\n" -#: g10/export.c:1324 g10/import.c:2085 g10/openfile.c:200 g10/openfile.c:294 +#: g10/export.c:1339 g10/import.c:2089 g10/openfile.c:200 g10/openfile.c:294 #: g10/sign.c:1012 g10/sign.c:1326 #, fuzzy, c-format #| msgid "writing to `%s'\n" msgid "writing to '%s'\n" msgstr "skriver till \"%s\"\n" -#: g10/export.c:1769 +#: g10/export.c:1784 #, c-format msgid "key %s: key material on-card - skipped\n" msgstr "nyckeln %s: nyckelmaterial på kortet - hoppade över\n" -#: g10/export.c:1964 +#: g10/export.c:2052 #, c-format msgid "exporting secret keys not allowed\n" msgstr "export av hemliga nycklar tillåts inte\n" -#: g10/export.c:2041 +#: g10/export.c:2129 #, c-format msgid "key %s: PGP 2.x style key - skipped\n" msgstr "nyckeln %s: nyckel av PGP 2.x-typ - hoppade över\n" -#: g10/export.c:2135 +#: g10/export.c:2254 #, c-format msgid "WARNING: nothing exported\n" msgstr "VARNING: ingenting exporterat\n" -#: g10/export.c:2432 g10/plaintext.c:153 g10/plaintext.c:162 +#: g10/export.c:2551 g10/plaintext.c:153 g10/plaintext.c:162 #: g10/plaintext.c:168 g10/plaintext.c:191 #, fuzzy, c-format #| msgid "error creating `%s': %s\n" @@ -2837,300 +2843,300 @@ msgid "using subkey %s instead of primary key %s\n" msgstr "använder undernyckeln %s istället för primära nyckeln %s\n" -#: g10/getkey.c:4446 g10/gpg.c:2137 +#: g10/getkey.c:4446 g10/gpg.c:2146 #, fuzzy, c-format #| msgid "missing argument for option \"%.50s\"\n" msgid "valid values for option '%s':\n" msgstr "argument för flaggan \"%.50s\" saknas\n" -#: g10/gpg.c:443 sm/gpgsm.c:212 +#: g10/gpg.c:444 sm/gpgsm.c:212 msgid "make a signature" msgstr "skapa en signatur" -#: g10/gpg.c:444 +#: g10/gpg.c:445 msgid "make a clear text signature" msgstr "skapa en klartextsignatur" -#: g10/gpg.c:446 sm/gpgsm.c:214 +#: g10/gpg.c:447 sm/gpgsm.c:214 msgid "make a detached signature" msgstr "skapa signatur i en separat fil" -#: g10/gpg.c:447 sm/gpgsm.c:215 +#: g10/gpg.c:448 sm/gpgsm.c:215 msgid "encrypt data" msgstr "kryptera data" -#: g10/gpg.c:449 +#: g10/gpg.c:450 msgid "encryption only with symmetric cipher" msgstr "kryptering endast med symmetriskt chiffer" # gnupg dekrypterar data om inget kommando anges dvs. kommandot "decrypt" behöver inte användas. -#: g10/gpg.c:451 sm/gpgsm.c:217 +#: g10/gpg.c:452 sm/gpgsm.c:217 msgid "decrypt data (default)" msgstr "dekryptera data (standard)" -#: g10/gpg.c:453 sm/gpgsm.c:218 +#: g10/gpg.c:454 sm/gpgsm.c:218 msgid "verify a signature" msgstr "validera en signatur" -#: g10/gpg.c:455 sm/gpgsm.c:219 +#: g10/gpg.c:456 sm/gpgsm.c:219 msgid "list keys" msgstr "lista nycklar" -#: g10/gpg.c:457 +#: g10/gpg.c:458 msgid "list keys and signatures" msgstr "lista nycklar och signaturer" -#: g10/gpg.c:460 +#: g10/gpg.c:461 msgid "list and check key signatures" msgstr "lista och kontrollera nyckelsignaturer" -#: g10/gpg.c:462 sm/gpgsm.c:224 +#: g10/gpg.c:463 sm/gpgsm.c:224 msgid "list keys and fingerprints" msgstr "lista nycklar och fingeravtryck" -#: g10/gpg.c:463 sm/gpgsm.c:222 +#: g10/gpg.c:464 sm/gpgsm.c:222 msgid "list secret keys" msgstr "lista hemliga nycklar" -#: g10/gpg.c:465 sm/gpgsm.c:225 +#: g10/gpg.c:466 sm/gpgsm.c:225 msgid "generate a new key pair" msgstr "generera ett nytt nyckelpar" -#: g10/gpg.c:468 +#: g10/gpg.c:469 #, fuzzy #| msgid "generate a new key pair" msgid "quickly generate a new key pair" msgstr "generera ett nytt nyckelpar" -#: g10/gpg.c:471 +#: g10/gpg.c:472 #, fuzzy #| msgid "generate a new key pair" msgid "quickly add a new user-id" msgstr "generera ett nytt nyckelpar" -#: g10/gpg.c:476 +#: g10/gpg.c:477 #, fuzzy #| msgid "generate a new key pair" msgid "quickly revoke a user-id" msgstr "generera ett nytt nyckelpar" -#: g10/gpg.c:479 +#: g10/gpg.c:480 #, fuzzy #| msgid "generate a new key pair" msgid "quickly set a new expiration date" msgstr "generera ett nytt nyckelpar" -#: g10/gpg.c:482 +#: g10/gpg.c:483 msgid "full featured key pair generation" msgstr "" -#: g10/gpg.c:485 +#: g10/gpg.c:486 msgid "generate a revocation certificate" msgstr "generera ett spärrcertifikat" -#: g10/gpg.c:488 sm/gpgsm.c:228 +#: g10/gpg.c:489 sm/gpgsm.c:228 msgid "remove keys from the public keyring" msgstr "ta bort nycklar från den publika nyckelringen" -#: g10/gpg.c:490 +#: g10/gpg.c:491 msgid "remove keys from the secret keyring" msgstr "ta bort nycklar från den hemliga nyckelringen" -#: g10/gpg.c:492 +#: g10/gpg.c:493 #, fuzzy #| msgid "sign a key" msgid "quickly sign a key" msgstr "signera en nyckel" -#: g10/gpg.c:494 +#: g10/gpg.c:495 #, fuzzy #| msgid "sign a key locally" msgid "quickly sign a key locally" msgstr "signera en nyckel lokalt" -#: g10/gpg.c:496 +#: g10/gpg.c:497 #, fuzzy #| msgid "generate a new key pair" msgid "quickly revoke a key signature" msgstr "generera ett nytt nyckelpar" -#: g10/gpg.c:497 +#: g10/gpg.c:498 msgid "sign a key" msgstr "signera en nyckel" -#: g10/gpg.c:498 +#: g10/gpg.c:499 msgid "sign a key locally" msgstr "signera en nyckel lokalt" -#: g10/gpg.c:499 +#: g10/gpg.c:500 msgid "sign or edit a key" msgstr "signera eller redigera en nyckel" -#: g10/gpg.c:501 sm/gpgsm.c:246 +#: g10/gpg.c:502 sm/gpgsm.c:246 msgid "change a passphrase" msgstr "ändra en lösenfras" -#: g10/gpg.c:505 +#: g10/gpg.c:506 msgid "export keys" msgstr "exportera nycklar" -#: g10/gpg.c:506 +#: g10/gpg.c:507 msgid "export keys to a keyserver" msgstr "exportera nycklar till en nyckelserver" -#: g10/gpg.c:507 +#: g10/gpg.c:508 msgid "import keys from a keyserver" msgstr "importera nycklar från en nyckelserver" -#: g10/gpg.c:510 +#: g10/gpg.c:511 msgid "search for keys on a keyserver" msgstr "sök efter nycklar hos en nyckelserver" -#: g10/gpg.c:512 +#: g10/gpg.c:513 msgid "update all keys from a keyserver" msgstr "uppdatera alla nycklar nycklar från en nyckelserver" -#: g10/gpg.c:520 +#: g10/gpg.c:521 msgid "import/merge keys" msgstr "importera/slå samman nycklar" -#: g10/gpg.c:523 +#: g10/gpg.c:524 msgid "print the card status" msgstr "skriv ut kortstatus" -#: g10/gpg.c:524 +#: g10/gpg.c:525 msgid "change data on a card" msgstr "ändra data på ett kort" -#: g10/gpg.c:526 +#: g10/gpg.c:527 msgid "change a card's PIN" msgstr "ändra PIN-kod för ett kort" -#: g10/gpg.c:538 +#: g10/gpg.c:539 msgid "update the trust database" msgstr "uppdatera tillitsdatabasen" -#: g10/gpg.c:548 +#: g10/gpg.c:549 msgid "print message digests" msgstr "skriv ut kontrollsummor" -#: g10/gpg.c:552 sm/gpgsm.c:241 +#: g10/gpg.c:553 sm/gpgsm.c:241 msgid "run in server mode" msgstr "kör i serverläge" -#: g10/gpg.c:554 +#: g10/gpg.c:555 msgid "|VALUE|set the TOFU policy for a key" msgstr "" -#: g10/gpg.c:594 +#: g10/gpg.c:595 msgid "|NAME|use NAME as default secret key" msgstr "|NAMN|använd NAMN som förvald hemlig nyckel" -#: g10/gpg.c:596 sm/gpgsm.c:332 +#: g10/gpg.c:597 sm/gpgsm.c:332 msgid "|NAME|encrypt to user ID NAME as well" msgstr "|NAMN|kryptera även till användaridentiteten NAMN" -#: g10/gpg.c:604 +#: g10/gpg.c:605 msgid "|SPEC|set up email aliases" msgstr "|SPEC|ange e-postalias (ett eller flera)" -#: g10/gpg.c:616 +#: g10/gpg.c:617 msgid "use strict OpenPGP behavior" msgstr "använd strikt OpenPGP-beteende" -#: g10/gpg.c:641 kbx/kbxutil.c:90 sm/gpgsm.c:412 tools/gpgconf.c:112 +#: g10/gpg.c:642 kbx/kbxutil.c:90 sm/gpgsm.c:412 tools/gpgconf.c:112 msgid "do not make any changes" msgstr "gör inga ändringar" -#: g10/gpg.c:642 +#: g10/gpg.c:643 msgid "prompt before overwriting" msgstr "fråga innan överskrivning" -#: g10/gpg.c:689 sm/gpgsm.c:304 +#: g10/gpg.c:690 sm/gpgsm.c:304 #, fuzzy #| msgid "Options controlling the security" msgid "Options controlling the input" msgstr "Flaggor som kontrollerar säkerheten" -#: g10/gpg.c:707 sm/gpgsm.c:314 +#: g10/gpg.c:708 sm/gpgsm.c:314 #, fuzzy #| msgid "Options controlling the diagnostic output" msgid "Options controlling the output" msgstr "Flaggor som kontrollerar diagnosutdata" -#: g10/gpg.c:709 sm/gpgsm.c:316 +#: g10/gpg.c:710 sm/gpgsm.c:316 msgid "create ascii armored output" msgstr "skapa utdata med ett ascii-skal" -#: g10/gpg.c:713 g10/gpgv.c:82 sm/gpgsm.c:321 +#: g10/gpg.c:714 g10/gpgv.c:82 sm/gpgsm.c:321 msgid "|FILE|write output to FILE" msgstr "|FIL|skriv utdata till FIL" -#: g10/gpg.c:726 +#: g10/gpg.c:727 msgid "use canonical text mode" msgstr "använd \"ursprunglig text\"-läget" -#: g10/gpg.c:743 +#: g10/gpg.c:744 msgid "|N|set compress level to N (0 disables)" msgstr "|N|ställ in komprimeringsnivån till N (0 för att inaktivera)" -#: g10/gpg.c:750 sm/gpgsm.c:347 +#: g10/gpg.c:751 sm/gpgsm.c:347 #, fuzzy #| msgid "Options controlling the interactivity and enforcement" msgid "Options controlling key import and export" msgstr "Flaggor som kontrollerar interaktivitet och framtvingande" -#: g10/gpg.c:753 +#: g10/gpg.c:754 msgid "|MECHANISMS|use MECHANISMS to locate keys by mail address" msgstr "|MEKANISMER|använd MEKANISMER för att hitta nycklar efter e-postadress" -#: g10/gpg.c:756 +#: g10/gpg.c:757 #, fuzzy #| msgid "import keys from a keyserver" msgid "import missing key from a signature" msgstr "importera nycklar från en nyckelserver" -#: g10/gpg.c:761 +#: g10/gpg.c:762 #, fuzzy #| msgid "list and check key signatures" msgid "include the public key in signatures" msgstr "lista och kontrollera nyckelsignaturer" -#: g10/gpg.c:764 sm/gpgsm.c:350 +#: g10/gpg.c:765 sm/gpgsm.c:350 msgid "disable all access to the dirmngr" msgstr "inaktivera all åtkomst till dirmngr" -#: g10/gpg.c:776 sm/gpgsm.c:357 +#: g10/gpg.c:777 sm/gpgsm.c:357 #, fuzzy #| msgid "Options controlling the configuration" msgid "Options controlling key listings" msgstr "Flaggor som kontrollerar konfigurationen" -#: g10/gpg.c:805 sm/gpgsm.c:324 +#: g10/gpg.c:806 sm/gpgsm.c:324 #, fuzzy #| msgid "list secret keys" msgid "Options to specify keys" msgstr "lista hemliga nycklar" -#: g10/gpg.c:807 sm/gpgsm.c:326 +#: g10/gpg.c:808 sm/gpgsm.c:326 msgid "|USER-ID|encrypt for USER-ID" msgstr "|ANVÄNDAR-ID|kryptera för ANVÄNDAR-ID" -#: g10/gpg.c:815 sm/gpgsm.c:328 +#: g10/gpg.c:816 sm/gpgsm.c:328 msgid "|USER-ID|use USER-ID to sign or decrypt" msgstr "|ANVÄNDAR-ID|använd ANVÄNDAR-ID för att signera eller dekryptera" -#: g10/gpg.c:866 sm/gpgsm.c:396 +#: g10/gpg.c:867 sm/gpgsm.c:396 msgid "Options for unattended use" msgstr "" -#: g10/gpg.c:885 sm/gpgsm.c:408 dirmngr/dirmngr.c:294 +#: g10/gpg.c:886 sm/gpgsm.c:408 dirmngr/dirmngr.c:294 msgid "Other options" msgstr "" # inställningar istället för flaggor? # Nej, här är det bruksanvisningen för kommandoraden. -#: g10/gpg.c:953 sm/gpgsm.c:440 +#: g10/gpg.c:955 sm/gpgsm.c:440 msgid "" "@\n" "(See the man page for a complete listing of all commands and options)\n" @@ -3138,7 +3144,7 @@ "@\n" "(Se manualsidan för en fullständig lista över alla kommandon och flaggor)\n" -#: g10/gpg.c:956 +#: g10/gpg.c:958 #, fuzzy #| msgid "" #| "@\n" @@ -3168,14 +3174,14 @@ "--list-keys [namn] visa nycklar\n" "--fingerprint [namn] visa fingeravtryck\n" -#: g10/gpg.c:1130 +#: g10/gpg.c:1139 #, fuzzy #| msgid "Usage: gpg [options] [files] (-h for help)" msgid "Usage: @GPG@ [options] [files] (-h for help)" msgstr "Användning: gpg [flaggor] [filer] (-h för hjälp)" # Om inget kommando anges (decrypt/encrypt etc) väljs åtgärd efter indata. -#: g10/gpg.c:1133 +#: g10/gpg.c:1142 #, fuzzy #| msgid "" #| "Syntax: gpg [options] [files]\n" @@ -3190,7 +3196,7 @@ "signera, kontrollera, kryptera eller dekryptera\n" "standardåtgärden beror på inmatningsdata\n" -#: g10/gpg.c:1144 sm/gpgsm.c:624 +#: g10/gpg.c:1153 sm/gpgsm.c:624 msgid "" "\n" "Supported algorithms:\n" @@ -3198,85 +3204,85 @@ "\n" "Algoritmer som stöds:\n" -#: g10/gpg.c:1147 +#: g10/gpg.c:1156 msgid "Pubkey: " msgstr "Publik nyckel: " -#: g10/gpg.c:1154 g10/keyedit.c:3338 +#: g10/gpg.c:1163 g10/keyedit.c:3338 msgid "Cipher: " msgstr "Chiffer: " -#: g10/gpg.c:1161 +#: g10/gpg.c:1170 msgid "Hash: " msgstr "Kontrollsumma: " -#: g10/gpg.c:1168 g10/keyedit.c:3404 +#: g10/gpg.c:1177 g10/keyedit.c:3404 msgid "Compression: " msgstr "Komprimering: " -#: g10/gpg.c:1241 sm/gpgsm.c:698 +#: g10/gpg.c:1250 sm/gpgsm.c:698 #, fuzzy, c-format #| msgid "usage: gpgsm [options] " msgid "usage: %s [options] %s\n" msgstr "användning: gpgsm [flaggor] " -#: g10/gpg.c:1436 sm/gpgsm.c:791 +#: g10/gpg.c:1445 sm/gpgsm.c:791 #, c-format msgid "conflicting commands\n" msgstr "motstridiga kommandon\n" # Vad betyder detta? -#: g10/gpg.c:1454 +#: g10/gpg.c:1463 #, fuzzy, c-format #| msgid "no = sign found in group definition `%s'\n" msgid "no = sign found in group definition '%s'\n" msgstr "no = signatur hittad i gruppdefinitionen \"%s\"\n" -#: g10/gpg.c:1652 +#: g10/gpg.c:1661 #, fuzzy, c-format #| msgid "WARNING: unsafe ownership on homedir `%s'\n" msgid "WARNING: unsafe ownership on homedir '%s'\n" msgstr "VARNING: osäkert ägarskap på hemkatalogen \"%s\"\n" -#: g10/gpg.c:1655 +#: g10/gpg.c:1664 #, fuzzy, c-format #| msgid "WARNING: unsafe ownership on configuration file `%s'\n" msgid "WARNING: unsafe ownership on configuration file '%s'\n" msgstr "VARNING: osäkert ägarskap på konfigurationsfilen \"%s\"\n" -#: g10/gpg.c:1658 +#: g10/gpg.c:1667 #, fuzzy, c-format #| msgid "WARNING: unsafe ownership on extension `%s'\n" msgid "WARNING: unsafe ownership on extension '%s'\n" msgstr "VARNING: osäkert ägarskap på tillägget \"%s\"\n" -#: g10/gpg.c:1664 +#: g10/gpg.c:1673 #, fuzzy, c-format #| msgid "WARNING: unsafe permissions on homedir `%s'\n" msgid "WARNING: unsafe permissions on homedir '%s'\n" msgstr "VARNING: osäkra rättigheter på hemkatalogen \"%s\"\n" -#: g10/gpg.c:1667 +#: g10/gpg.c:1676 #, fuzzy, c-format #| msgid "WARNING: unsafe permissions on configuration file `%s'\n" msgid "WARNING: unsafe permissions on configuration file '%s'\n" msgstr "VARNING: osäkra rättigheter på konfigurationsfilen \"%s\"\n" # Extension är vad? FIXME -#: g10/gpg.c:1670 +#: g10/gpg.c:1679 #, fuzzy, c-format #| msgid "WARNING: unsafe permissions on extension `%s'\n" msgid "WARNING: unsafe permissions on extension '%s'\n" msgstr "VARNING: osäkra rättigheter på tillägget \"%s\"\n" -#: g10/gpg.c:1676 +#: g10/gpg.c:1685 #, fuzzy, c-format #| msgid "WARNING: unsafe enclosing directory ownership on homedir `%s'\n" msgid "WARNING: unsafe enclosing directory ownership on homedir '%s'\n" msgstr "" "VARNING: osäkert ägarskap på inneslutande katalog för hemkatalogen \"%s\"\n" -#: g10/gpg.c:1679 +#: g10/gpg.c:1688 #, fuzzy, c-format #| msgid "" #| "WARNING: unsafe enclosing directory ownership on configuration file `%s'\n" @@ -3286,21 +3292,21 @@ "VARNING: osäkert ägarskap på inneslutande katalog för konfigurationsfilen " "\"%s\"\n" -#: g10/gpg.c:1682 +#: g10/gpg.c:1691 #, fuzzy, c-format #| msgid "WARNING: unsafe enclosing directory ownership on extension `%s'\n" msgid "WARNING: unsafe enclosing directory ownership on extension '%s'\n" msgstr "" "VARNING: osäkert ägarskap på inneslutande katalog för tillägget \"%s\"\n" -#: g10/gpg.c:1688 +#: g10/gpg.c:1697 #, fuzzy, c-format #| msgid "WARNING: unsafe enclosing directory permissions on homedir `%s'\n" msgid "WARNING: unsafe enclosing directory permissions on homedir '%s'\n" msgstr "" "VARNING: osäkra rättigheter på inneslutande katalog för hemkatalogen \"%s\"\n" -#: g10/gpg.c:1691 +#: g10/gpg.c:1700 #, fuzzy, c-format #| msgid "" #| "WARNING: unsafe enclosing directory permissions on configuration file `" @@ -3311,482 +3317,482 @@ "VARNING: osäkra rättigheter på inneslutande katalog för konfigurationsfilen " "\"%s\"\n" -#: g10/gpg.c:1694 +#: g10/gpg.c:1703 #, fuzzy, c-format #| msgid "WARNING: unsafe enclosing directory permissions on extension `%s'\n" msgid "WARNING: unsafe enclosing directory permissions on extension '%s'\n" msgstr "" "VARNING: osäkra rättigheter på inneslutande katalog för tillägget \"%s\"\n" -#: g10/gpg.c:1910 +#: g10/gpg.c:1919 #, fuzzy, c-format #| msgid "unknown configuration item `%s'\n" msgid "unknown configuration item '%s'\n" msgstr "okänd konfigurationspost \"%s\"\n" -#: g10/gpg.c:2009 +#: g10/gpg.c:2018 msgid "display photo IDs during key listings" msgstr "visa foto-id under nyckellistning" -#: g10/gpg.c:2011 +#: g10/gpg.c:2020 #, fuzzy #| msgid "show user ID validity during key listings" msgid "show key usage information during key listings" msgstr "visa giltighet för användaridentitet vid nyckellistningar " -#: g10/gpg.c:2013 +#: g10/gpg.c:2022 msgid "show policy URLs during signature listings" msgstr "visa policy-url:er under signaturlistningar" -#: g10/gpg.c:2015 +#: g10/gpg.c:2024 msgid "show all notations during signature listings" msgstr "visa alla notationer under signaturlistningar" -#: g10/gpg.c:2017 +#: g10/gpg.c:2026 msgid "show IETF standard notations during signature listings" msgstr "visa IETF-standardnotationer under signaturlistningar" -#: g10/gpg.c:2021 +#: g10/gpg.c:2030 msgid "show user-supplied notations during signature listings" msgstr "visa användarangivna notationer under signaturlistningar" -#: g10/gpg.c:2023 +#: g10/gpg.c:2032 msgid "show preferred keyserver URLs during signature listings" msgstr "visa url:er till föredragna nyckelservrar under signaturlistningar" -#: g10/gpg.c:2025 +#: g10/gpg.c:2034 msgid "show user ID validity during key listings" msgstr "visa giltighet för användaridentitet vid nyckellistningar " -#: g10/gpg.c:2027 +#: g10/gpg.c:2036 msgid "show revoked and expired user IDs in key listings" msgstr "visa spärrade och utgångna användaridentiteter i nyckellistningar" -#: g10/gpg.c:2029 +#: g10/gpg.c:2038 msgid "show revoked and expired subkeys in key listings" msgstr "visa spärrade och utgångna undernycklar i nyckellistningar" -#: g10/gpg.c:2031 +#: g10/gpg.c:2040 msgid "show the keyring name in key listings" msgstr "visa nyckelringens namn i nyckellistningar" -#: g10/gpg.c:2033 +#: g10/gpg.c:2042 msgid "show expiration dates during signature listings" msgstr "visa utgångsdatum under signaturlistningar" -#: g10/gpg.c:2148 +#: g10/gpg.c:2157 #, fuzzy, c-format #| msgid "unknown option `%s'\n" msgid "unknown TOFU policy '%s'\n" msgstr "okänd flagga \"%s\"\n" -#: g10/gpg.c:2150 +#: g10/gpg.c:2159 #, c-format msgid "(use \"help\" to list choices)\n" msgstr "" -#: g10/gpg.c:2240 g10/keyedit.c:1719 +#: g10/gpg.c:2249 g10/keyedit.c:1719 #, c-format msgid "This command is not allowed while in %s mode.\n" msgstr "Detta kommando är inte tillåtet när du är i %s-läge.\n" -#: g10/gpg.c:2878 g10/gpg.c:3718 g10/gpg.c:3730 +#: g10/gpg.c:2896 g10/gpg.c:3736 g10/gpg.c:3748 #, fuzzy, c-format #| msgid "NOTE: %s is not for normal use!\n" msgid "Note: %s is not for normal use!\n" msgstr "OBS: %s är inte för normal användning!\n" -#: g10/gpg.c:3053 g10/gpg.c:3065 +#: g10/gpg.c:3071 g10/gpg.c:3083 #, fuzzy, c-format #| msgid "`%s' is not a valid signature expiration\n" msgid "'%s' is not a valid signature expiration\n" msgstr "\"%s\" är inte ett giltigt utgångsdatum för en signatur\n" -#: g10/gpg.c:3087 +#: g10/gpg.c:3105 #, fuzzy, c-format #| msgid "line %d: not a valid email address\n" msgid "\"%s\" is not a proper mail address\n" msgstr "rad %d: inte en giltig e-postadress\n" -#: g10/gpg.c:3119 sm/gpgsm.c:1121 +#: g10/gpg.c:3137 sm/gpgsm.c:1121 #, fuzzy, c-format #| msgid "invalid country code in `%s', line %d\n" msgid "invalid pinentry mode '%s'\n" msgstr "ogiltig landskod i \"%s\", rad %d\n" -#: g10/gpg.c:3125 sm/gpgsm.c:1127 +#: g10/gpg.c:3143 sm/gpgsm.c:1127 #, fuzzy, c-format #| msgid "missing argument for option \"%.50s\"\n" msgid "invalid request origin '%s'\n" msgstr "argument för flaggan \"%.50s\" saknas\n" -#: g10/gpg.c:3179 +#: g10/gpg.c:3197 #, fuzzy, c-format #| msgid "`%s' is not a valid character set\n" msgid "'%s' is not a valid character set\n" msgstr "\"%s\" är ingen giltig teckentabell\n" -#: g10/gpg.c:3201 g10/gpg.c:3415 g10/keyedit.c:5338 +#: g10/gpg.c:3219 g10/gpg.c:3433 g10/keyedit.c:5338 #, c-format msgid "could not parse keyserver URL\n" msgstr "kunde inte tolka url till nyckelserver\n" -#: g10/gpg.c:3219 +#: g10/gpg.c:3237 #, c-format msgid "%s:%d: invalid keyserver options\n" msgstr "%s:%d: ogiltiga flaggor för nyckelserver\n" -#: g10/gpg.c:3222 +#: g10/gpg.c:3240 #, c-format msgid "invalid keyserver options\n" msgstr "ogiltiga flaggor för nyckelserver\n" -#: g10/gpg.c:3229 +#: g10/gpg.c:3247 #, c-format msgid "%s:%d: invalid import options\n" msgstr "%s:%d: ogiltiga importeringsflaggor\n" -#: g10/gpg.c:3232 +#: g10/gpg.c:3250 #, c-format msgid "invalid import options\n" msgstr "ogiltiga importflaggor\n" -#: g10/gpg.c:3238 g10/gpg.c:3253 +#: g10/gpg.c:3256 g10/gpg.c:3271 #, fuzzy, c-format #| msgid "invalid list options\n" msgid "invalid filter option: %s\n" msgstr "ogiltiga listflaggor\n" -#: g10/gpg.c:3244 +#: g10/gpg.c:3262 #, c-format msgid "%s:%d: invalid export options\n" msgstr "%s:%d: ogiltiga exportflaggor\n" -#: g10/gpg.c:3247 +#: g10/gpg.c:3265 #, c-format msgid "invalid export options\n" msgstr "ogiltiga exportinställningar\n" -#: g10/gpg.c:3259 +#: g10/gpg.c:3277 #, c-format msgid "%s:%d: invalid list options\n" msgstr "%s:%d: ogiltiga listflaggor\n" -#: g10/gpg.c:3262 +#: g10/gpg.c:3280 #, c-format msgid "invalid list options\n" msgstr "ogiltiga listflaggor\n" -#: g10/gpg.c:3270 +#: g10/gpg.c:3288 msgid "display photo IDs during signature verification" msgstr "visa foto-id under signaturvalidering" -#: g10/gpg.c:3272 +#: g10/gpg.c:3290 msgid "show policy URLs during signature verification" msgstr "visa policy-url:er under signaturvalidering" -#: g10/gpg.c:3274 +#: g10/gpg.c:3292 msgid "show all notations during signature verification" msgstr "visa alla notationer under signaturvalidering" -#: g10/gpg.c:3276 +#: g10/gpg.c:3294 msgid "show IETF standard notations during signature verification" msgstr "visa IETF-standardnotationer under signaturvalidering" -#: g10/gpg.c:3280 +#: g10/gpg.c:3298 msgid "show user-supplied notations during signature verification" msgstr "visa användarangivna notationer under signaturvalidering" -#: g10/gpg.c:3282 +#: g10/gpg.c:3300 msgid "show preferred keyserver URLs during signature verification" msgstr "visa url:er till föredragna nyckelserver under signaturvalidering" -#: g10/gpg.c:3284 +#: g10/gpg.c:3302 msgid "show user ID validity during signature verification" msgstr "visa giltighet för användaridentitet vid signaturvalidering" -#: g10/gpg.c:3286 +#: g10/gpg.c:3304 msgid "show revoked and expired user IDs in signature verification" msgstr "visa spärrade och utgångna användaridentiteter i signaturvalidering" -#: g10/gpg.c:3288 +#: g10/gpg.c:3306 msgid "show only the primary user ID in signature verification" msgstr "visa endast primär användaridentitet i signaturvalidering" -#: g10/gpg.c:3290 +#: g10/gpg.c:3308 msgid "validate signatures with PKA data" msgstr "validera signaturer med PKA-data" -#: g10/gpg.c:3292 +#: g10/gpg.c:3310 msgid "elevate the trust of signatures with valid PKA data" msgstr "öka tillit på signaturer med giltigt PKA-data" -#: g10/gpg.c:3299 +#: g10/gpg.c:3317 #, c-format msgid "%s:%d: invalid verify options\n" msgstr "%s:%d: ogiltiga flaggor för validering\n" -#: g10/gpg.c:3302 +#: g10/gpg.c:3320 #, c-format msgid "invalid verify options\n" msgstr "ogiltiga flaggor för validering\n" -#: g10/gpg.c:3309 +#: g10/gpg.c:3327 #, c-format msgid "unable to set exec-path to %s\n" msgstr "kunde inte ställa in exec-path till %s\n" -#: g10/gpg.c:3513 +#: g10/gpg.c:3531 #, c-format msgid "%s:%d: invalid auto-key-locate list\n" msgstr "%s:%d: ogiltig auto-key-locate-lista\n" -#: g10/gpg.c:3516 +#: g10/gpg.c:3534 #, c-format msgid "invalid auto-key-locate list\n" msgstr "ogiltig auto-key-locate-lista\n" # Programmet skapar en avbildning (image) av minnet för att lättare kunna spåra fel. -#: g10/gpg.c:3700 sm/gpgsm.c:1492 +#: g10/gpg.c:3718 sm/gpgsm.c:1492 #, c-format msgid "WARNING: program may create a core file!\n" msgstr "VARNING: programmet kan komma att skapa en minnesavbild!\n" -#: g10/gpg.c:3711 +#: g10/gpg.c:3729 #, c-format msgid "WARNING: %s overrides %s\n" msgstr "VARNING: %s gäller istället för %s\n" -#: g10/gpg.c:3720 +#: g10/gpg.c:3738 #, c-format msgid "%s not allowed with %s!\n" msgstr "%s är inte tillåten tillsammans med %s!\n" -#: g10/gpg.c:3723 +#: g10/gpg.c:3741 #, c-format msgid "%s makes no sense with %s!\n" msgstr "det är ingen poäng att använda %s tillsammans med %s!\n" -#: g10/gpg.c:3738 sm/gpgsm.c:1509 dirmngr/dirmngr.c:1205 +#: g10/gpg.c:3756 sm/gpgsm.c:1509 dirmngr/dirmngr.c:1205 #, c-format msgid "WARNING: running with faked system time: " msgstr "VARNING: kör med falsk systemtid: " -#: g10/gpg.c:3759 +#: g10/gpg.c:3777 #, c-format msgid "will not run with insecure memory due to %s\n" msgstr "kommer inte att köra med osäkert minne på grund av %s\n" -#: g10/gpg.c:3804 g10/gpg.c:3828 sm/gpgsm.c:1579 +#: g10/gpg.c:3824 g10/gpg.c:3848 sm/gpgsm.c:1579 #, c-format msgid "selected cipher algorithm is invalid\n" msgstr "den valda chifferalgoritmen är ogiltig\n" -#: g10/gpg.c:3816 +#: g10/gpg.c:3836 #, c-format msgid "selected compression algorithm is invalid\n" msgstr "vald komprimeringsalgoritm är ogiltig\n" -#: g10/gpg.c:3822 +#: g10/gpg.c:3842 #, c-format msgid "selected certification digest algorithm is invalid\n" msgstr "vald algoritm för certifieringssammandrag är felaktig\n" # antalet betrodda signaturer som behövs (1-3) för att du ska lita på en nyckel du inte själv verifierat. -#: g10/gpg.c:3837 +#: g10/gpg.c:3857 #, c-format msgid "completes-needed must be greater than 0\n" msgstr "variabeln \"completes-needed\" måste ha ett värde som är större än 0\n" # antalet delvis betrodda signaturer som behövs (1-3) för att du ska lita på en nyckel du inte själv verifierat. -#: g10/gpg.c:3839 +#: g10/gpg.c:3859 #, c-format msgid "marginals-needed must be greater than 1\n" msgstr "variabeln \"marginals-needed\" måste vara större än 1\n" # Hur djupt GnuPG ska leta i Web-of-trust. -#: g10/gpg.c:3841 +#: g10/gpg.c:3861 #, c-format msgid "max-cert-depth must be in the range from 1 to 255\n" msgstr "max-cert-depth måste vara inom intervallet från 1 till 255\n" # Det är nivån för hurväl du har kontrollerat att nyckeln tillhör innehavaren. -#: g10/gpg.c:3843 +#: g10/gpg.c:3863 #, c-format msgid "invalid default-cert-level; must be 0, 1, 2, or 3\n" msgstr "" "ogiltigt standardvärde för certifieringsnivån; måste vara 0, 1, 2 eller 3\n" # Det är nivån för hurväl du har kontrollerat att nyckeln tillhör innehavaren. -#: g10/gpg.c:3845 +#: g10/gpg.c:3865 #, c-format msgid "invalid min-cert-level; must be 1, 2, or 3\n" msgstr "ogiltigt minimivärde för certifieringsnivån; måste vara 1, 2 eller 3\n" # S2K har med krypteringen av hemliga nyckeln att göra -#: g10/gpg.c:3849 +#: g10/gpg.c:3869 #, fuzzy, c-format #| msgid "NOTE: simple S2K mode (0) is strongly discouraged\n" msgid "Note: simple S2K mode (0) is strongly discouraged\n" msgstr "OBS: enkelt S2K-läge (0) rekommenderas inte\n" -#: g10/gpg.c:3853 +#: g10/gpg.c:3873 #, c-format msgid "invalid S2K mode; must be 0, 1 or 3\n" msgstr "ogiltigt S2K-läge; måste vara 0, 1 eller 3\n" -#: g10/gpg.c:3860 +#: g10/gpg.c:3880 #, c-format msgid "invalid default preferences\n" msgstr "ogiltiga standardinställningar\n" # Du kan ange de algoritmer du föredrar i prioritetsordning. Då avgör inte enbart standard (symmetrisk kryptering) eller mottagarens preferenser (kryptering till öppen nyckel). -#: g10/gpg.c:3864 +#: g10/gpg.c:3884 #, c-format msgid "invalid personal cipher preferences\n" msgstr "ogiltig inställning av personligt chiffer\n" -#: g10/gpg.c:3868 +#: g10/gpg.c:3888 #, c-format msgid "invalid personal digest preferences\n" msgstr "ogiltig inställning av föredragna kontrollsummealgoritmer\n" -#: g10/gpg.c:3872 +#: g10/gpg.c:3892 #, c-format msgid "invalid personal compress preferences\n" msgstr "ogiltig inställning av föredragna kompressionsalgoritmer\n" -#: g10/gpg.c:3908 +#: g10/gpg.c:3928 #, c-format msgid "%s does not yet work with %s\n" msgstr "%s fungerar ännu inte med %s\n" -#: g10/gpg.c:3971 +#: g10/gpg.c:3991 #, fuzzy, c-format #| msgid "you may not use compression algorithm `%s' while in %s mode\n" msgid "compression algorithm '%s' may not be used in %s mode\n" msgstr "" "du får inte använda komprimeringsalgoritmen \"%s\" när du är i %s-läget\n" -#: g10/gpg.c:4115 +#: g10/gpg.c:4135 #, c-format msgid "failed to initialize the TrustDB: %s\n" msgstr "misslyckades med att initialisera tillitsdatabasen: %s\n" -#: g10/gpg.c:4127 +#: g10/gpg.c:4147 #, c-format msgid "WARNING: recipients (-r) given without using public key encryption\n" msgstr "" "VARNING: mottagare (-r) angivna utan att använda publik nyckel-kryptering\n" -#: g10/gpg.c:4199 +#: g10/gpg.c:4219 #, fuzzy, c-format #| msgid "symmetric encryption of `%s' failed: %s\n" msgid "symmetric encryption of '%s' failed: %s\n" msgstr "symmetrisk kryptering av \"%s\" misslyckades: %s\n" -#: g10/gpg.c:4228 +#: g10/gpg.c:4248 #, c-format msgid "you cannot use --symmetric --encrypt with --s2k-mode 0\n" msgstr "du kan inte använda --symmetric --encrypt med --s2k-mode 0\n" -#: g10/gpg.c:4231 +#: g10/gpg.c:4251 #, fuzzy, c-format #| msgid "you cannot use --symmetric --encrypt while in %s mode\n" msgid "you cannot use --symmetric --encrypt in %s mode\n" msgstr "du kan inte använda --symmetric --encrypt i %s-läget\n" -#: g10/gpg.c:4289 +#: g10/gpg.c:4309 #, c-format msgid "you cannot use --symmetric --sign --encrypt with --s2k-mode 0\n" msgstr "du kan inte använda --symmetric --sign --encrypt med --s2k-mode 0\n" -#: g10/gpg.c:4292 +#: g10/gpg.c:4312 #, fuzzy, c-format #| msgid "you cannot use --symmetric --sign --encrypt while in %s mode\n" msgid "you cannot use --symmetric --sign --encrypt in %s mode\n" msgstr "" "du kan inte använda --symmetric --sign --encrypt när du är i %s-läget\n" -#: g10/gpg.c:4692 g10/keyserver.c:1648 +#: g10/gpg.c:4712 g10/keyserver.c:1648 #, c-format msgid "keyserver send failed: %s\n" msgstr "sändning till nyckelservern misslyckades: %s\n" -#: g10/gpg.c:4697 +#: g10/gpg.c:4717 #, c-format msgid "keyserver receive failed: %s\n" msgstr "hämtning från nyckelservern misslyckades: %s\n" -#: g10/gpg.c:4703 +#: g10/gpg.c:4723 #, c-format msgid "key export failed: %s\n" msgstr "export av nyckeln misslyckades: %s\n" -#: g10/gpg.c:4716 +#: g10/gpg.c:4736 #, fuzzy, c-format #| msgid "key export failed: %s\n" msgid "export as ssh key failed: %s\n" msgstr "export av nyckeln misslyckades: %s\n" -#: g10/gpg.c:4728 +#: g10/gpg.c:4748 #, c-format msgid "keyserver search failed: %s\n" msgstr "sökning på nyckelservern misslyckades: %s\n" -#: g10/gpg.c:4741 +#: g10/gpg.c:4761 #, c-format msgid "keyserver refresh failed: %s\n" msgstr "uppdatering av nyckeln från en nyckelserver misslyckades: %s\n" -#: g10/gpg.c:4810 +#: g10/gpg.c:4830 #, c-format msgid "dearmoring failed: %s\n" msgstr "misslyckades med att ta bort ASCII-skalet: %s\n" -#: g10/gpg.c:4821 +#: g10/gpg.c:4841 #, c-format msgid "enarmoring failed: %s\n" msgstr "misslyckades med att skapa ASCII-skal: %s\n" -#: g10/gpg.c:4913 +#: g10/gpg.c:4933 #, fuzzy, c-format #| msgid "invalid hash algorithm `%s'\n" msgid "invalid hash algorithm '%s'\n" msgstr "ogiltig kontrollsummealgoritm \"%s\"\n" -#: g10/gpg.c:5065 g10/tofu.c:2153 +#: g10/gpg.c:5085 g10/tofu.c:2153 #, fuzzy, c-format #| msgid "error storing certificate: %s\n" msgid "error parsing key specification '%s': %s\n" msgstr "fel vid lagring av certifikat: %s\n" -#: g10/gpg.c:5078 +#: g10/gpg.c:5098 #, c-format msgid "'%s' does not appear to be a valid key ID, fingerprint or keygrip\n" msgstr "" -#: g10/gpg.c:5134 +#: g10/gpg.c:5154 #, c-format msgid "WARNING: no command supplied. Trying to guess what you mean ...\n" msgstr "" -#: g10/gpg.c:5145 +#: g10/gpg.c:5165 #, c-format msgid "Go ahead and type your message ...\n" msgstr "Skriv ditt meddelande här ...\n" -#: g10/gpg.c:5490 +#: g10/gpg.c:5510 #, c-format msgid "the given certification policy URL is invalid\n" msgstr "den angivna URL som beskriver certifieringsspolicy är ogiltig\n" -#: g10/gpg.c:5492 +#: g10/gpg.c:5512 #, c-format msgid "the given signature policy URL is invalid\n" msgstr "den angivna URL som beskriver signaturpolicy är ogiltig\n" -#: g10/gpg.c:5525 +#: g10/gpg.c:5545 #, c-format msgid "the given preferred keyserver URL is invalid\n" msgstr "den angivna föredragna nyckelserver-url:n är ogiltig\n" @@ -3832,154 +3838,154 @@ msgid "No help available for '%s'" msgstr "Det finns ingen hjälp tillgänglig för \"%s\"" -#: g10/import.c:169 +#: g10/import.c:170 msgid "import signatures that are marked as local-only" msgstr "importera signaturer som är markerade som endast lokala" -#: g10/import.c:172 +#: g10/import.c:173 msgid "repair damage from the pks keyserver during import" msgstr "reparera skada från pks-nyckelservern under importering" -#: g10/import.c:175 +#: g10/import.c:176 #, fuzzy #| msgid "do not update the trustdb after import" msgid "do not clear the ownertrust values during import" msgstr "uppdatera inte tillitsdatabasen efter importering" -#: g10/import.c:178 +#: g10/import.c:179 msgid "do not update the trustdb after import" msgstr "uppdatera inte tillitsdatabasen efter importering" -#: g10/import.c:181 +#: g10/import.c:182 #, fuzzy #| msgid "show key fingerprint" msgid "show key during import" msgstr "visa nyckelns fingeravtryck" -#: g10/import.c:184 +#: g10/import.c:185 msgid "only accept updates to existing keys" msgstr "acceptera endast uppdateringar till befintliga nycklar" -#: g10/import.c:187 +#: g10/import.c:188 msgid "remove unusable parts from key after import" msgstr "ta bort oanvändbara delar från nyckeln efter importering" -#: g10/import.c:190 +#: g10/import.c:191 msgid "remove as much as possible from key after import" msgstr "ta bort så mycket som möjligt från nyckeln efter importering" -#: g10/import.c:193 +#: g10/import.c:194 msgid "ignore key-signatures which are not self-signatures" msgstr "" -#: g10/import.c:196 +#: g10/import.c:197 msgid "run import filters and export key immediately" msgstr "" -#: g10/import.c:199 +#: g10/import.c:200 #, fuzzy #| msgid "assume input is in binary format" msgid "assume the GnuPG key backup format" msgstr "anta att inmatning är i binärformat" -#: g10/import.c:203 +#: g10/import.c:204 #, fuzzy #| msgid "show key fingerprint" msgid "repair keys on import" msgstr "visa nyckelns fingeravtryck" -#: g10/import.c:392 g10/import.c:711 +#: g10/import.c:393 g10/import.c:712 #, c-format msgid "skipping block of type %d\n" msgstr "hoppar över block av typen %d\n" -#: g10/import.c:728 +#: g10/import.c:729 #, c-format msgid "%lu keys processed so far\n" msgstr "%lu nycklar behandlade än så länge\n" -#: g10/import.c:814 +#: g10/import.c:815 #, c-format msgid "Total number processed: %lu\n" msgstr "Totalt antal behandlade enheter: %lu\n" -#: g10/import.c:817 +#: g10/import.c:818 #, fuzzy, c-format #| msgid " skipped new keys: %lu\n" msgid " skipped PGP-2 keys: %lu\n" msgstr " överhoppade nya nycklar: %lu\n" -#: g10/import.c:819 +#: g10/import.c:820 #, c-format msgid " skipped new keys: %lu\n" msgstr " överhoppade nya nycklar: %lu\n" -#: g10/import.c:822 +#: g10/import.c:823 #, c-format msgid " w/o user IDs: %lu\n" msgstr " utan användaridentiteter: %lu\n" -#: g10/import.c:825 sm/import.c:130 +#: g10/import.c:826 sm/import.c:130 #, c-format msgid " imported: %lu" msgstr " importerade: %lu" -#: g10/import.c:829 sm/import.c:134 +#: g10/import.c:830 sm/import.c:134 #, c-format msgid " unchanged: %lu\n" msgstr " oförändrade: %lu\n" -#: g10/import.c:831 +#: g10/import.c:832 #, c-format msgid " new user IDs: %lu\n" msgstr " nya användaridentiteter: %lu\n" -#: g10/import.c:833 +#: g10/import.c:834 #, c-format msgid " new subkeys: %lu\n" msgstr " nya undernycklar: %lu\n" -#: g10/import.c:835 +#: g10/import.c:836 #, c-format msgid " new signatures: %lu\n" msgstr " nya signaturer: %lu\n" -#: g10/import.c:837 +#: g10/import.c:838 #, c-format msgid " new key revocations: %lu\n" msgstr " nya nyckelspärrningar: %lu\n" -#: g10/import.c:839 sm/import.c:136 +#: g10/import.c:840 sm/import.c:136 #, c-format msgid " secret keys read: %lu\n" msgstr " antal lästa hemliga nycklar: %lu\n" -#: g10/import.c:841 sm/import.c:138 +#: g10/import.c:842 sm/import.c:138 #, c-format msgid " secret keys imported: %lu\n" msgstr " importerade hemliga nycklar: %lu\n" -#: g10/import.c:843 sm/import.c:140 +#: g10/import.c:844 sm/import.c:140 #, c-format msgid " secret keys unchanged: %lu\n" msgstr " oförändrade hemliga nycklar: %lu\n" -#: g10/import.c:845 sm/import.c:142 +#: g10/import.c:846 sm/import.c:142 #, c-format msgid " not imported: %lu\n" msgstr " inte importerade: %lu\n" -#: g10/import.c:847 +#: g10/import.c:848 #, c-format msgid " signatures cleaned: %lu\n" msgstr " signaturer rensade: %lu\n" -#: g10/import.c:849 +#: g10/import.c:850 #, c-format msgid " user IDs cleaned: %lu\n" msgstr " användaridentiteter rensade: %lu\n" -#: g10/import.c:1276 +#: g10/import.c:1277 #, c-format msgid "" "WARNING: key %s contains preferences for unavailable\n" @@ -3988,175 +3994,175 @@ "VARNING: nyckeln %s innehåller inställningar för otillgängliga\n" "algoritmer för dessa användaridentiteter:\n" -#: g10/import.c:1318 +#: g10/import.c:1319 #, c-format msgid " \"%s\": preference for cipher algorithm %s\n" msgstr " \"%s\": inställning för chifferalgoritmen %s\n" -#: g10/import.c:1333 +#: g10/import.c:1334 #, c-format msgid " \"%s\": preference for digest algorithm %s\n" msgstr " \"%s\": inställning för sammandragsalgoritmen %s\n" -#: g10/import.c:1345 +#: g10/import.c:1346 #, c-format msgid " \"%s\": preference for compression algorithm %s\n" msgstr " \"%s\": inställning för komprimeringsalgoritmen %s\n" -#: g10/import.c:1358 +#: g10/import.c:1359 #, c-format msgid "it is strongly suggested that you update your preferences and\n" msgstr "det rekommenderas starkt att du uppdaterar dina inställningar\n" -#: g10/import.c:1360 +#: g10/import.c:1361 #, c-format msgid "re-distribute this key to avoid potential algorithm mismatch problems\n" msgstr "" "och distribuerar denna nyckel igen för att undvika tänkbara problem\n" "med att algoritmerna inte stämmer\n" -#: g10/import.c:1385 +#: g10/import.c:1386 #, c-format msgid "you can update your preferences with: gpg --edit-key %s updpref save\n" msgstr "" "du kan uppdatera dina inställningar med: gpg --edit-key %s updpref save\n" -#: g10/import.c:1899 g10/import.c:3013 +#: g10/import.c:1902 g10/import.c:3028 #, c-format msgid "key %s: no user ID\n" msgstr "nyckel %s: ingen användaridentitet\n" -#: g10/import.c:1905 +#: g10/import.c:1908 #, fuzzy, c-format #| msgid "skipped \"%s\": %s\n" msgid "key %s: %s\n" msgstr "hoppade över \"%s\": %s\n" -#: g10/import.c:1906 g10/import.c:2985 +#: g10/import.c:1909 g10/import.c:3000 msgid "rejected by import screener" msgstr "" # Undernyckeln är skadad på HKP-servern. Vanligt fel vid många undernycklar. -#: g10/import.c:1950 +#: g10/import.c:1953 #, c-format msgid "key %s: PKS subkey corruption repaired\n" msgstr "nyckeln %s: PKS-skadad undernyckel reparerades\n" # vad innebär fnutten i slutet? -#: g10/import.c:1971 +#: g10/import.c:1974 #, c-format msgid "key %s: accepted non self-signed user ID \"%s\"\n" msgstr "nyckel %s: accepterade icke-självsignerad användaridentitet \"%s\"\n" -#: g10/import.c:1981 g10/import.c:2012 +#: g10/import.c:1985 g10/import.c:2016 #, c-format msgid "key %s: no valid user IDs\n" msgstr "nyckel %s: inga giltiga användaridentiteter\n" -#: g10/import.c:1983 +#: g10/import.c:1987 #, c-format msgid "this may be caused by a missing self-signature\n" msgstr "detta kan bero på att det saknas en självsignatur\n" -#: g10/import.c:2062 g10/import.c:3399 +#: g10/import.c:2066 g10/import.c:3415 #, c-format msgid "key %s: public key not found: %s\n" msgstr "nyckel %s: hittade ingen publik nyckel: %s\n" -#: g10/import.c:2068 +#: g10/import.c:2072 #, c-format msgid "key %s: new key - skipped\n" msgstr "nyckel %s: ny nyckel - hoppade över\n" -#: g10/import.c:2080 +#: g10/import.c:2084 #, c-format msgid "no writable keyring found: %s\n" msgstr "hittade ingen nyckelring som gick att skriva till: %s\n" -#: g10/import.c:2112 g10/import.c:2214 g10/import.c:3476 +#: g10/import.c:2116 g10/import.c:2218 g10/import.c:3492 #, fuzzy, c-format #| msgid "error writing keyring `%s': %s\n" msgid "error writing keyring '%s': %s\n" msgstr "fel vid skrivning av nyckelringen \"%s\": %s\n" # fixme: I appended the %s -wk -#: g10/import.c:2135 +#: g10/import.c:2139 #, c-format msgid "key %s: public key \"%s\" imported\n" msgstr "nyckel %s: publika nyckeln \"%s\" importerades\n" -#: g10/import.c:2162 +#: g10/import.c:2166 #, c-format msgid "key %s: doesn't match our copy\n" msgstr "nyckel %s: stämmer inte mot vår lokala kopia\n" -#: g10/import.c:2230 +#: g10/import.c:2234 #, c-format msgid "key %s: \"%s\" 1 new user ID\n" msgstr "nyckel %s: \"%s\" 1 ny användaridentitet\n" -#: g10/import.c:2233 +#: g10/import.c:2237 #, c-format msgid "key %s: \"%s\" %d new user IDs\n" msgstr "nyckel %s: \"%s\" %d nya användaridentiteter\n" -#: g10/import.c:2236 +#: g10/import.c:2240 #, c-format msgid "key %s: \"%s\" 1 new signature\n" msgstr "nyckel %s: \"%s\" 1 ny signatur\n" -#: g10/import.c:2239 +#: g10/import.c:2243 #, c-format msgid "key %s: \"%s\" %d new signatures\n" msgstr "nyckel %s: \"%s\" %d nya signaturer\n" -#: g10/import.c:2242 +#: g10/import.c:2246 #, c-format msgid "key %s: \"%s\" 1 new subkey\n" msgstr "nyckel %s: \"%s\" 1 ny undernyckel\n" -#: g10/import.c:2245 +#: g10/import.c:2249 #, c-format msgid "key %s: \"%s\" %d new subkeys\n" msgstr "nyckel %s: \"%s\" %d nya undernycklar\n" -#: g10/import.c:2248 +#: g10/import.c:2252 #, c-format msgid "key %s: \"%s\" %d signature cleaned\n" msgstr "nyckel %s: \"%s\" %d signatur rensad\n" -#: g10/import.c:2251 +#: g10/import.c:2255 #, c-format msgid "key %s: \"%s\" %d signatures cleaned\n" msgstr "nyckel %s: \"%s\" %d signaturer rensade\n" -#: g10/import.c:2254 +#: g10/import.c:2258 #, c-format msgid "key %s: \"%s\" %d user ID cleaned\n" msgstr "nyckel %s: \"%s\" %d användaridentitet rensad\n" -#: g10/import.c:2257 +#: g10/import.c:2261 #, c-format msgid "key %s: \"%s\" %d user IDs cleaned\n" msgstr "nyckel %s: \"%s\" %d användaridentiteter rensade\n" -#: g10/import.c:2293 +#: g10/import.c:2297 #, c-format msgid "key %s: \"%s\" not changed\n" msgstr "nyckel %s: \"%s\" inte ändrad\n" -#: g10/import.c:2652 g10/import.c:2847 +#: g10/import.c:2667 g10/import.c:2862 #, c-format msgid "key %s: secret key imported\n" msgstr "nyckel %s: hemlig nyckel importerades\n" -#: g10/import.c:2660 +#: g10/import.c:2675 #, fuzzy, c-format #| msgid "skipped: secret key already present\n" msgid "key %s: secret key already exists\n" msgstr "hoppade över: hemlig nyckel finns redan\n" -#: g10/import.c:2668 +#: g10/import.c:2683 #, fuzzy, c-format #| msgid "error sending %s command: %s\n" msgid "key %s: error sending to agent: %s\n" @@ -4170,201 +4176,201 @@ #. * Instead, user should be suggested to run 'gpg --card-status', #. * then, references to a card will be automatically created #. * again. -#: g10/import.c:2837 +#: g10/import.c:2852 #, c-format msgid "To migrate '%s', with each smartcard, run: %s\n" msgstr "" -#: g10/import.c:2984 +#: g10/import.c:2999 #, fuzzy, c-format #| msgid "secret key \"%s\" not found: %s\n" msgid "secret key %s: %s\n" msgstr "hemliga nyckeln \"%s\" hittades inte: %s\n" -#: g10/import.c:3005 g10/import.c:3044 +#: g10/import.c:3020 g10/import.c:3059 #, c-format msgid "importing secret keys not allowed\n" msgstr "import av hemliga nycklar tillåts inte\n" -#: g10/import.c:3032 +#: g10/import.c:3047 #, c-format msgid "key %s: secret key with invalid cipher %d - skipped\n" msgstr "nyckel %s: hemlig nyckel med ogiltigt chiffer %d - hoppade över\n" -#: g10/import.c:3194 g10/pkclist.c:72 g10/revoke.c:776 +#: g10/import.c:3209 g10/pkclist.c:72 g10/revoke.c:776 msgid "No reason specified" msgstr "Ingen anledning har angivits" # tveksam översättning. funderar på "ersatt av något bättre" men det # känns inte heller bra. Betyder att nyckeln inte används längre, utan användaren har skapat en ny nyckel som ersätter den gamla. -#: g10/import.c:3195 g10/pkclist.c:74 g10/revoke.c:778 +#: g10/import.c:3210 g10/pkclist.c:74 g10/revoke.c:778 msgid "Key is superseded" msgstr "Nyckeln är åsidosatt" -#: g10/import.c:3196 g10/pkclist.c:76 g10/revoke.c:777 +#: g10/import.c:3211 g10/pkclist.c:76 g10/revoke.c:777 msgid "Key has been compromised" msgstr "Nyckeln har blivit komprometterad" -#: g10/import.c:3197 g10/pkclist.c:78 g10/revoke.c:779 +#: g10/import.c:3212 g10/pkclist.c:78 g10/revoke.c:779 msgid "Key is no longer used" msgstr "Nyckeln används inte längre" -#: g10/import.c:3198 g10/pkclist.c:80 g10/revoke.c:780 +#: g10/import.c:3213 g10/pkclist.c:80 g10/revoke.c:780 msgid "User ID is no longer valid" msgstr "Användaridentiteten är inte längre giltig" -#: g10/import.c:3323 g10/keylist.c:1258 g10/pkclist.c:84 +#: g10/import.c:3338 g10/keylist.c:1258 g10/pkclist.c:84 #, c-format msgid "reason for revocation: " msgstr "anledning för spärrning: " -#: g10/import.c:3342 g10/keylist.c:1277 g10/pkclist.c:100 +#: g10/import.c:3357 g10/keylist.c:1277 g10/pkclist.c:100 #, c-format msgid "revocation comment: " msgstr "spärrningskommentar: " -#: g10/import.c:3392 +#: g10/import.c:3408 #, c-format msgid "key %s: no public key - can't apply revocation certificate\n" msgstr "nyckel %s: ingen publik nyckel - kan inte verkställa spärrcertifikat\n" -#: g10/import.c:3423 +#: g10/import.c:3439 #, c-format msgid "key %s: can't locate original keyblock: %s\n" msgstr "nyckel %s: kan inte hitta det ursprungliga nyckelblocket: %s\n" -#: g10/import.c:3430 +#: g10/import.c:3446 #, c-format msgid "key %s: can't read original keyblock: %s\n" msgstr "nyckel %s: kan inte läsa det ursprungliga nyckelblocket %s\n" -#: g10/import.c:3450 +#: g10/import.c:3466 #, c-format msgid "key %s: invalid revocation certificate: %s - rejected\n" msgstr "nyckel %s: ogiltigt spärrcertifikat: %s - avvisat\n" -#: g10/import.c:3485 +#: g10/import.c:3501 #, c-format msgid "key %s: \"%s\" revocation certificate imported\n" msgstr "nyckel %s: \"%s\" spärrcertifikat importerat\n" -#: g10/import.c:3571 +#: g10/import.c:3587 #, c-format msgid "key %s: no user ID for signature\n" msgstr "nyckel %s: ingen användaridentitet för signaturen\n" # fixme: I appended the %s -wk -#: g10/import.c:3588 +#: g10/import.c:3604 #, c-format msgid "key %s: unsupported public key algorithm on user ID \"%s\"\n" msgstr "" "nyckel %s: algoritmen för publika nycklar stöds inte för " "användaridentiteten \"%s\"\n" -#: g10/import.c:3590 +#: g10/import.c:3606 #, c-format msgid "key %s: invalid self-signature on user ID \"%s\"\n" msgstr "nyckel %s: ogiltig självsignatur på användaridentiteten \"%s\"\n" -#: g10/import.c:3607 g10/import.c:3635 g10/import.c:3691 +#: g10/import.c:3623 g10/import.c:3651 g10/import.c:3707 #, c-format msgid "key %s: unsupported public key algorithm\n" msgstr "nyckel %s: algoritmen för publika nycklar stöds inte\n" -#: g10/import.c:3608 +#: g10/import.c:3624 #, c-format msgid "key %s: invalid direct key signature\n" msgstr "nyckel %s: ogiltig direkt nyckelsignatur\n" -#: g10/import.c:3622 +#: g10/import.c:3638 #, c-format msgid "key %s: no subkey for key binding\n" msgstr "nyckel %s: ingen undernyckel för nyckelbindning\n" -#: g10/import.c:3637 +#: g10/import.c:3653 #, c-format msgid "key %s: invalid subkey binding\n" msgstr "nyckel %s: ogiltig undernyckelbindning\n" -#: g10/import.c:3656 +#: g10/import.c:3672 #, c-format msgid "key %s: removed multiple subkey binding\n" msgstr "nyckel %s: tog bort flera undernyckelbindningar\n" -#: g10/import.c:3680 +#: g10/import.c:3696 #, c-format msgid "key %s: no subkey for key revocation\n" msgstr "nyckel %s: ingen undernyckel för nyckelspärrning\n" -#: g10/import.c:3693 +#: g10/import.c:3709 #, c-format msgid "key %s: invalid subkey revocation\n" msgstr "nyckel %s: ogiltig spärr av undernyckel\n" -#: g10/import.c:3708 +#: g10/import.c:3724 #, c-format msgid "key %s: removed multiple subkey revocation\n" msgstr "nyckel %s: tog bort flera spärrar av undernyckel\n" -#: g10/import.c:3752 +#: g10/import.c:3771 #, c-format msgid "key %s: skipped user ID \"%s\"\n" msgstr "nyckel %s: hoppade över användaridentiteten \"%s\"\n" -#: g10/import.c:3779 +#: g10/import.c:3798 #, c-format msgid "key %s: skipped subkey\n" msgstr "nyckel %s: hoppade över undernyckel\n" -#: g10/import.c:3810 +#: g10/import.c:3829 #, c-format msgid "key %s: non exportable signature (class 0x%02X) - skipped\n" msgstr "nyckel %s: icke-exporterbar signatur (klass 0x%02X) - hoppade över\n" -#: g10/import.c:3821 +#: g10/import.c:3840 #, c-format msgid "key %s: revocation certificate at wrong place - skipped\n" msgstr "nyckel %s: spärrcertifikat på fel plats - hoppade över\n" # nyckeln eller certifikatet?? -#: g10/import.c:3839 +#: g10/import.c:3868 #, c-format msgid "key %s: invalid revocation certificate: %s - skipped\n" msgstr "nyckel %s: ogiltigt spärrcertifikat: %s - hoppade över\n" -#: g10/import.c:3853 +#: g10/import.c:3892 #, c-format msgid "key %s: subkey signature in wrong place - skipped\n" msgstr "nyckel %s: signatur på undernyckel på fel plats - hoppade över\n" # nyckeln eller klassen? -#: g10/import.c:3861 +#: g10/import.c:3900 #, c-format msgid "key %s: unexpected signature class (0x%02X) - skipped\n" msgstr "nyckel %s: oväntad signaturklass (0x%02X) - hoppade över\n" -#: g10/import.c:4034 +#: g10/import.c:4073 #, c-format msgid "key %s: duplicated user ID detected - merged\n" msgstr "" "nyckel %s: dubblett av användaridentiteten hittades - slog samman dem\n" -#: g10/import.c:4099 +#: g10/import.c:4138 #, c-format msgid "WARNING: key %s may be revoked: fetching revocation key %s\n" msgstr "VARNING: nyckeln %s kan ha spärrats: hämtar spärrnyckeln %s\n" -#: g10/import.c:4115 +#: g10/import.c:4154 #, c-format msgid "WARNING: key %s may be revoked: revocation key %s not present.\n" msgstr "VARNING: nyckeln %s kan ha spärrats: spärrnyckeln %s saknas.\n" -#: g10/import.c:4181 +#: g10/import.c:4220 #, c-format msgid "key %s: \"%s\" revocation certificate added\n" msgstr "nyckel %s: \"%s\" spärrcertifikat lades till\n" -#: g10/import.c:4219 +#: g10/import.c:4258 #, c-format msgid "key %s: direct key signature added\n" msgstr "nyckel %s: lade till direkt nyckelsignatur\n" @@ -5287,7 +5293,7 @@ msgid "You may not add a photo ID to a PGP2-style key.\n" msgstr "Du kan inte lägga till ett foto-id till en nyckel av PGP 2-typ.\n" -#: g10/keyedit.c:4293 g10/keygen.c:2899 +#: g10/keyedit.c:4293 g10/keygen.c:2953 msgid "Such a user ID already exists on this key!\n" msgstr "En sådan användaridentitet finns redan på denna nyckel!\n" @@ -5583,66 +5589,66 @@ msgid "Displaying %s photo ID of size %ld for key %s (uid %d)\n" msgstr "Visar %s foto-id med storleken %ld för nyckeln %s (uid %d)\n" -#: g10/keygen.c:169 +#: g10/keygen.c:174 #, fuzzy, c-format #| msgid "missing argument for option \"%.50s\"\n" msgid "invalid value for option '%s'\n" msgstr "argument för flaggan \"%.50s\" saknas\n" -#: g10/keygen.c:322 +#: g10/keygen.c:331 #, fuzzy, c-format #| msgid "preference `%s' duplicated\n" msgid "preference '%s' duplicated\n" msgstr "inställningen \"%s\" förekommer flera gånger\n" -#: g10/keygen.c:329 +#: g10/keygen.c:338 #, c-format msgid "too many cipher preferences\n" msgstr "för många chifferinställningar\n" -#: g10/keygen.c:331 +#: g10/keygen.c:340 #, c-format msgid "too many digest preferences\n" msgstr "för många sammandragsinställningar\n" -#: g10/keygen.c:333 +#: g10/keygen.c:342 #, c-format msgid "too many compression preferences\n" msgstr "för många komprimeringsinställningar\n" -#: g10/keygen.c:493 +#: g10/keygen.c:502 #, fuzzy, c-format #| msgid "invalid item `%s' in preference string\n" msgid "invalid item '%s' in preference string\n" msgstr "ogiltig post \"%s\" i inställningssträngen\n" -#: g10/keygen.c:972 +#: g10/keygen.c:1020 #, c-format msgid "writing direct signature\n" msgstr "skriver direkt signatur\n" -#: g10/keygen.c:1018 +#: g10/keygen.c:1066 #, c-format msgid "writing self signature\n" msgstr "skriver självsignatur\n" -#: g10/keygen.c:1075 +#: g10/keygen.c:1123 #, c-format msgid "writing key binding signature\n" msgstr "skriver signatur knuten till nyckeln\n" -#: g10/keygen.c:1440 g10/keygen.c:1445 g10/keygen.c:1497 g10/keygen.c:1502 -#: g10/keygen.c:1656 g10/keygen.c:1661 +#: g10/keygen.c:1494 g10/keygen.c:1499 g10/keygen.c:1551 g10/keygen.c:1556 +#: g10/keygen.c:1710 g10/keygen.c:1715 #, c-format msgid "keysize invalid; using %u bits\n" msgstr "ogiltig nyckelstorlek; använder %u bitar\n" -#: g10/keygen.c:1451 g10/keygen.c:1508 g10/keygen.c:1516 g10/keygen.c:1667 +#: g10/keygen.c:1505 g10/keygen.c:1562 g10/keygen.c:1570 g10/keygen.c:1721 #, c-format msgid "keysize rounded up to %u bits\n" msgstr "nyckelstorleken avrundad uppåt till %u bitar\n" -#: g10/keygen.c:1542 +#: g10/keygen.c:1596 #, c-format msgid "" "WARNING: some OpenPGP programs can't handle a DSA key with this digest size\n" @@ -5650,19 +5656,19 @@ "VARNING: vissa OpenPGP-program kan inte hantera en DSA-nyckel med den här " "sammandragsstorleken\n" -#: g10/keygen.c:1723 +#: g10/keygen.c:1777 msgid "Sign" msgstr "Signera" -#: g10/keygen.c:1726 +#: g10/keygen.c:1780 msgid "Certify" msgstr "Certifiera" -#: g10/keygen.c:1729 +#: g10/keygen.c:1783 msgid "Encrypt" msgstr "Kryptera" -#: g10/keygen.c:1732 +#: g10/keygen.c:1786 msgid "Authenticate" msgstr "Autentisera" @@ -5680,171 +5686,171 @@ #. * a = Toggle authentication capability #. * q = Finish #. -#: g10/keygen.c:1753 +#: g10/keygen.c:1807 msgid "SsEeAaQq" msgstr "SsKkAaQq" -#: g10/keygen.c:1784 +#: g10/keygen.c:1838 #, c-format msgid "Possible actions for a %s key: " msgstr "Möjliga åtgärder för en %s-nyckel: " -#: g10/keygen.c:1790 +#: g10/keygen.c:1844 msgid "Current allowed actions: " msgstr "För närvarande tillåtna åtgärder: " -#: g10/keygen.c:1795 +#: g10/keygen.c:1849 #, c-format msgid " (%c) Toggle the sign capability\n" msgstr " (%c) Växla signeringsförmågan\n" -#: g10/keygen.c:1798 +#: g10/keygen.c:1852 #, c-format msgid " (%c) Toggle the encrypt capability\n" msgstr " (%c) Växla krypteringsförmågan\n" -#: g10/keygen.c:1801 +#: g10/keygen.c:1855 #, c-format msgid " (%c) Toggle the authenticate capability\n" msgstr " (%c) Växla autentiseringsförmågan\n" -#: g10/keygen.c:1804 +#: g10/keygen.c:1858 #, c-format msgid " (%c) Finished\n" msgstr " (%c) Färdig\n" -#: g10/keygen.c:1930 +#: g10/keygen.c:1984 #, c-format msgid " (%d) RSA and RSA (default)\n" msgstr " (%d) RSA och RSA (standard)\n" -#: g10/keygen.c:1934 +#: g10/keygen.c:1988 #, c-format msgid " (%d) DSA and Elgamal\n" msgstr " (%d) DSA och Elgamal\n" -#: g10/keygen.c:1937 +#: g10/keygen.c:1991 #, c-format msgid " (%d) DSA (sign only)\n" msgstr " (%d) DSA (endast signering)\n" -#: g10/keygen.c:1939 +#: g10/keygen.c:1993 #, c-format msgid " (%d) RSA (sign only)\n" msgstr " (%d) RSA (endast signering)\n" -#: g10/keygen.c:1945 +#: g10/keygen.c:1999 #, c-format msgid " (%d) Elgamal (encrypt only)\n" msgstr " (%d) Elgamal (endast kryptering)\n" -#: g10/keygen.c:1947 +#: g10/keygen.c:2001 #, c-format msgid " (%d) RSA (encrypt only)\n" msgstr " (%d) RSA (endast kryptering)\n" -#: g10/keygen.c:1953 +#: g10/keygen.c:2007 #, c-format msgid " (%d) DSA (set your own capabilities)\n" msgstr " (%d) DSA (ställ in dina egna förmågor)\n" -#: g10/keygen.c:1955 +#: g10/keygen.c:2009 #, c-format msgid " (%d) RSA (set your own capabilities)\n" msgstr " (%d) RSA (ställ in dina egna förmågor)\n" -#: g10/keygen.c:1961 +#: g10/keygen.c:2015 #, fuzzy, c-format #| msgid " (%d) DSA and Elgamal\n" msgid " (%d) ECC and ECC\n" msgstr " (%d) DSA och Elgamal\n" -#: g10/keygen.c:1963 +#: g10/keygen.c:2017 #, fuzzy, c-format #| msgid " (%d) DSA (sign only)\n" msgid " (%d) ECC (sign only)\n" msgstr " (%d) DSA (endast signering)\n" -#: g10/keygen.c:1965 +#: g10/keygen.c:2019 #, fuzzy, c-format #| msgid " (%d) DSA (set your own capabilities)\n" msgid " (%d) ECC (set your own capabilities)\n" msgstr " (%d) DSA (ställ in dina egna förmågor)\n" -#: g10/keygen.c:1967 +#: g10/keygen.c:2021 #, fuzzy, c-format #| msgid " (%d) RSA (encrypt only)\n" msgid " (%d) ECC (encrypt only)\n" msgstr " (%d) RSA (endast kryptering)\n" -#: g10/keygen.c:1971 +#: g10/keygen.c:2025 #, fuzzy, c-format #| msgid " (%d) Existing key\n" msgid " (%d) Existing key\n" msgstr " (%d) Befintlig nyckel\n" -#: g10/keygen.c:1973 +#: g10/keygen.c:2027 #, fuzzy, c-format #| msgid " (%d) Existing key from card\n" msgid " (%d) Existing key from card\n" msgstr " (%d) Befintlig nyckel från kort\n" -#: g10/keygen.c:2069 sm/certreqgen-ui.c:202 +#: g10/keygen.c:2123 sm/certreqgen-ui.c:202 msgid "Enter the keygrip: " msgstr "Ange nyckelhashen: " -#: g10/keygen.c:2082 sm/certreqgen-ui.c:210 +#: g10/keygen.c:2136 sm/certreqgen-ui.c:210 msgid "Not a valid keygrip (expecting 40 hex digits)\n" msgstr "Inte en giltig nyckelhash (förväntade 40 hexadecimala siffror)\n" -#: g10/keygen.c:2084 sm/certreqgen-ui.c:212 +#: g10/keygen.c:2138 sm/certreqgen-ui.c:212 msgid "No key with this keygrip\n" msgstr "Ingen nyckel med denna nyckelhash\n" -#: g10/keygen.c:2103 g10/keygen.c:2113 g10/keygen.c:3216 g10/keygen.c:3227 +#: g10/keygen.c:2157 g10/keygen.c:2167 g10/keygen.c:3270 g10/keygen.c:3281 #: sm/certreqgen-ui.c:230 sm/certreqgen-ui.c:239 #, c-format msgid "error reading the card: %s\n" msgstr "fel vid läsning av kortet: %s\n" -#: g10/keygen.c:2107 g10/keygen.c:3220 sm/certreqgen-ui.c:233 +#: g10/keygen.c:2161 g10/keygen.c:3274 sm/certreqgen-ui.c:233 #, c-format msgid "Serial number of the card: %s\n" msgstr "Serienummer för kortet: %s\n" -#: g10/keygen.c:2120 sm/certreqgen-ui.c:245 +#: g10/keygen.c:2174 sm/certreqgen-ui.c:245 msgid "Available keys:\n" msgstr "Tillgängliga nycklar:\n" -#: g10/keygen.c:2297 g10/keygen.c:2311 +#: g10/keygen.c:2351 g10/keygen.c:2365 #, fuzzy, c-format #| msgid "rounded up to %u bits\n" msgid "rounded to %u bits\n" msgstr "avrundade uppåt till %u bitar\n" -#: g10/keygen.c:2352 +#: g10/keygen.c:2406 #, c-format msgid "%s keys may be between %u and %u bits long.\n" msgstr "%s-nycklar kan vara mellan %u och %u bitar långa.\n" -#: g10/keygen.c:2360 +#: g10/keygen.c:2414 #, c-format msgid "What keysize do you want for the subkey? (%u) " msgstr "Vilken nyckelstorlek vill du använda för undernyckeln? (%u) " -#: g10/keygen.c:2377 sm/certreqgen-ui.c:189 +#: g10/keygen.c:2431 sm/certreqgen-ui.c:189 #, c-format msgid "Requested keysize is %u bits\n" msgstr "Den efterfrågade nyckelstorleken är %u bitar\n" -#: g10/keygen.c:2423 +#: g10/keygen.c:2477 #, fuzzy #| msgid "Please select what kind of key you want:\n" msgid "Please select which elliptic curve you want:\n" msgstr "Välj vilken typ av nyckel du vill ha:\n" # borde kolla upp möjligheterna i källkoden att använda v m å istället för wmy -#: g10/keygen.c:2611 +#: g10/keygen.c:2665 msgid "" "Please specify how long the key should be valid.\n" " 0 = key does not expire\n" @@ -5861,7 +5867,7 @@ " y = nyckeln blir ogiltig efter n år\n" # borde kolla upp möjligheterna i källkoden att använda v m å istället för wmy -#: g10/keygen.c:2622 +#: g10/keygen.c:2676 msgid "" "Please specify how long the signature should be valid.\n" " 0 = signature does not expire\n" @@ -5877,38 +5883,38 @@ " m = signaturen blir ogiltig efter n månader\n" " y = signaturen blir ogiltig efter n år\n" -#: g10/keygen.c:2645 +#: g10/keygen.c:2699 msgid "Key is valid for? (0) " msgstr "För hur lång tid ska nyckeln vara giltig? (0) " -#: g10/keygen.c:2650 +#: g10/keygen.c:2704 #, c-format msgid "Signature is valid for? (%s) " msgstr "Signaturen är giltig hur länge? (%s) " -#: g10/keygen.c:2663 g10/keygen.c:2688 +#: g10/keygen.c:2717 g10/keygen.c:2742 msgid "invalid value\n" msgstr "ogiltigt värde\n" -#: g10/keygen.c:2670 +#: g10/keygen.c:2724 msgid "Key does not expire at all\n" msgstr "Nyckeln går aldrig ut\n" -#: g10/keygen.c:2671 +#: g10/keygen.c:2725 msgid "Signature does not expire at all\n" msgstr "Signaturen går aldrig ut\n" -#: g10/keygen.c:2676 +#: g10/keygen.c:2730 #, c-format msgid "Key expires at %s\n" msgstr "Nyckeln går ut %s\n" -#: g10/keygen.c:2677 +#: g10/keygen.c:2731 #, c-format msgid "Signature expires at %s\n" msgstr "Signaturen går ut %s\n" -#: g10/keygen.c:2681 +#: g10/keygen.c:2735 msgid "" "Your system can't display dates beyond 2038.\n" "However, it will be correctly handled up to 2106.\n" @@ -5916,11 +5922,11 @@ "Ditt system kan inte visa datum senare än år 2038.\n" "Datum fram till år 2106 kommer dock att hanteras korrekt.\n" -#: g10/keygen.c:2694 +#: g10/keygen.c:2748 msgid "Is this correct? (y/N) " msgstr "Stämmer detta? (j/N) " -#: g10/keygen.c:2762 +#: g10/keygen.c:2816 msgid "" "\n" "GnuPG needs to construct a user ID to identify your key.\n" @@ -5935,7 +5941,7 @@ #. but you should keep your existing translation. In case #. the new string is not translated this old string will #. be used. -#: g10/keygen.c:2777 +#: g10/keygen.c:2831 msgid "" "\n" "You need a user ID to identify your key; the software constructs the user " @@ -5953,50 +5959,50 @@ " \"Gustav Vasa (Brutal kung) \"\n" "\n" -#: g10/keygen.c:2796 +#: g10/keygen.c:2850 msgid "Real name: " msgstr "Namn: " -#: g10/keygen.c:2805 +#: g10/keygen.c:2859 msgid "Invalid character in name\n" msgstr "Ogiltigt tecken i namnet\n" -#: g10/keygen.c:2806 +#: g10/keygen.c:2860 #, c-format msgid "The characters '%s' and '%s' may not appear in name\n" msgstr "" -#: g10/keygen.c:2810 +#: g10/keygen.c:2864 msgid "Name may not start with a digit\n" msgstr "Namnet får inte börja med en siffra\n" -#: g10/keygen.c:2813 +#: g10/keygen.c:2867 msgid "Name must be at least 5 characters long\n" msgstr "Namnet måste vara åtminstone 5 tecken långt\n" -#: g10/keygen.c:2823 +#: g10/keygen.c:2877 msgid "Email address: " msgstr "E-postadress: " -#: g10/keygen.c:2829 +#: g10/keygen.c:2883 msgid "Not a valid email address\n" msgstr "E-postadressen är ogiltig\n" -#: g10/keygen.c:2838 +#: g10/keygen.c:2892 msgid "Comment: " msgstr "Kommentar: " -#: g10/keygen.c:2844 +#: g10/keygen.c:2898 msgid "Invalid character in comment\n" msgstr "Ogiltigt tecken i kommentaren\n" -#: g10/keygen.c:2880 +#: g10/keygen.c:2934 #, fuzzy, c-format #| msgid "You are using the `%s' character set.\n" msgid "You are using the '%s' character set.\n" msgstr "Du använder teckentabellen \"%s\"\n" -#: g10/keygen.c:2886 +#: g10/keygen.c:2940 #, c-format msgid "" "You selected this USER-ID:\n" @@ -6007,7 +6013,7 @@ " \"%s\"\n" "\n" -#: g10/keygen.c:2891 +#: g10/keygen.c:2945 msgid "Please don't put the email address into the real name or the comment\n" msgstr "Ange inte e-postadressen som namn eller kommentar\n" @@ -6023,35 +6029,35 @@ #. o = Okay (ready, continue) #. q = Quit #. -#: g10/keygen.c:2916 +#: g10/keygen.c:2970 msgid "NnCcEeOoQq" msgstr "NnKkEeOoAa" -#: g10/keygen.c:2926 +#: g10/keygen.c:2980 msgid "Change (N)ame, (C)omment, (E)mail or (Q)uit? " msgstr "Ändra (N)amn, (K)ommentar, (E)post eller (A)vsluta? " -#: g10/keygen.c:2927 +#: g10/keygen.c:2981 msgid "Change (N)ame, (C)omment, (E)mail or (O)kay/(Q)uit? " msgstr "Ändra (N)amn, (K)ommentar, (E)post eller (O)k/(A)vsluta? " -#: g10/keygen.c:2932 +#: g10/keygen.c:2986 #, fuzzy #| msgid "Change (N)ame, (C)omment, (E)mail or (Q)uit? " msgid "Change (N)ame, (E)mail, or (Q)uit? " msgstr "Ändra (N)amn, (K)ommentar, (E)post eller (A)vsluta? " -#: g10/keygen.c:2933 +#: g10/keygen.c:2987 #, fuzzy #| msgid "Change (N)ame, (C)omment, (E)mail or (O)kay/(Q)uit? " msgid "Change (N)ame, (E)mail, or (O)kay/(Q)uit? " msgstr "Ändra (N)amn, (K)ommentar, (E)post eller (O)k/(A)vsluta? " -#: g10/keygen.c:2952 +#: g10/keygen.c:3006 msgid "Please correct the error first\n" msgstr "Rätta först felet\n" -#: g10/keygen.c:2998 +#: g10/keygen.c:3052 msgid "" "We need to generate a lot of random bytes. It is a good idea to perform\n" "some other action (type on the keyboard, move the mouse, utilize the\n" @@ -6063,13 +6069,13 @@ "hårddisken) under primtalsgenereringen; detta ger slumptalsgeneratorn\n" "en större chans att samla ihop en tillräcklig mängd slumpmässig data.\n" -#: g10/keygen.c:4278 g10/keygen.c:4349 g10/keygen.c:4367 g10/keygen.c:4395 -#: g10/keygen.c:4739 g10/keygen.c:5239 g10/keygen.c:5534 g10/keygen.c:5639 +#: g10/keygen.c:4332 g10/keygen.c:4403 g10/keygen.c:4421 g10/keygen.c:4449 +#: g10/keygen.c:4793 g10/keygen.c:5293 g10/keygen.c:5588 g10/keygen.c:5693 #, c-format msgid "Key generation failed: %s\n" msgstr "Nyckelgenereringen misslyckades: %s\n" -#: g10/keygen.c:4287 +#: g10/keygen.c:4341 #, c-format msgid "" "About to create a key for:\n" @@ -6077,73 +6083,73 @@ "\n" msgstr "" -#: g10/keygen.c:4289 +#: g10/keygen.c:4343 msgid "Continue? (Y/n) " msgstr "" -#: g10/keygen.c:4310 +#: g10/keygen.c:4364 #, fuzzy, c-format #| msgid "key already exists\n" msgid "A key for \"%s\" already exists\n" msgstr "nyckeln finns redan\n" -#: g10/keygen.c:4315 +#: g10/keygen.c:4369 #, fuzzy #| msgid "Use this key anyway? (y/N) " msgid "Create anyway? (y/N) " msgstr "Vill du använda nyckeln ändå? (j/N) " -#: g10/keygen.c:4321 +#: g10/keygen.c:4375 #, fuzzy, c-format #| msgid "generating new key\n" msgid "creating anyway\n" msgstr "genererar ny nyckel\n" -#: g10/keygen.c:4722 +#: g10/keygen.c:4776 #, c-format msgid "Note: Use \"%s %s\" for a full featured key generation dialog.\n" msgstr "" -#: g10/keygen.c:4771 +#: g10/keygen.c:4825 #, c-format msgid "Key generation canceled.\n" msgstr "Skapandet av nycklar avbröts.\n" -#: g10/keygen.c:4831 +#: g10/keygen.c:4885 #, fuzzy, c-format #| msgid "can't create backup file `%s': %s\n" msgid "can't create backup file '%s': %s\n" msgstr "kan inte skapa säkerhetskopian \"%s\": %s\n" -#: g10/keygen.c:4851 +#: g10/keygen.c:4905 #, fuzzy, c-format #| msgid "NOTE: backup of card key saved to `%s'\n" msgid "Note: backup of card key saved to '%s'\n" msgstr "OBSERVERA: säkerhetskopia av kortnyckeln sparades i \"%s\"\n" -#: g10/keygen.c:5010 g10/keygen.c:5172 +#: g10/keygen.c:5064 g10/keygen.c:5226 #, fuzzy, c-format #| msgid "writing public key to `%s'\n" msgid "writing public key to '%s'\n" msgstr "skriver den publika nyckeln till \"%s\"\n" -#: g10/keygen.c:5166 +#: g10/keygen.c:5220 #, c-format msgid "no writable public keyring found: %s\n" msgstr "ingen skrivbar publik nyckelring hittades: %s\n" -#: g10/keygen.c:5180 +#: g10/keygen.c:5234 #, fuzzy, c-format #| msgid "error writing public keyring `%s': %s\n" msgid "error writing public keyring '%s': %s\n" msgstr "fel vid skrivning av publika nyckelringen \"%s\": %s\n" -#: g10/keygen.c:5210 +#: g10/keygen.c:5264 msgid "public and secret key created and signed.\n" msgstr "den publika och den hemliga nyckeln är skapade och signerade.\n" # Flagga.. inte kommando -#: g10/keygen.c:5226 +#: g10/keygen.c:5280 msgid "" "Note that this key cannot be used for encryption. You may want to use\n" "the command \"--edit-key\" to generate a subkey for this purpose.\n" @@ -6153,7 +6159,7 @@ "syfte.\n" # c-format behövs inte i singularis -#: g10/keygen.c:5401 g10/keygen.c:5590 +#: g10/keygen.c:5455 g10/keygen.c:5644 #, c-format msgid "" "key has been created %lu second in future (time warp or clock problem)\n" @@ -6161,7 +6167,7 @@ "nyckeln är skapad %lu sekund in i framtiden (problemet är\n" "relaterat till tidsresande eller en felställd klocka)\n" -#: g10/keygen.c:5403 g10/keygen.c:5592 +#: g10/keygen.c:5457 g10/keygen.c:5646 #, c-format msgid "" "key has been created %lu seconds in future (time warp or clock problem)\n" @@ -6169,23 +6175,23 @@ "nyckeln är skapad %lu sekunder in i framtiden (problemet är\n" "relaterat till tidsresande eller en felställd klocka)\n" -#: g10/keygen.c:5414 g10/keygen.c:5603 +#: g10/keygen.c:5468 g10/keygen.c:5657 #, fuzzy, c-format #| msgid "NOTE: creating subkeys for v3 keys is not OpenPGP compliant\n" msgid "Note: creating subkeys for v3 keys is not OpenPGP compliant\n" msgstr "OBS: att skapa undernycklar till v3-nycklar bryter mot OpenPGP\n" -#: g10/keygen.c:5426 g10/keygen.c:5428 +#: g10/keygen.c:5480 g10/keygen.c:5482 #, c-format msgid "Secret parts of primary key are not available.\n" msgstr "De hemliga delarna av den primära nyckeln är inte tillgängliga.\n" -#: g10/keygen.c:5435 g10/keygen.c:5437 +#: g10/keygen.c:5489 g10/keygen.c:5491 #, c-format msgid "Secret parts of primary key are stored on-card.\n" msgstr "Hemliga delar av den primära nyckeln är lagrade på kortet.\n" -#: g10/keygen.c:5456 g10/keygen.c:5617 +#: g10/keygen.c:5510 g10/keygen.c:5671 msgid "Really create? (y/N) " msgstr "Verkligen skapa? (j/N) " @@ -7321,33 +7327,33 @@ msgid "data not saved; use option \"--output\" to save it\n" msgstr "data sparades inte, använd flaggan \"--output\" för att spara det\n" -#: g10/plaintext.c:615 +#: g10/plaintext.c:620 msgid "Detached signature.\n" msgstr "Signatur i en separat fil.\n" -#: g10/plaintext.c:623 +#: g10/plaintext.c:628 msgid "Please enter name of data file: " msgstr "Ange namnet på datafilen: " -#: g10/plaintext.c:660 +#: g10/plaintext.c:665 #, c-format msgid "reading stdin ...\n" msgstr "läser från standard in ...\n" -#: g10/plaintext.c:705 +#: g10/plaintext.c:710 #, c-format msgid "no signed data\n" msgstr "ingen signerad data\n" # se förra kommentaren -#: g10/plaintext.c:723 +#: g10/plaintext.c:728 #, fuzzy, c-format #| msgid "can't open signed data `%s'\n" msgid "can't open signed data '%s'\n" msgstr "kan inte öppna signerat data \"%s\"\n" # se förra kommentaren -#: g10/plaintext.c:758 +#: g10/plaintext.c:763 #, c-format msgid "can't open signed data fd=%d: %s\n" msgstr "kan inte öppna signerad data fd=%d: %s\n" @@ -8405,7 +8411,7 @@ msgid "no need for a trustdb check\n" msgstr "det behövs ingen kontroll av tillitsdatabasen\n" -#: g10/trustdb.c:631 g10/trustdb.c:2326 +#: g10/trustdb.c:631 g10/trustdb.c:2338 #, c-format msgid "next trustdb check due at %s\n" msgstr "nästa kontroll av tillitsdatabasen kommer att äga rum %s\n" @@ -8440,7 +8446,7 @@ msgid "checking the trustdb\n" msgstr "kontrollerar tillitsdatabasen\n" -#: g10/trustdb.c:2047 +#: g10/trustdb.c:2059 #, fuzzy, c-format #| msgid "%lu keys processed so far\n" msgid "%d key processed" @@ -8449,7 +8455,7 @@ msgstr[1] "%lu nycklar behandlade än så länge\n" # Vad är detta!? -#: g10/trustdb.c:2050 +#: g10/trustdb.c:2062 #, fuzzy, c-format #| msgid "%d keys processed (%d validity counts cleared)\n" msgid " (%d validity count cleared)\n" @@ -8457,24 +8463,24 @@ msgstr[0] "%d nycklar behandlade (%d validity counts rensade)\n" msgstr[1] "%d nycklar behandlade (%d validity counts rensade)\n" -#: g10/trustdb.c:2120 +#: g10/trustdb.c:2132 #, c-format msgid "no ultimately trusted keys found\n" msgstr "hittade inga nycklar med förbehållslöst förtroende\n" -#: g10/trustdb.c:2134 +#: g10/trustdb.c:2146 #, c-format msgid "public key of ultimately trusted key %s not found\n" msgstr "publik nyckel för förbehållslöst betrodda nyckeln %s hittades inte\n" -#: g10/trustdb.c:2252 +#: g10/trustdb.c:2264 #, c-format msgid "" "depth: %d valid: %3d signed: %3d trust: %d-, %dq, %dn, %dm, %df, %du\n" msgstr "" "djup: %d giltig: %3d signerad: %3d tillit: %d-, %dq, %dn, %dm, %df, %du\n" -#: g10/trustdb.c:2333 +#: g10/trustdb.c:2345 #, c-format msgid "unable to update trustdb version record: write failed: %s\n" msgstr "" @@ -8606,72 +8612,78 @@ #. TRANSLATORS: Put a \x1f right before a colon. This can be #. * used by pinentry to nicely align the names and values. Keep #. * the %s at the start and end of the string. -#: scd/app-p15.c:5116 scd/app-openpgp.c:2154 +#: scd/app-p15.c:5145 scd/app-nks.c:1541 scd/app-openpgp.c:2154 #, c-format msgid "%sNumber: %s%%0AHolder: %s%s" msgstr "" #. TRANSLATORS: This is the number of remaining attempts to #. * enter a PIN. Use %%0A (double-percent,0A) for a linefeed. -#: scd/app-p15.c:5135 scd/app-openpgp.c:2170 +#: scd/app-p15.c:5164 scd/app-nks.c:1560 scd/app-openpgp.c:2170 #, c-format msgid "Remaining attempts: %d" msgstr "" -#: scd/app-p15.c:5214 scd/app-nks.c:1113 +#: scd/app-p15.c:5243 scd/app-nks.c:2112 msgid "||Please enter the PIN for the key to create qualified signatures." msgstr "||Ange PIN-koden för nyckeln att skapa kvalificerade signaturer med." #. TRANSLATORS: Do not translate the "|A|" prefix but keep it at #. the start of the string. Use %0A (single percent) for a linefeed. -#: scd/app-p15.c:5217 scd/app-openpgp.c:2464 +#: scd/app-p15.c:5246 scd/app-openpgp.c:2465 msgid "|A|Please enter the Admin PIN" msgstr "|A|Ange administratörens PIN-kod" -#: scd/app-p15.c:5219 scd/app-nks.c:1103 +#: scd/app-p15.c:5248 scd/app-nks.c:2102 msgid "|P|Please enter the PIN Unblocking Code (PUK) for the standard keys." msgstr "|P|Ange upplåsningskoden (PUK-kod) för standardnycklarna." -#: scd/app-p15.c:5222 scd/app-nks.c:1095 +#: scd/app-p15.c:5251 scd/app-nks.c:2093 msgid "||Please enter the PIN for the standard keys." msgstr "||Ange PIN-koden för standardnycklarna." -#: scd/app-nks.c:709 scd/app-openpgp.c:3666 +#: scd/app-nks.c:1479 scd/app-openpgp.c:3675 #, c-format msgid "RSA modulus missing or not of size %d bits\n" msgstr "RSA modulus saknas eller är inte %d bitar stor\n" -#: scd/app-nks.c:717 scd/app-openpgp.c:3678 +#: scd/app-nks.c:1487 scd/app-openpgp.c:3687 #, c-format msgid "RSA public exponent missing or larger than %d bits\n" msgstr "Publik RSA-exponent saknas eller större än %d bitar\n" -#: scd/app-nks.c:797 scd/app-openpgp.c:2327 scd/app-openpgp.c:2346 -#: scd/app-openpgp.c:2513 scd/app-openpgp.c:2531 scd/app-openpgp.c:2829 -#: scd/app-openpgp.c:2876 scd/app-openpgp.c:2991 scd/app-dinsig.c:302 +#: scd/app-nks.c:1660 +#, fuzzy +#| msgid "the NullPIN has not yet been changed\n" +msgid "Note: PIN has not yet been enabled." +msgstr "NullPIN har ännu inte ändrats\n" + +#: scd/app-nks.c:1671 scd/app-openpgp.c:2327 scd/app-openpgp.c:2346 +#: scd/app-openpgp.c:2515 scd/app-openpgp.c:2533 scd/app-openpgp.c:2832 +#: scd/app-openpgp.c:2879 scd/app-openpgp.c:3000 scd/app-dinsig.c:303 #, c-format msgid "PIN callback returned error: %s\n" msgstr "PIN-återanrop returnerade fel: %s\n" -#: scd/app-nks.c:830 +#: scd/app-nks.c:1707 #, c-format msgid "the NullPIN has not yet been changed\n" msgstr "NullPIN har ännu inte ändrats\n" -#: scd/app-nks.c:1094 +#: scd/app-nks.c:2092 msgid "|N|Please enter a new PIN for the standard keys." msgstr "|N|Ange en ny PIN-kod för standardnycklarna." -#: scd/app-nks.c:1101 +#: scd/app-nks.c:2100 msgid "|NP|Please enter a new PIN Unblocking Code (PUK) for the standard keys." msgstr "|NP|Ange en ny upplåsningskod (PUK-kod) för standardnycklarna." -#: scd/app-nks.c:1111 +#: scd/app-nks.c:2110 msgid "|N|Please enter a new PIN for the key to create qualified signatures." msgstr "" "|N|Ange en ny PIN-kod för nyckeln att skapa kvalificerade signaturer med." -#: scd/app-nks.c:1121 +#: scd/app-nks.c:2120 msgid "" "|NP|Please enter a new PIN Unblocking Code (PUK) for the key to create " "qualified signatures." @@ -8679,7 +8691,7 @@ "|NP|Ange en ny upplåsningskod (PUK-kod) för nyckeln att skapa kvalificerade " "signaturer med." -#: scd/app-nks.c:1123 +#: scd/app-nks.c:2122 msgid "" "|P|Please enter the PIN Unblocking Code (PUK) for the key to create " "qualified signatures." @@ -8687,7 +8699,7 @@ "|P|Ange upplåsningskoden (PUK-koden) för nyckeln att skapa kvalificerade " "signaturer med." -#: scd/app-nks.c:1230 scd/app-openpgp.c:2910 scd/app-dinsig.c:532 +#: scd/app-nks.c:2295 scd/app-openpgp.c:2913 scd/app-dinsig.c:535 #, c-format msgid "error getting new PIN: %s\n" msgstr "fel vid hämtning av ny PIN-kod: %s\n" @@ -8702,7 +8714,7 @@ msgid "failed to store the creation date: %s\n" msgstr "misslyckades med att lagra datum för skapandet: %s\n" -#: scd/app-openpgp.c:1271 scd/app-openpgp.c:2857 scd/app-openpgp.c:5041 +#: scd/app-openpgp.c:1271 scd/app-openpgp.c:2860 scd/app-openpgp.c:5051 #, c-format msgid "error retrieving CHV status from card\n" msgstr "fel vid hämtning av CHV-status från kort\n" @@ -8723,7 +8735,7 @@ msgid "response does not contain the EC public key\n" msgstr "svaret innehåller inte den publika RSA-exponenten\n" -#: scd/app-openpgp.c:1664 scd/app-openpgp.c:4286 +#: scd/app-openpgp.c:1664 scd/app-openpgp.c:4295 #, c-format msgid "response does not contain the public key data\n" msgstr "svaret innehåller inte publikt nyckeldata\n" @@ -8759,23 +8771,23 @@ msgid "||Please unlock the card" msgstr "||Ange PIN-koden" -#: scd/app-openpgp.c:2353 scd/app-openpgp.c:2538 scd/app-openpgp.c:2836 +#: scd/app-openpgp.c:2353 scd/app-openpgp.c:2540 scd/app-openpgp.c:2839 #, c-format msgid "PIN for CHV%d is too short; minimum length is %d\n" msgstr "PIN-kod för CHV%d är för kort; minimumlängd är %d\n" -#: scd/app-openpgp.c:2367 scd/app-openpgp.c:2414 scd/app-openpgp.c:2552 -#: scd/app-openpgp.c:4644 +#: scd/app-openpgp.c:2368 scd/app-openpgp.c:2415 scd/app-openpgp.c:2554 +#: scd/app-openpgp.c:4654 #, c-format msgid "verify CHV%d failed: %s\n" msgstr "validering av CHV%d misslyckades: %s\n" -#: scd/app-openpgp.c:2450 scd/app-openpgp.c:5050 +#: scd/app-openpgp.c:2451 scd/app-openpgp.c:5060 #, c-format msgid "card is permanently locked!\n" msgstr "kortet är låst permanent!\n" -#: scd/app-openpgp.c:2454 +#: scd/app-openpgp.c:2455 #, fuzzy, c-format #| msgid "%d Admin PIN attempts remaining before card is permanently locked\n" msgid "%d Admin PIN attempt remaining before card is permanently locked\n" @@ -8786,20 +8798,20 @@ msgstr[1] "" "%d försök för Admin PIN-koden återstår innan kortet låses permanent\n" -#: scd/app-openpgp.c:2485 +#: scd/app-openpgp.c:2486 #, c-format msgid "access to admin commands is not configured\n" msgstr "åtkomst till administrationskommandon är inte konfigurerat\n" -#: scd/app-openpgp.c:2823 +#: scd/app-openpgp.c:2826 msgid "||Please enter the PIN" msgstr "||Ange PIN-koden" -#: scd/app-openpgp.c:2872 +#: scd/app-openpgp.c:2875 msgid "||Please enter the Reset Code for the card" msgstr "||Ange nollställningskoden för kortet" -#: scd/app-openpgp.c:2882 scd/app-openpgp.c:2943 +#: scd/app-openpgp.c:2885 scd/app-openpgp.c:2946 #, c-format msgid "Reset Code is too short; minimum length is %d\n" msgstr "Nollställningskoden är för kort; minimumlängd är %d\n" @@ -8807,92 +8819,92 @@ #. 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:2905 +#: scd/app-openpgp.c:2908 msgid "|RN|New Reset Code" msgstr "|RN|Ny nollställningskod" -#: scd/app-openpgp.c:2906 +#: scd/app-openpgp.c:2909 msgid "|AN|New Admin PIN" msgstr "|AN|Ny Admin PIN-kod" -#: scd/app-openpgp.c:2906 +#: scd/app-openpgp.c:2909 msgid "|N|New PIN" msgstr "|N|Ny PIN-kod" -#: scd/app-openpgp.c:2987 +#: scd/app-openpgp.c:2996 #, fuzzy #| msgid "|A|Please enter the Admin PIN" msgid "||Please enter the Admin PIN and New Admin PIN" msgstr "|A|Ange administratörens PIN-kod" -#: scd/app-openpgp.c:2988 +#: scd/app-openpgp.c:2997 #, fuzzy #| msgid "||Please enter the PIN" msgid "||Please enter the PIN and New PIN" msgstr "||Ange PIN-koden" -#: scd/app-openpgp.c:3050 scd/app-openpgp.c:4346 +#: scd/app-openpgp.c:3059 scd/app-openpgp.c:4355 #, c-format msgid "error reading application data\n" msgstr "fel vid läsning av programdata\n" -#: scd/app-openpgp.c:3056 scd/app-openpgp.c:4353 +#: scd/app-openpgp.c:3065 scd/app-openpgp.c:4362 #, c-format msgid "error reading fingerprint DO\n" msgstr "fel vid läsning av fingeravtryckets DO\n" -#: scd/app-openpgp.c:3066 +#: scd/app-openpgp.c:3075 #, c-format msgid "key already exists\n" msgstr "nyckeln finns redan\n" -#: scd/app-openpgp.c:3070 +#: scd/app-openpgp.c:3079 #, c-format msgid "existing key will be replaced\n" msgstr "befintlig nyckel kommer att ersättas\n" -#: scd/app-openpgp.c:3072 +#: scd/app-openpgp.c:3081 #, c-format msgid "generating new key\n" msgstr "genererar ny nyckel\n" -#: scd/app-openpgp.c:3074 +#: scd/app-openpgp.c:3083 #, c-format msgid "writing new key\n" msgstr "skriver ny nyckel\n" -#: scd/app-openpgp.c:3647 scd/app-openpgp.c:3999 +#: scd/app-openpgp.c:3656 scd/app-openpgp.c:4008 #, c-format msgid "creation timestamp missing\n" msgstr "tidsstämpel för skapandet saknas\n" -#: scd/app-openpgp.c:3688 scd/app-openpgp.c:3696 +#: scd/app-openpgp.c:3697 scd/app-openpgp.c:3705 #, c-format msgid "RSA prime %s missing or not of size %d bits\n" msgstr "RSA-primtal %s saknas eller inte %d bitar stor\n" -#: scd/app-openpgp.c:3829 scd/app-openpgp.c:4106 +#: scd/app-openpgp.c:3838 scd/app-openpgp.c:4115 #, c-format msgid "failed to store the key: %s\n" msgstr "misslyckades med att lagra nyckeln: %s\n" -#: scd/app-openpgp.c:3993 +#: scd/app-openpgp.c:4002 #, fuzzy, c-format #| msgid "unsupported algorithm: %s" msgid "unsupported curve\n" msgstr "algoritmen stöds inte: %s" -#: scd/app-openpgp.c:4263 +#: scd/app-openpgp.c:4272 #, c-format msgid "please wait while key is being generated ...\n" msgstr "var god vänta under tiden nyckeln genereras ...\n" -#: scd/app-openpgp.c:4271 +#: scd/app-openpgp.c:4280 #, c-format msgid "generating key failed\n" msgstr "nyckelgenereringen misslyckades\n" -#: scd/app-openpgp.c:4277 +#: scd/app-openpgp.c:4286 #, fuzzy, c-format #| msgid "key generation completed (%d seconds)\n" msgid "key generation completed (%d second)\n" @@ -8900,27 +8912,27 @@ msgstr[0] "nyckelgenereringen är färdig (%d sekunder)\n" msgstr[1] "nyckelgenereringen är färdig (%d sekunder)\n" -#: scd/app-openpgp.c:4311 +#: scd/app-openpgp.c:4320 #, c-format msgid "invalid structure of OpenPGP card (DO 0x93)\n" msgstr "ogiltig struktur för OpenPGP-kort (DO 0x93)\n" -#: scd/app-openpgp.c:4361 +#: scd/app-openpgp.c:4370 #, c-format msgid "fingerprint on card does not match requested one\n" msgstr "avtrycket på kortet stämmer inte med den begärda\n" -#: scd/app-openpgp.c:4560 +#: scd/app-openpgp.c:4569 #, c-format msgid "card does not support digest algorithm %s\n" msgstr "kortet har inte stöd för sammandragsalgoritmen %s\n" -#: scd/app-openpgp.c:4618 +#: scd/app-openpgp.c:4627 #, c-format msgid "signatures created so far: %lu\n" msgstr "signaturer skapade hittills: %lu\n" -#: scd/app-openpgp.c:5055 +#: scd/app-openpgp.c:5065 #, c-format msgid "" "verification of Admin PIN is currently prohibited through this command\n" @@ -8928,12 +8940,12 @@ "validering av Admin PIN-kod är för närvarande förbjudet genom detta " "kommando\n" -#: scd/app-openpgp.c:5386 scd/app-openpgp.c:5398 +#: scd/app-openpgp.c:5396 scd/app-openpgp.c:5408 #, c-format msgid "can't access %s - invalid OpenPGP card?\n" msgstr "kan inte komma åt %s - ogiltigt OpenPGP-kort?\n" -#: scd/app-dinsig.c:298 +#: scd/app-dinsig.c:299 #, fuzzy #| msgid "||Please enter your PIN at the reader's keypad" msgid "||Please enter your PIN at the reader's pinpad" @@ -8942,7 +8954,7 @@ #. 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-dinsig.c:529 +#: scd/app-dinsig.c:532 msgid "|N|Initial New PIN" msgstr "|N|Initial PIN-kod" @@ -9038,11 +9050,11 @@ msgid "validation model requested by certificate: %s" msgstr "valideringsmodellen begärd av certifikat: %s" -#: sm/certchain.c:199 sm/certchain.c:2164 +#: sm/certchain.c:199 sm/certchain.c:2165 msgid "chain" msgstr "kedja" -#: sm/certchain.c:200 sm/certchain.c:2164 +#: sm/certchain.c:200 sm/certchain.c:2165 msgid "shell" msgstr "skal" @@ -9066,237 +9078,237 @@ msgid "failed to open '%s': %s\n" msgstr "misslyckades med att öppna \"%s\": %s\n" -#: sm/certchain.c:355 sm/certchain.c:384 dirmngr/validate.c:204 +#: sm/certchain.c:355 sm/certchain.c:385 dirmngr/validate.c:204 #, fuzzy, c-format #| msgid "note: non-critical certificate policy not allowed" msgid "Note: non-critical certificate policy not allowed" msgstr "observera: icke-kritisk certifikatpolicy tillåts inte" -#: sm/certchain.c:359 sm/certchain.c:388 dirmngr/validate.c:209 +#: sm/certchain.c:359 sm/certchain.c:389 dirmngr/validate.c:209 #, c-format msgid "certificate policy not allowed" msgstr "certifikatpolicy tillåts inte" -#: sm/certchain.c:595 sm/keydb.c:1084 sm/keydb.c:1171 +#: sm/certchain.c:596 sm/keydb.c:1084 sm/keydb.c:1171 #, c-format msgid "failed to get the fingerprint\n" msgstr "misslyckades med att få fingeravtrycket\n" -#: sm/certchain.c:624 +#: sm/certchain.c:625 #, c-format msgid "looking up issuer at external location\n" msgstr "slår upp utfärdare på extern plats\n" -#: sm/certchain.c:644 +#: sm/certchain.c:645 #, c-format msgid "number of issuers matching: %d\n" msgstr "antal utfärdare som matchar: %d\n" -#: sm/certchain.c:723 dirmngr/ocsp.c:685 +#: sm/certchain.c:724 dirmngr/ocsp.c:685 #, fuzzy, c-format #| msgid "can't access `%s': %s\n" msgid "can't get authorityInfoAccess: %s\n" msgstr "kan inte komma åt \"%s\": %s\n" -#: sm/certchain.c:791 +#: sm/certchain.c:792 #, c-format msgid "looking up issuer from the Dirmngr cache\n" msgstr "slår upp utfärdare från Dirmngr-cachen\n" -#: sm/certchain.c:816 +#: sm/certchain.c:817 #, c-format msgid "number of matching certificates: %d\n" msgstr "antal matchande certifikat: %d\n" -#: sm/certchain.c:819 +#: sm/certchain.c:820 #, c-format msgid "dirmngr cache-only key lookup failed: %s\n" msgstr "uppslag av endast-mellanlagrad dirmngr-nyckel misslyckades: %s\n" -#: sm/certchain.c:1041 sm/certchain.c:1554 sm/certchain.c:2192 sm/decrypt.c:728 +#: sm/certchain.c:1042 sm/certchain.c:1555 sm/certchain.c:2193 sm/decrypt.c:728 #: sm/encrypt.c:345 sm/import.c:415 sm/keydb.c:1091 sm/keydb.c:1178 #: sm/sign.c:337 sm/verify.c:118 #, c-format msgid "failed to allocate keyDB handle\n" msgstr "misslyckades med att allokera keyDB-hanterare\n" -#: sm/certchain.c:1225 +#: sm/certchain.c:1226 msgid "certificate has been revoked" msgstr "certifikatet har spärrats" -#: sm/certchain.c:1240 +#: sm/certchain.c:1241 msgid "the status of the certificate is unknown" msgstr "status för certifikatet är okänt" -#: sm/certchain.c:1247 +#: sm/certchain.c:1248 #, c-format msgid "please make sure that the \"dirmngr\" is properly installed\n" msgstr "se till att \"dirmngr\" är korrekt installerat\n" -#: sm/certchain.c:1253 +#: sm/certchain.c:1254 #, c-format msgid "checking the CRL failed: %s" msgstr "kontroll mot spärrlistan misslyckades: %s" -#: sm/certchain.c:1282 sm/certchain.c:1350 dirmngr/validate.c:497 +#: sm/certchain.c:1283 sm/certchain.c:1351 dirmngr/validate.c:497 #, c-format msgid "certificate with invalid validity: %s" msgstr "certifikat med felaktig giltighetstid: %s" -#: sm/certchain.c:1297 sm/certchain.c:1382 dirmngr/validate.c:515 +#: sm/certchain.c:1298 sm/certchain.c:1383 dirmngr/validate.c:515 #, c-format msgid "certificate not yet valid" msgstr "certifikatet är ännu inte giltigt" -#: sm/certchain.c:1298 sm/certchain.c:1383 +#: sm/certchain.c:1299 sm/certchain.c:1384 msgid "root certificate not yet valid" msgstr "rotcertifikatet är ännu inte giltigt" -#: sm/certchain.c:1299 sm/certchain.c:1384 +#: sm/certchain.c:1300 sm/certchain.c:1385 msgid "intermediate certificate not yet valid" msgstr "tillfälligt certifikat är ännu inte giltigt" -#: sm/certchain.c:1312 dirmngr/validate.c:526 +#: sm/certchain.c:1313 dirmngr/validate.c:526 #, c-format msgid "certificate has expired" msgstr "certifikatet har gått ut" -#: sm/certchain.c:1313 +#: sm/certchain.c:1314 msgid "root certificate has expired" msgstr "rotcertifikatet har gått ut" -#: sm/certchain.c:1314 +#: sm/certchain.c:1315 msgid "intermediate certificate has expired" msgstr "tillfälligt certifikat har gått ut" -#: sm/certchain.c:1356 +#: sm/certchain.c:1357 #, c-format msgid "required certificate attributes missing: %s%s%s" msgstr "nödvändiga certifikattillägg saknas: %s%s%s" -#: sm/certchain.c:1365 +#: sm/certchain.c:1366 msgid "certificate with invalid validity" msgstr "certifikat med felaktig giltighetstid" -#: sm/certchain.c:1402 +#: sm/certchain.c:1403 msgid "signature not created during lifetime of certificate" msgstr "signaturen inte skapad under certifikatets livstid" -#: sm/certchain.c:1404 +#: sm/certchain.c:1405 msgid "certificate not created during lifetime of issuer" msgstr "certifikatet skapades inte under utfärdarens livstid" -#: sm/certchain.c:1405 +#: sm/certchain.c:1406 msgid "intermediate certificate not created during lifetime of issuer" msgstr "tillfälligt certifikat är inte skapat under utfärdarens livstid" -#: sm/certchain.c:1409 +#: sm/certchain.c:1410 #, c-format msgid " ( signature created at " msgstr " ( signatur skapad " -#: sm/certchain.c:1410 +#: sm/certchain.c:1411 #, c-format msgid " (certificate created at " msgstr " (certifikat skapat " -#: sm/certchain.c:1413 +#: sm/certchain.c:1414 #, c-format msgid " (certificate valid from " msgstr " (certifikat giltigt från " -#: sm/certchain.c:1414 +#: sm/certchain.c:1415 #, c-format msgid " ( issuer valid from " msgstr " ( utfärdare giltig från " -#: sm/certchain.c:1444 dirmngr/validate.c:577 +#: sm/certchain.c:1445 dirmngr/validate.c:577 #, c-format msgid "fingerprint=%s\n" msgstr "fingeravtryck=%s\n" -#: sm/certchain.c:1453 +#: sm/certchain.c:1454 #, c-format msgid "root certificate has now been marked as trusted\n" msgstr "rotcertifikatet har nu markerats som betrott\n" -#: sm/certchain.c:1466 +#: sm/certchain.c:1467 #, c-format msgid "interactive marking as trusted not enabled in gpg-agent\n" msgstr "interaktiv markering som betrodd inte aktiverad i gpg-agent\n" -#: sm/certchain.c:1472 +#: sm/certchain.c:1473 #, c-format msgid "interactive marking as trusted disabled for this session\n" msgstr "interaktiv markering som betrodd inaktiverad för den här sessionen\n" -#: sm/certchain.c:1531 +#: sm/certchain.c:1532 msgid "WARNING: creation time of signature not known - assuming current time" msgstr "" "VARNING: tid för skapandet av signaturen är inte känd - antar aktuell tid" -#: sm/certchain.c:1595 +#: sm/certchain.c:1596 msgid "no issuer found in certificate" msgstr "ingen utfärdare hittades i certifikatet" -#: sm/certchain.c:1673 +#: sm/certchain.c:1674 msgid "self-signed certificate has a BAD signature" msgstr "självsignerat certifikat har en FELAKTIG signatur" -#: sm/certchain.c:1742 dirmngr/validate.c:575 +#: sm/certchain.c:1743 dirmngr/validate.c:575 #, c-format msgid "root certificate is not marked trusted" msgstr "rotcertifikatet har inte markerats som betrott" -#: sm/certchain.c:1758 +#: sm/certchain.c:1759 #, c-format msgid "checking the trust list failed: %s\n" msgstr "kontroll mot tillitslistan misslyckades: %s\n" -#: sm/certchain.c:1789 sm/import.c:176 sm/keylist.c:1396 dirmngr/validate.c:630 +#: sm/certchain.c:1790 sm/import.c:176 sm/keylist.c:1396 dirmngr/validate.c:630 #, c-format msgid "certificate chain too long\n" msgstr "certifikatkedjan är för lång\n" -#: sm/certchain.c:1801 dirmngr/validate.c:642 +#: sm/certchain.c:1802 dirmngr/validate.c:642 #, c-format msgid "issuer certificate not found" msgstr "utfärdarens certifikat hittades inte" -#: sm/certchain.c:1834 dirmngr/validate.c:668 +#: sm/certchain.c:1835 dirmngr/validate.c:668 #, c-format msgid "certificate has a BAD signature" msgstr "certifikatet har en FELAKTIG signatur" -#: sm/certchain.c:1866 dirmngr/validate.c:692 +#: sm/certchain.c:1867 dirmngr/validate.c:692 msgid "found another possible matching CA certificate - trying again" msgstr "hittade ett annat möjligen matchande CA-certifikat - försöker igen" -#: sm/certchain.c:1925 dirmngr/validate.c:717 +#: sm/certchain.c:1926 dirmngr/validate.c:717 #, c-format msgid "certificate chain longer than allowed by CA (%d)" msgstr "certifikatkedjan längre än vad som tillåts av CA (%d)" -#: sm/certchain.c:1967 sm/certchain.c:2263 dirmngr/validate.c:747 +#: sm/certchain.c:1968 sm/certchain.c:2264 dirmngr/validate.c:747 #, c-format msgid "certificate is good\n" msgstr "certifikatet är korrekt\n" -#: sm/certchain.c:1968 +#: sm/certchain.c:1969 #, c-format msgid "intermediate certificate is good\n" msgstr "tillfälligt certifikat är korrekt\n" -#: sm/certchain.c:1969 +#: sm/certchain.c:1970 #, c-format msgid "root certificate is good\n" msgstr "rotcertifikatet är korrekt\n" -#: sm/certchain.c:2151 +#: sm/certchain.c:2152 msgid "switching to chain model" msgstr "växlar till kedjemodell" -#: sm/certchain.c:2160 +#: sm/certchain.c:2161 #, c-format msgid "validation model used: %s" msgstr "valideringsmodell använd: %s" diff -Nru gnupg2-2.2.40/po/tr.po gnupg2-2.2.41/po/tr.po --- gnupg2-2.2.40/po/tr.po 2022-10-10 09:58:26.000000000 +0000 +++ gnupg2-2.2.41/po/tr.po 2022-12-09 08:48:35.000000000 +0000 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: gnupg 2.0.10rc1\n" "Report-Msgid-Bugs-To: translations@gnupg.org\n" -"POT-Creation-Date: 2022-10-10 11:58+0200\n" +"POT-Creation-Date: 2022-12-09 09:48+0100\n" "PO-Revision-Date: 2015-02-11 19:18+0100\n" "Last-Translator: Nilgün Belma Bugüner \n" "Language-Team: Turkish\n" @@ -229,8 +229,8 @@ msgid "ssh keys greater than %d bits are not supported\n" msgstr "%d bitlikten daha büyük SSH anahtarları desteklenmiyor\n" -#: agent/command-ssh.c:862 common/dotlock.c:856 g10/card-util.c:947 -#: g10/exec.c:554 g10/export.c:1320 g10/gpg.c:1400 g10/keygen.c:4998 +#: agent/command-ssh.c:862 common/dotlock.c:856 g10/card-util.c:946 +#: g10/exec.c:554 g10/export.c:1335 g10/gpg.c:1409 g10/keygen.c:5052 #: g10/keyring.c:1322 g10/keyring.c:1637 g10/openfile.c:291 g10/sign.c:1008 #: g10/sign.c:1322 g10/tdbio.c:753 #, fuzzy, c-format @@ -238,12 +238,12 @@ msgid "can't create '%s': %s\n" msgstr "\"%s\" oluşturulamıyor: %s\n" -#: agent/command-ssh.c:874 common/helpfile.c:57 g10/card-util.c:904 +#: agent/command-ssh.c:874 common/helpfile.c:57 g10/card-util.c:903 #: g10/dearmor.c:59 g10/dearmor.c:106 g10/decrypt.c:65 g10/decrypt.c:136 -#: g10/decrypt.c:153 g10/encrypt.c:239 g10/encrypt.c:678 g10/gpg.c:1401 -#: g10/import.c:364 g10/import.c:548 g10/import.c:776 g10/keygen.c:4036 +#: g10/decrypt.c:153 g10/encrypt.c:239 g10/encrypt.c:678 g10/gpg.c:1410 +#: g10/import.c:365 g10/import.c:549 g10/import.c:777 g10/keygen.c:4090 #: g10/keyring.c:1663 g10/openfile.c:195 g10/openfile.c:209 g10/plaintext.c:128 -#: g10/plaintext.c:649 g10/sign.c:990 g10/sign.c:1201 g10/sign.c:1306 +#: g10/plaintext.c:654 g10/sign.c:990 g10/sign.c:1201 g10/sign.c:1306 #: g10/sign.c:1451 g10/tdbdump.c:145 g10/tdbdump.c:153 g10/tdbio.c:758 #: g10/tdbio.c:829 g10/verify.c:96 g10/verify.c:160 sm/gpgsm.c:2160 #: sm/gpgsm.c:2190 sm/gpgsm.c:2228 sm/qualified.c:66 dirmngr/certcache.c:420 @@ -497,33 +497,33 @@ msgid "csh-style command output" msgstr "csh tarzı komut çıktısı" -#: agent/gpg-agent.c:185 g10/gpg.c:579 scd/scdaemon.c:126 sm/gpgsm.c:410 +#: agent/gpg-agent.c:185 g10/gpg.c:580 scd/scdaemon.c:126 sm/gpgsm.c:410 #: dirmngr/dirmngr.c:192 msgid "|FILE|read options from FILE" msgstr "|DOSYA|seçenekler DOSYAdan okunur" -#: agent/gpg-agent.c:189 g10/gpg.c:566 scd/scdaemon.c:130 sm/gpgsm.c:259 +#: agent/gpg-agent.c:189 g10/gpg.c:567 scd/scdaemon.c:130 sm/gpgsm.c:259 #: dirmngr/dirmngr.c:196 msgid "Options controlling the diagnostic output" msgstr "Tanı çıktısını denetleyen seçenekler" -#: agent/gpg-agent.c:191 g10/gpg.c:568 g10/gpgv.c:78 kbx/kbxutil.c:88 +#: agent/gpg-agent.c:191 g10/gpg.c:569 g10/gpgv.c:78 kbx/kbxutil.c:88 #: scd/scdaemon.c:132 sm/gpgsm.c:261 dirmngr/dirmngr-client.c:70 #: dirmngr/dirmngr.c:198 tools/gpg-connect-agent.c:78 tools/gpgconf.c:110 msgid "verbose" msgstr "ayrıntılı" -#: agent/gpg-agent.c:192 g10/gpg.c:570 g10/gpgv.c:79 kbx/kbxutil.c:89 +#: agent/gpg-agent.c:192 g10/gpg.c:571 g10/gpgv.c:79 kbx/kbxutil.c:89 #: scd/scdaemon.c:133 sm/gpgsm.c:263 dirmngr/dirmngr-client.c:71 #: dirmngr/dirmngr.c:199 msgid "be somewhat more quiet" msgstr "biraz daha sessiz olur" -#: agent/gpg-agent.c:200 g10/gpg.c:583 sm/gpgsm.c:276 dirmngr/dirmngr.c:209 +#: agent/gpg-agent.c:200 g10/gpg.c:584 sm/gpgsm.c:276 dirmngr/dirmngr.c:209 msgid "|FILE|write server mode logs to FILE" msgstr "|DOSYA|sunucu kipi günlükleri DOSYAya yazar" -#: agent/gpg-agent.c:204 g10/gpg.c:589 scd/scdaemon.c:147 sm/gpgsm.c:283 +#: agent/gpg-agent.c:204 g10/gpg.c:590 scd/scdaemon.c:147 sm/gpgsm.c:283 #: dirmngr/dirmngr.c:213 msgid "Options controlling the configuration" msgstr "Yapılandırmayı denetleyen seçenekler" @@ -564,7 +564,7 @@ msgid "enable putty support" msgstr "" -#: agent/gpg-agent.c:237 g10/gpg.c:831 scd/scdaemon.c:175 sm/gpgsm.c:369 +#: agent/gpg-agent.c:237 g10/gpg.c:832 scd/scdaemon.c:175 sm/gpgsm.c:369 msgid "Options controlling the security" msgstr "Güvenliği denetleyen seçenekler" @@ -671,7 +671,7 @@ #. reporting address. This is so that we can change the #. reporting address without breaking the translations. #: agent/gpg-agent.c:563 agent/preset-passphrase.c:100 agent/protect-tool.c:155 -#: g10/gpg.c:1108 g10/gpgv.c:149 kbx/kbxutil.c:113 scd/scdaemon.c:313 +#: g10/gpg.c:1117 g10/gpgv.c:149 kbx/kbxutil.c:113 scd/scdaemon.c:313 #: sm/gpgsm.c:600 dirmngr/dirmngr-client.c:168 dirmngr/dirmngr.c:458 #: tools/gpg-connect-agent.c:205 tools/gpgconf.c:154 #: tools/gpg-check-pattern.c:143 @@ -697,28 +697,28 @@ "Sözdizimi: gpg-agent [seçenekler] [komut [arg ...]]\n" "GnuPG için gizli anahtar yönetimi\n" -#: agent/gpg-agent.c:619 g10/gpg.c:1304 scd/scdaemon.c:385 sm/gpgsm.c:748 +#: agent/gpg-agent.c:619 g10/gpg.c:1313 scd/scdaemon.c:385 sm/gpgsm.c:748 #: dirmngr/dirmngr.c:542 #, fuzzy, c-format #| msgid "invalid debug-level `%s' given\n" msgid "invalid debug-level '%s' given\n" msgstr "belirtilen hata seviyesi `%s' geçersiz\n" -#: agent/gpg-agent.c:988 g10/gpg.c:3810 g10/gpg.c:3834 sm/gpgsm.c:1585 +#: agent/gpg-agent.c:988 g10/gpg.c:3830 g10/gpg.c:3854 sm/gpgsm.c:1585 #: sm/gpgsm.c:1591 #, c-format msgid "selected digest algorithm is invalid\n" msgstr "seçilen özet algoritması geçersiz\n" #: agent/gpg-agent.c:1216 agent/gpg-agent.c:2029 common/argparse.c:1766 -#: common/argparse.c:1858 g10/gpg.c:2517 scd/scdaemon.c:547 sm/gpgsm.c:1007 +#: common/argparse.c:1858 g10/gpg.c:2526 scd/scdaemon.c:547 sm/gpgsm.c:1007 #: dirmngr/dirmngr.c:1081 dirmngr/dirmngr.c:1937 #, fuzzy, c-format #| msgid "reading options from `%s'\n" msgid "reading options from '%s'\n" msgstr "\"%s\"den seçenekler okunuyor\n" -#: agent/gpg-agent.c:1332 g10/gpg.c:3751 scd/scdaemon.c:671 sm/gpgsm.c:1522 +#: agent/gpg-agent.c:1332 g10/gpg.c:3769 scd/scdaemon.c:671 sm/gpgsm.c:1522 #: dirmngr/dirmngr.c:1190 tools/gpg-connect-agent.c:1244 tools/gpgconf.c:677 #, fuzzy, c-format #| msgid "WARNING: \"%s\" is a deprecated option\n" @@ -859,7 +859,7 @@ "Sözdizimi: gpg-preset-passphrase [seçenekler] ANHMAŞASI\n" "Parola arabelleği bakımcısı\n" -#: agent/protect-tool.c:108 g10/gpg.c:441 kbx/kbxutil.c:71 sm/gpgsm.c:210 +#: agent/protect-tool.c:108 g10/gpg.c:442 kbx/kbxutil.c:71 sm/gpgsm.c:210 #: dirmngr/dirmngr.c:171 tools/gpgconf.c:80 msgid "" "@Commands:\n" @@ -1097,7 +1097,7 @@ msgid "secret key parts are not available\n" msgstr "gizli anahtar parçaları kullanım dışı\n" -#: agent/cvt-openpgp.c:344 g10/card-util.c:1556 +#: agent/cvt-openpgp.c:344 g10/card-util.c:1555 #, fuzzy, c-format #| msgid "protection algorithm %d%s is not supported\n" msgid "public key algorithm %d (%s) is not supported\n" @@ -1263,7 +1263,7 @@ msgid "out of core while allocating %lu bytes" msgstr "%lu bayt ayrılırken nüve dışına çıkıldı" -#: common/miscellaneous.c:115 g10/card-util.c:911 tools/no-libgcrypt.c:30 +#: common/miscellaneous.c:115 g10/card-util.c:910 tools/no-libgcrypt.c:30 #, c-format msgid "error allocating enough memory: %s\n" msgstr "yeterli bellek ayrılırken hata: %s\n" @@ -1388,7 +1388,7 @@ msgstr "algoritma: %s" #: common/audit.c:774 common/audit.c:776 common/audit.c:921 common/audit.c:923 -#: scd/app-openpgp.c:3557 +#: scd/app-openpgp.c:3566 #, c-format msgid "unsupported algorithm: %s" msgstr "desteklenmeyen algoritma: %s" @@ -1465,11 +1465,11 @@ msgid "Root certificate trustworthy" msgstr "Kök sertifika güvenilir" -#: common/audit.c:1112 sm/certchain.c:1235 +#: common/audit.c:1112 sm/certchain.c:1236 msgid "no CRL found for certificate" msgstr "sertifika için bir CRL yok" -#: common/audit.c:1115 sm/certchain.c:1245 +#: common/audit.c:1115 sm/certchain.c:1246 msgid "the available CRL is too old" msgstr "mevcut CRL çok eski" @@ -1601,7 +1601,7 @@ msgid "missing argument for option \"%.50s\"\n" msgstr "\"%.50s\" seçeneği için değiştirge eksik\n" -#: common/argparse.c:558 g10/gpg.c:3525 +#: common/argparse.c:558 g10/gpg.c:3543 #, fuzzy, c-format #| msgid "missing argument for option \"%.50s\"\n" msgid "invalid argument for option \"%.50s\"\n" @@ -1708,92 +1708,92 @@ msgid "%s is too old (need %s, have %s)\n" msgstr "%s çok eski (gereken %s, sizinki %s)\n" -#: g10/armor.c:423 +#: g10/armor.c:424 #, c-format msgid "armor: %s\n" msgstr "zırh: %s\n" -#: g10/armor.c:462 +#: g10/armor.c:463 #, c-format msgid "invalid armor header: " msgstr "zırh başlığı geçersiz: " -#: g10/armor.c:473 +#: g10/armor.c:474 #, c-format msgid "armor header: " msgstr "zırh başlığı: " -#: g10/armor.c:486 +#: g10/armor.c:487 #, c-format msgid "invalid clearsig header\n" msgstr "açıkça okunabilen imza başlığı geçersiz\n" -#: g10/armor.c:499 +#: g10/armor.c:500 #, c-format msgid "unknown armor header: " msgstr "bilinmeyen zırh başlığı: " -#: g10/armor.c:552 +#: g10/armor.c:553 #, c-format msgid "nested clear text signatures\n" msgstr "açıkça okunabilen imzalar dahil edildi\n" -#: g10/armor.c:687 +#: g10/armor.c:688 #, c-format msgid "unexpected armor: " msgstr "beklenmeyen zırh: " -#: g10/armor.c:700 +#: g10/armor.c:701 #, c-format msgid "invalid dash escaped line: " msgstr "araçizgisi escape'lı satır geçersiz: " -#: g10/armor.c:872 g10/armor.c:1492 +#: g10/armor.c:873 g10/armor.c:1493 #, c-format msgid "invalid radix64 character %02X skipped\n" msgstr "geçersiz radix64 karakteri %02X atlandı\n" -#: g10/armor.c:915 +#: g10/armor.c:916 #, c-format msgid "premature eof (no CRC)\n" msgstr "dosya sonu belirsiz (CRC yok)\n" -#: g10/armor.c:949 +#: g10/armor.c:950 #, c-format msgid "premature eof (in CRC)\n" msgstr "dosya sonu belirsiz (CRC içinde)\n" -#: g10/armor.c:957 +#: g10/armor.c:958 #, c-format msgid "malformed CRC\n" msgstr "CRC bozulmuş\n" -#: g10/armor.c:961 g10/armor.c:1529 +#: g10/armor.c:962 g10/armor.c:1530 #, c-format msgid "CRC error; %06lX - %06lX\n" msgstr "CRC hatası; %06lX - %06lX\n" -#: g10/armor.c:981 +#: g10/armor.c:982 #, c-format msgid "premature eof (in trailer)\n" msgstr "dosya sonu belirsiz (kuyruk içinde)\n" -#: g10/armor.c:985 +#: g10/armor.c:986 #, c-format msgid "error in trailer line\n" msgstr "kuyruk satırında hata\n" -#: g10/armor.c:1305 +#: g10/armor.c:1306 #, c-format msgid "no valid OpenPGP data found.\n" msgstr "geçerli OpenPGP verisi yok\n" -#: g10/armor.c:1310 +#: g10/armor.c:1311 #, c-format msgid "invalid armor: line longer than %d characters\n" msgstr "geçersiz zırh: satır %d karakterden uzun\n" -#: g10/armor.c:1314 +#: g10/armor.c:1315 #, c-format msgid "" "quoted printable character in armor - probably a buggy MTA has been used\n" @@ -1949,24 +1949,24 @@ msgid "server uses an invalid certificate" msgstr "bir yürürlükten kaldırma sertifikası üretir" -#: g10/call-dirmngr.c:462 g10/gpg.c:4458 +#: g10/call-dirmngr.c:462 g10/gpg.c:4478 #, fuzzy, c-format #| msgid "armor: %s\n" msgid "Note: %s\n" msgstr "zırh: %s\n" -#: g10/card-util.c:86 g10/card-util.c:366 g10/card-util.c:1918 +#: g10/card-util.c:86 g10/card-util.c:366 g10/card-util.c:1917 #, c-format msgid "OpenPGP card not available: %s\n" msgstr "OpenPGP anahtarı kullanılabilir değil: %s\n" -#: g10/card-util.c:91 g10/card-util.c:1924 +#: g10/card-util.c:91 g10/card-util.c:1923 #, c-format msgid "OpenPGP card no. %s detected\n" msgstr "%s numaralı OpenPGP kartı saptandı\n" -#: g10/card-util.c:97 g10/card-util.c:2253 g10/delkey.c:160 g10/keyedit.c:1423 -#: g10/keygen.c:4466 g10/revoke.c:214 g10/revoke.c:636 +#: g10/card-util.c:97 g10/card-util.c:2252 g10/delkey.c:160 g10/keyedit.c:1423 +#: g10/keygen.c:4520 g10/revoke.c:214 g10/revoke.c:636 #, c-format msgid "can't do this in batch mode\n" msgstr "bu önceden betik kipinde yapılamaz\n" @@ -1976,14 +1976,14 @@ msgid "This command is only available for version 2 cards\n" msgstr "Bu komut sadece 2. sürüm kartlar için kullanılabilir\n" -#: g10/card-util.c:107 scd/app-openpgp.c:2866 +#: g10/card-util.c:107 scd/app-openpgp.c:2869 #, c-format msgid "Reset Code not or not anymore available\n" msgstr "Sıfırlama kodu ya yok ya da kullanım dışı\n" -#: g10/card-util.c:140 g10/card-util.c:1442 g10/card-util.c:1704 -#: g10/card-util.c:1796 g10/keyedit.c:394 g10/keyedit.c:415 g10/keyedit.c:429 -#: g10/keygen.c:1808 g10/keygen.c:1980 g10/keygen.c:2186 g10/keygen.c:2477 +#: g10/card-util.c:140 g10/card-util.c:1441 g10/card-util.c:1703 +#: g10/card-util.c:1795 g10/keyedit.c:394 g10/keyedit.c:415 g10/keyedit.c:429 +#: g10/keygen.c:1862 g10/keygen.c:2034 g10/keygen.c:2240 g10/keygen.c:2531 #: sm/certreqgen-ui.c:165 sm/certreqgen-ui.c:291 sm/certreqgen-ui.c:325 msgid "Your selection? " msgstr "Seçiminiz? " @@ -2033,12 +2033,12 @@ msgid "Error: Combined name too long (limit is %d characters).\n" msgstr "Hata: İsimler birlikte çok uzun oluyor (sınır: %d karakter).\n" -#: g10/card-util.c:826 +#: g10/card-util.c:825 msgid "URL to retrieve public key: " msgstr "genel anahtarın alınacağı URL: " -#: g10/card-util.c:920 g10/decrypt-data.c:509 g10/import.c:399 g10/import.c:746 -#: g10/import.c:798 dirmngr/crlcache.c:655 dirmngr/crlcache.c:660 +#: g10/card-util.c:919 g10/decrypt-data.c:509 g10/import.c:400 g10/import.c:747 +#: g10/import.c:799 dirmngr/crlcache.c:655 dirmngr/crlcache.c:660 #: dirmngr/crlcache.c:914 dirmngr/crlcache.c:920 dirmngr/dirmngr.c:1748 #: tools/gpgconf.c:483 tools/gpgconf.c:529 #, fuzzy, c-format @@ -2046,172 +2046,172 @@ msgid "error reading '%s': %s\n" msgstr "\"%s\" okunurken hata: %s\n" -#: g10/card-util.c:953 g10/decrypt-data.c:512 g10/export.c:2467 +#: g10/card-util.c:952 g10/decrypt-data.c:512 g10/export.c:2586 #: dirmngr/crlcache.c:925 #, fuzzy, c-format msgid "error writing '%s': %s\n" msgstr "`%s' yazılırken hata: %s\n" -#: g10/card-util.c:980 +#: g10/card-util.c:979 msgid "Login data (account name): " msgstr "Oturum açma verisi (hesap adı): " -#: g10/card-util.c:1018 +#: g10/card-util.c:1017 msgid "Private DO data: " msgstr "Özel DO verisi: " -#: g10/card-util.c:1103 +#: g10/card-util.c:1102 msgid "Language preferences: " msgstr "Dil tercihleri: " -#: g10/card-util.c:1111 +#: g10/card-util.c:1110 msgid "Error: invalid length of preference string.\n" msgstr "Hata: tercih dizgesinin uzunluğu geçersiz.\n" -#: g10/card-util.c:1120 +#: g10/card-util.c:1119 msgid "Error: invalid characters in preference string.\n" msgstr "Hata: tercih dizgesindeki karakterler geçersiz.\n" -#: g10/card-util.c:1142 +#: g10/card-util.c:1141 msgid "Salutation (M = Mr., F = Ms., or space): " msgstr "" -#: g10/card-util.c:1156 +#: g10/card-util.c:1155 msgid "Error: invalid response.\n" msgstr "Hata: yanıt geçersiz.\n" -#: g10/card-util.c:1178 +#: g10/card-util.c:1177 msgid "CA fingerprint: " msgstr "CA parmak izi: " -#: g10/card-util.c:1201 +#: g10/card-util.c:1200 msgid "Error: invalid formatted fingerprint.\n" msgstr "Hata: biçimli parmakizi geçersiz\n" -#: g10/card-util.c:1252 +#: g10/card-util.c:1251 #, c-format msgid "key operation not possible: %s\n" msgstr "anahtar işlemi mümkün değil: %s\n" -#: g10/card-util.c:1253 +#: g10/card-util.c:1252 msgid "not an OpenPGP card" msgstr "bir OpenPGP kartı değil" -#: g10/card-util.c:1266 g10/keygen.c:4486 g10/keygen.c:5562 +#: g10/card-util.c:1265 g10/keygen.c:4540 g10/keygen.c:5616 #, c-format msgid "error getting current key info: %s\n" msgstr "geçerli anahtar bilgisi alınırken hata: %s\n" -#: g10/card-util.c:1351 +#: g10/card-util.c:1350 msgid "Replace existing key? (y/N) " msgstr "Mevcut anahtar değiştirilsin mi? (e/H ya da y/N) " -#: g10/card-util.c:1368 +#: g10/card-util.c:1367 msgid "" "Note: There is no guarantee that the card supports the requested size.\n" " If the key generation does not succeed, please check the\n" " documentation of your card to see what sizes are allowed.\n" msgstr "" -#: g10/card-util.c:1390 g10/keygen.c:2363 sm/certreqgen-ui.c:179 +#: g10/card-util.c:1389 g10/keygen.c:2417 sm/certreqgen-ui.c:179 #, c-format msgid "What keysize do you want? (%u) " msgstr "İstediğiniz anahtar uzunluğu nedir? (%u) " -#: g10/card-util.c:1400 g10/keygen.c:2286 g10/keygen.c:2318 +#: g10/card-util.c:1399 g10/keygen.c:2340 g10/keygen.c:2372 #: sm/certreqgen-ui.c:194 #, c-format msgid "rounded up to %u bits\n" msgstr "%u bite yuvarlandı\n" -#: g10/card-util.c:1408 g10/keygen.c:2371 sm/certreqgen-ui.c:184 +#: g10/card-util.c:1407 g10/keygen.c:2425 sm/certreqgen-ui.c:184 #, c-format msgid "%s keysizes must be in the range %u-%u\n" msgstr "%s anahtar uzunlukları %u-%u aralığında olmalı\n" -#: g10/card-util.c:1427 +#: g10/card-util.c:1426 msgid "Changing card key attribute for: " msgstr "" -#: g10/card-util.c:1429 +#: g10/card-util.c:1428 #, fuzzy #| msgid " (1) Signature key\n" msgid "Signature key\n" msgstr " (1) İmzalama anahtarı\n" -#: g10/card-util.c:1431 +#: g10/card-util.c:1430 #, fuzzy #| msgid " (2) Encryption key\n" msgid "Encryption key\n" msgstr " (2) Şifreleme anahtarı\n" -#: g10/card-util.c:1433 +#: g10/card-util.c:1432 #, fuzzy #| msgid " (3) Authentication key\n" msgid "Authentication key\n" msgstr " (3) Kimlik kanıtlama anahtarı\n" -#: g10/card-util.c:1435 g10/keygen.c:1926 sm/certreqgen-ui.c:157 +#: g10/card-util.c:1434 g10/keygen.c:1980 sm/certreqgen-ui.c:157 msgid "Please select what kind of key you want:\n" msgstr "Lütfen istediğiniz anahtarı seçiniz:\n" -#: g10/card-util.c:1436 sm/certreqgen-ui.c:158 +#: g10/card-util.c:1435 sm/certreqgen-ui.c:158 #, c-format msgid " (%d) RSA\n" msgstr " (%d) RSA\n" -#: g10/card-util.c:1437 +#: g10/card-util.c:1436 #, fuzzy, c-format msgid " (%d) ECC\n" msgstr " (%d) DSA ve ElGamal (öntanımlı)\n" -#: g10/card-util.c:1449 g10/card-util.c:1716 g10/card-util.c:1816 -#: g10/keyedit.c:900 g10/keygen.c:1834 g10/keygen.c:1862 g10/keygen.c:1987 -#: g10/keygen.c:2222 g10/keygen.c:2505 g10/revoke.c:838 +#: g10/card-util.c:1448 g10/card-util.c:1715 g10/card-util.c:1815 +#: g10/keyedit.c:900 g10/keygen.c:1888 g10/keygen.c:1916 g10/keygen.c:2041 +#: g10/keygen.c:2276 g10/keygen.c:2559 g10/revoke.c:838 msgid "Invalid selection.\n" msgstr "Seçim geçersiz.\n" -#: g10/card-util.c:1522 +#: g10/card-util.c:1521 #, c-format msgid "The card will now be re-configured to generate a key of %u bits\n" msgstr "" -#: g10/card-util.c:1527 +#: g10/card-util.c:1526 #, c-format msgid "The card will now be re-configured to generate a key of type: %s\n" msgstr "" -#: g10/card-util.c:1563 +#: g10/card-util.c:1562 #, fuzzy, c-format msgid "error changing key attribute for key %d: %s\n" msgstr "soket `%s'e bağlanırken hata: %s\n" -#: g10/card-util.c:1579 g10/card-util.c:2106 +#: g10/card-util.c:1578 g10/card-util.c:2105 #, fuzzy, c-format #| msgid "error getting current key info: %s\n" msgid "error getting card info: %s\n" msgstr "geçerli anahtar bilgisi alınırken hata: %s\n" -#: g10/card-util.c:1585 g10/card-util.c:1930 g10/card-util.c:2112 +#: g10/card-util.c:1584 g10/card-util.c:1929 g10/card-util.c:2111 #, fuzzy, c-format #| msgid "This command is not allowed while in %s mode.\n" msgid "This command is not supported by this card\n" msgstr "%s kipindeyken bu komut kullanılamaz.\n" -#: g10/card-util.c:1631 +#: g10/card-util.c:1630 msgid "Make off-card backup of encryption key? (Y/n) " msgstr "Şifreli anahtarın kartsız yedeği yapılsın mı? (E/h ya da Y/n) " -#: g10/card-util.c:1645 +#: g10/card-util.c:1644 #, fuzzy, c-format msgid "Note: keys are already stored on the card!\n" msgstr "gizli anahtar zaten bir kartın üzerinde saklı\n" -#: g10/card-util.c:1648 +#: g10/card-util.c:1647 msgid "Replace existing keys? (y/N) " msgstr "Mevcut anahtarlar değiştirilsin mi? (e/H ya da y/N) " -#: g10/card-util.c:1660 +#: g10/card-util.c:1659 #, fuzzy, c-format #| msgid "" #| "Please note that the factory settings of the PINs are\n" @@ -2226,150 +2226,150 @@ " PIN = `%s' Admin PIN = `%s'\n" "Bunları --change-pin komutunu kullanarak değiştirmelisiniz\n" -#: g10/card-util.c:1695 +#: g10/card-util.c:1694 msgid "Please select the type of key to generate:\n" msgstr "Lütfen üretilecek anahtar türünü seçiniz:\n" -#: g10/card-util.c:1697 g10/card-util.c:1787 +#: g10/card-util.c:1696 g10/card-util.c:1786 msgid " (1) Signature key\n" msgstr " (1) İmzalama anahtarı\n" -#: g10/card-util.c:1698 g10/card-util.c:1789 +#: g10/card-util.c:1697 g10/card-util.c:1788 msgid " (2) Encryption key\n" msgstr " (2) Şifreleme anahtarı\n" -#: g10/card-util.c:1699 g10/card-util.c:1791 +#: g10/card-util.c:1698 g10/card-util.c:1790 msgid " (3) Authentication key\n" msgstr " (3) Kimlik kanıtlama anahtarı\n" -#: g10/card-util.c:1784 +#: g10/card-util.c:1783 msgid "Please select where to store the key:\n" msgstr "Lütfen anahtarın saklanacağı yeri seçiniz:\n" -#: g10/card-util.c:1830 +#: g10/card-util.c:1829 #, fuzzy, c-format #| msgid "read failed: %s\n" msgid "KEYTOCARD failed: %s\n" msgstr "read başarısız: %s\n" -#: g10/card-util.c:1935 +#: g10/card-util.c:1934 #, fuzzy, c-format msgid "Note: This command destroys all keys stored on the card!\n" msgstr "gizli anahtar zaten bir kartın üzerinde saklı\n" -#: g10/card-util.c:1938 +#: g10/card-util.c:1937 #, fuzzy #| msgid "Sign it? (y/N) " msgid "Continue? (y/N) " msgstr "İmzalayacak mısınız? (e/H veya y/N) " -#: g10/card-util.c:1943 +#: g10/card-util.c:1942 msgid "Really do a factory reset? (enter \"yes\") " msgstr "" -#: g10/card-util.c:2129 +#: g10/card-util.c:2128 #, fuzzy, c-format #| msgid "error closing %s: %s\n" msgid "error for setup KDF: %s\n" msgstr "%s kapanırken hata: %s\n" -#: g10/card-util.c:2158 g10/keyedit.c:1260 +#: g10/card-util.c:2157 g10/keyedit.c:1260 msgid "quit this menu" msgstr "bu menüden çık" -#: g10/card-util.c:2160 +#: g10/card-util.c:2159 msgid "show admin commands" msgstr "yönetici komutlarını gösterir" -#: g10/card-util.c:2161 g10/keyedit.c:1263 +#: g10/card-util.c:2160 g10/keyedit.c:1263 msgid "show this help" msgstr "bunu gösterir" -#: g10/card-util.c:2163 +#: g10/card-util.c:2162 msgid "list all available data" msgstr "tüm kullanılabilir veriyi listeler" -#: g10/card-util.c:2166 +#: g10/card-util.c:2165 msgid "change card holder's name" msgstr "kart sahibinin ismini değiştirir" -#: g10/card-util.c:2167 +#: g10/card-util.c:2166 msgid "change URL to retrieve key" msgstr "anahtarın alınacağı URL değiştirilir" -#: g10/card-util.c:2168 +#: g10/card-util.c:2167 msgid "fetch the key specified in the card URL" msgstr "kart URL'sinde belirtilmiş anahtarı alır" -#: g10/card-util.c:2169 +#: g10/card-util.c:2168 msgid "change the login name" msgstr "oturum açma ismini değiştirir" -#: g10/card-util.c:2170 +#: g10/card-util.c:2169 msgid "change the language preferences" msgstr "dil tercihlerini değiştirir" -#: g10/card-util.c:2171 +#: g10/card-util.c:2170 #, fuzzy #| msgid "change card holder's sex" msgid "change card holder's salutation" msgstr "kart sahibinin cinsiyetini değiştirir" -#: g10/card-util.c:2173 +#: g10/card-util.c:2172 msgid "change a CA fingerprint" msgstr "bir CA parmakizini değiştirir" -#: g10/card-util.c:2174 +#: g10/card-util.c:2173 msgid "toggle the signature force PIN flag" msgstr "imza zorlama PIN'i bayrağını değiştirir" -#: g10/card-util.c:2175 +#: g10/card-util.c:2174 msgid "generate new keys" msgstr "yeni anahtarlar üretir" -#: g10/card-util.c:2176 +#: g10/card-util.c:2175 msgid "menu to change or unblock the PIN" msgstr "PIN'i değiştirme veya engelleme menüsü" -#: g10/card-util.c:2177 +#: g10/card-util.c:2176 msgid "verify the PIN and list all data" msgstr "PIN'i doğrular ve tüm veriyi listeler" -#: g10/card-util.c:2178 +#: g10/card-util.c:2177 msgid "unblock the PIN using a Reset Code" msgstr "Bir Sıfırlama Kodu kullanarak PIN'in engelini kaldır" -#: g10/card-util.c:2179 +#: g10/card-util.c:2178 msgid "destroy all keys and data" msgstr "" -#: g10/card-util.c:2180 +#: g10/card-util.c:2179 msgid "setup KDF for PIN authentication" msgstr "" -#: g10/card-util.c:2181 +#: g10/card-util.c:2180 #, fuzzy #| msgid "change the ownertrust" msgid "change the key attribute" msgstr "sahibiningüvencesini değiştirir" -#: g10/card-util.c:2305 +#: g10/card-util.c:2304 msgid "gpg/card> " msgstr "" -#: g10/card-util.c:2346 +#: g10/card-util.c:2345 msgid "Admin-only command\n" msgstr "Yöneticiye özel komut\n" -#: g10/card-util.c:2377 +#: g10/card-util.c:2376 msgid "Admin commands are allowed\n" msgstr "Yönetici komutlarına izin verilir\n" -#: g10/card-util.c:2379 +#: g10/card-util.c:2378 msgid "Admin commands are not allowed\n" msgstr "Yönetici komutlarına izin verilmez\n" -#: g10/card-util.c:2482 g10/keyedit.c:2229 +#: g10/card-util.c:2481 g10/keyedit.c:2229 msgid "Invalid command (try \"help\")\n" msgstr "Komut geçersiz (\"help\" komutunu deneyin)\n" @@ -2378,22 +2378,22 @@ msgid "--output doesn't work for this command\n" msgstr "--output seçeneği bu komutla çalışmaz\n" -#: g10/decrypt.c:247 g10/gpg.c:5155 g10/keyring.c:399 g10/keyring.c:750 +#: g10/decrypt.c:247 g10/gpg.c:5175 g10/keyring.c:399 g10/keyring.c:750 #, fuzzy, c-format #| msgid "can't open `%s'\n" msgid "can't open '%s'\n" msgstr "`%s' açılamadı\n" -#: g10/delkey.c:83 g10/export.c:1947 g10/export.c:2230 g10/export.c:2351 -#: g10/getkey.c:2108 g10/gpg.c:5100 g10/keyedit.c:1445 g10/keyedit.c:2335 +#: g10/delkey.c:83 g10/export.c:2035 g10/export.c:2349 g10/export.c:2470 +#: g10/getkey.c:2108 g10/gpg.c:5120 g10/keyedit.c:1445 g10/keyedit.c:2335 #: g10/keyedit.c:2637 g10/keyedit.c:4600 g10/keylist.c:693 g10/keyserver.c:1092 #: g10/revoke.c:230 g10/tofu.c:2165 #, c-format msgid "key \"%s\" not found: %s\n" msgstr "anahtar \"%s\" yok: %s\n" -#: g10/delkey.c:92 g10/export.c:2015 g10/getkey.c:2116 g10/getkey.c:4517 -#: g10/gpg.c:5109 g10/keyedit.c:2308 g10/keyserver.c:1110 g10/revoke.c:236 +#: g10/delkey.c:92 g10/export.c:2103 g10/getkey.c:2116 g10/getkey.c:4517 +#: g10/gpg.c:5129 g10/keyedit.c:2308 g10/keyserver.c:1110 g10/revoke.c:236 #: g10/revoke.c:663 g10/tofu.c:2173 #, c-format msgid "error reading keyblock: %s\n" @@ -2517,14 +2517,14 @@ msgid "WARNING: '%s' is an empty file\n" msgstr "UYARI: \"%s\" dosyası boş\n" -#: g10/encrypt.c:446 g10/encrypt.c:521 g10/decrypt-data.c:266 g10/gpg.c:3959 -#: g10/gpg.c:3999 sm/decrypt.c:826 sm/encrypt.c:416 sm/gpgsm.c:1609 +#: g10/encrypt.c:446 g10/encrypt.c:521 g10/decrypt-data.c:266 g10/gpg.c:3979 +#: g10/gpg.c:4019 sm/decrypt.c:826 sm/encrypt.c:416 sm/gpgsm.c:1609 #, fuzzy, c-format #| msgid "you may not use cipher algorithm `%s' while in %s mode\n" msgid "cipher algorithm '%s' may not be used in %s mode\n" msgstr "%2$s kipindeyken '%1$s' şifreleme algoritması kullanılamaz\n" -#: g10/encrypt.c:455 g10/gpg.c:3965 g10/gpg.c:4011 g10/sig-check.c:175 +#: g10/encrypt.c:455 g10/gpg.c:3985 g10/gpg.c:4031 g10/sig-check.c:175 #: g10/sign.c:391 sm/gpgsm.c:1619 sm/gpgsm.c:1629 sm/sign.c:478 sm/verify.c:506 #, fuzzy, c-format #| msgid "you may not use digest algorithm `%s' while in %s mode\n" @@ -2647,65 +2647,71 @@ msgid "WARNING: unable to remove temp directory '%s': %s\n" msgstr "UYARI: %s geçici dizini silinemiyor: %s\n" -#: g10/export.c:119 +#: g10/export.c:124 msgid "export signatures that are marked as local-only" msgstr "sadece-yerel olarak imli imzalar ihraç edilir" -#: g10/export.c:121 +#: g10/export.c:126 msgid "export attribute user IDs (generally photo IDs)" msgstr "" "öznitelik kullanıcı kimliklerini (genellikle foto kimliklerini) ihraç eder" -#: g10/export.c:123 +#: g10/export.c:128 msgid "export revocation keys marked as \"sensitive\"" msgstr "\"hassas\" olarak imli yürürlükten kaldırma anahtarlarını ihraç eder" -#: g10/export.c:125 +#: g10/export.c:130 msgid "remove unusable parts from key during export" msgstr "ihraç sırasında anahtardan kullanışsız parçalar kaldırılır" -#: g10/export.c:127 +#: g10/export.c:132 msgid "remove as much as possible from key during export" msgstr "ihraç sırasında anahtardan mümkün olduğunca çok şey kaldırılır" -#: g10/export.c:133 +#: g10/export.c:138 +#, fuzzy +#| msgid "generate a revocation certificate" +msgid "export only revocation certificates" +msgstr "bir yürürlükten kaldırma sertifikası üretir" + +#: g10/export.c:141 msgid "use the GnuPG key backup format" msgstr "" -#: g10/export.c:1291 +#: g10/export.c:1306 #, fuzzy #| msgid "%s: skipped: %s\n" msgid " - skipped" msgstr "%s: atlandı: %s\n" -#: g10/export.c:1324 g10/import.c:2085 g10/openfile.c:200 g10/openfile.c:294 +#: g10/export.c:1339 g10/import.c:2089 g10/openfile.c:200 g10/openfile.c:294 #: g10/sign.c:1012 g10/sign.c:1326 #, fuzzy, c-format #| msgid "writing to `%s'\n" msgid "writing to '%s'\n" msgstr "\"%s\"e yazıyor\n" -#: g10/export.c:1769 +#: g10/export.c:1784 #, c-format msgid "key %s: key material on-card - skipped\n" msgstr "anahtar %s: anahtar malzemesi kartta - atlandı\n" -#: g10/export.c:1964 +#: g10/export.c:2052 #, c-format msgid "exporting secret keys not allowed\n" msgstr "gizli anahtarların ihracına izin verilmez\n" -#: g10/export.c:2041 +#: g10/export.c:2129 #, c-format msgid "key %s: PGP 2.x style key - skipped\n" msgstr "anahtar %s: PGP 2.x tarzı bir anahtar - atlandı\n" -#: g10/export.c:2135 +#: g10/export.c:2254 #, c-format msgid "WARNING: nothing exported\n" msgstr "UYARI: hiçbir şey dışarı aktarılmadı\n" -#: g10/export.c:2432 g10/plaintext.c:153 g10/plaintext.c:162 +#: g10/export.c:2551 g10/plaintext.c:153 g10/plaintext.c:162 #: g10/plaintext.c:168 g10/plaintext.c:191 #, fuzzy, c-format #| msgid "error creating `%s': %s\n" @@ -2776,301 +2782,301 @@ msgid "using subkey %s instead of primary key %s\n" msgstr "yardımcı anahtar %s, asıl anahtar %s yerine kullanılıyor\n" -#: g10/getkey.c:4446 g10/gpg.c:2137 +#: g10/getkey.c:4446 g10/gpg.c:2146 #, fuzzy, c-format #| msgid "missing argument for option \"%.50s\"\n" msgid "valid values for option '%s':\n" msgstr "\"%.50s\" seçeneği için değiştirge eksik\n" -#: g10/gpg.c:443 sm/gpgsm.c:212 +#: g10/gpg.c:444 sm/gpgsm.c:212 msgid "make a signature" msgstr "bir imza yapar" -#: g10/gpg.c:444 +#: g10/gpg.c:445 msgid "make a clear text signature" msgstr "açıkça okunabilen bir imza yapar" -#: g10/gpg.c:446 sm/gpgsm.c:214 +#: g10/gpg.c:447 sm/gpgsm.c:214 msgid "make a detached signature" msgstr "bağımsız bir imza yapar" -#: g10/gpg.c:447 sm/gpgsm.c:215 +#: g10/gpg.c:448 sm/gpgsm.c:215 msgid "encrypt data" msgstr "veriyi şifreler" -#: g10/gpg.c:449 +#: g10/gpg.c:450 msgid "encryption only with symmetric cipher" msgstr "sadece simetrik şifre ile şifreler" -#: g10/gpg.c:451 sm/gpgsm.c:217 +#: g10/gpg.c:452 sm/gpgsm.c:217 msgid "decrypt data (default)" msgstr "veri şifresini açar (öntanımlı)" -#: g10/gpg.c:453 sm/gpgsm.c:218 +#: g10/gpg.c:454 sm/gpgsm.c:218 msgid "verify a signature" msgstr "bir imzayı doğrular" -#: g10/gpg.c:455 sm/gpgsm.c:219 +#: g10/gpg.c:456 sm/gpgsm.c:219 msgid "list keys" msgstr "anahtarları listeler" -#: g10/gpg.c:457 +#: g10/gpg.c:458 msgid "list keys and signatures" msgstr "anahtarları ve imzaları listeler" -#: g10/gpg.c:460 +#: g10/gpg.c:461 msgid "list and check key signatures" msgstr "anahtar imzalarını listeler ve sınar" -#: g10/gpg.c:462 sm/gpgsm.c:224 +#: g10/gpg.c:463 sm/gpgsm.c:224 msgid "list keys and fingerprints" msgstr "anahtarları ve parmak izlerini listeler" -#: g10/gpg.c:463 sm/gpgsm.c:222 +#: g10/gpg.c:464 sm/gpgsm.c:222 msgid "list secret keys" msgstr "gizli anahtarları listeler" -#: g10/gpg.c:465 sm/gpgsm.c:225 +#: g10/gpg.c:466 sm/gpgsm.c:225 msgid "generate a new key pair" msgstr "yeni bir anahtar çifti üretir" -#: g10/gpg.c:468 +#: g10/gpg.c:469 #, fuzzy #| msgid "generate a new key pair" msgid "quickly generate a new key pair" msgstr "yeni bir anahtar çifti üretir" -#: g10/gpg.c:471 +#: g10/gpg.c:472 #, fuzzy #| msgid "generate a new key pair" msgid "quickly add a new user-id" msgstr "yeni bir anahtar çifti üretir" -#: g10/gpg.c:476 +#: g10/gpg.c:477 #, fuzzy #| msgid "generate a new key pair" msgid "quickly revoke a user-id" msgstr "yeni bir anahtar çifti üretir" -#: g10/gpg.c:479 +#: g10/gpg.c:480 #, fuzzy #| msgid "generate a new key pair" msgid "quickly set a new expiration date" msgstr "yeni bir anahtar çifti üretir" -#: g10/gpg.c:482 +#: g10/gpg.c:483 msgid "full featured key pair generation" msgstr "" -#: g10/gpg.c:485 +#: g10/gpg.c:486 msgid "generate a revocation certificate" msgstr "bir yürürlükten kaldırma sertifikası üretir" -#: g10/gpg.c:488 sm/gpgsm.c:228 +#: g10/gpg.c:489 sm/gpgsm.c:228 msgid "remove keys from the public keyring" msgstr "anahtarları genel anahtar zincirinden siler" -#: g10/gpg.c:490 +#: g10/gpg.c:491 msgid "remove keys from the secret keyring" msgstr "anahtarları gizli anahtar zincirinden siler" -#: g10/gpg.c:492 +#: g10/gpg.c:493 #, fuzzy #| msgid "sign a key" msgid "quickly sign a key" msgstr "bir anahtarı imzalar" -#: g10/gpg.c:494 +#: g10/gpg.c:495 #, fuzzy #| msgid "sign a key locally" msgid "quickly sign a key locally" msgstr "bir anahtarı yerel olarak imzalar" -#: g10/gpg.c:496 +#: g10/gpg.c:497 #, fuzzy #| msgid "generate a new key pair" msgid "quickly revoke a key signature" msgstr "yeni bir anahtar çifti üretir" -#: g10/gpg.c:497 +#: g10/gpg.c:498 msgid "sign a key" msgstr "bir anahtarı imzalar" -#: g10/gpg.c:498 +#: g10/gpg.c:499 msgid "sign a key locally" msgstr "bir anahtarı yerel olarak imzalar" -#: g10/gpg.c:499 +#: g10/gpg.c:500 msgid "sign or edit a key" msgstr "bir anahtarı düzenler ve imzalar" -#: g10/gpg.c:501 sm/gpgsm.c:246 +#: g10/gpg.c:502 sm/gpgsm.c:246 msgid "change a passphrase" msgstr "anahtar parolası değiştirir" -#: g10/gpg.c:505 +#: g10/gpg.c:506 msgid "export keys" msgstr "anahtarları gönderir" -#: g10/gpg.c:506 +#: g10/gpg.c:507 msgid "export keys to a keyserver" msgstr "anahtarları bir anahtar sunucusuna gönderir" -#: g10/gpg.c:507 +#: g10/gpg.c:508 msgid "import keys from a keyserver" msgstr "anahtarları bir anahtar sunucusundan indirir" -#: g10/gpg.c:510 +#: g10/gpg.c:511 msgid "search for keys on a keyserver" msgstr "bir anahtar sunucusunda anahtarları arar" -#: g10/gpg.c:512 +#: g10/gpg.c:513 msgid "update all keys from a keyserver" msgstr "anahtarları bir anahtar sunucusundan günceller" -#: g10/gpg.c:520 +#: g10/gpg.c:521 msgid "import/merge keys" msgstr "anahtarları indirir/katıştırır" -#: g10/gpg.c:523 +#: g10/gpg.c:524 msgid "print the card status" msgstr "kart durumunu basar" -#: g10/gpg.c:524 +#: g10/gpg.c:525 msgid "change data on a card" msgstr "kart üzerindeki veriyi değiştirir" -#: g10/gpg.c:526 +#: g10/gpg.c:527 msgid "change a card's PIN" msgstr "bir kartın PIN'ini değiştirir" -#: g10/gpg.c:538 +#: g10/gpg.c:539 msgid "update the trust database" msgstr "güvence veritabanını günceller" -#: g10/gpg.c:548 +#: g10/gpg.c:549 msgid "print message digests" msgstr "ileti özetlerini gösterir" -#: g10/gpg.c:552 sm/gpgsm.c:241 +#: g10/gpg.c:553 sm/gpgsm.c:241 msgid "run in server mode" msgstr "sunucu kipinde çalışır" -#: g10/gpg.c:554 +#: g10/gpg.c:555 msgid "|VALUE|set the TOFU policy for a key" msgstr "" -#: g10/gpg.c:594 +#: g10/gpg.c:595 msgid "|NAME|use NAME as default secret key" msgstr "|İSİM|öntanımlı gizli anahtar olarak İSİM kullanılır" -#: g10/gpg.c:596 sm/gpgsm.c:332 +#: g10/gpg.c:597 sm/gpgsm.c:332 msgid "|NAME|encrypt to user ID NAME as well" msgstr "|İSİM|İSİM kullanıcısı için de şifreleme yapar" -#: g10/gpg.c:604 +#: g10/gpg.c:605 msgid "|SPEC|set up email aliases" msgstr "|BELİRTİM|eposta rumuzlarını ayarlar" -#: g10/gpg.c:616 +#: g10/gpg.c:617 msgid "use strict OpenPGP behavior" msgstr "kesin OpenPGP davranışı etkin olur" -#: g10/gpg.c:641 kbx/kbxutil.c:90 sm/gpgsm.c:412 tools/gpgconf.c:112 +#: g10/gpg.c:642 kbx/kbxutil.c:90 sm/gpgsm.c:412 tools/gpgconf.c:112 msgid "do not make any changes" msgstr "hiçbir değişiklik yapmaz" -#: g10/gpg.c:642 +#: g10/gpg.c:643 msgid "prompt before overwriting" msgstr "üzerine yazmadan önce sorar" -#: g10/gpg.c:689 sm/gpgsm.c:304 +#: g10/gpg.c:690 sm/gpgsm.c:304 #, fuzzy #| msgid "Options controlling the security" msgid "Options controlling the input" msgstr "Güvenliği denetleyen seçenekler" -#: g10/gpg.c:707 sm/gpgsm.c:314 +#: g10/gpg.c:708 sm/gpgsm.c:314 #, fuzzy #| msgid "Options controlling the diagnostic output" msgid "Options controlling the output" msgstr "Tanı çıktısını denetleyen seçenekler" -#: g10/gpg.c:709 sm/gpgsm.c:316 +#: g10/gpg.c:710 sm/gpgsm.c:316 msgid "create ascii armored output" msgstr "ascii zırhlı çıktı oluşturur" -#: g10/gpg.c:713 g10/gpgv.c:82 sm/gpgsm.c:321 +#: g10/gpg.c:714 g10/gpgv.c:82 sm/gpgsm.c:321 msgid "|FILE|write output to FILE" msgstr "|DOSYA|çıktı DOSYAya yazılır" -#: g10/gpg.c:726 +#: g10/gpg.c:727 msgid "use canonical text mode" msgstr "kurallı metin kipini kullanır" -#: g10/gpg.c:743 +#: g10/gpg.c:744 msgid "|N|set compress level to N (0 disables)" msgstr "|N|sıkıştırma seviyesi N olarak ayarlanır (0 iptal eder)" -#: g10/gpg.c:750 sm/gpgsm.c:347 +#: g10/gpg.c:751 sm/gpgsm.c:347 #, fuzzy #| msgid "Options controlling the interactivity and enforcement" msgid "Options controlling key import and export" msgstr "Etkileşimliliği ve zorlamayı denetleyen seçenekler" -#: g10/gpg.c:753 +#: g10/gpg.c:754 msgid "|MECHANISMS|use MECHANISMS to locate keys by mail address" msgstr "" "|MEKANİZMALAR|anahtarları eposta adreslerine göre konumlamak için " "MEKANİZMALAR kullanılır" -#: g10/gpg.c:756 +#: g10/gpg.c:757 #, fuzzy #| msgid "import keys from a keyserver" msgid "import missing key from a signature" msgstr "anahtarları bir anahtar sunucusundan indirir" -#: g10/gpg.c:761 +#: g10/gpg.c:762 #, fuzzy #| msgid "list and check key signatures" msgid "include the public key in signatures" msgstr "anahtar imzalarını listeler ve sınar" -#: g10/gpg.c:764 sm/gpgsm.c:350 +#: g10/gpg.c:765 sm/gpgsm.c:350 msgid "disable all access to the dirmngr" msgstr "dirmngr'a tüm erişim iptal edilir" -#: g10/gpg.c:776 sm/gpgsm.c:357 +#: g10/gpg.c:777 sm/gpgsm.c:357 #, fuzzy #| msgid "Options controlling the configuration" msgid "Options controlling key listings" msgstr "Yapılandırmayı denetleyen seçenekler" -#: g10/gpg.c:805 sm/gpgsm.c:324 +#: g10/gpg.c:806 sm/gpgsm.c:324 #, fuzzy #| msgid "list secret keys" msgid "Options to specify keys" msgstr "gizli anahtarları listeler" -#: g10/gpg.c:807 sm/gpgsm.c:326 +#: g10/gpg.c:808 sm/gpgsm.c:326 msgid "|USER-ID|encrypt for USER-ID" msgstr "|KULLANICI-KİMLİĞİ|KULLANICI-KİMLİĞİ için şifreleme yapar" -#: g10/gpg.c:815 sm/gpgsm.c:328 +#: g10/gpg.c:816 sm/gpgsm.c:328 msgid "|USER-ID|use USER-ID to sign or decrypt" msgstr "" "|KULLANICI-KİMLİĞİ|imzalamak ya da şifre çözmek için KULLANICI-KİMLİĞİ " "kullanılır" -#: g10/gpg.c:866 sm/gpgsm.c:396 +#: g10/gpg.c:867 sm/gpgsm.c:396 msgid "Options for unattended use" msgstr "" -#: g10/gpg.c:885 sm/gpgsm.c:408 dirmngr/dirmngr.c:294 +#: g10/gpg.c:886 sm/gpgsm.c:408 dirmngr/dirmngr.c:294 msgid "Other options" msgstr "" -#: g10/gpg.c:953 sm/gpgsm.c:440 +#: g10/gpg.c:955 sm/gpgsm.c:440 msgid "" "@\n" "(See the man page for a complete listing of all commands and options)\n" @@ -3078,7 +3084,7 @@ "@\n" "(Tüm komut ve seçeneklerin komple listesi için man sayfalarına bakın)\n" -#: g10/gpg.c:956 +#: g10/gpg.c:958 #, fuzzy #| msgid "" #| "@\n" @@ -3108,13 +3114,13 @@ " --list-keys [isimler] anahtarları listeler\n" " --fingerprint [isimler] parmak izlerini gösterir\n" -#: g10/gpg.c:1130 +#: g10/gpg.c:1139 #, fuzzy #| msgid "Usage: gpg [options] [files] (-h for help)" msgid "Usage: @GPG@ [options] [files] (-h for help)" msgstr "Kullanımı: gpg [seçenekler] [dosyalar] (yardım için -h)" -#: g10/gpg.c:1133 +#: g10/gpg.c:1142 #, fuzzy #| msgid "" #| "Syntax: gpg [options] [files]\n" @@ -3129,7 +3135,7 @@ "imzalama, kontrol, şifreleme veya çözme\n" "öntanımlı işlem girilen veriye bağımlıdır\n" -#: g10/gpg.c:1144 sm/gpgsm.c:624 +#: g10/gpg.c:1153 sm/gpgsm.c:624 msgid "" "\n" "Supported algorithms:\n" @@ -3137,82 +3143,82 @@ "\n" "Desteklenen algoritmalar:\n" -#: g10/gpg.c:1147 +#: g10/gpg.c:1156 msgid "Pubkey: " msgstr "GenAnah: " -#: g10/gpg.c:1154 g10/keyedit.c:3338 +#: g10/gpg.c:1163 g10/keyedit.c:3338 msgid "Cipher: " msgstr "Şifre: " -#: g10/gpg.c:1161 +#: g10/gpg.c:1170 msgid "Hash: " msgstr "Hash: " -#: g10/gpg.c:1168 g10/keyedit.c:3404 +#: g10/gpg.c:1177 g10/keyedit.c:3404 msgid "Compression: " msgstr "Sıkıştırma: " -#: g10/gpg.c:1241 sm/gpgsm.c:698 +#: g10/gpg.c:1250 sm/gpgsm.c:698 #, fuzzy, c-format #| msgid "usage: gpgsm [options] " msgid "usage: %s [options] %s\n" msgstr "kullanımı: gpgsm [seçenekler] " -#: g10/gpg.c:1436 sm/gpgsm.c:791 +#: g10/gpg.c:1445 sm/gpgsm.c:791 #, c-format msgid "conflicting commands\n" msgstr "çelişen komutlar\n" -#: g10/gpg.c:1454 +#: g10/gpg.c:1463 #, fuzzy, c-format #| msgid "no = sign found in group definition `%s'\n" msgid "no = sign found in group definition '%s'\n" msgstr "grup tanımı '%s' içinde = işareti yok\n" -#: g10/gpg.c:1652 +#: g10/gpg.c:1661 #, fuzzy, c-format #| msgid "WARNING: unsafe ownership on homedir `%s'\n" msgid "WARNING: unsafe ownership on homedir '%s'\n" msgstr "UYARI: '%s' evdizininde güvensiz iyelik\n" -#: g10/gpg.c:1655 +#: g10/gpg.c:1664 #, fuzzy, c-format #| msgid "WARNING: unsafe ownership on configuration file `%s'\n" msgid "WARNING: unsafe ownership on configuration file '%s'\n" msgstr "UYARI: '%s' yapılandırma dosyasında güvensiz iyelik\n" -#: g10/gpg.c:1658 +#: g10/gpg.c:1667 #, fuzzy, c-format #| msgid "WARNING: unsafe ownership on extension `%s'\n" msgid "WARNING: unsafe ownership on extension '%s'\n" msgstr "UYARI: '%s' eklentisinde güvensiz iyelik\n" -#: g10/gpg.c:1664 +#: g10/gpg.c:1673 #, fuzzy, c-format #| msgid "WARNING: unsafe permissions on homedir `%s'\n" msgid "WARNING: unsafe permissions on homedir '%s'\n" msgstr "UYARI: UYARI: '%s' evdizininde güvensiz izinler\n" -#: g10/gpg.c:1667 +#: g10/gpg.c:1676 #, fuzzy, c-format #| msgid "WARNING: unsafe permissions on configuration file `%s'\n" msgid "WARNING: unsafe permissions on configuration file '%s'\n" msgstr "UYARI: '%s' yapılandırma dosyasında güvensiz izinler\n" -#: g10/gpg.c:1670 +#: g10/gpg.c:1679 #, fuzzy, c-format #| msgid "WARNING: unsafe permissions on extension `%s'\n" msgid "WARNING: unsafe permissions on extension '%s'\n" msgstr "UYARI: '%s' eklentisinde güvensiz izinler\n" -#: g10/gpg.c:1676 +#: g10/gpg.c:1685 #, fuzzy, c-format #| msgid "WARNING: unsafe enclosing directory ownership on homedir `%s'\n" msgid "WARNING: unsafe enclosing directory ownership on homedir '%s'\n" msgstr "UYARI: '%s' evdizinindeki ilgili dizinin iyeliği güvensiz\n" -#: g10/gpg.c:1679 +#: g10/gpg.c:1688 #, fuzzy, c-format #| msgid "" #| "WARNING: unsafe enclosing directory ownership on configuration file `%s'\n" @@ -3220,19 +3226,19 @@ "WARNING: unsafe enclosing directory ownership on configuration file '%s'\n" msgstr "UYARI: '%s' yapılandırma dosyasını içeren dizinin iyeliği güvensiz\n" -#: g10/gpg.c:1682 +#: g10/gpg.c:1691 #, fuzzy, c-format #| msgid "WARNING: unsafe enclosing directory ownership on extension `%s'\n" msgid "WARNING: unsafe enclosing directory ownership on extension '%s'\n" msgstr "UYARI: '%s' eklentisini içeren dizinin iyeliği güvensiz\n" -#: g10/gpg.c:1688 +#: g10/gpg.c:1697 #, fuzzy, c-format #| msgid "WARNING: unsafe enclosing directory permissions on homedir `%s'\n" msgid "WARNING: unsafe enclosing directory permissions on homedir '%s'\n" msgstr "UYARI: '%s' evdizinindeki ilgili dizinin izinleri güvensiz\n" -#: g10/gpg.c:1691 +#: g10/gpg.c:1700 #, fuzzy, c-format #| msgid "" #| "WARNING: unsafe enclosing directory permissions on configuration file `" @@ -3241,479 +3247,479 @@ "WARNING: unsafe enclosing directory permissions on configuration file '%s'\n" msgstr "UYARI: '%s' yapılandırma dosyasını içeren dizinin izinleri güvensiz\n" -#: g10/gpg.c:1694 +#: g10/gpg.c:1703 #, fuzzy, c-format #| msgid "WARNING: unsafe enclosing directory permissions on extension `%s'\n" msgid "WARNING: unsafe enclosing directory permissions on extension '%s'\n" msgstr "UYARI: '%s' eklentisini içeren dizinin izinleri güvensiz\n" -#: g10/gpg.c:1910 +#: g10/gpg.c:1919 #, fuzzy, c-format #| msgid "unknown configuration item `%s'\n" msgid "unknown configuration item '%s'\n" msgstr "yapılandırma öğesi '%s' bilinmiyor\n" -#: g10/gpg.c:2009 +#: g10/gpg.c:2018 msgid "display photo IDs during key listings" msgstr "anahtarların listelenmesi sırasında foto kimliklerini gösterir" -#: g10/gpg.c:2011 +#: g10/gpg.c:2020 #, fuzzy #| msgid "show user ID validity during key listings" msgid "show key usage information during key listings" msgstr "anahtar listelemesi sırasında kullanıcı kimliği geçerliliğini gösterir" -#: g10/gpg.c:2013 +#: g10/gpg.c:2022 msgid "show policy URLs during signature listings" msgstr "imza listelemesi sırasında poliçe URLleri gösterilir" -#: g10/gpg.c:2015 +#: g10/gpg.c:2024 msgid "show all notations during signature listings" msgstr "imza listelemesi sırasında tüm simgelemi gösterir" -#: g10/gpg.c:2017 +#: g10/gpg.c:2026 msgid "show IETF standard notations during signature listings" msgstr "imza listelemesi sırasında IETF standart simgelemlerini gösterir" -#: g10/gpg.c:2021 +#: g10/gpg.c:2030 msgid "show user-supplied notations during signature listings" msgstr "imza listelemesi sırasında kullanıcı kanaklı simgelemleri gösterir" -#: g10/gpg.c:2023 +#: g10/gpg.c:2032 msgid "show preferred keyserver URLs during signature listings" msgstr "" "imza listelemesi sırasında tercih edilen anahtar sunucusu adresi gösterilir" -#: g10/gpg.c:2025 +#: g10/gpg.c:2034 msgid "show user ID validity during key listings" msgstr "anahtar listelemesi sırasında kullanıcı kimliği geçerliliğini gösterir" -#: g10/gpg.c:2027 +#: g10/gpg.c:2036 msgid "show revoked and expired user IDs in key listings" msgstr "" "anahtar listelerinde yürürlükten kaldırılmış ve zamanaşımına uğramış " "kullanıcı kimlikleri gösterilir" -#: g10/gpg.c:2029 +#: g10/gpg.c:2038 msgid "show revoked and expired subkeys in key listings" msgstr "" "anahtar listelerinde yürürlükten kaldırılmış ve zamanaşımına uğramış " "yardımcı anahtarlar gösterilir" -#: g10/gpg.c:2031 +#: g10/gpg.c:2040 msgid "show the keyring name in key listings" msgstr "anahtar zinciri ismini anahtar listelerinde gösterir" -#: g10/gpg.c:2033 +#: g10/gpg.c:2042 msgid "show expiration dates during signature listings" msgstr "imza listelemesi sırasında zamanaşımı tarihleri gösterilir" -#: g10/gpg.c:2148 +#: g10/gpg.c:2157 #, fuzzy, c-format #| msgid "unknown option `%s'\n" msgid "unknown TOFU policy '%s'\n" msgstr "`%s' seçeneği bilinmiyor\n" -#: g10/gpg.c:2150 +#: g10/gpg.c:2159 #, c-format msgid "(use \"help\" to list choices)\n" msgstr "" -#: g10/gpg.c:2240 g10/keyedit.c:1719 +#: g10/gpg.c:2249 g10/keyedit.c:1719 #, c-format msgid "This command is not allowed while in %s mode.\n" msgstr "%s kipindeyken bu komut kullanılamaz.\n" -#: g10/gpg.c:2878 g10/gpg.c:3718 g10/gpg.c:3730 +#: g10/gpg.c:2896 g10/gpg.c:3736 g10/gpg.c:3748 #, fuzzy, c-format #| msgid "NOTE: %s is not for normal use!\n" msgid "Note: %s is not for normal use!\n" msgstr "BİLGİ: %s normal kullanım için değil!\n" -#: g10/gpg.c:3053 g10/gpg.c:3065 +#: g10/gpg.c:3071 g10/gpg.c:3083 #, fuzzy, c-format #| msgid "`%s' is not a valid signature expiration\n" msgid "'%s' is not a valid signature expiration\n" msgstr "'%s' geçerli bir imza zamanaşımı değil\n" -#: g10/gpg.c:3087 +#: g10/gpg.c:3105 #, fuzzy, c-format #| msgid "line %d: not a valid email address\n" msgid "\"%s\" is not a proper mail address\n" msgstr "%d. satır: geçerli bir eposta adresi değil\n" -#: g10/gpg.c:3119 sm/gpgsm.c:1121 +#: g10/gpg.c:3137 sm/gpgsm.c:1121 #, fuzzy, c-format #| msgid "invalid country code in `%s', line %d\n" msgid "invalid pinentry mode '%s'\n" msgstr "`%s', %d. satırındaki ülke kodu geçersiz\n" -#: g10/gpg.c:3125 sm/gpgsm.c:1127 +#: g10/gpg.c:3143 sm/gpgsm.c:1127 #, fuzzy, c-format #| msgid "missing argument for option \"%.50s\"\n" msgid "invalid request origin '%s'\n" msgstr "\"%.50s\" seçeneği için değiştirge eksik\n" -#: g10/gpg.c:3179 +#: g10/gpg.c:3197 #, fuzzy, c-format #| msgid "`%s' is not a valid character set\n" msgid "'%s' is not a valid character set\n" msgstr "'%s' geçerli bir karakter kümesi değil\n" -#: g10/gpg.c:3201 g10/gpg.c:3415 g10/keyedit.c:5338 +#: g10/gpg.c:3219 g10/gpg.c:3433 g10/keyedit.c:5338 #, c-format msgid "could not parse keyserver URL\n" msgstr "anahtar sunucusunun adresi çözümlenemedi\n" -#: g10/gpg.c:3219 +#: g10/gpg.c:3237 #, c-format msgid "%s:%d: invalid keyserver options\n" msgstr "%s:%d: anahtar sunucusu seçenekleri geçersiz\n" -#: g10/gpg.c:3222 +#: g10/gpg.c:3240 #, c-format msgid "invalid keyserver options\n" msgstr "anahtar sunucusu seçenekleri geçersiz\n" -#: g10/gpg.c:3229 +#: g10/gpg.c:3247 #, c-format msgid "%s:%d: invalid import options\n" msgstr "%s:%d: geçersiz içselleştirme seçenekleri\n" -#: g10/gpg.c:3232 +#: g10/gpg.c:3250 #, c-format msgid "invalid import options\n" msgstr "içselleştirme seçenekleri geçersiz\n" -#: g10/gpg.c:3238 g10/gpg.c:3253 +#: g10/gpg.c:3256 g10/gpg.c:3271 #, fuzzy, c-format #| msgid "invalid list options\n" msgid "invalid filter option: %s\n" msgstr "liste seçenekleri geçersiz\n" -#: g10/gpg.c:3244 +#: g10/gpg.c:3262 #, c-format msgid "%s:%d: invalid export options\n" msgstr "%s:%d geçersiz dışsallaştırma seçenekleri\n" -#: g10/gpg.c:3247 +#: g10/gpg.c:3265 #, c-format msgid "invalid export options\n" msgstr "dışsallaştırma seçenekleri geçersiz\n" -#: g10/gpg.c:3259 +#: g10/gpg.c:3277 #, c-format msgid "%s:%d: invalid list options\n" msgstr "%s:%d: liste seçenekleri geçersiz\n" -#: g10/gpg.c:3262 +#: g10/gpg.c:3280 #, c-format msgid "invalid list options\n" msgstr "liste seçenekleri geçersiz\n" -#: g10/gpg.c:3270 +#: g10/gpg.c:3288 msgid "display photo IDs during signature verification" msgstr "imza doğrulaması sırasında foto kimliklerini gösterir" -#: g10/gpg.c:3272 +#: g10/gpg.c:3290 msgid "show policy URLs during signature verification" msgstr "imza doğrulaması sırasında poliçe adreslerini gösterir" -#: g10/gpg.c:3274 +#: g10/gpg.c:3292 msgid "show all notations during signature verification" msgstr "imza doğrulaması sırasında tüm simgelemi gösterir" -#: g10/gpg.c:3276 +#: g10/gpg.c:3294 msgid "show IETF standard notations during signature verification" msgstr "imza doğrulaması sırasında IETF standart simgelemlerini gösterir" -#: g10/gpg.c:3280 +#: g10/gpg.c:3298 msgid "show user-supplied notations during signature verification" msgstr "imza doğrulaması sırasında kullanıcı kaynaklı simgelemleri gösterir" -#: g10/gpg.c:3282 +#: g10/gpg.c:3300 msgid "show preferred keyserver URLs during signature verification" msgstr "" "imza doğrulaması sırasında tercih edilen anahtar sunucusu adresleri " "gösterilir" -#: g10/gpg.c:3284 +#: g10/gpg.c:3302 msgid "show user ID validity during signature verification" msgstr "imza doğrulaması sırasında kullanıcı kimliği geçerliliğini gösterir" -#: g10/gpg.c:3286 +#: g10/gpg.c:3304 msgid "show revoked and expired user IDs in signature verification" msgstr "" "imza doğrulamasında yürürlükten kaldırılan ve zamanaşımına uğrayan kullanıcı " "kimlikleri gösterilir" -#: g10/gpg.c:3288 +#: g10/gpg.c:3306 msgid "show only the primary user ID in signature verification" msgstr "imza doğrulamasında sadece birincil kullanıcı kimlik gösterilir" -#: g10/gpg.c:3290 +#: g10/gpg.c:3308 msgid "validate signatures with PKA data" msgstr "imzaları PKA verisi ile doğrular" -#: g10/gpg.c:3292 +#: g10/gpg.c:3310 msgid "elevate the trust of signatures with valid PKA data" msgstr "imzaların güvenilirliğini geçerli PKA verisi ile yükseltir" -#: g10/gpg.c:3299 +#: g10/gpg.c:3317 #, c-format msgid "%s:%d: invalid verify options\n" msgstr "%s:%d doğrulama seçenekleri geçersiz\n" -#: g10/gpg.c:3302 +#: g10/gpg.c:3320 #, c-format msgid "invalid verify options\n" msgstr "doğrulama seçenekleri geçersiz\n" -#: g10/gpg.c:3309 +#: g10/gpg.c:3327 #, c-format msgid "unable to set exec-path to %s\n" msgstr "çalıştırılabilirlerin patikası %s yapılamıyor\n" -#: g10/gpg.c:3513 +#: g10/gpg.c:3531 #, c-format msgid "%s:%d: invalid auto-key-locate list\n" msgstr "%s:%d: özdevinimli anahtar konumlama listesi geçersiz\n" -#: g10/gpg.c:3516 +#: g10/gpg.c:3534 #, c-format msgid "invalid auto-key-locate list\n" msgstr "özdevinimli anahtar konumlama listesi geçersiz\n" -#: g10/gpg.c:3700 sm/gpgsm.c:1492 +#: g10/gpg.c:3718 sm/gpgsm.c:1492 #, c-format msgid "WARNING: program may create a core file!\n" msgstr "UYARI: program bir \"core\" dosyası oluşturabilir!\n" -#: g10/gpg.c:3711 +#: g10/gpg.c:3729 #, c-format msgid "WARNING: %s overrides %s\n" msgstr "UYARI: %s %s'i aşıyor\n" -#: g10/gpg.c:3720 +#: g10/gpg.c:3738 #, c-format msgid "%s not allowed with %s!\n" msgstr "%s ile %s birlikte kullanılmaz!\n" -#: g10/gpg.c:3723 +#: g10/gpg.c:3741 #, c-format msgid "%s makes no sense with %s!\n" msgstr "%s, %s ile etkisiz olur!\n" -#: g10/gpg.c:3738 sm/gpgsm.c:1509 dirmngr/dirmngr.c:1205 +#: g10/gpg.c:3756 sm/gpgsm.c:1509 dirmngr/dirmngr.c:1205 #, c-format msgid "WARNING: running with faked system time: " msgstr "UYARI: sahte sistem zamanıyla çalışıyor: " -#: g10/gpg.c:3759 +#: g10/gpg.c:3777 #, c-format msgid "will not run with insecure memory due to %s\n" msgstr "%s olmasından dolayı güvensiz bellekle çalıştırılmayacak\n" -#: g10/gpg.c:3804 g10/gpg.c:3828 sm/gpgsm.c:1579 +#: g10/gpg.c:3824 g10/gpg.c:3848 sm/gpgsm.c:1579 #, c-format msgid "selected cipher algorithm is invalid\n" msgstr "seçilen şifre algoritması geçersiz\n" -#: g10/gpg.c:3816 +#: g10/gpg.c:3836 #, c-format msgid "selected compression algorithm is invalid\n" msgstr "seçilen şifre algoritması geçersiz\n" -#: g10/gpg.c:3822 +#: g10/gpg.c:3842 #, c-format msgid "selected certification digest algorithm is invalid\n" msgstr "seçilen sertifikalama özet algoritması geçersiz\n" -#: g10/gpg.c:3837 +#: g10/gpg.c:3857 #, c-format msgid "completes-needed must be greater than 0\n" msgstr "\"completes-needed\" 0 dan büyük olmalı\n" -#: g10/gpg.c:3839 +#: g10/gpg.c:3859 #, c-format msgid "marginals-needed must be greater than 1\n" msgstr "\"marginals-needed\" 1 den büyük olmalı\n" -#: g10/gpg.c:3841 +#: g10/gpg.c:3861 #, c-format msgid "max-cert-depth must be in the range from 1 to 255\n" msgstr "\"max-cert-depth\" 1 ile 255 arasında olmalı\n" -#: g10/gpg.c:3843 +#: g10/gpg.c:3863 #, c-format msgid "invalid default-cert-level; must be 0, 1, 2, or 3\n" msgstr "öntanımlı sertifika seviyesi geçersiz; 0, 1, 2, ya da 3 olabilir\n" -#: g10/gpg.c:3845 +#: g10/gpg.c:3865 #, c-format msgid "invalid min-cert-level; must be 1, 2, or 3\n" msgstr "asgari sertifika seviyesi geçersiz; 1, 2, ya da 3 olabilir\n" -#: g10/gpg.c:3849 +#: g10/gpg.c:3869 #, fuzzy, c-format #| msgid "NOTE: simple S2K mode (0) is strongly discouraged\n" msgid "Note: simple S2K mode (0) is strongly discouraged\n" msgstr "BİLGİ: basit S2K kipi (0) kesinlikle tavsiye edilmez\n" -#: g10/gpg.c:3853 +#: g10/gpg.c:3873 #, c-format msgid "invalid S2K mode; must be 0, 1 or 3\n" msgstr "S2K kipi geçersiz; 0, 1 veya 3 olmalı\n" -#: g10/gpg.c:3860 +#: g10/gpg.c:3880 #, c-format msgid "invalid default preferences\n" msgstr "öntanımlı tercihler geçersiz\n" -#: g10/gpg.c:3864 +#: g10/gpg.c:3884 #, c-format msgid "invalid personal cipher preferences\n" msgstr "kişisel şifre tercihleri geçersiz\n" -#: g10/gpg.c:3868 +#: g10/gpg.c:3888 #, c-format msgid "invalid personal digest preferences\n" msgstr "kişisel özet tercihleri geçersiz\n" -#: g10/gpg.c:3872 +#: g10/gpg.c:3892 #, c-format msgid "invalid personal compress preferences\n" msgstr "kişisel sıkıştırma tercihleri geçersiz\n" -#: g10/gpg.c:3908 +#: g10/gpg.c:3928 #, c-format msgid "%s does not yet work with %s\n" msgstr "%s, %s ile henüz çalışmıyor\n" -#: g10/gpg.c:3971 +#: g10/gpg.c:3991 #, fuzzy, c-format #| msgid "you may not use compression algorithm `%s' while in %s mode\n" msgid "compression algorithm '%s' may not be used in %s mode\n" msgstr "%2$s kipindeyken '%1$s' sıkıştırma algoritması kullanılamaz\n" -#: g10/gpg.c:4115 +#: g10/gpg.c:4135 #, c-format msgid "failed to initialize the TrustDB: %s\n" msgstr "\"TrustDB\" güvence veritabanı başlangıç aşamasında başarısız: %s\n" -#: g10/gpg.c:4127 +#: g10/gpg.c:4147 #, c-format msgid "WARNING: recipients (-r) given without using public key encryption\n" msgstr "" "UYARI: alıcılar (-r) genel anahtar şifrelemesi kullanılmadan belirtilmiş\n" -#: g10/gpg.c:4199 +#: g10/gpg.c:4219 #, fuzzy, c-format #| msgid "symmetric encryption of `%s' failed: %s\n" msgid "symmetric encryption of '%s' failed: %s\n" msgstr "`%s' için simetrik şifreleme başarısız: %s\n" -#: g10/gpg.c:4228 +#: g10/gpg.c:4248 #, c-format msgid "you cannot use --symmetric --encrypt with --s2k-mode 0\n" msgstr "--s2k-mode 0 ile --symmetric --encrypt kullanamazsınız\n" -#: g10/gpg.c:4231 +#: g10/gpg.c:4251 #, fuzzy, c-format #| msgid "you cannot use --symmetric --encrypt while in %s mode\n" msgid "you cannot use --symmetric --encrypt in %s mode\n" msgstr "%s kipindeyken --symmetric --encrypt kullanamazsınız\n" -#: g10/gpg.c:4289 +#: g10/gpg.c:4309 #, c-format msgid "you cannot use --symmetric --sign --encrypt with --s2k-mode 0\n" msgstr "--s2k-mode 0 ile --symmetric --sign --encrypt kullanamazsınız\n" -#: g10/gpg.c:4292 +#: g10/gpg.c:4312 #, fuzzy, c-format #| msgid "you cannot use --symmetric --sign --encrypt while in %s mode\n" msgid "you cannot use --symmetric --sign --encrypt in %s mode\n" msgstr "%s kipindeyken --symmetric --sign --encrypt kullanamazsınız.\n" -#: g10/gpg.c:4692 g10/keyserver.c:1648 +#: g10/gpg.c:4712 g10/keyserver.c:1648 #, c-format msgid "keyserver send failed: %s\n" msgstr "anahtar sunucusuna gönderim başarısızlığa uğradı: %s\n" -#: g10/gpg.c:4697 +#: g10/gpg.c:4717 #, c-format msgid "keyserver receive failed: %s\n" msgstr "anahtar sunucusundan alım başarısızlığa uğradı: %s\n" -#: g10/gpg.c:4703 +#: g10/gpg.c:4723 #, c-format msgid "key export failed: %s\n" msgstr "anahtar ihracı başarısızlığa uğradı: %s\n" -#: g10/gpg.c:4716 +#: g10/gpg.c:4736 #, fuzzy, c-format #| msgid "key export failed: %s\n" msgid "export as ssh key failed: %s\n" msgstr "anahtar ihracı başarısızlığa uğradı: %s\n" -#: g10/gpg.c:4728 +#: g10/gpg.c:4748 #, c-format msgid "keyserver search failed: %s\n" msgstr "anahtar sunucusunda arama başarısız: %s\n" -#: g10/gpg.c:4741 +#: g10/gpg.c:4761 #, c-format msgid "keyserver refresh failed: %s\n" msgstr "anahtar sunucusunda tazeleme başarısız: %s\n" -#: g10/gpg.c:4810 +#: g10/gpg.c:4830 #, c-format msgid "dearmoring failed: %s\n" msgstr "zırhın kaldırılması başarısız: %s\n" -#: g10/gpg.c:4821 +#: g10/gpg.c:4841 #, c-format msgid "enarmoring failed: %s\n" msgstr "zırhlama başarısız: %s\n" -#: g10/gpg.c:4913 +#: g10/gpg.c:4933 #, fuzzy, c-format #| msgid "invalid hash algorithm `%s'\n" msgid "invalid hash algorithm '%s'\n" msgstr "`%s' çittirim algoritması geçersiz\n" -#: g10/gpg.c:5065 g10/tofu.c:2153 +#: g10/gpg.c:5085 g10/tofu.c:2153 #, fuzzy, c-format #| msgid "error storing certificate: %s\n" msgid "error parsing key specification '%s': %s\n" msgstr "serifika saklanırken hata: %s\n" -#: g10/gpg.c:5078 +#: g10/gpg.c:5098 #, c-format msgid "'%s' does not appear to be a valid key ID, fingerprint or keygrip\n" msgstr "" -#: g10/gpg.c:5134 +#: g10/gpg.c:5154 #, c-format msgid "WARNING: no command supplied. Trying to guess what you mean ...\n" msgstr "" -#: g10/gpg.c:5145 +#: g10/gpg.c:5165 #, c-format msgid "Go ahead and type your message ...\n" msgstr "İletinizi yazın ...\n" -#: g10/gpg.c:5490 +#: g10/gpg.c:5510 #, c-format msgid "the given certification policy URL is invalid\n" msgstr "belirtilen sertifika güvence adresi geçersiz\n" -#: g10/gpg.c:5492 +#: g10/gpg.c:5512 #, c-format msgid "the given signature policy URL is invalid\n" msgstr "belirtilen imza güvence adresi geçersiz\n" -#: g10/gpg.c:5525 +#: g10/gpg.c:5545 #, c-format msgid "the given preferred keyserver URL is invalid\n" msgstr "belirtilen anahtar sunucusu adresi geçersiz\n" @@ -3757,154 +3763,154 @@ msgid "No help available for '%s'" msgstr "\"%s\" için yardım mevcut değil" -#: g10/import.c:169 +#: g10/import.c:170 msgid "import signatures that are marked as local-only" msgstr "salt-yerel olarak imlenmiş imzaları ithal eder" -#: g10/import.c:172 +#: g10/import.c:173 msgid "repair damage from the pks keyserver during import" msgstr "ithalat sırasında pks anahtar sunucusundaki bozukluğu giderir" -#: g10/import.c:175 +#: g10/import.c:176 #, fuzzy #| msgid "do not update the trustdb after import" msgid "do not clear the ownertrust values during import" msgstr "ithalat sonrası güvence veritabanını güncellemez" -#: g10/import.c:178 +#: g10/import.c:179 msgid "do not update the trustdb after import" msgstr "ithalat sonrası güvence veritabanını güncellemez" -#: g10/import.c:181 +#: g10/import.c:182 #, fuzzy #| msgid "show key fingerprint" msgid "show key during import" msgstr "parmakizini gösterir" -#: g10/import.c:184 +#: g10/import.c:185 msgid "only accept updates to existing keys" msgstr "güncellemeleri sadece mevcut anahtarlar için kabul eder" -#: g10/import.c:187 +#: g10/import.c:188 msgid "remove unusable parts from key after import" msgstr "ithalat sonrası anahtardan kullanışsız parçaları kaldırır" -#: g10/import.c:190 +#: g10/import.c:191 msgid "remove as much as possible from key after import" msgstr "ithalat sonrası anahtardan mümkün olduğunca çok şey kaldırır" -#: g10/import.c:193 +#: g10/import.c:194 msgid "ignore key-signatures which are not self-signatures" msgstr "" -#: g10/import.c:196 +#: g10/import.c:197 msgid "run import filters and export key immediately" msgstr "" -#: g10/import.c:199 +#: g10/import.c:200 #, fuzzy #| msgid "assume input is in binary format" msgid "assume the GnuPG key backup format" msgstr "girdinin ikilik biçimde olduğu kabul edilir" -#: g10/import.c:203 +#: g10/import.c:204 #, fuzzy #| msgid "show key fingerprint" msgid "repair keys on import" msgstr "parmakizini gösterir" -#: g10/import.c:392 g10/import.c:711 +#: g10/import.c:393 g10/import.c:712 #, c-format msgid "skipping block of type %d\n" msgstr "%d türündeki blok atlanıyor\n" -#: g10/import.c:728 +#: g10/import.c:729 #, c-format msgid "%lu keys processed so far\n" msgstr "şu ana kadar %lu anahtar işlendi\n" -#: g10/import.c:814 +#: g10/import.c:815 #, c-format msgid "Total number processed: %lu\n" msgstr "İşlenmiş toplam miktar: %lu\n" -#: g10/import.c:817 +#: g10/import.c:818 #, fuzzy, c-format #| msgid " skipped new keys: %lu\n" msgid " skipped PGP-2 keys: %lu\n" msgstr " yeni anahtarlar atlandı: %lu\n" -#: g10/import.c:819 +#: g10/import.c:820 #, c-format msgid " skipped new keys: %lu\n" msgstr " yeni anahtarlar atlandı: %lu\n" -#: g10/import.c:822 +#: g10/import.c:823 #, c-format msgid " w/o user IDs: %lu\n" msgstr " kullanıcı kimliksiz: %lu\n" -#: g10/import.c:825 sm/import.c:130 +#: g10/import.c:826 sm/import.c:130 #, c-format msgid " imported: %lu" msgstr " alınan: %lu" -#: g10/import.c:829 sm/import.c:134 +#: g10/import.c:830 sm/import.c:134 #, c-format msgid " unchanged: %lu\n" msgstr " değişmedi: %lu\n" -#: g10/import.c:831 +#: g10/import.c:832 #, c-format msgid " new user IDs: %lu\n" msgstr " yeni kullanıcı kimliği: %lu\n" -#: g10/import.c:833 +#: g10/import.c:834 #, c-format msgid " new subkeys: %lu\n" msgstr " yeni yardımcı anahtarlar: %lu\n" -#: g10/import.c:835 +#: g10/import.c:836 #, c-format msgid " new signatures: %lu\n" msgstr " yeni imzalar: %lu\n" -#: g10/import.c:837 +#: g10/import.c:838 #, c-format msgid " new key revocations: %lu\n" msgstr " yeni anahtar iptalleri: %lu\n" -#: g10/import.c:839 sm/import.c:136 +#: g10/import.c:840 sm/import.c:136 #, c-format msgid " secret keys read: %lu\n" msgstr " gizli anahtarlar okundu: %lu\n" -#: g10/import.c:841 sm/import.c:138 +#: g10/import.c:842 sm/import.c:138 #, c-format msgid " secret keys imported: %lu\n" msgstr " gizli anahtarlar indirildi: %lu\n" -#: g10/import.c:843 sm/import.c:140 +#: g10/import.c:844 sm/import.c:140 #, c-format msgid " secret keys unchanged: %lu\n" msgstr " gizli anahtarlar değişmedi: %lu\n" -#: g10/import.c:845 sm/import.c:142 +#: g10/import.c:846 sm/import.c:142 #, c-format msgid " not imported: %lu\n" msgstr " alınamadı: %lu\n" -#: g10/import.c:847 +#: g10/import.c:848 #, c-format msgid " signatures cleaned: %lu\n" msgstr " temizlenen imzalar: %lu\n" -#: g10/import.c:849 +#: g10/import.c:850 #, c-format msgid " user IDs cleaned: %lu\n" msgstr " temizlenen kullanıcı kimlikleri: %lu\n" -#: g10/import.c:1276 +#: g10/import.c:1277 #, c-format msgid "" "WARNING: key %s contains preferences for unavailable\n" @@ -3913,174 +3919,174 @@ "UYARI: anahtar %s bu kullanıcı kimliklerde kullanışsız algoritmalar için " "tercihler içeriyor:\n" -#: g10/import.c:1318 +#: g10/import.c:1319 #, c-format msgid " \"%s\": preference for cipher algorithm %s\n" msgstr " \"%s\": şifreleme algoritması %s için tercih edilir\n" -#: g10/import.c:1333 +#: g10/import.c:1334 #, c-format msgid " \"%s\": preference for digest algorithm %s\n" msgstr " \"%s\": özet algoritması %s için tercih edilir\n" -#: g10/import.c:1345 +#: g10/import.c:1346 #, c-format msgid " \"%s\": preference for compression algorithm %s\n" msgstr "" " \"%s\": sıkıştırma algoritması %s için tercih edilir\n" "\n" -#: g10/import.c:1358 +#: g10/import.c:1359 #, c-format msgid "it is strongly suggested that you update your preferences and\n" msgstr "tercihlerinizi güncellemenizi ve\n" -#: g10/import.c:1360 +#: g10/import.c:1361 #, c-format msgid "re-distribute this key to avoid potential algorithm mismatch problems\n" msgstr "" "olası algoritma uyuşmazlığı sorunlarından kaçınmak için bu anahtarı\n" "tekrar dağıtmanızı şiddetle öneririz.\n" -#: g10/import.c:1385 +#: g10/import.c:1386 #, c-format msgid "you can update your preferences with: gpg --edit-key %s updpref save\n" msgstr "" "tercihlerinizi böyle güncelleyemezsiniz: gpg --edit-key %s updpref save\n" -#: g10/import.c:1899 g10/import.c:3013 +#: g10/import.c:1902 g10/import.c:3028 #, c-format msgid "key %s: no user ID\n" msgstr "anahtar %s: kullanıcı kimliği yok\n" -#: g10/import.c:1905 +#: g10/import.c:1908 #, fuzzy, c-format #| msgid "skipped \"%s\": %s\n" msgid "key %s: %s\n" msgstr "\"%s\" atlandı: %s\n" -#: g10/import.c:1906 g10/import.c:2985 +#: g10/import.c:1909 g10/import.c:3000 msgid "rejected by import screener" msgstr "" -#: g10/import.c:1950 +#: g10/import.c:1953 #, c-format msgid "key %s: PKS subkey corruption repaired\n" msgstr "anahtar %s: PKS yardımcı anahtar bozulması giderildi\n" -#: g10/import.c:1971 +#: g10/import.c:1974 #, c-format msgid "key %s: accepted non self-signed user ID \"%s\"\n" msgstr "anahtar %s: öz-imzalı olmayan kullanıcı kimliği \"%s\" kabul edildi\n" -#: g10/import.c:1981 g10/import.c:2012 +#: g10/import.c:1985 g10/import.c:2016 #, c-format msgid "key %s: no valid user IDs\n" msgstr "anahtar %s: geçerli kullanıcı kimliği yok\n" -#: g10/import.c:1983 +#: g10/import.c:1987 #, c-format msgid "this may be caused by a missing self-signature\n" msgstr "bu kayıp bir öz-imza yüzünden meydana gelebilir\n" -#: g10/import.c:2062 g10/import.c:3399 +#: g10/import.c:2066 g10/import.c:3415 #, c-format msgid "key %s: public key not found: %s\n" msgstr "anahtar %s: genel anahtar yok: %s\n" -#: g10/import.c:2068 +#: g10/import.c:2072 #, c-format msgid "key %s: new key - skipped\n" msgstr "anahtar %s: yeni anahtar - atlandı\n" -#: g10/import.c:2080 +#: g10/import.c:2084 #, c-format msgid "no writable keyring found: %s\n" msgstr "yazılabilir bir anahtar zinciri yok: %s\n" -#: g10/import.c:2112 g10/import.c:2214 g10/import.c:3476 +#: g10/import.c:2116 g10/import.c:2218 g10/import.c:3492 #, fuzzy, c-format #| msgid "error writing keyring `%s': %s\n" msgid "error writing keyring '%s': %s\n" msgstr "\"%s\" anahtarlığına yazarken hata oluştu: %s\n" -#: g10/import.c:2135 +#: g10/import.c:2139 #, c-format msgid "key %s: public key \"%s\" imported\n" msgstr "anahtar %s: genel anahtar \"%s\" alındı\n" -#: g10/import.c:2162 +#: g10/import.c:2166 #, c-format msgid "key %s: doesn't match our copy\n" msgstr "anahtar %s: bizim kopyamızla eşleşmiyor\n" -#: g10/import.c:2230 +#: g10/import.c:2234 #, c-format msgid "key %s: \"%s\" 1 new user ID\n" msgstr "anahtar %s: \"%s\" 1 yeni kullanıcı kimliği\n" -#: g10/import.c:2233 +#: g10/import.c:2237 #, c-format msgid "key %s: \"%s\" %d new user IDs\n" msgstr "anahtar %s: \"%s\" %d yeni kullanıcı kimliği\n" -#: g10/import.c:2236 +#: g10/import.c:2240 #, c-format msgid "key %s: \"%s\" 1 new signature\n" msgstr "anahtar %s: \"%s\" 1 yeni imza\n" -#: g10/import.c:2239 +#: g10/import.c:2243 #, c-format msgid "key %s: \"%s\" %d new signatures\n" msgstr "anahtar %s: \"%s\" %d yeni imza\n" -#: g10/import.c:2242 +#: g10/import.c:2246 #, c-format msgid "key %s: \"%s\" 1 new subkey\n" msgstr "anahtar %s: %s 1 yeni yardımcı anahtar\n" -#: g10/import.c:2245 +#: g10/import.c:2249 #, c-format msgid "key %s: \"%s\" %d new subkeys\n" msgstr "anahtar %s: \"%s\" %d yeni yardımcı anahtar\n" -#: g10/import.c:2248 +#: g10/import.c:2252 #, c-format msgid "key %s: \"%s\" %d signature cleaned\n" msgstr "anahtar %s: \"%s\" %d imza temizlendi\n" -#: g10/import.c:2251 +#: g10/import.c:2255 #, c-format msgid "key %s: \"%s\" %d signatures cleaned\n" msgstr "anahtar %s: \"%s\" %d imza temizlendi\n" -#: g10/import.c:2254 +#: g10/import.c:2258 #, c-format msgid "key %s: \"%s\" %d user ID cleaned\n" msgstr "anahtar %s: \"%s\" %d kullanıcı kimliği temizlendi\n" -#: g10/import.c:2257 +#: g10/import.c:2261 #, c-format msgid "key %s: \"%s\" %d user IDs cleaned\n" msgstr "anahtar %s: \"%s\" %d kullanıcı kimliği temizlendi\n" -#: g10/import.c:2293 +#: g10/import.c:2297 #, c-format msgid "key %s: \"%s\" not changed\n" msgstr "anahtar %s: \"%s\" değişmedi\n" -#: g10/import.c:2652 g10/import.c:2847 +#: g10/import.c:2667 g10/import.c:2862 #, c-format msgid "key %s: secret key imported\n" msgstr "anahtar %s: gizli anahtar alındı\n" -#: g10/import.c:2660 +#: g10/import.c:2675 #, fuzzy, c-format #| msgid "skipped: secret key already present\n" msgid "key %s: secret key already exists\n" msgstr "atlandı: gizli anahtar zaten var\n" -#: g10/import.c:2668 +#: g10/import.c:2683 #, fuzzy, c-format #| msgid "error sending %s command: %s\n" msgid "key %s: error sending to agent: %s\n" @@ -4094,203 +4100,203 @@ #. * Instead, user should be suggested to run 'gpg --card-status', #. * then, references to a card will be automatically created #. * again. -#: g10/import.c:2837 +#: g10/import.c:2852 #, c-format msgid "To migrate '%s', with each smartcard, run: %s\n" msgstr "" -#: g10/import.c:2984 +#: g10/import.c:2999 #, fuzzy, c-format #| msgid "secret key \"%s\" not found: %s\n" msgid "secret key %s: %s\n" msgstr "gizli anahtar \"%s\" yok: %s\n" -#: g10/import.c:3005 g10/import.c:3044 +#: g10/import.c:3020 g10/import.c:3059 #, c-format msgid "importing secret keys not allowed\n" msgstr "gizli anahtarı alımına izin verilmez\n" -#: g10/import.c:3032 +#: g10/import.c:3047 #, c-format msgid "key %s: secret key with invalid cipher %d - skipped\n" msgstr "anahtar %s: geçersiz şifreli (%d) gizli anahtar - atlandı\n" -#: g10/import.c:3194 g10/pkclist.c:72 g10/revoke.c:776 +#: g10/import.c:3209 g10/pkclist.c:72 g10/revoke.c:776 msgid "No reason specified" msgstr "Belirtilmiş bir neden yok" -#: g10/import.c:3195 g10/pkclist.c:74 g10/revoke.c:778 +#: g10/import.c:3210 g10/pkclist.c:74 g10/revoke.c:778 msgid "Key is superseded" msgstr "Anahtarın yerine başkası konulmuş ve iptal edilmiştir" -#: g10/import.c:3196 g10/pkclist.c:76 g10/revoke.c:777 +#: g10/import.c:3211 g10/pkclist.c:76 g10/revoke.c:777 msgid "Key has been compromised" msgstr "Anahtar tehlikede" -#: g10/import.c:3197 g10/pkclist.c:78 g10/revoke.c:779 +#: g10/import.c:3212 g10/pkclist.c:78 g10/revoke.c:779 msgid "Key is no longer used" msgstr "Anahtar artık kullanılmayacak" -#: g10/import.c:3198 g10/pkclist.c:80 g10/revoke.c:780 +#: g10/import.c:3213 g10/pkclist.c:80 g10/revoke.c:780 msgid "User ID is no longer valid" msgstr "Kullanıcı kimliği artık geçersiz" -#: g10/import.c:3323 g10/keylist.c:1258 g10/pkclist.c:84 +#: g10/import.c:3338 g10/keylist.c:1258 g10/pkclist.c:84 #, c-format msgid "reason for revocation: " msgstr "yürürlükten kaldırma sebebi: " -#: g10/import.c:3342 g10/keylist.c:1277 g10/pkclist.c:100 +#: g10/import.c:3357 g10/keylist.c:1277 g10/pkclist.c:100 #, c-format msgid "revocation comment: " msgstr "yürürlükten kaldırma açıklaması: " -#: g10/import.c:3392 +#: g10/import.c:3408 #, c-format msgid "key %s: no public key - can't apply revocation certificate\n" msgstr "" "anahtar %s: genel anahtar değil - yürürlükten kaldırma sertifikası " "uygulanamaz\n" -#: g10/import.c:3423 +#: g10/import.c:3439 #, c-format msgid "key %s: can't locate original keyblock: %s\n" msgstr "anahtar %s: özgün anahtar bloku bulunamadı: %s\n" -#: g10/import.c:3430 +#: g10/import.c:3446 #, c-format msgid "key %s: can't read original keyblock: %s\n" msgstr "anahtar %s: özgün anahtar bloku okunamadı: %s\n" -#: g10/import.c:3450 +#: g10/import.c:3466 #, c-format msgid "key %s: invalid revocation certificate: %s - rejected\n" msgstr "" "anahtar %s: yürürlükten kaldırma sertifikası geçersiz: %s - reddedildi\n" -#: g10/import.c:3485 +#: g10/import.c:3501 #, c-format msgid "key %s: \"%s\" revocation certificate imported\n" msgstr "anahtar %s: \"%s\" yürürlükten kaldırma sertifikası alındı\n" -#: g10/import.c:3571 +#: g10/import.c:3587 #, c-format msgid "key %s: no user ID for signature\n" msgstr "anahtar %s: imza için kullanıcı kimliği yok\n" -#: g10/import.c:3588 +#: g10/import.c:3604 #, c-format msgid "key %s: unsupported public key algorithm on user ID \"%s\"\n" msgstr "" "anahtar %s: genel anahtar algoritması, kullanıcı kimliği \"%s\" için " "desteklenmiyor\n" -#: g10/import.c:3590 +#: g10/import.c:3606 #, c-format msgid "key %s: invalid self-signature on user ID \"%s\"\n" msgstr "anahtar %s: kullanıcı kimliği \"%s\" için öz-imza geçersiz\n" -#: g10/import.c:3607 g10/import.c:3635 g10/import.c:3691 +#: g10/import.c:3623 g10/import.c:3651 g10/import.c:3707 #, c-format msgid "key %s: unsupported public key algorithm\n" msgstr "anahtar %s: genel anahtar algoritması desteklenmiyor\n" -#: g10/import.c:3608 +#: g10/import.c:3624 #, fuzzy, c-format msgid "key %s: invalid direct key signature\n" msgstr "anahtar %s: doğrudan anahtar imzası eklendi\n" -#: g10/import.c:3622 +#: g10/import.c:3638 #, c-format msgid "key %s: no subkey for key binding\n" msgstr "anahtar %s: anahtarı garantilemek için yardımcı anahtar yok\n" -#: g10/import.c:3637 +#: g10/import.c:3653 #, c-format msgid "key %s: invalid subkey binding\n" msgstr "anahtar %s: yardımcı anahtar garantileme geçersiz\n" -#: g10/import.c:3656 +#: g10/import.c:3672 #, c-format msgid "key %s: removed multiple subkey binding\n" msgstr "anahtar %s: çok sayıda yardımcı anahtar bağlantısı silindi\n" -#: g10/import.c:3680 +#: g10/import.c:3696 #, c-format msgid "key %s: no subkey for key revocation\n" msgstr "anahtar %s: anahtarı yürürlükten kaldırılacak yardımcı anahtar yok\n" -#: g10/import.c:3693 +#: g10/import.c:3709 #, c-format msgid "key %s: invalid subkey revocation\n" msgstr "anahtar %s: yardımcı anahtar yürürlükten kaldırması geçersiz\n" -#: g10/import.c:3708 +#: g10/import.c:3724 #, c-format msgid "key %s: removed multiple subkey revocation\n" msgstr "" "anahtar %s: çok sayıda yardımcı anahtar yürürlükten kaldırması silindi\n" -#: g10/import.c:3752 +#: g10/import.c:3771 #, c-format msgid "key %s: skipped user ID \"%s\"\n" msgstr "anahtar %s: kullanıcı kimliği \"%s\" atlandı\n" -#: g10/import.c:3779 +#: g10/import.c:3798 #, c-format msgid "key %s: skipped subkey\n" msgstr "anahtar %s: yardımcı anahtar atlandı\n" -#: g10/import.c:3810 +#: g10/import.c:3829 #, c-format msgid "key %s: non exportable signature (class 0x%02X) - skipped\n" msgstr "anahtar %s: imza gönderilebilir değil (0x%02X sınıfı) - atlandı\n" -#: g10/import.c:3821 +#: g10/import.c:3840 #, c-format msgid "key %s: revocation certificate at wrong place - skipped\n" msgstr "anahtar %s: yürürlükten kaldırma sertifikası yanlış yerde - atlandı\n" -#: g10/import.c:3839 +#: g10/import.c:3868 #, c-format msgid "key %s: invalid revocation certificate: %s - skipped\n" msgstr "anahtar %s: yürürlükten kaldırma sertifikası geçersiz: %s - atlandı\n" -#: g10/import.c:3853 +#: g10/import.c:3892 #, c-format msgid "key %s: subkey signature in wrong place - skipped\n" msgstr "anahtar %s: yardımcı anahtar imzası yanlış yerde - atlandı\n" -#: g10/import.c:3861 +#: g10/import.c:3900 #, c-format msgid "key %s: unexpected signature class (0x%02X) - skipped\n" msgstr "anahtar %s: umulmayan imza sınıfı (0x%02X) - atlandı\n" -#: g10/import.c:4034 +#: g10/import.c:4073 #, c-format msgid "key %s: duplicated user ID detected - merged\n" msgstr "anahtar %s: çift kullanıcı kimliği saptandı - birleştirildi\n" -#: g10/import.c:4099 +#: g10/import.c:4138 #, c-format msgid "WARNING: key %s may be revoked: fetching revocation key %s\n" msgstr "" "UYARI: anahtar %s yürürlükten kaldırılmış olmalı: yürürlükten kaldırma " "anahtarı %s alınıyor\n" -#: g10/import.c:4115 +#: g10/import.c:4154 #, c-format msgid "WARNING: key %s may be revoked: revocation key %s not present.\n" msgstr "" "UYARI: anahtar %s yürürlükten kaldırılmış olabilir: yürürlükten kaldırma " "anahtarı %s mevcut değil.\n" -#: g10/import.c:4181 +#: g10/import.c:4220 #, c-format msgid "key %s: \"%s\" revocation certificate added\n" msgstr "anahtar %s: \"%s\" yürürlükten kaldırma sertifikası eklendi\n" -#: g10/import.c:4219 +#: g10/import.c:4258 #, c-format msgid "key %s: direct key signature added\n" msgstr "anahtar %s: doğrudan anahtar imzası eklendi\n" @@ -5228,7 +5234,7 @@ msgid "You may not add a photo ID to a PGP2-style key.\n" msgstr "PGP2 tarzı bir anahtara bir foto kimliği ekleyemeyebilirsiniz.\n" -#: g10/keyedit.c:4293 g10/keygen.c:2899 +#: g10/keyedit.c:4293 g10/keygen.c:2953 msgid "Such a user ID already exists on this key!\n" msgstr "" @@ -5534,66 +5540,66 @@ "Anahtar 0x%3$s (kull-kiml %4$d) için %2$ld uzunluktaki %1$s foto kimliği " "gösteriliyor\n" -#: g10/keygen.c:169 +#: g10/keygen.c:174 #, fuzzy, c-format #| msgid "missing argument for option \"%.50s\"\n" msgid "invalid value for option '%s'\n" msgstr "\"%.50s\" seçeneği için değiştirge eksik\n" -#: g10/keygen.c:322 +#: g10/keygen.c:331 #, fuzzy, c-format #| msgid "preference `%s' duplicated\n" msgid "preference '%s' duplicated\n" msgstr "'%s' tercihi yinelendi\n" -#: g10/keygen.c:329 +#: g10/keygen.c:338 #, c-format msgid "too many cipher preferences\n" msgstr "çok fazla şifreleme tercihi\n" -#: g10/keygen.c:331 +#: g10/keygen.c:340 #, c-format msgid "too many digest preferences\n" msgstr "çok fazla özet tercihi\n" -#: g10/keygen.c:333 +#: g10/keygen.c:342 #, c-format msgid "too many compression preferences\n" msgstr "çok fazla sıkıştırma tercihi\n" -#: g10/keygen.c:493 +#: g10/keygen.c:502 #, fuzzy, c-format #| msgid "invalid item `%s' in preference string\n" msgid "invalid item '%s' in preference string\n" msgstr "tercih dizgesindeki '%s' öğesi geçersiz\n" -#: g10/keygen.c:972 +#: g10/keygen.c:1020 #, c-format msgid "writing direct signature\n" msgstr "doğrudan imza yazılıyor\n" -#: g10/keygen.c:1018 +#: g10/keygen.c:1066 #, c-format msgid "writing self signature\n" msgstr "öz-imza yazılıyor\n" -#: g10/keygen.c:1075 +#: g10/keygen.c:1123 #, c-format msgid "writing key binding signature\n" msgstr "anahtarı garantileyen imzayı yazıyor\n" -#: g10/keygen.c:1440 g10/keygen.c:1445 g10/keygen.c:1497 g10/keygen.c:1502 -#: g10/keygen.c:1656 g10/keygen.c:1661 +#: g10/keygen.c:1494 g10/keygen.c:1499 g10/keygen.c:1551 g10/keygen.c:1556 +#: g10/keygen.c:1710 g10/keygen.c:1715 #, c-format msgid "keysize invalid; using %u bits\n" msgstr "anahtar uzunluğu geçersiz; %u bit kullanılıyor\n" -#: g10/keygen.c:1451 g10/keygen.c:1508 g10/keygen.c:1516 g10/keygen.c:1667 +#: g10/keygen.c:1505 g10/keygen.c:1562 g10/keygen.c:1570 g10/keygen.c:1721 #, c-format msgid "keysize rounded up to %u bits\n" msgstr "anahtar uzunluğu %u bite yuvarlandı\n" -#: g10/keygen.c:1542 +#: g10/keygen.c:1596 #, c-format msgid "" "WARNING: some OpenPGP programs can't handle a DSA key with this digest size\n" @@ -5601,19 +5607,19 @@ "UYARI: bazı OpenPGP uygulamaları bu özet boyutlu bir DSA anahtarıyla " "çalışamayabilir\n" -#: g10/keygen.c:1723 +#: g10/keygen.c:1777 msgid "Sign" msgstr "İmzalama" -#: g10/keygen.c:1726 +#: g10/keygen.c:1780 msgid "Certify" msgstr "Onayla" -#: g10/keygen.c:1729 +#: g10/keygen.c:1783 msgid "Encrypt" msgstr "Şifrele" -#: g10/keygen.c:1732 +#: g10/keygen.c:1786 msgid "Authenticate" msgstr "Kimlik kanıtla" @@ -5627,172 +5633,172 @@ #. * a = Toggle authentication capability #. * q = Finish #. -#: g10/keygen.c:1753 +#: g10/keygen.c:1807 msgid "SsEeAaQq" msgstr "OoŞşKkçÇ" -#: g10/keygen.c:1784 +#: g10/keygen.c:1838 #, c-format msgid "Possible actions for a %s key: " msgstr "bir %s anahtarı için olası eylemler: " -#: g10/keygen.c:1790 +#: g10/keygen.c:1844 msgid "Current allowed actions: " msgstr "Şimdilik mümkün eylemler: " -#: g10/keygen.c:1795 +#: g10/keygen.c:1849 #, c-format msgid " (%c) Toggle the sign capability\n" msgstr " (%c) İmzalama yeteneğini açar/kapar\n" -#: g10/keygen.c:1798 +#: g10/keygen.c:1852 #, c-format msgid " (%c) Toggle the encrypt capability\n" msgstr " (%c) Şifreleme yeteneğini açar/kapar\n" -#: g10/keygen.c:1801 +#: g10/keygen.c:1855 #, c-format msgid " (%c) Toggle the authenticate capability\n" msgstr " (%c) Kimlik kanıtlama yeteneğini açar/kapar\n" -#: g10/keygen.c:1804 +#: g10/keygen.c:1858 #, c-format msgid " (%c) Finished\n" msgstr " (%c) Bitti\n" -#: g10/keygen.c:1930 +#: g10/keygen.c:1984 #, fuzzy, c-format msgid " (%d) RSA and RSA (default)\n" msgstr " (%d) DSA ve ElGamal (öntanımlı)\n" -#: g10/keygen.c:1934 +#: g10/keygen.c:1988 #, fuzzy, c-format msgid " (%d) DSA and Elgamal\n" msgstr " (%d) DSA ve ElGamal (öntanımlı)\n" -#: g10/keygen.c:1937 +#: g10/keygen.c:1991 #, c-format msgid " (%d) DSA (sign only)\n" msgstr " (%d) DSA (yalnız imzalamak için)\n" -#: g10/keygen.c:1939 +#: g10/keygen.c:1993 #, c-format msgid " (%d) RSA (sign only)\n" msgstr " (%d) RSA (sadece imzalamak için)\n" -#: g10/keygen.c:1945 +#: g10/keygen.c:1999 #, c-format msgid " (%d) Elgamal (encrypt only)\n" msgstr " (%d) ElGamal (yalnız şifrelemek için)\n" -#: g10/keygen.c:1947 +#: g10/keygen.c:2001 #, c-format msgid " (%d) RSA (encrypt only)\n" msgstr " (%d) RSA (sadece şifrelemek için)\n" -#: g10/keygen.c:1953 +#: g10/keygen.c:2007 #, c-format msgid " (%d) DSA (set your own capabilities)\n" msgstr " (%d) DSA (yeteneklerini belirtin)\n" -#: g10/keygen.c:1955 +#: g10/keygen.c:2009 #, c-format msgid " (%d) RSA (set your own capabilities)\n" msgstr " (%d) RSA (yeteneklerini belirtin)\n" -#: g10/keygen.c:1961 +#: g10/keygen.c:2015 #, fuzzy, c-format msgid " (%d) ECC and ECC\n" msgstr " (%d) DSA ve ElGamal (öntanımlı)\n" -#: g10/keygen.c:1963 +#: g10/keygen.c:2017 #, fuzzy, c-format #| msgid " (%d) DSA (sign only)\n" msgid " (%d) ECC (sign only)\n" msgstr " (%d) DSA (yalnız imzalamak için)\n" -#: g10/keygen.c:1965 +#: g10/keygen.c:2019 #, fuzzy, c-format #| msgid " (%d) DSA (set your own capabilities)\n" msgid " (%d) ECC (set your own capabilities)\n" msgstr " (%d) DSA (yeteneklerini belirtin)\n" -#: g10/keygen.c:1967 +#: g10/keygen.c:2021 #, fuzzy, c-format #| msgid " (%d) RSA (encrypt only)\n" msgid " (%d) ECC (encrypt only)\n" msgstr " (%d) RSA (sadece şifrelemek için)\n" -#: g10/keygen.c:1971 +#: g10/keygen.c:2025 #, fuzzy, c-format #| msgid " (%d) Existing key\n" msgid " (%d) Existing key\n" msgstr " (%d) Mevcut anahtar\n" -#: g10/keygen.c:1973 +#: g10/keygen.c:2027 #, fuzzy, c-format #| msgid " (%d) Existing key from card\n" msgid " (%d) Existing key from card\n" msgstr " (%d) Karttaki mevcut anahtar\n" -#: g10/keygen.c:2069 sm/certreqgen-ui.c:202 +#: g10/keygen.c:2123 sm/certreqgen-ui.c:202 #, fuzzy msgid "Enter the keygrip: " msgstr "Simgelemi giriniz: " -#: g10/keygen.c:2082 sm/certreqgen-ui.c:210 +#: g10/keygen.c:2136 sm/certreqgen-ui.c:210 msgid "Not a valid keygrip (expecting 40 hex digits)\n" msgstr "" -#: g10/keygen.c:2084 sm/certreqgen-ui.c:212 +#: g10/keygen.c:2138 sm/certreqgen-ui.c:212 #, fuzzy msgid "No key with this keygrip\n" msgstr "%d indisli bir yardımcı anahtar yok\n" -#: g10/keygen.c:2103 g10/keygen.c:2113 g10/keygen.c:3216 g10/keygen.c:3227 +#: g10/keygen.c:2157 g10/keygen.c:2167 g10/keygen.c:3270 g10/keygen.c:3281 #: sm/certreqgen-ui.c:230 sm/certreqgen-ui.c:239 #, fuzzy, c-format msgid "error reading the card: %s\n" msgstr "%s: serbest kaydı okuma hatası: %s\n" -#: g10/keygen.c:2107 g10/keygen.c:3220 sm/certreqgen-ui.c:233 +#: g10/keygen.c:2161 g10/keygen.c:3274 sm/certreqgen-ui.c:233 #, fuzzy, c-format msgid "Serial number of the card: %s\n" msgstr "kartın seri numarası alınırken hata: %s\n" -#: g10/keygen.c:2120 sm/certreqgen-ui.c:245 +#: g10/keygen.c:2174 sm/certreqgen-ui.c:245 #, fuzzy msgid "Available keys:\n" msgstr "anahtarı iptal eder" -#: g10/keygen.c:2297 g10/keygen.c:2311 +#: g10/keygen.c:2351 g10/keygen.c:2365 #, fuzzy, c-format #| msgid "rounded up to %u bits\n" msgid "rounded to %u bits\n" msgstr "%u bite yuvarlandı\n" -#: g10/keygen.c:2352 +#: g10/keygen.c:2406 #, c-format msgid "%s keys may be between %u and %u bits long.\n" msgstr "%s anahtarları %u bit ile %u bit arasında olmalı.\n" -#: g10/keygen.c:2360 +#: g10/keygen.c:2414 #, fuzzy, c-format msgid "What keysize do you want for the subkey? (%u) " msgstr "İstediğiniz anahtar uzunluğu nedir? (%u) " -#: g10/keygen.c:2377 sm/certreqgen-ui.c:189 +#: g10/keygen.c:2431 sm/certreqgen-ui.c:189 #, c-format msgid "Requested keysize is %u bits\n" msgstr "İstenen anahtar uzunluğu: %u bit\n" -#: g10/keygen.c:2423 +#: g10/keygen.c:2477 #, fuzzy #| msgid "Please select what kind of key you want:\n" msgid "Please select which elliptic curve you want:\n" msgstr "Lütfen istediğiniz anahtarı seçiniz:\n" -#: g10/keygen.c:2611 +#: g10/keygen.c:2665 msgid "" "Please specify how long the key should be valid.\n" " 0 = key does not expire\n" @@ -5808,7 +5814,7 @@ " m = anahtar n ay geçerli\n" " y = anahtar n yıl geçerli\n" -#: g10/keygen.c:2622 +#: g10/keygen.c:2676 msgid "" "Please specify how long the signature should be valid.\n" " 0 = signature does not expire\n" @@ -5824,38 +5830,38 @@ " m = imza n ay geçerli\n" " y = imza n yıl geçerli\n" -#: g10/keygen.c:2645 +#: g10/keygen.c:2699 msgid "Key is valid for? (0) " msgstr "Anahtar ne kadar geçerli olacak? (0) " -#: g10/keygen.c:2650 +#: g10/keygen.c:2704 #, c-format msgid "Signature is valid for? (%s) " msgstr "İmza ne kadar geçerli olacak? (%s) " -#: g10/keygen.c:2663 g10/keygen.c:2688 +#: g10/keygen.c:2717 g10/keygen.c:2742 msgid "invalid value\n" msgstr "değer hatalı\n" -#: g10/keygen.c:2670 +#: g10/keygen.c:2724 msgid "Key does not expire at all\n" msgstr "Anahtar hep geçerli olacak\n" -#: g10/keygen.c:2671 +#: g10/keygen.c:2725 msgid "Signature does not expire at all\n" msgstr "İmza hep geçerli olacak\n" -#: g10/keygen.c:2676 +#: g10/keygen.c:2730 #, c-format msgid "Key expires at %s\n" msgstr "Anahtarın geçerliliği %s de bitecek.\n" -#: g10/keygen.c:2677 +#: g10/keygen.c:2731 #, c-format msgid "Signature expires at %s\n" msgstr "İmzanın geçerliliği %s de bitecek.\n" -#: g10/keygen.c:2681 +#: g10/keygen.c:2735 msgid "" "Your system can't display dates beyond 2038.\n" "However, it will be correctly handled up to 2106.\n" @@ -5863,11 +5869,11 @@ "Sisteminiz 2038 yılından sonraki tarihleri gösteremiyor.\n" "Ama emin olun ki 2106 yılına kadar elde edilebilecek.\n" -#: g10/keygen.c:2694 +#: g10/keygen.c:2748 msgid "Is this correct? (y/N) " msgstr "Bu doğru mu? (e/H ya da y/N) " -#: g10/keygen.c:2762 +#: g10/keygen.c:2816 msgid "" "\n" "GnuPG needs to construct a user ID to identify your key.\n" @@ -5882,7 +5888,7 @@ #. but you should keep your existing translation. In case #. the new string is not translated this old string will #. be used. -#: g10/keygen.c:2777 +#: g10/keygen.c:2831 msgid "" "\n" "You need a user ID to identify your key; the software constructs the user " @@ -5898,50 +5904,50 @@ "\t\"Fatih Sultan Mehmed (Padisah) \"\n" "\n" -#: g10/keygen.c:2796 +#: g10/keygen.c:2850 msgid "Real name: " msgstr "Adınız ve Soyadınız: " -#: g10/keygen.c:2805 +#: g10/keygen.c:2859 msgid "Invalid character in name\n" msgstr "Ad ve soyadınızda geçersiz karakter var\n" -#: g10/keygen.c:2806 +#: g10/keygen.c:2860 #, c-format msgid "The characters '%s' and '%s' may not appear in name\n" msgstr "" -#: g10/keygen.c:2810 +#: g10/keygen.c:2864 msgid "Name may not start with a digit\n" msgstr "Ad ve soyadınız bir rakamla başlamamalı\n" -#: g10/keygen.c:2813 +#: g10/keygen.c:2867 msgid "Name must be at least 5 characters long\n" msgstr "Ad ve soyadınız en az 5 harfli olmalı\n" -#: g10/keygen.c:2823 +#: g10/keygen.c:2877 msgid "Email address: " msgstr "E-posta adresiniz: " -#: g10/keygen.c:2829 +#: g10/keygen.c:2883 msgid "Not a valid email address\n" msgstr "geçerli bir E-posta adresi değil\n" -#: g10/keygen.c:2838 +#: g10/keygen.c:2892 msgid "Comment: " msgstr "Önbilgi: " -#: g10/keygen.c:2844 +#: g10/keygen.c:2898 msgid "Invalid character in comment\n" msgstr "Önbilgi alanında geçersiz karakter var\n" -#: g10/keygen.c:2880 +#: g10/keygen.c:2934 #, fuzzy, c-format #| msgid "You are using the `%s' character set.\n" msgid "You are using the '%s' character set.\n" msgstr "`%s' karakter kümesini kullanıyorsunuz.\n" -#: g10/keygen.c:2886 +#: g10/keygen.c:2940 #, c-format msgid "" "You selected this USER-ID:\n" @@ -5952,7 +5958,7 @@ " \"%s\"\n" "\n" -#: g10/keygen.c:2891 +#: g10/keygen.c:2945 msgid "Please don't put the email address into the real name or the comment\n" msgstr "" "Lütfen E-posta adresinizi Adı ve Soyadı veya Açıklama alanı içine koymayın\n" @@ -5968,37 +5974,37 @@ #. o = Okay (ready, continue) #. q = Quit #. -#: g10/keygen.c:2916 +#: g10/keygen.c:2970 msgid "NnCcEeOoQq" msgstr "AaYyEeTtKk" -#: g10/keygen.c:2926 +#: g10/keygen.c:2980 msgid "Change (N)ame, (C)omment, (E)mail or (Q)uit? " msgstr "(A)dı ve Soyadı, (Y)orum, (E)posta alanlarını değiştir ya da Çı(k)? " -#: g10/keygen.c:2927 +#: g10/keygen.c:2981 msgid "Change (N)ame, (C)omment, (E)mail or (O)kay/(Q)uit? " msgstr "" "(A)dı ve Soyadı, (Y)orum, (E)posta alanlarını değiştir ya da (T)amam/Çı(k)? " -#: g10/keygen.c:2932 +#: g10/keygen.c:2986 #, fuzzy #| msgid "Change (N)ame, (C)omment, (E)mail or (Q)uit? " msgid "Change (N)ame, (E)mail, or (Q)uit? " msgstr "(A)dı ve Soyadı, (Y)orum, (E)posta alanlarını değiştir ya da Çı(k)? " -#: g10/keygen.c:2933 +#: g10/keygen.c:2987 #, fuzzy #| msgid "Change (N)ame, (C)omment, (E)mail or (O)kay/(Q)uit? " msgid "Change (N)ame, (E)mail, or (O)kay/(Q)uit? " msgstr "" "(A)dı ve Soyadı, (Y)orum, (E)posta alanlarını değiştir ya da (T)amam/Çı(k)? " -#: g10/keygen.c:2952 +#: g10/keygen.c:3006 msgid "Please correct the error first\n" msgstr "Lütfen önce hatayı düzeltin\n" -#: g10/keygen.c:2998 +#: g10/keygen.c:3052 msgid "" "We need to generate a lot of random bytes. It is a good idea to perform\n" "some other action (type on the keyboard, move the mouse, utilize the\n" @@ -6011,13 +6017,13 @@ "iyi olacaktır; bu yeterli rasgele bayt kazanmak için rasgele sayı\n" "üretecine yardımcı olur. \n" -#: g10/keygen.c:4278 g10/keygen.c:4349 g10/keygen.c:4367 g10/keygen.c:4395 -#: g10/keygen.c:4739 g10/keygen.c:5239 g10/keygen.c:5534 g10/keygen.c:5639 +#: g10/keygen.c:4332 g10/keygen.c:4403 g10/keygen.c:4421 g10/keygen.c:4449 +#: g10/keygen.c:4793 g10/keygen.c:5293 g10/keygen.c:5588 g10/keygen.c:5693 #, c-format msgid "Key generation failed: %s\n" msgstr "Anahtar üretimi başarısızlığa uğradı: %s\n" -#: g10/keygen.c:4287 +#: g10/keygen.c:4341 #, c-format msgid "" "About to create a key for:\n" @@ -6025,72 +6031,72 @@ "\n" msgstr "" -#: g10/keygen.c:4289 +#: g10/keygen.c:4343 msgid "Continue? (Y/n) " msgstr "" -#: g10/keygen.c:4310 +#: g10/keygen.c:4364 #, fuzzy, c-format #| msgid "key already exists\n" msgid "A key for \"%s\" already exists\n" msgstr "anahtar zaten mevcut\n" -#: g10/keygen.c:4315 +#: g10/keygen.c:4369 #, fuzzy #| msgid "Use this key anyway? (y/N) " msgid "Create anyway? (y/N) " msgstr "Bu anahtar yine de kullanılsın mı? (e/H ya da y/N) " -#: g10/keygen.c:4321 +#: g10/keygen.c:4375 #, fuzzy, c-format #| msgid "generating new key\n" msgid "creating anyway\n" msgstr "yeni anahtar üretiliyor\n" -#: g10/keygen.c:4722 +#: g10/keygen.c:4776 #, c-format msgid "Note: Use \"%s %s\" for a full featured key generation dialog.\n" msgstr "" -#: g10/keygen.c:4771 +#: g10/keygen.c:4825 #, c-format msgid "Key generation canceled.\n" msgstr "Anahtar üretimi durduruldu.\n" -#: g10/keygen.c:4831 +#: g10/keygen.c:4885 #, fuzzy, c-format #| msgid "can't create backup file `%s': %s\n" msgid "can't create backup file '%s': %s\n" msgstr "'%s' yedek dosyası oluşturulamıyor: %s\n" -#: g10/keygen.c:4851 +#: g10/keygen.c:4905 #, fuzzy, c-format #| msgid "NOTE: backup of card key saved to `%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/keygen.c:5010 g10/keygen.c:5172 +#: g10/keygen.c:5064 g10/keygen.c:5226 #, fuzzy, c-format #| msgid "writing public key to `%s'\n" msgid "writing public key to '%s'\n" msgstr "genel anahtarı `%s'e yazıyor\n" -#: g10/keygen.c:5166 +#: g10/keygen.c:5220 #, c-format msgid "no writable public keyring found: %s\n" msgstr "yazılabilir bir genel anahtar zinciri yok: %s\n" -#: g10/keygen.c:5180 +#: g10/keygen.c:5234 #, fuzzy, c-format #| msgid "error writing public keyring `%s': %s\n" msgid "error writing public keyring '%s': %s\n" msgstr "`%s' genel anahtarlığa yazılırken hata oluştu: %s\n" -#: g10/keygen.c:5210 +#: g10/keygen.c:5264 msgid "public and secret key created and signed.\n" msgstr "genel ve gizli anahtar üretildi ve imzalandı.\n" -#: g10/keygen.c:5226 +#: g10/keygen.c:5280 msgid "" "Note that this key cannot be used for encryption. You may want to use\n" "the command \"--edit-key\" to generate a subkey for this purpose.\n" @@ -6098,14 +6104,14 @@ "Bu anahtar şifreleme için kullanılamaz. Şifreleme için yardımcı anahtarı\n" "\"--edit-key\" seçeneğini kullanarak üretebilirsiniz.\n" -#: g10/keygen.c:5401 g10/keygen.c:5590 +#: g10/keygen.c:5455 g10/keygen.c:5644 #, c-format msgid "" "key has been created %lu second in future (time warp or clock problem)\n" msgstr "" "anahtar %lu saniye sonra üretilmiş (zaman sapması veya saat problemi)\n" -#: g10/keygen.c:5403 g10/keygen.c:5592 +#: g10/keygen.c:5457 g10/keygen.c:5646 #, c-format msgid "" "key has been created %lu seconds in future (time warp or clock problem)\n" @@ -6113,24 +6119,24 @@ "anahtar bundan %lu saniye sonra üretilmiş (zaman sapması veya saat " "problemi)\n" -#: g10/keygen.c:5414 g10/keygen.c:5603 +#: g10/keygen.c:5468 g10/keygen.c:5657 #, fuzzy, c-format #| msgid "NOTE: creating subkeys for v3 keys is not OpenPGP compliant\n" msgid "Note: creating subkeys for v3 keys is not OpenPGP compliant\n" msgstr "" "BİLGİ: v3 anahtarları için yardımcı anahtar üretimi OpenPGP uyumlu değildir\n" -#: g10/keygen.c:5426 g10/keygen.c:5428 +#: g10/keygen.c:5480 g10/keygen.c:5482 #, c-format msgid "Secret parts of primary key are not available.\n" msgstr "Asıl anahtarın gizli parçaları kullanılamaz.\n" -#: g10/keygen.c:5435 g10/keygen.c:5437 +#: g10/keygen.c:5489 g10/keygen.c:5491 #, c-format msgid "Secret parts of primary key are stored on-card.\n" msgstr "Asıl anahtarın gizli parçaları kart üzerinde saklı.\n" -#: g10/keygen.c:5456 g10/keygen.c:5617 +#: g10/keygen.c:5510 g10/keygen.c:5671 msgid "Really create? (y/N) " msgstr "Gerçekten oluşturulsun mu? (e/H ya da y/N) " @@ -7258,31 +7264,31 @@ msgid "data not saved; use option \"--output\" to save it\n" msgstr "veri kaydedilmedi; kaydetmek için \"--output\" seçeneğini kullanın\n" -#: g10/plaintext.c:615 +#: g10/plaintext.c:620 msgid "Detached signature.\n" msgstr "Bağımsız imza.\n" -#: g10/plaintext.c:623 +#: g10/plaintext.c:628 msgid "Please enter name of data file: " msgstr "Lütfen veri dosyasının ismini girin: " -#: g10/plaintext.c:660 +#: g10/plaintext.c:665 #, c-format msgid "reading stdin ...\n" msgstr "standart girdiden okuyor ...\n" -#: g10/plaintext.c:705 +#: g10/plaintext.c:710 #, c-format msgid "no signed data\n" msgstr "imzalı veri yok\n" -#: g10/plaintext.c:723 +#: g10/plaintext.c:728 #, fuzzy, c-format #| msgid "can't open signed data `%s'\n" msgid "can't open signed data '%s'\n" msgstr "imzalı veri '%s' açılamadı\n" -#: g10/plaintext.c:758 +#: g10/plaintext.c:763 #, c-format msgid "can't open signed data fd=%d: %s\n" msgstr "imzalı veri fd=%d açılamadı: %s\n" @@ -8325,7 +8331,7 @@ msgid "no need for a trustdb check\n" msgstr "bir güvence veritabanı denetimi gereksiz\n" -#: g10/trustdb.c:631 g10/trustdb.c:2326 +#: g10/trustdb.c:631 g10/trustdb.c:2338 #, c-format msgid "next trustdb check due at %s\n" msgstr "sonraki güvence veritabanı denetimi %s de\n" @@ -8357,7 +8363,7 @@ msgid "checking the trustdb\n" msgstr "güvence veritabanı denetleniyor\n" -#: g10/trustdb.c:2047 +#: g10/trustdb.c:2059 #, fuzzy, c-format #| msgid "%lu keys processed so far\n" msgid "%d key processed" @@ -8365,7 +8371,7 @@ msgstr[0] "şu ana kadar %lu anahtar işlendi\n" msgstr[1] "şu ana kadar %lu anahtar işlendi\n" -#: g10/trustdb.c:2050 +#: g10/trustdb.c:2062 #, fuzzy, c-format #| msgid "%d keys processed (%d validity counts cleared)\n" msgid " (%d validity count cleared)\n" @@ -8373,17 +8379,17 @@ msgstr[0] "%d anahtar işlendi (%d doğrulama temizlendi)\n" msgstr[1] "%d anahtar işlendi (%d doğrulama temizlendi)\n" -#: g10/trustdb.c:2120 +#: g10/trustdb.c:2132 #, c-format msgid "no ultimately trusted keys found\n" msgstr "son derece güvenli bir anahtar yok\n" -#: g10/trustdb.c:2134 +#: g10/trustdb.c:2146 #, c-format msgid "public key of ultimately trusted key %s not found\n" msgstr "son derece güvenli %s için genel anahtar yok\n" -#: g10/trustdb.c:2252 +#: g10/trustdb.c:2264 #, c-format msgid "" "depth: %d valid: %3d signed: %3d trust: %d-, %dq, %dn, %dm, %df, %du\n" @@ -8391,7 +8397,7 @@ "derinlik: %d geçerli: %3d imzalı: %3d güvenilir: %d-, %dq, %dn, %dm, %df, " "%du\n" -#: g10/trustdb.c:2333 +#: g10/trustdb.c:2345 #, c-format msgid "unable to update trustdb version record: write failed: %s\n" msgstr "" @@ -8513,88 +8519,94 @@ #. TRANSLATORS: Put a \x1f right before a colon. This can be #. * used by pinentry to nicely align the names and values. Keep #. * the %s at the start and end of the string. -#: scd/app-p15.c:5116 scd/app-openpgp.c:2154 +#: scd/app-p15.c:5145 scd/app-nks.c:1541 scd/app-openpgp.c:2154 #, c-format msgid "%sNumber: %s%%0AHolder: %s%s" msgstr "" #. TRANSLATORS: This is the number of remaining attempts to #. * enter a PIN. Use %%0A (double-percent,0A) for a linefeed. -#: scd/app-p15.c:5135 scd/app-openpgp.c:2170 +#: scd/app-p15.c:5164 scd/app-nks.c:1560 scd/app-openpgp.c:2170 #, c-format msgid "Remaining attempts: %d" msgstr "" -#: scd/app-p15.c:5214 scd/app-nks.c:1113 +#: scd/app-p15.c:5243 scd/app-nks.c:2112 msgid "||Please enter the PIN for the key to create qualified signatures." msgstr "" #. TRANSLATORS: Do not translate the "|A|" prefix but keep it at #. the start of the string. Use %0A (single percent) for a linefeed. -#: scd/app-p15.c:5217 scd/app-openpgp.c:2464 +#: scd/app-p15.c:5246 scd/app-openpgp.c:2465 #, fuzzy msgid "|A|Please enter the Admin PIN" msgstr "||Lütfen PIN'i giriniz" -#: scd/app-p15.c:5219 scd/app-nks.c:1103 +#: scd/app-p15.c:5248 scd/app-nks.c:2102 #, fuzzy msgid "|P|Please enter the PIN Unblocking Code (PUK) for the standard keys." msgstr "||Lütfen kart için Sıfırlama Kodunu giriniz" -#: scd/app-p15.c:5222 scd/app-nks.c:1095 +#: scd/app-p15.c:5251 scd/app-nks.c:2093 #, fuzzy msgid "||Please enter the PIN for the standard keys." msgstr "|A|Lütfen Yönetici PIN'ini okuyucu tuştakımından giriniz" -#: scd/app-nks.c:709 scd/app-openpgp.c:3666 +#: scd/app-nks.c:1479 scd/app-openpgp.c:3675 #, 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-nks.c:717 scd/app-openpgp.c:3678 +#: scd/app-nks.c:1487 scd/app-openpgp.c:3687 #, 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-nks.c:797 scd/app-openpgp.c:2327 scd/app-openpgp.c:2346 -#: scd/app-openpgp.c:2513 scd/app-openpgp.c:2531 scd/app-openpgp.c:2829 -#: scd/app-openpgp.c:2876 scd/app-openpgp.c:2991 scd/app-dinsig.c:302 +#: scd/app-nks.c:1660 +#, fuzzy +#| msgid "the NullPIN has not yet been changed\n" +msgid "Note: PIN has not yet been enabled." +msgstr "BoşPIN henüz değişmedi\n" + +#: scd/app-nks.c:1671 scd/app-openpgp.c:2327 scd/app-openpgp.c:2346 +#: scd/app-openpgp.c:2515 scd/app-openpgp.c:2533 scd/app-openpgp.c:2832 +#: scd/app-openpgp.c:2879 scd/app-openpgp.c:3000 scd/app-dinsig.c:303 #, c-format msgid "PIN callback returned error: %s\n" msgstr "PIN eylemcisi hata döndürdü: %s\n" -#: scd/app-nks.c:830 +#: scd/app-nks.c:1707 #, c-format msgid "the NullPIN has not yet been changed\n" msgstr "BoşPIN henüz değişmedi\n" -#: scd/app-nks.c:1094 +#: scd/app-nks.c:2092 #, fuzzy msgid "|N|Please enter a new PIN for the standard keys." msgstr "||Lütfen PIN'inizi okuyucunun tuştakımından giriniz" -#: scd/app-nks.c:1101 +#: scd/app-nks.c:2100 #, fuzzy msgid "|NP|Please enter a new PIN Unblocking Code (PUK) for the standard keys." msgstr "||Lütfen kart için Sıfırlama Kodunu giriniz" -#: scd/app-nks.c:1111 +#: scd/app-nks.c:2110 msgid "|N|Please enter a new PIN for the key to create qualified signatures." msgstr "" -#: scd/app-nks.c:1121 +#: scd/app-nks.c:2120 msgid "" "|NP|Please enter a new PIN Unblocking Code (PUK) for the key to create " "qualified signatures." msgstr "" -#: scd/app-nks.c:1123 +#: scd/app-nks.c:2122 msgid "" "|P|Please enter the PIN Unblocking Code (PUK) for the key to create " "qualified signatures." msgstr "" -#: scd/app-nks.c:1230 scd/app-openpgp.c:2910 scd/app-dinsig.c:532 +#: scd/app-nks.c:2295 scd/app-openpgp.c:2913 scd/app-dinsig.c:535 #, c-format msgid "error getting new PIN: %s\n" msgstr "yeni PIN alınırken hata: %s\n" @@ -8609,7 +8621,7 @@ msgid "failed to store the creation date: %s\n" msgstr "oluşturma tarihinin saklanması başarısız oldu: %s\n" -#: scd/app-openpgp.c:1271 scd/app-openpgp.c:2857 scd/app-openpgp.c:5041 +#: scd/app-openpgp.c:1271 scd/app-openpgp.c:2860 scd/app-openpgp.c:5051 #, c-format msgid "error retrieving CHV status from card\n" msgstr "karttan CHV durumu alınırken hata\n" @@ -8630,7 +8642,7 @@ msgid "response does not contain the EC public key\n" msgstr "yanıt RSA genel bileşenini içermiyor\n" -#: scd/app-openpgp.c:1664 scd/app-openpgp.c:4286 +#: scd/app-openpgp.c:1664 scd/app-openpgp.c:4295 #, c-format msgid "response does not contain the public key data\n" msgstr "yanıt genel anahtar verisi içermiyor\n" @@ -8666,23 +8678,23 @@ msgid "||Please unlock the card" msgstr "||Lütfen PIN'i giriniz" -#: scd/app-openpgp.c:2353 scd/app-openpgp.c:2538 scd/app-openpgp.c:2836 +#: scd/app-openpgp.c:2353 scd/app-openpgp.c:2540 scd/app-openpgp.c:2839 #, 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:2367 scd/app-openpgp.c:2414 scd/app-openpgp.c:2552 -#: scd/app-openpgp.c:4644 +#: scd/app-openpgp.c:2368 scd/app-openpgp.c:2415 scd/app-openpgp.c:2554 +#: scd/app-openpgp.c:4654 #, 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:2450 scd/app-openpgp.c:5050 +#: scd/app-openpgp.c:2451 scd/app-openpgp.c:5060 #, c-format msgid "card is permanently locked!\n" msgstr "kart kalıcı olarak kilitli!\n" -#: scd/app-openpgp.c:2454 +#: scd/app-openpgp.c:2455 #, fuzzy, c-format #| msgid "%d Admin PIN attempts remaining before card is permanently locked\n" msgid "%d Admin PIN attempt remaining before card is permanently locked\n" @@ -8693,20 +8705,20 @@ msgstr[1] "" "kart kalıcı olarak kilitlenmeden önce %d Yönetici PIN kalmasına çalışılıyor\n" -#: scd/app-openpgp.c:2485 +#: scd/app-openpgp.c:2486 #, c-format 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:2823 +#: scd/app-openpgp.c:2826 msgid "||Please enter the PIN" msgstr "||Lütfen PIN'i giriniz" -#: scd/app-openpgp.c:2872 +#: scd/app-openpgp.c:2875 msgid "||Please enter the Reset Code for the card" msgstr "||Lütfen kart için Sıfırlama Kodunu giriniz" -#: scd/app-openpgp.c:2882 scd/app-openpgp.c:2943 +#: scd/app-openpgp.c:2885 scd/app-openpgp.c:2946 #, c-format msgid "Reset Code is too short; minimum length is %d\n" msgstr "Sıfırlama Kodu çok kısa; asgari uzunluk: %d\n" @@ -8714,91 +8726,91 @@ #. 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:2905 +#: scd/app-openpgp.c:2908 msgid "|RN|New Reset Code" msgstr "|YSK|Yeni Sıfırlama Kodu" -#: scd/app-openpgp.c:2906 +#: scd/app-openpgp.c:2909 msgid "|AN|New Admin PIN" msgstr "|YYP|Yeni Yönetici PIN'i" -#: scd/app-openpgp.c:2906 +#: scd/app-openpgp.c:2909 msgid "|N|New PIN" msgstr "|N|Yeni PIN" -#: scd/app-openpgp.c:2987 +#: scd/app-openpgp.c:2996 #, fuzzy msgid "||Please enter the Admin PIN and New Admin PIN" msgstr "||Lütfen PIN'i giriniz" -#: scd/app-openpgp.c:2988 +#: scd/app-openpgp.c:2997 #, fuzzy #| msgid "||Please enter the PIN" msgid "||Please enter the PIN and New PIN" msgstr "||Lütfen PIN'i giriniz" -#: scd/app-openpgp.c:3050 scd/app-openpgp.c:4346 +#: scd/app-openpgp.c:3059 scd/app-openpgp.c:4355 #, c-format msgid "error reading application data\n" msgstr "uygulama verisi okunurken hata\n" -#: scd/app-openpgp.c:3056 scd/app-openpgp.c:4353 +#: scd/app-openpgp.c:3065 scd/app-openpgp.c:4362 #, c-format msgid "error reading fingerprint DO\n" msgstr "parmakizi DO okunurken hata\n" -#: scd/app-openpgp.c:3066 +#: scd/app-openpgp.c:3075 #, c-format msgid "key already exists\n" msgstr "anahtar zaten mevcut\n" -#: scd/app-openpgp.c:3070 +#: scd/app-openpgp.c:3079 #, c-format msgid "existing key will be replaced\n" msgstr "mevcut anahtar konulacak\n" -#: scd/app-openpgp.c:3072 +#: scd/app-openpgp.c:3081 #, c-format msgid "generating new key\n" msgstr "yeni anahtar üretiliyor\n" -#: scd/app-openpgp.c:3074 +#: scd/app-openpgp.c:3083 #, fuzzy, c-format msgid "writing new key\n" msgstr "yeni anahtar üretiliyor\n" -#: scd/app-openpgp.c:3647 scd/app-openpgp.c:3999 +#: scd/app-openpgp.c:3656 scd/app-openpgp.c:4008 #, c-format msgid "creation timestamp missing\n" msgstr "oluşturum zaman damgası kayıp\n" -#: scd/app-openpgp.c:3688 scd/app-openpgp.c:3696 +#: scd/app-openpgp.c:3697 scd/app-openpgp.c:3705 #, 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:3829 scd/app-openpgp.c:4106 +#: scd/app-openpgp.c:3838 scd/app-openpgp.c:4115 #, c-format msgid "failed to store the key: %s\n" msgstr "anahtarın saklanması başarısız: %s\n" -#: scd/app-openpgp.c:3993 +#: scd/app-openpgp.c:4002 #, fuzzy, c-format #| msgid "unsupported algorithm: %s" msgid "unsupported curve\n" msgstr "desteklenmeyen algoritma: %s" -#: scd/app-openpgp.c:4263 +#: scd/app-openpgp.c:4272 #, c-format msgid "please wait while key is being generated ...\n" msgstr "anahtar üretilene kadar lütfen bekleyiniz ....\n" -#: scd/app-openpgp.c:4271 +#: scd/app-openpgp.c:4280 #, c-format msgid "generating key failed\n" msgstr "anahtar üretimi başarısızlığa uğradı\n" -#: scd/app-openpgp.c:4277 +#: scd/app-openpgp.c:4286 #, fuzzy, c-format #| msgid "key generation completed (%d seconds)\n" msgid "key generation completed (%d second)\n" @@ -8806,38 +8818,38 @@ msgstr[0] "anahtar üretimi tamamlandı (%d saniye)\n" msgstr[1] "anahtar üretimi tamamlandı (%d saniye)\n" -#: scd/app-openpgp.c:4311 +#: scd/app-openpgp.c:4320 #, c-format 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:4361 +#: scd/app-openpgp.c:4370 #, c-format msgid "fingerprint on card does not match requested one\n" msgstr "karttaki parmak izi istenenle eşleşmiyor\n" -#: scd/app-openpgp.c:4560 +#: scd/app-openpgp.c:4569 #, c-format msgid "card does not support digest algorithm %s\n" msgstr "kart %s özet algoritmasını desteklemiyor\n" -#: scd/app-openpgp.c:4618 +#: scd/app-openpgp.c:4627 #, c-format msgid "signatures created so far: %lu\n" msgstr "şu ana kadar oluşturulan imzalar: %lu\n" -#: scd/app-openpgp.c:5055 +#: scd/app-openpgp.c:5065 #, c-format 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:5386 scd/app-openpgp.c:5398 +#: scd/app-openpgp.c:5396 scd/app-openpgp.c:5408 #, c-format msgid "can't access %s - invalid OpenPGP card?\n" msgstr "%s erişilebilir değil - OpenPGP kartı geçersiz olabilir mi?\n" -#: scd/app-dinsig.c:298 +#: scd/app-dinsig.c:299 #, fuzzy #| msgid "||Please enter your PIN at the reader's keypad" msgid "||Please enter your PIN at the reader's pinpad" @@ -8846,7 +8858,7 @@ #. 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-dinsig.c:529 +#: scd/app-dinsig.c:532 msgid "|N|Initial New PIN" msgstr "|N|İlk Yeni PIN" @@ -8945,11 +8957,11 @@ msgid "validation model requested by certificate: %s" msgstr "sertifika tarafından istenen geçerlilik modeli: %s" -#: sm/certchain.c:199 sm/certchain.c:2164 +#: sm/certchain.c:199 sm/certchain.c:2165 msgid "chain" msgstr "zincir" -#: sm/certchain.c:200 sm/certchain.c:2164 +#: sm/certchain.c:200 sm/certchain.c:2165 msgid "shell" msgstr "kabuk" @@ -8973,237 +8985,237 @@ msgid "failed to open '%s': %s\n" msgstr "`%s' açılamadı: %s\n" -#: sm/certchain.c:355 sm/certchain.c:384 dirmngr/validate.c:204 +#: sm/certchain.c:355 sm/certchain.c:385 dirmngr/validate.c:204 #, fuzzy, c-format #| msgid "note: non-critical certificate policy not allowed" msgid "Note: non-critical certificate policy not allowed" msgstr "bilgi: kritik olmayan sertifika poliçesine izin verilmez" -#: sm/certchain.c:359 sm/certchain.c:388 dirmngr/validate.c:209 +#: sm/certchain.c:359 sm/certchain.c:389 dirmngr/validate.c:209 #, c-format msgid "certificate policy not allowed" msgstr "sertifika poliçesine izin verilmiyor" -#: sm/certchain.c:595 sm/keydb.c:1084 sm/keydb.c:1171 +#: sm/certchain.c:596 sm/keydb.c:1084 sm/keydb.c:1171 #, c-format msgid "failed to get the fingerprint\n" msgstr "parmakizinin alınması başarısız oldu\n" -#: sm/certchain.c:624 +#: sm/certchain.c:625 #, c-format msgid "looking up issuer at external location\n" msgstr "harici bir sertifikacı arar\n" -#: sm/certchain.c:644 +#: sm/certchain.c:645 #, c-format msgid "number of issuers matching: %d\n" msgstr "eşleşen sertifikacı sayısı: %d\n" -#: sm/certchain.c:723 dirmngr/ocsp.c:685 +#: sm/certchain.c:724 dirmngr/ocsp.c:685 #, fuzzy, c-format #| msgid "can't access `%s': %s\n" msgid "can't get authorityInfoAccess: %s\n" msgstr "'%s' erişilemiyor: %s\n" -#: sm/certchain.c:791 +#: sm/certchain.c:792 #, c-format msgid "looking up issuer from the Dirmngr cache\n" msgstr "Dirmngr önbelleğinde sertifikacıyı arar\n" -#: sm/certchain.c:816 +#: sm/certchain.c:817 #, c-format msgid "number of matching certificates: %d\n" msgstr "eşleşen sertifika sayısı: %d\n" -#: sm/certchain.c:819 +#: sm/certchain.c:820 #, c-format msgid "dirmngr cache-only key lookup failed: %s\n" msgstr "dirmngr sadece-önbellek anahtar araması başarısızi: %s\n" -#: sm/certchain.c:1041 sm/certchain.c:1554 sm/certchain.c:2192 sm/decrypt.c:728 +#: sm/certchain.c:1042 sm/certchain.c:1555 sm/certchain.c:2193 sm/decrypt.c:728 #: sm/encrypt.c:345 sm/import.c:415 sm/keydb.c:1091 sm/keydb.c:1178 #: sm/sign.c:337 sm/verify.c:118 #, c-format msgid "failed to allocate keyDB handle\n" msgstr "anahtar veritabanı eylemcisine yer ayrılması başarısız oldu\n" -#: sm/certchain.c:1225 +#: sm/certchain.c:1226 msgid "certificate has been revoked" msgstr "sertifika yürürlükten kaldırılmıştı" -#: sm/certchain.c:1240 +#: sm/certchain.c:1241 msgid "the status of the certificate is unknown" msgstr "sertifika durumu bilinmiyor" -#: sm/certchain.c:1247 +#: sm/certchain.c:1248 #, c-format msgid "please make sure that the \"dirmngr\" is properly installed\n" msgstr "\"dirmngr\"'ın düzgün olarak kurulu olduğundan lütfen emin olunuz\n" -#: sm/certchain.c:1253 +#: sm/certchain.c:1254 #, c-format msgid "checking the CRL failed: %s" msgstr "CRL sınaması başarısız: %s" -#: sm/certchain.c:1282 sm/certchain.c:1350 dirmngr/validate.c:497 +#: sm/certchain.c:1283 sm/certchain.c:1351 dirmngr/validate.c:497 #, c-format msgid "certificate with invalid validity: %s" msgstr "geçersiz doğrulukla sertifika: %s" -#: sm/certchain.c:1297 sm/certchain.c:1382 dirmngr/validate.c:515 +#: sm/certchain.c:1298 sm/certchain.c:1383 dirmngr/validate.c:515 #, c-format msgid "certificate not yet valid" msgstr "sertifika henüz geçersiz" -#: sm/certchain.c:1298 sm/certchain.c:1383 +#: sm/certchain.c:1299 sm/certchain.c:1384 msgid "root certificate not yet valid" msgstr "kök sertifika henüz geçersiz" -#: sm/certchain.c:1299 sm/certchain.c:1384 +#: sm/certchain.c:1300 sm/certchain.c:1385 msgid "intermediate certificate not yet valid" msgstr "ara sertifika henüz geçersiz" -#: sm/certchain.c:1312 dirmngr/validate.c:526 +#: sm/certchain.c:1313 dirmngr/validate.c:526 #, c-format msgid "certificate has expired" msgstr "sertifika kullanım süresi dolmuş" -#: sm/certchain.c:1313 +#: sm/certchain.c:1314 msgid "root certificate has expired" msgstr "kök sertifikanın kullanım süresi dolmuş" -#: sm/certchain.c:1314 +#: sm/certchain.c:1315 msgid "intermediate certificate has expired" msgstr "ara sertifikanın kullanım süresi dolmuş" -#: sm/certchain.c:1356 +#: sm/certchain.c:1357 #, c-format msgid "required certificate attributes missing: %s%s%s" msgstr "gerekli sertifika özellikleri eksik: %s%s%s" -#: sm/certchain.c:1365 +#: sm/certchain.c:1366 msgid "certificate with invalid validity" msgstr "geçersiz doğrulukla sertifika" -#: sm/certchain.c:1402 +#: sm/certchain.c:1403 msgid "signature not created during lifetime of certificate" msgstr "sertifika yaşam süresi boyunca imza oluşturulmadı" -#: sm/certchain.c:1404 +#: sm/certchain.c:1405 msgid "certificate not created during lifetime of issuer" msgstr "sertifikacının yaşam süresi boyunca sertifika oluşturulmadı" -#: sm/certchain.c:1405 +#: sm/certchain.c:1406 msgid "intermediate certificate not created during lifetime of issuer" msgstr "sertifikacının yaşam süresi boyunca ara sertifika oluşturulmadı" -#: sm/certchain.c:1409 +#: sm/certchain.c:1410 #, c-format msgid " ( signature created at " msgstr " ( imzanın oluşturuluşu: " -#: sm/certchain.c:1410 +#: sm/certchain.c:1411 #, c-format msgid " (certificate created at " msgstr " ( sertifikanın oluşturuluşu: " -#: sm/certchain.c:1413 +#: sm/certchain.c:1414 #, c-format msgid " (certificate valid from " msgstr " (sertifika geçerlilik başlangıcı: " -#: sm/certchain.c:1414 +#: sm/certchain.c:1415 #, c-format msgid " ( issuer valid from " msgstr " (sertifikacı geçerlilik başlangıcı: " -#: sm/certchain.c:1444 dirmngr/validate.c:577 +#: sm/certchain.c:1445 dirmngr/validate.c:577 #, c-format msgid "fingerprint=%s\n" msgstr "parmakizi=%s\n" -#: sm/certchain.c:1453 +#: sm/certchain.c:1454 #, c-format msgid "root certificate has now been marked as trusted\n" msgstr "kök sertifika artık güvenilir olarak imlenmiş oldu\n" -#: sm/certchain.c:1466 +#: sm/certchain.c:1467 #, c-format msgid "interactive marking as trusted not enabled in gpg-agent\n" msgstr "güvenilir olarak etkileşimli imleme gpg-agent'ta etkin değil\n" -#: sm/certchain.c:1472 +#: sm/certchain.c:1473 #, c-format msgid "interactive marking as trusted disabled for this session\n" msgstr "güvenilir olarak etkileşimli imleme bu oturum için iptal edildi\n" -#: sm/certchain.c:1531 +#: sm/certchain.c:1532 msgid "WARNING: creation time of signature not known - assuming current time" msgstr "" "UYARI: imzanın oluşturulma zamanı bilinmiyor - şimdiki zaman varsayılıyor" -#: sm/certchain.c:1595 +#: sm/certchain.c:1596 msgid "no issuer found in certificate" msgstr "sertifikacı kim belli değil" -#: sm/certchain.c:1673 +#: sm/certchain.c:1674 msgid "self-signed certificate has a BAD signature" msgstr "öz-imzalı sertifika KÖTÜ bir imzaya sahip" -#: sm/certchain.c:1742 dirmngr/validate.c:575 +#: sm/certchain.c:1743 dirmngr/validate.c:575 #, c-format msgid "root certificate is not marked trusted" msgstr "kök sertifika güvenilir olarak imli değil" -#: sm/certchain.c:1758 +#: sm/certchain.c:1759 #, c-format msgid "checking the trust list failed: %s\n" msgstr "güvence listesinin sınanması başarısız: %s\n" -#: sm/certchain.c:1789 sm/import.c:176 sm/keylist.c:1396 dirmngr/validate.c:630 +#: sm/certchain.c:1790 sm/import.c:176 sm/keylist.c:1396 dirmngr/validate.c:630 #, c-format msgid "certificate chain too long\n" msgstr "sertifika zinciri çok uzun\n" -#: sm/certchain.c:1801 dirmngr/validate.c:642 +#: sm/certchain.c:1802 dirmngr/validate.c:642 #, c-format msgid "issuer certificate not found" msgstr "sertifikacı belli değil" -#: sm/certchain.c:1834 dirmngr/validate.c:668 +#: sm/certchain.c:1835 dirmngr/validate.c:668 #, c-format msgid "certificate has a BAD signature" msgstr "sertifika KÖTÜ bir imzaya sahip" -#: sm/certchain.c:1866 dirmngr/validate.c:692 +#: sm/certchain.c:1867 dirmngr/validate.c:692 msgid "found another possible matching CA certificate - trying again" msgstr "başka bir eşleşmesi olası CA sertifikası var - tekrar deneniyor" -#: sm/certchain.c:1925 dirmngr/validate.c:717 +#: sm/certchain.c:1926 dirmngr/validate.c:717 #, c-format msgid "certificate chain longer than allowed by CA (%d)" msgstr "sertifika zinciri CA tarafından izin verilenden uzun (%d)" -#: sm/certchain.c:1967 sm/certchain.c:2263 dirmngr/validate.c:747 +#: sm/certchain.c:1968 sm/certchain.c:2264 dirmngr/validate.c:747 #, c-format msgid "certificate is good\n" msgstr "sertifika iyi durumda\n" -#: sm/certchain.c:1968 +#: sm/certchain.c:1969 #, c-format msgid "intermediate certificate is good\n" msgstr "ara sertifika iyi durumda\n" -#: sm/certchain.c:1969 +#: sm/certchain.c:1970 #, c-format msgid "root certificate is good\n" msgstr "kök sertifika iyi durumda\n" -#: sm/certchain.c:2151 +#: sm/certchain.c:2152 msgid "switching to chain model" msgstr "zincir modeline geçiş" -#: sm/certchain.c:2160 +#: sm/certchain.c:2161 #, c-format msgid "validation model used: %s" msgstr "kullanılan geçerlilik modeli: %s" diff -Nru gnupg2-2.2.40/po/uk.po gnupg2-2.2.41/po/uk.po --- gnupg2-2.2.40/po/uk.po 2022-10-10 09:58:26.000000000 +0000 +++ gnupg2-2.2.41/po/uk.po 2022-12-09 08:48:35.000000000 +0000 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: GNU gnupg 2.1.0\n" "Report-Msgid-Bugs-To: translations@gnupg.org\n" -"POT-Creation-Date: 2022-10-10 11:58+0200\n" +"POT-Creation-Date: 2022-12-09 09:48+0100\n" "PO-Revision-Date: 2020-08-31 11:54+0300\n" "Last-Translator: Yuri Chornoivan \n" "Language-Team: Ukrainian \n" @@ -232,20 +232,20 @@ msgstr "" "підтримки ключів ssh, що складаються з понад %d бітів, не передбачено\n" -#: agent/command-ssh.c:862 common/dotlock.c:856 g10/card-util.c:947 -#: g10/exec.c:554 g10/export.c:1320 g10/gpg.c:1400 g10/keygen.c:4998 +#: agent/command-ssh.c:862 common/dotlock.c:856 g10/card-util.c:946 +#: g10/exec.c:554 g10/export.c:1335 g10/gpg.c:1409 g10/keygen.c:5052 #: g10/keyring.c:1322 g10/keyring.c:1637 g10/openfile.c:291 g10/sign.c:1008 #: g10/sign.c:1322 g10/tdbio.c:753 #, c-format msgid "can't create '%s': %s\n" msgstr "не вдалося створити «%s»: %s\n" -#: agent/command-ssh.c:874 common/helpfile.c:57 g10/card-util.c:904 +#: agent/command-ssh.c:874 common/helpfile.c:57 g10/card-util.c:903 #: g10/dearmor.c:59 g10/dearmor.c:106 g10/decrypt.c:65 g10/decrypt.c:136 -#: g10/decrypt.c:153 g10/encrypt.c:239 g10/encrypt.c:678 g10/gpg.c:1401 -#: g10/import.c:364 g10/import.c:548 g10/import.c:776 g10/keygen.c:4036 +#: g10/decrypt.c:153 g10/encrypt.c:239 g10/encrypt.c:678 g10/gpg.c:1410 +#: g10/import.c:365 g10/import.c:549 g10/import.c:777 g10/keygen.c:4090 #: g10/keyring.c:1663 g10/openfile.c:195 g10/openfile.c:209 g10/plaintext.c:128 -#: g10/plaintext.c:649 g10/sign.c:990 g10/sign.c:1201 g10/sign.c:1306 +#: g10/plaintext.c:654 g10/sign.c:990 g10/sign.c:1201 g10/sign.c:1306 #: g10/sign.c:1451 g10/tdbdump.c:145 g10/tdbdump.c:153 g10/tdbio.c:758 #: g10/tdbio.c:829 g10/verify.c:96 g10/verify.c:160 sm/gpgsm.c:2160 #: sm/gpgsm.c:2190 sm/gpgsm.c:2228 sm/qualified.c:66 dirmngr/certcache.c:420 @@ -472,33 +472,33 @@ msgid "csh-style command output" msgstr "виведення команд у форматі csh" -#: agent/gpg-agent.c:185 g10/gpg.c:579 scd/scdaemon.c:126 sm/gpgsm.c:410 +#: agent/gpg-agent.c:185 g10/gpg.c:580 scd/scdaemon.c:126 sm/gpgsm.c:410 #: dirmngr/dirmngr.c:192 msgid "|FILE|read options from FILE" msgstr "|FILE|прочитати параметри з вказаного файла" -#: agent/gpg-agent.c:189 g10/gpg.c:566 scd/scdaemon.c:130 sm/gpgsm.c:259 +#: agent/gpg-agent.c:189 g10/gpg.c:567 scd/scdaemon.c:130 sm/gpgsm.c:259 #: dirmngr/dirmngr.c:196 msgid "Options controlling the diagnostic output" msgstr "Параметри керування діагностичним виводом" -#: agent/gpg-agent.c:191 g10/gpg.c:568 g10/gpgv.c:78 kbx/kbxutil.c:88 +#: agent/gpg-agent.c:191 g10/gpg.c:569 g10/gpgv.c:78 kbx/kbxutil.c:88 #: scd/scdaemon.c:132 sm/gpgsm.c:261 dirmngr/dirmngr-client.c:70 #: dirmngr/dirmngr.c:198 tools/gpg-connect-agent.c:78 tools/gpgconf.c:110 msgid "verbose" msgstr "докладний режим" -#: agent/gpg-agent.c:192 g10/gpg.c:570 g10/gpgv.c:79 kbx/kbxutil.c:89 +#: agent/gpg-agent.c:192 g10/gpg.c:571 g10/gpgv.c:79 kbx/kbxutil.c:89 #: scd/scdaemon.c:133 sm/gpgsm.c:263 dirmngr/dirmngr-client.c:71 #: dirmngr/dirmngr.c:199 msgid "be somewhat more quiet" msgstr "дещо зменшити кількість повідомлень" -#: agent/gpg-agent.c:200 g10/gpg.c:583 sm/gpgsm.c:276 dirmngr/dirmngr.c:209 +#: agent/gpg-agent.c:200 g10/gpg.c:584 sm/gpgsm.c:276 dirmngr/dirmngr.c:209 msgid "|FILE|write server mode logs to FILE" msgstr "|FILE|записувати журнал режиму сервера до файла" -#: agent/gpg-agent.c:204 g10/gpg.c:589 scd/scdaemon.c:147 sm/gpgsm.c:283 +#: agent/gpg-agent.c:204 g10/gpg.c:590 scd/scdaemon.c:147 sm/gpgsm.c:283 #: dirmngr/dirmngr.c:213 msgid "Options controlling the configuration" msgstr "Параметри керування налаштуваннями" @@ -535,7 +535,7 @@ msgid "enable putty support" msgstr "увімкнути підтримку putty" -#: agent/gpg-agent.c:237 g10/gpg.c:831 scd/scdaemon.c:175 sm/gpgsm.c:369 +#: agent/gpg-agent.c:237 g10/gpg.c:832 scd/scdaemon.c:175 sm/gpgsm.c:369 msgid "Options controlling the security" msgstr "Параметри керування захистом" @@ -635,7 +635,7 @@ #. reporting address. This is so that we can change the #. reporting address without breaking the translations. #: agent/gpg-agent.c:563 agent/preset-passphrase.c:100 agent/protect-tool.c:155 -#: g10/gpg.c:1108 g10/gpgv.c:149 kbx/kbxutil.c:113 scd/scdaemon.c:313 +#: g10/gpg.c:1117 g10/gpgv.c:149 kbx/kbxutil.c:113 scd/scdaemon.c:313 #: sm/gpgsm.c:600 dirmngr/dirmngr-client.c:168 dirmngr/dirmngr.c:458 #: tools/gpg-connect-agent.c:205 tools/gpgconf.c:154 #: tools/gpg-check-pattern.c:143 @@ -654,26 +654,26 @@ "Синтаксис: @GPG_AGENT@ [параметри] [команда [аргументи]]\n" "Керування закритими ключами у @GNUPG@\n" -#: agent/gpg-agent.c:619 g10/gpg.c:1304 scd/scdaemon.c:385 sm/gpgsm.c:748 +#: agent/gpg-agent.c:619 g10/gpg.c:1313 scd/scdaemon.c:385 sm/gpgsm.c:748 #: dirmngr/dirmngr.c:542 #, c-format msgid "invalid debug-level '%s' given\n" msgstr "вказано некоректне значення рівня діагностики «%s»\n" -#: agent/gpg-agent.c:988 g10/gpg.c:3810 g10/gpg.c:3834 sm/gpgsm.c:1585 +#: agent/gpg-agent.c:988 g10/gpg.c:3830 g10/gpg.c:3854 sm/gpgsm.c:1585 #: sm/gpgsm.c:1591 #, c-format msgid "selected digest algorithm is invalid\n" msgstr "вибраний алгоритм побудови контрольних сум є некоректним\n" #: agent/gpg-agent.c:1216 agent/gpg-agent.c:2029 common/argparse.c:1766 -#: common/argparse.c:1858 g10/gpg.c:2517 scd/scdaemon.c:547 sm/gpgsm.c:1007 +#: common/argparse.c:1858 g10/gpg.c:2526 scd/scdaemon.c:547 sm/gpgsm.c:1007 #: dirmngr/dirmngr.c:1081 dirmngr/dirmngr.c:1937 #, c-format msgid "reading options from '%s'\n" msgstr "прочитати параметри з «%s»\n" -#: agent/gpg-agent.c:1332 g10/gpg.c:3751 scd/scdaemon.c:671 sm/gpgsm.c:1522 +#: agent/gpg-agent.c:1332 g10/gpg.c:3769 scd/scdaemon.c:671 sm/gpgsm.c:1522 #: dirmngr/dirmngr.c:1190 tools/gpg-connect-agent.c:1244 tools/gpgconf.c:677 #, c-format msgid "Note: '%s' is not considered an option\n" @@ -806,7 +806,7 @@ "Синтаксис: gpg-preset-passphrase [параметри] KEYGRIP\n" "Керування кешем паролів\n" -#: agent/protect-tool.c:108 g10/gpg.c:441 kbx/kbxutil.c:71 sm/gpgsm.c:210 +#: agent/protect-tool.c:108 g10/gpg.c:442 kbx/kbxutil.c:71 sm/gpgsm.c:210 #: dirmngr/dirmngr.c:171 tools/gpgconf.c:80 msgid "" "@Commands:\n" @@ -1035,7 +1035,7 @@ msgid "secret key parts are not available\n" msgstr "закриті частини ключа недоступні\n" -#: agent/cvt-openpgp.c:344 g10/card-util.c:1556 +#: agent/cvt-openpgp.c:344 g10/card-util.c:1555 #, c-format msgid "public key algorithm %d (%s) is not supported\n" msgstr "" @@ -1193,7 +1193,7 @@ msgid "out of core while allocating %lu bytes" msgstr "вихід за межі області під час спроби отримання %lu байтів" -#: common/miscellaneous.c:115 g10/card-util.c:911 tools/no-libgcrypt.c:30 +#: common/miscellaneous.c:115 g10/card-util.c:910 tools/no-libgcrypt.c:30 #, c-format msgid "error allocating enough memory: %s\n" msgstr "помилка під час спроби розподілу пам’яті: %s\n" @@ -1308,7 +1308,7 @@ msgstr "алгоритм: %s" #: common/audit.c:774 common/audit.c:776 common/audit.c:921 common/audit.c:923 -#: scd/app-openpgp.c:3557 +#: scd/app-openpgp.c:3566 #, c-format msgid "unsupported algorithm: %s" msgstr "непідтримуваний алгоритм: %s" @@ -1383,11 +1383,11 @@ msgid "Root certificate trustworthy" msgstr "Кореневий сертифікат є гідним довіри" -#: common/audit.c:1112 sm/certchain.c:1235 +#: common/audit.c:1112 sm/certchain.c:1236 msgid "no CRL found for certificate" msgstr "не знайдено списку відкликання для сертифіката" -#: common/audit.c:1115 sm/certchain.c:1245 +#: common/audit.c:1115 sm/certchain.c:1246 msgid "the available CRL is too old" msgstr "доступний список відкликання є занадто старим" @@ -1516,7 +1516,7 @@ msgid "missing argument for option \"%.50s\"\n" msgstr "не вказано аргументу до параметра «%.50s»\n" -#: common/argparse.c:558 g10/gpg.c:3525 +#: common/argparse.c:558 g10/gpg.c:3543 #, c-format msgid "invalid argument for option \"%.50s\"\n" msgstr "некоректний аргумент параметра «%.50s»\n" @@ -1615,92 +1615,92 @@ msgid "%s is too old (need %s, have %s)\n" msgstr "%s є занадто застарілою (потрібно %s, маємо %s)\n" -#: g10/armor.c:423 +#: g10/armor.c:424 #, c-format msgid "armor: %s\n" msgstr "формат ASCII: %s\n" -#: g10/armor.c:462 +#: g10/armor.c:463 #, c-format msgid "invalid armor header: " msgstr "некоректний заголовок ASCII: " -#: g10/armor.c:473 +#: g10/armor.c:474 #, c-format msgid "armor header: " msgstr "заголовок ASCII: " -#: g10/armor.c:486 +#: g10/armor.c:487 #, c-format msgid "invalid clearsig header\n" msgstr "некоректний заголовок прозорого підпису\n" -#: g10/armor.c:499 +#: g10/armor.c:500 #, c-format msgid "unknown armor header: " msgstr "некоректний заголовок ASCII: " -#: g10/armor.c:552 +#: g10/armor.c:553 #, c-format msgid "nested clear text signatures\n" msgstr "вкладені підписи нешифрованим текстом\n" -#: g10/armor.c:687 +#: g10/armor.c:688 #, c-format msgid "unexpected armor: " msgstr "неочікуваний формат ASCII: " -#: g10/armor.c:700 +#: g10/armor.c:701 #, c-format msgid "invalid dash escaped line: " msgstr "некоректний екранований дефісами рядок: " -#: g10/armor.c:872 g10/armor.c:1492 +#: g10/armor.c:873 g10/armor.c:1493 #, c-format msgid "invalid radix64 character %02X skipped\n" msgstr "пропущено некоректний символ radix64 %02X\n" -#: g10/armor.c:915 +#: g10/armor.c:916 #, c-format msgid "premature eof (no CRC)\n" msgstr "завчасний кінець файла (немає CRC)\n" -#: g10/armor.c:949 +#: g10/armor.c:950 #, c-format msgid "premature eof (in CRC)\n" msgstr "завчасний кінець файла (у CRC)\n" -#: g10/armor.c:957 +#: g10/armor.c:958 #, c-format msgid "malformed CRC\n" msgstr "помилкове форматування CRC\n" -#: g10/armor.c:961 g10/armor.c:1529 +#: g10/armor.c:962 g10/armor.c:1530 #, c-format msgid "CRC error; %06lX - %06lX\n" msgstr "помилка CRC; %06lX - %06lX\n" -#: g10/armor.c:981 +#: g10/armor.c:982 #, c-format msgid "premature eof (in trailer)\n" msgstr "завчасний кінець файла (у додатку)\n" -#: g10/armor.c:985 +#: g10/armor.c:986 #, c-format msgid "error in trailer line\n" msgstr "помилка у рядку доповнення\n" -#: g10/armor.c:1305 +#: g10/armor.c:1306 #, c-format msgid "no valid OpenPGP data found.\n" msgstr "не виявлено коректних даних OpenPGP.\n" -#: g10/armor.c:1310 +#: g10/armor.c:1311 #, c-format msgid "invalid armor: line longer than %d characters\n" msgstr "некоректний формат ASCII: рядок є довшим за %d символів\n" -#: g10/armor.c:1314 +#: g10/armor.c:1315 #, c-format msgid "" "quoted printable character in armor - probably a buggy MTA has been used\n" @@ -1844,24 +1844,24 @@ msgid "server uses an invalid certificate" msgstr "створити сертифікат відкликання" -#: g10/call-dirmngr.c:462 g10/gpg.c:4458 +#: g10/call-dirmngr.c:462 g10/gpg.c:4478 #, fuzzy, c-format #| msgid "armor: %s\n" msgid "Note: %s\n" msgstr "формат ASCII: %s\n" -#: g10/card-util.c:86 g10/card-util.c:366 g10/card-util.c:1918 +#: g10/card-util.c:86 g10/card-util.c:366 g10/card-util.c:1917 #, c-format msgid "OpenPGP card not available: %s\n" msgstr "Не вдалося отримати доступ до картки OpenPGP: %s\n" -#: g10/card-util.c:91 g10/card-util.c:1924 +#: g10/card-util.c:91 g10/card-util.c:1923 #, c-format msgid "OpenPGP card no. %s detected\n" msgstr "Виявлено картку OpenPGP з номером %s\n" -#: g10/card-util.c:97 g10/card-util.c:2253 g10/delkey.c:160 g10/keyedit.c:1423 -#: g10/keygen.c:4466 g10/revoke.c:214 g10/revoke.c:636 +#: g10/card-util.c:97 g10/card-util.c:2252 g10/delkey.c:160 g10/keyedit.c:1423 +#: g10/keygen.c:4520 g10/revoke.c:214 g10/revoke.c:636 #, c-format msgid "can't do this in batch mode\n" msgstr "це не можна робити у пакетному режимі\n" @@ -1871,14 +1871,14 @@ msgid "This command is only available for version 2 cards\n" msgstr "Цією командою можна користуватися лише для карток версії 2\n" -#: g10/card-util.c:107 scd/app-openpgp.c:2866 +#: g10/card-util.c:107 scd/app-openpgp.c:2869 #, c-format msgid "Reset Code not or not anymore available\n" msgstr "Немає коду скидання або код скидання вже недоступний\n" -#: g10/card-util.c:140 g10/card-util.c:1442 g10/card-util.c:1704 -#: g10/card-util.c:1796 g10/keyedit.c:394 g10/keyedit.c:415 g10/keyedit.c:429 -#: g10/keygen.c:1808 g10/keygen.c:1980 g10/keygen.c:2186 g10/keygen.c:2477 +#: g10/card-util.c:140 g10/card-util.c:1441 g10/card-util.c:1703 +#: g10/card-util.c:1795 g10/keyedit.c:394 g10/keyedit.c:415 g10/keyedit.c:429 +#: g10/keygen.c:1862 g10/keygen.c:2034 g10/keygen.c:2240 g10/keygen.c:2531 #: sm/certreqgen-ui.c:165 sm/certreqgen-ui.c:291 sm/certreqgen-ui.c:325 msgid "Your selection? " msgstr "Ваш вибір? " @@ -1929,79 +1929,79 @@ msgid "Error: Combined name too long (limit is %d characters).\n" msgstr "Помилка: складена назва є занадто довгою (максимум — %d символів).\n" -#: g10/card-util.c:826 +#: g10/card-util.c:825 msgid "URL to retrieve public key: " msgstr "Адреса для отримання відкритого ключа: " -#: g10/card-util.c:920 g10/decrypt-data.c:509 g10/import.c:399 g10/import.c:746 -#: g10/import.c:798 dirmngr/crlcache.c:655 dirmngr/crlcache.c:660 +#: g10/card-util.c:919 g10/decrypt-data.c:509 g10/import.c:400 g10/import.c:747 +#: g10/import.c:799 dirmngr/crlcache.c:655 dirmngr/crlcache.c:660 #: dirmngr/crlcache.c:914 dirmngr/crlcache.c:920 dirmngr/dirmngr.c:1748 #: tools/gpgconf.c:483 tools/gpgconf.c:529 #, c-format msgid "error reading '%s': %s\n" msgstr "помилка під час спроби читання «%s»: %s\n" -#: g10/card-util.c:953 g10/decrypt-data.c:512 g10/export.c:2467 +#: g10/card-util.c:952 g10/decrypt-data.c:512 g10/export.c:2586 #: dirmngr/crlcache.c:925 #, c-format msgid "error writing '%s': %s\n" msgstr "помилка під час спроби читання «%s»: %s\n" -#: g10/card-util.c:980 +#: g10/card-util.c:979 msgid "Login data (account name): " msgstr "Дані користувача (назва запису): " -#: g10/card-util.c:1018 +#: g10/card-util.c:1017 msgid "Private DO data: " msgstr "Особисті дані DO: " -#: g10/card-util.c:1103 +#: g10/card-util.c:1102 msgid "Language preferences: " msgstr "Основна мова: " -#: g10/card-util.c:1111 +#: g10/card-util.c:1110 msgid "Error: invalid length of preference string.\n" msgstr "Помилка: некоректна довжина рядка основної мови.\n" -#: g10/card-util.c:1120 +#: g10/card-util.c:1119 msgid "Error: invalid characters in preference string.\n" msgstr "Помилка: некоректні символи у рядку основної мови.\n" -#: g10/card-util.c:1142 +#: g10/card-util.c:1141 msgid "Salutation (M = Mr., F = Ms., or space): " msgstr "" -#: g10/card-util.c:1156 +#: g10/card-util.c:1155 msgid "Error: invalid response.\n" msgstr "Помилка: некоректна відповідь.\n" -#: g10/card-util.c:1178 +#: g10/card-util.c:1177 msgid "CA fingerprint: " msgstr "Відбиток CA: " -#: g10/card-util.c:1201 +#: g10/card-util.c:1200 msgid "Error: invalid formatted fingerprint.\n" msgstr "Помилка: некоректне форматування відбитка.\n" -#: g10/card-util.c:1252 +#: g10/card-util.c:1251 #, c-format msgid "key operation not possible: %s\n" msgstr "дія над ключем неможлива: %s\n" -#: g10/card-util.c:1253 +#: g10/card-util.c:1252 msgid "not an OpenPGP card" msgstr "не є карткою OpenPGP" -#: g10/card-util.c:1266 g10/keygen.c:4486 g10/keygen.c:5562 +#: g10/card-util.c:1265 g10/keygen.c:4540 g10/keygen.c:5616 #, c-format msgid "error getting current key info: %s\n" msgstr "помилка під час отримання даних поточного ключа: %s\n" -#: g10/card-util.c:1351 +#: g10/card-util.c:1350 msgid "Replace existing key? (y/N) " msgstr "Замінити вже створений ключ? (y/N або т/Н) " -#: g10/card-util.c:1368 +#: g10/card-util.c:1367 msgid "" "Note: There is no guarantee that the card supports the requested size.\n" " If the key generation does not succeed, please check the\n" @@ -2012,98 +2012,98 @@ " ознайомтеся з документацією до вашої картки, щоб\n" " визначити дозволені розміри.\n" -#: g10/card-util.c:1390 g10/keygen.c:2363 sm/certreqgen-ui.c:179 +#: g10/card-util.c:1389 g10/keygen.c:2417 sm/certreqgen-ui.c:179 #, c-format msgid "What keysize do you want? (%u) " msgstr "Якою має бути довжина ключа? (%u) " -#: g10/card-util.c:1400 g10/keygen.c:2286 g10/keygen.c:2318 +#: g10/card-util.c:1399 g10/keygen.c:2340 g10/keygen.c:2372 #: sm/certreqgen-ui.c:194 #, c-format msgid "rounded up to %u bits\n" msgstr "округлено до %u бітів\n" -#: g10/card-util.c:1408 g10/keygen.c:2371 sm/certreqgen-ui.c:184 +#: g10/card-util.c:1407 g10/keygen.c:2425 sm/certreqgen-ui.c:184 #, c-format msgid "%s keysizes must be in the range %u-%u\n" msgstr "Розміри ключів %s мають перебувати у діапазоні %u—%u\n" -#: g10/card-util.c:1427 +#: g10/card-util.c:1426 msgid "Changing card key attribute for: " msgstr "Зміна атрибута ключа картки для: " -#: g10/card-util.c:1429 +#: g10/card-util.c:1428 msgid "Signature key\n" msgstr "Ключ підписування\n" -#: g10/card-util.c:1431 +#: g10/card-util.c:1430 msgid "Encryption key\n" msgstr "Ключ шифрування\n" -#: g10/card-util.c:1433 +#: g10/card-util.c:1432 msgid "Authentication key\n" msgstr "Ключ розпізнавання\n" -#: g10/card-util.c:1435 g10/keygen.c:1926 sm/certreqgen-ui.c:157 +#: g10/card-util.c:1434 g10/keygen.c:1980 sm/certreqgen-ui.c:157 msgid "Please select what kind of key you want:\n" msgstr "Вкажіть потрібний вам тип ключа:\n" -#: g10/card-util.c:1436 sm/certreqgen-ui.c:158 +#: g10/card-util.c:1435 sm/certreqgen-ui.c:158 #, c-format msgid " (%d) RSA\n" msgstr " (%d) RSA\n" -#: g10/card-util.c:1437 +#: g10/card-util.c:1436 #, c-format msgid " (%d) ECC\n" msgstr " (%d) ECC\n" -#: g10/card-util.c:1449 g10/card-util.c:1716 g10/card-util.c:1816 -#: g10/keyedit.c:900 g10/keygen.c:1834 g10/keygen.c:1862 g10/keygen.c:1987 -#: g10/keygen.c:2222 g10/keygen.c:2505 g10/revoke.c:838 +#: g10/card-util.c:1448 g10/card-util.c:1715 g10/card-util.c:1815 +#: g10/keyedit.c:900 g10/keygen.c:1888 g10/keygen.c:1916 g10/keygen.c:2041 +#: g10/keygen.c:2276 g10/keygen.c:2559 g10/revoke.c:838 msgid "Invalid selection.\n" msgstr "Некоректний вибір.\n" -#: g10/card-util.c:1522 +#: g10/card-util.c:1521 #, c-format msgid "The card will now be re-configured to generate a key of %u bits\n" msgstr "" "Зараз налаштування картки буде змінено для створення %u-бітового ключа\n" -#: g10/card-util.c:1527 +#: g10/card-util.c:1526 #, c-format msgid "The card will now be re-configured to generate a key of type: %s\n" msgstr "Зараз налаштування картки буде змінено для створення ключа типу %s\n" -#: g10/card-util.c:1563 +#: g10/card-util.c:1562 #, c-format msgid "error changing key attribute for key %d: %s\n" msgstr "помилка під час спроби змінити атрибут ключа %d: %s\n" -#: g10/card-util.c:1579 g10/card-util.c:2106 +#: g10/card-util.c:1578 g10/card-util.c:2105 #, c-format msgid "error getting card info: %s\n" msgstr "помилка під час спроби отримання даних щодо картки: %s\n" -#: g10/card-util.c:1585 g10/card-util.c:1930 g10/card-util.c:2112 +#: g10/card-util.c:1584 g10/card-util.c:1929 g10/card-util.c:2111 #, c-format msgid "This command is not supported by this card\n" msgstr "Цією карткою не передбачено підтримки вказаної команди\n" -#: g10/card-util.c:1631 +#: g10/card-util.c:1630 msgid "Make off-card backup of encryption key? (Y/n) " msgstr "Створити резервну копію ключа шифрування поза карткою? (Y/n або Т/н) " -#: g10/card-util.c:1645 +#: g10/card-util.c:1644 #, c-format msgid "Note: keys are already stored on the card!\n" msgstr "ЗАУВАЖЕННЯ: ключі вже збережено на картці!\n" -#: g10/card-util.c:1648 +#: g10/card-util.c:1647 msgid "Replace existing keys? (y/N) " msgstr "Замірити вже створені ключі? (y/N або т/Н) " -#: g10/card-util.c:1660 +#: g10/card-util.c:1659 #, c-format msgid "" "Please note that the factory settings of the PINs are\n" @@ -2114,147 +2114,147 @@ " PIN = «%s» Адміністративний PIN = «%s»\n" "Вам слід змінити параметри за допомогою команди --change-pin\n" -#: g10/card-util.c:1695 +#: g10/card-util.c:1694 msgid "Please select the type of key to generate:\n" msgstr "Виберіть тип ключа, який слід створити:\n" -#: g10/card-util.c:1697 g10/card-util.c:1787 +#: g10/card-util.c:1696 g10/card-util.c:1786 msgid " (1) Signature key\n" msgstr " (1) Ключ підписування\n" -#: g10/card-util.c:1698 g10/card-util.c:1789 +#: g10/card-util.c:1697 g10/card-util.c:1788 msgid " (2) Encryption key\n" msgstr " (2) Ключ шифрування\n" -#: g10/card-util.c:1699 g10/card-util.c:1791 +#: g10/card-util.c:1698 g10/card-util.c:1790 msgid " (3) Authentication key\n" msgstr " (3) Ключ розпізнавання\n" -#: g10/card-util.c:1784 +#: g10/card-util.c:1783 msgid "Please select where to store the key:\n" msgstr "Виберіть сховище для зберігання ключа:\n" -#: g10/card-util.c:1830 +#: g10/card-util.c:1829 #, c-format msgid "KEYTOCARD failed: %s\n" msgstr "Помилка KEYTOCARD: %s\n" -#: g10/card-util.c:1935 +#: g10/card-util.c:1934 #, c-format msgid "Note: This command destroys all keys stored on the card!\n" msgstr "" "Зауваження: у результаті виконання цієї команди усі ключі на картці буде " "знищено!\n" -#: g10/card-util.c:1938 +#: g10/card-util.c:1937 msgid "Continue? (y/N) " msgstr "Продовжити? (y (так)/N (ні)) " -#: g10/card-util.c:1943 +#: g10/card-util.c:1942 msgid "Really do a factory reset? (enter \"yes\") " msgstr "" "Справді хочете скинути усе до типових налаштувань? (введіть «yes» («так»)) " -#: g10/card-util.c:2129 +#: g10/card-util.c:2128 #, c-format msgid "error for setup KDF: %s\n" msgstr "помилка налаштування KDF: %s\n" -#: g10/card-util.c:2158 g10/keyedit.c:1260 +#: g10/card-util.c:2157 g10/keyedit.c:1260 msgid "quit this menu" msgstr "вийти з цього меню" -#: g10/card-util.c:2160 +#: g10/card-util.c:2159 msgid "show admin commands" msgstr "показати керівні команди" -#: g10/card-util.c:2161 g10/keyedit.c:1263 +#: g10/card-util.c:2160 g10/keyedit.c:1263 msgid "show this help" msgstr "показати цю довідкову інформацію" -#: g10/card-util.c:2163 +#: g10/card-util.c:2162 msgid "list all available data" msgstr "показати всі доступні дані" -#: g10/card-util.c:2166 +#: g10/card-util.c:2165 msgid "change card holder's name" msgstr "змінити ім’я власника картки" -#: g10/card-util.c:2167 +#: g10/card-util.c:2166 msgid "change URL to retrieve key" msgstr "змінити адресу для отримання ключа" -#: g10/card-util.c:2168 +#: g10/card-util.c:2167 msgid "fetch the key specified in the card URL" msgstr "отримати ключ, вказаний у полі адреси картки" -#: g10/card-util.c:2169 +#: g10/card-util.c:2168 msgid "change the login name" msgstr "змінити ім’я користувача" -#: g10/card-util.c:2170 +#: g10/card-util.c:2169 msgid "change the language preferences" msgstr "змінити основну мову" -#: g10/card-util.c:2171 +#: g10/card-util.c:2170 #, fuzzy #| msgid "change card holder's sex" msgid "change card holder's salutation" msgstr "змінити поле статі власника картки" -#: g10/card-util.c:2173 +#: g10/card-util.c:2172 msgid "change a CA fingerprint" msgstr "змінити відбиток CA" -#: g10/card-util.c:2174 +#: g10/card-util.c:2173 msgid "toggle the signature force PIN flag" msgstr "увімкнути або вимкнути позначку примусового пінкоду підпису" -#: g10/card-util.c:2175 +#: g10/card-util.c:2174 msgid "generate new keys" msgstr "створити ключі" -#: g10/card-util.c:2176 +#: g10/card-util.c:2175 msgid "menu to change or unblock the PIN" msgstr "меню зміни або розблокування пінкоду" -#: g10/card-util.c:2177 +#: g10/card-util.c:2176 msgid "verify the PIN and list all data" msgstr "перевірити пінкод і показати список всіх даних" -#: g10/card-util.c:2178 +#: g10/card-util.c:2177 msgid "unblock the PIN using a Reset Code" msgstr "розблокувати під коду за допомогою коду скидання" -#: g10/card-util.c:2179 +#: g10/card-util.c:2178 msgid "destroy all keys and data" msgstr "знищити усі ключі і дані" -#: g10/card-util.c:2180 +#: g10/card-util.c:2179 msgid "setup KDF for PIN authentication" msgstr "налаштування KDF для розпізнавання за PIN" -#: g10/card-util.c:2181 +#: g10/card-util.c:2180 msgid "change the key attribute" msgstr "змінити атрибут ключа" -#: g10/card-util.c:2305 +#: g10/card-util.c:2304 msgid "gpg/card> " msgstr "gpg/картка> " -#: g10/card-util.c:2346 +#: g10/card-util.c:2345 msgid "Admin-only command\n" msgstr "Команда адміністратора\n" -#: g10/card-util.c:2377 +#: g10/card-util.c:2376 msgid "Admin commands are allowed\n" msgstr "Команди адміністрування дозволено\n" -#: g10/card-util.c:2379 +#: g10/card-util.c:2378 msgid "Admin commands are not allowed\n" msgstr "Команди адміністрування заборонено\n" -#: g10/card-util.c:2482 g10/keyedit.c:2229 +#: g10/card-util.c:2481 g10/keyedit.c:2229 msgid "Invalid command (try \"help\")\n" msgstr "Некоректна команда (скористайтеся командою «help»)\n" @@ -2263,21 +2263,21 @@ msgid "--output doesn't work for this command\n" msgstr "--output не працює з цією командою\n" -#: g10/decrypt.c:247 g10/gpg.c:5155 g10/keyring.c:399 g10/keyring.c:750 +#: g10/decrypt.c:247 g10/gpg.c:5175 g10/keyring.c:399 g10/keyring.c:750 #, c-format msgid "can't open '%s'\n" msgstr "не вдалося відкрити «%s»\n" -#: g10/delkey.c:83 g10/export.c:1947 g10/export.c:2230 g10/export.c:2351 -#: g10/getkey.c:2108 g10/gpg.c:5100 g10/keyedit.c:1445 g10/keyedit.c:2335 +#: g10/delkey.c:83 g10/export.c:2035 g10/export.c:2349 g10/export.c:2470 +#: g10/getkey.c:2108 g10/gpg.c:5120 g10/keyedit.c:1445 g10/keyedit.c:2335 #: g10/keyedit.c:2637 g10/keyedit.c:4600 g10/keylist.c:693 g10/keyserver.c:1092 #: g10/revoke.c:230 g10/tofu.c:2165 #, c-format msgid "key \"%s\" not found: %s\n" msgstr "ключ «%s» не знайдено: %s\n" -#: g10/delkey.c:92 g10/export.c:2015 g10/getkey.c:2116 g10/getkey.c:4517 -#: g10/gpg.c:5109 g10/keyedit.c:2308 g10/keyserver.c:1110 g10/revoke.c:236 +#: g10/delkey.c:92 g10/export.c:2103 g10/getkey.c:2116 g10/getkey.c:4517 +#: g10/gpg.c:5129 g10/keyedit.c:2308 g10/keyserver.c:1110 g10/revoke.c:236 #: g10/revoke.c:663 g10/tofu.c:2173 #, c-format msgid "error reading keyblock: %s\n" @@ -2396,13 +2396,13 @@ msgid "WARNING: '%s' is an empty file\n" msgstr "УВАГА: файл «%s» є порожнім\n" -#: g10/encrypt.c:446 g10/encrypt.c:521 g10/decrypt-data.c:266 g10/gpg.c:3959 -#: g10/gpg.c:3999 sm/decrypt.c:826 sm/encrypt.c:416 sm/gpgsm.c:1609 +#: g10/encrypt.c:446 g10/encrypt.c:521 g10/decrypt-data.c:266 g10/gpg.c:3979 +#: g10/gpg.c:4019 sm/decrypt.c:826 sm/encrypt.c:416 sm/gpgsm.c:1609 #, c-format msgid "cipher algorithm '%s' may not be used in %s mode\n" msgstr "алгоритм шифрування «%s» не можна використовувати у режимі %s\n" -#: g10/encrypt.c:455 g10/gpg.c:3965 g10/gpg.c:4011 g10/sig-check.c:175 +#: g10/encrypt.c:455 g10/gpg.c:3985 g10/gpg.c:4031 g10/sig-check.c:175 #: g10/sign.c:391 sm/gpgsm.c:1619 sm/gpgsm.c:1629 sm/sign.c:478 sm/verify.c:506 #, c-format msgid "digest algorithm '%s' may not be used in %s mode\n" @@ -2521,64 +2521,70 @@ msgid "WARNING: unable to remove temp directory '%s': %s\n" msgstr "УВАГА: не вдалося вилучити тимчасовий каталог «%s»: %s\n" -#: g10/export.c:119 +#: g10/export.c:124 msgid "export signatures that are marked as local-only" msgstr "" "експортувати підписи, які позначено як придатні лише для локального " "використання" -#: g10/export.c:121 +#: g10/export.c:126 msgid "export attribute user IDs (generally photo IDs)" msgstr "" "експортувати ідентифікатори користувача атрибута (типово фотоідентифікатори)" -#: g10/export.c:123 +#: g10/export.c:128 msgid "export revocation keys marked as \"sensitive\"" msgstr "експортувати ключі відкликання, позначені як «важливі»" -#: g10/export.c:125 +#: g10/export.c:130 msgid "remove unusable parts from key during export" msgstr "вилучити невикористовувані частини ключа під час експортування" -#: g10/export.c:127 +#: g10/export.c:132 msgid "remove as much as possible from key during export" msgstr "вилучити максимум частин з ключа під час експортування" -#: g10/export.c:133 +#: g10/export.c:138 +#, fuzzy +#| msgid "generate a revocation certificate" +msgid "export only revocation certificates" +msgstr "створити сертифікат відкликання" + +#: g10/export.c:141 msgid "use the GnuPG key backup format" msgstr "використовувати формат резервних копій ключів GnuPG" -#: g10/export.c:1291 +#: g10/export.c:1306 msgid " - skipped" msgstr " - пропущено" -#: g10/export.c:1324 g10/import.c:2085 g10/openfile.c:200 g10/openfile.c:294 +#: g10/export.c:1339 g10/import.c:2089 g10/openfile.c:200 g10/openfile.c:294 #: g10/sign.c:1012 g10/sign.c:1326 #, c-format msgid "writing to '%s'\n" msgstr "записуємо до «%s»\n" -#: g10/export.c:1769 +#: g10/export.c:1784 #, c-format msgid "key %s: key material on-card - skipped\n" msgstr "ключ %s: матеріал ключа на карті — пропущено\n" -#: g10/export.c:1964 +#: g10/export.c:2052 #, c-format msgid "exporting secret keys not allowed\n" msgstr "експортування закритих ключів заборонено\n" -#: g10/export.c:2041 +#: g10/export.c:2129 #, c-format msgid "key %s: PGP 2.x style key - skipped\n" msgstr "ключ %s: ключ у стилі PGP 2.x — пропущено\n" -#: g10/export.c:2135 +#: g10/export.c:2254 #, c-format msgid "WARNING: nothing exported\n" msgstr "УВАГА: нічого не експортовано\n" -#: g10/export.c:2432 g10/plaintext.c:153 g10/plaintext.c:162 +#: g10/export.c:2551 g10/plaintext.c:153 g10/plaintext.c:162 #: g10/plaintext.c:168 g10/plaintext.c:191 #, c-format msgid "error creating '%s': %s\n" @@ -2644,287 +2650,287 @@ msgid "using subkey %s instead of primary key %s\n" msgstr "використовуємо підключ %s замість основного ключа %s\n" -#: g10/getkey.c:4446 g10/gpg.c:2137 +#: g10/getkey.c:4446 g10/gpg.c:2146 #, c-format msgid "valid values for option '%s':\n" msgstr "коректні значення параметра «%s»:\n" -#: g10/gpg.c:443 sm/gpgsm.c:212 +#: g10/gpg.c:444 sm/gpgsm.c:212 msgid "make a signature" msgstr "створити підпис" -#: g10/gpg.c:444 +#: g10/gpg.c:445 msgid "make a clear text signature" msgstr "створити текстовий підпис" -#: g10/gpg.c:446 sm/gpgsm.c:214 +#: g10/gpg.c:447 sm/gpgsm.c:214 msgid "make a detached signature" msgstr "створити від’єднаний підпис" -#: g10/gpg.c:447 sm/gpgsm.c:215 +#: g10/gpg.c:448 sm/gpgsm.c:215 msgid "encrypt data" msgstr "зашифрувати дані" -#: g10/gpg.c:449 +#: g10/gpg.c:450 msgid "encryption only with symmetric cipher" msgstr "шифрувати лише за допомогою симетричного шифру" -#: g10/gpg.c:451 sm/gpgsm.c:217 +#: g10/gpg.c:452 sm/gpgsm.c:217 msgid "decrypt data (default)" msgstr "розшифрувати дані (типова дія)" -#: g10/gpg.c:453 sm/gpgsm.c:218 +#: g10/gpg.c:454 sm/gpgsm.c:218 msgid "verify a signature" msgstr "перевірити підпис" -#: g10/gpg.c:455 sm/gpgsm.c:219 +#: g10/gpg.c:456 sm/gpgsm.c:219 msgid "list keys" msgstr "показати список ключів" -#: g10/gpg.c:457 +#: g10/gpg.c:458 msgid "list keys and signatures" msgstr "показати список ключів і підписів" -#: g10/gpg.c:460 +#: g10/gpg.c:461 msgid "list and check key signatures" msgstr "показати список і перевірити підписи ключів" -#: g10/gpg.c:462 sm/gpgsm.c:224 +#: g10/gpg.c:463 sm/gpgsm.c:224 msgid "list keys and fingerprints" msgstr "показати список ключів і відбитків" -#: g10/gpg.c:463 sm/gpgsm.c:222 +#: g10/gpg.c:464 sm/gpgsm.c:222 msgid "list secret keys" msgstr "показати список закритих ключів" -#: g10/gpg.c:465 sm/gpgsm.c:225 +#: g10/gpg.c:466 sm/gpgsm.c:225 msgid "generate a new key pair" msgstr "створити пару ключів" -#: g10/gpg.c:468 +#: g10/gpg.c:469 msgid "quickly generate a new key pair" msgstr "швидке створення пари ключів" -#: g10/gpg.c:471 +#: g10/gpg.c:472 msgid "quickly add a new user-id" msgstr "швидке додавання нового ідентифікатора користувача" -#: g10/gpg.c:476 +#: g10/gpg.c:477 msgid "quickly revoke a user-id" msgstr "швидке відкликання ідентифікатора користувача" -#: g10/gpg.c:479 +#: g10/gpg.c:480 msgid "quickly set a new expiration date" msgstr "швидке встановлення нової дати завершення строку дії" -#: g10/gpg.c:482 +#: g10/gpg.c:483 msgid "full featured key pair generation" msgstr "повноцінне створення пари ключів" -#: g10/gpg.c:485 +#: g10/gpg.c:486 msgid "generate a revocation certificate" msgstr "створити сертифікат відкликання" -#: g10/gpg.c:488 sm/gpgsm.c:228 +#: g10/gpg.c:489 sm/gpgsm.c:228 msgid "remove keys from the public keyring" msgstr "вилучити ключі з відкритого сховища ключів" -#: g10/gpg.c:490 +#: g10/gpg.c:491 msgid "remove keys from the secret keyring" msgstr "вилучити ключів з закритого сховища ключів" -#: g10/gpg.c:492 +#: g10/gpg.c:493 msgid "quickly sign a key" msgstr "швидко підписати ключ" -#: g10/gpg.c:494 +#: g10/gpg.c:495 msgid "quickly sign a key locally" msgstr "швидко підписати ключ локально" -#: g10/gpg.c:496 +#: g10/gpg.c:497 #, fuzzy #| msgid "quickly revoke a user-id" msgid "quickly revoke a key signature" msgstr "швидке відкликання ідентифікатора користувача" -#: g10/gpg.c:497 +#: g10/gpg.c:498 msgid "sign a key" msgstr "підписати ключ" -#: g10/gpg.c:498 +#: g10/gpg.c:499 msgid "sign a key locally" msgstr "підписати ключ локально" -#: g10/gpg.c:499 +#: g10/gpg.c:500 msgid "sign or edit a key" msgstr "підписати або редагувати ключ" -#: g10/gpg.c:501 sm/gpgsm.c:246 +#: g10/gpg.c:502 sm/gpgsm.c:246 msgid "change a passphrase" msgstr "змінити пароль" -#: g10/gpg.c:505 +#: g10/gpg.c:506 msgid "export keys" msgstr "експортувати ключі" -#: g10/gpg.c:506 +#: g10/gpg.c:507 msgid "export keys to a keyserver" msgstr "експортувати ключі на сервер ключів" -#: g10/gpg.c:507 +#: g10/gpg.c:508 msgid "import keys from a keyserver" msgstr "імпортувати ключі з сервера ключів" -#: g10/gpg.c:510 +#: g10/gpg.c:511 msgid "search for keys on a keyserver" msgstr "шукати ключі на сервері ключів" -#: g10/gpg.c:512 +#: g10/gpg.c:513 msgid "update all keys from a keyserver" msgstr "оновити всі ключів з сервера ключів" -#: g10/gpg.c:520 +#: g10/gpg.c:521 msgid "import/merge keys" msgstr "імпортувати/об’єднати ключі" -#: g10/gpg.c:523 +#: g10/gpg.c:524 msgid "print the card status" msgstr "показати дані про стан картки" -#: g10/gpg.c:524 +#: g10/gpg.c:525 msgid "change data on a card" msgstr "змінити дані на картці" -#: g10/gpg.c:526 +#: g10/gpg.c:527 msgid "change a card's PIN" msgstr "змінити пінкод картки" -#: g10/gpg.c:538 +#: g10/gpg.c:539 msgid "update the trust database" msgstr "оновити базу даних довіри" -#: g10/gpg.c:548 +#: g10/gpg.c:549 msgid "print message digests" msgstr "показати контрольні суми повідомлень" -#: g10/gpg.c:552 sm/gpgsm.c:241 +#: g10/gpg.c:553 sm/gpgsm.c:241 msgid "run in server mode" msgstr "запустити у режимі сервера" -#: g10/gpg.c:554 +#: g10/gpg.c:555 msgid "|VALUE|set the TOFU policy for a key" msgstr "|VALUE|встановити вказане правило TOFU для ключа" -#: g10/gpg.c:594 +#: g10/gpg.c:595 msgid "|NAME|use NAME as default secret key" msgstr "|NAME|використовувати вказаний типовий закритий ключ" -#: g10/gpg.c:596 sm/gpgsm.c:332 +#: g10/gpg.c:597 sm/gpgsm.c:332 msgid "|NAME|encrypt to user ID NAME as well" msgstr "|NAME|шифрувати також до вказаного ідентифікатора користувача" -#: g10/gpg.c:604 +#: g10/gpg.c:605 msgid "|SPEC|set up email aliases" msgstr "|SPEC|встановити замінники адреси електронної пошти" -#: g10/gpg.c:616 +#: g10/gpg.c:617 msgid "use strict OpenPGP behavior" msgstr "строго використовувати стандарт OpenPGP" -#: g10/gpg.c:641 kbx/kbxutil.c:90 sm/gpgsm.c:412 tools/gpgconf.c:112 +#: g10/gpg.c:642 kbx/kbxutil.c:90 sm/gpgsm.c:412 tools/gpgconf.c:112 msgid "do not make any changes" msgstr "не вносити змін" -#: g10/gpg.c:642 +#: g10/gpg.c:643 msgid "prompt before overwriting" msgstr "запитувати перед перезаписом" -#: g10/gpg.c:689 sm/gpgsm.c:304 +#: g10/gpg.c:690 sm/gpgsm.c:304 #, fuzzy #| msgid "Options controlling the security" msgid "Options controlling the input" msgstr "Параметри керування захистом" -#: g10/gpg.c:707 sm/gpgsm.c:314 +#: g10/gpg.c:708 sm/gpgsm.c:314 #, fuzzy #| msgid "Options controlling the diagnostic output" msgid "Options controlling the output" msgstr "Параметри керування діагностичним виводом" -#: g10/gpg.c:709 sm/gpgsm.c:316 +#: g10/gpg.c:710 sm/gpgsm.c:316 msgid "create ascii armored output" msgstr "створити дані у форматі ASCII" -#: g10/gpg.c:713 g10/gpgv.c:82 sm/gpgsm.c:321 +#: g10/gpg.c:714 g10/gpgv.c:82 sm/gpgsm.c:321 msgid "|FILE|write output to FILE" msgstr "|FILE|записати дані до вказаного файла" -#: g10/gpg.c:726 +#: g10/gpg.c:727 msgid "use canonical text mode" msgstr "використовувати канонічний текстовий режим" -#: g10/gpg.c:743 +#: g10/gpg.c:744 msgid "|N|set compress level to N (0 disables)" msgstr "|N|встановити рівень стиснення (0 — вимкнути)" -#: g10/gpg.c:750 sm/gpgsm.c:347 +#: g10/gpg.c:751 sm/gpgsm.c:347 #, fuzzy #| msgid "Options controlling the interactivity and enforcement" msgid "Options controlling key import and export" msgstr "Параметри керування інтерактивністю та примусом" -#: g10/gpg.c:753 +#: g10/gpg.c:754 msgid "|MECHANISMS|use MECHANISMS to locate keys by mail address" msgstr "" "|MECHANISMS|використовувати вказаний механізм для пошуку ключів за адресою" -#: g10/gpg.c:756 +#: g10/gpg.c:757 #, fuzzy #| msgid "import keys from a keyserver" msgid "import missing key from a signature" msgstr "імпортувати ключі з сервера ключів" -#: g10/gpg.c:761 +#: g10/gpg.c:762 #, fuzzy #| msgid "list and check key signatures" msgid "include the public key in signatures" msgstr "показати список і перевірити підписи ключів" -#: g10/gpg.c:764 sm/gpgsm.c:350 +#: g10/gpg.c:765 sm/gpgsm.c:350 msgid "disable all access to the dirmngr" msgstr "заборонити доступ до dirmngr" -#: g10/gpg.c:776 sm/gpgsm.c:357 +#: g10/gpg.c:777 sm/gpgsm.c:357 #, fuzzy #| msgid "Options controlling the configuration" msgid "Options controlling key listings" msgstr "Параметри керування налаштуваннями" -#: g10/gpg.c:805 sm/gpgsm.c:324 +#: g10/gpg.c:806 sm/gpgsm.c:324 #, fuzzy #| msgid "list secret keys" msgid "Options to specify keys" msgstr "показати список закритих ключів" -#: g10/gpg.c:807 sm/gpgsm.c:326 +#: g10/gpg.c:808 sm/gpgsm.c:326 msgid "|USER-ID|encrypt for USER-ID" msgstr "|USER-ID|зашифрувати для вказаного ідентифікатора" -#: g10/gpg.c:815 sm/gpgsm.c:328 +#: g10/gpg.c:816 sm/gpgsm.c:328 msgid "|USER-ID|use USER-ID to sign or decrypt" msgstr "" "|USER-ID|використовувати для створення підписів або розшифрування вказаний " "ідентифікатор" -#: g10/gpg.c:866 sm/gpgsm.c:396 +#: g10/gpg.c:867 sm/gpgsm.c:396 msgid "Options for unattended use" msgstr "" -#: g10/gpg.c:885 sm/gpgsm.c:408 dirmngr/dirmngr.c:294 +#: g10/gpg.c:886 sm/gpgsm.c:408 dirmngr/dirmngr.c:294 msgid "Other options" msgstr "" -#: g10/gpg.c:953 sm/gpgsm.c:440 +#: g10/gpg.c:955 sm/gpgsm.c:440 msgid "" "@\n" "(See the man page for a complete listing of all commands and options)\n" @@ -2933,7 +2939,7 @@ "(Щоб ознайомитися зі списком команд і параметрів, скористайтеся сторінкою " "довідника (man))\n" -#: g10/gpg.c:956 +#: g10/gpg.c:958 msgid "" "@\n" "Examples:\n" @@ -2954,11 +2960,11 @@ " --list-keys [назви] показати ключі\n" " --fingerprint [назви] показати відбитки\n" -#: g10/gpg.c:1130 +#: g10/gpg.c:1139 msgid "Usage: @GPG@ [options] [files] (-h for help)" msgstr "Використання: @GPG@ [параметри] [файли] (-h — довідка)" -#: g10/gpg.c:1133 +#: g10/gpg.c:1142 msgid "" "Syntax: @GPG@ [options] [files]\n" "Sign, check, encrypt or decrypt\n" @@ -2968,7 +2974,7 @@ "Підписування, перевірка підписів, шифрування або розшифрування\n" "Типова дія залежатиме від вхідних даних\n" -#: g10/gpg.c:1144 sm/gpgsm.c:624 +#: g10/gpg.c:1153 sm/gpgsm.c:624 msgid "" "\n" "Supported algorithms:\n" @@ -2976,77 +2982,77 @@ "\n" "Підтримувані алгоритми:\n" -#: g10/gpg.c:1147 +#: g10/gpg.c:1156 msgid "Pubkey: " msgstr "Відкритий ключ: " -#: g10/gpg.c:1154 g10/keyedit.c:3338 +#: g10/gpg.c:1163 g10/keyedit.c:3338 msgid "Cipher: " msgstr "Шифр: " -#: g10/gpg.c:1161 +#: g10/gpg.c:1170 msgid "Hash: " msgstr "Хеш: " -#: g10/gpg.c:1168 g10/keyedit.c:3404 +#: g10/gpg.c:1177 g10/keyedit.c:3404 msgid "Compression: " msgstr "Стиснення: " -#: g10/gpg.c:1241 sm/gpgsm.c:698 +#: g10/gpg.c:1250 sm/gpgsm.c:698 #, c-format msgid "usage: %s [options] %s\n" msgstr "користування: %s [параметри] %s\n" -#: g10/gpg.c:1436 sm/gpgsm.c:791 +#: g10/gpg.c:1445 sm/gpgsm.c:791 #, c-format msgid "conflicting commands\n" msgstr "несумісні команди\n" -#: g10/gpg.c:1454 +#: g10/gpg.c:1463 #, c-format msgid "no = sign found in group definition '%s'\n" msgstr "у визначенні групи «%s» немає знаку «=»\n" -#: g10/gpg.c:1652 +#: g10/gpg.c:1661 #, c-format msgid "WARNING: unsafe ownership on homedir '%s'\n" msgstr "УВАГА: визначення власника домашнього каталогу «%s» не є безпечним\n" -#: g10/gpg.c:1655 +#: g10/gpg.c:1664 #, c-format msgid "WARNING: unsafe ownership on configuration file '%s'\n" msgstr "УВАГА: визначення власника у файлі налаштувань «%s» не є безпечним\n" -#: g10/gpg.c:1658 +#: g10/gpg.c:1667 #, c-format msgid "WARNING: unsafe ownership on extension '%s'\n" msgstr "УВАГА: визначення власника додатка «%s» не є безпечним\n" -#: g10/gpg.c:1664 +#: g10/gpg.c:1673 #, c-format msgid "WARNING: unsafe permissions on homedir '%s'\n" msgstr "" "УВАГА: визначення прав доступу до домашнього каталогу «%s» не є безпечним\n" -#: g10/gpg.c:1667 +#: g10/gpg.c:1676 #, c-format msgid "WARNING: unsafe permissions on configuration file '%s'\n" msgstr "" "УВАГА: визначення прав доступу до файла налаштувань «%s» не є безпечним\n" -#: g10/gpg.c:1670 +#: g10/gpg.c:1679 #, c-format msgid "WARNING: unsafe permissions on extension '%s'\n" msgstr "УВАГА: визначення прав доступу до додатка «%s» не є безпечним\n" -#: g10/gpg.c:1676 +#: g10/gpg.c:1685 #, c-format msgid "WARNING: unsafe enclosing directory ownership on homedir '%s'\n" msgstr "" "УВАГА: визначення власника підлеглого каталогу домашнього каталогу «%s» не є " "безпечним\n" -#: g10/gpg.c:1679 +#: g10/gpg.c:1688 #, c-format msgid "" "WARNING: unsafe enclosing directory ownership on configuration file '%s'\n" @@ -3054,21 +3060,21 @@ "УВАГА: визначення власника у підлеглому каталозі, визначеному файлом " "налаштувань «%s», не є безпечним\n" -#: g10/gpg.c:1682 +#: g10/gpg.c:1691 #, c-format msgid "WARNING: unsafe enclosing directory ownership on extension '%s'\n" msgstr "" "УВАГА: визначення власника підлеглого каталогу у додатку «%s» не є " "безпечним\n" -#: g10/gpg.c:1688 +#: g10/gpg.c:1697 #, c-format msgid "WARNING: unsafe enclosing directory permissions on homedir '%s'\n" msgstr "" "УВАГА: визначення прав доступу до підлеглого каталогу домашнього каталогу " "«%s» не є безпечним\n" -#: g10/gpg.c:1691 +#: g10/gpg.c:1700 #, c-format msgid "" "WARNING: unsafe enclosing directory permissions on configuration file '%s'\n" @@ -3076,469 +3082,469 @@ "УВАГА: визначення прав доступу до підлеглого каталогу, визначеного файлом " "налаштувань «%s», не є безпечним\n" -#: g10/gpg.c:1694 +#: g10/gpg.c:1703 #, c-format msgid "WARNING: unsafe enclosing directory permissions on extension '%s'\n" msgstr "" "УВАГА: визначення прав доступу до підлеглого каталогу у додатку «%s» не є " "безпечним\n" -#: g10/gpg.c:1910 +#: g10/gpg.c:1919 #, c-format msgid "unknown configuration item '%s'\n" msgstr "невідомий пункт налаштувань «%s»\n" -#: g10/gpg.c:2009 +#: g10/gpg.c:2018 msgid "display photo IDs during key listings" msgstr "показувати фотоідентифікатори у списках ключів" -#: g10/gpg.c:2011 +#: g10/gpg.c:2020 msgid "show key usage information during key listings" msgstr "показувати дані щодо використання ключа у списках ключів" -#: g10/gpg.c:2013 +#: g10/gpg.c:2022 msgid "show policy URLs during signature listings" msgstr "показувати адреси правил у списках підписів" -#: g10/gpg.c:2015 +#: g10/gpg.c:2024 msgid "show all notations during signature listings" msgstr "показувати всі примітки у списках підписів" -#: g10/gpg.c:2017 +#: g10/gpg.c:2026 msgid "show IETF standard notations during signature listings" msgstr "показувати стандартні примітки IETF у списках підписів" -#: g10/gpg.c:2021 +#: g10/gpg.c:2030 msgid "show user-supplied notations during signature listings" msgstr "показувати примітки користувача у списках підписів" -#: g10/gpg.c:2023 +#: g10/gpg.c:2032 msgid "show preferred keyserver URLs during signature listings" msgstr "показувати адреси основних серверів ключів у списках підписів" -#: g10/gpg.c:2025 +#: g10/gpg.c:2034 msgid "show user ID validity during key listings" msgstr "показувати чинність ідентифікаторів користувачів у списках ключів" -#: g10/gpg.c:2027 +#: g10/gpg.c:2036 msgid "show revoked and expired user IDs in key listings" msgstr "" "показувати відкликані та застарілі ідентифікатори користувачів у списках " "ключів" -#: g10/gpg.c:2029 +#: g10/gpg.c:2038 msgid "show revoked and expired subkeys in key listings" msgstr "показувати відкликані та застарілі підключі у списках ключів" -#: g10/gpg.c:2031 +#: g10/gpg.c:2040 msgid "show the keyring name in key listings" msgstr "показувати назву сховища ключів у списках ключів" -#: g10/gpg.c:2033 +#: g10/gpg.c:2042 msgid "show expiration dates during signature listings" msgstr "показувати дати завершення строків дії у списку підписів" -#: g10/gpg.c:2148 +#: g10/gpg.c:2157 #, c-format msgid "unknown TOFU policy '%s'\n" msgstr "невідомі правила TOFU «%s»\n" -#: g10/gpg.c:2150 +#: g10/gpg.c:2159 #, c-format msgid "(use \"help\" to list choices)\n" msgstr "(команда «help» виводить список можливих варіантів)\n" -#: g10/gpg.c:2240 g10/keyedit.c:1719 +#: g10/gpg.c:2249 g10/keyedit.c:1719 #, c-format msgid "This command is not allowed while in %s mode.\n" msgstr "Цією командою не можна користуватися у режимі %s.\n" -#: g10/gpg.c:2878 g10/gpg.c:3718 g10/gpg.c:3730 +#: g10/gpg.c:2896 g10/gpg.c:3736 g10/gpg.c:3748 #, c-format msgid "Note: %s is not for normal use!\n" msgstr "ЗАУВАЖЕННЯ: %s не призначено для звичайного використання!\n" -#: g10/gpg.c:3053 g10/gpg.c:3065 +#: g10/gpg.c:3071 g10/gpg.c:3083 #, c-format msgid "'%s' is not a valid signature expiration\n" msgstr "«%s» не є коректним записом завершення строку дії підпису\n" -#: g10/gpg.c:3087 +#: g10/gpg.c:3105 #, c-format msgid "\"%s\" is not a proper mail address\n" msgstr "«%s» не є коректною адресою електронної пошти\n" -#: g10/gpg.c:3119 sm/gpgsm.c:1121 +#: g10/gpg.c:3137 sm/gpgsm.c:1121 #, c-format msgid "invalid pinentry mode '%s'\n" msgstr "некоректний режим pinentry, «%s»\n" -#: g10/gpg.c:3125 sm/gpgsm.c:1127 +#: g10/gpg.c:3143 sm/gpgsm.c:1127 #, c-format msgid "invalid request origin '%s'\n" msgstr "некоректне походження запиту «%s»\n" -#: g10/gpg.c:3179 +#: g10/gpg.c:3197 #, c-format msgid "'%s' is not a valid character set\n" msgstr "«%s» не є коректним набором символів\n" -#: g10/gpg.c:3201 g10/gpg.c:3415 g10/keyedit.c:5338 +#: g10/gpg.c:3219 g10/gpg.c:3433 g10/keyedit.c:5338 #, c-format msgid "could not parse keyserver URL\n" msgstr "не вдалося обробити адресу сервера ключів\n" -#: g10/gpg.c:3219 +#: g10/gpg.c:3237 #, c-format msgid "%s:%d: invalid keyserver options\n" msgstr "%s:%d: некоректні параметри сервера ключів\n" -#: g10/gpg.c:3222 +#: g10/gpg.c:3240 #, c-format msgid "invalid keyserver options\n" msgstr "некоректні параметри сервера ключів\n" -#: g10/gpg.c:3229 +#: g10/gpg.c:3247 #, c-format msgid "%s:%d: invalid import options\n" msgstr "%s:%d: некоректні параметри імпортування\n" -#: g10/gpg.c:3232 +#: g10/gpg.c:3250 #, c-format msgid "invalid import options\n" msgstr "некоректні параметри імпортування\n" -#: g10/gpg.c:3238 g10/gpg.c:3253 +#: g10/gpg.c:3256 g10/gpg.c:3271 #, c-format msgid "invalid filter option: %s\n" msgstr "некоректний параметр фільтрування: %s\n" -#: g10/gpg.c:3244 +#: g10/gpg.c:3262 #, c-format msgid "%s:%d: invalid export options\n" msgstr "%s:%d: некоректні параметри експортування\n" -#: g10/gpg.c:3247 +#: g10/gpg.c:3265 #, c-format msgid "invalid export options\n" msgstr "некоректні параметри експортування\n" -#: g10/gpg.c:3259 +#: g10/gpg.c:3277 #, c-format msgid "%s:%d: invalid list options\n" msgstr "%s:%d: некоректні параметри побудови списку\n" -#: g10/gpg.c:3262 +#: g10/gpg.c:3280 #, c-format msgid "invalid list options\n" msgstr "некоректні параметри побудови списку\n" -#: g10/gpg.c:3270 +#: g10/gpg.c:3288 msgid "display photo IDs during signature verification" msgstr "показувати фотоідентифікатори під час перевірки підписів" -#: g10/gpg.c:3272 +#: g10/gpg.c:3290 msgid "show policy URLs during signature verification" msgstr "показувати адреси правил під час перевірки підписів" -#: g10/gpg.c:3274 +#: g10/gpg.c:3292 msgid "show all notations during signature verification" msgstr "показувати всі примітки під час перевірки підписів" -#: g10/gpg.c:3276 +#: g10/gpg.c:3294 msgid "show IETF standard notations during signature verification" msgstr "показувати стандартні примітки IETF під час перевірки підписів" -#: g10/gpg.c:3280 +#: g10/gpg.c:3298 msgid "show user-supplied notations during signature verification" msgstr "показувати вказані користувачем примітки під час перевірки підписів" -#: g10/gpg.c:3282 +#: g10/gpg.c:3300 msgid "show preferred keyserver URLs during signature verification" msgstr "" "показувати адреси основних серверів ключів у списках перевірки підписів" -#: g10/gpg.c:3284 +#: g10/gpg.c:3302 msgid "show user ID validity during signature verification" msgstr "" "показувати чинність ідентифікаторів користувача під час перевірки підписів" -#: g10/gpg.c:3286 +#: g10/gpg.c:3304 msgid "show revoked and expired user IDs in signature verification" msgstr "" "показувати відкликані та застарілі ідентифікатори користувачів у списках " "перевірки підписів" -#: g10/gpg.c:3288 +#: g10/gpg.c:3306 msgid "show only the primary user ID in signature verification" msgstr "" "показувати лише основний ідентифікатор користувача під час перевірки підписів" -#: g10/gpg.c:3290 +#: g10/gpg.c:3308 msgid "validate signatures with PKA data" msgstr "перевірити підписи за допомогою даних PKA" -#: g10/gpg.c:3292 +#: g10/gpg.c:3310 msgid "elevate the trust of signatures with valid PKA data" msgstr "підняти рівень довіри до підписів з коректними даними PKA" -#: g10/gpg.c:3299 +#: g10/gpg.c:3317 #, c-format msgid "%s:%d: invalid verify options\n" msgstr "%s:%d: некоректні параметри перевірки\n" -#: g10/gpg.c:3302 +#: g10/gpg.c:3320 #, c-format msgid "invalid verify options\n" msgstr "некоректні параметри перевірки\n" -#: g10/gpg.c:3309 +#: g10/gpg.c:3327 #, c-format msgid "unable to set exec-path to %s\n" msgstr "не вдалося встановити шлях для запуску у значення %s\n" -#: g10/gpg.c:3513 +#: g10/gpg.c:3531 #, c-format msgid "%s:%d: invalid auto-key-locate list\n" msgstr "%s:%d: некоректний список auto-key-locate\n" -#: g10/gpg.c:3516 +#: g10/gpg.c:3534 #, c-format msgid "invalid auto-key-locate list\n" msgstr "некоректний список auto-key-locate\n" -#: g10/gpg.c:3700 sm/gpgsm.c:1492 +#: g10/gpg.c:3718 sm/gpgsm.c:1492 #, c-format msgid "WARNING: program may create a core file!\n" msgstr "УВАГА: можливе створення дампу пам’яті програми!\n" -#: g10/gpg.c:3711 +#: g10/gpg.c:3729 #, c-format msgid "WARNING: %s overrides %s\n" msgstr "УВАГА: %s перевизначає %s\n" -#: g10/gpg.c:3720 +#: g10/gpg.c:3738 #, c-format msgid "%s not allowed with %s!\n" msgstr "%s не можна використовувати разом з %s!\n" -#: g10/gpg.c:3723 +#: g10/gpg.c:3741 #, c-format msgid "%s makes no sense with %s!\n" msgstr "%s є зайвим, якщо використано %s!\n" -#: g10/gpg.c:3738 sm/gpgsm.c:1509 dirmngr/dirmngr.c:1205 +#: g10/gpg.c:3756 sm/gpgsm.c:1509 dirmngr/dirmngr.c:1205 #, c-format msgid "WARNING: running with faked system time: " msgstr "УВАГА: запущено з фіктивним системним часом: " -#: g10/gpg.c:3759 +#: g10/gpg.c:3777 #, c-format msgid "will not run with insecure memory due to %s\n" msgstr "не буде запущено з помилками у захисті пам’яті через %s\n" -#: g10/gpg.c:3804 g10/gpg.c:3828 sm/gpgsm.c:1579 +#: g10/gpg.c:3824 g10/gpg.c:3848 sm/gpgsm.c:1579 #, c-format msgid "selected cipher algorithm is invalid\n" msgstr "вибраний алгоритм шифрування є некоректним\n" -#: g10/gpg.c:3816 +#: g10/gpg.c:3836 #, c-format msgid "selected compression algorithm is invalid\n" msgstr "вибраний алгоритм стискання є некоректним\n" -#: g10/gpg.c:3822 +#: g10/gpg.c:3842 #, c-format msgid "selected certification digest algorithm is invalid\n" msgstr "" "вибраний алгоритм створення контрольних сум для сертифікації є некоректним\n" -#: g10/gpg.c:3837 +#: g10/gpg.c:3857 #, c-format msgid "completes-needed must be greater than 0\n" msgstr "значення completes-needed має бути більшим за 0\n" -#: g10/gpg.c:3839 +#: g10/gpg.c:3859 #, c-format msgid "marginals-needed must be greater than 1\n" msgstr "значення marginals-needed має перевищувати 1\n" -#: g10/gpg.c:3841 +#: g10/gpg.c:3861 #, c-format msgid "max-cert-depth must be in the range from 1 to 255\n" msgstr "значення max-cert-depth має перебувати у діапазоні від 1 до 255\n" -#: g10/gpg.c:3843 +#: g10/gpg.c:3863 #, c-format 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:3845 +#: g10/gpg.c:3865 #, c-format msgid "invalid min-cert-level; must be 1, 2, or 3\n" msgstr "некоректне значення min-cert-level; має бути 1, 2 або 3\n" -#: g10/gpg.c:3849 +#: g10/gpg.c:3869 #, c-format msgid "Note: simple S2K mode (0) is strongly discouraged\n" msgstr "" "ЗАУВАЖЕННЯ: наполегливо не рекомендуємо вам користуватися простим режимом " "S2K (0)\n" -#: g10/gpg.c:3853 +#: g10/gpg.c:3873 #, c-format msgid "invalid S2K mode; must be 0, 1 or 3\n" msgstr "некоректний режим S2K; мало бути вказано 0, 1 або 3\n" -#: g10/gpg.c:3860 +#: g10/gpg.c:3880 #, c-format msgid "invalid default preferences\n" msgstr "некоректні типові параметри\n" -#: g10/gpg.c:3864 +#: g10/gpg.c:3884 #, c-format msgid "invalid personal cipher preferences\n" msgstr "некоректні особисті параметри шифрування\n" -#: g10/gpg.c:3868 +#: g10/gpg.c:3888 #, c-format msgid "invalid personal digest preferences\n" msgstr "некоректні особисті параметри контрольної суми\n" -#: g10/gpg.c:3872 +#: g10/gpg.c:3892 #, c-format msgid "invalid personal compress preferences\n" msgstr "некоректні особисті параметри стискання\n" -#: g10/gpg.c:3908 +#: g10/gpg.c:3928 #, c-format msgid "%s does not yet work with %s\n" msgstr "%s ще не може працювати разом з %s\n" -#: g10/gpg.c:3971 +#: g10/gpg.c:3991 #, c-format msgid "compression algorithm '%s' may not be used in %s mode\n" msgstr "алгоритм стискання «%s» не можна використовувати у режимі %s\n" -#: g10/gpg.c:4115 +#: g10/gpg.c:4135 #, c-format msgid "failed to initialize the TrustDB: %s\n" msgstr "не вдалося ініціалізувати базу даних надійності (TrustDB): %s\n" -#: g10/gpg.c:4127 +#: g10/gpg.c:4147 #, c-format msgid "WARNING: recipients (-r) given without using public key encryption\n" msgstr "" "УВАГА: отримувачів (-r) вказано без використання шифрування відкритим " "ключем\n" -#: g10/gpg.c:4199 +#: g10/gpg.c:4219 #, c-format msgid "symmetric encryption of '%s' failed: %s\n" msgstr "помилка під час спроби симетричного шифрування «%s»: %s\n" -#: g10/gpg.c:4228 +#: g10/gpg.c:4248 #, c-format msgid "you cannot use --symmetric --encrypt with --s2k-mode 0\n" msgstr "" "не можна використовувати комбінацію --symmetric --encrypt у режимі --s2k-" "mode 0\n" -#: g10/gpg.c:4231 +#: g10/gpg.c:4251 #, c-format msgid "you cannot use --symmetric --encrypt in %s mode\n" msgstr "" "не можна використовувати комбінацію --symmetric --encrypt у режимі %s\n" -#: g10/gpg.c:4289 +#: g10/gpg.c:4309 #, c-format msgid "you cannot use --symmetric --sign --encrypt with --s2k-mode 0\n" msgstr "" "не можна використовувати комбінацію --symmetric --sign --encrypt у режимі --" "s2k-mode 0\n" -#: g10/gpg.c:4292 +#: g10/gpg.c:4312 #, c-format msgid "you cannot use --symmetric --sign --encrypt in %s mode\n" msgstr "" "не можна використовувати комбінацію --symmetric --encrypt у режимі %s\n" -#: g10/gpg.c:4692 g10/keyserver.c:1648 +#: g10/gpg.c:4712 g10/keyserver.c:1648 #, c-format msgid "keyserver send failed: %s\n" msgstr "помилка під час надсилання даних на сервер ключів: %s\n" -#: g10/gpg.c:4697 +#: g10/gpg.c:4717 #, c-format msgid "keyserver receive failed: %s\n" msgstr "помилка під час спроби отримання даних з сервера ключів: %s\n" -#: g10/gpg.c:4703 +#: g10/gpg.c:4723 #, c-format msgid "key export failed: %s\n" msgstr "помилка під час спроби експортування ключа: %s\n" -#: g10/gpg.c:4716 +#: g10/gpg.c:4736 #, c-format msgid "export as ssh key failed: %s\n" msgstr "спроба експортування ключа ssh зазнала невдачі: %s\n" -#: g10/gpg.c:4728 +#: g10/gpg.c:4748 #, c-format msgid "keyserver search failed: %s\n" msgstr "помилка пошуку на сервері ключів: %s\n" -#: g10/gpg.c:4741 +#: g10/gpg.c:4761 #, c-format msgid "keyserver refresh failed: %s\n" msgstr "помилка оновлення з сервера ключів: %s\n" -#: g10/gpg.c:4810 +#: g10/gpg.c:4830 #, c-format msgid "dearmoring failed: %s\n" msgstr "помилка перетворення з формату ASCII: %s\n" -#: g10/gpg.c:4821 +#: g10/gpg.c:4841 #, c-format msgid "enarmoring failed: %s\n" msgstr "помилка перетворення у формат ASCII: %s\n" -#: g10/gpg.c:4913 +#: g10/gpg.c:4933 #, c-format msgid "invalid hash algorithm '%s'\n" msgstr "некоректний алгоритм хешування «%s»\n" -#: g10/gpg.c:5065 g10/tofu.c:2153 +#: g10/gpg.c:5085 g10/tofu.c:2153 #, c-format msgid "error parsing key specification '%s': %s\n" msgstr "помилка під час спроби обробки специфікації ключа «%s»: %s\n" -#: g10/gpg.c:5078 +#: g10/gpg.c:5098 #, c-format msgid "'%s' does not appear to be a valid key ID, fingerprint or keygrip\n" msgstr "«%s» не є коректним ідентифікатором ключа, відбитком або кодом\n" -#: g10/gpg.c:5134 +#: g10/gpg.c:5154 #, c-format msgid "WARNING: no command supplied. Trying to guess what you mean ...\n" msgstr "УВАГА: команд не надано. Намагаємося вгадати, що вам потрібно...\n" -#: g10/gpg.c:5145 +#: g10/gpg.c:5165 #, c-format msgid "Go ahead and type your message ...\n" msgstr "Почніть вводити ваше повідомлення...\n" -#: g10/gpg.c:5490 +#: g10/gpg.c:5510 #, c-format msgid "the given certification policy URL is invalid\n" msgstr "вказана адреса правил сертифікації є некоректною\n" -#: g10/gpg.c:5492 +#: g10/gpg.c:5512 #, c-format msgid "the given signature policy URL is invalid\n" msgstr "вказана адреса правил підписування є некоректною\n" -#: g10/gpg.c:5525 +#: g10/gpg.c:5545 #, c-format msgid "the given preferred keyserver URL is invalid\n" msgstr "вказана адреса основного сервера ключів є некоректною\n" @@ -3580,145 +3586,145 @@ msgid "No help available for '%s'" msgstr "Довідки щодо %s не виявлено" -#: g10/import.c:169 +#: g10/import.c:170 msgid "import signatures that are marked as local-only" msgstr "імпортувати підписи, позначені як лише локальні" -#: g10/import.c:172 +#: g10/import.c:173 msgid "repair damage from the pks keyserver during import" msgstr "відновлювати пошкодження сервером ключів pks під час імпортування" -#: g10/import.c:175 +#: g10/import.c:176 msgid "do not clear the ownertrust values during import" msgstr "не вилучати значень власної довіри під час імпортування" -#: g10/import.c:178 +#: g10/import.c:179 msgid "do not update the trustdb after import" msgstr "не оновлювати базу даних довіри після імпортування" -#: g10/import.c:181 +#: g10/import.c:182 msgid "show key during import" msgstr "показувати ключ під час імпортування" -#: g10/import.c:184 +#: g10/import.c:185 msgid "only accept updates to existing keys" msgstr "приймати оновлення лише вже створених ключів" -#: g10/import.c:187 +#: g10/import.c:188 msgid "remove unusable parts from key after import" msgstr "вилучити невикористані частини ключа після імпортування" -#: g10/import.c:190 +#: g10/import.c:191 msgid "remove as much as possible from key after import" msgstr "вилучити максимум частин з ключа після імпортування" -#: g10/import.c:193 +#: g10/import.c:194 msgid "ignore key-signatures which are not self-signatures" msgstr "" -#: g10/import.c:196 +#: g10/import.c:197 msgid "run import filters and export key immediately" msgstr "запустити фільтри імпортування та експортувати ключ негайно" -#: g10/import.c:199 +#: g10/import.c:200 msgid "assume the GnuPG key backup format" msgstr "припускати формат резервних копій ключів GnuPG" -#: g10/import.c:203 +#: g10/import.c:204 msgid "repair keys on import" msgstr "відновлювати ключі при імпортуванні" -#: g10/import.c:392 g10/import.c:711 +#: g10/import.c:393 g10/import.c:712 #, c-format msgid "skipping block of type %d\n" msgstr "пропускаємо блок типу %d\n" -#: g10/import.c:728 +#: g10/import.c:729 #, c-format msgid "%lu keys processed so far\n" msgstr "оброблено %lu ключів\n" -#: g10/import.c:814 +#: g10/import.c:815 #, c-format msgid "Total number processed: %lu\n" msgstr "Загалом оброблено: %lu\n" -#: g10/import.c:817 +#: g10/import.c:818 #, c-format msgid " skipped PGP-2 keys: %lu\n" msgstr " пропущено ключів PGP-2: %lu\n" -#: g10/import.c:819 +#: g10/import.c:820 #, c-format msgid " skipped new keys: %lu\n" msgstr "пропущено нових ключів: %lu\n" -#: g10/import.c:822 +#: g10/import.c:823 #, c-format msgid " w/o user IDs: %lu\n" msgstr " без ід. користувача: %lu\n" -#: g10/import.c:825 sm/import.c:130 +#: g10/import.c:826 sm/import.c:130 #, c-format msgid " imported: %lu" msgstr " імпортовано: %lu" -#: g10/import.c:829 sm/import.c:134 +#: g10/import.c:830 sm/import.c:134 #, c-format msgid " unchanged: %lu\n" msgstr " без змін: %lu\n" -#: g10/import.c:831 +#: g10/import.c:832 #, c-format msgid " new user IDs: %lu\n" msgstr "нових ід. користувачів: %lu\n" -#: g10/import.c:833 +#: g10/import.c:834 #, c-format msgid " new subkeys: %lu\n" msgstr " нових підключів: %lu\n" -#: g10/import.c:835 +#: g10/import.c:836 #, c-format msgid " new signatures: %lu\n" msgstr " нових підписів: %lu\n" -#: g10/import.c:837 +#: g10/import.c:838 #, c-format msgid " new key revocations: %lu\n" msgstr "відкликань нових ключів: %lu\n" -#: g10/import.c:839 sm/import.c:136 +#: g10/import.c:840 sm/import.c:136 #, c-format msgid " secret keys read: %lu\n" msgstr "прочитано закритих ключів: %lu\n" -#: g10/import.c:841 sm/import.c:138 +#: g10/import.c:842 sm/import.c:138 #, c-format msgid " secret keys imported: %lu\n" msgstr "імпортовано закр. ключів: %lu\n" -#: g10/import.c:843 sm/import.c:140 +#: g10/import.c:844 sm/import.c:140 #, c-format msgid " secret keys unchanged: %lu\n" msgstr " закр. ключів без змін: %lu\n" -#: g10/import.c:845 sm/import.c:142 +#: g10/import.c:846 sm/import.c:142 #, c-format msgid " not imported: %lu\n" msgstr " не імпортовано: %lu\n" -#: g10/import.c:847 +#: g10/import.c:848 #, c-format msgid " signatures cleaned: %lu\n" msgstr " вилучених підписів: %lu\n" -#: g10/import.c:849 +#: g10/import.c:850 #, c-format msgid " user IDs cleaned: %lu\n" msgstr " вилучених ід. корист.: %lu\n" -#: g10/import.c:1276 +#: g10/import.c:1277 #, c-format msgid "" "WARNING: key %s contains preferences for unavailable\n" @@ -3727,169 +3733,169 @@ "УВАГА: у ключі %s містяться записи надання переваги\n" "недоступним алгоритмам для таких ід. користувачів:\n" -#: g10/import.c:1318 +#: g10/import.c:1319 #, c-format msgid " \"%s\": preference for cipher algorithm %s\n" msgstr " «%s»: перевага алгоритму шифрування %s\n" -#: g10/import.c:1333 +#: g10/import.c:1334 #, c-format msgid " \"%s\": preference for digest algorithm %s\n" msgstr " «%s»: перевага алгоритму контрольних сум %s\n" -#: g10/import.c:1345 +#: g10/import.c:1346 #, c-format msgid " \"%s\": preference for compression algorithm %s\n" msgstr " «%s»: перевага алгоритму стискання %s\n" -#: g10/import.c:1358 +#: g10/import.c:1359 #, c-format msgid "it is strongly suggested that you update your preferences and\n" msgstr "наполегливо рекомендуємо вам оновити записи переваг і\n" -#: g10/import.c:1360 +#: g10/import.c:1361 #, c-format msgid "re-distribute this key to avoid potential algorithm mismatch problems\n" msgstr "" "повторно поширити цей ключ, щоб уникнути потенційних проблем з алгоритмами\n" -#: g10/import.c:1385 +#: g10/import.c:1386 #, c-format msgid "you can update your preferences with: gpg --edit-key %s updpref save\n" msgstr "" "оновити записи перевад можна за допомогою команди: gpg --edit-key %s updpref " "save\n" -#: g10/import.c:1899 g10/import.c:3013 +#: g10/import.c:1902 g10/import.c:3028 #, c-format msgid "key %s: no user ID\n" msgstr "ключ %s: немає ідентифікатор користувача\n" -#: g10/import.c:1905 +#: g10/import.c:1908 #, c-format msgid "key %s: %s\n" msgstr "ключ %s: %s\n" -#: g10/import.c:1906 g10/import.c:2985 +#: g10/import.c:1909 g10/import.c:3000 msgid "rejected by import screener" msgstr "відкинуто екранувальником імпорту" -#: g10/import.c:1950 +#: g10/import.c:1953 #, c-format msgid "key %s: PKS subkey corruption repaired\n" msgstr "ключ %s: відновлено пошкоджений підключ PKS\n" -#: g10/import.c:1971 +#: g10/import.c:1974 #, c-format msgid "key %s: accepted non self-signed user ID \"%s\"\n" msgstr "ключ %s: прийнято несамопідписаний ідентифікатор користувача «%s»\n" -#: g10/import.c:1981 g10/import.c:2012 +#: g10/import.c:1985 g10/import.c:2016 #, c-format msgid "key %s: no valid user IDs\n" msgstr "ключ %s: немає чинних ідентифікаторів користувача\n" -#: g10/import.c:1983 +#: g10/import.c:1987 #, c-format msgid "this may be caused by a missing self-signature\n" msgstr "причиною цього може бути те, що немає самопідпису\n" -#: g10/import.c:2062 g10/import.c:3399 +#: g10/import.c:2066 g10/import.c:3415 #, c-format msgid "key %s: public key not found: %s\n" msgstr "ключ %s: не знайдено відкритий ключ: %s\n" -#: g10/import.c:2068 +#: g10/import.c:2072 #, c-format msgid "key %s: new key - skipped\n" msgstr "ключ %s: новий ключ — пропущено\n" -#: g10/import.c:2080 +#: g10/import.c:2084 #, c-format msgid "no writable keyring found: %s\n" msgstr "не виявлено придатного до запису сховища ключів: %s\n" -#: g10/import.c:2112 g10/import.c:2214 g10/import.c:3476 +#: g10/import.c:2116 g10/import.c:2218 g10/import.c:3492 #, c-format msgid "error writing keyring '%s': %s\n" msgstr "помилка під час спроби запису сховища ключів «%s»: %s\n" -#: g10/import.c:2135 +#: g10/import.c:2139 #, c-format msgid "key %s: public key \"%s\" imported\n" msgstr "ключ %s: імпортовано відкритий ключ «%s»\n" -#: g10/import.c:2162 +#: g10/import.c:2166 #, c-format msgid "key %s: doesn't match our copy\n" msgstr "ключ %s: не відповідає нашій копії\n" -#: g10/import.c:2230 +#: g10/import.c:2234 #, c-format msgid "key %s: \"%s\" 1 new user ID\n" msgstr "ключ %s: «%s» 1 новий ідентифікатор користувача\n" -#: g10/import.c:2233 +#: g10/import.c:2237 #, c-format msgid "key %s: \"%s\" %d new user IDs\n" msgstr "ключ %s: «%s» %d нових ідентифікаторів користувачів\n" -#: g10/import.c:2236 +#: g10/import.c:2240 #, c-format msgid "key %s: \"%s\" 1 new signature\n" msgstr "ключ %s: «%s» 1 новий підпис\n" -#: g10/import.c:2239 +#: g10/import.c:2243 #, c-format msgid "key %s: \"%s\" %d new signatures\n" msgstr "ключ %s: «%s» %d нових підписів\n" -#: g10/import.c:2242 +#: g10/import.c:2246 #, c-format msgid "key %s: \"%s\" 1 new subkey\n" msgstr "ключ %s: «%s» 1 новий підключ\n" -#: g10/import.c:2245 +#: g10/import.c:2249 #, c-format msgid "key %s: \"%s\" %d new subkeys\n" msgstr "ключ %s: «%s» %d нових підключів\n" -#: g10/import.c:2248 +#: g10/import.c:2252 #, c-format msgid "key %s: \"%s\" %d signature cleaned\n" msgstr "ключ %s: «%s» вилучено %d підпис\n" -#: g10/import.c:2251 +#: g10/import.c:2255 #, c-format msgid "key %s: \"%s\" %d signatures cleaned\n" msgstr "ключ %s: «%s» вилучено %d підписів\n" -#: g10/import.c:2254 +#: g10/import.c:2258 #, c-format msgid "key %s: \"%s\" %d user ID cleaned\n" msgstr "ключ %s: «%s» спорожнено %d ідентифікатор користувача\n" -#: g10/import.c:2257 +#: g10/import.c:2261 #, c-format msgid "key %s: \"%s\" %d user IDs cleaned\n" msgstr "ключ %s: «%s» спорожнено %d ідентифікаторів користувачів\n" -#: g10/import.c:2293 +#: g10/import.c:2297 #, c-format msgid "key %s: \"%s\" not changed\n" msgstr "ключ %s: «%s» не змінено\n" -#: g10/import.c:2652 g10/import.c:2847 +#: g10/import.c:2667 g10/import.c:2862 #, c-format msgid "key %s: secret key imported\n" msgstr "ключ %s: імпортовано закритий ключ\n" -#: g10/import.c:2660 +#: g10/import.c:2675 #, c-format msgid "key %s: secret key already exists\n" msgstr "ключ %s: закритий ключ вже існує\n" -#: g10/import.c:2668 +#: g10/import.c:2683 #, c-format msgid "key %s: error sending to agent: %s\n" msgstr "ключ %s: помилка під час спроби надсилання агенту: %s\n" @@ -3902,198 +3908,198 @@ #. * Instead, user should be suggested to run 'gpg --card-status', #. * then, references to a card will be automatically created #. * again. -#: g10/import.c:2837 +#: g10/import.c:2852 #, c-format msgid "To migrate '%s', with each smartcard, run: %s\n" msgstr "" "Для перенесення «%s» на кожній із карток пам’яті слід виконати таку команду: " "%s\n" -#: g10/import.c:2984 +#: g10/import.c:2999 #, c-format msgid "secret key %s: %s\n" msgstr "закритий ключ %s: %s\n" -#: g10/import.c:3005 g10/import.c:3044 +#: g10/import.c:3020 g10/import.c:3059 #, c-format msgid "importing secret keys not allowed\n" msgstr "імпортування закритих ключів заборонено\n" -#: g10/import.c:3032 +#: g10/import.c:3047 #, c-format msgid "key %s: secret key with invalid cipher %d - skipped\n" msgstr "ключ %s: закритий ключ з некоректним шифром %d — пропущено\n" -#: g10/import.c:3194 g10/pkclist.c:72 g10/revoke.c:776 +#: g10/import.c:3209 g10/pkclist.c:72 g10/revoke.c:776 msgid "No reason specified" msgstr "Причину не вказано" -#: g10/import.c:3195 g10/pkclist.c:74 g10/revoke.c:778 +#: g10/import.c:3210 g10/pkclist.c:74 g10/revoke.c:778 msgid "Key is superseded" msgstr "Ключ замінено" -#: g10/import.c:3196 g10/pkclist.c:76 g10/revoke.c:777 +#: g10/import.c:3211 g10/pkclist.c:76 g10/revoke.c:777 msgid "Key has been compromised" msgstr "Ключ скомпрометовано" -#: g10/import.c:3197 g10/pkclist.c:78 g10/revoke.c:779 +#: g10/import.c:3212 g10/pkclist.c:78 g10/revoke.c:779 msgid "Key is no longer used" msgstr "Ключ більше не використовується" -#: g10/import.c:3198 g10/pkclist.c:80 g10/revoke.c:780 +#: g10/import.c:3213 g10/pkclist.c:80 g10/revoke.c:780 msgid "User ID is no longer valid" msgstr "Ідентифікатор користувача втратив чинність" -#: g10/import.c:3323 g10/keylist.c:1258 g10/pkclist.c:84 +#: g10/import.c:3338 g10/keylist.c:1258 g10/pkclist.c:84 #, c-format msgid "reason for revocation: " msgstr "причина відкликання: " -#: g10/import.c:3342 g10/keylist.c:1277 g10/pkclist.c:100 +#: g10/import.c:3357 g10/keylist.c:1277 g10/pkclist.c:100 #, c-format msgid "revocation comment: " msgstr "коментар щодо відкликання: " -#: g10/import.c:3392 +#: g10/import.c:3408 #, c-format msgid "key %s: no public key - can't apply revocation certificate\n" msgstr "" "ключ %s: немає відкритого ключа — не можна застосовувати сертифікат " "відкликання\n" -#: g10/import.c:3423 +#: g10/import.c:3439 #, c-format msgid "key %s: can't locate original keyblock: %s\n" msgstr "ключ %s: не вдалося знайти початковий блок ключів: %s\n" -#: g10/import.c:3430 +#: g10/import.c:3446 #, c-format msgid "key %s: can't read original keyblock: %s\n" msgstr "ключ %s: не вдалося прочитати початковий блок ключів: %s\n" -#: g10/import.c:3450 +#: g10/import.c:3466 #, c-format msgid "key %s: invalid revocation certificate: %s - rejected\n" msgstr "ключ %s: некоректний сертифікат відкликання: %s — відкинуто\n" -#: g10/import.c:3485 +#: g10/import.c:3501 #, c-format msgid "key %s: \"%s\" revocation certificate imported\n" msgstr "ключ %s: імпортовано сертифікат відкликання «%s»\n" -#: g10/import.c:3571 +#: g10/import.c:3587 #, c-format msgid "key %s: no user ID for signature\n" msgstr "ключ %s: немає ідентифікатор користувача для підпису\n" -#: g10/import.c:3588 +#: g10/import.c:3604 #, c-format msgid "key %s: unsupported public key algorithm on user ID \"%s\"\n" msgstr "" "ключ %s: непідтримуваний алгоритм створення відкритого ключа для " "ідентифікатора користувача «%s»\n" -#: g10/import.c:3590 +#: g10/import.c:3606 #, c-format msgid "key %s: invalid self-signature on user ID \"%s\"\n" msgstr "ключ %s: некоректний самопідпис для ідентифікатора користувача «%s»\n" -#: g10/import.c:3607 g10/import.c:3635 g10/import.c:3691 +#: g10/import.c:3623 g10/import.c:3651 g10/import.c:3707 #, c-format msgid "key %s: unsupported public key algorithm\n" msgstr "ключ %s: непідтримуваний алгоритм створення відкритого ключа\n" -#: g10/import.c:3608 +#: g10/import.c:3624 #, c-format msgid "key %s: invalid direct key signature\n" msgstr "ключ %s: некоректний безпосередній підпис ключа\n" -#: g10/import.c:3622 +#: g10/import.c:3638 #, c-format msgid "key %s: no subkey for key binding\n" msgstr "ключ %s: немає підключа для зв’язування ключів\n" -#: g10/import.c:3637 +#: g10/import.c:3653 #, c-format msgid "key %s: invalid subkey binding\n" msgstr "ключ %s: некоректне зв’язування підключів\n" -#: g10/import.c:3656 +#: g10/import.c:3672 #, c-format msgid "key %s: removed multiple subkey binding\n" msgstr "ключ %s: вилучено кратне зв’язування підключів\n" -#: g10/import.c:3680 +#: g10/import.c:3696 #, c-format msgid "key %s: no subkey for key revocation\n" msgstr "ключ %s: немає підключа для відкликання ключа\n" -#: g10/import.c:3693 +#: g10/import.c:3709 #, c-format msgid "key %s: invalid subkey revocation\n" msgstr "ключ %s: некоректне відкликання підключа\n" -#: g10/import.c:3708 +#: g10/import.c:3724 #, c-format msgid "key %s: removed multiple subkey revocation\n" msgstr "ключ %s: вилучено кратне відкликання підключа\n" -#: g10/import.c:3752 +#: g10/import.c:3771 #, c-format msgid "key %s: skipped user ID \"%s\"\n" msgstr "ключ %s: пропущено ідентифікатор користувача «%s»\n" -#: g10/import.c:3779 +#: g10/import.c:3798 #, c-format msgid "key %s: skipped subkey\n" msgstr "ключ %s: пропущено підключ\n" -#: g10/import.c:3810 +#: g10/import.c:3829 #, c-format msgid "key %s: non exportable signature (class 0x%02X) - skipped\n" msgstr "ключ %s: непридатний до експорту підпис (клас 0x%02X) — пропущено\n" -#: g10/import.c:3821 +#: g10/import.c:3840 #, c-format msgid "key %s: revocation certificate at wrong place - skipped\n" msgstr "ключ %s: сертифікат відкликання у помилковому місці — пропущено\n" -#: g10/import.c:3839 +#: g10/import.c:3868 #, c-format msgid "key %s: invalid revocation certificate: %s - skipped\n" msgstr "ключ %s: некоректний сертифікат відкликання: %s — пропущено\n" -#: g10/import.c:3853 +#: g10/import.c:3892 #, c-format msgid "key %s: subkey signature in wrong place - skipped\n" msgstr "ключ %s: підпис підключа у помилковому місці — пропущено\n" -#: g10/import.c:3861 +#: g10/import.c:3900 #, c-format msgid "key %s: unexpected signature class (0x%02X) - skipped\n" msgstr "ключ %s: неочікуваний клас підпису (0x%02X) — пропущено\n" -#: g10/import.c:4034 +#: g10/import.c:4073 #, c-format msgid "key %s: duplicated user ID detected - merged\n" msgstr "ключ %s: виявлено дублювання ідентифікаторів користувача — об’єднано\n" -#: g10/import.c:4099 +#: g10/import.c:4138 #, c-format msgid "WARNING: key %s may be revoked: fetching revocation key %s\n" msgstr "УВАГА: ключ %s могло бути відкликано: отримуємо ключ відкликання %s\n" -#: g10/import.c:4115 +#: g10/import.c:4154 #, c-format msgid "WARNING: key %s may be revoked: revocation key %s not present.\n" msgstr "УВАГА: ключ %s могло бути відкликано: ключа відкликання %s немає.\n" -#: g10/import.c:4181 +#: g10/import.c:4220 #, c-format msgid "key %s: \"%s\" revocation certificate added\n" msgstr "ключ %s: додано сертифікат відкликання «%s»\n" -#: g10/import.c:4219 +#: g10/import.c:4258 #, c-format msgid "key %s: direct key signature added\n" msgstr "ключ %s: додано безпосередній підпис ключа\n" @@ -4982,7 +4988,7 @@ msgid "You may not add a photo ID to a PGP2-style key.\n" msgstr "Не можна додавати фотоідентифікатор до ключа у форматі PGP2.\n" -#: g10/keyedit.c:4293 g10/keygen.c:2899 +#: g10/keyedit.c:4293 g10/keygen.c:2953 msgid "Such a user ID already exists on this key!\n" msgstr "У цьому ключі вже існує такий ідентифікатор користувача!\n" @@ -5268,63 +5274,63 @@ msgid "Displaying %s photo ID of size %ld for key %s (uid %d)\n" msgstr "Показ фотоідентифікатора %s розміру %ld для ключа %s (uid %d)\n" -#: g10/keygen.c:169 +#: g10/keygen.c:174 #, c-format msgid "invalid value for option '%s'\n" msgstr "некоректне значення параметра «%s»\n" -#: g10/keygen.c:322 +#: g10/keygen.c:331 #, c-format msgid "preference '%s' duplicated\n" msgstr "запис переваги «%s» продубльовано\n" -#: g10/keygen.c:329 +#: g10/keygen.c:338 #, c-format msgid "too many cipher preferences\n" msgstr "занадто багато записів переваг шифрів\n" -#: g10/keygen.c:331 +#: g10/keygen.c:340 #, c-format msgid "too many digest preferences\n" msgstr "занадто багато записів переваг контрольних сум\n" -#: g10/keygen.c:333 +#: g10/keygen.c:342 #, c-format msgid "too many compression preferences\n" msgstr "занадто багато записів переваг стискання\n" -#: g10/keygen.c:493 +#: g10/keygen.c:502 #, c-format msgid "invalid item '%s' in preference string\n" msgstr "некоректний запис «%s» у рядку переваг\n" -#: g10/keygen.c:972 +#: g10/keygen.c:1020 #, c-format msgid "writing direct signature\n" msgstr "записування безпосереднього підпису\n" -#: g10/keygen.c:1018 +#: g10/keygen.c:1066 #, c-format msgid "writing self signature\n" msgstr "записування самопідпису\n" -#: g10/keygen.c:1075 +#: g10/keygen.c:1123 #, c-format msgid "writing key binding signature\n" msgstr "записування підпису прив’язування ключа\n" -#: g10/keygen.c:1440 g10/keygen.c:1445 g10/keygen.c:1497 g10/keygen.c:1502 -#: g10/keygen.c:1656 g10/keygen.c:1661 +#: g10/keygen.c:1494 g10/keygen.c:1499 g10/keygen.c:1551 g10/keygen.c:1556 +#: g10/keygen.c:1710 g10/keygen.c:1715 #, c-format msgid "keysize invalid; using %u bits\n" msgstr "некоректний розмір ключа; використовуємо %u-бітовий\n" -#: g10/keygen.c:1451 g10/keygen.c:1508 g10/keygen.c:1516 g10/keygen.c:1667 +#: g10/keygen.c:1505 g10/keygen.c:1562 g10/keygen.c:1570 g10/keygen.c:1721 #, c-format msgid "keysize rounded up to %u bits\n" msgstr "розмір ключа округлено до %u-бітового\n" -#: g10/keygen.c:1542 +#: g10/keygen.c:1596 #, c-format msgid "" "WARNING: some OpenPGP programs can't handle a DSA key with this digest size\n" @@ -5332,19 +5338,19 @@ "УВАГА: деякі з програм OpenPGP не можуть працювати з ключем DSA з таким " "розміром контрольної суми\n" -#: g10/keygen.c:1723 +#: g10/keygen.c:1777 msgid "Sign" msgstr "Підписати" -#: g10/keygen.c:1726 +#: g10/keygen.c:1780 msgid "Certify" msgstr "Сертифікувати" -#: g10/keygen.c:1729 +#: g10/keygen.c:1783 msgid "Encrypt" msgstr "Зашифрувати" -#: g10/keygen.c:1732 +#: g10/keygen.c:1786 msgid "Authenticate" msgstr "Пройти розпізнавання" @@ -5358,163 +5364,163 @@ #. * a = Toggle authentication capability #. * q = Finish #. -#: g10/keygen.c:1753 +#: g10/keygen.c:1807 msgid "SsEeAaQq" msgstr "SsEeAaQq" -#: g10/keygen.c:1784 +#: g10/keygen.c:1838 #, c-format msgid "Possible actions for a %s key: " msgstr "Можливі дії з ключем %s: " -#: g10/keygen.c:1790 +#: g10/keygen.c:1844 msgid "Current allowed actions: " msgstr "Поточні дозволені дії: " -#: g10/keygen.c:1795 +#: g10/keygen.c:1849 #, c-format msgid " (%c) Toggle the sign capability\n" msgstr " (%c) увімкнути або вимкнути можливість підписування\n" -#: g10/keygen.c:1798 +#: g10/keygen.c:1852 #, c-format msgid " (%c) Toggle the encrypt capability\n" msgstr " (%c) увімкнути або вимкнути можливість шифрування\n" -#: g10/keygen.c:1801 +#: g10/keygen.c:1855 #, c-format msgid " (%c) Toggle the authenticate capability\n" msgstr "" " (%c) увімкнути або вимкнути можливість використання для розпізнавання\n" -#: g10/keygen.c:1804 +#: g10/keygen.c:1858 #, c-format msgid " (%c) Finished\n" msgstr " (%c) вийти\n" -#: g10/keygen.c:1930 +#: g10/keygen.c:1984 #, c-format msgid " (%d) RSA and RSA (default)\n" msgstr " (%d) RSA і RSA (типовий)\n" -#: g10/keygen.c:1934 +#: g10/keygen.c:1988 #, c-format msgid " (%d) DSA and Elgamal\n" msgstr " (%d) DSA і Elgamal\n" -#: g10/keygen.c:1937 +#: g10/keygen.c:1991 #, c-format msgid " (%d) DSA (sign only)\n" msgstr " (%d) DSA (лише підписування)\n" -#: g10/keygen.c:1939 +#: g10/keygen.c:1993 #, c-format msgid " (%d) RSA (sign only)\n" msgstr " (%d) RSA (лише підписування)\n" -#: g10/keygen.c:1945 +#: g10/keygen.c:1999 #, c-format msgid " (%d) Elgamal (encrypt only)\n" msgstr " (%d) Elgamal (лише шифрування)\n" -#: g10/keygen.c:1947 +#: g10/keygen.c:2001 #, c-format msgid " (%d) RSA (encrypt only)\n" msgstr " (%d) RSA (лише шифрування)\n" -#: g10/keygen.c:1953 +#: g10/keygen.c:2007 #, c-format msgid " (%d) DSA (set your own capabilities)\n" msgstr " (%d) DSA (із визначенням можливостей власноруч)\n" -#: g10/keygen.c:1955 +#: g10/keygen.c:2009 #, c-format msgid " (%d) RSA (set your own capabilities)\n" msgstr " (%d) RSA (із визначенням можливостей власноруч)\n" -#: g10/keygen.c:1961 +#: g10/keygen.c:2015 #, c-format msgid " (%d) ECC and ECC\n" msgstr " (%d) ECC та ECC\n" -#: g10/keygen.c:1963 +#: g10/keygen.c:2017 #, c-format msgid " (%d) ECC (sign only)\n" msgstr " (%d) ECC (лише підписування)\n" -#: g10/keygen.c:1965 +#: g10/keygen.c:2019 #, c-format msgid " (%d) ECC (set your own capabilities)\n" msgstr " (%d) ECC (із визначенням можливостей власноруч)\n" -#: g10/keygen.c:1967 +#: g10/keygen.c:2021 #, c-format msgid " (%d) ECC (encrypt only)\n" msgstr " (%d) ECC (лише шифрування)\n" -#: g10/keygen.c:1971 +#: g10/keygen.c:2025 #, c-format msgid " (%d) Existing key\n" msgstr " (%d) Вже записаний ключ\n" -#: g10/keygen.c:1973 +#: g10/keygen.c:2027 #, fuzzy, c-format #| msgid " (%d) Existing key from card\n" msgid " (%d) Existing key from card\n" msgstr " (%d) Вже записаний ключ з картки\n" -#: g10/keygen.c:2069 sm/certreqgen-ui.c:202 +#: g10/keygen.c:2123 sm/certreqgen-ui.c:202 msgid "Enter the keygrip: " msgstr "Вкажіть keygrip: " -#: g10/keygen.c:2082 sm/certreqgen-ui.c:210 +#: g10/keygen.c:2136 sm/certreqgen-ui.c:210 msgid "Not a valid keygrip (expecting 40 hex digits)\n" msgstr "Некоректний keygrip (мало бути вказано 40 шістнадцяткових цифр)\n" -#: g10/keygen.c:2084 sm/certreqgen-ui.c:212 +#: g10/keygen.c:2138 sm/certreqgen-ui.c:212 msgid "No key with this keygrip\n" msgstr "Немає ключів з таким значенням keygrip\n" -#: g10/keygen.c:2103 g10/keygen.c:2113 g10/keygen.c:3216 g10/keygen.c:3227 +#: g10/keygen.c:2157 g10/keygen.c:2167 g10/keygen.c:3270 g10/keygen.c:3281 #: sm/certreqgen-ui.c:230 sm/certreqgen-ui.c:239 #, c-format msgid "error reading the card: %s\n" msgstr "помилка читання картки: %s\n" -#: g10/keygen.c:2107 g10/keygen.c:3220 sm/certreqgen-ui.c:233 +#: g10/keygen.c:2161 g10/keygen.c:3274 sm/certreqgen-ui.c:233 #, c-format msgid "Serial number of the card: %s\n" msgstr "Серійний номер картки: %s\n" -#: g10/keygen.c:2120 sm/certreqgen-ui.c:245 +#: g10/keygen.c:2174 sm/certreqgen-ui.c:245 msgid "Available keys:\n" msgstr "Доступні ключі:\n" -#: g10/keygen.c:2297 g10/keygen.c:2311 +#: g10/keygen.c:2351 g10/keygen.c:2365 #, c-format msgid "rounded to %u bits\n" msgstr "округлено до %u бітів\n" -#: g10/keygen.c:2352 +#: g10/keygen.c:2406 #, c-format msgid "%s keys may be between %u and %u bits long.\n" msgstr "ключі %s можуть мати довжину від %u до %u бітів.\n" -#: g10/keygen.c:2360 +#: g10/keygen.c:2414 #, c-format msgid "What keysize do you want for the subkey? (%u) " msgstr "Якою має бути довжина підключа? (%u) " -#: g10/keygen.c:2377 sm/certreqgen-ui.c:189 +#: g10/keygen.c:2431 sm/certreqgen-ui.c:189 #, c-format msgid "Requested keysize is %u bits\n" msgstr "Запитана довжина ключа — %u бітів\n" -#: g10/keygen.c:2423 +#: g10/keygen.c:2477 msgid "Please select which elliptic curve you want:\n" msgstr "Вкажіть потрібну вам еліптичну криву:\n" -#: g10/keygen.c:2611 +#: g10/keygen.c:2665 msgid "" "Please specify how long the key should be valid.\n" " 0 = key does not expire\n" @@ -5530,7 +5536,7 @@ " m = строк чинності у n місяців\n" " y = строк чинності у n років\n" -#: g10/keygen.c:2622 +#: g10/keygen.c:2676 msgid "" "Please specify how long the signature should be valid.\n" " 0 = signature does not expire\n" @@ -5546,38 +5552,38 @@ " m = строк чинності підпису у n місяців\n" " y = строк чинності підпису у n років\n" -#: g10/keygen.c:2645 +#: g10/keygen.c:2699 msgid "Key is valid for? (0) " msgstr "Яким є строк чинності ключа? (0) " -#: g10/keygen.c:2650 +#: g10/keygen.c:2704 #, c-format msgid "Signature is valid for? (%s) " msgstr "Яким є строк чинності підпису? (%s) " -#: g10/keygen.c:2663 g10/keygen.c:2688 +#: g10/keygen.c:2717 g10/keygen.c:2742 msgid "invalid value\n" msgstr "некоректне значення\n" -#: g10/keygen.c:2670 +#: g10/keygen.c:2724 msgid "Key does not expire at all\n" msgstr "Ключ не має обмеження строку дії\n" -#: g10/keygen.c:2671 +#: g10/keygen.c:2725 msgid "Signature does not expire at all\n" msgstr "Підпис не має обмеження строку дії\n" -#: g10/keygen.c:2676 +#: g10/keygen.c:2730 #, c-format msgid "Key expires at %s\n" msgstr "Ключ діє до %s\n" -#: g10/keygen.c:2677 +#: g10/keygen.c:2731 #, c-format msgid "Signature expires at %s\n" msgstr "Підпис діє до %s\n" -#: g10/keygen.c:2681 +#: g10/keygen.c:2735 msgid "" "Your system can't display dates beyond 2038.\n" "However, it will be correctly handled up to 2106.\n" @@ -5585,11 +5591,11 @@ "У вашій системі неможливий показ дат після 2038 року.\n" "Але програма коректно оброблятиме ці дати до 2106 року.\n" -#: g10/keygen.c:2694 +#: g10/keygen.c:2748 msgid "Is this correct? (y/N) " msgstr "Все правильно? (y/N або т/Н) " -#: g10/keygen.c:2762 +#: g10/keygen.c:2816 msgid "" "\n" "GnuPG needs to construct a user ID to identify your key.\n" @@ -5604,7 +5610,7 @@ #. but you should keep your existing translation. In case #. the new string is not translated this old string will #. be used. -#: g10/keygen.c:2777 +#: g10/keygen.c:2831 msgid "" "\n" "You need a user ID to identify your key; the software constructs the user " @@ -5621,49 +5627,49 @@ " \"Ivan Ivanenko (farmer) \"\n" "\n" -#: g10/keygen.c:2796 +#: g10/keygen.c:2850 msgid "Real name: " msgstr "Справжнє ім’я: " -#: g10/keygen.c:2805 +#: g10/keygen.c:2859 msgid "Invalid character in name\n" msgstr "Некоректний символ у імені\n" -#: g10/keygen.c:2806 +#: g10/keygen.c:2860 #, c-format msgid "The characters '%s' and '%s' may not appear in name\n" msgstr "Не можна використовувати символи «%s» і «%s» у назві\n" -#: g10/keygen.c:2810 +#: g10/keygen.c:2864 msgid "Name may not start with a digit\n" msgstr "Ім’я не може починатися з цифри\n" -#: g10/keygen.c:2813 +#: g10/keygen.c:2867 msgid "Name must be at least 5 characters long\n" msgstr "Ім’я має бути не коротшим за 5 літер\n" -#: g10/keygen.c:2823 +#: g10/keygen.c:2877 msgid "Email address: " msgstr "Адреса ел. пошти: " -#: g10/keygen.c:2829 +#: g10/keygen.c:2883 msgid "Not a valid email address\n" msgstr "Некоректна адреса електронної пошти\n" -#: g10/keygen.c:2838 +#: g10/keygen.c:2892 msgid "Comment: " msgstr "Коментар: " -#: g10/keygen.c:2844 +#: g10/keygen.c:2898 msgid "Invalid character in comment\n" msgstr "Некоректний символ у коментарі\n" -#: g10/keygen.c:2880 +#: g10/keygen.c:2934 #, c-format msgid "You are using the '%s' character set.\n" msgstr "Вами використано таблицю символів «%s».\n" -#: g10/keygen.c:2886 +#: g10/keygen.c:2940 #, c-format msgid "" "You selected this USER-ID:\n" @@ -5674,7 +5680,7 @@ " \"%s\"\n" "\n" -#: g10/keygen.c:2891 +#: g10/keygen.c:2945 msgid "Please don't put the email address into the real name or the comment\n" msgstr "" "Будь ласка, не використовуйте адресу електронної пошти у полях справжнього " @@ -5691,32 +5697,32 @@ #. o = Okay (ready, continue) #. q = Quit #. -#: g10/keygen.c:2916 +#: g10/keygen.c:2970 msgid "NnCcEeOoQq" msgstr "NnCcEeOoQq" -#: g10/keygen.c:2926 +#: g10/keygen.c:2980 msgid "Change (N)ame, (C)omment, (E)mail or (Q)uit? " msgstr "Змінити назву (N), коментар (C), ел. пошту (E) або вийти (Q)? " -#: g10/keygen.c:2927 +#: g10/keygen.c:2981 msgid "Change (N)ame, (C)omment, (E)mail or (O)kay/(Q)uit? " msgstr "" "Змінити назву (N), коментар (C), ел. пошту (E) або гаразд (O) чи вийти (Q)? " -#: g10/keygen.c:2932 +#: g10/keygen.c:2986 msgid "Change (N)ame, (E)mail, or (Q)uit? " msgstr "Змінити назву (N), ел. пошту (E) або вийти (Q)? " -#: g10/keygen.c:2933 +#: g10/keygen.c:2987 msgid "Change (N)ame, (E)mail, or (O)kay/(Q)uit? " msgstr "Змінити назву (N), ел. пошту (E) або гаразд (O) чи вийти (Q)? " -#: g10/keygen.c:2952 +#: g10/keygen.c:3006 msgid "Please correct the error first\n" msgstr "Спочатку виправте помилку\n" -#: g10/keygen.c:2998 +#: g10/keygen.c:3052 msgid "" "We need to generate a lot of random bytes. It is a good idea to perform\n" "some other action (type on the keyboard, move the mouse, utilize the\n" @@ -5728,13 +5734,13 @@ "під час створення простого числа. Це надасть змогу генератору\n" "псевдовипадкових чисел створити краще випадкове число.\n" -#: g10/keygen.c:4278 g10/keygen.c:4349 g10/keygen.c:4367 g10/keygen.c:4395 -#: g10/keygen.c:4739 g10/keygen.c:5239 g10/keygen.c:5534 g10/keygen.c:5639 +#: g10/keygen.c:4332 g10/keygen.c:4403 g10/keygen.c:4421 g10/keygen.c:4449 +#: g10/keygen.c:4793 g10/keygen.c:5293 g10/keygen.c:5588 g10/keygen.c:5693 #, c-format msgid "Key generation failed: %s\n" msgstr "Помилка під час спроби створення ключа: %s\n" -#: g10/keygen.c:4287 +#: g10/keygen.c:4341 #, c-format msgid "" "About to create a key for:\n" @@ -5745,66 +5751,66 @@ " \"%s\"\n" "\n" -#: g10/keygen.c:4289 +#: g10/keygen.c:4343 msgid "Continue? (Y/n) " msgstr "Продовжити? (Y (так)/n (ні)) " -#: g10/keygen.c:4310 +#: g10/keygen.c:4364 #, c-format msgid "A key for \"%s\" already exists\n" msgstr "Ключ для «%s» вже існує\n" -#: g10/keygen.c:4315 +#: g10/keygen.c:4369 msgid "Create anyway? (y/N) " msgstr "Створити попри це? (y (так)/N (ні)) " -#: g10/keygen.c:4321 +#: g10/keygen.c:4375 #, c-format msgid "creating anyway\n" msgstr "створюємо попри усе\n" -#: g10/keygen.c:4722 +#: g10/keygen.c:4776 #, c-format msgid "Note: Use \"%s %s\" for a full featured key generation dialog.\n" msgstr "" "Зауваження: скористайтеся «%s %s», щоб викликати повноцінне діалогове вікно " "створення ключа.\n" -#: g10/keygen.c:4771 +#: g10/keygen.c:4825 #, c-format msgid "Key generation canceled.\n" msgstr "Створення ключа скасовано.\n" -#: g10/keygen.c:4831 +#: g10/keygen.c:4885 #, c-format msgid "can't create backup file '%s': %s\n" msgstr "не вдалося створити файл резервної копії «%s»: %s\n" -#: g10/keygen.c:4851 +#: g10/keygen.c:4905 #, c-format msgid "Note: backup of card key saved to '%s'\n" msgstr "ЗАУВАЖЕННЯ: резервну копію ключа на картці збережено до «%s»\n" -#: g10/keygen.c:5010 g10/keygen.c:5172 +#: g10/keygen.c:5064 g10/keygen.c:5226 #, c-format msgid "writing public key to '%s'\n" msgstr "записуємо відкритий ключ до «%s»\n" -#: g10/keygen.c:5166 +#: g10/keygen.c:5220 #, c-format msgid "no writable public keyring found: %s\n" msgstr "не знайдено придатного до запису сховища відкритих ключів: %s\n" -#: g10/keygen.c:5180 +#: g10/keygen.c:5234 #, c-format msgid "error writing public keyring '%s': %s\n" msgstr "помилка під час спроби запису до сховища відкритих ключів «%s»: %s\n" -#: g10/keygen.c:5210 +#: g10/keygen.c:5264 msgid "public and secret key created and signed.\n" msgstr "відкритий і закритий ключі створено і підписано.\n" -#: g10/keygen.c:5226 +#: g10/keygen.c:5280 msgid "" "Note that this key cannot be used for encryption. You may want to use\n" "the command \"--edit-key\" to generate a subkey for this purpose.\n" @@ -5812,7 +5818,7 @@ "Зауважте, що цей ключ не може бути використано для шифрування. Ви можете\n" "скористатися командою «--edit-key» для створення підключа з цією метою.\n" -#: g10/keygen.c:5401 g10/keygen.c:5590 +#: g10/keygen.c:5455 g10/keygen.c:5644 #, c-format msgid "" "key has been created %lu second in future (time warp or clock problem)\n" @@ -5820,7 +5826,7 @@ "ключ було створено з позначкою на %lu секунд у майбутньому (часова петля або " "проблема з годинником)\n" -#: g10/keygen.c:5403 g10/keygen.c:5592 +#: g10/keygen.c:5457 g10/keygen.c:5646 #, c-format msgid "" "key has been created %lu seconds in future (time warp or clock problem)\n" @@ -5828,22 +5834,22 @@ "ключ було створено з позначкою на %lu секунду у майбутньому (часова петля " "або проблема з годинником)\n" -#: g10/keygen.c:5414 g10/keygen.c:5603 +#: g10/keygen.c:5468 g10/keygen.c:5657 #, c-format msgid "Note: creating subkeys for v3 keys is not OpenPGP compliant\n" msgstr "ЗАУВАЖЕННЯ: створення підключів для ключів v3 несумісне з OpenPGP\n" -#: g10/keygen.c:5426 g10/keygen.c:5428 +#: g10/keygen.c:5480 g10/keygen.c:5482 #, c-format msgid "Secret parts of primary key are not available.\n" msgstr "Закриті частини основного ключа недоступні.\n" -#: g10/keygen.c:5435 g10/keygen.c:5437 +#: g10/keygen.c:5489 g10/keygen.c:5491 #, c-format msgid "Secret parts of primary key are stored on-card.\n" msgstr "Закриті частини основного ключа зберігаються на картці.\n" -#: g10/keygen.c:5456 g10/keygen.c:5617 +#: g10/keygen.c:5510 g10/keygen.c:5671 msgid "Really create? (y/N) " msgstr "Створити? (y/N або т/Н) " @@ -6943,30 +6949,30 @@ "дані не збережено; скористайтеся для їхнього збереження параметром «--" "output»\n" -#: g10/plaintext.c:615 +#: g10/plaintext.c:620 msgid "Detached signature.\n" msgstr "Від’єднаний підпис.\n" -#: g10/plaintext.c:623 +#: g10/plaintext.c:628 msgid "Please enter name of data file: " msgstr "Будь ласка, вкажіть назву файла даних: " -#: g10/plaintext.c:660 +#: g10/plaintext.c:665 #, c-format msgid "reading stdin ...\n" msgstr "читаємо дані з stdin...\n" -#: g10/plaintext.c:705 +#: g10/plaintext.c:710 #, c-format msgid "no signed data\n" msgstr "немає підписаних даних\n" -#: g10/plaintext.c:723 +#: g10/plaintext.c:728 #, c-format msgid "can't open signed data '%s'\n" msgstr "не вдалося відкрити підписані дані «%s»\n" -#: g10/plaintext.c:758 +#: g10/plaintext.c:763 #, c-format msgid "can't open signed data fd=%d: %s\n" msgstr "не вдалося відкрити підписані дані fd=%d: %s\n" @@ -8039,7 +8045,7 @@ msgid "no need for a trustdb check\n" msgstr "потреби у перевірці trustdb немає\n" -#: g10/trustdb.c:631 g10/trustdb.c:2326 +#: g10/trustdb.c:631 g10/trustdb.c:2338 #, c-format msgid "next trustdb check due at %s\n" msgstr "наступну перевірку trustdb призначено на %s\n" @@ -8069,7 +8075,7 @@ msgid "checking the trustdb\n" msgstr "перевірка trustdb\n" -#: g10/trustdb.c:2047 +#: g10/trustdb.c:2059 #, c-format msgid "%d key processed" msgid_plural "%d keys processed" @@ -8077,7 +8083,7 @@ msgstr[1] "оброблено %d ключі" msgstr[2] "оброблено %d ключів" -#: g10/trustdb.c:2050 +#: g10/trustdb.c:2062 #, c-format msgid " (%d validity count cleared)\n" msgid_plural " (%d validity counts cleared)\n" @@ -8085,17 +8091,17 @@ msgstr[1] " (очищено %d значення чинності)\n" msgstr[2] " (очищено %d значень чинності)\n" -#: g10/trustdb.c:2120 +#: g10/trustdb.c:2132 #, c-format msgid "no ultimately trusted keys found\n" msgstr "не знайдено ключів з необмеженою довірою\n" -#: g10/trustdb.c:2134 +#: g10/trustdb.c:2146 #, c-format msgid "public key of ultimately trusted key %s not found\n" msgstr "не знайдено відкритий ключ ключа з необмеженою довірою %s\n" -#: g10/trustdb.c:2252 +#: g10/trustdb.c:2264 #, c-format msgid "" "depth: %d valid: %3d signed: %3d trust: %d-, %dq, %dn, %dm, %df, %du\n" @@ -8103,7 +8109,7 @@ "глибина: %d чинність: %3d підписано: %3d надійність: %d-, %dq, %dn, %dm, " "%df, %du\n" -#: g10/trustdb.c:2333 +#: g10/trustdb.c:2345 #, c-format msgid "unable to update trustdb version record: write failed: %s\n" msgstr "не вдалося оновити запис версії trustdb: помилка запису: %s\n" @@ -8216,19 +8222,19 @@ #. TRANSLATORS: Put a \x1f right before a colon. This can be #. * used by pinentry to nicely align the names and values. Keep #. * the %s at the start and end of the string. -#: scd/app-p15.c:5116 scd/app-openpgp.c:2154 +#: scd/app-p15.c:5145 scd/app-nks.c:1541 scd/app-openpgp.c:2154 #, c-format msgid "%sNumber: %s%%0AHolder: %s%s" msgstr "" #. TRANSLATORS: This is the number of remaining attempts to #. * enter a PIN. Use %%0A (double-percent,0A) for a linefeed. -#: scd/app-p15.c:5135 scd/app-openpgp.c:2170 +#: scd/app-p15.c:5164 scd/app-nks.c:1560 scd/app-openpgp.c:2170 #, c-format msgid "Remaining attempts: %d" msgstr "" -#: scd/app-p15.c:5214 scd/app-nks.c:1113 +#: scd/app-p15.c:5243 scd/app-nks.c:2112 msgid "||Please enter the PIN for the key to create qualified signatures." msgstr "" "||Будь ласка, вкажіть пінкод для ключа, призначеного для створення якісних " @@ -8236,63 +8242,69 @@ #. TRANSLATORS: Do not translate the "|A|" prefix but keep it at #. the start of the string. Use %0A (single percent) for a linefeed. -#: scd/app-p15.c:5217 scd/app-openpgp.c:2464 +#: scd/app-p15.c:5246 scd/app-openpgp.c:2465 msgid "|A|Please enter the Admin PIN" msgstr "|A|Вкажіть адміністративний пінкод" -#: scd/app-p15.c:5219 scd/app-nks.c:1103 +#: scd/app-p15.c:5248 scd/app-nks.c:2102 msgid "|P|Please enter the PIN Unblocking Code (PUK) for the standard keys." msgstr "" "|P|Будь ласка, вкажіть код розблокування пінкоду (PUK) для стандартних " "ключів." -#: scd/app-p15.c:5222 scd/app-nks.c:1095 +#: scd/app-p15.c:5251 scd/app-nks.c:2093 msgid "||Please enter the PIN for the standard keys." msgstr "||Вкажіть пінкод для стандартних ключів." -#: scd/app-nks.c:709 scd/app-openpgp.c:3666 +#: scd/app-nks.c:1479 scd/app-openpgp.c:3675 #, c-format msgid "RSA modulus missing or not of size %d bits\n" msgstr "" "Не знайдено основи числення RSA або основа числення не належить до %d-" "бітових\n" -#: scd/app-nks.c:717 scd/app-openpgp.c:3678 +#: scd/app-nks.c:1487 scd/app-openpgp.c:3687 #, c-format msgid "RSA public exponent missing or larger than %d bits\n" msgstr "" "Не вистачає відкритого показника RSA або розмірність показника перевищує %d " "бітів\n" -#: scd/app-nks.c:797 scd/app-openpgp.c:2327 scd/app-openpgp.c:2346 -#: scd/app-openpgp.c:2513 scd/app-openpgp.c:2531 scd/app-openpgp.c:2829 -#: scd/app-openpgp.c:2876 scd/app-openpgp.c:2991 scd/app-dinsig.c:302 +#: scd/app-nks.c:1660 +#, fuzzy +#| msgid "the NullPIN has not yet been changed\n" +msgid "Note: PIN has not yet been enabled." +msgstr "NullPIN ще не було змінено\n" + +#: scd/app-nks.c:1671 scd/app-openpgp.c:2327 scd/app-openpgp.c:2346 +#: scd/app-openpgp.c:2515 scd/app-openpgp.c:2533 scd/app-openpgp.c:2832 +#: scd/app-openpgp.c:2879 scd/app-openpgp.c:3000 scd/app-dinsig.c:303 #, c-format msgid "PIN callback returned error: %s\n" msgstr "Зворотний виклик пінкоду повернув повідомлення про помилку: %s\n" -#: scd/app-nks.c:830 +#: scd/app-nks.c:1707 #, c-format msgid "the NullPIN has not yet been changed\n" msgstr "NullPIN ще не було змінено\n" -#: scd/app-nks.c:1094 +#: scd/app-nks.c:2092 msgid "|N|Please enter a new PIN for the standard keys." msgstr "|N|Вкажіть новий пінкод для стандартних ключів." -#: scd/app-nks.c:1101 +#: scd/app-nks.c:2100 msgid "|NP|Please enter a new PIN Unblocking Code (PUK) for the standard keys." msgstr "" "|NP|Будь ласка, вкажіть новий код розблокування пінкоду (PUK) для " "стандартних ключів." -#: scd/app-nks.c:1111 +#: scd/app-nks.c:2110 msgid "|N|Please enter a new PIN for the key to create qualified signatures." msgstr "" "|N|Будь ласка, вкажіть новий пінкод для ключа, призначеного для створення " "якісних підписів." -#: scd/app-nks.c:1121 +#: scd/app-nks.c:2120 msgid "" "|NP|Please enter a new PIN Unblocking Code (PUK) for the key to create " "qualified signatures." @@ -8300,7 +8312,7 @@ "|NP|Будь ласка, вкажіть новий код розблокування пінкоду (PUK) для створення " "якісних підписів." -#: scd/app-nks.c:1123 +#: scd/app-nks.c:2122 msgid "" "|P|Please enter the PIN Unblocking Code (PUK) for the key to create " "qualified signatures." @@ -8308,7 +8320,7 @@ "|P|Будь ласка, вкажіть код розблокування пінкоду (PUK) для створення якісних " "підписів." -#: scd/app-nks.c:1230 scd/app-openpgp.c:2910 scd/app-dinsig.c:532 +#: scd/app-nks.c:2295 scd/app-openpgp.c:2913 scd/app-dinsig.c:535 #, c-format msgid "error getting new PIN: %s\n" msgstr "помилка під час отримання нового пінкоду: %s\n" @@ -8323,7 +8335,7 @@ msgid "failed to store the creation date: %s\n" msgstr "не вдалося зберегти дату створення: %s\n" -#: scd/app-openpgp.c:1271 scd/app-openpgp.c:2857 scd/app-openpgp.c:5041 +#: scd/app-openpgp.c:1271 scd/app-openpgp.c:2860 scd/app-openpgp.c:5051 #, c-format msgid "error retrieving CHV status from card\n" msgstr "помилка отримання стану CHV з картки\n" @@ -8343,7 +8355,7 @@ msgid "response does not contain the EC public key\n" msgstr "відповідь не містить відкритого ключа еліптичної кривої\n" -#: scd/app-openpgp.c:1664 scd/app-openpgp.c:4286 +#: scd/app-openpgp.c:1664 scd/app-openpgp.c:4295 #, c-format msgid "response does not contain the public key data\n" msgstr "відповідь не містить даних відкритого ключа\n" @@ -8377,23 +8389,23 @@ msgid "||Please unlock the card" msgstr "||Будь ласка, розблокуйте картку" -#: scd/app-openpgp.c:2353 scd/app-openpgp.c:2538 scd/app-openpgp.c:2836 +#: scd/app-openpgp.c:2353 scd/app-openpgp.c:2540 scd/app-openpgp.c:2839 #, c-format msgid "PIN for CHV%d is too short; minimum length is %d\n" msgstr "Пінкод для CHV%d занадто короткий; мінімальна довжина — %d\n" -#: scd/app-openpgp.c:2367 scd/app-openpgp.c:2414 scd/app-openpgp.c:2552 -#: scd/app-openpgp.c:4644 +#: scd/app-openpgp.c:2368 scd/app-openpgp.c:2415 scd/app-openpgp.c:2554 +#: scd/app-openpgp.c:4654 #, c-format msgid "verify CHV%d failed: %s\n" msgstr "помилка перевірки CHV%d: %s\n" -#: scd/app-openpgp.c:2450 scd/app-openpgp.c:5050 +#: scd/app-openpgp.c:2451 scd/app-openpgp.c:5060 #, c-format msgid "card is permanently locked!\n" msgstr "картку заблоковано!\n" -#: scd/app-openpgp.c:2454 +#: scd/app-openpgp.c:2455 #, c-format msgid "%d Admin PIN attempt remaining before card is permanently locked\n" msgid_plural "" @@ -8408,20 +8420,20 @@ "залишилося %d спроб визначення адміністративного пінкоду перед тим, як " "картку буде остаточно заблоковано\n" -#: scd/app-openpgp.c:2485 +#: scd/app-openpgp.c:2486 #, c-format msgid "access to admin commands is not configured\n" msgstr "доступ до адміністративних команд не налаштовано\n" -#: scd/app-openpgp.c:2823 +#: scd/app-openpgp.c:2826 msgid "||Please enter the PIN" msgstr "||Вкажіть пінкод" -#: scd/app-openpgp.c:2872 +#: scd/app-openpgp.c:2875 msgid "||Please enter the Reset Code for the card" msgstr "||Вкажіть код скидання коду картки" -#: scd/app-openpgp.c:2882 scd/app-openpgp.c:2943 +#: scd/app-openpgp.c:2885 scd/app-openpgp.c:2946 #, c-format msgid "Reset Code is too short; minimum length is %d\n" msgstr "Занадто короткий код скидання; мінімальна довжина — %d\n" @@ -8429,88 +8441,88 @@ #. 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:2905 +#: scd/app-openpgp.c:2908 msgid "|RN|New Reset Code" msgstr "|RN|Новий код скидання" -#: scd/app-openpgp.c:2906 +#: scd/app-openpgp.c:2909 msgid "|AN|New Admin PIN" msgstr "|AN|Новий адміністративний пінкод" -#: scd/app-openpgp.c:2906 +#: scd/app-openpgp.c:2909 msgid "|N|New PIN" msgstr "|N|Новий пінкод" -#: scd/app-openpgp.c:2987 +#: scd/app-openpgp.c:2996 msgid "||Please enter the Admin PIN and New Admin PIN" msgstr "||Вкажіть адміністративний пінкод та новий адміністративний пінкод" -#: scd/app-openpgp.c:2988 +#: scd/app-openpgp.c:2997 msgid "||Please enter the PIN and New PIN" msgstr "||Вкажіть пінкод та новий пінкод" -#: scd/app-openpgp.c:3050 scd/app-openpgp.c:4346 +#: scd/app-openpgp.c:3059 scd/app-openpgp.c:4355 #, c-format msgid "error reading application data\n" msgstr "помилка читання даних програми\n" -#: scd/app-openpgp.c:3056 scd/app-openpgp.c:4353 +#: scd/app-openpgp.c:3065 scd/app-openpgp.c:4362 #, c-format msgid "error reading fingerprint DO\n" msgstr "помилка читання відбитка DO\n" -#: scd/app-openpgp.c:3066 +#: scd/app-openpgp.c:3075 #, c-format msgid "key already exists\n" msgstr "ключ вже існує\n" -#: scd/app-openpgp.c:3070 +#: scd/app-openpgp.c:3079 #, c-format msgid "existing key will be replaced\n" msgstr "вже створений ключ буде замінено\n" -#: scd/app-openpgp.c:3072 +#: scd/app-openpgp.c:3081 #, c-format msgid "generating new key\n" msgstr "створення нового ключа\n" -#: scd/app-openpgp.c:3074 +#: scd/app-openpgp.c:3083 #, c-format msgid "writing new key\n" msgstr "записування нового ключа\n" -#: scd/app-openpgp.c:3647 scd/app-openpgp.c:3999 +#: scd/app-openpgp.c:3656 scd/app-openpgp.c:4008 #, c-format msgid "creation timestamp missing\n" msgstr "не вказано часової позначки створення\n" -#: scd/app-openpgp.c:3688 scd/app-openpgp.c:3696 +#: scd/app-openpgp.c:3697 scd/app-openpgp.c:3705 #, c-format msgid "RSA prime %s missing or not of size %d bits\n" msgstr "" "Не знайдено простого числа RSA %s або число не належить до %d-бітових\n" -#: scd/app-openpgp.c:3829 scd/app-openpgp.c:4106 +#: scd/app-openpgp.c:3838 scd/app-openpgp.c:4115 #, c-format msgid "failed to store the key: %s\n" msgstr "не вдалося зберегти ключ: %s\n" -#: scd/app-openpgp.c:3993 +#: scd/app-openpgp.c:4002 #, c-format msgid "unsupported curve\n" msgstr "непідтримувана крива\n" -#: scd/app-openpgp.c:4263 +#: scd/app-openpgp.c:4272 #, c-format msgid "please wait while key is being generated ...\n" msgstr "зачекайте на завершення створення ключа...\n" -#: scd/app-openpgp.c:4271 +#: scd/app-openpgp.c:4280 #, c-format msgid "generating key failed\n" msgstr "помилка під час створення ключа\n" -#: scd/app-openpgp.c:4277 +#: scd/app-openpgp.c:4286 #, c-format msgid "key generation completed (%d second)\n" msgid_plural "key generation completed (%d seconds)\n" @@ -8518,45 +8530,45 @@ msgstr[1] "створення ключа завершено (за %d секунди)\n" msgstr[2] "створення ключа завершено (за %d секунд)\n" -#: scd/app-openpgp.c:4311 +#: scd/app-openpgp.c:4320 #, c-format msgid "invalid structure of OpenPGP card (DO 0x93)\n" msgstr "некоректна структура картки OpenPGP (DO 0x93)\n" -#: scd/app-openpgp.c:4361 +#: scd/app-openpgp.c:4370 #, c-format msgid "fingerprint on card does not match requested one\n" msgstr "відбиток на картці не відповідає запитаному\n" -#: scd/app-openpgp.c:4560 +#: scd/app-openpgp.c:4569 #, c-format msgid "card does not support digest algorithm %s\n" msgstr "карткою не підтримується алгоритм контрольних сум %s\n" -#: scd/app-openpgp.c:4618 +#: scd/app-openpgp.c:4627 #, c-format msgid "signatures created so far: %lu\n" msgstr "вже створено підписів: %lu\n" -#: scd/app-openpgp.c:5055 +#: scd/app-openpgp.c:5065 #, c-format msgid "" "verification of Admin PIN is currently prohibited through this command\n" msgstr "перевірку адміністративного пінкоду заборонено цією командою\n" -#: scd/app-openpgp.c:5386 scd/app-openpgp.c:5398 +#: scd/app-openpgp.c:5396 scd/app-openpgp.c:5408 #, c-format msgid "can't access %s - invalid OpenPGP card?\n" msgstr "не вдалося отримати доступ до %s — некоректна картка OpenPGP?\n" -#: scd/app-dinsig.c:298 +#: scd/app-dinsig.c:299 msgid "||Please enter your PIN at the reader's pinpad" 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-dinsig.c:529 +#: scd/app-dinsig.c:532 msgid "|N|Initial New PIN" msgstr "|N|Початковий новий пінкод" @@ -8644,11 +8656,11 @@ msgid "validation model requested by certificate: %s" msgstr "модель перевірки, запитана сертифікатом: %s" -#: sm/certchain.c:199 sm/certchain.c:2164 +#: sm/certchain.c:199 sm/certchain.c:2165 msgid "chain" msgstr "ланцюжок" -#: sm/certchain.c:200 sm/certchain.c:2164 +#: sm/certchain.c:200 sm/certchain.c:2165 msgid "shell" msgstr "оболонка" @@ -8671,236 +8683,236 @@ msgid "failed to open '%s': %s\n" msgstr "не вдалося відкрити «%s»: %s\n" -#: sm/certchain.c:355 sm/certchain.c:384 dirmngr/validate.c:204 +#: sm/certchain.c:355 sm/certchain.c:385 dirmngr/validate.c:204 #, c-format msgid "Note: non-critical certificate policy not allowed" msgstr "Зауваження: заборонено некритичні правила сертифікації" -#: sm/certchain.c:359 sm/certchain.c:388 dirmngr/validate.c:209 +#: sm/certchain.c:359 sm/certchain.c:389 dirmngr/validate.c:209 #, c-format msgid "certificate policy not allowed" msgstr "заборонено правила сертифікації" -#: sm/certchain.c:595 sm/keydb.c:1084 sm/keydb.c:1171 +#: sm/certchain.c:596 sm/keydb.c:1084 sm/keydb.c:1171 #, c-format msgid "failed to get the fingerprint\n" msgstr "не вдалося отримати відбиток\n" -#: sm/certchain.c:624 +#: sm/certchain.c:625 #, c-format msgid "looking up issuer at external location\n" msgstr "пошук видавця за зовнішньою адресою\n" -#: sm/certchain.c:644 +#: sm/certchain.c:645 #, c-format msgid "number of issuers matching: %d\n" msgstr "кількість відповідних видавців: %d\n" -#: sm/certchain.c:723 dirmngr/ocsp.c:685 +#: sm/certchain.c:724 dirmngr/ocsp.c:685 #, c-format msgid "can't get authorityInfoAccess: %s\n" msgstr "не вдалося отримати authorityInfoAccess: %s\n" -#: sm/certchain.c:791 +#: sm/certchain.c:792 #, c-format msgid "looking up issuer from the Dirmngr cache\n" msgstr "пошук видавця у кеші dirmngr\n" -#: sm/certchain.c:816 +#: sm/certchain.c:817 #, c-format msgid "number of matching certificates: %d\n" msgstr "кількість відповідних сертифікатів: %d\n" -#: sm/certchain.c:819 +#: sm/certchain.c:820 #, c-format msgid "dirmngr cache-only key lookup failed: %s\n" msgstr "помилка пошуку ключів лише з dirmngr: %s\n" -#: sm/certchain.c:1041 sm/certchain.c:1554 sm/certchain.c:2192 sm/decrypt.c:728 +#: sm/certchain.c:1042 sm/certchain.c:1555 sm/certchain.c:2193 sm/decrypt.c:728 #: sm/encrypt.c:345 sm/import.c:415 sm/keydb.c:1091 sm/keydb.c:1178 #: sm/sign.c:337 sm/verify.c:118 #, c-format msgid "failed to allocate keyDB handle\n" msgstr "не вдалося розмістити дескриптор keyDB\n" -#: sm/certchain.c:1225 +#: sm/certchain.c:1226 msgid "certificate has been revoked" msgstr "сертифікат відкликано" -#: sm/certchain.c:1240 +#: sm/certchain.c:1241 msgid "the status of the certificate is unknown" msgstr "стан сертифікату є невідомим" -#: sm/certchain.c:1247 +#: sm/certchain.c:1248 #, c-format msgid "please make sure that the \"dirmngr\" is properly installed\n" msgstr "будь ласка, переконайтеся, що «dirmngr» встановлено належним чином\n" -#: sm/certchain.c:1253 +#: sm/certchain.c:1254 #, c-format msgid "checking the CRL failed: %s" msgstr "помилка під час перевірки CRL: %s" -#: sm/certchain.c:1282 sm/certchain.c:1350 dirmngr/validate.c:497 +#: sm/certchain.c:1283 sm/certchain.c:1351 dirmngr/validate.c:497 #, c-format msgid "certificate with invalid validity: %s" msgstr "сертифікат з некоректною чинністю: %s" -#: sm/certchain.c:1297 sm/certchain.c:1382 dirmngr/validate.c:515 +#: sm/certchain.c:1298 sm/certchain.c:1383 dirmngr/validate.c:515 #, c-format msgid "certificate not yet valid" msgstr "сертифікат ще не набув чинності" -#: sm/certchain.c:1298 sm/certchain.c:1383 +#: sm/certchain.c:1299 sm/certchain.c:1384 msgid "root certificate not yet valid" msgstr "кореневий сертифікат ще не набув чинності" -#: sm/certchain.c:1299 sm/certchain.c:1384 +#: sm/certchain.c:1300 sm/certchain.c:1385 msgid "intermediate certificate not yet valid" msgstr "проміжний сертифікат ще не набув чинності" -#: sm/certchain.c:1312 dirmngr/validate.c:526 +#: sm/certchain.c:1313 dirmngr/validate.c:526 #, c-format msgid "certificate has expired" msgstr "строк дії сертифіката завершився" -#: sm/certchain.c:1313 +#: sm/certchain.c:1314 msgid "root certificate has expired" msgstr "строк дії кореневого сертифіката завершився" -#: sm/certchain.c:1314 +#: sm/certchain.c:1315 msgid "intermediate certificate has expired" msgstr "строк дії проміжного сертифіката завершився" -#: sm/certchain.c:1356 +#: sm/certchain.c:1357 #, c-format msgid "required certificate attributes missing: %s%s%s" msgstr "не вистачає обов’язкових атрибутів сертифіката: %s%s%s" -#: sm/certchain.c:1365 +#: sm/certchain.c:1366 msgid "certificate with invalid validity" msgstr "сертифікат з некоректною чинністю" -#: sm/certchain.c:1402 +#: sm/certchain.c:1403 msgid "signature not created during lifetime of certificate" msgstr "підпис не було створено під час строку дії сертифіката" -#: sm/certchain.c:1404 +#: sm/certchain.c:1405 msgid "certificate not created during lifetime of issuer" msgstr "сертифікат не було створено під час строку чинності видавця" -#: sm/certchain.c:1405 +#: sm/certchain.c:1406 msgid "intermediate certificate not created during lifetime of issuer" msgstr "проміжний сертифікат не було створено під час строку чинності видавця" -#: sm/certchain.c:1409 +#: sm/certchain.c:1410 #, c-format msgid " ( signature created at " msgstr " ( підпис створено " -#: sm/certchain.c:1410 +#: sm/certchain.c:1411 #, c-format msgid " (certificate created at " msgstr " ( сертифікат створено " -#: sm/certchain.c:1413 +#: sm/certchain.c:1414 #, c-format msgid " (certificate valid from " msgstr " ( сертифікат чинний з " -#: sm/certchain.c:1414 +#: sm/certchain.c:1415 #, c-format msgid " ( issuer valid from " msgstr " ( видавець чинний з " -#: sm/certchain.c:1444 dirmngr/validate.c:577 +#: sm/certchain.c:1445 dirmngr/validate.c:577 #, c-format msgid "fingerprint=%s\n" msgstr "відбиток=%s\n" -#: sm/certchain.c:1453 +#: sm/certchain.c:1454 #, c-format msgid "root certificate has now been marked as trusted\n" msgstr "кореневий сертифікат було позначено як надійний\n" -#: sm/certchain.c:1466 +#: sm/certchain.c:1467 #, c-format msgid "interactive marking as trusted not enabled in gpg-agent\n" msgstr "не увімкнено інтерактивне позначення надійності у gpg-agent\n" -#: sm/certchain.c:1472 +#: sm/certchain.c:1473 #, c-format msgid "interactive marking as trusted disabled for this session\n" msgstr "інтерактивне позначення надійності вимкнено для цього сеансу\n" -#: sm/certchain.c:1531 +#: sm/certchain.c:1532 msgid "WARNING: creation time of signature not known - assuming current time" msgstr "УВАГА: невідомий час створення підпису — припускаємо поточний час" -#: sm/certchain.c:1595 +#: sm/certchain.c:1596 msgid "no issuer found in certificate" msgstr "у сертифікаті не було знайдено даних щодо видавця" -#: sm/certchain.c:1673 +#: sm/certchain.c:1674 msgid "self-signed certificate has a BAD signature" msgstr "самопідписаний сертифікат має ПОМИЛКОВИЙ підпис" -#: sm/certchain.c:1742 dirmngr/validate.c:575 +#: sm/certchain.c:1743 dirmngr/validate.c:575 #, c-format msgid "root certificate is not marked trusted" msgstr "кореневий сертифікат не позначено як надійний" -#: sm/certchain.c:1758 +#: sm/certchain.c:1759 #, c-format msgid "checking the trust list failed: %s\n" msgstr "помилка перевірки списку довіри: %s\n" -#: sm/certchain.c:1789 sm/import.c:176 sm/keylist.c:1396 dirmngr/validate.c:630 +#: sm/certchain.c:1790 sm/import.c:176 sm/keylist.c:1396 dirmngr/validate.c:630 #, c-format msgid "certificate chain too long\n" msgstr "занадто довгий ланцюжок сертифікації\n" -#: sm/certchain.c:1801 dirmngr/validate.c:642 +#: sm/certchain.c:1802 dirmngr/validate.c:642 #, c-format msgid "issuer certificate not found" msgstr "не знайдено видавця сертифіката" -#: sm/certchain.c:1834 dirmngr/validate.c:668 +#: sm/certchain.c:1835 dirmngr/validate.c:668 #, c-format msgid "certificate has a BAD signature" msgstr "сертифікат має ПОМИЛКОВИЙ підпис" -#: sm/certchain.c:1866 dirmngr/validate.c:692 +#: sm/certchain.c:1867 dirmngr/validate.c:692 msgid "found another possible matching CA certificate - trying again" msgstr "" "виявлено інший можливий відповідний сертифікат служби сертифікації (CA) — " "повторюємо спробу" -#: sm/certchain.c:1925 dirmngr/validate.c:717 +#: sm/certchain.c:1926 dirmngr/validate.c:717 #, c-format msgid "certificate chain longer than allowed by CA (%d)" msgstr "ланцюжок сертифікації є довшим за дозволений CA (%d)" -#: sm/certchain.c:1967 sm/certchain.c:2263 dirmngr/validate.c:747 +#: sm/certchain.c:1968 sm/certchain.c:2264 dirmngr/validate.c:747 #, c-format msgid "certificate is good\n" msgstr "сертифікат є належним\n" -#: sm/certchain.c:1968 +#: sm/certchain.c:1969 #, c-format msgid "intermediate certificate is good\n" msgstr "належний проміжний сертифікат\n" -#: sm/certchain.c:1969 +#: sm/certchain.c:1970 #, c-format msgid "root certificate is good\n" msgstr "належний кореневий сертифікат\n" -#: sm/certchain.c:2151 +#: sm/certchain.c:2152 msgid "switching to chain model" msgstr "перемикаємося на ланцюгову модель" -#: sm/certchain.c:2160 +#: sm/certchain.c:2161 #, c-format msgid "validation model used: %s" msgstr "використана модель перевірки: %s" diff -Nru gnupg2-2.2.40/po/zh_CN.po gnupg2-2.2.41/po/zh_CN.po --- gnupg2-2.2.40/po/zh_CN.po 2022-10-10 09:58:26.000000000 +0000 +++ gnupg2-2.2.41/po/zh_CN.po 2022-12-09 08:48:35.000000000 +0000 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: GNU gnupg 2.2.28\n" "Report-Msgid-Bugs-To: translations@gnupg.org\n" -"POT-Creation-Date: 2022-10-10 11:58+0200\n" +"POT-Creation-Date: 2022-12-09 09:48+0100\n" "PO-Revision-Date: 2022-04-26 13:27+0800\n" "Last-Translator: bobwxc \n" "Language-Team: None\n" @@ -220,20 +220,20 @@ msgid "ssh keys greater than %d bits are not supported\n" msgstr "长度超过 %d 位的 ssh 密钥不被支持\n" -#: agent/command-ssh.c:862 common/dotlock.c:856 g10/card-util.c:947 -#: g10/exec.c:554 g10/export.c:1320 g10/gpg.c:1400 g10/keygen.c:4998 +#: agent/command-ssh.c:862 common/dotlock.c:856 g10/card-util.c:946 +#: g10/exec.c:554 g10/export.c:1335 g10/gpg.c:1409 g10/keygen.c:5052 #: g10/keyring.c:1322 g10/keyring.c:1637 g10/openfile.c:291 g10/sign.c:1008 #: g10/sign.c:1322 g10/tdbio.c:753 #, c-format msgid "can't create '%s': %s\n" msgstr "无法创建 ‘%s’: %s\n" -#: agent/command-ssh.c:874 common/helpfile.c:57 g10/card-util.c:904 +#: agent/command-ssh.c:874 common/helpfile.c:57 g10/card-util.c:903 #: g10/dearmor.c:59 g10/dearmor.c:106 g10/decrypt.c:65 g10/decrypt.c:136 -#: g10/decrypt.c:153 g10/encrypt.c:239 g10/encrypt.c:678 g10/gpg.c:1401 -#: g10/import.c:364 g10/import.c:548 g10/import.c:776 g10/keygen.c:4036 +#: g10/decrypt.c:153 g10/encrypt.c:239 g10/encrypt.c:678 g10/gpg.c:1410 +#: g10/import.c:365 g10/import.c:549 g10/import.c:777 g10/keygen.c:4090 #: g10/keyring.c:1663 g10/openfile.c:195 g10/openfile.c:209 g10/plaintext.c:128 -#: g10/plaintext.c:649 g10/sign.c:990 g10/sign.c:1201 g10/sign.c:1306 +#: g10/plaintext.c:654 g10/sign.c:990 g10/sign.c:1201 g10/sign.c:1306 #: g10/sign.c:1451 g10/tdbdump.c:145 g10/tdbdump.c:153 g10/tdbio.c:758 #: g10/tdbio.c:829 g10/verify.c:96 g10/verify.c:160 sm/gpgsm.c:2160 #: sm/gpgsm.c:2190 sm/gpgsm.c:2228 sm/qualified.c:66 dirmngr/certcache.c:420 @@ -447,33 +447,33 @@ msgid "csh-style command output" msgstr "csh 风格的命令行输出" -#: agent/gpg-agent.c:185 g10/gpg.c:579 scd/scdaemon.c:126 sm/gpgsm.c:410 +#: agent/gpg-agent.c:185 g10/gpg.c:580 scd/scdaemon.c:126 sm/gpgsm.c:410 #: dirmngr/dirmngr.c:192 msgid "|FILE|read options from FILE" msgstr "|FILE|从 FILE 中读取选项" -#: agent/gpg-agent.c:189 g10/gpg.c:566 scd/scdaemon.c:130 sm/gpgsm.c:259 +#: agent/gpg-agent.c:189 g10/gpg.c:567 scd/scdaemon.c:130 sm/gpgsm.c:259 #: dirmngr/dirmngr.c:196 msgid "Options controlling the diagnostic output" msgstr "控制诊断输出的选项" -#: agent/gpg-agent.c:191 g10/gpg.c:568 g10/gpgv.c:78 kbx/kbxutil.c:88 +#: agent/gpg-agent.c:191 g10/gpg.c:569 g10/gpgv.c:78 kbx/kbxutil.c:88 #: scd/scdaemon.c:132 sm/gpgsm.c:261 dirmngr/dirmngr-client.c:70 #: dirmngr/dirmngr.c:198 tools/gpg-connect-agent.c:78 tools/gpgconf.c:110 msgid "verbose" msgstr "详细模式" -#: agent/gpg-agent.c:192 g10/gpg.c:570 g10/gpgv.c:79 kbx/kbxutil.c:89 +#: agent/gpg-agent.c:192 g10/gpg.c:571 g10/gpgv.c:79 kbx/kbxutil.c:89 #: scd/scdaemon.c:133 sm/gpgsm.c:263 dirmngr/dirmngr-client.c:71 #: dirmngr/dirmngr.c:199 msgid "be somewhat more quiet" msgstr "尽量减少提示信息" -#: agent/gpg-agent.c:200 g10/gpg.c:583 sm/gpgsm.c:276 dirmngr/dirmngr.c:209 +#: agent/gpg-agent.c:200 g10/gpg.c:584 sm/gpgsm.c:276 dirmngr/dirmngr.c:209 msgid "|FILE|write server mode logs to FILE" msgstr "|FILE|将服务器模式的日志写入到 FILE" -#: agent/gpg-agent.c:204 g10/gpg.c:589 scd/scdaemon.c:147 sm/gpgsm.c:283 +#: agent/gpg-agent.c:204 g10/gpg.c:590 scd/scdaemon.c:147 sm/gpgsm.c:283 #: dirmngr/dirmngr.c:213 msgid "Options controlling the configuration" msgstr "控制配置的选项" @@ -510,7 +510,7 @@ msgid "enable putty support" msgstr "启用 putty 支持" -#: agent/gpg-agent.c:237 g10/gpg.c:831 scd/scdaemon.c:175 sm/gpgsm.c:369 +#: agent/gpg-agent.c:237 g10/gpg.c:832 scd/scdaemon.c:175 sm/gpgsm.c:369 msgid "Options controlling the security" msgstr "控制安全的选项" @@ -606,7 +606,7 @@ #. reporting address. This is so that we can change the #. reporting address without breaking the translations. #: agent/gpg-agent.c:563 agent/preset-passphrase.c:100 agent/protect-tool.c:155 -#: g10/gpg.c:1108 g10/gpgv.c:149 kbx/kbxutil.c:113 scd/scdaemon.c:313 +#: g10/gpg.c:1117 g10/gpgv.c:149 kbx/kbxutil.c:113 scd/scdaemon.c:313 #: sm/gpgsm.c:600 dirmngr/dirmngr-client.c:168 dirmngr/dirmngr.c:458 #: tools/gpg-connect-agent.c:205 tools/gpgconf.c:154 #: tools/gpg-check-pattern.c:143 @@ -627,26 +627,26 @@ "语法: @GPG_AGENT@ [选项] [命令 [参数]]\n" "@GNUPG@ 私钥管理器\n" -#: agent/gpg-agent.c:619 g10/gpg.c:1304 scd/scdaemon.c:385 sm/gpgsm.c:748 +#: agent/gpg-agent.c:619 g10/gpg.c:1313 scd/scdaemon.c:385 sm/gpgsm.c:748 #: dirmngr/dirmngr.c:542 #, c-format msgid "invalid debug-level '%s' given\n" msgstr "无效的调试级别‘%s’\n" -#: agent/gpg-agent.c:988 g10/gpg.c:3810 g10/gpg.c:3834 sm/gpgsm.c:1585 +#: agent/gpg-agent.c:988 g10/gpg.c:3830 g10/gpg.c:3854 sm/gpgsm.c:1585 #: sm/gpgsm.c:1591 #, c-format msgid "selected digest algorithm is invalid\n" msgstr "所选的散列算法无效\n" #: agent/gpg-agent.c:1216 agent/gpg-agent.c:2029 common/argparse.c:1766 -#: common/argparse.c:1858 g10/gpg.c:2517 scd/scdaemon.c:547 sm/gpgsm.c:1007 +#: common/argparse.c:1858 g10/gpg.c:2526 scd/scdaemon.c:547 sm/gpgsm.c:1007 #: dirmngr/dirmngr.c:1081 dirmngr/dirmngr.c:1937 #, c-format msgid "reading options from '%s'\n" msgstr "从‘%s’读取选项\n" -#: agent/gpg-agent.c:1332 g10/gpg.c:3751 scd/scdaemon.c:671 sm/gpgsm.c:1522 +#: agent/gpg-agent.c:1332 g10/gpg.c:3769 scd/scdaemon.c:671 sm/gpgsm.c:1522 #: dirmngr/dirmngr.c:1190 tools/gpg-connect-agent.c:1244 tools/gpgconf.c:677 #, c-format msgid "Note: '%s' is not considered an option\n" @@ -776,7 +776,7 @@ "语法: gpg-preset-passphrase [选项] KEYGRIP\n" "密码缓存管理\n" -#: agent/protect-tool.c:108 g10/gpg.c:441 kbx/kbxutil.c:71 sm/gpgsm.c:210 +#: agent/protect-tool.c:108 g10/gpg.c:442 kbx/kbxutil.c:71 sm/gpgsm.c:210 #: dirmngr/dirmngr.c:171 tools/gpgconf.c:80 msgid "" "@Commands:\n" @@ -996,7 +996,7 @@ msgid "secret key parts are not available\n" msgstr "私钥部分不可用\n" -#: agent/cvt-openpgp.c:344 g10/card-util.c:1556 +#: agent/cvt-openpgp.c:344 g10/card-util.c:1555 #, c-format msgid "public key algorithm %d (%s) is not supported\n" msgstr "不支持的公钥算法: %d (%s)\n" @@ -1154,7 +1154,7 @@ msgid "out of core while allocating %lu bytes" msgstr "分配 %lu 字节时内存不足" -#: common/miscellaneous.c:115 g10/card-util.c:911 tools/no-libgcrypt.c:30 +#: common/miscellaneous.c:115 g10/card-util.c:910 tools/no-libgcrypt.c:30 #, c-format msgid "error allocating enough memory: %s\n" msgstr "在分配足够的内存时出现错误: %s\n" @@ -1267,7 +1267,7 @@ msgstr "算法:%s" #: common/audit.c:774 common/audit.c:776 common/audit.c:921 common/audit.c:923 -#: scd/app-openpgp.c:3557 +#: scd/app-openpgp.c:3566 #, c-format msgid "unsupported algorithm: %s" msgstr "不支持的算法:%s" @@ -1342,11 +1342,11 @@ msgid "Root certificate trustworthy" msgstr "根证书可靠" -#: common/audit.c:1112 sm/certchain.c:1235 +#: common/audit.c:1112 sm/certchain.c:1236 msgid "no CRL found for certificate" msgstr "未找到该证书的证书吊销列表(CRL)" -#: common/audit.c:1115 sm/certchain.c:1245 +#: common/audit.c:1115 sm/certchain.c:1246 msgid "the available CRL is too old" msgstr "可用的证书吊销列表(CRL)太旧" @@ -1469,7 +1469,7 @@ msgid "missing argument for option \"%.50s\"\n" msgstr "选项 “%.50s” 的参数缺失\n" -#: common/argparse.c:558 g10/gpg.c:3525 +#: common/argparse.c:558 g10/gpg.c:3543 #, c-format msgid "invalid argument for option \"%.50s\"\n" msgstr "选项 “%.50s” 的参数无效\n" @@ -1568,92 +1568,92 @@ msgid "%s is too old (need %s, have %s)\n" msgstr "%s 太旧 (需要 %s,拥有 %s)\n" -#: g10/armor.c:423 +#: g10/armor.c:424 #, c-format msgid "armor: %s\n" msgstr "字符封装:%s\n" -#: g10/armor.c:462 +#: g10/armor.c:463 #, c-format msgid "invalid armor header: " msgstr "无效的字符封装头: " -#: g10/armor.c:473 +#: g10/armor.c:474 #, c-format msgid "armor header: " msgstr "字符封装头: " -#: g10/armor.c:486 +#: g10/armor.c:487 #, c-format msgid "invalid clearsig header\n" msgstr "无效的明文签名头\n" -#: g10/armor.c:499 +#: g10/armor.c:500 #, c-format msgid "unknown armor header: " msgstr "未知的字符封装头: " -#: g10/armor.c:552 +#: g10/armor.c:553 #, c-format msgid "nested clear text signatures\n" msgstr "嵌套明文签名\n" -#: g10/armor.c:687 +#: g10/armor.c:688 #, c-format msgid "unexpected armor: " msgstr "与预期不符的字符封装: " -#: g10/armor.c:700 +#: g10/armor.c:701 #, c-format msgid "invalid dash escaped line: " msgstr "无效的连字符转义行: " -#: g10/armor.c:872 g10/armor.c:1492 +#: g10/armor.c:873 g10/armor.c:1493 #, c-format msgid "invalid radix64 character %02X skipped\n" msgstr "无效的 radix64 字符 %02X 已被跳过\n" -#: g10/armor.c:915 +#: g10/armor.c:916 #, c-format msgid "premature eof (no CRC)\n" msgstr "文件过早结束(没有 CRC 部分)\n" -#: g10/armor.c:949 +#: g10/armor.c:950 #, c-format msgid "premature eof (in CRC)\n" msgstr "文件过早结束(CRC 部分未结束)\n" -#: g10/armor.c:957 +#: g10/armor.c:958 #, c-format msgid "malformed CRC\n" msgstr "异常的 CRC\n" -#: g10/armor.c:961 g10/armor.c:1529 +#: g10/armor.c:962 g10/armor.c:1530 #, c-format msgid "CRC error; %06lX - %06lX\n" msgstr "CRC 错误;%06lX - %06lX\n" -#: g10/armor.c:981 +#: g10/armor.c:982 #, c-format msgid "premature eof (in trailer)\n" msgstr "文件过早结束(于结尾处)\n" -#: g10/armor.c:985 +#: g10/armor.c:986 #, c-format msgid "error in trailer line\n" msgstr "结尾行出现错误\n" -#: g10/armor.c:1305 +#: g10/armor.c:1306 #, c-format msgid "no valid OpenPGP data found.\n" msgstr "找不到有效的 OpenPGP 数据。\n" -#: g10/armor.c:1310 +#: g10/armor.c:1311 #, c-format msgid "invalid armor: line longer than %d characters\n" msgstr "无效的字符封装:一行超过 %d 字符\n" -#: g10/armor.c:1314 +#: g10/armor.c:1315 #, c-format msgid "" "quoted printable character in armor - probably a buggy MTA has been used\n" @@ -1787,23 +1787,23 @@ msgid "server uses an invalid certificate" msgstr "服务器证书无效" -#: g10/call-dirmngr.c:462 g10/gpg.c:4458 +#: g10/call-dirmngr.c:462 g10/gpg.c:4478 #, c-format msgid "Note: %s\n" msgstr "注意:%s\n" -#: g10/card-util.c:86 g10/card-util.c:366 g10/card-util.c:1918 +#: g10/card-util.c:86 g10/card-util.c:366 g10/card-util.c:1917 #, c-format msgid "OpenPGP card not available: %s\n" msgstr "OpenPGP 卡不可用:%s\n" -#: g10/card-util.c:91 g10/card-util.c:1924 +#: g10/card-util.c:91 g10/card-util.c:1923 #, c-format msgid "OpenPGP card no. %s detected\n" msgstr "检测到 OpenPGP 卡,号码为 %s\n" -#: g10/card-util.c:97 g10/card-util.c:2253 g10/delkey.c:160 g10/keyedit.c:1423 -#: g10/keygen.c:4466 g10/revoke.c:214 g10/revoke.c:636 +#: g10/card-util.c:97 g10/card-util.c:2252 g10/delkey.c:160 g10/keyedit.c:1423 +#: g10/keygen.c:4520 g10/revoke.c:214 g10/revoke.c:636 #, c-format msgid "can't do this in batch mode\n" msgstr "在批处理模式中无法完成此操作\n" @@ -1813,14 +1813,14 @@ msgid "This command is only available for version 2 cards\n" msgstr "这一命令只在版本 2 的卡上可用\n" -#: g10/card-util.c:107 scd/app-openpgp.c:2866 +#: g10/card-util.c:107 scd/app-openpgp.c:2869 #, c-format msgid "Reset Code not or not anymore available\n" msgstr "重置码不可用或不再可用\n" -#: g10/card-util.c:140 g10/card-util.c:1442 g10/card-util.c:1704 -#: g10/card-util.c:1796 g10/keyedit.c:394 g10/keyedit.c:415 g10/keyedit.c:429 -#: g10/keygen.c:1808 g10/keygen.c:1980 g10/keygen.c:2186 g10/keygen.c:2477 +#: g10/card-util.c:140 g10/card-util.c:1441 g10/card-util.c:1703 +#: g10/card-util.c:1795 g10/keyedit.c:394 g10/keyedit.c:415 g10/keyedit.c:429 +#: g10/keygen.c:1862 g10/keygen.c:2034 g10/keygen.c:2240 g10/keygen.c:2531 #: sm/certreqgen-ui.c:165 sm/certreqgen-ui.c:291 sm/certreqgen-ui.c:325 msgid "Your selection? " msgstr "您的选择是? " @@ -1870,79 +1870,79 @@ msgid "Error: Combined name too long (limit is %d characters).\n" msgstr "错误:合成后的姓名太长(至多 %d 个字符)。\n" -#: g10/card-util.c:826 +#: g10/card-util.c:825 msgid "URL to retrieve public key: " msgstr "拉取公钥的 URL: " -#: g10/card-util.c:920 g10/decrypt-data.c:509 g10/import.c:399 g10/import.c:746 -#: g10/import.c:798 dirmngr/crlcache.c:655 dirmngr/crlcache.c:660 +#: g10/card-util.c:919 g10/decrypt-data.c:509 g10/import.c:400 g10/import.c:747 +#: g10/import.c:799 dirmngr/crlcache.c:655 dirmngr/crlcache.c:660 #: dirmngr/crlcache.c:914 dirmngr/crlcache.c:920 dirmngr/dirmngr.c:1748 #: tools/gpgconf.c:483 tools/gpgconf.c:529 #, c-format msgid "error reading '%s': %s\n" msgstr "读取 ‘%s’ 时出现错误:%s\n" -#: g10/card-util.c:953 g10/decrypt-data.c:512 g10/export.c:2467 +#: g10/card-util.c:952 g10/decrypt-data.c:512 g10/export.c:2586 #: dirmngr/crlcache.c:925 #, c-format msgid "error writing '%s': %s\n" msgstr "写入 ‘%s’ 时出现错误: %s\n" -#: g10/card-util.c:980 +#: g10/card-util.c:979 msgid "Login data (account name): " msgstr "登录数据(帐户名): " -#: g10/card-util.c:1018 +#: g10/card-util.c:1017 msgid "Private DO data: " msgstr "个人 DO 数据: " -#: g10/card-util.c:1103 +#: g10/card-util.c:1102 msgid "Language preferences: " msgstr "语言偏好: " -#: g10/card-util.c:1111 +#: g10/card-util.c:1110 msgid "Error: invalid length of preference string.\n" msgstr "错误:偏好字符串长度无效。\n" -#: g10/card-util.c:1120 +#: g10/card-util.c:1119 msgid "Error: invalid characters in preference string.\n" msgstr "错误:偏好字符串中存在无效字符。\n" -#: g10/card-util.c:1142 +#: g10/card-util.c:1141 msgid "Salutation (M = Mr., F = Ms., or space): " msgstr "称呼(M = 先生,F = 女士,或者留空): " -#: g10/card-util.c:1156 +#: g10/card-util.c:1155 msgid "Error: invalid response.\n" msgstr "错误:无效的响应。\n" -#: g10/card-util.c:1178 +#: g10/card-util.c:1177 msgid "CA fingerprint: " msgstr "CA 指纹: " -#: g10/card-util.c:1201 +#: g10/card-util.c:1200 msgid "Error: invalid formatted fingerprint.\n" msgstr "错误:指纹格式无效。\n" -#: g10/card-util.c:1252 +#: g10/card-util.c:1251 #, c-format msgid "key operation not possible: %s\n" msgstr "密钥操作无法实现:%s\n" -#: g10/card-util.c:1253 +#: g10/card-util.c:1252 msgid "not an OpenPGP card" msgstr "不是一个 OpenPGP 卡" -#: g10/card-util.c:1266 g10/keygen.c:4486 g10/keygen.c:5562 +#: g10/card-util.c:1265 g10/keygen.c:4540 g10/keygen.c:5616 #, c-format msgid "error getting current key info: %s\n" msgstr "取得当前密钥信息时出错:%s\n" -#: g10/card-util.c:1351 +#: g10/card-util.c:1350 msgid "Replace existing key? (y/N) " msgstr "替换现存的密钥?(y/N) " -#: g10/card-util.c:1368 +#: g10/card-util.c:1367 msgid "" "Note: There is no guarantee that the card supports the requested size.\n" " If the key generation does not succeed, please check the\n" @@ -1952,97 +1952,97 @@ " 如果密钥生成不成功,请检查\n" " 卡的允许密钥长度。\n" -#: g10/card-util.c:1390 g10/keygen.c:2363 sm/certreqgen-ui.c:179 +#: g10/card-util.c:1389 g10/keygen.c:2417 sm/certreqgen-ui.c:179 #, c-format msgid "What keysize do you want? (%u) " msgstr "您想要使用的密钥长度?(%u) " -#: g10/card-util.c:1400 g10/keygen.c:2286 g10/keygen.c:2318 +#: g10/card-util.c:1399 g10/keygen.c:2340 g10/keygen.c:2372 #: sm/certreqgen-ui.c:194 #, c-format msgid "rounded up to %u bits\n" msgstr "舍入到 %u 位\n" -#: g10/card-util.c:1408 g10/keygen.c:2371 sm/certreqgen-ui.c:184 +#: g10/card-util.c:1407 g10/keygen.c:2425 sm/certreqgen-ui.c:184 #, c-format msgid "%s keysizes must be in the range %u-%u\n" msgstr "%s 密钥长度必须在 %u 与 %u 间\n" -#: g10/card-util.c:1427 +#: g10/card-util.c:1426 msgid "Changing card key attribute for: " msgstr "正在改变卡片的密钥属性: " -#: g10/card-util.c:1429 +#: g10/card-util.c:1428 msgid "Signature key\n" msgstr "签名密钥\n" -#: g10/card-util.c:1431 +#: g10/card-util.c:1430 msgid "Encryption key\n" msgstr "加密密钥\n" -#: g10/card-util.c:1433 +#: g10/card-util.c:1432 msgid "Authentication key\n" msgstr "身份验证密钥\n" -#: g10/card-util.c:1435 g10/keygen.c:1926 sm/certreqgen-ui.c:157 +#: g10/card-util.c:1434 g10/keygen.c:1980 sm/certreqgen-ui.c:157 msgid "Please select what kind of key you want:\n" msgstr "请选择您要使用的密钥类型:\n" -#: g10/card-util.c:1436 sm/certreqgen-ui.c:158 +#: g10/card-util.c:1435 sm/certreqgen-ui.c:158 #, c-format msgid " (%d) RSA\n" msgstr " (%d) RSA\n" -#: g10/card-util.c:1437 +#: g10/card-util.c:1436 #, c-format msgid " (%d) ECC\n" msgstr " (%d) ECC\n" -#: g10/card-util.c:1449 g10/card-util.c:1716 g10/card-util.c:1816 -#: g10/keyedit.c:900 g10/keygen.c:1834 g10/keygen.c:1862 g10/keygen.c:1987 -#: g10/keygen.c:2222 g10/keygen.c:2505 g10/revoke.c:838 +#: g10/card-util.c:1448 g10/card-util.c:1715 g10/card-util.c:1815 +#: g10/keyedit.c:900 g10/keygen.c:1888 g10/keygen.c:1916 g10/keygen.c:2041 +#: g10/keygen.c:2276 g10/keygen.c:2559 g10/revoke.c:838 msgid "Invalid selection.\n" msgstr "无效的选择。\n" -#: g10/card-util.c:1522 +#: g10/card-util.c:1521 #, c-format msgid "The card will now be re-configured to generate a key of %u bits\n" msgstr "此卡片将会被重新配置以生成一个 %u 位的新密钥\n" -#: g10/card-util.c:1527 +#: g10/card-util.c:1526 #, c-format msgid "The card will now be re-configured to generate a key of type: %s\n" msgstr "此卡片将会被重新配置以生成一个以下类型的密钥: %s\n" -#: g10/card-util.c:1563 +#: g10/card-util.c:1562 #, c-format msgid "error changing key attribute for key %d: %s\n" msgstr "改变密钥 %d 的密钥属性时出现错误: %s\n" -#: g10/card-util.c:1579 g10/card-util.c:2106 +#: g10/card-util.c:1578 g10/card-util.c:2105 #, c-format msgid "error getting card info: %s\n" msgstr "获取卡片信息时出现错: %s\n" -#: g10/card-util.c:1585 g10/card-util.c:1930 g10/card-util.c:2112 +#: g10/card-util.c:1584 g10/card-util.c:1929 g10/card-util.c:2111 #, c-format msgid "This command is not supported by this card\n" msgstr "此命令不被此卡片支持\n" -#: g10/card-util.c:1631 +#: g10/card-util.c:1630 msgid "Make off-card backup of encryption key? (Y/n) " msgstr "创建加密密钥的离卡备份? (Y/n) " -#: g10/card-util.c:1645 +#: g10/card-util.c:1644 #, c-format msgid "Note: keys are already stored on the card!\n" msgstr "注意: 已有私钥被存储于卡片上!\n" -#: g10/card-util.c:1648 +#: g10/card-util.c:1647 msgid "Replace existing keys? (y/N) " msgstr "替换现存的密钥?(y/N) " -#: g10/card-util.c:1660 +#: g10/card-util.c:1659 #, c-format msgid "" "Please note that the factory settings of the PINs are\n" @@ -2053,142 +2053,142 @@ " PIN = ‘%s’ 管理员 PIN = ‘%s’\n" "您应当使用 --change-pin 命令来更改它们\n" -#: g10/card-util.c:1695 +#: g10/card-util.c:1694 msgid "Please select the type of key to generate:\n" msgstr "请选择您要生成的密钥类型:\n" -#: g10/card-util.c:1697 g10/card-util.c:1787 +#: g10/card-util.c:1696 g10/card-util.c:1786 msgid " (1) Signature key\n" msgstr " (1) 签名密钥\n" -#: g10/card-util.c:1698 g10/card-util.c:1789 +#: g10/card-util.c:1697 g10/card-util.c:1788 msgid " (2) Encryption key\n" msgstr " (2) 加密密钥\n" -#: g10/card-util.c:1699 g10/card-util.c:1791 +#: g10/card-util.c:1698 g10/card-util.c:1790 msgid " (3) Authentication key\n" msgstr " (3) 身份验证密钥\n" -#: g10/card-util.c:1784 +#: g10/card-util.c:1783 msgid "Please select where to store the key:\n" msgstr "请选择在哪里存储密钥:\n" -#: g10/card-util.c:1830 +#: g10/card-util.c:1829 #, c-format msgid "KEYTOCARD failed: %s\n" msgstr "KEYTOCARD 失败: %s\n" -#: g10/card-util.c:1935 +#: g10/card-util.c:1934 #, c-format msgid "Note: This command destroys all keys stored on the card!\n" msgstr "注意: 这一命令将会销毁所有储存于卡片上的私钥!\n" -#: g10/card-util.c:1938 +#: g10/card-util.c:1937 msgid "Continue? (y/N) " msgstr "继续? (y/N) " -#: g10/card-util.c:1943 +#: g10/card-util.c:1942 msgid "Really do a factory reset? (enter \"yes\") " msgstr "真的要执行恢复出厂设置吗? (输入“yes”) " -#: g10/card-util.c:2129 +#: g10/card-util.c:2128 #, c-format msgid "error for setup KDF: %s\n" msgstr "设置 KDF 时出现错误: %s\n" -#: g10/card-util.c:2158 g10/keyedit.c:1260 +#: g10/card-util.c:2157 g10/keyedit.c:1260 msgid "quit this menu" msgstr "退出此菜单" -#: g10/card-util.c:2160 +#: g10/card-util.c:2159 msgid "show admin commands" msgstr "显示管理员命令" -#: g10/card-util.c:2161 g10/keyedit.c:1263 +#: g10/card-util.c:2160 g10/keyedit.c:1263 msgid "show this help" msgstr "显示此帮助" -#: g10/card-util.c:2163 +#: g10/card-util.c:2162 msgid "list all available data" msgstr "列出所有可用数据" -#: g10/card-util.c:2166 +#: g10/card-util.c:2165 msgid "change card holder's name" msgstr "更改卡持有人的姓名" -#: g10/card-util.c:2167 +#: g10/card-util.c:2166 msgid "change URL to retrieve key" msgstr "更改拉取密钥的 URL" -#: g10/card-util.c:2168 +#: g10/card-util.c:2167 msgid "fetch the key specified in the card URL" msgstr "根据卡中指定的 URL 获取密钥" -#: g10/card-util.c:2169 +#: g10/card-util.c:2168 msgid "change the login name" msgstr "更改登录名" -#: g10/card-util.c:2170 +#: g10/card-util.c:2169 msgid "change the language preferences" msgstr "更改语言偏好" -#: g10/card-util.c:2171 +#: g10/card-util.c:2170 msgid "change card holder's salutation" msgstr "变更卡片持有人的称呼" -#: g10/card-util.c:2173 +#: g10/card-util.c:2172 msgid "change a CA fingerprint" msgstr "更改一个 CA 指纹" -#: g10/card-util.c:2174 +#: g10/card-util.c:2173 msgid "toggle the signature force PIN flag" msgstr "切换签名强制使用 PIN 标志" -#: g10/card-util.c:2175 +#: g10/card-util.c:2174 msgid "generate new keys" msgstr "生成新的密钥" -#: g10/card-util.c:2176 +#: g10/card-util.c:2175 msgid "menu to change or unblock the PIN" msgstr "更改或解锁 PIN 的菜单" -#: g10/card-util.c:2177 +#: g10/card-util.c:2176 msgid "verify the PIN and list all data" msgstr "验证 PIN 并列出所有数据" -#: g10/card-util.c:2178 +#: g10/card-util.c:2177 msgid "unblock the PIN using a Reset Code" msgstr "使用重置码解锁 PIN" -#: g10/card-util.c:2179 +#: g10/card-util.c:2178 msgid "destroy all keys and data" msgstr "销毁所有密钥和数据" -#: g10/card-util.c:2180 +#: g10/card-util.c:2179 msgid "setup KDF for PIN authentication" msgstr "针对 PIN 身份验证设置 KDF" -#: g10/card-util.c:2181 +#: g10/card-util.c:2180 msgid "change the key attribute" msgstr "更改密钥属性" -#: g10/card-util.c:2305 +#: g10/card-util.c:2304 msgid "gpg/card> " msgstr "gpg/card> " -#: g10/card-util.c:2346 +#: g10/card-util.c:2345 msgid "Admin-only command\n" msgstr "仅供管理员使用的命令\n" -#: g10/card-util.c:2377 +#: g10/card-util.c:2376 msgid "Admin commands are allowed\n" msgstr "管理员命令可用\n" -#: g10/card-util.c:2379 +#: g10/card-util.c:2378 msgid "Admin commands are not allowed\n" msgstr "管理员命令不可用\n" -#: g10/card-util.c:2482 g10/keyedit.c:2229 +#: g10/card-util.c:2481 g10/keyedit.c:2229 msgid "Invalid command (try \"help\")\n" msgstr "无效的命令 (尝试“help”)\n" @@ -2197,21 +2197,21 @@ msgid "--output doesn't work for this command\n" msgstr "--output 在这个命令中不起作用\n" -#: g10/decrypt.c:247 g10/gpg.c:5155 g10/keyring.c:399 g10/keyring.c:750 +#: g10/decrypt.c:247 g10/gpg.c:5175 g10/keyring.c:399 g10/keyring.c:750 #, c-format msgid "can't open '%s'\n" msgstr "无法打开 ‘%s’\n" -#: g10/delkey.c:83 g10/export.c:1947 g10/export.c:2230 g10/export.c:2351 -#: g10/getkey.c:2108 g10/gpg.c:5100 g10/keyedit.c:1445 g10/keyedit.c:2335 +#: g10/delkey.c:83 g10/export.c:2035 g10/export.c:2349 g10/export.c:2470 +#: g10/getkey.c:2108 g10/gpg.c:5120 g10/keyedit.c:1445 g10/keyedit.c:2335 #: g10/keyedit.c:2637 g10/keyedit.c:4600 g10/keylist.c:693 g10/keyserver.c:1092 #: g10/revoke.c:230 g10/tofu.c:2165 #, c-format msgid "key \"%s\" not found: %s\n" msgstr "未找到密钥 ‘%s’:%s\n" -#: g10/delkey.c:92 g10/export.c:2015 g10/getkey.c:2116 g10/getkey.c:4517 -#: g10/gpg.c:5109 g10/keyedit.c:2308 g10/keyserver.c:1110 g10/revoke.c:236 +#: g10/delkey.c:92 g10/export.c:2103 g10/getkey.c:2116 g10/getkey.c:4517 +#: g10/gpg.c:5129 g10/keyedit.c:2308 g10/keyserver.c:1110 g10/revoke.c:236 #: g10/revoke.c:663 g10/tofu.c:2173 #, c-format msgid "error reading keyblock: %s\n" @@ -2327,13 +2327,13 @@ msgid "WARNING: '%s' is an empty file\n" msgstr "警告:‘%s’是一个空文件\n" -#: g10/encrypt.c:446 g10/encrypt.c:521 g10/decrypt-data.c:266 g10/gpg.c:3959 -#: g10/gpg.c:3999 sm/decrypt.c:826 sm/encrypt.c:416 sm/gpgsm.c:1609 +#: g10/encrypt.c:446 g10/encrypt.c:521 g10/decrypt-data.c:266 g10/gpg.c:3979 +#: g10/gpg.c:4019 sm/decrypt.c:826 sm/encrypt.c:416 sm/gpgsm.c:1609 #, c-format msgid "cipher algorithm '%s' may not be used in %s mode\n" msgstr "密文算法 ‘%s’ 可能不能被用于 %s 模式\n" -#: g10/encrypt.c:455 g10/gpg.c:3965 g10/gpg.c:4011 g10/sig-check.c:175 +#: g10/encrypt.c:455 g10/gpg.c:3985 g10/gpg.c:4031 g10/sig-check.c:175 #: g10/sign.c:391 sm/gpgsm.c:1619 sm/gpgsm.c:1629 sm/sign.c:478 sm/verify.c:506 #, c-format msgid "digest algorithm '%s' may not be used in %s mode\n" @@ -2443,61 +2443,67 @@ msgid "WARNING: unable to remove temp directory '%s': %s\n" msgstr "警告:无法删除临时目录‘%s’:%s\n" -#: g10/export.c:119 +#: g10/export.c:124 msgid "export signatures that are marked as local-only" msgstr "导出被标记为“仅限本地”的签名" -#: g10/export.c:121 +#: g10/export.c:126 msgid "export attribute user IDs (generally photo IDs)" msgstr "导出附属用户标识(一般为照片标识)" -#: g10/export.c:123 +#: g10/export.c:128 msgid "export revocation keys marked as \"sensitive\"" msgstr "导出被标记为“敏感”的吊销用密钥" -#: g10/export.c:125 +#: g10/export.c:130 msgid "remove unusable parts from key during export" msgstr "导出时移除密钥中未使用的部分" -#: g10/export.c:127 +#: g10/export.c:132 msgid "remove as much as possible from key during export" msgstr "导出时尽可能移除密钥中的可选部分" -#: g10/export.c:133 +#: g10/export.c:138 +#, fuzzy +#| msgid "generate a revocation certificate" +msgid "export only revocation certificates" +msgstr "生成一份吊销证书" + +#: g10/export.c:141 msgid "use the GnuPG key backup format" msgstr "使用 GnuPG 密钥备份格式" -#: g10/export.c:1291 +#: g10/export.c:1306 msgid " - skipped" msgstr " - 已跳过" -#: g10/export.c:1324 g10/import.c:2085 g10/openfile.c:200 g10/openfile.c:294 +#: g10/export.c:1339 g10/import.c:2089 g10/openfile.c:200 g10/openfile.c:294 #: g10/sign.c:1012 g10/sign.c:1326 #, c-format msgid "writing to '%s'\n" msgstr "正在写入‘%s’\n" -#: g10/export.c:1769 +#: g10/export.c:1784 #, c-format msgid "key %s: key material on-card - skipped\n" msgstr "密钥 %s:密钥在卡片上 - 已跳过\n" -#: g10/export.c:1964 +#: g10/export.c:2052 #, c-format msgid "exporting secret keys not allowed\n" msgstr "不允许导出私钥\n" -#: g10/export.c:2041 +#: g10/export.c:2129 #, c-format msgid "key %s: PGP 2.x style key - skipped\n" msgstr "密钥 %s:PGP 2.x 样式的密钥 - 已跳过\n" -#: g10/export.c:2135 +#: g10/export.c:2254 #, c-format msgid "WARNING: nothing exported\n" msgstr "警告:没有导出任何东西\n" -#: g10/export.c:2432 g10/plaintext.c:153 g10/plaintext.c:162 +#: g10/export.c:2551 g10/plaintext.c:153 g10/plaintext.c:162 #: g10/plaintext.c:168 g10/plaintext.c:191 #, c-format msgid "error creating '%s': %s\n" @@ -2561,268 +2567,268 @@ msgid "using subkey %s instead of primary key %s\n" msgstr "使用子密钥 %s 而非主密钥 %s\n" -#: g10/getkey.c:4446 g10/gpg.c:2137 +#: g10/getkey.c:4446 g10/gpg.c:2146 #, c-format msgid "valid values for option '%s':\n" msgstr "选项 ‘%s’ 的有效值:\n" -#: g10/gpg.c:443 sm/gpgsm.c:212 +#: g10/gpg.c:444 sm/gpgsm.c:212 msgid "make a signature" msgstr "生成一份签名" -#: g10/gpg.c:444 +#: g10/gpg.c:445 msgid "make a clear text signature" msgstr "生成一份明文签名" -#: g10/gpg.c:446 sm/gpgsm.c:214 +#: g10/gpg.c:447 sm/gpgsm.c:214 msgid "make a detached signature" msgstr "生成一份分离的签名" -#: g10/gpg.c:447 sm/gpgsm.c:215 +#: g10/gpg.c:448 sm/gpgsm.c:215 msgid "encrypt data" msgstr "加密数据" -#: g10/gpg.c:449 +#: g10/gpg.c:450 msgid "encryption only with symmetric cipher" msgstr "仅使用对称密文加密" -#: g10/gpg.c:451 sm/gpgsm.c:217 +#: g10/gpg.c:452 sm/gpgsm.c:217 msgid "decrypt data (default)" msgstr "解密数据(默认)" -#: g10/gpg.c:453 sm/gpgsm.c:218 +#: g10/gpg.c:454 sm/gpgsm.c:218 msgid "verify a signature" msgstr "验证签名" -#: g10/gpg.c:455 sm/gpgsm.c:219 +#: g10/gpg.c:456 sm/gpgsm.c:219 msgid "list keys" msgstr "列出密钥" -#: g10/gpg.c:457 +#: g10/gpg.c:458 msgid "list keys and signatures" msgstr "列出密钥和签名" -#: g10/gpg.c:460 +#: g10/gpg.c:461 msgid "list and check key signatures" msgstr "列出并检查密钥签名" -#: g10/gpg.c:462 sm/gpgsm.c:224 +#: g10/gpg.c:463 sm/gpgsm.c:224 msgid "list keys and fingerprints" msgstr "列出密钥和指纹" -#: g10/gpg.c:463 sm/gpgsm.c:222 +#: g10/gpg.c:464 sm/gpgsm.c:222 msgid "list secret keys" msgstr "列出私钥" -#: g10/gpg.c:465 sm/gpgsm.c:225 +#: g10/gpg.c:466 sm/gpgsm.c:225 msgid "generate a new key pair" msgstr "生成一个新的密钥对" -#: g10/gpg.c:468 +#: g10/gpg.c:469 msgid "quickly generate a new key pair" msgstr "快速生成一个新的密钥对" -#: g10/gpg.c:471 +#: g10/gpg.c:472 msgid "quickly add a new user-id" msgstr "快速添加一个新的用户标识" -#: g10/gpg.c:476 +#: g10/gpg.c:477 msgid "quickly revoke a user-id" msgstr "快速吊销一个用户标识" -#: g10/gpg.c:479 +#: g10/gpg.c:480 msgid "quickly set a new expiration date" msgstr "快速设置一个过期日期" -#: g10/gpg.c:482 +#: g10/gpg.c:483 msgid "full featured key pair generation" msgstr "完整功能的密钥对生成" -#: g10/gpg.c:485 +#: g10/gpg.c:486 msgid "generate a revocation certificate" msgstr "生成一份吊销证书" -#: g10/gpg.c:488 sm/gpgsm.c:228 +#: g10/gpg.c:489 sm/gpgsm.c:228 msgid "remove keys from the public keyring" msgstr "从公钥钥匙环里删除密钥" -#: g10/gpg.c:490 +#: g10/gpg.c:491 msgid "remove keys from the secret keyring" msgstr "从私钥钥匙环里删除密钥" -#: g10/gpg.c:492 +#: g10/gpg.c:493 msgid "quickly sign a key" msgstr "快速签名一个密钥" -#: g10/gpg.c:494 +#: g10/gpg.c:495 msgid "quickly sign a key locally" msgstr "快速本地签名一个密钥" -#: g10/gpg.c:496 +#: g10/gpg.c:497 msgid "quickly revoke a key signature" msgstr "快速吊销一个密钥签名" -#: g10/gpg.c:497 +#: g10/gpg.c:498 msgid "sign a key" msgstr "签名一个密钥" -#: g10/gpg.c:498 +#: g10/gpg.c:499 msgid "sign a key locally" msgstr "本地签名一个密钥" -#: g10/gpg.c:499 +#: g10/gpg.c:500 msgid "sign or edit a key" msgstr "签名或编辑一个密钥" -#: g10/gpg.c:501 sm/gpgsm.c:246 +#: g10/gpg.c:502 sm/gpgsm.c:246 msgid "change a passphrase" msgstr "更改密码" -#: g10/gpg.c:505 +#: g10/gpg.c:506 msgid "export keys" msgstr "导出密钥" -#: g10/gpg.c:506 +#: g10/gpg.c:507 msgid "export keys to a keyserver" msgstr "将密钥导出到一个公钥服务器上" -#: g10/gpg.c:507 +#: g10/gpg.c:508 msgid "import keys from a keyserver" msgstr "从公钥服务器上导入密钥" -#: g10/gpg.c:510 +#: g10/gpg.c:511 msgid "search for keys on a keyserver" msgstr "在公钥服务器上搜索密钥" -#: g10/gpg.c:512 +#: g10/gpg.c:513 msgid "update all keys from a keyserver" msgstr "从公钥服务器更新所有密钥" -#: g10/gpg.c:520 +#: g10/gpg.c:521 msgid "import/merge keys" msgstr "导入/合并密钥" -#: g10/gpg.c:523 +#: g10/gpg.c:524 msgid "print the card status" msgstr "打印卡片状态" -#: g10/gpg.c:524 +#: g10/gpg.c:525 msgid "change data on a card" msgstr "更改卡片上的数据" -#: g10/gpg.c:526 +#: g10/gpg.c:527 msgid "change a card's PIN" msgstr "更改卡片的 PIN" -#: g10/gpg.c:538 +#: g10/gpg.c:539 msgid "update the trust database" msgstr "更新信任数据库" -#: g10/gpg.c:548 +#: g10/gpg.c:549 msgid "print message digests" msgstr "打印消息摘要" -#: g10/gpg.c:552 sm/gpgsm.c:241 +#: g10/gpg.c:553 sm/gpgsm.c:241 msgid "run in server mode" msgstr "以服务器模式运行" -#: g10/gpg.c:554 +#: g10/gpg.c:555 msgid "|VALUE|set the TOFU policy for a key" msgstr "|VALUE|设置一个密钥的 TOFU 政策" -#: g10/gpg.c:594 +#: g10/gpg.c:595 msgid "|NAME|use NAME as default secret key" msgstr "|NAME|使用 NAME 作为默认的私钥" -#: g10/gpg.c:596 sm/gpgsm.c:332 +#: g10/gpg.c:597 sm/gpgsm.c:332 msgid "|NAME|encrypt to user ID NAME as well" msgstr "|NAME|同时给以 NAME 为名称的用户标识加密" -#: g10/gpg.c:604 +#: g10/gpg.c:605 msgid "|SPEC|set up email aliases" msgstr "|SPEC|设置电子邮件别名" -#: g10/gpg.c:616 +#: g10/gpg.c:617 msgid "use strict OpenPGP behavior" msgstr "使用严格的 OpenPGP 行为" -#: g10/gpg.c:641 kbx/kbxutil.c:90 sm/gpgsm.c:412 tools/gpgconf.c:112 +#: g10/gpg.c:642 kbx/kbxutil.c:90 sm/gpgsm.c:412 tools/gpgconf.c:112 msgid "do not make any changes" msgstr "不做任何更改" -#: g10/gpg.c:642 +#: g10/gpg.c:643 msgid "prompt before overwriting" msgstr "覆盖前提示" -#: g10/gpg.c:689 sm/gpgsm.c:304 +#: g10/gpg.c:690 sm/gpgsm.c:304 msgid "Options controlling the input" msgstr "输入控制选项" -#: g10/gpg.c:707 sm/gpgsm.c:314 +#: g10/gpg.c:708 sm/gpgsm.c:314 msgid "Options controlling the output" msgstr "输出控制选项" -#: g10/gpg.c:709 sm/gpgsm.c:316 +#: g10/gpg.c:710 sm/gpgsm.c:316 msgid "create ascii armored output" msgstr "创建 ASCII 字符封装的输出" -#: g10/gpg.c:713 g10/gpgv.c:82 sm/gpgsm.c:321 +#: g10/gpg.c:714 g10/gpgv.c:82 sm/gpgsm.c:321 msgid "|FILE|write output to FILE" msgstr "|FILE|写输出到 FILE" -#: g10/gpg.c:726 +#: g10/gpg.c:727 msgid "use canonical text mode" msgstr "使用规范的文本模式" -#: g10/gpg.c:743 +#: g10/gpg.c:744 msgid "|N|set compress level to N (0 disables)" msgstr "|N|设置压缩等级为 N (0 为禁用)" -#: g10/gpg.c:750 sm/gpgsm.c:347 +#: g10/gpg.c:751 sm/gpgsm.c:347 msgid "Options controlling key import and export" msgstr "密钥导入导出控制选项" -#: g10/gpg.c:753 +#: g10/gpg.c:754 msgid "|MECHANISMS|use MECHANISMS to locate keys by mail address" msgstr "|MECHANISMS|通过邮件地址定位密钥时使用机制 MECHANISMS" -#: g10/gpg.c:756 +#: g10/gpg.c:757 msgid "import missing key from a signature" msgstr "从签名导入缺少的密钥" -#: g10/gpg.c:761 +#: g10/gpg.c:762 msgid "include the public key in signatures" msgstr "在签名中包含公钥" -#: g10/gpg.c:764 sm/gpgsm.c:350 +#: g10/gpg.c:765 sm/gpgsm.c:350 msgid "disable all access to the dirmngr" msgstr "禁用对 dirmngr 的所有访问" -#: g10/gpg.c:776 sm/gpgsm.c:357 +#: g10/gpg.c:777 sm/gpgsm.c:357 msgid "Options controlling key listings" msgstr "密钥列出控制选项" -#: g10/gpg.c:805 sm/gpgsm.c:324 +#: g10/gpg.c:806 sm/gpgsm.c:324 msgid "Options to specify keys" msgstr "指定密钥选项" -#: g10/gpg.c:807 sm/gpgsm.c:326 +#: g10/gpg.c:808 sm/gpgsm.c:326 msgid "|USER-ID|encrypt for USER-ID" msgstr "|USER-ID|为 USER-ID 加密" -#: g10/gpg.c:815 sm/gpgsm.c:328 +#: g10/gpg.c:816 sm/gpgsm.c:328 msgid "|USER-ID|use USER-ID to sign or decrypt" msgstr "|USER-ID|使用 USER-ID 来签名或者解密" -#: g10/gpg.c:866 sm/gpgsm.c:396 +#: g10/gpg.c:867 sm/gpgsm.c:396 msgid "Options for unattended use" msgstr "无人值守选项" -#: g10/gpg.c:885 sm/gpgsm.c:408 dirmngr/dirmngr.c:294 +#: g10/gpg.c:886 sm/gpgsm.c:408 dirmngr/dirmngr.c:294 msgid "Other options" msgstr "其他选项" -#: g10/gpg.c:953 sm/gpgsm.c:440 +#: g10/gpg.c:955 sm/gpgsm.c:440 msgid "" "@\n" "(See the man page for a complete listing of all commands and options)\n" @@ -2830,7 +2836,7 @@ "@\n" "(请参考手册页以获得所有命令和选项的完整列表)\n" -#: g10/gpg.c:956 +#: g10/gpg.c:958 msgid "" "@\n" "Examples:\n" @@ -2850,11 +2856,11 @@ " --list-keys [名字] 列出密钥\n" " --fingerprint [名字] 显示指纹\n" -#: g10/gpg.c:1130 +#: g10/gpg.c:1139 msgid "Usage: @GPG@ [options] [files] (-h for help)" msgstr "用法: @GPG@ [选项] [文件] (-h 获取帮助)" -#: g10/gpg.c:1133 +#: g10/gpg.c:1142 msgid "" "Syntax: @GPG@ [options] [files]\n" "Sign, check, encrypt or decrypt\n" @@ -2864,7 +2870,7 @@ "签名、检查、加密或解密\n" "默认的操作依输入数据而定\n" -#: g10/gpg.c:1144 sm/gpgsm.c:624 +#: g10/gpg.c:1153 sm/gpgsm.c:624 msgid "" "\n" "Supported algorithms:\n" @@ -2872,537 +2878,537 @@ "\n" "支持的算法:\n" -#: g10/gpg.c:1147 +#: g10/gpg.c:1156 msgid "Pubkey: " msgstr "公钥: " -#: g10/gpg.c:1154 g10/keyedit.c:3338 +#: g10/gpg.c:1163 g10/keyedit.c:3338 msgid "Cipher: " msgstr "密文: " -#: g10/gpg.c:1161 +#: g10/gpg.c:1170 msgid "Hash: " msgstr "散列: " -#: g10/gpg.c:1168 g10/keyedit.c:3404 +#: g10/gpg.c:1177 g10/keyedit.c:3404 msgid "Compression: " msgstr "压缩: " -#: g10/gpg.c:1241 sm/gpgsm.c:698 +#: g10/gpg.c:1250 sm/gpgsm.c:698 #, c-format msgid "usage: %s [options] %s\n" msgstr "用法: %s [选项] %s\n" -#: g10/gpg.c:1436 sm/gpgsm.c:791 +#: g10/gpg.c:1445 sm/gpgsm.c:791 #, c-format msgid "conflicting commands\n" msgstr "冲突的指令\n" -#: g10/gpg.c:1454 +#: g10/gpg.c:1463 #, c-format msgid "no = sign found in group definition '%s'\n" msgstr "群组定义 ‘%s’ 中找不到 = 标志\n" -#: g10/gpg.c:1652 +#: g10/gpg.c:1661 #, c-format msgid "WARNING: unsafe ownership on homedir '%s'\n" msgstr "警告:家目录‘%s’的所有权不安全\n" -#: g10/gpg.c:1655 +#: g10/gpg.c:1664 #, c-format msgid "WARNING: unsafe ownership on configuration file '%s'\n" msgstr "警告:配置文件‘%s’的所有权不安全\n" -#: g10/gpg.c:1658 +#: g10/gpg.c:1667 #, c-format msgid "WARNING: unsafe ownership on extension '%s'\n" msgstr "警告:扩展模块‘%s’的所有权不安全\n" -#: g10/gpg.c:1664 +#: g10/gpg.c:1673 #, c-format msgid "WARNING: unsafe permissions on homedir '%s'\n" msgstr "警告:家目录‘%s’的权限位不安全\n" -#: g10/gpg.c:1667 +#: g10/gpg.c:1676 #, c-format msgid "WARNING: unsafe permissions on configuration file '%s'\n" msgstr "警告:配置文件‘%s’的权限位不安全\n" -#: g10/gpg.c:1670 +#: g10/gpg.c:1679 #, c-format msgid "WARNING: unsafe permissions on extension '%s'\n" msgstr "警告:扩展模块‘%s’的权限位不安全\n" -#: g10/gpg.c:1676 +#: g10/gpg.c:1685 #, c-format msgid "WARNING: unsafe enclosing directory ownership on homedir '%s'\n" msgstr "警告:家目录‘%s’的上级目录所有权不安全\n" -#: g10/gpg.c:1679 +#: g10/gpg.c:1688 #, c-format msgid "" "WARNING: unsafe enclosing directory ownership on configuration file '%s'\n" msgstr "警告:配置文件‘%s’的上级目录所有权不安全\n" -#: g10/gpg.c:1682 +#: g10/gpg.c:1691 #, c-format msgid "WARNING: unsafe enclosing directory ownership on extension '%s'\n" msgstr "警告:扩展模块‘%s’的上级目录所有权不安全\n" -#: g10/gpg.c:1688 +#: g10/gpg.c:1697 #, c-format msgid "WARNING: unsafe enclosing directory permissions on homedir '%s'\n" msgstr "警告:家目录‘%s’的上级目录权限位不安全\n" -#: g10/gpg.c:1691 +#: g10/gpg.c:1700 #, c-format msgid "" "WARNING: unsafe enclosing directory permissions on configuration file '%s'\n" msgstr "警告:配置文件‘%s’的上级目录权限不安全\n" -#: g10/gpg.c:1694 +#: g10/gpg.c:1703 #, c-format msgid "WARNING: unsafe enclosing directory permissions on extension '%s'\n" msgstr "警告:扩展模块‘%s’的上级目录权限位不安全\n" -#: g10/gpg.c:1910 +#: g10/gpg.c:1919 #, c-format msgid "unknown configuration item '%s'\n" msgstr "未知的配置项‘%s’\n" -#: g10/gpg.c:2009 +#: g10/gpg.c:2018 msgid "display photo IDs during key listings" msgstr "列出密钥时显示照片标识" -#: g10/gpg.c:2011 +#: g10/gpg.c:2020 msgid "show key usage information during key listings" msgstr "列出密钥时显示用途信息" -#: g10/gpg.c:2013 +#: g10/gpg.c:2022 msgid "show policy URLs during signature listings" msgstr "列出签名时显示策略 URL" -#: g10/gpg.c:2015 +#: g10/gpg.c:2024 msgid "show all notations during signature listings" msgstr "列出签名时显示所有注记" -#: g10/gpg.c:2017 +#: g10/gpg.c:2026 msgid "show IETF standard notations during signature listings" msgstr "列出签名时显示 IETF 标准注记" -#: g10/gpg.c:2021 +#: g10/gpg.c:2030 msgid "show user-supplied notations during signature listings" msgstr "列出签名时显示用户提供的注记" -#: g10/gpg.c:2023 +#: g10/gpg.c:2032 msgid "show preferred keyserver URLs during signature listings" msgstr "列出签名时显示首选公钥服务器 URL" -#: g10/gpg.c:2025 +#: g10/gpg.c:2034 msgid "show user ID validity during key listings" msgstr "列出密钥时显示用户标识的有效性" -#: g10/gpg.c:2027 +#: g10/gpg.c:2036 msgid "show revoked and expired user IDs in key listings" msgstr "列出密钥时显示已吊销或已过期的用户标识" -#: g10/gpg.c:2029 +#: g10/gpg.c:2038 msgid "show revoked and expired subkeys in key listings" msgstr "列出密钥时显示已吊销或已过期的子密钥" -#: g10/gpg.c:2031 +#: g10/gpg.c:2040 msgid "show the keyring name in key listings" msgstr "列出密钥时显示钥匙环的名称" -#: g10/gpg.c:2033 +#: g10/gpg.c:2042 msgid "show expiration dates during signature listings" msgstr "列出签名时显示过期日期" -#: g10/gpg.c:2148 +#: g10/gpg.c:2157 #, c-format msgid "unknown TOFU policy '%s'\n" msgstr "未知的 TOFU 政策‘%s’\n" -#: g10/gpg.c:2150 +#: g10/gpg.c:2159 #, c-format msgid "(use \"help\" to list choices)\n" msgstr "(使用“help”来列出选择)\n" -#: g10/gpg.c:2240 g10/keyedit.c:1719 +#: g10/gpg.c:2249 g10/keyedit.c:1719 #, c-format msgid "This command is not allowed while in %s mode.\n" msgstr "不允许在 %s 模式中使用此命令。\n" -#: g10/gpg.c:2878 g10/gpg.c:3718 g10/gpg.c:3730 +#: g10/gpg.c:2896 g10/gpg.c:3736 g10/gpg.c:3748 #, c-format msgid "Note: %s is not for normal use!\n" msgstr "注意:%s 不适用于一般使用!\n" -#: g10/gpg.c:3053 g10/gpg.c:3065 +#: g10/gpg.c:3071 g10/gpg.c:3083 #, c-format msgid "'%s' is not a valid signature expiration\n" msgstr "‘%s’不是一个有效的签名过期日期\n" -#: g10/gpg.c:3087 +#: g10/gpg.c:3105 #, c-format msgid "\"%s\" is not a proper mail address\n" msgstr "“%s” 不是一个合适的邮件地址\n" -#: g10/gpg.c:3119 sm/gpgsm.c:1121 +#: g10/gpg.c:3137 sm/gpgsm.c:1121 #, c-format msgid "invalid pinentry mode '%s'\n" msgstr "无效的 pinentry 模式‘%s’\n" -#: g10/gpg.c:3125 sm/gpgsm.c:1127 +#: g10/gpg.c:3143 sm/gpgsm.c:1127 #, c-format msgid "invalid request origin '%s'\n" msgstr "无效的请求来源‘%s’\n" -#: g10/gpg.c:3179 +#: g10/gpg.c:3197 #, c-format msgid "'%s' is not a valid character set\n" msgstr "‘%s’不是一个有效的字符集\n" -#: g10/gpg.c:3201 g10/gpg.c:3415 g10/keyedit.c:5338 +#: g10/gpg.c:3219 g10/gpg.c:3433 g10/keyedit.c:5338 #, c-format msgid "could not parse keyserver URL\n" msgstr "无法解析公钥服务器 URL\n" -#: g10/gpg.c:3219 +#: g10/gpg.c:3237 #, c-format msgid "%s:%d: invalid keyserver options\n" msgstr "%s:%d:无效的公钥服务器选项\n" -#: g10/gpg.c:3222 +#: g10/gpg.c:3240 #, c-format msgid "invalid keyserver options\n" msgstr "无效的公钥服务器选项\n" -#: g10/gpg.c:3229 +#: g10/gpg.c:3247 #, c-format msgid "%s:%d: invalid import options\n" msgstr "%s:%d:无效的导入选项\n" -#: g10/gpg.c:3232 +#: g10/gpg.c:3250 #, c-format msgid "invalid import options\n" msgstr "无效的导入选项\n" -#: g10/gpg.c:3238 g10/gpg.c:3253 +#: g10/gpg.c:3256 g10/gpg.c:3271 #, c-format msgid "invalid filter option: %s\n" msgstr "无效的过滤选项:%s\n" -#: g10/gpg.c:3244 +#: g10/gpg.c:3262 #, c-format msgid "%s:%d: invalid export options\n" msgstr "%s:%d:无效的导出选项\n" -#: g10/gpg.c:3247 +#: g10/gpg.c:3265 #, c-format msgid "invalid export options\n" msgstr "无效的导出选项\n" -#: g10/gpg.c:3259 +#: g10/gpg.c:3277 #, c-format msgid "%s:%d: invalid list options\n" msgstr "%s:%d:无效的列表选项\n" -#: g10/gpg.c:3262 +#: g10/gpg.c:3280 #, c-format msgid "invalid list options\n" msgstr "无效的列表选项\n" -#: g10/gpg.c:3270 +#: g10/gpg.c:3288 msgid "display photo IDs during signature verification" msgstr "验证签名时显示照片标识" -#: g10/gpg.c:3272 +#: g10/gpg.c:3290 msgid "show policy URLs during signature verification" msgstr "验证签名时显示策略 URL" -#: g10/gpg.c:3274 +#: g10/gpg.c:3292 msgid "show all notations during signature verification" msgstr "验证签名时显示所有注记" -#: g10/gpg.c:3276 +#: g10/gpg.c:3294 msgid "show IETF standard notations during signature verification" msgstr "验证签名时显示 IETF 标准注记" -#: g10/gpg.c:3280 +#: g10/gpg.c:3298 msgid "show user-supplied notations during signature verification" msgstr "验证签名时显示用户提供的注记" -#: g10/gpg.c:3282 +#: g10/gpg.c:3300 msgid "show preferred keyserver URLs during signature verification" msgstr "验证签名时显示首选公钥服务器 URL" -#: g10/gpg.c:3284 +#: g10/gpg.c:3302 msgid "show user ID validity during signature verification" msgstr "验证签名时显示用户标识的有效性" -#: g10/gpg.c:3286 +#: g10/gpg.c:3304 msgid "show revoked and expired user IDs in signature verification" msgstr "验证密钥时显示已吊销或已过期的子钥" -#: g10/gpg.c:3288 +#: g10/gpg.c:3306 msgid "show only the primary user ID in signature verification" msgstr "在签名验证中只显示主要用户标识" -#: g10/gpg.c:3290 +#: g10/gpg.c:3308 msgid "validate signatures with PKA data" msgstr "使用 PKA 数据验证签名" -#: g10/gpg.c:3292 +#: g10/gpg.c:3310 msgid "elevate the trust of signatures with valid PKA data" msgstr "提升带有有效 PKA 数据的签名的信任度" -#: g10/gpg.c:3299 +#: g10/gpg.c:3317 #, c-format msgid "%s:%d: invalid verify options\n" msgstr "%s:%d: 无效的验证选项\n" -#: g10/gpg.c:3302 +#: g10/gpg.c:3320 #, c-format msgid "invalid verify options\n" msgstr "无效的验证选项\n" -#: g10/gpg.c:3309 +#: g10/gpg.c:3327 #, c-format msgid "unable to set exec-path to %s\n" msgstr "无法设置运行路径为 %s\n" -#: g10/gpg.c:3513 +#: g10/gpg.c:3531 #, c-format msgid "%s:%d: invalid auto-key-locate list\n" msgstr "%s%d: 无效的 auto-key-locate 列表\n" -#: g10/gpg.c:3516 +#: g10/gpg.c:3534 #, c-format msgid "invalid auto-key-locate list\n" msgstr "无效的 auto-key-locate 列表\n" -#: g10/gpg.c:3700 sm/gpgsm.c:1492 +#: g10/gpg.c:3718 sm/gpgsm.c:1492 #, c-format msgid "WARNING: program may create a core file!\n" msgstr "警告:程序可能会创建核心内存转储文件!\n" -#: g10/gpg.c:3711 +#: g10/gpg.c:3729 #, c-format msgid "WARNING: %s overrides %s\n" msgstr "警告:%s 覆盖了 %s \n" -#: g10/gpg.c:3720 +#: g10/gpg.c:3738 #, c-format msgid "%s not allowed with %s!\n" msgstr "%s 不允许与 %s 并用\n" -#: g10/gpg.c:3723 +#: g10/gpg.c:3741 #, c-format msgid "%s makes no sense with %s!\n" msgstr "%s 与 %s 并用时不起作用\n" -#: g10/gpg.c:3738 sm/gpgsm.c:1509 dirmngr/dirmngr.c:1205 +#: g10/gpg.c:3756 sm/gpgsm.c:1509 dirmngr/dirmngr.c:1205 #, c-format msgid "WARNING: running with faked system time: " msgstr "警告:正在以虚假的系统时间运行: " -#: g10/gpg.c:3759 +#: g10/gpg.c:3777 #, c-format msgid "will not run with insecure memory due to %s\n" msgstr "不会在内存不安全的情况下运行,原因是 %s\n" -#: g10/gpg.c:3804 g10/gpg.c:3828 sm/gpgsm.c:1579 +#: g10/gpg.c:3824 g10/gpg.c:3848 sm/gpgsm.c:1579 #, c-format msgid "selected cipher algorithm is invalid\n" msgstr "所选的密文算法无效\n" -#: g10/gpg.c:3816 +#: g10/gpg.c:3836 #, c-format msgid "selected compression algorithm is invalid\n" msgstr "所选的压缩算法无效\n" -#: g10/gpg.c:3822 +#: g10/gpg.c:3842 #, c-format msgid "selected certification digest algorithm is invalid\n" msgstr "所选的证书散列算法无效\n" -#: g10/gpg.c:3837 +#: g10/gpg.c:3857 #, c-format msgid "completes-needed must be greater than 0\n" msgstr "需要的完全可信签名数一定要大于 0\n" -#: g10/gpg.c:3839 +#: g10/gpg.c:3859 #, c-format msgid "marginals-needed must be greater than 1\n" msgstr "需要的勉强可信签名数一定要大于 1\n" -#: g10/gpg.c:3841 +#: g10/gpg.c:3861 #, c-format msgid "max-cert-depth must be in the range from 1 to 255\n" msgstr "最大证书链深度(max-cert-depth)一定要介于 1 和 255 之间\n" -#: g10/gpg.c:3843 +#: g10/gpg.c:3863 #, c-format 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:3845 +#: g10/gpg.c:3865 #, c-format msgid "invalid min-cert-level; must be 1, 2, or 3\n" msgstr "无效的最小认证级别(default-cert-level);必须为 1,2 或 3\n" -#: g10/gpg.c:3849 +#: g10/gpg.c:3869 #, c-format msgid "Note: simple S2K mode (0) is strongly discouraged\n" msgstr "注意:强烈不建议使用简单的 S2K 模式 (0)\n" -#: g10/gpg.c:3853 +#: g10/gpg.c:3873 #, c-format msgid "invalid S2K mode; must be 0, 1 or 3\n" msgstr "无效的 S2K 模式;必须是 0,1 或 3\n" -#: g10/gpg.c:3860 +#: g10/gpg.c:3880 #, c-format msgid "invalid default preferences\n" msgstr "无效的默认偏好设置\n" -#: g10/gpg.c:3864 +#: g10/gpg.c:3884 #, c-format msgid "invalid personal cipher preferences\n" msgstr "无效的个人密文偏好设置\n" -#: g10/gpg.c:3868 +#: g10/gpg.c:3888 #, c-format msgid "invalid personal digest preferences\n" msgstr "无效的个人摘要算法偏好设置\n" -#: g10/gpg.c:3872 +#: g10/gpg.c:3892 #, c-format msgid "invalid personal compress preferences\n" msgstr "无效的个人压缩算法首选项\n" -#: g10/gpg.c:3908 +#: g10/gpg.c:3928 #, c-format msgid "%s does not yet work with %s\n" msgstr "%s 尚不能和 %s 并用\n" -#: g10/gpg.c:3971 +#: g10/gpg.c:3991 #, c-format msgid "compression algorithm '%s' may not be used in %s mode\n" msgstr "压缩算法‘%s’不能在 %s 模式下使用\n" -#: g10/gpg.c:4115 +#: g10/gpg.c:4135 #, c-format msgid "failed to initialize the TrustDB: %s\n" msgstr "初始化信任度数据库失败:%s\n" -#: g10/gpg.c:4127 +#: g10/gpg.c:4147 #, c-format msgid "WARNING: recipients (-r) given without using public key encryption\n" msgstr "警告:给定了接收者(-r)但并未使用公钥加密\n" -#: g10/gpg.c:4199 +#: g10/gpg.c:4219 #, c-format msgid "symmetric encryption of '%s' failed: %s\n" msgstr "对称加密‘%s’失败:%s\n" -#: g10/gpg.c:4228 +#: g10/gpg.c:4248 #, c-format msgid "you cannot use --symmetric --encrypt with --s2k-mode 0\n" msgstr "您不能在使用 --symmetric --encrypt 时使用 --s2k-mode 0\n" -#: g10/gpg.c:4231 +#: g10/gpg.c:4251 #, c-format msgid "you cannot use --symmetric --encrypt in %s mode\n" msgstr "您不能在 %s 模式下使用 --symmetric -encrypt\n" -#: g10/gpg.c:4289 +#: g10/gpg.c:4309 #, c-format msgid "you cannot use --symmetric --sign --encrypt with --s2k-mode 0\n" msgstr "您不能在使用 --symmetric --sign --encrypt 时使用 --s2k-mode 0\n" -#: g10/gpg.c:4292 +#: g10/gpg.c:4312 #, c-format msgid "you cannot use --symmetric --sign --encrypt in %s mode\n" msgstr "您不能在 %s 模式下使用 --symmetric --sign -encrypt\n" -#: g10/gpg.c:4692 g10/keyserver.c:1648 +#: g10/gpg.c:4712 g10/keyserver.c:1648 #, c-format msgid "keyserver send failed: %s\n" msgstr "发送至公钥服务器失败:%s\n" -#: g10/gpg.c:4697 +#: g10/gpg.c:4717 #, c-format msgid "keyserver receive failed: %s\n" msgstr "从公钥服务器接收失败:%s\n" -#: g10/gpg.c:4703 +#: g10/gpg.c:4723 #, c-format msgid "key export failed: %s\n" msgstr "导出密钥失败:%s\n" -#: g10/gpg.c:4716 +#: g10/gpg.c:4736 #, c-format msgid "export as ssh key failed: %s\n" msgstr "作为 ssh 密钥导出失败:%s\n" -#: g10/gpg.c:4728 +#: g10/gpg.c:4748 #, c-format msgid "keyserver search failed: %s\n" msgstr "公钥服务器搜索失败:%s\n" -#: g10/gpg.c:4741 +#: g10/gpg.c:4761 #, c-format msgid "keyserver refresh failed: %s\n" msgstr "公钥服务器刷新失败:%s\n" -#: g10/gpg.c:4810 +#: g10/gpg.c:4830 #, c-format msgid "dearmoring failed: %s\n" msgstr "解开字符封装时失败:%s\n" -#: g10/gpg.c:4821 +#: g10/gpg.c:4841 #, c-format msgid "enarmoring failed: %s\n" msgstr "进行字符封装时失败:%s\n" -#: g10/gpg.c:4913 +#: g10/gpg.c:4933 #, c-format msgid "invalid hash algorithm '%s'\n" msgstr "无效的散列算法‘%s’\n" -#: g10/gpg.c:5065 g10/tofu.c:2153 +#: g10/gpg.c:5085 g10/tofu.c:2153 #, c-format msgid "error parsing key specification '%s': %s\n" msgstr "解析密钥指定‘%s’时出现错误:%s\n" -#: g10/gpg.c:5078 +#: g10/gpg.c:5098 #, c-format msgid "'%s' does not appear to be a valid key ID, fingerprint or keygrip\n" msgstr "‘%s’不像是一个有效的密钥标识、指纹或者 keygrip\n" -#: g10/gpg.c:5134 +#: g10/gpg.c:5154 #, c-format msgid "WARNING: no command supplied. Trying to guess what you mean ...\n" msgstr "警告:没有提供命令。正在尝试猜测您的意图...\n" -#: g10/gpg.c:5145 +#: g10/gpg.c:5165 #, c-format msgid "Go ahead and type your message ...\n" msgstr "请开始输入您的消息…\n" -#: g10/gpg.c:5490 +#: g10/gpg.c:5510 #, c-format msgid "the given certification policy URL is invalid\n" msgstr "给定的的证书策略 URL 无效\n" -#: g10/gpg.c:5492 +#: g10/gpg.c:5512 #, c-format msgid "the given signature policy URL is invalid\n" msgstr "给定的签名策略 URL 无效\n" -#: g10/gpg.c:5525 +#: g10/gpg.c:5545 #, c-format msgid "the given preferred keyserver URL is invalid\n" msgstr "给定的首选公钥服务器 URL 无效\n" @@ -3444,145 +3450,145 @@ msgid "No help available for '%s'" msgstr "没有关于‘%s’的可用帮助" -#: g10/import.c:169 +#: g10/import.c:170 msgid "import signatures that are marked as local-only" msgstr "导入被标记为仅限本地(local-only)的签名" -#: g10/import.c:172 +#: g10/import.c:173 msgid "repair damage from the pks keyserver during import" msgstr "导入时修复源于 PKS 公钥服务器的损坏" -#: g10/import.c:175 +#: g10/import.c:176 msgid "do not clear the ownertrust values during import" msgstr "在导入期间不清除信任度" -#: g10/import.c:178 +#: g10/import.c:179 msgid "do not update the trustdb after import" msgstr "导入后不更新信任度数据库" -#: g10/import.c:181 +#: g10/import.c:182 msgid "show key during import" msgstr "在导入时显示密钥" -#: g10/import.c:184 +#: g10/import.c:185 msgid "only accept updates to existing keys" msgstr "只接受对现有密钥的更新" -#: g10/import.c:187 +#: g10/import.c:188 msgid "remove unusable parts from key after import" msgstr "导入后移除密钥中无用的部分" -#: g10/import.c:190 +#: g10/import.c:191 msgid "remove as much as possible from key after import" msgstr "导入后尽可能多地移除密钥中的可选部分" -#: g10/import.c:193 +#: g10/import.c:194 msgid "ignore key-signatures which are not self-signatures" msgstr "忽略不是自签名的密钥签名" -#: g10/import.c:196 +#: g10/import.c:197 msgid "run import filters and export key immediately" msgstr "运行导入过滤器并立即导出密钥" -#: g10/import.c:199 +#: g10/import.c:200 msgid "assume the GnuPG key backup format" msgstr "假定为 GnuPG 密钥备份格式" -#: g10/import.c:203 +#: g10/import.c:204 msgid "repair keys on import" msgstr "在导入期间修复密钥" -#: g10/import.c:392 g10/import.c:711 +#: g10/import.c:393 g10/import.c:712 #, c-format msgid "skipping block of type %d\n" msgstr "跳过 %d 类型的块\n" -#: g10/import.c:728 +#: g10/import.c:729 #, c-format msgid "%lu keys processed so far\n" msgstr "目前已处理 %lu 个密钥\n" -#: g10/import.c:814 +#: g10/import.c:815 #, c-format msgid "Total number processed: %lu\n" msgstr "处理的总数:%lu\n" -#: g10/import.c:817 +#: g10/import.c:818 #, c-format msgid " skipped PGP-2 keys: %lu\n" msgstr " 已跳过的 PGP-2 密钥:%lu\n" -#: g10/import.c:819 +#: g10/import.c:820 #, c-format msgid " skipped new keys: %lu\n" msgstr " 已跳过的新密钥:%lu\n" -#: g10/import.c:822 +#: g10/import.c:823 #, c-format msgid " w/o user IDs: %lu\n" msgstr " 缺少用户标识:%lu\n" -#: g10/import.c:825 sm/import.c:130 +#: g10/import.c:826 sm/import.c:130 #, c-format msgid " imported: %lu" msgstr " 已导入:%lu" -#: g10/import.c:829 sm/import.c:134 +#: g10/import.c:830 sm/import.c:134 #, c-format msgid " unchanged: %lu\n" msgstr " 未改变:%lu\n" -#: g10/import.c:831 +#: g10/import.c:832 #, c-format msgid " new user IDs: %lu\n" msgstr " 新用户标识:%lu\n" -#: g10/import.c:833 +#: g10/import.c:834 #, c-format msgid " new subkeys: %lu\n" msgstr " 新的子密钥:%lu\n" -#: g10/import.c:835 +#: g10/import.c:836 #, c-format msgid " new signatures: %lu\n" msgstr " 新的签名:%lu\n" -#: g10/import.c:837 +#: g10/import.c:838 #, c-format msgid " new key revocations: %lu\n" msgstr " 新的密钥吊销:%lu\n" -#: g10/import.c:839 sm/import.c:136 +#: g10/import.c:840 sm/import.c:136 #, c-format msgid " secret keys read: %lu\n" msgstr " 读取的私钥:%lu\n" -#: g10/import.c:841 sm/import.c:138 +#: g10/import.c:842 sm/import.c:138 #, c-format msgid " secret keys imported: %lu\n" msgstr " 导入的私钥:%lu\n" -#: g10/import.c:843 sm/import.c:140 +#: g10/import.c:844 sm/import.c:140 #, c-format msgid " secret keys unchanged: %lu\n" msgstr " 未改变的私钥:%lu\n" -#: g10/import.c:845 sm/import.c:142 +#: g10/import.c:846 sm/import.c:142 #, c-format msgid " not imported: %lu\n" msgstr " 未被导入:%lu\n" -#: g10/import.c:847 +#: g10/import.c:848 #, c-format msgid " signatures cleaned: %lu\n" msgstr " 清理的签名:%lu\n" -#: g10/import.c:849 +#: g10/import.c:850 #, c-format msgid " user IDs cleaned: %lu\n" msgstr " 清理的用户标识:%lu\n" -#: g10/import.c:1276 +#: g10/import.c:1277 #, c-format msgid "" "WARNING: key %s contains preferences for unavailable\n" @@ -3591,166 +3597,166 @@ "警告:密钥 %s 包含了不可用算法的偏好设置\n" "于下列用户标识上:\n" -#: g10/import.c:1318 +#: g10/import.c:1319 #, c-format msgid " \"%s\": preference for cipher algorithm %s\n" msgstr " “%s”:密文算法 %s 的首选项\n" -#: g10/import.c:1333 +#: g10/import.c:1334 #, c-format msgid " \"%s\": preference for digest algorithm %s\n" msgstr " “%s”:散列算法 %s 对应首选项\n" -#: g10/import.c:1345 +#: g10/import.c:1346 #, c-format msgid " \"%s\": preference for compression algorithm %s\n" msgstr " “%s”:压缩算法 %s 对应首选项\n" -#: g10/import.c:1358 +#: g10/import.c:1359 #, c-format msgid "it is strongly suggested that you update your preferences and\n" msgstr "强烈建议您更新您的偏好设置并重新分发这个密钥\n" -#: g10/import.c:1360 +#: g10/import.c:1361 #, c-format msgid "re-distribute this key to avoid potential algorithm mismatch problems\n" msgstr "以避免可能的算法不匹配问题\n" -#: g10/import.c:1385 +#: g10/import.c:1386 #, c-format msgid "you can update your preferences with: gpg --edit-key %s updpref save\n" msgstr "您可以这样更新您的偏好设置:gpg --edit-key %s updpref save\n" -#: g10/import.c:1899 g10/import.c:3013 +#: g10/import.c:1902 g10/import.c:3028 #, c-format msgid "key %s: no user ID\n" msgstr "密钥 %s:没有用户标识\n" -#: g10/import.c:1905 +#: g10/import.c:1908 #, c-format msgid "key %s: %s\n" msgstr "密钥 %s: %s\n" -#: g10/import.c:1906 g10/import.c:2985 +#: g10/import.c:1909 g10/import.c:3000 msgid "rejected by import screener" msgstr "被导入筛查器拒绝" -#: g10/import.c:1950 +#: g10/import.c:1953 #, c-format msgid "key %s: PKS subkey corruption repaired\n" msgstr "密钥%s:PKS 子密钥破损已修复\n" -#: g10/import.c:1971 +#: g10/import.c:1974 #, c-format msgid "key %s: accepted non self-signed user ID \"%s\"\n" msgstr "密钥 %s:已接受不含自签名的用户标识 “%s”\n" -#: g10/import.c:1981 g10/import.c:2012 +#: g10/import.c:1985 g10/import.c:2016 #, c-format msgid "key %s: no valid user IDs\n" msgstr "密钥 %s:没有有效的用户标识\n" -#: g10/import.c:1983 +#: g10/import.c:1987 #, c-format msgid "this may be caused by a missing self-signature\n" msgstr "这可能由于遗失自签名所致\n" -#: g10/import.c:2062 g10/import.c:3399 +#: g10/import.c:2066 g10/import.c:3415 #, c-format msgid "key %s: public key not found: %s\n" msgstr "密钥 %s:找不到公钥:%s\n" -#: g10/import.c:2068 +#: g10/import.c:2072 #, c-format msgid "key %s: new key - skipped\n" msgstr "密钥 %s:新密钥 - 已跳过\n" -#: g10/import.c:2080 +#: g10/import.c:2084 #, c-format msgid "no writable keyring found: %s\n" msgstr "找不到可写的钥匙环:%s\n" -#: g10/import.c:2112 g10/import.c:2214 g10/import.c:3476 +#: g10/import.c:2116 g10/import.c:2218 g10/import.c:3492 #, c-format msgid "error writing keyring '%s': %s\n" msgstr "写入钥匙环 ‘%s’ 时出现错误: %s\n" -#: g10/import.c:2135 +#: g10/import.c:2139 #, c-format msgid "key %s: public key \"%s\" imported\n" msgstr "密钥 %s:公钥 “%s” 已导入\n" -#: g10/import.c:2162 +#: g10/import.c:2166 #, c-format msgid "key %s: doesn't match our copy\n" msgstr "密钥 %s:与我们的副本不符合\n" -#: g10/import.c:2230 +#: g10/import.c:2234 #, c-format msgid "key %s: \"%s\" 1 new user ID\n" msgstr "密钥 %s:“%s” 1 个新的用户标识\n" -#: g10/import.c:2233 +#: g10/import.c:2237 #, c-format msgid "key %s: \"%s\" %d new user IDs\n" msgstr "密钥 %s:“%s” %d 个新的用户标识\n" -#: g10/import.c:2236 +#: g10/import.c:2240 #, c-format msgid "key %s: \"%s\" 1 new signature\n" msgstr "密钥 %s:“%s” 1 个新的签名\n" -#: g10/import.c:2239 +#: g10/import.c:2243 #, c-format msgid "key %s: \"%s\" %d new signatures\n" msgstr "密钥 %s:“%s” %d 个新的签名\n" -#: g10/import.c:2242 +#: g10/import.c:2246 #, c-format msgid "key %s: \"%s\" 1 new subkey\n" msgstr "密钥 %s:“%s” 1 个新的子密钥\n" -#: g10/import.c:2245 +#: g10/import.c:2249 #, c-format msgid "key %s: \"%s\" %d new subkeys\n" msgstr "密钥 %s:“%s” %d 个新的子密钥\n" -#: g10/import.c:2248 +#: g10/import.c:2252 #, c-format msgid "key %s: \"%s\" %d signature cleaned\n" msgstr "密钥 %s:“%s” %d 个签名被清理\n" -#: g10/import.c:2251 +#: g10/import.c:2255 #, c-format msgid "key %s: \"%s\" %d signatures cleaned\n" msgstr "密钥 %s:“%s” %d 个签名被清理\n" -#: g10/import.c:2254 +#: g10/import.c:2258 #, c-format msgid "key %s: \"%s\" %d user ID cleaned\n" msgstr "密钥 %s:“%s” %d 个用户标识被清理\n" -#: g10/import.c:2257 +#: g10/import.c:2261 #, c-format msgid "key %s: \"%s\" %d user IDs cleaned\n" msgstr "密钥 %s:“%s” %d 个用户标识被清理\n" -#: g10/import.c:2293 +#: g10/import.c:2297 #, c-format msgid "key %s: \"%s\" not changed\n" msgstr "密钥 %s:“%s” 未改变\n" -#: g10/import.c:2652 g10/import.c:2847 +#: g10/import.c:2667 g10/import.c:2862 #, c-format msgid "key %s: secret key imported\n" msgstr "密钥 %s:私钥已导入\n" -#: g10/import.c:2660 +#: g10/import.c:2675 #, c-format msgid "key %s: secret key already exists\n" msgstr "密钥 %s:私钥已存在\n" -#: g10/import.c:2668 +#: g10/import.c:2683 #, c-format msgid "key %s: error sending to agent: %s\n" msgstr "密钥 %s:发送至代理人程序时出现错误:%s\n" @@ -3763,192 +3769,192 @@ #. * Instead, user should be suggested to run 'gpg --card-status', #. * then, references to a card will be automatically created #. * again. -#: g10/import.c:2837 +#: g10/import.c:2852 #, c-format msgid "To migrate '%s', with each smartcard, run: %s\n" msgstr "要迁移 ‘%s’,对每一张智能卡,执行:%s\n" -#: g10/import.c:2984 +#: g10/import.c:2999 #, c-format msgid "secret key %s: %s\n" msgstr "私钥 %s:%s\n" -#: g10/import.c:3005 g10/import.c:3044 +#: g10/import.c:3020 g10/import.c:3059 #, c-format msgid "importing secret keys not allowed\n" msgstr "私钥导入被禁止\n" -#: g10/import.c:3032 +#: g10/import.c:3047 #, c-format msgid "key %s: secret key with invalid cipher %d - skipped\n" msgstr "密钥 %s:私钥使用了无效的密文算法 %d - 已跳过\n" -#: g10/import.c:3194 g10/pkclist.c:72 g10/revoke.c:776 +#: g10/import.c:3209 g10/pkclist.c:72 g10/revoke.c:776 msgid "No reason specified" msgstr "未指定原因" -#: g10/import.c:3195 g10/pkclist.c:74 g10/revoke.c:778 +#: g10/import.c:3210 g10/pkclist.c:74 g10/revoke.c:778 msgid "Key is superseded" msgstr "密钥被替换" -#: g10/import.c:3196 g10/pkclist.c:76 g10/revoke.c:777 +#: g10/import.c:3211 g10/pkclist.c:76 g10/revoke.c:777 msgid "Key has been compromised" msgstr "密钥已泄漏" -#: g10/import.c:3197 g10/pkclist.c:78 g10/revoke.c:779 +#: g10/import.c:3212 g10/pkclist.c:78 g10/revoke.c:779 msgid "Key is no longer used" msgstr "密钥不再使用" -#: g10/import.c:3198 g10/pkclist.c:80 g10/revoke.c:780 +#: g10/import.c:3213 g10/pkclist.c:80 g10/revoke.c:780 msgid "User ID is no longer valid" msgstr "用户标识不再有效" -#: g10/import.c:3323 g10/keylist.c:1258 g10/pkclist.c:84 +#: g10/import.c:3338 g10/keylist.c:1258 g10/pkclist.c:84 #, c-format msgid "reason for revocation: " msgstr "吊销原因: " -#: g10/import.c:3342 g10/keylist.c:1277 g10/pkclist.c:100 +#: g10/import.c:3357 g10/keylist.c:1277 g10/pkclist.c:100 #, c-format msgid "revocation comment: " msgstr "吊销注释: " -#: g10/import.c:3392 +#: g10/import.c:3408 #, c-format msgid "key %s: no public key - can't apply revocation certificate\n" msgstr "密钥 %s:没有公钥 - 无法应用吊销证书\n" -#: g10/import.c:3423 +#: g10/import.c:3439 #, c-format msgid "key %s: can't locate original keyblock: %s\n" msgstr "密钥 %s:无法定位原始的密钥区块:%s\n" -#: g10/import.c:3430 +#: g10/import.c:3446 #, c-format msgid "key %s: can't read original keyblock: %s\n" msgstr "密钥 %s:无法读取原始的密钥区块:%s\n" -#: g10/import.c:3450 +#: g10/import.c:3466 #, c-format msgid "key %s: invalid revocation certificate: %s - rejected\n" msgstr "密钥 %s:无效的吊销证书:%s - 已拒绝\n" -#: g10/import.c:3485 +#: g10/import.c:3501 #, c-format msgid "key %s: \"%s\" revocation certificate imported\n" msgstr "密钥 %s:“%s” 吊销证书已被导入\n" -#: g10/import.c:3571 +#: g10/import.c:3587 #, c-format msgid "key %s: no user ID for signature\n" msgstr "密钥 %s:签名没有用户标识\n" -#: g10/import.c:3588 +#: g10/import.c:3604 #, c-format msgid "key %s: unsupported public key algorithm on user ID \"%s\"\n" msgstr "密钥 %s:用户标识 “%s” 使用了不支持的公钥算法\n" -#: g10/import.c:3590 +#: g10/import.c:3606 #, c-format msgid "key %s: invalid self-signature on user ID \"%s\"\n" msgstr "密钥 %s:用户标识 “%s” 自身签名无效\n" -#: g10/import.c:3607 g10/import.c:3635 g10/import.c:3691 +#: g10/import.c:3623 g10/import.c:3651 g10/import.c:3707 #, c-format msgid "key %s: unsupported public key algorithm\n" msgstr "密钥 %s:不支持的公钥算法\n" -#: g10/import.c:3608 +#: g10/import.c:3624 #, c-format msgid "key %s: invalid direct key signature\n" msgstr "密钥 %s:无效的直接密钥签名\n" -#: g10/import.c:3622 +#: g10/import.c:3638 #, c-format msgid "key %s: no subkey for key binding\n" msgstr "密钥 %s:没有可供绑定的子密钥\n" -#: g10/import.c:3637 +#: g10/import.c:3653 #, c-format msgid "key %s: invalid subkey binding\n" msgstr "密钥 %s:无效的子密钥绑定\n" -#: g10/import.c:3656 +#: g10/import.c:3672 #, c-format msgid "key %s: removed multiple subkey binding\n" msgstr "密钥 %s:已删除多重子密钥绑定\n" -#: g10/import.c:3680 +#: g10/import.c:3696 #, c-format msgid "key %s: no subkey for key revocation\n" msgstr "密钥 %s:没有用于密钥吊销用的子密钥\n" -#: g10/import.c:3693 +#: g10/import.c:3709 #, c-format msgid "key %s: invalid subkey revocation\n" msgstr "密钥 %s:无效的子密钥吊销\n" -#: g10/import.c:3708 +#: g10/import.c:3724 #, c-format msgid "key %s: removed multiple subkey revocation\n" msgstr "密钥 %s:已删除多重子密钥吊销\n" -#: g10/import.c:3752 +#: g10/import.c:3771 #, c-format msgid "key %s: skipped user ID \"%s\"\n" msgstr "密钥 %s:已跳过用户标识 “%s”\n" -#: g10/import.c:3779 +#: g10/import.c:3798 #, c-format msgid "key %s: skipped subkey\n" msgstr "密钥 %s:已跳过子密钥\n" -#: g10/import.c:3810 +#: g10/import.c:3829 #, c-format msgid "key %s: non exportable signature (class 0x%02X) - skipped\n" msgstr "密钥 %s:非可导出签名(验证级别 0x%02X)- 已跳过\n" -#: g10/import.c:3821 +#: g10/import.c:3840 #, c-format msgid "key %s: revocation certificate at wrong place - skipped\n" msgstr "密钥 %s:吊销证书位置错误――已跳过\n" -#: g10/import.c:3839 +#: g10/import.c:3868 #, c-format msgid "key %s: invalid revocation certificate: %s - skipped\n" msgstr "密钥 %s:无效的吊销证书:%s――已跳过\n" -#: g10/import.c:3853 +#: g10/import.c:3892 #, c-format msgid "key %s: subkey signature in wrong place - skipped\n" msgstr "密钥 %s:子钥签名位置错误 - 已跳过\n" -#: g10/import.c:3861 +#: g10/import.c:3900 #, c-format msgid "key %s: unexpected signature class (0x%02X) - skipped\n" msgstr "密钥 %s:与预期不符的签名级别(0x%02X) - 已跳过\n" -#: g10/import.c:4034 +#: g10/import.c:4073 #, c-format msgid "key %s: duplicated user ID detected - merged\n" msgstr "密钥 %s:检测到重复的用户标识 - 已合并\n" -#: g10/import.c:4099 +#: g10/import.c:4138 #, c-format msgid "WARNING: key %s may be revoked: fetching revocation key %s\n" msgstr "警告:密钥 %s 可能已被吊销:正在取回吊销用密钥 %s\n" -#: g10/import.c:4115 +#: g10/import.c:4154 #, c-format msgid "WARNING: key %s may be revoked: revocation key %s not present.\n" msgstr "警告:密钥 %s 可能已被吊销:吊销用密钥 %s 不存在。\n" -#: g10/import.c:4181 +#: g10/import.c:4220 #, c-format msgid "key %s: \"%s\" revocation certificate added\n" msgstr "密钥 %s:已添加吊销证书 “%s”\n" -#: g10/import.c:4219 +#: g10/import.c:4258 #, c-format msgid "key %s: direct key signature added\n" msgstr "密钥 %s:已添加直接密钥签名\n" @@ -4788,7 +4794,7 @@ msgid "You may not add a photo ID to a PGP2-style key.\n" msgstr "您不可以把照片标识增加到 PGP2 样式的密钥里。\n" -#: g10/keyedit.c:4293 g10/keygen.c:2899 +#: g10/keyedit.c:4293 g10/keygen.c:2953 msgid "Such a user ID already exists on this key!\n" msgstr "这样的用户标识已经存在于这个密钥上了!\n" @@ -5059,81 +5065,81 @@ msgid "Displaying %s photo ID of size %ld for key %s (uid %d)\n" msgstr "正在显示 %s 的照片标识,大小 %ld,属于密钥 %s (用户标识 %d)\n" -#: g10/keygen.c:169 +#: g10/keygen.c:174 #, c-format msgid "invalid value for option '%s'\n" msgstr "选项‘%s’有无效的值\n" -#: g10/keygen.c:322 +#: g10/keygen.c:331 #, c-format msgid "preference '%s' duplicated\n" msgstr "偏好设置‘%s’重复\n" -#: g10/keygen.c:329 +#: g10/keygen.c:338 #, c-format msgid "too many cipher preferences\n" msgstr "过多的密文偏好设置\n" -#: g10/keygen.c:331 +#: g10/keygen.c:340 #, c-format msgid "too many digest preferences\n" msgstr "过多的散列算法偏好设置\n" -#: g10/keygen.c:333 +#: g10/keygen.c:342 #, c-format msgid "too many compression preferences\n" msgstr "过多的压缩算法偏好设置\n" -#: g10/keygen.c:493 +#: g10/keygen.c:502 #, c-format msgid "invalid item '%s' in preference string\n" msgstr "首选项字符串里有无效项‘%s’\n" -#: g10/keygen.c:972 +#: g10/keygen.c:1020 #, c-format msgid "writing direct signature\n" msgstr "正在写入直接签名\n" -#: g10/keygen.c:1018 +#: g10/keygen.c:1066 #, c-format msgid "writing self signature\n" msgstr "正在写入自签名\n" -#: g10/keygen.c:1075 +#: g10/keygen.c:1123 #, c-format msgid "writing key binding signature\n" msgstr "正在写入密钥绑定签名\n" -#: g10/keygen.c:1440 g10/keygen.c:1445 g10/keygen.c:1497 g10/keygen.c:1502 -#: g10/keygen.c:1656 g10/keygen.c:1661 +#: g10/keygen.c:1494 g10/keygen.c:1499 g10/keygen.c:1551 g10/keygen.c:1556 +#: g10/keygen.c:1710 g10/keygen.c:1715 #, c-format msgid "keysize invalid; using %u bits\n" msgstr "密钥尺寸无效;改用 %u 位\n" -#: g10/keygen.c:1451 g10/keygen.c:1508 g10/keygen.c:1516 g10/keygen.c:1667 +#: g10/keygen.c:1505 g10/keygen.c:1562 g10/keygen.c:1570 g10/keygen.c:1721 #, c-format msgid "keysize rounded up to %u bits\n" msgstr "密钥尺寸舍入到 %u 位\n" -#: g10/keygen.c:1542 +#: g10/keygen.c:1596 #, c-format msgid "" "WARNING: some OpenPGP programs can't handle a DSA key with this digest size\n" msgstr "警告:一些 OpenPGP 程序不能处理具有此摘要长度的 DSA 密钥\n" -#: g10/keygen.c:1723 +#: g10/keygen.c:1777 msgid "Sign" msgstr "签名(Sign)" -#: g10/keygen.c:1726 +#: g10/keygen.c:1780 msgid "Certify" msgstr "认证(Certify)" -#: g10/keygen.c:1729 +#: g10/keygen.c:1783 msgid "Encrypt" msgstr "加密(Encrypt)" -#: g10/keygen.c:1732 +#: g10/keygen.c:1786 msgid "Authenticate" msgstr "身份验证(Authenticate)" @@ -5147,161 +5153,161 @@ #. * a = Toggle authentication capability #. * q = Finish #. -#: g10/keygen.c:1753 +#: g10/keygen.c:1807 msgid "SsEeAaQq" msgstr "SsEeAaQq" -#: g10/keygen.c:1784 +#: g10/keygen.c:1838 #, c-format msgid "Possible actions for a %s key: " msgstr "%s 密钥的可实现的功能: " -#: g10/keygen.c:1790 +#: g10/keygen.c:1844 msgid "Current allowed actions: " msgstr "目前启用的功能: " -#: g10/keygen.c:1795 +#: g10/keygen.c:1849 #, c-format msgid " (%c) Toggle the sign capability\n" msgstr " (%c) 签名功能开关\n" -#: g10/keygen.c:1798 +#: g10/keygen.c:1852 #, c-format msgid " (%c) Toggle the encrypt capability\n" msgstr " (%c) 加密功能开关\n" -#: g10/keygen.c:1801 +#: g10/keygen.c:1855 #, c-format msgid " (%c) Toggle the authenticate capability\n" msgstr " (%c) 身份验证功能开关\n" -#: g10/keygen.c:1804 +#: g10/keygen.c:1858 #, c-format msgid " (%c) Finished\n" msgstr " (%c) 已完成\n" -#: g10/keygen.c:1930 +#: g10/keygen.c:1984 #, c-format msgid " (%d) RSA and RSA (default)\n" msgstr " (%d) RSA 和 RSA (默认)\n" -#: g10/keygen.c:1934 +#: g10/keygen.c:1988 #, c-format msgid " (%d) DSA and Elgamal\n" msgstr " (%d) DSA 和 Elgamal\n" -#: g10/keygen.c:1937 +#: g10/keygen.c:1991 #, c-format msgid " (%d) DSA (sign only)\n" msgstr " (%d) DSA(仅用于签名)\n" -#: g10/keygen.c:1939 +#: g10/keygen.c:1993 #, c-format msgid " (%d) RSA (sign only)\n" msgstr " (%d) RSA(仅用于签名)\n" -#: g10/keygen.c:1945 +#: g10/keygen.c:1999 #, c-format msgid " (%d) Elgamal (encrypt only)\n" msgstr " (%d) ElGamal(仅用于加密)\n" -#: g10/keygen.c:1947 +#: g10/keygen.c:2001 #, c-format msgid " (%d) RSA (encrypt only)\n" msgstr " (%d) RSA(仅用于加密)\n" -#: g10/keygen.c:1953 +#: g10/keygen.c:2007 #, c-format msgid " (%d) DSA (set your own capabilities)\n" msgstr " (%d) DSA(自定义用途)\n" -#: g10/keygen.c:1955 +#: g10/keygen.c:2009 #, c-format msgid " (%d) RSA (set your own capabilities)\n" msgstr " (%d) RSA(自定义用途)\n" -#: g10/keygen.c:1961 +#: g10/keygen.c:2015 #, c-format msgid " (%d) ECC and ECC\n" msgstr " (%d) ECC 和 ECC\n" -#: g10/keygen.c:1963 +#: g10/keygen.c:2017 #, c-format msgid " (%d) ECC (sign only)\n" msgstr " (%d) ECC(仅用于签名)\n" -#: g10/keygen.c:1965 +#: g10/keygen.c:2019 #, c-format msgid " (%d) ECC (set your own capabilities)\n" msgstr " (%d) ECC(自定义用途)\n" -#: g10/keygen.c:1967 +#: g10/keygen.c:2021 #, c-format msgid " (%d) ECC (encrypt only)\n" msgstr " (%d) ECC(仅用于加密)\n" -#: g10/keygen.c:1971 +#: g10/keygen.c:2025 #, c-format msgid " (%d) Existing key\n" msgstr " (%d) 现存的密钥\n" -#: g10/keygen.c:1973 +#: g10/keygen.c:2027 #, c-format msgid " (%d) Existing key from card\n" msgstr " (%d)卡中现有密钥\n" -#: g10/keygen.c:2069 sm/certreqgen-ui.c:202 +#: g10/keygen.c:2123 sm/certreqgen-ui.c:202 msgid "Enter the keygrip: " msgstr "输入 keygrip: " -#: g10/keygen.c:2082 sm/certreqgen-ui.c:210 +#: g10/keygen.c:2136 sm/certreqgen-ui.c:210 msgid "Not a valid keygrip (expecting 40 hex digits)\n" msgstr "不是一个有效的 keygrip (需要 40 位十六进制数)\n" -#: g10/keygen.c:2084 sm/certreqgen-ui.c:212 +#: g10/keygen.c:2138 sm/certreqgen-ui.c:212 msgid "No key with this keygrip\n" msgstr "没有此 keygrip 关联的密钥\n" -#: g10/keygen.c:2103 g10/keygen.c:2113 g10/keygen.c:3216 g10/keygen.c:3227 +#: g10/keygen.c:2157 g10/keygen.c:2167 g10/keygen.c:3270 g10/keygen.c:3281 #: sm/certreqgen-ui.c:230 sm/certreqgen-ui.c:239 #, c-format msgid "error reading the card: %s\n" msgstr "读取卡片时出现错误:%s\n" -#: g10/keygen.c:2107 g10/keygen.c:3220 sm/certreqgen-ui.c:233 +#: g10/keygen.c:2161 g10/keygen.c:3274 sm/certreqgen-ui.c:233 #, c-format msgid "Serial number of the card: %s\n" msgstr "卡片的序列号:%s\n" -#: g10/keygen.c:2120 sm/certreqgen-ui.c:245 +#: g10/keygen.c:2174 sm/certreqgen-ui.c:245 msgid "Available keys:\n" msgstr "可用的密钥:\n" -#: g10/keygen.c:2297 g10/keygen.c:2311 +#: g10/keygen.c:2351 g10/keygen.c:2365 #, c-format msgid "rounded to %u bits\n" msgstr "舍入到 %u 位\n" -#: g10/keygen.c:2352 +#: g10/keygen.c:2406 #, c-format msgid "%s keys may be between %u and %u bits long.\n" msgstr "%s 密钥的长度应在 %u 位与 %u 位之间。\n" -#: g10/keygen.c:2360 +#: g10/keygen.c:2414 #, c-format msgid "What keysize do you want for the subkey? (%u) " msgstr "您想要为此子密钥使用的密钥长度?(%u) " -#: g10/keygen.c:2377 sm/certreqgen-ui.c:189 +#: g10/keygen.c:2431 sm/certreqgen-ui.c:189 #, c-format msgid "Requested keysize is %u bits\n" msgstr "请求的密钥长度是 %u 位\n" -#: g10/keygen.c:2423 +#: g10/keygen.c:2477 msgid "Please select which elliptic curve you want:\n" msgstr "请选择您想要使用的椭圆曲线:\n" -#: g10/keygen.c:2611 +#: g10/keygen.c:2665 msgid "" "Please specify how long the key should be valid.\n" " 0 = key does not expire\n" @@ -5317,7 +5323,7 @@ " m = 密钥在 n 月后过期\n" " y = 密钥在 n 年后过期\n" -#: g10/keygen.c:2622 +#: g10/keygen.c:2676 msgid "" "Please specify how long the signature should be valid.\n" " 0 = signature does not expire\n" @@ -5333,38 +5339,38 @@ " m = 签名在 n 月后过期\n" " y = 签名在 n 年后过期\n" -#: g10/keygen.c:2645 +#: g10/keygen.c:2699 msgid "Key is valid for? (0) " msgstr "密钥的有效期限是?(0) " -#: g10/keygen.c:2650 +#: g10/keygen.c:2704 #, c-format msgid "Signature is valid for? (%s) " msgstr "签名的有效期限是?(%s) " -#: g10/keygen.c:2663 g10/keygen.c:2688 +#: g10/keygen.c:2717 g10/keygen.c:2742 msgid "invalid value\n" msgstr "无效的值\n" -#: g10/keygen.c:2670 +#: g10/keygen.c:2724 msgid "Key does not expire at all\n" msgstr "密钥永远不会过期\n" -#: g10/keygen.c:2671 +#: g10/keygen.c:2725 msgid "Signature does not expire at all\n" msgstr "签名永远不会过期\n" -#: g10/keygen.c:2676 +#: g10/keygen.c:2730 #, c-format msgid "Key expires at %s\n" msgstr "密钥于 %s 过期\n" -#: g10/keygen.c:2677 +#: g10/keygen.c:2731 #, c-format msgid "Signature expires at %s\n" msgstr "签名于 %s 过期\n" -#: g10/keygen.c:2681 +#: g10/keygen.c:2735 msgid "" "Your system can't display dates beyond 2038.\n" "However, it will be correctly handled up to 2106.\n" @@ -5372,11 +5378,11 @@ "您的系统无法显示 2038 年以后的日期。\n" "不过它可以正确地处理到 2106 年之前的日期。\n" -#: g10/keygen.c:2694 +#: g10/keygen.c:2748 msgid "Is this correct? (y/N) " msgstr "这些内容正确吗? (y/N) " -#: g10/keygen.c:2762 +#: g10/keygen.c:2816 msgid "" "\n" "GnuPG needs to construct a user ID to identify your key.\n" @@ -5390,7 +5396,7 @@ #. but you should keep your existing translation. In case #. the new string is not translated this old string will #. be used. -#: g10/keygen.c:2777 +#: g10/keygen.c:2831 msgid "" "\n" "You need a user ID to identify your key; the software constructs the user " @@ -5405,49 +5411,49 @@ " “Heinrich Heine (Der Dichter) ”\n" "\n" -#: g10/keygen.c:2796 +#: g10/keygen.c:2850 msgid "Real name: " msgstr "真实姓名: " -#: g10/keygen.c:2805 +#: g10/keygen.c:2859 msgid "Invalid character in name\n" msgstr "姓名含有无效的字符\n" -#: g10/keygen.c:2806 +#: g10/keygen.c:2860 #, c-format msgid "The characters '%s' and '%s' may not appear in name\n" msgstr "字符‘%s’和‘%s’不能出现在姓名中\n" -#: g10/keygen.c:2810 +#: g10/keygen.c:2864 msgid "Name may not start with a digit\n" msgstr "姓名不可以用数字开头\n" -#: g10/keygen.c:2813 +#: g10/keygen.c:2867 msgid "Name must be at least 5 characters long\n" msgstr "姓名至少要有五个字符长\n" -#: g10/keygen.c:2823 +#: g10/keygen.c:2877 msgid "Email address: " msgstr "电子邮件地址: " -#: g10/keygen.c:2829 +#: g10/keygen.c:2883 msgid "Not a valid email address\n" msgstr "电子邮件地址无效\n" -#: g10/keygen.c:2838 +#: g10/keygen.c:2892 msgid "Comment: " msgstr "注释: " -#: g10/keygen.c:2844 +#: g10/keygen.c:2898 msgid "Invalid character in comment\n" msgstr "注释含有无效的字符\n" -#: g10/keygen.c:2880 +#: g10/keygen.c:2934 #, c-format msgid "You are using the '%s' character set.\n" msgstr "您正在使用‘%s’字符集。\n" -#: g10/keygen.c:2886 +#: g10/keygen.c:2940 #, c-format msgid "" "You selected this USER-ID:\n" @@ -5458,7 +5464,7 @@ " “%s”\n" "\n" -#: g10/keygen.c:2891 +#: g10/keygen.c:2945 msgid "Please don't put the email address into the real name or the comment\n" msgstr "请不要把电子邮件地址放进您的真实姓名或注释里\n" @@ -5473,31 +5479,31 @@ #. o = Okay (ready, continue) #. q = Quit #. -#: g10/keygen.c:2916 +#: g10/keygen.c:2970 msgid "NnCcEeOoQq" msgstr "NnCcEeOoQq" -#: g10/keygen.c:2926 +#: g10/keygen.c:2980 msgid "Change (N)ame, (C)omment, (E)mail or (Q)uit? " msgstr "更改姓名(N)、注释(C)、电子邮件地址(E)或退出(Q)? " -#: g10/keygen.c:2927 +#: g10/keygen.c:2981 msgid "Change (N)ame, (C)omment, (E)mail or (O)kay/(Q)uit? " msgstr "更改姓名(N)、注释(C)、电子邮件地址(E)或确定(O)/退出(Q)? " -#: g10/keygen.c:2932 +#: g10/keygen.c:2986 msgid "Change (N)ame, (E)mail, or (Q)uit? " msgstr "更改姓名(N)、注释(C)、电子邮件地址(E)或退出(Q)? " -#: g10/keygen.c:2933 +#: g10/keygen.c:2987 msgid "Change (N)ame, (E)mail, or (O)kay/(Q)uit? " msgstr "更改姓名(N)、注释(C)、电子邮件地址(E)或确定(O)/退出(Q)? " -#: g10/keygen.c:2952 +#: g10/keygen.c:3006 msgid "Please correct the error first\n" msgstr "请先改正错误\n" -#: g10/keygen.c:2998 +#: g10/keygen.c:3052 msgid "" "We need to generate a lot of random bytes. It is a good idea to perform\n" "some other action (type on the keyboard, move the mouse, utilize the\n" @@ -5508,13 +5514,13 @@ "、移动鼠标、读写硬盘之类的)将会是一个不错的主意;这会让随机数\n" "发生器有更好的机会获得足够的熵。\n" -#: g10/keygen.c:4278 g10/keygen.c:4349 g10/keygen.c:4367 g10/keygen.c:4395 -#: g10/keygen.c:4739 g10/keygen.c:5239 g10/keygen.c:5534 g10/keygen.c:5639 +#: g10/keygen.c:4332 g10/keygen.c:4403 g10/keygen.c:4421 g10/keygen.c:4449 +#: g10/keygen.c:4793 g10/keygen.c:5293 g10/keygen.c:5588 g10/keygen.c:5693 #, c-format msgid "Key generation failed: %s\n" msgstr "密钥生成失败:%s\n" -#: g10/keygen.c:4287 +#: g10/keygen.c:4341 #, c-format msgid "" "About to create a key for:\n" @@ -5525,64 +5531,64 @@ " \"%s\"\n" "\n" -#: g10/keygen.c:4289 +#: g10/keygen.c:4343 msgid "Continue? (Y/n) " msgstr "继续吗? (Y/n) " -#: g10/keygen.c:4310 +#: g10/keygen.c:4364 #, c-format msgid "A key for \"%s\" already exists\n" msgstr "一个 \"%s\" 的密钥已经存在\n" -#: g10/keygen.c:4315 +#: g10/keygen.c:4369 msgid "Create anyway? (y/N) " msgstr "无论如何都要创建吗?(y/N) " -#: g10/keygen.c:4321 +#: g10/keygen.c:4375 #, c-format msgid "creating anyway\n" msgstr "无论如何都创建\n" -#: g10/keygen.c:4722 +#: g10/keygen.c:4776 #, c-format msgid "Note: Use \"%s %s\" for a full featured key generation dialog.\n" msgstr "注意:使用 “%s %s” 以获得一个全功能的密钥生成对话框。\n" -#: g10/keygen.c:4771 +#: g10/keygen.c:4825 #, c-format msgid "Key generation canceled.\n" msgstr "密钥生成已取消。\n" -#: g10/keygen.c:4831 +#: g10/keygen.c:4885 #, c-format msgid "can't create backup file '%s': %s\n" msgstr "不能创建备份文件‘%s’:%s\n" -#: g10/keygen.c:4851 +#: g10/keygen.c:4905 #, c-format msgid "Note: backup of card key saved to '%s'\n" msgstr "注意:卡片密钥的备份已保存到‘%s’\n" -#: g10/keygen.c:5010 g10/keygen.c:5172 +#: g10/keygen.c:5064 g10/keygen.c:5226 #, c-format msgid "writing public key to '%s'\n" msgstr "正在将公钥写至‘%s’\n" -#: g10/keygen.c:5166 +#: g10/keygen.c:5220 #, c-format msgid "no writable public keyring found: %s\n" msgstr "无可写的公钥钥匙环:%s\n" -#: g10/keygen.c:5180 +#: g10/keygen.c:5234 #, c-format msgid "error writing public keyring '%s': %s\n" msgstr "写入公钥钥匙环‘%s’时发生错误: %s\n" -#: g10/keygen.c:5210 +#: g10/keygen.c:5264 msgid "public and secret key created and signed.\n" msgstr "公钥和私钥已经生成并被签名。\n" -#: g10/keygen.c:5226 +#: g10/keygen.c:5280 msgid "" "Note that this key cannot be used for encryption. You may want to use\n" "the command \"--edit-key\" to generate a subkey for this purpose.\n" @@ -5590,34 +5596,34 @@ "请注意这个密钥不能用于加密。您可能想要使用“--edit-key”命令来\n" "生成一个用于此用途的子密钥。\n" -#: g10/keygen.c:5401 g10/keygen.c:5590 +#: g10/keygen.c:5455 g10/keygen.c:5644 #, c-format msgid "" "key has been created %lu second in future (time warp or clock problem)\n" msgstr "密钥已经在 %lu 秒后的未来生成(可能是因为时空扭曲或时钟的问题)\n" -#: g10/keygen.c:5403 g10/keygen.c:5592 +#: g10/keygen.c:5457 g10/keygen.c:5646 #, c-format msgid "" "key has been created %lu seconds in future (time warp or clock problem)\n" msgstr "密钥已经在 %lu 秒后的未来生成(可能是因为时空扭曲或时钟的问题)\n" -#: g10/keygen.c:5414 g10/keygen.c:5603 +#: g10/keygen.c:5468 g10/keygen.c:5657 #, c-format msgid "Note: creating subkeys for v3 keys is not OpenPGP compliant\n" msgstr "注意:为 v3 密钥创建子密钥是不与 OpenPGP 兼容的\n" -#: g10/keygen.c:5426 g10/keygen.c:5428 +#: g10/keygen.c:5480 g10/keygen.c:5482 #, c-format msgid "Secret parts of primary key are not available.\n" msgstr "主密钥的私钥部分不可用。\n" -#: g10/keygen.c:5435 g10/keygen.c:5437 +#: g10/keygen.c:5489 g10/keygen.c:5491 #, c-format msgid "Secret parts of primary key are stored on-card.\n" msgstr "主密钥的私钥部分存储在卡上。\n" -#: g10/keygen.c:5456 g10/keygen.c:5617 +#: g10/keygen.c:5510 g10/keygen.c:5671 msgid "Really create? (y/N) " msgstr "真的要创建吗?(y/N) " @@ -6669,30 +6675,30 @@ msgid "data not saved; use option \"--output\" to save it\n" msgstr "数据未被保存;请用“--output”选项来保存它们\n" -#: g10/plaintext.c:615 +#: g10/plaintext.c:620 msgid "Detached signature.\n" msgstr "分离的签名。\n" -#: g10/plaintext.c:623 +#: g10/plaintext.c:628 msgid "Please enter name of data file: " msgstr "请输入数据文件的名称: " -#: g10/plaintext.c:660 +#: g10/plaintext.c:665 #, c-format msgid "reading stdin ...\n" msgstr "正在从标准输入(stdin)读取 ...\n" -#: g10/plaintext.c:705 +#: g10/plaintext.c:710 #, c-format msgid "no signed data\n" msgstr "没有已签名的数据\n" -#: g10/plaintext.c:723 +#: g10/plaintext.c:728 #, c-format msgid "can't open signed data '%s'\n" msgstr "无法打开已签名的数据‘%s’\n" -#: g10/plaintext.c:758 +#: g10/plaintext.c:763 #, c-format msgid "can't open signed data fd=%d: %s\n" msgstr "无法打开已签名的数据 fd=%d: %s\n" @@ -7644,7 +7650,7 @@ msgid "no need for a trustdb check\n" msgstr "不需要检查信任度数据库\n" -#: g10/trustdb.c:631 g10/trustdb.c:2326 +#: g10/trustdb.c:631 g10/trustdb.c:2338 #, c-format msgid "next trustdb check due at %s\n" msgstr "下次信任度数据库检查将于 %s 进行\n" @@ -7674,36 +7680,36 @@ msgid "checking the trustdb\n" msgstr "正在检查信任度数据库\n" -#: g10/trustdb.c:2047 +#: g10/trustdb.c:2059 #, c-format msgid "%d key processed" msgid_plural "%d keys processed" msgstr[0] "已处理 %d 把密钥" -#: g10/trustdb.c:2050 +#: g10/trustdb.c:2062 #, c-format msgid " (%d validity count cleared)\n" msgid_plural " (%d validity counts cleared)\n" msgstr[0] " (%d 个有效计数已被清除)\n" -#: g10/trustdb.c:2120 +#: g10/trustdb.c:2132 #, c-format msgid "no ultimately trusted keys found\n" msgstr "未找到任何绝对信任的密钥\n" -#: g10/trustdb.c:2134 +#: g10/trustdb.c:2146 #, c-format msgid "public key of ultimately trusted key %s not found\n" msgstr "绝对信任密钥 %s 的公钥未找到\n" -#: g10/trustdb.c:2252 +#: g10/trustdb.c:2264 #, 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" -#: g10/trustdb.c:2333 +#: g10/trustdb.c:2345 #, c-format msgid "unable to update trustdb version record: write failed: %s\n" msgstr "无法更新信任度数据库版本记录:写入失败:%s\n" @@ -7816,83 +7822,89 @@ #. TRANSLATORS: Put a \x1f right before a colon. This can be #. * used by pinentry to nicely align the names and values. Keep #. * the %s at the start and end of the string. -#: scd/app-p15.c:5116 scd/app-openpgp.c:2154 +#: scd/app-p15.c:5145 scd/app-nks.c:1541 scd/app-openpgp.c:2154 #, c-format msgid "%sNumber: %s%%0AHolder: %s%s" msgstr "%s数字: %s%%0A持有者: %s%s" #. TRANSLATORS: This is the number of remaining attempts to #. * enter a PIN. Use %%0A (double-percent,0A) for a linefeed. -#: scd/app-p15.c:5135 scd/app-openpgp.c:2170 +#: scd/app-p15.c:5164 scd/app-nks.c:1560 scd/app-openpgp.c:2170 #, c-format msgid "Remaining attempts: %d" msgstr "剩余尝试:%d" -#: scd/app-p15.c:5214 scd/app-nks.c:1113 +#: scd/app-p15.c:5243 scd/app-nks.c:2112 msgid "||Please enter the PIN for the key to create qualified signatures." msgstr "||请为这个密钥输入 PIN 以创建合格的签名。" #. TRANSLATORS: Do not translate the "|A|" prefix but keep it at #. the start of the string. Use %0A (single percent) for a linefeed. -#: scd/app-p15.c:5217 scd/app-openpgp.c:2464 +#: scd/app-p15.c:5246 scd/app-openpgp.c:2465 msgid "|A|Please enter the Admin PIN" msgstr "|A|请输入管理员 PIN" -#: scd/app-p15.c:5219 scd/app-nks.c:1103 +#: scd/app-p15.c:5248 scd/app-nks.c:2102 msgid "|P|Please enter the PIN Unblocking Code (PUK) for the standard keys." msgstr "|NP|请输入标准密钥的 PIN 解锁码(PUK)。" -#: scd/app-p15.c:5222 scd/app-nks.c:1095 +#: scd/app-p15.c:5251 scd/app-nks.c:2093 msgid "||Please enter the PIN for the standard keys." msgstr "||请输入标准密钥的 PIN。" -#: scd/app-nks.c:709 scd/app-openpgp.c:3666 +#: scd/app-nks.c:1479 scd/app-openpgp.c:3675 #, c-format msgid "RSA modulus missing or not of size %d bits\n" msgstr "RSA 余数缺失或者不是 %d 位长\n" -#: scd/app-nks.c:717 scd/app-openpgp.c:3678 +#: scd/app-nks.c:1487 scd/app-openpgp.c:3687 #, c-format msgid "RSA public exponent missing or larger than %d bits\n" msgstr "RSA 公钥指数缺失或长于 %d 位\n" -#: scd/app-nks.c:797 scd/app-openpgp.c:2327 scd/app-openpgp.c:2346 -#: scd/app-openpgp.c:2513 scd/app-openpgp.c:2531 scd/app-openpgp.c:2829 -#: scd/app-openpgp.c:2876 scd/app-openpgp.c:2991 scd/app-dinsig.c:302 +#: scd/app-nks.c:1660 +#, fuzzy +#| msgid "the NullPIN has not yet been changed\n" +msgid "Note: PIN has not yet been enabled." +msgstr "尚未变更 NullPIN\n" + +#: scd/app-nks.c:1671 scd/app-openpgp.c:2327 scd/app-openpgp.c:2346 +#: scd/app-openpgp.c:2515 scd/app-openpgp.c:2533 scd/app-openpgp.c:2832 +#: scd/app-openpgp.c:2879 scd/app-openpgp.c:3000 scd/app-dinsig.c:303 #, c-format msgid "PIN callback returned error: %s\n" msgstr "PIN 回调返回错误:%s\n" -#: scd/app-nks.c:830 +#: scd/app-nks.c:1707 #, c-format msgid "the NullPIN has not yet been changed\n" msgstr "尚未变更 NullPIN\n" -#: scd/app-nks.c:1094 +#: scd/app-nks.c:2092 msgid "|N|Please enter a new PIN for the standard keys." msgstr "|N|请为标准密钥输入一个新的 PIN。" -#: scd/app-nks.c:1101 +#: scd/app-nks.c:2100 msgid "|NP|Please enter a new PIN Unblocking Code (PUK) for the standard keys." msgstr "|NP|请为标准密钥输入一个新的 PIN 解锁码(PUK)。" -#: scd/app-nks.c:1111 +#: scd/app-nks.c:2110 msgid "|N|Please enter a new PIN for the key to create qualified signatures." msgstr "|N|请为这个密钥输入一个新的 PIN 以创建合格的签名。" -#: scd/app-nks.c:1121 +#: scd/app-nks.c:2120 msgid "" "|NP|Please enter a new PIN Unblocking Code (PUK) for the key to create " "qualified signatures." msgstr "|NP|请为这个密钥输入一个新的 PIN 解锁码(PUK)以创建合格的签名。" -#: scd/app-nks.c:1123 +#: scd/app-nks.c:2122 msgid "" "|P|Please enter the PIN Unblocking Code (PUK) for the key to create " "qualified signatures." msgstr "|P|请为这个密钥输入 PIN 解锁码(PUK)以创建合格的签名。" -#: scd/app-nks.c:1230 scd/app-openpgp.c:2910 scd/app-dinsig.c:532 +#: scd/app-nks.c:2295 scd/app-openpgp.c:2913 scd/app-dinsig.c:535 #, c-format msgid "error getting new PIN: %s\n" msgstr "获取新 PIN 时出现错误:%s\n" @@ -7907,7 +7919,7 @@ msgid "failed to store the creation date: %s\n" msgstr "存储创建日期失败:%s\n" -#: scd/app-openpgp.c:1271 scd/app-openpgp.c:2857 scd/app-openpgp.c:5041 +#: scd/app-openpgp.c:1271 scd/app-openpgp.c:2860 scd/app-openpgp.c:5051 #, c-format msgid "error retrieving CHV status from card\n" msgstr "从卡片中拉取 CHV 状态时出现错误\n" @@ -7927,7 +7939,7 @@ msgid "response does not contain the EC public key\n" msgstr "响应不包含 EC 公钥\n" -#: scd/app-openpgp.c:1664 scd/app-openpgp.c:4286 +#: scd/app-openpgp.c:1664 scd/app-openpgp.c:4295 #, c-format msgid "response does not contain the public key data\n" msgstr "响应不包含公钥数据\n" @@ -7959,43 +7971,43 @@ msgid "||Please unlock the card" msgstr "||请解锁卡片" -#: scd/app-openpgp.c:2353 scd/app-openpgp.c:2538 scd/app-openpgp.c:2836 +#: scd/app-openpgp.c:2353 scd/app-openpgp.c:2540 scd/app-openpgp.c:2839 #, 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:2367 scd/app-openpgp.c:2414 scd/app-openpgp.c:2552 -#: scd/app-openpgp.c:4644 +#: scd/app-openpgp.c:2368 scd/app-openpgp.c:2415 scd/app-openpgp.c:2554 +#: scd/app-openpgp.c:4654 #, c-format msgid "verify CHV%d failed: %s\n" msgstr "验证 CHV%d 失败:%s\n" -#: scd/app-openpgp.c:2450 scd/app-openpgp.c:5050 +#: scd/app-openpgp.c:2451 scd/app-openpgp.c:5060 #, c-format msgid "card is permanently locked!\n" msgstr "卡片被永久锁定!\n" -#: scd/app-openpgp.c:2454 +#: scd/app-openpgp.c:2455 #, c-format msgid "%d Admin PIN attempt remaining before card is permanently locked\n" msgid_plural "" "%d Admin PIN attempts remaining before card is permanently locked\n" msgstr[0] "在卡片被永久锁定之前剩余 %d 次管理员 PIN 尝试\n" -#: scd/app-openpgp.c:2485 +#: scd/app-openpgp.c:2486 #, c-format msgid "access to admin commands is not configured\n" msgstr "未配置到管理员命令的访问\n" -#: scd/app-openpgp.c:2823 +#: scd/app-openpgp.c:2826 msgid "||Please enter the PIN" msgstr "||请输入 PIN" -#: scd/app-openpgp.c:2872 +#: scd/app-openpgp.c:2875 msgid "||Please enter the Reset Code for the card" msgstr "||请输入卡片的重置码" -#: scd/app-openpgp.c:2882 scd/app-openpgp.c:2943 +#: scd/app-openpgp.c:2885 scd/app-openpgp.c:2946 #, c-format msgid "Reset Code is too short; minimum length is %d\n" msgstr "重置码太短;最小长度为 %d\n" @@ -8003,131 +8015,131 @@ #. 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:2905 +#: scd/app-openpgp.c:2908 msgid "|RN|New Reset Code" msgstr "|RN|新的重置码" -#: scd/app-openpgp.c:2906 +#: scd/app-openpgp.c:2909 msgid "|AN|New Admin PIN" msgstr "|AN|新的管理员 PIN" -#: scd/app-openpgp.c:2906 +#: scd/app-openpgp.c:2909 msgid "|N|New PIN" msgstr "|N|新的 PIN" -#: scd/app-openpgp.c:2987 +#: scd/app-openpgp.c:2996 msgid "||Please enter the Admin PIN and New Admin PIN" msgstr "||请输入原管理员 PIN 和新管理员 PIN" -#: scd/app-openpgp.c:2988 +#: scd/app-openpgp.c:2997 msgid "||Please enter the PIN and New PIN" msgstr "||请输入原 PIN 和新 PIN" -#: scd/app-openpgp.c:3050 scd/app-openpgp.c:4346 +#: scd/app-openpgp.c:3059 scd/app-openpgp.c:4355 #, c-format msgid "error reading application data\n" msgstr "读取应用程序数据时出错\n" -#: scd/app-openpgp.c:3056 scd/app-openpgp.c:4353 +#: scd/app-openpgp.c:3065 scd/app-openpgp.c:4362 #, c-format msgid "error reading fingerprint DO\n" msgstr "读取指纹 DO 时出现错误\n" -#: scd/app-openpgp.c:3066 +#: scd/app-openpgp.c:3075 #, c-format msgid "key already exists\n" msgstr "密钥已存在\n" -#: scd/app-openpgp.c:3070 +#: scd/app-openpgp.c:3079 #, c-format msgid "existing key will be replaced\n" msgstr "现有的密钥将被替换\n" -#: scd/app-openpgp.c:3072 +#: scd/app-openpgp.c:3081 #, c-format msgid "generating new key\n" msgstr "生成新密钥\n" -#: scd/app-openpgp.c:3074 +#: scd/app-openpgp.c:3083 #, c-format msgid "writing new key\n" msgstr "正在写入新密钥\n" -#: scd/app-openpgp.c:3647 scd/app-openpgp.c:3999 +#: scd/app-openpgp.c:3656 scd/app-openpgp.c:4008 #, c-format msgid "creation timestamp missing\n" msgstr "缺少创建时间戳\n" -#: scd/app-openpgp.c:3688 scd/app-openpgp.c:3696 +#: scd/app-openpgp.c:3697 scd/app-openpgp.c:3705 #, c-format msgid "RSA prime %s missing or not of size %d bits\n" msgstr "RSA 质数 %s 缺失或者不是 %d 位长\n" -#: scd/app-openpgp.c:3829 scd/app-openpgp.c:4106 +#: scd/app-openpgp.c:3838 scd/app-openpgp.c:4115 #, c-format msgid "failed to store the key: %s\n" msgstr "存储密钥失败:%s\n" -#: scd/app-openpgp.c:3993 +#: scd/app-openpgp.c:4002 #, c-format msgid "unsupported curve\n" msgstr "不支持的曲线\n" -#: scd/app-openpgp.c:4263 +#: scd/app-openpgp.c:4272 #, c-format msgid "please wait while key is being generated ...\n" msgstr "请等待密钥生成…\n" -#: scd/app-openpgp.c:4271 +#: scd/app-openpgp.c:4280 #, c-format msgid "generating key failed\n" msgstr "生成密钥失败\n" -#: scd/app-openpgp.c:4277 +#: scd/app-openpgp.c:4286 #, c-format msgid "key generation completed (%d second)\n" msgid_plural "key generation completed (%d seconds)\n" msgstr[0] "密钥生成完成(%d 秒)\n" -#: scd/app-openpgp.c:4311 +#: scd/app-openpgp.c:4320 #, c-format msgid "invalid structure of OpenPGP card (DO 0x93)\n" msgstr "无效的 OpenPGP 卡结构(DO 0x93)\n" -#: scd/app-openpgp.c:4361 +#: scd/app-openpgp.c:4370 #, c-format msgid "fingerprint on card does not match requested one\n" msgstr "卡片上的指纹与请求的不匹配\n" -#: scd/app-openpgp.c:4560 +#: scd/app-openpgp.c:4569 #, c-format msgid "card does not support digest algorithm %s\n" msgstr "卡片不支持摘要算法 %s\n" -#: scd/app-openpgp.c:4618 +#: scd/app-openpgp.c:4627 #, c-format msgid "signatures created so far: %lu\n" msgstr "目前已创建的签名:%lu\n" -#: scd/app-openpgp.c:5055 +#: scd/app-openpgp.c:5065 #, c-format msgid "" "verification of Admin PIN is currently prohibited through this command\n" msgstr "目前禁止通过此命令验证管理员 PIN\n" -#: scd/app-openpgp.c:5386 scd/app-openpgp.c:5398 +#: scd/app-openpgp.c:5396 scd/app-openpgp.c:5408 #, c-format msgid "can't access %s - invalid OpenPGP card?\n" msgstr "不能访问 %s - 无效的 OpenPGP 卡?\n" -#: scd/app-dinsig.c:298 +#: scd/app-dinsig.c:299 msgid "||Please enter your PIN at the reader's pinpad" msgstr "||请在读卡器的小键盘上输入您的 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-dinsig.c:529 +#: scd/app-dinsig.c:532 msgid "|N|Initial New PIN" msgstr "|N|初始化新 PIN" @@ -8213,11 +8225,11 @@ msgid "validation model requested by certificate: %s" msgstr "证书所请求的验证模型:%s" -#: sm/certchain.c:199 sm/certchain.c:2164 +#: sm/certchain.c:199 sm/certchain.c:2165 msgid "chain" msgstr "链" -#: sm/certchain.c:200 sm/certchain.c:2164 +#: sm/certchain.c:200 sm/certchain.c:2165 msgid "shell" msgstr "外壳" @@ -8240,234 +8252,234 @@ msgid "failed to open '%s': %s\n" msgstr "无法打开‘%s’:%s\n" -#: sm/certchain.c:355 sm/certchain.c:384 dirmngr/validate.c:204 +#: sm/certchain.c:355 sm/certchain.c:385 dirmngr/validate.c:204 #, c-format msgid "Note: non-critical certificate policy not allowed" msgstr "注意:非紧急认证策略不被允许" -#: sm/certchain.c:359 sm/certchain.c:388 dirmngr/validate.c:209 +#: sm/certchain.c:359 sm/certchain.c:389 dirmngr/validate.c:209 #, c-format msgid "certificate policy not allowed" msgstr "证书策略不被允许" -#: sm/certchain.c:595 sm/keydb.c:1084 sm/keydb.c:1171 +#: sm/certchain.c:596 sm/keydb.c:1084 sm/keydb.c:1171 #, c-format msgid "failed to get the fingerprint\n" msgstr "获取指纹失败\n" -#: sm/certchain.c:624 +#: sm/certchain.c:625 #, c-format msgid "looking up issuer at external location\n" msgstr "在外部位置查找签发者\n" -#: sm/certchain.c:644 +#: sm/certchain.c:645 #, c-format msgid "number of issuers matching: %d\n" msgstr "匹配的签发者数目:%d\n" -#: sm/certchain.c:723 dirmngr/ocsp.c:685 +#: sm/certchain.c:724 dirmngr/ocsp.c:685 #, c-format msgid "can't get authorityInfoAccess: %s\n" msgstr "无法获取 authorityInfoAccess:%s\n" -#: sm/certchain.c:791 +#: sm/certchain.c:792 #, c-format msgid "looking up issuer from the Dirmngr cache\n" msgstr "在 Dirmngr 缓存中查找签发者\n" -#: sm/certchain.c:816 +#: sm/certchain.c:817 #, c-format msgid "number of matching certificates: %d\n" msgstr "匹配的证书数:%d\n" -#: sm/certchain.c:819 +#: sm/certchain.c:820 #, c-format msgid "dirmngr cache-only key lookup failed: %s\n" msgstr "dirmngr 仅缓存的密钥查找失败:%s\n" -#: sm/certchain.c:1041 sm/certchain.c:1554 sm/certchain.c:2192 sm/decrypt.c:728 +#: sm/certchain.c:1042 sm/certchain.c:1555 sm/certchain.c:2193 sm/decrypt.c:728 #: sm/encrypt.c:345 sm/import.c:415 sm/keydb.c:1091 sm/keydb.c:1178 #: sm/sign.c:337 sm/verify.c:118 #, c-format msgid "failed to allocate keyDB handle\n" msgstr "分配 keyDB 句柄时失败\n" -#: sm/certchain.c:1225 +#: sm/certchain.c:1226 msgid "certificate has been revoked" msgstr "证书已被吊销" -#: sm/certchain.c:1240 +#: sm/certchain.c:1241 msgid "the status of the certificate is unknown" msgstr "证书的状态未知" -#: sm/certchain.c:1247 +#: sm/certchain.c:1248 #, c-format msgid "please make sure that the \"dirmngr\" is properly installed\n" msgstr "请确定“dirmngr”被正确安装\n" -#: sm/certchain.c:1253 +#: sm/certchain.c:1254 #, c-format msgid "checking the CRL failed: %s" msgstr "检查 CRL 时失败:%s" -#: sm/certchain.c:1282 sm/certchain.c:1350 dirmngr/validate.c:497 +#: sm/certchain.c:1283 sm/certchain.c:1351 dirmngr/validate.c:497 #, c-format msgid "certificate with invalid validity: %s" msgstr "证书的有效期无效:%s" -#: sm/certchain.c:1297 sm/certchain.c:1382 dirmngr/validate.c:515 +#: sm/certchain.c:1298 sm/certchain.c:1383 dirmngr/validate.c:515 #, c-format msgid "certificate not yet valid" msgstr "证书尚未验证" -#: sm/certchain.c:1298 sm/certchain.c:1383 +#: sm/certchain.c:1299 sm/certchain.c:1384 msgid "root certificate not yet valid" msgstr "根证书尚未验证" -#: sm/certchain.c:1299 sm/certchain.c:1384 +#: sm/certchain.c:1300 sm/certchain.c:1385 msgid "intermediate certificate not yet valid" msgstr "中间证书尚未验证" -#: sm/certchain.c:1312 dirmngr/validate.c:526 +#: sm/certchain.c:1313 dirmngr/validate.c:526 #, c-format msgid "certificate has expired" msgstr "证书已过期" -#: sm/certchain.c:1313 +#: sm/certchain.c:1314 msgid "root certificate has expired" msgstr "根证书已过期" -#: sm/certchain.c:1314 +#: sm/certchain.c:1315 msgid "intermediate certificate has expired" msgstr "中间证书已过期" -#: sm/certchain.c:1356 +#: sm/certchain.c:1357 #, c-format msgid "required certificate attributes missing: %s%s%s" msgstr "请求的证书属性缺失:%s%s%s" -#: sm/certchain.c:1365 +#: sm/certchain.c:1366 msgid "certificate with invalid validity" msgstr "证书有效期无效" -#: sm/certchain.c:1402 +#: sm/certchain.c:1403 msgid "signature not created during lifetime of certificate" msgstr "签名不是在证书的有效期内被创建的" -#: sm/certchain.c:1404 +#: sm/certchain.c:1405 msgid "certificate not created during lifetime of issuer" msgstr "签名不是在签发者的有效期内被创建的" -#: sm/certchain.c:1405 +#: sm/certchain.c:1406 msgid "intermediate certificate not created during lifetime of issuer" msgstr "中间证书不是在签发者的有效期内被创建的" -#: sm/certchain.c:1409 +#: sm/certchain.c:1410 #, c-format msgid " ( signature created at " msgstr " ( 签名创建于 " -#: sm/certchain.c:1410 +#: sm/certchain.c:1411 #, c-format msgid " (certificate created at " msgstr " (证书创建于 " -#: sm/certchain.c:1413 +#: sm/certchain.c:1414 #, c-format msgid " (certificate valid from " msgstr " (证书有效期从 " -#: sm/certchain.c:1414 +#: sm/certchain.c:1415 #, c-format msgid " ( issuer valid from " msgstr " ( 签发者有效期从 " -#: sm/certchain.c:1444 dirmngr/validate.c:577 +#: sm/certchain.c:1445 dirmngr/validate.c:577 #, c-format msgid "fingerprint=%s\n" msgstr "指纹 = %s\n" -#: sm/certchain.c:1453 +#: sm/certchain.c:1454 #, c-format msgid "root certificate has now been marked as trusted\n" msgstr "根证书现已被标记为信任\n" -#: sm/certchain.c:1466 +#: sm/certchain.c:1467 #, c-format msgid "interactive marking as trusted not enabled in gpg-agent\n" msgstr "交互式标记为信任未在 gpg-agent 中开启\n" -#: sm/certchain.c:1472 +#: sm/certchain.c:1473 #, c-format msgid "interactive marking as trusted disabled for this session\n" msgstr "交互式标记为信任在此会话中被关闭\n" -#: sm/certchain.c:1531 +#: sm/certchain.c:1532 msgid "WARNING: creation time of signature not known - assuming current time" msgstr "警告:签名的创建时间未知 - 猜测为当前时间" -#: sm/certchain.c:1595 +#: sm/certchain.c:1596 msgid "no issuer found in certificate" msgstr "证书中没有找到签发者" -#: sm/certchain.c:1673 +#: sm/certchain.c:1674 msgid "self-signed certificate has a BAD signature" msgstr "自签名证书具有损坏的签名" -#: sm/certchain.c:1742 dirmngr/validate.c:575 +#: sm/certchain.c:1743 dirmngr/validate.c:575 #, c-format msgid "root certificate is not marked trusted" msgstr "根证书未被标记为信任" -#: sm/certchain.c:1758 +#: sm/certchain.c:1759 #, c-format msgid "checking the trust list failed: %s\n" msgstr "检查信任列表时失败:%s\n" -#: sm/certchain.c:1789 sm/import.c:176 sm/keylist.c:1396 dirmngr/validate.c:630 +#: sm/certchain.c:1790 sm/import.c:176 sm/keylist.c:1396 dirmngr/validate.c:630 #, c-format msgid "certificate chain too long\n" msgstr "证书链过长\n" -#: sm/certchain.c:1801 dirmngr/validate.c:642 +#: sm/certchain.c:1802 dirmngr/validate.c:642 #, c-format msgid "issuer certificate not found" msgstr "签发者证书未找到" -#: sm/certchain.c:1834 dirmngr/validate.c:668 +#: sm/certchain.c:1835 dirmngr/validate.c:668 #, c-format msgid "certificate has a BAD signature" msgstr "证书具有损坏的签名" -#: sm/certchain.c:1866 dirmngr/validate.c:692 +#: sm/certchain.c:1867 dirmngr/validate.c:692 msgid "found another possible matching CA certificate - trying again" msgstr "找到另一个可能匹配的 CA 证书 - 正在重试" -#: sm/certchain.c:1925 dirmngr/validate.c:717 +#: sm/certchain.c:1926 dirmngr/validate.c:717 #, c-format msgid "certificate chain longer than allowed by CA (%d)" msgstr "证书链长于 CA 允许的长度(%d)" -#: sm/certchain.c:1967 sm/certchain.c:2263 dirmngr/validate.c:747 +#: sm/certchain.c:1968 sm/certchain.c:2264 dirmngr/validate.c:747 #, c-format msgid "certificate is good\n" msgstr "证书有效\n" -#: sm/certchain.c:1968 +#: sm/certchain.c:1969 #, c-format msgid "intermediate certificate is good\n" msgstr "中间证书有效\n" -#: sm/certchain.c:1969 +#: sm/certchain.c:1970 #, c-format msgid "root certificate is good\n" msgstr "根证书良好\n" -#: sm/certchain.c:2151 +#: sm/certchain.c:2152 msgid "switching to chain model" msgstr "正在切换为链模型" -#: sm/certchain.c:2160 +#: sm/certchain.c:2161 #, c-format msgid "validation model used: %s" msgstr "使用的验证模型:%s" diff -Nru gnupg2-2.2.40/po/zh_TW.po gnupg2-2.2.41/po/zh_TW.po --- gnupg2-2.2.40/po/zh_TW.po 2022-10-10 09:58:26.000000000 +0000 +++ gnupg2-2.2.41/po/zh_TW.po 2022-12-09 08:48:35.000000000 +0000 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: GNU gnupg 2.1.0\n" "Report-Msgid-Bugs-To: translations@gnupg.org\n" -"POT-Creation-Date: 2022-10-10 11:58+0200\n" +"POT-Creation-Date: 2022-12-09 09:48+0100\n" "PO-Revision-Date: 2019-11-04 09:49+0100\n" "Last-Translator: Jedi Lin \n" "Language-Team: Chinese (traditional) \n" @@ -238,20 +238,20 @@ msgid "ssh keys greater than %d bits are not supported\n" msgstr "未支援大於 %d 位元的 ssh 金鑰\n" -#: agent/command-ssh.c:862 common/dotlock.c:856 g10/card-util.c:947 -#: g10/exec.c:554 g10/export.c:1320 g10/gpg.c:1400 g10/keygen.c:4998 +#: agent/command-ssh.c:862 common/dotlock.c:856 g10/card-util.c:946 +#: g10/exec.c:554 g10/export.c:1335 g10/gpg.c:1409 g10/keygen.c:5052 #: g10/keyring.c:1322 g10/keyring.c:1637 g10/openfile.c:291 g10/sign.c:1008 #: g10/sign.c:1322 g10/tdbio.c:753 #, c-format msgid "can't create '%s': %s\n" msgstr "無法建立 '%s': %s\n" -#: agent/command-ssh.c:874 common/helpfile.c:57 g10/card-util.c:904 +#: agent/command-ssh.c:874 common/helpfile.c:57 g10/card-util.c:903 #: g10/dearmor.c:59 g10/dearmor.c:106 g10/decrypt.c:65 g10/decrypt.c:136 -#: g10/decrypt.c:153 g10/encrypt.c:239 g10/encrypt.c:678 g10/gpg.c:1401 -#: g10/import.c:364 g10/import.c:548 g10/import.c:776 g10/keygen.c:4036 +#: g10/decrypt.c:153 g10/encrypt.c:239 g10/encrypt.c:678 g10/gpg.c:1410 +#: g10/import.c:365 g10/import.c:549 g10/import.c:777 g10/keygen.c:4090 #: g10/keyring.c:1663 g10/openfile.c:195 g10/openfile.c:209 g10/plaintext.c:128 -#: g10/plaintext.c:649 g10/sign.c:990 g10/sign.c:1201 g10/sign.c:1306 +#: g10/plaintext.c:654 g10/sign.c:990 g10/sign.c:1201 g10/sign.c:1306 #: g10/sign.c:1451 g10/tdbdump.c:145 g10/tdbdump.c:153 g10/tdbio.c:758 #: g10/tdbio.c:829 g10/verify.c:96 g10/verify.c:160 sm/gpgsm.c:2160 #: sm/gpgsm.c:2190 sm/gpgsm.c:2228 sm/qualified.c:66 dirmngr/certcache.c:420 @@ -474,33 +474,33 @@ msgid "csh-style command output" msgstr "csh 樣式的指令輸出" -#: agent/gpg-agent.c:185 g10/gpg.c:579 scd/scdaemon.c:126 sm/gpgsm.c:410 +#: agent/gpg-agent.c:185 g10/gpg.c:580 scd/scdaemon.c:126 sm/gpgsm.c:410 #: dirmngr/dirmngr.c:192 msgid "|FILE|read options from FILE" msgstr "|檔案|從指定檔案中讀取選項" -#: agent/gpg-agent.c:189 g10/gpg.c:566 scd/scdaemon.c:130 sm/gpgsm.c:259 +#: agent/gpg-agent.c:189 g10/gpg.c:567 scd/scdaemon.c:130 sm/gpgsm.c:259 #: dirmngr/dirmngr.c:196 msgid "Options controlling the diagnostic output" msgstr "控制著診斷性輸出的選項" -#: agent/gpg-agent.c:191 g10/gpg.c:568 g10/gpgv.c:78 kbx/kbxutil.c:88 +#: agent/gpg-agent.c:191 g10/gpg.c:569 g10/gpgv.c:78 kbx/kbxutil.c:88 #: scd/scdaemon.c:132 sm/gpgsm.c:261 dirmngr/dirmngr-client.c:70 #: dirmngr/dirmngr.c:198 tools/gpg-connect-agent.c:78 tools/gpgconf.c:110 msgid "verbose" msgstr "囉唆模式" -#: agent/gpg-agent.c:192 g10/gpg.c:570 g10/gpgv.c:79 kbx/kbxutil.c:89 +#: agent/gpg-agent.c:192 g10/gpg.c:571 g10/gpgv.c:79 kbx/kbxutil.c:89 #: scd/scdaemon.c:133 sm/gpgsm.c:263 dirmngr/dirmngr-client.c:71 #: dirmngr/dirmngr.c:199 msgid "be somewhat more quiet" msgstr "盡量安靜些" -#: agent/gpg-agent.c:200 g10/gpg.c:583 sm/gpgsm.c:276 dirmngr/dirmngr.c:209 +#: agent/gpg-agent.c:200 g10/gpg.c:584 sm/gpgsm.c:276 dirmngr/dirmngr.c:209 msgid "|FILE|write server mode logs to FILE" msgstr "|檔案|將伺服器模式日誌寫入至指定檔案" -#: agent/gpg-agent.c:204 g10/gpg.c:589 scd/scdaemon.c:147 sm/gpgsm.c:283 +#: agent/gpg-agent.c:204 g10/gpg.c:590 scd/scdaemon.c:147 sm/gpgsm.c:283 #: dirmngr/dirmngr.c:213 msgid "Options controlling the configuration" msgstr "控制著組態的選項" @@ -539,7 +539,7 @@ msgid "enable putty support" msgstr "啟用 putty 支援" -#: agent/gpg-agent.c:237 g10/gpg.c:831 scd/scdaemon.c:175 sm/gpgsm.c:369 +#: agent/gpg-agent.c:237 g10/gpg.c:832 scd/scdaemon.c:175 sm/gpgsm.c:369 msgid "Options controlling the security" msgstr "控制著安全性的選項" @@ -643,7 +643,7 @@ #. reporting address. This is so that we can change the #. reporting address without breaking the translations. #: agent/gpg-agent.c:563 agent/preset-passphrase.c:100 agent/protect-tool.c:155 -#: g10/gpg.c:1108 g10/gpgv.c:149 kbx/kbxutil.c:113 scd/scdaemon.c:313 +#: g10/gpg.c:1117 g10/gpgv.c:149 kbx/kbxutil.c:113 scd/scdaemon.c:313 #: sm/gpgsm.c:600 dirmngr/dirmngr-client.c:168 dirmngr/dirmngr.c:458 #: tools/gpg-connect-agent.c:205 tools/gpgconf.c:154 #: tools/gpg-check-pattern.c:143 @@ -662,26 +662,26 @@ "語法: @GPG_AGENT@ [選項] [指令 [引數]]\n" "@GNUPG@ 私鑰管理\n" -#: agent/gpg-agent.c:619 g10/gpg.c:1304 scd/scdaemon.c:385 sm/gpgsm.c:748 +#: agent/gpg-agent.c:619 g10/gpg.c:1313 scd/scdaemon.c:385 sm/gpgsm.c:748 #: dirmngr/dirmngr.c:542 #, c-format msgid "invalid debug-level '%s' given\n" msgstr "給定的除錯等級 '%s' 無效\n" -#: agent/gpg-agent.c:988 g10/gpg.c:3810 g10/gpg.c:3834 sm/gpgsm.c:1585 +#: agent/gpg-agent.c:988 g10/gpg.c:3830 g10/gpg.c:3854 sm/gpgsm.c:1585 #: sm/gpgsm.c:1591 #, c-format msgid "selected digest algorithm is invalid\n" msgstr "所選的摘要演算法無效\n" #: agent/gpg-agent.c:1216 agent/gpg-agent.c:2029 common/argparse.c:1766 -#: common/argparse.c:1858 g10/gpg.c:2517 scd/scdaemon.c:547 sm/gpgsm.c:1007 +#: common/argparse.c:1858 g10/gpg.c:2526 scd/scdaemon.c:547 sm/gpgsm.c:1007 #: dirmngr/dirmngr.c:1081 dirmngr/dirmngr.c:1937 #, c-format msgid "reading options from '%s'\n" msgstr "從 '%s' 讀取選項中\n" -#: agent/gpg-agent.c:1332 g10/gpg.c:3751 scd/scdaemon.c:671 sm/gpgsm.c:1522 +#: agent/gpg-agent.c:1332 g10/gpg.c:3769 scd/scdaemon.c:671 sm/gpgsm.c:1522 #: dirmngr/dirmngr.c:1190 tools/gpg-connect-agent.c:1244 tools/gpgconf.c:677 #, c-format msgid "Note: '%s' is not considered an option\n" @@ -812,7 +812,7 @@ "語法: gpg-preset-passphrase [選項] 金鑰鑰柄\n" "密碼快取維護\n" -#: agent/protect-tool.c:108 g10/gpg.c:441 kbx/kbxutil.c:71 sm/gpgsm.c:210 +#: agent/protect-tool.c:108 g10/gpg.c:442 kbx/kbxutil.c:71 sm/gpgsm.c:210 #: dirmngr/dirmngr.c:171 tools/gpgconf.c:80 msgid "" "@Commands:\n" @@ -1032,7 +1032,7 @@ msgid "secret key parts are not available\n" msgstr "私鑰部分無法取用\n" -#: agent/cvt-openpgp.c:344 g10/card-util.c:1556 +#: agent/cvt-openpgp.c:344 g10/card-util.c:1555 #, c-format msgid "public key algorithm %d (%s) is not supported\n" msgstr "公鑰演算法 %d (%s) 未支援\n" @@ -1189,7 +1189,7 @@ msgid "out of core while allocating %lu bytes" msgstr "配置 %lu 位元組時超出核心" -#: common/miscellaneous.c:115 g10/card-util.c:911 tools/no-libgcrypt.c:30 +#: common/miscellaneous.c:115 g10/card-util.c:910 tools/no-libgcrypt.c:30 #, c-format msgid "error allocating enough memory: %s\n" msgstr "配置足夠的記憶體時出錯: %s\n" @@ -1305,7 +1305,7 @@ msgstr "演算法: %s" #: common/audit.c:774 common/audit.c:776 common/audit.c:921 common/audit.c:923 -#: scd/app-openpgp.c:3557 +#: scd/app-openpgp.c:3566 #, c-format msgid "unsupported algorithm: %s" msgstr "未支援的演算法: %s" @@ -1380,11 +1380,11 @@ msgid "Root certificate trustworthy" msgstr "根憑證可信賴" -#: common/audit.c:1112 sm/certchain.c:1235 +#: common/audit.c:1112 sm/certchain.c:1236 msgid "no CRL found for certificate" msgstr "找不到用於憑證的 CRL" -#: common/audit.c:1115 sm/certchain.c:1245 +#: common/audit.c:1115 sm/certchain.c:1246 msgid "the available CRL is too old" msgstr "可用的 CRL 太舊了" @@ -1513,7 +1513,7 @@ msgid "missing argument for option \"%.50s\"\n" msgstr "\"%.50s\" 選項遺失了引數\n" -#: common/argparse.c:558 g10/gpg.c:3525 +#: common/argparse.c:558 g10/gpg.c:3543 #, c-format msgid "invalid argument for option \"%.50s\"\n" msgstr "選項 \"%.50s\" 的引數無效\n" @@ -1612,92 +1612,92 @@ msgid "%s is too old (need %s, have %s)\n" msgstr "%s 太舊了 (需要 %s, 但是祇有 %s)\n" -#: g10/armor.c:423 +#: g10/armor.c:424 #, c-format msgid "armor: %s\n" msgstr "封裝: %s\n" -#: g10/armor.c:462 +#: g10/armor.c:463 #, c-format msgid "invalid armor header: " msgstr "無效的封裝檔頭: " -#: g10/armor.c:473 +#: g10/armor.c:474 #, c-format msgid "armor header: " msgstr "封裝檔頭: " -#: g10/armor.c:486 +#: g10/armor.c:487 #, c-format msgid "invalid clearsig header\n" msgstr "無效的明文簽章檔頭\n" -#: g10/armor.c:499 +#: g10/armor.c:500 #, c-format msgid "unknown armor header: " msgstr "未知的封裝檔頭: " -#: g10/armor.c:552 +#: g10/armor.c:553 #, c-format msgid "nested clear text signatures\n" msgstr "多層明文簽章\n" -#: g10/armor.c:687 +#: g10/armor.c:688 #, c-format msgid "unexpected armor: " msgstr "未預期的封裝: " -#: g10/armor.c:700 +#: g10/armor.c:701 #, c-format msgid "invalid dash escaped line: " msgstr "無效的破折號逸出列: " -#: g10/armor.c:872 g10/armor.c:1492 +#: g10/armor.c:873 g10/armor.c:1493 #, c-format msgid "invalid radix64 character %02X skipped\n" msgstr "無效的 64 進位字符 %02x 已跳過\n" -#: g10/armor.c:915 +#: g10/armor.c:916 #, c-format msgid "premature eof (no CRC)\n" msgstr "檔案未預期的結束 (沒有 CRC 的部分)\n" -#: g10/armor.c:949 +#: g10/armor.c:950 #, c-format msgid "premature eof (in CRC)\n" msgstr "檔案未預期的結束 (CRC 的部分未結束)\n" -#: g10/armor.c:957 +#: g10/armor.c:958 #, c-format msgid "malformed CRC\n" msgstr "格式不對的 CRC\n" -#: g10/armor.c:961 g10/armor.c:1529 +#: g10/armor.c:962 g10/armor.c:1530 #, c-format msgid "CRC error; %06lX - %06lX\n" msgstr "CRC 錯誤; %06lX - %06lX\n" -#: g10/armor.c:981 +#: g10/armor.c:982 #, c-format msgid "premature eof (in trailer)\n" msgstr "檔案未預期的結束 (於結尾處)\n" -#: g10/armor.c:985 +#: g10/armor.c:986 #, c-format msgid "error in trailer line\n" msgstr "結尾列有問題\n" -#: g10/armor.c:1305 +#: g10/armor.c:1306 #, c-format msgid "no valid OpenPGP data found.\n" msgstr "找不到有效的 OpenPGP 資料.\n" -#: g10/armor.c:1310 +#: g10/armor.c:1311 #, c-format msgid "invalid armor: line longer than %d characters\n" msgstr "無效的封裝: 列長超出 %d 字符\n" -#: g10/armor.c:1314 +#: g10/armor.c:1315 #, c-format msgid "" "quoted printable character in armor - probably a buggy MTA has been used\n" @@ -1845,24 +1845,24 @@ msgid "server uses an invalid certificate" msgstr "產生撤銷憑證" -#: g10/call-dirmngr.c:462 g10/gpg.c:4458 +#: g10/call-dirmngr.c:462 g10/gpg.c:4478 #, fuzzy, c-format #| msgid "armor: %s\n" msgid "Note: %s\n" msgstr "封裝: %s\n" -#: g10/card-util.c:86 g10/card-util.c:366 g10/card-util.c:1918 +#: g10/card-util.c:86 g10/card-util.c:366 g10/card-util.c:1917 #, c-format msgid "OpenPGP card not available: %s\n" msgstr "沒有可用的 OpenPGP 卡片: %s\n" -#: g10/card-util.c:91 g10/card-util.c:1924 +#: g10/card-util.c:91 g10/card-util.c:1923 #, c-format msgid "OpenPGP card no. %s detected\n" msgstr "偵測到 OpenPGP 卡片編號 %s\n" -#: g10/card-util.c:97 g10/card-util.c:2253 g10/delkey.c:160 g10/keyedit.c:1423 -#: g10/keygen.c:4466 g10/revoke.c:214 g10/revoke.c:636 +#: g10/card-util.c:97 g10/card-util.c:2252 g10/delkey.c:160 g10/keyedit.c:1423 +#: g10/keygen.c:4520 g10/revoke.c:214 g10/revoke.c:636 #, c-format msgid "can't do this in batch mode\n" msgstr "無法在批次模式中這樣做\n" @@ -1872,14 +1872,14 @@ msgid "This command is only available for version 2 cards\n" msgstr "祇有第二版卡片纔能用這個指令\n" -#: g10/card-util.c:107 scd/app-openpgp.c:2866 +#: g10/card-util.c:107 scd/app-openpgp.c:2869 #, c-format msgid "Reset Code not or not anymore available\n" msgstr "(再也) 沒有重設碼\n" -#: g10/card-util.c:140 g10/card-util.c:1442 g10/card-util.c:1704 -#: g10/card-util.c:1796 g10/keyedit.c:394 g10/keyedit.c:415 g10/keyedit.c:429 -#: g10/keygen.c:1808 g10/keygen.c:1980 g10/keygen.c:2186 g10/keygen.c:2477 +#: g10/card-util.c:140 g10/card-util.c:1441 g10/card-util.c:1703 +#: g10/card-util.c:1795 g10/keyedit.c:394 g10/keyedit.c:415 g10/keyedit.c:429 +#: g10/keygen.c:1862 g10/keygen.c:2034 g10/keygen.c:2240 g10/keygen.c:2531 #: sm/certreqgen-ui.c:165 sm/certreqgen-ui.c:291 sm/certreqgen-ui.c:325 msgid "Your selection? " msgstr "你要選哪一個? " @@ -1929,79 +1929,79 @@ msgid "Error: Combined name too long (limit is %d characters).\n" msgstr "錯誤: 合併後的名字太長 (上限是 %d 個字符).\n" -#: g10/card-util.c:826 +#: g10/card-util.c:825 msgid "URL to retrieve public key: " msgstr "取回公鑰的 URL: " -#: g10/card-util.c:920 g10/decrypt-data.c:509 g10/import.c:399 g10/import.c:746 -#: g10/import.c:798 dirmngr/crlcache.c:655 dirmngr/crlcache.c:660 +#: g10/card-util.c:919 g10/decrypt-data.c:509 g10/import.c:400 g10/import.c:747 +#: g10/import.c:799 dirmngr/crlcache.c:655 dirmngr/crlcache.c:660 #: dirmngr/crlcache.c:914 dirmngr/crlcache.c:920 dirmngr/dirmngr.c:1748 #: tools/gpgconf.c:483 tools/gpgconf.c:529 #, c-format msgid "error reading '%s': %s\n" msgstr "讀取 '%s' 時出錯: %s\n" -#: g10/card-util.c:953 g10/decrypt-data.c:512 g10/export.c:2467 +#: g10/card-util.c:952 g10/decrypt-data.c:512 g10/export.c:2586 #: dirmngr/crlcache.c:925 #, c-format msgid "error writing '%s': %s\n" msgstr "寫入 '%s' 時出錯: %s\n" -#: g10/card-util.c:980 +#: g10/card-util.c:979 msgid "Login data (account name): " msgstr "登入資料 (帳號名稱): " -#: g10/card-util.c:1018 +#: g10/card-util.c:1017 msgid "Private DO data: " msgstr "私人的 DO 資料: " -#: g10/card-util.c:1103 +#: g10/card-util.c:1102 msgid "Language preferences: " msgstr "介面語言偏好設定: " -#: g10/card-util.c:1111 +#: g10/card-util.c:1110 msgid "Error: invalid length of preference string.\n" msgstr "錯誤: 無效的偏好設定字串長度\n" -#: g10/card-util.c:1120 +#: g10/card-util.c:1119 msgid "Error: invalid characters in preference string.\n" msgstr "錯誤: 偏好設定字串中含有無效的字符\n" -#: g10/card-util.c:1142 +#: g10/card-util.c:1141 msgid "Salutation (M = Mr., F = Ms., or space): " msgstr "" -#: g10/card-util.c:1156 +#: g10/card-util.c:1155 msgid "Error: invalid response.\n" msgstr "錯誤: 無效的回應.\n" -#: g10/card-util.c:1178 +#: g10/card-util.c:1177 msgid "CA fingerprint: " msgstr "憑證中心 (CA) 指紋: " -#: g10/card-util.c:1201 +#: g10/card-util.c:1200 msgid "Error: invalid formatted fingerprint.\n" msgstr "錯誤: 無效的格式化指紋.\n" -#: g10/card-util.c:1252 +#: g10/card-util.c:1251 #, c-format msgid "key operation not possible: %s\n" msgstr "不可能進行金鑰操作: %s\n" -#: g10/card-util.c:1253 +#: g10/card-util.c:1252 msgid "not an OpenPGP card" msgstr "這不是 OpenPGP 卡片" -#: g10/card-util.c:1266 g10/keygen.c:4486 g10/keygen.c:5562 +#: g10/card-util.c:1265 g10/keygen.c:4540 g10/keygen.c:5616 #, c-format msgid "error getting current key info: %s\n" msgstr "取得現用金鑰資訊時出錯: %s\n" -#: g10/card-util.c:1351 +#: g10/card-util.c:1350 msgid "Replace existing key? (y/N) " msgstr "是否要取代既有的金鑰? (y/N) " -#: g10/card-util.c:1368 +#: g10/card-util.c:1367 msgid "" "Note: There is no guarantee that the card supports the requested size.\n" " If the key generation does not succeed, please check the\n" @@ -2011,108 +2011,108 @@ " 如果金鑰產生失敗了, 煩請查閱你卡片上的文件,\n" " 看看這張卡片支援哪些尺寸.\n" -#: g10/card-util.c:1390 g10/keygen.c:2363 sm/certreqgen-ui.c:179 +#: g10/card-util.c:1389 g10/keygen.c:2417 sm/certreqgen-ui.c:179 #, c-format msgid "What keysize do you want? (%u) " msgstr "你想要用多大的金鑰尺寸? (%u) " -#: g10/card-util.c:1400 g10/keygen.c:2286 g10/keygen.c:2318 +#: g10/card-util.c:1399 g10/keygen.c:2340 g10/keygen.c:2372 #: sm/certreqgen-ui.c:194 #, c-format msgid "rounded up to %u bits\n" msgstr "加大到 %u 位元\n" -#: g10/card-util.c:1408 g10/keygen.c:2371 sm/certreqgen-ui.c:184 +#: g10/card-util.c:1407 g10/keygen.c:2425 sm/certreqgen-ui.c:184 #, c-format msgid "%s keysizes must be in the range %u-%u\n" msgstr "%s 金鑰尺寸一定要介於 %u 到 %u 之間\n" -#: g10/card-util.c:1427 +#: g10/card-util.c:1426 msgid "Changing card key attribute for: " msgstr "" -#: g10/card-util.c:1429 +#: g10/card-util.c:1428 #, fuzzy #| msgid " (1) Signature key\n" msgid "Signature key\n" msgstr " (1) 簽署用金鑰\n" -#: g10/card-util.c:1431 +#: g10/card-util.c:1430 #, fuzzy #| msgid " (2) Encryption key\n" msgid "Encryption key\n" msgstr " (2) 加密用金鑰\n" -#: g10/card-util.c:1433 +#: g10/card-util.c:1432 #, fuzzy #| msgid " (3) Authentication key\n" msgid "Authentication key\n" msgstr " (3) 憑證用金鑰\n" -#: g10/card-util.c:1435 g10/keygen.c:1926 sm/certreqgen-ui.c:157 +#: g10/card-util.c:1434 g10/keygen.c:1980 sm/certreqgen-ui.c:157 msgid "Please select what kind of key you want:\n" msgstr "請選擇你要使用的金鑰種類:\n" -#: g10/card-util.c:1436 sm/certreqgen-ui.c:158 +#: g10/card-util.c:1435 sm/certreqgen-ui.c:158 #, c-format msgid " (%d) RSA\n" msgstr " (%d) RSA\n" -#: g10/card-util.c:1437 +#: g10/card-util.c:1436 #, fuzzy, c-format #| msgid " (%d) ECC and ECC\n" msgid " (%d) ECC\n" msgstr " (%d) ECC 和 ECC\n" -#: g10/card-util.c:1449 g10/card-util.c:1716 g10/card-util.c:1816 -#: g10/keyedit.c:900 g10/keygen.c:1834 g10/keygen.c:1862 g10/keygen.c:1987 -#: g10/keygen.c:2222 g10/keygen.c:2505 g10/revoke.c:838 +#: g10/card-util.c:1448 g10/card-util.c:1715 g10/card-util.c:1815 +#: g10/keyedit.c:900 g10/keygen.c:1888 g10/keygen.c:1916 g10/keygen.c:2041 +#: g10/keygen.c:2276 g10/keygen.c:2559 g10/revoke.c:838 msgid "Invalid selection.\n" msgstr "無效的選擇.\n" -#: g10/card-util.c:1522 +#: g10/card-util.c:1521 #, c-format msgid "The card will now be re-configured to generate a key of %u bits\n" msgstr "這張卡片將重新加以組態, 以便產生 %u 位元的金鑰\n" -#: g10/card-util.c:1527 +#: g10/card-util.c:1526 #, fuzzy, c-format #| msgid "The card will now be re-configured to generate a key of %u bits\n" msgid "The card will now be re-configured to generate a key of type: %s\n" msgstr "這張卡片將重新加以組態, 以便產生 %u 位元的金鑰\n" -#: g10/card-util.c:1563 +#: g10/card-util.c:1562 #, fuzzy, c-format #| msgid "error changing size of key %d to %u bits: %s\n" msgid "error changing key attribute for key %d: %s\n" msgstr "將金鑰 %d 尺寸變更至 %u 位元時出錯: %s\n" -#: g10/card-util.c:1579 g10/card-util.c:2106 +#: g10/card-util.c:1578 g10/card-util.c:2105 #, fuzzy, c-format #| msgid "error getting current key info: %s\n" msgid "error getting card info: %s\n" msgstr "取得現用金鑰資訊時出錯: %s\n" -#: g10/card-util.c:1585 g10/card-util.c:1930 g10/card-util.c:2112 +#: g10/card-util.c:1584 g10/card-util.c:1929 g10/card-util.c:2111 #, fuzzy, c-format #| msgid "This command is not allowed while in %s mode.\n" msgid "This command is not supported by this card\n" msgstr "在 %s 模式中不允許使用這個指令.\n" -#: g10/card-util.c:1631 +#: g10/card-util.c:1630 msgid "Make off-card backup of encryption key? (Y/n) " msgstr "是否要為加密用金鑰建立卡外備份? (Y/n) " -#: g10/card-util.c:1645 +#: g10/card-util.c:1644 #, c-format msgid "Note: keys are already stored on the card!\n" msgstr "請注意: 金鑰已經存放在卡片上了!\n" -#: g10/card-util.c:1648 +#: g10/card-util.c:1647 msgid "Replace existing keys? (y/N) " msgstr "是否要取代既有的金鑰? (y/N) " -#: g10/card-util.c:1660 +#: g10/card-util.c:1659 #, c-format msgid "" "Please note that the factory settings of the PINs are\n" @@ -2123,152 +2123,152 @@ " PIN = '%s' 管理者 PIN = '%s'\n" "你應該用 --change-pin 指令來加以變更\n" -#: g10/card-util.c:1695 +#: g10/card-util.c:1694 msgid "Please select the type of key to generate:\n" msgstr "請選擇你要產生的金鑰種類:\n" -#: g10/card-util.c:1697 g10/card-util.c:1787 +#: g10/card-util.c:1696 g10/card-util.c:1786 msgid " (1) Signature key\n" msgstr " (1) 簽署用金鑰\n" -#: g10/card-util.c:1698 g10/card-util.c:1789 +#: g10/card-util.c:1697 g10/card-util.c:1788 msgid " (2) Encryption key\n" msgstr " (2) 加密用金鑰\n" -#: g10/card-util.c:1699 g10/card-util.c:1791 +#: g10/card-util.c:1698 g10/card-util.c:1790 msgid " (3) Authentication key\n" msgstr " (3) 憑證用金鑰\n" -#: g10/card-util.c:1784 +#: g10/card-util.c:1783 msgid "Please select where to store the key:\n" msgstr "請選擇要把金鑰存放在哪裡:\n" -#: g10/card-util.c:1830 +#: g10/card-util.c:1829 #, c-format msgid "KEYTOCARD failed: %s\n" msgstr "KEYTOCARD 失敗: %s\n" -#: g10/card-util.c:1935 +#: g10/card-util.c:1934 #, fuzzy, c-format #| msgid "Note: keys are already stored on the card!\n" msgid "Note: This command destroys all keys stored on the card!\n" msgstr "請注意: 金鑰已經存放在卡片上了!\n" -#: g10/card-util.c:1938 +#: g10/card-util.c:1937 #, fuzzy #| msgid "Continue? (Y/n) " msgid "Continue? (y/N) " msgstr "是否繼續? (Y/n) " -#: g10/card-util.c:1943 +#: g10/card-util.c:1942 msgid "Really do a factory reset? (enter \"yes\") " msgstr "" -#: g10/card-util.c:2129 +#: g10/card-util.c:2128 #, fuzzy, c-format #| msgid "error closing %s: %s\n" msgid "error for setup KDF: %s\n" msgstr "關閉 %s 時出錯: %s\n" -#: g10/card-util.c:2158 g10/keyedit.c:1260 +#: g10/card-util.c:2157 g10/keyedit.c:1260 msgid "quit this menu" msgstr "離開這個選單" -#: g10/card-util.c:2160 +#: g10/card-util.c:2159 msgid "show admin commands" msgstr "顯示管理者指令" -#: g10/card-util.c:2161 g10/keyedit.c:1263 +#: g10/card-util.c:2160 g10/keyedit.c:1263 msgid "show this help" msgstr "顯示這份線上說明" -#: g10/card-util.c:2163 +#: g10/card-util.c:2162 msgid "list all available data" msgstr "列出所有可用的資料" -#: g10/card-util.c:2166 +#: g10/card-util.c:2165 msgid "change card holder's name" msgstr "變更卡片持有人的名字" -#: g10/card-util.c:2167 +#: g10/card-util.c:2166 msgid "change URL to retrieve key" msgstr "變更取回金鑰的 URL" -#: g10/card-util.c:2168 +#: g10/card-util.c:2167 msgid "fetch the key specified in the card URL" msgstr "從卡片 URL 取回指定的金鑰" -#: g10/card-util.c:2169 +#: g10/card-util.c:2168 msgid "change the login name" msgstr "變更登入名稱" -#: g10/card-util.c:2170 +#: g10/card-util.c:2169 msgid "change the language preferences" msgstr "變更介面語言偏好設定" -#: g10/card-util.c:2171 +#: g10/card-util.c:2170 #, fuzzy #| msgid "change card holder's sex" msgid "change card holder's salutation" msgstr "變更卡片持有者的性別" -#: g10/card-util.c:2173 +#: g10/card-util.c:2172 msgid "change a CA fingerprint" msgstr "變更某個憑證中心 (CA) 的指紋" -#: g10/card-util.c:2174 +#: g10/card-util.c:2173 msgid "toggle the signature force PIN flag" msgstr "切換簽章是否強制使用個人識別碼 (PIN) 的旗標" -#: g10/card-util.c:2175 +#: g10/card-util.c:2174 msgid "generate new keys" msgstr "產生新的金鑰" -#: g10/card-util.c:2176 +#: g10/card-util.c:2175 msgid "menu to change or unblock the PIN" msgstr "變更或重設個人識別碼 (PIN) 的選單" -#: g10/card-util.c:2177 +#: g10/card-util.c:2176 msgid "verify the PIN and list all data" msgstr "驗證個人識別碼 (PIN) 並列出所有的資料" -#: g10/card-util.c:2178 +#: g10/card-util.c:2177 msgid "unblock the PIN using a Reset Code" msgstr "用重設碼來解凍個人識別碼 (PIN)" -#: g10/card-util.c:2179 +#: g10/card-util.c:2178 msgid "destroy all keys and data" msgstr "" -#: g10/card-util.c:2180 +#: g10/card-util.c:2179 #, fuzzy #| msgid "|NAME|use user NAME for authentication" msgid "setup KDF for PIN authentication" msgstr "|名字|使用指定名字做為認證用的使用者名稱" -#: g10/card-util.c:2181 +#: g10/card-util.c:2180 #, fuzzy #| msgid "change the ownertrust" msgid "change the key attribute" msgstr "更改主觀信任" -#: g10/card-util.c:2305 +#: g10/card-util.c:2304 msgid "gpg/card> " msgstr "gpg/卡片> " -#: g10/card-util.c:2346 +#: g10/card-util.c:2345 msgid "Admin-only command\n" msgstr "限管理者使用的指令\n" -#: g10/card-util.c:2377 +#: g10/card-util.c:2376 msgid "Admin commands are allowed\n" msgstr "允許使用管理者指令\n" -#: g10/card-util.c:2379 +#: g10/card-util.c:2378 msgid "Admin commands are not allowed\n" msgstr "未允許使用管理者指令\n" -#: g10/card-util.c:2482 g10/keyedit.c:2229 +#: g10/card-util.c:2481 g10/keyedit.c:2229 msgid "Invalid command (try \"help\")\n" msgstr "無效的指令 (試試看 \"help\")\n" @@ -2277,21 +2277,21 @@ msgid "--output doesn't work for this command\n" msgstr "--output 在這個指令中沒有作用\n" -#: g10/decrypt.c:247 g10/gpg.c:5155 g10/keyring.c:399 g10/keyring.c:750 +#: g10/decrypt.c:247 g10/gpg.c:5175 g10/keyring.c:399 g10/keyring.c:750 #, c-format msgid "can't open '%s'\n" msgstr "無法開啟 '%s'\n" -#: g10/delkey.c:83 g10/export.c:1947 g10/export.c:2230 g10/export.c:2351 -#: g10/getkey.c:2108 g10/gpg.c:5100 g10/keyedit.c:1445 g10/keyedit.c:2335 +#: g10/delkey.c:83 g10/export.c:2035 g10/export.c:2349 g10/export.c:2470 +#: g10/getkey.c:2108 g10/gpg.c:5120 g10/keyedit.c:1445 g10/keyedit.c:2335 #: g10/keyedit.c:2637 g10/keyedit.c:4600 g10/keylist.c:693 g10/keyserver.c:1092 #: g10/revoke.c:230 g10/tofu.c:2165 #, c-format msgid "key \"%s\" not found: %s\n" msgstr "找不到金鑰 \"%s\": %s\n" -#: g10/delkey.c:92 g10/export.c:2015 g10/getkey.c:2116 g10/getkey.c:4517 -#: g10/gpg.c:5109 g10/keyedit.c:2308 g10/keyserver.c:1110 g10/revoke.c:236 +#: g10/delkey.c:92 g10/export.c:2103 g10/getkey.c:2116 g10/getkey.c:4517 +#: g10/gpg.c:5129 g10/keyedit.c:2308 g10/keyserver.c:1110 g10/revoke.c:236 #: g10/revoke.c:663 g10/tofu.c:2173 #, c-format msgid "error reading keyblock: %s\n" @@ -2408,14 +2408,14 @@ msgid "WARNING: '%s' is an empty file\n" msgstr "警告: '%s' 是個空檔案\n" -#: g10/encrypt.c:446 g10/encrypt.c:521 g10/decrypt-data.c:266 g10/gpg.c:3959 -#: g10/gpg.c:3999 sm/decrypt.c:826 sm/encrypt.c:416 sm/gpgsm.c:1609 +#: g10/encrypt.c:446 g10/encrypt.c:521 g10/decrypt-data.c:266 g10/gpg.c:3979 +#: g10/gpg.c:4019 sm/decrypt.c:826 sm/encrypt.c:416 sm/gpgsm.c:1609 #, fuzzy, c-format #| msgid "you may not use cipher algorithm '%s' while in %s mode\n" msgid "cipher algorithm '%s' may not be used in %s mode\n" msgstr "你不該將 '%s' 編密演算法用於 %s 模式\n" -#: g10/encrypt.c:455 g10/gpg.c:3965 g10/gpg.c:4011 g10/sig-check.c:175 +#: g10/encrypt.c:455 g10/gpg.c:3985 g10/gpg.c:4031 g10/sig-check.c:175 #: g10/sign.c:391 sm/gpgsm.c:1619 sm/gpgsm.c:1629 sm/sign.c:478 sm/verify.c:506 #, fuzzy, c-format #| msgid "you may not use digest algorithm '%s' while in %s mode\n" @@ -2528,61 +2528,67 @@ msgid "WARNING: unable to remove temp directory '%s': %s\n" msgstr "警告: 無法移除暫存目錄 '%s': %s\n" -#: g10/export.c:119 +#: g10/export.c:124 msgid "export signatures that are marked as local-only" msgstr "匯出標記為僅限本機使用的簽章" -#: g10/export.c:121 +#: g10/export.c:126 msgid "export attribute user IDs (generally photo IDs)" msgstr "匯出署名使用者 ID (通常是照片 ID)" -#: g10/export.c:123 +#: g10/export.c:128 msgid "export revocation keys marked as \"sensitive\"" msgstr "匯出標記為 \"機密\" 的撤銷金鑰" -#: g10/export.c:125 +#: g10/export.c:130 msgid "remove unusable parts from key during export" msgstr "匯出時從金鑰中移除無法使用的部分" -#: g10/export.c:127 +#: g10/export.c:132 msgid "remove as much as possible from key during export" msgstr "匯出時盡可能地從金鑰中移除" -#: g10/export.c:133 +#: g10/export.c:138 +#, fuzzy +#| msgid "generate a revocation certificate" +msgid "export only revocation certificates" +msgstr "產生撤銷憑證" + +#: g10/export.c:141 msgid "use the GnuPG key backup format" msgstr "" -#: g10/export.c:1291 +#: g10/export.c:1306 msgid " - skipped" msgstr " - 已跳過" -#: g10/export.c:1324 g10/import.c:2085 g10/openfile.c:200 g10/openfile.c:294 +#: g10/export.c:1339 g10/import.c:2089 g10/openfile.c:200 g10/openfile.c:294 #: g10/sign.c:1012 g10/sign.c:1326 #, c-format msgid "writing to '%s'\n" msgstr "正在寫入 '%s'\n" -#: g10/export.c:1769 +#: g10/export.c:1784 #, c-format msgid "key %s: key material on-card - skipped\n" msgstr "金鑰 %s: 金鑰資料在卡片上 - 已跳過\n" -#: g10/export.c:1964 +#: g10/export.c:2052 #, c-format msgid "exporting secret keys not allowed\n" msgstr "不允許匯出私鑰\n" -#: g10/export.c:2041 +#: g10/export.c:2129 #, c-format msgid "key %s: PGP 2.x style key - skipped\n" msgstr "金鑰 %s: PGP 2.x 型態的金鑰 - 已跳過\n" -#: g10/export.c:2135 +#: g10/export.c:2254 #, c-format msgid "WARNING: nothing exported\n" msgstr "警告: 沒有匯出任何東西\n" -#: g10/export.c:2432 g10/plaintext.c:153 g10/plaintext.c:162 +#: g10/export.c:2551 g10/plaintext.c:153 g10/plaintext.c:162 #: g10/plaintext.c:168 g10/plaintext.c:191 #, c-format msgid "error creating '%s': %s\n" @@ -2649,291 +2655,291 @@ msgid "using subkey %s instead of primary key %s\n" msgstr "使用子鑰 %s 來替換主鑰 %s\n" -#: g10/getkey.c:4446 g10/gpg.c:2137 +#: g10/getkey.c:4446 g10/gpg.c:2146 #, fuzzy, c-format #| msgid "invalid argument for option \"%.50s\"\n" msgid "valid values for option '%s':\n" msgstr "選項 \"%.50s\" 的引數無效\n" -#: g10/gpg.c:443 sm/gpgsm.c:212 +#: g10/gpg.c:444 sm/gpgsm.c:212 msgid "make a signature" msgstr "建立簽章" -#: g10/gpg.c:444 +#: g10/gpg.c:445 msgid "make a clear text signature" msgstr "建立明文簽章" -#: g10/gpg.c:446 sm/gpgsm.c:214 +#: g10/gpg.c:447 sm/gpgsm.c:214 msgid "make a detached signature" msgstr "建立分離式簽章" -#: g10/gpg.c:447 sm/gpgsm.c:215 +#: g10/gpg.c:448 sm/gpgsm.c:215 msgid "encrypt data" msgstr "加密資料" -#: g10/gpg.c:449 +#: g10/gpg.c:450 msgid "encryption only with symmetric cipher" msgstr "僅使用對稱式編密法來加密" -#: g10/gpg.c:451 sm/gpgsm.c:217 +#: g10/gpg.c:452 sm/gpgsm.c:217 msgid "decrypt data (default)" msgstr "資料解密 (預設)" -#: g10/gpg.c:453 sm/gpgsm.c:218 +#: g10/gpg.c:454 sm/gpgsm.c:218 msgid "verify a signature" msgstr "驗證簽章" -#: g10/gpg.c:455 sm/gpgsm.c:219 +#: g10/gpg.c:456 sm/gpgsm.c:219 msgid "list keys" msgstr "列出金鑰" -#: g10/gpg.c:457 +#: g10/gpg.c:458 msgid "list keys and signatures" msgstr "列出金鑰和簽章" -#: g10/gpg.c:460 +#: g10/gpg.c:461 msgid "list and check key signatures" msgstr "列出並檢查金鑰簽章" -#: g10/gpg.c:462 sm/gpgsm.c:224 +#: g10/gpg.c:463 sm/gpgsm.c:224 msgid "list keys and fingerprints" msgstr "列出金鑰和指紋" -#: g10/gpg.c:463 sm/gpgsm.c:222 +#: g10/gpg.c:464 sm/gpgsm.c:222 msgid "list secret keys" msgstr "列出私鑰" -#: g10/gpg.c:465 sm/gpgsm.c:225 +#: g10/gpg.c:466 sm/gpgsm.c:225 msgid "generate a new key pair" msgstr "產生新的金鑰對" -#: g10/gpg.c:468 +#: g10/gpg.c:469 msgid "quickly generate a new key pair" msgstr "快速產生新的金鑰對" -#: g10/gpg.c:471 +#: g10/gpg.c:472 #, fuzzy #| msgid "quickly generate a new key pair" msgid "quickly add a new user-id" msgstr "快速產生新的金鑰對" -#: g10/gpg.c:476 +#: g10/gpg.c:477 #, fuzzy #| msgid "quickly generate a new key pair" msgid "quickly revoke a user-id" msgstr "快速產生新的金鑰對" -#: g10/gpg.c:479 +#: g10/gpg.c:480 #, fuzzy #| msgid "quickly generate a new key pair" msgid "quickly set a new expiration date" msgstr "快速產生新的金鑰對" -#: g10/gpg.c:482 +#: g10/gpg.c:483 msgid "full featured key pair generation" msgstr "全能金鑰對生成" -#: g10/gpg.c:485 +#: g10/gpg.c:486 msgid "generate a revocation certificate" msgstr "產生撤銷憑證" -#: g10/gpg.c:488 sm/gpgsm.c:228 +#: g10/gpg.c:489 sm/gpgsm.c:228 msgid "remove keys from the public keyring" msgstr "從公鑰鑰匙圈裡移除金鑰" -#: g10/gpg.c:490 +#: g10/gpg.c:491 msgid "remove keys from the secret keyring" msgstr "從私鑰鑰匙圈裡移除金鑰" -#: g10/gpg.c:492 +#: g10/gpg.c:493 msgid "quickly sign a key" msgstr "快速簽署金鑰" -#: g10/gpg.c:494 +#: g10/gpg.c:495 msgid "quickly sign a key locally" msgstr "快速在本機簽署金鑰" -#: g10/gpg.c:496 +#: g10/gpg.c:497 #, fuzzy #| msgid "quickly generate a new key pair" msgid "quickly revoke a key signature" msgstr "快速產生新的金鑰對" -#: g10/gpg.c:497 +#: g10/gpg.c:498 msgid "sign a key" msgstr "簽署金鑰" -#: g10/gpg.c:498 +#: g10/gpg.c:499 msgid "sign a key locally" msgstr "僅在本機簽署金鑰" -#: g10/gpg.c:499 +#: g10/gpg.c:500 msgid "sign or edit a key" msgstr "簽署或編輯金鑰" -#: g10/gpg.c:501 sm/gpgsm.c:246 +#: g10/gpg.c:502 sm/gpgsm.c:246 msgid "change a passphrase" msgstr "更改密語" -#: g10/gpg.c:505 +#: g10/gpg.c:506 msgid "export keys" msgstr "匯出金鑰" -#: g10/gpg.c:506 +#: g10/gpg.c:507 msgid "export keys to a keyserver" msgstr "把金鑰匯出至金鑰伺服器" -#: g10/gpg.c:507 +#: g10/gpg.c:508 msgid "import keys from a keyserver" msgstr "從金鑰伺服器匯入金鑰" -#: g10/gpg.c:510 +#: g10/gpg.c:511 msgid "search for keys on a keyserver" msgstr "在金鑰伺服器上搜尋金鑰" -#: g10/gpg.c:512 +#: g10/gpg.c:513 msgid "update all keys from a keyserver" msgstr "從金鑰伺服器更新所有的金鑰" -#: g10/gpg.c:520 +#: g10/gpg.c:521 msgid "import/merge keys" msgstr "匯入/合併金鑰" -#: g10/gpg.c:523 +#: g10/gpg.c:524 msgid "print the card status" msgstr "列印卡片狀態" -#: g10/gpg.c:524 +#: g10/gpg.c:525 msgid "change data on a card" msgstr "變更卡片上的資料" -#: g10/gpg.c:526 +#: g10/gpg.c:527 msgid "change a card's PIN" msgstr "變更卡片的個人識別碼 (PIN)" -#: g10/gpg.c:538 +#: g10/gpg.c:539 msgid "update the trust database" msgstr "更新信任資料庫" -#: g10/gpg.c:548 +#: g10/gpg.c:549 msgid "print message digests" msgstr "印出訊息摘要" -#: g10/gpg.c:552 sm/gpgsm.c:241 +#: g10/gpg.c:553 sm/gpgsm.c:241 msgid "run in server mode" msgstr "以伺服器模式執行" -#: g10/gpg.c:554 +#: g10/gpg.c:555 msgid "|VALUE|set the TOFU policy for a key" msgstr "" -#: g10/gpg.c:594 +#: g10/gpg.c:595 msgid "|NAME|use NAME as default secret key" msgstr "|名字|使用指定名字做為預設私鑰" -#: g10/gpg.c:596 sm/gpgsm.c:332 +#: g10/gpg.c:597 sm/gpgsm.c:332 msgid "|NAME|encrypt to user ID NAME as well" msgstr "|名字|也加密給指定名字的使用者 ID" -#: g10/gpg.c:604 +#: g10/gpg.c:605 msgid "|SPEC|set up email aliases" msgstr "|SPEC|設定電子郵件別名" -#: g10/gpg.c:616 +#: g10/gpg.c:617 msgid "use strict OpenPGP behavior" msgstr "使用嚴謹的 OpenPGP 行為" -#: g10/gpg.c:641 kbx/kbxutil.c:90 sm/gpgsm.c:412 tools/gpgconf.c:112 +#: g10/gpg.c:642 kbx/kbxutil.c:90 sm/gpgsm.c:412 tools/gpgconf.c:112 msgid "do not make any changes" msgstr "不要做任何改變" -#: g10/gpg.c:642 +#: g10/gpg.c:643 msgid "prompt before overwriting" msgstr "覆寫前先詢問" -#: g10/gpg.c:689 sm/gpgsm.c:304 +#: g10/gpg.c:690 sm/gpgsm.c:304 #, fuzzy #| msgid "Options controlling the security" msgid "Options controlling the input" msgstr "控制著安全性的選項" -#: g10/gpg.c:707 sm/gpgsm.c:314 +#: g10/gpg.c:708 sm/gpgsm.c:314 #, fuzzy #| msgid "Options controlling the diagnostic output" msgid "Options controlling the output" msgstr "控制著診斷性輸出的選項" -#: g10/gpg.c:709 sm/gpgsm.c:316 +#: g10/gpg.c:710 sm/gpgsm.c:316 msgid "create ascii armored output" msgstr "建立以 ASCII 封裝過的輸出" -#: g10/gpg.c:713 g10/gpgv.c:82 sm/gpgsm.c:321 +#: g10/gpg.c:714 g10/gpgv.c:82 sm/gpgsm.c:321 msgid "|FILE|write output to FILE" msgstr "|檔案|將輸出寫入至指定檔案" -#: g10/gpg.c:726 +#: g10/gpg.c:727 msgid "use canonical text mode" msgstr "使用標準的文字模式" -#: g10/gpg.c:743 +#: g10/gpg.c:744 msgid "|N|set compress level to N (0 disables)" msgstr "|N|設定壓縮等級為 N (0 表示不壓縮)" -#: g10/gpg.c:750 sm/gpgsm.c:347 +#: g10/gpg.c:751 sm/gpgsm.c:347 #, fuzzy #| msgid "Options controlling the interactivity and enforcement" msgid "Options controlling key import and export" msgstr "控制著互動及強制執行的選項" -#: g10/gpg.c:753 +#: g10/gpg.c:754 msgid "|MECHANISMS|use MECHANISMS to locate keys by mail address" msgstr "|MECHANISMS|使用 MECHANISMS 機制來從郵件地址找出金鑰" -#: g10/gpg.c:756 +#: g10/gpg.c:757 #, fuzzy #| msgid "import keys from a keyserver" msgid "import missing key from a signature" msgstr "從金鑰伺服器匯入金鑰" -#: g10/gpg.c:761 +#: g10/gpg.c:762 #, fuzzy #| msgid "list and check key signatures" msgid "include the public key in signatures" msgstr "列出並檢查金鑰簽章" -#: g10/gpg.c:764 sm/gpgsm.c:350 +#: g10/gpg.c:765 sm/gpgsm.c:350 msgid "disable all access to the dirmngr" msgstr "停用所有的 dirmngr 存取" -#: g10/gpg.c:776 sm/gpgsm.c:357 +#: g10/gpg.c:777 sm/gpgsm.c:357 #, fuzzy #| msgid "Options controlling the configuration" msgid "Options controlling key listings" msgstr "控制著組態的選項" -#: g10/gpg.c:805 sm/gpgsm.c:324 +#: g10/gpg.c:806 sm/gpgsm.c:324 #, fuzzy #| msgid "list secret keys" msgid "Options to specify keys" msgstr "列出私鑰" -#: g10/gpg.c:807 sm/gpgsm.c:326 +#: g10/gpg.c:808 sm/gpgsm.c:326 msgid "|USER-ID|encrypt for USER-ID" msgstr "|使用者-ID|以指定使用者 ID 作為加密對象" -#: g10/gpg.c:815 sm/gpgsm.c:328 +#: g10/gpg.c:816 sm/gpgsm.c:328 msgid "|USER-ID|use USER-ID to sign or decrypt" msgstr "|使用者-ID|拿指定使用者 ID 來簽署或解密" -#: g10/gpg.c:866 sm/gpgsm.c:396 +#: g10/gpg.c:867 sm/gpgsm.c:396 msgid "Options for unattended use" msgstr "" -#: g10/gpg.c:885 sm/gpgsm.c:408 dirmngr/dirmngr.c:294 +#: g10/gpg.c:886 sm/gpgsm.c:408 dirmngr/dirmngr.c:294 msgid "Other options" msgstr "" -#: g10/gpg.c:953 sm/gpgsm.c:440 +#: g10/gpg.c:955 sm/gpgsm.c:440 msgid "" "@\n" "(See the man page for a complete listing of all commands and options)\n" @@ -2941,7 +2947,7 @@ "@\n" "(請參照線上說明頁面來取得所有命令和選項的完整清單)\n" -#: g10/gpg.c:956 +#: g10/gpg.c:958 #, fuzzy #| msgid "" #| "@\n" @@ -2971,11 +2977,11 @@ " --list-keys [名字] 顯示金鑰\n" " --fingerprint [名字] 顯示指紋\n" -#: g10/gpg.c:1130 +#: g10/gpg.c:1139 msgid "Usage: @GPG@ [options] [files] (-h for help)" msgstr "用法: @GPG@ [選項] [檔案] (或用 -h 求助)" -#: g10/gpg.c:1133 +#: g10/gpg.c:1142 msgid "" "Syntax: @GPG@ [options] [files]\n" "Sign, check, encrypt or decrypt\n" @@ -2985,7 +2991,7 @@ "簽署, 檢查, 加密, 解密\n" "預設的操作會依輸入資料而定\n" -#: g10/gpg.c:1144 sm/gpgsm.c:624 +#: g10/gpg.c:1153 sm/gpgsm.c:624 msgid "" "\n" "Supported algorithms:\n" @@ -2993,546 +2999,546 @@ "\n" "已支援的演算法:\n" -#: g10/gpg.c:1147 +#: g10/gpg.c:1156 msgid "Pubkey: " msgstr "公鑰: " -#: g10/gpg.c:1154 g10/keyedit.c:3338 +#: g10/gpg.c:1163 g10/keyedit.c:3338 msgid "Cipher: " msgstr "編密法: " -#: g10/gpg.c:1161 +#: g10/gpg.c:1170 msgid "Hash: " msgstr "雜湊: " -#: g10/gpg.c:1168 g10/keyedit.c:3404 +#: g10/gpg.c:1177 g10/keyedit.c:3404 msgid "Compression: " msgstr "壓縮: " -#: g10/gpg.c:1241 sm/gpgsm.c:698 +#: g10/gpg.c:1250 sm/gpgsm.c:698 #, c-format msgid "usage: %s [options] %s\n" msgstr "用法: %s [選項] %s\n" -#: g10/gpg.c:1436 sm/gpgsm.c:791 +#: g10/gpg.c:1445 sm/gpgsm.c:791 #, c-format msgid "conflicting commands\n" msgstr "指令彼此矛盾\n" -#: g10/gpg.c:1454 +#: g10/gpg.c:1463 #, c-format msgid "no = sign found in group definition '%s'\n" msgstr "在群組定義 '%s' 裡找不到 = 記號\n" -#: g10/gpg.c:1652 +#: g10/gpg.c:1661 #, c-format msgid "WARNING: unsafe ownership on homedir '%s'\n" msgstr "警告: 家目錄 '%s' 的所有權並不安全\n" -#: g10/gpg.c:1655 +#: g10/gpg.c:1664 #, c-format msgid "WARNING: unsafe ownership on configuration file '%s'\n" msgstr "警告: 組態檔案 '%s' 的所有權並不安全\n" -#: g10/gpg.c:1658 +#: g10/gpg.c:1667 #, c-format msgid "WARNING: unsafe ownership on extension '%s'\n" msgstr "警告: 延伸模組 '%s' 的所有權並不安全\n" -#: g10/gpg.c:1664 +#: g10/gpg.c:1673 #, c-format msgid "WARNING: unsafe permissions on homedir '%s'\n" msgstr "警告: 家目錄 '%s' 的權限並不安全\n" -#: g10/gpg.c:1667 +#: g10/gpg.c:1676 #, c-format msgid "WARNING: unsafe permissions on configuration file '%s'\n" msgstr "警告: 組態檔案 '%s' 的權限並不安全\n" -#: g10/gpg.c:1670 +#: g10/gpg.c:1679 #, c-format msgid "WARNING: unsafe permissions on extension '%s'\n" msgstr "警告: 延伸模組 '%s' 的權限並不安全\n" -#: g10/gpg.c:1676 +#: g10/gpg.c:1685 #, c-format msgid "WARNING: unsafe enclosing directory ownership on homedir '%s'\n" msgstr "警告: 家目錄 '%s' 的封入目錄所有權並不安全\n" -#: g10/gpg.c:1679 +#: g10/gpg.c:1688 #, c-format msgid "" "WARNING: unsafe enclosing directory ownership on configuration file '%s'\n" msgstr "警告: 組態檔案 '%s' 的封入目錄所有權並不安全\n" -#: g10/gpg.c:1682 +#: g10/gpg.c:1691 #, c-format msgid "WARNING: unsafe enclosing directory ownership on extension '%s'\n" msgstr "警告: 延伸模組 '%s' 的封入目錄所有權並不安全\n" -#: g10/gpg.c:1688 +#: g10/gpg.c:1697 #, c-format msgid "WARNING: unsafe enclosing directory permissions on homedir '%s'\n" msgstr "警告: 家目錄 '%s' 的封入目錄權限並不安全\n" -#: g10/gpg.c:1691 +#: g10/gpg.c:1700 #, c-format msgid "" "WARNING: unsafe enclosing directory permissions on configuration file '%s'\n" msgstr "警告: 組態檔案 '%s' 的封入目錄權限並不安全\n" -#: g10/gpg.c:1694 +#: g10/gpg.c:1703 #, c-format msgid "WARNING: unsafe enclosing directory permissions on extension '%s'\n" msgstr "警告: 延伸模組 '%s' 的封入目錄權限並不安全\n" -#: g10/gpg.c:1910 +#: g10/gpg.c:1919 #, c-format msgid "unknown configuration item '%s'\n" msgstr "未知的組態項目 '%s'\n" -#: g10/gpg.c:2009 +#: g10/gpg.c:2018 msgid "display photo IDs during key listings" msgstr "列出金鑰時顯示照片 ID" -#: g10/gpg.c:2011 +#: g10/gpg.c:2020 msgid "show key usage information during key listings" msgstr "列出金鑰時顯示金鑰用途資訊" -#: g10/gpg.c:2013 +#: g10/gpg.c:2022 msgid "show policy URLs during signature listings" msgstr "列出簽章時顯示原則 URL" -#: g10/gpg.c:2015 +#: g10/gpg.c:2024 msgid "show all notations during signature listings" msgstr "列出簽章時顯示所有的註記" -#: g10/gpg.c:2017 +#: g10/gpg.c:2026 msgid "show IETF standard notations during signature listings" msgstr "列出簽章時顯示 IETF 標準註記" -#: g10/gpg.c:2021 +#: g10/gpg.c:2030 msgid "show user-supplied notations during signature listings" msgstr "列出簽章時顯示使用者提供的註記" -#: g10/gpg.c:2023 +#: g10/gpg.c:2032 msgid "show preferred keyserver URLs during signature listings" msgstr "列出簽章時顯示偏好的金鑰伺服器 URL" -#: g10/gpg.c:2025 +#: g10/gpg.c:2034 msgid "show user ID validity during key listings" msgstr "列出金鑰時顯示使用者 ID 有效性" -#: g10/gpg.c:2027 +#: g10/gpg.c:2036 msgid "show revoked and expired user IDs in key listings" msgstr "列出金鑰時顯示已撤銷或過期的使用者 ID" -#: g10/gpg.c:2029 +#: g10/gpg.c:2038 msgid "show revoked and expired subkeys in key listings" msgstr "列出金鑰時顯示已撤銷或過期的子鑰" -#: g10/gpg.c:2031 +#: g10/gpg.c:2040 msgid "show the keyring name in key listings" msgstr "在金鑰清單中顯示鑰匙圈名稱" -#: g10/gpg.c:2033 +#: g10/gpg.c:2042 msgid "show expiration dates during signature listings" msgstr "列出簽章時顯示有效期限" -#: g10/gpg.c:2148 +#: g10/gpg.c:2157 #, fuzzy, c-format #| msgid "unknown option '%s'\n" msgid "unknown TOFU policy '%s'\n" msgstr "未知的選項 '%s'\n" -#: g10/gpg.c:2150 +#: g10/gpg.c:2159 #, c-format msgid "(use \"help\" to list choices)\n" msgstr "" -#: g10/gpg.c:2240 g10/keyedit.c:1719 +#: g10/gpg.c:2249 g10/keyedit.c:1719 #, c-format msgid "This command is not allowed while in %s mode.\n" msgstr "在 %s 模式中不允許使用這個指令.\n" -#: g10/gpg.c:2878 g10/gpg.c:3718 g10/gpg.c:3730 +#: g10/gpg.c:2896 g10/gpg.c:3736 g10/gpg.c:3748 #, c-format msgid "Note: %s is not for normal use!\n" msgstr "請注意: 一般情況下不採用 %s!\n" -#: g10/gpg.c:3053 g10/gpg.c:3065 +#: g10/gpg.c:3071 g10/gpg.c:3083 #, c-format msgid "'%s' is not a valid signature expiration\n" msgstr "'%s' 不是有效的簽章使用期限\n" -#: g10/gpg.c:3087 +#: g10/gpg.c:3105 #, fuzzy, c-format #| msgid "line %d: not a valid email address\n" msgid "\"%s\" is not a proper mail address\n" msgstr "第 %d 列: 不是有效的電子郵件地址\n" -#: g10/gpg.c:3119 sm/gpgsm.c:1121 +#: g10/gpg.c:3137 sm/gpgsm.c:1121 #, c-format msgid "invalid pinentry mode '%s'\n" msgstr "無效的個人識別碼項目模式 '%s'\n" -#: g10/gpg.c:3125 sm/gpgsm.c:1127 +#: g10/gpg.c:3143 sm/gpgsm.c:1127 #, fuzzy, c-format #| msgid "invalid argument for option \"%.50s\"\n" msgid "invalid request origin '%s'\n" msgstr "選項 \"%.50s\" 的引數無效\n" -#: g10/gpg.c:3179 +#: g10/gpg.c:3197 #, c-format msgid "'%s' is not a valid character set\n" msgstr "'%s' 不是有效的字元集\n" -#: g10/gpg.c:3201 g10/gpg.c:3415 g10/keyedit.c:5338 +#: g10/gpg.c:3219 g10/gpg.c:3433 g10/keyedit.c:5338 #, c-format msgid "could not parse keyserver URL\n" msgstr "無法剖析金鑰伺服器 URL\n" -#: g10/gpg.c:3219 +#: g10/gpg.c:3237 #, c-format msgid "%s:%d: invalid keyserver options\n" msgstr "%s:%d: 無效的金鑰伺服器選項\n" -#: g10/gpg.c:3222 +#: g10/gpg.c:3240 #, c-format msgid "invalid keyserver options\n" msgstr "無效的金鑰伺服器選項\n" -#: g10/gpg.c:3229 +#: g10/gpg.c:3247 #, c-format msgid "%s:%d: invalid import options\n" msgstr "%s:%d: 無效的匯入選項\n" -#: g10/gpg.c:3232 +#: g10/gpg.c:3250 #, c-format msgid "invalid import options\n" msgstr "無效的匯入選項\n" -#: g10/gpg.c:3238 g10/gpg.c:3253 +#: g10/gpg.c:3256 g10/gpg.c:3271 #, fuzzy, c-format #| msgid "invalid list options\n" msgid "invalid filter option: %s\n" msgstr "無效的清單選項\n" -#: g10/gpg.c:3244 +#: g10/gpg.c:3262 #, c-format msgid "%s:%d: invalid export options\n" msgstr "%s:%d: 無效的匯出選項\n" -#: g10/gpg.c:3247 +#: g10/gpg.c:3265 #, c-format msgid "invalid export options\n" msgstr "無效的匯出選項\n" -#: g10/gpg.c:3259 +#: g10/gpg.c:3277 #, c-format msgid "%s:%d: invalid list options\n" msgstr "%s:%d: 無效的清單選項\n" -#: g10/gpg.c:3262 +#: g10/gpg.c:3280 #, c-format msgid "invalid list options\n" msgstr "無效的清單選項\n" -#: g10/gpg.c:3270 +#: g10/gpg.c:3288 msgid "display photo IDs during signature verification" msgstr "驗證簽章時顯示照片 ID" -#: g10/gpg.c:3272 +#: g10/gpg.c:3290 msgid "show policy URLs during signature verification" msgstr "驗證簽章時顯示原則 URL" -#: g10/gpg.c:3274 +#: g10/gpg.c:3292 msgid "show all notations during signature verification" msgstr "驗證簽章時顯示所有的註記" -#: g10/gpg.c:3276 +#: g10/gpg.c:3294 msgid "show IETF standard notations during signature verification" msgstr "驗證簽章時顯示 IETF 標準註記" -#: g10/gpg.c:3280 +#: g10/gpg.c:3298 msgid "show user-supplied notations during signature verification" msgstr "驗證簽章時顯示使用者提供的註記" -#: g10/gpg.c:3282 +#: g10/gpg.c:3300 msgid "show preferred keyserver URLs during signature verification" msgstr "驗證簽章時顯示偏好的金鑰伺服器 URL" -#: g10/gpg.c:3284 +#: g10/gpg.c:3302 msgid "show user ID validity during signature verification" msgstr "驗證簽章時顯示使用者 ID 有效性" -#: g10/gpg.c:3286 +#: g10/gpg.c:3304 msgid "show revoked and expired user IDs in signature verification" msgstr "驗證簽章時顯示已撤銷或過期的使用者 ID" -#: g10/gpg.c:3288 +#: g10/gpg.c:3306 msgid "show only the primary user ID in signature verification" msgstr "驗證簽章時祇顯示主要的使用者 ID" -#: g10/gpg.c:3290 +#: g10/gpg.c:3308 msgid "validate signatures with PKA data" msgstr "以 PKA 資料驗證簽章" -#: g10/gpg.c:3292 +#: g10/gpg.c:3310 msgid "elevate the trust of signatures with valid PKA data" msgstr "提高對持有有效 PKA 資料之簽章的信任" -#: g10/gpg.c:3299 +#: g10/gpg.c:3317 #, c-format msgid "%s:%d: invalid verify options\n" msgstr "%s:%d: 無效的驗證選項\n" -#: g10/gpg.c:3302 +#: g10/gpg.c:3320 #, c-format msgid "invalid verify options\n" msgstr "無效的驗證選項\n" -#: g10/gpg.c:3309 +#: g10/gpg.c:3327 #, c-format msgid "unable to set exec-path to %s\n" msgstr "無法把執行檔路徑設成 %s\n" -#: g10/gpg.c:3513 +#: g10/gpg.c:3531 #, c-format msgid "%s:%d: invalid auto-key-locate list\n" msgstr "%s:%d: 無效的自動金鑰定址清單\n" -#: g10/gpg.c:3516 +#: g10/gpg.c:3534 #, c-format msgid "invalid auto-key-locate list\n" msgstr "無效的自動金鑰定址清單\n" -#: g10/gpg.c:3700 sm/gpgsm.c:1492 +#: g10/gpg.c:3718 sm/gpgsm.c:1492 #, c-format msgid "WARNING: program may create a core file!\n" msgstr "警告: 程式可能會傾印出核心檔!\n" -#: g10/gpg.c:3711 +#: g10/gpg.c:3729 #, c-format msgid "WARNING: %s overrides %s\n" msgstr "警告: %s 會推翻 %s\n" -#: g10/gpg.c:3720 +#: g10/gpg.c:3738 #, c-format msgid "%s not allowed with %s!\n" msgstr "%s 不允許跟 %s 併用!\n" -#: g10/gpg.c:3723 +#: g10/gpg.c:3741 #, c-format msgid "%s makes no sense with %s!\n" msgstr "%s 跟 %s 放在一起沒有意義!\n" -#: g10/gpg.c:3738 sm/gpgsm.c:1509 dirmngr/dirmngr.c:1205 +#: g10/gpg.c:3756 sm/gpgsm.c:1509 dirmngr/dirmngr.c:1205 #, c-format msgid "WARNING: running with faked system time: " msgstr "警告: 正在偽造的系統時間中執行: " -#: g10/gpg.c:3759 +#: g10/gpg.c:3777 #, c-format msgid "will not run with insecure memory due to %s\n" msgstr "因為 %s 而不會在不安全的記憶體中執行\n" -#: g10/gpg.c:3804 g10/gpg.c:3828 sm/gpgsm.c:1579 +#: g10/gpg.c:3824 g10/gpg.c:3848 sm/gpgsm.c:1579 #, c-format msgid "selected cipher algorithm is invalid\n" msgstr "所選的編密演算法無效\n" -#: g10/gpg.c:3816 +#: g10/gpg.c:3836 #, c-format msgid "selected compression algorithm is invalid\n" msgstr "所選的壓縮演算法無效\n" -#: g10/gpg.c:3822 +#: g10/gpg.c:3842 #, c-format msgid "selected certification digest algorithm is invalid\n" msgstr "所選的憑證摘要演算法無效\n" -#: g10/gpg.c:3837 +#: g10/gpg.c:3857 #, c-format msgid "completes-needed must be greater than 0\n" msgstr "completes-needed 一定要大於 0\n" -#: g10/gpg.c:3839 +#: g10/gpg.c:3859 #, c-format msgid "marginals-needed must be greater than 1\n" msgstr "marginals-needed 一定要大於 1\n" -#: g10/gpg.c:3841 +#: g10/gpg.c:3861 #, c-format msgid "max-cert-depth must be in the range from 1 to 255\n" msgstr "max-cert-depth 一定要介於 1 和 255 之間\n" -#: g10/gpg.c:3843 +#: g10/gpg.c:3863 #, c-format 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:3845 +#: g10/gpg.c:3865 #, c-format msgid "invalid min-cert-level; must be 1, 2, or 3\n" msgstr "無效的 min-cert-level; 一定要是 1, 2 或 3\n" -#: g10/gpg.c:3849 +#: g10/gpg.c:3869 #, c-format msgid "Note: simple S2K mode (0) is strongly discouraged\n" msgstr "請注意: 強烈不建議使用單純 S2K 模式 (0)\n" -#: g10/gpg.c:3853 +#: g10/gpg.c:3873 #, c-format msgid "invalid S2K mode; must be 0, 1 or 3\n" msgstr "無效的 S2K 模式; 一定要是 0, 1 或 3\n" -#: g10/gpg.c:3860 +#: g10/gpg.c:3880 #, c-format msgid "invalid default preferences\n" msgstr "無效的預設偏好\n" -#: g10/gpg.c:3864 +#: g10/gpg.c:3884 #, c-format msgid "invalid personal cipher preferences\n" msgstr "無效的個人編密法偏好\n" -#: g10/gpg.c:3868 +#: g10/gpg.c:3888 #, c-format msgid "invalid personal digest preferences\n" msgstr "無效的個人摘要偏好\n" -#: g10/gpg.c:3872 +#: g10/gpg.c:3892 #, c-format msgid "invalid personal compress preferences\n" msgstr "無效的個人壓縮偏好\n" -#: g10/gpg.c:3908 +#: g10/gpg.c:3928 #, c-format msgid "%s does not yet work with %s\n" msgstr "%s 還沒辦法跟 %s 一起運作\n" -#: g10/gpg.c:3971 +#: g10/gpg.c:3991 #, fuzzy, c-format #| msgid "you may not use compression algorithm '%s' while in %s mode\n" msgid "compression algorithm '%s' may not be used in %s mode\n" msgstr "你不該將 '%s' 壓縮演算法用於 %s 模式\n" -#: g10/gpg.c:4115 +#: g10/gpg.c:4135 #, c-format msgid "failed to initialize the TrustDB: %s\n" msgstr "信任資料庫啟始失敗: %s\n" -#: g10/gpg.c:4127 +#: g10/gpg.c:4147 #, c-format msgid "WARNING: recipients (-r) given without using public key encryption\n" msgstr "警告: 給定的收件者 (-r) 未使用公鑰加密\n" -#: g10/gpg.c:4199 +#: g10/gpg.c:4219 #, c-format msgid "symmetric encryption of '%s' failed: %s\n" msgstr "'%s' 對稱式加密失敗: %s\n" -#: g10/gpg.c:4228 +#: g10/gpg.c:4248 #, c-format msgid "you cannot use --symmetric --encrypt with --s2k-mode 0\n" msgstr "你不能在 --s2k-mode 0 中使用 --symmetric --encrypt\n" -#: g10/gpg.c:4231 +#: g10/gpg.c:4251 #, fuzzy, c-format #| msgid "you cannot use --symmetric --encrypt while in %s mode\n" msgid "you cannot use --symmetric --encrypt in %s mode\n" msgstr "你不能在 %s 模式中使用 --symmetric --encrypt\n" -#: g10/gpg.c:4289 +#: g10/gpg.c:4309 #, c-format msgid "you cannot use --symmetric --sign --encrypt with --s2k-mode 0\n" msgstr "你不能在 --s2k-mode 0 中使用 --symmetric --sign --encrypt\n" -#: g10/gpg.c:4292 +#: g10/gpg.c:4312 #, fuzzy, c-format #| msgid "you cannot use --symmetric --sign --encrypt while in %s mode\n" msgid "you cannot use --symmetric --sign --encrypt in %s mode\n" msgstr "你不能在 %s 模式中使用 --symmetric --sign --encrypt\n" -#: g10/gpg.c:4692 g10/keyserver.c:1648 +#: g10/gpg.c:4712 g10/keyserver.c:1648 #, c-format msgid "keyserver send failed: %s\n" msgstr "送至金鑰伺服器失敗: %s\n" -#: g10/gpg.c:4697 +#: g10/gpg.c:4717 #, c-format msgid "keyserver receive failed: %s\n" msgstr "從金鑰伺服器接收失敗: %s\n" -#: g10/gpg.c:4703 +#: g10/gpg.c:4723 #, c-format msgid "key export failed: %s\n" msgstr "金鑰匯出失敗: %s\n" -#: g10/gpg.c:4716 +#: g10/gpg.c:4736 #, fuzzy, c-format #| msgid "key export failed: %s\n" msgid "export as ssh key failed: %s\n" msgstr "金鑰匯出失敗: %s\n" -#: g10/gpg.c:4728 +#: g10/gpg.c:4748 #, c-format msgid "keyserver search failed: %s\n" msgstr "用金鑰伺服器搜尋失敗: %s\n" -#: g10/gpg.c:4741 +#: g10/gpg.c:4761 #, c-format msgid "keyserver refresh failed: %s\n" msgstr "從金鑰伺服器更新失敗: %s\n" -#: g10/gpg.c:4810 +#: g10/gpg.c:4830 #, c-format msgid "dearmoring failed: %s\n" msgstr "解開封裝失敗: %s\n" -#: g10/gpg.c:4821 +#: g10/gpg.c:4841 #, c-format msgid "enarmoring failed: %s\n" msgstr "進行封裝失敗: %s\n" -#: g10/gpg.c:4913 +#: g10/gpg.c:4933 #, c-format msgid "invalid hash algorithm '%s'\n" msgstr "無效的雜湊演算法 '%s'\n" -#: g10/gpg.c:5065 g10/tofu.c:2153 +#: g10/gpg.c:5085 g10/tofu.c:2153 #, fuzzy, c-format #| msgid "error loading certificate '%s': %s\n" msgid "error parsing key specification '%s': %s\n" msgstr "載入憑證 '%s' 時出錯: %s\n" -#: g10/gpg.c:5078 +#: g10/gpg.c:5098 #, c-format msgid "'%s' does not appear to be a valid key ID, fingerprint or keygrip\n" msgstr "" -#: g10/gpg.c:5134 +#: g10/gpg.c:5154 #, c-format msgid "WARNING: no command supplied. Trying to guess what you mean ...\n" msgstr "" -#: g10/gpg.c:5145 +#: g10/gpg.c:5165 #, c-format msgid "Go ahead and type your message ...\n" msgstr "請開始輸入你的訊息 ...\n" -#: g10/gpg.c:5490 +#: g10/gpg.c:5510 #, c-format msgid "the given certification policy URL is invalid\n" msgstr "給定的的憑證原則 URL 無效\n" -#: g10/gpg.c:5492 +#: g10/gpg.c:5512 #, c-format msgid "the given signature policy URL is invalid\n" msgstr "給定的簽章原則 URL 無效\n" -#: g10/gpg.c:5525 +#: g10/gpg.c:5545 #, c-format msgid "the given preferred keyserver URL is invalid\n" msgstr "給定的偏好金鑰伺服器 URL 無效\n" @@ -3574,320 +3580,320 @@ msgid "No help available for '%s'" msgstr "'%s' 沒有可用的說明" -#: g10/import.c:169 +#: g10/import.c:170 msgid "import signatures that are marked as local-only" msgstr "匯入標記為僅限本機使用的簽章" -#: g10/import.c:172 +#: g10/import.c:173 msgid "repair damage from the pks keyserver during import" msgstr "匯入時修復來自 pks 金鑰伺服器的損壞" -#: g10/import.c:175 +#: g10/import.c:176 #, fuzzy #| msgid "do not update the trustdb after import" msgid "do not clear the ownertrust values during import" msgstr "匯入後不要更新信任資料庫" -#: g10/import.c:178 +#: g10/import.c:179 msgid "do not update the trustdb after import" msgstr "匯入後不要更新信任資料庫" -#: g10/import.c:181 +#: g10/import.c:182 #, fuzzy #| msgid "show key fingerprint" msgid "show key during import" msgstr "顯示金鑰指紋" -#: g10/import.c:184 +#: g10/import.c:185 msgid "only accept updates to existing keys" msgstr "祇接受既有金鑰的更新" -#: g10/import.c:187 +#: g10/import.c:188 msgid "remove unusable parts from key after import" msgstr "匯入後從金鑰中移除無法使用的部分" -#: g10/import.c:190 +#: g10/import.c:191 msgid "remove as much as possible from key after import" msgstr "匯入後盡可能地從金鑰中移除" -#: g10/import.c:193 +#: g10/import.c:194 msgid "ignore key-signatures which are not self-signatures" msgstr "" -#: g10/import.c:196 +#: g10/import.c:197 msgid "run import filters and export key immediately" msgstr "" -#: g10/import.c:199 +#: g10/import.c:200 #, fuzzy #| msgid "assume input is in binary format" msgid "assume the GnuPG key backup format" msgstr "假設輸入的是二進制格式" -#: g10/import.c:203 +#: g10/import.c:204 #, fuzzy #| msgid "show key fingerprint" msgid "repair keys on import" msgstr "顯示金鑰指紋" -#: g10/import.c:392 g10/import.c:711 +#: g10/import.c:393 g10/import.c:712 #, c-format msgid "skipping block of type %d\n" msgstr "正在跳過 %d 型態的區塊\n" -#: g10/import.c:728 +#: g10/import.c:729 #, c-format msgid "%lu keys processed so far\n" msgstr "目前已處理 %lu 把金鑰\n" -#: g10/import.c:814 +#: g10/import.c:815 #, c-format msgid "Total number processed: %lu\n" msgstr "處理總量: %lu\n" -#: g10/import.c:817 +#: g10/import.c:818 #, fuzzy, c-format #| msgid " skipped new keys: %lu\n" msgid " skipped PGP-2 keys: %lu\n" msgstr " 已跳過的新金鑰: %lu\n" -#: g10/import.c:819 +#: g10/import.c:820 #, c-format msgid " skipped new keys: %lu\n" msgstr " 已跳過的新金鑰: %lu\n" -#: g10/import.c:822 +#: g10/import.c:823 #, c-format msgid " w/o user IDs: %lu\n" msgstr " 沒有使用者的 ID: %lu\n" -#: g10/import.c:825 sm/import.c:130 +#: g10/import.c:826 sm/import.c:130 #, c-format msgid " imported: %lu" msgstr " 已匯入: %lu" -#: g10/import.c:829 sm/import.c:134 +#: g10/import.c:830 sm/import.c:134 #, c-format msgid " unchanged: %lu\n" msgstr " 未改變的: %lu\n" -#: g10/import.c:831 +#: g10/import.c:832 #, c-format msgid " new user IDs: %lu\n" msgstr " 新的使用者 ID: %lu\n" -#: g10/import.c:833 +#: g10/import.c:834 #, c-format msgid " new subkeys: %lu\n" msgstr " 新的子鑰: %lu\n" -#: g10/import.c:835 +#: g10/import.c:836 #, c-format msgid " new signatures: %lu\n" msgstr " 新的簽章: %lu\n" -#: g10/import.c:837 +#: g10/import.c:838 #, c-format msgid " new key revocations: %lu\n" msgstr " 新的金鑰撤銷: %lu\n" -#: g10/import.c:839 sm/import.c:136 +#: g10/import.c:840 sm/import.c:136 #, c-format msgid " secret keys read: %lu\n" msgstr " 已讀取的私鑰: %lu\n" -#: g10/import.c:841 sm/import.c:138 +#: g10/import.c:842 sm/import.c:138 #, c-format msgid " secret keys imported: %lu\n" msgstr " 已匯入的私鑰: %lu\n" -#: g10/import.c:843 sm/import.c:140 +#: g10/import.c:844 sm/import.c:140 #, c-format msgid " secret keys unchanged: %lu\n" msgstr " 未改變的私鑰: %lu\n" -#: g10/import.c:845 sm/import.c:142 +#: g10/import.c:846 sm/import.c:142 #, c-format msgid " not imported: %lu\n" msgstr " 未被匯入: %lu\n" -#: g10/import.c:847 +#: g10/import.c:848 #, c-format msgid " signatures cleaned: %lu\n" msgstr " 已清除的簽章: %lu\n" -#: g10/import.c:849 +#: g10/import.c:850 #, c-format msgid " user IDs cleaned: %lu\n" msgstr " 已清除的使用者 ID: %lu\n" -#: g10/import.c:1276 +#: g10/import.c:1277 #, c-format msgid "" "WARNING: key %s contains preferences for unavailable\n" "algorithms on these user IDs:\n" msgstr "警告: 金鑰 %s 的偏好設定含有這些使用者 ID 無法使用的演算法:\n" -#: g10/import.c:1318 +#: g10/import.c:1319 #, c-format msgid " \"%s\": preference for cipher algorithm %s\n" msgstr " \"%s\": 編密演算法 %s 的偏好設定\n" -#: g10/import.c:1333 +#: g10/import.c:1334 #, c-format msgid " \"%s\": preference for digest algorithm %s\n" msgstr " \"%s\": 摘要演算法 %s 的偏好設定\n" -#: g10/import.c:1345 +#: g10/import.c:1346 #, c-format msgid " \"%s\": preference for compression algorithm %s\n" msgstr " \"%s\": 壓縮演算法 %s 的偏好設定\n" -#: g10/import.c:1358 +#: g10/import.c:1359 #, c-format msgid "it is strongly suggested that you update your preferences and\n" msgstr "我們強烈建議你更新偏好設定, 並重新\n" -#: g10/import.c:1360 +#: g10/import.c:1361 #, c-format msgid "re-distribute this key to avoid potential algorithm mismatch problems\n" msgstr "散佈此金鑰, 以避免潛在的演算法不一致問題.\n" -#: g10/import.c:1385 +#: g10/import.c:1386 #, c-format msgid "you can update your preferences with: gpg --edit-key %s updpref save\n" msgstr "你可以像這樣來更新偏好設定: gpg --edit-key %s updpref save\n" -#: g10/import.c:1899 g10/import.c:3013 +#: g10/import.c:1902 g10/import.c:3028 #, c-format msgid "key %s: no user ID\n" msgstr "金鑰 %s: 沒有使用者 ID\n" -#: g10/import.c:1905 +#: g10/import.c:1908 #, c-format msgid "key %s: %s\n" msgstr "金鑰 %s: %s\n" -#: g10/import.c:1906 g10/import.c:2985 +#: g10/import.c:1909 g10/import.c:3000 msgid "rejected by import screener" msgstr "遭到匯入篩選程式駁回" -#: g10/import.c:1950 +#: g10/import.c:1953 #, c-format msgid "key %s: PKS subkey corruption repaired\n" msgstr "金鑰 %s: PKS 子鑰的訛誤已被修復\n" -#: g10/import.c:1971 +#: g10/import.c:1974 #, c-format msgid "key %s: accepted non self-signed user ID \"%s\"\n" msgstr "金鑰 %s: 已接受非自我簽署的使用者 ID \"%s\"\n" -#: g10/import.c:1981 g10/import.c:2012 +#: g10/import.c:1985 g10/import.c:2016 #, c-format msgid "key %s: no valid user IDs\n" msgstr "金鑰 %s: 沒有有效的使用者 ID\n" -#: g10/import.c:1983 +#: g10/import.c:1987 #, c-format msgid "this may be caused by a missing self-signature\n" msgstr "這可能肇因於遺失自我簽章所致\n" -#: g10/import.c:2062 g10/import.c:3399 +#: g10/import.c:2066 g10/import.c:3415 #, c-format msgid "key %s: public key not found: %s\n" msgstr "金鑰 %s: 找不到公鑰: %s\n" -#: g10/import.c:2068 +#: g10/import.c:2072 #, c-format msgid "key %s: new key - skipped\n" msgstr "金鑰 %s: 新的金鑰 - 已跳過\n" -#: g10/import.c:2080 +#: g10/import.c:2084 #, c-format msgid "no writable keyring found: %s\n" msgstr "找不到可寫入的鑰匙圈: %s\n" -#: g10/import.c:2112 g10/import.c:2214 g10/import.c:3476 +#: g10/import.c:2116 g10/import.c:2218 g10/import.c:3492 #, c-format msgid "error writing keyring '%s': %s\n" msgstr "寫入鑰匙圈 '%s' 時出錯: %s\n" -#: g10/import.c:2135 +#: g10/import.c:2139 #, c-format msgid "key %s: public key \"%s\" imported\n" msgstr "金鑰 %s: 公鑰 \"%s\" 已匯入\n" -#: g10/import.c:2162 +#: g10/import.c:2166 #, c-format msgid "key %s: doesn't match our copy\n" msgstr "金鑰 %s: 跟我們的副本不吻合\n" -#: g10/import.c:2230 +#: g10/import.c:2234 #, c-format msgid "key %s: \"%s\" 1 new user ID\n" msgstr "金鑰 %s: \"%s\" 1 個新的使用者 ID\n" -#: g10/import.c:2233 +#: g10/import.c:2237 #, c-format msgid "key %s: \"%s\" %d new user IDs\n" msgstr "金鑰 %s: \"%s\" %d 個新的使用者 ID\n" -#: g10/import.c:2236 +#: g10/import.c:2240 #, c-format msgid "key %s: \"%s\" 1 new signature\n" msgstr "金鑰 %s: \"%s\" 1 份新的簽章\n" -#: g10/import.c:2239 +#: g10/import.c:2243 #, c-format msgid "key %s: \"%s\" %d new signatures\n" msgstr "金鑰 %s: \"%s\" %d 份新的簽章\n" -#: g10/import.c:2242 +#: g10/import.c:2246 #, c-format msgid "key %s: \"%s\" 1 new subkey\n" msgstr "金鑰 %s: \"%s\" 1 把新的子鑰\n" -#: g10/import.c:2245 +#: g10/import.c:2249 #, c-format msgid "key %s: \"%s\" %d new subkeys\n" msgstr "金鑰 %s: \"%s\" %d 把新的子鑰\n" -#: g10/import.c:2248 +#: g10/import.c:2252 #, c-format msgid "key %s: \"%s\" %d signature cleaned\n" msgstr "金鑰 %s: \"%s\" 已清除 %d 份簽章\n" -#: g10/import.c:2251 +#: g10/import.c:2255 #, c-format msgid "key %s: \"%s\" %d signatures cleaned\n" msgstr "金鑰 %s: \"%s\" 已清除 %d 份簽章\n" -#: g10/import.c:2254 +#: g10/import.c:2258 #, c-format msgid "key %s: \"%s\" %d user ID cleaned\n" msgstr "金鑰 %s: \"%s\" 已清除 %d 個使用者 ID\n" -#: g10/import.c:2257 +#: g10/import.c:2261 #, c-format msgid "key %s: \"%s\" %d user IDs cleaned\n" msgstr "金鑰 %s: \"%s\" 已清除 %d 個使用者 ID\n" -#: g10/import.c:2293 +#: g10/import.c:2297 #, c-format msgid "key %s: \"%s\" not changed\n" msgstr "金鑰 %s: \"%s\" 未改變\n" -#: g10/import.c:2652 g10/import.c:2847 +#: g10/import.c:2667 g10/import.c:2862 #, c-format msgid "key %s: secret key imported\n" msgstr "金鑰 %s: 私鑰已匯入\n" -#: g10/import.c:2660 +#: g10/import.c:2675 #, c-format msgid "key %s: secret key already exists\n" msgstr "金鑰 %s: 私鑰已存在\n" -#: g10/import.c:2668 +#: g10/import.c:2683 #, c-format msgid "key %s: error sending to agent: %s\n" msgstr "金鑰 %s: 送至代理程式時出錯: %s\n" @@ -3900,142 +3906,142 @@ #. * Instead, user should be suggested to run 'gpg --card-status', #. * then, references to a card will be automatically created #. * again. -#: g10/import.c:2837 +#: g10/import.c:2852 #, c-format msgid "To migrate '%s', with each smartcard, run: %s\n" msgstr "" -#: g10/import.c:2984 +#: g10/import.c:2999 #, c-format msgid "secret key %s: %s\n" msgstr "私鑰 %s: %s\n" -#: g10/import.c:3005 g10/import.c:3044 +#: g10/import.c:3020 g10/import.c:3059 #, c-format msgid "importing secret keys not allowed\n" msgstr "未允許匯入私鑰\n" -#: g10/import.c:3032 +#: g10/import.c:3047 #, c-format msgid "key %s: secret key with invalid cipher %d - skipped\n" msgstr "金鑰 %s: 私鑰使用了無效的 %d 編密法 - 已跳過\n" -#: g10/import.c:3194 g10/pkclist.c:72 g10/revoke.c:776 +#: g10/import.c:3209 g10/pkclist.c:72 g10/revoke.c:776 msgid "No reason specified" msgstr "未指定原因" -#: g10/import.c:3195 g10/pkclist.c:74 g10/revoke.c:778 +#: g10/import.c:3210 g10/pkclist.c:74 g10/revoke.c:778 msgid "Key is superseded" msgstr "金鑰被代換了" -#: g10/import.c:3196 g10/pkclist.c:76 g10/revoke.c:777 +#: g10/import.c:3211 g10/pkclist.c:76 g10/revoke.c:777 msgid "Key has been compromised" msgstr "金鑰已經被洩漏了" -#: g10/import.c:3197 g10/pkclist.c:78 g10/revoke.c:779 +#: g10/import.c:3212 g10/pkclist.c:78 g10/revoke.c:779 msgid "Key is no longer used" msgstr "金鑰不再被使用了" -#: g10/import.c:3198 g10/pkclist.c:80 g10/revoke.c:780 +#: g10/import.c:3213 g10/pkclist.c:80 g10/revoke.c:780 msgid "User ID is no longer valid" msgstr "使用者 ID 不再有效了" -#: g10/import.c:3323 g10/keylist.c:1258 g10/pkclist.c:84 +#: g10/import.c:3338 g10/keylist.c:1258 g10/pkclist.c:84 #, c-format msgid "reason for revocation: " msgstr "撤銷原因: " -#: g10/import.c:3342 g10/keylist.c:1277 g10/pkclist.c:100 +#: g10/import.c:3357 g10/keylist.c:1277 g10/pkclist.c:100 #, c-format msgid "revocation comment: " msgstr "撤銷註釋: " -#: g10/import.c:3392 +#: g10/import.c:3408 #, c-format msgid "key %s: no public key - can't apply revocation certificate\n" msgstr "金鑰 %s: 沒有公鑰 - 無法套用撤銷憑證\n" -#: g10/import.c:3423 +#: g10/import.c:3439 #, c-format msgid "key %s: can't locate original keyblock: %s\n" msgstr "金鑰 %s: 無法定址原始的金鑰區塊: %s\n" -#: g10/import.c:3430 +#: g10/import.c:3446 #, c-format msgid "key %s: can't read original keyblock: %s\n" msgstr "金鑰 %s: 無法讀取原始的金鑰區塊: %s\n" -#: g10/import.c:3450 +#: g10/import.c:3466 #, c-format msgid "key %s: invalid revocation certificate: %s - rejected\n" msgstr "金鑰 %s: 無效的撤銷憑證: %s - 已駁回\n" -#: g10/import.c:3485 +#: g10/import.c:3501 #, c-format msgid "key %s: \"%s\" revocation certificate imported\n" msgstr "金鑰 %s: \"%s\" 撤銷憑證已匯入\n" -#: g10/import.c:3571 +#: g10/import.c:3587 #, c-format msgid "key %s: no user ID for signature\n" msgstr "金鑰 %s: 簽章沒有使用者 ID\n" -#: g10/import.c:3588 +#: g10/import.c:3604 #, c-format msgid "key %s: unsupported public key algorithm on user ID \"%s\"\n" msgstr "金鑰 %s: 使用者 ID \"%s\" 用了未支援的公鑰演算法\n" -#: g10/import.c:3590 +#: g10/import.c:3606 #, c-format msgid "key %s: invalid self-signature on user ID \"%s\"\n" msgstr "金鑰 %s: 使用者 ID \"%s\" 的自我簽章無效\n" -#: g10/import.c:3607 g10/import.c:3635 g10/import.c:3691 +#: g10/import.c:3623 g10/import.c:3651 g10/import.c:3707 #, c-format msgid "key %s: unsupported public key algorithm\n" msgstr "金鑰 %s: 未支援的公鑰演算法\n" -#: g10/import.c:3608 +#: g10/import.c:3624 #, c-format msgid "key %s: invalid direct key signature\n" msgstr "金鑰 %s: 無效的直接金鑰簽章\n" -#: g10/import.c:3622 +#: g10/import.c:3638 #, c-format msgid "key %s: no subkey for key binding\n" msgstr "金鑰 %s: 沒有可供附帶的子鑰\n" -#: g10/import.c:3637 +#: g10/import.c:3653 #, c-format msgid "key %s: invalid subkey binding\n" msgstr "金鑰 %s: 無效的附帶子鑰\n" -#: g10/import.c:3656 +#: g10/import.c:3672 #, c-format msgid "key %s: removed multiple subkey binding\n" msgstr "金鑰 %s: 多重附帶子鑰已移除\n" -#: g10/import.c:3680 +#: g10/import.c:3696 #, c-format msgid "key %s: no subkey for key revocation\n" msgstr "金鑰 %s: 沒有子鑰可供金鑰撤銷\n" -#: g10/import.c:3693 +#: g10/import.c:3709 #, c-format msgid "key %s: invalid subkey revocation\n" msgstr "金鑰 %s: 無效的子鑰撤銷\n" -#: g10/import.c:3708 +#: g10/import.c:3724 #, c-format msgid "key %s: removed multiple subkey revocation\n" msgstr "金鑰 %s: 多重子鑰撤銷已移除\n" -#: g10/import.c:3752 +#: g10/import.c:3771 #, c-format msgid "key %s: skipped user ID \"%s\"\n" msgstr "金鑰 %s: 使用者 ID \"%s\" 已跳過\n" -#: g10/import.c:3779 +#: g10/import.c:3798 #, c-format msgid "key %s: skipped subkey\n" msgstr "金鑰 %s: 子鑰已跳過\n" @@ -4044,52 +4050,52 @@ # * to import non-exportable signature when we have the # * the secret key used to create this signature - it # * seems that this makes sense -#: g10/import.c:3810 +#: g10/import.c:3829 #, c-format msgid "key %s: non exportable signature (class 0x%02X) - skipped\n" msgstr "金鑰 %s: 不可匯出的簽章 (等級 0x%02X) - 已跳過\n" -#: g10/import.c:3821 +#: g10/import.c:3840 #, c-format msgid "key %s: revocation certificate at wrong place - skipped\n" msgstr "金鑰 %s: 撤銷憑證在錯誤的地方 - 已跳過\n" -#: g10/import.c:3839 +#: g10/import.c:3868 #, c-format msgid "key %s: invalid revocation certificate: %s - skipped\n" msgstr "金鑰 %s: 無效的撤銷憑證: %s - 已跳過\n" -#: g10/import.c:3853 +#: g10/import.c:3892 #, c-format msgid "key %s: subkey signature in wrong place - skipped\n" msgstr "金鑰 %s: 子鑰簽章在錯誤的地方 - 已跳過\n" -#: g10/import.c:3861 +#: g10/import.c:3900 #, c-format msgid "key %s: unexpected signature class (0x%02X) - skipped\n" msgstr "金鑰 %s: 非預期的簽章等級 (0x%02X) - 已跳過\n" -#: g10/import.c:4034 +#: g10/import.c:4073 #, c-format msgid "key %s: duplicated user ID detected - merged\n" msgstr "金鑰 %s: 偵測到重複的使用者 ID - 已合併\n" -#: g10/import.c:4099 +#: g10/import.c:4138 #, c-format msgid "WARNING: key %s may be revoked: fetching revocation key %s\n" msgstr "警告: 金鑰 %s 可能被撤銷了: 正在取回撤銷金鑰 %s\n" -#: g10/import.c:4115 +#: g10/import.c:4154 #, c-format msgid "WARNING: key %s may be revoked: revocation key %s not present.\n" msgstr "警告: 金鑰 %s 可能被撤銷了: 撤銷金鑰 %s 未出現.\n" -#: g10/import.c:4181 +#: g10/import.c:4220 #, c-format msgid "key %s: \"%s\" revocation certificate added\n" msgstr "金鑰 %s: 已新增 \"%s\" 撤銷憑證\n" -#: g10/import.c:4219 +#: g10/import.c:4258 #, c-format msgid "key %s: direct key signature added\n" msgstr "金鑰 %s: 已新增直接金鑰簽章\n" @@ -4961,7 +4967,7 @@ msgid "You may not add a photo ID to a PGP2-style key.\n" msgstr "你不可以把照片 ID 增加到 PGP2 型態的金鑰裡.\n" -#: g10/keyedit.c:4293 g10/keygen.c:2899 +#: g10/keyedit.c:4293 g10/keygen.c:2953 msgid "Such a user ID already exists on this key!\n" msgstr "這把金鑰上已經有這樣子的使用者 ID 了!\n" @@ -5246,82 +5252,82 @@ msgid "Displaying %s photo ID of size %ld for key %s (uid %d)\n" msgstr "正在顯示 %s 照片 ID, 其尺寸為 %ld, 屬於金鑰 %s (uid %d) 的照片\n" -#: g10/keygen.c:169 +#: g10/keygen.c:174 #, fuzzy, c-format #| msgid "invalid argument for option \"%.50s\"\n" msgid "invalid value for option '%s'\n" msgstr "選項 \"%.50s\" 的引數無效\n" -#: g10/keygen.c:322 +#: g10/keygen.c:331 #, c-format msgid "preference '%s' duplicated\n" msgstr "偏好設定 '%s' 重複了\n" -#: g10/keygen.c:329 +#: g10/keygen.c:338 #, c-format msgid "too many cipher preferences\n" msgstr "編密偏好過多\n" -#: g10/keygen.c:331 +#: g10/keygen.c:340 #, c-format msgid "too many digest preferences\n" msgstr "摘要偏好過多\n" -#: g10/keygen.c:333 +#: g10/keygen.c:342 #, c-format msgid "too many compression preferences\n" msgstr "壓縮偏好過多\n" -#: g10/keygen.c:493 +#: g10/keygen.c:502 #, c-format msgid "invalid item '%s' in preference string\n" msgstr "偏好字串中含有無效的項目 '%s'\n" -#: g10/keygen.c:972 +#: g10/keygen.c:1020 #, c-format msgid "writing direct signature\n" msgstr "寫入直接簽章中\n" -#: g10/keygen.c:1018 +#: g10/keygen.c:1066 #, c-format msgid "writing self signature\n" msgstr "寫入自我簽章中\n" -#: g10/keygen.c:1075 +#: g10/keygen.c:1123 #, c-format msgid "writing key binding signature\n" msgstr "寫入附鑰簽章中\n" -#: g10/keygen.c:1440 g10/keygen.c:1445 g10/keygen.c:1497 g10/keygen.c:1502 -#: g10/keygen.c:1656 g10/keygen.c:1661 +#: g10/keygen.c:1494 g10/keygen.c:1499 g10/keygen.c:1551 g10/keygen.c:1556 +#: g10/keygen.c:1710 g10/keygen.c:1715 #, c-format msgid "keysize invalid; using %u bits\n" msgstr "金鑰尺寸無效; 改用 %u 位元\n" -#: g10/keygen.c:1451 g10/keygen.c:1508 g10/keygen.c:1516 g10/keygen.c:1667 +#: g10/keygen.c:1505 g10/keygen.c:1562 g10/keygen.c:1570 g10/keygen.c:1721 #, c-format msgid "keysize rounded up to %u bits\n" msgstr "金鑰尺寸增大到 %u 位元\n" -#: g10/keygen.c:1542 +#: g10/keygen.c:1596 #, c-format msgid "" "WARNING: some OpenPGP programs can't handle a DSA key with this digest size\n" msgstr "警告: 某些 OpenPGP 程式無法處理具有此摘要尺寸的 DSA 金鑰\n" -#: g10/keygen.c:1723 +#: g10/keygen.c:1777 msgid "Sign" msgstr "簽署" -#: g10/keygen.c:1726 +#: g10/keygen.c:1780 msgid "Certify" msgstr "保證" -#: g10/keygen.c:1729 +#: g10/keygen.c:1783 msgid "Encrypt" msgstr "加密" -#: g10/keygen.c:1732 +#: g10/keygen.c:1786 msgid "Authenticate" msgstr "鑑定" @@ -5335,162 +5341,162 @@ #. * a = Toggle authentication capability #. * q = Finish #. -#: g10/keygen.c:1753 +#: g10/keygen.c:1807 msgid "SsEeAaQq" msgstr "SsEeAaQq" -#: g10/keygen.c:1784 +#: g10/keygen.c:1838 #, c-format msgid "Possible actions for a %s key: " msgstr "%s 金鑰可能的動作: " -#: g10/keygen.c:1790 +#: g10/keygen.c:1844 msgid "Current allowed actions: " msgstr "目前可進行的動作: " -#: g10/keygen.c:1795 +#: g10/keygen.c:1849 #, c-format msgid " (%c) Toggle the sign capability\n" msgstr " (%c) 切換簽署性能\n" -#: g10/keygen.c:1798 +#: g10/keygen.c:1852 #, c-format msgid " (%c) Toggle the encrypt capability\n" msgstr " (%c) 切換加密性能\n" -#: g10/keygen.c:1801 +#: g10/keygen.c:1855 #, c-format msgid " (%c) Toggle the authenticate capability\n" msgstr " (%c) 切換鑑定性能\n" -#: g10/keygen.c:1804 +#: g10/keygen.c:1858 #, c-format msgid " (%c) Finished\n" msgstr " (%c) 已完成\n" -#: g10/keygen.c:1930 +#: g10/keygen.c:1984 #, c-format msgid " (%d) RSA and RSA (default)\n" msgstr " (%d) RSA 和 RSA (預設)\n" -#: g10/keygen.c:1934 +#: g10/keygen.c:1988 #, c-format msgid " (%d) DSA and Elgamal\n" msgstr " (%d) DSA 和 Elgamal\n" -#: g10/keygen.c:1937 +#: g10/keygen.c:1991 #, c-format msgid " (%d) DSA (sign only)\n" msgstr " (%d) DSA (僅能用於簽署)\n" -#: g10/keygen.c:1939 +#: g10/keygen.c:1993 #, c-format msgid " (%d) RSA (sign only)\n" msgstr " (%d) RSA (僅能用於簽署)\n" -#: g10/keygen.c:1945 +#: g10/keygen.c:1999 #, c-format msgid " (%d) Elgamal (encrypt only)\n" msgstr " (%d) Elgamal (僅能用於加密)\n" -#: g10/keygen.c:1947 +#: g10/keygen.c:2001 #, c-format msgid " (%d) RSA (encrypt only)\n" msgstr " (%d) RSA (僅能用於加密)\n" -#: g10/keygen.c:1953 +#: g10/keygen.c:2007 #, c-format msgid " (%d) DSA (set your own capabilities)\n" msgstr " (%d) DSA (你能自己設定性能)\n" -#: g10/keygen.c:1955 +#: g10/keygen.c:2009 #, c-format msgid " (%d) RSA (set your own capabilities)\n" msgstr " (%d) RSA (你能自己設定性能)\n" -#: g10/keygen.c:1961 +#: g10/keygen.c:2015 #, c-format msgid " (%d) ECC and ECC\n" msgstr " (%d) ECC 和 ECC\n" -#: g10/keygen.c:1963 +#: g10/keygen.c:2017 #, c-format msgid " (%d) ECC (sign only)\n" msgstr " (%d) ECC (僅能用於簽署)\n" -#: g10/keygen.c:1965 +#: g10/keygen.c:2019 #, c-format msgid " (%d) ECC (set your own capabilities)\n" msgstr " (%d) ECC (你能自己設定性能)\n" -#: g10/keygen.c:1967 +#: g10/keygen.c:2021 #, c-format msgid " (%d) ECC (encrypt only)\n" msgstr " (%d) ECC (僅能用於加密)\n" -#: g10/keygen.c:1971 +#: g10/keygen.c:2025 #, c-format msgid " (%d) Existing key\n" msgstr " (%d) 現有的金鑰\n" -#: g10/keygen.c:1973 +#: g10/keygen.c:2027 #, fuzzy, c-format #| msgid " (%d) Existing key from card\n" msgid " (%d) Existing key from card\n" msgstr " (%d) 卡片上現存的金鑰\n" -#: g10/keygen.c:2069 sm/certreqgen-ui.c:202 +#: g10/keygen.c:2123 sm/certreqgen-ui.c:202 msgid "Enter the keygrip: " msgstr "請輸入金鑰鑰柄: " -#: g10/keygen.c:2082 sm/certreqgen-ui.c:210 +#: g10/keygen.c:2136 sm/certreqgen-ui.c:210 msgid "Not a valid keygrip (expecting 40 hex digits)\n" msgstr "不是有效的金鑰鑰柄 (應該要是 40 位十六進制數值)\n" -#: g10/keygen.c:2084 sm/certreqgen-ui.c:212 +#: g10/keygen.c:2138 sm/certreqgen-ui.c:212 msgid "No key with this keygrip\n" msgstr "沒有金鑰有此金鑰鑰柄\n" -#: g10/keygen.c:2103 g10/keygen.c:2113 g10/keygen.c:3216 g10/keygen.c:3227 +#: g10/keygen.c:2157 g10/keygen.c:2167 g10/keygen.c:3270 g10/keygen.c:3281 #: sm/certreqgen-ui.c:230 sm/certreqgen-ui.c:239 #, c-format msgid "error reading the card: %s\n" msgstr "讀取卡片時出錯: %s\n" -#: g10/keygen.c:2107 g10/keygen.c:3220 sm/certreqgen-ui.c:233 +#: g10/keygen.c:2161 g10/keygen.c:3274 sm/certreqgen-ui.c:233 #, c-format msgid "Serial number of the card: %s\n" msgstr "卡片序號: %s\n" -#: g10/keygen.c:2120 sm/certreqgen-ui.c:245 +#: g10/keygen.c:2174 sm/certreqgen-ui.c:245 msgid "Available keys:\n" msgstr "可用金鑰:\n" -#: g10/keygen.c:2297 g10/keygen.c:2311 +#: g10/keygen.c:2351 g10/keygen.c:2365 #, c-format msgid "rounded to %u bits\n" msgstr "加大到 %u 位元\n" -#: g10/keygen.c:2352 +#: g10/keygen.c:2406 #, c-format msgid "%s keys may be between %u and %u bits long.\n" msgstr "%s 金鑰的長度可能介於 %u 位元和 %u 位元之間.\n" -#: g10/keygen.c:2360 +#: g10/keygen.c:2414 #, c-format msgid "What keysize do you want for the subkey? (%u) " msgstr "你的子鑰想要用多大的金鑰尺寸? (%u) " -#: g10/keygen.c:2377 sm/certreqgen-ui.c:189 +#: g10/keygen.c:2431 sm/certreqgen-ui.c:189 #, c-format msgid "Requested keysize is %u bits\n" msgstr "你所要求的金鑰尺寸是 %u 位元\n" -#: g10/keygen.c:2423 +#: g10/keygen.c:2477 msgid "Please select which elliptic curve you want:\n" msgstr "請選擇你要使用的橢圓曲線:\n" -#: g10/keygen.c:2611 +#: g10/keygen.c:2665 msgid "" "Please specify how long the key should be valid.\n" " 0 = key does not expire\n" @@ -5506,7 +5512,7 @@ " m = 金鑰在 n 月後會到期\n" " y = 金鑰在 n 年後會到期\n" -#: g10/keygen.c:2622 +#: g10/keygen.c:2676 msgid "" "Please specify how long the signature should be valid.\n" " 0 = signature does not expire\n" @@ -5522,38 +5528,38 @@ " m = 簽章在 n 月後會到期\n" " y = 簽章在 n 年後會到期\n" -#: g10/keygen.c:2645 +#: g10/keygen.c:2699 msgid "Key is valid for? (0) " msgstr "金鑰的有效期限是多久? (0) " -#: g10/keygen.c:2650 +#: g10/keygen.c:2704 #, c-format msgid "Signature is valid for? (%s) " msgstr "簽章的有效期限是多久? (%s) " -#: g10/keygen.c:2663 g10/keygen.c:2688 +#: g10/keygen.c:2717 g10/keygen.c:2742 msgid "invalid value\n" msgstr "無效的數值\n" -#: g10/keygen.c:2670 +#: g10/keygen.c:2724 msgid "Key does not expire at all\n" msgstr "金鑰完全不會過期\n" -#: g10/keygen.c:2671 +#: g10/keygen.c:2725 msgid "Signature does not expire at all\n" msgstr "簽章完全不會過期\n" -#: g10/keygen.c:2676 +#: g10/keygen.c:2730 #, c-format msgid "Key expires at %s\n" msgstr "金鑰將會在 %s 到期\n" -#: g10/keygen.c:2677 +#: g10/keygen.c:2731 #, c-format msgid "Signature expires at %s\n" msgstr "簽章將會在 %s 到期.\n" -#: g10/keygen.c:2681 +#: g10/keygen.c:2735 msgid "" "Your system can't display dates beyond 2038.\n" "However, it will be correctly handled up to 2106.\n" @@ -5561,11 +5567,11 @@ "你的系統無法顯示 2038 年以後的日期.\n" "不過, 它可以正確處理直到 2106 年之前的年份.\n" -#: g10/keygen.c:2694 +#: g10/keygen.c:2748 msgid "Is this correct? (y/N) " msgstr "以上正確嗎? (y/N) " -#: g10/keygen.c:2762 +#: g10/keygen.c:2816 msgid "" "\n" "GnuPG needs to construct a user ID to identify your key.\n" @@ -5579,7 +5585,7 @@ #. but you should keep your existing translation. In case #. the new string is not translated this old string will #. be used. -#: g10/keygen.c:2777 +#: g10/keygen.c:2831 msgid "" "\n" "You need a user ID to identify your key; the software constructs the user " @@ -5594,49 +5600,49 @@ " \"Ke-Huan Lin (Jedi) \"\n" "\n" -#: g10/keygen.c:2796 +#: g10/keygen.c:2850 msgid "Real name: " msgstr "真實姓名: " -#: g10/keygen.c:2805 +#: g10/keygen.c:2859 msgid "Invalid character in name\n" msgstr "姓名含有無效的字符\n" -#: g10/keygen.c:2806 +#: g10/keygen.c:2860 #, c-format msgid "The characters '%s' and '%s' may not appear in name\n" msgstr "" -#: g10/keygen.c:2810 +#: g10/keygen.c:2864 msgid "Name may not start with a digit\n" msgstr "姓名不可以用數字開頭\n" -#: g10/keygen.c:2813 +#: g10/keygen.c:2867 msgid "Name must be at least 5 characters long\n" msgstr "姓名至少要有五個字符長\n" -#: g10/keygen.c:2823 +#: g10/keygen.c:2877 msgid "Email address: " msgstr "電子郵件地址: " -#: g10/keygen.c:2829 +#: g10/keygen.c:2883 msgid "Not a valid email address\n" msgstr "不是有效的電子郵件地址\n" -#: g10/keygen.c:2838 +#: g10/keygen.c:2892 msgid "Comment: " msgstr "註釋: " -#: g10/keygen.c:2844 +#: g10/keygen.c:2898 msgid "Invalid character in comment\n" msgstr "註釋含有無效的字符\n" -#: g10/keygen.c:2880 +#: g10/keygen.c:2934 #, c-format msgid "You are using the '%s' character set.\n" msgstr "你正在使用 '%s' 字元集.\n" -#: g10/keygen.c:2886 +#: g10/keygen.c:2940 #, c-format msgid "" "You selected this USER-ID:\n" @@ -5647,7 +5653,7 @@ " \"%s\"\n" "\n" -#: g10/keygen.c:2891 +#: g10/keygen.c:2945 msgid "Please don't put the email address into the real name or the comment\n" msgstr "請不要把電子郵件地址放進你的真實姓名或註釋裡\n" @@ -5662,31 +5668,31 @@ #. o = Okay (ready, continue) #. q = Quit #. -#: g10/keygen.c:2916 +#: g10/keygen.c:2970 msgid "NnCcEeOoQq" msgstr "NnCcEeOoQq" -#: g10/keygen.c:2926 +#: g10/keygen.c:2980 msgid "Change (N)ame, (C)omment, (E)mail or (Q)uit? " msgstr "變更姓名(N), 註釋(C), 電子郵件地址(E)或退出(Q)? " -#: g10/keygen.c:2927 +#: g10/keygen.c:2981 msgid "Change (N)ame, (C)omment, (E)mail or (O)kay/(Q)uit? " msgstr "變更姓名(N), 註釋(C), 電子郵件地址(E)或確定(O)/退出(Q)? " -#: g10/keygen.c:2932 +#: g10/keygen.c:2986 msgid "Change (N)ame, (E)mail, or (Q)uit? " msgstr "變更姓名(N), 電子郵件地址(E)或退出(Q)? " -#: g10/keygen.c:2933 +#: g10/keygen.c:2987 msgid "Change (N)ame, (E)mail, or (O)kay/(Q)uit? " msgstr "變更姓名(N), 電子郵件地址(E)或確定(O)/退出(Q)? " -#: g10/keygen.c:2952 +#: g10/keygen.c:3006 msgid "Please correct the error first\n" msgstr "請先訂正錯誤\n" -#: g10/keygen.c:2998 +#: g10/keygen.c:3052 msgid "" "We need to generate a lot of random bytes. It is a good idea to perform\n" "some other action (type on the keyboard, move the mouse, utilize the\n" @@ -5697,13 +5703,13 @@ "(像是敲打鍵盤, 移動滑鼠, 讀寫硬碟之類的)\n" "這會讓隨機數字產生器有更多的機會獲得夠多的亂數.\n" -#: g10/keygen.c:4278 g10/keygen.c:4349 g10/keygen.c:4367 g10/keygen.c:4395 -#: g10/keygen.c:4739 g10/keygen.c:5239 g10/keygen.c:5534 g10/keygen.c:5639 +#: g10/keygen.c:4332 g10/keygen.c:4403 g10/keygen.c:4421 g10/keygen.c:4449 +#: g10/keygen.c:4793 g10/keygen.c:5293 g10/keygen.c:5588 g10/keygen.c:5693 #, c-format msgid "Key generation failed: %s\n" msgstr "產生金鑰失敗: %s\n" -#: g10/keygen.c:4287 +#: g10/keygen.c:4341 #, c-format msgid "" "About to create a key for:\n" @@ -5714,64 +5720,64 @@ " \"%s\"\n" "\n" -#: g10/keygen.c:4289 +#: g10/keygen.c:4343 msgid "Continue? (Y/n) " msgstr "是否繼續? (Y/n) " -#: g10/keygen.c:4310 +#: g10/keygen.c:4364 #, c-format msgid "A key for \"%s\" already exists\n" msgstr "\"%s\" 的金鑰已存在\n" -#: g10/keygen.c:4315 +#: g10/keygen.c:4369 msgid "Create anyway? (y/N) " msgstr "無論如何還是要建立嗎? (y/N) " -#: g10/keygen.c:4321 +#: g10/keygen.c:4375 #, c-format msgid "creating anyway\n" msgstr "總之還是在建立\n" -#: g10/keygen.c:4722 +#: g10/keygen.c:4776 #, c-format msgid "Note: Use \"%s %s\" for a full featured key generation dialog.\n" msgstr "請注意: 如需全能金鑰產生對話框請用 \"%s %s\".\n" -#: g10/keygen.c:4771 +#: g10/keygen.c:4825 #, c-format msgid "Key generation canceled.\n" msgstr "金鑰產生已取消.\n" -#: g10/keygen.c:4831 +#: g10/keygen.c:4885 #, c-format msgid "can't create backup file '%s': %s\n" msgstr "無法建立備份檔案 '%s': %s\n" -#: g10/keygen.c:4851 +#: g10/keygen.c:4905 #, c-format msgid "Note: backup of card key saved to '%s'\n" msgstr "請注意: 卡片金鑰的備份已儲存至 '%s'\n" -#: g10/keygen.c:5010 g10/keygen.c:5172 +#: g10/keygen.c:5064 g10/keygen.c:5226 #, c-format msgid "writing public key to '%s'\n" msgstr "正在寫入公鑰至 '%s'\n" -#: g10/keygen.c:5166 +#: g10/keygen.c:5220 #, c-format msgid "no writable public keyring found: %s\n" msgstr "找不到可寫入的公鑰鑰匙圈: %s\n" -#: g10/keygen.c:5180 +#: g10/keygen.c:5234 #, c-format msgid "error writing public keyring '%s': %s\n" msgstr "寫入公鑰鑰匙圈 '%s' 時出錯: %s\n" -#: g10/keygen.c:5210 +#: g10/keygen.c:5264 msgid "public and secret key created and signed.\n" msgstr "公鑰和私鑰已建立及簽署.\n" -#: g10/keygen.c:5226 +#: g10/keygen.c:5280 msgid "" "Note that this key cannot be used for encryption. You may want to use\n" "the command \"--edit-key\" to generate a subkey for this purpose.\n" @@ -5779,34 +5785,34 @@ "請注意這把金鑰不能用於加密. 也許你會想藉由 \"--edit-key\" 指令\n" "來產生加密用的子鑰.\n" -#: g10/keygen.c:5401 g10/keygen.c:5590 +#: g10/keygen.c:5455 g10/keygen.c:5644 #, c-format msgid "" "key has been created %lu second in future (time warp or clock problem)\n" msgstr "金鑰已經在 %lu 秒後的未來製妥 (可能是因為時光旅行或時鐘的問題)\n" -#: g10/keygen.c:5403 g10/keygen.c:5592 +#: g10/keygen.c:5457 g10/keygen.c:5646 #, c-format msgid "" "key has been created %lu seconds in future (time warp or clock problem)\n" msgstr "金鑰已經在 %lu 秒後的未來製妥 (可能是因為時光旅行或時鐘的問題)\n" -#: g10/keygen.c:5414 g10/keygen.c:5603 +#: g10/keygen.c:5468 g10/keygen.c:5657 #, c-format msgid "Note: creating subkeys for v3 keys is not OpenPGP compliant\n" msgstr "請注意: 對 v3 金鑰製造子鑰不符合 OpenPGP 規範\n" -#: g10/keygen.c:5426 g10/keygen.c:5428 +#: g10/keygen.c:5480 g10/keygen.c:5482 #, c-format msgid "Secret parts of primary key are not available.\n" msgstr "主鑰的私鑰部分無法取用.\n" -#: g10/keygen.c:5435 g10/keygen.c:5437 +#: g10/keygen.c:5489 g10/keygen.c:5491 #, c-format msgid "Secret parts of primary key are stored on-card.\n" msgstr "主鑰的私鑰部分存放於卡上.\n" -#: g10/keygen.c:5456 g10/keygen.c:5617 +#: g10/keygen.c:5510 g10/keygen.c:5671 msgid "Really create? (y/N) " msgstr "真的要建立嗎? (y/N) " @@ -6886,30 +6892,30 @@ msgid "data not saved; use option \"--output\" to save it\n" msgstr "資料未被儲存; 請用 \"--output\" 選項來儲存\n" -#: g10/plaintext.c:615 +#: g10/plaintext.c:620 msgid "Detached signature.\n" msgstr "分離的簽章.\n" -#: g10/plaintext.c:623 +#: g10/plaintext.c:628 msgid "Please enter name of data file: " msgstr "請輸入資料檔的名稱: " -#: g10/plaintext.c:660 +#: g10/plaintext.c:665 #, c-format msgid "reading stdin ...\n" msgstr "正在讀取標準輸入中 ...\n" -#: g10/plaintext.c:705 +#: g10/plaintext.c:710 #, c-format msgid "no signed data\n" msgstr "沒有被簽署過的資料\n" -#: g10/plaintext.c:723 +#: g10/plaintext.c:728 #, c-format msgid "can't open signed data '%s'\n" msgstr "無法開啟被簽署過的資料 '%s'\n" -#: g10/plaintext.c:758 +#: g10/plaintext.c:763 #, c-format msgid "can't open signed data fd=%d: %s\n" msgstr "無法開啟被簽署過的資料 fd=%d: %s\n" @@ -7905,7 +7911,7 @@ msgid "no need for a trustdb check\n" msgstr "不需要檢查信任資料庫\n" -#: g10/trustdb.c:631 g10/trustdb.c:2326 +#: g10/trustdb.c:631 g10/trustdb.c:2338 #, c-format msgid "next trustdb check due at %s\n" msgstr "下次信任資料庫檢查將於 %s 進行\n" @@ -7935,37 +7941,37 @@ msgid "checking the trustdb\n" msgstr "正在檢查信任資料庫\n" -#: g10/trustdb.c:2047 +#: g10/trustdb.c:2059 #, fuzzy, c-format #| msgid "%lu keys processed so far\n" msgid "%d key processed" msgid_plural "%d keys processed" msgstr[0] "目前已處理 %lu 把金鑰\n" -#: g10/trustdb.c:2050 +#: g10/trustdb.c:2062 #, fuzzy, c-format #| msgid "%d keys processed (%d validity counts cleared)\n" msgid " (%d validity count cleared)\n" msgid_plural " (%d validity counts cleared)\n" msgstr[0] "已經處理了 %d 把金鑰 (共計已解決了 %d 份有效性)\n" -#: g10/trustdb.c:2120 +#: g10/trustdb.c:2132 #, c-format msgid "no ultimately trusted keys found\n" msgstr "沒有找到任何徹底信任的金鑰\n" -#: g10/trustdb.c:2134 +#: g10/trustdb.c:2146 #, c-format msgid "public key of ultimately trusted key %s not found\n" msgstr "找不到徹底信任金鑰 %s 的公鑰\n" -#: g10/trustdb.c:2252 +#: g10/trustdb.c:2264 #, 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" -#: g10/trustdb.c:2333 +#: g10/trustdb.c:2345 #, c-format msgid "unable to update trustdb version record: write failed: %s\n" msgstr "無法更新信任資料庫版本記錄: 寫入失敗: %s\n" @@ -8088,83 +8094,89 @@ #. TRANSLATORS: Put a \x1f right before a colon. This can be #. * used by pinentry to nicely align the names and values. Keep #. * the %s at the start and end of the string. -#: scd/app-p15.c:5116 scd/app-openpgp.c:2154 +#: scd/app-p15.c:5145 scd/app-nks.c:1541 scd/app-openpgp.c:2154 #, c-format msgid "%sNumber: %s%%0AHolder: %s%s" msgstr "" #. TRANSLATORS: This is the number of remaining attempts to #. * enter a PIN. Use %%0A (double-percent,0A) for a linefeed. -#: scd/app-p15.c:5135 scd/app-openpgp.c:2170 +#: scd/app-p15.c:5164 scd/app-nks.c:1560 scd/app-openpgp.c:2170 #, c-format msgid "Remaining attempts: %d" msgstr "" -#: scd/app-p15.c:5214 scd/app-nks.c:1113 +#: scd/app-p15.c:5243 scd/app-nks.c:2112 msgid "||Please enter the PIN for the key to create qualified signatures." msgstr "||請輸入金鑰的個人識別碼 (PIN) 以建立完善的簽章." #. TRANSLATORS: Do not translate the "|A|" prefix but keep it at #. the start of the string. Use %0A (single percent) for a linefeed. -#: scd/app-p15.c:5217 scd/app-openpgp.c:2464 +#: scd/app-p15.c:5246 scd/app-openpgp.c:2465 msgid "|A|Please enter the Admin PIN" msgstr "|A|請輸入管理者 PIN" -#: scd/app-p15.c:5219 scd/app-nks.c:1103 +#: scd/app-p15.c:5248 scd/app-nks.c:2102 msgid "|P|Please enter the PIN Unblocking Code (PUK) for the standard keys." msgstr "|P|請輸入標準金鑰的 PIN 重設碼 (PUK)." -#: scd/app-p15.c:5222 scd/app-nks.c:1095 +#: scd/app-p15.c:5251 scd/app-nks.c:2093 msgid "||Please enter the PIN for the standard keys." msgstr "||請輸入標準金鑰的個人識別碼 (PIN)." -#: scd/app-nks.c:709 scd/app-openpgp.c:3666 +#: scd/app-nks.c:1479 scd/app-openpgp.c:3675 #, c-format msgid "RSA modulus missing or not of size %d bits\n" msgstr "RSA 模組缺漏或者並非 %d 位元大\n" -#: scd/app-nks.c:717 scd/app-openpgp.c:3678 +#: scd/app-nks.c:1487 scd/app-openpgp.c:3687 #, c-format msgid "RSA public exponent missing or larger than %d bits\n" msgstr "RSA 公用指數缺漏或者大於 %d 位元\n" -#: scd/app-nks.c:797 scd/app-openpgp.c:2327 scd/app-openpgp.c:2346 -#: scd/app-openpgp.c:2513 scd/app-openpgp.c:2531 scd/app-openpgp.c:2829 -#: scd/app-openpgp.c:2876 scd/app-openpgp.c:2991 scd/app-dinsig.c:302 +#: scd/app-nks.c:1660 +#, fuzzy +#| msgid "the NullPIN has not yet been changed\n" +msgid "Note: PIN has not yet been enabled." +msgstr "NullPIN 還沒有變更過\n" + +#: scd/app-nks.c:1671 scd/app-openpgp.c:2327 scd/app-openpgp.c:2346 +#: scd/app-openpgp.c:2515 scd/app-openpgp.c:2533 scd/app-openpgp.c:2832 +#: scd/app-openpgp.c:2879 scd/app-openpgp.c:3000 scd/app-dinsig.c:303 #, c-format msgid "PIN callback returned error: %s\n" msgstr "收回個人識別碼 (PIN) 時傳回錯誤: %s\n" -#: scd/app-nks.c:830 +#: scd/app-nks.c:1707 #, c-format msgid "the NullPIN has not yet been changed\n" msgstr "NullPIN 還沒有變更過\n" -#: scd/app-nks.c:1094 +#: scd/app-nks.c:2092 msgid "|N|Please enter a new PIN for the standard keys." msgstr "|N|請輸入標準金鑰將採用的新個人識別碼 (PIN)." -#: scd/app-nks.c:1101 +#: scd/app-nks.c:2100 msgid "|NP|Please enter a new PIN Unblocking Code (PUK) for the standard keys." msgstr "|NP|請輸入標準金鑰將採用的 PIN 重設碼 (PUK)." -#: scd/app-nks.c:1111 +#: scd/app-nks.c:2110 msgid "|N|Please enter a new PIN for the key to create qualified signatures." msgstr "|N|請輸入金鑰的新個人識別碼 (PIN) 以建立完善的簽章." -#: scd/app-nks.c:1121 +#: scd/app-nks.c:2120 msgid "" "|NP|Please enter a new PIN Unblocking Code (PUK) for the key to create " "qualified signatures." msgstr "|NP|請輸入金鑰的新 PIN 重設碼 (PUK) 以建立完善的簽章." -#: scd/app-nks.c:1123 +#: scd/app-nks.c:2122 msgid "" "|P|Please enter the PIN Unblocking Code (PUK) for the key to create " "qualified signatures." msgstr "|P|請輸入金鑰的 PIN 重設碼 (PUK) 以建立完善的簽章." -#: scd/app-nks.c:1230 scd/app-openpgp.c:2910 scd/app-dinsig.c:532 +#: scd/app-nks.c:2295 scd/app-openpgp.c:2913 scd/app-dinsig.c:535 #, c-format msgid "error getting new PIN: %s\n" msgstr "取得新的個人識別碼 (PIN) 時出錯: %s\n" @@ -8179,7 +8191,7 @@ msgid "failed to store the creation date: %s\n" msgstr "存放創生日期失敗: %s\n" -#: scd/app-openpgp.c:1271 scd/app-openpgp.c:2857 scd/app-openpgp.c:5041 +#: scd/app-openpgp.c:1271 scd/app-openpgp.c:2860 scd/app-openpgp.c:5051 #, c-format msgid "error retrieving CHV status from card\n" msgstr "從卡片取回 CHV 狀態時出錯\n" @@ -8200,7 +8212,7 @@ msgid "response does not contain the EC public key\n" msgstr "回應中未包含 EC 公用指數\n" -#: scd/app-openpgp.c:1664 scd/app-openpgp.c:4286 +#: scd/app-openpgp.c:1664 scd/app-openpgp.c:4295 #, c-format msgid "response does not contain the public key data\n" msgstr "回應中未包含公鑰資料\n" @@ -8234,23 +8246,23 @@ msgid "||Please unlock the card" msgstr "||請輸入個人識別碼 (PIN)" -#: scd/app-openpgp.c:2353 scd/app-openpgp.c:2538 scd/app-openpgp.c:2836 +#: scd/app-openpgp.c:2353 scd/app-openpgp.c:2540 scd/app-openpgp.c:2839 #, 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:2367 scd/app-openpgp.c:2414 scd/app-openpgp.c:2552 -#: scd/app-openpgp.c:4644 +#: scd/app-openpgp.c:2368 scd/app-openpgp.c:2415 scd/app-openpgp.c:2554 +#: scd/app-openpgp.c:4654 #, c-format msgid "verify CHV%d failed: %s\n" msgstr "驗證 CHV%d 失敗: %s\n" -#: scd/app-openpgp.c:2450 scd/app-openpgp.c:5050 +#: scd/app-openpgp.c:2451 scd/app-openpgp.c:5060 #, c-format msgid "card is permanently locked!\n" msgstr "卡片永久鎖定了!!\n" -#: scd/app-openpgp.c:2454 +#: scd/app-openpgp.c:2455 #, fuzzy, c-format #| msgid "%d Admin PIN attempts remaining before card is permanently locked\n" msgid "%d Admin PIN attempt remaining before card is permanently locked\n" @@ -8258,20 +8270,20 @@ "%d Admin PIN attempts remaining before card is permanently locked\n" msgstr[0] "%d 管理者個人識別碼 (PIN) 試圖在卡片永久鎖定前遺留下來\n" -#: scd/app-openpgp.c:2485 +#: scd/app-openpgp.c:2486 #, c-format msgid "access to admin commands is not configured\n" msgstr "管理者指令存取權限尚未組態\n" -#: scd/app-openpgp.c:2823 +#: scd/app-openpgp.c:2826 msgid "||Please enter the PIN" msgstr "||請輸入個人識別碼 (PIN)" -#: scd/app-openpgp.c:2872 +#: scd/app-openpgp.c:2875 msgid "||Please enter the Reset Code for the card" msgstr "||請輸入卡片的重設碼" -#: scd/app-openpgp.c:2882 scd/app-openpgp.c:2943 +#: scd/app-openpgp.c:2885 scd/app-openpgp.c:2946 #, c-format msgid "Reset Code is too short; minimum length is %d\n" msgstr "重設碼太短; 長度最少要有 %d\n" @@ -8279,133 +8291,133 @@ #. 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:2905 +#: scd/app-openpgp.c:2908 msgid "|RN|New Reset Code" msgstr "|RN|新增重設碼" -#: scd/app-openpgp.c:2906 +#: scd/app-openpgp.c:2909 msgid "|AN|New Admin PIN" msgstr "|AN|新增管理者個人識別碼 (PIN)" -#: scd/app-openpgp.c:2906 +#: scd/app-openpgp.c:2909 msgid "|N|New PIN" msgstr "|N|新增個人識別碼 (PIN)" -#: scd/app-openpgp.c:2987 +#: scd/app-openpgp.c:2996 msgid "||Please enter the Admin PIN and New Admin PIN" msgstr "||請輸入管理者 PIN 及新的管理者 PIN" -#: scd/app-openpgp.c:2988 +#: scd/app-openpgp.c:2997 msgid "||Please enter the PIN and New PIN" msgstr "||請輸入個人識別碼及新的個人識別碼 (PIN)" -#: scd/app-openpgp.c:3050 scd/app-openpgp.c:4346 +#: scd/app-openpgp.c:3059 scd/app-openpgp.c:4355 #, c-format msgid "error reading application data\n" msgstr "讀取應用程式資料時出錯\n" -#: scd/app-openpgp.c:3056 scd/app-openpgp.c:4353 +#: scd/app-openpgp.c:3065 scd/app-openpgp.c:4362 #, c-format msgid "error reading fingerprint DO\n" msgstr "讀取指紋 DO 時出錯\n" -#: scd/app-openpgp.c:3066 +#: scd/app-openpgp.c:3075 #, c-format msgid "key already exists\n" msgstr "金鑰已存在\n" -#: scd/app-openpgp.c:3070 +#: scd/app-openpgp.c:3079 #, c-format msgid "existing key will be replaced\n" msgstr "既有的金鑰將被取代\n" -#: scd/app-openpgp.c:3072 +#: scd/app-openpgp.c:3081 #, c-format msgid "generating new key\n" msgstr "正在產生新的金鑰\n" -#: scd/app-openpgp.c:3074 +#: scd/app-openpgp.c:3083 #, c-format msgid "writing new key\n" msgstr "正在寫入新的金鑰\n" -#: scd/app-openpgp.c:3647 scd/app-openpgp.c:3999 +#: scd/app-openpgp.c:3656 scd/app-openpgp.c:4008 #, c-format msgid "creation timestamp missing\n" msgstr "缺漏創生時間戳印\n" -#: scd/app-openpgp.c:3688 scd/app-openpgp.c:3696 +#: scd/app-openpgp.c:3697 scd/app-openpgp.c:3705 #, c-format msgid "RSA prime %s missing or not of size %d bits\n" msgstr "RSA 質數 %s 缺漏或者並非 %d 位元大\n" -#: scd/app-openpgp.c:3829 scd/app-openpgp.c:4106 +#: scd/app-openpgp.c:3838 scd/app-openpgp.c:4115 #, c-format msgid "failed to store the key: %s\n" msgstr "存放金鑰失敗: %s\n" -#: scd/app-openpgp.c:3993 +#: scd/app-openpgp.c:4002 #, fuzzy, c-format #| msgid "unsupported inquiry '%s'\n" msgid "unsupported curve\n" msgstr "未支援的查詢 '%s'\n" -#: scd/app-openpgp.c:4263 +#: scd/app-openpgp.c:4272 #, c-format msgid "please wait while key is being generated ...\n" msgstr "正在產生金鑰中, 請稍候 ...\n" -#: scd/app-openpgp.c:4271 +#: scd/app-openpgp.c:4280 #, c-format msgid "generating key failed\n" msgstr "產生金鑰時失敗\n" -#: scd/app-openpgp.c:4277 +#: scd/app-openpgp.c:4286 #, fuzzy, c-format #| msgid "key generation completed (%d seconds)\n" msgid "key generation completed (%d second)\n" msgid_plural "key generation completed (%d seconds)\n" msgstr[0] "金鑰產生完畢 (%d 秒)\n" -#: scd/app-openpgp.c:4311 +#: scd/app-openpgp.c:4320 #, c-format msgid "invalid structure of OpenPGP card (DO 0x93)\n" msgstr "無效的 OpenPGP 卡片結構 (DO 0x93)\n" -#: scd/app-openpgp.c:4361 +#: scd/app-openpgp.c:4370 #, c-format msgid "fingerprint on card does not match requested one\n" msgstr "卡片上的指紋與所要求的那個並不吻合\n" -#: scd/app-openpgp.c:4560 +#: scd/app-openpgp.c:4569 #, c-format msgid "card does not support digest algorithm %s\n" msgstr "卡片不支援 %s 摘要演算法\n" -#: scd/app-openpgp.c:4618 +#: scd/app-openpgp.c:4627 #, c-format msgid "signatures created so far: %lu\n" msgstr "目前建立的簽章: %lu\n" -#: scd/app-openpgp.c:5055 +#: scd/app-openpgp.c:5065 #, c-format msgid "" "verification of Admin PIN is currently prohibited through this command\n" msgstr "目前在此指令中的管理者 PIN 驗證被禁止了\n" -#: scd/app-openpgp.c:5386 scd/app-openpgp.c:5398 +#: scd/app-openpgp.c:5396 scd/app-openpgp.c:5408 #, c-format msgid "can't access %s - invalid OpenPGP card?\n" msgstr "無法存取 %s - 無效的 OpenPGP 卡片?\n" -#: scd/app-dinsig.c:298 +#: scd/app-dinsig.c:299 msgid "||Please enter your PIN at the reader's pinpad" msgstr "||請在讀卡機鍵盤上輸入你的個人識別碼 (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-dinsig.c:529 +#: scd/app-dinsig.c:532 msgid "|N|Initial New PIN" msgstr "|N|開始新增個人識別碼 (PIN)" @@ -8491,11 +8503,11 @@ msgid "validation model requested by certificate: %s" msgstr "憑證所要求的驗證模型: %s" -#: sm/certchain.c:199 sm/certchain.c:2164 +#: sm/certchain.c:199 sm/certchain.c:2165 msgid "chain" msgstr "chain" -#: sm/certchain.c:200 sm/certchain.c:2164 +#: sm/certchain.c:200 sm/certchain.c:2165 msgid "shell" msgstr "shell" @@ -8518,234 +8530,234 @@ msgid "failed to open '%s': %s\n" msgstr "開啟 '%s' 失敗: %s\n" -#: sm/certchain.c:355 sm/certchain.c:384 dirmngr/validate.c:204 +#: sm/certchain.c:355 sm/certchain.c:385 dirmngr/validate.c:204 #, c-format msgid "Note: non-critical certificate policy not allowed" msgstr "請注意: 不允許非關鍵的憑證原則" -#: sm/certchain.c:359 sm/certchain.c:388 dirmngr/validate.c:209 +#: sm/certchain.c:359 sm/certchain.c:389 dirmngr/validate.c:209 #, c-format msgid "certificate policy not allowed" msgstr "未允許憑證原則" -#: sm/certchain.c:595 sm/keydb.c:1084 sm/keydb.c:1171 +#: sm/certchain.c:596 sm/keydb.c:1084 sm/keydb.c:1171 #, c-format msgid "failed to get the fingerprint\n" msgstr "取得指紋失敗\n" -#: sm/certchain.c:624 +#: sm/certchain.c:625 #, c-format msgid "looking up issuer at external location\n" msgstr "從外部位置尋找發行者\n" -#: sm/certchain.c:644 +#: sm/certchain.c:645 #, c-format msgid "number of issuers matching: %d\n" msgstr "吻合的發行者數量: %d\n" -#: sm/certchain.c:723 dirmngr/ocsp.c:685 +#: sm/certchain.c:724 dirmngr/ocsp.c:685 #, c-format msgid "can't get authorityInfoAccess: %s\n" msgstr "無法取得 authorityInfoAccess: %s\n" -#: sm/certchain.c:791 +#: sm/certchain.c:792 #, c-format msgid "looking up issuer from the Dirmngr cache\n" msgstr "從 Dirmngr 快取尋找發行者\n" -#: sm/certchain.c:816 +#: sm/certchain.c:817 #, c-format msgid "number of matching certificates: %d\n" msgstr "吻合的憑證數量: %d\n" -#: sm/certchain.c:819 +#: sm/certchain.c:820 #, c-format msgid "dirmngr cache-only key lookup failed: %s\n" msgstr "尋找限於 dirmngr 快取的金鑰時失敗: %s\n" -#: sm/certchain.c:1041 sm/certchain.c:1554 sm/certchain.c:2192 sm/decrypt.c:728 +#: sm/certchain.c:1042 sm/certchain.c:1555 sm/certchain.c:2193 sm/decrypt.c:728 #: sm/encrypt.c:345 sm/import.c:415 sm/keydb.c:1091 sm/keydb.c:1178 #: sm/sign.c:337 sm/verify.c:118 #, c-format msgid "failed to allocate keyDB handle\n" msgstr "配置 keyDB 代號失敗\n" -#: sm/certchain.c:1225 +#: sm/certchain.c:1226 msgid "certificate has been revoked" msgstr "憑證已撤銷" -#: sm/certchain.c:1240 +#: sm/certchain.c:1241 msgid "the status of the certificate is unknown" msgstr "憑證的狀態未知" -#: sm/certchain.c:1247 +#: sm/certchain.c:1248 #, c-format msgid "please make sure that the \"dirmngr\" is properly installed\n" msgstr "請確認 \"dirmngr\" 已安裝妥善\n" -#: sm/certchain.c:1253 +#: sm/certchain.c:1254 #, c-format msgid "checking the CRL failed: %s" msgstr "檢查 CRL 時失敗: %s" -#: sm/certchain.c:1282 sm/certchain.c:1350 dirmngr/validate.c:497 +#: sm/certchain.c:1283 sm/certchain.c:1351 dirmngr/validate.c:497 #, c-format msgid "certificate with invalid validity: %s" msgstr "有效性無效的憑證: %s" -#: sm/certchain.c:1297 sm/certchain.c:1382 dirmngr/validate.c:515 +#: sm/certchain.c:1298 sm/certchain.c:1383 dirmngr/validate.c:515 #, c-format msgid "certificate not yet valid" msgstr "憑證尚未生效" -#: sm/certchain.c:1298 sm/certchain.c:1383 +#: sm/certchain.c:1299 sm/certchain.c:1384 msgid "root certificate not yet valid" msgstr "根憑證尚未生效" -#: sm/certchain.c:1299 sm/certchain.c:1384 +#: sm/certchain.c:1300 sm/certchain.c:1385 msgid "intermediate certificate not yet valid" msgstr "媒介憑證尚未生效" -#: sm/certchain.c:1312 dirmngr/validate.c:526 +#: sm/certchain.c:1313 dirmngr/validate.c:526 #, c-format msgid "certificate has expired" msgstr "憑證已過期" -#: sm/certchain.c:1313 +#: sm/certchain.c:1314 msgid "root certificate has expired" msgstr "根憑證已過期" -#: sm/certchain.c:1314 +#: sm/certchain.c:1315 msgid "intermediate certificate has expired" msgstr "媒介憑證已過期" -#: sm/certchain.c:1356 +#: sm/certchain.c:1357 #, c-format msgid "required certificate attributes missing: %s%s%s" msgstr "遺失所需的憑證屬性: %s%s%s" -#: sm/certchain.c:1365 +#: sm/certchain.c:1366 msgid "certificate with invalid validity" msgstr "有效性無效的憑證" -#: sm/certchain.c:1402 +#: sm/certchain.c:1403 msgid "signature not created during lifetime of certificate" msgstr "簽章並非在憑證生存時間內所造" -#: sm/certchain.c:1404 +#: sm/certchain.c:1405 msgid "certificate not created during lifetime of issuer" msgstr "憑證並非在發行者生存時間內所造" -#: sm/certchain.c:1405 +#: sm/certchain.c:1406 msgid "intermediate certificate not created during lifetime of issuer" msgstr "媒介憑證並非在發行者生存時間內所造" -#: sm/certchain.c:1409 +#: sm/certchain.c:1410 #, c-format msgid " ( signature created at " msgstr " ( 簽章建立於 " -#: sm/certchain.c:1410 +#: sm/certchain.c:1411 #, c-format msgid " (certificate created at " msgstr " ( 憑證建立於 " -#: sm/certchain.c:1413 +#: sm/certchain.c:1414 #, c-format msgid " (certificate valid from " msgstr " (憑證有效自 " -#: sm/certchain.c:1414 +#: sm/certchain.c:1415 #, c-format msgid " ( issuer valid from " msgstr " ( 發行者有效自 " -#: sm/certchain.c:1444 dirmngr/validate.c:577 +#: sm/certchain.c:1445 dirmngr/validate.c:577 #, c-format msgid "fingerprint=%s\n" msgstr "指紋=%s\n" -#: sm/certchain.c:1453 +#: sm/certchain.c:1454 #, c-format msgid "root certificate has now been marked as trusted\n" msgstr "根憑證現在已標記為已信任\n" -#: sm/certchain.c:1466 +#: sm/certchain.c:1467 #, c-format msgid "interactive marking as trusted not enabled in gpg-agent\n" msgstr "在 gpg-agent 中未啟用互動式標記為已信任\n" -#: sm/certchain.c:1472 +#: sm/certchain.c:1473 #, c-format msgid "interactive marking as trusted disabled for this session\n" msgstr "互動式標記為已信任在此作業階段中已停用\n" -#: sm/certchain.c:1531 +#: sm/certchain.c:1532 msgid "WARNING: creation time of signature not known - assuming current time" msgstr "警告: 簽章創造時間未知 - 假設為此刻" -#: sm/certchain.c:1595 +#: sm/certchain.c:1596 msgid "no issuer found in certificate" msgstr "憑證中找不到發行者" -#: sm/certchain.c:1673 +#: sm/certchain.c:1674 msgid "self-signed certificate has a BAD signature" msgstr "自簽憑證有 不良 簽章" -#: sm/certchain.c:1742 dirmngr/validate.c:575 +#: sm/certchain.c:1743 dirmngr/validate.c:575 #, c-format msgid "root certificate is not marked trusted" msgstr "根憑證未標記為已信任" -#: sm/certchain.c:1758 +#: sm/certchain.c:1759 #, c-format msgid "checking the trust list failed: %s\n" msgstr "檢查信任清單時失敗: %s\n" -#: sm/certchain.c:1789 sm/import.c:176 sm/keylist.c:1396 dirmngr/validate.c:630 +#: sm/certchain.c:1790 sm/import.c:176 sm/keylist.c:1396 dirmngr/validate.c:630 #, c-format msgid "certificate chain too long\n" msgstr "憑證鏈太長\n" -#: sm/certchain.c:1801 dirmngr/validate.c:642 +#: sm/certchain.c:1802 dirmngr/validate.c:642 #, c-format msgid "issuer certificate not found" msgstr "找不到發行者憑證" -#: sm/certchain.c:1834 dirmngr/validate.c:668 +#: sm/certchain.c:1835 dirmngr/validate.c:668 #, c-format msgid "certificate has a BAD signature" msgstr "憑證有 不良 簽章" -#: sm/certchain.c:1866 dirmngr/validate.c:692 +#: sm/certchain.c:1867 dirmngr/validate.c:692 msgid "found another possible matching CA certificate - trying again" msgstr "找到了另一個可能吻合的 CA 憑證 - 正再試一次" -#: sm/certchain.c:1925 dirmngr/validate.c:717 +#: sm/certchain.c:1926 dirmngr/validate.c:717 #, c-format msgid "certificate chain longer than allowed by CA (%d)" msgstr "憑證鏈比 CA 所允許的 (%d) 還長" -#: sm/certchain.c:1967 sm/certchain.c:2263 dirmngr/validate.c:747 +#: sm/certchain.c:1968 sm/certchain.c:2264 dirmngr/validate.c:747 #, c-format msgid "certificate is good\n" msgstr "憑證完好\n" -#: sm/certchain.c:1968 +#: sm/certchain.c:1969 #, c-format msgid "intermediate certificate is good\n" msgstr "媒介憑證良好\n" -#: sm/certchain.c:1969 +#: sm/certchain.c:1970 #, c-format msgid "root certificate is good\n" msgstr "根憑證完好\n" -#: sm/certchain.c:2151 +#: sm/certchain.c:2152 msgid "switching to chain model" msgstr "切換至鏈模型" -#: sm/certchain.c:2160 +#: sm/certchain.c:2161 #, c-format msgid "validation model used: %s" msgstr "已使用的驗證模型: %s" diff -Nru gnupg2-2.2.40/README gnupg2-2.2.41/README --- gnupg2-2.2.40/README 2022-02-24 13:06:37.000000000 +0000 +++ gnupg2-2.2.41/README 2022-12-06 09:06:20.000000000 +0000 @@ -1,6 +1,6 @@ - The GNU Privacy Guard 2 - ========================= - Version 2.2 + The GNU Privacy Guard + ======================= + Version 2.2 (LTS) Copyright 1997-2019 Werner Koch Copyright 1998-2021 Free Software Foundation, Inc. @@ -25,9 +25,8 @@ can be freely used, modified and distributed under the terms of the GNU General Public License. - Note that the 2.0 series of GnuPG reached end-of-life on 2017-12-31. - It is not possible to install a 2.2.x version along with any 2.0.x - version. + Note that the 2.2 series of GnuPG is our current long term support + branch. The regular stable series is 2.3 (will be renamed to 2.4). * BUILD INSTRUCTIONS diff -Nru gnupg2-2.2.40/scd/apdu.c gnupg2-2.2.41/scd/apdu.c --- gnupg2-2.2.40/scd/apdu.c 2022-07-05 15:13:26.000000000 +0000 +++ gnupg2-2.2.41/scd/apdu.c 2022-11-25 12:58:22.000000000 +0000 @@ -772,7 +772,14 @@ return err; if (DBG_CARD_IO) - log_printhex (apdu, apdulen, " PCSC_data:"); + { + /* Do not dump the PIN in a VERIFY command. */ + if (apdulen > 5 && apdu[1] == 0x20) + log_debug ("PCSC_data: %02X %02X %02X %02X %02X [redacted]\n", + apdu[0], apdu[1], apdu[2], apdu[3], apdu[4]); + else + log_printhex (apdu, apdulen, "PCSC_data:"); + } if ((reader_table[slot].pcsc.protocol & PCSC_PROTOCOL_T1)) send_pci.protocol = PCSC_PROTOCOL_T1; @@ -1697,7 +1704,14 @@ return err; if (DBG_CARD_IO) - log_printhex (apdu, apdulen, " raw apdu:"); + { + /* Do not dump the PIN in a VERIFY command. */ + if (apdulen > 5 && apdu[1] == 0x20) + log_debug (" raw apdu: %02x%02x%02x%02x%02x [redacted]\n", + apdu[0], apdu[1], apdu[2], apdu[3], apdu[4]); + else + log_printhex (apdu, apdulen, " raw apdu:"); + } maxbuflen = *buflen; if (pininfo) diff -Nru gnupg2-2.2.40/scd/app-dinsig.c gnupg2-2.2.41/scd/app-dinsig.c --- gnupg2-2.2.40/scd/app-dinsig.c 2022-02-24 13:06:38.000000000 +0000 +++ gnupg2-2.2.41/scd/app-dinsig.c 2022-11-25 12:55:13.000000000 +0000 @@ -100,7 +100,7 @@ /* Return the certificate of the card holder. */ fid = 0xC000; - len = app_help_read_length_of_cert (app->slot, fid, &certoff); + len = app_help_read_length_of_cert (app_get_slot (app), fid, &certoff); if (!len) return 0; /* Card has not been personalized. */ @@ -113,7 +113,8 @@ /* Now we need to read the certificate, so that we can get the public key out of it. */ - err = iso7816_read_binary (app->slot, certoff, len-certoff, &der, &derlen); + err = iso7816_read_binary (app_get_slot (app), certoff, len-certoff, + &der, &derlen); if (err) { log_info ("error reading entire certificate from FID 0x%04X: %s\n", @@ -192,14 +193,14 @@ /* Read the entire file. fixme: This could be optimized by first reading the header to figure out how long the certificate actually is. */ - err = iso7816_select_file (app->slot, fid, 0); + err = iso7816_select_file (app_get_slot (app), fid, 0); if (err) { log_error ("error selecting FID 0x%04X: %s\n", fid, gpg_strerror (err)); return err; } - err = iso7816_read_binary (app->slot, 0, 0, &buffer, &buflen); + err = iso7816_read_binary (app_get_slot (app), 0, 0, &buffer, &buflen); if (err) { log_error ("error reading certificate from FID 0x%04X: %s\n", @@ -292,7 +293,7 @@ pininfo.maxlen = 8; if (!opt.disable_pinpad - && !iso7816_check_pinpad (app->slot, ISO7816_VERIFY, &pininfo) ) + && !iso7816_check_pinpad (app_get_slot (app), ISO7816_VERIFY, &pininfo) ) { rc = pincb (pincb_arg, _("||Please enter your PIN at the reader's pinpad"), @@ -303,7 +304,7 @@ gpg_strerror (rc)); return rc; } - rc = iso7816_verify_kp (app->slot, 0x81, &pininfo); + rc = iso7816_verify_kp (app_get_slot (app), 0x81, &pininfo); /* Dismiss the prompt. */ pincb (pincb_arg, NULL, NULL); } @@ -344,7 +345,8 @@ return gpg_error (GPG_ERR_BAD_PIN); } - rc = iso7816_verify (app->slot, 0x81, pinvalue, strlen (pinvalue)); + rc = iso7816_verify (app_get_slot (app), 0x81, + pinvalue, strlen (pinvalue)); if (gpg_err_code (rc) == GPG_ERR_INV_VALUE) { /* We assume that ISO 9564-1 encoding is used and we failed @@ -365,7 +367,8 @@ paddedpin[i++] = (((*s - '0') << 4) | 0x0f); while (i < sizeof paddedpin) paddedpin[i++] = 0xff; - rc = iso7816_verify (app->slot, 0x81, paddedpin, sizeof paddedpin); + rc = iso7816_verify (app_get_slot (app), 0x81, + paddedpin, sizeof paddedpin); } xfree (pinvalue); } @@ -483,7 +486,7 @@ rc = verify_pin (app, pincb, pincb_arg); if (!rc) - rc = iso7816_compute_ds (app->slot, 0, data, datalen, 0, + rc = iso7816_compute_ds (app_get_slot (app), 0, data, datalen, 0, outdata, outdatalen); return rc; } @@ -533,7 +536,7 @@ return err; } - err = iso7816_change_reference_data (app->slot, 0x81, + err = iso7816_change_reference_data (app_get_slot (app), 0x81, oldpin, oldpinlen, pinvalue, strlen (pinvalue)); xfree (pinvalue); @@ -548,7 +551,7 @@ app_select_dinsig (app_t app) { static char const aid[] = { 0xD2, 0x76, 0x00, 0x00, 0x66, 0x01 }; - int slot = app->slot; + int slot = app_get_slot (app); int rc; rc = iso7816_select_application (slot, aid, sizeof aid, 0); diff -Nru gnupg2-2.2.40/scd/app-nks.c gnupg2-2.2.41/scd/app-nks.c --- gnupg2-2.2.40/scd/app-nks.c 2022-02-24 13:06:38.000000000 +0000 +++ gnupg2-2.2.41/scd/app-nks.c 2022-11-25 12:56:47.000000000 +0000 @@ -1,5 +1,6 @@ /* app-nks.c - The Telesec NKS card application. - * Copyright (C) 2004, 2007, 2008, 2009 Free Software Foundation, Inc. + * Copyright (C) 2004, 2007-2009 Free Software Foundation, Inc. + * Copyright (C) 2004, 2007-2009, 2013-2015, 2020, 2022 g10 Code GmbH * * This file is part of GnuPG. * @@ -18,28 +19,55 @@ */ /* Notes: - - - We are now targeting TCOS 3 cards and it may happen that there is - a regression towards TCOS 2 cards. Please report. - - - The TKS3 AUT key is not used. It seems that it is only useful for - the internal authentication command and not accessible by other - applications. The key itself is in the encryption class but the - corresponding certificate has only the digitalSignature - capability. - - - If required, we automagically switch between the NKS application - and the SigG application. This avoids to use the DINSIG - application which is somewhat limited, has no support for Secure - Messaging as required by TCOS 3 and has no way to change the PIN - or even set the NullPIN. - - - We use the prefix NKS-DF01 for TCOS 2 cards and NKS-NKS3 for newer - cards. This is because the NKS application has moved to DF02 with - TCOS 3 and thus we better use a DF independent tag. - - - We use only the global PINs for the NKS application. - + * + * - We are now targeting TCOS 3 cards and it may happen that there is + * a regression towards TCOS 2 cards. Please report. + * + * - The NKS3 AUT key is not used. It seems that it is only useful for + * the internal authentication command and not accessible by other + * applications. The key itself is in the encryption class but the + * corresponding certificate has only the digitalSignature + * capability. + * Update: This changed for the Signature Card V2 (nks version 15) + * + * - If required, we automagically switch between the NKS application + * and the SigG or eSign application. This avoids to use the DINSIG + * application which is somewhat limited, has no support for Secure + * Messaging as required by TCOS 3 and has no way to change the PIN + * or even set the NullPIN. With the Signature Card v2 (nks version + * 15) the Esign application is used instead of the SigG. + * + * - We use the prefix NKS-DF01 for TCOS 2 cards and NKS-NKS3 for newer + * cards. This is because the NKS application has moved to DF02 with + * TCOS 3 and thus we better use a DF independent tag. + * + * - We use only the global PINs for the NKS application. + * + * + * + * Here is a table with PIN stati collected from 3 cards. + * + * | app | pwid | NKS3 | SIG_B | SIG_N | + * |-----+------+-----------+-----------+-----------| + * | NKS | 0x00 | null - | - - | - - | + * | | 0x01 | 0 3 | - - | - - | + * | | 0x02 | 3 null | 15 3 | 15 null | + * | | 0x03 | - 3 | null - | 3 - | + * | | 0x04 | | null 0 | 3 3 | + * | SIG | 0x00 | null - | - - | - - | + * | | 0x01 | 0 null | - null | - null | + * | | 0x02 | 3 null | 15 0 | 15 0 | + * | | 0x03 | - 0 | null null | null null | + * - SIG is either SIGG or ESIGN. + * - "-" indicates reference not found (SW 6A88). + * - "null" indicates a NULLPIN (SW 6985). + * - The first value in each cell is the global PIN; + * the second is the local PIN (high bit of pwid set). + * - The NKS3 card is some older test card. + * - The SIG_B is a Signature Card V2.0 with Brainpool curves. + * Here the PIN 0x82 has been changed from the NULLPIN. + * - The SIG_N is a Signature Card V2.0 with NIST curves. + * The PIN was enabled using the TCOS Windows tool. */ #include @@ -47,7 +75,6 @@ #include #include #include -#include #include #include "scdaemon.h" @@ -59,66 +86,157 @@ static char const aid_nks[] = { 0xD2, 0x76, 0x00, 0x00, 0x03, 0x01, 0x02 }; static char const aid_sigg[] = { 0xD2, 0x76, 0x00, 0x00, 0x66, 0x01 }; +static char const aid_esign[] = + { 0xA0, 0x00, 0x00, 0x01, 0x67, 0x45, 0x53, 0x49, 0x47, 0x4E }; +static char const aid_idlm[] = { 0xD2, 0x76, 0x00, 0x00, 0x03, 0x0c, 0x01 }; + + +/* The ids of the different apps on our TCOS cards. */ +#define NKS_APP_NKS 0 +#define NKS_APP_SIGG 1 +#define NKS_APP_ESIGN 2 +#define NKS_APP_IDLM 3 static struct { - int is_sigg; /* Valid for SigG application. */ + int nks_app_id;/* One of NKS_APP_*. Keep them sorted so that no + * unnecessary application switching is needed. */ int fid; /* File ID. */ - int nks_ver; /* 0 for NKS version 2, 3 for version 3. */ + int nks_ver; /* 0 for NKS version 2, 3 for version 3, etc. */ int certtype; /* Type of certificate or 0 if it is not a certificate. */ - int iskeypair; /* If true has the FID of the corresponding certificate. */ + int iskeypair; /* If true has the FID of the corresponding certificate. + * If no certificate is known a value of -1 is used. */ + int isauthkey; /* True if file is a key usable for authentication. */ int issignkey; /* True if file is a key usable for signing. */ - int isenckey; /* True if file is a key usable for decryption. */ + int isencrkey; /* True if file is a key usable for decryption. */ unsigned char kid; /* Corresponding key references. */ } filelist[] = { - { 0, 0x4531, 0, 0, 0xC000, 1, 0, 0x80 }, /* EF_PK.NKS.SIG */ + { 0, 0x4531, 0, 0, 0xC000, 1,1,0, 0x80}, /* EF_PK.NKS.SIG */ + /* */ /* nks15: EF.PK.NKS.ADS */ { 0, 0xC000, 0, 101 }, /* EF_C.NKS.SIG */ - { 0, 0x4331, 0, 100 }, + /* */ /* nks15: EF.C.ICC.ADS (sign key) */ + + { 0, 0x4331, 0, 100 }, /* Unnamed. */ + /* */ /* nks15: EF.C.ICC.RFU1 */ + /* */ /* (second cert for sign key) */ + { 0, 0x4332, 0, 100 }, - { 0, 0xB000, 0, 110 }, /* EF_PK.RCA.NKS */ - { 0, 0x45B1, 0, 0, 0xC200, 0, 1, 0x81 }, /* EF_PK.NKS.ENC */ - { 0, 0xC200, 0, 101 }, /* EF_C.NKS.ENC */ - { 0, 0x43B1, 0, 100 }, + { 0, 0xB000, 0, 110 }, /* EF_PK.RCA.NKS */ + + { 0, 0x45B1, 0, 0, 0xC200, 0,0,1, 0x81}, /* EF_PK.NKS.ENC */ + /* */ /* nks15: EF.PK.ICC.ENC1 */ + { 0, 0xC200, 0, 101 }, /* EF_C.NKS.ENC */ + /* nks15: EF.C.ICC.ENC1 (Cert-encr) */ + + { 0, 0x43B1, 0, 100 }, /* Unnamed */ + /* */ /* nks15: EF.C.ICC.RFU2 */ + /* */ /* (second cert for enc1 key) */ + { 0, 0x43B2, 0, 100 }, -/* The authentication key is not used. */ -/* { 0, 0x4571, 3, 0, 0xC500, 0, 0, 0x82 }, /\* EF_PK.NKS.AUT *\/ */ -/* { 0, 0xC500, 3, 101 }, /\* EF_C.NKS.AUT *\/ */ - { 0, 0x45B2, 3, 0, 0xC201, 0, 1, 0x83 }, /* EF_PK.NKS.ENC1024 */ + { 0, 0x4371,15, 100 }, /* EF.C.ICC.RFU3 */ + /* */ /* (second cert for auth key) */ + + { 0, 0x45B2, 3, 0, 0xC201, 0,0,1, 0x83}, /* EF_PK.NKS.ENC1024 */ + /* */ /* nks15: EF.PK.ICC.ENC2 */ { 0, 0xC201, 3, 101 }, /* EF_C.NKS.ENC1024 */ - { 1, 0x4531, 3, 0, 0xC000, 1, 1, 0x84 }, /* EF_PK.CH.SIG */ + + { 0, 0xC20E,15, 111 }, /* EF.C.CSP.RCA1 (RootCA 1) */ + { 0, 0xC208,15, 101 }, /* EF.C.CSP.SCA1 (SubCA 1) */ + { 0, 0xC10E,15, 111 }, /* EF.C.CSP.RCA2 (RootCA 2) */ + { 0, 0xC108,15, 101 }, /* EF.C.CSP.SCA2 (SubCA 2) */ + + { 0, 0x4571,15, 0, 0xC500, 1,0,0, 0x82}, /* EF.PK.ICC.AUT */ + { 0, 0xC500,15, 101 }, /* EF.C.ICC.AUT (Cert-auth) */ + + { 0, 0xC201,15, 101 }, /* EF.C.ICC.ENC2 (Cert-encr) */ + /* (empty on delivery) */ + + { 1, 0x4531, 3, 0, 0xC000, 0,1,1, 0x84}, /* EF_PK.CH.SIG */ { 1, 0xC000, 0, 101 }, /* EF_C.CH.SIG */ + { 1, 0xC008, 3, 101 }, /* EF_C.CA.SIG */ { 1, 0xC00E, 3, 111 }, /* EF_C.RCA.SIG */ + + { 2, 0x4531, 15, 0, 0xC001, 0,1,0, 0x84}, /* EF_PK.CH.SIG */ + { 2, 0xC000, 15,101 }, /* EF.C.SCA.QES (SubCA) */ + { 2, 0xC001, 15,100 }, /* EF.C.ICC.QES (Cert) */ + { 2, 0xC00E, 15,111 }, /* EF.C.RCA.QES (RootCA */ + + { 3, 0x4E03, 3, 0, -1 }, /* EK_PK_03 */ + { 3, 0x4E04, 3, 0, -1 }, /* EK_PK_04 */ + { 3, 0x4E05, 3, 0, -1 }, /* EK_PK_05 */ + { 3, 0x4E06, 3, 0, -1 }, /* EK_PK_06 */ + { 3, 0x4E07, 3, 0, -1 }, /* EK_PK_07 */ + { 3, 0x4E08, 3, 0, -1 }, /* EK_PK_08 */ + { 0, 0 } }; +/* Object to cache information gathered from FIDs. */ +struct fid_cache_s { + struct fid_cache_s *next; + int nks_app_id; + int fid; /* Zero for an unused slot. */ + unsigned int got_keygrip:1; /* The keygrip and algo are valid. */ + int algo; + char *algostr; /* malloced. */ + char keygripstr[2*KEYGRIP_LEN+1]; +}; + /* Object with application (i.e. NKS) specific data. */ struct app_local_s { - int nks_version; /* NKS version. */ + int active_nks_app; /* One of the NKS_APP_ constants. */ + + int only_idlm; /* The application is fixed to IDLM (IDKey card). */ + int qes_app_id; /* Either NKS_APP_SIGG or NKS_APP_ESIGN. */ - int sigg_active; /* True if switched to the SigG application. */ - int sigg_msig_checked;/* True if we checked for a mass signature card. */ - int sigg_is_msig; /* True if this is a mass signature card. */ + int sigg_msig_checked;/* True if we checked for a mass signature card. */ + int sigg_is_msig; /* True if this is a mass signature card. */ - int need_app_select; /* Need to re-select the application. */ + int need_app_select; /* Need to re-select the application. */ + struct fid_cache_s *fid_cache; /* Linked list with cached infos. */ }; -static gpg_error_t switch_application (app_t app, int enable_sigg); +static gpg_error_t readcert_from_ef (app_t app, int fid, + unsigned char **cert, size_t *certlen); +static gpg_error_t switch_application (app_t app, int nks_app_id); +static const char *parse_pwidstr (app_t app, const char *pwidstr, int new_mode, + int *r_nks_app_id, int *r_pwid); +static gpg_error_t verify_pin (app_t app, int pwid, const char *desc, + gpg_error_t (*pincb)(void*, const char *, + char **), + void *pincb_arg); +static gpg_error_t parse_keyref (app_t app, const char *keyref, + int want_keypair, int *r_fididx); +static void +flush_fid_cache (app_t app) +{ + while (app->app_local->fid_cache) + { + struct fid_cache_s *next = app->app_local->fid_cache->next; + if (app->app_local->fid_cache) + xfree (app->app_local->fid_cache->algostr); + xfree (app->app_local->fid_cache); + app->app_local->fid_cache = next; + } +} + /* Release local data. */ static void do_deinit (app_t app) { if (app && app->app_local) { + flush_fid_cache (app); xfree (app->app_local); app->app_local = NULL; } @@ -137,33 +255,78 @@ } -/* Read the file with FID, assume it contains a public key and return - its keygrip in the caller provided 41 byte buffer R_GRIPSTR. */ +/* Return an allocated string with the serial number in a format to be + * show to the user. May return NULL on malloc problem. */ +static char * +get_dispserialno (app_t app) +{ + char *result; + + /* We only need to strip the last zero which is not printed on the + * card. */ + result = app_get_serialno (app); + if (result && *result && result[strlen(result)-1] == '0') + result[strlen(result)-1] = 0; + return result; +} + + static gpg_error_t -keygripstr_from_pk_file (app_t app, int fid, char *r_gripstr) +pubkey_from_pk_file (app_t app, int pkfid, int cfid, + unsigned char **r_pk, size_t *r_pklen) { gpg_error_t err; - unsigned char grip[20]; unsigned char *buffer[2]; size_t buflen[2]; - gcry_sexp_t sexp; int i; int offset[2] = { 0, 0 }; - err = iso7816_select_file (app->slot, fid, 0); + *r_pk = NULL; + *r_pklen = 0; + + if (app->appversion == 15) + { + /* Signature Card v2 - get keygrip from the certificate. */ + unsigned char *cert; + size_t certlen; + + if (cfid == -1) + return gpg_error (GPG_ERR_NOT_SUPPORTED); + + /* Fall back to certificate reading. */ + err = readcert_from_ef (app, cfid, &cert, &certlen); + if (err) + { + log_error ("nks: error reading certificate %04X: %s\n", + cfid, gpg_strerror (err)); + return err; + } + + err = app_help_pubkey_from_cert (cert, certlen, r_pk, r_pklen); + xfree (cert); + if (err) + log_error ("nks: error parsing certificate %04X: %s\n", + cfid, gpg_strerror (err)); + + return err; + } + + err = iso7816_select_file (app_get_slot (app), pkfid, 0); if (err) return err; - err = iso7816_read_record (app->slot, 1, 1, 0, &buffer[0], &buflen[0]); + err = iso7816_read_record (app_get_slot (app), 1, 1, 0, + &buffer[0], &buflen[0]); if (err) return err; - err = iso7816_read_record (app->slot, 2, 1, 0, &buffer[1], &buflen[1]); + err = iso7816_read_record (app_get_slot (app), 2, 1, 0, + &buffer[1], &buflen[1]); if (err) { xfree (buffer[0]); return err; } - if (app->app_local->nks_version < 3) + if (app->appversion < 3) { /* Old versions of NKS store the values in a TLV encoded format. We need to do some checks. */ @@ -179,6 +342,12 @@ err = gpg_error (GPG_ERR_INV_OBJ); else offset[i] = 2; + if (err) + { + xfree (buffer[0]); + xfree (buffer[1]); + return err; + } } } else @@ -208,9 +377,10 @@ newbuf = xtrymalloc (newlen); if (!newbuf) { + err = gpg_error_from_syserror (); xfree (buffer[0]); xfree (buffer[1]); - return gpg_error_from_syserror (); + return err; } newbuf[0] = 0; memcpy (newbuf+1, buffer[i]+offset[i], buflen[i] - offset[i]); @@ -221,41 +391,238 @@ } } - if (!err) - err = gcry_sexp_build (&sexp, NULL, - "(public-key (rsa (n %b) (e %b)))", - (int)buflen[0]-offset[0], buffer[0]+offset[0], - (int)buflen[1]-offset[1], buffer[1]+offset[1]); + *r_pk = make_canon_sexp_from_rsa_pk (buffer[0]+offset[0], buflen[0]-offset[0], + buffer[1]+offset[1], buflen[1]-offset[1], + r_pklen); xfree (buffer[0]); xfree (buffer[1]); - if (err) - return err; + return err; +} - if (!gcry_pk_get_keygrip (sexp, grip)) +/* Read the file with PKFID, assume it contains a public key and + * return its keygrip in the caller provided 41 byte buffer R_GRIPSTR. + * This works only for RSA card. For the Signature Card v2 ECC is + * used and Read Record needs to be replaced by read binary. Given + * all the ECC parameters required, we don't do that but rely that the + * corresponding certificate at CFID is already available and get the + * public key from there. Note that a CFID of 1 is indicates that a + * certificate is not known. If R_ALGO is not NULL the public key + * algorithm for the returned KEYGRIP is stored there. If R_ALGOSTR + * is not NULL the public key algo string (e.g. "rsa2048") is stored + * there. */ +static gpg_error_t +keygripstr_from_pk_file (app_t app, int pkfid, int cfid, char *r_gripstr, + int *r_algo, char **r_algostr) +{ + gpg_error_t err; + int algo = 0; /* Public key algo. */ + char *algostr = NULL; /* Public key algo string. */ + struct fid_cache_s *ci; + unsigned char *pk; + size_t pklen; + + for (ci = app->app_local->fid_cache; ci; ci = ci->next) + if (ci->fid && ci->nks_app_id == app->app_local->active_nks_app + && ci->fid == pkfid) + { + if (!ci->got_keygrip) + return gpg_error (GPG_ERR_NOT_FOUND); + if (r_algostr && !ci->algostr) + break; /* Not in the cache - try w/o cache. */ + memcpy (r_gripstr, ci->keygripstr, 2*KEYGRIP_LEN+1); + if (r_algo) + *r_algo = ci->algo; + if (r_algostr) + { + *r_algostr = xtrystrdup (ci->algostr); + if (!*r_algostr) + return gpg_error_from_syserror (); + } + return 0; /* Found in cache. */ + } + + err = pubkey_from_pk_file (app, pkfid, cfid, &pk, &pklen); + if (!err) + err = app_help_get_keygrip_string_pk (pk, pklen, r_gripstr, NULL, + &algo, &algostr); + xfree (pk); + + if (!err) { - err = gpg_error (GPG_ERR_INTERNAL); /* i.e. RSA not supported by - libgcrypt. */ + if (r_algo) + *r_algo = algo; + if (r_algostr) + { + *r_algostr = algostr; + algostr = NULL; + } + + /* FIXME: We need to implement not_found caching. */ + for (ci = app->app_local->fid_cache; ci; ci = ci->next) + if (ci->fid + && ci->nks_app_id == app->app_local->active_nks_app + && ci->fid == pkfid) + { + /* Update the keygrip. */ + memcpy (ci->keygripstr, r_gripstr, 2*KEYGRIP_LEN+1); + ci->algo = algo; + xfree (ci->algostr); + ci->algostr = algostr? xtrystrdup (algostr) : NULL; + ci->got_keygrip = 1; + break; + } + if (!ci) + { + for (ci = app->app_local->fid_cache; ci; ci = ci->next) + if (!ci->fid) + break; + if (!ci) + ci = xtrycalloc (1, sizeof *ci); + if (!ci) + ; /* Out of memory - it is a cache, so we ignore it. */ + else + { + ci->nks_app_id = app->app_local->active_nks_app; + ci->fid = pkfid; + memcpy (ci->keygripstr, r_gripstr, 2*KEYGRIP_LEN+1); + ci->algo = algo; + ci->got_keygrip = 1; + ci->next = app->app_local->fid_cache; + app->app_local->fid_cache = ci; + } + } } - else + xfree (algostr); + return err; +} + + +/* Parse KEYREF and return the index into the FILELIST at R_IDX. + * Returns 0 on success and switches to the requested application. + * The public key algo is stored at R_ALGO unless it is NULL. */ +static gpg_error_t +find_fid_by_keyref (app_t app, const char *keyref, int *r_idx, int *r_algo) +{ + gpg_error_t err; + int idx; + char keygripstr[2*KEYGRIP_LEN+1]; + + if (!keyref || !keyref[0]) + err = gpg_error (GPG_ERR_INV_ID); + else if (keyref[0] != 'N' && strlen (keyref) == 40) /* This is a keygrip. */ + { + struct fid_cache_s *ci; + + /* FIXME: Our cache structure needs to be revised. It doesn't + * take the app_id into account and we don't have a way to + * directly access the FID item if there are several of them + * with different app_ids. We disable the cache for now. */ + for (ci = app->app_local->fid_cache ; ci; ci = ci->next) + if (ci->fid && ci->got_keygrip && !strcmp (ci->keygripstr, keyref)) + break; + if (ci && 0 ) /* Cached (disabled) */ + { + for (idx=0; filelist[idx].fid; idx++) + if (filelist[idx].fid == ci->fid) + break; + if (!filelist[idx].fid) + { + log_debug ("nks: Ooops: Unkown FID cached!\n"); + err = gpg_error (GPG_ERR_BUG); + goto leave; + } + err = switch_application (app, filelist[idx].nks_app_id); + if (err) + goto leave; + if (r_algo) + *r_algo = ci->algo; + } + else /* Not cached. */ + { + for (idx=0; filelist[idx].fid; idx++) + { + if (!filelist[idx].iskeypair) + continue; + + if (app->app_local->only_idlm) + { + if (filelist[idx].nks_app_id != NKS_APP_IDLM) + continue; + } + else + { + if (filelist[idx].nks_app_id != NKS_APP_NKS + && filelist[idx].nks_app_id != app->app_local->qes_app_id) + continue; + + err = switch_application (app, filelist[idx].nks_app_id); + if (err) + goto leave; + } + + err = keygripstr_from_pk_file (app, filelist[idx].fid, + filelist[idx].iskeypair, + keygripstr, r_algo, NULL); + if (err) + { + log_info ("nks: no keygrip for FID 0x%04X: %s - ignored\n", + filelist[idx].fid, gpg_strerror (err)); + continue; + } + if (!strcmp (keygripstr, keyref)) + break; /* Found */ + } + if (!filelist[idx].fid) + { + err = gpg_error (GPG_ERR_NOT_FOUND); + goto leave; + } + /* (No need to switch the app as that has already been done + * in the loop.) */ + } + *r_idx = idx; + err = 0; + } + else /* This is a usual keyref. */ { - bin2hex (grip, 20, r_gripstr); + err = parse_keyref (app, keyref, 1, &idx); + if (err) + goto leave; + *r_idx = idx; + + err = switch_application (app, filelist[idx].nks_app_id); + if (err) + goto leave; + if (r_algo) + { + /* We need to get the public key algo. */ + err = keygripstr_from_pk_file (app, filelist[idx].fid, + filelist[idx].iskeypair, + keygripstr, r_algo, NULL); + if (err) + log_error ("nks: no keygrip for FID 0x%04X: %s\n", + filelist[idx].fid, gpg_strerror (err)); + } } - gcry_sexp_release (sexp); + + leave: return err; } /* TCOS responds to a verify with empty data (i.e. without the Lc - * byte) with the status of the PIN. PWID is the PIN ID, If SIGG is - * true, the application is switched into SigG mode. Returns: + * byte) with the status of the PIN. PWID is the PIN ID. NKS_APP_ID + * gives the application to first switch to. Returns: * ISO7816_VERIFY_* codes or non-negative number of verification * attempts left. */ static int -get_chv_status (app_t app, int sigg, int pwid) +get_chv_status (app_t app, int nks_app_id, int pwid) { - if (switch_application (app, sigg)) - return sigg? -2 : -1; /* No such PIN / General error. */ + if (switch_application (app, nks_app_id)) + return (nks_app_id == NKS_APP_NKS + ? ISO7816_VERIFY_ERROR + : ISO7816_VERIFY_NO_PIN); return iso7816_verify_status (app_get_slot (app), pwid); } @@ -273,33 +640,49 @@ { "$AUTHKEYID", 1 }, { "$ENCRKEYID", 2 }, { "$SIGNKEYID", 3 }, - { "NKS-VERSION", 4 }, + { "NKS-VERSION", 4 }, /* Legacy (printed decimal) */ { "CHV-STATUS", 5 }, - { NULL, 0 } + { "$DISPSERIALNO",6 }, + { "SERIALNO", 0 } }; gpg_error_t err = 0; int idx; + char *p, *p2; char buffer[100]; + int nksver = app->appversion; - err = switch_application (app, 0); + err = switch_application (app, NKS_APP_NKS); if (err) return err; - for (idx=0; table[idx].name && strcmp (table[idx].name, name); idx++) + for (idx=0; (idx < DIM(table) + && ascii_strcasecmp (table[idx].name, name)); idx++) ; - if (!table[idx].name) + if (!(idx < DIM (table))) return gpg_error (GPG_ERR_INV_NAME); switch (table[idx].special) { + case 0: /* SERIALNO */ + { + p = app_get_serialno (app); + if (p) + { + send_status_direct (ctrl, "SERIALNO", p); + xfree (p); + } + } + break; + case 1: /* $AUTHKEYID */ { /* NetKey 3.0 cards define an authentication key but according to the specs this key is only usable for encryption and not signing. it might work anyway but it has not yet been tested - fixme. Thus for now we use the NKS signature key - for authentication. */ - char const tmp[] = "NKS-NKS3.4531"; + for authentication for netkey 3. For the Signature Card + V2.0 the auth key is defined and thus we use it. */ + const char *tmp = nksver == 15? "NKS-NKS3.4571" : "NKS-NKS3.4531"; send_status_info (ctrl, table[idx].name, tmp, strlen (tmp), NULL, 0); } break; @@ -319,33 +702,65 @@ break; case 4: /* NKS-VERSION */ - snprintf (buffer, sizeof buffer, "%d", app->app_local->nks_version); + snprintf (buffer, sizeof buffer, "%d", app->appversion); send_status_info (ctrl, table[idx].name, buffer, strlen (buffer), NULL, 0); break; case 5: /* CHV-STATUS */ { - /* Returns: PW1.CH PW2.CH PW1.CH.SIG PW2.CH.SIG That are the - two global passwords followed by the two SigG passwords. - For the values, see the function get_chv_status. */ + /* Return the status for the the PINs as described in the + * table below. See the macros ISO7816_VERIFY_* for a list + * for each slot. The order is + * + * | idx | name | + * |-----+------------| + * | 0 | PW1.CH | + * | 1 | PW2.CH | + * | 2 | PW1.CH.SIG | + * | 3 | PW2.CH.SIG | + * + * See parse_pwidstr for details of the mapping. + */ int tmp[4]; /* We use a helper array so that we can control that there is - no superfluous application switch. Note that PW2.CH.SIG - really has the identifier 0x83 and not 0x82 as one would - expect. */ - tmp[0] = get_chv_status (app, 0, 0x00); - tmp[1] = get_chv_status (app, 0, 0x01); - tmp[2] = get_chv_status (app, 1, 0x81); - tmp[3] = get_chv_status (app, 1, 0x83); - snprintf (buffer, sizeof buffer, - "%d %d %d %d", tmp[0], tmp[1], tmp[2], tmp[3]); + * no superfluous application switches. */ + if (app->appversion == 15) + { + tmp[0] = get_chv_status (app, 0, 0x03); + tmp[1] = get_chv_status (app, 0, 0x04); + } + else + { + tmp[0] = get_chv_status (app, 0, 0x00); + tmp[1] = get_chv_status (app, 0, 0x01); + } + tmp[2] = get_chv_status (app, app->app_local->qes_app_id, 0x81); + if (app->appversion == 15) + tmp[3] = get_chv_status (app, app->app_local->qes_app_id, 0x82); + else + tmp[3] = get_chv_status (app, app->app_local->qes_app_id, 0x83); + snprintf (buffer, sizeof buffer, "%d %d %d %d", + tmp[0], tmp[1], tmp[2], tmp[3]); send_status_info (ctrl, table[idx].name, buffer, strlen (buffer), NULL, 0); } break; + case 6: /* $DISPSERIALNO */ + { + p = app_get_serialno (app); + p2 = get_dispserialno (app); + if (p && p2 && strcmp (p, p2)) + send_status_info (ctrl, table[idx].name, p2, strlen (p2), + NULL, (size_t)0); + else /* No abbreviated S/N or identical to the full full S/N. */ + err = gpg_error (GPG_ERR_INV_NAME); /* No Abbreviated S/N. */ + xfree (p); + xfree (p2); + } + break; default: err = gpg_error (GPG_ERR_NOT_IMPLEMENTED); @@ -356,37 +771,108 @@ } +/* Parse a keyref (NKS_*.*) and return the corresponding EF as an + * index into the filetable. With WANT_KEYPAIR set a keypair EF is + * requested; otherwise also cert EFs are returned. */ +static gpg_error_t +parse_keyref (app_t app, const char *keyref, int want_keypair, int *r_fididx) +{ + int nks_app_id, fid, idx; -static void -do_learn_status_core (app_t app, ctrl_t ctrl, unsigned int flags, int is_sigg) + if (!ascii_strncasecmp (keyref, "NKS-NKS3.", 9)) + nks_app_id = NKS_APP_NKS; + else if (!ascii_strncasecmp (keyref, "NKS-ESIGN.", 10) + && (!want_keypair || app->app_local->qes_app_id == NKS_APP_ESIGN)) + nks_app_id = NKS_APP_ESIGN; + else if (!ascii_strncasecmp (keyref, "NKS-SIGG.", 9) + && (!want_keypair || app->app_local->qes_app_id == NKS_APP_SIGG)) + nks_app_id = NKS_APP_SIGG; + else if (!ascii_strncasecmp (keyref, "NKS-IDLM.", 9)) + nks_app_id = NKS_APP_IDLM; + else if (!ascii_strncasecmp (keyref, "NKS-DF01.", 9)) + nks_app_id = NKS_APP_NKS; + else + return gpg_error (GPG_ERR_INV_ID); + + keyref += nks_app_id == NKS_APP_ESIGN? 10 : 9; + + if (!hexdigitp (keyref) || !hexdigitp (keyref+1) + || !hexdigitp (keyref+2) || !hexdigitp (keyref+3) + || keyref[4]) + return gpg_error (GPG_ERR_INV_ID); + fid = xtoi_4 (keyref); + for (idx=0; filelist[idx].fid; idx++) + if (filelist[idx].fid == fid + && filelist[idx].nks_app_id == nks_app_id + && ((want_keypair && filelist[idx].iskeypair) + || (!want_keypair + && (filelist[idx].certtype || filelist[idx].iskeypair > 0)))) + break; + if (!filelist[idx].fid) + return gpg_error (GPG_ERR_NOT_FOUND); + + *r_fididx = idx; + return 0; +} + + +const char * +get_nks_tag (app_t app, int nks_app_id) { - gpg_error_t err; - char ct_buf[100], id_buf[100]; - int i; const char *tag; - const char *usage; - if (is_sigg) + if (nks_app_id == NKS_APP_ESIGN) + tag = "ESIGN"; + else if (nks_app_id == NKS_APP_SIGG) tag = "SIGG"; - else if (app->app_local->nks_version < 3) + else if (nks_app_id == NKS_APP_IDLM) + tag = "IDLM"; + else if (app->appversion < 3) tag = "DF01"; else tag = "NKS3"; + return tag; +} + +static void +set_usage_string (char usagebuf[5], int i) +{ + int usageidx = 0; + if (filelist[i].issignkey) + usagebuf[usageidx++] = 's'; + if (filelist[i].isauthkey) + usagebuf[usageidx++] = 'a'; + if (filelist[i].isencrkey) + usagebuf[usageidx++] = 'e'; + if (!usageidx) + usagebuf[usageidx++] = '-'; + usagebuf[usageidx] = 0; +} + +static void +do_learn_status_core (app_t app, ctrl_t ctrl, unsigned int flags, + int nks_app_id) +{ + gpg_error_t err; + char ct_buf[100], id_buf[100]; + int i; + const char *tag = get_nks_tag (app, nks_app_id); + /* Output information about all useful objects in the NKS application. */ for (i=0; filelist[i].fid; i++) { - if (filelist[i].nks_ver > app->app_local->nks_version) + if (filelist[i].nks_ver > app->appversion) continue; - if (!!filelist[i].is_sigg != !!is_sigg) + if (filelist[i].nks_app_id != nks_app_id) continue; - if (filelist[i].certtype && !(flags &1)) + if (filelist[i].certtype && !(flags & APP_LEARN_FLAG_KEYPAIRINFO)) { size_t len; - len = app_help_read_length_of_cert (app->slot, + len = app_help_read_length_of_cert (app_get_slot (app), filelist[i].fid, NULL); if (len) { @@ -405,8 +891,12 @@ else if (filelist[i].iskeypair) { char gripstr[40+1]; + char usagebuf[5]; + char *algostr = NULL; - err = keygripstr_from_pk_file (app, filelist[i].fid, gripstr); + err = keygripstr_from_pk_file (app, filelist[i].fid, + filelist[i].iskeypair, gripstr, + NULL, &algostr); if (err) log_error ("can't get keygrip from FID 0x%04X: %s\n", filelist[i].fid, gpg_strerror (err)); @@ -414,25 +904,18 @@ { snprintf (id_buf, sizeof id_buf, "NKS-%s.%04X", tag, filelist[i].fid); - if (filelist[i].issignkey && filelist[i].isenckey) - usage = "sae"; - else if (filelist[i].issignkey) - usage = "sa"; - else if (filelist[i].isenckey) - usage = "e"; - else - usage = ""; - + set_usage_string (usagebuf, i); send_status_info (ctrl, "KEYPAIRINFO", gripstr, 40, id_buf, strlen (id_buf), - usage, strlen (usage), + usagebuf, strlen (usagebuf), + "-", (size_t)1, + algostr, strlen (algostr), NULL, (size_t)0); } + xfree (algostr); } } - - } @@ -441,33 +924,32 @@ { gpg_error_t err; - err = switch_application (app, 0); + do_getattr (app, ctrl, "CHV-STATUS"); + + err = switch_application (app, NKS_APP_NKS); if (err) return err; - do_learn_status_core (app, ctrl, flags, 0); + do_learn_status_core (app, ctrl, flags, app->app_local->active_nks_app); - err = switch_application (app, 1); + if (app->app_local->only_idlm) + return 0; /* ready. */ + + err = switch_application (app, app->app_local->qes_app_id); if (err) return 0; /* Silently ignore if we can't switch to SigG. */ - do_learn_status_core (app, ctrl, flags, 1); + do_learn_status_core (app, ctrl, flags, app->app_local->qes_app_id); return 0; } - - -/* Read the certificate with id CERTID (as returned by learn_status in - the CERTINFO status lines) and return it in the freshly allocated - buffer put into CERT and the length of the certificate put into - CERTLEN. */ +/* Helper to read a certificate from the file FID. The function + * assumes that the application has already been selected. */ static gpg_error_t -do_readcert (app_t app, const char *certid, - unsigned char **cert, size_t *certlen) +readcert_from_ef (app_t app, int fid, unsigned char **cert, size_t *certlen) { - int i, fid; gpg_error_t err; unsigned char *buffer; const unsigned char *p; @@ -475,67 +957,32 @@ int class, tag, constructed, ndef; size_t totobjlen, objlen, hdrlen; int rootca = 0; - int is_sigg = 0; *cert = NULL; *certlen = 0; - if (!strncmp (certid, "NKS-NKS3.", 9)) - ; - else if (!strncmp (certid, "NKS-DF01.", 9)) - ; - else if (!strncmp (certid, "NKS-SIGG.", 9)) - is_sigg = 1; - else - return gpg_error (GPG_ERR_INV_ID); - - err = switch_application (app, is_sigg); - if (err) - return err; - - certid += 9; - if (!hexdigitp (certid) || !hexdigitp (certid+1) - || !hexdigitp (certid+2) || !hexdigitp (certid+3) - || certid[4]) - return gpg_error (GPG_ERR_INV_ID); - fid = xtoi_4 (certid); - for (i=0; filelist[i].fid; i++) - if ((filelist[i].certtype || filelist[i].iskeypair) - && filelist[i].fid == fid) - break; - if (!filelist[i].fid) - return gpg_error (GPG_ERR_NOT_FOUND); - - /* If the requested objects is a plain public key, redirect it to - the corresponding certificate. The whole system is a bit messy - because we sometime use the key directly or let the caller - retrieve the key from the certificate. The rationale for - that is to support not-yet stored certificates. */ - if (filelist[i].iskeypair) - fid = filelist[i].iskeypair; - - /* Read the entire file. fixme: This could be optimized by first reading the header to figure out how long the certificate actually is. */ - err = iso7816_select_file (app->slot, fid, 0); + err = iso7816_select_file (app_get_slot (app), fid, 0); if (err) { - log_error ("error selecting FID 0x%04X: %s\n", fid, gpg_strerror (err)); + log_error ("nks: error selecting FID 0x%04X: %s\n", + fid, gpg_strerror (err)); return err; } - err = iso7816_read_binary (app->slot, 0, 0, &buffer, &buflen); + err = iso7816_read_binary (app_get_slot (app), 0, 0, &buffer, &buflen); if (err) { - log_error ("error reading certificate from FID 0x%04X: %s\n", + log_error ("nks: error reading certificate from FID 0x%04X: %s\n", fid, gpg_strerror (err)); return err; } - if (!buflen || *buffer == 0xff) + if (!buflen || *buffer == 0xff || all_zero_p (buffer, buflen)) { - log_info ("no certificate contained in FID 0x%04X\n", fid); + log_info ("nks: no certificate contained in FID 0x%04X\n", fid); err = gpg_error (GPG_ERR_NOT_FOUND); goto leave; } @@ -554,7 +1001,7 @@ else return gpg_error (GPG_ERR_INV_OBJ); totobjlen = objlen + hdrlen; - assert (totobjlen <= buflen); + log_assert (totobjlen <= buflen); err = parse_ber_header (&p, &n, &class, &tag, &constructed, &ndef, &objlen, &hdrlen); @@ -585,7 +1032,7 @@ if ( !(class == CLASS_UNIVERSAL && tag == TAG_SEQUENCE && constructed) ) return gpg_error (GPG_ERR_INV_OBJ); totobjlen = objlen + hdrlen; - assert (save_p + totobjlen <= buffer + buflen); + log_assert (save_p + totobjlen <= buffer + buflen); memmove (buffer, save_p, totobjlen); } @@ -599,12 +1046,178 @@ } +/* + * Iterate over FILELIST, supporting two use cases: + * + * (1) With WANT_KEYGRIPSTR=, finding matching entry. + * (2) With WANT_KEYGRIPSTR=NULL, listing entries + * by CAPABILITY (possibly == 0, for all entries). + * + * Caller supplies an array KEYGRIPSTR. + * Caller should start *IDX_P == -1, and keep the index value in IDX_P. + * + * Returns 0 on success, otherwise returns error value. + * + * When all entries are tried, returns GPG_ERR_NOT_FOUND for the use + * case of (1). Returns GPG_ERR_TRUE for the use case of (2). + */ +static gpg_error_t +iterate_over_filelist (app_t app, const char *want_keygripstr, int capability, + char keygripstr[2*KEYGRIP_LEN+1], int *idx_p) +{ + gpg_error_t err; + int idx = *idx_p; + + for (idx++; filelist[idx].fid; idx++) + { + if (filelist[idx].nks_ver > app->appversion) + continue; /* EF not support by this card version. */ + + if (!filelist[idx].iskeypair) + continue; /* Skip - We are only interested in keypairs. */ + + if (app->app_local->only_idlm) + { + /* IDLM cards have no other applications we want to switch + * to. We skip all EFs which are not known for IDLM. */ + if (filelist[idx].nks_app_id != NKS_APP_IDLM) + continue; + } + else + { + /* Skip all EFs which are not for NKS or the card's + * implementation for a qualified electoric signature (QES) + * which is either the old SIGG or the newer ESIGN. */ + if (filelist[idx].nks_app_id != NKS_APP_NKS + && filelist[idx].nks_app_id != app->app_local->qes_app_id) + continue; + + /* Switch if needed. Note that the filelist should be + * sorted to avoid unnecessary switches. */ + err = switch_application (app, filelist[idx].nks_app_id); + if (err) + { + *idx_p = idx; + return err; + } + } + + /* Get the keygrip from the EF. Note that this functions + * consults the cache to avoid computing the keygrip again. */ + err = keygripstr_from_pk_file (app, filelist[idx].fid, + filelist[idx].iskeypair, keygripstr, + NULL, NULL); + if (err) + { + log_error ("can't get keygrip from FID 0x%04X: %s\n", + filelist[idx].fid, gpg_strerror (err)); + continue; + } + + if (want_keygripstr) + { + /* If the keygrip matches the requested one we are ready. */ + if (!strcmp (keygripstr, want_keygripstr)) + { + /* Found */ + *idx_p = idx; + return 0; + } + } + else /* No keygrip requested - list all . */ + { + /* If a capability has been requested return only keys with + * that capability. */ + if (capability == GCRY_PK_USAGE_SIGN) + { + if (!filelist[idx].issignkey) + continue; + } + if (capability == GCRY_PK_USAGE_ENCR) + { + if (!filelist[idx].isencrkey) + continue; + } + if (capability == GCRY_PK_USAGE_AUTH) + { + if (!filelist[idx].isauthkey) + continue; + } + + /* Found. Return but save the last idenx of the loop. */ + *idx_p = idx; + return 0; + } + } + + if (!want_keygripstr) + err = gpg_error (GPG_ERR_TRUE); + else + err = gpg_error (GPG_ERR_NOT_FOUND); + + return err; +} + + +/* Read the certificate with id CERTID (as returned by learn_status in + the CERTINFO status lines) and return it in the freshly allocated + buffer put into CERT and the length of the certificate put into + CERTLEN. */ +static gpg_error_t +do_readcert (app_t app, const char *certid, + unsigned char **cert, size_t *certlen) +{ + int idx, fid; + gpg_error_t err; + + *cert = NULL; + *certlen = 0; + + /* Handle the case with KEYGRIP. We got a keygrip if the string has + * a length of 40 and does not start with an N as in NKS-* */ + if (certid[0] != 'N' && strlen (certid) == 40) + { + char keygripstr[2*KEYGRIP_LEN+1]; + + idx = -1; + err = iterate_over_filelist (app, certid, 0, keygripstr, &idx); + if (err) + return err; + + /* Switching is not required here because iterate_over_filelist + * has already done that. */ + } + else /* This is not a keygrip. */ + { + err = parse_keyref (app, certid, 0, &idx); + if (err) + return err; + + err = switch_application (app, filelist[idx].nks_app_id); + if (err) + return err; + } + + /* If the requested objects is a plain public key, redirect it to + the corresponding certificate. The whole system is a bit messy + because we sometime use the key directly or let the caller + retrieve the key from the certificate. The rationale for + that is to support not-yet stored certificates. */ + if (filelist[idx].iskeypair > 0) + fid = filelist[idx].iskeypair; + else + fid = filelist[idx].fid; + + return readcert_from_ef (app, fid, cert, certlen); +} + + /* Handle the READKEY command. On success a canonical encoded S-expression with the public key will get stored at PK and its length at PKLEN; the caller must release that buffer. On error PK and PKLEN are not changed and an error code is returned. As of now this function is only useful for the internal authentication key. - Other keys are automagically retrieved via by means of the + Other keys are automagically retrieved by means of the certificate parsing code in commands.c:cmd_readkey. For internal use PK and PKLEN may be NULL to just check for an existing key. */ static gpg_error_t @@ -612,55 +1225,212 @@ unsigned char **pk, size_t *pklen) { gpg_error_t err; - unsigned char *buffer[2]; - size_t buflen[2]; - unsigned short path[1] = { 0x4500 }; + unsigned char *dummy_pk = NULL; + size_t dummy_pklen = 0; + + if (!pk) + pk = &dummy_pk; + if (!pklen) + pklen = &dummy_pklen; + + (void)ctrl; + + if ((flags & APP_READKEY_FLAG_ADVANCED)) + return GPG_ERR_NOT_SUPPORTED; + + /* We use a generic name to retrieve PK.AUT.IFD-SPK. */ + if (!strcmp (keyid, "$IFDAUTHKEY") && app->appversion >= 3) + { + unsigned short path[1] = { 0x4500 }; + unsigned char *buffer[2]; + size_t buflen[2]; + + /* Access the KEYD file which is always in the master directory. */ + err = iso7816_select_path (app_get_slot (app), path, DIM (path), 0); + if (err) + goto leave; + /* Due to the above select we need to re-select our application. */ + app->app_local->need_app_select = 1; + /* Get the two records. */ + err = iso7816_read_record (app_get_slot (app), 5, 1, 0, + &buffer[0], &buflen[0]); + if (err) + goto leave; + if (all_zero_p (buffer[0], buflen[0])) + { + xfree (buffer[0]); + err = gpg_error (GPG_ERR_NOT_FOUND); + goto leave; + } + err = iso7816_read_record (app_get_slot (app), 6, 1, 0, + &buffer[1], &buflen[1]); + if (err) + { + xfree (buffer[0]); + goto leave; + } + + if ((flags & APP_READKEY_FLAG_INFO)) + { + /* FIXME */ + } + + if (pk && pklen && pk != &dummy_pk) + { + *pk = make_canon_sexp_from_rsa_pk (buffer[0], buflen[0], + buffer[1], buflen[1], + pklen); + if (!*pk) + err = gpg_error_from_syserror (); + } + + xfree (buffer[0]); + xfree (buffer[1]); + } + else if (keyid[0] != 'N' && strlen (keyid) == 40) + { + char keygripstr[2*KEYGRIP_LEN+1]; + int i = -1; + + err = iterate_over_filelist (app, keyid, 0, keygripstr, &i); + if (err) + goto leave; + + err = pubkey_from_pk_file (app, filelist[i].fid, filelist[i].iskeypair, + pk, pklen); + if (!err && (flags & APP_READKEY_FLAG_INFO)) + { + char *algostr; + char usagebuf[5]; + char id_buf[100]; + + if (app_help_get_keygrip_string_pk (*pk, *pklen, NULL, NULL, NULL, + &algostr)) + algostr = NULL; /* Ooops. */ + + snprintf (id_buf, sizeof id_buf, "NKS-%s.%04X", + get_nks_tag (app, filelist[i].nks_app_id), + filelist[i].fid); + set_usage_string (usagebuf, i); + send_status_info (ctrl, "KEYPAIRINFO", + keygripstr, strlen (keygripstr), + id_buf, strlen (id_buf), + usagebuf, strlen (usagebuf), + "-", (size_t)1, + algostr, strlen (algostr?algostr:""), + NULL, (size_t)0); + xfree (algostr); + } + } + else if (!strncmp (keyid, "NKS-IDLM.", 9)) + { + keyid += 9; + if (!hexdigitp (keyid) || !hexdigitp (keyid+1) + || !hexdigitp (keyid+2) || !hexdigitp (keyid+3) + || keyid[4]) + { + err = gpg_error (GPG_ERR_INV_ID); + goto leave; + } + + err = pubkey_from_pk_file (app, xtoi_4 (keyid), -1, pk, pklen); + /* FIXME: Implement KEYPAIRINFO. */ + } + else /* Return the error code expected by cmd_readkey. */ + err = gpg_error (GPG_ERR_UNSUPPORTED_OPERATION); + + leave: + xfree (dummy_pk); + return err; +} + + +/* Write the certificate (CERT,CERTLEN) to the card at CERTREFSTR. + * CERTREFSTR is of the form "NKS_.". */ +static gpg_error_t +do_writecert (app_t app, ctrl_t ctrl, + const char *certid, + gpg_error_t (*pincb)(void*, const char *, char **), + void *pincb_arg, + const unsigned char *cert, size_t certlen) +{ + gpg_error_t err; + int i, fid, pwid; + int nks_app_id, tmp_app_id; + const char *desc; (void)ctrl; - if ((flags & APP_READKEY_FLAG_ADVANCED)) - return GPG_ERR_NOT_SUPPORTED; - - /* We use a generic name to retrieve PK.AUT.IFD-SPK. */ - if (!strcmp (keyid, "$IFDAUTHKEY") && app->app_local->nks_version >= 3) - ; - else /* Return the error code expected by cmd_readkey. */ - return gpg_error (GPG_ERR_UNSUPPORTED_OPERATION); + if (!strncmp (certid, "NKS-NKS3.", 9)) + nks_app_id = NKS_APP_NKS; + else if (!strncmp (certid, "NKS-ESIGN.", 10)) + nks_app_id = NKS_APP_ESIGN; + else if (!strncmp (certid, "NKS-SIGG.", 9)) + nks_app_id = NKS_APP_SIGG; + else if (!strncmp (certid, "NKS-DF01.", 9)) + nks_app_id = NKS_APP_NKS; + else if (!strncmp (certid, "NKS-IDLM.", 9)) + nks_app_id = NKS_APP_IDLM; + else + return gpg_error (GPG_ERR_INV_ID); + certid += nks_app_id == NKS_APP_ESIGN? 10 : 9; - /* Access the KEYD file which is always in the master directory. */ - err = iso7816_select_path (app_get_slot (app), path, DIM (path), 0); + err = switch_application (app, nks_app_id); if (err) return err; - /* Due to the above select we need to re-select our application. */ - app->app_local->need_app_select = 1; - /* Get the two records. */ - err = iso7816_read_record (app->slot, 5, 1, 0, &buffer[0], &buflen[0]); + + if (!hexdigitp (certid) || !hexdigitp (certid+1) + || !hexdigitp (certid+2) || !hexdigitp (certid+3) + || certid[4]) + return gpg_error (GPG_ERR_INV_ID); + fid = xtoi_4 (certid); + for (i=0; filelist[i].fid; i++) + if ((filelist[i].certtype || filelist[i].iskeypair > 0) + && filelist[i].nks_app_id == nks_app_id + && filelist[i].fid == fid) + break; + if (!filelist[i].fid) + return gpg_error (GPG_ERR_NOT_FOUND); + + /* If the requested objects is a plain public key, redirect it to + * the corresponding certificate. This makes it easier for the user + * to figure out which CERTID to use. For example gpg-card shows + * the id of the key and not of the certificate. */ + if (filelist[i].iskeypair > 0) + fid = filelist[i].iskeypair; + + /* We have no selective flush mechanism and given the rare use of + * writecert it won't harm to flush the entire cache. */ + flush_fid_cache (app); + + /* The certificates we support all require PW1.CH. Note that we + * check that the nks_app_id matches which sorts out CERTID values + * which are subkeys to a different nks_app_id. */ + desc = parse_pwidstr (app, "PW1.CH", 0, &tmp_app_id, &pwid); + if (!desc || tmp_app_id != nks_app_id) + return gpg_error (GPG_ERR_INV_ID); + err = verify_pin (app, pwid, desc, pincb, pincb_arg); if (err) return err; - if (all_zero_p (buffer[0], buflen[0])) - { - xfree (buffer[0]); - return gpg_error (GPG_ERR_NOT_FOUND); - } - err = iso7816_read_record (app->slot, 6, 1, 0, &buffer[1], &buflen[1]); + + /* Select the file and write the certificate. */ + err = iso7816_select_file (app_get_slot (app), fid, 0); if (err) { - xfree (buffer[0]); + log_error ("nks: error selecting FID 0x%04X: %s\n", + fid, gpg_strerror (err)); return err; } - if (pk && pklen) + err = iso7816_update_binary (app_get_slot (app), 1, 0, cert, certlen); + if (err) { - *pk = make_canon_sexp_from_rsa_pk (buffer[0], buflen[0], - buffer[1], buflen[1], - pklen); - if (!*pk) - err = gpg_error_from_syserror (); + log_error ("nks: error updating certificate at FID 0x%04X: %s\n", + fid, gpg_strerror (err)); + return err; } - xfree (buffer[0]); - xfree (buffer[1]); - return err; + return 0; } @@ -688,7 +1458,7 @@ (void)pincb; (void)pincb_arg; - if (!strcmp (keyid, "$IFDAUTHKEY") && app->app_local->nks_version >= 3) + if (!strcmp (keyid, "$IFDAUTHKEY") && app->appversion >= 3) ; else return gpg_error (GPG_ERR_INV_ID); @@ -726,6 +1496,7 @@ /* goto leave; */ /* Send the MSE:Store_Public_Key. */ + /* We will need to clear the cache here. */ err = gpg_error (GPG_ERR_NOT_IMPLEMENTED); /* mse = xtrymalloc (1000); */ @@ -746,7 +1517,7 @@ /* mse[10] = 0x82; /\* RSA public exponent of up to 4 bytes. *\/ */ /* mse[12] = rsa_e_len; */ /* memcpy (mse+12, rsa_e, rsa_e_len); */ -/* err = iso7816_manage_security_env (app->slot, 0x81, 0xB6, */ +/* err = iso7816_manage_security_env (app_get_slot (app), 0x81, 0xB6, */ /* mse, sizeof mse); */ leave: @@ -754,6 +1525,63 @@ } +/* Return an allocated string to be used as prompt. Returns NULL on + * malloc error. */ +static char * +make_prompt (app_t app, int remaining, const char *firstline, + const char *extraline) +{ + char *serial, *tmpbuf, *result; + + serial = get_dispserialno (app); + + /* TRANSLATORS: Put a \x1f right before a colon. This can be + * used by pinentry to nicely align the names and values. Keep + * the %s at the start and end of the string. */ + result = xtryasprintf (_("%s" + "Number\x1f: %s%%0A" + "Holder\x1f: %s" + "%s"), + "\x1e", + serial, + "", + ""); + xfree (serial); + if (!result) + return NULL; /* Out of core. */ + + /* Append a "remaining attempts" info if needed. */ + if (remaining != -1 && remaining < 3) + { + char *rembuf; + + /* TRANSLATORS: This is the number of remaining attempts to + * enter a PIN. Use %%0A (double-percent,0A) for a linefeed. */ + rembuf = xtryasprintf (_("Remaining attempts: %d"), remaining); + if (rembuf) + { + tmpbuf = strconcat (firstline, "%0A%0A", result, + "%0A%0A", rembuf, NULL); + xfree (rembuf); + } + else + tmpbuf = NULL; + xfree (result); + result = tmpbuf; + } + else + { + tmpbuf = strconcat (firstline, "%0A%0A", result, + extraline? "%0A%0A":"", extraline, + NULL); + xfree (result); + result = tmpbuf; + } + + return result; +} + + static gpg_error_t basic_pin_checks (const char *pinvalue, int minlen, int maxlen) { @@ -777,21 +1605,67 @@ gpg_error_t (*pincb)(void*, const char *, char **), void *pincb_arg) { - pininfo_t pininfo; int rc; + pininfo_t pininfo; + char *prompt; + const char *extrapromptline = NULL; + int remaining, nullpin; if (!desc) - desc = "PIN"; + desc = "||PIN"; memset (&pininfo, 0, sizeof pininfo); pininfo.fixedlen = -1; - pininfo.minlen = 6; - pininfo.maxlen = 16; + + /* FIXME: TCOS allows to read the min. and max. values - do this. */ + if (app->appversion == 15) + { + if (app->app_local->active_nks_app == NKS_APP_NKS && pwid == 0x03) + pininfo.minlen = 6; + else if (app->app_local->active_nks_app == NKS_APP_ESIGN && pwid == 0x81) + pininfo.minlen = 6; + else + pininfo.minlen = 8; + pininfo.maxlen = 24; + } + else if (app->app_local->active_nks_app == NKS_APP_IDLM) + { + if (pwid == 0x00) + pininfo.minlen = 6; + else + pininfo.minlen = 8; + pininfo.maxlen = 24; + } + else + { + /* For NKS3 we used these fixed values; let's keep this. */ + pininfo.minlen = 6; + pininfo.maxlen = 16; + } + + remaining = iso7816_verify_status (app_get_slot (app), pwid); + nullpin = (remaining == ISO7816_VERIFY_NULLPIN); + if (remaining < 0) + remaining = -1; /* We don't care about the concrete error. */ + if (remaining < 3) + { + if (remaining >= 0) + log_info ("nks: PIN has %d attempts left\n", remaining); + } + + if (nullpin) + { + log_info ("nks: The NullPIN for PIN 0x%02x has not yet been changed\n", + pwid); + extrapromptline = _("Note: PIN has not yet been enabled."); + } if (!opt.disable_pinpad - && !iso7816_check_pinpad (app->slot, ISO7816_VERIFY, &pininfo) ) + && !iso7816_check_pinpad (app_get_slot (app), ISO7816_VERIFY, &pininfo) ) { - rc = pincb (pincb_arg, desc, NULL); + prompt = make_prompt (app, remaining, desc, extrapromptline); + rc = pincb (pincb_arg, prompt, NULL); + xfree (prompt); if (rc) { log_info (_("PIN callback returned error: %s\n"), @@ -799,14 +1673,16 @@ return rc; } - rc = iso7816_verify_kp (app->slot, pwid, &pininfo); + rc = iso7816_verify_kp (app_get_slot (app), pwid, &pininfo); pincb (pincb_arg, NULL, NULL); /* Dismiss the prompt. */ } else { char *pinvalue; - rc = pincb (pincb_arg, desc, &pinvalue); + prompt = make_prompt (app, remaining, desc, extrapromptline); + rc = pincb (pincb_arg, prompt, &pinvalue); + xfree (prompt); if (rc) { log_info ("PIN callback returned error: %s\n", gpg_strerror (rc)); @@ -820,7 +1696,8 @@ return rc; } - rc = iso7816_verify (app->slot, pwid, pinvalue, strlen (pinvalue)); + rc = iso7816_verify (app_get_slot (app), pwid, + pinvalue, strlen (pinvalue)); xfree (pinvalue); } @@ -854,70 +1731,143 @@ static unsigned char rmd160_prefix[15] = /* Object ID is 1.3.36.3.2.1 */ { 0x30, 0x21, 0x30, 0x09, 0x06, 0x05, 0x2b, 0x24, 0x03, 0x02, 0x01, 0x05, 0x00, 0x04, 0x14 }; - int rc, i; - int is_sigg = 0; - int fid; + static unsigned char sha224_prefix[19] = /* (2.16.840.1.101.3.4.2.4) */ + { 0x30, 0x2D, 0x30, 0x0d, 0x06, 0x09, 0x60, 0x86, 0x48, + 0x01, 0x65, 0x03, 0x04, 0x02, 0x04, 0x05, 0x00, 0x04, + 0x1C }; + static unsigned char sha256_prefix[19] = /* (2.16.840.1.101.3.4.2.1) */ + { 0x30, 0x31, 0x30, 0x0d, 0x06, 0x09, 0x60, 0x86, + 0x48, 0x01, 0x65, 0x03, 0x04, 0x02, 0x01, 0x05, + 0x00, 0x04, 0x20 }; + static unsigned char sha384_prefix[19] = /* (2.16.840.1.101.3.4.2.2) */ + { 0x30, 0x41, 0x30, 0x0d, 0x06, 0x09, 0x60, 0x86, + 0x48, 0x01, 0x65, 0x03, 0x04, 0x02, 0x02, 0x05, + 0x00, 0x04, 0x30 }; + static unsigned char sha512_prefix[19] = /* (2.16.840.1.101.3.4.2.3) */ + { 0x30, 0x51, 0x30, 0x0d, 0x06, 0x09, 0x60, 0x86, + 0x48, 0x01, 0x65, 0x03, 0x04, 0x02, 0x03, 0x05, + 0x00, 0x04, 0x40 }; + gpg_error_t err; + int idx; + int pwid; unsigned char kid; unsigned char data[83]; /* Must be large enough for a SHA-1 digest + the largest OID prefix. */ size_t datalen; + int algo; + unsigned int digestlen; /* Length of the hash. */ + unsigned char oidbuf[64]; + size_t oidbuflen; (void)ctrl; - if (!keyidstr || !*keyidstr) - return gpg_error (GPG_ERR_INV_VALUE); switch (indatalen) { - case 16: case 20: case 35: case 47: case 51: case 67: case 83: break; - default: return gpg_error (GPG_ERR_INV_VALUE); + case 20: /* plain SHA-1 or RMD160 digest */ + case 28: /* plain SHA-224 digest */ + case 32: /* plain SHA-256 digest */ + case 48: /* plain SHA-384 digest */ + case 64: /* plain SHA-512 digest */ + case 35: /* ASN.1 encoded SHA-1 or RMD160 digest */ + case 47: /* ASN.1 encoded SHA-224 digest */ + case 51: /* ASN.1 encoded SHA-256 digest */ + case 67: /* ASN.1 encoded SHA-384 digest */ + case 83: /* ASN.1 encoded SHA-512 digest */ + break; + default: + log_info ("nks: invalid length of input data: %zu\n", indatalen); + return gpg_error (GPG_ERR_INV_VALUE); } - /* Check that the provided ID is valid. This is not really needed - but we do it to enforce correct usage by the caller. */ - if (!strncmp (keyidstr, "NKS-NKS3.", 9) ) - ; - else if (!strncmp (keyidstr, "NKS-DF01.", 9) ) - ; - else if (!strncmp (keyidstr, "NKS-SIGG.", 9) ) - is_sigg = 1; - else - return gpg_error (GPG_ERR_INV_ID); - keyidstr += 9; - - rc = switch_application (app, is_sigg); - if (rc) - return rc; + err = find_fid_by_keyref (app, keyidstr, &idx, &algo); + if (err) + return err; - if (is_sigg && app->app_local->sigg_is_msig) + if (app->app_local->active_nks_app == NKS_APP_SIGG + && app->app_local->sigg_is_msig) { log_info ("mass signature cards are not allowed\n"); return gpg_error (GPG_ERR_NOT_SUPPORTED); } - if (!hexdigitp (keyidstr) || !hexdigitp (keyidstr+1) - || !hexdigitp (keyidstr+2) || !hexdigitp (keyidstr+3) - || keyidstr[4]) - return gpg_error (GPG_ERR_INV_ID); - fid = xtoi_4 (keyidstr); - for (i=0; filelist[i].fid; i++) - if (filelist[i].iskeypair && filelist[i].fid == fid) - break; - if (!filelist[i].fid) - return gpg_error (GPG_ERR_NOT_FOUND); - if (!filelist[i].issignkey) - return gpg_error (GPG_ERR_INV_ID); - kid = filelist[i].kid; + if (!filelist[idx].issignkey) + { + log_debug ("key %s is not a signing key\n", keyidstr); + return gpg_error (GPG_ERR_INV_ID); + } + + kid = filelist[idx].kid; + + digestlen = gcry_md_get_algo_dlen (hashalgo); + + /* Prepare the input object from INDATA. */ + if (algo == GCRY_PK_ECC) + { + if (digestlen != 32 && digestlen != 48 && digestlen != 64) + { + log_error ("nks: ECC signing not possible: dlen=%u\n", digestlen); + return gpg_error (GPG_ERR_DIGEST_ALGO); + } + + if (indatalen == digestlen) + { + /* Already prepared. */ + datalen = indatalen; + log_assert (datalen <= sizeof data); + memcpy (data, indata, datalen); + } + else if (indatalen > digestlen) + { + /* Assume a PKCS#1 prefix and remove it. */ + oidbuflen = sizeof oidbuf; + err = gcry_md_get_asnoid (hashalgo, &oidbuf, &oidbuflen); + if (err) + { + log_error ("nks: no OID for hash algo %d\n", hashalgo); + return gpg_error (GPG_ERR_INTERNAL); + } + if (indatalen != oidbuflen + digestlen + || memcmp (indata, oidbuf, oidbuflen)) + { + log_error ("nks: input data too long for ECC: len=%zu\n", + indatalen); + return gpg_error (GPG_ERR_INV_VALUE); + } + datalen = indatalen - oidbuflen; + log_assert (datalen <= sizeof data); + memcpy (data, (const char*)indata + oidbuflen, datalen); + } + else + { + log_error ("nks: input data too short for ECC: len=%zu\n", + indatalen); + return gpg_error (GPG_ERR_INV_VALUE); + } + } + else if (app->appversion > 2 && (indatalen == 35 + || indatalen == 47 + || indatalen == 51 + || indatalen == 67 + || indatalen == 83)) + { + /* Verify that the caller has sent a proper ASN.1 encoded hash + for RMD160 or SHA-{1,224,256,384,512}. */ +#define X(algo,prefix,plaindigestlen) \ + if (hashalgo == (algo) \ + && indatalen == sizeof prefix + (plaindigestlen) \ + && !memcmp (indata, prefix, sizeof prefix)) \ + ; + X(GCRY_MD_RMD160, rmd160_prefix, 20) + else X(GCRY_MD_SHA1, sha1_prefix, 20) + else X(GCRY_MD_SHA224, sha224_prefix, 28) + else X(GCRY_MD_SHA256, sha256_prefix, 32) + else X(GCRY_MD_SHA384, sha384_prefix, 48) + else X(GCRY_MD_SHA512, sha512_prefix, 64) + else + return gpg_error (GPG_ERR_UNSUPPORTED_ALGORITHM); +#undef X - /* Prepare the DER object from INDATA. */ - if (app->app_local->nks_version > 2 && (indatalen == 35 - || indatalen == 47 - || indatalen == 51 - || indatalen == 67 - || indatalen == 83)) - { - /* The caller send data matching the length of the ASN.1 encoded - hash for SHA-{1,224,256,384,512}. Assume that is okay. */ - assert (indatalen <= sizeof data); + log_assert (indatalen <= sizeof data); memcpy (data, indata, indatalen); datalen = indatalen; } @@ -934,43 +1884,67 @@ memcpy (data, indata, indatalen); datalen = 35; } - else if (indatalen == 20) - { - if (hashalgo == GCRY_MD_SHA1) - memcpy (data, sha1_prefix, 15); - else if (hashalgo == GCRY_MD_RMD160) - memcpy (data, rmd160_prefix, 15); - else - return gpg_error (GPG_ERR_UNSUPPORTED_ALGORITHM); - memcpy (data+15, indata, indatalen); - datalen = 35; - } + /* Concatenate prefix and digest. + * Note that the X macro creates an "else if". Ugly - I know. */ +#define X(algo,prefix,plaindigestlen) \ + if ((hashalgo == (algo)) && (indatalen == (plaindigestlen))) \ + { \ + datalen = sizeof prefix + indatalen; \ + log_assert (datalen <= sizeof data); \ + memcpy (data, prefix, sizeof prefix); \ + memcpy (data + sizeof prefix, indata, indatalen); \ + } + else X(GCRY_MD_RMD160, rmd160_prefix, 20) + else X(GCRY_MD_SHA1, sha1_prefix, 20) + else X(GCRY_MD_SHA224, sha224_prefix, 28) + else X(GCRY_MD_SHA256, sha256_prefix, 32) + else X(GCRY_MD_SHA384, sha384_prefix, 48) + else X(GCRY_MD_SHA512, sha512_prefix, 64) else return gpg_error (GPG_ERR_INV_VALUE); +#undef X - - /* Send an MSE for PSO:Computer_Signature. */ - if (app->app_local->nks_version > 2) + /* Send an MSE for PSO:Compute_Signature. */ + if (app->appversion > 2 && app->app_local->active_nks_app != NKS_APP_ESIGN) { unsigned char mse[6]; + unsigned int mselen; - mse[0] = 0x80; /* Algorithm reference. */ - mse[1] = 1; - mse[2] = 2; /* RSA, card does pkcs#1 v1.5 padding, no ASN.1 check. */ - mse[3] = 0x84; /* Private key reference. */ - mse[4] = 1; - mse[5] = kid; - rc = iso7816_manage_security_env (app->slot, 0x41, 0xB6, - mse, sizeof mse); + if (algo == GCRY_PK_ECC) + { + mse[0] = 0x84; /* Private key reference. */ + mse[1] = 1; + mse[2] = kid; + mselen = 3; + } + else /* RSA */ + { + mse[0] = 0x80; /* Algorithm reference. */ + mse[1] = 1; + mse[2] = 2; /* Card does pkcs#1 v1.5 padding, no ASN.1 check. */ + mse[3] = 0x84; /* Private key reference. */ + mse[4] = 1; + mse[5] = kid; + mselen = 6; + } + err = iso7816_manage_security_env (app_get_slot (app), 0x41, 0xB6, + mse, mselen); } - /* Verify using PW1.CH. */ - if (!rc) - rc = verify_pin (app, 0, NULL, pincb, pincb_arg); + + if (app->app_local->active_nks_app == NKS_APP_ESIGN) + pwid = 0x81; + else if (app->appversion == 15) + pwid = 0x03; + else + pwid = 0x00; + + if (!err) + err = verify_pin (app, pwid, NULL, pincb, pincb_arg); /* Compute the signature. */ - if (!rc) - rc = iso7816_compute_ds (app->slot, 0, data, datalen, 0, - outdata, outdatalen); - return rc; + if (!err) + err = iso7816_compute_ds (app_get_slot (app), 0, data, datalen, 0, + outdata, outdatalen); + return err; } @@ -986,48 +1960,53 @@ unsigned char **outdata, size_t *outdatalen, unsigned int *r_info) { - int rc, i; - int is_sigg = 0; - int fid; + gpg_error_t err; + int idx; int kid; + int algo; + int pwid; + int padind; + int extended_mode; (void)ctrl; (void)r_info; - if (!keyidstr || !*keyidstr || !indatalen) + if (!indatalen) return gpg_error (GPG_ERR_INV_VALUE); - /* Check that the provided ID is valid. This is not really needed - but we do it to enforce correct usage by the caller. */ - if (!strncmp (keyidstr, "NKS-NKS3.", 9) ) - ; - else if (!strncmp (keyidstr, "NKS-DF01.", 9) ) - ; - else if (!strncmp (keyidstr, "NKS-SIGG.", 9) ) - is_sigg = 1; - else - return gpg_error (GPG_ERR_INV_ID); - keyidstr += 9; - - rc = switch_application (app, is_sigg); - if (rc) - return rc; + err = find_fid_by_keyref (app, keyidstr, &idx, &algo); + if (err) + return err; - if (!hexdigitp (keyidstr) || !hexdigitp (keyidstr+1) - || !hexdigitp (keyidstr+2) || !hexdigitp (keyidstr+3) - || keyidstr[4]) - return gpg_error (GPG_ERR_INV_ID); - fid = xtoi_4 (keyidstr); - for (i=0; filelist[i].fid; i++) - if (filelist[i].iskeypair && filelist[i].fid == fid) - break; - if (!filelist[i].fid) - return gpg_error (GPG_ERR_NOT_FOUND); - if (!filelist[i].isenckey) + if (!filelist[idx].isencrkey) return gpg_error (GPG_ERR_INV_ID); - kid = filelist[i].kid; - if (app->app_local->nks_version > 2) + kid = filelist[idx].kid; + + if (app->appversion <= 2) + { + static const unsigned char mse[] = + { + 0x80, 1, 0x10, /* Select algorithm RSA. */ + 0x84, 1, 0x81 /* Select local secret key 1 for decryption. */ + }; + err = iso7816_manage_security_env (app_get_slot (app), 0xC1, 0xB8, + mse, sizeof mse); + extended_mode = 0; + padind = 0x81; + } + else if (algo == GCRY_PK_ECC) + { + unsigned char mse[3]; + mse[0] = 0x84; /* Private key reference. */ + mse[1] = 1; + mse[2] = kid; + err = iso7816_manage_security_env (app_get_slot (app), 0x41, 0xB8, + mse, sizeof mse); + extended_mode = 0; + padind = 0x00; + } + else { unsigned char mse[6]; mse[0] = 0x80; /* Algorithm reference. */ @@ -1036,58 +2015,77 @@ mse[3] = 0x84; /* Private key reference. */ mse[4] = 1; mse[5] = kid; - rc = iso7816_manage_security_env (app->slot, 0x41, 0xB8, - mse, sizeof mse); + err = iso7816_manage_security_env (app_get_slot (app), 0x41, 0xB8, + mse, sizeof mse); + extended_mode = 1; + padind = 0x81; } - else + if (err) { - static const unsigned char mse[] = - { - 0x80, 1, 0x10, /* Select algorithm RSA. */ - 0x84, 1, 0x81 /* Select local secret key 1 for decryption. */ - }; - rc = iso7816_manage_security_env (app->slot, 0xC1, 0xB8, - mse, sizeof mse); - + log_error ("nks: MSE failed: %s\n", gpg_strerror (err)); + goto leave; } - if (!rc) - rc = verify_pin (app, 0, NULL, pincb, pincb_arg); + /* We use the Global PIN 1 */ + if (app->appversion == 15) + pwid = 0x03; + else + pwid = 0x00; - /* Note that we need to use extended length APDUs for TCOS 3 cards. - Command chaining does not work. */ - if (!rc) - rc = iso7816_decipher (app->slot, app->app_local->nks_version > 2? 1:0, - indata, indatalen, 0, 0x81, - outdata, outdatalen); - return rc; + err = verify_pin (app, pwid, NULL, pincb, pincb_arg); + if (err) + goto leave; + + err = iso7816_decipher (app_get_slot (app), extended_mode, + indata, indatalen, 0, padind, + outdata, outdatalen); + + leave: + return err; } /* Parse a password ID string. Returns NULL on error or a string - suitable as passphrase prompt on success. On success stores the - reference value for the password at R_PWID and a flag indicating - that the SigG application is to be used at R_SIGG. If NEW_MODE is - true, the returned description is suitable for a new Password. - Supported values for PWIDSTR are: - - PW1.CH - Global password 1 - PW2.CH - Global password 2 - PW1.CH.SIG - SigG password 1 - PW2.CH.SIG - SigG password 2 + * suitable as passphrase prompt on success. On success stores the + * reference value for the password at R_PWID and a flag indicating + * which app is to be used at R_NKS_APP_ID. If NEW_MODE is true, the + * returned description is suitable for a new password. Here is a + * take mapping the PWIDSTR to the used PWIDs: + * + * | pwidstr | | NKS3 | NKS15 | IDKEY1 | + * |------------+--------------+------+-------+--------| + * | PW1.CH | Global PIN 1 | 0x00 | 0x03 | 0x00 | + * | PW2.CH | Global PIN 2 | 0x01 | 0x04 | 0x01 | + * | PW1.CH.SIG | SigG PIN 1 | 0x81 | 0x81 | - | + * | PW2.CH.SIG | SigG PIN 2 | 0x83 | 0x82 | - | + * + * The names for PWIDSTR are taken from the NKS3 specs; the specs of + * other cards use different names but we keep using the. PIN1 can be + * used to unlock PIN2 and vice versa; for consistence with other + * cards we name PIN2 a "PUK". The IDKEY card also features a Card + * Reset Key (CR Key 0x01) which can also be used to reset PIN1. + * + * For testing it is possible to specify the PWID directly; the + * prompts are then not very descriptive: + * + * NKS.0xnn - Switch to NKS and select id 0xnn + * SIGG.0xnn - Switch to SigG and select id 0xnn + * ESIGN.0xnn - Switch to ESIGN and select id 0xnn */ static const char * -parse_pwidstr (const char *pwidstr, int new_mode, int *r_sigg, int *r_pwid) +parse_pwidstr (app_t app, const char *pwidstr, int new_mode, + int *r_nks_app_id, int *r_pwid) { const char *desc; + int nks15 = app->appversion == 15; if (!pwidstr) desc = NULL; else if (!strcmp (pwidstr, "PW1.CH")) { - *r_sigg = 0; - *r_pwid = 0x00; + *r_nks_app_id = NKS_APP_NKS; + *r_pwid = nks15? 0x03 : 0x00; /* TRANSLATORS: Do not translate the "|*|" prefixes but keep them verbatim at the start of the string. */ desc = (new_mode @@ -1096,33 +2094,74 @@ } else if (!strcmp (pwidstr, "PW2.CH")) { - *r_pwid = 0x01; + *r_nks_app_id = NKS_APP_NKS; + *r_pwid = nks15? 0x04 : 0x01; desc = (new_mode ? _("|NP|Please enter a new PIN Unblocking Code (PUK) " "for the standard keys.") : _("|P|Please enter the PIN Unblocking Code (PUK) " "for the standard keys.")); } - else if (!strcmp (pwidstr, "PW1.CH.SIG")) + else if (!strcmp (pwidstr, "PW1.CH.SIG") && !app->app_local->only_idlm) { + *r_nks_app_id = app->app_local->qes_app_id; *r_pwid = 0x81; - *r_sigg = 1; desc = (new_mode ? _("|N|Please enter a new PIN for the key to create " "qualified signatures.") : _("||Please enter the PIN for the key to create " "qualified signatures.")); } - else if (!strcmp (pwidstr, "PW2.CH.SIG")) + else if (!strcmp (pwidstr, "PW2.CH.SIG") && !app->app_local->only_idlm) { - *r_pwid = 0x83; /* Yes, that is 83 and not 82. */ - *r_sigg = 1; + *r_nks_app_id = app->app_local->qes_app_id; + *r_pwid = nks15? 0x82 : 0x83; desc = (new_mode ? _("|NP|Please enter a new PIN Unblocking Code (PUK) " "for the key to create qualified signatures.") : _("|P|Please enter the PIN Unblocking Code (PUK) " "for the key to create qualified signatures.")); } + else if (!strncmp (pwidstr, "NKS.0x", 6) + && hexdigitp (pwidstr+6) && hexdigitp (pwidstr+7) && !pwidstr[8]) + { + /* Hack to help debugging. */ + *r_nks_app_id = NKS_APP_NKS; + *r_pwid = xtoi_2 (pwidstr+6); + desc = (new_mode + ? "|N|Please enter a new PIN for the given NKS pwid" + : "||Please enter the PIN for the given NKS pwid" ); + } + else if (!strncmp (pwidstr, "SIGG.0x", 7) + && hexdigitp (pwidstr+7) && hexdigitp (pwidstr+8) && !pwidstr[9]) + { + /* Hack to help debugging. */ + *r_nks_app_id = NKS_APP_SIGG; + *r_pwid = xtoi_2 (pwidstr+7); + desc = (new_mode + ? "|N|Please enter a new PIN for the given SIGG pwid" + : "||Please enter the PIN for the given SIGG pwid" ); + } + else if (!strncmp (pwidstr, "ESIGN.0x", 8) + && hexdigitp (pwidstr+8) && hexdigitp (pwidstr+9) && !pwidstr[10]) + { + /* Hack to help debugging. */ + *r_nks_app_id = NKS_APP_ESIGN; + *r_pwid = xtoi_2 (pwidstr+8); + desc = (new_mode + ? "|N|Please enter a new PIN for the given ESIGN pwid" + : "||Please enter the PIN for the given ESIGN pwid" ); + } + else if (!strncmp (pwidstr, "IDLM.0x", 7) + && hexdigitp (pwidstr+7) && hexdigitp (pwidstr+8) && !pwidstr[9]) + { + /* Hack to help debugging. */ + *r_nks_app_id = NKS_APP_IDLM; + *r_pwid = xtoi_2 (pwidstr+7); + desc = (new_mode + ? "|N|Please enter a new PIN for the given IDLM pwid" + : "||Please enter the PIN for the given IDLM pwid" ); + } else { *r_pwid = 0; /* Only to avoid gcc warning in calling function. */ @@ -1146,10 +2185,12 @@ char *oldpin = NULL; size_t newpinlen; size_t oldpinlen; - int is_sigg; + int nks_app_id; const char *newdesc; int pwid; pininfo_t pininfo; + int remaining; + char *prompt; (void)ctrl; @@ -1159,14 +2200,14 @@ pininfo.minlen = 6; pininfo.maxlen = 16; - newdesc = parse_pwidstr (pwidstr, 1, &is_sigg, &pwid); + newdesc = parse_pwidstr (app, pwidstr, 1, &nks_app_id, &pwid); if (!newdesc) return gpg_error (GPG_ERR_INV_ID); if ((flags & APP_CHANGE_FLAG_CLEAR)) return gpg_error (GPG_ERR_UNSUPPORTED_OPERATION); - err = switch_application (app, is_sigg); + err = switch_application (app, nks_app_id); if (err) return err; @@ -1180,7 +2221,15 @@ err = gpg_error_from_syserror (); goto leave; } - oldpinlen = 6; + if (app->appversion == 15) + { + memset (oldpin, '0', 5); + oldpinlen = 5; /* 5 ascii zeroes. */ + } + else + { + oldpinlen = 6; /* 6 binary Nuls. */ + } } else { @@ -1205,14 +2254,27 @@ err = gpg_error (GPG_ERR_BUG); goto leave; } - desc = parse_pwidstr (altpwidstr, 0, &dummy1, &dummy2); + desc = parse_pwidstr (app, altpwidstr, 0, &dummy1, &dummy2); + remaining = iso7816_verify_status (app_get_slot (app), dummy2); } else { /* Regular change mode: Ask for the old PIN. */ - desc = parse_pwidstr (pwidstr, 0, &dummy1, &dummy2); + desc = parse_pwidstr (app, pwidstr, 0, &dummy1, &dummy2); + remaining = iso7816_verify_status (app_get_slot (app), pwid); + } + + if (remaining < 0) + remaining = -1; /* We don't care about the concrete error. */ + if (remaining < 3) + { + if (remaining >= 0) + log_info ("nks: PIN has %d attempts left\n", remaining); } - err = pincb (pincb_arg, desc, &oldpin); + + prompt = make_prompt (app, remaining, desc, NULL); + err = pincb (pincb_arg, prompt, &oldpin); + xfree (prompt); if (err) { log_error ("error getting old PIN: %s\n", gpg_strerror (err)); @@ -1224,7 +2286,10 @@ goto leave; } - err = pincb (pincb_arg, newdesc, &newpin); + + prompt = make_prompt (app, -1, newdesc, NULL); + err = pincb (pincb_arg, prompt, &newpin); + xfree (prompt); if (err) { log_error (_("error getting new PIN: %s\n"), gpg_strerror (err)); @@ -1273,16 +2338,16 @@ { gpg_error_t err; int pwid; - int is_sigg; + int nks_app_id; const char *desc; (void)ctrl; - desc = parse_pwidstr (pwidstr, 0, &is_sigg, &pwid); + desc = parse_pwidstr (app, pwidstr, 0, &nks_app_id, &pwid); if (!desc) return gpg_error (GPG_ERR_INV_ID); - err = switch_application (app, is_sigg); + err = switch_application (app, nks_app_id); if (err) return err; @@ -1290,6 +2355,73 @@ } +/* Process the various keygrip based info requests. */ +static gpg_error_t +do_with_keygrip (app_t app, ctrl_t ctrl, int action, + const char *want_keygripstr, int capability) +{ + gpg_error_t err; + char keygripstr[2*KEYGRIP_LEN+1]; + char *serialno = NULL; + int data = 0; + int idx = -1; + + /* First a quick check for valid parameters. */ + switch (action) + { + case KEYGRIP_ACTION_LOOKUP: + if (!want_keygripstr) + { + return gpg_error (GPG_ERR_NOT_FOUND); + } + break; + case KEYGRIP_ACTION_SEND_DATA: + data = 1; + break; + case KEYGRIP_ACTION_WRITE_STATUS: + break; + default: + return gpg_error (GPG_ERR_INV_ARG); + } + + /* Allocate the S/N string if needed. */ + if (action != KEYGRIP_ACTION_LOOKUP) + { + serialno = app_get_serialno (app); + if (!serialno) + return gpg_error_from_syserror (); + } + + while (1) + { + err = iterate_over_filelist (app, want_keygripstr, capability, + keygripstr, &idx); + if (err) + break; + + if (want_keygripstr) + { + if (!err) + break; + } + else + { + char idbuf[20]; + char usagebuf[5]; + + snprintf (idbuf, sizeof idbuf, "NKS-%s.%04X", + get_nks_tag (app, app->app_local->active_nks_app), + filelist[idx].fid); + set_usage_string (usagebuf, idx); + send_keyinfo (ctrl, data, keygripstr, serialno, idbuf, usagebuf); + } + } + + xfree (serialno); + return err; +} + + /* Return the version of the NKS application. */ static int get_nks_version (int slot) @@ -1301,48 +2433,67 @@ if (iso7816_apdu_direct (slot, "\x80\xaa\x06\x00\x00", 5, 0, NULL, &result, &resultlen)) return 2; /* NKS 2 does not support this command. */ - - /* Example value: 04 11 19 22 21 6A 20 80 03 03 01 01 01 00 00 00 - vv tt ccccccccccccccccc aa bb cc vvvvvvvvvvv xx - vendor (Philips) -+ | | | | | | | - chip type -----------+ | | | | | | - chip id ----------------+ | | | | | - card type (3 - tcos 3) -------------------+ | | | | - OS version of card type ---------------------+ | | | - OS release of card type ------------------------+ | | - OS vendor internal version ------------------------+ | - RFU -----------------------------------------------------------+ - */ + /* Example values: 04 11 19 22 21 6A 20 80 03 03 01 01 01 00 00 00 + * 05 a0 22 3e c8 0c 04 20 0f 01 b6 01 01 00 00 02 + * vv tt ccccccccccccccccc aa bb cc vv ff rr rr xx + * vendor -----------+ | | | | | | | | | | + * chip type -----------+ | | | | | | | | | + * chip id ----------------+ | | | | | | | | + * card type --------------------------------+ | | | | | | | + * OS version of card type ---------------------+ | | | | | | + * OS release of card type ------------------------+ | | | | | + * Completion code version number --------------------+ | | | | + * File system version ----------------------------------+ | | | + * RFU (00) ------------------------------------------------+ | | + * RFU (00) ---------------------------------------------------+ | + * Authentication key identifier ---------------------------------+ + * + * vendor 4 := Philips + * 5 := Infinion + * card type 3 := TCOS 3 + * 15 := TCOS Signature Card (bb,cc is the ROM mask version) + * Completion code version number Bit 7..5 := pre-completion code version + * Bit 4..0 := completion code version + * (pre-completion by chip vendor) + * (completion by OS developer) + */ if (resultlen < 16) type = 0; /* Invalid data returned. */ else type = result[8]; xfree (result); - return type; } -/* If ENABLE_SIGG is true switch to the SigG application if not yet - active. If false switch to the NKS application if not yet active. - Returns 0 on success. */ +/* Switch to the NKS app identified by NKS_APP_ID if not yet done. + * Returns 0 on success. */ static gpg_error_t -switch_application (app_t app, int enable_sigg) +switch_application (app_t app, int nks_app_id) { gpg_error_t err; - if (((app->app_local->sigg_active && enable_sigg) - || (!app->app_local->sigg_active && !enable_sigg)) + if (app->app_local->only_idlm) + return 0; /* No switching at all */ + if (app->app_local->active_nks_app == nks_app_id && !app->app_local->need_app_select) return 0; /* Already switched. */ - log_info ("app-nks: switching to %s\n", enable_sigg? "SigG":"NKS"); - if (enable_sigg) - err = iso7816_select_application (app->slot, aid_sigg, sizeof aid_sigg, 0); + log_info ("nks: switching to %s\n", + nks_app_id == NKS_APP_ESIGN? "eSign" : + nks_app_id == NKS_APP_SIGG? "SigG" : "NKS"); + + if (nks_app_id == NKS_APP_ESIGN) + err = iso7816_select_application (app_get_slot (app), + aid_esign, sizeof aid_esign, 0); + else if (nks_app_id == NKS_APP_SIGG) + err = iso7816_select_application (app_get_slot (app), + aid_sigg, sizeof aid_sigg, 0); else err = iso7816_select_application (app->slot, aid_nks, sizeof aid_nks, 0); - if (!err && enable_sigg && app->app_local->nks_version >= 3 + if (!err && nks_app_id == NKS_APP_SIGG + && app->appversion >= 3 && !app->app_local->sigg_msig_checked) { /* Check whether this card is a mass signature card. */ @@ -1367,17 +2518,19 @@ xfree (buffer); } if (app->app_local->sigg_is_msig) - log_info ("This is a mass signature card\n"); + log_info ("nks: This is a mass signature card\n"); } if (!err) { app->app_local->need_app_select = 0; - app->app_local->sigg_active = enable_sigg; + app->app_local->active_nks_app = nks_app_id; } else - log_error ("app-nks: error switching to %s: %s\n", - enable_sigg? "SigG":"NKS", gpg_strerror (err)); + log_error ("nks: error switching to %s: %s\n", + nks_app_id == NKS_APP_ESIGN? "eSign" : + nks_app_id == NKS_APP_SIGG? "SigG" : "NKS", + gpg_strerror (err)); return err; } @@ -1389,8 +2542,14 @@ { int slot = app->slot; int rc; + int is_idlm = 0; rc = iso7816_select_application (slot, aid_nks, sizeof aid_nks, 0); + if (rc) + { + is_idlm = 1; + rc = iso7816_select_application (slot, aid_idlm, sizeof aid_idlm, 0); + } if (!rc) { app->apptype = APPTYPE_NKS; @@ -1402,9 +2561,22 @@ goto leave; } - app->app_local->nks_version = get_nks_version (slot); + app->appversion = get_nks_version (slot); + app->app_local->only_idlm = is_idlm; + if (is_idlm) /* Set it once, there won't be any switching. */ + app->app_local->active_nks_app = NKS_APP_IDLM; + if (opt.verbose) - log_info ("Detected NKS version: %d\n", app->app_local->nks_version); + { + log_info ("Detected NKS version: %d\n", app->appversion); + if (is_idlm) + log_info ("Using only the IDLM application\n"); + } + + if (app->appversion == 15) + app->app_local->qes_app_id = NKS_APP_ESIGN; + else + app->app_local->qes_app_id = NKS_APP_SIGG; app->fnc.deinit = do_deinit; app->fnc.learn_status = do_learn_status; @@ -1412,6 +2584,7 @@ app->fnc.readkey = do_readkey; app->fnc.getattr = do_getattr; app->fnc.setattr = NULL; + app->fnc.writecert = do_writecert; app->fnc.writekey = do_writekey; app->fnc.genkey = NULL; app->fnc.sign = do_sign; @@ -1419,6 +2592,7 @@ app->fnc.decipher = do_decipher; app->fnc.change_pin = do_change_pin; app->fnc.check_pin = do_check_pin; + app->fnc.with_keygrip = do_with_keygrip; } leave: diff -Nru gnupg2-2.2.40/scd/app-openpgp.c gnupg2-2.2.41/scd/app-openpgp.c --- gnupg2-2.2.40/scd/app-openpgp.c 2022-07-25 12:41:42.000000000 +0000 +++ gnupg2-2.2.41/scd/app-openpgp.c 2022-11-25 12:55:13.000000000 +0000 @@ -384,7 +384,7 @@ else exmode = 0; - err = iso7816_get_data (app->slot, exmode, tag, &p, &len); + err = iso7816_get_data (app_get_slot (app), exmode, tag, &p, &len); if (err) return err; if (len) @@ -515,7 +515,7 @@ if (app->appversion > 0x0100 && data_objects[i].get_immediate_in_v11) { exmode = 0; - rc = iso7816_get_data (app->slot, exmode, tag, &buffer, &buflen); + rc = iso7816_get_data (app_get_slot (app), exmode, tag, &buffer, &buflen); if (rc) { *r_rc = rc; @@ -857,7 +857,7 @@ tag2 = 0xCE + keynumber; flush_cache_item (app, 0xCD); - rc = iso7816_put_data (app->slot, 0, tag, fpr, 20); + rc = iso7816_put_data (app_get_slot (app), 0, tag, fpr, 20); if (rc) log_error (_("failed to store the fingerprint: %s\n"),gpg_strerror (rc)); @@ -870,7 +870,7 @@ buf[2] = timestamp >> 8; buf[3] = timestamp; - rc = iso7816_put_data (app->slot, 0, tag2, buf, 4); + rc = iso7816_put_data (app_get_slot (app), 0, tag2, buf, 4); if (rc) log_error (_("failed to store the creation date: %s\n"), gpg_strerror (rc)); @@ -1756,7 +1756,7 @@ le_value = 256; /* Use legacy value. */ } - err = iso7816_read_public_key (app->slot, exmode, + err = iso7816_read_public_key (app_get_slot (app), exmode, (keyno == 0? "\xB6" : keyno == 1? "\xB8" : "\xA4"), 2, le_value, &buffer, &buflen); @@ -2279,7 +2279,7 @@ /* Special case for def_chv2 mechanism. */ if (opt.verbose) log_info (_("using default PIN as %s\n"), "CHV2"); - rc = iso7816_verify (app->slot, 0x82, "123456", 6); + rc = iso7816_verify (app_get_slot (app), 0x82, "123456", 6); if (rc) { /* Verification of CHV2 with the default PIN failed, @@ -2312,7 +2312,7 @@ } if (!opt.disable_pinpad - && !iso7816_check_pinpad (app->slot, ISO7816_VERIFY, &pininfo) + && !iso7816_check_pinpad (app_get_slot (app), ISO7816_VERIFY, &pininfo) && !check_pinpad_request (app, &pininfo, 0)) { /* The reader supports the verify command through the pinpad. @@ -2328,7 +2328,7 @@ gpg_strerror (rc)); return rc; } - rc = iso7816_verify_kp (app->slot, 0x80+chvno, &pininfo); + rc = iso7816_verify_kp (app_get_slot (app), 0x80+chvno, &pininfo); /* Dismiss the prompt. */ pincb (pincb_arg, NULL, NULL); @@ -2359,7 +2359,8 @@ rc = pin2hash_if_kdf (app, chvno, *pinvalue, pinlen); if (!rc) - rc = iso7816_verify (app->slot, 0x80+chvno, *pinvalue, *pinlen); + rc = iso7816_verify (app_get_slot (app), + 0x80 + chvno, *pinvalue, *pinlen); } if (rc) @@ -2501,7 +2502,8 @@ return rc; if (!opt.disable_pinpad - && !iso7816_check_pinpad (app->slot, ISO7816_VERIFY, &pininfo) + && !iso7816_check_pinpad (app_get_slot (app), + ISO7816_VERIFY, &pininfo) && !check_pinpad_request (app, &pininfo, 1)) { /* The reader supports the verify command through the pinpad. */ @@ -2514,7 +2516,7 @@ gpg_strerror (rc)); return rc; } - rc = iso7816_verify_kp (app->slot, 0x83, &pininfo); + rc = iso7816_verify_kp (app_get_slot (app), 0x83, &pininfo); /* Dismiss the prompt. */ pincb (pincb_arg, NULL, NULL); } @@ -2543,7 +2545,7 @@ rc = pin2hash_if_kdf (app, 3, pinvalue, &pinlen); if (!rc) - rc = iso7816_verify (app->slot, 0x83, pinvalue, pinlen); + rc = iso7816_verify (app_get_slot (app), 0x83, pinvalue, pinlen); xfree (pinvalue); } @@ -2638,7 +2640,8 @@ exmode = -254; /* Command chaining with max. 254 bytes. */ else exmode = 0; - rc = iso7816_put_data (app->slot, exmode, table[idx].tag, value, valuelen); + rc = iso7816_put_data (app_get_slot (app), + exmode, table[idx].tag, value, valuelen); if (rc) log_error ("failed to set '%s': %s\n", table[idx].name, gpg_strerror (rc)); @@ -2787,7 +2790,7 @@ /* Version 2 cards. */ if (!opt.disable_pinpad - && !iso7816_check_pinpad (app->slot, + && !iso7816_check_pinpad (app_get_slot (app), ISO7816_CHANGE_REFERENCE_DATA, &pininfo) && !check_pinpad_request (app, &pininfo, chvno == 3)) use_pinpad = 1; @@ -2930,7 +2933,7 @@ rc = pin2hash_if_kdf (app, 1, buffer+pinlen0, &pinlen); } if (!rc) - rc = iso7816_reset_retry_counter_with_rc (app->slot, 0x81, + rc = iso7816_reset_retry_counter_with_rc (app_get_slot (app), 0x81, buffer, pinlen0+pinlen); wipememory (buffer, pinlen0 + pinlen); xfree (buffer); @@ -2947,31 +2950,37 @@ { rc = pin2hash_if_kdf (app, 0, pinvalue, &pinlen); if (!rc) - rc = iso7816_put_data (app->slot, 0, 0xD3, pinvalue, pinlen); + rc = iso7816_put_data (app_get_slot (app), + 0, 0xD3, pinvalue, pinlen); } } else if (reset_mode) { rc = pin2hash_if_kdf (app, 1, pinvalue, &pinlen); if (!rc) - rc = iso7816_reset_retry_counter (app->slot, 0x81, pinvalue, pinlen); + rc = iso7816_reset_retry_counter (app_get_slot (app), + 0x81, pinvalue, pinlen); if (!rc && !app->app_local->extcap.is_v2) - rc = iso7816_reset_retry_counter (app->slot, 0x82, pinvalue, pinlen); + rc = iso7816_reset_retry_counter (app_get_slot (app), + 0x82, pinvalue, pinlen); } else if (!app->app_local->extcap.is_v2) { /* Version 1 cards. */ if (chvno == 1 || chvno == 2) { - rc = iso7816_change_reference_data (app->slot, 0x81, NULL, 0, + rc = iso7816_change_reference_data (app_get_slot (app), + 0x81, NULL, 0, pinvalue, strlen (pinvalue)); if (!rc) - rc = iso7816_change_reference_data (app->slot, 0x82, NULL, 0, + rc = iso7816_change_reference_data (app_get_slot (app), + 0x82, NULL, 0, pinvalue, strlen (pinvalue)); } else /* CHVNO == 3 */ { - rc = iso7816_change_reference_data (app->slot, 0x80 + chvno, NULL, 0, + rc = iso7816_change_reference_data (app_get_slot (app), + 0x80 + chvno, NULL, 0, pinvalue, strlen (pinvalue)); } } @@ -3045,7 +3054,7 @@ assert (keyidx >=0 && keyidx <= 2); - if (iso7816_get_data (app->slot, 0, 0x006E, &buffer, &buflen)) + if (iso7816_get_data (app_get_slot (app), 0, 0x006E, &buffer, &buflen)) { log_error (_("error reading application data\n")); return gpg_error (GPG_ERR_GENERAL); @@ -3378,7 +3387,7 @@ return err; /* Change the attribute. */ - err = iso7816_put_data (app->slot, 0, 0xC1+keyno, buf, buflen); + err = iso7816_put_data (app_get_slot (app), 0, 0xC1+keyno, buf, buflen); if (err) log_error ("error changing key attribute (key=%d)\n", keyno+1); else @@ -3770,7 +3779,7 @@ exmode = -254; else exmode = 0; - err = iso7816_put_data_odd (app->slot, exmode, 0x3fff, + err = iso7816_put_data_odd (app_get_slot (app), exmode, 0x3fff, template, template_len); } else @@ -3820,7 +3829,7 @@ goto leave; /* Store the key. */ - err = iso7816_put_data (app->slot, 0, + err = iso7816_put_data (app_get_slot (app), 0, (app->appversion > 0x0007? 0xE0:0xE9)+keyno, template, template_len); } @@ -4094,7 +4103,7 @@ exmode = -254; else exmode = 0; - err = iso7816_put_data_odd (app->slot, exmode, 0x3fff, + err = iso7816_put_data_odd (app_get_slot (app), exmode, 0x3fff, template, template_len); xfree (template); } @@ -4262,7 +4271,7 @@ log_info (_("please wait while key is being generated ...\n")); start_at = time (NULL); - err = iso7816_generate_keypair (app->slot, exmode, 0x80, 0, + err = iso7816_generate_keypair (app_get_slot (app), exmode, 0x80, 0, (keyno == 0? "\xB6" : keyno == 1? "\xB8" : "\xA4"), 2, le_value, &buffer, &buflen); @@ -4623,7 +4632,8 @@ char *pinvalue; int pinlen; - rc = verify_a_chv (app, pincb, pincb_arg, 1, sigcount, &pinvalue, &pinlen); + rc = verify_a_chv (app, pincb, pincb_arg, 1, sigcount, + &pinvalue, &pinlen); if (rc) return rc; @@ -4636,7 +4646,7 @@ pinpad has been used. */ if (!app->did_chv2 && pinvalue && !app->app_local->extcap.is_v2) { - rc = iso7816_verify (app->slot, 0x82, pinvalue, pinlen); + rc = iso7816_verify (app_get_slot (app), 0x82, pinvalue, pinlen); if (gpg_err_code (rc) == GPG_ERR_BAD_PIN) rc = gpg_error (GPG_ERR_PIN_NOT_SYNCED); if (rc) @@ -4664,7 +4674,7 @@ exmode = 0; le_value = 0; } - rc = iso7816_compute_ds (app->slot, exmode, data, datalen, le_value, + rc = iso7816_compute_ds (app_get_slot (app), exmode, data, datalen, le_value, outdata, outdatalen); if (!rc && app->force_chv1) app->did_chv1 = 0; @@ -4756,7 +4766,7 @@ exmode = 0; le_value = 0; } - rc = iso7816_internal_authenticate (app->slot, exmode, + rc = iso7816_internal_authenticate (app_get_slot (app), exmode, indata, indatalen, le_value, outdata, outdatalen); } @@ -4951,7 +4961,7 @@ else exmode = le_value = 0; - rc = iso7816_decipher (app->slot, exmode, + rc = iso7816_decipher (app_get_slot (app), exmode, indata, indatalen, le_value, padind, outdata, outdatalen); xfree (fixbuf); @@ -5309,7 +5319,7 @@ app_select_openpgp (app_t app) { static char const aid[] = { 0xD2, 0x76, 0x00, 0x01, 0x24, 0x01 }; - int slot = app->slot; + int slot = app_get_slot (app); gpg_error_t err; unsigned char *buffer; size_t buflen; diff -Nru gnupg2-2.2.40/scd/app-p15.c gnupg2-2.2.41/scd/app-p15.c --- gnupg2-2.2.40/scd/app-p15.c 2022-07-05 15:13:26.000000000 +0000 +++ gnupg2-2.2.41/scd/app-p15.c 2022-12-08 09:58:19.000000000 +0000 @@ -744,7 +744,15 @@ /* On CardOS with a Linear TLV file structure the records starts * with some tag (often the record number) followed by the length * byte for this record. Detect and remove this prefix. */ - if (*buflen > 2 && (*buffer)[0] != 0x30 && (*buffer)[1] == *buflen - 2) + if (*buflen == 2 && !(*buffer)[0] && !(*buffer)[1]) + ; /* deleted record. */ + else if (*buflen > 3 && (*buffer)[0] == 0xff + && buf16_to_uint ((*buffer)+1) == *buflen - 3) + { + memmove (*buffer, *buffer + 3, *buflen - 3); + *buflen = *buflen - 3; + } + else if (*buflen > 2 && (*buffer)[0] != 0x30 && (*buffer)[1] == *buflen - 2) { memmove (*buffer, *buffer + 2, *buflen - 2); *buflen = *buflen - 2; @@ -1771,6 +1779,9 @@ starting with 0x00 or 0xff as these values are commonly used to pad data blocks and are no valid ASN.1 encoding. Note the special handling for record mode at the end of the loop. */ + if (record_mode && buflen == 2 && !buffer[0] && !buffer[1]) + goto next_record; /* Deleted record - continue with next */ + while (n && *p && *p != 0xff) { const unsigned char *pp; @@ -2026,6 +2037,8 @@ err = 0; goto leave; } + if (buflen == 2 && !buffer[0] && !buffer[1]) + goto next_record; /* Deleted record - continue with next */ p = buffer; n = buflen; } @@ -2075,6 +2088,9 @@ * starting with 0x00 or 0xff as these values are commonly used to * pad data blocks and are no valid ASN.1 encoding. Note the * special handling for record mode at the end of the loop. */ + if (record_mode && buflen == 2 && !buffer[0] && !buffer[1]) + goto next_record; /* Deleted record - continue with next */ + while (n && *p && *p != 0xff) { const unsigned char *pp; @@ -2352,6 +2368,8 @@ err = 0; goto leave; } + if (buflen == 2 && !buffer[0] && !buffer[1]) + goto next_record; /* Deleted record - continue with next */ p = buffer; n = buflen; } @@ -2402,6 +2420,9 @@ starting with 0x00 or 0xff as these values are commonly used to pad data blocks and are no valid ASN.1 encoding. Note the special handling for record mode at the end of the loop. */ + if (record_mode && buflen == 2 && !buffer[0] && !buffer[1]) + goto next_record; /* Deleted record - continue with next */ + while (n && *p && *p != 0xff) { const unsigned char *pp; @@ -2623,8 +2644,8 @@ err = 0; next_record: - xfree (authid); - xfree (label); + xfree (authid); authid = NULL; + xfree (label); label = NULL; /* If the card uses a record oriented file structure, read the * next record. Otherwise we keep on parsing the current buffer. */ recno++; @@ -2633,11 +2654,14 @@ xfree (buffer); buffer = NULL; err = select_and_read_record (app, 0, recno, "CDF", &buffer, &buflen, NULL); - if (err) { - if (gpg_err_code (err) == GPG_ERR_NOT_FOUND) - err = 0; - goto leave; - } + if (err) + { + if (gpg_err_code (err) == GPG_ERR_NOT_FOUND) + err = 0; + goto leave; + } + if (buflen == 2 && !buffer[0] && !buffer[1]) + goto next_record; /* Deleted record - continue with next */ p = buffer; n = buflen; } @@ -2726,6 +2750,9 @@ starting with 0x00 or 0xff as these values are commonly used to pad data blocks and are no valid ASN.1 encoding. Note the special handling for record mode at the end of the loop. */ + if (record_mode && buflen == 2 && !buffer[0] && !buffer[1]) + goto next_record; /* Deleted record - continue with next */ + while (n && *p && *p != 0xff) { const unsigned char *pp; @@ -3295,6 +3322,8 @@ err = 0; goto leave; } + if (buflen == 2 && !buffer[0] && !buffer[1]) + goto next_record; /* Deleted record - continue with next */ p = buffer; n = buflen; } @@ -6030,7 +6059,7 @@ goto leave; } - send_keyinfo (ctrl, as_data, prkdf->keygrip, serialno, keyref); + send_keyinfo (ctrl, as_data, prkdf->keygrip, serialno, keyref, NULL); xfree (keyref); if (want_keygripstr) { diff -Nru gnupg2-2.2.40/scd/app-sc-hsm.c gnupg2-2.2.41/scd/app-sc-hsm.c --- gnupg2-2.2.40/scd/app-sc-hsm.c 2022-02-24 13:06:38.000000000 +0000 +++ gnupg2-2.2.41/scd/app-sc-hsm.c 2022-11-25 12:55:13.000000000 +0000 @@ -483,7 +483,8 @@ if (!fid) return gpg_error (GPG_ERR_NO_DATA); /* No private keys. */ - err = select_and_read_binary (app->slot, fid, "PrKDF", &buffer, &buflen, 255); + err = select_and_read_binary (app_get_slot (app), + fid, "PrKDF", &buffer, &buflen, 255); if (err) return err; @@ -831,7 +832,7 @@ xfree (buffer); buffer = NULL; buflen = 0; - err = select_and_read_binary (app->slot, + err = select_and_read_binary (app_get_slot (app), ((SC_HSM_EE_PREFIX << 8) | (fid & 0xFF)), "CertEF", &buffer, &buflen, 1); if (!err && buffer[0] == 0x30) @@ -952,7 +953,8 @@ if (!fid) return gpg_error (GPG_ERR_NO_DATA); /* No certificates. */ - err = select_and_read_binary (app->slot, fid, "CDF", &buffer, &buflen, 255); + err = select_and_read_binary (app_get_slot (app), fid, "CDF", + &buffer, &buflen, 255); if (err) return err; @@ -1201,7 +1203,7 @@ size_t n, objlen, hdrlen, chrlen; int class, tag, constructed, ndef; - err = select_and_read_binary (app->slot, 0x2F02, "EF.C_DevAut", + err = select_and_read_binary (app_get_slot (app), 0x2F02, "EF.C_DevAut", &buffer, &buflen, 512); if (err) return err; @@ -1259,7 +1261,7 @@ if (err) return err; - err = list_ef (app->slot, &eflist, &eflistlen); + err = list_ef (app_get_slot (app), &eflist, &eflistlen); if (err) return err; @@ -1405,7 +1407,7 @@ { gpg_error_t err; - if ((flags & 1)) + if ((flags & APP_LEARN_FLAG_KEYPAIRINFO)) err = 0; else { @@ -1453,7 +1455,7 @@ return 0; } - err = select_and_read_binary (app->slot, cdf->fid, "CD", + err = select_and_read_binary (app_get_slot (app), cdf->fid, "CD", &buffer, &buflen, 4096); if (err) { @@ -1692,8 +1694,8 @@ char *prompt; int sw; - sw = apdu_send_simple (app->slot, 0, 0x00, ISO7816_VERIFY, 0x00, 0x81, - -1, NULL); + sw = apdu_send_simple (app_get_slot (app), + 0, 0x00, ISO7816_VERIFY, 0x00, 0x81, -1, NULL); if (sw == SW_SUCCESS) return 0; /* PIN already verified */ @@ -1718,7 +1720,7 @@ prompt = "||Please enter the PIN"; if (!opt.disable_pinpad - && !iso7816_check_pinpad (app->slot, ISO7816_VERIFY, &pininfo) ) + && !iso7816_check_pinpad (app_get_slot (app), ISO7816_VERIFY, &pininfo) ) { err = pincb (pincb_arg, prompt, NULL); if (err) @@ -1727,7 +1729,7 @@ return err; } - err = iso7816_verify_kp (app->slot, 0x81, &pininfo); + err = iso7816_verify_kp (app_get_slot (app), 0x81, &pininfo); pincb (pincb_arg, NULL, NULL); /* Dismiss the prompt. */ } else @@ -1739,7 +1741,8 @@ return err; } - err = iso7816_verify (app->slot, 0x81, pinvalue, strlen(pinvalue)); + err = iso7816_verify (app_get_slot (app), + 0x81, pinvalue, strlen(pinvalue)); xfree (pinvalue); } if (err) @@ -1884,7 +1887,8 @@ if (err) return err; - sw = apdu_send_le (app->slot, 1, 0x80, 0x68, prkdf->key_reference, algoid, + sw = apdu_send_le (app_get_slot (app), + 1, 0x80, 0x68, prkdf->key_reference, algoid, cdsblklen, cdsblk, 0, outdata, outdatalen); return iso7816_map_sw (sw); } @@ -2021,7 +2025,8 @@ if (err) return err; - sw = apdu_send_le (app->slot, 1, 0x80, 0x62, prkdf->key_reference, 0x21, + sw = apdu_send_le (app_get_slot (app), + 1, 0x80, 0x62, prkdf->key_reference, 0x21, p1blklen, p1blk, 0, &rspdata, &rspdatalen); err = iso7816_map_sw (sw); if (err) @@ -2047,7 +2052,7 @@ gpg_error_t app_select_sc_hsm (app_t app) { - int slot = app->slot; + int slot = app_get_slot (app); int rc; rc = iso7816_select_application (slot, sc_hsm_aid, sizeof sc_hsm_aid, 0); diff -Nru gnupg2-2.2.40/scd/command.c gnupg2-2.2.41/scd/command.c --- gnupg2-2.2.40/scd/command.c 2022-07-05 15:13:26.000000000 +0000 +++ gnupg2-2.2.41/scd/command.c 2022-10-28 09:58:28.000000000 +0000 @@ -1903,14 +1903,15 @@ * data line, else as a status line. */ void send_keyinfo (ctrl_t ctrl, int data, const char *keygrip_str, - const char *serialno, const char *idstr) + const char *serialno, const char *idstr, const char *usage) { char *string; assuan_context_t ctx = ctrl->server_local->assuan_ctx; - string = xtryasprintf ("%s T %s %s%s", keygrip_str, + string = xtryasprintf ("%s T %s %s %s%s", keygrip_str, serialno? serialno : "-", idstr? idstr : "-", + usage? usage : "-", data? "\n" : ""); if (!string) diff -Nru gnupg2-2.2.40/scd/iso7816.c gnupg2-2.2.41/scd/iso7816.c --- gnupg2-2.2.40/scd/iso7816.c 2022-02-24 13:06:38.000000000 +0000 +++ gnupg2-2.2.41/scd/iso7816.c 2022-10-20 10:22:07.000000000 +0000 @@ -56,6 +56,7 @@ #define CMD_GET_CHALLENGE 0x84 #define CMD_READ_BINARY 0xB0 #define CMD_READ_RECORD 0xB2 +#define CMD_UPDATE_BINARY 0xD6 static gpg_error_t map_sw (int sw) @@ -1025,6 +1026,7 @@ return 0; } + gpg_error_t iso7816_read_record (int slot, int recno, int reccount, int short_ef, unsigned char **result, size_t *resultlen) @@ -1032,3 +1034,23 @@ return iso7816_read_record_ext (slot, recno, reccount, short_ef, result, resultlen, NULL); } + + +/* Perform an UPDATE BINARY command on card in SLOT. Write DATA of + * length DATALEN to a transparent file at OFFSET. */ +gpg_error_t +iso7816_update_binary (int slot, int extended_mode, size_t offset, + const void *data, size_t datalen) +{ + int sw; + + /* We can only encode 15 bits in p0,p1 to indicate an offset. Thus + * we check for this limit. */ + if (offset > 32767) + return gpg_error (GPG_ERR_INV_VALUE); + + sw = apdu_send_simple (slot, extended_mode, 0x00, CMD_UPDATE_BINARY, + ((offset>>8) & 0xff), (offset & 0xff), + datalen, (const char*)data); + return map_sw (sw); +} diff -Nru gnupg2-2.2.40/scd/iso7816.h gnupg2-2.2.41/scd/iso7816.h --- gnupg2-2.2.40/scd/iso7816.h 2022-02-24 13:06:38.000000000 +0000 +++ gnupg2-2.2.41/scd/iso7816.h 2022-10-20 10:22:07.000000000 +0000 @@ -150,5 +150,7 @@ gpg_error_t iso7816_read_record (int slot, int recno, int reccount, int short_ef, unsigned char **result, size_t *resultlen); +gpg_error_t iso7816_update_binary (int slot, int extended_mode, size_t offset, + const void *data, size_t datalen); #endif /*ISO7816_H*/ diff -Nru gnupg2-2.2.40/scd/scdaemon.h gnupg2-2.2.41/scd/scdaemon.h --- gnupg2-2.2.40/scd/scdaemon.h 2022-07-05 15:13:26.000000000 +0000 +++ gnupg2-2.2.41/scd/scdaemon.h 2022-10-28 09:58:30.000000000 +0000 @@ -126,7 +126,8 @@ gpg_error_t initialize_module_command (void); int scd_command_handler (ctrl_t, int); void send_keyinfo (ctrl_t ctrl, int data, const char *keygrip_str, - const char *serialno, const char *idstr); + const char *serialno, const char *idstr, + const char *usage); void send_status_info (ctrl_t ctrl, const char *keyword, ...) GPGRT_ATTR_SENTINEL(1); gpg_error_t send_status_direct (ctrl_t ctrl, const char *keyword, diff -Nru gnupg2-2.2.40/sm/certchain.c gnupg2-2.2.41/sm/certchain.c --- gnupg2-2.2.40/sm/certchain.c 2022-02-24 13:06:38.000000000 +0000 +++ gnupg2-2.2.41/sm/certchain.c 2022-12-06 07:25:41.000000000 +0000 @@ -350,7 +350,7 @@ /* With no critical policies this is only a warning */ if (!any_critical) { - if (!opt.quiet) + if (opt.verbose) do_list (0, listmode, fplist, _("Note: non-critical certificate policy not allowed")); return 0; @@ -380,7 +380,8 @@ /* With no critical policies this is only a warning */ if (!any_critical) { - do_list (0, listmode, fplist, + if (opt.verbose) + do_list (0, listmode, fplist, _("Note: non-critical certificate policy not allowed")); return 0; } diff -Nru gnupg2-2.2.40/tests/gpgme/all-tests.scm gnupg2-2.2.41/tests/gpgme/all-tests.scm --- gnupg2-2.2.40/tests/gpgme/all-tests.scm 2017-08-28 10:22:54.000000000 +0000 +++ gnupg2-2.2.41/tests/gpgme/all-tests.scm 2022-11-25 12:59:21.000000000 +0000 @@ -40,6 +40,7 @@ (make-environment-cache (test::scm #f + #f (path-join "tests" "gpgme" "setup.scm" "tests" "gpg") (in-srcdir "tests" "gpgme" "setup.scm") "--" "tests" "gpg"))) @@ -47,6 +48,7 @@ (make-environment-cache (test::scm #f + #f (path-join "tests" "gpgme" "setup.scm" "lang" "python" "tests") (in-srcdir "tests" "gpgme" "setup.scm") "--" "lang" "python" "tests"))) @@ -71,6 +73,7 @@ (map (lambda (name) (apply test::scm `(,(:setup cmpnts) + #f ,(apply path-join `("tests" "gpgme" ,@(:path cmpnts) ,name)) ,(in-srcdir "tests" "gpgme" "wrap.scm") diff -Nru gnupg2-2.2.40/tests/gpgme/Makefile.am gnupg2-2.2.41/tests/gpgme/Makefile.am --- gnupg2-2.2.40/tests/gpgme/Makefile.am 2022-02-24 13:06:38.000000000 +0000 +++ gnupg2-2.2.41/tests/gpgme/Makefile.am 2022-11-25 12:59:10.000000000 +0000 @@ -45,7 +45,7 @@ .PHONY: xcheck xcheck: - $(TESTS_ENVIRONMENT) $(abs_top_builddir)/tests/gpgscm/gpgscm \ + $(TESTS_ENVIRONMENT) $(abs_top_builddir)/tests/gpgscm/gpgscm$(EXEEXT) \ $(abs_srcdir)/run-tests.scm $(TESTFLAGS) $(TESTS) EXTRA_DIST = gpgme-defs.scm run-tests.scm setup.scm wrap.scm all-tests.scm diff -Nru gnupg2-2.2.40/tests/gpgme/Makefile.in gnupg2-2.2.41/tests/gpgme/Makefile.in --- gnupg2-2.2.40/tests/gpgme/Makefile.in 2022-10-10 11:57:18.000000000 +0000 +++ gnupg2-2.2.41/tests/gpgme/Makefile.in 2022-12-09 08:47:54.000000000 +0000 @@ -616,7 +616,7 @@ .PHONY: xcheck xcheck: - $(TESTS_ENVIRONMENT) $(abs_top_builddir)/tests/gpgscm/gpgscm \ + $(TESTS_ENVIRONMENT) $(abs_top_builddir)/tests/gpgscm/gpgscm$(EXEEXT) \ $(abs_srcdir)/run-tests.scm $(TESTFLAGS) $(TESTS) # We need to depend on a couple of programs so that the tests don't diff -Nru gnupg2-2.2.40/tests/gpgscm/ffi.c gnupg2-2.2.41/tests/gpgscm/ffi.c --- gnupg2-2.2.40/tests/gpgscm/ffi.c 2022-02-24 13:06:38.000000000 +0000 +++ gnupg2-2.2.41/tests/gpgscm/ffi.c 2022-11-25 12:59:17.000000000 +0000 @@ -353,6 +353,11 @@ #ifdef HAVE_W32_SYSTEM if (GetTempPath (MAX_PATH+1, buffer) == 0) FFI_RETURN_STRING (sc, "/temp"); + else + { + size_t len = strlen (buffer); + buffer[len-1] = 0; + } FFI_RETURN_STRING (sc, buffer); #else FFI_RETURN_STRING (sc, "/tmp"); diff -Nru gnupg2-2.2.40/tests/gpgscm/tests.scm gnupg2-2.2.41/tests/gpgscm/tests.scm --- gnupg2-2.2.40/tests/gpgscm/tests.scm 2017-08-28 10:22:54.000000000 +0000 +++ gnupg2-2.2.41/tests/gpgscm/tests.scm 2022-11-25 12:59:21.000000000 +0000 @@ -670,14 +670,14 @@ name)) (package - (define (scm setup name path . args) + (define (scm setup variant name path . args) ;; Start the process. (define (spawn-scm args' in out err) (spawn-process-fd `(,*argv0* ,@(verbosity (*verbose*)) ,(locate-test (test-name path)) ,@(if setup (force setup) '()) ,@args' ,@args) in out err)) - (new name #f spawn-scm #f #f CLOSED_FD (expect-failure? name))) + (new variant name #f spawn-scm #f #f CLOSED_FD (expect-failure? name))) (define (binary setup name path . args) ;; Start the process. @@ -685,9 +685,9 @@ (spawn-process-fd `(,(test-name path) ,@(if setup (force setup) '()) ,@args' ,@args) in out err)) - (new name #f spawn-binary #f #f CLOSED_FD (expect-failure? name))) + (new #f name #f spawn-binary #f #f CLOSED_FD (expect-failure? name))) - (define (new name directory spawn pid retcode logfd expect-failure) + (define (new variant name directory spawn pid retcode logfd expect-failure) (package ;; XXX: OO glue. @@ -716,7 +716,11 @@ (define (open-log-file) (unless log-file-name - (set! log-file-name (string-append (basename name) ".log"))) + (set! log-file-name (path-join + (getenv "objdir") + (if variant + (string-append name "." variant ".log") + (string-append name ".log"))))) (catch '() (unlink log-file-name)) (open log-file-name (logior O_RDWR O_BINARY O_CREAT) #o600)) @@ -765,7 +769,10 @@ (seek logfd 0 SEEK_SET) (splice logfd STDERR_FILENO) (close logfd)) - (echo (string-append (status-string) ":") name)) + (echo (string-append (status-string) ":") + (if variant + (string-append "<" variant ">" name) + name))) (define (xml) (xx::tag diff -Nru gnupg2-2.2.40/tests/gpgsm/all-tests.scm gnupg2-2.2.41/tests/gpgsm/all-tests.scm --- gnupg2-2.2.40/tests/gpgsm/all-tests.scm 2022-02-24 13:06:38.000000000 +0000 +++ gnupg2-2.2.41/tests/gpgsm/all-tests.scm 2022-11-25 12:59:21.000000000 +0000 @@ -30,12 +30,14 @@ (make-environment-cache (test::scm #f + #f (path-join "tests" "gpgsm" "setup.scm") (in-srcdir "tests" "gpgsm" "setup.scm") "--" "tests" "gpg"))) (map (lambda (name) (test::scm setup + #f (path-join "tests" "gpgsm" name) (in-srcdir "tests" "gpgsm" name))) (parse-makefile-expand (in-srcdir "tests" "gpgsm" "Makefile.am") diff -Nru gnupg2-2.2.40/tests/gpgsm/Makefile.am gnupg2-2.2.41/tests/gpgsm/Makefile.am --- gnupg2-2.2.40/tests/gpgsm/Makefile.am 2022-02-24 13:06:38.000000000 +0000 +++ gnupg2-2.2.41/tests/gpgsm/Makefile.am 2022-11-25 12:59:22.000000000 +0000 @@ -53,7 +53,7 @@ .PHONY: xcheck xcheck: - $(TESTS_ENVIRONMENT) $(abs_top_builddir)/tests/gpgscm/gpgscm \ + $(TESTS_ENVIRONMENT) $(abs_top_builddir)/tests/gpgscm/gpgscm$(EXEEXT) \ $(abs_srcdir)/run-tests.scm $(TESTFLAGS) $(TESTS) KEYS = 32100C27173EF6E9C4E9A25D3D69F86D37A4F939 diff -Nru gnupg2-2.2.40/tests/gpgsm/Makefile.in gnupg2-2.2.41/tests/gpgsm/Makefile.in --- gnupg2-2.2.40/tests/gpgsm/Makefile.in 2022-10-10 11:57:18.000000000 +0000 +++ gnupg2-2.2.41/tests/gpgsm/Makefile.in 2022-12-09 08:47:54.000000000 +0000 @@ -636,7 +636,7 @@ .PHONY: xcheck xcheck: - $(TESTS_ENVIRONMENT) $(abs_top_builddir)/tests/gpgscm/gpgscm \ + $(TESTS_ENVIRONMENT) $(abs_top_builddir)/tests/gpgscm/gpgscm$(EXEEXT) \ $(abs_srcdir)/run-tests.scm $(TESTFLAGS) $(TESTS) # We need to depend on a couple of programs so that the tests don't diff -Nru gnupg2-2.2.40/tests/gpgsm/run-tests.scm gnupg2-2.2.41/tests/gpgsm/run-tests.scm --- gnupg2-2.2.40/tests/gpgsm/run-tests.scm 2022-02-24 13:06:38.000000000 +0000 +++ gnupg2-2.2.41/tests/gpgsm/run-tests.scm 2022-11-25 12:59:21.000000000 +0000 @@ -28,6 +28,7 @@ (define setup (make-environment-cache (test::scm #f + #f (path-join "tests" "gpgsm" "setup.scm") (in-srcdir "tests" "gpgsm" "setup.scm")))) @@ -35,5 +36,6 @@ (load-tests "tests" "gpgsm") (map (lambda (name) (test::scm setup + #f (path-join "tests" "gpgsm" name) (in-srcdir "tests" "gpgsm" name))) tests))) diff -Nru gnupg2-2.2.40/tests/migrations/all-tests.scm gnupg2-2.2.41/tests/migrations/all-tests.scm --- gnupg2-2.2.40/tests/migrations/all-tests.scm 2017-08-28 10:22:54.000000000 +0000 +++ gnupg2-2.2.41/tests/migrations/all-tests.scm 2022-11-25 12:59:21.000000000 +0000 @@ -28,6 +28,7 @@ (map (lambda (name) (test::scm #f + #f (path-join "tests" "migrations" name) (in-srcdir "tests" "migrations" name))) (parse-makefile-expand (in-srcdir "tests" "migrations" "Makefile.am") diff -Nru gnupg2-2.2.40/tests/migrations/from-classic.scm gnupg2-2.2.41/tests/migrations/from-classic.scm --- gnupg2-2.2.40/tests/migrations/from-classic.scm 2017-08-28 10:22:54.000000000 +0000 +++ gnupg2-2.2.41/tests/migrations/from-classic.scm 2022-11-25 12:59:19.000000000 +0000 @@ -26,7 +26,7 @@ (call-check `(,@GPG --list-secret-keys))) (define (assert-migrated) - (unless (file-exists? ".gpg-v21-migrated") + (unless (or (file-exists? ".gpg-v21-migrated") (file-exists? "gpg-v21-migrated")) (error "Not migrated")) (for-each diff -Nru gnupg2-2.2.40/tests/migrations/Makefile.am gnupg2-2.2.41/tests/migrations/Makefile.am --- gnupg2-2.2.40/tests/migrations/Makefile.am 2022-02-24 13:06:38.000000000 +0000 +++ gnupg2-2.2.41/tests/migrations/Makefile.am 2022-11-25 12:59:10.000000000 +0000 @@ -53,7 +53,7 @@ .PHONY: xcheck xcheck: - $(TESTS_ENVIRONMENT) $(abs_top_builddir)/tests/gpgscm/gpgscm \ + $(TESTS_ENVIRONMENT) $(abs_top_builddir)/tests/gpgscm/gpgscm$(EXEEXT) \ $(abs_srcdir)/run-tests.scm $(TESTFLAGS) $(TESTS) EXTRA_DIST = common.scm run-tests.scm setup.scm all-tests.scm \ diff -Nru gnupg2-2.2.40/tests/migrations/Makefile.in gnupg2-2.2.41/tests/migrations/Makefile.in --- gnupg2-2.2.40/tests/migrations/Makefile.in 2022-10-10 11:57:18.000000000 +0000 +++ gnupg2-2.2.41/tests/migrations/Makefile.in 2022-12-09 08:47:54.000000000 +0000 @@ -626,7 +626,7 @@ .PHONY: xcheck xcheck: - $(TESTS_ENVIRONMENT) $(abs_top_builddir)/tests/gpgscm/gpgscm \ + $(TESTS_ENVIRONMENT) $(abs_top_builddir)/tests/gpgscm/gpgscm$(EXEEXT) \ $(abs_srcdir)/run-tests.scm $(TESTFLAGS) $(TESTS) # We need to depend on a couple of programs so that the tests don't diff -Nru gnupg2-2.2.40/tests/migrations/run-tests.scm gnupg2-2.2.41/tests/migrations/run-tests.scm --- gnupg2-2.2.40/tests/migrations/run-tests.scm 2017-08-28 10:22:54.000000000 +0000 +++ gnupg2-2.2.41/tests/migrations/run-tests.scm 2022-11-25 12:59:21.000000000 +0000 @@ -23,5 +23,6 @@ (load-tests "tests" "migrations") (map (lambda (name) (test::scm #f + #f (path-join "tests" "migrations" name) (in-srcdir "tests" "migrations" name))) tests))) diff -Nru gnupg2-2.2.40/tests/openpgp/all-tests.scm gnupg2-2.2.41/tests/openpgp/all-tests.scm --- gnupg2-2.2.40/tests/openpgp/all-tests.scm 2022-02-24 13:06:38.000000000 +0000 +++ gnupg2-2.2.41/tests/openpgp/all-tests.scm 2022-11-25 12:59:21.000000000 +0000 @@ -30,6 +30,7 @@ (make-environment-cache (test::scm #f + #f (path-join "tests" "openpgp" "setup.scm") (in-srcdir "tests" "openpgp" "setup.scm")))) @@ -40,7 +41,8 @@ (make-environment-cache (test::scm #f - (qualify (path-join "tests" "openpgp" "setup.scm") variant) + variant + (path-join "tests" "openpgp" "setup.scm") (in-srcdir "tests" "openpgp" "setup.scm") (string-append "--" variant)))) @@ -55,6 +57,7 @@ (define tests (map (lambda (name) (test::scm setup + #f (path-join "tests" "openpgp" name) (in-srcdir "tests" "openpgp" name))) all-tests)) @@ -64,14 +67,14 @@ tests (map (lambda (name) (test::scm setup-use-keyring - (qualify (path-join "tests" "openpgp" name) - "use-keyring") + "use-keyring" + (path-join "tests" "openpgp" name) (in-srcdir "tests" "openpgp" name) "--use-keyring")) all-tests) (map (lambda (name) (test::scm setup-extended-key-format - (qualify (path-join "tests" "openpgp" name) - "extended-key-format") + "extended-key-format" + (path-join "tests" "openpgp" name) (in-srcdir "tests" "openpgp" name) "--extended-key-format")) all-tests)))) diff -Nru gnupg2-2.2.40/tests/openpgp/issue2941.scm gnupg2-2.2.41/tests/openpgp/issue2941.scm --- gnupg2-2.2.40/tests/openpgp/issue2941.scm 2017-08-28 10:22:54.000000000 +0000 +++ gnupg2-2.2.41/tests/openpgp/issue2941.scm 2022-11-25 12:59:15.000000000 +0000 @@ -29,6 +29,6 @@ (for-each-p "Checking invocation with invalid file descriptors (issue2941)." (lambda (option) - (check-failure `(,(string-append "--" option "=23") --sign gpg.conf))) + (check-failure `(,(string-append "--" option "=233") --sign gpg.conf))) '("status-fd" "attribute-fd" "logger-fd" "override-session-key-fd" "passphrase-fd" "command-fd")) diff -Nru gnupg2-2.2.40/tests/openpgp/Makefile.am gnupg2-2.2.41/tests/openpgp/Makefile.am --- gnupg2-2.2.40/tests/openpgp/Makefile.am 2022-02-24 13:06:38.000000000 +0000 +++ gnupg2-2.2.41/tests/openpgp/Makefile.am 2022-11-30 10:01:41.000000000 +0000 @@ -116,7 +116,7 @@ .PHONY: xcheck xcheck: - $(TESTS_ENVIRONMENT) $(abs_top_builddir)/tests/gpgscm/gpgscm \ + $(TESTS_ENVIRONMENT) $(abs_top_builddir)/tests/gpgscm/gpgscm$(EXEEXT) \ $(abs_srcdir)/run-tests.scm $(TESTFLAGS) $(TESTS) TEST_FILES = pubring.asc secring.asc plain-1o.asc plain-2o.asc plain-3o.asc \ diff -Nru gnupg2-2.2.40/tests/openpgp/Makefile.in gnupg2-2.2.41/tests/openpgp/Makefile.in --- gnupg2-2.2.40/tests/openpgp/Makefile.in 2022-10-10 11:57:18.000000000 +0000 +++ gnupg2-2.2.41/tests/openpgp/Makefile.in 2022-12-09 08:47:55.000000000 +0000 @@ -925,7 +925,7 @@ .PHONY: xcheck xcheck: - $(TESTS_ENVIRONMENT) $(abs_top_builddir)/tests/gpgscm/gpgscm \ + $(TESTS_ENVIRONMENT) $(abs_top_builddir)/tests/gpgscm/gpgscm$(EXEEXT) \ $(abs_srcdir)/run-tests.scm $(TESTFLAGS) $(TESTS) clean-local: diff -Nru gnupg2-2.2.40/tests/openpgp/run-tests.scm gnupg2-2.2.41/tests/openpgp/run-tests.scm --- gnupg2-2.2.40/tests/openpgp/run-tests.scm 2017-08-28 10:22:54.000000000 +0000 +++ gnupg2-2.2.41/tests/openpgp/run-tests.scm 2022-11-25 12:59:21.000000000 +0000 @@ -29,6 +29,7 @@ (define setup (make-environment-cache (test::scm #f + #f (path-join "tests" "openpgp" "setup.scm") (in-srcdir "tests" "openpgp" "setup.scm")))) @@ -38,5 +39,6 @@ (load-tests "tests" "openpgp") (map (lambda (name) (test::scm setup + #f (path-join "tests" "openpgp" name) (in-srcdir "tests" "openpgp" name))) tests))) diff -Nru gnupg2-2.2.40/tools/gpg-wks-client.c gnupg2-2.2.41/tools/gpg-wks-client.c --- gnupg2-2.2.40/tools/gpg-wks-client.c 2022-10-07 15:44:44.000000000 +0000 +++ gnupg2-2.2.41/tools/gpg-wks-client.c 2022-12-06 08:25:32.000000000 +0000 @@ -74,6 +74,7 @@ oWithColons, oBlacklist, oNoAutostart, + oAddRevocs, oDummy }; @@ -100,9 +101,9 @@ ARGPARSE_c (aRemoveKey, "remove-key", "remove a key from a directory"), ARGPARSE_c (aPrintWKDHash, "print-wkd-hash", - "Print the WKD identifier for the given user ids"), + "print the WKD identifier for the given user ids"), ARGPARSE_c (aPrintWKDURL, "print-wkd-url", - "Print the WKD URL for the given user id"), + "print the WKD URL for the given user id"), ARGPARSE_group (301, ("@\nOptions:\n ")), @@ -117,6 +118,7 @@ ARGPARSE_s_n (oWithColons, "with-colons", "@"), ARGPARSE_s_s (oBlacklist, "blacklist", "@"), ARGPARSE_s_s (oDirectory, "directory", "@"), + ARGPARSE_s_n (oAddRevocs, "add-revocs", "add revocation certificates"), ARGPARSE_s_s (oFakeSubmissionAddr, "fake-submission-addr", "@"), @@ -254,6 +256,9 @@ case oBlacklist: add_blacklist (pargs->r.ret_str); break; + case oAddRevocs: + opt.add_revocs = 1; + break; case aSupported: case aCreate: @@ -1090,6 +1095,9 @@ log_info (" created: %s\n", asctimestamp (sl->created)); if (sl->mbox) log_info (" addr-spec: %s\n", sl->mbox); + if (sl->expired || sl->revoked) + log_info (" flags:%s%s\n", + sl->expired? " expired":"", sl->revoked?" revoked":""); } } if (!found) @@ -1128,6 +1136,7 @@ uidinfo_list_t uidlist = NULL; uidinfo_list_t uid, thisuid; time_t thistime; + int any; if (classify_user_id (fingerprint, &desc, 1) || !(desc.mode == KEYDB_SEARCH_MODE_FPR @@ -1145,7 +1154,7 @@ err = gpg_error (GPG_ERR_INV_USER_ID); goto leave; } - err = wks_get_key (&key, fingerprint, addrspec, 0); + err = wks_get_key (&key, fingerprint, addrspec, 0, 1); if (err) goto leave; @@ -1189,12 +1198,20 @@ } thistime = 0; thisuid = NULL; + any = 0; for (uid = uidlist; uid; uid = uid->next) { if (!uid->mbox) continue; /* Should not happen anyway. */ if (policy->mailbox_only && ascii_strcasecmp (uid->uid, uid->mbox)) continue; /* UID has more than just the mailbox. */ + if (uid->expired) + { + if (opt.verbose) + log_info ("ignoring expired user id '%s'\n", uid->uid); + continue; + } + any = 1; if (uid->created > thistime) { thistime = uid->created; @@ -1203,6 +1220,14 @@ } if (!thisuid) thisuid = uidlist; /* This is the case for a missing timestamp. */ + if (!any) + { + log_error ("public key %s has no mail address '%s'\n", + fingerprint, addrspec); + err = gpg_error (GPG_ERR_INV_USER_ID); + goto leave; + } + if (opt.verbose) log_info ("submitting key with user id '%s'\n", thisuid->uid); @@ -1213,7 +1238,7 @@ estream_t newkey; es_rewind (key); - err = wks_filter_uid (&newkey, key, thisuid->uid, 0); + err = wks_filter_uid (&newkey, key, thisuid->uid, 1); if (err) { log_error ("error filtering key: %s\n", gpg_strerror (err)); @@ -1238,11 +1263,47 @@ * the key again. */ es_fclose (key); key = NULL; - err = wks_get_key (&key, fingerprint, addrspec, 1); + err = wks_get_key (&key, fingerprint, addrspec, 1, 1); if (err) goto leave; } + if (opt.add_revocs) + { + if (es_fseek (key, 0, SEEK_END)) + { + err = gpg_error_from_syserror (); + log_error ("error seeking stream: %s\n", gpg_strerror (err)); + goto leave; + } + err = wks_find_add_revocs (key, addrspec); + if (err) + { + log_error ("error finding revocations for '%s': %s\n", + addrspec, gpg_strerror (err)); + goto leave; + } + } + + + /* Now put the armor around the key. */ + { + estream_t newkey; + + es_rewind (key); + err = wks_armor_key (&newkey, key, + no_encrypt? NULL + /* */ : ("Content-Type: application/pgp-keys\n" + "\n")); + if (err) + { + log_error ("error armoring key: %s\n", gpg_strerror (err)); + goto leave; + } + es_fclose (key); + key = newkey; + } + /* Hack to support posteo but let them disable this by setting the * new policy-version flag. */ if (policy->protocol_version < 3 @@ -1287,7 +1348,7 @@ if (no_encrypt) { void *data; - size_t datalen, n; + size_t datalen; if (posteo_hack) { @@ -1312,16 +1373,7 @@ goto leave; } key = NULL; - /* We need to skip over the first line which has a content-type - * header not needed here. */ - for (n=0; n < datalen ; n++) - if (((const char *)data)[n] == '\n') - { - n++; - break; - } - - err = mime_maker_add_body_data (mime, (char*)data + n, datalen - n); + err = mime_maker_add_body_data (mime, data, datalen); xfree (data); if (err) goto leave; @@ -1808,7 +1860,7 @@ /* Core of mirror_one_key with the goal of mirroring just one uid. * UIDLIST is used to figure out whether the given MBOX occurs several - * times in UIDLIST and then to single out the newwest one. This is + * times in UIDLIST and then to single out the newest one. This is * so that for a key with * uid: Joe Someone * uid: Joe @@ -1849,24 +1901,36 @@ err = gpg_error (GPG_ERR_NO_USER_ID); goto leave; } - /* FIXME: Consult blacklist. */ - - /* Only if we have more than one user id we bother to run the - * filter. In this case the result will be put into NEWKEY*/ + /* Always filter the key so that the result will be non-armored. */ es_rewind (key); - if (uidlist->next) + err = wks_filter_uid (&newkey, key, thisuid->uid, 1); + if (err) { - err = wks_filter_uid (&newkey, key, thisuid->uid, 0); + log_error ("error filtering key %s: %s\n", fpr, gpg_strerror (err)); + err = gpg_error (GPG_ERR_NO_PUBKEY); + goto leave; + } + + if (opt.add_revocs) + { + if (es_fseek (newkey, 0, SEEK_END)) + { + err = gpg_error_from_syserror (); + log_error ("error seeking stream: %s\n", gpg_strerror (err)); + goto leave; + } + err = wks_find_add_revocs (newkey, mbox); if (err) { - log_error ("error filtering key %s: %s\n", fpr, gpg_strerror (err)); - err = gpg_error (GPG_ERR_NO_PUBKEY); + log_error ("error finding revocations for '%s': %s\n", + mbox, gpg_strerror (err)); goto leave; } + es_rewind (newkey); } - err = wks_install_key_core (newkey? newkey : key, mbox); + err = wks_install_key_core (newkey, mbox); if (opt.verbose) log_info ("key %s published for '%s'\n", fpr, mbox); mirror_one_key_parm.nuids++; @@ -1905,6 +1969,8 @@ { if (!uid->mbox || (uid->flags & 1)) continue; /* No mail box or already processed. */ + if (uid->expired) + continue; if (!domain_matches_mbox (domain, uid->mbox)) continue; /* We don't want this one. */ if (is_in_blacklist (uid->mbox)) diff -Nru gnupg2-2.2.40/tools/gpg-wks.h gnupg2-2.2.41/tools/gpg-wks.h --- gnupg2-2.2.40/tools/gpg-wks.h 2022-10-07 15:44:44.000000000 +0000 +++ gnupg2-2.2.41/tools/gpg-wks.h 2022-12-06 08:25:32.000000000 +0000 @@ -39,6 +39,7 @@ int use_sendmail; int with_colons; int no_autostart; + int add_revocs; const char *output; const char *gpg_program; const char *directory; @@ -80,6 +81,8 @@ time_t created; /* Time the userid was created. */ char *mbox; /* NULL or the malloced mailbox from UID. */ unsigned int flags; /* These flags are cleared on creation. */ + unsigned int expired:1; + unsigned int revoked:1; char uid[1]; }; typedef struct uidinfo_list_s *uidinfo_list_t; @@ -91,11 +94,14 @@ void wks_write_status (int no, const char *format, ...) GPGRT_ATTR_PRINTF(2,3); void free_uidinfo_list (uidinfo_list_t list); gpg_error_t wks_get_key (estream_t *r_key, const char *fingerprint, - const char *addrspec, int exact); + const char *addrspec, int exact, int binary); gpg_error_t wks_list_key (estream_t key, char **r_fpr, uidinfo_list_t *r_mboxes); gpg_error_t wks_filter_uid (estream_t *r_newkey, estream_t key, const char *uid, int binary); +gpg_error_t wks_armor_key (estream_t *r_newkey, estream_t key, + const char *prefix); +gpg_error_t wks_find_add_revocs (estream_t key, const char *addrspec); gpg_error_t wks_send_mime (mime_maker_t mime); gpg_error_t wks_parse_policy (policy_flags_t flags, estream_t stream, int ignore_unknown); diff -Nru gnupg2-2.2.40/tools/wks-util.c gnupg2-2.2.41/tools/wks-util.c --- gnupg2-2.2.40/tools/wks-util.c 2022-10-07 15:43:58.000000000 +0000 +++ gnupg2-2.2.41/tools/wks-util.c 2022-12-06 08:25:53.000000000 +0000 @@ -101,7 +101,8 @@ * updated. C-style escaping is removed from UID. On error ERRNO is * set and NULL returned. */ static uidinfo_list_t -append_to_uidinfo_list (uidinfo_list_t *list, const char *uid, time_t created) +append_to_uidinfo_list (uidinfo_list_t *list, const char *uid, time_t created, + int expired, int revoked) { uidinfo_list_t r, sl; char *plainuid; @@ -121,6 +122,8 @@ sl->created = created; sl->flags = 0; sl->mbox = mailbox_from_userid (plainuid); + sl->expired = !!expired; + sl->revoked = !!revoked; sl->next = NULL; if (!*list) *list = sl; @@ -150,6 +153,21 @@ } +static void +debug_gpg_invocation (const char *func, const char **argv) +{ + int i; + + if (!(opt.debug & DBG_EXTPROG_VALUE)) + return; + + log_debug ("%s: exec '%s' with", func, opt.gpg_program); + for (i=0; argv[i]; i++) + log_printf (" '%s'", argv[i]); + log_printf ("\n"); +} + + struct get_key_status_parm_s { @@ -164,7 +182,8 @@ { struct get_key_status_parm_s *parm = opaque; - /*log_debug ("%s: %s\n", keyword, args);*/ + if (DBG_CRYPTO) + log_debug ("%s: %s\n", keyword, args); if (!strcmp (keyword, "EXPORTED")) { parm->count++; @@ -177,10 +196,11 @@ * mail address ADDRSPEC is included in the key. If EXACT is set the * returned user id must match Addrspec exactly and not just in the * addr-spec (mailbox) part. The key is returned as a new memory - * stream at R_KEY. */ + * stream at R_KEY. If BINARY is set the returned key is + * non-armored. */ gpg_error_t wks_get_key (estream_t *r_key, const char *fingerprint, const char *addrspec, - int exact) + int exact, int binary) { gpg_error_t err; ccparray_t ccp; @@ -202,8 +222,9 @@ } /* Prefix the key with the MIME content type. */ - es_fputs ("Content-Type: application/pgp-keys\n" - "\n", key); + if (!binary) + es_fputs ("Content-Type: application/pgp-keys\n" + "\n", key); filterexp = es_bsprintf ("keep-uid=%s= %s", exact? "uid":"mbox", addrspec); if (!filterexp) @@ -223,7 +244,8 @@ ccparray_put (&ccp, "--batch"); ccparray_put (&ccp, "--status-fd=2"); ccparray_put (&ccp, "--always-trust"); - ccparray_put (&ccp, "--armor"); + if (!binary) + ccparray_put (&ccp, "--armor"); ccparray_put (&ccp, "--export-options=export-minimal"); ccparray_put (&ccp, "--export-filter"); ccparray_put (&ccp, filterexp); @@ -239,6 +261,7 @@ goto leave; } parm.fpr = fingerprint; + debug_gpg_invocation (__func__, argv); err = gnupg_exec_tool_stream (opt.gpg_program, argv, NULL, NULL, key, get_key_status_cb, &parm); @@ -276,6 +299,22 @@ } +/* Parse field 1 and set revoked and expired on return. */ +static void +set_expired_revoked (const char *string, int *expired, int *revoked) +{ + *expired = *revoked = 0; + /* Look at letters and stop at the first digit. */ + for ( ;*string && !digitp (string); string++) + { + if (*string == 'e') + *expired = 1; + else if (*string == 'r') + *revoked = 1; + } +} + + /* Run gpg on KEY and store the primary fingerprint at R_FPR and the * list of mailboxes at R_MBOXES. Returns 0 on success; on error NULL * is stored at R_FPR and R_MBOXES and an error code is returned. @@ -296,6 +335,7 @@ int lnr; char *fpr = NULL; uidinfo_list_t mboxes = NULL; + int expired, revoked; if (r_fpr) *r_fpr = NULL; @@ -332,6 +372,7 @@ err = gpg_error_from_syserror (); goto leave; } + debug_gpg_invocation (__func__, argv); err = gnupg_exec_tool_stream (opt.gpg_program, argv, key, NULL, listing, key_status_cb, NULL); @@ -343,6 +384,7 @@ es_rewind (listing); lnr = 0; + expired = revoked = 0; maxlen = 2048; /* Set limit. */ while ((len = es_read_line (listing, &line, &length_of_line, &maxlen)) > 0) { @@ -387,12 +429,20 @@ err = gpg_error (GPG_ERR_INV_ENGINE); goto leave; } - if (lnr > 1 && !strcmp (fields[0], "pub")) + if (!strcmp (fields[0], "pub")) { - /* More than one public key. */ - err = gpg_error (GPG_ERR_TOO_MANY); - goto leave; + if (lnr > 1) + { + /* More than one public key. */ + err = gpg_error (GPG_ERR_TOO_MANY); + goto leave; + } + if (nfields > 1) + set_expired_revoked (fields[1], &expired, &revoked); + else + expired = revoked = 0; } + if (!strcmp (fields[0], "sub") || !strcmp (fields[0], "ssb")) break; /* We can stop parsing here. */ @@ -407,8 +457,13 @@ } else if (!strcmp (fields[0], "uid") && nfields > 9) { + int uidexpired, uidrevoked; + + set_expired_revoked (fields[1], &uidexpired, &uidrevoked); if (!append_to_uidinfo_list (&mboxes, fields[9], - parse_timestamp (fields[5], NULL))) + parse_timestamp (fields[5], NULL), + expired || uidexpired, + revoked || uidrevoked)) { err = gpg_error_from_syserror (); goto leave; @@ -510,6 +565,7 @@ err = gpg_error_from_syserror (); goto leave; } + debug_gpg_invocation (__func__, argv); err = gnupg_exec_tool_stream (opt.gpg_program, argv, key, NULL, newkey, key_status_cb, NULL); @@ -531,6 +587,124 @@ } +/* Put the ascii-armor around KEY and return that as a new estream + * object at R_NEWKEY. Caller must make sure that KEY has been seeked + * to the right position (usually by calling es_rewind). The + * resulting NEWKEY has already been rewound. If PREFIX is not NULL, + * its content is written to NEWKEY propr to the armor; this may be + * used for MIME headers. */ +gpg_error_t +wks_armor_key (estream_t *r_newkey, estream_t key, const char *prefix) +{ + gpg_error_t err; + estream_t newkey; + struct b64state b64state; + char buffer[4096]; + size_t nread; + + *r_newkey = NULL; + + newkey = es_fopenmem (0, "w+b"); + if (!newkey) + { + err = gpg_error_from_syserror (); + return err; + } + + if (prefix) + es_fputs (prefix, newkey); + + err = b64enc_start_es (&b64state, newkey, "PGP PUBLIC KEY BLOCK"); + if (err) + goto leave; + + do + { + nread = es_fread (buffer, 1, sizeof buffer, key); + if (!nread) + break; + err = b64enc_write (&b64state, buffer, nread); + if (err) + goto leave; + } + while (!es_feof (key) && !es_ferror (key)); + if (!es_feof (key) || es_ferror (key)) + { + err = gpg_error_from_syserror (); + goto leave; + } + + err = b64enc_finish (&b64state); + if (err) + goto leave; + + es_rewind (newkey); + *r_newkey = newkey; + newkey = NULL; + + leave: + es_fclose (newkey); + return err; +} + + +/* Run gpg to export the revocation certificates for ADDRSPEC. Add + * them to KEY which is expected to be non-armored keyblock. */ +gpg_error_t +wks_find_add_revocs (estream_t key, const char *addrspec) +{ + gpg_error_t err; + ccparray_t ccp; + const char **argv = NULL; + char *filterexp = NULL; + + filterexp = es_bsprintf ("select=mbox= %s", addrspec); + if (!filterexp) + { + err = gpg_error_from_syserror (); + log_error ("error allocating memory buffer: %s\n", gpg_strerror (err)); + goto leave; + } + + ccparray_init (&ccp, 0); + + ccparray_put (&ccp, "--no-options"); + if (opt.verbose < 2) + ccparray_put (&ccp, "--quiet"); + else + ccparray_put (&ccp, "--verbose"); + ccparray_put (&ccp, "--batch"); + ccparray_put (&ccp, "--status-fd=2"); + ccparray_put (&ccp, "--export-options=export-revocs"); + ccparray_put (&ccp, "--export-filter"); + ccparray_put (&ccp, filterexp); + ccparray_put (&ccp, "--export"); + ccparray_put (&ccp, addrspec); + + ccparray_put (&ccp, NULL); + argv = ccparray_get (&ccp, NULL); + if (!argv) + { + err = gpg_error_from_syserror (); + goto leave; + } + debug_gpg_invocation (__func__, argv); + err = gnupg_exec_tool_stream (opt.gpg_program, argv, NULL, + NULL, key, + key_status_cb, NULL); + if (err) + { + log_error ("exporting revocs failed: %s\n", gpg_strerror (err)); + goto leave; + } + + leave: + xfree (filterexp); + xfree (argv); + return err; +} + + /* Helper to write mail to the output(s). */ gpg_error_t wks_send_mime (mime_maker_t mime) @@ -1103,7 +1277,7 @@ { /* FNAME looks like a fingerprint. Get the key from the * standard keyring. */ - err = wks_get_key (&fp, fname, addrspec, 0); + err = wks_get_key (&fp, fname, addrspec, 0, 1); if (err) { log_error ("error getting key '%s' (uid='%s'): %s\n", @@ -1140,6 +1314,12 @@ continue; /* Should not happen anyway. */ if (ascii_strcasecmp (uid->mbox, addrspec)) continue; /* Not the requested addrspec. */ + if (uid->expired) + { + if (opt.verbose) + log_info ("ignoring expired user id '%s'\n", uid->uid); + continue; + } any = 1; if (uid->created > thistime) { @@ -1175,6 +1355,24 @@ fp = fp2; } + if (opt.add_revocs) + { + if (es_fseek (fp, 0, SEEK_END)) + { + err = gpg_error_from_syserror (); + log_error ("error seeking stream: %s\n", gpg_strerror (err)); + goto leave; + } + err = wks_find_add_revocs (fp, addrspec); + if (err) + { + log_error ("error finding revocations for '%s': %s\n", + addrspec, gpg_strerror (err)); + goto leave; + } + es_rewind (fp); + } + err = wks_install_key_core (fp, addrspec); if (!opt.quiet) log_info ("key %s published for '%s'\n", fpr, addrspec); diff -Nru gnupg2-2.2.40/VERSION gnupg2-2.2.41/VERSION --- gnupg2-2.2.40/VERSION 2022-10-10 11:57:19.000000000 +0000 +++ gnupg2-2.2.41/VERSION 2022-12-09 08:47:55.000000000 +0000 @@ -1 +1 @@ -2.2.40 +2.2.41