puppet 6.16.0-universal-darwin → 7.0.0-universal-darwin
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/Gemfile +5 -3
- data/Gemfile.lock +31 -33
- data/README.md +4 -5
- 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 +1 -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.rb +2 -2
- data/lib/puppet/agent/locker.rb +0 -7
- data/lib/puppet/application.rb +172 -98
- data/lib/puppet/application/agent.rb +22 -6
- 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/configurer.rb +66 -31
- data/lib/puppet/configurer/downloader.rb +31 -10
- data/lib/puppet/configurer/plugin_handler.rb +21 -19
- data/lib/puppet/confine.rb +2 -2
- data/lib/puppet/confine/any.rb +1 -1
- data/lib/puppet/defaults.rb +166 -169
- data/lib/puppet/environments.rb +41 -15
- 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 +2 -2
- data/lib/puppet/face/plugin.rb +5 -8
- data/lib/puppet/feature/base.rb +1 -1
- 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 +13 -1
- data/lib/puppet/file_serving/metadata.rb +4 -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_serving/terminus_selector.rb +7 -8
- data/lib/puppet/file_system/file_impl.rb +4 -4
- data/lib/puppet/file_system/uniquefile.rb +8 -16
- data/lib/puppet/forge.rb +1 -1
- data/lib/puppet/forge/cache.rb +1 -1
- data/lib/puppet/forge/repository.rb +3 -8
- 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 +170 -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 +13 -19
- 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 +49 -48
- 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.rb +1 -1
- 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 +3 -7
- data/lib/puppet/indirector/file_metadata/http.rb +25 -5
- data/lib/puppet/indirector/file_metadata/rest.rb +5 -11
- 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 +2 -103
- 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 +3 -21
- 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/leaf.rb +5 -5
- data/lib/puppet/parser/ast/pops_bridge.rb +0 -42
- data/lib/puppet/parser/compiler.rb +1 -199
- 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 +3 -71
- data/lib/puppet/parser/resource/param.rb +6 -0
- 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 +27 -13
- 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/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 -22
- 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 -42
- data/lib/puppet/pops/validation/tasks_checker.rb +0 -12
- data/lib/puppet/pops/validation/validator_factory_4_0.rb +1 -1
- 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/aptitude.rb +1 -1
- 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 +2 -1
- data/lib/puppet/provider/package/zypper.rb +3 -0
- data/lib/puppet/provider/service/smf.rb +191 -73
- data/lib/puppet/provider/service/windows.rb +23 -7
- data/lib/puppet/provider/user/aix.rb +1 -1
- 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/useradd.rb +11 -4
- 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/reports/http.rb +2 -0
- data/lib/puppet/resource.rb +3 -90
- data/lib/puppet/resource/catalog.rb +1 -14
- data/lib/puppet/resource/type.rb +5 -112
- 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_context.rb +2 -2
- data/lib/puppet/ssl/ssl_provider.rb +37 -1
- data/lib/puppet/ssl/state_machine.rb +3 -1
- data/lib/puppet/ssl/verifier.rb +2 -0
- data/lib/puppet/test/test_helper.rb +19 -16
- 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 +29 -1
- data/lib/puppet/type.rb +9 -77
- data/lib/puppet/type/file.rb +45 -22
- data/lib/puppet/type/file/checksum.rb +5 -5
- data/lib/puppet/type/file/source.rb +33 -13
- 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 +53 -0
- data/lib/puppet/type/user.rb +18 -3
- data/lib/puppet/util.rb +41 -3
- data/lib/puppet/util/autoload.rb +9 -7
- data/lib/puppet/util/character_encoding.rb +9 -5
- data/lib/puppet/util/checksums.rb +19 -4
- data/lib/puppet/util/execution.rb +2 -13
- data/lib/puppet/util/fileparsing.rb +2 -2
- data/lib/puppet/util/http_proxy.rb +2 -215
- data/lib/puppet/util/monkey_patches.rb +0 -46
- data/lib/puppet/util/provider_features.rb +1 -1
- data/lib/puppet/util/rdoc.rb +0 -7
- data/lib/puppet/util/reference.rb +1 -1
- 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 +5 -15
- 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/principal.rb +8 -6
- data/lib/puppet/util/windows/process.rb +4 -226
- data/lib/puppet/util/windows/registry.rb +11 -11
- data/lib/puppet/util/windows/security.rb +4 -4
- data/lib/puppet/util/windows/service.rb +52 -486
- data/lib/puppet/util/windows/string.rb +12 -13
- data/lib/puppet/util/windows/user.rb +242 -8
- 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 +713 -1380
- data/man/man5/puppet.conf.5 +84 -98
- data/man/man8/puppet-agent.8 +7 -4
- 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/integration/application/agent_spec.rb +157 -59
- 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 +33 -5
- 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 +29 -30
- data/spec/integration/node/environment_spec.rb +1 -1
- data/spec/integration/parser/catalog_spec.rb +0 -38
- data/spec/integration/parser/compiler_spec.rb +11 -0
- 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 +6 -5
- 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/registry_spec.rb +7 -7
- data/spec/integration/util/windows/security_spec.rb +1 -1
- data/spec/integration/util/windows/user_spec.rb +47 -5
- 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 +9 -4
- data/spec/unit/certificate_factory_spec.rb +1 -1
- data/spec/unit/configurer/downloader_spec.rb +14 -0
- data/spec/unit/configurer/fact_handler_spec.rb +4 -4
- 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 +12 -10
- data/spec/unit/defaults_spec.rb +77 -28
- data/spec/unit/environments_spec.rb +96 -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 +2 -2
- 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/http_metadata_spec.rb +37 -14
- 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_serving/terminus_selector_spec.rb +45 -26
- 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 +71 -17
- 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/response_spec.rb +6 -0
- 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/http_spec.rb +27 -0
- 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 +3 -267
- data/spec/unit/indirector/rest_spec.rb +98 -752
- data/spec/unit/indirector/yaml_spec.rb +7 -7
- data/spec/unit/interface_spec.rb +3 -3
- 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 +3 -98
- 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 +61 -73
- 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/ast/block_expression_spec.rb +1 -1
- data/spec/unit/parser/functions/create_resources_spec.rb +2 -20
- data/spec/unit/parser/scope_spec.rb +1 -1
- data/spec/unit/pops/evaluator/evaluating_parser_spec.rb +19 -8
- data/spec/unit/pops/loaders/loaders_spec.rb +77 -22
- 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 +7 -17
- 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 +50 -15
- data/spec/unit/provider/user/openbsd_spec.rb +1 -0
- data/spec/unit/provider/user/useradd_spec.rb +22 -16
- 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 +3 -59
- 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 +78 -49
- data/spec/unit/ssl/state_machine_spec.rb +0 -1
- data/spec/unit/ssl/verifier_spec.rb +0 -21
- data/spec/unit/test/test_helper_spec.rb +17 -0
- data/spec/unit/transaction/persistence_spec.rb +15 -0
- data/spec/unit/transaction/report_spec.rb +3 -3
- 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 +4 -5
- data/spec/unit/type/file_spec.rb +134 -102
- 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 +209 -0
- data/spec/unit/type/user_spec.rb +31 -2
- data/spec/unit/type_spec.rb +70 -0
- data/spec/unit/util/backups_spec.rb +0 -2
- data/spec/unit/util/character_encoding_spec.rb +4 -4
- data/spec/unit/util/checksums_spec.rb +16 -0
- 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/rubygems_spec.rb +2 -2
- data/spec/unit/util/run_mode_spec.rb +27 -127
- data/spec/unit/util/windows/api_types_spec.rb +104 -40
- data/spec/unit/util/windows/service_spec.rb +4 -4
- 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 +3 -21
- data/spec/unit/x509/cert_provider_spec.rb +1 -1
- metadata +76 -214
- 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 -85
- 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 -182
- 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 -64
- data/lib/puppet/parser/compiler/catalog_validator/site_validator.rb +0 -20
- data/lib/puppet/parser/environment_compiler.rb +0 -199
- 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 -282
- 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/integration/test/test_helper_spec.rb +0 -31
- 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 -723
- 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
|
|
@@ -72,39 +72,39 @@ msgid ""
|
|
72
72
|
"Use 'puppet agent --enable' to re-enable."
|
73
73
|
msgstr ""
|
74
74
|
|
75
|
-
#: ../lib/puppet/agent.rb:
|
75
|
+
#: ../lib/puppet/agent.rb:68
|
76
76
|
msgid "Run of %{client_class} already in progress; skipping (%{lockfile_path} exists)"
|
77
77
|
msgstr ""
|
78
78
|
|
79
|
-
#: ../lib/puppet/agent.rb:
|
79
|
+
#: ../lib/puppet/agent.rb:71
|
80
80
|
msgid "Exiting now because the maxwaitforlock timeout has been exceeded."
|
81
81
|
msgstr ""
|
82
82
|
|
83
|
-
#: ../lib/puppet/agent.rb:
|
83
|
+
#: ../lib/puppet/agent.rb:74
|
84
84
|
msgid "Another puppet instance is already running; --waitforlock flag used, waiting for running instance to finish."
|
85
85
|
msgstr ""
|
86
86
|
|
87
|
-
#: ../lib/puppet/agent.rb:
|
87
|
+
#: ../lib/puppet/agent.rb:75 ../lib/puppet/ssl/state_machine.rb:279 ../lib/puppet/ssl/state_machine.rb:310
|
88
88
|
msgid "Will try again in %{time} seconds."
|
89
89
|
msgstr ""
|
90
90
|
|
91
|
-
#: ../lib/puppet/agent.rb:
|
91
|
+
#: ../lib/puppet/agent.rb:80
|
92
92
|
msgid "Execution of %{client_class} did not complete within %{runtimeout} seconds and was terminated."
|
93
93
|
msgstr ""
|
94
94
|
|
95
|
-
#: ../lib/puppet/agent.rb:
|
95
|
+
#: ../lib/puppet/agent.rb:85
|
96
96
|
msgid "Could not run %{client_class}: %{detail}"
|
97
97
|
msgstr ""
|
98
98
|
|
99
|
-
#: ../lib/puppet/agent.rb:
|
99
|
+
#: ../lib/puppet/agent.rb:92
|
100
100
|
msgid "Shutdown/restart in progress (%{status}); skipping run"
|
101
101
|
msgstr ""
|
102
102
|
|
103
|
-
#: ../lib/puppet/agent.rb:
|
103
|
+
#: ../lib/puppet/agent.rb:110
|
104
104
|
msgid "puppet agent: applying configuration"
|
105
105
|
msgstr ""
|
106
106
|
|
107
|
-
#: ../lib/puppet/agent.rb:
|
107
|
+
#: ../lib/puppet/agent.rb:133
|
108
108
|
msgid "Could not create instance of %{client_class}: %{detail}"
|
109
109
|
msgstr ""
|
110
110
|
|
@@ -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}'"
|
565
551
|
msgstr ""
|
566
552
|
|
567
|
-
|
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}"
|
556
|
+
msgstr ""
|
557
|
+
|
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:427 ../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
|
|
@@ -1762,7 +1711,7 @@ msgstr ""
|
|
1762
1711
|
msgid "No task specified"
|
1763
1712
|
msgstr ""
|
1764
1713
|
|
1765
|
-
#: ../lib/puppet/file_serving/terminus_selector.rb:
|
1714
|
+
#: ../lib/puppet/file_serving/terminus_selector.rb:28
|
1766
1715
|
msgid "URI protocol '%{protocol}' is not currently supported for file serving"
|
1767
1716
|
msgstr ""
|
1768
1717
|
|
@@ -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
|
|
@@ -1818,7 +1767,7 @@ msgstr ""
|
|
1818
1767
|
msgid "unexpected prefix_suffix: %{value}"
|
1819
1768
|
msgstr ""
|
1820
1769
|
|
1821
|
-
#: ../lib/puppet/file_system/uniquefile.rb:
|
1770
|
+
#: ../lib/puppet/file_system/uniquefile.rb:136
|
1822
1771
|
msgid "cannot generate temporary name using `%{basename}' under `%{tmpdir}'"
|
1823
1772
|
msgstr ""
|
1824
1773
|
|
@@ -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:25
|
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:40
|
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:46
|
3963
|
-
msgid "Application %{application} has components without assigned nodes: %{component_list}"
|
3964
|
-
msgstr ""
|
3965
|
-
|
3966
|
-
#: ../lib/puppet/network/http/api/master/v3/environment.rb:55
|
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:56
|
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:14
|
4487
|
-
msgid "Only application components can appear inside a site - %{res} is not allowed"
|
4488
|
-
msgstr ""
|
4489
|
-
|
4490
|
-
#: ../lib/puppet/parser/environment_compiler.rb:12
|
4491
|
-
msgid "%{detail} in environment %{env}"
|
4492
|
-
msgstr ""
|
4493
|
-
|
4494
|
-
#: ../lib/puppet/parser/environment_compiler.rb:59
|
4495
|
-
msgid "For compiling environment catalog %{env}"
|
4496
|
-
msgstr ""
|
4497
|
-
|
4498
|
-
#: ../lib/puppet/parser/environment_compiler.rb:62
|
4499
|
-
msgid "Env Compile: Created settings scope"
|
4500
|
-
msgstr ""
|
4501
|
-
|
4502
|
-
#: ../lib/puppet/parser/environment_compiler.rb:64
|
4503
|
-
msgid "Env Compile: Evaluated main"
|
4504
|
-
msgstr ""
|
4505
|
-
|
4506
|
-
#: ../lib/puppet/parser/environment_compiler.rb:66
|
4507
|
-
msgid "Env Compile: Evaluated site"
|
4508
|
-
msgstr ""
|
4509
|
-
|
4510
|
-
#: ../lib/puppet/parser/environment_compiler.rb:68
|
4511
|
-
msgid "Env Compile: Evaluated application instances"
|
4512
|
-
msgstr ""
|
4513
|
-
|
4514
|
-
#: ../lib/puppet/parser/environment_compiler.rb:70
|
4515
|
-
msgid "Env Compile: Prune"
|
4516
|
-
msgstr ""
|
4517
|
-
|
4518
|
-
#: ../lib/puppet/parser/environment_compiler.rb:72
|
4519
|
-
msgid "Env Compile: Validate Catalog pre-finish"
|
4520
|
-
msgstr ""
|
4521
|
-
|
4522
|
-
#: ../lib/puppet/parser/environment_compiler.rb:76
|
4523
|
-
msgid "Env Compile: Finished catalog"
|
4524
|
-
msgstr ""
|
4525
|
-
|
4526
|
-
#: ../lib/puppet/parser/environment_compiler.rb:80
|
4527
|
-
msgid "Env Compile: Validate Catalog final"
|
4528
|
-
msgstr ""
|
4529
|
-
|
4530
|
-
#: ../lib/puppet/parser/environment_compiler.rb:156
|
4531
|
-
msgid "Environment Compiler: Could not find a site definition to evaluate"
|
4532
|
-
msgstr ""
|
4533
|
-
|
4534
|
-
#: ../lib/puppet/parser/environment_compiler.rb:162
|
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:364
|
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
|
|
@@ -5865,21 +5413,21 @@ msgstr ""
|
|
5865
5413
|
msgid "The code loaded from %{source_ref} did not produce a Function class when evaluated. Got '%{klass}'"
|
5866
5414
|
msgstr ""
|
5867
5415
|
|
5868
|
-
#: ../lib/puppet/pops/loader/ruby_legacy_function_instantiator.rb:
|
5416
|
+
#: ../lib/puppet/pops/loader/ruby_legacy_function_instantiator.rb:23
|
5869
5417
|
msgid "The code loaded from %{source_ref} does not seem to be a Puppet 3x API function - no 'newfunction' call."
|
5870
5418
|
msgstr ""
|
5871
5419
|
|
5872
5420
|
#. TRANSLATORS - the word 'newfunction' should not be translated as it is a method name.
|
5873
|
-
#: ../lib/puppet/pops/loader/ruby_legacy_function_instantiator.rb:
|
5421
|
+
#: ../lib/puppet/pops/loader/ruby_legacy_function_instantiator.rb:45
|
5874
5422
|
msgid "Illegal legacy function definition! The code loaded from %{source_ref} did not return the result of calling 'newfunction'. Got '%{klass}'"
|
5875
5423
|
msgstr ""
|
5876
5424
|
|
5877
|
-
#: ../lib/puppet/pops/loader/ruby_legacy_function_instantiator.rb:
|
5425
|
+
#: ../lib/puppet/pops/loader/ruby_legacy_function_instantiator.rb:48
|
5878
5426
|
msgid "The code loaded from %{source_ref} produced mis-matched name, expected 'function_%{type_name}', got '%{created_name}'"
|
5879
5427
|
msgstr ""
|
5880
5428
|
|
5881
|
-
#: ../lib/puppet/pops/loader/ruby_legacy_function_instantiator.rb:
|
5882
|
-
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"
|
5883
5431
|
msgstr ""
|
5884
5432
|
|
5885
5433
|
#: ../lib/puppet/pops/loader/task_instantiator.rb:22
|
@@ -5914,19 +5462,19 @@ msgstr ""
|
|
5914
5462
|
msgid "Attempt to redefine already initialized loaders for environment"
|
5915
5463
|
msgstr ""
|
5916
5464
|
|
5917
|
-
#: ../lib/puppet/pops/loaders.rb:
|
5465
|
+
#: ../lib/puppet/pops/loaders.rb:177
|
5918
5466
|
msgid "Internal Error: Puppet Context ':loaders' missing"
|
5919
5467
|
msgstr ""
|
5920
5468
|
|
5921
|
-
#: ../lib/puppet/pops/loaders.rb:
|
5469
|
+
#: ../lib/puppet/pops/loaders.rb:191
|
5922
5470
|
msgid "Unable to find loader named '%{loader_name}'"
|
5923
5471
|
msgstr ""
|
5924
5472
|
|
5925
|
-
#: ../lib/puppet/pops/loaders.rb:
|
5473
|
+
#: ../lib/puppet/pops/loaders.rb:212
|
5926
5474
|
msgid "Internal Error: did not find public loader for module: '%{module_name}'"
|
5927
5475
|
msgstr ""
|
5928
5476
|
|
5929
|
-
#: ../lib/puppet/pops/loaders.rb:
|
5477
|
+
#: ../lib/puppet/pops/loaders.rb:258
|
5930
5478
|
msgid "Internal Error: Attempt to redefine loader named '%{name}'"
|
5931
5479
|
msgstr ""
|
5932
5480
|
|
@@ -5945,23 +5493,23 @@ msgstr ""
|
|
5945
5493
|
msgid "Unknown Explain type %{qualifier_type}"
|
5946
5494
|
msgstr ""
|
5947
5495
|
|
5948
|
-
#: ../lib/puppet/pops/lookup/hiera_config.rb:
|
5496
|
+
#: ../lib/puppet/pops/lookup/hiera_config.rb:86
|
5949
5497
|
msgid "Using of legacy data provider function '%{function_name}'. Please convert to a 'data_hash' function"
|
5950
5498
|
msgstr ""
|
5951
5499
|
|
5952
|
-
#: ../lib/puppet/pops/lookup/hiera_config.rb:
|
5500
|
+
#: ../lib/puppet/pops/lookup/hiera_config.rb:143
|
5953
5501
|
msgid "%{config_path}: File exists but does not contain a valid YAML hash. Falling back to Hiera version 3 default config"
|
5954
5502
|
msgstr ""
|
5955
5503
|
|
5956
|
-
#: ../lib/puppet/pops/lookup/hiera_config.rb:
|
5504
|
+
#: ../lib/puppet/pops/lookup/hiera_config.rb:201
|
5957
5505
|
msgid "Hiera configuration recreated due to change of scope variables used in interpolation expressions"
|
5958
5506
|
msgstr ""
|
5959
5507
|
|
5960
|
-
#: ../lib/puppet/pops/lookup/hiera_config.rb:
|
5508
|
+
#: ../lib/puppet/pops/lookup/hiera_config.rb:429
|
5961
5509
|
msgid "%{config_path}: Use of 'hiera.yaml' version 3 is deprecated. It should be converted to version 5"
|
5962
5510
|
msgstr ""
|
5963
5511
|
|
5964
|
-
#: ../lib/puppet/pops/lookup/hiera_config.rb:
|
5512
|
+
#: ../lib/puppet/pops/lookup/hiera_config.rb:529
|
5965
5513
|
msgid "%{config_path}: Use of 'hiera.yaml' version 4 is deprecated. It should be converted to version 5"
|
5966
5514
|
msgstr ""
|
5967
5515
|
|
@@ -6081,19 +5629,19 @@ msgid "Unacceptable transform - found an Object without a rule: %{klass}"
|
|
6081
5629
|
msgstr ""
|
6082
5630
|
|
6083
5631
|
#. TRANSLATORS 'NUMBER' refers to a method name and the 'name_or_numeric' was the passed in value and should not be translated
|
6084
|
-
#: ../lib/puppet/pops/model/factory.rb:
|
5632
|
+
#: ../lib/puppet/pops/model/factory.rb:812
|
6085
5633
|
msgid "Internal Error, NUMBER token does not contain a valid number, %{name_or_numeric}"
|
6086
5634
|
msgstr ""
|
6087
5635
|
|
6088
|
-
#: ../lib/puppet/pops/model/factory.rb:
|
5636
|
+
#: ../lib/puppet/pops/model/factory.rb:1121
|
6089
5637
|
msgid "can only concatenate strings, got %{class_name}"
|
6090
5638
|
msgstr ""
|
6091
5639
|
|
6092
|
-
#: ../lib/puppet/pops/parser/parser_support.rb:
|
5640
|
+
#: ../lib/puppet/pops/parser/parser_support.rb:199
|
6093
5641
|
msgid "attempt to pass argument list to the function '%{name}' which cannot be called without parentheses"
|
6094
5642
|
msgstr ""
|
6095
5643
|
|
6096
|
-
#: ../lib/puppet/pops/parser/parser_support.rb:
|
5644
|
+
#: ../lib/puppet/pops/parser/parser_support.rb:201
|
6097
5645
|
msgid "illegal comma separated argument list"
|
6098
5646
|
msgstr ""
|
6099
5647
|
|
@@ -6133,7 +5681,7 @@ msgstr ""
|
|
6133
5681
|
msgid "digit expected"
|
6134
5682
|
msgstr ""
|
6135
5683
|
|
6136
|
-
#: ../lib/puppet/pops/resource/resource_type_impl.rb:
|
5684
|
+
#: ../lib/puppet/pops/resource/resource_type_impl.rb:165 ../lib/puppet/type.rb:421
|
6137
5685
|
msgid "you must specify title patterns when there are two or more key attributes"
|
6138
5686
|
msgstr ""
|
6139
5687
|
|
@@ -6258,10 +5806,6 @@ msgstr ""
|
|
6258
5806
|
msgid "%{klass} cannot be subtracted from a Timestamp"
|
6259
5807
|
msgstr ""
|
6260
5808
|
|
6261
|
-
#: ../lib/puppet/pops/types/enumeration.rb:7 ../lib/puppet/pops/types/enumeration.rb:12
|
6262
|
-
msgid "Enumeration.enumerator is deprecated. Use Iterable.on instead"
|
6263
|
-
msgstr ""
|
6264
|
-
|
6265
5809
|
#: ../lib/puppet/pops/types/p_binary_type.rb:77
|
6266
5810
|
msgid "The given string in encoding '%{enc}' is invalid. Cannot create a Binary UTF-8 representation"
|
6267
5811
|
msgstr ""
|
@@ -6375,10 +5919,6 @@ msgstr ""
|
|
6375
5919
|
msgid "Options 'include_containers' and 'include_values' cannot both be false"
|
6376
5920
|
msgstr ""
|
6377
5921
|
|
6378
|
-
#: ../lib/puppet/pops/types/type_calculator.rb:187
|
6379
|
-
msgid "TypeCalculator.enumerable is deprecated. Use iterable"
|
6380
|
-
msgstr ""
|
6381
|
-
|
6382
5922
|
#. TRANSLATORS 'TypeFactory#string' is a class and method name and should not be translated
|
6383
5923
|
#: ../lib/puppet/pops/types/type_factory.rb:117
|
6384
5924
|
msgid "Passing more than one argument to TypeFactory#string is deprecated"
|
@@ -6393,85 +5933,85 @@ msgstr ""
|
|
6393
5933
|
msgid "Everything is now reported using present tense"
|
6394
5934
|
msgstr ""
|
6395
5935
|
|
6396
|
-
#: ../lib/puppet/pops/types/type_parser.rb:
|
5936
|
+
#: ../lib/puppet/pops/types/type_parser.rb:425
|
6397
5937
|
msgid "Enum parameters must be identifiers or strings"
|
6398
5938
|
msgstr ""
|
6399
5939
|
|
6400
|
-
#: ../lib/puppet/pops/types/type_parser.rb:
|
5940
|
+
#: ../lib/puppet/pops/types/type_parser.rb:661
|
6401
5941
|
msgid "The expression <%{expression}> is not a valid type specification."
|
6402
5942
|
msgstr ""
|
6403
5943
|
|
6404
|
-
#: ../lib/puppet/pops/types/type_parser.rb:
|
5944
|
+
#: ../lib/puppet/pops/types/type_parser.rb:666
|
6405
5945
|
msgid "Invalid number of type parameters specified: %{type} requires %{required}, %{given} provided"
|
6406
5946
|
msgstr ""
|
6407
5947
|
|
6408
|
-
#: ../lib/puppet/pops/types/type_parser.rb:
|
5948
|
+
#: ../lib/puppet/pops/types/type_parser.rb:671
|
6409
5949
|
msgid "Not a parameterized type <%{type}>"
|
6410
5950
|
msgstr ""
|
6411
5951
|
|
6412
|
-
#: ../lib/puppet/pops/types/type_parser.rb:
|
5952
|
+
#: ../lib/puppet/pops/types/type_parser.rb:675
|
6413
5953
|
msgid "Unknown type <%{type}>"
|
6414
5954
|
msgstr ""
|
6415
5955
|
|
6416
|
-
#: ../lib/puppet/pops/types/types.rb:
|
5956
|
+
#: ../lib/puppet/pops/types/types.rb:929
|
6417
5957
|
msgid "The string '%{str}' cannot be converted to Numeric"
|
6418
5958
|
msgstr ""
|
6419
5959
|
|
6420
|
-
#: ../lib/puppet/pops/types/types.rb:
|
5960
|
+
#: ../lib/puppet/pops/types/types.rb:932
|
6421
5961
|
msgid "Value of type %{type} cannot be converted to Numeric"
|
6422
5962
|
msgstr ""
|
6423
5963
|
|
6424
|
-
#: ../lib/puppet/pops/types/types.rb:
|
5964
|
+
#: ../lib/puppet/pops/types/types.rb:1170
|
6425
5965
|
msgid "The string '%{str}' cannot be converted to Integer"
|
6426
5966
|
msgstr ""
|
6427
5967
|
|
6428
|
-
#: ../lib/puppet/pops/types/types.rb:
|
5968
|
+
#: ../lib/puppet/pops/types/types.rb:1173
|
6429
5969
|
msgid "Value of type %{type} cannot be converted to Integer"
|
6430
5970
|
msgstr ""
|
6431
5971
|
|
6432
|
-
#: ../lib/puppet/pops/types/types.rb:
|
5972
|
+
#: ../lib/puppet/pops/types/types.rb:1181
|
6433
5973
|
msgid "Illegal radix: %{radix}, expected 2, 8, 10, 16, or default"
|
6434
5974
|
msgstr ""
|
6435
5975
|
|
6436
|
-
#: ../lib/puppet/pops/types/types.rb:
|
5976
|
+
#: ../lib/puppet/pops/types/types.rb:1294
|
6437
5977
|
msgid "The string '%{str}' cannot be converted to Float"
|
6438
5978
|
msgstr ""
|
6439
5979
|
|
6440
|
-
#: ../lib/puppet/pops/types/types.rb:
|
5980
|
+
#: ../lib/puppet/pops/types/types.rb:1297
|
6441
5981
|
msgid "Value of type %{type} cannot be converted to Float"
|
6442
5982
|
msgstr ""
|
6443
5983
|
|
6444
5984
|
#. TRANSLATORS 'PStringType#initialize' is a class and method name and should not be translated
|
6445
|
-
#: ../lib/puppet/pops/types/types.rb:
|
5985
|
+
#: ../lib/puppet/pops/types/types.rb:1514
|
6446
5986
|
msgid "Passing more than one argument to PStringType#initialize is deprecated"
|
6447
5987
|
msgstr ""
|
6448
5988
|
|
6449
5989
|
#. TRANSLATORS 'PStringType#values' and '#value' are classes and method names and should not be translated
|
6450
|
-
#: ../lib/puppet/pops/types/types.rb:
|
5990
|
+
#: ../lib/puppet/pops/types/types.rb:1568
|
6451
5991
|
msgid "Method PStringType#values is deprecated. Use #value instead"
|
6452
5992
|
msgstr ""
|
6453
5993
|
|
6454
|
-
#: ../lib/puppet/pops/types/types.rb:
|
5994
|
+
#: ../lib/puppet/pops/types/types.rb:1894
|
6455
5995
|
msgid "The string '%{str}' cannot be converted to Boolean"
|
6456
5996
|
msgstr ""
|
6457
5997
|
|
6458
|
-
#: ../lib/puppet/pops/types/types.rb:
|
5998
|
+
#: ../lib/puppet/pops/types/types.rb:1897
|
6459
5999
|
msgid "Value of type %{type} cannot be converted to Boolean"
|
6460
6000
|
msgstr ""
|
6461
6001
|
|
6462
|
-
#: ../lib/puppet/pops/types/types.rb:
|
6002
|
+
#: ../lib/puppet/pops/types/types.rb:2625
|
6463
6003
|
msgid "Value of type %{type} cannot be converted to Array"
|
6464
6004
|
msgstr ""
|
6465
6005
|
|
6466
|
-
#: ../lib/puppet/pops/types/types.rb:
|
6006
|
+
#: ../lib/puppet/pops/types/types.rb:2695
|
6467
6007
|
msgid "Puppet::Pops::Types::PHashType#element_type is deprecated, use #value_type instead"
|
6468
6008
|
msgstr ""
|
6469
6009
|
|
6470
|
-
#: ../lib/puppet/pops/types/types.rb:
|
6010
|
+
#: ../lib/puppet/pops/types/types.rb:2832
|
6471
6011
|
msgid "odd number of arguments for Hash"
|
6472
6012
|
msgstr ""
|
6473
6013
|
|
6474
|
-
#: ../lib/puppet/pops/types/types.rb:
|
6014
|
+
#: ../lib/puppet/pops/types/types.rb:2843
|
6475
6015
|
msgid "Value of type %{type} cannot be converted to Hash"
|
6476
6016
|
msgstr ""
|
6477
6017
|
|
@@ -6550,19 +6090,19 @@ msgstr ""
|
|
6550
6090
|
msgid "Key/value pairs must be separated by '%{separator}'"
|
6551
6091
|
msgstr ""
|
6552
6092
|
|
6553
|
-
#: ../lib/puppet/provider.rb:
|
6093
|
+
#: ../lib/puppet/provider.rb:132
|
6554
6094
|
msgid "No command %{command} defined for provider %{provider}"
|
6555
6095
|
msgstr ""
|
6556
6096
|
|
6557
|
-
#: ../lib/puppet/provider.rb:
|
6097
|
+
#: ../lib/puppet/provider.rb:384
|
6558
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"
|
6559
6099
|
msgstr ""
|
6560
6100
|
|
6561
|
-
#: ../lib/puppet/provider.rb:
|
6101
|
+
#: ../lib/puppet/provider.rb:457
|
6562
6102
|
msgid "'%{parameter_name}' is not a valid parameter for %{resource_type}"
|
6563
6103
|
msgstr ""
|
6564
6104
|
|
6565
|
-
#: ../lib/puppet/provider.rb:
|
6105
|
+
#: ../lib/puppet/provider.rb:543
|
6566
6106
|
msgid "No resource and no name in property hash in %{class_name} instance"
|
6567
6107
|
msgstr ""
|
6568
6108
|
|
@@ -6590,11 +6130,11 @@ msgstr ""
|
|
6590
6130
|
msgid "aix.object_info(): Could not find %{resource}[%{name}]"
|
6591
6131
|
msgstr ""
|
6592
6132
|
|
6593
|
-
#: ../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
|
6594
6134
|
msgid "Could not create %{resource} %{name}: %{detail}"
|
6595
6135
|
msgstr ""
|
6596
6136
|
|
6597
|
-
#: ../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
|
6598
6138
|
msgid "Could not delete %{resource} %{name}: %{detail}"
|
6599
6139
|
msgstr ""
|
6600
6140
|
|
@@ -6683,32 +6223,28 @@ msgstr ""
|
|
6683
6223
|
msgid "%{name} is not a valid attribute for %{resource_type}"
|
6684
6224
|
msgstr ""
|
6685
6225
|
|
6686
|
-
#: ../lib/puppet/provider/nameservice.rb:
|
6687
|
-
msgid "listbyname is deprecated and will be removed in a future release of Puppet. Please use `self.instances` to obtain a list of users."
|
6688
|
-
msgstr ""
|
6689
|
-
|
6690
|
-
#: ../lib/puppet/provider/nameservice.rb:103
|
6226
|
+
#: ../lib/puppet/provider/nameservice.rb:85
|
6691
6227
|
msgid "Invalid value %{value}: %{error}"
|
6692
6228
|
msgstr ""
|
6693
6229
|
|
6694
6230
|
#. TRANSLATORS "autogen_id()" is a method name and should not be translated
|
6695
|
-
#: ../lib/puppet/provider/nameservice.rb:
|
6231
|
+
#: ../lib/puppet/provider/nameservice.rb:130
|
6696
6232
|
msgid "autogen_id() does not support auto generation of id for resource type %{resource_type}"
|
6697
6233
|
msgstr ""
|
6698
6234
|
|
6699
|
-
#: ../lib/puppet/provider/nameservice.rb:
|
6235
|
+
#: ../lib/puppet/provider/nameservice.rb:152 ../lib/puppet/provider/nameservice/directoryservice.rb:379
|
6700
6236
|
msgid "already exists"
|
6701
6237
|
msgstr ""
|
6702
6238
|
|
6703
|
-
#: ../lib/puppet/provider/nameservice.rb:
|
6239
|
+
#: ../lib/puppet/provider/nameservice.rb:170
|
6704
6240
|
msgid "already absent"
|
6705
6241
|
msgstr ""
|
6706
6242
|
|
6707
|
-
#: ../lib/puppet/provider/nameservice.rb:
|
6243
|
+
#: ../lib/puppet/provider/nameservice.rb:264
|
6708
6244
|
msgid "Nameservice command must be an array"
|
6709
6245
|
msgstr ""
|
6710
6246
|
|
6711
|
-
#: ../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
|
6712
6248
|
msgid "Could not set %{param} on %{resource}[%{name}]: %{detail}"
|
6713
6249
|
msgstr ""
|
6714
6250
|
|
@@ -6774,7 +6310,7 @@ msgstr ""
|
|
6774
6310
|
msgid "Could not list installed Packages: %{detail}"
|
6775
6311
|
msgstr ""
|
6776
6312
|
|
6777
|
-
#: ../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
|
6778
6314
|
msgid "Tried to get latest on a missing package"
|
6779
6315
|
msgstr ""
|
6780
6316
|
|
@@ -6790,19 +6326,19 @@ msgstr ""
|
|
6790
6326
|
msgid "Mac OS X packages must specify a package source"
|
6791
6327
|
msgstr ""
|
6792
6328
|
|
6793
|
-
#: ../lib/puppet/provider/package/apt.rb:
|
6329
|
+
#: ../lib/puppet/provider/package/apt.rb:81
|
6794
6330
|
msgid "/etc/apt/sources.list contains a cdrom source; not installing. Use 'allowcdrom' to override this failure."
|
6795
6331
|
msgstr ""
|
6796
6332
|
|
6797
|
-
#: ../lib/puppet/provider/package/apt.rb:
|
6333
|
+
#: ../lib/puppet/provider/package/apt.rb:163 ../lib/puppet/provider/package/fink.rb:55
|
6798
6334
|
msgid "Could not find latest version"
|
6799
6335
|
msgstr ""
|
6800
6336
|
|
6801
|
-
#: ../lib/puppet/provider/package/apt.rb:
|
6337
|
+
#: ../lib/puppet/provider/package/apt.rb:174 ../lib/puppet/provider/package/fink.rb:66
|
6802
6338
|
msgid "Preseeding %{response} to debconf-set-selections"
|
6803
6339
|
msgstr ""
|
6804
6340
|
|
6805
|
-
#: ../lib/puppet/provider/package/apt.rb:
|
6341
|
+
#: ../lib/puppet/provider/package/apt.rb:178 ../lib/puppet/provider/package/fink.rb:70
|
6806
6342
|
msgid "No responsefile specified or non existent, not preseeding anything"
|
6807
6343
|
msgstr ""
|
6808
6344
|
|
@@ -6854,27 +6390,27 @@ msgstr ""
|
|
6854
6390
|
msgid "source is defined but does not have trailing slash, ignoring %{source}"
|
6855
6391
|
msgstr ""
|
6856
6392
|
|
6857
|
-
#: ../lib/puppet/provider/package/gem.rb:
|
6393
|
+
#: ../lib/puppet/provider/package/gem.rb:122 ../lib/puppet/provider/package/puppetserver_gem.rb:61
|
6858
6394
|
msgid "Could not list gems: %{detail}"
|
6859
6395
|
msgstr ""
|
6860
6396
|
|
6861
|
-
#: ../lib/puppet/provider/package/gem.rb:
|
6397
|
+
#: ../lib/puppet/provider/package/gem.rb:148
|
6862
6398
|
msgid "Could not match %{desc}"
|
6863
6399
|
msgstr ""
|
6864
6400
|
|
6865
|
-
#: ../lib/puppet/provider/package/gem.rb:
|
6401
|
+
#: ../lib/puppet/provider/package/gem.rb:226 ../lib/puppet/provider/package/puppetserver_gem.rb:93
|
6866
6402
|
msgid "Invalid source '%{uri}': %{detail}"
|
6867
6403
|
msgstr ""
|
6868
6404
|
|
6869
|
-
#: ../lib/puppet/provider/package/gem.rb:
|
6405
|
+
#: ../lib/puppet/provider/package/gem.rb:237 ../lib/puppet/provider/package/puppetserver_gem.rb:104
|
6870
6406
|
msgid "puppet:// URLs are not supported as gem sources"
|
6871
6407
|
msgstr ""
|
6872
6408
|
|
6873
|
-
#: ../lib/puppet/provider/package/gem.rb:
|
6409
|
+
#: ../lib/puppet/provider/package/gem.rb:253 ../lib/puppet/provider/package/puppetserver_gem.rb:115
|
6874
6410
|
msgid "Could not install: %{output}"
|
6875
6411
|
msgstr ""
|
6876
6412
|
|
6877
|
-
#: ../lib/puppet/provider/package/gem.rb:
|
6413
|
+
#: ../lib/puppet/provider/package/gem.rb:279 ../lib/puppet/provider/package/puppetserver_gem.rb:125
|
6878
6414
|
msgid "Could not uninstall: %{output}"
|
6879
6415
|
msgstr ""
|
6880
6416
|
|
@@ -6984,7 +6520,7 @@ msgstr ""
|
|
6984
6520
|
msgid "Refusing to install package group %{resource_name}, because allow_virtual is false."
|
6985
6521
|
msgstr ""
|
6986
6522
|
|
6987
|
-
#: ../lib/puppet/provider/package/pip.rb:
|
6523
|
+
#: ../lib/puppet/provider/package/pip.rb:57
|
6988
6524
|
msgid "Cannot resolve pip version"
|
6989
6525
|
msgstr ""
|
6990
6526
|
|
@@ -7000,27 +6536,27 @@ msgstr ""
|
|
7000
6536
|
msgid "Unknown line format %{resource_name}: %{parse_line}"
|
7001
6537
|
msgstr ""
|
7002
6538
|
|
7003
|
-
#: ../lib/puppet/provider/package/pkg.rb:
|
6539
|
+
#: ../lib/puppet/provider/package/pkg.rb:123
|
7004
6540
|
msgid "Unable to unfreeze %{package}"
|
7005
6541
|
msgstr ""
|
7006
6542
|
|
7007
|
-
#: ../lib/puppet/provider/package/pkg.rb:
|
6543
|
+
#: ../lib/puppet/provider/package/pkg.rb:158
|
7008
6544
|
msgid "Implicit version %{should} has %{n} possible matches"
|
7009
6545
|
msgstr ""
|
7010
6546
|
|
7011
|
-
#: ../lib/puppet/provider/package/pkg.rb:
|
6547
|
+
#: ../lib/puppet/provider/package/pkg.rb:170
|
7012
6548
|
msgid "Selecting version '%{version}' for implicit '%{should}'"
|
7013
6549
|
msgstr ""
|
7014
6550
|
|
7015
|
-
#: ../lib/puppet/provider/package/pkg.rb:
|
6551
|
+
#: ../lib/puppet/provider/package/pkg.rb:175
|
7016
6552
|
msgid "No version of %{name} matching %{should} is installable, even though the package is currently installed"
|
7017
6553
|
msgstr ""
|
7018
6554
|
|
7019
|
-
#: ../lib/puppet/provider/package/pkg.rb:
|
6555
|
+
#: ../lib/puppet/provider/package/pkg.rb:194
|
7020
6556
|
msgid "pkg warning: %{warnings}"
|
7021
6557
|
msgstr ""
|
7022
6558
|
|
7023
|
-
#: ../lib/puppet/provider/package/pkg.rb:
|
6559
|
+
#: ../lib/puppet/provider/package/pkg.rb:238 ../lib/puppet/provider/package/pkg.rb:264
|
7024
6560
|
msgid "Unable to update %{package}"
|
7025
6561
|
msgstr ""
|
7026
6562
|
|
@@ -7207,47 +6743,47 @@ msgstr ""
|
|
7207
6743
|
msgid "Waiting 5 seconds for runsvdir to discover service %{service}"
|
7208
6744
|
msgstr ""
|
7209
6745
|
|
7210
|
-
#: ../lib/puppet/provider/service/smf.rb:
|
6746
|
+
#: ../lib/puppet/provider/service/smf.rb:120
|
7211
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}"
|
7212
6748
|
msgstr ""
|
7213
6749
|
|
7214
|
-
#: ../lib/puppet/provider/service/smf.rb:
|
6750
|
+
#: ../lib/puppet/provider/service/smf.rb:135
|
7215
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."
|
7216
6752
|
msgstr ""
|
7217
6753
|
|
7218
|
-
#: ../lib/puppet/provider/service/smf.rb:
|
6754
|
+
#: ../lib/puppet/provider/service/smf.rb:221
|
7219
6755
|
msgid "The %{service} service is incomplete so its status will be reported as :stopped. See `svcs -xv %{fmri}` for more details."
|
7220
6756
|
msgstr ""
|
7221
6757
|
|
7222
|
-
#: ../lib/puppet/provider/service/windows.rb:
|
6758
|
+
#: ../lib/puppet/provider/service/windows.rb:22
|
7223
6759
|
msgid "Cannot enable %{resource_name}, error was: %{detail}"
|
7224
6760
|
msgstr ""
|
7225
6761
|
|
7226
|
-
#: ../lib/puppet/provider/service/windows.rb:
|
6762
|
+
#: ../lib/puppet/provider/service/windows.rb:28
|
7227
6763
|
msgid "Cannot disable %{resource_name}, error was: %{detail}"
|
7228
6764
|
msgstr ""
|
7229
6765
|
|
7230
|
-
#: ../lib/puppet/provider/service/windows.rb:
|
6766
|
+
#: ../lib/puppet/provider/service/windows.rb:34
|
7231
6767
|
msgid "Cannot enable %{resource_name} for manual start, error was: %{detail}"
|
7232
6768
|
msgstr ""
|
7233
6769
|
|
7234
|
-
#: ../lib/puppet/provider/service/windows.rb:
|
6770
|
+
#: ../lib/puppet/provider/service/windows.rb:40
|
7235
6771
|
msgid "Cannot enable %{resource_name} for delayed start, error was: %{detail}"
|
7236
6772
|
msgstr ""
|
7237
6773
|
|
7238
|
-
#: ../lib/puppet/provider/service/windows.rb:
|
6774
|
+
#: ../lib/puppet/provider/service/windows.rb:60
|
7239
6775
|
msgid "Unknown start type: %{start_type}"
|
7240
6776
|
msgstr ""
|
7241
6777
|
|
7242
|
-
#: ../lib/puppet/provider/service/windows.rb:
|
6778
|
+
#: ../lib/puppet/provider/service/windows.rb:63
|
7243
6779
|
msgid "Cannot get start type %{resource_name}, error was: %{detail}"
|
7244
6780
|
msgstr ""
|
7245
6781
|
|
7246
|
-
#: ../lib/puppet/provider/service/windows.rb:
|
6782
|
+
#: ../lib/puppet/provider/service/windows.rb:77
|
7247
6783
|
msgid "Will not start disabled service %{resource_name} without managing enable. Specify 'enable => false' to override."
|
7248
6784
|
msgstr ""
|
7249
6785
|
|
7250
|
-
#: ../lib/puppet/provider/service/windows.rb:
|
6786
|
+
#: ../lib/puppet/provider/service/windows.rb:109
|
7251
6787
|
msgid "Unknown service state '%{current_state}' for service '%{resource_name}'"
|
7252
6788
|
msgstr ""
|
7253
6789
|
|
@@ -7269,15 +6805,15 @@ msgstr ""
|
|
7269
6805
|
msgid "ruby-shadow doesn't support %{method}"
|
7270
6806
|
msgstr ""
|
7271
6807
|
|
7272
|
-
#: ../lib/puppet/provider/user/windows_adsi.rb:
|
6808
|
+
#: ../lib/puppet/provider/user/windows_adsi.rb:145
|
7273
6809
|
msgid "The user account '%s' is disabled; The password will still be changed"
|
7274
6810
|
msgstr ""
|
7275
6811
|
|
7276
|
-
#: ../lib/puppet/provider/user/windows_adsi.rb:
|
6812
|
+
#: ../lib/puppet/provider/user/windows_adsi.rb:147
|
7277
6813
|
msgid "The user account '%s' is locked out; The password will still be changed"
|
7278
6814
|
msgstr ""
|
7279
6815
|
|
7280
|
-
#: ../lib/puppet/provider/user/windows_adsi.rb:
|
6816
|
+
#: ../lib/puppet/provider/user/windows_adsi.rb:149
|
7281
6817
|
msgid "The user account '%s' is expired; The password will still be changed"
|
7282
6818
|
msgstr ""
|
7283
6819
|
|
@@ -7332,7 +6868,7 @@ msgstr ""
|
|
7332
6868
|
msgid "You must pass a callback for non-NONE events"
|
7333
6869
|
msgstr ""
|
7334
6870
|
|
7335
|
-
#: ../lib/puppet/reports/http.rb:
|
6871
|
+
#: ../lib/puppet/reports/http.rb:40
|
7336
6872
|
msgid "Unable to submit report to %{url} [%{code}] %{message}"
|
7337
6873
|
msgstr ""
|
7338
6874
|
|
@@ -7340,142 +6876,90 @@ msgstr ""
|
|
7340
6876
|
msgid "Invalid node name %{host}"
|
7341
6877
|
msgstr ""
|
7342
6878
|
|
7343
|
-
#: ../lib/puppet/resource.rb:
|
6879
|
+
#: ../lib/puppet/resource.rb:47
|
7344
6880
|
msgid "No resource type provided in serialized data"
|
7345
6881
|
msgstr ""
|
7346
6882
|
|
7347
|
-
#: ../lib/puppet/resource.rb:
|
6883
|
+
#: ../lib/puppet/resource.rb:49
|
7348
6884
|
msgid "No resource title provided in serialized data"
|
7349
6885
|
msgstr ""
|
7350
6886
|
|
7351
6887
|
#. TRANSLATORS 'Puppet::Resource.new' should not be translated
|
7352
|
-
#: ../lib/puppet/resource.rb:
|
6888
|
+
#: ../lib/puppet/resource.rb:276
|
7353
6889
|
msgid "Puppet::Resource.new does not take a hash as the first argument."
|
7354
6890
|
msgstr ""
|
7355
6891
|
|
7356
|
-
#: ../lib/puppet/resource.rb:
|
6892
|
+
#: ../lib/puppet/resource.rb:277
|
7357
6893
|
msgid "Did you mean (%{type}, %{title}) ?"
|
7358
6894
|
msgstr ""
|
7359
6895
|
|
7360
|
-
#: ../lib/puppet/resource.rb:
|
6896
|
+
#: ../lib/puppet/resource.rb:314
|
7361
6897
|
msgid "Could not find declared class %{title}"
|
7362
6898
|
msgstr ""
|
7363
6899
|
|
7364
|
-
#: ../lib/puppet/resource.rb:
|
6900
|
+
#: ../lib/puppet/resource.rb:316
|
7365
6901
|
msgid "Invalid resource type %{type}"
|
7366
6902
|
msgstr ""
|
7367
6903
|
|
7368
|
-
#: ../lib/puppet/resource.rb:
|
7369
|
-
msgid "The method Puppet::Resource.set_default_parameters is deprecated and will be removed in the next major release of Puppet."
|
7370
|
-
msgstr ""
|
7371
|
-
|
7372
|
-
#: ../lib/puppet/resource.rb:526
|
7373
|
-
msgid "Cannot evaluate default parameters for %{resource} - not a parser resource"
|
7374
|
-
msgstr ""
|
7375
|
-
|
7376
|
-
#: ../lib/puppet/resource.rb:566
|
7377
|
-
msgid "The method Puppet::Resource.validate_complete is deprecated and will be removed in the next major release of Puppet."
|
7378
|
-
msgstr ""
|
7379
|
-
|
7380
|
-
#: ../lib/puppet/resource.rb:572
|
7381
|
-
msgid "Must pass %{param} to %{resource}"
|
7382
|
-
msgstr ""
|
7383
|
-
|
7384
|
-
#: ../lib/puppet/resource.rb:584
|
7385
|
-
msgid "Expected parameter '%{name}' of '%{value0}' to have type %{value1}, got %{value2}"
|
7386
|
-
msgstr ""
|
7387
|
-
|
7388
|
-
#: ../lib/puppet/resource.rb:590
|
6904
|
+
#: ../lib/puppet/resource.rb:502
|
7389
6905
|
msgid "no parameter named '%{name}'"
|
7390
6906
|
msgstr ""
|
7391
6907
|
|
7392
|
-
#: ../lib/puppet/resource.rb:
|
6908
|
+
#: ../lib/puppet/resource.rb:547
|
7393
6909
|
msgid "No title provided and %{type} is not a valid resource reference"
|
7394
6910
|
msgstr ""
|
7395
6911
|
|
7396
|
-
#: ../lib/puppet/resource.rb:
|
6912
|
+
#: ../lib/puppet/resource.rb:621
|
7397
6913
|
msgid "No set of title patterns matched the title \"%{title}\"."
|
7398
6914
|
msgstr ""
|
7399
6915
|
|
7400
|
-
#: ../lib/puppet/resource/
|
7401
|
-
msgid "PuppetDB is not available"
|
7402
|
-
msgstr ""
|
7403
|
-
|
7404
|
-
#: ../lib/puppet/resource/capability_finder.rb:47
|
7405
|
-
msgid "Unexpected response from PuppetDB when looking up %{capability}:"
|
7406
|
-
msgstr ""
|
7407
|
-
|
7408
|
-
#: ../lib/puppet/resource/capability_finder.rb:48
|
7409
|
-
msgid "expected exactly one resource but got %{count};"
|
7410
|
-
msgstr ""
|
7411
|
-
|
7412
|
-
#: ../lib/puppet/resource/capability_finder.rb:49
|
7413
|
-
msgid ""
|
7414
|
-
"returned data is:\n"
|
7415
|
-
"%{resources}"
|
7416
|
-
msgstr ""
|
7417
|
-
|
7418
|
-
#: ../lib/puppet/resource/capability_finder.rb:81
|
7419
|
-
msgid "Looking up capability %{capability} in PuppetDB: %{query_terms}"
|
7420
|
-
msgstr ""
|
7421
|
-
|
7422
|
-
#: ../lib/puppet/resource/capability_finder.rb:105
|
7423
|
-
msgid "Unexpected response from PuppetDB when looking up %{capability}: expected an Array but got %{result}"
|
7424
|
-
msgstr ""
|
7425
|
-
|
7426
|
-
#: ../lib/puppet/resource/capability_finder.rb:112
|
7427
|
-
msgid ""
|
7428
|
-
"Invalid JSON from PuppetDB when looking up %{capability}\n"
|
7429
|
-
"%{detail}"
|
7430
|
-
msgstr ""
|
7431
|
-
|
7432
|
-
#: ../lib/puppet/resource/catalog.rb:104
|
6916
|
+
#: ../lib/puppet/resource/catalog.rb:102
|
7433
6917
|
msgid "Cannot add resource %{resource_1} before %{resource_2} because %{resource_2} is not yet in the catalog"
|
7434
6918
|
msgstr ""
|
7435
6919
|
|
7436
|
-
#: ../lib/puppet/resource/catalog.rb:
|
6920
|
+
#: ../lib/puppet/resource/catalog.rb:117
|
7437
6921
|
msgid "Cannot add resource %{resource_1} after %{resource_2} because %{resource_2} is not yet in the catalog"
|
7438
6922
|
msgstr ""
|
7439
6923
|
|
7440
6924
|
#. TRANSLATORS 'alias' should not be translated
|
7441
|
-
#: ../lib/puppet/resource/catalog.rb:
|
6925
|
+
#: ../lib/puppet/resource/catalog.rb:204
|
7442
6926
|
msgid "Cannot alias %{resource} to %{key}; resource %{newref} already declared"
|
7443
6927
|
msgstr ""
|
7444
6928
|
|
7445
6929
|
#. TRANSLATORS 'alias' should not be translated
|
7446
|
-
#: ../lib/puppet/resource/catalog.rb:
|
6930
|
+
#: ../lib/puppet/resource/catalog.rb:208
|
7447
6931
|
msgid "Cannot alias %{resource} to %{key} at %{resource_declaration}; resource %{newref} already declared"
|
7448
6932
|
msgstr ""
|
7449
6933
|
|
7450
|
-
#: ../lib/puppet/resource/catalog.rb:
|
6934
|
+
#: ../lib/puppet/resource/catalog.rb:290
|
7451
6935
|
msgid "Unknown resource type %{type}"
|
7452
6936
|
msgstr ""
|
7453
6937
|
|
7454
|
-
#: ../lib/puppet/resource/catalog.rb:
|
6938
|
+
#: ../lib/puppet/resource/catalog.rb:433
|
7455
6939
|
msgid "Could not intern from data: Could not find relationship source %{source} for %{target}"
|
7456
6940
|
msgstr ""
|
7457
6941
|
|
7458
|
-
#: ../lib/puppet/resource/catalog.rb:
|
6942
|
+
#: ../lib/puppet/resource/catalog.rb:440
|
7459
6943
|
msgid "Could not intern from data: Could not find relationship target %{target} for %{source}"
|
7460
6944
|
msgstr ""
|
7461
6945
|
|
7462
|
-
#: ../lib/puppet/resource/catalog.rb:
|
6946
|
+
#: ../lib/puppet/resource/catalog.rb:530
|
7463
6947
|
msgid "Could not create class file %{file}: %{detail}"
|
7464
6948
|
msgstr ""
|
7465
6949
|
|
7466
|
-
#: ../lib/puppet/resource/catalog.rb:
|
6950
|
+
#: ../lib/puppet/resource/catalog.rb:546
|
7467
6951
|
msgid "Could not create resource file %{file}: %{detail}"
|
7468
6952
|
msgstr ""
|
7469
6953
|
|
7470
|
-
#: ../lib/puppet/resource/catalog.rb:
|
6954
|
+
#: ../lib/puppet/resource/catalog.rb:581
|
7471
6955
|
msgid "Duplicate declaration: %{resource} is already declared; cannot redeclare"
|
7472
6956
|
msgstr ""
|
7473
6957
|
|
7474
|
-
#: ../lib/puppet/resource/catalog.rb:
|
6958
|
+
#: ../lib/puppet/resource/catalog.rb:583
|
7475
6959
|
msgid "Duplicate declaration: %{resource} is already declared at %{error_location}; cannot redeclare"
|
7476
6960
|
msgstr ""
|
7477
6961
|
|
7478
|
-
#: ../lib/puppet/resource/catalog.rb:
|
6962
|
+
#: ../lib/puppet/resource/catalog.rb:632 ../lib/puppet/resource/catalog.rb:637
|
7479
6963
|
msgid "Could not find resource %{resource} when converting %{message} resources"
|
7480
6964
|
msgstr ""
|
7481
6965
|
|
@@ -7483,201 +6967,145 @@ msgstr ""
|
|
7483
6967
|
msgid "Could not evaluate: %{detail}"
|
7484
6968
|
msgstr ""
|
7485
6969
|
|
7486
|
-
#: ../lib/puppet/resource/type.rb:
|
7487
|
-
msgid "Invalid export in %{reference}: %{ex} is not a resource"
|
7488
|
-
msgstr ""
|
7489
|
-
|
7490
|
-
#: ../lib/puppet/resource/type.rb:79
|
7491
|
-
msgid "Invalid export in %{reference}: %{ex} is not a capability resource"
|
7492
|
-
msgstr ""
|
7493
|
-
|
7494
|
-
#: ../lib/puppet/resource/type.rb:83
|
7495
|
-
msgid "Resource type %{res_type} does not produce %{ex_type}"
|
7496
|
-
msgstr ""
|
7497
|
-
|
7498
|
-
#: ../lib/puppet/resource/type.rb:144
|
6970
|
+
#: ../lib/puppet/resource/type.rb:87
|
7499
6971
|
msgid "Invalid resource supertype '%{type}'"
|
7500
6972
|
msgstr ""
|
7501
6973
|
|
7502
|
-
#: ../lib/puppet/resource/type.rb:
|
6974
|
+
#: ../lib/puppet/resource/type.rb:117
|
7503
6975
|
msgid "%{name} is not a class; cannot add code to it"
|
7504
6976
|
msgstr ""
|
7505
6977
|
|
7506
|
-
#: ../lib/puppet/resource/type.rb:
|
6978
|
+
#: ../lib/puppet/resource/type.rb:118
|
7507
6979
|
msgid "%{name} is not a class; cannot add code from it"
|
7508
6980
|
msgstr ""
|
7509
6981
|
|
7510
|
-
#: ../lib/puppet/resource/type.rb:
|
6982
|
+
#: ../lib/puppet/resource/type.rb:122
|
7511
6983
|
msgid "Cannot have code outside of a class/node/define because 'freeze_main' is enabled"
|
7512
6984
|
msgstr ""
|
7513
6985
|
|
7514
|
-
#: ../lib/puppet/resource/type.rb:
|
6986
|
+
#: ../lib/puppet/resource/type.rb:126
|
7515
6987
|
msgid "Cannot merge classes with different parent classes (%{name} => %{parent} vs. %{other_name} => %{other_parent})"
|
7516
6988
|
msgstr ""
|
7517
6989
|
|
7518
|
-
#: ../lib/puppet/resource/type.rb:
|
6990
|
+
#: ../lib/puppet/resource/type.rb:157
|
7519
6991
|
msgid "Cannot create resources for defined resource types"
|
7520
6992
|
msgstr ""
|
7521
6993
|
|
7522
|
-
#: ../lib/puppet/resource/type.rb:
|
7523
|
-
msgid "The method Puppet::Resource::Type.assign_parameter_values is deprecated and will be removed in the next major release of Puppet."
|
7524
|
-
msgstr ""
|
7525
|
-
|
7526
|
-
#: ../lib/puppet/resource/type.rb:302
|
6994
|
+
#: ../lib/puppet/resource/type.rb:210
|
7527
6995
|
msgid "Could not find parent resource type '%{parent}' of type %{parent_type} in %{env}"
|
7528
6996
|
msgstr ""
|
7529
6997
|
|
7530
|
-
#: ../lib/puppet/resource/type.rb:
|
6998
|
+
#: ../lib/puppet/resource/type.rb:336
|
7531
6999
|
msgid "Parameter '%{name}' is given a type, but is not a valid parameter."
|
7532
7000
|
msgstr ""
|
7533
7001
|
|
7534
|
-
#: ../lib/puppet/resource/type.rb:
|
7002
|
+
#: ../lib/puppet/resource/type.rb:339
|
7535
7003
|
msgid "Parameter '%{name}' is given a type that is not a Puppet Type, got %{class_name}"
|
7536
7004
|
msgstr ""
|
7537
7005
|
|
7538
|
-
#: ../lib/puppet/resource/type.rb:
|
7006
|
+
#: ../lib/puppet/resource/type.rb:373
|
7539
7007
|
msgid "Could not find scope for %{class_name}"
|
7540
7008
|
msgstr ""
|
7541
7009
|
|
7542
|
-
#: ../lib/puppet/resource/type.rb:
|
7010
|
+
#: ../lib/puppet/resource/type.rb:394
|
7543
7011
|
msgid "%{param} is a metaparam; this value will inherit to all contained resources in the %{name} definition"
|
7544
7012
|
msgstr ""
|
7545
7013
|
|
7546
|
-
#: ../lib/puppet/resource/type.rb:
|
7014
|
+
#: ../lib/puppet/resource/type.rb:396
|
7547
7015
|
msgid "%{param} is a metaparameter; please choose another parameter name in the %{name} definition"
|
7548
7016
|
msgstr ""
|
7549
7017
|
|
7550
|
-
#: ../lib/puppet/resource/type_collection.rb:
|
7018
|
+
#: ../lib/puppet/resource/type_collection.rb:63
|
7551
7019
|
msgid "Class '%{klass}' is already defined%{error}; cannot redefine"
|
7552
7020
|
msgstr ""
|
7553
7021
|
|
7554
|
-
#: ../lib/puppet/resource/type_collection.rb:
|
7022
|
+
#: ../lib/puppet/resource/type_collection.rb:64
|
7555
7023
|
msgid "Definition '%{klass}' is already defined%{error}; cannot be redefined as a class"
|
7556
7024
|
msgstr ""
|
7557
7025
|
|
7558
|
-
#: ../lib/puppet/resource/type_collection.rb:
|
7559
|
-
msgid "Application '%{klass}' is already defined%{error}; cannot be redefined as a class"
|
7560
|
-
msgstr ""
|
7561
|
-
|
7562
|
-
#: ../lib/puppet/resource/type_collection.rb:105
|
7026
|
+
#: ../lib/puppet/resource/type_collection.rb:95
|
7563
7027
|
msgid "Node '%{name}' is already defined%{error}; cannot redefine"
|
7564
7028
|
msgstr ""
|
7565
7029
|
|
7566
|
-
#: ../lib/puppet/resource/type_collection.rb:
|
7567
|
-
msgid "Site is already defined%{error}; cannot redefine"
|
7568
|
-
msgstr ""
|
7569
|
-
|
7570
|
-
#: ../lib/puppet/resource/type_collection.rb:150
|
7030
|
+
#: ../lib/puppet/resource/type_collection.rb:130
|
7571
7031
|
msgid "'%{name}' is already defined%{error} as a class; cannot redefine as a definition"
|
7572
7032
|
msgstr ""
|
7573
7033
|
|
7574
|
-
#: ../lib/puppet/resource/type_collection.rb:
|
7034
|
+
#: ../lib/puppet/resource/type_collection.rb:131
|
7575
7035
|
msgid "Definition '%{name}' is already defined%{error}; cannot be redefined"
|
7576
7036
|
msgstr ""
|
7577
7037
|
|
7578
|
-
#: ../lib/puppet/resource/type_collection.rb:
|
7579
|
-
msgid "'%{name}' is already defined%{error} as an application; cannot be redefined"
|
7580
|
-
msgstr ""
|
7581
|
-
|
7582
|
-
#: ../lib/puppet/resource/type_collection.rb:157
|
7583
|
-
msgid "'%{name}' is already defined%{error} as a class; cannot redefine as a mapping"
|
7584
|
-
msgstr ""
|
7585
|
-
|
7586
|
-
#: ../lib/puppet/resource/type_collection.rb:166
|
7587
|
-
msgid "'%{name}' is already defined%{error} as a class; cannot redefine as an application"
|
7588
|
-
msgstr ""
|
7589
|
-
|
7590
|
-
#: ../lib/puppet/resource/type_collection.rb:167
|
7591
|
-
msgid "'%{name}' is already defined%{error} as a definition; cannot redefine as an application"
|
7592
|
-
msgstr ""
|
7593
|
-
|
7594
|
-
#: ../lib/puppet/resource/type_collection.rb:220
|
7038
|
+
#: ../lib/puppet/resource/type_collection.rb:175
|
7595
7039
|
msgid "Execution of config_version command `%{cmd}` failed: %{message}"
|
7596
7040
|
msgstr ""
|
7597
7041
|
|
7598
|
-
#: ../lib/puppet/resource/type_collection.rb:
|
7042
|
+
#: ../lib/puppet/resource/type_collection.rb:196
|
7599
7043
|
msgid "Not attempting to load %{type} %{fqname} as this object was missing during a prior compilation"
|
7600
7044
|
msgstr ""
|
7601
7045
|
|
7602
|
-
#: ../lib/puppet/
|
7603
|
-
msgid "Connection to cached server and port %{server}:%{port} failed: %{message}"
|
7604
|
-
msgstr ""
|
7605
|
-
|
7606
|
-
#: ../lib/puppet/rest/routes.rb:46
|
7607
|
-
msgid "Downloaded certificate for %{name} from %{server}"
|
7608
|
-
msgstr ""
|
7609
|
-
|
7610
|
-
#: ../lib/puppet/rest/routes.rb:76
|
7611
|
-
msgid "Downloaded certificate revocation list for %{name} from %{server}"
|
7612
|
-
msgstr ""
|
7613
|
-
|
7614
|
-
#: ../lib/puppet/rest/routes.rb:129
|
7615
|
-
msgid "Downloaded existing certificate request for %{name} from %{server}"
|
7616
|
-
msgstr ""
|
7617
|
-
|
7618
|
-
#: ../lib/puppet/settings.rb:98
|
7046
|
+
#: ../lib/puppet/settings.rb:101
|
7619
7047
|
msgid "New environment loaders generated from the requested section."
|
7620
7048
|
msgstr ""
|
7621
7049
|
|
7622
|
-
#: ../lib/puppet/settings.rb:
|
7050
|
+
#: ../lib/puppet/settings.rb:303
|
7623
7051
|
msgid "Attempting to initialize global default settings more than once!"
|
7624
7052
|
msgstr ""
|
7625
7053
|
|
7626
|
-
#: ../lib/puppet/settings.rb:
|
7054
|
+
#: ../lib/puppet/settings.rb:516
|
7627
7055
|
msgid "Using --configprint is deprecated. Use 'puppet config <subcommand>' instead."
|
7628
7056
|
msgstr ""
|
7629
7057
|
|
7630
|
-
#: ../lib/puppet/settings.rb:
|
7058
|
+
#: ../lib/puppet/settings.rb:658
|
7631
7059
|
msgid "Could not load %{file}: %{detail}"
|
7632
7060
|
msgstr ""
|
7633
7061
|
|
7634
|
-
#: ../lib/puppet/settings.rb:
|
7062
|
+
#: ../lib/puppet/settings.rb:766
|
7635
7063
|
msgid "Invalid setting type '%{type}'"
|
7636
7064
|
msgstr ""
|
7637
7065
|
|
7638
|
-
#: ../lib/puppet/settings.rb:
|
7066
|
+
#: ../lib/puppet/settings.rb:921
|
7639
7067
|
msgid "Unknown searchpath case: %{source_type} for the %{source} settings path element."
|
7640
7068
|
msgstr ""
|
7641
7069
|
|
7642
|
-
#: ../lib/puppet/settings.rb:
|
7070
|
+
#: ../lib/puppet/settings.rb:994
|
7643
7071
|
msgid "setting definition for '%{name}' is not a hash!"
|
7644
7072
|
msgstr ""
|
7645
7073
|
|
7646
|
-
#: ../lib/puppet/settings.rb:
|
7074
|
+
#: ../lib/puppet/settings.rb:999
|
7647
7075
|
msgid "Setting %{name} is already defined"
|
7648
7076
|
msgstr ""
|
7649
7077
|
|
7650
|
-
#: ../lib/puppet/settings.rb:
|
7078
|
+
#: ../lib/puppet/settings.rb:1005
|
7651
7079
|
msgid "Setting %{name} is already using short name '%{short}'"
|
7652
7080
|
msgstr ""
|
7653
7081
|
|
7654
|
-
#: ../lib/puppet/settings.rb:
|
7082
|
+
#: ../lib/puppet/settings.rb:1276
|
7655
7083
|
msgid "Setting %{name} is deprecated."
|
7656
7084
|
msgstr ""
|
7657
7085
|
|
7658
7086
|
#. TRANSLATORS 'puppet.conf' is a file name and should not be translated
|
7659
|
-
#: ../lib/puppet/settings.rb:
|
7087
|
+
#: ../lib/puppet/settings.rb:1281
|
7660
7088
|
msgid "Setting %{name} is deprecated in puppet.conf."
|
7661
7089
|
msgstr ""
|
7662
7090
|
|
7663
|
-
#: ../lib/puppet/settings.rb:
|
7091
|
+
#: ../lib/puppet/settings.rb:1452
|
7664
7092
|
msgid "Error converting value for param '%{name}': %{detail}"
|
7665
7093
|
msgstr ""
|
7666
7094
|
|
7667
|
-
#: ../lib/puppet/settings.rb:
|
7095
|
+
#: ../lib/puppet/settings.rb:1476
|
7668
7096
|
msgid "Could not find value for %{expression}"
|
7669
7097
|
msgstr ""
|
7670
7098
|
|
7671
7099
|
#. TRANSLATORS '$environment' is a Puppet specific variable and should not be translated
|
7672
|
-
#: ../lib/puppet/settings.rb:
|
7100
|
+
#: ../lib/puppet/settings.rb:1486
|
7673
7101
|
msgid "You cannot interpolate $environment within '%{setting_name}' when using directory environments."
|
7674
7102
|
msgstr ""
|
7675
7103
|
|
7676
|
-
#: ../lib/puppet/settings.rb:
|
7104
|
+
#: ../lib/puppet/settings.rb:1487
|
7677
7105
|
msgid "Its value will remain %{value}."
|
7678
7106
|
msgstr ""
|
7679
7107
|
|
7680
|
-
#: ../lib/puppet/settings.rb:
|
7108
|
+
#: ../lib/puppet/settings.rb:1518
|
7681
7109
|
msgid "Attempt to assign a value to unknown setting %{name}"
|
7682
7110
|
msgstr ""
|
7683
7111
|
|
@@ -7690,38 +7118,38 @@ msgid "Invalid autosign value %{value}: must be 'true'/'false' or an absolute pa
|
|
7690
7118
|
msgstr ""
|
7691
7119
|
|
7692
7120
|
#. TRANSLATORS ':%{name}', ':call_hook', and ':on_write_only' should not be translated
|
7693
|
-
#: ../lib/puppet/settings/base_setting.rb:
|
7121
|
+
#: ../lib/puppet/settings/base_setting.rb:37
|
7694
7122
|
msgid "Setting :%{name} :call_hook is nil, defaulting to :on_write_only"
|
7695
7123
|
msgstr ""
|
7696
7124
|
|
7697
7125
|
#. TRANSLATORS 'call_hook' is a Puppet option name and should not be translated
|
7698
|
-
#: ../lib/puppet/settings/base_setting.rb:
|
7126
|
+
#: ../lib/puppet/settings/base_setting.rb:42
|
7699
7127
|
msgid "Invalid option %{value} for call_hook"
|
7700
7128
|
msgstr ""
|
7701
7129
|
|
7702
7130
|
#. TRANSLATORS ':call_hook' and ':hook' are specific setting names and should not be translated
|
7703
|
-
#: ../lib/puppet/settings/base_setting.rb:
|
7131
|
+
#: ../lib/puppet/settings/base_setting.rb:101
|
7704
7132
|
msgid "Cannot reference :call_hook for :%{name} if no :hook is defined"
|
7705
7133
|
msgstr ""
|
7706
7134
|
|
7707
|
-
#: ../lib/puppet/settings/base_setting.rb:
|
7135
|
+
#: ../lib/puppet/settings/base_setting.rb:107
|
7708
7136
|
msgid "%{class_name} (setting '%{setting}') does not accept %{parameter}"
|
7709
7137
|
msgstr ""
|
7710
7138
|
|
7711
|
-
#: ../lib/puppet/settings/base_setting.rb:
|
7139
|
+
#: ../lib/puppet/settings/base_setting.rb:114
|
7712
7140
|
msgid "You must provide a description for the %{class_name} config option"
|
7713
7141
|
msgstr ""
|
7714
7142
|
|
7715
|
-
#: ../lib/puppet/settings/base_setting.rb:
|
7143
|
+
#: ../lib/puppet/settings/base_setting.rb:128
|
7716
7144
|
msgid "Short names can only be one character."
|
7717
7145
|
msgstr ""
|
7718
7146
|
|
7719
7147
|
#. TRANSLATORS 'deprecated' is a Puppet setting and ':completely' and ':allowed_on_commandline' are possible values and should not be translated
|
7720
|
-
#: ../lib/puppet/settings/base_setting.rb:
|
7148
|
+
#: ../lib/puppet/settings/base_setting.rb:197
|
7721
7149
|
msgid "Unsupported deprecated value '%{deprecation}'."
|
7722
7150
|
msgstr ""
|
7723
7151
|
|
7724
|
-
#: ../lib/puppet/settings/base_setting.rb:
|
7152
|
+
#: ../lib/puppet/settings/base_setting.rb:198
|
7725
7153
|
msgid "Supported values for deprecated are ':completely' or ':allowed_on_commandline'"
|
7726
7154
|
msgstr ""
|
7727
7155
|
|
@@ -7799,7 +7227,15 @@ msgstr ""
|
|
7799
7227
|
msgid "Expected an Array, String, or Hash, got a %{klass}"
|
7800
7228
|
msgstr ""
|
7801
7229
|
|
7802
|
-
#: ../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
|
7803
7239
|
msgid "Invalid priority format '%{value}' for parameter: %{name}"
|
7804
7240
|
msgstr ""
|
7805
7241
|
|
@@ -7819,83 +7255,83 @@ msgstr ""
|
|
7819
7255
|
msgid "Invalid 'time to live' format '%{value}' for parameter: %{param_name}"
|
7820
7256
|
msgstr ""
|
7821
7257
|
|
7822
|
-
#: ../lib/puppet/ssl/base.rb:
|
7258
|
+
#: ../lib/puppet/ssl/base.rb:26
|
7823
7259
|
msgid "%{name} has not declared what class it wraps"
|
7824
7260
|
msgstr ""
|
7825
7261
|
|
7826
|
-
#: ../lib/puppet/ssl/base.rb:
|
7262
|
+
#: ../lib/puppet/ssl/base.rb:31 ../lib/puppet/x509/cert_provider.rb:370
|
7827
7263
|
msgid "Certname %{name} must not contain unprintable or non-ASCII characters"
|
7828
7264
|
msgstr ""
|
7829
7265
|
|
7830
|
-
#: ../lib/puppet/ssl/base.rb:
|
7266
|
+
#: ../lib/puppet/ssl/base.rb:37
|
7831
7267
|
msgid "%{class_name} did not override 'generate'"
|
7832
7268
|
msgstr ""
|
7833
7269
|
|
7834
|
-
#: ../lib/puppet/ssl/base.rb:
|
7270
|
+
#: ../lib/puppet/ssl/base.rb:64
|
7835
7271
|
msgid "Object must be an instance of %{class_name}, %{actual_class} given"
|
7836
7272
|
msgstr ""
|
7837
7273
|
|
7838
|
-
#: ../lib/puppet/ssl/base.rb:
|
7274
|
+
#: ../lib/puppet/ssl/base.rb:68
|
7839
7275
|
msgid "Name must be supplied if it cannot be determined from the instance"
|
7840
7276
|
msgstr ""
|
7841
7277
|
|
7842
|
-
#: ../lib/puppet/ssl/base.rb:
|
7278
|
+
#: ../lib/puppet/ssl/base.rb:140
|
7843
7279
|
msgid "Unknown signature algorithm '%{ln}'"
|
7844
7280
|
msgstr ""
|
7845
7281
|
|
7846
|
-
#: ../lib/puppet/ssl/certificate_request.rb:
|
7282
|
+
#: ../lib/puppet/ssl/certificate_request.rb:57
|
7847
7283
|
msgid "Creating a new SSL certificate request for %{name}"
|
7848
7284
|
msgstr ""
|
7849
7285
|
|
7850
|
-
#: ../lib/puppet/ssl/certificate_request.rb:
|
7286
|
+
#: ../lib/puppet/ssl/certificate_request.rb:90
|
7851
7287
|
msgid "CSR sign verification failed; you need to clean the certificate request for %{name} on the server"
|
7852
7288
|
msgstr ""
|
7853
7289
|
|
7854
|
-
#: ../lib/puppet/ssl/certificate_request.rb:
|
7290
|
+
#: ../lib/puppet/ssl/certificate_request.rb:96
|
7855
7291
|
msgid "Certificate Request fingerprint (%{digest}): %{hex_digest}"
|
7856
7292
|
msgstr ""
|
7857
7293
|
|
7858
|
-
#: ../lib/puppet/ssl/certificate_request.rb:
|
7294
|
+
#: ../lib/puppet/ssl/certificate_request.rb:140
|
7859
7295
|
msgid "CSR needs content to extract fields"
|
7860
7296
|
msgstr ""
|
7861
7297
|
|
7862
|
-
#: ../lib/puppet/ssl/certificate_request.rb:
|
7298
|
+
#: ../lib/puppet/ssl/certificate_request.rb:167
|
7863
7299
|
msgid "In %{attr}, expected extension record %{index} to have two or three items, but found %{count}"
|
7864
7300
|
msgstr ""
|
7865
7301
|
|
7866
|
-
#: ../lib/puppet/ssl/certificate_request.rb:
|
7302
|
+
#: ../lib/puppet/ssl/certificate_request.rb:218
|
7867
7303
|
msgid "Cannot specify CSR attribute %{oid}: conflicts with internally used CSR attribute"
|
7868
7304
|
msgstr ""
|
7869
7305
|
|
7870
|
-
#: ../lib/puppet/ssl/certificate_request.rb:
|
7306
|
+
#: ../lib/puppet/ssl/certificate_request.rb:227
|
7871
7307
|
msgid "Cannot create CSR with attribute %{oid}: %{message}"
|
7872
7308
|
msgstr ""
|
7873
7309
|
|
7874
|
-
#: ../lib/puppet/ssl/certificate_request.rb:
|
7310
|
+
#: ../lib/puppet/ssl/certificate_request.rb:244
|
7875
7311
|
msgid "Cannot specify CSR extension request %{oid}: conflicts with internally used extension request"
|
7876
7312
|
msgstr ""
|
7877
7313
|
|
7878
|
-
#: ../lib/puppet/ssl/certificate_request.rb:
|
7314
|
+
#: ../lib/puppet/ssl/certificate_request.rb:250
|
7879
7315
|
msgid "Cannot create CSR with extension request %{oid}: %{message}"
|
7880
7316
|
msgstr ""
|
7881
7317
|
|
7882
|
-
#: ../lib/puppet/ssl/certificate_request.rb:
|
7318
|
+
#: ../lib/puppet/ssl/certificate_request.rb:301
|
7883
7319
|
msgid "In %{attr}, expected Set but found %{klass}"
|
7884
7320
|
msgstr ""
|
7885
7321
|
|
7886
|
-
#: ../lib/puppet/ssl/certificate_request.rb:
|
7322
|
+
#: ../lib/puppet/ssl/certificate_request.rb:305
|
7887
7323
|
msgid "In %{attr}, expected Set[Array] but found %{klass}"
|
7888
7324
|
msgstr ""
|
7889
7325
|
|
7890
|
-
#: ../lib/puppet/ssl/certificate_request.rb:
|
7326
|
+
#: ../lib/puppet/ssl/certificate_request.rb:309
|
7891
7327
|
msgid "In %{attr}, expected Set[Array] with one value but found %{count} elements"
|
7892
7328
|
msgstr ""
|
7893
7329
|
|
7894
|
-
#: ../lib/puppet/ssl/certificate_request.rb:
|
7330
|
+
#: ../lib/puppet/ssl/certificate_request.rb:313
|
7895
7331
|
msgid "In %{attr}, expected Set[Array[Sequence[...]]], but found %{klass}"
|
7896
7332
|
msgstr ""
|
7897
7333
|
|
7898
|
-
#: ../lib/puppet/ssl/certificate_request.rb:
|
7334
|
+
#: ../lib/puppet/ssl/certificate_request.rb:317
|
7899
7335
|
msgid "In %{attr}, expected Set[Array[Sequence[Array[...]]]], but found %{klass}"
|
7900
7336
|
msgstr ""
|
7901
7337
|
|
@@ -7923,187 +7359,107 @@ msgstr ""
|
|
7923
7359
|
msgid "Server hostname '%{host}' did not match server certificate; %{expected_certnames}"
|
7924
7360
|
msgstr ""
|
7925
7361
|
|
7926
|
-
#: ../lib/puppet/ssl/
|
7927
|
-
msgid "No certificate to validate."
|
7928
|
-
msgstr ""
|
7929
|
-
|
7930
|
-
#: ../lib/puppet/ssl/host.rb:155
|
7931
|
-
msgid "No private key with which to validate certificate with fingerprint: %{fingerprint}"
|
7932
|
-
msgstr ""
|
7933
|
-
|
7934
|
-
#: ../lib/puppet/ssl/host.rb:157
|
7935
|
-
msgid ""
|
7936
|
-
"The certificate retrieved from the master does not match the agent's private key. Did you forget to run as root?\n"
|
7937
|
-
"Certificate fingerprint: %{fingerprint}\n"
|
7938
|
-
"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"
|
7939
|
-
"On the master:\n"
|
7940
|
-
" puppetserver ca clean --certname %{cert_name}\n"
|
7941
|
-
"On the agent:\n"
|
7942
|
-
" 1. puppet ssl clean %{clean_params}\n"
|
7943
|
-
" 2. puppet %{puppet_params}\n"
|
7944
|
-
msgstr ""
|
7945
|
-
|
7946
|
-
#: ../lib/puppet/ssl/host.rb:212
|
7947
|
-
msgid ""
|
7948
|
-
"The CSR retrieved from the master does not match the agent's public key.\n"
|
7949
|
-
"CSR fingerprint: %{fingerprint}\n"
|
7950
|
-
"CSR public key: %{csr_public_key}\n"
|
7951
|
-
"Agent public key: %{agent_public_key}\n"
|
7952
|
-
"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"
|
7953
|
-
"On the master:\n"
|
7954
|
-
" puppetserver ca clean --certname %{cert_name}\n"
|
7955
|
-
"On the agent:\n"
|
7956
|
-
" 1. puppet ssl clean %{clean_params}\n"
|
7957
|
-
" 2. puppet %{puppet_params}\n"
|
7958
|
-
msgstr ""
|
7959
|
-
|
7960
|
-
#: ../lib/puppet/ssl/host.rb:235
|
7961
|
-
msgid "Puppet::SSL::Host is deprecated and will be removed in a future release of Puppet."
|
7962
|
-
msgstr ""
|
7963
|
-
|
7964
|
-
#: ../lib/puppet/ssl/host.rb:267 ../lib/puppet/ssl/host.rb:288
|
7965
|
-
msgid "Could not request certificate: %{message}"
|
7966
|
-
msgstr ""
|
7967
|
-
|
7968
|
-
#: ../lib/puppet/ssl/host.rb:269
|
7969
|
-
msgid "Exiting; failed to retrieve certificate and waitforcert is disabled"
|
7970
|
-
msgstr ""
|
7971
|
-
|
7972
|
-
#: ../lib/puppet/ssl/host.rb:278
|
7973
|
-
msgid "Exiting; no certificate found and waitforcert is disabled"
|
7974
|
-
msgstr ""
|
7975
|
-
|
7976
|
-
#: ../lib/puppet/ssl/host.rb:286
|
7977
|
-
msgid "Did not receive certificate"
|
7978
|
-
msgstr ""
|
7979
|
-
|
7980
|
-
#: ../lib/puppet/ssl/host.rb:326
|
7981
|
-
msgid "Response from the CA did not contain a valid certificate request: %{message}"
|
7982
|
-
msgstr ""
|
7983
|
-
|
7984
|
-
#: ../lib/puppet/ssl/host.rb:332
|
7985
|
-
msgid "Could not download certificate request: %{message}"
|
7986
|
-
msgstr ""
|
7987
|
-
|
7988
|
-
#: ../lib/puppet/ssl/host.rb:359
|
7989
|
-
msgid ""
|
7990
|
-
"Failed attempting to load CRL from %{crl_path}! The CRL below caused the error '%{error}':\n"
|
7991
|
-
"%{crl}"
|
7992
|
-
msgstr ""
|
7993
|
-
|
7994
|
-
#: ../lib/puppet/ssl/host.rb:391 ../lib/puppet/ssl/state_machine.rb:120
|
7995
|
-
msgid "Could not download CRLs: %{message}"
|
7996
|
-
msgstr ""
|
7997
|
-
|
7998
|
-
#: ../lib/puppet/ssl/host.rb:425
|
7999
|
-
msgid "The certificate at %{file_path} is invalid. Could not load."
|
8000
|
-
msgstr ""
|
8001
|
-
|
8002
|
-
#: ../lib/puppet/ssl/host.rb:446
|
8003
|
-
msgid "Response from the CA did not contain a valid certificate for %{cert_name}."
|
8004
|
-
msgstr ""
|
8005
|
-
|
8006
|
-
#: ../lib/puppet/ssl/host.rb:450
|
8007
|
-
msgid "No certificate for %{cert_name} on CA"
|
8008
|
-
msgstr ""
|
8009
|
-
|
8010
|
-
#: ../lib/puppet/ssl/host.rb:453
|
8011
|
-
msgid "Could not download host certificate: %{message}"
|
8012
|
-
msgstr ""
|
8013
|
-
|
8014
|
-
#: ../lib/puppet/ssl/oids.rb:110
|
7362
|
+
#: ../lib/puppet/ssl/oids.rb:112
|
8015
7363
|
msgid "Error loading ssl custom OIDs mapping file from '%{custom_oid_file}': %{err}"
|
8016
7364
|
msgstr ""
|
8017
7365
|
|
8018
|
-
#: ../lib/puppet/ssl/oids.rb:
|
7366
|
+
#: ../lib/puppet/ssl/oids.rb:116
|
8019
7367
|
msgid "Error loading ssl custom OIDs mapping file from '%{custom_oid_file}': no such index '%{map_key}'"
|
8020
7368
|
msgstr ""
|
8021
7369
|
|
8022
|
-
#: ../lib/puppet/ssl/oids.rb:
|
7370
|
+
#: ../lib/puppet/ssl/oids.rb:120
|
8023
7371
|
msgid "Error loading ssl custom OIDs mapping file from '%{custom_oid_file}': data under index '%{map_key}' must be a Hash"
|
8024
7372
|
msgstr ""
|
8025
7373
|
|
8026
|
-
#: ../lib/puppet/ssl/oids.rb:
|
7374
|
+
#: ../lib/puppet/ssl/oids.rb:127
|
8027
7375
|
msgid "Error loading ssl custom OIDs mapping file from '%{custom_oid_file}': incomplete definition of oid '%{oid}'"
|
8028
7376
|
msgstr ""
|
8029
7377
|
|
8030
|
-
#: ../lib/puppet/ssl/oids.rb:
|
7378
|
+
#: ../lib/puppet/ssl/oids.rb:159
|
8031
7379
|
msgid "Error registering ssl custom OIDs mapping from file '%{custom_oid_file}': %{err}"
|
8032
7380
|
msgstr ""
|
8033
7381
|
|
8034
|
-
#: ../lib/puppet/ssl/ssl_provider.rb:
|
7382
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:83
|
7383
|
+
msgid "Failed to add '%{path}' as a trusted CA file: %{detail}"
|
7384
|
+
msgstr ""
|
7385
|
+
|
7386
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:87
|
7387
|
+
msgid "The 'ssl_trust_store' setting does not refer to a file and will be ignored: '%{path}'"
|
7388
|
+
msgstr ""
|
7389
|
+
|
7390
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:121
|
8035
7391
|
msgid "CA certs are missing"
|
8036
7392
|
msgstr ""
|
8037
7393
|
|
8038
|
-
#: ../lib/puppet/ssl/ssl_provider.rb:
|
7394
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:122
|
8039
7395
|
msgid "CRLs are missing"
|
8040
7396
|
msgstr ""
|
8041
7397
|
|
8042
|
-
#: ../lib/puppet/ssl/ssl_provider.rb:
|
7398
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:123
|
8043
7399
|
msgid "Private key is missing"
|
8044
7400
|
msgstr ""
|
8045
7401
|
|
8046
|
-
#: ../lib/puppet/ssl/ssl_provider.rb:
|
7402
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:124
|
8047
7403
|
msgid "Client cert is missing"
|
8048
7404
|
msgstr ""
|
8049
7405
|
|
8050
|
-
#: ../lib/puppet/ssl/ssl_provider.rb:
|
7406
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:130
|
8051
7407
|
msgid "Unsupported key '%{type}'"
|
8052
7408
|
msgstr ""
|
8053
7409
|
|
8054
|
-
#: ../lib/puppet/ssl/ssl_provider.rb:
|
7410
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:134
|
8055
7411
|
msgid "The certificate for '%{name}' does not match its private key"
|
8056
7412
|
msgstr ""
|
8057
7413
|
|
8058
|
-
#: ../lib/puppet/ssl/ssl_provider.rb:
|
7414
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:173
|
8059
7415
|
msgid "Failed to load private key for host '%{name}': %{message}"
|
8060
7416
|
msgstr ""
|
8061
7417
|
|
8062
|
-
#: ../lib/puppet/ssl/ssl_provider.rb:
|
7418
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:187
|
8063
7419
|
msgid "The CSR for host '%{name}' does not match the public key"
|
8064
7420
|
msgstr ""
|
8065
7421
|
|
8066
|
-
#: ../lib/puppet/ssl/ssl_provider.rb:
|
7422
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:251
|
8067
7423
|
msgid "The issuer '%{issuer}' of certificate '%{subject}' cannot be found locally"
|
8068
7424
|
msgstr ""
|
8069
7425
|
|
8070
|
-
#: ../lib/puppet/ssl/ssl_provider.rb:
|
7426
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:267
|
8071
7427
|
msgid "The certificate '%{subject}' is not yet valid, verify time is synchronized"
|
8072
7428
|
msgstr ""
|
8073
7429
|
|
8074
|
-
#: ../lib/puppet/ssl/ssl_provider.rb:
|
7430
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:269
|
8075
7431
|
msgid "The certificate '%{subject}' has expired, verify time is synchronized"
|
8076
7432
|
msgstr ""
|
8077
7433
|
|
8078
|
-
#: ../lib/puppet/ssl/ssl_provider.rb:
|
7434
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:271
|
8079
7435
|
msgid "The CRL issued by '%{issuer}' is not yet valid, verify time is synchronized"
|
8080
7436
|
msgstr ""
|
8081
7437
|
|
8082
|
-
#: ../lib/puppet/ssl/ssl_provider.rb:
|
7438
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:273
|
8083
7439
|
msgid "The CRL issued by '%{issuer}' has expired, verify time is synchronized"
|
8084
7440
|
msgstr ""
|
8085
7441
|
|
8086
|
-
#: ../lib/puppet/ssl/ssl_provider.rb:
|
7442
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:275
|
8087
7443
|
msgid "Invalid signature for certificate '%{subject}'"
|
8088
7444
|
msgstr ""
|
8089
7445
|
|
8090
|
-
#: ../lib/puppet/ssl/ssl_provider.rb:
|
7446
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:277
|
8091
7447
|
msgid "Invalid signature for CRL issued by '%{issuer}'"
|
8092
7448
|
msgstr ""
|
8093
7449
|
|
8094
|
-
#: ../lib/puppet/ssl/ssl_provider.rb:
|
7450
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:279
|
8095
7451
|
msgid "The issuer '%{issuer}' of certificate '%{subject}' is missing"
|
8096
7452
|
msgstr ""
|
8097
7453
|
|
8098
|
-
#: ../lib/puppet/ssl/ssl_provider.rb:
|
7454
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:282
|
8099
7455
|
msgid "The CRL issued by '%{issuer}' is missing"
|
8100
7456
|
msgstr ""
|
8101
7457
|
|
8102
|
-
#: ../lib/puppet/ssl/ssl_provider.rb:
|
7458
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:284
|
8103
7459
|
msgid "Certificate '%{subject}' is revoked"
|
8104
7460
|
msgstr ""
|
8105
7461
|
|
8106
|
-
#: ../lib/puppet/ssl/ssl_provider.rb:
|
7462
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:288
|
8107
7463
|
msgid "Certificate '%{subject}' failed verification (%{err}): %{err_utf8}"
|
8108
7464
|
msgstr ""
|
8109
7465
|
|
@@ -8127,6 +7483,10 @@ msgstr ""
|
|
8127
7483
|
msgid "CRL is missing from the server"
|
8128
7484
|
msgstr ""
|
8129
7485
|
|
7486
|
+
#: ../lib/puppet/ssl/state_machine.rb:120
|
7487
|
+
msgid "Could not download CRLs: %{message}"
|
7488
|
+
msgstr ""
|
7489
|
+
|
8130
7490
|
#: ../lib/puppet/ssl/state_machine.rb:127
|
8131
7491
|
msgid "Refreshing CRL"
|
8132
7492
|
msgstr ""
|
@@ -8199,16 +7559,16 @@ msgstr ""
|
|
8199
7559
|
msgid "Another puppet instance is already running; waiting for it to finish"
|
8200
7560
|
msgstr ""
|
8201
7561
|
|
8202
|
-
#: ../lib/puppet/ssl/state_machine.rb:
|
7562
|
+
#: ../lib/puppet/ssl/state_machine.rb:429
|
8203
7563
|
msgid "Verified client certificate '%{subject}' fingerprint %{digest}"
|
8204
7564
|
msgstr ""
|
8205
7565
|
|
8206
|
-
#: ../lib/puppet/ssl/state_machine.rb:
|
7566
|
+
#: ../lib/puppet/ssl/state_machine.rb:431
|
8207
7567
|
msgid "Verified CA certificate '%{subject}' fingerprint %{digest}"
|
8208
7568
|
msgstr ""
|
8209
7569
|
|
8210
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
|
8211
|
-
#: ../lib/puppet/ssl/verifier.rb:
|
7571
|
+
#: ../lib/puppet/ssl/verifier.rb:130
|
8212
7572
|
msgid "certificate verify failed [%{error} for %{subject}]"
|
8213
7573
|
msgstr ""
|
8214
7574
|
|
@@ -8333,19 +7693,19 @@ msgid "Prefetch failed for %{type_name} provider '%{name}'"
|
|
8333
7693
|
msgstr ""
|
8334
7694
|
|
8335
7695
|
#. TRANSLATORS `prefetch` is a function name and should not be translated
|
8336
|
-
#: ../lib/puppet/transaction.rb:381
|
7696
|
+
#: ../lib/puppet/transaction.rb:381
|
8337
7697
|
msgid "Could not prefetch %{type_name} provider '%{name}': %{detail}"
|
8338
7698
|
msgstr ""
|
8339
7699
|
|
8340
|
-
#: ../lib/puppet/transaction.rb:
|
7700
|
+
#: ../lib/puppet/transaction.rb:415
|
8341
7701
|
msgid "Skipping resources in class because of failed class dependencies"
|
8342
7702
|
msgstr ""
|
8343
7703
|
|
8344
|
-
#: ../lib/puppet/transaction.rb:
|
7704
|
+
#: ../lib/puppet/transaction.rb:419
|
8345
7705
|
msgid "Skipping because of failed dependencies"
|
8346
7706
|
msgstr ""
|
8347
7707
|
|
8348
|
-
#: ../lib/puppet/transaction.rb:
|
7708
|
+
#: ../lib/puppet/transaction.rb:424
|
8349
7709
|
msgid "Skipping because provider prefetch failed"
|
8350
7710
|
msgstr ""
|
8351
7711
|
|
@@ -8454,77 +7814,89 @@ msgstr ""
|
|
8454
7814
|
msgid "audit change: newly-recorded value %s"
|
8455
7815
|
msgstr ""
|
8456
7816
|
|
8457
|
-
#: ../lib/puppet/
|
7817
|
+
#: ../lib/puppet/trusted_external.rb:6
|
7818
|
+
msgid "Retrieving trusted external data from %{command}"
|
7819
|
+
msgstr ""
|
7820
|
+
|
7821
|
+
#: ../lib/puppet/trusted_external.rb:20
|
7822
|
+
msgid "Skipping non-executable file %{file}"
|
7823
|
+
msgstr ""
|
7824
|
+
|
7825
|
+
#: ../lib/puppet/trusted_external.rb:25
|
7826
|
+
msgid "There is more than one '%{basename}' script in %{dir}"
|
7827
|
+
msgstr ""
|
7828
|
+
|
7829
|
+
#: ../lib/puppet/type.rb:496
|
8458
7830
|
msgid "Options must be a hash, not %{type}"
|
8459
7831
|
msgstr ""
|
8460
7832
|
|
8461
|
-
#: ../lib/puppet/type.rb:
|
7833
|
+
#: ../lib/puppet/type.rb:499
|
8462
7834
|
msgid "Class %{class_name} already has a property named %{property}"
|
8463
7835
|
msgstr ""
|
8464
7836
|
|
8465
|
-
#: ../lib/puppet/type.rb:
|
7837
|
+
#: ../lib/puppet/type.rb:586
|
8466
7838
|
msgid "Class %{class_name} has not defined parameters"
|
8467
7839
|
msgstr ""
|
8468
7840
|
|
8469
|
-
#: ../lib/puppet/type.rb:
|
7841
|
+
#: ../lib/puppet/type.rb:673
|
8470
7842
|
msgid "Parameter %{name} failed on %{ref}: %{detail}"
|
8471
7843
|
msgstr ""
|
8472
7844
|
|
8473
|
-
#: ../lib/puppet/type.rb:
|
7845
|
+
#: ../lib/puppet/type.rb:696
|
8474
7846
|
msgid "Undefined attribute '%{attribute}' in %{name}"
|
8475
7847
|
msgstr ""
|
8476
7848
|
|
8477
7849
|
#. TRANSLATORS 'is' is a variable name and should not be translated
|
8478
7850
|
#. TRANSLATORS 'is' is a variable name and should not be translated
|
8479
|
-
#: ../lib/puppet/type.rb:
|
7851
|
+
#: ../lib/puppet/type.rb:1039 ../lib/puppet/type.rb:1050
|
8480
7852
|
msgid "The 'is' value is not in the 'is' array for '%{name}'"
|
8481
7853
|
msgstr ""
|
8482
7854
|
|
8483
|
-
#: ../lib/puppet/type.rb:
|
7855
|
+
#: ../lib/puppet/type.rb:1181
|
8484
7856
|
msgid "%{name} has no providers and has not overridden 'instances'"
|
8485
7857
|
msgstr ""
|
8486
7858
|
|
8487
|
-
#: ../lib/puppet/type.rb:
|
7859
|
+
#: ../lib/puppet/type.rb:1445
|
8488
7860
|
msgid "Cannot add aliases without a catalog"
|
8489
7861
|
msgstr ""
|
8490
7862
|
|
8491
|
-
#: ../lib/puppet/type.rb:
|
7863
|
+
#: ../lib/puppet/type.rb:1525
|
8492
7864
|
msgid "Could not find %{description} %{ref} for %{resource}"
|
8493
7865
|
msgstr ""
|
8494
7866
|
|
8495
|
-
#: ../lib/puppet/type.rb:
|
7867
|
+
#: ../lib/puppet/type.rb:1749
|
8496
7868
|
msgid "Found multiple default providers for %{name}: %{provider_list}; using %{selected_provider}"
|
8497
7869
|
msgstr ""
|
8498
7870
|
|
8499
|
-
#: ../lib/puppet/type.rb:
|
7871
|
+
#: ../lib/puppet/type.rb:1836
|
8500
7872
|
msgid "Could not find parent provider %{parent} of %{name}"
|
8501
7873
|
msgstr ""
|
8502
7874
|
|
8503
|
-
#: ../lib/puppet/type.rb:
|
7875
|
+
#: ../lib/puppet/type.rb:1910
|
8504
7876
|
msgid "Invalid %{resource} provider '%{provider_class}'"
|
8505
7877
|
msgstr ""
|
8506
7878
|
|
8507
|
-
#: ../lib/puppet/type.rb:
|
7879
|
+
#: ../lib/puppet/type.rb:1995
|
8508
7880
|
msgid "Could not find %{name} provider of %{provider}"
|
8509
7881
|
msgstr ""
|
8510
7882
|
|
8511
|
-
#: ../lib/puppet/type.rb:
|
7883
|
+
#: ../lib/puppet/type.rb:2113
|
8512
7884
|
msgid "You cannot add relationships without a catalog"
|
8513
7885
|
msgstr ""
|
8514
7886
|
|
8515
|
-
#: ../lib/puppet/type.rb:
|
7887
|
+
#: ../lib/puppet/type.rb:2416
|
8516
7888
|
msgid "Unable to mark '%{name}' as sensitive: %{name} is a parameter and not a property, and cannot be automatically redacted."
|
8517
7889
|
msgstr ""
|
8518
7890
|
|
8519
|
-
#: ../lib/puppet/type.rb:
|
7891
|
+
#: ../lib/puppet/type.rb:2419
|
8520
7892
|
msgid "Unable to mark '%{name}' as sensitive: the property itself was not assigned a value."
|
8521
7893
|
msgstr ""
|
8522
7894
|
|
8523
|
-
#: ../lib/puppet/type.rb:
|
7895
|
+
#: ../lib/puppet/type.rb:2421
|
8524
7896
|
msgid "Unable to mark '%{name}' as sensitive: the property itself is not defined on %{type}."
|
8525
7897
|
msgstr ""
|
8526
7898
|
|
8527
|
-
#: ../lib/puppet/type.rb:
|
7899
|
+
#: ../lib/puppet/type.rb:2479
|
8528
7900
|
msgid "Could not set %{attribute} on %{class_name}: %{detail}"
|
8529
7901
|
msgstr ""
|
8530
7902
|
|
@@ -8601,87 +7973,87 @@ msgstr ""
|
|
8601
7973
|
msgid "File paths must be fully qualified, not '%{path}'"
|
8602
7974
|
msgstr ""
|
8603
7975
|
|
8604
|
-
#: ../lib/puppet/type/file.rb:
|
7976
|
+
#: ../lib/puppet/type/file.rb:140
|
8605
7977
|
msgid "Invalid backup type %{value}"
|
8606
7978
|
msgstr ""
|
8607
7979
|
|
8608
|
-
#: ../lib/puppet/type/file.rb:
|
7980
|
+
#: ../lib/puppet/type/file.rb:184 ../lib/puppet/type/tidy.rb:48
|
8609
7981
|
msgid "Invalid recurse value %{value}"
|
8610
7982
|
msgstr ""
|
8611
7983
|
|
8612
|
-
#: ../lib/puppet/type/file.rb:
|
7984
|
+
#: ../lib/puppet/type/file.rb:216
|
8613
7985
|
msgid "Invalid recurselimit value %{value}"
|
8614
7986
|
msgstr ""
|
8615
7987
|
|
8616
|
-
#: ../lib/puppet/type/file.rb:
|
7988
|
+
#: ../lib/puppet/type/file.rb:416
|
8617
7989
|
msgid "You cannot specify more than one of %{creators}"
|
8618
7990
|
msgstr ""
|
8619
7991
|
|
8620
|
-
#: ../lib/puppet/type/file.rb:
|
7992
|
+
#: ../lib/puppet/type/file.rb:418
|
8621
7993
|
msgid "You cannot specify a remote recursion without a source"
|
8622
7994
|
msgstr ""
|
8623
7995
|
|
8624
|
-
#: ../lib/puppet/type/file.rb:
|
7996
|
+
#: ../lib/puppet/type/file.rb:420
|
8625
7997
|
msgid "You cannot specify source when using checksum 'none'"
|
8626
7998
|
msgstr ""
|
8627
7999
|
|
8628
|
-
#: ../lib/puppet/type/file.rb:
|
8000
|
+
#: ../lib/puppet/type/file.rb:423
|
8629
8001
|
msgid "You cannot specify content when using checksum '%{checksum_type}'"
|
8630
8002
|
msgstr ""
|
8631
8003
|
|
8632
|
-
#: ../lib/puppet/type/file.rb:
|
8004
|
+
#: ../lib/puppet/type/file.rb:426
|
8633
8005
|
msgid "Possible error: recurselimit is set but not recurse, no recursion will happen"
|
8634
8006
|
msgstr ""
|
8635
8007
|
|
8636
|
-
#: ../lib/puppet/type/file.rb:
|
8008
|
+
#: ../lib/puppet/type/file.rb:434
|
8637
8009
|
msgid "Checksum value '%{value}' is not a valid checksum type %{checksum}"
|
8638
8010
|
msgstr ""
|
8639
8011
|
|
8640
|
-
#: ../lib/puppet/type/file.rb:
|
8012
|
+
#: ../lib/puppet/type/file.rb:437
|
8641
8013
|
msgid "Checksum value is ignored unless content or source are specified"
|
8642
8014
|
msgstr ""
|
8643
8015
|
|
8644
|
-
#: ../lib/puppet/type/file.rb:
|
8016
|
+
#: ../lib/puppet/type/file.rb:475
|
8645
8017
|
msgid "Can not find filebucket for backups without a catalog"
|
8646
8018
|
msgstr ""
|
8647
8019
|
|
8648
|
-
#: ../lib/puppet/type/file.rb:
|
8020
|
+
#: ../lib/puppet/type/file.rb:480
|
8649
8021
|
msgid "Could not find filebucket %{backup} specified in backup"
|
8650
8022
|
msgstr ""
|
8651
8023
|
|
8652
|
-
#: ../lib/puppet/type/file.rb:
|
8024
|
+
#: ../lib/puppet/type/file.rb:778
|
8653
8025
|
msgid "Could not back up file of type %{current_type}"
|
8654
8026
|
msgstr ""
|
8655
8027
|
|
8656
|
-
#: ../lib/puppet/type/file.rb:
|
8028
|
+
#: ../lib/puppet/type/file.rb:793
|
8657
8029
|
msgid "Could not remove files of type %{current_type}"
|
8658
8030
|
msgstr ""
|
8659
8031
|
|
8660
8032
|
#. TRANSLATORS "source_permissions => ignore" should not be translated
|
8661
|
-
#: ../lib/puppet/type/file.rb:
|
8033
|
+
#: ../lib/puppet/type/file.rb:804
|
8662
8034
|
msgid "Copying owner/mode/group from the source file on Windows is not supported; use source_permissions => ignore."
|
8663
8035
|
msgstr ""
|
8664
8036
|
|
8665
8037
|
#. TRANSLATORS "stat" is a program name and should not be translated
|
8666
|
-
#: ../lib/puppet/type/file.rb:
|
8038
|
+
#: ../lib/puppet/type/file.rb:885 ../lib/puppet/type/tidy.rb:352
|
8667
8039
|
msgid "Could not stat; permission denied"
|
8668
8040
|
msgstr ""
|
8669
8041
|
|
8670
|
-
#: ../lib/puppet/type/file.rb:
|
8042
|
+
#: ../lib/puppet/type/file.rb:888
|
8671
8043
|
msgid "Could not stat; invalid pathname"
|
8672
8044
|
msgstr ""
|
8673
8045
|
|
8674
|
-
#: ../lib/puppet/type/file.rb:
|
8046
|
+
#: ../lib/puppet/type/file.rb:1016
|
8675
8047
|
msgid "Not removing directory; use 'force' to override"
|
8676
8048
|
msgstr ""
|
8677
8049
|
|
8678
8050
|
#. TRANSLATORS refers to a file which could not be backed up
|
8679
|
-
#: ../lib/puppet/type/file.rb:
|
8051
|
+
#: ../lib/puppet/type/file.rb:1041
|
8680
8052
|
msgid "Could not back up; will not remove"
|
8681
8053
|
msgstr ""
|
8682
8054
|
|
8683
|
-
#: ../lib/puppet/type/file.rb:
|
8684
|
-
msgid "File written to disk did not match checksum; discarding changes (%{content_checksum} vs %{
|
8055
|
+
#: ../lib/puppet/type/file.rb:1056
|
8056
|
+
msgid "File written to disk did not match desired checksum; discarding changes (%{content_checksum} vs %{desired_checksum})"
|
8685
8057
|
msgstr ""
|
8686
8058
|
|
8687
8059
|
#: ../lib/puppet/type/file/checksum.rb:20
|
@@ -8722,7 +8094,7 @@ msgid "Not managing symlink mode"
|
|
8722
8094
|
msgstr ""
|
8723
8095
|
|
8724
8096
|
#. TRANSLATORS "source_permissions" is a parameter name and should not be translated
|
8725
|
-
#: ../lib/puppet/type/file/source.rb:
|
8097
|
+
#: ../lib/puppet/type/file/source.rb:373
|
8726
8098
|
msgid "The `source_permissions` parameter is deprecated. Explicitly set `owner`, `group`, and `mode`."
|
8727
8099
|
msgstr ""
|
8728
8100
|
|
@@ -8746,36 +8118,36 @@ msgstr ""
|
|
8746
8118
|
msgid "Invalid GID %{gid}"
|
8747
8119
|
msgstr ""
|
8748
8120
|
|
8749
|
-
#: ../lib/puppet/type/package.rb:
|
8121
|
+
#: ../lib/puppet/type/package.rb:124 ../lib/puppet/type/package.rb:138
|
8750
8122
|
msgid "Could not update: %{detail}"
|
8751
8123
|
msgstr ""
|
8752
8124
|
|
8753
|
-
#: ../lib/puppet/type/package.rb:
|
8125
|
+
#: ../lib/puppet/type/package.rb:173
|
8754
8126
|
msgid "Could not get latest version: %{detail}"
|
8755
8127
|
msgstr ""
|
8756
8128
|
|
8757
|
-
#: ../lib/puppet/type/package.rb:
|
8129
|
+
#: ../lib/puppet/type/package.rb:273
|
8758
8130
|
msgid "Name must be a String not %{klass}"
|
8759
8131
|
msgstr ""
|
8760
8132
|
|
8761
|
-
#: ../lib/puppet/type/package.rb:
|
8133
|
+
#: ../lib/puppet/type/package.rb:419
|
8762
8134
|
msgid "Cannot have both `ensure => disabled` and `flavor`"
|
8763
8135
|
msgstr ""
|
8764
8136
|
|
8765
|
-
#: ../lib/puppet/type/package.rb:
|
8137
|
+
#: ../lib/puppet/type/package.rb:518
|
8766
8138
|
msgid "Cannot have both `enable_only => true` and `flavor`"
|
8767
8139
|
msgstr ""
|
8768
8140
|
|
8769
|
-
#: ../lib/puppet/type/package.rb:
|
8141
|
+
#: ../lib/puppet/type/package.rb:521
|
8770
8142
|
msgid "Cannot have both `ensure => disabled` and `enable_only => true`"
|
8771
8143
|
msgstr ""
|
8772
8144
|
|
8773
|
-
#: ../lib/puppet/type/package.rb:
|
8145
|
+
#: ../lib/puppet/type/package.rb:682
|
8774
8146
|
msgid "Invalid hold value %{value}. %{doc}"
|
8775
8147
|
msgstr ""
|
8776
8148
|
|
8777
|
-
#: ../lib/puppet/type/package.rb:
|
8778
|
-
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\"]"
|
8779
8151
|
msgstr ""
|
8780
8152
|
|
8781
8153
|
#: ../lib/puppet/type/resources.rb:15
|
@@ -8830,11 +8202,19 @@ msgstr ""
|
|
8830
8202
|
msgid "%{value} is not a valid day of the week"
|
8831
8203
|
msgstr ""
|
8832
8204
|
|
8833
|
-
#: ../lib/puppet/type/service.rb:
|
8205
|
+
#: ../lib/puppet/type/service.rb:96
|
8834
8206
|
msgid "Setting enable to %{value} is only supported on Microsoft Windows."
|
8835
8207
|
msgstr ""
|
8836
8208
|
|
8837
|
-
#: ../lib/puppet/type/service.rb:
|
8209
|
+
#: ../lib/puppet/type/service.rb:166
|
8210
|
+
msgid "The 'logonaccount' parameter is mandatory when setting 'logonpassword'."
|
8211
|
+
msgstr ""
|
8212
|
+
|
8213
|
+
#: ../lib/puppet/type/service.rb:167 ../lib/puppet/type/user.rb:271
|
8214
|
+
msgid "Passwords cannot include ':'"
|
8215
|
+
msgstr ""
|
8216
|
+
|
8217
|
+
#: ../lib/puppet/type/service.rb:304
|
8838
8218
|
msgid "\"%{value}\" is not a positive integer: the timeout parameter must be specified as a positive integer"
|
8839
8219
|
msgstr ""
|
8840
8220
|
|
@@ -8869,85 +8249,81 @@ msgstr ""
|
|
8869
8249
|
msgid "File does not exist"
|
8870
8250
|
msgstr ""
|
8871
8251
|
|
8872
|
-
#: ../lib/puppet/type/user.rb:
|
8252
|
+
#: ../lib/puppet/type/user.rb:182
|
8873
8253
|
msgid "Could not find group(s) %{groups}"
|
8874
8254
|
msgstr ""
|
8875
8255
|
|
8876
|
-
#: ../lib/puppet/type/user.rb:
|
8877
|
-
msgid "Passwords cannot include ':'"
|
8878
|
-
msgstr ""
|
8879
|
-
|
8880
|
-
#: ../lib/puppet/type/user.rb:276
|
8256
|
+
#: ../lib/puppet/type/user.rb:291
|
8881
8257
|
msgid "Password minimum age must be provided as a number."
|
8882
8258
|
msgstr ""
|
8883
8259
|
|
8884
|
-
#: ../lib/puppet/type/user.rb:
|
8260
|
+
#: ../lib/puppet/type/user.rb:310
|
8885
8261
|
msgid "Password maximum age must be provided as a number."
|
8886
8262
|
msgstr ""
|
8887
8263
|
|
8888
|
-
#: ../lib/puppet/type/user.rb:
|
8264
|
+
#: ../lib/puppet/type/user.rb:341
|
8889
8265
|
msgid "Group names must be provided, not GID numbers."
|
8890
8266
|
msgstr ""
|
8891
8267
|
|
8892
|
-
#: ../lib/puppet/type/user.rb:
|
8268
|
+
#: ../lib/puppet/type/user.rb:343
|
8893
8269
|
msgid "Group names must be provided as an array, not a comma-separated list."
|
8894
8270
|
msgstr ""
|
8895
8271
|
|
8896
|
-
#: ../lib/puppet/type/user.rb:
|
8272
|
+
#: ../lib/puppet/type/user.rb:344
|
8897
8273
|
msgid "Group names must not be empty. If you want to specify \"no groups\" pass an empty array"
|
8898
8274
|
msgstr ""
|
8899
8275
|
|
8900
|
-
#: ../lib/puppet/type/user.rb:
|
8276
|
+
#: ../lib/puppet/type/user.rb:437
|
8901
8277
|
msgid "User provider %{name} can not manage home directories"
|
8902
8278
|
msgstr ""
|
8903
8279
|
|
8904
8280
|
#. TRANSLATORS YYYY-MM-DD represents a date with a four-digit year, a two-digit month, and a two-digit day,
|
8905
8281
|
#. TRANSLATORS separated by dashes.
|
8906
|
-
#: ../lib/puppet/type/user.rb:
|
8282
|
+
#: ../lib/puppet/type/user.rb:454
|
8907
8283
|
msgid "Expiry dates must be YYYY-MM-DD or the string \"absent\""
|
8908
8284
|
msgstr ""
|
8909
8285
|
|
8910
|
-
#: ../lib/puppet/type/user.rb:
|
8286
|
+
#: ../lib/puppet/type/user.rb:521
|
8911
8287
|
msgid "Role names must be provided, not numbers"
|
8912
8288
|
msgstr ""
|
8913
8289
|
|
8914
|
-
#: ../lib/puppet/type/user.rb:
|
8290
|
+
#: ../lib/puppet/type/user.rb:523
|
8915
8291
|
msgid "Role names must be provided as an array, not a comma-separated list"
|
8916
8292
|
msgstr ""
|
8917
8293
|
|
8918
|
-
#: ../lib/puppet/type/user.rb:
|
8294
|
+
#: ../lib/puppet/type/user.rb:560
|
8919
8295
|
msgid "Auth names must be provided, not numbers"
|
8920
8296
|
msgstr ""
|
8921
8297
|
|
8922
|
-
#: ../lib/puppet/type/user.rb:
|
8298
|
+
#: ../lib/puppet/type/user.rb:562
|
8923
8299
|
msgid "Auth names must be provided as an array, not a comma-separated list"
|
8924
8300
|
msgstr ""
|
8925
8301
|
|
8926
|
-
#: ../lib/puppet/type/user.rb:
|
8302
|
+
#: ../lib/puppet/type/user.rb:586
|
8927
8303
|
msgid "Profile names must be provided, not numbers"
|
8928
8304
|
msgstr ""
|
8929
8305
|
|
8930
|
-
#: ../lib/puppet/type/user.rb:
|
8306
|
+
#: ../lib/puppet/type/user.rb:588
|
8931
8307
|
msgid "Profile names must be provided as an array, not a comma-separated list"
|
8932
8308
|
msgstr ""
|
8933
8309
|
|
8934
|
-
#: ../lib/puppet/type/user.rb:
|
8310
|
+
#: ../lib/puppet/type/user.rb:699
|
8935
8311
|
msgid "Ssh_authorized_key type is not available. Cannot purge SSH keys."
|
8936
8312
|
msgstr ""
|
8937
8313
|
|
8938
|
-
#: ../lib/puppet/type/user.rb:
|
8314
|
+
#: ../lib/puppet/type/user.rb:737
|
8939
8315
|
msgid "Each entry for purge_ssh_keys must be a string, not a %{klass}"
|
8940
8316
|
msgstr ""
|
8941
8317
|
|
8942
|
-
#: ../lib/puppet/type/user.rb:
|
8318
|
+
#: ../lib/puppet/type/user.rb:740
|
8943
8319
|
msgid "Paths to keyfiles must be absolute, not %{entry}"
|
8944
8320
|
msgstr ""
|
8945
8321
|
|
8946
|
-
#: ../lib/puppet/type/user.rb:
|
8322
|
+
#: ../lib/puppet/type/user.rb:744
|
8947
8323
|
msgid "purge_ssh_keys must be true, false, or an array of file names, not %{value}"
|
8948
8324
|
msgstr ""
|
8949
8325
|
|
8950
|
-
#: ../lib/puppet/type/user.rb:
|
8326
|
+
#: ../lib/puppet/type/user.rb:772
|
8951
8327
|
msgid "Class name must be provided."
|
8952
8328
|
msgstr ""
|
8953
8329
|
|
@@ -8998,23 +8374,23 @@ msgstr ""
|
|
8998
8374
|
msgid "Couldn't expand PATH containing a ~ character; ignoring PATH element '%{dir}'."
|
8999
8375
|
msgstr ""
|
9000
8376
|
|
9001
|
-
#: ../lib/puppet/util.rb:
|
8377
|
+
#: ../lib/puppet/util.rb:318
|
9002
8378
|
msgid "unknown platform %{platform} in absolute_path"
|
9003
8379
|
msgstr ""
|
9004
8380
|
|
9005
|
-
#: ../lib/puppet/util.rb:
|
8381
|
+
#: ../lib/puppet/util.rb:353
|
9006
8382
|
msgid "Failed to convert '%{path}' to URI: %{detail}"
|
9007
8383
|
msgstr ""
|
9008
8384
|
|
9009
|
-
#: ../lib/puppet/util.rb:
|
8385
|
+
#: ../lib/puppet/util.rb:453
|
9010
8386
|
msgid "path may not be nil"
|
9011
8387
|
msgstr ""
|
9012
8388
|
|
9013
|
-
#: ../lib/puppet/util.rb:
|
8389
|
+
#: ../lib/puppet/util.rb:621
|
9014
8390
|
msgid "replace_file requires a block"
|
9015
8391
|
msgstr ""
|
9016
8392
|
|
9017
|
-
#: ../lib/puppet/util.rb:
|
8393
|
+
#: ../lib/puppet/util.rb:625
|
9018
8394
|
msgid "replace_file default_mode: %{default_mode} is invalid"
|
9019
8395
|
msgstr ""
|
9020
8396
|
|
@@ -9046,11 +8422,11 @@ msgstr ""
|
|
9046
8422
|
msgid "Failed to abandon a child process contract"
|
9047
8423
|
msgstr ""
|
9048
8424
|
|
9049
|
-
#: ../lib/puppet/util/autoload.rb:
|
8425
|
+
#: ../lib/puppet/util/autoload.rb:83
|
9050
8426
|
msgid "Could not autoload %{name}: %{detail}"
|
9051
8427
|
msgstr ""
|
9052
8428
|
|
9053
|
-
#: ../lib/puppet/util/autoload.rb:
|
8429
|
+
#: ../lib/puppet/util/autoload.rb:184
|
9054
8430
|
msgid "Autoload paths cannot be fully qualified"
|
9055
8431
|
msgstr ""
|
9056
8432
|
|
@@ -9078,15 +8454,15 @@ msgstr ""
|
|
9078
8454
|
msgid "Filebucketed %{f} to %{filebucket} with sum %{sum}"
|
9079
8455
|
msgstr ""
|
9080
8456
|
|
9081
|
-
#: ../lib/puppet/util/character_encoding.rb:
|
8457
|
+
#: ../lib/puppet/util/character_encoding.rb:23
|
9082
8458
|
msgid "%{value} is already labeled as UTF-8 but this encoding is invalid. It cannot be transcoded by Puppet."
|
9083
8459
|
msgstr ""
|
9084
8460
|
|
9085
|
-
#: ../lib/puppet/util/character_encoding.rb:
|
8461
|
+
#: ../lib/puppet/util/character_encoding.rb:45
|
9086
8462
|
msgid "%{error}: %{value} cannot be transcoded by Puppet."
|
9087
8463
|
msgstr ""
|
9088
8464
|
|
9089
|
-
#: ../lib/puppet/util/character_encoding.rb:
|
8465
|
+
#: ../lib/puppet/util/character_encoding.rb:73
|
9090
8466
|
msgid "%{value} is not valid UTF-8 and result of overriding encoding would be invalid."
|
9091
8467
|
msgstr ""
|
9092
8468
|
|
@@ -9263,37 +8639,6 @@ msgstr ""
|
|
9263
8639
|
msgid "Trollop::die can only be called after Trollop::options"
|
9264
8640
|
msgstr ""
|
9265
8641
|
|
9266
|
-
#: ../lib/puppet/util/connection.rb:28
|
9267
|
-
msgid "Selected server from the %{setting} setting: %{server}"
|
9268
|
-
msgstr ""
|
9269
|
-
|
9270
|
-
#. TRANSLATORS 'server_list' is the name of a setting and should not be translated
|
9271
|
-
#: ../lib/puppet/util/connection.rb:35
|
9272
|
-
msgid "Dynamically-bound server lookup failed; using first entry from the `server_list` setting: %{server}"
|
9273
|
-
msgstr ""
|
9274
|
-
|
9275
|
-
#: ../lib/puppet/util/connection.rb:39
|
9276
|
-
msgid "Dynamically-bound server lookup failed, falling back to %{setting} setting: %{server}"
|
9277
|
-
msgstr ""
|
9278
|
-
|
9279
|
-
#: ../lib/puppet/util/connection.rb:60
|
9280
|
-
msgid "Selected port from the %{setting} setting: %{port}"
|
9281
|
-
msgstr ""
|
9282
|
-
|
9283
|
-
#. TRANSLATORS 'server_list' is the name of a setting and should not be translated
|
9284
|
-
#: ../lib/puppet/util/connection.rb:71
|
9285
|
-
msgid "Dynamically-bound port lookup failed; using first entry from the `server_list` setting: %{port}"
|
9286
|
-
msgstr ""
|
9287
|
-
|
9288
|
-
#. TRANSLATORS 'masterport' is the name of a setting and should not be translated
|
9289
|
-
#: ../lib/puppet/util/connection.rb:75
|
9290
|
-
msgid "Dynamically-bound port lookup failed; falling back to `masterport` setting: %{port}"
|
9291
|
-
msgstr ""
|
9292
|
-
|
9293
|
-
#: ../lib/puppet/util/connection.rb:80
|
9294
|
-
msgid "Dynamically-bound port lookup failed; falling back to %{setting} setting: %{port}"
|
9295
|
-
msgstr ""
|
9296
|
-
|
9297
8642
|
#: ../lib/puppet/util/diff.rb:30
|
9298
8643
|
msgid "Cannot provide diff without the diff/lcs Ruby library"
|
9299
8644
|
msgstr ""
|
@@ -9326,23 +8671,23 @@ msgstr ""
|
|
9326
8671
|
msgid "%{klass} failed with error %{error_type}: %{detail}"
|
9327
8672
|
msgstr ""
|
9328
8673
|
|
9329
|
-
#: ../lib/puppet/util/execution.rb:
|
8674
|
+
#: ../lib/puppet/util/execution.rb:185
|
9330
8675
|
msgid "Working directory %{cwd} does not exist!"
|
9331
8676
|
msgstr ""
|
9332
8677
|
|
9333
|
-
#: ../lib/puppet/util/execution.rb:
|
8678
|
+
#: ../lib/puppet/util/execution.rb:277
|
9334
8679
|
msgid "Could not get output"
|
9335
8680
|
msgstr ""
|
9336
8681
|
|
9337
|
-
#: ../lib/puppet/util/execution.rb:
|
8682
|
+
#: ../lib/puppet/util/execution.rb:286
|
9338
8683
|
msgid "Execution of '%{str}' returned %{exit_status}: %{output}"
|
9339
8684
|
msgstr ""
|
9340
8685
|
|
9341
|
-
#: ../lib/puppet/util/execution.rb:
|
8686
|
+
#: ../lib/puppet/util/execution.rb:363
|
9342
8687
|
msgid "Could not execute posix command: %{detail}"
|
9343
8688
|
msgstr ""
|
9344
8689
|
|
9345
|
-
#: ../lib/puppet/util/execution.rb:
|
8690
|
+
#: ../lib/puppet/util/execution.rb:411
|
9346
8691
|
msgid "Waiting for output; will sleep %{time_to_sleep} seconds"
|
9347
8692
|
msgstr ""
|
9348
8693
|
|
@@ -9454,10 +8799,6 @@ msgstr ""
|
|
9454
8799
|
msgid "Could not write crontab for %{path}: %{detail}"
|
9455
8800
|
msgstr ""
|
9456
8801
|
|
9457
|
-
#: ../lib/puppet/util/http_proxy.rb:215
|
9458
|
-
msgid "Too many HTTP redirections for %{uri}"
|
9459
|
-
msgstr ""
|
9460
|
-
|
9461
8802
|
#: ../lib/puppet/util/inifile.rb:139
|
9462
8803
|
msgid "Cannot read nonexistent file %{file}"
|
9463
8804
|
msgstr ""
|
@@ -9606,6 +8947,10 @@ msgstr ""
|
|
9606
8947
|
msgid "Duplicate device found at %{file_error_location}, already found at %{device_error_location}"
|
9607
8948
|
msgstr ""
|
9608
8949
|
|
8950
|
+
#: ../lib/puppet/util/network_device/config.rb:71
|
8951
|
+
msgid "Invalid entry at %{error_location}: %{file_text}"
|
8952
|
+
msgstr ""
|
8953
|
+
|
9609
8954
|
#: ../lib/puppet/util/network_device/config.rb:77
|
9610
8955
|
msgid "Configuration error: Cannot read %{file}; cannot serve"
|
9611
8956
|
msgstr ""
|
@@ -9662,7 +9007,7 @@ msgstr ""
|
|
9662
9007
|
msgid "Could not create feature %{name}: %{detail}"
|
9663
9008
|
msgstr ""
|
9664
9009
|
|
9665
|
-
#: ../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
|
9666
9011
|
msgid "RDOC SUPPORT FOR MANIFEST HAS BEEN REMOVED - See PUP-3638"
|
9667
9012
|
msgstr ""
|
9668
9013
|
|
@@ -9866,14 +9211,6 @@ msgstr ""
|
|
9866
9211
|
msgid "Cannot create group if user '%{name}' exists."
|
9867
9212
|
msgstr ""
|
9868
9213
|
|
9869
|
-
#: ../lib/puppet/util/windows/api_types.rb:72
|
9870
|
-
msgid "Unable to read wide strings with %{null_terminator} terminal nulls"
|
9871
|
-
msgstr ""
|
9872
|
-
|
9873
|
-
#: ../lib/puppet/util/windows/api_types.rb:203
|
9874
|
-
msgid "Bad GUID format."
|
9875
|
-
msgstr ""
|
9876
|
-
|
9877
9214
|
#: ../lib/puppet/util/windows/com.rb:17
|
9878
9215
|
msgid "%{name} failed (hresult %{result})."
|
9879
9216
|
msgstr ""
|
@@ -9886,11 +9223,11 @@ msgstr ""
|
|
9886
9223
|
msgid "CoCreateInstance failed (%{klass})."
|
9887
9224
|
msgstr ""
|
9888
9225
|
|
9889
|
-
#: ../lib/puppet/util/windows/error.rb:
|
9226
|
+
#: ../lib/puppet/util/windows/error.rb:43
|
9890
9227
|
msgid "FormatMessageW could not format code %{code}"
|
9891
9228
|
msgstr ""
|
9892
9229
|
|
9893
|
-
#: ../lib/puppet/util/windows/error.rb:
|
9230
|
+
#: ../lib/puppet/util/windows/error.rb:49
|
9894
9231
|
msgid "FormatMessageW failed to allocate buffer for code %{code}"
|
9895
9232
|
msgstr ""
|
9896
9233
|
|
@@ -9913,28 +9250,32 @@ msgstr ""
|
|
9913
9250
|
msgid "(Win32 error: %{detail})"
|
9914
9251
|
msgstr ""
|
9915
9252
|
|
9916
|
-
#: ../lib/puppet/util/windows/file.rb:
|
9253
|
+
#: ../lib/puppet/util/windows/file.rb:117
|
9917
9254
|
msgid "Failed to set file attributes"
|
9918
9255
|
msgstr ""
|
9919
9256
|
|
9920
|
-
#: ../lib/puppet/util/windows/file.rb:
|
9257
|
+
#: ../lib/puppet/util/windows/file.rb:180
|
9921
9258
|
msgid "out_buffer is required"
|
9922
9259
|
msgstr ""
|
9923
9260
|
|
9924
|
-
#: ../lib/puppet/util/windows/file.rb:
|
9261
|
+
#: ../lib/puppet/util/windows/file.rb:253
|
9925
9262
|
msgid "Failed to call GetLongPathName"
|
9926
9263
|
msgstr ""
|
9927
9264
|
|
9928
|
-
#: ../lib/puppet/util/windows/principal.rb:
|
9265
|
+
#: ../lib/puppet/util/windows/principal.rb:67 ../lib/puppet/util/windows/principal.rb:74
|
9929
9266
|
msgid "Failed to call LookupAccountNameW with account: %{account_name}"
|
9930
9267
|
msgstr ""
|
9931
9268
|
|
9932
9269
|
#. TRANSLATORS `lookup_account_sid` is a variable name and should not be translated
|
9933
|
-
#: ../lib/puppet/util/windows/principal.rb:
|
9270
|
+
#: ../lib/puppet/util/windows/principal.rb:97
|
9934
9271
|
msgid "Byte array for lookup_account_sid must not be nil and must be at least 1 byte long"
|
9935
9272
|
msgstr ""
|
9936
9273
|
|
9937
|
-
#: ../lib/puppet/util/windows/principal.rb:
|
9274
|
+
#: ../lib/puppet/util/windows/principal.rb:114
|
9275
|
+
msgid "Byte array for lookup_account_sid is invalid: %{sid_bytes}"
|
9276
|
+
msgstr ""
|
9277
|
+
|
9278
|
+
#: ../lib/puppet/util/windows/principal.rb:122 ../lib/puppet/util/windows/principal.rb:129
|
9938
9279
|
msgid "Failed to call LookupAccountSidW with bytes: %{sid_bytes}"
|
9939
9280
|
msgstr ""
|
9940
9281
|
|
@@ -9970,39 +9311,39 @@ msgstr ""
|
|
9970
9311
|
msgid "Failed to open registry key '%{key}\\%{path}'"
|
9971
9312
|
msgstr ""
|
9972
9313
|
|
9973
|
-
#: ../lib/puppet/util/windows/registry.rb:
|
9314
|
+
#: ../lib/puppet/util/windows/registry.rb:133
|
9974
9315
|
msgid "Failed to enumerate %{key} registry keys at index %{index}"
|
9975
9316
|
msgstr ""
|
9976
9317
|
|
9977
|
-
#: ../lib/puppet/util/windows/registry.rb:
|
9318
|
+
#: ../lib/puppet/util/windows/registry.rb:167
|
9978
9319
|
msgid "Failed to enumerate %{key} registry values at index %{index}"
|
9979
9320
|
msgstr ""
|
9980
9321
|
|
9981
|
-
#: ../lib/puppet/util/windows/registry.rb:
|
9322
|
+
#: ../lib/puppet/util/windows/registry.rb:197
|
9982
9323
|
msgid "Failed to query registry %{key} for sizes"
|
9983
9324
|
msgstr ""
|
9984
9325
|
|
9985
|
-
#: ../lib/puppet/util/windows/registry.rb:
|
9326
|
+
#: ../lib/puppet/util/windows/registry.rb:233
|
9986
9327
|
msgid "Type mismatch (expect %{rtype} but %{type} present)"
|
9987
9328
|
msgstr ""
|
9988
9329
|
|
9989
|
-
#: ../lib/puppet/util/windows/registry.rb:
|
9330
|
+
#: ../lib/puppet/util/windows/registry.rb:255
|
9990
9331
|
msgid "Type %{type} is not supported."
|
9991
9332
|
msgstr ""
|
9992
9333
|
|
9993
|
-
#: ../lib/puppet/util/windows/registry.rb:
|
9334
|
+
#: ../lib/puppet/util/windows/registry.rb:260
|
9994
9335
|
msgid "A value in the registry key %{parent_key_name}%{key} is corrupt or invalid"
|
9995
9336
|
msgstr ""
|
9996
9337
|
|
9997
|
-
#: ../lib/puppet/util/windows/registry.rb:
|
9338
|
+
#: ../lib/puppet/util/windows/registry.rb:282
|
9998
9339
|
msgid "Failed to read registry value %{value} at %{key}"
|
9999
9340
|
msgstr ""
|
10000
9341
|
|
10001
|
-
#: ../lib/puppet/util/windows/registry.rb:
|
9342
|
+
#: ../lib/puppet/util/windows/registry.rb:300
|
10002
9343
|
msgid "Failed to delete registry value %{name} at %{key}"
|
10003
9344
|
msgstr ""
|
10004
9345
|
|
10005
|
-
#: ../lib/puppet/util/windows/registry.rb:
|
9346
|
+
#: ../lib/puppet/util/windows/registry.rb:315
|
10006
9347
|
msgid "Failed to delete registry key %{name} at %{key}"
|
10007
9348
|
msgstr ""
|
10008
9349
|
|
@@ -10044,7 +9385,7 @@ msgstr ""
|
|
10044
9385
|
msgid "An attempt to set mode %{mode} on item %{path} would result in the group, SYSTEM, to have less than Full Control rights. This attempt has been corrected to Full Control"
|
10045
9386
|
msgstr ""
|
10046
9387
|
|
10047
|
-
#: ../lib/puppet/util/windows/security.rb:433 ../lib/puppet/util/windows/security.rb:450 ../lib/puppet/util/windows/sid.rb:155 ../lib/puppet/util/windows/sid.rb:217 ../lib/puppet/util/windows/user.rb:
|
9388
|
+
#: ../lib/puppet/util/windows/security.rb:433 ../lib/puppet/util/windows/security.rb:450 ../lib/puppet/util/windows/sid.rb:155 ../lib/puppet/util/windows/sid.rb:217 ../lib/puppet/util/windows/user.rb:59
|
10048
9389
|
msgid "Invalid SID"
|
10049
9390
|
msgstr ""
|
10050
9391
|
|
@@ -10084,123 +9425,119 @@ msgstr ""
|
|
10084
9425
|
msgid "Failed to set security information"
|
10085
9426
|
msgstr ""
|
10086
9427
|
|
10087
|
-
#: ../lib/puppet/util/windows/service.rb:
|
9428
|
+
#: ../lib/puppet/util/windows/service.rb:44
|
10088
9429
|
msgid "Starting the %{service_name} service. Timeout set to: %{timeout} seconds"
|
10089
9430
|
msgstr ""
|
10090
9431
|
|
10091
|
-
#: ../lib/puppet/util/windows/service.rb:
|
9432
|
+
#: ../lib/puppet/util/windows/service.rb:54
|
10092
9433
|
msgid "Failed to start the service"
|
10093
9434
|
msgstr ""
|
10094
9435
|
|
10095
|
-
#: ../lib/puppet/util/windows/service.rb:
|
9436
|
+
#: ../lib/puppet/util/windows/service.rb:58
|
10096
9437
|
msgid "Successfully started the %{service_name} service"
|
10097
9438
|
msgstr ""
|
10098
9439
|
|
10099
|
-
#: ../lib/puppet/util/windows/service.rb:
|
9440
|
+
#: ../lib/puppet/util/windows/service.rb:67
|
10100
9441
|
msgid "Stopping the %{service_name} service. Timeout set to: %{timeout} seconds"
|
10101
9442
|
msgstr ""
|
10102
9443
|
|
10103
|
-
#: ../lib/puppet/util/windows/service.rb:
|
9444
|
+
#: ../lib/puppet/util/windows/service.rb:75
|
10104
9445
|
msgid "Successfully stopped the %{service_name} service"
|
10105
9446
|
msgstr ""
|
10106
9447
|
|
10107
|
-
#: ../lib/puppet/util/windows/service.rb:
|
9448
|
+
#: ../lib/puppet/util/windows/service.rb:84
|
10108
9449
|
msgid "Resuming the %{service_name} service. Timeout set to: %{timeout} seconds"
|
10109
9450
|
msgstr ""
|
10110
9451
|
|
10111
|
-
#: ../lib/puppet/util/windows/service.rb:
|
9452
|
+
#: ../lib/puppet/util/windows/service.rb:100
|
10112
9453
|
msgid "Successfully resumed the %{service_name} service"
|
10113
9454
|
msgstr ""
|
10114
9455
|
|
10115
|
-
#: ../lib/puppet/util/windows/service.rb:
|
9456
|
+
#: ../lib/puppet/util/windows/service.rb:116
|
10116
9457
|
msgid "Unknown Service state '%{current_state}' for '%{service_name}'"
|
10117
9458
|
msgstr ""
|
10118
9459
|
|
10119
|
-
#: ../lib/puppet/util/windows/service.rb:
|
9460
|
+
#: ../lib/puppet/util/windows/service.rb:143
|
10120
9461
|
msgid "Unknown start type '%{start_type}' for '%{service_name}'"
|
10121
9462
|
msgstr ""
|
10122
9463
|
|
10123
|
-
#: ../lib/puppet/util/windows/service.rb:
|
10124
|
-
msgid "Unknown start type %{start_type}"
|
10125
|
-
msgstr ""
|
10126
|
-
|
10127
|
-
#: ../lib/puppet/util/windows/service.rb:474
|
9464
|
+
#: ../lib/puppet/util/windows/service.rb:193
|
10128
9465
|
msgid "Failed to update service configuration"
|
10129
9466
|
msgstr ""
|
10130
9467
|
|
10131
|
-
#: ../lib/puppet/util/windows/service.rb:
|
9468
|
+
#: ../lib/puppet/util/windows/service.rb:258
|
10132
9469
|
msgid "Failed to fetch services"
|
10133
9470
|
msgstr ""
|
10134
9471
|
|
10135
|
-
#: ../lib/puppet/util/windows/service.rb:
|
9472
|
+
#: ../lib/puppet/util/windows/service.rb:307
|
10136
9473
|
msgid "Failed to open a handle to the service"
|
10137
9474
|
msgstr ""
|
10138
9475
|
|
10139
|
-
#: ../lib/puppet/util/windows/service.rb:
|
9476
|
+
#: ../lib/puppet/util/windows/service.rb:324
|
10140
9477
|
msgid "Failed to open a handle to the service control manager"
|
10141
9478
|
msgstr ""
|
10142
9479
|
|
10143
|
-
#: ../lib/puppet/util/windows/service.rb:
|
9480
|
+
#: ../lib/puppet/util/windows/service.rb:347
|
10144
9481
|
msgid "The service is already in the %{final_state} state. No further work needs to be done."
|
10145
9482
|
msgstr ""
|
10146
9483
|
|
10147
|
-
#: ../lib/puppet/util/windows/service.rb:
|
9484
|
+
#: ../lib/puppet/util/windows/service.rb:359
|
10148
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."
|
10149
9486
|
msgstr ""
|
10150
9487
|
|
10151
|
-
#: ../lib/puppet/util/windows/service.rb:
|
9488
|
+
#: ../lib/puppet/util/windows/service.rb:370
|
10152
9489
|
msgid "There is already a pending transition to the %{final_state} state for the %{service_name} service."
|
10153
9490
|
msgstr ""
|
10154
9491
|
|
10155
|
-
#: ../lib/puppet/util/windows/service.rb:
|
9492
|
+
#: ../lib/puppet/util/windows/service.rb:386
|
10156
9493
|
msgid "The service is in the %{pending_state} state, which is an unsafe pending state."
|
10157
9494
|
msgstr ""
|
10158
9495
|
|
10159
|
-
#: ../lib/puppet/util/windows/service.rb:
|
9496
|
+
#: ../lib/puppet/util/windows/service.rb:391
|
10160
9497
|
msgid "Transitioning the %{service_name} service from %{initial_state} to %{final_state}"
|
10161
9498
|
msgstr ""
|
10162
9499
|
|
10163
|
-
#: ../lib/puppet/util/windows/service.rb:
|
9500
|
+
#: ../lib/puppet/util/windows/service.rb:395
|
10164
9501
|
msgid "Waiting for the transition to finish"
|
10165
9502
|
msgstr ""
|
10166
9503
|
|
10167
|
-
#: ../lib/puppet/util/windows/service.rb:
|
9504
|
+
#: ../lib/puppet/util/windows/service.rb:400
|
10168
9505
|
msgid "Failed to transition the %{service_name} service to the %{final_state} state. Detail: %{detail}"
|
10169
9506
|
msgstr ""
|
10170
9507
|
|
10171
|
-
#: ../lib/puppet/util/windows/service.rb:
|
9508
|
+
#: ../lib/puppet/util/windows/service.rb:439 ../lib/puppet/util/windows/service.rb:475
|
10172
9509
|
msgid "Service query failed"
|
10173
9510
|
msgstr ""
|
10174
9511
|
|
10175
|
-
#: ../lib/puppet/util/windows/service.rb:
|
9512
|
+
#: ../lib/puppet/util/windows/service.rb:518
|
10176
9513
|
msgid "Service query for %{parameter_name} failed"
|
10177
9514
|
msgstr ""
|
10178
9515
|
|
10179
|
-
#: ../lib/puppet/util/windows/service.rb:
|
9516
|
+
#: ../lib/puppet/util/windows/service.rb:541
|
10180
9517
|
msgid "Failed to update service %{change} configuration"
|
10181
9518
|
msgstr ""
|
10182
9519
|
|
10183
|
-
#: ../lib/puppet/util/windows/service.rb:
|
9520
|
+
#: ../lib/puppet/util/windows/service.rb:568
|
10184
9521
|
msgid "Failed to send the %{control_signal} signal to the service. Its current state is %{current_state}. Reason for failure:"
|
10185
9522
|
msgstr ""
|
10186
9523
|
|
10187
|
-
#: ../lib/puppet/util/windows/service.rb:
|
9524
|
+
#: ../lib/puppet/util/windows/service.rb:603
|
10188
9525
|
msgid "The service transitioned to the %{pending_state} state."
|
10189
9526
|
msgstr ""
|
10190
9527
|
|
10191
|
-
#: ../lib/puppet/util/windows/service.rb:
|
9528
|
+
#: ../lib/puppet/util/windows/service.rb:617
|
10192
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}."
|
10193
9530
|
msgstr ""
|
10194
9531
|
|
10195
|
-
#: ../lib/puppet/util/windows/service.rb:
|
9532
|
+
#: ../lib/puppet/util/windows/service.rb:632
|
10196
9533
|
msgid "Waiting for the pending transition to the %{final_state} state to finish."
|
10197
9534
|
msgstr ""
|
10198
9535
|
|
10199
|
-
#: ../lib/puppet/util/windows/service.rb:
|
9536
|
+
#: ../lib/puppet/util/windows/service.rb:646
|
10200
9537
|
msgid "Unexpected transition to the %{current_state} state while waiting for the pending transition from %{pending_state} to %{final_state} to finish."
|
10201
9538
|
msgstr ""
|
10202
9539
|
|
10203
|
-
#: ../lib/puppet/util/windows/service.rb:
|
9540
|
+
#: ../lib/puppet/util/windows/service.rb:660
|
10204
9541
|
msgid "Timed out while waiting for the pending transition from %{pending_state} to %{final_state} to finish. The current state is %{current_state}."
|
10205
9542
|
msgstr ""
|
10206
9543
|
|
@@ -10220,96 +9557,92 @@ msgstr ""
|
|
10220
9557
|
msgid "Failed to convert string SID: %{string_sid}"
|
10221
9558
|
msgstr ""
|
10222
9559
|
|
10223
|
-
#: ../lib/puppet/util/windows/user.rb:
|
9560
|
+
#: ../lib/puppet/util/windows/user.rb:54
|
10224
9561
|
msgid "Failed to create administrators SID"
|
10225
9562
|
msgstr ""
|
10226
9563
|
|
10227
|
-
#: ../lib/puppet/util/windows/user.rb:
|
9564
|
+
#: ../lib/puppet/util/windows/user.rb:64
|
10228
9565
|
msgid "Failed to check membership"
|
10229
9566
|
msgstr ""
|
10230
9567
|
|
10231
|
-
#: ../lib/puppet/util/windows/user.rb:
|
9568
|
+
#: ../lib/puppet/util/windows/user.rb:104
|
10232
9569
|
msgid "Failed to logon user %{name}"
|
10233
9570
|
msgstr ""
|
10234
9571
|
|
10235
|
-
#: ../lib/puppet/util/windows/user.rb:
|
9572
|
+
#: ../lib/puppet/util/windows/user.rb:135
|
10236
9573
|
msgid "Failed to load user profile %{user}"
|
10237
9574
|
msgstr ""
|
10238
9575
|
|
10239
|
-
#: ../lib/puppet/util/windows/user.rb:
|
9576
|
+
#: ../lib/puppet/util/windows/user.rb:141
|
10240
9577
|
msgid "Failed to unload user profile %{user}"
|
10241
9578
|
msgstr ""
|
10242
9579
|
|
10243
|
-
#: ../lib/puppet/
|
10244
|
-
msgid "Puppet::Util::Yaml.load_file is deprecated. Use safe_load_file instead."
|
10245
|
-
msgstr ""
|
10246
|
-
|
10247
|
-
#: ../lib/puppet/x509/cert_provider.rb:39
|
9580
|
+
#: ../lib/puppet/x509/cert_provider.rb:45
|
10248
9581
|
msgid "Failed to save CA certificates to '%{capath}'"
|
10249
9582
|
msgstr ""
|
10250
9583
|
|
10251
|
-
#: ../lib/puppet/x509/cert_provider.rb:
|
9584
|
+
#: ../lib/puppet/x509/cert_provider.rb:59
|
10252
9585
|
msgid "The CA certificates are missing from '%{path}'"
|
10253
9586
|
msgstr ""
|
10254
9587
|
|
10255
|
-
#: ../lib/puppet/x509/cert_provider.rb:
|
9588
|
+
#: ../lib/puppet/x509/cert_provider.rb:63
|
10256
9589
|
msgid "Failed to load CA certificates from '%{capath}'"
|
10257
9590
|
msgstr ""
|
10258
9591
|
|
10259
9592
|
#. TRANSLATORS 'PEM' is an acronym and shouldn't be translated
|
10260
|
-
#: ../lib/puppet/x509/cert_provider.rb:
|
9593
|
+
#: ../lib/puppet/x509/cert_provider.rb:75
|
10261
9594
|
msgid "Failed to parse CA certificates as PEM"
|
10262
9595
|
msgstr ""
|
10263
9596
|
|
10264
|
-
#: ../lib/puppet/x509/cert_provider.rb:
|
9597
|
+
#: ../lib/puppet/x509/cert_provider.rb:91
|
10265
9598
|
msgid "Failed to save CRLs to '%{crlpath}'"
|
10266
9599
|
msgstr ""
|
10267
9600
|
|
10268
|
-
#: ../lib/puppet/x509/cert_provider.rb:
|
9601
|
+
#: ../lib/puppet/x509/cert_provider.rb:105
|
10269
9602
|
msgid "The CRL is missing from '%{path}'"
|
10270
9603
|
msgstr ""
|
10271
9604
|
|
10272
|
-
#: ../lib/puppet/x509/cert_provider.rb:
|
9605
|
+
#: ../lib/puppet/x509/cert_provider.rb:109
|
10273
9606
|
msgid "Failed to load CRLs from '%{crlpath}'"
|
10274
9607
|
msgstr ""
|
10275
9608
|
|
10276
9609
|
#. TRANSLATORS 'PEM' is an acronym and shouldn't be translated
|
10277
|
-
#: ../lib/puppet/x509/cert_provider.rb:
|
9610
|
+
#: ../lib/puppet/x509/cert_provider.rb:121
|
10278
9611
|
msgid "Failed to parse CRLs as PEM"
|
10279
9612
|
msgstr ""
|
10280
9613
|
|
10281
|
-
#: ../lib/puppet/x509/cert_provider.rb:
|
9614
|
+
#: ../lib/puppet/x509/cert_provider.rb:171
|
10282
9615
|
msgid "Failed to save private key for '%{name}'"
|
10283
9616
|
msgstr ""
|
10284
9617
|
|
10285
|
-
#: ../lib/puppet/x509/cert_provider.rb:
|
9618
|
+
#: ../lib/puppet/x509/cert_provider.rb:191
|
10286
9619
|
msgid "The private key is missing from '%{path}'"
|
10287
9620
|
msgstr ""
|
10288
9621
|
|
10289
|
-
#: ../lib/puppet/x509/cert_provider.rb:
|
9622
|
+
#: ../lib/puppet/x509/cert_provider.rb:195
|
10290
9623
|
msgid "Failed to load private key for '%{name}'"
|
10291
9624
|
msgstr ""
|
10292
9625
|
|
10293
|
-
#: ../lib/puppet/x509/cert_provider.rb:
|
9626
|
+
#: ../lib/puppet/x509/cert_provider.rb:255
|
10294
9627
|
msgid "Failed to save client certificate for '%{name}'"
|
10295
9628
|
msgstr ""
|
10296
9629
|
|
10297
|
-
#: ../lib/puppet/x509/cert_provider.rb:
|
9630
|
+
#: ../lib/puppet/x509/cert_provider.rb:271
|
10298
9631
|
msgid "The client certificate is missing from '%{path}'"
|
10299
9632
|
msgstr ""
|
10300
9633
|
|
10301
|
-
#: ../lib/puppet/x509/cert_provider.rb:
|
9634
|
+
#: ../lib/puppet/x509/cert_provider.rb:275
|
10302
9635
|
msgid "Failed to load client certificate for '%{name}'"
|
10303
9636
|
msgstr ""
|
10304
9637
|
|
10305
|
-
#: ../lib/puppet/x509/cert_provider.rb:
|
9638
|
+
#: ../lib/puppet/x509/cert_provider.rb:324
|
10306
9639
|
msgid "Failed to save certificate request for '%{name}'"
|
10307
9640
|
msgstr ""
|
10308
9641
|
|
10309
|
-
#: ../lib/puppet/x509/cert_provider.rb:
|
9642
|
+
#: ../lib/puppet/x509/cert_provider.rb:340
|
10310
9643
|
msgid "Failed to load certificate request for '%{name}'"
|
10311
9644
|
msgstr ""
|
10312
9645
|
|
10313
|
-
#: ../lib/puppet/x509/cert_provider.rb:
|
9646
|
+
#: ../lib/puppet/x509/cert_provider.rb:353
|
10314
9647
|
msgid "Failed to delete certificate request for '%{name}'"
|
10315
9648
|
msgstr ""
|