puppet 6.17.0-x64-mingw32 → 7.1.0-x64-mingw32
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of puppet might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/CODEOWNERS +2 -16
- data/Gemfile +3 -4
- data/Gemfile.lock +32 -30
- data/README.md +2 -3
- data/Rakefile +4 -12
- data/conf/fileserver.conf +5 -10
- data/ext/build_defaults.yaml +1 -1
- data/ext/osx/file_mapping.yaml +0 -5
- data/ext/project_data.yaml +2 -14
- data/ext/redhat/puppet.spec.erb +0 -1
- data/ext/windows/service/daemon.rb +6 -5
- data/install.rb +21 -17
- data/lib/puppet.rb +11 -20
- data/lib/puppet/agent/locker.rb +0 -7
- data/lib/puppet/application.rb +172 -98
- data/lib/puppet/application/agent.rb +8 -3
- data/lib/puppet/application/apply.rb +18 -20
- data/lib/puppet/application/device.rb +100 -104
- data/lib/puppet/application/doc.rb +1 -1
- data/lib/puppet/application/filebucket.rb +15 -11
- data/lib/puppet/application/lookup.rb +16 -4
- data/lib/puppet/application/ssl.rb +1 -1
- data/lib/puppet/application_support.rb +7 -0
- data/lib/puppet/configurer.rb +46 -19
- data/lib/puppet/configurer/downloader.rb +31 -10
- data/lib/puppet/configurer/plugin_handler.rb +21 -19
- data/lib/puppet/confine.rb +1 -1
- data/lib/puppet/confine/any.rb +1 -1
- data/lib/puppet/defaults.rb +116 -162
- data/lib/puppet/environments.rb +72 -62
- data/lib/puppet/face/catalog.rb +1 -1
- data/lib/puppet/face/config.rb +56 -16
- data/lib/puppet/face/epp.rb +12 -2
- data/lib/puppet/face/facts.rb +66 -6
- data/lib/puppet/face/help.rb +1 -1
- data/lib/puppet/face/node.rb +3 -3
- data/lib/puppet/face/node/clean.rb +10 -2
- data/lib/puppet/face/plugin.rb +5 -8
- data/lib/puppet/feature/base.rb +1 -1
- data/lib/puppet/ffi/posix.rb +10 -0
- data/lib/puppet/ffi/posix/constants.rb +14 -0
- data/lib/puppet/ffi/posix/functions.rb +24 -0
- data/lib/puppet/ffi/windows.rb +12 -0
- data/lib/puppet/ffi/windows/api_types.rb +311 -0
- data/lib/puppet/ffi/windows/constants.rb +404 -0
- data/lib/puppet/ffi/windows/functions.rb +628 -0
- data/lib/puppet/ffi/windows/structs.rb +338 -0
- data/lib/puppet/file_bucket/dipper.rb +1 -1
- data/lib/puppet/file_serving/configuration.rb +0 -5
- data/lib/puppet/file_serving/configuration/parser.rb +3 -32
- data/lib/puppet/file_serving/http_metadata.rb +1 -1
- data/lib/puppet/file_serving/mount.rb +1 -2
- data/lib/puppet/file_serving/mount/locales.rb +1 -2
- data/lib/puppet/file_serving/mount/pluginfacts.rb +1 -2
- data/lib/puppet/file_serving/mount/plugins.rb +1 -2
- data/lib/puppet/file_system/file_impl.rb +3 -3
- data/lib/puppet/forge/repository.rb +0 -1
- data/lib/puppet/functions/epp.rb +1 -0
- data/lib/puppet/functions/inline_epp.rb +1 -0
- data/lib/puppet/functions/lstrip.rb +4 -4
- data/lib/puppet/functions/new.rb +8 -3
- data/lib/puppet/functions/reverse_each.rb +1 -1
- data/lib/puppet/functions/rstrip.rb +4 -4
- data/lib/puppet/functions/step.rb +1 -1
- data/lib/puppet/functions/strip.rb +4 -4
- data/lib/puppet/generate/models/type/type.rb +4 -1
- data/lib/puppet/gettext/config.rb +5 -5
- data/lib/puppet/gettext/module_translations.rb +4 -4
- data/lib/puppet/http.rb +23 -13
- data/lib/puppet/http/client.rb +165 -115
- data/lib/puppet/{network/resolver.rb → http/dns.rb} +2 -2
- data/lib/puppet/http/errors.rb +16 -0
- data/lib/puppet/http/external_client.rb +5 -7
- data/lib/puppet/{network/http → http}/factory.rb +8 -11
- data/lib/puppet/{network/http → http}/pool.rb +61 -26
- data/lib/puppet/{network/http/session.rb → http/pool_entry.rb} +2 -3
- data/lib/puppet/http/proxy.rb +137 -0
- data/lib/puppet/http/redirector.rb +4 -12
- data/lib/puppet/http/resolver.rb +10 -23
- data/lib/puppet/http/resolver/server_list.rb +23 -45
- data/lib/puppet/http/resolver/settings.rb +7 -10
- data/lib/puppet/http/resolver/srv.rb +11 -15
- data/lib/puppet/http/response.rb +36 -54
- data/lib/puppet/http/response_converter.rb +24 -0
- data/lib/puppet/http/response_net_http.rb +42 -0
- data/lib/puppet/http/retry_after_handler.rb +4 -13
- data/lib/puppet/http/service.rb +15 -27
- data/lib/puppet/http/service/ca.rb +11 -22
- data/lib/puppet/http/service/compiler.rb +23 -70
- data/lib/puppet/http/service/file_server.rb +19 -28
- data/lib/puppet/http/service/puppetserver.rb +53 -0
- data/lib/puppet/http/service/report.rb +8 -10
- data/lib/puppet/http/session.rb +16 -24
- data/lib/puppet/{network/http → http}/site.rb +1 -2
- data/lib/puppet/indirector/catalog/compiler.rb +1 -1
- data/lib/puppet/indirector/catalog/rest.rb +2 -4
- data/lib/puppet/indirector/exec.rb +1 -1
- data/lib/puppet/indirector/fact_search.rb +60 -0
- data/lib/puppet/indirector/facts/facter.rb +27 -6
- data/lib/puppet/indirector/facts/json.rb +27 -0
- data/lib/puppet/indirector/facts/rest.rb +3 -22
- data/lib/puppet/indirector/facts/yaml.rb +4 -59
- data/lib/puppet/indirector/file_bucket_file/rest.rb +3 -9
- data/lib/puppet/indirector/file_content/rest.rb +2 -6
- data/lib/puppet/indirector/file_metadata/http.rb +1 -0
- data/lib/puppet/indirector/file_metadata/rest.rb +3 -9
- data/lib/puppet/indirector/file_server.rb +1 -8
- data/lib/puppet/indirector/generic_http.rb +0 -11
- data/lib/puppet/indirector/hiera.rb +4 -0
- data/lib/puppet/indirector/indirection.rb +1 -1
- data/lib/puppet/indirector/json.rb +5 -1
- data/lib/puppet/indirector/msgpack.rb +1 -1
- data/lib/puppet/indirector/node/json.rb +8 -0
- data/lib/puppet/indirector/node/rest.rb +2 -4
- data/lib/puppet/indirector/report/json.rb +34 -0
- data/lib/puppet/indirector/report/processor.rb +2 -2
- data/lib/puppet/indirector/report/rest.rb +3 -8
- data/lib/puppet/indirector/request.rb +1 -102
- data/lib/puppet/indirector/rest.rb +12 -263
- data/lib/puppet/indirector/yaml.rb +1 -1
- data/lib/puppet/module.rb +1 -2
- data/lib/puppet/module_tool/applications.rb +0 -1
- data/lib/puppet/network/authconfig.rb +2 -96
- data/lib/puppet/network/authorization.rb +13 -35
- data/lib/puppet/network/format_support.rb +2 -2
- data/lib/puppet/network/formats.rb +2 -1
- data/lib/puppet/network/http.rb +3 -3
- data/lib/puppet/network/http/api/indirected_routes.rb +2 -20
- data/lib/puppet/network/http/api/master/v3.rb +11 -13
- data/lib/puppet/network/http/api/master/v3/environments.rb +0 -1
- data/lib/puppet/network/http/connection.rb +247 -316
- data/lib/puppet/network/http/handler.rb +0 -1
- data/lib/puppet/network/http/route.rb +2 -2
- data/lib/puppet/network/http_pool.rb +16 -34
- data/lib/puppet/node.rb +1 -30
- data/lib/puppet/node/environment.rb +12 -5
- data/lib/puppet/node/facts.rb +17 -0
- data/lib/puppet/pal/json_catalog_encoder.rb +4 -0
- data/lib/puppet/pal/pal_impl.rb +93 -14
- data/lib/puppet/parameter.rb +1 -1
- data/lib/puppet/parser/ast/pops_bridge.rb +0 -38
- data/lib/puppet/parser/compiler.rb +0 -198
- data/lib/puppet/parser/compiler/catalog_validator/relationship_validator.rb +14 -39
- data/lib/puppet/parser/functions.rb +21 -17
- data/lib/puppet/parser/functions/create_resources.rb +11 -7
- data/lib/puppet/parser/resource.rb +0 -69
- data/lib/puppet/parser/templatewrapper.rb +1 -1
- data/lib/puppet/parser/type_loader.rb +2 -2
- data/lib/puppet/pops/adaptable.rb +7 -13
- data/lib/puppet/pops/adapters.rb +8 -4
- data/lib/puppet/pops/evaluator/collectors/abstract_collector.rb +1 -3
- data/lib/puppet/pops/evaluator/evaluator_impl.rb +22 -8
- data/lib/puppet/pops/evaluator/runtime3_converter.rb +2 -2
- data/lib/puppet/pops/evaluator/runtime3_resource_support.rb +3 -3
- data/lib/puppet/pops/evaluator/runtime3_support.rb +1 -1
- data/lib/puppet/pops/issues.rb +0 -5
- data/lib/puppet/pops/loader/ruby_legacy_function_instantiator.rb +6 -8
- data/lib/puppet/pops/loader/runtime3_type_loader.rb +4 -2
- data/lib/puppet/pops/loaders.rb +18 -11
- data/lib/puppet/pops/lookup/context.rb +1 -1
- data/lib/puppet/pops/lookup/hiera_config.rb +14 -1
- data/lib/puppet/pops/model/ast.pp +0 -42
- data/lib/puppet/pops/model/ast.rb +0 -290
- data/lib/puppet/pops/model/factory.rb +0 -45
- data/lib/puppet/pops/model/model_label_provider.rb +0 -5
- data/lib/puppet/pops/model/model_tree_dumper.rb +0 -22
- data/lib/puppet/pops/model/pn_transformer.rb +0 -16
- data/lib/puppet/pops/parser/egrammar.ra +0 -56
- data/lib/puppet/pops/parser/eparser.rb +1520 -1712
- data/lib/puppet/pops/parser/lexer2.rb +4 -4
- data/lib/puppet/pops/parser/parser_support.rb +0 -5
- data/lib/puppet/pops/resource/resource_type_impl.rb +2 -24
- data/lib/puppet/pops/types/iterable.rb +34 -8
- data/lib/puppet/pops/types/p_meta_type.rb +1 -1
- data/lib/puppet/pops/types/p_type_set_type.rb +4 -0
- data/lib/puppet/pops/types/type_calculator.rb +0 -7
- data/lib/puppet/pops/types/type_parser.rb +0 -4
- data/lib/puppet/pops/types/types.rb +0 -1
- data/lib/puppet/pops/validation/checker4_0.rb +28 -52
- data/lib/puppet/pops/validation/tasks_checker.rb +0 -12
- data/lib/puppet/pops/validation/validator_factory_4_0.rb +1 -2
- data/lib/puppet/provider.rb +0 -13
- data/lib/puppet/provider/file/windows.rb +1 -1
- data/lib/puppet/provider/nameservice.rb +0 -18
- data/lib/puppet/provider/package/apt.rb +34 -0
- data/lib/puppet/provider/package/dpkg.rb +1 -11
- data/lib/puppet/provider/package/gem.rb +27 -5
- data/lib/puppet/provider/package/pip.rb +0 -1
- data/lib/puppet/provider/package/pip2.rb +17 -0
- data/lib/puppet/provider/package/pkg.rb +0 -4
- data/lib/puppet/provider/package/portage.rb +1 -1
- data/lib/puppet/provider/package/puppet_gem.rb +6 -4
- data/lib/puppet/provider/package/puppetserver_gem.rb +180 -0
- data/lib/puppet/provider/package/yum.rb +1 -0
- data/lib/puppet/provider/package/zypper.rb +3 -0
- data/lib/puppet/provider/service/smf.rb +191 -73
- data/lib/puppet/provider/user/aix.rb +3 -3
- data/lib/puppet/provider/user/directoryservice.rb +0 -10
- data/lib/puppet/provider/user/user_role_add.rb +1 -1
- data/lib/puppet/provider/user/windows_adsi.rb +18 -1
- data/lib/puppet/reference/configuration.rb +2 -0
- data/lib/puppet/reference/indirection.rb +1 -1
- data/lib/puppet/resource.rb +1 -89
- data/lib/puppet/resource/catalog.rb +1 -14
- data/lib/puppet/resource/type.rb +5 -120
- data/lib/puppet/resource/type_collection.rb +3 -48
- data/lib/puppet/runtime.rb +1 -2
- data/lib/puppet/settings.rb +84 -35
- data/lib/puppet/settings/base_setting.rb +26 -2
- data/lib/puppet/settings/integer_setting.rb +17 -0
- data/lib/puppet/settings/port_setting.rb +15 -0
- data/lib/puppet/settings/priority_setting.rb +5 -4
- data/lib/puppet/ssl.rb +10 -6
- data/lib/puppet/ssl/base.rb +3 -5
- data/lib/puppet/ssl/certificate.rb +0 -6
- data/lib/puppet/ssl/certificate_request.rb +1 -12
- data/lib/puppet/ssl/certificate_signer.rb +6 -0
- data/lib/puppet/ssl/oids.rb +3 -1
- data/lib/puppet/ssl/ssl_provider.rb +17 -0
- data/lib/puppet/ssl/state_machine.rb +3 -1
- data/lib/puppet/ssl/verifier.rb +2 -0
- data/lib/puppet/test/test_helper.rb +11 -6
- data/lib/puppet/transaction.rb +3 -9
- data/lib/puppet/transaction/persistence.rb +1 -1
- data/lib/puppet/transaction/report.rb +10 -8
- data/lib/puppet/trusted_external.rb +2 -2
- data/lib/puppet/type.rb +4 -79
- data/lib/puppet/type/file.rb +7 -9
- data/lib/puppet/type/file/checksum.rb +1 -1
- data/lib/puppet/type/file/source.rb +29 -9
- data/lib/puppet/type/filebucket.rb +4 -4
- data/lib/puppet/type/notify.rb +2 -2
- data/lib/puppet/type/package.rb +5 -13
- data/lib/puppet/type/service.rb +4 -0
- data/lib/puppet/type/user.rb +19 -4
- data/lib/puppet/util.rb +26 -12
- data/lib/puppet/util/autoload.rb +9 -7
- data/lib/puppet/util/character_encoding.rb +9 -5
- data/lib/puppet/util/execution.rb +2 -13
- data/lib/puppet/util/http_proxy.rb +2 -215
- data/lib/puppet/util/monkey_patches.rb +0 -46
- data/lib/puppet/util/posix.rb +53 -4
- data/lib/puppet/util/rdoc.rb +0 -7
- data/lib/puppet/util/retry_action.rb +1 -1
- data/lib/puppet/util/rubygems.rb +5 -1
- data/lib/puppet/util/run_mode.rb +14 -2
- data/lib/puppet/util/windows.rb +3 -7
- data/lib/puppet/util/windows/daemon.rb +360 -0
- data/lib/puppet/util/windows/error.rb +1 -0
- data/lib/puppet/util/windows/eventlog.rb +4 -9
- data/lib/puppet/util/windows/file.rb +8 -242
- data/lib/puppet/util/windows/monkey_patches/process.rb +414 -0
- data/lib/puppet/util/windows/process.rb +4 -226
- data/lib/puppet/util/windows/security.rb +4 -4
- data/lib/puppet/util/windows/service.rb +9 -460
- data/lib/puppet/util/windows/string.rb +12 -13
- data/lib/puppet/util/windows/user.rb +219 -0
- data/lib/puppet/util/yaml.rb +0 -22
- data/lib/puppet/vendor/require_vendored.rb +0 -1
- data/lib/puppet/version.rb +1 -1
- data/lib/puppet/x509.rb +5 -1
- data/lib/puppet/x509/cert_provider.rb +29 -1
- data/locales/puppet.pot +656 -1351
- data/man/man5/puppet.conf.5 +72 -97
- data/man/man8/puppet-agent.8 +6 -3
- data/man/man8/puppet-apply.8 +1 -1
- data/man/man8/puppet-catalog.8 +1 -1
- data/man/man8/puppet-config.8 +6 -6
- data/man/man8/puppet-describe.8 +1 -1
- data/man/man8/puppet-device.8 +1 -1
- data/man/man8/puppet-doc.8 +1 -1
- data/man/man8/puppet-epp.8 +1 -1
- data/man/man8/puppet-facts.8 +55 -9
- data/man/man8/puppet-filebucket.8 +6 -6
- data/man/man8/puppet-generate.8 +1 -1
- data/man/man8/puppet-help.8 +1 -1
- data/man/man8/puppet-lookup.8 +2 -2
- data/man/man8/puppet-module.8 +1 -58
- data/man/man8/puppet-node.8 +7 -4
- data/man/man8/puppet-parser.8 +1 -1
- data/man/man8/puppet-plugin.8 +1 -1
- data/man/man8/puppet-report.8 +4 -1
- data/man/man8/puppet-resource.8 +1 -1
- data/man/man8/puppet-script.8 +1 -1
- data/man/man8/puppet-ssl.8 +1 -1
- data/man/man8/puppet.8 +2 -2
- data/spec/fixtures/integration/application/apply/environments/spec/modules/amod/lib/puppet/provider/applytest/applytest.rb +2 -0
- data/spec/fixtures/integration/application/apply/environments/spec/modules/amod/lib/puppet/type/applytest.rb +25 -0
- data/spec/fixtures/unit/forge/bacula-releases.json +128 -0
- data/spec/fixtures/unit/forge/bacula.tar.gz +0 -0
- data/spec/fixtures/unit/provider/package/puppetserver_gem/gem-list-local-packages +30 -0
- data/spec/fixtures/unit/provider/service/smf/{svcs.out → svcs_instances.out} +0 -0
- data/spec/fixtures/unit/provider/user/aix/aix_passwd_file.out +4 -0
- data/spec/integration/application/agent_spec.rb +70 -61
- data/spec/integration/application/apply_spec.rb +150 -150
- data/spec/integration/application/doc_spec.rb +16 -6
- data/spec/integration/application/filebucket_spec.rb +78 -29
- data/spec/integration/application/help_spec.rb +44 -0
- data/spec/integration/application/lookup_spec.rb +13 -0
- data/spec/integration/application/module_spec.rb +68 -0
- data/spec/integration/application/plugin_spec.rb +76 -4
- data/spec/integration/configurer_spec.rb +14 -0
- data/spec/integration/data_binding_spec.rb +82 -0
- data/spec/integration/defaults_spec.rb +32 -3
- data/spec/integration/directory_environments_spec.rb +17 -17
- data/spec/integration/environments/setting_hooks_spec.rb +1 -1
- data/spec/integration/indirector/facts/facter_spec.rb +8 -6
- data/spec/integration/network/http_pool_spec.rb +3 -21
- data/spec/integration/node/environment_spec.rb +1 -1
- data/spec/integration/parser/catalog_spec.rb +0 -38
- data/spec/integration/parser/node_spec.rb +0 -9
- data/spec/integration/parser/pcore_resource_spec.rb +0 -37
- data/spec/integration/type/file_spec.rb +5 -4
- data/spec/integration/util/execution_spec.rb +22 -0
- data/spec/integration/util/windows/adsi_spec.rb +2 -2
- data/spec/integration/util/windows/monkey_patches/process_spec.rb +231 -0
- data/spec/integration/util/windows/process_spec.rb +26 -32
- data/spec/integration/util/windows/security_spec.rb +1 -1
- data/spec/integration/util/windows/user_spec.rb +7 -0
- data/spec/integration/util_spec.rb +7 -33
- data/spec/lib/puppet_spec/matchers.rb +0 -80
- data/spec/lib/puppet_spec/puppetserver.rb +9 -1
- data/spec/lib/puppet_spec/settings.rb +7 -1
- data/spec/shared_contexts/types_setup.rb +2 -0
- data/spec/spec_helper.rb +2 -0
- data/spec/unit/agent_spec.rb +0 -2
- data/spec/unit/application/agent_spec.rb +3 -4
- data/spec/unit/application/config_spec.rb +224 -4
- data/spec/unit/application/doc_spec.rb +2 -2
- data/spec/unit/application/face_base_spec.rb +6 -4
- data/spec/unit/application/facts_spec.rb +74 -8
- data/spec/unit/application/filebucket_spec.rb +41 -39
- data/spec/unit/application/resource_spec.rb +3 -1
- data/spec/unit/application/ssl_spec.rb +17 -4
- data/spec/unit/application_spec.rb +43 -4
- data/spec/unit/certificate_factory_spec.rb +1 -1
- data/spec/unit/configurer/downloader_spec.rb +14 -0
- data/spec/unit/configurer/plugin_handler_spec.rb +56 -18
- data/spec/unit/configurer_spec.rb +96 -44
- data/spec/unit/confine_spec.rb +2 -1
- data/spec/unit/context/trusted_information_spec.rb +2 -6
- data/spec/unit/defaults_spec.rb +26 -32
- data/spec/unit/environments_spec.rb +173 -32
- data/spec/unit/face/config_spec.rb +65 -12
- data/spec/unit/face/facts_spec.rb +4 -0
- data/spec/unit/face/node_spec.rb +16 -4
- data/spec/unit/face/plugin_spec.rb +73 -33
- data/spec/unit/file_bucket/file_spec.rb +1 -1
- data/spec/unit/file_serving/configuration/parser_spec.rb +14 -18
- data/spec/unit/file_serving/configuration_spec.rb +6 -12
- data/spec/unit/file_serving/mount/locales_spec.rb +2 -2
- data/spec/unit/file_serving/mount/pluginfacts_spec.rb +2 -2
- data/spec/unit/file_serving/mount/plugins_spec.rb +2 -2
- data/spec/unit/file_system/uniquefile_spec.rb +18 -0
- data/spec/unit/file_system_spec.rb +1 -2
- data/spec/unit/functions/camelcase_spec.rb +1 -1
- data/spec/unit/functions/capitalize_spec.rb +1 -1
- data/spec/unit/functions/downcase_spec.rb +1 -1
- data/spec/unit/functions/inline_epp_spec.rb +26 -1
- data/spec/unit/functions/upcase_spec.rb +1 -1
- data/spec/unit/http/client_spec.rb +7 -9
- data/spec/unit/{network/resolver_spec.rb → http/dns_spec.rb} +3 -3
- data/spec/unit/http/external_client_spec.rb +4 -4
- data/spec/unit/{network/http → http}/factory_spec.rb +5 -11
- data/spec/unit/{network/http/session_spec.rb → http/pool_entry_spec.rb} +3 -3
- data/spec/unit/{network/http → http}/pool_spec.rb +12 -17
- data/spec/unit/{util/http_proxy_spec.rb → http/proxy_spec.rb} +2 -69
- data/spec/unit/http/resolver_spec.rb +34 -15
- data/spec/unit/http/service/ca_spec.rb +2 -3
- data/spec/unit/http/service/compiler_spec.rb +51 -65
- data/spec/unit/http/service/file_server_spec.rb +5 -6
- data/spec/unit/http/service/puppetserver_spec.rb +112 -0
- data/spec/unit/http/service/report_spec.rb +2 -3
- data/spec/unit/http/service_spec.rb +1 -3
- data/spec/unit/http/session_spec.rb +24 -35
- data/spec/unit/{network/http → http}/site_spec.rb +3 -3
- data/spec/unit/indirector/catalog/json_spec.rb +1 -1
- data/spec/unit/indirector/catalog/rest_spec.rb +1 -1
- data/spec/unit/indirector/facts/facter_spec.rb +97 -0
- data/spec/unit/indirector/facts/json_spec.rb +255 -0
- data/spec/unit/indirector/facts/rest_spec.rb +1 -1
- data/spec/unit/indirector/file_bucket_file/file_spec.rb +5 -3
- data/spec/unit/indirector/file_content/rest_spec.rb +0 -4
- data/spec/unit/indirector/file_metadata/rest_spec.rb +0 -4
- data/spec/unit/indirector/file_server_spec.rb +1 -15
- data/spec/unit/indirector/json_spec.rb +8 -8
- data/spec/unit/indirector/msgpack_spec.rb +8 -8
- data/spec/unit/indirector/node/json_spec.rb +33 -0
- data/spec/unit/indirector/node/rest_spec.rb +1 -1
- data/spec/{integration/indirector/report/yaml.rb → unit/indirector/report/json_spec.rb} +13 -24
- data/spec/unit/indirector/report/rest_spec.rb +2 -17
- data/spec/unit/indirector/report/yaml_spec.rb +72 -8
- data/spec/unit/indirector/request_spec.rb +2 -266
- data/spec/unit/indirector/rest_spec.rb +98 -752
- data/spec/unit/indirector/yaml_spec.rb +7 -7
- data/spec/unit/module_tool/tar/mini_spec.rb +20 -0
- data/spec/unit/network/authconfig_spec.rb +2 -132
- data/spec/unit/network/authorization_spec.rb +2 -55
- data/spec/unit/network/format_support_spec.rb +3 -2
- data/spec/unit/network/formats_spec.rb +4 -4
- data/spec/unit/network/http/api/indirected_routes_spec.rb +1 -97
- data/spec/unit/network/http/api/master/v3/environments_spec.rb +12 -23
- data/spec/unit/network/http/api/master/v3_spec.rb +28 -7
- data/spec/unit/network/http/api_spec.rb +10 -0
- data/spec/unit/network/http/connection_spec.rb +19 -41
- data/spec/unit/network/http/handler_spec.rb +0 -6
- data/spec/unit/network/http_pool_spec.rb +0 -4
- data/spec/unit/node/environment_spec.rb +51 -22
- data/spec/unit/node_spec.rb +2 -54
- data/spec/unit/parser/functions/create_resources_spec.rb +2 -20
- data/spec/unit/parser/templatewrapper_spec.rb +4 -3
- data/spec/unit/pops/evaluator/evaluating_parser_spec.rb +4 -7
- data/spec/unit/pops/loaders/loaders_spec.rb +76 -21
- data/spec/unit/pops/lookup/lookup_spec.rb +25 -0
- data/spec/unit/pops/parser/parse_application_spec.rb +4 -22
- data/spec/unit/pops/parser/parse_basic_expressions_spec.rb +0 -1
- data/spec/unit/pops/parser/parse_capabilities_spec.rb +8 -21
- data/spec/unit/pops/parser/parse_site_spec.rb +20 -24
- data/spec/unit/pops/resource/resource_type_impl_spec.rb +0 -71
- data/spec/unit/pops/serialization/to_from_hr_spec.rb +1 -1
- data/spec/unit/pops/types/type_calculator_spec.rb +6 -6
- data/spec/unit/pops/types/type_factory_spec.rb +1 -1
- data/spec/unit/pops/validator/validator_spec.rb +61 -46
- data/spec/unit/pops/visitor_spec.rb +1 -1
- data/spec/unit/provider/exec_spec.rb +4 -3
- data/spec/unit/provider/nameservice_spec.rb +0 -57
- data/spec/unit/provider/package/apt_spec.rb +77 -0
- data/spec/unit/provider/package/aptitude_spec.rb +1 -0
- data/spec/unit/provider/package/dpkg_spec.rb +22 -55
- data/spec/unit/provider/package/gem_spec.rb +32 -0
- data/spec/unit/provider/package/openbsd_spec.rb +2 -0
- data/spec/unit/provider/package/pip2_spec.rb +36 -0
- data/spec/unit/provider/package/puppet_gem_spec.rb +6 -2
- data/spec/unit/provider/package/puppetserver_gem_spec.rb +137 -0
- data/spec/unit/provider/package/yum_spec.rb +31 -0
- data/spec/unit/provider/package/zypper_spec.rb +14 -0
- data/spec/unit/provider/service/base_spec.rb +2 -4
- data/spec/unit/provider/service/bsd_spec.rb +5 -1
- data/spec/unit/provider/service/daemontools_spec.rb +1 -1
- data/spec/unit/provider/service/debian_spec.rb +3 -5
- data/spec/unit/provider/service/freebsd_spec.rb +1 -1
- data/spec/unit/provider/service/gentoo_spec.rb +4 -5
- data/spec/unit/provider/service/init_spec.rb +45 -5
- data/spec/unit/provider/service/launchd_spec.rb +5 -6
- data/spec/unit/provider/service/openrc_spec.rb +4 -5
- data/spec/unit/provider/service/openwrt_spec.rb +1 -1
- data/spec/unit/provider/service/redhat_spec.rb +1 -1
- data/spec/unit/provider/service/runit_spec.rb +2 -1
- data/spec/unit/provider/service/smf_spec.rb +402 -166
- data/spec/unit/provider/service/src_spec.rb +3 -5
- data/spec/unit/provider/service/systemd_spec.rb +3 -6
- data/spec/unit/provider/service/upstart_spec.rb +4 -5
- data/spec/unit/provider/service/windows_spec.rb +28 -1
- data/spec/unit/provider/user/aix_spec.rb +5 -0
- data/spec/unit/provider/user/pw_spec.rb +2 -0
- data/spec/unit/provider/user/useradd_spec.rb +1 -0
- data/spec/unit/provider/user/windows_adsi_spec.rb +82 -0
- data/spec/unit/provider_spec.rb +0 -12
- data/spec/unit/puppet_pal_2pec.rb +40 -0
- data/spec/unit/puppet_pal_catalog_spec.rb +45 -0
- data/spec/unit/reports/store_spec.rb +17 -13
- data/spec/unit/resource/type_collection_spec.rb +2 -22
- data/spec/unit/resource_spec.rb +0 -56
- data/spec/unit/settings/http_extra_headers_spec.rb +2 -4
- data/spec/unit/settings/integer_setting_spec.rb +42 -0
- data/spec/unit/settings/port_setting_spec.rb +31 -0
- data/spec/unit/settings/priority_setting_spec.rb +4 -4
- data/spec/unit/settings_spec.rb +586 -239
- data/spec/unit/ssl/base_spec.rb +36 -3
- data/spec/unit/ssl/certificate_request_spec.rb +15 -45
- data/spec/unit/ssl/certificate_spec.rb +2 -11
- data/spec/unit/ssl/ssl_provider_spec.rb +11 -8
- data/spec/unit/ssl/state_machine_spec.rb +0 -1
- data/spec/unit/ssl/verifier_spec.rb +0 -21
- data/spec/unit/transaction/persistence_spec.rb +15 -0
- data/spec/unit/transaction/report_spec.rb +2 -2
- data/spec/unit/transaction/resource_harness_spec.rb +2 -2
- data/spec/unit/transaction_spec.rb +45 -79
- data/spec/unit/type/file/checksum_spec.rb +6 -6
- data/spec/unit/type/file/content_spec.rb +1 -1
- data/spec/unit/type/file/ensure_spec.rb +1 -1
- data/spec/unit/type/file/mode_spec.rb +1 -1
- data/spec/unit/type/file/source_spec.rb +1 -2
- data/spec/unit/type/file_spec.rb +12 -6
- data/spec/unit/type/filebucket_spec.rb +1 -1
- data/spec/unit/type/package_spec.rb +1 -1
- data/spec/unit/type/service_spec.rb +35 -2
- data/spec/unit/type/user_spec.rb +31 -2
- data/spec/unit/type_spec.rb +20 -0
- data/spec/unit/util/backups_spec.rb +0 -2
- data/spec/unit/util/character_encoding_spec.rb +4 -4
- data/spec/unit/util/command_line_spec.rb +11 -6
- data/spec/unit/util/execution_spec.rb +0 -29
- data/spec/unit/util/monkey_patches_spec.rb +0 -6
- data/spec/unit/util/posix_spec.rb +357 -15
- data/spec/unit/util/rubygems_spec.rb +2 -2
- data/spec/unit/util/run_mode_spec.rb +27 -127
- data/spec/unit/util/storage_spec.rb +3 -1
- data/spec/unit/util/windows/string_spec.rb +1 -3
- data/spec/unit/util/yaml_spec.rb +0 -54
- data/spec/unit/util_spec.rb +0 -18
- metadata +84 -261
- data/conf/auth.conf +0 -150
- data/lib/puppet/application/cert.rb +0 -76
- data/lib/puppet/application/key.rb +0 -4
- data/lib/puppet/application/man.rb +0 -4
- data/lib/puppet/application/status.rb +0 -4
- data/lib/puppet/face/key.rb +0 -16
- data/lib/puppet/face/man.rb +0 -145
- data/lib/puppet/face/module/build.rb +0 -14
- data/lib/puppet/face/module/generate.rb +0 -14
- data/lib/puppet/face/module/search.rb +0 -103
- data/lib/puppet/face/status.rb +0 -51
- data/lib/puppet/indirector/certificate/file.rb +0 -9
- data/lib/puppet/indirector/certificate/rest.rb +0 -18
- data/lib/puppet/indirector/certificate_request/file.rb +0 -9
- data/lib/puppet/indirector/certificate_request/memory.rb +0 -7
- data/lib/puppet/indirector/certificate_request/rest.rb +0 -11
- data/lib/puppet/indirector/file_content/http.rb +0 -22
- data/lib/puppet/indirector/key/file.rb +0 -46
- data/lib/puppet/indirector/key/memory.rb +0 -7
- data/lib/puppet/indirector/ssl_file.rb +0 -162
- data/lib/puppet/indirector/status.rb +0 -3
- data/lib/puppet/indirector/status/local.rb +0 -12
- data/lib/puppet/indirector/status/rest.rb +0 -27
- data/lib/puppet/module_tool/applications/searcher.rb +0 -29
- data/lib/puppet/network/auth_config_parser.rb +0 -90
- data/lib/puppet/network/authstore.rb +0 -283
- data/lib/puppet/network/http/api/master/v3/authorization.rb +0 -18
- data/lib/puppet/network/http/api/master/v3/environment.rb +0 -88
- data/lib/puppet/network/http/base_pool.rb +0 -36
- data/lib/puppet/network/http/compression.rb +0 -127
- data/lib/puppet/network/http/connection_adapter.rb +0 -184
- data/lib/puppet/network/http/nocache_pool.rb +0 -28
- data/lib/puppet/network/rest_controller.rb +0 -2
- data/lib/puppet/network/rights.rb +0 -210
- data/lib/puppet/parser/compiler/catalog_validator/env_relationship_validator.rb +0 -66
- data/lib/puppet/parser/compiler/catalog_validator/site_validator.rb +0 -22
- data/lib/puppet/parser/environment_compiler.rb +0 -202
- data/lib/puppet/pops/types/enumeration.rb +0 -16
- data/lib/puppet/resource/capability_finder.rb +0 -154
- data/lib/puppet/rest/errors.rb +0 -15
- data/lib/puppet/rest/response.rb +0 -35
- data/lib/puppet/rest/route.rb +0 -85
- data/lib/puppet/rest/routes.rb +0 -135
- data/lib/puppet/ssl/host.rb +0 -505
- data/lib/puppet/ssl/key.rb +0 -61
- data/lib/puppet/ssl/validator.rb +0 -61
- data/lib/puppet/ssl/validator/default_validator.rb +0 -209
- data/lib/puppet/ssl/validator/no_validator.rb +0 -22
- data/lib/puppet/ssl/verifier_adapter.rb +0 -58
- data/lib/puppet/status.rb +0 -40
- data/lib/puppet/util/connection.rb +0 -88
- data/lib/puppet/util/ssl.rb +0 -83
- data/lib/puppet/util/windows/api_types.rb +0 -295
- data/lib/puppet/vendor/load_pathspec.rb +0 -1
- data/lib/puppet/vendor/pathspec/CHANGELOG.md +0 -2
- data/lib/puppet/vendor/pathspec/LICENSE +0 -201
- data/lib/puppet/vendor/pathspec/PUPPET_README.md +0 -6
- data/lib/puppet/vendor/pathspec/README.md +0 -53
- data/lib/puppet/vendor/pathspec/lib/pathspec.rb +0 -122
- data/lib/puppet/vendor/pathspec/lib/pathspec/gitignorespec.rb +0 -275
- data/lib/puppet/vendor/pathspec/lib/pathspec/regexspec.rb +0 -17
- data/lib/puppet/vendor/pathspec/lib/pathspec/spec.rb +0 -14
- data/man/man8/puppet-key.8 +0 -126
- data/man/man8/puppet-man.8 +0 -76
- data/man/man8/puppet-status.8 +0 -108
- data/spec/integration/faces/config_spec.rb +0 -91
- data/spec/integration/faces/documentation_spec.rb +0 -57
- data/spec/integration/file_bucket/file_spec.rb +0 -50
- data/spec/integration/file_serving/content_spec.rb +0 -7
- data/spec/integration/file_serving/fileset_spec.rb +0 -12
- data/spec/integration/file_serving/metadata_spec.rb +0 -8
- data/spec/integration/file_serving/terminus_helper_spec.rb +0 -20
- data/spec/integration/file_system/uniquefile_spec.rb +0 -26
- data/spec/integration/module_tool/forge_spec.rb +0 -51
- data/spec/integration/module_tool/tar/mini_spec.rb +0 -28
- data/spec/integration/network/authconfig_spec.rb +0 -256
- data/spec/integration/provider/service/init_spec.rb +0 -48
- data/spec/integration/provider/service/systemd_spec.rb +0 -25
- data/spec/integration/provider/service/windows_spec.rb +0 -50
- data/spec/integration/reference/providers_spec.rb +0 -21
- data/spec/integration/reports_spec.rb +0 -13
- data/spec/integration/ssl/certificate_request_spec.rb +0 -44
- data/spec/integration/ssl/host_spec.rb +0 -72
- data/spec/integration/ssl/key_spec.rb +0 -99
- data/spec/shared_behaviours/file_serving_model.rb +0 -51
- data/spec/unit/capability_spec.rb +0 -414
- data/spec/unit/face/catalog_spec.rb +0 -6
- data/spec/unit/face/key_spec.rb +0 -9
- data/spec/unit/face/man_spec.rb +0 -25
- data/spec/unit/face/module/search_spec.rb +0 -231
- data/spec/unit/face/module_spec.rb +0 -3
- data/spec/unit/face/status_spec.rb +0 -9
- data/spec/unit/indirector/certificate/file_spec.rb +0 -14
- data/spec/unit/indirector/certificate/rest_spec.rb +0 -61
- data/spec/unit/indirector/certificate_request/file_spec.rb +0 -14
- data/spec/unit/indirector/certificate_request/rest_spec.rb +0 -25
- data/spec/unit/indirector/key/file_spec.rb +0 -79
- data/spec/unit/indirector/ssl_file_spec.rb +0 -305
- data/spec/unit/indirector/status/local_spec.rb +0 -10
- data/spec/unit/indirector/status/rest_spec.rb +0 -50
- data/spec/unit/man_spec.rb +0 -31
- data/spec/unit/module_tool/applications/searcher_spec.rb +0 -38
- data/spec/unit/network/auth_config_parser_spec.rb +0 -115
- data/spec/unit/network/authstore_spec.rb +0 -422
- data/spec/unit/network/http/api/master/v3/authorization_spec.rb +0 -57
- data/spec/unit/network/http/api/master/v3/environment_spec.rb +0 -185
- data/spec/unit/network/http/compression_spec.rb +0 -240
- data/spec/unit/network/http/nocache_pool_spec.rb +0 -64
- data/spec/unit/network/http_spec.rb +0 -9
- data/spec/unit/network/rights_spec.rb +0 -439
- data/spec/unit/parser/environment_compiler_spec.rb +0 -730
- data/spec/unit/pops/types/enumeration_spec.rb +0 -51
- data/spec/unit/resource/capability_finder_spec.rb +0 -143
- data/spec/unit/rest/route_spec.rb +0 -132
- data/spec/unit/ssl/host_spec.rb +0 -650
- data/spec/unit/ssl/key_spec.rb +0 -173
- data/spec/unit/ssl/validator_spec.rb +0 -278
- data/spec/unit/status_spec.rb +0 -45
- data/spec/unit/util/ssl_spec.rb +0 -91
data/locales/puppet.pot
CHANGED
@@ -6,11 +6,11 @@
|
|
6
6
|
#, fuzzy
|
7
7
|
msgid ""
|
8
8
|
msgstr ""
|
9
|
-
"Project-Id-Version: Puppet automation framework 6.
|
9
|
+
"Project-Id-Version: Puppet automation framework 6.19.1-404-g6fd33ed69c\n"
|
10
10
|
"\n"
|
11
11
|
"Report-Msgid-Bugs-To: https://tickets.puppetlabs.com\n"
|
12
|
-
"POT-Creation-Date: 2020-
|
13
|
-
"PO-Revision-Date: 2020-
|
12
|
+
"POT-Creation-Date: 2020-10-29 10:41+0000\n"
|
13
|
+
"PO-Revision-Date: 2020-10-29 10:41+0000\n"
|
14
14
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
15
15
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
16
16
|
"Language: \n"
|
@@ -44,25 +44,25 @@ msgstr ""
|
|
44
44
|
msgid "Please supply a parameter to perform a Hiera lookup"
|
45
45
|
msgstr ""
|
46
46
|
|
47
|
-
#: ../lib/hiera_puppet.rb:75 ../lib/puppet/indirector/hiera.rb:
|
47
|
+
#: ../lib/hiera_puppet.rb:75 ../lib/puppet/indirector/hiera.rb:85
|
48
48
|
msgid "Config file %{hiera_config} not found, using Hiera defaults"
|
49
49
|
msgstr ""
|
50
50
|
|
51
|
-
#: ../lib/puppet.rb:
|
51
|
+
#: ../lib/puppet.rb:138
|
52
52
|
msgid "Support for ruby version %{version} is deprecated and will be removed in a future release. See https://puppet.com/docs/puppet/latest/system_requirements.html for a list of supported ruby versions."
|
53
53
|
msgstr ""
|
54
54
|
|
55
|
-
#: ../lib/puppet.rb:
|
55
|
+
#: ../lib/puppet.rb:224
|
56
56
|
msgid "The environmentpath setting cannot be empty or nil."
|
57
57
|
msgstr ""
|
58
58
|
|
59
59
|
#. TRANSLATORS: `message` is an already translated string of why SSL failed to initialize
|
60
|
-
#: ../lib/puppet.rb:
|
60
|
+
#: ../lib/puppet.rb:250
|
61
61
|
msgid "Failed to initialize SSL: %{message}"
|
62
62
|
msgstr ""
|
63
63
|
|
64
64
|
#. TRANSLATORS: `puppet agent -t` is a command and should not be translated
|
65
|
-
#: ../lib/puppet.rb:
|
65
|
+
#: ../lib/puppet.rb:252
|
66
66
|
msgid "Run `puppet agent -t`"
|
67
67
|
msgstr ""
|
68
68
|
|
@@ -120,69 +120,59 @@ msgstr ""
|
|
120
120
|
msgid "Failed to acquire lock"
|
121
121
|
msgstr ""
|
122
122
|
|
123
|
-
|
124
|
-
#: ../lib/puppet/agent/locker.rb:33
|
125
|
-
msgid "Puppet::Agent::Locker.running? is deprecated as it is inherently unsafe."
|
126
|
-
msgstr ""
|
127
|
-
|
128
|
-
#. TRANSLATORS 'LockError' should not be translated
|
129
|
-
#: ../lib/puppet/agent/locker.rb:35
|
130
|
-
msgid "The only safe way to know if the lock is locked is to try lock and perform some action and then handle the LockError that may result."
|
131
|
-
msgstr ""
|
132
|
-
|
133
|
-
#: ../lib/puppet/application.rb:238
|
123
|
+
#: ../lib/puppet/application.rb:231
|
134
124
|
msgid "Unable to find application '%{application_name}'. %{error}"
|
135
125
|
msgstr ""
|
136
126
|
|
137
|
-
#: ../lib/puppet/application.rb:
|
127
|
+
#: ../lib/puppet/application.rb:252
|
138
128
|
msgid "Unable to load application class '%{class_name}' from file 'puppet/application/%{application_name}.rb'"
|
139
129
|
msgstr ""
|
140
130
|
|
141
|
-
#: ../lib/puppet/application.rb:
|
131
|
+
#: ../lib/puppet/application.rb:305
|
142
132
|
msgid "Invalid environment mode '%{mode_name}'"
|
143
133
|
msgstr ""
|
144
134
|
|
145
|
-
#: ../lib/puppet/application.rb:
|
135
|
+
#: ../lib/puppet/application.rb:405
|
146
136
|
msgid "Could not get application-specific default settings"
|
147
137
|
msgstr ""
|
148
138
|
|
149
|
-
#: ../lib/puppet/application.rb:
|
139
|
+
#: ../lib/puppet/application.rb:411
|
150
140
|
msgid "Could not initialize"
|
151
141
|
msgstr ""
|
152
142
|
|
153
|
-
#: ../lib/puppet/application.rb:
|
143
|
+
#: ../lib/puppet/application.rb:412
|
154
144
|
msgid "Could not parse application options"
|
155
145
|
msgstr ""
|
156
146
|
|
157
|
-
#: ../lib/puppet/application.rb:
|
147
|
+
#: ../lib/puppet/application.rb:413
|
158
148
|
msgid "Could not prepare for execution"
|
159
149
|
msgstr ""
|
160
150
|
|
161
|
-
#: ../lib/puppet/application.rb:
|
151
|
+
#: ../lib/puppet/application.rb:416
|
162
152
|
msgid "`puppet %{name}` is deprecated and will be removed in a future release."
|
163
153
|
msgstr ""
|
164
154
|
|
165
|
-
#: ../lib/puppet/application.rb:
|
155
|
+
#: ../lib/puppet/application.rb:419
|
166
156
|
msgid "Could not configure routes from %{route_file}"
|
167
157
|
msgstr ""
|
168
158
|
|
169
|
-
#: ../lib/puppet/application.rb:
|
159
|
+
#: ../lib/puppet/application.rb:420
|
170
160
|
msgid "Could not log runtime debug info"
|
171
161
|
msgstr ""
|
172
162
|
|
173
|
-
#: ../lib/puppet/application.rb:
|
163
|
+
#: ../lib/puppet/application.rb:421
|
174
164
|
msgid "Could not run"
|
175
165
|
msgstr ""
|
176
166
|
|
177
|
-
#: ../lib/puppet/application.rb:
|
167
|
+
#: ../lib/puppet/application.rb:430
|
178
168
|
msgid "No valid command or main"
|
179
169
|
msgstr ""
|
180
170
|
|
181
|
-
#: ../lib/puppet/application.rb:
|
171
|
+
#: ../lib/puppet/application.rb:483
|
182
172
|
msgid "Could not set logdest to %{dest}."
|
183
173
|
msgstr ""
|
184
174
|
|
185
|
-
#: ../lib/puppet/application.rb:
|
175
|
+
#: ../lib/puppet/application.rb:576
|
186
176
|
msgid "No help available for puppet %{app_name}"
|
187
177
|
msgstr ""
|
188
178
|
|
@@ -194,19 +184,19 @@ msgstr ""
|
|
194
184
|
msgid "The puppet agent daemon"
|
195
185
|
msgstr ""
|
196
186
|
|
197
|
-
#: ../lib/puppet/application/agent.rb:
|
187
|
+
#: ../lib/puppet/application/agent.rb:414
|
198
188
|
msgid "Fingerprint asked but neither the certificate, nor the certificate request have been issued"
|
199
189
|
msgstr ""
|
200
190
|
|
201
|
-
#: ../lib/puppet/application/agent.rb:
|
191
|
+
#: ../lib/puppet/application/agent.rb:419
|
202
192
|
msgid "Failed to generate fingerprint: %{message}"
|
203
193
|
msgstr ""
|
204
194
|
|
205
|
-
#: ../lib/puppet/application/agent.rb:
|
195
|
+
#: ../lib/puppet/application/agent.rb:442
|
206
196
|
msgid "Starting Puppet client version %{version}"
|
207
197
|
msgstr ""
|
208
198
|
|
209
|
-
#: ../lib/puppet/application/agent.rb:
|
199
|
+
#: ../lib/puppet/application/agent.rb:458
|
210
200
|
msgid "The puppet agent command does not take parameters"
|
211
201
|
msgstr ""
|
212
202
|
|
@@ -216,7 +206,7 @@ msgstr ""
|
|
216
206
|
|
217
207
|
#. TRANSLATORS "puppet apply" is a program command and should not be translated
|
218
208
|
#. TRANSLATORS "puppet apply" is a program command and should not be translated
|
219
|
-
#: ../lib/puppet/application/apply.rb:207 ../lib/puppet/application/apply.rb:
|
209
|
+
#: ../lib/puppet/application/apply.rb:207 ../lib/puppet/application/apply.rb:320
|
220
210
|
msgid "For puppet apply"
|
221
211
|
msgstr ""
|
222
212
|
|
@@ -224,34 +214,30 @@ msgstr ""
|
|
224
214
|
msgid "%{file} is not readable"
|
225
215
|
msgstr ""
|
226
216
|
|
227
|
-
#: ../lib/puppet/application/apply.rb:
|
217
|
+
#: ../lib/puppet/application/apply.rb:286 ../lib/puppet/application/script.rb:239
|
228
218
|
msgid "Exiting"
|
229
219
|
msgstr ""
|
230
220
|
|
231
|
-
#: ../lib/puppet/application/apply.rb:
|
221
|
+
#: ../lib/puppet/application/apply.rb:330
|
232
222
|
msgid "Could not deserialize catalog from %{format}: %{detail}"
|
233
223
|
msgstr ""
|
234
224
|
|
235
|
-
#: ../lib/puppet/application/apply.rb:
|
225
|
+
#: ../lib/puppet/application/apply.rb:351 ../lib/puppet/application/script.rb:144
|
236
226
|
msgid "Could not find facts for %{node}"
|
237
227
|
msgstr ""
|
238
228
|
|
239
|
-
#: ../lib/puppet/application/apply.rb:
|
229
|
+
#: ../lib/puppet/application/apply.rb:363 ../lib/puppet/application/script.rb:152
|
240
230
|
msgid "Could not find node %{node}"
|
241
231
|
msgstr ""
|
242
232
|
|
243
|
-
#: ../lib/puppet/application/apply.rb:
|
233
|
+
#: ../lib/puppet/application/apply.rb:376 ../lib/puppet/application/script.rb:137
|
244
234
|
msgid "Could not find file %{manifest}"
|
245
235
|
msgstr ""
|
246
236
|
|
247
|
-
#: ../lib/puppet/application/apply.rb:
|
237
|
+
#: ../lib/puppet/application/apply.rb:377
|
248
238
|
msgid "Only one file can be applied per run. Skipping %{files}"
|
249
239
|
msgstr ""
|
250
240
|
|
251
|
-
#: ../lib/puppet/application/cert.rb:6
|
252
|
-
msgid "Manage certificates and requests (Disabled)"
|
253
|
-
msgstr ""
|
254
|
-
|
255
241
|
#: ../lib/puppet/application/describe.rb:177
|
256
242
|
msgid "Display help about resource types"
|
257
243
|
msgstr ""
|
@@ -284,23 +270,23 @@ msgstr ""
|
|
284
270
|
msgid "No device found in %{config}"
|
285
271
|
msgstr ""
|
286
272
|
|
287
|
-
#: ../lib/puppet/application/device.rb:
|
273
|
+
#: ../lib/puppet/application/device.rb:314
|
288
274
|
msgid "retrieving resource: %{resource} from %{target} at %{scheme}%{url_host}%{port}%{url_path}"
|
289
275
|
msgstr ""
|
290
276
|
|
291
|
-
#: ../lib/puppet/application/device.rb:
|
277
|
+
#: ../lib/puppet/application/device.rb:329
|
292
278
|
msgid "retrieving facts from %{target} at %{scheme}%{url_host}%{port}%{url_path}"
|
293
279
|
msgstr ""
|
294
280
|
|
295
|
-
#: ../lib/puppet/application/device.rb:
|
281
|
+
#: ../lib/puppet/application/device.rb:352
|
296
282
|
msgid "starting applying configuration to %{target} at %{scheme}%{url_host}%{port}%{url_path}"
|
297
283
|
msgstr ""
|
298
284
|
|
299
|
-
#: ../lib/puppet/application/device.rb:
|
285
|
+
#: ../lib/puppet/application/device.rb:388 ../lib/puppet/application/resource.rb:196
|
300
286
|
msgid "You must specify the type to display"
|
301
287
|
msgstr ""
|
302
288
|
|
303
|
-
#: ../lib/puppet/application/device.rb:
|
289
|
+
#: ../lib/puppet/application/device.rb:389 ../lib/puppet/application/resource.rb:197
|
304
290
|
msgid "Could not find type %{type}"
|
305
291
|
msgstr ""
|
306
292
|
|
@@ -366,27 +352,27 @@ msgstr ""
|
|
366
352
|
msgid "Store and retrieve files in a filebucket"
|
367
353
|
msgstr ""
|
368
354
|
|
369
|
-
#: ../lib/puppet/application/filebucket.rb:
|
355
|
+
#: ../lib/puppet/application/filebucket.rb:225
|
370
356
|
msgid "You must specify a file to back up"
|
371
357
|
msgstr ""
|
372
358
|
|
373
|
-
#: ../lib/puppet/application/filebucket.rb:
|
359
|
+
#: ../lib/puppet/application/filebucket.rb:229
|
374
360
|
msgid "%{file}: no such file"
|
375
361
|
msgstr ""
|
376
362
|
|
377
|
-
#: ../lib/puppet/application/filebucket.rb:
|
363
|
+
#: ../lib/puppet/application/filebucket.rb:233
|
378
364
|
msgid "%{file}: cannot read file"
|
379
365
|
msgstr ""
|
380
366
|
|
381
|
-
#: ../lib/puppet/application/filebucket.rb:
|
367
|
+
#: ../lib/puppet/application/filebucket.rb:255 ../lib/puppet/application/filebucket.rb:278
|
382
368
|
msgid "Need exactly two arguments: filebucket diff <file_a> <file_b>"
|
383
369
|
msgstr ""
|
384
370
|
|
385
|
-
#: ../lib/puppet/application/filebucket.rb:
|
371
|
+
#: ../lib/puppet/application/filebucket.rb:275
|
386
372
|
msgid "Comparing %{checksum_a} %{checksum_b} %{file_a} %{file_b}"
|
387
373
|
msgstr ""
|
388
374
|
|
389
|
-
#: ../lib/puppet/application/filebucket.rb:
|
375
|
+
#: ../lib/puppet/application/filebucket.rb:289
|
390
376
|
msgid "Cancelling"
|
391
377
|
msgstr ""
|
392
378
|
|
@@ -400,31 +386,31 @@ msgid ""
|
|
400
386
|
"%{run_help}"
|
401
387
|
msgstr ""
|
402
388
|
|
403
|
-
#: ../lib/puppet/application/lookup.rb:
|
389
|
+
#: ../lib/puppet/application/lookup.rb:105
|
404
390
|
msgid "Interactive Hiera lookup"
|
405
391
|
msgstr ""
|
406
392
|
|
407
|
-
#: ../lib/puppet/application/lookup.rb:
|
393
|
+
#: ../lib/puppet/application/lookup.rb:272
|
408
394
|
msgid ""
|
409
395
|
"The options %{deep_merge_opts} are only available with '--merge deep'\n"
|
410
396
|
"%{run_help}"
|
411
397
|
msgstr ""
|
412
398
|
|
413
|
-
#: ../lib/puppet/application/lookup.rb:
|
399
|
+
#: ../lib/puppet/application/lookup.rb:283
|
414
400
|
msgid ""
|
415
401
|
"The --merge option only accepts %{strategies}, or %{last_strategy}\n"
|
416
402
|
"%{run_help}"
|
417
403
|
msgstr ""
|
418
404
|
|
419
|
-
#: ../lib/puppet/application/lookup.rb:
|
405
|
+
#: ../lib/puppet/application/lookup.rb:308
|
420
406
|
msgid "No keys were given to lookup."
|
421
407
|
msgstr ""
|
422
408
|
|
423
|
-
#: ../lib/puppet/application/lookup.rb:
|
409
|
+
#: ../lib/puppet/application/lookup.rb:316
|
424
410
|
msgid "Unknown rendering format '%{format}'"
|
425
411
|
msgstr ""
|
426
412
|
|
427
|
-
#: ../lib/puppet/application/lookup.rb:
|
413
|
+
#: ../lib/puppet/application/lookup.rb:366 ../lib/puppet/face/epp.rb:530
|
428
414
|
msgid "Incorrect formatted data in %{fact_file} given via the --facts flag"
|
429
415
|
msgstr ""
|
430
416
|
|
@@ -480,7 +466,7 @@ msgstr ""
|
|
480
466
|
msgid "Creating a new EC SSL key for %{name} using curve %{curve}"
|
481
467
|
msgstr ""
|
482
468
|
|
483
|
-
#: ../lib/puppet/application/ssl.rb:157
|
469
|
+
#: ../lib/puppet/application/ssl.rb:157
|
484
470
|
msgid "Creating a new SSL key for %{name}"
|
485
471
|
msgstr ""
|
486
472
|
|
@@ -536,101 +522,105 @@ msgstr ""
|
|
536
522
|
msgid "Cannot remove %{file}: %{detail}"
|
537
523
|
msgstr ""
|
538
524
|
|
539
|
-
#: ../lib/puppet/configurer.rb:
|
525
|
+
#: ../lib/puppet/configurer.rb:80
|
540
526
|
msgid "Using cached catalog from environment '%{environment}'"
|
541
527
|
msgstr ""
|
542
528
|
|
543
|
-
#: ../lib/puppet/configurer.rb:
|
529
|
+
#: ../lib/puppet/configurer.rb:86
|
544
530
|
msgid "Not using cache on failed catalog"
|
545
531
|
msgstr ""
|
546
532
|
|
547
|
-
#: ../lib/puppet/configurer.rb:
|
533
|
+
#: ../lib/puppet/configurer.rb:95
|
548
534
|
msgid "Not using cached catalog because its environment '%{catalog_env}' does not match '%{local_env}'"
|
549
535
|
msgstr ""
|
550
536
|
|
551
|
-
#: ../lib/puppet/configurer.rb:
|
537
|
+
#: ../lib/puppet/configurer.rb:100 ../lib/puppet/configurer.rb:182
|
552
538
|
msgid "Using cached catalog from environment '%{catalog_env}'"
|
553
539
|
msgstr ""
|
554
540
|
|
555
|
-
#: ../lib/puppet/configurer.rb:
|
541
|
+
#: ../lib/puppet/configurer.rb:175
|
556
542
|
msgid "Could not retrieve catalog; skipping run"
|
557
543
|
msgstr ""
|
558
544
|
|
559
|
-
#: ../lib/puppet/configurer.rb:
|
545
|
+
#: ../lib/puppet/configurer.rb:191
|
560
546
|
msgid "Applied catalog in %{seconds} seconds"
|
561
547
|
msgstr ""
|
562
548
|
|
563
|
-
#: ../lib/puppet/configurer.rb:
|
564
|
-
msgid "Could not select a functional puppet
|
549
|
+
#: ../lib/puppet/configurer.rb:225
|
550
|
+
msgid "Could not select a functional puppet server from server_list: '%{server_list}'"
|
551
|
+
msgstr ""
|
552
|
+
|
553
|
+
#. TRANSLATORS 'server_list' is the name of a setting and should not be translated
|
554
|
+
#: ../lib/puppet/configurer.rb:239
|
555
|
+
msgid "Selected puppet server from the `server_list` setting: %{server}:%{port}"
|
565
556
|
msgstr ""
|
566
557
|
|
567
|
-
#: ../lib/puppet/configurer.rb:
|
558
|
+
#: ../lib/puppet/configurer.rb:275
|
568
559
|
msgid "Local environment: '%{local_env}' doesn't match the environment of the cached catalog '%{catalog_env}', switching agent to '%{catalog_env}'."
|
569
560
|
msgstr ""
|
570
561
|
|
571
|
-
#: ../lib/puppet/configurer.rb:
|
562
|
+
#: ../lib/puppet/configurer.rb:320
|
572
563
|
msgid "Local environment: '%{local_env}' doesn't match server specified node environment '%{node_env}', switching agent to '%{node_env}'."
|
573
564
|
msgstr ""
|
574
565
|
|
575
|
-
#: ../lib/puppet/configurer.rb:
|
566
|
+
#: ../lib/puppet/configurer.rb:335
|
576
567
|
msgid "Using configured environment '%{env}'"
|
577
568
|
msgstr ""
|
578
569
|
|
579
|
-
#: ../lib/puppet/configurer.rb:
|
570
|
+
#: ../lib/puppet/configurer.rb:339
|
580
571
|
msgid "Unable to fetch my node definition, but the agent run will continue:"
|
581
572
|
msgstr ""
|
582
573
|
|
583
|
-
#: ../lib/puppet/configurer.rb:
|
574
|
+
#: ../lib/puppet/configurer.rb:367
|
584
575
|
msgid "Not using catalog because its environment '%{catalog_env}' does not match agent specified environment '%{local_env}' and strict_environment_mode is set"
|
585
576
|
msgstr ""
|
586
577
|
|
587
|
-
#: ../lib/puppet/configurer.rb:
|
578
|
+
#: ../lib/puppet/configurer.rb:378
|
588
579
|
msgid "Catalog environment didn't stabilize after %{tries} fetches, aborting run"
|
589
580
|
msgstr ""
|
590
581
|
|
591
|
-
#: ../lib/puppet/configurer.rb:
|
582
|
+
#: ../lib/puppet/configurer.rb:380
|
592
583
|
msgid "Local environment: '%{local_env}' doesn't match server specified environment '%{catalog_env}', restarting agent run with environment '%{catalog_env}'"
|
593
584
|
msgstr ""
|
594
585
|
|
595
|
-
#: ../lib/puppet/configurer.rb:
|
586
|
+
#: ../lib/puppet/configurer.rb:421
|
596
587
|
msgid "Failed to apply catalog: %{detail}"
|
597
588
|
msgstr ""
|
598
589
|
|
599
|
-
#: ../lib/puppet/configurer.rb:
|
590
|
+
#: ../lib/puppet/configurer.rb:450 ../lib/puppet/http/resolver/server_list.rb:63
|
600
591
|
msgid "Puppet server %{host}:%{port} is unavailable: %{code} %{reason}"
|
601
592
|
msgstr ""
|
602
593
|
|
603
594
|
#. TRANSLATORS 'server_list' is the name of a setting and should not be translated
|
604
|
-
|
605
|
-
#: ../lib/puppet/configurer.rb:435 ../lib/puppet/http/resolver/server_list.rb:95
|
595
|
+
#: ../lib/puppet/configurer.rb:454 ../lib/puppet/http/resolver/server_list.rb:66
|
606
596
|
msgid "Unable to connect to server from server_list setting: %{detail}"
|
607
597
|
msgstr ""
|
608
598
|
|
609
|
-
#: ../lib/puppet/configurer.rb:
|
599
|
+
#: ../lib/puppet/configurer.rb:465 ../lib/puppet/face/report.rb:47
|
610
600
|
msgid "Could not send report: %{detail}"
|
611
601
|
msgstr ""
|
612
602
|
|
613
|
-
#: ../lib/puppet/configurer.rb:
|
603
|
+
#: ../lib/puppet/configurer.rb:474
|
614
604
|
msgid "Could not save last run local report: %{detail}"
|
615
605
|
msgstr ""
|
616
606
|
|
617
|
-
#: ../lib/puppet/configurer.rb:
|
607
|
+
#: ../lib/puppet/configurer.rb:493
|
618
608
|
msgid "Uploading facts for %{node} to %{server}"
|
619
609
|
msgstr ""
|
620
610
|
|
621
|
-
#: ../lib/puppet/configurer.rb:
|
611
|
+
#: ../lib/puppet/configurer.rb:501
|
622
612
|
msgid "Failed to submit facts: %{detail}"
|
623
613
|
msgstr ""
|
624
614
|
|
625
|
-
#: ../lib/puppet/configurer.rb:
|
615
|
+
#: ../lib/puppet/configurer.rb:516
|
626
616
|
msgid "Could not run command from %{setting}: %{detail}"
|
627
617
|
msgstr ""
|
628
618
|
|
629
|
-
#: ../lib/puppet/configurer.rb:
|
619
|
+
#: ../lib/puppet/configurer.rb:534
|
630
620
|
msgid "Could not retrieve catalog from cache: %{detail}"
|
631
621
|
msgstr ""
|
632
622
|
|
633
|
-
#: ../lib/puppet/configurer.rb:
|
623
|
+
#: ../lib/puppet/configurer.rb:555
|
634
624
|
msgid "Could not retrieve catalog from remote server: %{detail}"
|
635
625
|
msgstr ""
|
636
626
|
|
@@ -638,7 +628,11 @@ msgstr ""
|
|
638
628
|
msgid "Retrieving %{name}"
|
639
629
|
msgstr ""
|
640
630
|
|
641
|
-
#: ../lib/puppet/configurer/downloader.rb:
|
631
|
+
#: ../lib/puppet/configurer/downloader.rb:21
|
632
|
+
msgid "Failed to retrieve %{name}: %{detail}"
|
633
|
+
msgstr ""
|
634
|
+
|
635
|
+
#: ../lib/puppet/configurer/downloader.rb:32
|
642
636
|
msgid "Could not retrieve %{name}: %{detail}"
|
643
637
|
msgstr ""
|
644
638
|
|
@@ -694,39 +688,40 @@ msgstr ""
|
|
694
688
|
msgid "a data type can only have one implementation"
|
695
689
|
msgstr ""
|
696
690
|
|
697
|
-
#: ../lib/puppet/defaults.rb:
|
691
|
+
#: ../lib/puppet/defaults.rb:156
|
698
692
|
msgid "Cannot disable unrecognized warning types '%{invalid}'."
|
699
693
|
msgstr ""
|
700
694
|
|
701
|
-
#: ../lib/puppet/defaults.rb:
|
695
|
+
#: ../lib/puppet/defaults.rb:157
|
702
696
|
msgid "Valid values are '%{values}'."
|
703
697
|
msgstr ""
|
704
698
|
|
705
699
|
#. TRANSLATORS 'data_binding_terminus' is a setting and should not be translated
|
706
|
-
#: ../lib/puppet/defaults.rb:
|
700
|
+
#: ../lib/puppet/defaults.rb:522
|
707
701
|
msgid "Setting 'data_binding_terminus' is deprecated."
|
708
702
|
msgstr ""
|
709
703
|
|
710
704
|
#. TRANSLATORS 'hiera' should not be translated
|
711
|
-
#: ../lib/puppet/defaults.rb:
|
705
|
+
#: ../lib/puppet/defaults.rb:524
|
712
706
|
msgid "Convert custom terminus to hiera 5 API."
|
713
707
|
msgstr ""
|
714
708
|
|
715
709
|
#. TRANSLATORS 'environment_data_provider' is a setting and should not be translated
|
716
|
-
#: ../lib/puppet/defaults.rb:
|
710
|
+
#: ../lib/puppet/defaults.rb:717
|
717
711
|
msgid "Setting 'environment_data_provider' is deprecated."
|
718
712
|
msgstr ""
|
719
713
|
|
720
|
-
#: ../lib/puppet/defaults.rb:
|
714
|
+
#: ../lib/puppet/defaults.rb:802
|
721
715
|
msgid "Certificate names must be lower case"
|
722
716
|
msgstr ""
|
723
717
|
|
724
|
-
#: ../lib/puppet/defaults.rb:
|
725
|
-
msgid "
|
718
|
+
#: ../lib/puppet/defaults.rb:1053 ../lib/puppet/settings/enum_setting.rb:13 ../lib/puppet/settings/symbolic_enum_setting.rb:14
|
719
|
+
msgid "Invalid value '%{value}' for parameter %{name}. Allowed values are '%{allowed_values}'"
|
726
720
|
msgstr ""
|
727
721
|
|
728
|
-
|
729
|
-
|
722
|
+
#. TRANSLATORS 'pluginsync' is a setting and should not be translated
|
723
|
+
#: ../lib/puppet/defaults.rb:1895
|
724
|
+
msgid "Setting 'pluginsync' is deprecated."
|
730
725
|
msgstr ""
|
731
726
|
|
732
727
|
#: ../lib/puppet/error.rb:77
|
@@ -771,7 +766,7 @@ msgstr ""
|
|
771
766
|
msgid "no matching resources found"
|
772
767
|
msgstr ""
|
773
768
|
|
774
|
-
#: ../lib/puppet/face/config.rb:7 ../lib/puppet/face/epp.rb:8 ../lib/puppet/face/facts.rb:6 ../lib/puppet/face/generate.rb:7 ../lib/puppet/face/help.rb:9 ../lib/puppet/face/
|
769
|
+
#: ../lib/puppet/face/config.rb:7 ../lib/puppet/face/epp.rb:8 ../lib/puppet/face/facts.rb:6 ../lib/puppet/face/generate.rb:7 ../lib/puppet/face/help.rb:9 ../lib/puppet/face/module.rb:9 ../lib/puppet/face/node.rb:4 ../lib/puppet/face/parser.rb:6 ../lib/puppet/face/plugin.rb:6 ../lib/puppet/face/report.rb:5 ../lib/puppet/face/resource.rb:5
|
775
770
|
msgid "Apache 2 license; see COPYING"
|
776
771
|
msgstr ""
|
777
772
|
|
@@ -827,7 +822,7 @@ msgstr ""
|
|
827
822
|
|
828
823
|
#: ../lib/puppet/face/config.rb:146
|
829
824
|
msgid ""
|
830
|
-
"The environment should be set in either the `[user]`, `[agent]`, or `[
|
825
|
+
"The environment should be set in either the `[user]`, `[agent]`, or `[server]`\n"
|
831
826
|
"section. Variables set in the `[agent]` section are used when running\n"
|
832
827
|
"`puppet agent`. Variables set in the `[user]` section are used when running\n"
|
833
828
|
"various other puppet subcommands, like `puppet apply` and `puppet module`; these\n"
|
@@ -837,25 +832,28 @@ msgid ""
|
|
837
832
|
"https://puppet.com/docs/puppet/latest/configuration.html#environment\n"
|
838
833
|
msgstr ""
|
839
834
|
|
840
|
-
#: ../lib/puppet/face/config.rb:
|
835
|
+
#: ../lib/puppet/face/config.rb:176
|
836
|
+
msgid "Deleted setting from '%{section_name}': '%{setting_string}', and adding it to 'server' section"
|
837
|
+
msgstr ""
|
838
|
+
|
839
|
+
#: ../lib/puppet/face/config.rb:191
|
841
840
|
msgid "Delete a Puppet setting."
|
842
841
|
msgstr ""
|
843
842
|
|
844
|
-
#: ../lib/puppet/face/config.rb:
|
843
|
+
#: ../lib/puppet/face/config.rb:192
|
845
844
|
msgid "<setting>"
|
846
845
|
msgstr ""
|
847
846
|
|
848
|
-
|
849
|
-
#: ../lib/puppet/face/config.rb:212
|
847
|
+
#: ../lib/puppet/face/config.rb:226 ../lib/puppet/face/config.rb:230 ../lib/puppet/face/config.rb:241
|
850
848
|
msgid "Deleted setting from '%{section_name}': '%{setting_string}'"
|
851
849
|
msgstr ""
|
852
850
|
|
853
|
-
#: ../lib/puppet/face/config.rb:
|
851
|
+
#: ../lib/puppet/face/config.rb:244
|
854
852
|
msgid "No setting found in configuration file for section '%{section_name}' setting name '%{name}'"
|
855
853
|
msgstr ""
|
856
854
|
|
857
855
|
#. TRANSLATORS the 'puppet.conf' is a specific file and should not be translated
|
858
|
-
#: ../lib/puppet/face/config.rb:
|
856
|
+
#: ../lib/puppet/face/config.rb:252
|
859
857
|
msgid "The puppet.conf file does not exist %{puppet_conf}"
|
860
858
|
msgstr ""
|
861
859
|
|
@@ -1017,14 +1015,50 @@ msgstr ""
|
|
1017
1015
|
msgid "[<node_certname>]"
|
1018
1016
|
msgstr ""
|
1019
1017
|
|
1020
|
-
#: ../lib/puppet/face/facts.rb:
|
1018
|
+
#: ../lib/puppet/face/facts.rb:39
|
1021
1019
|
msgid "Upload local facts to the puppet master."
|
1022
1020
|
msgstr ""
|
1023
1021
|
|
1024
|
-
#: ../lib/puppet/face/facts.rb:
|
1022
|
+
#: ../lib/puppet/face/facts.rb:77
|
1025
1023
|
msgid "Uploading facts for '%{node}' to '%{server}'"
|
1026
1024
|
msgstr ""
|
1027
1025
|
|
1026
|
+
#: ../lib/puppet/face/facts.rb:87
|
1027
|
+
msgid "Retrieve current node's facts."
|
1028
|
+
msgstr ""
|
1029
|
+
|
1030
|
+
#: ../lib/puppet/face/facts.rb:88
|
1031
|
+
msgid "[<facts>]"
|
1032
|
+
msgstr ""
|
1033
|
+
|
1034
|
+
#: ../lib/puppet/face/facts.rb:104 ../lib/puppet/face/facts.rb:109 ../lib/puppet/face/facts.rb:114 ../lib/puppet/face/module/changes.rb:21
|
1035
|
+
msgid "<path>"
|
1036
|
+
msgstr ""
|
1037
|
+
|
1038
|
+
#: ../lib/puppet/face/facts.rb:106
|
1039
|
+
msgid "The location of the config file for Facter."
|
1040
|
+
msgstr ""
|
1041
|
+
|
1042
|
+
#: ../lib/puppet/face/facts.rb:111
|
1043
|
+
msgid "The path to a directory that contains custom facts."
|
1044
|
+
msgstr ""
|
1045
|
+
|
1046
|
+
#: ../lib/puppet/face/facts.rb:116
|
1047
|
+
msgid "The path to a directory that contains external facts."
|
1048
|
+
msgstr ""
|
1049
|
+
|
1050
|
+
#: ../lib/puppet/face/facts.rb:120
|
1051
|
+
msgid "Disable fact blocking mechanism."
|
1052
|
+
msgstr ""
|
1053
|
+
|
1054
|
+
#: ../lib/puppet/face/facts.rb:124
|
1055
|
+
msgid "Disable fact caching mechanism."
|
1056
|
+
msgstr ""
|
1057
|
+
|
1058
|
+
#: ../lib/puppet/face/facts.rb:128
|
1059
|
+
msgid "Show legacy facts when querying all facts."
|
1060
|
+
msgstr ""
|
1061
|
+
|
1028
1062
|
#: ../lib/puppet/face/generate.rb:9
|
1029
1063
|
msgid "Generates Puppet code from Ruby definitions."
|
1030
1064
|
msgstr ""
|
@@ -1134,52 +1168,10 @@ msgstr ""
|
|
1134
1168
|
msgid "Check error logs."
|
1135
1169
|
msgstr ""
|
1136
1170
|
|
1137
|
-
#: ../lib/puppet/face/key.rb:7
|
1138
|
-
msgid "Create, save, and remove certificate keys."
|
1139
|
-
msgstr ""
|
1140
|
-
|
1141
|
-
#: ../lib/puppet/face/man.rb:10
|
1142
|
-
msgid "Display Puppet manual pages."
|
1143
|
-
msgstr ""
|
1144
|
-
|
1145
|
-
#: ../lib/puppet/face/man.rb:28
|
1146
|
-
msgid "Display the manual page for a Puppet subcommand."
|
1147
|
-
msgstr ""
|
1148
|
-
|
1149
|
-
#: ../lib/puppet/face/man.rb:29
|
1150
|
-
msgid "<subcommand>"
|
1151
|
-
msgstr ""
|
1152
|
-
|
1153
|
-
#. TRANSLATORS '--render-as s' is a command line option and should not be translated
|
1154
|
-
#: ../lib/puppet/face/man.rb:31
|
1155
|
-
msgid ""
|
1156
|
-
" The man data, in Markdown format, suitable for consumption by Ronn.\n"
|
1157
|
-
"\n"
|
1158
|
-
" RENDERING ISSUES: To skip fancy formatting and output the raw Markdown\n"
|
1159
|
-
" text (e.g. for use in a pipeline), call this action with '--render-as s'.\n"
|
1160
|
-
msgstr ""
|
1161
|
-
|
1162
|
-
#. TRANSLATORS 'puppet man' is a specific command line and should not be translated
|
1163
|
-
#: ../lib/puppet/face/man.rb:56
|
1164
|
-
msgid "The 'puppet man' command takes a single subcommand to review the subcommand's manpage"
|
1165
|
-
msgstr ""
|
1166
|
-
|
1167
1171
|
#: ../lib/puppet/face/module.rb:11
|
1168
1172
|
msgid "Creates, installs and searches for modules on the Puppet Forge."
|
1169
1173
|
msgstr ""
|
1170
1174
|
|
1171
|
-
#: ../lib/puppet/face/module/build.rb:3
|
1172
|
-
msgid "Build a module release package."
|
1173
|
-
msgstr ""
|
1174
|
-
|
1175
|
-
#. TRANSLATORS 'Puppet Development Kit' is the name of the software package replacing this action and should not be translated.
|
1176
|
-
#. TRANSLATORS 'Puppet Development Kit' is the name of the software package replacing this action and should not be translated.
|
1177
|
-
#. TRANSLATORS 'Puppet Development Kit' is the name of the software package replacing this action and should not be translated.
|
1178
|
-
#. TRANSLATORS 'Puppet Development Kit' is the name of the software package replacing this action and should not be translated.
|
1179
|
-
#: ../lib/puppet/face/module/build.rb:5 ../lib/puppet/face/module/build.rb:9 ../lib/puppet/face/module/generate.rb:5 ../lib/puppet/face/module/generate.rb:9
|
1180
|
-
msgid "This action has been replaced by Puppet Development Kit. For more information visit https://puppet.com/docs/pdk/latest/pdk.html."
|
1181
|
-
msgstr ""
|
1182
|
-
|
1183
1175
|
#: ../lib/puppet/face/module/changes.rb:3
|
1184
1176
|
msgid "Show modified files of an installed module."
|
1185
1177
|
msgstr ""
|
@@ -1188,10 +1180,6 @@ msgstr ""
|
|
1188
1180
|
msgid "Array of strings representing paths of modified files."
|
1189
1181
|
msgstr ""
|
1190
1182
|
|
1191
|
-
#: ../lib/puppet/face/module/changes.rb:21
|
1192
|
-
msgid "<path>"
|
1193
|
-
msgstr ""
|
1194
|
-
|
1195
1183
|
#: ../lib/puppet/face/module/changes.rb:27
|
1196
1184
|
msgid "Could not find a valid module at %{path}"
|
1197
1185
|
msgstr ""
|
@@ -1204,10 +1192,6 @@ msgstr ""
|
|
1204
1192
|
msgid "%{count} files modified"
|
1205
1193
|
msgstr ""
|
1206
1194
|
|
1207
|
-
#: ../lib/puppet/face/module/generate.rb:3
|
1208
|
-
msgid "Generate boilerplate for a new module."
|
1209
|
-
msgstr ""
|
1210
|
-
|
1211
1195
|
#: ../lib/puppet/face/module/install.rb:8
|
1212
1196
|
msgid "Install a module from the Puppet Forge or a release archive."
|
1213
1197
|
msgstr ""
|
@@ -1283,26 +1267,6 @@ msgstr ""
|
|
1283
1267
|
msgid "invalid"
|
1284
1268
|
msgstr ""
|
1285
1269
|
|
1286
|
-
#: ../lib/puppet/face/module/search.rb:6
|
1287
|
-
msgid "Search the Puppet Forge for a module."
|
1288
|
-
msgstr ""
|
1289
|
-
|
1290
|
-
#: ../lib/puppet/face/module/search.rb:14
|
1291
|
-
msgid "Array of module metadata hashes"
|
1292
|
-
msgstr ""
|
1293
|
-
|
1294
|
-
#: ../lib/puppet/face/module/search.rb:24
|
1295
|
-
msgid "<search_term>"
|
1296
|
-
msgstr ""
|
1297
|
-
|
1298
|
-
#: ../lib/puppet/face/module/search.rb:27
|
1299
|
-
msgid "This action has been deprecated. Please use the Puppet Forge to search for modules."
|
1300
|
-
msgstr ""
|
1301
|
-
|
1302
|
-
#: ../lib/puppet/face/module/search.rb:37
|
1303
|
-
msgid "No results found for '%{term}'."
|
1304
|
-
msgstr ""
|
1305
|
-
|
1306
1270
|
#: ../lib/puppet/face/module/uninstall.rb:3
|
1307
1271
|
msgid "Uninstall a puppet module."
|
1308
1272
|
msgstr ""
|
@@ -1472,11 +1436,11 @@ msgid ""
|
|
1472
1436
|
" the files downloaded, which will be empty if none were retrieved.\n"
|
1473
1437
|
msgstr ""
|
1474
1438
|
|
1475
|
-
#: ../lib/puppet/face/plugin.rb:
|
1439
|
+
#: ../lib/puppet/face/plugin.rb:54
|
1476
1440
|
msgid "No plugins downloaded."
|
1477
1441
|
msgstr ""
|
1478
1442
|
|
1479
|
-
#: ../lib/puppet/face/plugin.rb:
|
1443
|
+
#: ../lib/puppet/face/plugin.rb:56
|
1480
1444
|
msgid "Downloaded these plugins: %{plugins}"
|
1481
1445
|
msgstr ""
|
1482
1446
|
|
@@ -1544,23 +1508,16 @@ msgstr ""
|
|
1544
1508
|
msgid "The same resource object passed as an argument."
|
1545
1509
|
msgstr ""
|
1546
1510
|
|
1547
|
-
#: ../lib/puppet/
|
1548
|
-
msgid "
|
1549
|
-
msgstr ""
|
1550
|
-
|
1551
|
-
#: ../lib/puppet/face/status.rb:15
|
1552
|
-
msgid "Check status of puppet master server."
|
1511
|
+
#: ../lib/puppet/feature/base.rb:19
|
1512
|
+
msgid "Cannot determine basic system flavour"
|
1553
1513
|
msgstr ""
|
1554
1514
|
|
1555
|
-
|
1556
|
-
|
1557
|
-
msgid ""
|
1558
|
-
" A \"true\" response or a low-level connection error. When used from the Ruby\n"
|
1559
|
-
" API: returns a Puppet::Status object.\n"
|
1515
|
+
#: ../lib/puppet/ffi/windows/api_types.rb:86
|
1516
|
+
msgid "Unable to read wide strings with %{null_terminator} terminal nulls"
|
1560
1517
|
msgstr ""
|
1561
1518
|
|
1562
|
-
#: ../lib/puppet/
|
1563
|
-
msgid "
|
1519
|
+
#: ../lib/puppet/ffi/windows/api_types.rb:231
|
1520
|
+
msgid "Bad GUID format."
|
1564
1521
|
msgstr ""
|
1565
1522
|
|
1566
1523
|
#: ../lib/puppet/file_bucket/dipper.rb:39
|
@@ -1632,7 +1589,7 @@ msgstr ""
|
|
1632
1589
|
msgid "Cannot find file: Invalid relative path '%{path}'"
|
1633
1590
|
msgstr ""
|
1634
1591
|
|
1635
|
-
#: ../lib/puppet/file_serving/configuration.rb:
|
1592
|
+
#: ../lib/puppet/file_serving/configuration.rb:104
|
1636
1593
|
msgid "Error parsing fileserver configuration: %{detail}; using old configuration"
|
1637
1594
|
msgstr ""
|
1638
1595
|
|
@@ -1648,31 +1605,23 @@ msgstr ""
|
|
1648
1605
|
msgid "Fileserver configuration file does not use '=' as a separator"
|
1649
1606
|
msgstr ""
|
1650
1607
|
|
1651
|
-
#: ../lib/puppet/file_serving/configuration/parser.rb:
|
1608
|
+
#: ../lib/puppet/file_serving/configuration/parser.rb:40 ../lib/puppet/util/network_device/config.rb:101
|
1652
1609
|
msgid "Invalid argument '%{var}' at %{error_location}"
|
1653
1610
|
msgstr ""
|
1654
1611
|
|
1655
|
-
#: ../lib/puppet/file_serving/configuration/parser.rb:
|
1612
|
+
#: ../lib/puppet/file_serving/configuration/parser.rb:45
|
1656
1613
|
msgid "Invalid entry at %{error_location}: '%{file_text}'"
|
1657
1614
|
msgstr ""
|
1658
1615
|
|
1659
|
-
#: ../lib/puppet/file_serving/configuration/parser.rb:
|
1660
|
-
msgid "allowing %{val} access"
|
1661
|
-
msgstr ""
|
1662
|
-
|
1663
|
-
#: ../lib/puppet/file_serving/configuration/parser.rb:85
|
1664
|
-
msgid "denying %{val} access"
|
1665
|
-
msgstr ""
|
1666
|
-
|
1667
|
-
#: ../lib/puppet/file_serving/configuration/parser.rb:99
|
1616
|
+
#: ../lib/puppet/file_serving/configuration/parser.rb:70
|
1668
1617
|
msgid "%{mount} is already mounted at %{name} at %{error_location}"
|
1669
1618
|
msgstr ""
|
1670
1619
|
|
1671
|
-
#: ../lib/puppet/file_serving/configuration/parser.rb:
|
1620
|
+
#: ../lib/puppet/file_serving/configuration/parser.rb:95
|
1672
1621
|
msgid "Removing mount \"%{mount}\": %{detail}"
|
1673
1622
|
msgstr ""
|
1674
1623
|
|
1675
|
-
#: ../lib/puppet/file_serving/configuration/parser.rb:
|
1624
|
+
#: ../lib/puppet/file_serving/configuration/parser.rb:99
|
1676
1625
|
msgid "The '%{mount}' module can not have a path. Ignoring attempt to set it"
|
1677
1626
|
msgstr ""
|
1678
1627
|
|
@@ -1730,7 +1679,7 @@ msgstr ""
|
|
1730
1679
|
msgid "Cannot manage files of type %{file_type}"
|
1731
1680
|
msgstr ""
|
1732
1681
|
|
1733
|
-
#: ../lib/puppet/file_serving/mount.rb:
|
1682
|
+
#: ../lib/puppet/file_serving/mount.rb:20
|
1734
1683
|
msgid "Invalid mount name format '%{name}'"
|
1735
1684
|
msgstr ""
|
1736
1685
|
|
@@ -1782,7 +1731,7 @@ msgstr ""
|
|
1782
1731
|
msgid "Timeout waiting for exclusive lock on %{path}"
|
1783
1732
|
msgstr ""
|
1784
1733
|
|
1785
|
-
#: ../lib/puppet/file_system/jruby.rb:18 ../lib/puppet/file_system/windows.rb:127 ../lib/puppet/util.rb:
|
1734
|
+
#: ../lib/puppet/file_system/jruby.rb:18 ../lib/puppet/file_system/windows.rb:127 ../lib/puppet/util.rb:706
|
1786
1735
|
msgid "Is a directory: %{directory}"
|
1787
1736
|
msgstr ""
|
1788
1737
|
|
@@ -2230,64 +2179,68 @@ msgstr ""
|
|
2230
2179
|
msgid "Try the '--graph' option and opening the resulting '.dot' file in OmniGraffle or GraphViz"
|
2231
2180
|
msgstr ""
|
2232
2181
|
|
2233
|
-
#: ../lib/puppet/http/client.rb:
|
2182
|
+
#: ../lib/puppet/http/client.rb:156
|
2234
2183
|
msgid "Request to %{uri} timed out connect operation after %{elapsed} seconds"
|
2235
2184
|
msgstr ""
|
2236
2185
|
|
2237
|
-
#: ../lib/puppet/http/client.rb:
|
2186
|
+
#: ../lib/puppet/http/client.rb:158
|
2238
2187
|
msgid "Request to %{uri} timed out read operation after %{elapsed} seconds"
|
2239
2188
|
msgstr ""
|
2240
2189
|
|
2241
|
-
#: ../lib/puppet/http/client.rb:
|
2190
|
+
#: ../lib/puppet/http/client.rb:160
|
2242
2191
|
msgid "Request to %{uri} interrupted after %{elapsed} seconds"
|
2243
2192
|
msgstr ""
|
2244
2193
|
|
2245
|
-
#: ../lib/puppet/http/client.rb:
|
2194
|
+
#: ../lib/puppet/http/client.rb:166
|
2246
2195
|
msgid "Request to %{uri} failed after %{elapsed} seconds: %{message}"
|
2247
2196
|
msgstr ""
|
2248
2197
|
|
2249
|
-
#: ../lib/puppet/http/client.rb:
|
2198
|
+
#: ../lib/puppet/http/client.rb:369
|
2250
2199
|
msgid "Sleeping for %{interval} seconds before retrying the request"
|
2251
2200
|
msgstr ""
|
2252
2201
|
|
2253
|
-
#: ../lib/puppet/http/client.rb:
|
2202
|
+
#: ../lib/puppet/http/client.rb:419
|
2254
2203
|
msgid "HTTP REST queries cannot handle values of type '%{klass}'"
|
2255
2204
|
msgstr ""
|
2256
2205
|
|
2257
|
-
#: ../lib/puppet/http/errors.rb:
|
2206
|
+
#: ../lib/puppet/http/errors.rb:37
|
2258
2207
|
msgid "Too many HTTP redirections for %{addr}"
|
2259
2208
|
msgstr ""
|
2260
2209
|
|
2261
|
-
#: ../lib/puppet/http/errors.rb:
|
2210
|
+
#: ../lib/puppet/http/errors.rb:45
|
2262
2211
|
msgid "Too many HTTP retries for %{addr}"
|
2263
2212
|
msgstr ""
|
2264
2213
|
|
2265
|
-
#: ../lib/puppet/http/
|
2214
|
+
#: ../lib/puppet/http/pool.rb:84
|
2215
|
+
msgid "Failed to close connection for %{site}: %{detail}"
|
2216
|
+
msgstr ""
|
2217
|
+
|
2218
|
+
#: ../lib/puppet/http/redirector.rb:70
|
2266
2219
|
msgid "Location response header is missing"
|
2267
2220
|
msgstr ""
|
2268
2221
|
|
2269
|
-
#: ../lib/puppet/http/redirector.rb:
|
2222
|
+
#: ../lib/puppet/http/redirector.rb:74
|
2270
2223
|
msgid "Location URI is invalid: %{detail}"
|
2271
2224
|
msgstr ""
|
2272
2225
|
|
2273
|
-
#: ../lib/puppet/http/retry_after_handler.rb:
|
2226
|
+
#: ../lib/puppet/http/retry_after_handler.rb:74
|
2274
2227
|
msgid "Failed to parse Retry-After header '%{retry_after}' as an integer or RFC 2822 date"
|
2275
2228
|
msgstr ""
|
2276
2229
|
|
2277
|
-
#: ../lib/puppet/http/service.rb:
|
2230
|
+
#: ../lib/puppet/http/service.rb:107
|
2278
2231
|
msgid "Ignoring extra header \"%{name}\" as it was previously set."
|
2279
2232
|
msgstr ""
|
2280
2233
|
|
2281
|
-
#: ../lib/puppet/http/service.rb:
|
2234
|
+
#: ../lib/puppet/http/service.rb:110
|
2282
2235
|
msgid "Ignoring extra header \"%{name}\" as it has no value."
|
2283
2236
|
msgstr ""
|
2284
2237
|
|
2285
|
-
#: ../lib/puppet/http/service.rb:
|
2238
|
+
#: ../lib/puppet/http/service.rb:133 ../lib/puppet/indirector/rest.rb:53
|
2286
2239
|
msgid "No content type in http response; cannot parse"
|
2287
2240
|
msgstr ""
|
2288
2241
|
|
2289
2242
|
#. TRANSLATORS "pson", "preferred_serialization_format", and "puppetserver" should not be translated
|
2290
|
-
#: ../lib/puppet/http/service/report.rb:
|
2243
|
+
#: ../lib/puppet/http/service/report.rb:59
|
2291
2244
|
msgid "To submit reports to a server running puppetserver %{server_version}, set preferred_serialization_format to pson"
|
2292
2245
|
msgstr ""
|
2293
2246
|
|
@@ -2436,7 +2389,7 @@ msgstr ""
|
|
2436
2389
|
msgid "Unable to serialize catalog to json, retrying with pson"
|
2437
2390
|
msgstr ""
|
2438
2391
|
|
2439
|
-
#: ../lib/puppet/indirector/catalog/rest.rb:
|
2392
|
+
#: ../lib/puppet/indirector/catalog/rest.rb:32 ../lib/puppet/indirector/facts/rest.rb:20 ../lib/puppet/indirector/file_content/rest.rb:29 ../lib/puppet/indirector/file_metadata/rest.rb:26 ../lib/puppet/indirector/node/rest.rb:23
|
2440
2393
|
msgid "Find %{uri} resulted in 404 with the message: %{body}"
|
2441
2394
|
msgstr ""
|
2442
2395
|
|
@@ -2528,7 +2481,11 @@ msgstr ""
|
|
2528
2481
|
msgid "You cannot save facts to the code store; it is only used for getting facts from Facter"
|
2529
2482
|
msgstr ""
|
2530
2483
|
|
2531
|
-
#: ../lib/puppet/indirector/facts/facter.rb:
|
2484
|
+
#: ../lib/puppet/indirector/facts/facter.rb:36
|
2485
|
+
msgid "puppet facts show requires version 4.0.40 or greater of Facter."
|
2486
|
+
msgstr ""
|
2487
|
+
|
2488
|
+
#: ../lib/puppet/indirector/facts/facter.rb:62
|
2532
2489
|
msgid "Loading facts"
|
2533
2490
|
msgstr ""
|
2534
2491
|
|
@@ -2540,7 +2497,7 @@ msgstr ""
|
|
2540
2497
|
msgid "You cannot save facts to the code store; it is only used for getting facts from a remote device"
|
2541
2498
|
msgstr ""
|
2542
2499
|
|
2543
|
-
#: ../lib/puppet/indirector/facts/rest.rb:
|
2500
|
+
#: ../lib/puppet/indirector/facts/rest.rb:28
|
2544
2501
|
msgid "PUT does not accept options"
|
2545
2502
|
msgstr ""
|
2546
2503
|
|
@@ -2591,29 +2548,21 @@ msgstr ""
|
|
2591
2548
|
msgid "Invalid checksum %{checksum}"
|
2592
2549
|
msgstr ""
|
2593
2550
|
|
2594
|
-
#: ../lib/puppet/indirector/
|
2595
|
-
msgid "Puppet::Indirector::FileContent::Http is deprecated. Use Puppet::HTTP::Client instead."
|
2596
|
-
msgstr ""
|
2597
|
-
|
2598
|
-
#: ../lib/puppet/indirector/file_metadata/http.rb:31
|
2551
|
+
#: ../lib/puppet/indirector/file_metadata/http.rb:32
|
2599
2552
|
msgid "cannot lookup multiple files"
|
2600
2553
|
msgstr ""
|
2601
2554
|
|
2602
|
-
#: ../lib/puppet/indirector/file_server.rb:
|
2603
|
-
msgid "Denying %{method} request for %{desc} on fileserver mount '%{mount_name}'. Use of auth directives for 'fileserver.conf' mount points is no longer supported. Remove these directives and use the 'auth.conf' file instead for access control."
|
2604
|
-
msgstr ""
|
2605
|
-
|
2606
|
-
#: ../lib/puppet/indirector/file_server.rb:49
|
2555
|
+
#: ../lib/puppet/indirector/file_server.rb:42
|
2607
2556
|
msgid "Could not find filesystem info for file '%{request}' in environment %{env}"
|
2608
2557
|
msgstr ""
|
2609
2558
|
|
2610
2559
|
#. TRANSLATORS "Hiera" is the name of a code library and should not be translated
|
2611
|
-
#: ../lib/puppet/indirector/hiera.rb:
|
2560
|
+
#: ../lib/puppet/indirector/hiera.rb:12
|
2612
2561
|
msgid "Hiera terminus not supported without hiera library"
|
2613
2562
|
msgstr ""
|
2614
2563
|
|
2615
2564
|
#. TRANSLATORS "merge" is a parameter name and should not be translated
|
2616
|
-
#: ../lib/puppet/indirector/hiera.rb:
|
2565
|
+
#: ../lib/puppet/indirector/hiera.rb:72
|
2617
2566
|
msgid "Unrecognized value for request 'merge' parameter: '%{merge}'"
|
2618
2567
|
msgstr ""
|
2619
2568
|
|
@@ -2698,26 +2647,18 @@ msgstr ""
|
|
2698
2647
|
msgid "directory traversal detected in %{json}: %{name}"
|
2699
2648
|
msgstr ""
|
2700
2649
|
|
2701
|
-
#: ../lib/puppet/indirector/json.rb:41 ../lib/puppet/indirector/msgpack.rb:48 ../lib/puppet/indirector/
|
2650
|
+
#: ../lib/puppet/indirector/json.rb:41 ../lib/puppet/indirector/msgpack.rb:48 ../lib/puppet/indirector/yaml.rb:40
|
2702
2651
|
msgid "invalid key"
|
2703
2652
|
msgstr ""
|
2704
2653
|
|
2705
|
-
#: ../lib/puppet/indirector/json.rb:
|
2654
|
+
#: ../lib/puppet/indirector/json.rb:62
|
2706
2655
|
msgid "Could not read JSON data for %{name} %{key}: %{detail}"
|
2707
2656
|
msgstr ""
|
2708
2657
|
|
2709
|
-
#: ../lib/puppet/indirector/json.rb:
|
2658
|
+
#: ../lib/puppet/indirector/json.rb:68
|
2710
2659
|
msgid "Could not parse JSON data for %{name} %{key}: %{detail}"
|
2711
2660
|
msgstr ""
|
2712
2661
|
|
2713
|
-
#: ../lib/puppet/indirector/key/file.rb:29
|
2714
|
-
msgid "Could not remove %{request} public key: %{detail}"
|
2715
|
-
msgstr ""
|
2716
|
-
|
2717
|
-
#: ../lib/puppet/indirector/key/file.rb:43
|
2718
|
-
msgid "Could not write %{request}: %{detail}"
|
2719
|
-
msgstr ""
|
2720
|
-
|
2721
2662
|
#: ../lib/puppet/indirector/memory.rb:14
|
2722
2663
|
msgid "Could not find %{request} to destroy"
|
2723
2664
|
msgstr ""
|
@@ -2734,7 +2675,7 @@ msgstr ""
|
|
2734
2675
|
msgid "Could not destroy %{name} %{request}: %{detail}"
|
2735
2676
|
msgstr ""
|
2736
2677
|
|
2737
|
-
#: ../lib/puppet/indirector/msgpack.rb:47 ../lib/puppet/indirector/
|
2678
|
+
#: ../lib/puppet/indirector/msgpack.rb:47 ../lib/puppet/indirector/yaml.rb:39
|
2738
2679
|
msgid "directory traversal detected in %{indirection}: %{name}"
|
2739
2680
|
msgstr ""
|
2740
2681
|
|
@@ -2763,55 +2704,31 @@ msgstr ""
|
|
2763
2704
|
msgid "Could not load external node results for %{name}: %{detail}"
|
2764
2705
|
msgstr ""
|
2765
2706
|
|
2766
|
-
#: ../lib/puppet/indirector/report/
|
2767
|
-
msgid "Report %{report} failed: %{detail}"
|
2768
|
-
msgstr ""
|
2769
|
-
|
2770
|
-
#: ../lib/puppet/indirector/report/processor.rb:56
|
2771
|
-
msgid "No report named '%{name}'"
|
2772
|
-
msgstr ""
|
2773
|
-
|
2774
|
-
#: ../lib/puppet/indirector/report/rest.rb:36
|
2775
|
-
msgid "Server version %{version} does not accept reports in '%{format}', use `preferred_serialization_format=pson`"
|
2776
|
-
msgstr ""
|
2777
|
-
|
2778
|
-
#: ../lib/puppet/indirector/report/yaml.rb:19
|
2707
|
+
#: ../lib/puppet/indirector/report/json.rb:19 ../lib/puppet/indirector/report/yaml.rb:19
|
2779
2708
|
msgid "replace_file mode: %{mode} is invalid"
|
2780
2709
|
msgstr ""
|
2781
2710
|
|
2782
|
-
#: ../lib/puppet/indirector/report/yaml.rb:31 ../lib/puppet/indirector/yaml.rb:32
|
2711
|
+
#: ../lib/puppet/indirector/report/json.rb:31 ../lib/puppet/indirector/report/yaml.rb:31 ../lib/puppet/indirector/yaml.rb:32
|
2783
2712
|
msgid "Could not save %{indirection} %{request}: %{detail}"
|
2784
2713
|
msgstr ""
|
2785
2714
|
|
2786
|
-
#: ../lib/puppet/indirector/
|
2787
|
-
msgid "
|
2788
|
-
msgstr ""
|
2789
|
-
|
2790
|
-
#: ../lib/puppet/indirector/request.rb:202
|
2791
|
-
msgid "Error connecting to %{srv_server}:%{srv_port}: %{message}"
|
2792
|
-
msgstr ""
|
2793
|
-
|
2794
|
-
#. TRANSLATORS 'server_list' is the name of a setting and should not be translated
|
2795
|
-
#: ../lib/puppet/indirector/request.rb:214
|
2796
|
-
msgid "Selected server from first entry of the `server_list` setting: %{server}"
|
2715
|
+
#: ../lib/puppet/indirector/report/processor.rb:39
|
2716
|
+
msgid "Report %{report} failed: %{detail}"
|
2797
2717
|
msgstr ""
|
2798
2718
|
|
2799
|
-
|
2800
|
-
|
2801
|
-
msgid "Selected server from the `server` setting: %{server}"
|
2719
|
+
#: ../lib/puppet/indirector/report/processor.rb:56
|
2720
|
+
msgid "No report named '%{name}'"
|
2802
2721
|
msgstr ""
|
2803
2722
|
|
2804
|
-
|
2805
|
-
|
2806
|
-
msgid "Selected port from the first entry of the `server_list` setting: %{port}"
|
2723
|
+
#: ../lib/puppet/indirector/report/rest.rb:31
|
2724
|
+
msgid "Server version %{version} does not accept reports in '%{format}', use `preferred_serialization_format=pson`"
|
2807
2725
|
msgstr ""
|
2808
2726
|
|
2809
|
-
|
2810
|
-
|
2811
|
-
msgid "Selected port from the `masterport` setting: %{port}"
|
2727
|
+
#: ../lib/puppet/indirector/request.rb:102
|
2728
|
+
msgid "Could not find indirection '%{indirection}'"
|
2812
2729
|
msgstr ""
|
2813
2730
|
|
2814
|
-
#: ../lib/puppet/indirector/request.rb:
|
2731
|
+
#: ../lib/puppet/indirector/request.rb:165
|
2815
2732
|
msgid "Could not understand URL %{key}: %{detail}"
|
2816
2733
|
msgstr ""
|
2817
2734
|
|
@@ -2823,75 +2740,10 @@ msgstr ""
|
|
2823
2740
|
msgid "Resource instance does not match request key"
|
2824
2741
|
msgstr ""
|
2825
2742
|
|
2826
|
-
#: ../lib/puppet/indirector/rest.rb:
|
2827
|
-
msgid "Puppet::Indirector::Rest#find is deprecated. Use Puppet::HTTP::Client instead."
|
2828
|
-
msgstr ""
|
2829
|
-
|
2830
|
-
#: ../lib/puppet/indirector/rest.rb:154
|
2831
|
-
msgid "Puppet::Indirector::Rest#head is deprecated. Use Puppet::HTTP::Client instead."
|
2832
|
-
msgstr ""
|
2833
|
-
|
2834
|
-
#: ../lib/puppet/indirector/rest.rb:167
|
2835
|
-
msgid "Puppet::Indirector::Rest#search is deprecated. Use Puppet::HTTP::Client instead."
|
2836
|
-
msgstr ""
|
2837
|
-
|
2838
|
-
#: ../lib/puppet/indirector/rest.rb:181
|
2839
|
-
msgid "Puppet::Indirector::Rest#destroy is deprecated. Use Puppet::HTTP::Client instead."
|
2840
|
-
msgstr ""
|
2841
|
-
|
2842
|
-
#: ../lib/puppet/indirector/rest.rb:182
|
2843
|
-
msgid "DELETE does not accept options"
|
2844
|
-
msgstr ""
|
2845
|
-
|
2846
|
-
#: ../lib/puppet/indirector/rest.rb:197
|
2847
|
-
msgid "Puppet::Indirector::Rest#save is deprecated. Use Puppet::HTTP::Client instead."
|
2848
|
-
msgstr ""
|
2849
|
-
|
2850
|
-
#. TRANSLATORS "PSON" should not be translated
|
2851
|
-
#: ../lib/puppet/indirector/rest.rb:235
|
2852
|
-
msgid "Downgrading to PSON for future requests"
|
2853
|
-
msgstr ""
|
2854
|
-
|
2855
|
-
#: ../lib/puppet/indirector/rest.rb:277 ../lib/puppet/rest/response.rb:31
|
2743
|
+
#: ../lib/puppet/indirector/rest.rb:43
|
2856
2744
|
msgid "Error %{code} on SERVER: %{returned_message}"
|
2857
2745
|
msgstr ""
|
2858
2746
|
|
2859
|
-
#: ../lib/puppet/indirector/ssl_file.rb:34
|
2860
|
-
msgid "No file or directory setting provided; terminus %{class_name} cannot function"
|
2861
|
-
msgstr ""
|
2862
|
-
|
2863
|
-
#: ../lib/puppet/indirector/ssl_file.rb:55
|
2864
|
-
msgid "Removing file %{model} %{request} at '%{path}'"
|
2865
|
-
msgstr ""
|
2866
|
-
|
2867
|
-
#: ../lib/puppet/indirector/ssl_file.rb:59
|
2868
|
-
msgid "Could not remove %{request}: %{detail}"
|
2869
|
-
msgstr ""
|
2870
|
-
|
2871
|
-
#: ../lib/puppet/indirector/ssl_file.rb:75
|
2872
|
-
msgid "Cannot save %{request}; parent directory %{dir} does not exist"
|
2873
|
-
msgstr ""
|
2874
|
-
|
2875
|
-
#: ../lib/puppet/indirector/ssl_file.rb:76
|
2876
|
-
msgid "Cannot save %{request}; parent directory %{dir} is not writable"
|
2877
|
-
msgstr ""
|
2878
|
-
|
2879
|
-
#: ../lib/puppet/indirector/ssl_file.rb:121
|
2880
|
-
msgid "Tried to fix SSL files to a file containing uppercase"
|
2881
|
-
msgstr ""
|
2882
|
-
|
2883
|
-
#: ../lib/puppet/indirector/ssl_file.rb:130
|
2884
|
-
msgid "Automatic downcasing and renaming of ssl files is deprecated; please request the file using its correct case: %{full_file}"
|
2885
|
-
msgstr ""
|
2886
|
-
|
2887
|
-
#: ../lib/puppet/indirector/ssl_file.rb:150
|
2888
|
-
msgid "Could not write %{path} to %{setting}: %{detail}"
|
2889
|
-
msgstr ""
|
2890
|
-
|
2891
|
-
#: ../lib/puppet/indirector/ssl_file.rb:153
|
2892
|
-
msgid "You must provide a setting to determine where the files are stored"
|
2893
|
-
msgstr ""
|
2894
|
-
|
2895
2747
|
#: ../lib/puppet/indirector/terminus.rb:37
|
2896
2748
|
msgid "Could not find indirection instance %{name} for %{terminus}"
|
2897
2749
|
msgstr ""
|
@@ -3207,11 +3059,11 @@ msgid "Loaded puppet/type/%{name} but no class was created"
|
|
3207
3059
|
msgstr ""
|
3208
3060
|
|
3209
3061
|
#. TRANSLATORS 'metadata.json' is a specific file name and should not be translated.
|
3210
|
-
#: ../lib/puppet/module.rb:
|
3062
|
+
#: ../lib/puppet/module.rb:221
|
3211
3063
|
msgid "%{name} has an invalid and unparsable metadata.json file. The parse error: %{error}"
|
3212
3064
|
msgstr ""
|
3213
3065
|
|
3214
|
-
#: ../lib/puppet/module.rb:
|
3066
|
+
#: ../lib/puppet/module.rb:467
|
3215
3067
|
msgid ""
|
3216
3068
|
" Invalid module name '%{name}'; module names must match either:\n"
|
3217
3069
|
" An installed module name (ex. modulename) matching the expression /^[a-z][a-z0-9_]*$/ -or-\n"
|
@@ -3346,10 +3198,6 @@ msgstr ""
|
|
3346
3198
|
msgid "Installing -- do not interrupt ..."
|
3347
3199
|
msgstr ""
|
3348
3200
|
|
3349
|
-
#: ../lib/puppet/module_tool/applications/searcher.rb:15
|
3350
|
-
msgid "Searching %{host} ..."
|
3351
|
-
msgstr ""
|
3352
|
-
|
3353
3201
|
#: ../lib/puppet/module_tool/applications/uninstaller.rb:92
|
3354
3202
|
msgid "Either the `--ignore_changes` or `--force` argument must be specified to uninstall modules when running in FIPS mode."
|
3355
3203
|
msgstr ""
|
@@ -3759,67 +3607,6 @@ msgstr ""
|
|
3759
3607
|
msgid "No suitable tar implementation found"
|
3760
3608
|
msgstr ""
|
3761
3609
|
|
3762
|
-
#. TRANSLATORS "path" is a configuration file entry and should not be translated
|
3763
|
-
#: ../lib/puppet/network/auth_config_parser.rb:32
|
3764
|
-
msgid "Missing or invalid 'path' before right directive at %{error_location}"
|
3765
|
-
msgstr ""
|
3766
|
-
|
3767
|
-
#: ../lib/puppet/network/auth_config_parser.rb:38 ../lib/puppet/util/network_device/config.rb:71
|
3768
|
-
msgid "Invalid entry at %{error_location}: %{file_text}"
|
3769
|
-
msgstr ""
|
3770
|
-
|
3771
|
-
#: ../lib/puppet/network/auth_config_parser.rb:57
|
3772
|
-
msgid "allowing %{value} access"
|
3773
|
-
msgstr ""
|
3774
|
-
|
3775
|
-
#: ../lib/puppet/network/auth_config_parser.rb:59
|
3776
|
-
msgid "denying %{value} access"
|
3777
|
-
msgstr ""
|
3778
|
-
|
3779
|
-
#: ../lib/puppet/network/auth_config_parser.rb:61
|
3780
|
-
msgid "allowing IP %{value} access"
|
3781
|
-
msgstr ""
|
3782
|
-
|
3783
|
-
#: ../lib/puppet/network/auth_config_parser.rb:63
|
3784
|
-
msgid "denying IP %{value} access"
|
3785
|
-
msgstr ""
|
3786
|
-
|
3787
|
-
#: ../lib/puppet/network/auth_config_parser.rb:65
|
3788
|
-
msgid "allowing 'method' %{value}"
|
3789
|
-
msgstr ""
|
3790
|
-
|
3791
|
-
#: ../lib/puppet/network/auth_config_parser.rb:67
|
3792
|
-
msgid "adding environment %{value}"
|
3793
|
-
msgstr ""
|
3794
|
-
|
3795
|
-
#: ../lib/puppet/network/auth_config_parser.rb:69
|
3796
|
-
msgid "adding authentication %{value}"
|
3797
|
-
msgstr ""
|
3798
|
-
|
3799
|
-
#: ../lib/puppet/network/authconfig.rb:41
|
3800
|
-
msgid "Inserting default '%{acl}' (auth %{auth}) ACL"
|
3801
|
-
msgstr ""
|
3802
|
-
|
3803
|
-
#: ../lib/puppet/network/authconfig.rb:71
|
3804
|
-
msgid "Denying access: %{authorization_failure_exception}"
|
3805
|
-
msgstr ""
|
3806
|
-
|
3807
|
-
#: ../lib/puppet/network/authstore.rb:22
|
3808
|
-
msgid "Name and IP must be passed to 'allowed?'"
|
3809
|
-
msgstr ""
|
3810
|
-
|
3811
|
-
#: ../lib/puppet/network/authstore.rb:37
|
3812
|
-
msgid "defaulting to no access for %{name}"
|
3813
|
-
msgstr ""
|
3814
|
-
|
3815
|
-
#: ../lib/puppet/network/authstore.rb:190
|
3816
|
-
msgid "Invalid declaration type %{type}"
|
3817
|
-
msgstr ""
|
3818
|
-
|
3819
|
-
#: ../lib/puppet/network/authstore.rb:258
|
3820
|
-
msgid "Invalid IP pattern %{value}"
|
3821
|
-
msgstr ""
|
3822
|
-
|
3823
3610
|
#: ../lib/puppet/network/client_request.rb:15
|
3824
3611
|
msgid "Request is not set up; cannot build call"
|
3825
3612
|
msgstr ""
|
@@ -3873,77 +3660,77 @@ msgstr ""
|
|
3873
3660
|
msgid "Serialized YAML did not contain a valid instance of %{klass}"
|
3874
3661
|
msgstr ""
|
3875
3662
|
|
3876
|
-
#: ../lib/puppet/network/http/api/indirected_routes.rb:
|
3663
|
+
#: ../lib/puppet/network/http/api/indirected_routes.rb:42
|
3877
3664
|
msgid "No handler for %{indirection}"
|
3878
3665
|
msgstr ""
|
3879
3666
|
|
3880
|
-
#: ../lib/puppet/network/http/api/indirected_routes.rb:
|
3667
|
+
#: ../lib/puppet/network/http/api/indirected_routes.rb:65
|
3881
3668
|
msgid "The indirection name must be purely alphanumeric, not '%{indirection_name}'"
|
3882
3669
|
msgstr ""
|
3883
3670
|
|
3884
|
-
#: ../lib/puppet/network/http/api/indirected_routes.rb:
|
3671
|
+
#: ../lib/puppet/network/http/api/indirected_routes.rb:75
|
3885
3672
|
msgid "Indirection '%{indirection_name}' does not match url prefix '%{url_prefix}'"
|
3886
3673
|
msgstr ""
|
3887
3674
|
|
3888
|
-
#: ../lib/puppet/network/http/api/indirected_routes.rb:
|
3675
|
+
#: ../lib/puppet/network/http/api/indirected_routes.rb:81
|
3889
3676
|
msgid "Could not find indirection '%{indirection_name}'"
|
3890
3677
|
msgstr ""
|
3891
3678
|
|
3892
|
-
#: ../lib/puppet/network/http/api/indirected_routes.rb:
|
3679
|
+
#: ../lib/puppet/network/http/api/indirected_routes.rb:87
|
3893
3680
|
msgid "An environment parameter must be specified"
|
3894
3681
|
msgstr ""
|
3895
3682
|
|
3896
|
-
#: ../lib/puppet/network/http/api/indirected_routes.rb:
|
3683
|
+
#: ../lib/puppet/network/http/api/indirected_routes.rb:92
|
3897
3684
|
msgid "The environment must be purely alphanumeric, not '%{environment}'"
|
3898
3685
|
msgstr ""
|
3899
3686
|
|
3900
|
-
#: ../lib/puppet/network/http/api/indirected_routes.rb:
|
3687
|
+
#: ../lib/puppet/network/http/api/indirected_routes.rb:103
|
3901
3688
|
msgid "Could not find environment '%{environment}'"
|
3902
3689
|
msgstr ""
|
3903
3690
|
|
3904
|
-
#: ../lib/puppet/network/http/api/indirected_routes.rb:
|
3691
|
+
#: ../lib/puppet/network/http/api/indirected_routes.rb:110
|
3905
3692
|
msgid "No request key specified in %{uri}"
|
3906
3693
|
msgstr ""
|
3907
3694
|
|
3908
|
-
#: ../lib/puppet/network/http/api/indirected_routes.rb:
|
3695
|
+
#: ../lib/puppet/network/http/api/indirected_routes.rb:122
|
3909
3696
|
msgid "Could not find %{value0} %{key}"
|
3910
3697
|
msgstr ""
|
3911
3698
|
|
3912
|
-
#: ../lib/puppet/network/http/api/indirected_routes.rb:
|
3699
|
+
#: ../lib/puppet/network/http/api/indirected_routes.rb:129
|
3913
3700
|
msgid "Rendered result in %{format}"
|
3914
3701
|
msgstr ""
|
3915
3702
|
|
3916
|
-
#: ../lib/puppet/network/http/api/indirected_routes.rb:
|
3703
|
+
#: ../lib/puppet/network/http/api/indirected_routes.rb:135
|
3917
3704
|
msgid "Sent response"
|
3918
3705
|
msgstr ""
|
3919
3706
|
|
3920
|
-
#: ../lib/puppet/network/http/api/indirected_routes.rb:
|
3707
|
+
#: ../lib/puppet/network/http/api/indirected_routes.rb:143
|
3921
3708
|
msgid "Could not find %{indirection} %{key}"
|
3922
3709
|
msgstr ""
|
3923
3710
|
|
3924
|
-
#: ../lib/puppet/network/http/api/indirected_routes.rb:
|
3711
|
+
#: ../lib/puppet/network/http/api/indirected_routes.rb:155
|
3925
3712
|
msgid "Could not find instances in %{indirection} with '%{key}'"
|
3926
3713
|
msgstr ""
|
3927
3714
|
|
3928
|
-
#: ../lib/puppet/network/http/api/indirected_routes.rb:
|
3715
|
+
#: ../lib/puppet/network/http/api/indirected_routes.rb:203 ../lib/puppet/network/http/request.rb:61
|
3929
3716
|
msgid "No supported formats are acceptable (Accept: %{accepted_formats})"
|
3930
3717
|
msgstr ""
|
3931
3718
|
|
3932
|
-
#: ../lib/puppet/network/http/api/indirected_routes.rb:
|
3719
|
+
#: ../lib/puppet/network/http/api/indirected_routes.rb:228
|
3933
3720
|
msgid "The request body is invalid: %{message}"
|
3934
3721
|
msgstr ""
|
3935
3722
|
|
3936
3723
|
#. TRANSLATORS "mime-type" is a keyword and should not be translated
|
3937
3724
|
#. TRANSLATORS "mime-type" is a keyword and should not be translated
|
3938
|
-
#: ../lib/puppet/network/http/api/indirected_routes.rb:
|
3725
|
+
#: ../lib/puppet/network/http/api/indirected_routes.rb:234 ../lib/puppet/network/http/request.rb:32
|
3939
3726
|
msgid "Client sent a mime-type (%{header}) that doesn't correspond to a format we support"
|
3940
3727
|
msgstr ""
|
3941
3728
|
|
3942
|
-
#: ../lib/puppet/network/http/api/indirected_routes.rb:
|
3729
|
+
#: ../lib/puppet/network/http/api/indirected_routes.rb:240
|
3943
3730
|
msgid "No support for http method %{http_method}"
|
3944
3731
|
msgstr ""
|
3945
3732
|
|
3946
|
-
#: ../lib/puppet/network/http/api/indirected_routes.rb:
|
3733
|
+
#: ../lib/puppet/network/http/api/indirected_routes.rb:245
|
3947
3734
|
msgid "No support for plurality %{indirection} for %{http_method} operations"
|
3948
3735
|
msgstr ""
|
3949
3736
|
|
@@ -3951,92 +3738,18 @@ msgstr ""
|
|
3951
3738
|
msgid "Not a valid indirection type"
|
3952
3739
|
msgstr ""
|
3953
3740
|
|
3954
|
-
#: ../lib/puppet/network/http/
|
3955
|
-
msgid "%{env_name} is not a known environment"
|
3956
|
-
msgstr ""
|
3957
|
-
|
3958
|
-
#: ../lib/puppet/network/http/api/master/v3/environment.rb:43
|
3959
|
-
msgid "Application %{application} assigns nodes to non-existent components: %{component_list}"
|
3960
|
-
msgstr ""
|
3961
|
-
|
3962
|
-
#: ../lib/puppet/network/http/api/master/v3/environment.rb:49
|
3963
|
-
msgid "Application %{application} has components without assigned nodes: %{component_list}"
|
3964
|
-
msgstr ""
|
3965
|
-
|
3966
|
-
#: ../lib/puppet/network/http/api/master/v3/environment.rb:58
|
3967
|
-
msgid "Application %{app} assigns multiple nodes to component %{comp}"
|
3968
|
-
msgstr ""
|
3969
|
-
|
3970
|
-
#: ../lib/puppet/network/http/compression.rb:23 ../lib/puppet/network/http/compression.rb:27
|
3971
|
-
msgid "Puppet::Network::HTTP::Compression::Active#uncompress_body is deprecated."
|
3972
|
-
msgstr ""
|
3973
|
-
|
3974
|
-
#: ../lib/puppet/network/http/compression.rb:32 ../lib/puppet/network/http/compression.rb:46
|
3975
|
-
msgid "Unknown content encoding - %{encoding}"
|
3976
|
-
msgstr ""
|
3977
|
-
|
3978
|
-
#: ../lib/puppet/network/http/compression.rb:37
|
3979
|
-
msgid "Puppet::Network::HTTP::Compression::Active#uncompress is deprecated."
|
3980
|
-
msgstr ""
|
3981
|
-
|
3982
|
-
#: ../lib/puppet/network/http/compression.rb:77
|
3983
|
-
msgid "Puppet::Network::HTTP::Compression::ZlibAdapter#uncompress is deprecated."
|
3984
|
-
msgstr ""
|
3985
|
-
|
3986
|
-
#: ../lib/puppet/network/http/compression.rb:104
|
3987
|
-
msgid "Puppet::Network::HTTP::Compression::None#uncompress_body is deprecated."
|
3988
|
-
msgstr ""
|
3989
|
-
|
3990
|
-
#: ../lib/puppet/network/http/compression.rb:113
|
3991
|
-
msgid "Puppet::Network::HTTP::Compression::None#uncompress is deprecated."
|
3992
|
-
msgstr ""
|
3993
|
-
|
3994
|
-
#: ../lib/puppet/network/http/compression.rb:120
|
3995
|
-
msgid "Puppet::Network::HTTP::Compression::IdentityAdapter#uncompress is deprecated."
|
3996
|
-
msgstr ""
|
3997
|
-
|
3998
|
-
#: ../lib/puppet/network/http/connection.rb:56
|
3741
|
+
#: ../lib/puppet/network/http/connection.rb:43
|
3999
3742
|
msgid "Unrecognized option(s): %{opts}"
|
4000
3743
|
msgstr ""
|
4001
3744
|
|
4002
|
-
#: ../lib/puppet/network/http/connection.rb:
|
3745
|
+
#: ../lib/puppet/network/http/connection.rb:49
|
4003
3746
|
msgid "Expected an instance of Puppet::SSL::Verifier but was passed a %{klass}"
|
4004
3747
|
msgstr ""
|
4005
3748
|
|
4006
|
-
#: ../lib/puppet/network/http/connection.rb:
|
3749
|
+
#: ../lib/puppet/network/http/connection.rb:272
|
4007
3750
|
msgid "Too many HTTP redirections for %{host}:%{port}"
|
4008
3751
|
msgstr ""
|
4009
3752
|
|
4010
|
-
#. TRANSLATORS: Used in the phrase:
|
4011
|
-
#. "Received a response from the remote server."
|
4012
|
-
#: ../lib/puppet/network/http/connection.rb:259
|
4013
|
-
msgid "the remote server"
|
4014
|
-
msgstr ""
|
4015
|
-
|
4016
|
-
#: ../lib/puppet/network/http/connection.rb:263
|
4017
|
-
msgid "Received a %{status_code} response from %{server_hostname}, but the Retry-After header value of \"%{retry_after}\" could not be converted to an integer or RFC 2822 date."
|
4018
|
-
msgstr ""
|
4019
|
-
|
4020
|
-
#: ../lib/puppet/network/http/connection.rb:274
|
4021
|
-
msgid "Received a %{status_code} response from %{server_hostname}. Sleeping for %{retry_sleep} seconds before retrying the request."
|
4022
|
-
msgstr ""
|
4023
|
-
|
4024
|
-
#: ../lib/puppet/network/http/connection.rb:335
|
4025
|
-
msgid "request %{uri} interrupted after %{elapsed} seconds"
|
4026
|
-
msgstr ""
|
4027
|
-
|
4028
|
-
#: ../lib/puppet/network/http/connection.rb:337
|
4029
|
-
msgid "request %{uri} timed out after %{elapsed} seconds"
|
4030
|
-
msgstr ""
|
4031
|
-
|
4032
|
-
#: ../lib/puppet/network/http/connection.rb:339
|
4033
|
-
msgid "request %{uri} failed: %{msg}"
|
4034
|
-
msgstr ""
|
4035
|
-
|
4036
|
-
#: ../lib/puppet/network/http/connection.rb:346
|
4037
|
-
msgid "Puppet::Network::HTTP::Connection is deprecated. Please use Puppet::Network::HTTP::ConnectionAdapter instead."
|
4038
|
-
msgstr ""
|
4039
|
-
|
4040
3753
|
#: ../lib/puppet/network/http/error.rb:23
|
4041
3754
|
msgid "Not Acceptable: %{message}"
|
4042
3755
|
msgstr ""
|
@@ -4065,30 +3778,22 @@ msgstr ""
|
|
4065
3778
|
msgid "Server Error: %{message}"
|
4066
3779
|
msgstr ""
|
4067
3780
|
|
4068
|
-
#: ../lib/puppet/network/http/handler.rb:
|
3781
|
+
#: ../lib/puppet/network/http/handler.rb:22
|
4069
3782
|
msgid "Given multiple routes with identical path regexes: %{regexes}"
|
4070
3783
|
msgstr ""
|
4071
3784
|
|
4072
|
-
#: ../lib/puppet/network/http/handler.rb:
|
3785
|
+
#: ../lib/puppet/network/http/handler.rb:66
|
4073
3786
|
msgid "Processed request %{request_method} %{request_path}"
|
4074
3787
|
msgstr ""
|
4075
3788
|
|
4076
|
-
#: ../lib/puppet/network/http/handler.rb:
|
3789
|
+
#: ../lib/puppet/network/http/handler.rb:112
|
4077
3790
|
msgid "No route for %{request} %{path}"
|
4078
3791
|
msgstr ""
|
4079
3792
|
|
4080
|
-
#: ../lib/puppet/network/http/handler.rb:
|
3793
|
+
#: ../lib/puppet/network/http/handler.rb:137
|
4081
3794
|
msgid "Could not resolve %{ip}: %{detail}"
|
4082
3795
|
msgstr ""
|
4083
3796
|
|
4084
|
-
#: ../lib/puppet/network/http/nocache_pool.rb:6
|
4085
|
-
msgid "Puppet::Network::HTTP::NoCachePool is deprecated."
|
4086
|
-
msgstr ""
|
4087
|
-
|
4088
|
-
#: ../lib/puppet/network/http/pool.rb:66
|
4089
|
-
msgid "Failed to close connection for %{site}: %{detail}"
|
4090
|
-
msgstr ""
|
4091
|
-
|
4092
3797
|
#: ../lib/puppet/network/http/request.rb:14
|
4093
3798
|
msgid "Unknown arguments: %{args}"
|
4094
3799
|
msgstr ""
|
@@ -4102,39 +3807,15 @@ msgid "Missing required Accept header"
|
|
4102
3807
|
msgstr ""
|
4103
3808
|
|
4104
3809
|
#. TRANSLATORS 'ssl_context' is an argument and should not be translated
|
4105
|
-
#: ../lib/puppet/network/http_pool.rb:
|
3810
|
+
#: ../lib/puppet/network/http_pool.rb:63
|
4106
3811
|
msgid "An ssl_context is required when connecting to 'https://%{host}:%{port}'"
|
4107
3812
|
msgstr ""
|
4108
3813
|
|
4109
3814
|
#. TRANSLATORS 'ssl_context' is an argument and should not be translated
|
4110
|
-
#: ../lib/puppet/network/http_pool.rb:
|
3815
|
+
#: ../lib/puppet/network/http_pool.rb:71
|
4111
3816
|
msgid "An ssl_context is unnecessary when connecting to 'http://%{host}:%{port}' and will be ignored"
|
4112
3817
|
msgstr ""
|
4113
3818
|
|
4114
|
-
#: ../lib/puppet/network/rights.rb:59
|
4115
|
-
msgid "Forbidden request: %{msg}"
|
4116
|
-
msgstr ""
|
4117
|
-
|
4118
|
-
#: ../lib/puppet/network/rights.rb:127
|
4119
|
-
msgid "Unknown right type '%{name}'"
|
4120
|
-
msgstr ""
|
4121
|
-
|
4122
|
-
#: ../lib/puppet/network/rights.rb:169
|
4123
|
-
msgid "'%{m}' is not an allowed value for method directive"
|
4124
|
-
msgstr ""
|
4125
|
-
|
4126
|
-
#: ../lib/puppet/network/rights.rb:176
|
4127
|
-
msgid "'%{m}' is already in the '%{name}' ACL"
|
4128
|
-
msgstr ""
|
4129
|
-
|
4130
|
-
#: ../lib/puppet/network/rights.rb:183
|
4131
|
-
msgid "'%{env}' is already in the '%{name}' ACL"
|
4132
|
-
msgstr ""
|
4133
|
-
|
4134
|
-
#: ../lib/puppet/network/rights.rb:195
|
4135
|
-
msgid "'%{name}' incorrect authenticated value: %{authentication}"
|
4136
|
-
msgstr ""
|
4137
|
-
|
4138
3819
|
#: ../lib/puppet/node.rb:27
|
4139
3820
|
msgid "No name provided in serialized data"
|
4140
3821
|
msgstr ""
|
@@ -4151,11 +3832,7 @@ msgstr ""
|
|
4151
3832
|
msgid "The node parameter '%{param_name}' for node '%{node_name}' was already set to '%{value}'. It could not be set to '%{desired_value}'"
|
4152
3833
|
msgstr ""
|
4153
3834
|
|
4154
|
-
#: ../lib/puppet/node.rb:
|
4155
|
-
msgid "Host is missing hostname and/or domain: %{name}"
|
4156
|
-
msgstr ""
|
4157
|
-
|
4158
|
-
#: ../lib/puppet/node.rb:230
|
3835
|
+
#: ../lib/puppet/node.rb:201
|
4159
3836
|
msgid "Trusted node data modified for node %{name}"
|
4160
3837
|
msgstr ""
|
4161
3838
|
|
@@ -4163,7 +3840,7 @@ msgstr ""
|
|
4163
3840
|
msgid "The 'disable_per_environment_manifest' setting is true, and the '%{env_name}' environment has an environment.conf manifest that conflicts with the 'default_manifest' setting."
|
4164
3841
|
msgstr ""
|
4165
3842
|
|
4166
|
-
#: ../lib/puppet/node/environment.rb:
|
3843
|
+
#: ../lib/puppet/node/environment.rb:568 ../lib/puppet/pops/loaders.rb:301
|
4167
3844
|
msgid "Could not parse for environment %{env}: %{detail}"
|
4168
3845
|
msgstr ""
|
4169
3846
|
|
@@ -4189,60 +3866,60 @@ msgid "Given data_type value is not a data type, got '%{type}'"
|
|
4189
3866
|
msgstr ""
|
4190
3867
|
|
4191
3868
|
#. TRANSLATORS 'type' and 'title' are internal parameter names - do not translate
|
4192
|
-
#: ../lib/puppet/pal/json_catalog_encoder.rb:
|
3869
|
+
#: ../lib/puppet/pal/json_catalog_encoder.rb:54
|
4193
3870
|
msgid "Both type and title must be given"
|
4194
3871
|
msgstr ""
|
4195
3872
|
|
4196
3873
|
#. TRANSLATORS: do not translate the variable names in this error message
|
4197
3874
|
#. TRANSLATORS: do not translate the variable names in this error message
|
4198
|
-
#: ../lib/puppet/pal/pal_impl.rb:
|
3875
|
+
#: ../lib/puppet/pal/pal_impl.rb:76 ../lib/puppet/pal/pal_impl.rb:174
|
4199
3876
|
msgid "manifest_file or code_string cannot be given when configured_by_env is true"
|
4200
3877
|
msgstr ""
|
4201
3878
|
|
4202
|
-
#: ../lib/puppet/pal/pal_impl.rb:
|
3879
|
+
#: ../lib/puppet/pal/pal_impl.rb:222
|
4203
3880
|
msgid "temporary environment name"
|
4204
3881
|
msgstr ""
|
4205
3882
|
|
4206
3883
|
#. TRANSLATORS: do not translate variable name string in these assertions
|
4207
|
-
#: ../lib/puppet/pal/pal_impl.rb:
|
3884
|
+
#: ../lib/puppet/pal/pal_impl.rb:227
|
4208
3885
|
msgid "A block must be given to 'in_tmp_environment'"
|
4209
3886
|
msgstr ""
|
4210
3887
|
|
4211
3888
|
#. TRANSLATORS terms in the assertions below are names of terms in code
|
4212
|
-
#: ../lib/puppet/pal/pal_impl.rb:
|
3889
|
+
#: ../lib/puppet/pal/pal_impl.rb:282
|
4213
3890
|
msgid "A block must be given to 'in_environment'"
|
4214
3891
|
msgstr ""
|
4215
3892
|
|
4216
3893
|
#. TRANSLATORS 'in_environment' is a name, do not translate
|
4217
|
-
#: ../lib/puppet/pal/pal_impl.rb:
|
3894
|
+
#: ../lib/puppet/pal/pal_impl.rb:287
|
4218
3895
|
msgid "The environment directory '%{env_dir}' does not exist"
|
4219
3896
|
msgstr ""
|
4220
3897
|
|
4221
|
-
#: ../lib/puppet/pal/pal_impl.rb:
|
3898
|
+
#: ../lib/puppet/pal/pal_impl.rb:310
|
4222
3899
|
msgid "No directory found for the environment '%{env_name}' on the path '%{envpath}'"
|
4223
3900
|
msgstr ""
|
4224
3901
|
|
4225
|
-
#: ../lib/puppet/pal/pal_impl.rb:
|
3902
|
+
#: ../lib/puppet/pal/pal_impl.rb:364
|
4226
3903
|
msgid "Given variables must be a hash, got %{type}"
|
4227
3904
|
msgstr ""
|
4228
3905
|
|
4229
|
-
#: ../lib/puppet/pal/pal_impl.rb:
|
3906
|
+
#: ../lib/puppet/pal/pal_impl.rb:370
|
4230
3907
|
msgid "Given variable '%{varname}' has illegal name"
|
4231
3908
|
msgstr ""
|
4232
3909
|
|
4233
|
-
#: ../lib/puppet/pal/pal_impl.rb:
|
3910
|
+
#: ../lib/puppet/pal/pal_impl.rb:374
|
4234
3911
|
msgid "Given value for '%{varname}' has illegal type - got: %{type}"
|
4235
3912
|
msgstr ""
|
4236
3913
|
|
4237
|
-
#: ../lib/puppet/pal/pal_impl.rb:
|
3914
|
+
#: ../lib/puppet/pal/pal_impl.rb:511
|
4238
3915
|
msgid "Puppet Pal: %{what}"
|
4239
3916
|
msgstr ""
|
4240
3917
|
|
4241
|
-
#: ../lib/puppet/pal/pal_impl.rb:
|
3918
|
+
#: ../lib/puppet/pal/pal_impl.rb:525
|
4242
3919
|
msgid "Cannot use '%{a_term}' and '%{b_term}' at the same time"
|
4243
3920
|
msgstr ""
|
4244
3921
|
|
4245
|
-
#: ../lib/puppet/pal/pal_impl.rb:
|
3922
|
+
#: ../lib/puppet/pal/pal_impl.rb:532
|
4246
3923
|
msgid "A block must be given"
|
4247
3924
|
msgstr ""
|
4248
3925
|
|
@@ -4307,7 +3984,7 @@ msgstr ""
|
|
4307
3984
|
msgid "Node inheritance is removed in Puppet 4.0.0. See http://links.puppet.com/puppet-node-inheritance-deprecation"
|
4308
3985
|
msgstr ""
|
4309
3986
|
|
4310
|
-
#: ../lib/puppet/parser/ast/pops_bridge.rb:
|
3987
|
+
#: ../lib/puppet/parser/ast/pops_bridge.rb:180
|
4311
3988
|
msgid "Instantiating Resource with type checked parameters - scope is missing, skipping type checking."
|
4312
3989
|
msgstr ""
|
4313
3990
|
|
@@ -4332,209 +4009,100 @@ msgid "For more information, see https://puppet.com/docs/puppet/latest/environme
|
|
4332
4009
|
msgstr ""
|
4333
4010
|
|
4334
4011
|
#. TRANSLATORS "stage" is a keyword in Puppet and should not be translated
|
4335
|
-
#: ../lib/puppet/parser/compiler.rb:
|
4012
|
+
#: ../lib/puppet/parser/compiler.rb:82
|
4336
4013
|
msgid "Only classes can set 'stage'; normal resources like %{resource} cannot change run stage"
|
4337
4014
|
msgstr ""
|
4338
4015
|
|
4339
|
-
|
4340
|
-
#: ../lib/puppet/parser/compiler.rb:125
|
4341
|
-
msgid "Application instances like '%{resource}' can only be contained within a Site"
|
4342
|
-
msgstr ""
|
4343
|
-
|
4344
|
-
#: ../lib/puppet/parser/compiler.rb:155
|
4016
|
+
#: ../lib/puppet/parser/compiler.rb:123
|
4345
4017
|
msgid "For compiling %{node}"
|
4346
4018
|
msgstr ""
|
4347
4019
|
|
4348
|
-
#: ../lib/puppet/parser/compiler.rb:
|
4020
|
+
#: ../lib/puppet/parser/compiler.rb:127
|
4349
4021
|
msgid "Compile: Set node parameters"
|
4350
4022
|
msgstr ""
|
4351
4023
|
|
4352
|
-
#: ../lib/puppet/parser/compiler.rb:
|
4024
|
+
#: ../lib/puppet/parser/compiler.rb:129
|
4353
4025
|
msgid "Compile: Created settings scope"
|
4354
4026
|
msgstr ""
|
4355
4027
|
|
4356
|
-
#: ../lib/puppet/parser/compiler.rb:163
|
4357
|
-
msgid "Compile: Evaluated capability mappings"
|
4358
|
-
msgstr ""
|
4359
|
-
|
4360
4028
|
#. TRANSLATORS "main" is a function name and should not be translated
|
4361
|
-
#: ../lib/puppet/parser/compiler.rb:
|
4029
|
+
#: ../lib/puppet/parser/compiler.rb:132
|
4362
4030
|
msgid "Compile: Evaluated main"
|
4363
4031
|
msgstr ""
|
4364
4032
|
|
4365
|
-
#: ../lib/puppet/parser/compiler.rb:
|
4366
|
-
msgid "Compile: Evaluated site"
|
4367
|
-
msgstr ""
|
4368
|
-
|
4369
|
-
#: ../lib/puppet/parser/compiler.rb:170
|
4033
|
+
#: ../lib/puppet/parser/compiler.rb:134
|
4370
4034
|
msgid "Compile: Evaluated AST node"
|
4371
4035
|
msgstr ""
|
4372
4036
|
|
4373
|
-
#: ../lib/puppet/parser/compiler.rb:
|
4037
|
+
#: ../lib/puppet/parser/compiler.rb:136
|
4374
4038
|
msgid "Compile: Evaluated node classes"
|
4375
4039
|
msgstr ""
|
4376
4040
|
|
4377
|
-
#: ../lib/puppet/parser/compiler.rb:
|
4378
|
-
msgid "Compile: Evaluated application instances"
|
4379
|
-
msgstr ""
|
4380
|
-
|
4381
|
-
#: ../lib/puppet/parser/compiler.rb:177
|
4382
|
-
msgid "Compile: Evaluated site capability mappings"
|
4383
|
-
msgstr ""
|
4384
|
-
|
4385
|
-
#: ../lib/puppet/parser/compiler.rb:179
|
4041
|
+
#: ../lib/puppet/parser/compiler.rb:138
|
4386
4042
|
msgid "Compile: Evaluated generators"
|
4387
4043
|
msgstr ""
|
4388
4044
|
|
4389
|
-
#: ../lib/puppet/parser/compiler.rb:
|
4045
|
+
#: ../lib/puppet/parser/compiler.rb:140
|
4390
4046
|
msgid "Compile: Validate Catalog pre-finish"
|
4391
4047
|
msgstr ""
|
4392
4048
|
|
4393
|
-
#: ../lib/puppet/parser/compiler.rb:
|
4049
|
+
#: ../lib/puppet/parser/compiler.rb:144
|
4394
4050
|
msgid "Compile: Finished catalog"
|
4395
4051
|
msgstr ""
|
4396
4052
|
|
4397
|
-
#: ../lib/puppet/parser/compiler.rb:
|
4398
|
-
msgid "Compile: Prune"
|
4399
|
-
msgstr ""
|
4400
|
-
|
4401
|
-
#: ../lib/puppet/parser/compiler.rb:191
|
4053
|
+
#: ../lib/puppet/parser/compiler.rb:148
|
4402
4054
|
msgid "Compile: Validate Catalog final"
|
4403
4055
|
msgstr ""
|
4404
4056
|
|
4405
|
-
#: ../lib/puppet/parser/compiler.rb:
|
4406
|
-
msgid "Invalid node mapping in %{app}: Mapping must be a hash"
|
4407
|
-
msgstr ""
|
4408
|
-
|
4409
|
-
#: ../lib/puppet/parser/compiler.rb:324
|
4410
|
-
msgid "Invalid node mapping in %{app}: Key %{k} is not a Node"
|
4411
|
-
msgstr ""
|
4412
|
-
|
4413
|
-
#: ../lib/puppet/parser/compiler.rb:327
|
4414
|
-
msgid "Invalid node mapping in %{app}: Value %{res} is not a resource"
|
4415
|
-
msgstr ""
|
4416
|
-
|
4417
|
-
#: ../lib/puppet/parser/compiler.rb:328
|
4418
|
-
msgid "Application %{app} maps component %{res} to multiple nodes"
|
4419
|
-
msgstr ""
|
4420
|
-
|
4421
|
-
#: ../lib/puppet/parser/compiler.rb:367
|
4057
|
+
#: ../lib/puppet/parser/compiler.rb:218
|
4422
4058
|
msgid "Could not find node statement with name 'default' or '%{names}'"
|
4423
4059
|
msgstr ""
|
4424
4060
|
|
4425
|
-
#: ../lib/puppet/parser/compiler.rb:
|
4061
|
+
#: ../lib/puppet/parser/compiler.rb:236
|
4426
4062
|
msgid "No source for scope passed to evaluate_classes"
|
4427
4063
|
msgstr ""
|
4428
4064
|
|
4429
|
-
#: ../lib/puppet/parser/compiler.rb:
|
4065
|
+
#: ../lib/puppet/parser/compiler.rb:246
|
4430
4066
|
msgid "Could not find class %{name} for %{node}"
|
4431
4067
|
msgstr ""
|
4432
4068
|
|
4433
|
-
#: ../lib/puppet/parser/compiler.rb:
|
4434
|
-
msgid "Capability mapping error: %{kind} clause references nonexistent %{component_type} %{component_name}"
|
4435
|
-
msgstr ""
|
4436
|
-
|
4437
|
-
#: ../lib/puppet/parser/compiler.rb:526
|
4069
|
+
#: ../lib/puppet/parser/compiler.rb:328
|
4438
4070
|
msgid "Evaluated collections"
|
4439
4071
|
msgstr ""
|
4440
4072
|
|
4441
|
-
#: ../lib/puppet/parser/compiler.rb:
|
4073
|
+
#: ../lib/puppet/parser/compiler.rb:343
|
4442
4074
|
msgid "Evaluated definitions"
|
4443
4075
|
msgstr ""
|
4444
4076
|
|
4445
|
-
#: ../lib/puppet/parser/compiler.rb:
|
4077
|
+
#: ../lib/puppet/parser/compiler.rb:372
|
4446
4078
|
msgid "Iterated (%{count}) on generators"
|
4447
4079
|
msgstr ""
|
4448
4080
|
|
4449
|
-
#: ../lib/puppet/parser/compiler.rb:
|
4081
|
+
#: ../lib/puppet/parser/compiler.rb:383
|
4450
4082
|
msgid "Somehow looped more than 1000 times while evaluating host catalog"
|
4451
4083
|
msgstr ""
|
4452
4084
|
|
4453
|
-
#: ../lib/puppet/parser/compiler.rb:
|
4085
|
+
#: ../lib/puppet/parser/compiler.rb:415
|
4454
4086
|
msgid "Could not find resource(s) %{resources} for overriding"
|
4455
4087
|
msgstr ""
|
4456
4088
|
|
4457
|
-
#: ../lib/puppet/parser/compiler.rb:
|
4089
|
+
#: ../lib/puppet/parser/compiler.rb:426
|
4458
4090
|
msgid "Failed to realize virtual resources %{resources}"
|
4459
4091
|
msgstr ""
|
4460
4092
|
|
4461
4093
|
#. TRANSLATORS "main" is a function name and should not be translated
|
4462
|
-
#: ../lib/puppet/parser/compiler.rb:
|
4094
|
+
#: ../lib/puppet/parser/compiler.rb:459
|
4463
4095
|
msgid "Couldn't find main"
|
4464
4096
|
msgstr ""
|
4465
4097
|
|
4466
|
-
#: ../lib/puppet/parser/compiler.rb:
|
4098
|
+
#: ../lib/puppet/parser/compiler.rb:532
|
4467
4099
|
msgid "For initializing compiler"
|
4468
4100
|
msgstr ""
|
4469
4101
|
|
4470
|
-
#: ../lib/puppet/parser/compiler/catalog_validator/
|
4471
|
-
msgid "Capability '%{cap}' referenced by '%{param}' is never exported"
|
4472
|
-
msgstr ""
|
4473
|
-
|
4474
|
-
#: ../lib/puppet/parser/compiler/catalog_validator/env_relationship_validator.rb:58
|
4475
|
-
msgid "'%{value}' is exported by both '%{hash}' and '%{resource}'"
|
4476
|
-
msgstr ""
|
4477
|
-
|
4478
|
-
#: ../lib/puppet/parser/compiler/catalog_validator/relationship_validator.rb:27
|
4479
|
-
msgid "'%{param}' is not a valid relationship to a capability"
|
4480
|
-
msgstr ""
|
4481
|
-
|
4482
|
-
#: ../lib/puppet/parser/compiler/catalog_validator/relationship_validator.rb:43
|
4102
|
+
#: ../lib/puppet/parser/compiler/catalog_validator/relationship_validator.rb:31
|
4483
4103
|
msgid "Could not find resource '%{res}' in parameter '%{param}'"
|
4484
4104
|
msgstr ""
|
4485
4105
|
|
4486
|
-
#: ../lib/puppet/parser/compiler/catalog_validator/site_validator.rb:16
|
4487
|
-
msgid "Only application components can appear inside a site - %{res} is not allowed"
|
4488
|
-
msgstr ""
|
4489
|
-
|
4490
|
-
#: ../lib/puppet/parser/environment_compiler.rb:13
|
4491
|
-
msgid "%{detail} in environment %{env}"
|
4492
|
-
msgstr ""
|
4493
|
-
|
4494
|
-
#: ../lib/puppet/parser/environment_compiler.rb:62
|
4495
|
-
msgid "For compiling environment catalog %{env}"
|
4496
|
-
msgstr ""
|
4497
|
-
|
4498
|
-
#: ../lib/puppet/parser/environment_compiler.rb:65
|
4499
|
-
msgid "Env Compile: Created settings scope"
|
4500
|
-
msgstr ""
|
4501
|
-
|
4502
|
-
#: ../lib/puppet/parser/environment_compiler.rb:67
|
4503
|
-
msgid "Env Compile: Evaluated main"
|
4504
|
-
msgstr ""
|
4505
|
-
|
4506
|
-
#: ../lib/puppet/parser/environment_compiler.rb:69
|
4507
|
-
msgid "Env Compile: Evaluated site"
|
4508
|
-
msgstr ""
|
4509
|
-
|
4510
|
-
#: ../lib/puppet/parser/environment_compiler.rb:71
|
4511
|
-
msgid "Env Compile: Evaluated application instances"
|
4512
|
-
msgstr ""
|
4513
|
-
|
4514
|
-
#: ../lib/puppet/parser/environment_compiler.rb:73
|
4515
|
-
msgid "Env Compile: Prune"
|
4516
|
-
msgstr ""
|
4517
|
-
|
4518
|
-
#: ../lib/puppet/parser/environment_compiler.rb:75
|
4519
|
-
msgid "Env Compile: Validate Catalog pre-finish"
|
4520
|
-
msgstr ""
|
4521
|
-
|
4522
|
-
#: ../lib/puppet/parser/environment_compiler.rb:79
|
4523
|
-
msgid "Env Compile: Finished catalog"
|
4524
|
-
msgstr ""
|
4525
|
-
|
4526
|
-
#: ../lib/puppet/parser/environment_compiler.rb:83
|
4527
|
-
msgid "Env Compile: Validate Catalog final"
|
4528
|
-
msgstr ""
|
4529
|
-
|
4530
|
-
#: ../lib/puppet/parser/environment_compiler.rb:159
|
4531
|
-
msgid "Environment Compiler: Could not find a site definition to evaluate"
|
4532
|
-
msgstr ""
|
4533
|
-
|
4534
|
-
#: ../lib/puppet/parser/environment_compiler.rb:165
|
4535
|
-
msgid "Evaluated application %{resource}"
|
4536
|
-
msgstr ""
|
4537
|
-
|
4538
4106
|
#: ../lib/puppet/parser/functions.rb:43
|
4539
4107
|
msgid "The method 'Puppet::Parser::Functions.autoloader#loadall' is deprecated in favor of using 'Scope#call_function'."
|
4540
4108
|
msgstr ""
|
@@ -4547,31 +4115,31 @@ msgstr ""
|
|
4547
4115
|
msgid "The method 'Puppet::Parser::Functions.autoloader#loaded?(\"%{name}\")' is deprecated in favor of using 'Scope#call_function'."
|
4548
4116
|
msgstr ""
|
4549
4117
|
|
4550
|
-
#: ../lib/puppet/parser/functions.rb:
|
4118
|
+
#: ../lib/puppet/parser/functions.rb:190
|
4551
4119
|
msgid "Overwriting previous definition for function %{name}"
|
4552
4120
|
msgstr ""
|
4553
4121
|
|
4554
|
-
#: ../lib/puppet/parser/functions.rb:
|
4122
|
+
#: ../lib/puppet/parser/functions.rb:196
|
4555
4123
|
msgid "Invalid statement type %{type}"
|
4556
4124
|
msgstr ""
|
4557
4125
|
|
4558
|
-
#: ../lib/puppet/parser/functions.rb:
|
4126
|
+
#: ../lib/puppet/parser/functions.rb:208
|
4559
4127
|
msgid "Called %{name}"
|
4560
4128
|
msgstr ""
|
4561
4129
|
|
4562
|
-
#: ../lib/puppet/parser/functions.rb:
|
4130
|
+
#: ../lib/puppet/parser/functions.rb:211
|
4563
4131
|
msgid "%{name}(): Wrong number of arguments given (%{arg_count} for %{arity})"
|
4564
4132
|
msgstr ""
|
4565
4133
|
|
4566
|
-
#: ../lib/puppet/parser/functions.rb:
|
4134
|
+
#: ../lib/puppet/parser/functions.rb:213
|
4567
4135
|
msgid "%{name}(): Wrong number of arguments given (%{arg_count} for minimum %{min_arg_count})"
|
4568
4136
|
msgstr ""
|
4569
4137
|
|
4570
|
-
#: ../lib/puppet/parser/functions.rb:
|
4138
|
+
#: ../lib/puppet/parser/functions.rb:219
|
4571
4139
|
msgid "custom functions must be called with a single array that contains the arguments. For example, function_example([1]) instead of function_example(1)"
|
4572
4140
|
msgstr ""
|
4573
4141
|
|
4574
|
-
#: ../lib/puppet/parser/functions.rb:
|
4142
|
+
#: ../lib/puppet/parser/functions.rb:318
|
4575
4143
|
msgid "%{name}() can only be called using the 4.x function API. See Scope#call_function"
|
4576
4144
|
msgstr ""
|
4577
4145
|
|
@@ -4579,15 +4147,15 @@ msgstr ""
|
|
4579
4147
|
msgid "Calling function_contain via the Scope class is deprecated. Use Scope#call_function instead"
|
4580
4148
|
msgstr ""
|
4581
4149
|
|
4582
|
-
#: ../lib/puppet/parser/functions/create_resources.rb:
|
4150
|
+
#: ../lib/puppet/parser/functions/create_resources.rb:60
|
4583
4151
|
msgid "create_resources(): wrong number of arguments (%{count}; must be 2 or 3)"
|
4584
4152
|
msgstr ""
|
4585
4153
|
|
4586
|
-
#: ../lib/puppet/parser/functions/create_resources.rb:
|
4154
|
+
#: ../lib/puppet/parser/functions/create_resources.rb:61
|
4587
4155
|
msgid "create_resources(): second argument must be a hash"
|
4588
4156
|
msgstr ""
|
4589
4157
|
|
4590
|
-
#: ../lib/puppet/parser/functions/create_resources.rb:
|
4158
|
+
#: ../lib/puppet/parser/functions/create_resources.rb:63
|
4591
4159
|
msgid "create_resources(): third argument, if provided, must be a hash"
|
4592
4160
|
msgstr ""
|
4593
4161
|
|
@@ -4669,55 +4237,35 @@ msgstr ""
|
|
4669
4237
|
msgid "Resources require a scope"
|
4670
4238
|
msgstr ""
|
4671
4239
|
|
4672
|
-
#: ../lib/puppet/parser/resource.rb:
|
4240
|
+
#: ../lib/puppet/parser/resource.rb:159
|
4673
4241
|
msgid "Only subclasses can override parameters"
|
4674
4242
|
msgstr ""
|
4675
4243
|
|
4676
|
-
#: ../lib/puppet/parser/resource.rb:
|
4244
|
+
#: ../lib/puppet/parser/resource.rb:165
|
4677
4245
|
msgid "Attempt to override an already evaluated resource with new values"
|
4678
4246
|
msgstr ""
|
4679
4247
|
|
4680
|
-
#: ../lib/puppet/parser/resource.rb:
|
4248
|
+
#: ../lib/puppet/parser/resource.rb:167
|
4681
4249
|
msgid "Attempt to override an already evaluated resource, defined at %{error_location}, with new values"
|
4682
4250
|
msgstr ""
|
4683
4251
|
|
4684
|
-
#: ../lib/puppet/parser/resource.rb:
|
4685
|
-
msgid "Invalid consume in %{value0}: %{ref} is not a resource"
|
4686
|
-
msgstr ""
|
4687
|
-
|
4688
|
-
#: ../lib/puppet/parser/resource.rb:280
|
4689
|
-
msgid "Resource %{ref} could not be found; it might not have been produced yet"
|
4690
|
-
msgstr ""
|
4691
|
-
|
4692
|
-
#: ../lib/puppet/parser/resource.rb:284
|
4693
|
-
msgid "Invalid consume in %{ref}: %{cap} is not a capability resource"
|
4694
|
-
msgstr ""
|
4695
|
-
|
4696
|
-
#: ../lib/puppet/parser/resource.rb:293
|
4697
|
-
msgid "Resource %{res} tries to consume %{cns} but no 'consumes' mapping exists for %{resource_type} and %{cns_type}"
|
4698
|
-
msgstr ""
|
4699
|
-
|
4700
|
-
#: ../lib/puppet/parser/resource.rb:313
|
4701
|
-
msgid "Attempt to reassign attribute '%{name}' in '%{resource}' caused by multiple consumed mappings to the same attribute"
|
4702
|
-
msgstr ""
|
4703
|
-
|
4704
|
-
#: ../lib/puppet/parser/resource.rb:365
|
4252
|
+
#: ../lib/puppet/parser/resource.rb:296
|
4705
4253
|
msgid "Parameter '%{name}' is already set on %{resource}; cannot redefine"
|
4706
4254
|
msgstr ""
|
4707
4255
|
|
4708
|
-
#: ../lib/puppet/parser/resource.rb:
|
4256
|
+
#: ../lib/puppet/parser/resource.rb:299
|
4709
4257
|
msgid "Parameter '%{name}' is already set on %{resource} at %{error_location}; cannot redefine"
|
4710
4258
|
msgstr ""
|
4711
4259
|
|
4712
|
-
#: ../lib/puppet/parser/resource.rb:
|
4260
|
+
#: ../lib/puppet/parser/resource.rb:304
|
4713
4261
|
msgid "Parameter '%{name}' is already set on %{resource} by %{source}; cannot redefine"
|
4714
4262
|
msgstr ""
|
4715
4263
|
|
4716
|
-
#: ../lib/puppet/parser/resource.rb:
|
4264
|
+
#: ../lib/puppet/parser/resource.rb:307
|
4717
4265
|
msgid "Parameter '%{name}' is already set on %{resource} by %{source} at %{error_location}; cannot redefine"
|
4718
4266
|
msgstr ""
|
4719
4267
|
|
4720
|
-
#: ../lib/puppet/parser/resource.rb:
|
4268
|
+
#: ../lib/puppet/parser/resource.rb:346
|
4721
4269
|
msgid "Duplicate parameter '%{param}' for on %{resource}"
|
4722
4270
|
msgstr ""
|
4723
4271
|
|
@@ -4955,23 +4503,23 @@ msgstr ""
|
|
4955
4503
|
msgid "multi var assignment from class"
|
4956
4504
|
msgstr ""
|
4957
4505
|
|
4958
|
-
#: ../lib/puppet/pops/evaluator/evaluator_impl.rb:
|
4506
|
+
#: ../lib/puppet/pops/evaluator/evaluator_impl.rb:761
|
4959
4507
|
msgid "break() from context where this is illegal"
|
4960
4508
|
msgstr ""
|
4961
4509
|
|
4962
|
-
#: ../lib/puppet/pops/evaluator/evaluator_impl.rb:
|
4510
|
+
#: ../lib/puppet/pops/evaluator/evaluator_impl.rb:1236
|
4963
4511
|
msgid "Can only append Array or Hash to a Hash"
|
4964
4512
|
msgstr ""
|
4965
4513
|
|
4966
|
-
#: ../lib/puppet/pops/evaluator/evaluator_impl.rb:
|
4514
|
+
#: ../lib/puppet/pops/evaluator/evaluator_impl.rb:1240
|
4967
4515
|
msgid "An URI can only be merged with an URI or String"
|
4968
4516
|
msgstr ""
|
4969
4517
|
|
4970
|
-
#: ../lib/puppet/pops/evaluator/evaluator_impl.rb:
|
4518
|
+
#: ../lib/puppet/pops/evaluator/evaluator_impl.rb:1243
|
4971
4519
|
msgid "Can only append Binary to a Binary"
|
4972
4520
|
msgstr ""
|
4973
4521
|
|
4974
|
-
#: ../lib/puppet/pops/evaluator/evaluator_impl.rb:
|
4522
|
+
#: ../lib/puppet/pops/evaluator/evaluator_impl.rb:1276
|
4975
4523
|
msgid "Can only delete from an Array or Hash."
|
4976
4524
|
msgstr ""
|
4977
4525
|
|
@@ -5743,10 +5291,6 @@ msgstr ""
|
|
5743
5291
|
msgid "Failed to load: %{type_name}"
|
5744
5292
|
msgstr ""
|
5745
5293
|
|
5746
|
-
#: ../lib/puppet/pops/issues.rb:925
|
5747
|
-
msgid "Use of the application-orchestration %{expr} is deprecated. See https://puppet.com/docs/puppet/5.5/deprecated_language.html"
|
5748
|
-
msgstr ""
|
5749
|
-
|
5750
5294
|
#: ../lib/puppet/pops/label_provider.rb:76
|
5751
5295
|
msgid "<%{string}> does not appear to contain a word"
|
5752
5296
|
msgstr ""
|
@@ -5869,21 +5413,21 @@ msgstr ""
|
|
5869
5413
|
msgid "The code loaded from %{source_ref} did not produce a Function class when evaluated. Got '%{klass}'"
|
5870
5414
|
msgstr ""
|
5871
5415
|
|
5872
|
-
#: ../lib/puppet/pops/loader/ruby_legacy_function_instantiator.rb:
|
5416
|
+
#: ../lib/puppet/pops/loader/ruby_legacy_function_instantiator.rb:23
|
5873
5417
|
msgid "The code loaded from %{source_ref} does not seem to be a Puppet 3x API function - no 'newfunction' call."
|
5874
5418
|
msgstr ""
|
5875
5419
|
|
5876
5420
|
#. TRANSLATORS - the word 'newfunction' should not be translated as it is a method name.
|
5877
|
-
#: ../lib/puppet/pops/loader/ruby_legacy_function_instantiator.rb:
|
5421
|
+
#: ../lib/puppet/pops/loader/ruby_legacy_function_instantiator.rb:45
|
5878
5422
|
msgid "Illegal legacy function definition! The code loaded from %{source_ref} did not return the result of calling 'newfunction'. Got '%{klass}'"
|
5879
5423
|
msgstr ""
|
5880
5424
|
|
5881
|
-
#: ../lib/puppet/pops/loader/ruby_legacy_function_instantiator.rb:
|
5425
|
+
#: ../lib/puppet/pops/loader/ruby_legacy_function_instantiator.rb:48
|
5882
5426
|
msgid "The code loaded from %{source_ref} produced mis-matched name, expected 'function_%{type_name}', got '%{created_name}'"
|
5883
5427
|
msgstr ""
|
5884
5428
|
|
5885
|
-
#: ../lib/puppet/pops/loader/ruby_legacy_function_instantiator.rb:
|
5886
|
-
msgid "Illegal method definition of method '%{method_name}' on line %{line}
|
5429
|
+
#: ../lib/puppet/pops/loader/ruby_legacy_function_instantiator.rb:92
|
5430
|
+
msgid "Illegal method definition of method '%{method_name}' on line %{line} in legacy function. See %{url} for more information"
|
5887
5431
|
msgstr ""
|
5888
5432
|
|
5889
5433
|
#: ../lib/puppet/pops/loader/task_instantiator.rb:22
|
@@ -5918,19 +5462,19 @@ msgstr ""
|
|
5918
5462
|
msgid "Attempt to redefine already initialized loaders for environment"
|
5919
5463
|
msgstr ""
|
5920
5464
|
|
5921
|
-
#: ../lib/puppet/pops/loaders.rb:
|
5465
|
+
#: ../lib/puppet/pops/loaders.rb:177
|
5922
5466
|
msgid "Internal Error: Puppet Context ':loaders' missing"
|
5923
5467
|
msgstr ""
|
5924
5468
|
|
5925
|
-
#: ../lib/puppet/pops/loaders.rb:
|
5469
|
+
#: ../lib/puppet/pops/loaders.rb:191
|
5926
5470
|
msgid "Unable to find loader named '%{loader_name}'"
|
5927
5471
|
msgstr ""
|
5928
5472
|
|
5929
|
-
#: ../lib/puppet/pops/loaders.rb:
|
5473
|
+
#: ../lib/puppet/pops/loaders.rb:212
|
5930
5474
|
msgid "Internal Error: did not find public loader for module: '%{module_name}'"
|
5931
5475
|
msgstr ""
|
5932
5476
|
|
5933
|
-
#: ../lib/puppet/pops/loaders.rb:
|
5477
|
+
#: ../lib/puppet/pops/loaders.rb:258
|
5934
5478
|
msgid "Internal Error: Attempt to redefine loader named '%{name}'"
|
5935
5479
|
msgstr ""
|
5936
5480
|
|
@@ -5949,23 +5493,23 @@ msgstr ""
|
|
5949
5493
|
msgid "Unknown Explain type %{qualifier_type}"
|
5950
5494
|
msgstr ""
|
5951
5495
|
|
5952
|
-
#: ../lib/puppet/pops/lookup/hiera_config.rb:
|
5496
|
+
#: ../lib/puppet/pops/lookup/hiera_config.rb:86
|
5953
5497
|
msgid "Using of legacy data provider function '%{function_name}'. Please convert to a 'data_hash' function"
|
5954
5498
|
msgstr ""
|
5955
5499
|
|
5956
|
-
#: ../lib/puppet/pops/lookup/hiera_config.rb:
|
5500
|
+
#: ../lib/puppet/pops/lookup/hiera_config.rb:143
|
5957
5501
|
msgid "%{config_path}: File exists but does not contain a valid YAML hash. Falling back to Hiera version 3 default config"
|
5958
5502
|
msgstr ""
|
5959
5503
|
|
5960
|
-
#: ../lib/puppet/pops/lookup/hiera_config.rb:
|
5504
|
+
#: ../lib/puppet/pops/lookup/hiera_config.rb:201
|
5961
5505
|
msgid "Hiera configuration recreated due to change of scope variables used in interpolation expressions"
|
5962
5506
|
msgstr ""
|
5963
5507
|
|
5964
|
-
#: ../lib/puppet/pops/lookup/hiera_config.rb:
|
5508
|
+
#: ../lib/puppet/pops/lookup/hiera_config.rb:429
|
5965
5509
|
msgid "%{config_path}: Use of 'hiera.yaml' version 3 is deprecated. It should be converted to version 5"
|
5966
5510
|
msgstr ""
|
5967
5511
|
|
5968
|
-
#: ../lib/puppet/pops/lookup/hiera_config.rb:
|
5512
|
+
#: ../lib/puppet/pops/lookup/hiera_config.rb:529
|
5969
5513
|
msgid "%{config_path}: Use of 'hiera.yaml' version 4 is deprecated. It should be converted to version 5"
|
5970
5514
|
msgstr ""
|
5971
5515
|
|
@@ -6085,19 +5629,19 @@ msgid "Unacceptable transform - found an Object without a rule: %{klass}"
|
|
6085
5629
|
msgstr ""
|
6086
5630
|
|
6087
5631
|
#. TRANSLATORS 'NUMBER' refers to a method name and the 'name_or_numeric' was the passed in value and should not be translated
|
6088
|
-
#: ../lib/puppet/pops/model/factory.rb:
|
5632
|
+
#: ../lib/puppet/pops/model/factory.rb:812
|
6089
5633
|
msgid "Internal Error, NUMBER token does not contain a valid number, %{name_or_numeric}"
|
6090
5634
|
msgstr ""
|
6091
5635
|
|
6092
|
-
#: ../lib/puppet/pops/model/factory.rb:
|
5636
|
+
#: ../lib/puppet/pops/model/factory.rb:1121
|
6093
5637
|
msgid "can only concatenate strings, got %{class_name}"
|
6094
5638
|
msgstr ""
|
6095
5639
|
|
6096
|
-
#: ../lib/puppet/pops/parser/parser_support.rb:
|
5640
|
+
#: ../lib/puppet/pops/parser/parser_support.rb:199
|
6097
5641
|
msgid "attempt to pass argument list to the function '%{name}' which cannot be called without parentheses"
|
6098
5642
|
msgstr ""
|
6099
5643
|
|
6100
|
-
#: ../lib/puppet/pops/parser/parser_support.rb:
|
5644
|
+
#: ../lib/puppet/pops/parser/parser_support.rb:201
|
6101
5645
|
msgid "illegal comma separated argument list"
|
6102
5646
|
msgstr ""
|
6103
5647
|
|
@@ -6137,7 +5681,7 @@ msgstr ""
|
|
6137
5681
|
msgid "digit expected"
|
6138
5682
|
msgstr ""
|
6139
5683
|
|
6140
|
-
#: ../lib/puppet/pops/resource/resource_type_impl.rb:
|
5684
|
+
#: ../lib/puppet/pops/resource/resource_type_impl.rb:165 ../lib/puppet/type.rb:421
|
6141
5685
|
msgid "you must specify title patterns when there are two or more key attributes"
|
6142
5686
|
msgstr ""
|
6143
5687
|
|
@@ -6262,10 +5806,6 @@ msgstr ""
|
|
6262
5806
|
msgid "%{klass} cannot be subtracted from a Timestamp"
|
6263
5807
|
msgstr ""
|
6264
5808
|
|
6265
|
-
#: ../lib/puppet/pops/types/enumeration.rb:7 ../lib/puppet/pops/types/enumeration.rb:12
|
6266
|
-
msgid "Enumeration.enumerator is deprecated. Use Iterable.on instead"
|
6267
|
-
msgstr ""
|
6268
|
-
|
6269
5809
|
#: ../lib/puppet/pops/types/p_binary_type.rb:77
|
6270
5810
|
msgid "The given string in encoding '%{enc}' is invalid. Cannot create a Binary UTF-8 representation"
|
6271
5811
|
msgstr ""
|
@@ -6379,10 +5919,6 @@ msgstr ""
|
|
6379
5919
|
msgid "Options 'include_containers' and 'include_values' cannot both be false"
|
6380
5920
|
msgstr ""
|
6381
5921
|
|
6382
|
-
#: ../lib/puppet/pops/types/type_calculator.rb:187
|
6383
|
-
msgid "TypeCalculator.enumerable is deprecated. Use iterable"
|
6384
|
-
msgstr ""
|
6385
|
-
|
6386
5922
|
#. TRANSLATORS 'TypeFactory#string' is a class and method name and should not be translated
|
6387
5923
|
#: ../lib/puppet/pops/types/type_factory.rb:117
|
6388
5924
|
msgid "Passing more than one argument to TypeFactory#string is deprecated"
|
@@ -6397,85 +5933,85 @@ msgstr ""
|
|
6397
5933
|
msgid "Everything is now reported using present tense"
|
6398
5934
|
msgstr ""
|
6399
5935
|
|
6400
|
-
#: ../lib/puppet/pops/types/type_parser.rb:
|
5936
|
+
#: ../lib/puppet/pops/types/type_parser.rb:425
|
6401
5937
|
msgid "Enum parameters must be identifiers or strings"
|
6402
5938
|
msgstr ""
|
6403
5939
|
|
6404
|
-
#: ../lib/puppet/pops/types/type_parser.rb:
|
5940
|
+
#: ../lib/puppet/pops/types/type_parser.rb:661
|
6405
5941
|
msgid "The expression <%{expression}> is not a valid type specification."
|
6406
5942
|
msgstr ""
|
6407
5943
|
|
6408
|
-
#: ../lib/puppet/pops/types/type_parser.rb:
|
5944
|
+
#: ../lib/puppet/pops/types/type_parser.rb:666
|
6409
5945
|
msgid "Invalid number of type parameters specified: %{type} requires %{required}, %{given} provided"
|
6410
5946
|
msgstr ""
|
6411
5947
|
|
6412
|
-
#: ../lib/puppet/pops/types/type_parser.rb:
|
5948
|
+
#: ../lib/puppet/pops/types/type_parser.rb:671
|
6413
5949
|
msgid "Not a parameterized type <%{type}>"
|
6414
5950
|
msgstr ""
|
6415
5951
|
|
6416
|
-
#: ../lib/puppet/pops/types/type_parser.rb:
|
5952
|
+
#: ../lib/puppet/pops/types/type_parser.rb:675
|
6417
5953
|
msgid "Unknown type <%{type}>"
|
6418
5954
|
msgstr ""
|
6419
5955
|
|
6420
|
-
#: ../lib/puppet/pops/types/types.rb:
|
5956
|
+
#: ../lib/puppet/pops/types/types.rb:929
|
6421
5957
|
msgid "The string '%{str}' cannot be converted to Numeric"
|
6422
5958
|
msgstr ""
|
6423
5959
|
|
6424
|
-
#: ../lib/puppet/pops/types/types.rb:
|
5960
|
+
#: ../lib/puppet/pops/types/types.rb:932
|
6425
5961
|
msgid "Value of type %{type} cannot be converted to Numeric"
|
6426
5962
|
msgstr ""
|
6427
5963
|
|
6428
|
-
#: ../lib/puppet/pops/types/types.rb:
|
5964
|
+
#: ../lib/puppet/pops/types/types.rb:1170
|
6429
5965
|
msgid "The string '%{str}' cannot be converted to Integer"
|
6430
5966
|
msgstr ""
|
6431
5967
|
|
6432
|
-
#: ../lib/puppet/pops/types/types.rb:
|
5968
|
+
#: ../lib/puppet/pops/types/types.rb:1173
|
6433
5969
|
msgid "Value of type %{type} cannot be converted to Integer"
|
6434
5970
|
msgstr ""
|
6435
5971
|
|
6436
|
-
#: ../lib/puppet/pops/types/types.rb:
|
5972
|
+
#: ../lib/puppet/pops/types/types.rb:1181
|
6437
5973
|
msgid "Illegal radix: %{radix}, expected 2, 8, 10, 16, or default"
|
6438
5974
|
msgstr ""
|
6439
5975
|
|
6440
|
-
#: ../lib/puppet/pops/types/types.rb:
|
5976
|
+
#: ../lib/puppet/pops/types/types.rb:1294
|
6441
5977
|
msgid "The string '%{str}' cannot be converted to Float"
|
6442
5978
|
msgstr ""
|
6443
5979
|
|
6444
|
-
#: ../lib/puppet/pops/types/types.rb:
|
5980
|
+
#: ../lib/puppet/pops/types/types.rb:1297
|
6445
5981
|
msgid "Value of type %{type} cannot be converted to Float"
|
6446
5982
|
msgstr ""
|
6447
5983
|
|
6448
5984
|
#. TRANSLATORS 'PStringType#initialize' is a class and method name and should not be translated
|
6449
|
-
#: ../lib/puppet/pops/types/types.rb:
|
5985
|
+
#: ../lib/puppet/pops/types/types.rb:1514
|
6450
5986
|
msgid "Passing more than one argument to PStringType#initialize is deprecated"
|
6451
5987
|
msgstr ""
|
6452
5988
|
|
6453
5989
|
#. TRANSLATORS 'PStringType#values' and '#value' are classes and method names and should not be translated
|
6454
|
-
#: ../lib/puppet/pops/types/types.rb:
|
5990
|
+
#: ../lib/puppet/pops/types/types.rb:1568
|
6455
5991
|
msgid "Method PStringType#values is deprecated. Use #value instead"
|
6456
5992
|
msgstr ""
|
6457
5993
|
|
6458
|
-
#: ../lib/puppet/pops/types/types.rb:
|
5994
|
+
#: ../lib/puppet/pops/types/types.rb:1894
|
6459
5995
|
msgid "The string '%{str}' cannot be converted to Boolean"
|
6460
5996
|
msgstr ""
|
6461
5997
|
|
6462
|
-
#: ../lib/puppet/pops/types/types.rb:
|
5998
|
+
#: ../lib/puppet/pops/types/types.rb:1897
|
6463
5999
|
msgid "Value of type %{type} cannot be converted to Boolean"
|
6464
6000
|
msgstr ""
|
6465
6001
|
|
6466
|
-
#: ../lib/puppet/pops/types/types.rb:
|
6002
|
+
#: ../lib/puppet/pops/types/types.rb:2625
|
6467
6003
|
msgid "Value of type %{type} cannot be converted to Array"
|
6468
6004
|
msgstr ""
|
6469
6005
|
|
6470
|
-
#: ../lib/puppet/pops/types/types.rb:
|
6006
|
+
#: ../lib/puppet/pops/types/types.rb:2695
|
6471
6007
|
msgid "Puppet::Pops::Types::PHashType#element_type is deprecated, use #value_type instead"
|
6472
6008
|
msgstr ""
|
6473
6009
|
|
6474
|
-
#: ../lib/puppet/pops/types/types.rb:
|
6010
|
+
#: ../lib/puppet/pops/types/types.rb:2832
|
6475
6011
|
msgid "odd number of arguments for Hash"
|
6476
6012
|
msgstr ""
|
6477
6013
|
|
6478
|
-
#: ../lib/puppet/pops/types/types.rb:
|
6014
|
+
#: ../lib/puppet/pops/types/types.rb:2843
|
6479
6015
|
msgid "Value of type %{type} cannot be converted to Hash"
|
6480
6016
|
msgstr ""
|
6481
6017
|
|
@@ -6554,19 +6090,19 @@ msgstr ""
|
|
6554
6090
|
msgid "Key/value pairs must be separated by '%{separator}'"
|
6555
6091
|
msgstr ""
|
6556
6092
|
|
6557
|
-
#: ../lib/puppet/provider.rb:
|
6093
|
+
#: ../lib/puppet/provider.rb:132
|
6558
6094
|
msgid "No command %{command} defined for provider %{provider}"
|
6559
6095
|
msgstr ""
|
6560
6096
|
|
6561
|
-
#: ../lib/puppet/provider.rb:
|
6097
|
+
#: ../lib/puppet/provider.rb:384
|
6562
6098
|
msgid "To support listing resources of this type the '%{provider}' provider needs to implement an 'instances' class method returning the current set of resources. We recommend porting your module to the simpler Resource API instead: https://puppet.com/search/docs?keys=resource+api"
|
6563
6099
|
msgstr ""
|
6564
6100
|
|
6565
|
-
#: ../lib/puppet/provider.rb:
|
6101
|
+
#: ../lib/puppet/provider.rb:457
|
6566
6102
|
msgid "'%{parameter_name}' is not a valid parameter for %{resource_type}"
|
6567
6103
|
msgstr ""
|
6568
6104
|
|
6569
|
-
#: ../lib/puppet/provider.rb:
|
6105
|
+
#: ../lib/puppet/provider.rb:543
|
6570
6106
|
msgid "No resource and no name in property hash in %{class_name} instance"
|
6571
6107
|
msgstr ""
|
6572
6108
|
|
@@ -6594,11 +6130,11 @@ msgstr ""
|
|
6594
6130
|
msgid "aix.object_info(): Could not find %{resource}[%{name}]"
|
6595
6131
|
msgstr ""
|
6596
6132
|
|
6597
|
-
#: ../lib/puppet/provider/aix_object.rb:471 ../lib/puppet/provider/nameservice.rb:
|
6133
|
+
#: ../lib/puppet/provider/aix_object.rb:471 ../lib/puppet/provider/nameservice.rb:164 ../lib/puppet/provider/nameservice/directoryservice.rb:425
|
6598
6134
|
msgid "Could not create %{resource} %{name}: %{detail}"
|
6599
6135
|
msgstr ""
|
6600
6136
|
|
6601
|
-
#: ../lib/puppet/provider/aix_object.rb:483 ../lib/puppet/provider/nameservice.rb:
|
6137
|
+
#: ../lib/puppet/provider/aix_object.rb:483 ../lib/puppet/provider/nameservice.rb:178
|
6602
6138
|
msgid "Could not delete %{resource} %{name}: %{detail}"
|
6603
6139
|
msgstr ""
|
6604
6140
|
|
@@ -6687,32 +6223,28 @@ msgstr ""
|
|
6687
6223
|
msgid "%{name} is not a valid attribute for %{resource_type}"
|
6688
6224
|
msgstr ""
|
6689
6225
|
|
6690
|
-
#: ../lib/puppet/provider/nameservice.rb:
|
6691
|
-
msgid "listbyname is deprecated and will be removed in a future release of Puppet. Please use `self.instances` to obtain a list of users."
|
6692
|
-
msgstr ""
|
6693
|
-
|
6694
|
-
#: ../lib/puppet/provider/nameservice.rb:103
|
6226
|
+
#: ../lib/puppet/provider/nameservice.rb:85
|
6695
6227
|
msgid "Invalid value %{value}: %{error}"
|
6696
6228
|
msgstr ""
|
6697
6229
|
|
6698
6230
|
#. TRANSLATORS "autogen_id()" is a method name and should not be translated
|
6699
|
-
#: ../lib/puppet/provider/nameservice.rb:
|
6231
|
+
#: ../lib/puppet/provider/nameservice.rb:130
|
6700
6232
|
msgid "autogen_id() does not support auto generation of id for resource type %{resource_type}"
|
6701
6233
|
msgstr ""
|
6702
6234
|
|
6703
|
-
#: ../lib/puppet/provider/nameservice.rb:
|
6235
|
+
#: ../lib/puppet/provider/nameservice.rb:152 ../lib/puppet/provider/nameservice/directoryservice.rb:379
|
6704
6236
|
msgid "already exists"
|
6705
6237
|
msgstr ""
|
6706
6238
|
|
6707
|
-
#: ../lib/puppet/provider/nameservice.rb:
|
6239
|
+
#: ../lib/puppet/provider/nameservice.rb:170
|
6708
6240
|
msgid "already absent"
|
6709
6241
|
msgstr ""
|
6710
6242
|
|
6711
|
-
#: ../lib/puppet/provider/nameservice.rb:
|
6243
|
+
#: ../lib/puppet/provider/nameservice.rb:264
|
6712
6244
|
msgid "Nameservice command must be an array"
|
6713
6245
|
msgstr ""
|
6714
6246
|
|
6715
|
-
#: ../lib/puppet/provider/nameservice.rb:
|
6247
|
+
#: ../lib/puppet/provider/nameservice.rb:269 ../lib/puppet/provider/nameservice/directoryservice.rb:340 ../lib/puppet/provider/nameservice/directoryservice.rb:369
|
6716
6248
|
msgid "Could not set %{param} on %{resource}[%{name}]: %{detail}"
|
6717
6249
|
msgstr ""
|
6718
6250
|
|
@@ -6778,7 +6310,7 @@ msgstr ""
|
|
6778
6310
|
msgid "Could not list installed Packages: %{detail}"
|
6779
6311
|
msgstr ""
|
6780
6312
|
|
6781
|
-
#: ../lib/puppet/provider/package/aix.rb:156 ../lib/puppet/provider/package/yum.rb:
|
6313
|
+
#: ../lib/puppet/provider/package/aix.rb:156 ../lib/puppet/provider/package/yum.rb:333
|
6782
6314
|
msgid "Tried to get latest on a missing package"
|
6783
6315
|
msgstr ""
|
6784
6316
|
|
@@ -6794,19 +6326,19 @@ msgstr ""
|
|
6794
6326
|
msgid "Mac OS X packages must specify a package source"
|
6795
6327
|
msgstr ""
|
6796
6328
|
|
6797
|
-
#: ../lib/puppet/provider/package/apt.rb:
|
6329
|
+
#: ../lib/puppet/provider/package/apt.rb:81
|
6798
6330
|
msgid "/etc/apt/sources.list contains a cdrom source; not installing. Use 'allowcdrom' to override this failure."
|
6799
6331
|
msgstr ""
|
6800
6332
|
|
6801
|
-
#: ../lib/puppet/provider/package/apt.rb:
|
6333
|
+
#: ../lib/puppet/provider/package/apt.rb:163 ../lib/puppet/provider/package/fink.rb:55
|
6802
6334
|
msgid "Could not find latest version"
|
6803
6335
|
msgstr ""
|
6804
6336
|
|
6805
|
-
#: ../lib/puppet/provider/package/apt.rb:
|
6337
|
+
#: ../lib/puppet/provider/package/apt.rb:174 ../lib/puppet/provider/package/fink.rb:66
|
6806
6338
|
msgid "Preseeding %{response} to debconf-set-selections"
|
6807
6339
|
msgstr ""
|
6808
6340
|
|
6809
|
-
#: ../lib/puppet/provider/package/apt.rb:
|
6341
|
+
#: ../lib/puppet/provider/package/apt.rb:178 ../lib/puppet/provider/package/fink.rb:70
|
6810
6342
|
msgid "No responsefile specified or non existent, not preseeding anything"
|
6811
6343
|
msgstr ""
|
6812
6344
|
|
@@ -6858,27 +6390,27 @@ msgstr ""
|
|
6858
6390
|
msgid "source is defined but does not have trailing slash, ignoring %{source}"
|
6859
6391
|
msgstr ""
|
6860
6392
|
|
6861
|
-
#: ../lib/puppet/provider/package/gem.rb:
|
6393
|
+
#: ../lib/puppet/provider/package/gem.rb:122 ../lib/puppet/provider/package/puppetserver_gem.rb:61
|
6862
6394
|
msgid "Could not list gems: %{detail}"
|
6863
6395
|
msgstr ""
|
6864
6396
|
|
6865
|
-
#: ../lib/puppet/provider/package/gem.rb:
|
6397
|
+
#: ../lib/puppet/provider/package/gem.rb:148
|
6866
6398
|
msgid "Could not match %{desc}"
|
6867
6399
|
msgstr ""
|
6868
6400
|
|
6869
|
-
#: ../lib/puppet/provider/package/gem.rb:
|
6401
|
+
#: ../lib/puppet/provider/package/gem.rb:226 ../lib/puppet/provider/package/puppetserver_gem.rb:93
|
6870
6402
|
msgid "Invalid source '%{uri}': %{detail}"
|
6871
6403
|
msgstr ""
|
6872
6404
|
|
6873
|
-
#: ../lib/puppet/provider/package/gem.rb:
|
6405
|
+
#: ../lib/puppet/provider/package/gem.rb:237 ../lib/puppet/provider/package/puppetserver_gem.rb:104
|
6874
6406
|
msgid "puppet:// URLs are not supported as gem sources"
|
6875
6407
|
msgstr ""
|
6876
6408
|
|
6877
|
-
#: ../lib/puppet/provider/package/gem.rb:
|
6409
|
+
#: ../lib/puppet/provider/package/gem.rb:253 ../lib/puppet/provider/package/puppetserver_gem.rb:115
|
6878
6410
|
msgid "Could not install: %{output}"
|
6879
6411
|
msgstr ""
|
6880
6412
|
|
6881
|
-
#: ../lib/puppet/provider/package/gem.rb:
|
6413
|
+
#: ../lib/puppet/provider/package/gem.rb:279 ../lib/puppet/provider/package/puppetserver_gem.rb:125
|
6882
6414
|
msgid "Could not uninstall: %{output}"
|
6883
6415
|
msgstr ""
|
6884
6416
|
|
@@ -6988,7 +6520,7 @@ msgstr ""
|
|
6988
6520
|
msgid "Refusing to install package group %{resource_name}, because allow_virtual is false."
|
6989
6521
|
msgstr ""
|
6990
6522
|
|
6991
|
-
#: ../lib/puppet/provider/package/pip.rb:
|
6523
|
+
#: ../lib/puppet/provider/package/pip.rb:57
|
6992
6524
|
msgid "Cannot resolve pip version"
|
6993
6525
|
msgstr ""
|
6994
6526
|
|
@@ -7004,27 +6536,27 @@ msgstr ""
|
|
7004
6536
|
msgid "Unknown line format %{resource_name}: %{parse_line}"
|
7005
6537
|
msgstr ""
|
7006
6538
|
|
7007
|
-
#: ../lib/puppet/provider/package/pkg.rb:
|
6539
|
+
#: ../lib/puppet/provider/package/pkg.rb:123
|
7008
6540
|
msgid "Unable to unfreeze %{package}"
|
7009
6541
|
msgstr ""
|
7010
6542
|
|
7011
|
-
#: ../lib/puppet/provider/package/pkg.rb:
|
6543
|
+
#: ../lib/puppet/provider/package/pkg.rb:158
|
7012
6544
|
msgid "Implicit version %{should} has %{n} possible matches"
|
7013
6545
|
msgstr ""
|
7014
6546
|
|
7015
|
-
#: ../lib/puppet/provider/package/pkg.rb:
|
6547
|
+
#: ../lib/puppet/provider/package/pkg.rb:170
|
7016
6548
|
msgid "Selecting version '%{version}' for implicit '%{should}'"
|
7017
6549
|
msgstr ""
|
7018
6550
|
|
7019
|
-
#: ../lib/puppet/provider/package/pkg.rb:
|
6551
|
+
#: ../lib/puppet/provider/package/pkg.rb:175
|
7020
6552
|
msgid "No version of %{name} matching %{should} is installable, even though the package is currently installed"
|
7021
6553
|
msgstr ""
|
7022
6554
|
|
7023
|
-
#: ../lib/puppet/provider/package/pkg.rb:
|
6555
|
+
#: ../lib/puppet/provider/package/pkg.rb:194
|
7024
6556
|
msgid "pkg warning: %{warnings}"
|
7025
6557
|
msgstr ""
|
7026
6558
|
|
7027
|
-
#: ../lib/puppet/provider/package/pkg.rb:
|
6559
|
+
#: ../lib/puppet/provider/package/pkg.rb:238 ../lib/puppet/provider/package/pkg.rb:264
|
7028
6560
|
msgid "Unable to update %{package}"
|
7029
6561
|
msgstr ""
|
7030
6562
|
|
@@ -7211,15 +6743,15 @@ msgstr ""
|
|
7211
6743
|
msgid "Waiting 5 seconds for runsvdir to discover service %{service}"
|
7212
6744
|
msgstr ""
|
7213
6745
|
|
7214
|
-
#: ../lib/puppet/provider/service/smf.rb:
|
6746
|
+
#: ../lib/puppet/provider/service/smf.rb:120
|
7215
6747
|
msgid "Failed to get the FMRI of the %{service} service: The pattern '%{service}' matches multiple FMRIs! These are the FMRIs it matches: %{all_fmris}"
|
7216
6748
|
msgstr ""
|
7217
6749
|
|
7218
|
-
#: ../lib/puppet/provider/service/smf.rb:
|
6750
|
+
#: ../lib/puppet/provider/service/smf.rb:135
|
7219
6751
|
msgid "Cannot query if the %{service} service is complete: The concept of complete/incomplete services was introduced in Solaris 11.1. You are on a Solaris %{release} machine."
|
7220
6752
|
msgstr ""
|
7221
6753
|
|
7222
|
-
#: ../lib/puppet/provider/service/smf.rb:
|
6754
|
+
#: ../lib/puppet/provider/service/smf.rb:221
|
7223
6755
|
msgid "The %{service} service is incomplete so its status will be reported as :stopped. See `svcs -xv %{fmri}` for more details."
|
7224
6756
|
msgstr ""
|
7225
6757
|
|
@@ -7273,15 +6805,15 @@ msgstr ""
|
|
7273
6805
|
msgid "ruby-shadow doesn't support %{method}"
|
7274
6806
|
msgstr ""
|
7275
6807
|
|
7276
|
-
#: ../lib/puppet/provider/user/windows_adsi.rb:
|
6808
|
+
#: ../lib/puppet/provider/user/windows_adsi.rb:145
|
7277
6809
|
msgid "The user account '%s' is disabled; The password will still be changed"
|
7278
6810
|
msgstr ""
|
7279
6811
|
|
7280
|
-
#: ../lib/puppet/provider/user/windows_adsi.rb:
|
6812
|
+
#: ../lib/puppet/provider/user/windows_adsi.rb:147
|
7281
6813
|
msgid "The user account '%s' is locked out; The password will still be changed"
|
7282
6814
|
msgstr ""
|
7283
6815
|
|
7284
|
-
#: ../lib/puppet/provider/user/windows_adsi.rb:
|
6816
|
+
#: ../lib/puppet/provider/user/windows_adsi.rb:149
|
7285
6817
|
msgid "The user account '%s' is expired; The password will still be changed"
|
7286
6818
|
msgstr ""
|
7287
6819
|
|
@@ -7344,142 +6876,90 @@ msgstr ""
|
|
7344
6876
|
msgid "Invalid node name %{host}"
|
7345
6877
|
msgstr ""
|
7346
6878
|
|
7347
|
-
#: ../lib/puppet/resource.rb:
|
6879
|
+
#: ../lib/puppet/resource.rb:47
|
7348
6880
|
msgid "No resource type provided in serialized data"
|
7349
6881
|
msgstr ""
|
7350
6882
|
|
7351
|
-
#: ../lib/puppet/resource.rb:
|
6883
|
+
#: ../lib/puppet/resource.rb:49
|
7352
6884
|
msgid "No resource title provided in serialized data"
|
7353
6885
|
msgstr ""
|
7354
6886
|
|
7355
6887
|
#. TRANSLATORS 'Puppet::Resource.new' should not be translated
|
7356
|
-
#: ../lib/puppet/resource.rb:
|
6888
|
+
#: ../lib/puppet/resource.rb:276
|
7357
6889
|
msgid "Puppet::Resource.new does not take a hash as the first argument."
|
7358
6890
|
msgstr ""
|
7359
6891
|
|
7360
|
-
#: ../lib/puppet/resource.rb:
|
6892
|
+
#: ../lib/puppet/resource.rb:277
|
7361
6893
|
msgid "Did you mean (%{type}, %{title}) ?"
|
7362
6894
|
msgstr ""
|
7363
6895
|
|
7364
|
-
#: ../lib/puppet/resource.rb:
|
6896
|
+
#: ../lib/puppet/resource.rb:314
|
7365
6897
|
msgid "Could not find declared class %{title}"
|
7366
6898
|
msgstr ""
|
7367
6899
|
|
7368
|
-
#: ../lib/puppet/resource.rb:
|
6900
|
+
#: ../lib/puppet/resource.rb:316
|
7369
6901
|
msgid "Invalid resource type %{type}"
|
7370
6902
|
msgstr ""
|
7371
6903
|
|
7372
|
-
#: ../lib/puppet/resource.rb:
|
7373
|
-
msgid "The method Puppet::Resource.set_default_parameters is deprecated and will be removed in the next major release of Puppet."
|
7374
|
-
msgstr ""
|
7375
|
-
|
7376
|
-
#: ../lib/puppet/resource.rb:526
|
7377
|
-
msgid "Cannot evaluate default parameters for %{resource} - not a parser resource"
|
7378
|
-
msgstr ""
|
7379
|
-
|
7380
|
-
#: ../lib/puppet/resource.rb:566
|
7381
|
-
msgid "The method Puppet::Resource.validate_complete is deprecated and will be removed in the next major release of Puppet."
|
7382
|
-
msgstr ""
|
7383
|
-
|
7384
|
-
#: ../lib/puppet/resource.rb:572
|
7385
|
-
msgid "Must pass %{param} to %{resource}"
|
7386
|
-
msgstr ""
|
7387
|
-
|
7388
|
-
#: ../lib/puppet/resource.rb:584
|
7389
|
-
msgid "Expected parameter '%{name}' of '%{value0}' to have type %{value1}, got %{value2}"
|
7390
|
-
msgstr ""
|
7391
|
-
|
7392
|
-
#: ../lib/puppet/resource.rb:590
|
6904
|
+
#: ../lib/puppet/resource.rb:502
|
7393
6905
|
msgid "no parameter named '%{name}'"
|
7394
6906
|
msgstr ""
|
7395
6907
|
|
7396
|
-
#: ../lib/puppet/resource.rb:
|
6908
|
+
#: ../lib/puppet/resource.rb:547
|
7397
6909
|
msgid "No title provided and %{type} is not a valid resource reference"
|
7398
6910
|
msgstr ""
|
7399
6911
|
|
7400
|
-
#: ../lib/puppet/resource.rb:
|
6912
|
+
#: ../lib/puppet/resource.rb:621
|
7401
6913
|
msgid "No set of title patterns matched the title \"%{title}\"."
|
7402
6914
|
msgstr ""
|
7403
6915
|
|
7404
|
-
#: ../lib/puppet/resource/
|
7405
|
-
msgid "PuppetDB is not available"
|
7406
|
-
msgstr ""
|
7407
|
-
|
7408
|
-
#: ../lib/puppet/resource/capability_finder.rb:47
|
7409
|
-
msgid "Unexpected response from PuppetDB when looking up %{capability}:"
|
7410
|
-
msgstr ""
|
7411
|
-
|
7412
|
-
#: ../lib/puppet/resource/capability_finder.rb:48
|
7413
|
-
msgid "expected exactly one resource but got %{count};"
|
7414
|
-
msgstr ""
|
7415
|
-
|
7416
|
-
#: ../lib/puppet/resource/capability_finder.rb:49
|
7417
|
-
msgid ""
|
7418
|
-
"returned data is:\n"
|
7419
|
-
"%{resources}"
|
7420
|
-
msgstr ""
|
7421
|
-
|
7422
|
-
#: ../lib/puppet/resource/capability_finder.rb:81
|
7423
|
-
msgid "Looking up capability %{capability} in PuppetDB: %{query_terms}"
|
7424
|
-
msgstr ""
|
7425
|
-
|
7426
|
-
#: ../lib/puppet/resource/capability_finder.rb:105
|
7427
|
-
msgid "Unexpected response from PuppetDB when looking up %{capability}: expected an Array but got %{result}"
|
7428
|
-
msgstr ""
|
7429
|
-
|
7430
|
-
#: ../lib/puppet/resource/capability_finder.rb:112
|
7431
|
-
msgid ""
|
7432
|
-
"Invalid JSON from PuppetDB when looking up %{capability}\n"
|
7433
|
-
"%{detail}"
|
7434
|
-
msgstr ""
|
7435
|
-
|
7436
|
-
#: ../lib/puppet/resource/catalog.rb:104
|
6916
|
+
#: ../lib/puppet/resource/catalog.rb:102
|
7437
6917
|
msgid "Cannot add resource %{resource_1} before %{resource_2} because %{resource_2} is not yet in the catalog"
|
7438
6918
|
msgstr ""
|
7439
6919
|
|
7440
|
-
#: ../lib/puppet/resource/catalog.rb:
|
6920
|
+
#: ../lib/puppet/resource/catalog.rb:117
|
7441
6921
|
msgid "Cannot add resource %{resource_1} after %{resource_2} because %{resource_2} is not yet in the catalog"
|
7442
6922
|
msgstr ""
|
7443
6923
|
|
7444
6924
|
#. TRANSLATORS 'alias' should not be translated
|
7445
|
-
#: ../lib/puppet/resource/catalog.rb:
|
6925
|
+
#: ../lib/puppet/resource/catalog.rb:204
|
7446
6926
|
msgid "Cannot alias %{resource} to %{key}; resource %{newref} already declared"
|
7447
6927
|
msgstr ""
|
7448
6928
|
|
7449
6929
|
#. TRANSLATORS 'alias' should not be translated
|
7450
|
-
#: ../lib/puppet/resource/catalog.rb:
|
6930
|
+
#: ../lib/puppet/resource/catalog.rb:208
|
7451
6931
|
msgid "Cannot alias %{resource} to %{key} at %{resource_declaration}; resource %{newref} already declared"
|
7452
6932
|
msgstr ""
|
7453
6933
|
|
7454
|
-
#: ../lib/puppet/resource/catalog.rb:
|
6934
|
+
#: ../lib/puppet/resource/catalog.rb:290
|
7455
6935
|
msgid "Unknown resource type %{type}"
|
7456
6936
|
msgstr ""
|
7457
6937
|
|
7458
|
-
#: ../lib/puppet/resource/catalog.rb:
|
6938
|
+
#: ../lib/puppet/resource/catalog.rb:433
|
7459
6939
|
msgid "Could not intern from data: Could not find relationship source %{source} for %{target}"
|
7460
6940
|
msgstr ""
|
7461
6941
|
|
7462
|
-
#: ../lib/puppet/resource/catalog.rb:
|
6942
|
+
#: ../lib/puppet/resource/catalog.rb:440
|
7463
6943
|
msgid "Could not intern from data: Could not find relationship target %{target} for %{source}"
|
7464
6944
|
msgstr ""
|
7465
6945
|
|
7466
|
-
#: ../lib/puppet/resource/catalog.rb:
|
6946
|
+
#: ../lib/puppet/resource/catalog.rb:530
|
7467
6947
|
msgid "Could not create class file %{file}: %{detail}"
|
7468
6948
|
msgstr ""
|
7469
6949
|
|
7470
|
-
#: ../lib/puppet/resource/catalog.rb:
|
6950
|
+
#: ../lib/puppet/resource/catalog.rb:546
|
7471
6951
|
msgid "Could not create resource file %{file}: %{detail}"
|
7472
6952
|
msgstr ""
|
7473
6953
|
|
7474
|
-
#: ../lib/puppet/resource/catalog.rb:
|
6954
|
+
#: ../lib/puppet/resource/catalog.rb:581
|
7475
6955
|
msgid "Duplicate declaration: %{resource} is already declared; cannot redeclare"
|
7476
6956
|
msgstr ""
|
7477
6957
|
|
7478
|
-
#: ../lib/puppet/resource/catalog.rb:
|
6958
|
+
#: ../lib/puppet/resource/catalog.rb:583
|
7479
6959
|
msgid "Duplicate declaration: %{resource} is already declared at %{error_location}; cannot redeclare"
|
7480
6960
|
msgstr ""
|
7481
6961
|
|
7482
|
-
#: ../lib/puppet/resource/catalog.rb:
|
6962
|
+
#: ../lib/puppet/resource/catalog.rb:632 ../lib/puppet/resource/catalog.rb:637
|
7483
6963
|
msgid "Could not find resource %{resource} when converting %{message} resources"
|
7484
6964
|
msgstr ""
|
7485
6965
|
|
@@ -7487,201 +6967,145 @@ msgstr ""
|
|
7487
6967
|
msgid "Could not evaluate: %{detail}"
|
7488
6968
|
msgstr ""
|
7489
6969
|
|
7490
|
-
#: ../lib/puppet/resource/type.rb:
|
7491
|
-
msgid "Invalid export in %{reference}: %{ex} is not a resource"
|
7492
|
-
msgstr ""
|
7493
|
-
|
7494
|
-
#: ../lib/puppet/resource/type.rb:82
|
7495
|
-
msgid "Invalid export in %{reference}: %{ex} is not a capability resource"
|
7496
|
-
msgstr ""
|
7497
|
-
|
7498
|
-
#: ../lib/puppet/resource/type.rb:86
|
7499
|
-
msgid "Resource type %{res_type} does not produce %{ex_type}"
|
7500
|
-
msgstr ""
|
7501
|
-
|
7502
|
-
#: ../lib/puppet/resource/type.rb:147
|
6970
|
+
#: ../lib/puppet/resource/type.rb:87
|
7503
6971
|
msgid "Invalid resource supertype '%{type}'"
|
7504
6972
|
msgstr ""
|
7505
6973
|
|
7506
|
-
#: ../lib/puppet/resource/type.rb:
|
6974
|
+
#: ../lib/puppet/resource/type.rb:117
|
7507
6975
|
msgid "%{name} is not a class; cannot add code to it"
|
7508
6976
|
msgstr ""
|
7509
6977
|
|
7510
|
-
#: ../lib/puppet/resource/type.rb:
|
6978
|
+
#: ../lib/puppet/resource/type.rb:118
|
7511
6979
|
msgid "%{name} is not a class; cannot add code from it"
|
7512
6980
|
msgstr ""
|
7513
6981
|
|
7514
|
-
#: ../lib/puppet/resource/type.rb:
|
6982
|
+
#: ../lib/puppet/resource/type.rb:122
|
7515
6983
|
msgid "Cannot have code outside of a class/node/define because 'freeze_main' is enabled"
|
7516
6984
|
msgstr ""
|
7517
6985
|
|
7518
|
-
#: ../lib/puppet/resource/type.rb:
|
6986
|
+
#: ../lib/puppet/resource/type.rb:126
|
7519
6987
|
msgid "Cannot merge classes with different parent classes (%{name} => %{parent} vs. %{other_name} => %{other_parent})"
|
7520
6988
|
msgstr ""
|
7521
6989
|
|
7522
|
-
#: ../lib/puppet/resource/type.rb:
|
6990
|
+
#: ../lib/puppet/resource/type.rb:157
|
7523
6991
|
msgid "Cannot create resources for defined resource types"
|
7524
6992
|
msgstr ""
|
7525
6993
|
|
7526
|
-
#: ../lib/puppet/resource/type.rb:
|
7527
|
-
msgid "The method Puppet::Resource::Type.assign_parameter_values is deprecated and will be removed in the next major release of Puppet."
|
7528
|
-
msgstr ""
|
7529
|
-
|
7530
|
-
#: ../lib/puppet/resource/type.rb:310
|
6994
|
+
#: ../lib/puppet/resource/type.rb:210
|
7531
6995
|
msgid "Could not find parent resource type '%{parent}' of type %{parent_type} in %{env}"
|
7532
6996
|
msgstr ""
|
7533
6997
|
|
7534
|
-
#: ../lib/puppet/resource/type.rb:
|
6998
|
+
#: ../lib/puppet/resource/type.rb:336
|
7535
6999
|
msgid "Parameter '%{name}' is given a type, but is not a valid parameter."
|
7536
7000
|
msgstr ""
|
7537
7001
|
|
7538
|
-
#: ../lib/puppet/resource/type.rb:
|
7002
|
+
#: ../lib/puppet/resource/type.rb:339
|
7539
7003
|
msgid "Parameter '%{name}' is given a type that is not a Puppet Type, got %{class_name}"
|
7540
7004
|
msgstr ""
|
7541
7005
|
|
7542
|
-
#: ../lib/puppet/resource/type.rb:
|
7006
|
+
#: ../lib/puppet/resource/type.rb:373
|
7543
7007
|
msgid "Could not find scope for %{class_name}"
|
7544
7008
|
msgstr ""
|
7545
7009
|
|
7546
|
-
#: ../lib/puppet/resource/type.rb:
|
7010
|
+
#: ../lib/puppet/resource/type.rb:394
|
7547
7011
|
msgid "%{param} is a metaparam; this value will inherit to all contained resources in the %{name} definition"
|
7548
7012
|
msgstr ""
|
7549
7013
|
|
7550
|
-
#: ../lib/puppet/resource/type.rb:
|
7014
|
+
#: ../lib/puppet/resource/type.rb:396
|
7551
7015
|
msgid "%{param} is a metaparameter; please choose another parameter name in the %{name} definition"
|
7552
7016
|
msgstr ""
|
7553
7017
|
|
7554
|
-
#: ../lib/puppet/resource/type_collection.rb:
|
7018
|
+
#: ../lib/puppet/resource/type_collection.rb:63
|
7555
7019
|
msgid "Class '%{klass}' is already defined%{error}; cannot redefine"
|
7556
7020
|
msgstr ""
|
7557
7021
|
|
7558
|
-
#: ../lib/puppet/resource/type_collection.rb:
|
7022
|
+
#: ../lib/puppet/resource/type_collection.rb:64
|
7559
7023
|
msgid "Definition '%{klass}' is already defined%{error}; cannot be redefined as a class"
|
7560
7024
|
msgstr ""
|
7561
7025
|
|
7562
|
-
#: ../lib/puppet/resource/type_collection.rb:
|
7563
|
-
msgid "Application '%{klass}' is already defined%{error}; cannot be redefined as a class"
|
7564
|
-
msgstr ""
|
7565
|
-
|
7566
|
-
#: ../lib/puppet/resource/type_collection.rb:105
|
7026
|
+
#: ../lib/puppet/resource/type_collection.rb:95
|
7567
7027
|
msgid "Node '%{name}' is already defined%{error}; cannot redefine"
|
7568
7028
|
msgstr ""
|
7569
7029
|
|
7570
|
-
#: ../lib/puppet/resource/type_collection.rb:
|
7571
|
-
msgid "Site is already defined%{error}; cannot redefine"
|
7572
|
-
msgstr ""
|
7573
|
-
|
7574
|
-
#: ../lib/puppet/resource/type_collection.rb:150
|
7030
|
+
#: ../lib/puppet/resource/type_collection.rb:130
|
7575
7031
|
msgid "'%{name}' is already defined%{error} as a class; cannot redefine as a definition"
|
7576
7032
|
msgstr ""
|
7577
7033
|
|
7578
|
-
#: ../lib/puppet/resource/type_collection.rb:
|
7034
|
+
#: ../lib/puppet/resource/type_collection.rb:131
|
7579
7035
|
msgid "Definition '%{name}' is already defined%{error}; cannot be redefined"
|
7580
7036
|
msgstr ""
|
7581
7037
|
|
7582
|
-
#: ../lib/puppet/resource/type_collection.rb:
|
7583
|
-
msgid "'%{name}' is already defined%{error} as an application; cannot be redefined"
|
7584
|
-
msgstr ""
|
7585
|
-
|
7586
|
-
#: ../lib/puppet/resource/type_collection.rb:157
|
7587
|
-
msgid "'%{name}' is already defined%{error} as a class; cannot redefine as a mapping"
|
7588
|
-
msgstr ""
|
7589
|
-
|
7590
|
-
#: ../lib/puppet/resource/type_collection.rb:166
|
7591
|
-
msgid "'%{name}' is already defined%{error} as a class; cannot redefine as an application"
|
7592
|
-
msgstr ""
|
7593
|
-
|
7594
|
-
#: ../lib/puppet/resource/type_collection.rb:167
|
7595
|
-
msgid "'%{name}' is already defined%{error} as a definition; cannot redefine as an application"
|
7596
|
-
msgstr ""
|
7597
|
-
|
7598
|
-
#: ../lib/puppet/resource/type_collection.rb:220
|
7038
|
+
#: ../lib/puppet/resource/type_collection.rb:175
|
7599
7039
|
msgid "Execution of config_version command `%{cmd}` failed: %{message}"
|
7600
7040
|
msgstr ""
|
7601
7041
|
|
7602
|
-
#: ../lib/puppet/resource/type_collection.rb:
|
7042
|
+
#: ../lib/puppet/resource/type_collection.rb:196
|
7603
7043
|
msgid "Not attempting to load %{type} %{fqname} as this object was missing during a prior compilation"
|
7604
7044
|
msgstr ""
|
7605
7045
|
|
7606
|
-
#: ../lib/puppet/
|
7607
|
-
msgid "Connection to cached server and port %{server}:%{port} failed: %{message}"
|
7608
|
-
msgstr ""
|
7609
|
-
|
7610
|
-
#: ../lib/puppet/rest/routes.rb:46
|
7611
|
-
msgid "Downloaded certificate for %{name} from %{server}"
|
7612
|
-
msgstr ""
|
7613
|
-
|
7614
|
-
#: ../lib/puppet/rest/routes.rb:76
|
7615
|
-
msgid "Downloaded certificate revocation list for %{name} from %{server}"
|
7616
|
-
msgstr ""
|
7617
|
-
|
7618
|
-
#: ../lib/puppet/rest/routes.rb:129
|
7619
|
-
msgid "Downloaded existing certificate request for %{name} from %{server}"
|
7620
|
-
msgstr ""
|
7621
|
-
|
7622
|
-
#: ../lib/puppet/settings.rb:98
|
7046
|
+
#: ../lib/puppet/settings.rb:101
|
7623
7047
|
msgid "New environment loaders generated from the requested section."
|
7624
7048
|
msgstr ""
|
7625
7049
|
|
7626
|
-
#: ../lib/puppet/settings.rb:
|
7050
|
+
#: ../lib/puppet/settings.rb:303
|
7627
7051
|
msgid "Attempting to initialize global default settings more than once!"
|
7628
7052
|
msgstr ""
|
7629
7053
|
|
7630
|
-
#: ../lib/puppet/settings.rb:
|
7054
|
+
#: ../lib/puppet/settings.rb:516
|
7631
7055
|
msgid "Using --configprint is deprecated. Use 'puppet config <subcommand>' instead."
|
7632
7056
|
msgstr ""
|
7633
7057
|
|
7634
|
-
#: ../lib/puppet/settings.rb:
|
7058
|
+
#: ../lib/puppet/settings.rb:658
|
7635
7059
|
msgid "Could not load %{file}: %{detail}"
|
7636
7060
|
msgstr ""
|
7637
7061
|
|
7638
|
-
#: ../lib/puppet/settings.rb:
|
7062
|
+
#: ../lib/puppet/settings.rb:766
|
7639
7063
|
msgid "Invalid setting type '%{type}'"
|
7640
7064
|
msgstr ""
|
7641
7065
|
|
7642
|
-
#: ../lib/puppet/settings.rb:
|
7066
|
+
#: ../lib/puppet/settings.rb:921
|
7643
7067
|
msgid "Unknown searchpath case: %{source_type} for the %{source} settings path element."
|
7644
7068
|
msgstr ""
|
7645
7069
|
|
7646
|
-
#: ../lib/puppet/settings.rb:
|
7070
|
+
#: ../lib/puppet/settings.rb:994
|
7647
7071
|
msgid "setting definition for '%{name}' is not a hash!"
|
7648
7072
|
msgstr ""
|
7649
7073
|
|
7650
|
-
#: ../lib/puppet/settings.rb:
|
7074
|
+
#: ../lib/puppet/settings.rb:999
|
7651
7075
|
msgid "Setting %{name} is already defined"
|
7652
7076
|
msgstr ""
|
7653
7077
|
|
7654
|
-
#: ../lib/puppet/settings.rb:
|
7078
|
+
#: ../lib/puppet/settings.rb:1005
|
7655
7079
|
msgid "Setting %{name} is already using short name '%{short}'"
|
7656
7080
|
msgstr ""
|
7657
7081
|
|
7658
|
-
#: ../lib/puppet/settings.rb:
|
7082
|
+
#: ../lib/puppet/settings.rb:1276
|
7659
7083
|
msgid "Setting %{name} is deprecated."
|
7660
7084
|
msgstr ""
|
7661
7085
|
|
7662
7086
|
#. TRANSLATORS 'puppet.conf' is a file name and should not be translated
|
7663
|
-
#: ../lib/puppet/settings.rb:
|
7087
|
+
#: ../lib/puppet/settings.rb:1281
|
7664
7088
|
msgid "Setting %{name} is deprecated in puppet.conf."
|
7665
7089
|
msgstr ""
|
7666
7090
|
|
7667
|
-
#: ../lib/puppet/settings.rb:
|
7091
|
+
#: ../lib/puppet/settings.rb:1452
|
7668
7092
|
msgid "Error converting value for param '%{name}': %{detail}"
|
7669
7093
|
msgstr ""
|
7670
7094
|
|
7671
|
-
#: ../lib/puppet/settings.rb:
|
7095
|
+
#: ../lib/puppet/settings.rb:1476
|
7672
7096
|
msgid "Could not find value for %{expression}"
|
7673
7097
|
msgstr ""
|
7674
7098
|
|
7675
7099
|
#. TRANSLATORS '$environment' is a Puppet specific variable and should not be translated
|
7676
|
-
#: ../lib/puppet/settings.rb:
|
7100
|
+
#: ../lib/puppet/settings.rb:1486
|
7677
7101
|
msgid "You cannot interpolate $environment within '%{setting_name}' when using directory environments."
|
7678
7102
|
msgstr ""
|
7679
7103
|
|
7680
|
-
#: ../lib/puppet/settings.rb:
|
7104
|
+
#: ../lib/puppet/settings.rb:1487
|
7681
7105
|
msgid "Its value will remain %{value}."
|
7682
7106
|
msgstr ""
|
7683
7107
|
|
7684
|
-
#: ../lib/puppet/settings.rb:
|
7108
|
+
#: ../lib/puppet/settings.rb:1518
|
7685
7109
|
msgid "Attempt to assign a value to unknown setting %{name}"
|
7686
7110
|
msgstr ""
|
7687
7111
|
|
@@ -7694,38 +7118,38 @@ msgid "Invalid autosign value %{value}: must be 'true'/'false' or an absolute pa
|
|
7694
7118
|
msgstr ""
|
7695
7119
|
|
7696
7120
|
#. TRANSLATORS ':%{name}', ':call_hook', and ':on_write_only' should not be translated
|
7697
|
-
#: ../lib/puppet/settings/base_setting.rb:
|
7121
|
+
#: ../lib/puppet/settings/base_setting.rb:37
|
7698
7122
|
msgid "Setting :%{name} :call_hook is nil, defaulting to :on_write_only"
|
7699
7123
|
msgstr ""
|
7700
7124
|
|
7701
7125
|
#. TRANSLATORS 'call_hook' is a Puppet option name and should not be translated
|
7702
|
-
#: ../lib/puppet/settings/base_setting.rb:
|
7126
|
+
#: ../lib/puppet/settings/base_setting.rb:42
|
7703
7127
|
msgid "Invalid option %{value} for call_hook"
|
7704
7128
|
msgstr ""
|
7705
7129
|
|
7706
7130
|
#. TRANSLATORS ':call_hook' and ':hook' are specific setting names and should not be translated
|
7707
|
-
#: ../lib/puppet/settings/base_setting.rb:
|
7131
|
+
#: ../lib/puppet/settings/base_setting.rb:101
|
7708
7132
|
msgid "Cannot reference :call_hook for :%{name} if no :hook is defined"
|
7709
7133
|
msgstr ""
|
7710
7134
|
|
7711
|
-
#: ../lib/puppet/settings/base_setting.rb:
|
7135
|
+
#: ../lib/puppet/settings/base_setting.rb:107
|
7712
7136
|
msgid "%{class_name} (setting '%{setting}') does not accept %{parameter}"
|
7713
7137
|
msgstr ""
|
7714
7138
|
|
7715
|
-
#: ../lib/puppet/settings/base_setting.rb:
|
7139
|
+
#: ../lib/puppet/settings/base_setting.rb:114
|
7716
7140
|
msgid "You must provide a description for the %{class_name} config option"
|
7717
7141
|
msgstr ""
|
7718
7142
|
|
7719
|
-
#: ../lib/puppet/settings/base_setting.rb:
|
7143
|
+
#: ../lib/puppet/settings/base_setting.rb:128
|
7720
7144
|
msgid "Short names can only be one character."
|
7721
7145
|
msgstr ""
|
7722
7146
|
|
7723
7147
|
#. TRANSLATORS 'deprecated' is a Puppet setting and ':completely' and ':allowed_on_commandline' are possible values and should not be translated
|
7724
|
-
#: ../lib/puppet/settings/base_setting.rb:
|
7148
|
+
#: ../lib/puppet/settings/base_setting.rb:197
|
7725
7149
|
msgid "Unsupported deprecated value '%{deprecation}'."
|
7726
7150
|
msgstr ""
|
7727
7151
|
|
7728
|
-
#: ../lib/puppet/settings/base_setting.rb:
|
7152
|
+
#: ../lib/puppet/settings/base_setting.rb:198
|
7729
7153
|
msgid "Supported values for deprecated are ':completely' or ':allowed_on_commandline'"
|
7730
7154
|
msgstr ""
|
7731
7155
|
|
@@ -7803,7 +7227,15 @@ msgstr ""
|
|
7803
7227
|
msgid "Expected an Array, String, or Hash, got a %{klass}"
|
7804
7228
|
msgstr ""
|
7805
7229
|
|
7806
|
-
#: ../lib/puppet/settings/
|
7230
|
+
#: ../lib/puppet/settings/integer_setting.rb:8
|
7231
|
+
msgid "Cannot convert '%{value}' to an integer for parameter: %{name}"
|
7232
|
+
msgstr ""
|
7233
|
+
|
7234
|
+
#: ../lib/puppet/settings/port_setting.rb:6
|
7235
|
+
msgid "Value '%{value}' is not a valid port number for parameter: %{name}"
|
7236
|
+
msgstr ""
|
7237
|
+
|
7238
|
+
#: ../lib/puppet/settings/priority_setting.rb:40
|
7807
7239
|
msgid "Invalid priority format '%{value}' for parameter: %{name}"
|
7808
7240
|
msgstr ""
|
7809
7241
|
|
@@ -7823,83 +7255,83 @@ msgstr ""
|
|
7823
7255
|
msgid "Invalid 'time to live' format '%{value}' for parameter: %{param_name}"
|
7824
7256
|
msgstr ""
|
7825
7257
|
|
7826
|
-
#: ../lib/puppet/ssl/base.rb:
|
7258
|
+
#: ../lib/puppet/ssl/base.rb:26
|
7827
7259
|
msgid "%{name} has not declared what class it wraps"
|
7828
7260
|
msgstr ""
|
7829
7261
|
|
7830
|
-
#: ../lib/puppet/ssl/base.rb:
|
7262
|
+
#: ../lib/puppet/ssl/base.rb:31 ../lib/puppet/x509/cert_provider.rb:370
|
7831
7263
|
msgid "Certname %{name} must not contain unprintable or non-ASCII characters"
|
7832
7264
|
msgstr ""
|
7833
7265
|
|
7834
|
-
#: ../lib/puppet/ssl/base.rb:
|
7266
|
+
#: ../lib/puppet/ssl/base.rb:37
|
7835
7267
|
msgid "%{class_name} did not override 'generate'"
|
7836
7268
|
msgstr ""
|
7837
7269
|
|
7838
|
-
#: ../lib/puppet/ssl/base.rb:
|
7270
|
+
#: ../lib/puppet/ssl/base.rb:64
|
7839
7271
|
msgid "Object must be an instance of %{class_name}, %{actual_class} given"
|
7840
7272
|
msgstr ""
|
7841
7273
|
|
7842
|
-
#: ../lib/puppet/ssl/base.rb:
|
7274
|
+
#: ../lib/puppet/ssl/base.rb:68
|
7843
7275
|
msgid "Name must be supplied if it cannot be determined from the instance"
|
7844
7276
|
msgstr ""
|
7845
7277
|
|
7846
|
-
#: ../lib/puppet/ssl/base.rb:
|
7278
|
+
#: ../lib/puppet/ssl/base.rb:140
|
7847
7279
|
msgid "Unknown signature algorithm '%{ln}'"
|
7848
7280
|
msgstr ""
|
7849
7281
|
|
7850
|
-
#: ../lib/puppet/ssl/certificate_request.rb:
|
7282
|
+
#: ../lib/puppet/ssl/certificate_request.rb:57
|
7851
7283
|
msgid "Creating a new SSL certificate request for %{name}"
|
7852
7284
|
msgstr ""
|
7853
7285
|
|
7854
|
-
#: ../lib/puppet/ssl/certificate_request.rb:
|
7286
|
+
#: ../lib/puppet/ssl/certificate_request.rb:90
|
7855
7287
|
msgid "CSR sign verification failed; you need to clean the certificate request for %{name} on the server"
|
7856
7288
|
msgstr ""
|
7857
7289
|
|
7858
|
-
#: ../lib/puppet/ssl/certificate_request.rb:
|
7290
|
+
#: ../lib/puppet/ssl/certificate_request.rb:96
|
7859
7291
|
msgid "Certificate Request fingerprint (%{digest}): %{hex_digest}"
|
7860
7292
|
msgstr ""
|
7861
7293
|
|
7862
|
-
#: ../lib/puppet/ssl/certificate_request.rb:
|
7294
|
+
#: ../lib/puppet/ssl/certificate_request.rb:140
|
7863
7295
|
msgid "CSR needs content to extract fields"
|
7864
7296
|
msgstr ""
|
7865
7297
|
|
7866
|
-
#: ../lib/puppet/ssl/certificate_request.rb:
|
7298
|
+
#: ../lib/puppet/ssl/certificate_request.rb:167
|
7867
7299
|
msgid "In %{attr}, expected extension record %{index} to have two or three items, but found %{count}"
|
7868
7300
|
msgstr ""
|
7869
7301
|
|
7870
|
-
#: ../lib/puppet/ssl/certificate_request.rb:
|
7302
|
+
#: ../lib/puppet/ssl/certificate_request.rb:218
|
7871
7303
|
msgid "Cannot specify CSR attribute %{oid}: conflicts with internally used CSR attribute"
|
7872
7304
|
msgstr ""
|
7873
7305
|
|
7874
|
-
#: ../lib/puppet/ssl/certificate_request.rb:
|
7306
|
+
#: ../lib/puppet/ssl/certificate_request.rb:227
|
7875
7307
|
msgid "Cannot create CSR with attribute %{oid}: %{message}"
|
7876
7308
|
msgstr ""
|
7877
7309
|
|
7878
|
-
#: ../lib/puppet/ssl/certificate_request.rb:
|
7310
|
+
#: ../lib/puppet/ssl/certificate_request.rb:244
|
7879
7311
|
msgid "Cannot specify CSR extension request %{oid}: conflicts with internally used extension request"
|
7880
7312
|
msgstr ""
|
7881
7313
|
|
7882
|
-
#: ../lib/puppet/ssl/certificate_request.rb:
|
7314
|
+
#: ../lib/puppet/ssl/certificate_request.rb:250
|
7883
7315
|
msgid "Cannot create CSR with extension request %{oid}: %{message}"
|
7884
7316
|
msgstr ""
|
7885
7317
|
|
7886
|
-
#: ../lib/puppet/ssl/certificate_request.rb:
|
7318
|
+
#: ../lib/puppet/ssl/certificate_request.rb:301
|
7887
7319
|
msgid "In %{attr}, expected Set but found %{klass}"
|
7888
7320
|
msgstr ""
|
7889
7321
|
|
7890
|
-
#: ../lib/puppet/ssl/certificate_request.rb:
|
7322
|
+
#: ../lib/puppet/ssl/certificate_request.rb:305
|
7891
7323
|
msgid "In %{attr}, expected Set[Array] but found %{klass}"
|
7892
7324
|
msgstr ""
|
7893
7325
|
|
7894
|
-
#: ../lib/puppet/ssl/certificate_request.rb:
|
7326
|
+
#: ../lib/puppet/ssl/certificate_request.rb:309
|
7895
7327
|
msgid "In %{attr}, expected Set[Array] with one value but found %{count} elements"
|
7896
7328
|
msgstr ""
|
7897
7329
|
|
7898
|
-
#: ../lib/puppet/ssl/certificate_request.rb:
|
7330
|
+
#: ../lib/puppet/ssl/certificate_request.rb:313
|
7899
7331
|
msgid "In %{attr}, expected Set[Array[Sequence[...]]], but found %{klass}"
|
7900
7332
|
msgstr ""
|
7901
7333
|
|
7902
|
-
#: ../lib/puppet/ssl/certificate_request.rb:
|
7334
|
+
#: ../lib/puppet/ssl/certificate_request.rb:317
|
7903
7335
|
msgid "In %{attr}, expected Set[Array[Sequence[Array[...]]]], but found %{klass}"
|
7904
7336
|
msgstr ""
|
7905
7337
|
|
@@ -7927,195 +7359,107 @@ msgstr ""
|
|
7927
7359
|
msgid "Server hostname '%{host}' did not match server certificate; %{expected_certnames}"
|
7928
7360
|
msgstr ""
|
7929
7361
|
|
7930
|
-
#: ../lib/puppet/ssl/
|
7931
|
-
msgid "No certificate to validate."
|
7932
|
-
msgstr ""
|
7933
|
-
|
7934
|
-
#: ../lib/puppet/ssl/host.rb:155
|
7935
|
-
msgid "No private key with which to validate certificate with fingerprint: %{fingerprint}"
|
7936
|
-
msgstr ""
|
7937
|
-
|
7938
|
-
#: ../lib/puppet/ssl/host.rb:157
|
7939
|
-
msgid ""
|
7940
|
-
"The certificate retrieved from the master does not match the agent's private key. Did you forget to run as root?\n"
|
7941
|
-
"Certificate fingerprint: %{fingerprint}\n"
|
7942
|
-
"To fix this, remove the certificate from both the master and the agent and then start a puppet run, which will automatically regenerate a certificate.\n"
|
7943
|
-
"On the master:\n"
|
7944
|
-
" puppetserver ca clean --certname %{cert_name}\n"
|
7945
|
-
"On the agent:\n"
|
7946
|
-
" 1. puppet ssl clean %{clean_params}\n"
|
7947
|
-
" 2. puppet %{puppet_params}\n"
|
7948
|
-
msgstr ""
|
7949
|
-
|
7950
|
-
#: ../lib/puppet/ssl/host.rb:212
|
7951
|
-
msgid ""
|
7952
|
-
"The CSR retrieved from the master does not match the agent's public key.\n"
|
7953
|
-
"CSR fingerprint: %{fingerprint}\n"
|
7954
|
-
"CSR public key: %{csr_public_key}\n"
|
7955
|
-
"Agent public key: %{agent_public_key}\n"
|
7956
|
-
"To fix this, remove the CSR from both the master and the agent and then start a puppet run, which will automatically regenerate a CSR.\n"
|
7957
|
-
"On the master:\n"
|
7958
|
-
" puppetserver ca clean --certname %{cert_name}\n"
|
7959
|
-
"On the agent:\n"
|
7960
|
-
" 1. puppet ssl clean %{clean_params}\n"
|
7961
|
-
" 2. puppet %{puppet_params}\n"
|
7962
|
-
msgstr ""
|
7963
|
-
|
7964
|
-
#: ../lib/puppet/ssl/host.rb:235
|
7965
|
-
msgid "Puppet::SSL::Host is deprecated and will be removed in a future release of Puppet."
|
7966
|
-
msgstr ""
|
7967
|
-
|
7968
|
-
#: ../lib/puppet/ssl/host.rb:267 ../lib/puppet/ssl/host.rb:288
|
7969
|
-
msgid "Could not request certificate: %{message}"
|
7970
|
-
msgstr ""
|
7971
|
-
|
7972
|
-
#: ../lib/puppet/ssl/host.rb:269
|
7973
|
-
msgid "Exiting; failed to retrieve certificate and waitforcert is disabled"
|
7974
|
-
msgstr ""
|
7975
|
-
|
7976
|
-
#: ../lib/puppet/ssl/host.rb:278
|
7977
|
-
msgid "Exiting; no certificate found and waitforcert is disabled"
|
7978
|
-
msgstr ""
|
7979
|
-
|
7980
|
-
#: ../lib/puppet/ssl/host.rb:286
|
7981
|
-
msgid "Did not receive certificate"
|
7982
|
-
msgstr ""
|
7983
|
-
|
7984
|
-
#: ../lib/puppet/ssl/host.rb:326
|
7985
|
-
msgid "Response from the CA did not contain a valid certificate request: %{message}"
|
7986
|
-
msgstr ""
|
7987
|
-
|
7988
|
-
#: ../lib/puppet/ssl/host.rb:332
|
7989
|
-
msgid "Could not download certificate request: %{message}"
|
7990
|
-
msgstr ""
|
7991
|
-
|
7992
|
-
#: ../lib/puppet/ssl/host.rb:359
|
7993
|
-
msgid ""
|
7994
|
-
"Failed attempting to load CRL from %{crl_path}! The CRL below caused the error '%{error}':\n"
|
7995
|
-
"%{crl}"
|
7996
|
-
msgstr ""
|
7997
|
-
|
7998
|
-
#: ../lib/puppet/ssl/host.rb:391 ../lib/puppet/ssl/state_machine.rb:120
|
7999
|
-
msgid "Could not download CRLs: %{message}"
|
8000
|
-
msgstr ""
|
8001
|
-
|
8002
|
-
#: ../lib/puppet/ssl/host.rb:425
|
8003
|
-
msgid "The certificate at %{file_path} is invalid. Could not load."
|
8004
|
-
msgstr ""
|
8005
|
-
|
8006
|
-
#: ../lib/puppet/ssl/host.rb:446
|
8007
|
-
msgid "Response from the CA did not contain a valid certificate for %{cert_name}."
|
8008
|
-
msgstr ""
|
8009
|
-
|
8010
|
-
#: ../lib/puppet/ssl/host.rb:450
|
8011
|
-
msgid "No certificate for %{cert_name} on CA"
|
8012
|
-
msgstr ""
|
8013
|
-
|
8014
|
-
#: ../lib/puppet/ssl/host.rb:453
|
8015
|
-
msgid "Could not download host certificate: %{message}"
|
8016
|
-
msgstr ""
|
8017
|
-
|
8018
|
-
#: ../lib/puppet/ssl/oids.rb:110
|
7362
|
+
#: ../lib/puppet/ssl/oids.rb:112
|
8019
7363
|
msgid "Error loading ssl custom OIDs mapping file from '%{custom_oid_file}': %{err}"
|
8020
7364
|
msgstr ""
|
8021
7365
|
|
8022
|
-
#: ../lib/puppet/ssl/oids.rb:
|
7366
|
+
#: ../lib/puppet/ssl/oids.rb:116
|
8023
7367
|
msgid "Error loading ssl custom OIDs mapping file from '%{custom_oid_file}': no such index '%{map_key}'"
|
8024
7368
|
msgstr ""
|
8025
7369
|
|
8026
|
-
#: ../lib/puppet/ssl/oids.rb:
|
7370
|
+
#: ../lib/puppet/ssl/oids.rb:120
|
8027
7371
|
msgid "Error loading ssl custom OIDs mapping file from '%{custom_oid_file}': data under index '%{map_key}' must be a Hash"
|
8028
7372
|
msgstr ""
|
8029
7373
|
|
8030
|
-
#: ../lib/puppet/ssl/oids.rb:
|
7374
|
+
#: ../lib/puppet/ssl/oids.rb:127
|
8031
7375
|
msgid "Error loading ssl custom OIDs mapping file from '%{custom_oid_file}': incomplete definition of oid '%{oid}'"
|
8032
7376
|
msgstr ""
|
8033
7377
|
|
8034
|
-
#: ../lib/puppet/ssl/oids.rb:
|
7378
|
+
#: ../lib/puppet/ssl/oids.rb:159
|
8035
7379
|
msgid "Error registering ssl custom OIDs mapping from file '%{custom_oid_file}': %{err}"
|
8036
7380
|
msgstr ""
|
8037
7381
|
|
8038
|
-
#: ../lib/puppet/ssl/ssl_provider.rb:
|
7382
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:83
|
8039
7383
|
msgid "Failed to add '%{path}' as a trusted CA file: %{detail}"
|
8040
7384
|
msgstr ""
|
8041
7385
|
|
8042
|
-
#: ../lib/puppet/ssl/ssl_provider.rb:
|
7386
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:87
|
8043
7387
|
msgid "The 'ssl_trust_store' setting does not refer to a file and will be ignored: '%{path}'"
|
8044
7388
|
msgstr ""
|
8045
7389
|
|
8046
|
-
#: ../lib/puppet/ssl/ssl_provider.rb:
|
7390
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:121
|
8047
7391
|
msgid "CA certs are missing"
|
8048
7392
|
msgstr ""
|
8049
7393
|
|
8050
|
-
#: ../lib/puppet/ssl/ssl_provider.rb:
|
7394
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:122
|
8051
7395
|
msgid "CRLs are missing"
|
8052
7396
|
msgstr ""
|
8053
7397
|
|
8054
|
-
#: ../lib/puppet/ssl/ssl_provider.rb:
|
7398
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:123
|
8055
7399
|
msgid "Private key is missing"
|
8056
7400
|
msgstr ""
|
8057
7401
|
|
8058
|
-
#: ../lib/puppet/ssl/ssl_provider.rb:
|
7402
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:124
|
8059
7403
|
msgid "Client cert is missing"
|
8060
7404
|
msgstr ""
|
8061
7405
|
|
8062
|
-
#: ../lib/puppet/ssl/ssl_provider.rb:
|
7406
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:130
|
8063
7407
|
msgid "Unsupported key '%{type}'"
|
8064
7408
|
msgstr ""
|
8065
7409
|
|
8066
|
-
#: ../lib/puppet/ssl/ssl_provider.rb:
|
7410
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:134
|
8067
7411
|
msgid "The certificate for '%{name}' does not match its private key"
|
8068
7412
|
msgstr ""
|
8069
7413
|
|
8070
|
-
#: ../lib/puppet/ssl/ssl_provider.rb:
|
7414
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:173
|
8071
7415
|
msgid "Failed to load private key for host '%{name}': %{message}"
|
8072
7416
|
msgstr ""
|
8073
7417
|
|
8074
|
-
#: ../lib/puppet/ssl/ssl_provider.rb:
|
7418
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:187
|
8075
7419
|
msgid "The CSR for host '%{name}' does not match the public key"
|
8076
7420
|
msgstr ""
|
8077
7421
|
|
8078
|
-
#: ../lib/puppet/ssl/ssl_provider.rb:
|
7422
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:251
|
8079
7423
|
msgid "The issuer '%{issuer}' of certificate '%{subject}' cannot be found locally"
|
8080
7424
|
msgstr ""
|
8081
7425
|
|
8082
|
-
#: ../lib/puppet/ssl/ssl_provider.rb:
|
7426
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:267
|
8083
7427
|
msgid "The certificate '%{subject}' is not yet valid, verify time is synchronized"
|
8084
7428
|
msgstr ""
|
8085
7429
|
|
8086
|
-
#: ../lib/puppet/ssl/ssl_provider.rb:
|
7430
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:269
|
8087
7431
|
msgid "The certificate '%{subject}' has expired, verify time is synchronized"
|
8088
7432
|
msgstr ""
|
8089
7433
|
|
8090
|
-
#: ../lib/puppet/ssl/ssl_provider.rb:
|
7434
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:271
|
8091
7435
|
msgid "The CRL issued by '%{issuer}' is not yet valid, verify time is synchronized"
|
8092
7436
|
msgstr ""
|
8093
7437
|
|
8094
|
-
#: ../lib/puppet/ssl/ssl_provider.rb:
|
7438
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:273
|
8095
7439
|
msgid "The CRL issued by '%{issuer}' has expired, verify time is synchronized"
|
8096
7440
|
msgstr ""
|
8097
7441
|
|
8098
|
-
#: ../lib/puppet/ssl/ssl_provider.rb:
|
7442
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:275
|
8099
7443
|
msgid "Invalid signature for certificate '%{subject}'"
|
8100
7444
|
msgstr ""
|
8101
7445
|
|
8102
|
-
#: ../lib/puppet/ssl/ssl_provider.rb:
|
7446
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:277
|
8103
7447
|
msgid "Invalid signature for CRL issued by '%{issuer}'"
|
8104
7448
|
msgstr ""
|
8105
7449
|
|
8106
|
-
#: ../lib/puppet/ssl/ssl_provider.rb:
|
7450
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:279
|
8107
7451
|
msgid "The issuer '%{issuer}' of certificate '%{subject}' is missing"
|
8108
7452
|
msgstr ""
|
8109
7453
|
|
8110
|
-
#: ../lib/puppet/ssl/ssl_provider.rb:
|
7454
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:282
|
8111
7455
|
msgid "The CRL issued by '%{issuer}' is missing"
|
8112
7456
|
msgstr ""
|
8113
7457
|
|
8114
|
-
#: ../lib/puppet/ssl/ssl_provider.rb:
|
7458
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:284
|
8115
7459
|
msgid "Certificate '%{subject}' is revoked"
|
8116
7460
|
msgstr ""
|
8117
7461
|
|
8118
|
-
#: ../lib/puppet/ssl/ssl_provider.rb:
|
7462
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:288
|
8119
7463
|
msgid "Certificate '%{subject}' failed verification (%{err}): %{err_utf8}"
|
8120
7464
|
msgstr ""
|
8121
7465
|
|
@@ -8139,6 +7483,10 @@ msgstr ""
|
|
8139
7483
|
msgid "CRL is missing from the server"
|
8140
7484
|
msgstr ""
|
8141
7485
|
|
7486
|
+
#: ../lib/puppet/ssl/state_machine.rb:120
|
7487
|
+
msgid "Could not download CRLs: %{message}"
|
7488
|
+
msgstr ""
|
7489
|
+
|
8142
7490
|
#: ../lib/puppet/ssl/state_machine.rb:127
|
8143
7491
|
msgid "Refreshing CRL"
|
8144
7492
|
msgstr ""
|
@@ -8211,16 +7559,16 @@ msgstr ""
|
|
8211
7559
|
msgid "Another puppet instance is already running; waiting for it to finish"
|
8212
7560
|
msgstr ""
|
8213
7561
|
|
8214
|
-
#: ../lib/puppet/ssl/state_machine.rb:
|
7562
|
+
#: ../lib/puppet/ssl/state_machine.rb:429
|
8215
7563
|
msgid "Verified client certificate '%{subject}' fingerprint %{digest}"
|
8216
7564
|
msgstr ""
|
8217
7565
|
|
8218
|
-
#: ../lib/puppet/ssl/state_machine.rb:
|
7566
|
+
#: ../lib/puppet/ssl/state_machine.rb:431
|
8219
7567
|
msgid "Verified CA certificate '%{subject}' fingerprint %{digest}"
|
8220
7568
|
msgstr ""
|
8221
7569
|
|
8222
7570
|
#. TRANSLATORS: `error` is an untranslated message from openssl describing why a certificate in the server's chain is invalid, and `subject` is the identity/name of the failed certificate
|
8223
|
-
#: ../lib/puppet/ssl/verifier.rb:
|
7571
|
+
#: ../lib/puppet/ssl/verifier.rb:130
|
8224
7572
|
msgid "certificate verify failed [%{error} for %{subject}]"
|
8225
7573
|
msgstr ""
|
8226
7574
|
|
@@ -8345,19 +7693,19 @@ msgid "Prefetch failed for %{type_name} provider '%{name}'"
|
|
8345
7693
|
msgstr ""
|
8346
7694
|
|
8347
7695
|
#. TRANSLATORS `prefetch` is a function name and should not be translated
|
8348
|
-
#: ../lib/puppet/transaction.rb:381
|
7696
|
+
#: ../lib/puppet/transaction.rb:381
|
8349
7697
|
msgid "Could not prefetch %{type_name} provider '%{name}': %{detail}"
|
8350
7698
|
msgstr ""
|
8351
7699
|
|
8352
|
-
#: ../lib/puppet/transaction.rb:
|
7700
|
+
#: ../lib/puppet/transaction.rb:415
|
8353
7701
|
msgid "Skipping resources in class because of failed class dependencies"
|
8354
7702
|
msgstr ""
|
8355
7703
|
|
8356
|
-
#: ../lib/puppet/transaction.rb:
|
7704
|
+
#: ../lib/puppet/transaction.rb:419
|
8357
7705
|
msgid "Skipping because of failed dependencies"
|
8358
7706
|
msgstr ""
|
8359
7707
|
|
8360
|
-
#: ../lib/puppet/transaction.rb:
|
7708
|
+
#: ../lib/puppet/transaction.rb:424
|
8361
7709
|
msgid "Skipping because provider prefetch failed"
|
8362
7710
|
msgstr ""
|
8363
7711
|
|
@@ -8478,77 +7826,77 @@ msgstr ""
|
|
8478
7826
|
msgid "There is more than one '%{basename}' script in %{dir}"
|
8479
7827
|
msgstr ""
|
8480
7828
|
|
8481
|
-
#: ../lib/puppet/type.rb:
|
7829
|
+
#: ../lib/puppet/type.rb:496
|
8482
7830
|
msgid "Options must be a hash, not %{type}"
|
8483
7831
|
msgstr ""
|
8484
7832
|
|
8485
|
-
#: ../lib/puppet/type.rb:
|
7833
|
+
#: ../lib/puppet/type.rb:499
|
8486
7834
|
msgid "Class %{class_name} already has a property named %{property}"
|
8487
7835
|
msgstr ""
|
8488
7836
|
|
8489
|
-
#: ../lib/puppet/type.rb:
|
7837
|
+
#: ../lib/puppet/type.rb:586
|
8490
7838
|
msgid "Class %{class_name} has not defined parameters"
|
8491
7839
|
msgstr ""
|
8492
7840
|
|
8493
|
-
#: ../lib/puppet/type.rb:
|
7841
|
+
#: ../lib/puppet/type.rb:673
|
8494
7842
|
msgid "Parameter %{name} failed on %{ref}: %{detail}"
|
8495
7843
|
msgstr ""
|
8496
7844
|
|
8497
|
-
#: ../lib/puppet/type.rb:
|
7845
|
+
#: ../lib/puppet/type.rb:696
|
8498
7846
|
msgid "Undefined attribute '%{attribute}' in %{name}"
|
8499
7847
|
msgstr ""
|
8500
7848
|
|
8501
7849
|
#. TRANSLATORS 'is' is a variable name and should not be translated
|
8502
7850
|
#. TRANSLATORS 'is' is a variable name and should not be translated
|
8503
|
-
#: ../lib/puppet/type.rb:
|
7851
|
+
#: ../lib/puppet/type.rb:1039 ../lib/puppet/type.rb:1050
|
8504
7852
|
msgid "The 'is' value is not in the 'is' array for '%{name}'"
|
8505
7853
|
msgstr ""
|
8506
7854
|
|
8507
|
-
#: ../lib/puppet/type.rb:
|
7855
|
+
#: ../lib/puppet/type.rb:1181
|
8508
7856
|
msgid "%{name} has no providers and has not overridden 'instances'"
|
8509
7857
|
msgstr ""
|
8510
7858
|
|
8511
|
-
#: ../lib/puppet/type.rb:
|
7859
|
+
#: ../lib/puppet/type.rb:1445
|
8512
7860
|
msgid "Cannot add aliases without a catalog"
|
8513
7861
|
msgstr ""
|
8514
7862
|
|
8515
|
-
#: ../lib/puppet/type.rb:
|
7863
|
+
#: ../lib/puppet/type.rb:1525
|
8516
7864
|
msgid "Could not find %{description} %{ref} for %{resource}"
|
8517
7865
|
msgstr ""
|
8518
7866
|
|
8519
|
-
#: ../lib/puppet/type.rb:
|
7867
|
+
#: ../lib/puppet/type.rb:1749
|
8520
7868
|
msgid "Found multiple default providers for %{name}: %{provider_list}; using %{selected_provider}"
|
8521
7869
|
msgstr ""
|
8522
7870
|
|
8523
|
-
#: ../lib/puppet/type.rb:
|
7871
|
+
#: ../lib/puppet/type.rb:1836
|
8524
7872
|
msgid "Could not find parent provider %{parent} of %{name}"
|
8525
7873
|
msgstr ""
|
8526
7874
|
|
8527
|
-
#: ../lib/puppet/type.rb:
|
7875
|
+
#: ../lib/puppet/type.rb:1910
|
8528
7876
|
msgid "Invalid %{resource} provider '%{provider_class}'"
|
8529
7877
|
msgstr ""
|
8530
7878
|
|
8531
|
-
#: ../lib/puppet/type.rb:
|
7879
|
+
#: ../lib/puppet/type.rb:1995
|
8532
7880
|
msgid "Could not find %{name} provider of %{provider}"
|
8533
7881
|
msgstr ""
|
8534
7882
|
|
8535
|
-
#: ../lib/puppet/type.rb:
|
7883
|
+
#: ../lib/puppet/type.rb:2113
|
8536
7884
|
msgid "You cannot add relationships without a catalog"
|
8537
7885
|
msgstr ""
|
8538
7886
|
|
8539
|
-
#: ../lib/puppet/type.rb:
|
7887
|
+
#: ../lib/puppet/type.rb:2416
|
8540
7888
|
msgid "Unable to mark '%{name}' as sensitive: %{name} is a parameter and not a property, and cannot be automatically redacted."
|
8541
7889
|
msgstr ""
|
8542
7890
|
|
8543
|
-
#: ../lib/puppet/type.rb:
|
7891
|
+
#: ../lib/puppet/type.rb:2419
|
8544
7892
|
msgid "Unable to mark '%{name}' as sensitive: the property itself was not assigned a value."
|
8545
7893
|
msgstr ""
|
8546
7894
|
|
8547
|
-
#: ../lib/puppet/type.rb:
|
7895
|
+
#: ../lib/puppet/type.rb:2421
|
8548
7896
|
msgid "Unable to mark '%{name}' as sensitive: the property itself is not defined on %{type}."
|
8549
7897
|
msgstr ""
|
8550
7898
|
|
8551
|
-
#: ../lib/puppet/type.rb:
|
7899
|
+
#: ../lib/puppet/type.rb:2479
|
8552
7900
|
msgid "Could not set %{attribute} on %{class_name}: %{detail}"
|
8553
7901
|
msgstr ""
|
8554
7902
|
|
@@ -8625,86 +7973,86 @@ msgstr ""
|
|
8625
7973
|
msgid "File paths must be fully qualified, not '%{path}'"
|
8626
7974
|
msgstr ""
|
8627
7975
|
|
8628
|
-
#: ../lib/puppet/type/file.rb:
|
7976
|
+
#: ../lib/puppet/type/file.rb:140
|
8629
7977
|
msgid "Invalid backup type %{value}"
|
8630
7978
|
msgstr ""
|
8631
7979
|
|
8632
|
-
#: ../lib/puppet/type/file.rb:
|
7980
|
+
#: ../lib/puppet/type/file.rb:184 ../lib/puppet/type/tidy.rb:48
|
8633
7981
|
msgid "Invalid recurse value %{value}"
|
8634
7982
|
msgstr ""
|
8635
7983
|
|
8636
|
-
#: ../lib/puppet/type/file.rb:
|
7984
|
+
#: ../lib/puppet/type/file.rb:216
|
8637
7985
|
msgid "Invalid recurselimit value %{value}"
|
8638
7986
|
msgstr ""
|
8639
7987
|
|
8640
|
-
#: ../lib/puppet/type/file.rb:
|
7988
|
+
#: ../lib/puppet/type/file.rb:416
|
8641
7989
|
msgid "You cannot specify more than one of %{creators}"
|
8642
7990
|
msgstr ""
|
8643
7991
|
|
8644
|
-
#: ../lib/puppet/type/file.rb:
|
7992
|
+
#: ../lib/puppet/type/file.rb:418
|
8645
7993
|
msgid "You cannot specify a remote recursion without a source"
|
8646
7994
|
msgstr ""
|
8647
7995
|
|
8648
|
-
#: ../lib/puppet/type/file.rb:
|
7996
|
+
#: ../lib/puppet/type/file.rb:420
|
8649
7997
|
msgid "You cannot specify source when using checksum 'none'"
|
8650
7998
|
msgstr ""
|
8651
7999
|
|
8652
|
-
#: ../lib/puppet/type/file.rb:
|
8000
|
+
#: ../lib/puppet/type/file.rb:423
|
8653
8001
|
msgid "You cannot specify content when using checksum '%{checksum_type}'"
|
8654
8002
|
msgstr ""
|
8655
8003
|
|
8656
|
-
#: ../lib/puppet/type/file.rb:
|
8004
|
+
#: ../lib/puppet/type/file.rb:426
|
8657
8005
|
msgid "Possible error: recurselimit is set but not recurse, no recursion will happen"
|
8658
8006
|
msgstr ""
|
8659
8007
|
|
8660
|
-
#: ../lib/puppet/type/file.rb:
|
8008
|
+
#: ../lib/puppet/type/file.rb:434
|
8661
8009
|
msgid "Checksum value '%{value}' is not a valid checksum type %{checksum}"
|
8662
8010
|
msgstr ""
|
8663
8011
|
|
8664
|
-
#: ../lib/puppet/type/file.rb:
|
8012
|
+
#: ../lib/puppet/type/file.rb:437
|
8665
8013
|
msgid "Checksum value is ignored unless content or source are specified"
|
8666
8014
|
msgstr ""
|
8667
8015
|
|
8668
|
-
#: ../lib/puppet/type/file.rb:
|
8016
|
+
#: ../lib/puppet/type/file.rb:475
|
8669
8017
|
msgid "Can not find filebucket for backups without a catalog"
|
8670
8018
|
msgstr ""
|
8671
8019
|
|
8672
|
-
#: ../lib/puppet/type/file.rb:
|
8020
|
+
#: ../lib/puppet/type/file.rb:480
|
8673
8021
|
msgid "Could not find filebucket %{backup} specified in backup"
|
8674
8022
|
msgstr ""
|
8675
8023
|
|
8676
|
-
#: ../lib/puppet/type/file.rb:
|
8024
|
+
#: ../lib/puppet/type/file.rb:778
|
8677
8025
|
msgid "Could not back up file of type %{current_type}"
|
8678
8026
|
msgstr ""
|
8679
8027
|
|
8680
|
-
#: ../lib/puppet/type/file.rb:
|
8028
|
+
#: ../lib/puppet/type/file.rb:793
|
8681
8029
|
msgid "Could not remove files of type %{current_type}"
|
8682
8030
|
msgstr ""
|
8683
8031
|
|
8684
8032
|
#. TRANSLATORS "source_permissions => ignore" should not be translated
|
8685
|
-
#: ../lib/puppet/type/file.rb:
|
8033
|
+
#: ../lib/puppet/type/file.rb:804
|
8686
8034
|
msgid "Copying owner/mode/group from the source file on Windows is not supported; use source_permissions => ignore."
|
8687
8035
|
msgstr ""
|
8688
8036
|
|
8689
8037
|
#. TRANSLATORS "stat" is a program name and should not be translated
|
8690
|
-
#: ../lib/puppet/type/file.rb:
|
8038
|
+
#: ../lib/puppet/type/file.rb:885 ../lib/puppet/type/tidy.rb:352
|
8691
8039
|
msgid "Could not stat; permission denied"
|
8692
8040
|
msgstr ""
|
8693
8041
|
|
8694
|
-
#: ../lib/puppet/type/file.rb:
|
8042
|
+
#: ../lib/puppet/type/file.rb:888
|
8695
8043
|
msgid "Could not stat; invalid pathname"
|
8696
8044
|
msgstr ""
|
8697
8045
|
|
8698
|
-
#: ../lib/puppet/type/file.rb:
|
8046
|
+
#: ../lib/puppet/type/file.rb:1016
|
8699
8047
|
msgid "Not removing directory; use 'force' to override"
|
8700
8048
|
msgstr ""
|
8701
8049
|
|
8702
8050
|
#. TRANSLATORS refers to a file which could not be backed up
|
8703
|
-
#: ../lib/puppet/type/file.rb:
|
8051
|
+
#: ../lib/puppet/type/file.rb:1041
|
8704
8052
|
msgid "Could not back up; will not remove"
|
8705
8053
|
msgstr ""
|
8706
8054
|
|
8707
|
-
#: ../lib/puppet/type/file.rb:
|
8055
|
+
#: ../lib/puppet/type/file.rb:1056
|
8708
8056
|
msgid "File written to disk did not match desired checksum; discarding changes (%{content_checksum} vs %{desired_checksum})"
|
8709
8057
|
msgstr ""
|
8710
8058
|
|
@@ -8746,7 +8094,7 @@ msgid "Not managing symlink mode"
|
|
8746
8094
|
msgstr ""
|
8747
8095
|
|
8748
8096
|
#. TRANSLATORS "source_permissions" is a parameter name and should not be translated
|
8749
|
-
#: ../lib/puppet/type/file/source.rb:
|
8097
|
+
#: ../lib/puppet/type/file/source.rb:373
|
8750
8098
|
msgid "The `source_permissions` parameter is deprecated. Explicitly set `owner`, `group`, and `mode`."
|
8751
8099
|
msgstr ""
|
8752
8100
|
|
@@ -8770,36 +8118,36 @@ msgstr ""
|
|
8770
8118
|
msgid "Invalid GID %{gid}"
|
8771
8119
|
msgstr ""
|
8772
8120
|
|
8773
|
-
#: ../lib/puppet/type/package.rb:
|
8121
|
+
#: ../lib/puppet/type/package.rb:124 ../lib/puppet/type/package.rb:138
|
8774
8122
|
msgid "Could not update: %{detail}"
|
8775
8123
|
msgstr ""
|
8776
8124
|
|
8777
|
-
#: ../lib/puppet/type/package.rb:
|
8125
|
+
#: ../lib/puppet/type/package.rb:173
|
8778
8126
|
msgid "Could not get latest version: %{detail}"
|
8779
8127
|
msgstr ""
|
8780
8128
|
|
8781
|
-
#: ../lib/puppet/type/package.rb:
|
8129
|
+
#: ../lib/puppet/type/package.rb:273
|
8782
8130
|
msgid "Name must be a String not %{klass}"
|
8783
8131
|
msgstr ""
|
8784
8132
|
|
8785
|
-
#: ../lib/puppet/type/package.rb:
|
8133
|
+
#: ../lib/puppet/type/package.rb:419
|
8786
8134
|
msgid "Cannot have both `ensure => disabled` and `flavor`"
|
8787
8135
|
msgstr ""
|
8788
8136
|
|
8789
|
-
#: ../lib/puppet/type/package.rb:
|
8137
|
+
#: ../lib/puppet/type/package.rb:518
|
8790
8138
|
msgid "Cannot have both `enable_only => true` and `flavor`"
|
8791
8139
|
msgstr ""
|
8792
8140
|
|
8793
|
-
#: ../lib/puppet/type/package.rb:
|
8141
|
+
#: ../lib/puppet/type/package.rb:521
|
8794
8142
|
msgid "Cannot have both `ensure => disabled` and `enable_only => true`"
|
8795
8143
|
msgstr ""
|
8796
8144
|
|
8797
|
-
#: ../lib/puppet/type/package.rb:
|
8145
|
+
#: ../lib/puppet/type/package.rb:682
|
8798
8146
|
msgid "Invalid hold value %{value}. %{doc}"
|
8799
8147
|
msgstr ""
|
8800
8148
|
|
8801
|
-
#: ../lib/puppet/type/package.rb:
|
8802
|
-
msgid "You cannot use \"mark\" property while \"ensure\" is one of [\"absent\", \"purged\"
|
8149
|
+
#: ../lib/puppet/type/package.rb:709
|
8150
|
+
msgid "You cannot use \"mark\" property while \"ensure\" is one of [\"absent\", \"purged\"]"
|
8803
8151
|
msgstr ""
|
8804
8152
|
|
8805
8153
|
#: ../lib/puppet/type/resources.rb:15
|
@@ -8858,15 +8206,15 @@ msgstr ""
|
|
8858
8206
|
msgid "Setting enable to %{value} is only supported on Microsoft Windows."
|
8859
8207
|
msgstr ""
|
8860
8208
|
|
8861
|
-
#: ../lib/puppet/type/service.rb:
|
8209
|
+
#: ../lib/puppet/type/service.rb:166
|
8862
8210
|
msgid "The 'logonaccount' parameter is mandatory when setting 'logonpassword'."
|
8863
8211
|
msgstr ""
|
8864
8212
|
|
8865
|
-
#: ../lib/puppet/type/service.rb:
|
8213
|
+
#: ../lib/puppet/type/service.rb:167 ../lib/puppet/type/user.rb:271
|
8866
8214
|
msgid "Passwords cannot include ':'"
|
8867
8215
|
msgstr ""
|
8868
8216
|
|
8869
|
-
#: ../lib/puppet/type/service.rb:
|
8217
|
+
#: ../lib/puppet/type/service.rb:304
|
8870
8218
|
msgid "\"%{value}\" is not a positive integer: the timeout parameter must be specified as a positive integer"
|
8871
8219
|
msgstr ""
|
8872
8220
|
|
@@ -8901,148 +8249,148 @@ msgstr ""
|
|
8901
8249
|
msgid "File does not exist"
|
8902
8250
|
msgstr ""
|
8903
8251
|
|
8904
|
-
#: ../lib/puppet/type/user.rb:
|
8252
|
+
#: ../lib/puppet/type/user.rb:182
|
8905
8253
|
msgid "Could not find group(s) %{groups}"
|
8906
8254
|
msgstr ""
|
8907
8255
|
|
8908
|
-
#: ../lib/puppet/type/user.rb:
|
8256
|
+
#: ../lib/puppet/type/user.rb:291
|
8909
8257
|
msgid "Password minimum age must be provided as a number."
|
8910
8258
|
msgstr ""
|
8911
8259
|
|
8912
|
-
#: ../lib/puppet/type/user.rb:
|
8260
|
+
#: ../lib/puppet/type/user.rb:310
|
8913
8261
|
msgid "Password maximum age must be provided as a number."
|
8914
8262
|
msgstr ""
|
8915
8263
|
|
8916
|
-
#: ../lib/puppet/type/user.rb:
|
8264
|
+
#: ../lib/puppet/type/user.rb:341
|
8917
8265
|
msgid "Group names must be provided, not GID numbers."
|
8918
8266
|
msgstr ""
|
8919
8267
|
|
8920
|
-
#: ../lib/puppet/type/user.rb:
|
8268
|
+
#: ../lib/puppet/type/user.rb:343
|
8921
8269
|
msgid "Group names must be provided as an array, not a comma-separated list."
|
8922
8270
|
msgstr ""
|
8923
8271
|
|
8924
|
-
#: ../lib/puppet/type/user.rb:
|
8272
|
+
#: ../lib/puppet/type/user.rb:344
|
8925
8273
|
msgid "Group names must not be empty. If you want to specify \"no groups\" pass an empty array"
|
8926
8274
|
msgstr ""
|
8927
8275
|
|
8928
|
-
#: ../lib/puppet/type/user.rb:
|
8276
|
+
#: ../lib/puppet/type/user.rb:437
|
8929
8277
|
msgid "User provider %{name} can not manage home directories"
|
8930
8278
|
msgstr ""
|
8931
8279
|
|
8932
8280
|
#. TRANSLATORS YYYY-MM-DD represents a date with a four-digit year, a two-digit month, and a two-digit day,
|
8933
8281
|
#. TRANSLATORS separated by dashes.
|
8934
|
-
#: ../lib/puppet/type/user.rb:
|
8282
|
+
#: ../lib/puppet/type/user.rb:454
|
8935
8283
|
msgid "Expiry dates must be YYYY-MM-DD or the string \"absent\""
|
8936
8284
|
msgstr ""
|
8937
8285
|
|
8938
|
-
#: ../lib/puppet/type/user.rb:
|
8286
|
+
#: ../lib/puppet/type/user.rb:521
|
8939
8287
|
msgid "Role names must be provided, not numbers"
|
8940
8288
|
msgstr ""
|
8941
8289
|
|
8942
|
-
#: ../lib/puppet/type/user.rb:
|
8290
|
+
#: ../lib/puppet/type/user.rb:523
|
8943
8291
|
msgid "Role names must be provided as an array, not a comma-separated list"
|
8944
8292
|
msgstr ""
|
8945
8293
|
|
8946
|
-
#: ../lib/puppet/type/user.rb:
|
8294
|
+
#: ../lib/puppet/type/user.rb:560
|
8947
8295
|
msgid "Auth names must be provided, not numbers"
|
8948
8296
|
msgstr ""
|
8949
8297
|
|
8950
|
-
#: ../lib/puppet/type/user.rb:
|
8298
|
+
#: ../lib/puppet/type/user.rb:562
|
8951
8299
|
msgid "Auth names must be provided as an array, not a comma-separated list"
|
8952
8300
|
msgstr ""
|
8953
8301
|
|
8954
|
-
#: ../lib/puppet/type/user.rb:
|
8302
|
+
#: ../lib/puppet/type/user.rb:586
|
8955
8303
|
msgid "Profile names must be provided, not numbers"
|
8956
8304
|
msgstr ""
|
8957
8305
|
|
8958
|
-
#: ../lib/puppet/type/user.rb:
|
8306
|
+
#: ../lib/puppet/type/user.rb:588
|
8959
8307
|
msgid "Profile names must be provided as an array, not a comma-separated list"
|
8960
8308
|
msgstr ""
|
8961
8309
|
|
8962
|
-
#: ../lib/puppet/type/user.rb:
|
8310
|
+
#: ../lib/puppet/type/user.rb:699
|
8963
8311
|
msgid "Ssh_authorized_key type is not available. Cannot purge SSH keys."
|
8964
8312
|
msgstr ""
|
8965
8313
|
|
8966
|
-
#: ../lib/puppet/type/user.rb:
|
8314
|
+
#: ../lib/puppet/type/user.rb:737
|
8967
8315
|
msgid "Each entry for purge_ssh_keys must be a string, not a %{klass}"
|
8968
8316
|
msgstr ""
|
8969
8317
|
|
8970
|
-
#: ../lib/puppet/type/user.rb:
|
8318
|
+
#: ../lib/puppet/type/user.rb:740
|
8971
8319
|
msgid "Paths to keyfiles must be absolute, not %{entry}"
|
8972
8320
|
msgstr ""
|
8973
8321
|
|
8974
|
-
#: ../lib/puppet/type/user.rb:
|
8322
|
+
#: ../lib/puppet/type/user.rb:744
|
8975
8323
|
msgid "purge_ssh_keys must be true, false, or an array of file names, not %{value}"
|
8976
8324
|
msgstr ""
|
8977
8325
|
|
8978
|
-
#: ../lib/puppet/type/user.rb:
|
8326
|
+
#: ../lib/puppet/type/user.rb:772
|
8979
8327
|
msgid "Class name must be provided."
|
8980
8328
|
msgstr ""
|
8981
8329
|
|
8982
|
-
#: ../lib/puppet/util.rb:
|
8330
|
+
#: ../lib/puppet/util.rb:64
|
8983
8331
|
msgid "Unable to retrieve the environment for mode %{mode}"
|
8984
8332
|
msgstr ""
|
8985
8333
|
|
8986
|
-
#: ../lib/puppet/util.rb:
|
8334
|
+
#: ../lib/puppet/util.rb:81
|
8987
8335
|
msgid "Unable to clear the environment for mode %{mode}"
|
8988
8336
|
msgstr ""
|
8989
8337
|
|
8990
|
-
#: ../lib/puppet/util.rb:
|
8338
|
+
#: ../lib/puppet/util.rb:97
|
8991
8339
|
msgid "Unable to set the environment variable %{name} for mode %{mode}"
|
8992
8340
|
msgstr ""
|
8993
8341
|
|
8994
|
-
#: ../lib/puppet/util.rb:
|
8342
|
+
#: ../lib/puppet/util.rb:114
|
8995
8343
|
msgid "Unable to merge given values into the current environment for mode %{mode}"
|
8996
8344
|
msgstr ""
|
8997
8345
|
|
8998
|
-
#: ../lib/puppet/util.rb:
|
8346
|
+
#: ../lib/puppet/util.rb:156
|
8999
8347
|
msgid "could not change to group %{group}: %{detail}"
|
9000
8348
|
msgstr ""
|
9001
8349
|
|
9002
|
-
#: ../lib/puppet/util.rb:
|
8350
|
+
#: ../lib/puppet/util.rb:157
|
9003
8351
|
msgid "could not change to group %{group}"
|
9004
8352
|
msgstr ""
|
9005
8353
|
|
9006
|
-
#: ../lib/puppet/util.rb:
|
8354
|
+
#: ../lib/puppet/util.rb:170
|
9007
8355
|
msgid "Could not change to user %{user}: %{detail}"
|
9008
8356
|
msgstr ""
|
9009
8357
|
|
9010
8358
|
#. TRANSLATORS 'benchmark' is a method name and should not be translated
|
9011
|
-
#: ../lib/puppet/util.rb:
|
8359
|
+
#: ../lib/puppet/util.rb:224
|
9012
8360
|
msgid "Failed to provide level to benchmark"
|
9013
8361
|
msgstr ""
|
9014
8362
|
|
9015
|
-
#: ../lib/puppet/util.rb:
|
8363
|
+
#: ../lib/puppet/util.rb:227
|
9016
8364
|
msgid "Benchmarked object does not respond to %{value}"
|
9017
8365
|
msgstr ""
|
9018
8366
|
|
9019
8367
|
#. TRANSLATORS PATH and HOME are environment variables and should not be translated
|
9020
|
-
#: ../lib/puppet/util.rb:
|
8368
|
+
#: ../lib/puppet/util.rb:267
|
9021
8369
|
msgid "PATH contains a ~ character, and HOME is not set; ignoring PATH element '%{dir}'."
|
9022
8370
|
msgstr ""
|
9023
8371
|
|
9024
8372
|
#. TRANSLATORS PATH is an environment variable and should not be translated
|
9025
|
-
#: ../lib/puppet/util.rb:
|
8373
|
+
#: ../lib/puppet/util.rb:271
|
9026
8374
|
msgid "Couldn't expand PATH containing a ~ character; ignoring PATH element '%{dir}'."
|
9027
8375
|
msgstr ""
|
9028
8376
|
|
9029
|
-
#: ../lib/puppet/util.rb:
|
8377
|
+
#: ../lib/puppet/util.rb:318
|
9030
8378
|
msgid "unknown platform %{platform} in absolute_path"
|
9031
8379
|
msgstr ""
|
9032
8380
|
|
9033
|
-
#: ../lib/puppet/util.rb:
|
8381
|
+
#: ../lib/puppet/util.rb:353
|
9034
8382
|
msgid "Failed to convert '%{path}' to URI: %{detail}"
|
9035
8383
|
msgstr ""
|
9036
8384
|
|
9037
|
-
#: ../lib/puppet/util.rb:
|
8385
|
+
#: ../lib/puppet/util.rb:453
|
9038
8386
|
msgid "path may not be nil"
|
9039
8387
|
msgstr ""
|
9040
8388
|
|
9041
|
-
#: ../lib/puppet/util.rb:
|
8389
|
+
#: ../lib/puppet/util.rb:621
|
9042
8390
|
msgid "replace_file requires a block"
|
9043
8391
|
msgstr ""
|
9044
8392
|
|
9045
|
-
#: ../lib/puppet/util.rb:
|
8393
|
+
#: ../lib/puppet/util.rb:625
|
9046
8394
|
msgid "replace_file default_mode: %{default_mode} is invalid"
|
9047
8395
|
msgstr ""
|
9048
8396
|
|
@@ -9074,11 +8422,11 @@ msgstr ""
|
|
9074
8422
|
msgid "Failed to abandon a child process contract"
|
9075
8423
|
msgstr ""
|
9076
8424
|
|
9077
|
-
#: ../lib/puppet/util/autoload.rb:
|
8425
|
+
#: ../lib/puppet/util/autoload.rb:83
|
9078
8426
|
msgid "Could not autoload %{name}: %{detail}"
|
9079
8427
|
msgstr ""
|
9080
8428
|
|
9081
|
-
#: ../lib/puppet/util/autoload.rb:
|
8429
|
+
#: ../lib/puppet/util/autoload.rb:184
|
9082
8430
|
msgid "Autoload paths cannot be fully qualified"
|
9083
8431
|
msgstr ""
|
9084
8432
|
|
@@ -9106,15 +8454,15 @@ msgstr ""
|
|
9106
8454
|
msgid "Filebucketed %{f} to %{filebucket} with sum %{sum}"
|
9107
8455
|
msgstr ""
|
9108
8456
|
|
9109
|
-
#: ../lib/puppet/util/character_encoding.rb:
|
8457
|
+
#: ../lib/puppet/util/character_encoding.rb:23
|
9110
8458
|
msgid "%{value} is already labeled as UTF-8 but this encoding is invalid. It cannot be transcoded by Puppet."
|
9111
8459
|
msgstr ""
|
9112
8460
|
|
9113
|
-
#: ../lib/puppet/util/character_encoding.rb:
|
8461
|
+
#: ../lib/puppet/util/character_encoding.rb:45
|
9114
8462
|
msgid "%{error}: %{value} cannot be transcoded by Puppet."
|
9115
8463
|
msgstr ""
|
9116
8464
|
|
9117
|
-
#: ../lib/puppet/util/character_encoding.rb:
|
8465
|
+
#: ../lib/puppet/util/character_encoding.rb:73
|
9118
8466
|
msgid "%{value} is not valid UTF-8 and result of overriding encoding would be invalid."
|
9119
8467
|
msgstr ""
|
9120
8468
|
|
@@ -9291,37 +8639,6 @@ msgstr ""
|
|
9291
8639
|
msgid "Trollop::die can only be called after Trollop::options"
|
9292
8640
|
msgstr ""
|
9293
8641
|
|
9294
|
-
#: ../lib/puppet/util/connection.rb:28
|
9295
|
-
msgid "Selected server from the %{setting} setting: %{server}"
|
9296
|
-
msgstr ""
|
9297
|
-
|
9298
|
-
#. TRANSLATORS 'server_list' is the name of a setting and should not be translated
|
9299
|
-
#: ../lib/puppet/util/connection.rb:35
|
9300
|
-
msgid "Dynamically-bound server lookup failed; using first entry from the `server_list` setting: %{server}"
|
9301
|
-
msgstr ""
|
9302
|
-
|
9303
|
-
#: ../lib/puppet/util/connection.rb:39
|
9304
|
-
msgid "Dynamically-bound server lookup failed, falling back to %{setting} setting: %{server}"
|
9305
|
-
msgstr ""
|
9306
|
-
|
9307
|
-
#: ../lib/puppet/util/connection.rb:60
|
9308
|
-
msgid "Selected port from the %{setting} setting: %{port}"
|
9309
|
-
msgstr ""
|
9310
|
-
|
9311
|
-
#. TRANSLATORS 'server_list' is the name of a setting and should not be translated
|
9312
|
-
#: ../lib/puppet/util/connection.rb:71
|
9313
|
-
msgid "Dynamically-bound port lookup failed; using first entry from the `server_list` setting: %{port}"
|
9314
|
-
msgstr ""
|
9315
|
-
|
9316
|
-
#. TRANSLATORS 'masterport' is the name of a setting and should not be translated
|
9317
|
-
#: ../lib/puppet/util/connection.rb:75
|
9318
|
-
msgid "Dynamically-bound port lookup failed; falling back to `masterport` setting: %{port}"
|
9319
|
-
msgstr ""
|
9320
|
-
|
9321
|
-
#: ../lib/puppet/util/connection.rb:80
|
9322
|
-
msgid "Dynamically-bound port lookup failed; falling back to %{setting} setting: %{port}"
|
9323
|
-
msgstr ""
|
9324
|
-
|
9325
8642
|
#: ../lib/puppet/util/diff.rb:30
|
9326
8643
|
msgid "Cannot provide diff without the diff/lcs Ruby library"
|
9327
8644
|
msgstr ""
|
@@ -9354,23 +8671,23 @@ msgstr ""
|
|
9354
8671
|
msgid "%{klass} failed with error %{error_type}: %{detail}"
|
9355
8672
|
msgstr ""
|
9356
8673
|
|
9357
|
-
#: ../lib/puppet/util/execution.rb:
|
8674
|
+
#: ../lib/puppet/util/execution.rb:185
|
9358
8675
|
msgid "Working directory %{cwd} does not exist!"
|
9359
8676
|
msgstr ""
|
9360
8677
|
|
9361
|
-
#: ../lib/puppet/util/execution.rb:
|
8678
|
+
#: ../lib/puppet/util/execution.rb:277
|
9362
8679
|
msgid "Could not get output"
|
9363
8680
|
msgstr ""
|
9364
8681
|
|
9365
|
-
#: ../lib/puppet/util/execution.rb:
|
8682
|
+
#: ../lib/puppet/util/execution.rb:286
|
9366
8683
|
msgid "Execution of '%{str}' returned %{exit_status}: %{output}"
|
9367
8684
|
msgstr ""
|
9368
8685
|
|
9369
|
-
#: ../lib/puppet/util/execution.rb:
|
8686
|
+
#: ../lib/puppet/util/execution.rb:363
|
9370
8687
|
msgid "Could not execute posix command: %{detail}"
|
9371
8688
|
msgstr ""
|
9372
8689
|
|
9373
|
-
#: ../lib/puppet/util/execution.rb:
|
8690
|
+
#: ../lib/puppet/util/execution.rb:411
|
9374
8691
|
msgid "Waiting for output; will sleep %{time_to_sleep} seconds"
|
9375
8692
|
msgstr ""
|
9376
8693
|
|
@@ -9482,10 +8799,6 @@ msgstr ""
|
|
9482
8799
|
msgid "Could not write crontab for %{path}: %{detail}"
|
9483
8800
|
msgstr ""
|
9484
8801
|
|
9485
|
-
#: ../lib/puppet/util/http_proxy.rb:215
|
9486
|
-
msgid "Too many HTTP redirections for %{uri}"
|
9487
|
-
msgstr ""
|
9488
|
-
|
9489
8802
|
#: ../lib/puppet/util/inifile.rb:139
|
9490
8803
|
msgid "Cannot read nonexistent file %{file}"
|
9491
8804
|
msgstr ""
|
@@ -9634,6 +8947,10 @@ msgstr ""
|
|
9634
8947
|
msgid "Duplicate device found at %{file_error_location}, already found at %{device_error_location}"
|
9635
8948
|
msgstr ""
|
9636
8949
|
|
8950
|
+
#: ../lib/puppet/util/network_device/config.rb:71
|
8951
|
+
msgid "Invalid entry at %{error_location}: %{file_text}"
|
8952
|
+
msgstr ""
|
8953
|
+
|
9637
8954
|
#: ../lib/puppet/util/network_device/config.rb:77
|
9638
8955
|
msgid "Configuration error: Cannot read %{file}; cannot serve"
|
9639
8956
|
msgstr ""
|
@@ -9690,7 +9007,7 @@ msgstr ""
|
|
9690
9007
|
msgid "Could not create feature %{name}: %{detail}"
|
9691
9008
|
msgstr ""
|
9692
9009
|
|
9693
|
-
#: ../lib/puppet/util/rdoc.rb:
|
9010
|
+
#: ../lib/puppet/util/rdoc.rb:37 ../lib/puppet/util/rdoc.rb:43 ../lib/puppet/util/rdoc.rb:47 ../lib/puppet/util/rdoc.rb:51
|
9694
9011
|
msgid "RDOC SUPPORT FOR MANIFEST HAS BEEN REMOVED - See PUP-3638"
|
9695
9012
|
msgstr ""
|
9696
9013
|
|
@@ -9894,14 +9211,6 @@ msgstr ""
|
|
9894
9211
|
msgid "Cannot create group if user '%{name}' exists."
|
9895
9212
|
msgstr ""
|
9896
9213
|
|
9897
|
-
#: ../lib/puppet/util/windows/api_types.rb:85
|
9898
|
-
msgid "Unable to read wide strings with %{null_terminator} terminal nulls"
|
9899
|
-
msgstr ""
|
9900
|
-
|
9901
|
-
#: ../lib/puppet/util/windows/api_types.rb:216
|
9902
|
-
msgid "Bad GUID format."
|
9903
|
-
msgstr ""
|
9904
|
-
|
9905
9214
|
#: ../lib/puppet/util/windows/com.rb:17
|
9906
9215
|
msgid "%{name} failed (hresult %{result})."
|
9907
9216
|
msgstr ""
|
@@ -9914,11 +9223,11 @@ msgstr ""
|
|
9914
9223
|
msgid "CoCreateInstance failed (%{klass})."
|
9915
9224
|
msgstr ""
|
9916
9225
|
|
9917
|
-
#: ../lib/puppet/util/windows/error.rb:
|
9226
|
+
#: ../lib/puppet/util/windows/error.rb:43
|
9918
9227
|
msgid "FormatMessageW could not format code %{code}"
|
9919
9228
|
msgstr ""
|
9920
9229
|
|
9921
|
-
#: ../lib/puppet/util/windows/error.rb:
|
9230
|
+
#: ../lib/puppet/util/windows/error.rb:49
|
9922
9231
|
msgid "FormatMessageW failed to allocate buffer for code %{code}"
|
9923
9232
|
msgstr ""
|
9924
9233
|
|
@@ -9941,15 +9250,15 @@ msgstr ""
|
|
9941
9250
|
msgid "(Win32 error: %{detail})"
|
9942
9251
|
msgstr ""
|
9943
9252
|
|
9944
|
-
#: ../lib/puppet/util/windows/file.rb:
|
9253
|
+
#: ../lib/puppet/util/windows/file.rb:117
|
9945
9254
|
msgid "Failed to set file attributes"
|
9946
9255
|
msgstr ""
|
9947
9256
|
|
9948
|
-
#: ../lib/puppet/util/windows/file.rb:
|
9257
|
+
#: ../lib/puppet/util/windows/file.rb:180
|
9949
9258
|
msgid "out_buffer is required"
|
9950
9259
|
msgstr ""
|
9951
9260
|
|
9952
|
-
#: ../lib/puppet/util/windows/file.rb:
|
9261
|
+
#: ../lib/puppet/util/windows/file.rb:253
|
9953
9262
|
msgid "Failed to call GetLongPathName"
|
9954
9263
|
msgstr ""
|
9955
9264
|
|
@@ -10116,119 +9425,119 @@ msgstr ""
|
|
10116
9425
|
msgid "Failed to set security information"
|
10117
9426
|
msgstr ""
|
10118
9427
|
|
10119
|
-
#: ../lib/puppet/util/windows/service.rb:
|
9428
|
+
#: ../lib/puppet/util/windows/service.rb:44
|
10120
9429
|
msgid "Starting the %{service_name} service. Timeout set to: %{timeout} seconds"
|
10121
9430
|
msgstr ""
|
10122
9431
|
|
10123
|
-
#: ../lib/puppet/util/windows/service.rb:
|
9432
|
+
#: ../lib/puppet/util/windows/service.rb:54
|
10124
9433
|
msgid "Failed to start the service"
|
10125
9434
|
msgstr ""
|
10126
9435
|
|
10127
|
-
#: ../lib/puppet/util/windows/service.rb:
|
9436
|
+
#: ../lib/puppet/util/windows/service.rb:58
|
10128
9437
|
msgid "Successfully started the %{service_name} service"
|
10129
9438
|
msgstr ""
|
10130
9439
|
|
10131
|
-
#: ../lib/puppet/util/windows/service.rb:
|
9440
|
+
#: ../lib/puppet/util/windows/service.rb:67
|
10132
9441
|
msgid "Stopping the %{service_name} service. Timeout set to: %{timeout} seconds"
|
10133
9442
|
msgstr ""
|
10134
9443
|
|
10135
|
-
#: ../lib/puppet/util/windows/service.rb:
|
9444
|
+
#: ../lib/puppet/util/windows/service.rb:75
|
10136
9445
|
msgid "Successfully stopped the %{service_name} service"
|
10137
9446
|
msgstr ""
|
10138
9447
|
|
10139
|
-
#: ../lib/puppet/util/windows/service.rb:
|
9448
|
+
#: ../lib/puppet/util/windows/service.rb:84
|
10140
9449
|
msgid "Resuming the %{service_name} service. Timeout set to: %{timeout} seconds"
|
10141
9450
|
msgstr ""
|
10142
9451
|
|
10143
|
-
#: ../lib/puppet/util/windows/service.rb:
|
9452
|
+
#: ../lib/puppet/util/windows/service.rb:100
|
10144
9453
|
msgid "Successfully resumed the %{service_name} service"
|
10145
9454
|
msgstr ""
|
10146
9455
|
|
10147
|
-
#: ../lib/puppet/util/windows/service.rb:
|
9456
|
+
#: ../lib/puppet/util/windows/service.rb:116
|
10148
9457
|
msgid "Unknown Service state '%{current_state}' for '%{service_name}'"
|
10149
9458
|
msgstr ""
|
10150
9459
|
|
10151
|
-
#: ../lib/puppet/util/windows/service.rb:
|
9460
|
+
#: ../lib/puppet/util/windows/service.rb:143
|
10152
9461
|
msgid "Unknown start type '%{start_type}' for '%{service_name}'"
|
10153
9462
|
msgstr ""
|
10154
9463
|
|
10155
|
-
#: ../lib/puppet/util/windows/service.rb:
|
9464
|
+
#: ../lib/puppet/util/windows/service.rb:193
|
10156
9465
|
msgid "Failed to update service configuration"
|
10157
9466
|
msgstr ""
|
10158
9467
|
|
10159
|
-
#: ../lib/puppet/util/windows/service.rb:
|
9468
|
+
#: ../lib/puppet/util/windows/service.rb:258
|
10160
9469
|
msgid "Failed to fetch services"
|
10161
9470
|
msgstr ""
|
10162
9471
|
|
10163
|
-
#: ../lib/puppet/util/windows/service.rb:
|
9472
|
+
#: ../lib/puppet/util/windows/service.rb:307
|
10164
9473
|
msgid "Failed to open a handle to the service"
|
10165
9474
|
msgstr ""
|
10166
9475
|
|
10167
|
-
#: ../lib/puppet/util/windows/service.rb:
|
9476
|
+
#: ../lib/puppet/util/windows/service.rb:324
|
10168
9477
|
msgid "Failed to open a handle to the service control manager"
|
10169
9478
|
msgstr ""
|
10170
9479
|
|
10171
|
-
#: ../lib/puppet/util/windows/service.rb:
|
9480
|
+
#: ../lib/puppet/util/windows/service.rb:347
|
10172
9481
|
msgid "The service is already in the %{final_state} state. No further work needs to be done."
|
10173
9482
|
msgstr ""
|
10174
9483
|
|
10175
|
-
#: ../lib/puppet/util/windows/service.rb:
|
9484
|
+
#: ../lib/puppet/util/windows/service.rb:359
|
10176
9485
|
msgid "The service must be in one of the %{valid_initial_states} states to perform this transition. It is currently in the %{current_state} state."
|
10177
9486
|
msgstr ""
|
10178
9487
|
|
10179
|
-
#: ../lib/puppet/util/windows/service.rb:
|
9488
|
+
#: ../lib/puppet/util/windows/service.rb:370
|
10180
9489
|
msgid "There is already a pending transition to the %{final_state} state for the %{service_name} service."
|
10181
9490
|
msgstr ""
|
10182
9491
|
|
10183
|
-
#: ../lib/puppet/util/windows/service.rb:
|
9492
|
+
#: ../lib/puppet/util/windows/service.rb:386
|
10184
9493
|
msgid "The service is in the %{pending_state} state, which is an unsafe pending state."
|
10185
9494
|
msgstr ""
|
10186
9495
|
|
10187
|
-
#: ../lib/puppet/util/windows/service.rb:
|
9496
|
+
#: ../lib/puppet/util/windows/service.rb:391
|
10188
9497
|
msgid "Transitioning the %{service_name} service from %{initial_state} to %{final_state}"
|
10189
9498
|
msgstr ""
|
10190
9499
|
|
10191
|
-
#: ../lib/puppet/util/windows/service.rb:
|
9500
|
+
#: ../lib/puppet/util/windows/service.rb:395
|
10192
9501
|
msgid "Waiting for the transition to finish"
|
10193
9502
|
msgstr ""
|
10194
9503
|
|
10195
|
-
#: ../lib/puppet/util/windows/service.rb:
|
9504
|
+
#: ../lib/puppet/util/windows/service.rb:400
|
10196
9505
|
msgid "Failed to transition the %{service_name} service to the %{final_state} state. Detail: %{detail}"
|
10197
9506
|
msgstr ""
|
10198
9507
|
|
10199
|
-
#: ../lib/puppet/util/windows/service.rb:
|
9508
|
+
#: ../lib/puppet/util/windows/service.rb:439 ../lib/puppet/util/windows/service.rb:475
|
10200
9509
|
msgid "Service query failed"
|
10201
9510
|
msgstr ""
|
10202
9511
|
|
10203
|
-
#: ../lib/puppet/util/windows/service.rb:
|
9512
|
+
#: ../lib/puppet/util/windows/service.rb:518
|
10204
9513
|
msgid "Service query for %{parameter_name} failed"
|
10205
9514
|
msgstr ""
|
10206
9515
|
|
10207
|
-
#: ../lib/puppet/util/windows/service.rb:
|
9516
|
+
#: ../lib/puppet/util/windows/service.rb:541
|
10208
9517
|
msgid "Failed to update service %{change} configuration"
|
10209
9518
|
msgstr ""
|
10210
9519
|
|
10211
|
-
#: ../lib/puppet/util/windows/service.rb:
|
9520
|
+
#: ../lib/puppet/util/windows/service.rb:568
|
10212
9521
|
msgid "Failed to send the %{control_signal} signal to the service. Its current state is %{current_state}. Reason for failure:"
|
10213
9522
|
msgstr ""
|
10214
9523
|
|
10215
|
-
#: ../lib/puppet/util/windows/service.rb:
|
9524
|
+
#: ../lib/puppet/util/windows/service.rb:603
|
10216
9525
|
msgid "The service transitioned to the %{pending_state} state."
|
10217
9526
|
msgstr ""
|
10218
9527
|
|
10219
|
-
#: ../lib/puppet/util/windows/service.rb:
|
9528
|
+
#: ../lib/puppet/util/windows/service.rb:617
|
10220
9529
|
msgid "Timed out while waiting for the service to transition from %{initial_state} to %{final_state} OR from %{initial_state} to %{pending_state} to %{final_state}. The service's current state is %{current_state}."
|
10221
9530
|
msgstr ""
|
10222
9531
|
|
10223
|
-
#: ../lib/puppet/util/windows/service.rb:
|
9532
|
+
#: ../lib/puppet/util/windows/service.rb:632
|
10224
9533
|
msgid "Waiting for the pending transition to the %{final_state} state to finish."
|
10225
9534
|
msgstr ""
|
10226
9535
|
|
10227
|
-
#: ../lib/puppet/util/windows/service.rb:
|
9536
|
+
#: ../lib/puppet/util/windows/service.rb:646
|
10228
9537
|
msgid "Unexpected transition to the %{current_state} state while waiting for the pending transition from %{pending_state} to %{final_state} to finish."
|
10229
9538
|
msgstr ""
|
10230
9539
|
|
10231
|
-
#: ../lib/puppet/util/windows/service.rb:
|
9540
|
+
#: ../lib/puppet/util/windows/service.rb:660
|
10232
9541
|
msgid "Timed out while waiting for the pending transition from %{pending_state} to %{final_state} to finish. The current state is %{current_state}."
|
10233
9542
|
msgstr ""
|
10234
9543
|
|
@@ -10268,76 +9577,72 @@ msgstr ""
|
|
10268
9577
|
msgid "Failed to unload user profile %{user}"
|
10269
9578
|
msgstr ""
|
10270
9579
|
|
10271
|
-
#: ../lib/puppet/
|
10272
|
-
msgid "Puppet::Util::Yaml.load_file is deprecated. Use safe_load_file instead."
|
10273
|
-
msgstr ""
|
10274
|
-
|
10275
|
-
#: ../lib/puppet/x509/cert_provider.rb:39
|
9580
|
+
#: ../lib/puppet/x509/cert_provider.rb:45
|
10276
9581
|
msgid "Failed to save CA certificates to '%{capath}'"
|
10277
9582
|
msgstr ""
|
10278
9583
|
|
10279
|
-
#: ../lib/puppet/x509/cert_provider.rb:
|
9584
|
+
#: ../lib/puppet/x509/cert_provider.rb:59
|
10280
9585
|
msgid "The CA certificates are missing from '%{path}'"
|
10281
9586
|
msgstr ""
|
10282
9587
|
|
10283
|
-
#: ../lib/puppet/x509/cert_provider.rb:
|
9588
|
+
#: ../lib/puppet/x509/cert_provider.rb:63
|
10284
9589
|
msgid "Failed to load CA certificates from '%{capath}'"
|
10285
9590
|
msgstr ""
|
10286
9591
|
|
10287
9592
|
#. TRANSLATORS 'PEM' is an acronym and shouldn't be translated
|
10288
|
-
#: ../lib/puppet/x509/cert_provider.rb:
|
9593
|
+
#: ../lib/puppet/x509/cert_provider.rb:75
|
10289
9594
|
msgid "Failed to parse CA certificates as PEM"
|
10290
9595
|
msgstr ""
|
10291
9596
|
|
10292
|
-
#: ../lib/puppet/x509/cert_provider.rb:
|
9597
|
+
#: ../lib/puppet/x509/cert_provider.rb:91
|
10293
9598
|
msgid "Failed to save CRLs to '%{crlpath}'"
|
10294
9599
|
msgstr ""
|
10295
9600
|
|
10296
|
-
#: ../lib/puppet/x509/cert_provider.rb:
|
9601
|
+
#: ../lib/puppet/x509/cert_provider.rb:105
|
10297
9602
|
msgid "The CRL is missing from '%{path}'"
|
10298
9603
|
msgstr ""
|
10299
9604
|
|
10300
|
-
#: ../lib/puppet/x509/cert_provider.rb:
|
9605
|
+
#: ../lib/puppet/x509/cert_provider.rb:109
|
10301
9606
|
msgid "Failed to load CRLs from '%{crlpath}'"
|
10302
9607
|
msgstr ""
|
10303
9608
|
|
10304
9609
|
#. TRANSLATORS 'PEM' is an acronym and shouldn't be translated
|
10305
|
-
#: ../lib/puppet/x509/cert_provider.rb:
|
9610
|
+
#: ../lib/puppet/x509/cert_provider.rb:121
|
10306
9611
|
msgid "Failed to parse CRLs as PEM"
|
10307
9612
|
msgstr ""
|
10308
9613
|
|
10309
|
-
#: ../lib/puppet/x509/cert_provider.rb:
|
9614
|
+
#: ../lib/puppet/x509/cert_provider.rb:171
|
10310
9615
|
msgid "Failed to save private key for '%{name}'"
|
10311
9616
|
msgstr ""
|
10312
9617
|
|
10313
|
-
#: ../lib/puppet/x509/cert_provider.rb:
|
9618
|
+
#: ../lib/puppet/x509/cert_provider.rb:191
|
10314
9619
|
msgid "The private key is missing from '%{path}'"
|
10315
9620
|
msgstr ""
|
10316
9621
|
|
10317
|
-
#: ../lib/puppet/x509/cert_provider.rb:
|
9622
|
+
#: ../lib/puppet/x509/cert_provider.rb:195
|
10318
9623
|
msgid "Failed to load private key for '%{name}'"
|
10319
9624
|
msgstr ""
|
10320
9625
|
|
10321
|
-
#: ../lib/puppet/x509/cert_provider.rb:
|
9626
|
+
#: ../lib/puppet/x509/cert_provider.rb:255
|
10322
9627
|
msgid "Failed to save client certificate for '%{name}'"
|
10323
9628
|
msgstr ""
|
10324
9629
|
|
10325
|
-
#: ../lib/puppet/x509/cert_provider.rb:
|
9630
|
+
#: ../lib/puppet/x509/cert_provider.rb:271
|
10326
9631
|
msgid "The client certificate is missing from '%{path}'"
|
10327
9632
|
msgstr ""
|
10328
9633
|
|
10329
|
-
#: ../lib/puppet/x509/cert_provider.rb:
|
9634
|
+
#: ../lib/puppet/x509/cert_provider.rb:275
|
10330
9635
|
msgid "Failed to load client certificate for '%{name}'"
|
10331
9636
|
msgstr ""
|
10332
9637
|
|
10333
|
-
#: ../lib/puppet/x509/cert_provider.rb:
|
9638
|
+
#: ../lib/puppet/x509/cert_provider.rb:324
|
10334
9639
|
msgid "Failed to save certificate request for '%{name}'"
|
10335
9640
|
msgstr ""
|
10336
9641
|
|
10337
|
-
#: ../lib/puppet/x509/cert_provider.rb:
|
9642
|
+
#: ../lib/puppet/x509/cert_provider.rb:340
|
10338
9643
|
msgid "Failed to load certificate request for '%{name}'"
|
10339
9644
|
msgstr ""
|
10340
9645
|
|
10341
|
-
#: ../lib/puppet/x509/cert_provider.rb:
|
9646
|
+
#: ../lib/puppet/x509/cert_provider.rb:353
|
10342
9647
|
msgid "Failed to delete certificate request for '%{name}'"
|
10343
9648
|
msgstr ""
|