puppet 5.3.7-universal-darwin → 5.4.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/CONTRIBUTING.md +42 -29
- data/README.md +8 -6
- data/ext/cert_inspector +2 -2
- data/ext/envpuppet +1 -1
- data/ext/gentoo/init.d/puppetmaster +4 -4
- data/ext/ips/puppet-agent +11 -11
- data/ext/ips/puppet-master +11 -11
- data/ext/puppet-test +1 -2
- data/ext/redhat/client.init +2 -2
- data/ext/redhat/logrotate +1 -1
- data/ext/solaris/smf/puppet +11 -11
- data/ext/solaris/smf/svc-puppetd +5 -5
- data/ext/solaris/smf/svc-puppetmasterd +5 -5
- data/ext/windows/service/daemon.rb +1 -1
- data/install.rb +2 -3
- data/lib/puppet/agent.rb +1 -1
- data/lib/puppet/application/cert.rb +1 -3
- data/lib/puppet/application/describe.rb +0 -1
- data/lib/puppet/application/device.rb +12 -99
- data/lib/puppet/application/filebucket.rb +32 -11
- data/lib/puppet/application/lookup.rb +1 -11
- data/lib/puppet/application/script.rb +261 -0
- data/lib/puppet/configurer.rb +3 -4
- data/lib/puppet/configurer/plugin_handler.rb +26 -9
- data/lib/puppet/context.rb +1 -1
- data/lib/puppet/datatypes.rb +213 -0
- data/lib/puppet/datatypes/error.rb +21 -0
- data/lib/puppet/datatypes/impl/error.rb +40 -0
- data/lib/puppet/defaults.rb +51 -20
- data/lib/puppet/environments.rb +17 -0
- data/lib/puppet/error.rb +17 -0
- data/lib/puppet/etc.rb +2 -2
- data/lib/puppet/external/pson/pure/generator.rb +1 -1
- data/lib/puppet/external/pson/pure/parser.rb +1 -1
- data/lib/puppet/face/config.rb +45 -0
- data/lib/puppet/face/epp.rb +3 -3
- data/lib/puppet/face/help/action.erb +3 -0
- data/lib/puppet/face/module/build.rb +1 -0
- data/lib/puppet/face/module/generate.rb +5 -0
- data/lib/puppet/face/module/install.rb +1 -0
- data/lib/puppet/face/module/search.rb +6 -2
- data/lib/puppet/face/module/uninstall.rb +1 -0
- data/lib/puppet/face/module/upgrade.rb +1 -0
- data/lib/puppet/face/parser.rb +0 -1
- data/lib/puppet/face/plugin.rb +1 -3
- data/lib/puppet/feature/base.rb +1 -1
- data/lib/puppet/feature/bolt.rb +3 -0
- data/lib/puppet/file_bucket/dipper.rb +1 -2
- data/lib/puppet/file_serving/http_metadata.rb +1 -1
- data/lib/puppet/file_system/uniquefile.rb +2 -2
- data/lib/puppet/forge.rb +6 -0
- data/lib/puppet/functions.rb +70 -88
- data/lib/puppet/functions/all.rb +6 -2
- data/lib/puppet/functions/annotate.rb +1 -1
- data/lib/puppet/functions/any.rb +7 -3
- data/lib/puppet/functions/contain.rb +6 -0
- data/lib/puppet/functions/convert_to.rb +32 -0
- data/lib/puppet/functions/defined.rb +0 -3
- data/lib/puppet/functions/each.rb +10 -6
- data/lib/puppet/functions/filter.rb +16 -10
- data/lib/puppet/functions/find_file.rb +0 -1
- data/lib/puppet/functions/include.rb +6 -0
- data/lib/puppet/functions/map.rb +12 -9
- data/lib/puppet/functions/module_directory.rb +41 -0
- data/lib/puppet/functions/new.rb +1 -4
- data/lib/puppet/functions/regsubst.rb +1 -1
- data/lib/puppet/functions/require.rb +6 -0
- data/lib/puppet/generate/type.rb +1 -1
- data/lib/puppet/gettext/config.rb +2 -2
- data/lib/puppet/gettext/stubs.rb +1 -1
- data/lib/puppet/indirector/catalog/compiler.rb +0 -1
- data/lib/puppet/indirector/file_bucket_file/file.rb +6 -2
- data/lib/puppet/indirector/file_server.rb +1 -1
- data/lib/puppet/indirector/node/ldap.rb +19 -3
- data/lib/puppet/indirector/request.rb +10 -6
- data/lib/puppet/indirector/rest.rb +11 -12
- data/lib/puppet/info_service/class_information_service.rb +1 -1
- data/lib/puppet/interface/action.rb +11 -0
- data/lib/puppet/interface/action_builder.rb +8 -0
- data/lib/puppet/interface/option_manager.rb +1 -1
- data/lib/puppet/loaders.rb +2 -0
- data/lib/puppet/module.rb +6 -2
- data/lib/puppet/module_tool/applications/builder.rb +4 -0
- data/lib/puppet/module_tool/applications/installer.rb +3 -0
- data/lib/puppet/module_tool/applications/uninstaller.rb +3 -0
- data/lib/puppet/module_tool/applications/unpacker.rb +1 -1
- data/lib/puppet/module_tool/applications/upgrader.rb +3 -0
- data/lib/puppet/module_tool/installed_modules.rb +1 -1
- data/lib/puppet/module_tool/metadata.rb +0 -1
- data/lib/puppet/network/authstore.rb +1 -1
- data/lib/puppet/network/http/api/indirected_routes.rb +1 -1
- data/lib/puppet/network/http/connection.rb +1 -9
- data/lib/puppet/network/http/factory.rb +0 -3
- data/lib/puppet/network/http/webrick.rb +1 -0
- data/lib/puppet/network/rights.rb +1 -1
- data/lib/puppet/node.rb +53 -0
- data/lib/puppet/node/environment.rb +1 -1
- data/lib/puppet/parameter/boolean.rb +1 -1
- data/lib/puppet/parser.rb +1 -0
- data/lib/puppet/parser/abstract_compiler.rb +36 -0
- data/lib/puppet/parser/ast/branch.rb +1 -1
- data/lib/puppet/parser/ast/pops_bridge.rb +8 -52
- data/lib/puppet/parser/compiler.rb +4 -54
- data/lib/puppet/parser/functions.rb +0 -1
- data/lib/puppet/parser/functions/create_resources.rb +6 -0
- data/lib/puppet/parser/functions/fqdn_rand.rb +6 -2
- data/lib/puppet/parser/functions/inline_template.rb +6 -0
- data/lib/puppet/parser/functions/new.rb +47 -32
- data/lib/puppet/parser/functions/realize.rb +6 -0
- data/lib/puppet/parser/functions/return.rb +1 -22
- data/lib/puppet/parser/functions/reverse_each.rb +1 -1
- data/lib/puppet/parser/functions/scanf.rb +1 -1
- data/lib/puppet/parser/functions/sha256.rb +5 -0
- data/lib/puppet/parser/functions/tag.rb +6 -0
- data/lib/puppet/parser/functions/tagged.rb +6 -0
- data/lib/puppet/parser/functions/template.rb +5 -0
- data/lib/puppet/parser/scope.rb +28 -4
- data/lib/puppet/parser/script_compiler.rb +118 -0
- data/lib/puppet/parser/type_loader.rb +1 -1
- data/lib/puppet/pops.rb +1 -1
- data/lib/puppet/pops/evaluator/access_operator.rb +38 -4
- data/lib/puppet/pops/evaluator/closure.rb +12 -4
- data/lib/puppet/pops/evaluator/compare_operator.rb +4 -4
- data/lib/puppet/pops/evaluator/epp_evaluator.rb +13 -0
- data/lib/puppet/pops/evaluator/evaluator_impl.rb +38 -10
- data/lib/puppet/pops/evaluator/literal_evaluator.rb +1 -1
- data/lib/puppet/pops/evaluator/runtime3_converter.rb +1 -1
- data/lib/puppet/pops/evaluator/runtime3_support.rb +2 -3
- data/lib/puppet/pops/functions/dispatch.rb +6 -5
- data/lib/puppet/pops/functions/function.rb +2 -2
- data/lib/puppet/pops/issues.rb +34 -2
- data/lib/puppet/pops/loader/base_loader.rb +10 -0
- data/lib/puppet/pops/loader/dependency_loader.rb +7 -0
- data/lib/puppet/pops/loader/loader.rb +21 -2
- data/lib/puppet/pops/loader/loader_paths.rb +180 -30
- data/lib/puppet/pops/loader/module_loaders.rb +202 -33
- data/lib/puppet/pops/loader/puppet_plan_instantiator.rb +84 -0
- data/lib/puppet/pops/loader/puppet_resource_type_impl_instantiator.rb +9 -9
- data/lib/puppet/pops/loader/ruby_data_type_instantiator.rb +40 -0
- data/lib/puppet/pops/loader/runtime3_type_loader.rb +6 -1
- data/lib/puppet/pops/loader/static_loader.rb +23 -8
- data/lib/puppet/pops/loader/task_instantiator.rb +69 -0
- data/lib/puppet/pops/loader/type_definition_instantiator.rb +4 -0
- data/lib/puppet/pops/loaders.rb +122 -11
- data/lib/puppet/pops/lookup/data_dig_function_provider.rb +1 -1
- data/lib/puppet/pops/lookup/interpolation.rb +1 -1
- data/lib/puppet/pops/lookup/lookup_adapter.rb +0 -1
- data/lib/puppet/pops/model/ast.pp +3 -0
- data/lib/puppet/pops/model/ast.rb +34 -1
- data/lib/puppet/pops/model/factory.rb +30 -3
- data/lib/puppet/pops/model/model_label_provider.rb +1 -0
- data/lib/puppet/pops/model/model_tree_dumper.rb +12 -1
- data/lib/puppet/pops/model/tree_dumper.rb +1 -1
- data/lib/puppet/pops/parser/code_merger.rb +2 -2
- data/lib/puppet/pops/parser/egrammar.ra +44 -15
- data/lib/puppet/pops/parser/eparser.rb +1687 -1571
- data/lib/puppet/pops/parser/epp_support.rb +1 -3
- data/lib/puppet/pops/parser/evaluating_parser.rb +1 -1
- data/lib/puppet/pops/parser/interpolation_support.rb +2 -2
- data/lib/puppet/pops/parser/lexer2.rb +4 -4
- data/lib/puppet/pops/parser/lexer_support.rb +2 -2
- data/lib/puppet/pops/parser/locatable.rb +1 -1
- data/lib/puppet/pops/parser/locator.rb +7 -13
- data/lib/puppet/pops/parser/parser_support.rb +3 -3
- data/lib/puppet/pops/parser/slurp_support.rb +0 -3
- data/lib/puppet/pops/pcore.rb +45 -0
- data/lib/puppet/pops/resource/param.rb +1 -1
- data/lib/puppet/pops/resource/resource_type_impl.rb +1 -1
- data/lib/puppet/pops/serialization/abstract_reader.rb +4 -0
- data/lib/puppet/pops/serialization/abstract_writer.rb +6 -0
- data/lib/puppet/pops/serialization/extension.rb +1 -0
- data/lib/puppet/pops/serialization/from_data_converter.rb +64 -10
- data/lib/puppet/pops/serialization/json_path.rb +2 -1
- data/lib/puppet/pops/serialization/object.rb +3 -4
- data/lib/puppet/pops/serialization/serializer.rb +2 -1
- data/lib/puppet/pops/serialization/to_data_converter.rb +7 -3
- data/lib/puppet/pops/time/timespan.rb +1 -1
- data/lib/puppet/pops/types/iterable.rb +38 -9
- data/lib/puppet/pops/types/p_init_type.rb +1 -1
- data/lib/puppet/pops/types/p_meta_type.rb +4 -0
- data/lib/puppet/pops/types/p_object_type.rb +146 -14
- data/lib/puppet/pops/types/p_object_type_extension.rb +218 -0
- data/lib/puppet/pops/types/p_sem_ver_range_type.rb +0 -1
- data/lib/puppet/pops/types/p_sem_ver_type.rb +10 -2
- data/lib/puppet/pops/types/p_type_set_type.rb +0 -1
- data/lib/puppet/pops/types/p_uri_type.rb +190 -0
- data/lib/puppet/pops/types/puppet_object.rb +15 -1
- data/lib/puppet/pops/types/ruby_generator.rb +46 -54
- data/lib/puppet/pops/types/string_converter.rb +22 -1
- data/lib/puppet/pops/types/type_acceptor.rb +1 -1
- data/lib/puppet/pops/types/type_calculator.rb +13 -4
- data/lib/puppet/pops/types/type_factory.rb +29 -5
- data/lib/puppet/pops/types/type_formatter.rb +67 -4
- data/lib/puppet/pops/types/type_parser.rb +92 -4
- data/lib/puppet/pops/types/type_with_members.rb +43 -0
- data/lib/puppet/pops/types/types.rb +212 -80
- data/lib/puppet/pops/validation/checker4_0.rb +10 -6
- data/lib/puppet/pops/validation/tasks_checker.rb +60 -0
- data/lib/puppet/pops/validation/validator_factory_4_0.rb +6 -1
- data/lib/puppet/property.rb +1 -1
- data/lib/puppet/provider.rb +18 -8
- data/lib/puppet/provider/augeas/augeas.rb +3 -4
- data/lib/puppet/provider/exec.rb +0 -2
- data/lib/puppet/provider/group/groupadd.rb +25 -1
- data/lib/puppet/provider/group/windows_adsi.rb +7 -4
- data/lib/puppet/provider/mount.rb +25 -8
- data/lib/puppet/provider/nameservice.rb +9 -4
- data/lib/puppet/provider/nameservice/directoryservice.rb +3 -3
- data/lib/puppet/provider/nameservice/objectadd.rb +13 -24
- data/lib/puppet/provider/nameservice/pw.rb +14 -14
- data/lib/puppet/provider/package/appdmg.rb +0 -1
- data/lib/puppet/provider/package/apple.rb +0 -1
- data/lib/puppet/provider/package/gem.rb +2 -2
- data/lib/puppet/provider/package/macports.rb +2 -2
- data/lib/puppet/provider/package/pkg.rb +3 -0
- data/lib/puppet/provider/package/pkgdmg.rb +0 -1
- data/lib/puppet/provider/package/portage.rb +0 -1
- data/lib/puppet/provider/package/yum.rb +23 -8
- data/lib/puppet/provider/package/zypper.rb +2 -2
- data/lib/puppet/provider/scheduled_task/win32_taskscheduler.rb +2 -2
- data/lib/puppet/provider/service/init.rb +1 -0
- data/lib/puppet/provider/service/launchd.rb +6 -7
- data/lib/puppet/provider/service/redhat.rb +3 -2
- data/lib/puppet/provider/service/systemd.rb +2 -2
- data/lib/puppet/provider/ssh_authorized_key/parsed.rb +1 -1
- data/lib/puppet/provider/user/aix.rb +3 -2
- data/lib/puppet/provider/user/openbsd.rb +1 -1
- data/lib/puppet/provider/user/pw.rb +1 -1
- data/lib/puppet/provider/user/user_role_add.rb +7 -1
- data/lib/puppet/provider/user/useradd.rb +36 -6
- data/lib/puppet/provider/user/windows_adsi.rb +1 -1
- data/lib/puppet/provider/yumrepo/inifile.rb +2 -4
- data/lib/puppet/provider/zfs/zfs.rb +23 -3
- data/lib/puppet/provider/zpool/zpool.rb +1 -1
- data/lib/puppet/reference/configuration.rb +0 -2
- data/lib/puppet/reference/type.rb +0 -1
- data/lib/puppet/resource.rb +1 -2
- data/lib/puppet/resource/catalog.rb +1 -1
- data/lib/puppet/resource/status.rb +0 -1
- data/lib/puppet/resource/type.rb +4 -4
- data/lib/puppet/resource/type_collection.rb +1 -1
- data/lib/puppet/settings/base_setting.rb +1 -1
- data/lib/puppet/settings/environment_conf.rb +0 -1
- data/lib/puppet/settings/ini_file.rb +66 -12
- data/lib/puppet/ssl/certificate_authority.rb +1 -1
- data/lib/puppet/ssl/certificate_request.rb +2 -2
- data/lib/puppet/ssl/certificate_revocation_list.rb +2 -1
- data/lib/puppet/ssl/certificate_signer.rb +11 -0
- data/lib/puppet/ssl/host.rb +2 -2
- data/lib/puppet/syntax_checkers/base64.rb +1 -1
- data/lib/puppet/transaction.rb +37 -14
- data/lib/puppet/transaction/report.rb +3 -1
- data/lib/puppet/type.rb +17 -4
- data/lib/puppet/type/cron.rb +1 -1
- data/lib/puppet/type/exec.rb +5 -4
- data/lib/puppet/type/file.rb +3 -3
- data/lib/puppet/type/file/checksum.rb +7 -1
- data/lib/puppet/type/file/checksum_value.rb +4 -3
- data/lib/puppet/type/group.rb +3 -0
- data/lib/puppet/type/k5login.rb +101 -0
- data/lib/puppet/type/macauthorization.rb +1 -1
- data/lib/puppet/type/mount.rb +6 -2
- data/lib/puppet/type/tidy.rb +6 -4
- data/lib/puppet/type/user.rb +26 -39
- data/lib/puppet/type/yumrepo.rb +9 -0
- data/lib/puppet/type/zfs.rb +4 -0
- data/lib/puppet/util.rb +8 -15
- data/lib/puppet/util/character_encoding.rb +2 -2
- data/lib/puppet/util/checksums.rb +82 -1
- data/lib/puppet/util/errors.rb +0 -2
- data/lib/puppet/util/filetype.rb +2 -2
- data/lib/puppet/util/json_lockfile.rb +1 -1
- data/lib/puppet/util/log.rb +1 -1
- data/lib/puppet/util/log/destinations.rb +10 -1
- data/lib/puppet/util/monkey_patches.rb +1 -1
- data/lib/puppet/util/network_device/cisco/device.rb +5 -5
- data/lib/puppet/util/network_device/config.rb +2 -3
- data/lib/puppet/util/platform.rb +13 -0
- data/lib/puppet/util/plist.rb +4 -4
- data/lib/puppet/util/rdoc/generators/puppet_generator.rb +2 -2
- data/lib/puppet/util/rdoc/parser/puppet_parser_rdoc2.rb +1 -1
- data/lib/puppet/util/reference.rb +8 -1
- data/lib/puppet/util/windows/adsi.rb +18 -15
- data/lib/puppet/util/windows/principal.rb +6 -7
- data/lib/puppet/util/windows/process.rb +1 -1
- data/lib/puppet/util/windows/registry.rb +2 -2
- data/lib/puppet/util/windows/sid.rb +7 -62
- data/lib/puppet/vendor/deep_merge/README.md +2 -2
- data/lib/puppet/vendor/pathspec/lib/pathspec/gitignorespec.rb +18 -18
- data/lib/puppet/vendor/semantic_puppet/lib/semantic_puppet/version.rb +2 -2
- data/lib/puppet/vendor/semantic_puppet/lib/semantic_puppet/version_range.rb +5 -5
- data/lib/puppet/vendor/semantic_puppet/locales/config.yaml +1 -1
- data/lib/puppet/version.rb +1 -1
- data/lib/puppet_pal.rb +874 -0
- data/locales/ja/puppet.po +140 -163
- data/locales/puppet.pot +940 -597
- data/man/man5/puppet.conf.5 +16 -91
- data/man/man8/puppet-agent.8 +2 -6
- data/man/man8/puppet-apply.8 +2 -2
- data/man/man8/puppet-ca.8 +1 -1
- data/man/man8/puppet-catalog.8 +1 -1
- data/man/man8/puppet-cert.8 +1 -1
- data/man/man8/puppet-certificate.8 +1 -1
- data/man/man8/puppet-certificate_request.8 +1 -1
- data/man/man8/puppet-certificate_revocation_list.8 +1 -1
- data/man/man8/puppet-config.8 +1 -1
- data/man/man8/puppet-describe.8 +1 -1
- data/man/man8/puppet-device.8 +11 -33
- data/man/man8/puppet-doc.8 +1 -1
- data/man/man8/puppet-epp.8 +1 -1
- data/man/man8/puppet-facts.8 +1 -1
- data/man/man8/puppet-filebucket.8 +4 -22
- data/man/man8/puppet-generate.8 +1 -1
- data/man/man8/puppet-help.8 +1 -1
- data/man/man8/puppet-key.8 +1 -1
- data/man/man8/puppet-lookup.8 +1 -1
- data/man/man8/puppet-man.8 +1 -1
- data/man/man8/puppet-master.8 +1 -1
- data/man/man8/puppet-module.8 +2 -11
- data/man/man8/puppet-node.8 +1 -1
- data/man/man8/puppet-parser.8 +1 -1
- data/man/man8/puppet-plugin.8 +1 -1
- data/man/man8/puppet-report.8 +1 -1
- data/man/man8/puppet-resource.8 +1 -1
- data/man/man8/puppet-status.8 +1 -1
- data/man/man8/puppet.8 +2 -2
- data/spec/integration/application/lookup_spec.rb +0 -21
- data/spec/integration/parser/compiler_spec.rb +18 -0
- data/spec/integration/parser/script_compiler_spec.rb +113 -0
- data/spec/integration/provider/mount_spec.rb +2 -0
- data/spec/integration/type/file_spec.rb +11 -3
- data/spec/integration/util/windows/adsi_spec.rb +1 -86
- data/spec/integration/util/windows/principal_spec.rb +1 -10
- data/spec/shared_contexts/checksum.rb +4 -1
- data/spec/shared_contexts/digests.rb +46 -1
- data/spec/shared_contexts/types_setup.rb +8 -3
- data/spec/unit/agent_spec.rb +2 -2
- data/spec/unit/application/cert_spec.rb +5 -17
- data/spec/unit/application/device_spec.rb +2 -96
- data/spec/unit/application/filebucket_spec.rb +18 -4
- data/spec/unit/configurer/plugin_handler_spec.rb +5 -32
- data/spec/unit/configurer_spec.rb +3 -3
- data/spec/unit/datatypes_spec.rb +304 -0
- data/spec/unit/defaults_spec.rb +41 -20
- data/spec/unit/face/config_spec.rb +46 -1
- data/spec/unit/face/epp_face_spec.rb +7 -3
- data/spec/unit/face/module/search_spec.rb +11 -0
- data/spec/unit/face/parser_spec.rb +2 -2
- data/spec/unit/file_bucket/dipper_spec.rb +12 -1
- data/spec/unit/forge/module_release_spec.rb +70 -0
- data/spec/unit/functions/break_spec.rb +34 -2
- data/spec/unit/functions/contain_spec.rb +1 -0
- data/spec/unit/functions/convert_to_spec.rb +22 -0
- data/spec/unit/functions/epp_spec.rb +5 -0
- data/spec/unit/functions/include_spec.rb +15 -0
- data/spec/unit/functions/module_directory_spec.rb +43 -0
- data/spec/unit/functions/new_spec.rb +14 -14
- data/spec/unit/functions/require_spec.rb +2 -0
- data/spec/unit/functions/shared.rb +12 -0
- data/spec/unit/functions/step_spec.rb +1 -1
- data/spec/unit/functions4_spec.rb +49 -4
- data/spec/unit/indirector/catalog/compiler_spec.rb +3 -3
- data/spec/unit/indirector/file_bucket_file/file_spec.rb +148 -94
- data/spec/unit/indirector/node/ldap_spec.rb +15 -12
- data/spec/unit/indirector/rest_spec.rb +0 -43
- data/spec/unit/interface/action_spec.rb +33 -0
- data/spec/unit/module_tool/applications/builder_spec.rb +7 -0
- data/spec/unit/module_tool/applications/installer_spec.rb +8 -0
- data/spec/unit/module_tool/applications/uninstaller_spec.rb +8 -0
- data/spec/unit/module_tool/applications/upgrader_spec.rb +6 -0
- data/spec/unit/network/http/connection_spec.rb +1 -1
- data/spec/unit/network/http/factory_spec.rb +28 -35
- data/spec/unit/parser/compiler_spec.rb +0 -8
- data/spec/unit/parser/environment_compiler_spec.rb +36 -0
- data/spec/unit/parser/functions/create_resources_spec.rb +9 -0
- data/spec/unit/parser/functions/inline_template_spec.rb +7 -0
- data/spec/unit/parser/functions/realize_spec.rb +9 -0
- data/spec/unit/parser/functions/tag_spec.rb +7 -0
- data/spec/unit/parser/functions/tagged_spec.rb +25 -0
- data/spec/unit/parser/functions/template_spec.rb +8 -0
- data/spec/unit/parser/scope_spec.rb +19 -0
- data/spec/unit/pops/evaluator/conditionals_spec.rb +1 -1
- data/spec/unit/pops/loaders/loader_spec.rb +516 -0
- data/spec/unit/pops/loaders/loaders_spec.rb +11 -0
- data/spec/unit/pops/loaders/module_loaders_spec.rb +43 -0
- data/spec/unit/pops/loaders/static_loader_spec.rb +15 -7
- data/spec/unit/pops/model/model_spec.rb +5 -0
- data/spec/unit/pops/parser/lexer2_spec.rb +15 -0
- data/spec/unit/pops/parser/locator_spec.rb +20 -0
- data/spec/unit/pops/parser/parse_basic_expressions_spec.rb +33 -0
- data/spec/unit/pops/parser/parse_calls_spec.rb +28 -0
- data/spec/unit/pops/parser/parse_conditionals_spec.rb +12 -0
- data/spec/unit/pops/parser/parse_plan_spec.rb +48 -0
- data/spec/unit/pops/serialization/packer_spec.rb +8 -0
- data/spec/unit/pops/serialization/serialization_spec.rb +30 -0
- data/spec/unit/pops/serialization/to_from_hr_spec.rb +31 -0
- data/spec/unit/pops/types/error_spec.rb +207 -0
- data/spec/unit/pops/types/p_init_type_spec.rb +98 -0
- data/spec/unit/pops/types/p_object_type_spec.rb +275 -10
- data/spec/unit/pops/types/p_uri_type_spec.rb +191 -0
- data/spec/unit/pops/types/ruby_generator_spec.rb +82 -44
- data/spec/unit/pops/types/task_spec.rb +353 -0
- data/spec/unit/pops/types/type_calculator_spec.rb +76 -5
- data/spec/unit/pops/types/type_formatter_spec.rb +31 -13
- data/spec/unit/pops/types/type_parser_spec.rb +13 -1
- data/spec/unit/pops/types/types_spec.rb +60 -0
- data/spec/unit/pops/validator/validator_spec.rb +76 -0
- data/spec/unit/provider/group/groupadd_spec.rb +77 -1
- data/spec/unit/provider/group/pw_spec.rb +4 -4
- data/spec/unit/provider/group/windows_adsi_spec.rb +22 -79
- data/spec/unit/provider/mount_spec.rb +18 -5
- data/spec/unit/provider/nameservice_spec.rb +5 -5
- data/spec/unit/provider/package/dnf_spec.rb +2 -2
- data/spec/unit/provider/package/gem_spec.rb +1 -1
- data/spec/unit/provider/package/pkg_spec.rb +3 -0
- data/spec/unit/provider/package/yum_spec.rb +40 -0
- data/spec/unit/provider/service/launchd_spec.rb +2 -1
- data/spec/unit/provider/service/redhat_spec.rb +5 -0
- data/spec/unit/provider/service/systemd_spec.rb +1 -1
- data/spec/unit/provider/user/hpux_spec.rb +2 -2
- data/spec/unit/provider/user/openbsd_spec.rb +2 -2
- data/spec/unit/provider/user/pw_spec.rb +14 -14
- data/spec/unit/provider/user/user_role_add_spec.rb +19 -2
- data/spec/unit/provider/user/useradd_spec.rb +188 -22
- data/spec/unit/provider/user/windows_adsi_spec.rb +4 -4
- data/spec/unit/provider/zfs/zfs_spec.rb +55 -1
- data/spec/unit/provider_spec.rb +48 -0
- data/spec/unit/puppet_pal_2pec.rb +1005 -0
- data/spec/unit/puppet_pal_spec.rb +11 -0
- data/spec/unit/settings/ini_file_spec.rb +313 -2
- data/spec/unit/ssl/certificate_request_spec.rb +42 -1
- data/spec/unit/ssl/certificate_revocation_list_spec.rb +2 -1
- data/spec/unit/transaction/report_spec.rb +1 -0
- data/spec/unit/transaction_spec.rb +112 -21
- data/spec/unit/type/file/checksum_spec.rb +20 -0
- data/spec/unit/type/file_spec.rb +8 -0
- data/spec/unit/type/group_spec.rb +8 -0
- data/spec/unit/type/k5login_spec.rb +22 -1
- data/spec/unit/type/scheduled_task_spec.rb +15 -0
- data/spec/unit/type/user_spec.rb +11 -1
- data/spec/unit/type/yumrepo_spec.rb +5 -0
- data/spec/unit/util/checksums_spec.rb +3 -3
- data/spec/unit/util/log/destinations_spec.rb +14 -0
- data/spec/unit/util/network_device/cisco/device_spec.rb +1 -1
- data/spec/unit/util/plist_spec.rb +3 -3
- data/spec/unit/util/windows/adsi_spec.rb +27 -31
- data/spec/unit/util/windows/sid_spec.rb +15 -86
- data/spec/unit/util_spec.rb +17 -3
- data/tasks/manpages.rake +1 -1
- metadata +218 -180
- data/lib/puppet/bindings.rb +0 -148
- data/lib/puppet/configurer/downloader_factory.rb +0 -44
- data/spec/unit/configurer/downloader_factory_spec.rb +0 -129
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 5.3.
|
9
|
+
"Project-Id-Version: Puppet automation framework 5.3.4-746-ge9bf54f\n"
|
10
10
|
"\n"
|
11
11
|
"Report-Msgid-Bugs-To: https://tickets.puppetlabs.com\n"
|
12
|
-
"POT-Creation-Date: 2018-
|
13
|
-
"PO-Revision-Date: 2018-
|
12
|
+
"POT-Creation-Date: 2018-02-07 21:18+0000\n"
|
13
|
+
"PO-Revision-Date: 2018-02-07 21:18+0000\n"
|
14
14
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
15
15
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
16
16
|
"Language: \n"
|
@@ -188,7 +188,7 @@ msgstr ""
|
|
188
188
|
msgid "Apply Puppet manifests locally"
|
189
189
|
msgstr ""
|
190
190
|
|
191
|
-
#: ../lib/puppet/application/apply.rb:197
|
191
|
+
#: ../lib/puppet/application/apply.rb:197 ../lib/puppet/application/script.rb:134
|
192
192
|
msgid "Could not find file %{manifest}"
|
193
193
|
msgstr ""
|
194
194
|
|
@@ -196,11 +196,11 @@ msgstr ""
|
|
196
196
|
msgid "Only one file can be applied per run. Skipping %{files}"
|
197
197
|
msgstr ""
|
198
198
|
|
199
|
-
#: ../lib/puppet/application/apply.rb:207
|
199
|
+
#: ../lib/puppet/application/apply.rb:207 ../lib/puppet/application/script.rb:141
|
200
200
|
msgid "Could not find facts for %{node}"
|
201
201
|
msgstr ""
|
202
202
|
|
203
|
-
#: ../lib/puppet/application/apply.rb:216
|
203
|
+
#: ../lib/puppet/application/apply.rb:216 ../lib/puppet/application/script.rb:150
|
204
204
|
msgid "Could not find node %{node}"
|
205
205
|
msgstr ""
|
206
206
|
|
@@ -213,11 +213,11 @@ msgstr ""
|
|
213
213
|
msgid "%{file} is not readable"
|
214
214
|
msgstr ""
|
215
215
|
|
216
|
-
#: ../lib/puppet/application/apply.rb:318
|
216
|
+
#: ../lib/puppet/application/apply.rb:318 ../lib/puppet/application/script.rb:238
|
217
217
|
msgid "Exiting"
|
218
218
|
msgstr ""
|
219
219
|
|
220
|
-
#: ../lib/puppet/application/apply.rb:
|
220
|
+
#: ../lib/puppet/application/apply.rb:348
|
221
221
|
msgid "Could not deserialize catalog from %{format}: %{detail}"
|
222
222
|
msgstr ""
|
223
223
|
|
@@ -225,58 +225,30 @@ msgstr ""
|
|
225
225
|
msgid "Manage certificates and requests"
|
226
226
|
msgstr ""
|
227
227
|
|
228
|
-
#: ../lib/puppet/application/cert.rb:
|
229
|
-
msgid "Refusing to destroy all certs, provide an explicit list of certs to destroy"
|
230
|
-
msgstr ""
|
231
|
-
|
232
|
-
#: ../lib/puppet/application/cert.rb:334
|
228
|
+
#: ../lib/puppet/application/cert.rb:332
|
233
229
|
msgid "You must specify the hosts to apply to; valid values are an array or the symbol :all"
|
234
230
|
msgstr ""
|
235
231
|
|
236
|
-
#: ../lib/puppet/application/describe.rb:
|
232
|
+
#: ../lib/puppet/application/describe.rb:181
|
237
233
|
msgid "Display help about resource types"
|
238
234
|
msgstr ""
|
239
235
|
|
240
|
-
#: ../lib/puppet/application/device.rb:
|
236
|
+
#: ../lib/puppet/application/device.rb:66
|
241
237
|
msgid "Manage remote network devices"
|
242
238
|
msgstr ""
|
243
239
|
|
244
|
-
#: ../lib/puppet/application/device.rb:
|
245
|
-
msgid "resource command requires target"
|
246
|
-
msgstr ""
|
247
|
-
|
248
|
-
#: ../lib/puppet/application/device.rb:216
|
249
|
-
msgid "missing argument: --target is required when using --apply"
|
250
|
-
msgstr ""
|
251
|
-
|
252
|
-
#: ../lib/puppet/application/device.rb:220
|
253
|
-
msgid "%{file} does not exist, cannot apply"
|
254
|
-
msgstr ""
|
255
|
-
|
256
|
-
#: ../lib/puppet/application/device.rb:238
|
240
|
+
#: ../lib/puppet/application/device.rb:203
|
257
241
|
msgid "Target device / certificate '%{target}' not found in %{config}"
|
258
242
|
msgstr ""
|
259
243
|
|
260
|
-
#: ../lib/puppet/application/device.rb:
|
244
|
+
#: ../lib/puppet/application/device.rb:205
|
261
245
|
msgid "No device found in %{config}"
|
262
246
|
msgstr ""
|
263
247
|
|
264
|
-
#: ../lib/puppet/application/device.rb:
|
265
|
-
msgid "retrieving resource: %{resource} from %{target} at %{scheme}%{url_host}%{port}%{url_path}"
|
266
|
-
msgstr ""
|
267
|
-
|
268
|
-
#: ../lib/puppet/application/device.rb:294
|
248
|
+
#: ../lib/puppet/application/device.rb:215
|
269
249
|
msgid "starting applying configuration to %{target} at %{scheme}%{url_host}%{port}%{url_path}"
|
270
250
|
msgstr ""
|
271
251
|
|
272
|
-
#: ../lib/puppet/application/device.rb:331 ../lib/puppet/application/resource.rb:196
|
273
|
-
msgid "You must specify the type to display"
|
274
|
-
msgstr ""
|
275
|
-
|
276
|
-
#: ../lib/puppet/application/device.rb:332 ../lib/puppet/application/resource.rb:197
|
277
|
-
msgid "Could not find type %{type}"
|
278
|
-
msgstr ""
|
279
|
-
|
280
252
|
#: ../lib/puppet/application/doc.rb:28
|
281
253
|
msgid "Invalid output format %{arg}"
|
282
254
|
msgstr ""
|
@@ -339,27 +311,27 @@ msgstr ""
|
|
339
311
|
msgid "Store and retrieve files in a filebucket"
|
340
312
|
msgstr ""
|
341
313
|
|
342
|
-
#: ../lib/puppet/application/filebucket.rb:
|
314
|
+
#: ../lib/puppet/application/filebucket.rb:203
|
343
315
|
msgid "You must specify a file to back up"
|
344
316
|
msgstr ""
|
345
317
|
|
346
|
-
#: ../lib/puppet/application/filebucket.rb:
|
318
|
+
#: ../lib/puppet/application/filebucket.rb:207
|
347
319
|
msgid "%{file}: no such file"
|
348
320
|
msgstr ""
|
349
321
|
|
350
|
-
#: ../lib/puppet/application/filebucket.rb:
|
322
|
+
#: ../lib/puppet/application/filebucket.rb:211
|
351
323
|
msgid "%{file}: cannot read file"
|
352
324
|
msgstr ""
|
353
325
|
|
354
|
-
#: ../lib/puppet/application/filebucket.rb:
|
326
|
+
#: ../lib/puppet/application/filebucket.rb:233 ../lib/puppet/application/filebucket.rb:256
|
355
327
|
msgid "Need exactly two arguments: filebucket diff <file_a> <file_b>"
|
356
328
|
msgstr ""
|
357
329
|
|
358
|
-
#: ../lib/puppet/application/filebucket.rb:
|
330
|
+
#: ../lib/puppet/application/filebucket.rb:253
|
359
331
|
msgid "Comparing %{checksum_a} %{checksum_b} %{file_a} %{file_b}"
|
360
332
|
msgstr ""
|
361
333
|
|
362
|
-
#: ../lib/puppet/application/filebucket.rb:
|
334
|
+
#: ../lib/puppet/application/filebucket.rb:267
|
363
335
|
msgid "Cancelling"
|
364
336
|
msgstr ""
|
365
337
|
|
@@ -397,7 +369,7 @@ msgstr ""
|
|
397
369
|
msgid "Unknown rendering format '%{format}'"
|
398
370
|
msgstr ""
|
399
371
|
|
400
|
-
#: ../lib/puppet/application/lookup.rb:
|
372
|
+
#: ../lib/puppet/application/lookup.rb:350 ../lib/puppet/face/epp.rb:493
|
401
373
|
msgid "Incorrect formatted data in %{fact_file} given via the --facts flag"
|
402
374
|
msgstr ""
|
403
375
|
|
@@ -449,6 +421,14 @@ msgstr ""
|
|
449
421
|
msgid "Editing with Yaml output is not supported"
|
450
422
|
msgstr ""
|
451
423
|
|
424
|
+
#: ../lib/puppet/application/resource.rb:196
|
425
|
+
msgid "You must specify the type to display"
|
426
|
+
msgstr ""
|
427
|
+
|
428
|
+
#: ../lib/puppet/application/resource.rb:197
|
429
|
+
msgid "Could not find type %{type}"
|
430
|
+
msgstr ""
|
431
|
+
|
452
432
|
#: ../lib/puppet/application/resource.rb:204
|
453
433
|
msgid "Invalid parameter setting %{setting}"
|
454
434
|
msgstr ""
|
@@ -457,100 +437,107 @@ msgstr ""
|
|
457
437
|
msgid "Listing all file instances is not supported. Please specify a file or directory, e.g. puppet resource file /etc"
|
458
438
|
msgstr ""
|
459
439
|
|
460
|
-
|
461
|
-
|
462
|
-
|
440
|
+
#: ../lib/puppet/application/script.rb:20
|
441
|
+
msgid "Run a puppet manifests as a script without compiling a catalog"
|
442
|
+
msgstr ""
|
443
|
+
|
444
|
+
#: ../lib/puppet/application/script.rb:121
|
445
|
+
msgid "Bolt must be installed to use the script application"
|
446
|
+
msgstr ""
|
447
|
+
|
448
|
+
#: ../lib/puppet/application/script.rb:135
|
449
|
+
msgid "Only one file can be used per run. Skipping %{files}"
|
463
450
|
msgstr ""
|
464
451
|
|
465
|
-
#: ../lib/puppet/configurer.rb:
|
452
|
+
#: ../lib/puppet/configurer.rb:21
|
466
453
|
msgid "Puppet configuration client"
|
467
454
|
msgstr ""
|
468
455
|
|
469
|
-
#: ../lib/puppet/configurer.rb:
|
456
|
+
#: ../lib/puppet/configurer.rb:49
|
470
457
|
msgid "Removing corrupt state file %{file}: %{detail}"
|
471
458
|
msgstr ""
|
472
459
|
|
473
|
-
#: ../lib/puppet/configurer.rb:
|
460
|
+
#: ../lib/puppet/configurer.rb:54
|
474
461
|
msgid "Cannot remove %{file}: %{detail}"
|
475
462
|
msgstr ""
|
476
463
|
|
477
|
-
#: ../lib/puppet/configurer.rb:
|
464
|
+
#: ../lib/puppet/configurer.rb:76
|
478
465
|
msgid "Using cached catalog from environment '%{environment}'"
|
479
466
|
msgstr ""
|
480
467
|
|
481
|
-
#: ../lib/puppet/configurer.rb:
|
468
|
+
#: ../lib/puppet/configurer.rb:82
|
482
469
|
msgid "Not using cache on failed catalog"
|
483
470
|
msgstr ""
|
484
471
|
|
485
|
-
#: ../lib/puppet/configurer.rb:
|
472
|
+
#: ../lib/puppet/configurer.rb:91
|
486
473
|
msgid "Not using cached catalog because its environment '%{catalog_env}' does not match '%{local_env}'"
|
487
474
|
msgstr ""
|
488
475
|
|
489
|
-
#: ../lib/puppet/configurer.rb:
|
476
|
+
#: ../lib/puppet/configurer.rb:96 ../lib/puppet/configurer.rb:161
|
490
477
|
msgid "Using cached catalog from environment '%{catalog_env}'"
|
491
478
|
msgstr ""
|
492
479
|
|
493
|
-
#: ../lib/puppet/configurer.rb:
|
480
|
+
#: ../lib/puppet/configurer.rb:154
|
494
481
|
msgid "Could not retrieve catalog; skipping run"
|
495
482
|
msgstr ""
|
496
483
|
|
497
|
-
#: ../lib/puppet/configurer.rb:
|
484
|
+
#: ../lib/puppet/configurer.rb:173
|
498
485
|
msgid "Applied catalog in %{seconds} seconds"
|
499
486
|
msgstr ""
|
500
487
|
|
501
|
-
#: ../lib/puppet/configurer.rb:
|
488
|
+
#: ../lib/puppet/configurer.rb:212
|
502
489
|
msgid "Could not select a functional puppet master"
|
503
490
|
msgstr ""
|
504
491
|
|
505
|
-
#: ../lib/puppet/configurer.rb:
|
492
|
+
#: ../lib/puppet/configurer.rb:246
|
506
493
|
msgid "Local environment: '%{local_env}' doesn't match the environment of the cached catalog '%{catalog_env}', switching agent to '%{catalog_env}'."
|
507
494
|
msgstr ""
|
508
495
|
|
509
|
-
#: ../lib/puppet/configurer.rb:
|
496
|
+
#: ../lib/puppet/configurer.rb:286
|
510
497
|
msgid "Local environment: '%{local_env}' doesn't match server specified node environment '%{node_env}', switching agent to '%{node_env}'."
|
511
498
|
msgstr ""
|
512
499
|
|
513
|
-
#: ../lib/puppet/configurer.rb:
|
500
|
+
#: ../lib/puppet/configurer.rb:291
|
514
501
|
msgid "Using configured environment '%{env}'"
|
515
502
|
msgstr ""
|
516
503
|
|
517
|
-
#: ../lib/puppet/configurer.rb:
|
504
|
+
#: ../lib/puppet/configurer.rb:295
|
518
505
|
msgid "Unable to fetch my node definition, but the agent run will continue:"
|
519
506
|
msgstr ""
|
520
507
|
|
521
|
-
#: ../lib/puppet/configurer.rb:
|
508
|
+
#: ../lib/puppet/configurer.rb:319
|
522
509
|
msgid "Not using catalog because its environment '%{catalog_env}' does not match agent specified environment '%{local_env}' and strict_environment_mode is set"
|
523
510
|
msgstr ""
|
524
511
|
|
525
|
-
#: ../lib/puppet/configurer.rb:
|
512
|
+
#: ../lib/puppet/configurer.rb:330
|
526
513
|
msgid "Catalog environment didn't stabilize after %{tries} fetches, aborting run"
|
527
514
|
msgstr ""
|
528
515
|
|
529
|
-
#: ../lib/puppet/configurer.rb:
|
516
|
+
#: ../lib/puppet/configurer.rb:332
|
530
517
|
msgid "Local environment: '%{local_env}' doesn't match server specified environment '%{catalog_env}', restarting agent run with environment '%{catalog_env}'"
|
531
518
|
msgstr ""
|
532
519
|
|
533
|
-
#: ../lib/puppet/configurer.rb:
|
520
|
+
#: ../lib/puppet/configurer.rb:351
|
534
521
|
msgid "Failed to apply catalog: %{detail}"
|
535
522
|
msgstr ""
|
536
523
|
|
537
|
-
#: ../lib/puppet/configurer.rb:
|
524
|
+
#: ../lib/puppet/configurer.rb:398 ../lib/puppet/face/report.rb:47
|
538
525
|
msgid "Could not send report: %{detail}"
|
539
526
|
msgstr ""
|
540
527
|
|
541
|
-
#: ../lib/puppet/configurer.rb:
|
528
|
+
#: ../lib/puppet/configurer.rb:407
|
542
529
|
msgid "Could not save last run local report: %{detail}"
|
543
530
|
msgstr ""
|
544
531
|
|
545
|
-
#: ../lib/puppet/configurer.rb:
|
532
|
+
#: ../lib/puppet/configurer.rb:419
|
546
533
|
msgid "Could not run command from %{setting}: %{detail}"
|
547
534
|
msgstr ""
|
548
535
|
|
549
|
-
#: ../lib/puppet/configurer.rb:
|
536
|
+
#: ../lib/puppet/configurer.rb:432
|
550
537
|
msgid "Could not retrieve catalog from cache: %{detail}"
|
551
538
|
msgstr ""
|
552
539
|
|
553
|
-
#: ../lib/puppet/configurer.rb:
|
540
|
+
#: ../lib/puppet/configurer.rb:444
|
554
541
|
msgid "Could not retrieve catalog from remote server: %{detail}"
|
555
542
|
msgstr ""
|
556
543
|
|
@@ -571,7 +558,7 @@ msgid "Attempted to pop, but already at root of the context stack."
|
|
571
558
|
msgstr ""
|
572
559
|
|
573
560
|
#: ../lib/puppet/context.rb:55
|
574
|
-
msgid "
|
561
|
+
msgid "no '%{name}' in %{table} at top of %{stack}"
|
575
562
|
msgstr ""
|
576
563
|
|
577
564
|
#: ../lib/puppet/context.rb:80
|
@@ -598,47 +585,63 @@ msgstr ""
|
|
598
585
|
msgid "Daemons must have an agent, server, or both"
|
599
586
|
msgstr ""
|
600
587
|
|
601
|
-
#: ../lib/puppet/
|
588
|
+
#: ../lib/puppet/datatypes.rb:133
|
589
|
+
msgid "Data Type Load Error for type '%{type_name}': %{message}"
|
590
|
+
msgstr ""
|
591
|
+
|
592
|
+
#: ../lib/puppet/datatypes.rb:156
|
593
|
+
msgid "a data type must have an interface"
|
594
|
+
msgstr ""
|
595
|
+
|
596
|
+
#: ../lib/puppet/datatypes.rb:195
|
597
|
+
msgid "a data type can only have one interface"
|
598
|
+
msgstr ""
|
599
|
+
|
600
|
+
#: ../lib/puppet/datatypes.rb:200 ../lib/puppet/datatypes.rb:205
|
601
|
+
msgid "a data type can only have one implementation"
|
602
|
+
msgstr ""
|
603
|
+
|
604
|
+
#: ../lib/puppet/defaults.rb:126
|
602
605
|
msgid "Cannot disable unrecognized warning types %{invalid}."
|
603
606
|
msgstr ""
|
604
607
|
|
605
|
-
#: ../lib/puppet/defaults.rb:
|
608
|
+
#: ../lib/puppet/defaults.rb:127
|
606
609
|
msgid "Valid values are %{values}."
|
607
610
|
msgstr ""
|
608
611
|
|
609
612
|
#. TRANSLATORS 'data_binding_terminus' is a setting and should not be translated
|
610
|
-
#: ../lib/puppet/defaults.rb:
|
613
|
+
#: ../lib/puppet/defaults.rb:472
|
611
614
|
msgid "Setting 'data_binding_terminus' is deprecated."
|
612
615
|
msgstr ""
|
613
616
|
|
614
617
|
#. TRANSLATORS 'hiera' should not be translated
|
615
|
-
#: ../lib/puppet/defaults.rb:
|
618
|
+
#: ../lib/puppet/defaults.rb:474
|
616
619
|
msgid "Convert custom terminus to hiera 5 API."
|
617
620
|
msgstr ""
|
618
621
|
|
619
622
|
#. TRANSLATORS 'environment_data_provider' is a setting and should not be translated
|
620
|
-
#: ../lib/puppet/defaults.rb:
|
623
|
+
#: ../lib/puppet/defaults.rb:628
|
621
624
|
msgid "Setting 'environment_data_provider' is deprecated."
|
622
625
|
msgstr ""
|
623
626
|
|
624
|
-
#: ../lib/puppet/defaults.rb:
|
627
|
+
#: ../lib/puppet/defaults.rb:730
|
625
628
|
msgid "Certificate names must be lower case"
|
626
629
|
msgstr ""
|
627
630
|
|
628
|
-
#: ../lib/puppet/defaults.rb:
|
629
|
-
msgid "
|
631
|
+
#: ../lib/puppet/defaults.rb:967 ../lib/puppet/settings/enum_setting.rb:13 ../lib/puppet/settings/symbolic_enum_setting.rb:14
|
632
|
+
msgid "Invalid value '%{value}' for parameter %{name}. Allowed values are '%{allowed_values}'"
|
630
633
|
msgstr ""
|
631
634
|
|
632
|
-
#: ../lib/puppet/defaults.rb:
|
635
|
+
#: ../lib/puppet/defaults.rb:1493 ../lib/puppet/defaults.rb:1508
|
633
636
|
msgid "Attempted to set both server and server_list."
|
634
637
|
msgstr ""
|
635
638
|
|
636
|
-
#: ../lib/puppet/defaults.rb:
|
639
|
+
#: ../lib/puppet/defaults.rb:1494 ../lib/puppet/defaults.rb:1509
|
637
640
|
msgid "Server setting will not be used."
|
638
641
|
msgstr ""
|
639
642
|
|
640
643
|
#. TRANSLATORS 'pluginsync' is a setting and should not be translated
|
641
|
-
#: ../lib/puppet/defaults.rb:
|
644
|
+
#: ../lib/puppet/defaults.rb:1819
|
642
645
|
msgid "Setting 'pluginsync' is deprecated."
|
643
646
|
msgstr ""
|
644
647
|
|
@@ -646,7 +649,7 @@ msgstr ""
|
|
646
649
|
msgid "Could not parse for environment %{environment}: %{message}"
|
647
650
|
msgstr ""
|
648
651
|
|
649
|
-
#: ../lib/puppet/error.rb:68 ../lib/puppet/parser/compiler.rb:
|
652
|
+
#: ../lib/puppet/error.rb:68 ../lib/puppet/parser/compiler.rb:41
|
650
653
|
msgid "%{message} on node %{node}"
|
651
654
|
msgstr ""
|
652
655
|
|
@@ -658,7 +661,7 @@ msgstr ""
|
|
658
661
|
msgid "exceed depth limit"
|
659
662
|
msgstr ""
|
660
663
|
|
661
|
-
#: ../lib/puppet/face/ca.rb:5 ../lib/puppet/face/certificate.rb:6 ../lib/puppet/face/config.rb:
|
664
|
+
#: ../lib/puppet/face/ca.rb:5 ../lib/puppet/face/certificate.rb:6 ../lib/puppet/face/config.rb:8 ../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/key.rb:5 ../lib/puppet/face/man.rb:8 ../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 ../lib/puppet/face/status.rb:5
|
662
665
|
msgid "Apache 2 license; see COPYING"
|
663
666
|
msgstr ""
|
664
667
|
|
@@ -847,48 +850,107 @@ msgstr ""
|
|
847
850
|
msgid "Manage the list of revoked certificates."
|
848
851
|
msgstr ""
|
849
852
|
|
850
|
-
#: ../lib/puppet/face/config.rb:
|
853
|
+
#: ../lib/puppet/face/config.rb:10
|
851
854
|
msgid "Interact with Puppet's settings."
|
852
855
|
msgstr ""
|
853
856
|
|
854
|
-
#: ../lib/puppet/face/config.rb:
|
857
|
+
#: ../lib/puppet/face/config.rb:16
|
855
858
|
msgid "SECTION_NAME"
|
856
859
|
msgstr ""
|
857
860
|
|
858
|
-
#: ../lib/puppet/face/config.rb:
|
861
|
+
#: ../lib/puppet/face/config.rb:18
|
859
862
|
msgid "The section of the configuration file to interact with."
|
860
863
|
msgstr ""
|
861
864
|
|
862
|
-
#: ../lib/puppet/face/config.rb:
|
865
|
+
#: ../lib/puppet/face/config.rb:36
|
863
866
|
msgid "Examine Puppet's current settings."
|
864
867
|
msgstr ""
|
865
868
|
|
866
|
-
#: ../lib/puppet/face/config.rb:
|
869
|
+
#: ../lib/puppet/face/config.rb:37
|
867
870
|
msgid "(all | <setting> [<setting> ...]"
|
868
871
|
msgstr ""
|
869
872
|
|
870
|
-
#: ../lib/puppet/face/config.rb:
|
873
|
+
#: ../lib/puppet/face/config.rb:79
|
871
874
|
msgid "New environment loaders generated from the requested section."
|
872
875
|
msgstr ""
|
873
876
|
|
874
|
-
#: ../lib/puppet/face/config.rb:
|
877
|
+
#: ../lib/puppet/face/config.rb:85
|
878
|
+
msgid "No section specified; defaulting to '%{section_name}'."
|
879
|
+
msgstr ""
|
880
|
+
|
881
|
+
#. TRANSLATORS '--section' is a command line option and should not be translated
|
882
|
+
#. TRANSLATORS '--section' is a command line option and should not be translated
|
883
|
+
#: ../lib/puppet/face/config.rb:88 ../lib/puppet/face/config.rb:141
|
884
|
+
msgid "Set the config section by using the `--section` flag."
|
885
|
+
msgstr ""
|
886
|
+
|
887
|
+
#. TRANSLATORS `puppet config --section user print foo` is a command line example and should not be translated
|
888
|
+
#: ../lib/puppet/face/config.rb:90
|
889
|
+
msgid "For example, `puppet config --section user print foo`."
|
890
|
+
msgstr ""
|
891
|
+
|
892
|
+
#: ../lib/puppet/face/config.rb:91
|
893
|
+
msgid "For more information, see https://puppet.com/docs/puppet/latest/configuration.html"
|
894
|
+
msgstr ""
|
895
|
+
|
896
|
+
#: ../lib/puppet/face/config.rb:110
|
875
897
|
msgid "Set Puppet's settings."
|
876
898
|
msgstr ""
|
877
899
|
|
878
|
-
#: ../lib/puppet/face/config.rb:
|
900
|
+
#: ../lib/puppet/face/config.rb:111
|
879
901
|
msgid "[setting_name] [setting_value]"
|
880
902
|
msgstr ""
|
881
903
|
|
882
|
-
|
904
|
+
#. TRANSLATORS `[user]`, `[agent]`, and `[master]` are section names and should not be translated
|
905
|
+
#: ../lib/puppet/face/config.rb:134
|
906
|
+
msgid "The environment should be set in either the `[user]`, `[agent]`, or `[master]` section."
|
907
|
+
msgstr ""
|
908
|
+
|
909
|
+
#. TRANSLATORS `[agent]` is a section name and `puppet agent` is a command line example and should not be translated
|
910
|
+
#: ../lib/puppet/face/config.rb:136
|
911
|
+
msgid "Variables set in the `[agent]` section are used when running `puppet agent`."
|
912
|
+
msgstr ""
|
913
|
+
|
914
|
+
#. TRANSLATORS `[user]` is a section name and `puppet apply` and `puppet module` are command line examples and should not be translated
|
915
|
+
#: ../lib/puppet/face/config.rb:138
|
883
916
|
msgid ""
|
884
|
-
"
|
885
|
-
"
|
886
|
-
|
887
|
-
|
888
|
-
|
889
|
-
|
890
|
-
"`puppet config --section user set environment foo`.
|
891
|
-
"
|
917
|
+
"Variables set in the `[user]` section are used when running various other puppet subcommands, like `puppet apply` and `puppet module`;\n"
|
918
|
+
" these require the defined environment directory to exist locally."
|
919
|
+
msgstr ""
|
920
|
+
|
921
|
+
#. TRANSLATORS `puppet config --section user set environment foo` is a command line example and should not be translated
|
922
|
+
#: ../lib/puppet/face/config.rb:143
|
923
|
+
msgid "For example, `puppet config --section user set environment foo`."
|
924
|
+
msgstr ""
|
925
|
+
|
926
|
+
#: ../lib/puppet/face/config.rb:144
|
927
|
+
msgid "For more information, see https://puppet.com/docs/puppet/latest/configuration.html#environment"
|
928
|
+
msgstr ""
|
929
|
+
|
930
|
+
#: ../lib/puppet/face/config.rb:160
|
931
|
+
msgid "Delete a Puppet setting."
|
932
|
+
msgstr ""
|
933
|
+
|
934
|
+
#: ../lib/puppet/face/config.rb:161
|
935
|
+
msgid "(<setting>"
|
936
|
+
msgstr ""
|
937
|
+
|
938
|
+
#. TRANSLATORS 'main' is a specific section name and should not be translated
|
939
|
+
#: ../lib/puppet/face/config.rb:186
|
940
|
+
msgid "Deleted setting from '%{section_name}': '%{setting_string}'"
|
941
|
+
msgstr ""
|
942
|
+
|
943
|
+
#: ../lib/puppet/face/config.rb:189
|
944
|
+
msgid "No setting found in configuration file for section '%{section_name}' setting name '%{name}'"
|
945
|
+
msgstr ""
|
946
|
+
|
947
|
+
#. TRANSLATORS the 'puppet.conf' is a specific file and should not be translated
|
948
|
+
#: ../lib/puppet/face/config.rb:196
|
949
|
+
msgid "The puppet.conf file does not exist %{puppet_conf}"
|
950
|
+
msgstr ""
|
951
|
+
|
952
|
+
#: ../lib/puppet/face/config.rb:203
|
953
|
+
msgid "Resolving settings from section '%{section_name}' in environment '%{environment}'"
|
892
954
|
msgstr ""
|
893
955
|
|
894
956
|
#: ../lib/puppet/face/epp.rb:10
|
@@ -1169,27 +1231,27 @@ msgstr ""
|
|
1169
1231
|
msgid "Build a module release package."
|
1170
1232
|
msgstr ""
|
1171
1233
|
|
1172
|
-
#: ../lib/puppet/face/module/build.rb:
|
1234
|
+
#: ../lib/puppet/face/module/build.rb:17
|
1173
1235
|
msgid "Pathname object representing the path to the release archive."
|
1174
1236
|
msgstr ""
|
1175
1237
|
|
1176
|
-
#: ../lib/puppet/face/module/build.rb:
|
1238
|
+
#: ../lib/puppet/face/module/build.rb:34
|
1177
1239
|
msgid "[<path>]"
|
1178
1240
|
msgstr ""
|
1179
1241
|
|
1180
|
-
#: ../lib/puppet/face/module/build.rb:
|
1242
|
+
#: ../lib/puppet/face/module/build.rb:39
|
1181
1243
|
msgid "puppet module build only accepts 0 or 1 arguments"
|
1182
1244
|
msgstr ""
|
1183
1245
|
|
1184
|
-
#: ../lib/puppet/face/module/build.rb:
|
1246
|
+
#: ../lib/puppet/face/module/build.rb:47
|
1185
1247
|
msgid "Unable to find metadata.json in module root %{pwd} or parent directories. See <https://docs.puppetlabs.com/puppet/latest/reference/modules_publishing.html> for required file format."
|
1186
1248
|
msgstr ""
|
1187
1249
|
|
1188
|
-
#: ../lib/puppet/face/module/build.rb:
|
1250
|
+
#: ../lib/puppet/face/module/build.rb:51
|
1189
1251
|
msgid "Unable to find metadata.json in module root %{module_path} or parent directories. See <https://docs.puppetlabs.com/puppet/latest/reference/modules_publishing.html> for required file format."
|
1190
1252
|
msgstr ""
|
1191
1253
|
|
1192
|
-
#: ../lib/puppet/face/module/build.rb:
|
1254
|
+
#: ../lib/puppet/face/module/build.rb:61
|
1193
1255
|
msgid "Module built: %{path}"
|
1194
1256
|
msgstr ""
|
1195
1257
|
|
@@ -1229,7 +1291,7 @@ msgstr ""
|
|
1229
1291
|
msgid "Bypass the interactive metadata interview"
|
1230
1292
|
msgstr ""
|
1231
1293
|
|
1232
|
-
#: ../lib/puppet/face/module/generate.rb:87 ../lib/puppet/face/module/install.rb:
|
1294
|
+
#: ../lib/puppet/face/module/generate.rb:87 ../lib/puppet/face/module/install.rb:85 ../lib/puppet/face/module/uninstall.rb:34 ../lib/puppet/face/module/upgrade.rb:33
|
1233
1295
|
msgid "<name>"
|
1234
1296
|
msgstr ""
|
1235
1297
|
|
@@ -1245,66 +1307,71 @@ msgstr ""
|
|
1245
1307
|
msgid "Finished; module generated in %{path}."
|
1246
1308
|
msgstr ""
|
1247
1309
|
|
1248
|
-
|
1310
|
+
#. TRANSLATORS 'puppet module generate' is the name of the puppet command and 'Puppet Development Kit' is the name of the software package replacing this action and should not be translated.
|
1311
|
+
#: ../lib/puppet/face/module/generate.rb:142
|
1312
|
+
msgid "`puppet module generate` is deprecated and will be removed in a future release. This action has been replaced by Puppet Development Kit. For more information visit https://puppet.com/docs/pdk/latest/pdk.html."
|
1313
|
+
msgstr ""
|
1314
|
+
|
1315
|
+
#: ../lib/puppet/face/module/generate.rb:152
|
1249
1316
|
msgid ""
|
1250
1317
|
"We need to create a metadata.json file for this module. Please answer the\n"
|
1251
1318
|
" following questions; if the question is not applicable to this module, feel free\n"
|
1252
1319
|
" to leave it blank."
|
1253
1320
|
msgstr ""
|
1254
1321
|
|
1255
|
-
#: ../lib/puppet/face/module/generate.rb:
|
1322
|
+
#: ../lib/puppet/face/module/generate.rb:158
|
1256
1323
|
msgid "Puppet uses Semantic Versioning (semver.org) to version modules."
|
1257
1324
|
msgstr ""
|
1258
1325
|
|
1259
|
-
#: ../lib/puppet/face/module/generate.rb:
|
1326
|
+
#: ../lib/puppet/face/module/generate.rb:159
|
1260
1327
|
msgid "What version is this module? [%{version}]"
|
1261
1328
|
msgstr ""
|
1262
1329
|
|
1263
|
-
#: ../lib/puppet/face/module/generate.rb:
|
1330
|
+
#: ../lib/puppet/face/module/generate.rb:162
|
1264
1331
|
msgid "We're sorry, we could not parse that as a Semantic Version."
|
1265
1332
|
msgstr ""
|
1266
1333
|
|
1267
|
-
#: ../lib/puppet/face/module/generate.rb:
|
1334
|
+
#: ../lib/puppet/face/module/generate.rb:167
|
1268
1335
|
msgid "Who wrote this module? [%{author}]"
|
1269
1336
|
msgstr ""
|
1270
1337
|
|
1271
|
-
#: ../lib/puppet/face/module/generate.rb:
|
1338
|
+
#: ../lib/puppet/face/module/generate.rb:171
|
1272
1339
|
msgid "What license does this module code fall under? [%{license}]"
|
1273
1340
|
msgstr ""
|
1274
1341
|
|
1275
|
-
#: ../lib/puppet/face/module/generate.rb:
|
1342
|
+
#: ../lib/puppet/face/module/generate.rb:175
|
1276
1343
|
msgid "How would you describe this module in a single sentence?"
|
1277
1344
|
msgstr ""
|
1278
1345
|
|
1279
|
-
#: ../lib/puppet/face/module/generate.rb:
|
1346
|
+
#: ../lib/puppet/face/module/generate.rb:179
|
1280
1347
|
msgid "Where is this module's source code repository?"
|
1281
1348
|
msgstr ""
|
1282
1349
|
|
1283
|
-
#: ../lib/puppet/face/module/generate.rb:
|
1350
|
+
#: ../lib/puppet/face/module/generate.rb:183
|
1284
1351
|
msgid "Where can others go to learn more about this module?%{project_page}"
|
1285
1352
|
msgstr ""
|
1286
1353
|
|
1287
|
-
#: ../lib/puppet/face/module/generate.rb:
|
1354
|
+
#: ../lib/puppet/face/module/generate.rb:187
|
1288
1355
|
msgid "Where can others go to file issues about this module?%{issues}"
|
1289
1356
|
msgstr ""
|
1290
1357
|
|
1291
|
-
#: ../lib/puppet/face/module/generate.rb:
|
1358
|
+
#: ../lib/puppet/face/module/generate.rb:195
|
1292
1359
|
msgid "About to generate this metadata; continue? [n/Y]"
|
1293
1360
|
msgstr ""
|
1294
1361
|
|
1295
|
-
#: ../lib/puppet/face/module/generate.rb:
|
1362
|
+
#: ../lib/puppet/face/module/generate.rb:198
|
1296
1363
|
msgid "Aborting..."
|
1297
1364
|
msgstr ""
|
1298
1365
|
|
1299
|
-
#: ../lib/puppet/face/module/generate.rb:
|
1366
|
+
#: ../lib/puppet/face/module/generate.rb:213
|
1300
1367
|
msgid "%{destination} already exists."
|
1301
1368
|
msgstr ""
|
1302
1369
|
|
1303
|
-
#: ../lib/puppet/face/module/generate.rb:
|
1370
|
+
#: ../lib/puppet/face/module/generate.rb:221
|
1304
1371
|
msgid "Generating module at %{dest}..."
|
1305
1372
|
msgstr ""
|
1306
1373
|
|
1307
|
-
#: ../lib/puppet/face/module/generate.rb:
|
1374
|
+
#: ../lib/puppet/face/module/generate.rb:229
|
1308
1375
|
msgid "Populating templates..."
|
1309
1376
|
msgstr ""
|
1310
1377
|
|
@@ -1312,35 +1379,35 @@ msgstr ""
|
|
1312
1379
|
msgid "Install a module from the Puppet Forge or a release archive."
|
1313
1380
|
msgstr ""
|
1314
1381
|
|
1315
|
-
#: ../lib/puppet/face/module/install.rb:
|
1382
|
+
#: ../lib/puppet/face/module/install.rb:18
|
1316
1383
|
msgid "Pathname object representing the path to the installed module."
|
1317
1384
|
msgstr ""
|
1318
1385
|
|
1319
|
-
#: ../lib/puppet/face/module/install.rb:
|
1386
|
+
#: ../lib/puppet/face/module/install.rb:88
|
1320
1387
|
msgid "Force overwrite of existing module, if any. (Implies --ignore-dependencies.)"
|
1321
1388
|
msgstr ""
|
1322
1389
|
|
1323
|
-
#: ../lib/puppet/face/module/install.rb:
|
1390
|
+
#: ../lib/puppet/face/module/install.rb:96
|
1324
1391
|
msgid "The directory into which modules are installed."
|
1325
1392
|
msgstr ""
|
1326
1393
|
|
1327
|
-
#: ../lib/puppet/face/module/install.rb:
|
1394
|
+
#: ../lib/puppet/face/module/install.rb:109 ../lib/puppet/face/module/upgrade.rb:45
|
1328
1395
|
msgid "Do not attempt to install dependencies. (Implied by --force.)"
|
1329
1396
|
msgstr ""
|
1330
1397
|
|
1331
|
-
#: ../lib/puppet/face/module/install.rb:
|
1398
|
+
#: ../lib/puppet/face/module/install.rb:116
|
1332
1399
|
msgid "Module version to install."
|
1333
1400
|
msgstr ""
|
1334
1401
|
|
1335
|
-
#: ../lib/puppet/face/module/install.rb:
|
1402
|
+
#: ../lib/puppet/face/module/install.rb:124 ../lib/puppet/face/module/list.rb:21 ../lib/puppet/face/module/uninstall.rb:60 ../lib/puppet/face/module/upgrade.rb:66
|
1336
1403
|
msgid "Whether version ranges should exclude pre-release versions"
|
1337
1404
|
msgstr ""
|
1338
1405
|
|
1339
|
-
#: ../lib/puppet/face/module/install.rb:
|
1406
|
+
#: ../lib/puppet/face/module/install.rb:129
|
1340
1407
|
msgid "Preparing to install into %{dir} ..."
|
1341
1408
|
msgstr ""
|
1342
1409
|
|
1343
|
-
#: ../lib/puppet/face/module/install.rb:
|
1410
|
+
#: ../lib/puppet/face/module/install.rb:137
|
1344
1411
|
msgid "Module %{name} %{version} is already installed."
|
1345
1412
|
msgstr ""
|
1346
1413
|
|
@@ -1403,35 +1470,35 @@ msgstr ""
|
|
1403
1470
|
msgid "Uninstall a puppet module."
|
1404
1471
|
msgstr ""
|
1405
1472
|
|
1406
|
-
#: ../lib/puppet/face/module/uninstall.rb:
|
1473
|
+
#: ../lib/puppet/face/module/uninstall.rb:10
|
1407
1474
|
msgid "Hash of module objects representing uninstalled modules and related errors."
|
1408
1475
|
msgstr ""
|
1409
1476
|
|
1410
|
-
#: ../lib/puppet/face/module/uninstall.rb:
|
1477
|
+
#: ../lib/puppet/face/module/uninstall.rb:37
|
1411
1478
|
msgid "Force uninstall of an installed module."
|
1412
1479
|
msgstr ""
|
1413
1480
|
|
1414
|
-
#: ../lib/puppet/face/module/uninstall.rb:
|
1481
|
+
#: ../lib/puppet/face/module/uninstall.rb:45
|
1415
1482
|
msgid "Ignore any local changes made. (Implied by --force.)"
|
1416
1483
|
msgstr ""
|
1417
1484
|
|
1418
|
-
#: ../lib/puppet/face/module/uninstall.rb:
|
1485
|
+
#: ../lib/puppet/face/module/uninstall.rb:52
|
1419
1486
|
msgid "The version of the module to uninstall"
|
1420
1487
|
msgstr ""
|
1421
1488
|
|
1422
|
-
#: ../lib/puppet/face/module/uninstall.rb:
|
1489
|
+
#: ../lib/puppet/face/module/uninstall.rb:69
|
1423
1490
|
msgid "Preparing to uninstall '%{name}' (%{module_version}) ..."
|
1424
1491
|
msgstr ""
|
1425
1492
|
|
1426
|
-
#: ../lib/puppet/face/module/uninstall.rb:
|
1493
|
+
#: ../lib/puppet/face/module/uninstall.rb:71
|
1427
1494
|
msgid "Preparing to uninstall '%{name}' ..."
|
1428
1495
|
msgstr ""
|
1429
1496
|
|
1430
|
-
#: ../lib/puppet/face/module/uninstall.rb:
|
1497
|
+
#: ../lib/puppet/face/module/uninstall.rb:85
|
1431
1498
|
msgid "Removed '%{name}' (%{module_version}) from %{path}"
|
1432
1499
|
msgstr ""
|
1433
1500
|
|
1434
|
-
#: ../lib/puppet/face/module/uninstall.rb:
|
1501
|
+
#: ../lib/puppet/face/module/uninstall.rb:87
|
1435
1502
|
msgid "Removed '%{name}' from %{path}"
|
1436
1503
|
msgstr ""
|
1437
1504
|
|
@@ -1439,19 +1506,19 @@ msgstr ""
|
|
1439
1506
|
msgid "Upgrade a puppet module."
|
1440
1507
|
msgstr ""
|
1441
1508
|
|
1442
|
-
#: ../lib/puppet/face/module/upgrade.rb:
|
1509
|
+
#: ../lib/puppet/face/module/upgrade.rb:36
|
1443
1510
|
msgid "Force upgrade of an installed module. (Implies --ignore-dependencies.)"
|
1444
1511
|
msgstr ""
|
1445
1512
|
|
1446
|
-
#: ../lib/puppet/face/module/upgrade.rb:
|
1513
|
+
#: ../lib/puppet/face/module/upgrade.rb:52
|
1447
1514
|
msgid "Ignore and overwrite any local changes made. (Implied by --force.)"
|
1448
1515
|
msgstr ""
|
1449
1516
|
|
1450
|
-
#: ../lib/puppet/face/module/upgrade.rb:
|
1517
|
+
#: ../lib/puppet/face/module/upgrade.rb:59
|
1451
1518
|
msgid "The version of the module to upgrade to."
|
1452
1519
|
msgstr ""
|
1453
1520
|
|
1454
|
-
#: ../lib/puppet/face/module/upgrade.rb:
|
1521
|
+
#: ../lib/puppet/face/module/upgrade.rb:71
|
1455
1522
|
msgid "Preparing to upgrade '%{name}' ..."
|
1456
1523
|
msgstr ""
|
1457
1524
|
|
@@ -1548,35 +1615,35 @@ msgstr ""
|
|
1548
1615
|
msgid "Whether or not to validate the parsed result, if no-validate only syntax errors are reported"
|
1549
1616
|
msgstr ""
|
1550
1617
|
|
1551
|
-
#: ../lib/puppet/face/parser.rb:
|
1618
|
+
#: ../lib/puppet/face/parser.rb:115
|
1552
1619
|
msgid ""
|
1553
1620
|
"One or more file(s) specified did not exist:\n"
|
1554
1621
|
msgstr ""
|
1555
1622
|
|
1556
|
-
#: ../lib/puppet/face/parser.rb:
|
1623
|
+
#: ../lib/puppet/face/parser.rb:149
|
1557
1624
|
msgid "For puppet parser validate"
|
1558
1625
|
msgstr ""
|
1559
1626
|
|
1560
|
-
#: ../lib/puppet/face/plugin.rb:
|
1627
|
+
#: ../lib/puppet/face/plugin.rb:8
|
1561
1628
|
msgid "Interact with the Puppet plugin system."
|
1562
1629
|
msgstr ""
|
1563
1630
|
|
1564
|
-
#: ../lib/puppet/face/plugin.rb:
|
1631
|
+
#: ../lib/puppet/face/plugin.rb:20
|
1565
1632
|
msgid "Download plugins from the puppet master."
|
1566
1633
|
msgstr ""
|
1567
1634
|
|
1568
|
-
#: ../lib/puppet/face/plugin.rb:
|
1635
|
+
#: ../lib/puppet/face/plugin.rb:26
|
1569
1636
|
msgid ""
|
1570
1637
|
" A list of the files downloaded, or a confirmation that no files were\n"
|
1571
1638
|
" downloaded. When used from the Ruby API, this action returns an array of\n"
|
1572
1639
|
" the files downloaded, which will be empty if none were retrieved.\n"
|
1573
1640
|
msgstr ""
|
1574
1641
|
|
1575
|
-
#: ../lib/puppet/face/plugin.rb:
|
1642
|
+
#: ../lib/puppet/face/plugin.rb:50
|
1576
1643
|
msgid "No plugins downloaded."
|
1577
1644
|
msgstr ""
|
1578
1645
|
|
1579
|
-
#: ../lib/puppet/face/plugin.rb:
|
1646
|
+
#: ../lib/puppet/face/plugin.rb:52
|
1580
1647
|
msgid "Downloaded these plugins: %{plugins}"
|
1581
1648
|
msgstr ""
|
1582
1649
|
|
@@ -1668,35 +1735,35 @@ msgstr ""
|
|
1668
1735
|
msgid "Cannot determine basic system flavour"
|
1669
1736
|
msgstr ""
|
1670
1737
|
|
1671
|
-
#: ../lib/puppet/file_bucket/dipper.rb:
|
1738
|
+
#: ../lib/puppet/file_bucket/dipper.rb:39
|
1672
1739
|
msgid "File %{file} does not exist"
|
1673
1740
|
msgstr ""
|
1674
1741
|
|
1675
|
-
#: ../lib/puppet/file_bucket/dipper.rb:
|
1742
|
+
#: ../lib/puppet/file_bucket/dipper.rb:54
|
1676
1743
|
msgid "Could not back up %{file}: %{detail}"
|
1677
1744
|
msgstr ""
|
1678
1745
|
|
1679
|
-
#: ../lib/puppet/file_bucket/dipper.rb:
|
1746
|
+
#: ../lib/puppet/file_bucket/dipper.rb:62
|
1680
1747
|
msgid "Diff is not supported on this platform"
|
1681
1748
|
msgstr ""
|
1682
1749
|
|
1683
|
-
#: ../lib/puppet/file_bucket/dipper.rb:
|
1750
|
+
#: ../lib/puppet/file_bucket/dipper.rb:80
|
1684
1751
|
msgid "Please provide a file or checksum do diff with"
|
1685
1752
|
msgstr ""
|
1686
1753
|
|
1687
|
-
#: ../lib/puppet/file_bucket/dipper.rb:
|
1754
|
+
#: ../lib/puppet/file_bucket/dipper.rb:96
|
1688
1755
|
msgid "Failed to diff files"
|
1689
1756
|
msgstr ""
|
1690
1757
|
|
1691
|
-
#: ../lib/puppet/file_bucket/dipper.rb:
|
1758
|
+
#: ../lib/puppet/file_bucket/dipper.rb:110 ../lib/puppet/file_bucket/dipper.rb:164
|
1692
1759
|
msgid "File not found"
|
1693
1760
|
msgstr ""
|
1694
1761
|
|
1695
|
-
#: ../lib/puppet/file_bucket/dipper.rb:
|
1762
|
+
#: ../lib/puppet/file_bucket/dipper.rb:144
|
1696
1763
|
msgid "Could not find file with checksum %{sum}"
|
1697
1764
|
msgstr ""
|
1698
1765
|
|
1699
|
-
#: ../lib/puppet/file_bucket/dipper.rb:
|
1766
|
+
#: ../lib/puppet/file_bucket/dipper.rb:155 ../lib/puppet/indirector/file_bucket_file/file.rb:43
|
1700
1767
|
msgid "Listing remote file buckets is not allowed"
|
1701
1768
|
msgstr ""
|
1702
1769
|
|
@@ -1753,7 +1820,7 @@ msgstr ""
|
|
1753
1820
|
msgid "Fileserver configuration file does not use '=' as a separator"
|
1754
1821
|
msgstr ""
|
1755
1822
|
|
1756
|
-
#: ../lib/puppet/file_serving/configuration/parser.rb:41 ../lib/puppet/network/auth_config_parser.rb:72 ../lib/puppet/util/network_device/config.rb:
|
1823
|
+
#: ../lib/puppet/file_serving/configuration/parser.rb:41 ../lib/puppet/network/auth_config_parser.rb:72 ../lib/puppet/util/network_device/config.rb:101
|
1757
1824
|
msgid "Invalid argument '%{var}' at %{error_location}"
|
1758
1825
|
msgstr ""
|
1759
1826
|
|
@@ -1935,15 +2002,15 @@ msgstr ""
|
|
1935
2002
|
msgid "Exception was: %{detail}"
|
1936
2003
|
msgstr ""
|
1937
2004
|
|
1938
|
-
#: ../lib/puppet/forge.rb:
|
2005
|
+
#: ../lib/puppet/forge.rb:204
|
1939
2006
|
msgid "Downloaded release for %{name} did not match expected checksum"
|
1940
2007
|
msgstr ""
|
1941
2008
|
|
1942
|
-
#: ../lib/puppet/forge.rb:
|
2009
|
+
#: ../lib/puppet/forge.rb:212 ../lib/puppet/module_tool/applications/unpacker.rb:58 ../lib/puppet/module_tool/local_tarball.rb:86
|
1943
2010
|
msgid "Could not extract contents of module archive: %{message}"
|
1944
2011
|
msgstr ""
|
1945
2012
|
|
1946
|
-
#: ../lib/puppet/forge.rb:
|
2013
|
+
#: ../lib/puppet/forge.rb:229
|
1947
2014
|
msgid "Cannot consider release %{name}-%{version}: %{error}"
|
1948
2015
|
msgstr ""
|
1949
2016
|
|
@@ -2007,64 +2074,81 @@ msgstr ""
|
|
2007
2074
|
msgid " The message we received said '%{message}'"
|
2008
2075
|
msgstr ""
|
2009
2076
|
|
2010
|
-
#: ../lib/puppet/functions.rb:
|
2077
|
+
#: ../lib/puppet/functions.rb:193
|
2078
|
+
msgid "Function Load Error for function '%{function_name}': %{message}"
|
2079
|
+
msgstr ""
|
2080
|
+
|
2081
|
+
#: ../lib/puppet/functions.rb:212
|
2011
2082
|
msgid "Functions must be based on Puppet::Pops::Functions::Function. Got %{function_base}"
|
2012
2083
|
msgstr ""
|
2013
2084
|
|
2014
|
-
#: ../lib/puppet/functions.rb:
|
2085
|
+
#: ../lib/puppet/functions.rb:272
|
2015
2086
|
msgid "Function Creation Error, cannot create a default dispatcher for function '%{func_name}', no method with this name found"
|
2016
2087
|
msgstr ""
|
2017
2088
|
|
2018
|
-
#: ../lib/puppet/functions.rb:
|
2089
|
+
#: ../lib/puppet/functions.rb:350
|
2019
2090
|
msgid "No loader present. Call create_loaded_function(:myname, loader,...), instead of 'create_function' if running tests"
|
2020
2091
|
msgstr ""
|
2021
2092
|
|
2022
|
-
#: ../lib/puppet/functions.rb:
|
2093
|
+
#: ../lib/puppet/functions.rb:413
|
2023
2094
|
msgid "A required parameter cannot be added after an optional parameter"
|
2024
2095
|
msgstr ""
|
2025
2096
|
|
2026
|
-
#: ../lib/puppet/functions.rb:
|
2097
|
+
#: ../lib/puppet/functions.rb:462
|
2027
2098
|
msgid "A required repeated parameter cannot be added after an optional parameter"
|
2028
2099
|
msgstr ""
|
2029
2100
|
|
2030
|
-
#: ../lib/puppet/functions.rb:
|
2101
|
+
#: ../lib/puppet/functions.rb:484
|
2031
2102
|
msgid "block_param accepts max 2 arguments (type, name), got %{size}."
|
2032
2103
|
msgstr ""
|
2033
2104
|
|
2034
|
-
#: ../lib/puppet/functions.rb:
|
2105
|
+
#: ../lib/puppet/functions.rb:488
|
2035
2106
|
msgid "Expected PCallableType or PVariantType thereof, got %{type_class}"
|
2036
2107
|
msgstr ""
|
2037
2108
|
|
2038
|
-
#: ../lib/puppet/functions.rb:
|
2109
|
+
#: ../lib/puppet/functions.rb:492
|
2039
2110
|
msgid "Expected block_param name to be a Symbol, got %{name_class}"
|
2040
2111
|
msgstr ""
|
2041
2112
|
|
2042
|
-
#: ../lib/puppet/functions.rb:
|
2113
|
+
#: ../lib/puppet/functions.rb:499
|
2043
2114
|
msgid "Attempt to redefine block"
|
2044
2115
|
msgstr ""
|
2045
2116
|
|
2046
|
-
#: ../lib/puppet/functions.rb:
|
2117
|
+
#: ../lib/puppet/functions.rb:521
|
2047
2118
|
msgid "Argument to 'return_type' must be a String reference to a Puppet Data Type. Got %{type_class}"
|
2048
2119
|
msgstr ""
|
2049
2120
|
|
2050
|
-
#: ../lib/puppet/functions.rb:
|
2121
|
+
#: ../lib/puppet/functions.rb:530
|
2051
2122
|
msgid "Parameters cannot be added after a block parameter"
|
2052
2123
|
msgstr ""
|
2053
2124
|
|
2054
|
-
#: ../lib/puppet/functions.rb:
|
2125
|
+
#: ../lib/puppet/functions.rb:531
|
2055
2126
|
msgid "Parameters cannot be added after a repeated parameter"
|
2056
2127
|
msgstr ""
|
2057
2128
|
|
2058
|
-
#: ../lib/puppet/functions.rb:
|
2129
|
+
#: ../lib/puppet/functions.rb:534
|
2059
2130
|
msgid "Parameter name argument must be a Symbol. Got %{name_class}"
|
2060
2131
|
msgstr ""
|
2061
2132
|
|
2062
|
-
#: ../lib/puppet/functions.rb:
|
2133
|
+
#: ../lib/puppet/functions.rb:547
|
2063
2134
|
msgid "Parameter 'type' must be a String reference to a Puppet Data Type. Got %{type_class}"
|
2064
2135
|
msgstr ""
|
2065
2136
|
|
2066
|
-
#: ../lib/puppet/functions.rb:
|
2067
|
-
msgid "
|
2137
|
+
#: ../lib/puppet/functions.rb:591
|
2138
|
+
msgid ""
|
2139
|
+
"Parsing of type string '\"%{type_string}\"' failed with message: <%{message}>.\n"
|
2140
|
+
msgstr ""
|
2141
|
+
|
2142
|
+
#: ../lib/puppet/functions.rb:634
|
2143
|
+
msgid ""
|
2144
|
+
"Parsing of 'type \"%{assignment_string}\"' failed with message: <%{message}>.\n"
|
2145
|
+
"Called from <%{ruby_file_location}>"
|
2146
|
+
msgstr ""
|
2147
|
+
|
2148
|
+
#: ../lib/puppet/functions.rb:643
|
2149
|
+
msgid ""
|
2150
|
+
"Expected a type alias assignment on the form 'AliasType = T', got '%{assignment_string}'.\n"
|
2151
|
+
"Called from <%{ruby_file_location}>"
|
2068
2152
|
msgstr ""
|
2069
2153
|
|
2070
2154
|
#. TRANSLATORS the string "binary_file()" should not be translated
|
@@ -2072,15 +2156,15 @@ msgstr ""
|
|
2072
2156
|
msgid "binary_file(): The given file '%{unresolved_path}' does not exist"
|
2073
2157
|
msgstr ""
|
2074
2158
|
|
2075
|
-
#: ../lib/puppet/functions/defined.rb:
|
2159
|
+
#: ../lib/puppet/functions/defined.rb:130
|
2076
2160
|
msgid "The given resource type is a reference to all kind of types"
|
2077
2161
|
msgstr ""
|
2078
2162
|
|
2079
|
-
#: ../lib/puppet/functions/defined.rb:
|
2163
|
+
#: ../lib/puppet/functions/defined.rb:135 ../lib/puppet/functions/defined.rb:149
|
2080
2164
|
msgid "The given class type is a reference to all classes"
|
2081
2165
|
msgstr ""
|
2082
2166
|
|
2083
|
-
#: ../lib/puppet/functions/defined.rb:
|
2167
|
+
#: ../lib/puppet/functions/defined.rb:153
|
2084
2168
|
msgid "Invalid argument of type '%{value_class}' to 'defined'"
|
2085
2169
|
msgstr ""
|
2086
2170
|
|
@@ -2117,7 +2201,7 @@ msgstr ""
|
|
2117
2201
|
msgid "Given Regexp Type has no regular expression"
|
2118
2202
|
msgstr ""
|
2119
2203
|
|
2120
|
-
#: ../lib/puppet/functions/require.rb:
|
2204
|
+
#: ../lib/puppet/functions/require.rb:36
|
2121
2205
|
msgid "Could not find class %{klass}"
|
2122
2206
|
msgstr ""
|
2123
2207
|
|
@@ -2260,83 +2344,83 @@ msgstr ""
|
|
2260
2344
|
msgid "Inlining file metadata"
|
2261
2345
|
msgstr ""
|
2262
2346
|
|
2263
|
-
#: ../lib/puppet/indirector/catalog/compiler.rb:
|
2347
|
+
#: ../lib/puppet/indirector/catalog/compiler.rb:255
|
2264
2348
|
msgid "Could not get metadata for %{resource}"
|
2265
2349
|
msgstr ""
|
2266
2350
|
|
2267
|
-
#: ../lib/puppet/indirector/catalog/compiler.rb:
|
2351
|
+
#: ../lib/puppet/indirector/catalog/compiler.rb:276
|
2268
2352
|
msgid "Unable to find a common checksum type between agent '%{agent_type}' and master '%{master_type}'."
|
2269
2353
|
msgstr ""
|
2270
2354
|
|
2271
|
-
#: ../lib/puppet/indirector/catalog/compiler.rb:
|
2355
|
+
#: ../lib/puppet/indirector/catalog/compiler.rb:283
|
2272
2356
|
msgid "Compiled static catalog for %{node} in environment %{environment} in %%{seconds} seconds"
|
2273
2357
|
msgstr ""
|
2274
2358
|
|
2275
|
-
#: ../lib/puppet/indirector/catalog/compiler.rb:
|
2359
|
+
#: ../lib/puppet/indirector/catalog/compiler.rb:284
|
2276
2360
|
msgid "Compiled static catalog for %{node} in environment %{environment}"
|
2277
2361
|
msgstr ""
|
2278
2362
|
|
2279
|
-
#: ../lib/puppet/indirector/catalog/compiler.rb:
|
2363
|
+
#: ../lib/puppet/indirector/catalog/compiler.rb:286
|
2280
2364
|
msgid "Compiled static catalog for %{node} in %%{seconds} seconds"
|
2281
2365
|
msgstr ""
|
2282
2366
|
|
2283
|
-
#: ../lib/puppet/indirector/catalog/compiler.rb:
|
2367
|
+
#: ../lib/puppet/indirector/catalog/compiler.rb:287
|
2284
2368
|
msgid "Compiled static catalog for %{node}"
|
2285
2369
|
msgstr ""
|
2286
2370
|
|
2287
|
-
#: ../lib/puppet/indirector/catalog/compiler.rb:
|
2371
|
+
#: ../lib/puppet/indirector/catalog/compiler.rb:292
|
2288
2372
|
msgid "Compiled catalog for %{node} in environment %{environment} in %%{seconds} seconds"
|
2289
2373
|
msgstr ""
|
2290
2374
|
|
2291
|
-
#: ../lib/puppet/indirector/catalog/compiler.rb:
|
2375
|
+
#: ../lib/puppet/indirector/catalog/compiler.rb:293
|
2292
2376
|
msgid "Compiled catalog for %{node} in environment %{environment}"
|
2293
2377
|
msgstr ""
|
2294
2378
|
|
2295
|
-
#: ../lib/puppet/indirector/catalog/compiler.rb:
|
2379
|
+
#: ../lib/puppet/indirector/catalog/compiler.rb:295
|
2296
2380
|
msgid "Compiled catalog for %{node} in %%{seconds} seconds"
|
2297
2381
|
msgstr ""
|
2298
2382
|
|
2299
|
-
#: ../lib/puppet/indirector/catalog/compiler.rb:
|
2383
|
+
#: ../lib/puppet/indirector/catalog/compiler.rb:296
|
2300
2384
|
msgid "Compiled catalog for %{node}"
|
2301
2385
|
msgstr ""
|
2302
2386
|
|
2303
2387
|
#. TRANSLATORS Inlined refers to adding additional metadata
|
2304
|
-
#: ../lib/puppet/indirector/catalog/compiler.rb:
|
2388
|
+
#: ../lib/puppet/indirector/catalog/compiler.rb:318
|
2305
2389
|
msgid "Inlined resource metadata into static catalog for %{node} in environment %{environment} in %%{seconds} seconds"
|
2306
2390
|
msgstr ""
|
2307
2391
|
|
2308
2392
|
#. TRANSLATORS Inlined refers to adding additional metadata
|
2309
|
-
#: ../lib/puppet/indirector/catalog/compiler.rb:
|
2393
|
+
#: ../lib/puppet/indirector/catalog/compiler.rb:320
|
2310
2394
|
msgid "Inlined resource metadata into static catalog for %{node} in environment %{environment}"
|
2311
2395
|
msgstr ""
|
2312
2396
|
|
2313
2397
|
#. TRANSLATORS Inlined refers to adding additional metadata
|
2314
|
-
#: ../lib/puppet/indirector/catalog/compiler.rb:
|
2398
|
+
#: ../lib/puppet/indirector/catalog/compiler.rb:323
|
2315
2399
|
msgid "Inlined resource metadata into static catalog for %{node} in %%{seconds} seconds"
|
2316
2400
|
msgstr ""
|
2317
2401
|
|
2318
2402
|
#. TRANSLATORS Inlined refers to adding additional metadata
|
2319
|
-
#: ../lib/puppet/indirector/catalog/compiler.rb:
|
2403
|
+
#: ../lib/puppet/indirector/catalog/compiler.rb:325
|
2320
2404
|
msgid "Inlined resource metadata into static catalog for %{node}"
|
2321
2405
|
msgstr ""
|
2322
2406
|
|
2323
|
-
#: ../lib/puppet/indirector/catalog/compiler.rb:
|
2407
|
+
#: ../lib/puppet/indirector/catalog/compiler.rb:342
|
2324
2408
|
msgid "Found node information"
|
2325
2409
|
msgstr ""
|
2326
2410
|
|
2327
|
-
#: ../lib/puppet/indirector/catalog/compiler.rb:
|
2411
|
+
#: ../lib/puppet/indirector/catalog/compiler.rb:350
|
2328
2412
|
msgid "Failed when searching for node %{name}: %{detail}"
|
2329
2413
|
msgstr ""
|
2330
2414
|
|
2331
|
-
#: ../lib/puppet/indirector/catalog/compiler.rb:
|
2415
|
+
#: ../lib/puppet/indirector/catalog/compiler.rb:369
|
2332
2416
|
msgid "Invalid option use_node for a remote request"
|
2333
2417
|
msgstr ""
|
2334
2418
|
|
2335
|
-
#: ../lib/puppet/indirector/catalog/compiler.rb:
|
2419
|
+
#: ../lib/puppet/indirector/catalog/compiler.rb:387
|
2336
2420
|
msgid "Could not find node '%{name}'; cannot compile"
|
2337
2421
|
msgstr ""
|
2338
2422
|
|
2339
|
-
#: ../lib/puppet/indirector/catalog/compiler.rb:
|
2423
|
+
#: ../lib/puppet/indirector/catalog/compiler.rb:405
|
2340
2424
|
msgid "Could not retrieve fact %{fact}"
|
2341
2425
|
msgstr ""
|
2342
2426
|
|
@@ -2511,23 +2595,23 @@ msgid "FileBucket got a duplicate file %{file_checksum}"
|
|
2511
2595
|
msgstr ""
|
2512
2596
|
|
2513
2597
|
#. TRANSLATORS "FileBucket" should not be translated
|
2514
|
-
#: ../lib/puppet/indirector/file_bucket_file/file.rb:
|
2598
|
+
#: ../lib/puppet/indirector/file_bucket_file/file.rb:177
|
2515
2599
|
msgid "Unable to verify existing FileBucket backup at '%{path}'."
|
2516
2600
|
msgstr ""
|
2517
2601
|
|
2518
|
-
#: ../lib/puppet/indirector/file_bucket_file/file.rb:
|
2602
|
+
#: ../lib/puppet/indirector/file_bucket_file/file.rb:178
|
2519
2603
|
msgid "Existing backup and new file have different content but same checksum, %{value}. Verify existing backup and remove if incorrect."
|
2520
2604
|
msgstr ""
|
2521
2605
|
|
2522
|
-
#: ../lib/puppet/indirector/file_bucket_file/file.rb:
|
2606
|
+
#: ../lib/puppet/indirector/file_bucket_file/file.rb:184
|
2523
2607
|
msgid "Existing backup does not match its expected sum, %{sum}. Overwriting corrupted backup."
|
2524
2608
|
msgstr ""
|
2525
2609
|
|
2526
|
-
#: ../lib/puppet/indirector/file_bucket_file/file.rb:
|
2610
|
+
#: ../lib/puppet/indirector/file_bucket_file/file.rb:204
|
2527
2611
|
msgid "Unsupported checksum type %{checksum_type}"
|
2528
2612
|
msgstr ""
|
2529
2613
|
|
2530
|
-
#: ../lib/puppet/indirector/file_bucket_file/file.rb:
|
2614
|
+
#: ../lib/puppet/indirector/file_bucket_file/file.rb:206
|
2531
2615
|
msgid "Invalid checksum %{checksum}"
|
2532
2616
|
msgstr ""
|
2533
2617
|
|
@@ -2582,39 +2666,39 @@ msgstr ""
|
|
2582
2666
|
msgid "Could not find terminus %{terminus_class} for indirection %{name}"
|
2583
2667
|
msgstr ""
|
2584
2668
|
|
2585
|
-
#: ../lib/puppet/indirector/indirection.rb:
|
2669
|
+
#: ../lib/puppet/indirector/indirection.rb:170
|
2586
2670
|
msgid "Expiring the %{cache} cache of %{instance}"
|
2587
2671
|
msgstr ""
|
2588
2672
|
|
2589
|
-
#: ../lib/puppet/indirector/indirection.rb:
|
2673
|
+
#: ../lib/puppet/indirector/indirection.rb:200
|
2590
2674
|
msgid "Caching %{indirection} for %{request}"
|
2591
2675
|
msgstr ""
|
2592
2676
|
|
2593
|
-
#: ../lib/puppet/indirector/indirection.rb:
|
2677
|
+
#: ../lib/puppet/indirector/indirection.rb:211
|
2594
2678
|
msgid "Filtered result for %{indirection} %{request}"
|
2595
2679
|
msgstr ""
|
2596
2680
|
|
2597
|
-
#: ../lib/puppet/indirector/indirection.rb:
|
2681
|
+
#: ../lib/puppet/indirector/indirection.rb:240
|
2598
2682
|
msgid "Not using expired %{indirection} for %{request} from cache; expired at %{expiration}"
|
2599
2683
|
msgstr ""
|
2600
2684
|
|
2601
|
-
#: ../lib/puppet/indirector/indirection.rb:
|
2685
|
+
#: ../lib/puppet/indirector/indirection.rb:247
|
2602
2686
|
msgid "Cached %{indirection} for %{request} failed: %{detail}"
|
2603
2687
|
msgstr ""
|
2604
2688
|
|
2605
|
-
#: ../lib/puppet/indirector/indirection.rb:
|
2689
|
+
#: ../lib/puppet/indirector/indirection.rb:272
|
2606
2690
|
msgid "Search results from terminus %{terminus_name} are not an array"
|
2607
2691
|
msgstr ""
|
2608
2692
|
|
2609
|
-
#: ../lib/puppet/indirector/indirection.rb:
|
2693
|
+
#: ../lib/puppet/indirector/indirection.rb:309
|
2610
2694
|
msgid "Not authorized to call %{method} on %{description}"
|
2611
2695
|
msgstr ""
|
2612
2696
|
|
2613
|
-
#: ../lib/puppet/indirector/indirection.rb:
|
2697
|
+
#: ../lib/puppet/indirector/indirection.rb:312
|
2614
2698
|
msgid "Not authorized to call %{method} on %{description} with %{option}"
|
2615
2699
|
msgstr ""
|
2616
2700
|
|
2617
|
-
#: ../lib/puppet/indirector/indirection.rb:
|
2701
|
+
#: ../lib/puppet/indirector/indirection.rb:338
|
2618
2702
|
msgid "Could not find terminus %{terminus_class} for indirection %{indirection}"
|
2619
2703
|
msgstr ""
|
2620
2704
|
|
@@ -2724,15 +2808,15 @@ msgstr ""
|
|
2724
2808
|
msgid "Could not load external node results for %{name}: %{detail}"
|
2725
2809
|
msgstr ""
|
2726
2810
|
|
2727
|
-
#: ../lib/puppet/indirector/node/ldap.rb:
|
2811
|
+
#: ../lib/puppet/indirector/node/ldap.rb:182
|
2728
2812
|
msgid "Could not find parent node '%{parent}'"
|
2729
2813
|
msgstr ""
|
2730
2814
|
|
2731
|
-
#: ../lib/puppet/indirector/node/ldap.rb:
|
2815
|
+
#: ../lib/puppet/indirector/node/ldap.rb:209
|
2732
2816
|
msgid "Found loop in LDAP node parents; %{parent} appears twice"
|
2733
2817
|
msgstr ""
|
2734
2818
|
|
2735
|
-
#: ../lib/puppet/indirector/node/ldap.rb:
|
2819
|
+
#: ../lib/puppet/indirector/node/ldap.rb:262
|
2736
2820
|
msgid "Node entry %{entry} specifies more than one parent: %{parents}"
|
2737
2821
|
msgstr ""
|
2738
2822
|
|
@@ -2753,15 +2837,15 @@ msgstr ""
|
|
2753
2837
|
msgid "Server version %{version} does not accept reports in '%{format}', use `preferred_serialization_format=pson`"
|
2754
2838
|
msgstr ""
|
2755
2839
|
|
2756
|
-
#: ../lib/puppet/indirector/request.rb:
|
2840
|
+
#: ../lib/puppet/indirector/request.rb:96
|
2757
2841
|
msgid "Could not find indirection '%{indirection}'"
|
2758
2842
|
msgstr ""
|
2759
2843
|
|
2760
|
-
#: ../lib/puppet/indirector/request.rb:
|
2844
|
+
#: ../lib/puppet/indirector/request.rb:135
|
2761
2845
|
msgid "HTTP REST queries cannot handle values of type '%{klass}'"
|
2762
2846
|
msgstr ""
|
2763
2847
|
|
2764
|
-
#: ../lib/puppet/indirector/request.rb:
|
2848
|
+
#: ../lib/puppet/indirector/request.rb:190
|
2765
2849
|
msgid "Error connecting to %{srv_server}:%{srv_port}: %{message}"
|
2766
2850
|
msgstr ""
|
2767
2851
|
|
@@ -2777,15 +2861,15 @@ msgstr ""
|
|
2777
2861
|
msgid "Resource instance does not match request key"
|
2778
2862
|
msgstr ""
|
2779
2863
|
|
2780
|
-
#: ../lib/puppet/indirector/rest.rb:
|
2864
|
+
#: ../lib/puppet/indirector/rest.rb:187
|
2781
2865
|
msgid "Find %{uri} resulted in 404 with the message: %{body}"
|
2782
2866
|
msgstr ""
|
2783
2867
|
|
2784
|
-
#: ../lib/puppet/indirector/rest.rb:
|
2868
|
+
#: ../lib/puppet/indirector/rest.rb:220
|
2785
2869
|
msgid "DELETE does not accept options"
|
2786
2870
|
msgstr ""
|
2787
2871
|
|
2788
|
-
#: ../lib/puppet/indirector/rest.rb:
|
2872
|
+
#: ../lib/puppet/indirector/rest.rb:235
|
2789
2873
|
msgid "PUT does not accept options"
|
2790
2874
|
msgstr ""
|
2791
2875
|
|
@@ -2798,7 +2882,7 @@ msgstr ""
|
|
2798
2882
|
msgid "Error %{code} on SERVER: %{returned_message}"
|
2799
2883
|
msgstr ""
|
2800
2884
|
|
2801
|
-
#: ../lib/puppet/indirector/rest.rb:
|
2885
|
+
#: ../lib/puppet/indirector/rest.rb:323
|
2802
2886
|
msgid "No content type in http response; cannot parse"
|
2803
2887
|
msgstr ""
|
2804
2888
|
|
@@ -2923,57 +3007,57 @@ msgid "You can't define a rendering method for %{type} twice"
|
|
2923
3007
|
msgstr ""
|
2924
3008
|
|
2925
3009
|
#. TRANSLATORS 'when_invoked' should not be translated
|
2926
|
-
#: ../lib/puppet/interface/action.rb:
|
3010
|
+
#: ../lib/puppet/interface/action.rb:238
|
2927
3011
|
msgid "when_invoked requires at least one argument (options) for action %{name}"
|
2928
3012
|
msgstr ""
|
2929
3013
|
|
2930
|
-
#: ../lib/puppet/interface/action.rb:
|
3014
|
+
#: ../lib/puppet/interface/action.rb:284 ../lib/puppet/interface/option_manager.rb:57
|
2931
3015
|
msgid "Option %{option} conflicts with existing option %{conflict}"
|
2932
3016
|
msgstr ""
|
2933
3017
|
|
2934
|
-
#: ../lib/puppet/interface/action.rb:
|
3018
|
+
#: ../lib/puppet/interface/action.rb:287
|
2935
3019
|
msgid "Option %{option} conflicts with existing option %{conflict} on %{face}"
|
2936
3020
|
msgstr ""
|
2937
3021
|
|
2938
3022
|
#. TRANSLATORS 'Puppet.settings' should not be translated
|
2939
3023
|
#. TRANSLATORS 'Puppet.settings' references to the Puppet settings options and should not be translated
|
2940
|
-
#: ../lib/puppet/interface/action.rb:
|
3024
|
+
#: ../lib/puppet/interface/action.rb:314 ../lib/puppet/interface/option_manager.rb:14
|
2941
3025
|
msgid "Global option %{option} does not exist in Puppet.settings"
|
2942
3026
|
msgstr ""
|
2943
3027
|
|
2944
|
-
#: ../lib/puppet/interface/action.rb:
|
3028
|
+
#: ../lib/puppet/interface/action.rb:362
|
2945
3029
|
msgid "Multiple aliases for the same option passed: %{overlap_list}"
|
2946
3030
|
msgstr ""
|
2947
3031
|
|
2948
|
-
#: ../lib/puppet/interface/action.rb:
|
3032
|
+
#: ../lib/puppet/interface/action.rb:368
|
2949
3033
|
msgid "Unknown options passed: %{unknown_list}"
|
2950
3034
|
msgstr ""
|
2951
3035
|
|
2952
|
-
#: ../lib/puppet/interface/action.rb:
|
3036
|
+
#: ../lib/puppet/interface/action.rb:386
|
2953
3037
|
msgid "The following options are required: %{missing_list}"
|
2954
3038
|
msgstr ""
|
2955
3039
|
|
2956
3040
|
#. TRANSLATORS 'when_rendering' is a method name and should not be translated
|
2957
|
-
#: ../lib/puppet/interface/action_builder.rb:
|
3041
|
+
#: ../lib/puppet/interface/action_builder.rb:61
|
2958
3042
|
msgid "You must give a rendering format to when_rendering"
|
2959
3043
|
msgstr ""
|
2960
3044
|
|
2961
3045
|
#. TRANSLATORS 'when_rendering' is a method name and should not be translated
|
2962
|
-
#: ../lib/puppet/interface/action_builder.rb:
|
3046
|
+
#: ../lib/puppet/interface/action_builder.rb:65
|
2963
3047
|
msgid "You must give a block to when_rendering"
|
2964
3048
|
msgstr ""
|
2965
3049
|
|
2966
3050
|
#. TRANSLATORS 'render_as' is a method name and should not be translated
|
2967
|
-
#: ../lib/puppet/interface/action_builder.rb:
|
3051
|
+
#: ../lib/puppet/interface/action_builder.rb:126
|
2968
3052
|
msgid "You must give a rendering format to render_as"
|
2969
3053
|
msgstr ""
|
2970
3054
|
|
2971
|
-
#: ../lib/puppet/interface/action_builder.rb:
|
3055
|
+
#: ../lib/puppet/interface/action_builder.rb:131
|
2972
3056
|
msgid "%{value} is not a valid rendering format: %{formats_list}"
|
2973
3057
|
msgstr ""
|
2974
3058
|
|
2975
3059
|
#. TRANSLATORS 'when_invoked' is a method name and should not be translated and 'block' is a Ruby code block
|
2976
|
-
#: ../lib/puppet/interface/action_builder.rb:
|
3060
|
+
#: ../lib/puppet/interface/action_builder.rb:163
|
2977
3061
|
msgid "actions need to know what to do when_invoked; please add the block"
|
2978
3062
|
msgstr ""
|
2979
3063
|
|
@@ -3173,6 +3257,13 @@ msgstr ""
|
|
3173
3257
|
msgid "%{name} has an invalid and unparsable metadata.json file. The parse error: %{error}"
|
3174
3258
|
msgstr ""
|
3175
3259
|
|
3260
|
+
#: ../lib/puppet/module.rb:460
|
3261
|
+
msgid ""
|
3262
|
+
" Invalid module name '%{name}'; module names must match either:\n"
|
3263
|
+
" An installed module name (ex. modulename) matching the expression /^[a-z][a-z0-9_]*$/ -or-\n"
|
3264
|
+
" A namespaced module name (ex. author-modulename) matching the expression /^[a-zA-Z0-9]+[-][a-z][a-z0-9_]*$/\n"
|
3265
|
+
msgstr ""
|
3266
|
+
|
3176
3267
|
#: ../lib/puppet/module/task.rb:47
|
3177
3268
|
msgid "Task names must start with a lowercase letter and be composed of only lowercase letters, numbers, and underscores"
|
3178
3269
|
msgstr ""
|
@@ -3209,19 +3300,23 @@ msgstr ""
|
|
3209
3300
|
msgid "Invalid version format: %{version} (Semantic Versions are acceptable: http://semver.org)"
|
3210
3301
|
msgstr ""
|
3211
3302
|
|
3212
|
-
#: ../lib/puppet/module_tool/applications/builder.rb:
|
3303
|
+
#: ../lib/puppet/module_tool/applications/builder.rb:19
|
3304
|
+
msgid "Module building is prohibited in FIPS mode."
|
3305
|
+
msgstr ""
|
3306
|
+
|
3307
|
+
#: ../lib/puppet/module_tool/applications/builder.rb:25
|
3213
3308
|
msgid "Building %{path} for release"
|
3214
3309
|
msgstr ""
|
3215
3310
|
|
3216
|
-
#: ../lib/puppet/module_tool/applications/builder.rb:
|
3311
|
+
#: ../lib/puppet/module_tool/applications/builder.rb:121
|
3217
3312
|
msgid "Symlinks in modules are unsupported. Please investigate symlink %{from} -> %{to}."
|
3218
3313
|
msgstr ""
|
3219
3314
|
|
3220
|
-
#: ../lib/puppet/module_tool/applications/builder.rb:
|
3315
|
+
#: ../lib/puppet/module_tool/applications/builder.rb:124
|
3221
3316
|
msgid "Found symlinks. Symlinks in modules are not allowed, please remove them."
|
3222
3317
|
msgstr ""
|
3223
3318
|
|
3224
|
-
#: ../lib/puppet/module_tool/applications/builder.rb:
|
3319
|
+
#: ../lib/puppet/module_tool/applications/builder.rb:132
|
3225
3320
|
msgid "A 'checksums' field was found in metadata.json. This field will be ignored and can safely be removed."
|
3226
3321
|
msgstr ""
|
3227
3322
|
|
@@ -3229,19 +3324,23 @@ msgstr ""
|
|
3229
3324
|
msgid "No file containing checksums found."
|
3230
3325
|
msgstr ""
|
3231
3326
|
|
3232
|
-
#: ../lib/puppet/module_tool/applications/installer.rb:
|
3327
|
+
#: ../lib/puppet/module_tool/applications/installer.rb:56
|
3328
|
+
msgid "Module install is prohibited in FIPS mode."
|
3329
|
+
msgstr ""
|
3330
|
+
|
3331
|
+
#: ../lib/puppet/module_tool/applications/installer.rb:85 ../lib/puppet/module_tool/applications/upgrader.rb:103
|
3233
3332
|
msgid "Downloading from %{host} ..."
|
3234
3333
|
msgstr ""
|
3235
3334
|
|
3236
|
-
#: ../lib/puppet/module_tool/applications/installer.rb:
|
3335
|
+
#: ../lib/puppet/module_tool/applications/installer.rb:131 ../lib/puppet/module_tool/applications/upgrader.rb:141
|
3237
3336
|
msgid "Resolving dependencies ..."
|
3238
3337
|
msgstr ""
|
3239
3338
|
|
3240
|
-
#: ../lib/puppet/module_tool/applications/installer.rb:
|
3339
|
+
#: ../lib/puppet/module_tool/applications/installer.rb:160
|
3241
3340
|
msgid "Preparing to install ..."
|
3242
3341
|
msgstr ""
|
3243
3342
|
|
3244
|
-
#: ../lib/puppet/module_tool/applications/installer.rb:
|
3343
|
+
#: ../lib/puppet/module_tool/applications/installer.rb:163
|
3245
3344
|
msgid "Installing -- do not interrupt ..."
|
3246
3345
|
msgstr ""
|
3247
3346
|
|
@@ -3249,6 +3348,10 @@ msgstr ""
|
|
3249
3348
|
msgid "Searching %{host} ..."
|
3250
3349
|
msgstr ""
|
3251
3350
|
|
3351
|
+
#: ../lib/puppet/module_tool/applications/uninstaller.rb:20
|
3352
|
+
msgid "Module uninstall is prohibited in FIPS mode."
|
3353
|
+
msgstr ""
|
3354
|
+
|
3252
3355
|
#: ../lib/puppet/module_tool/applications/unpacker.rb:49
|
3253
3356
|
msgid "Symlinks in modules are unsupported. Please investigate symlink %{from}->%{to}."
|
3254
3357
|
msgstr ""
|
@@ -3257,15 +3360,19 @@ msgstr ""
|
|
3257
3360
|
msgid "No valid metadata.json found!"
|
3258
3361
|
msgstr ""
|
3259
3362
|
|
3260
|
-
#: ../lib/puppet/module_tool/applications/upgrader.rb:
|
3363
|
+
#: ../lib/puppet/module_tool/applications/upgrader.rb:31
|
3364
|
+
msgid "Module upgrade is prohibited in FIPS mode."
|
3365
|
+
msgstr ""
|
3366
|
+
|
3367
|
+
#: ../lib/puppet/module_tool/applications/upgrader.rb:77
|
3261
3368
|
msgid "Found '%{name}' (%{version}) in %{dir} ..."
|
3262
3369
|
msgstr ""
|
3263
3370
|
|
3264
|
-
#: ../lib/puppet/module_tool/applications/upgrader.rb:
|
3371
|
+
#: ../lib/puppet/module_tool/applications/upgrader.rb:188
|
3265
3372
|
msgid "Preparing to upgrade ..."
|
3266
3373
|
msgstr ""
|
3267
3374
|
|
3268
|
-
#: ../lib/puppet/module_tool/applications/upgrader.rb:
|
3375
|
+
#: ../lib/puppet/module_tool/applications/upgrader.rb:191
|
3269
3376
|
msgid "Upgrading -- do not interrupt ..."
|
3270
3377
|
msgstr ""
|
3271
3378
|
|
@@ -3621,19 +3728,19 @@ msgstr ""
|
|
3621
3728
|
msgid "Invalid 'version' field in metadata.json: %{err}"
|
3622
3729
|
msgstr ""
|
3623
3730
|
|
3624
|
-
#: ../lib/puppet/module_tool/metadata.rb:
|
3731
|
+
#: ../lib/puppet/module_tool/metadata.rb:206
|
3625
3732
|
msgid "field 'data_provider' contains non-alphanumeric characters"
|
3626
3733
|
msgstr ""
|
3627
3734
|
|
3628
|
-
#: ../lib/puppet/module_tool/metadata.rb:
|
3735
|
+
#: ../lib/puppet/module_tool/metadata.rb:208
|
3629
3736
|
msgid "field 'data_provider' must begin with a letter"
|
3630
3737
|
msgstr ""
|
3631
3738
|
|
3632
|
-
#: ../lib/puppet/module_tool/metadata.rb:
|
3739
|
+
#: ../lib/puppet/module_tool/metadata.rb:212
|
3633
3740
|
msgid "field 'data_provider' must be a string"
|
3634
3741
|
msgstr ""
|
3635
3742
|
|
3636
|
-
#: ../lib/puppet/module_tool/metadata.rb:
|
3743
|
+
#: ../lib/puppet/module_tool/metadata.rb:220
|
3637
3744
|
msgid "Invalid 'version_range' field in metadata.json: %{err}"
|
3638
3745
|
msgstr ""
|
3639
3746
|
|
@@ -3858,41 +3965,37 @@ msgstr ""
|
|
3858
3965
|
msgid "Unknown content encoding - %{encoding}"
|
3859
3966
|
msgstr ""
|
3860
3967
|
|
3861
|
-
#: ../lib/puppet/network/http/connection.rb:
|
3968
|
+
#: ../lib/puppet/network/http/connection.rb:55
|
3862
3969
|
msgid "Unrecognized option(s): %{opts}"
|
3863
3970
|
msgstr ""
|
3864
3971
|
|
3865
|
-
#: ../lib/puppet/network/http/connection.rb:
|
3972
|
+
#: ../lib/puppet/network/http/connection.rb:203
|
3866
3973
|
msgid "Too many HTTP redirections for %{host}:%{port}"
|
3867
3974
|
msgstr ""
|
3868
3975
|
|
3869
3976
|
#. TRANSLATORS: Used in the phrase:
|
3870
3977
|
#. "Received a response from the remote server."
|
3871
|
-
#: ../lib/puppet/network/http/connection.rb:
|
3978
|
+
#: ../lib/puppet/network/http/connection.rb:234
|
3872
3979
|
msgid "the remote server"
|
3873
3980
|
msgstr ""
|
3874
3981
|
|
3875
|
-
#: ../lib/puppet/network/http/connection.rb:
|
3982
|
+
#: ../lib/puppet/network/http/connection.rb:238
|
3876
3983
|
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."
|
3877
3984
|
msgstr ""
|
3878
3985
|
|
3879
|
-
#: ../lib/puppet/network/http/connection.rb:
|
3986
|
+
#: ../lib/puppet/network/http/connection.rb:249
|
3880
3987
|
msgid "Received a %{status_code} response from %{server_hostname}. Sleeping for %{retry_sleep} seconds before retrying the request."
|
3881
3988
|
msgstr ""
|
3882
3989
|
|
3883
|
-
#: ../lib/puppet/network/http/connection.rb:
|
3884
|
-
msgid "request %{uri} interrupted after %{elapsed} seconds"
|
3885
|
-
msgstr ""
|
3886
|
-
|
3887
|
-
#: ../lib/puppet/network/http/connection.rb:328
|
3990
|
+
#: ../lib/puppet/network/http/connection.rb:320
|
3888
3991
|
msgid "expected one of %{certnames}"
|
3889
3992
|
msgstr ""
|
3890
3993
|
|
3891
|
-
#: ../lib/puppet/network/http/connection.rb:
|
3994
|
+
#: ../lib/puppet/network/http/connection.rb:322
|
3892
3995
|
msgid "expected %{certname}"
|
3893
3996
|
msgstr ""
|
3894
3997
|
|
3895
|
-
#: ../lib/puppet/network/http/connection.rb:
|
3998
|
+
#: ../lib/puppet/network/http/connection.rb:325
|
3896
3999
|
msgid "Server hostname '%{host}' did not match server certificate; %{expected_certnames}"
|
3897
4000
|
msgstr ""
|
3898
4001
|
|
@@ -3976,11 +4079,11 @@ msgstr ""
|
|
3976
4079
|
msgid "WEBrick server is not listening"
|
3977
4080
|
msgstr ""
|
3978
4081
|
|
3979
|
-
#: ../lib/puppet/network/http/webrick.rb:
|
4082
|
+
#: ../lib/puppet/network/http/webrick.rb:99
|
3980
4083
|
msgid "Could not retrieve certificate for %{host} and not running on a valid certificate authority"
|
3981
4084
|
msgstr ""
|
3982
4085
|
|
3983
|
-
#: ../lib/puppet/network/http/webrick.rb:
|
4086
|
+
#: ../lib/puppet/network/http/webrick.rb:107
|
3984
4087
|
msgid "Could not find CA certificate"
|
3985
4088
|
msgstr ""
|
3986
4089
|
|
@@ -4024,23 +4127,23 @@ msgstr ""
|
|
4024
4127
|
msgid "No name provided in serialized data"
|
4025
4128
|
msgstr ""
|
4026
4129
|
|
4027
|
-
#: ../lib/puppet/node.rb:
|
4130
|
+
#: ../lib/puppet/node.rb:100
|
4028
4131
|
msgid "Node names cannot be nil"
|
4029
4132
|
msgstr ""
|
4030
4133
|
|
4031
|
-
#: ../lib/puppet/node.rb:
|
4134
|
+
#: ../lib/puppet/node.rb:136
|
4032
4135
|
msgid "Could not retrieve facts for %{name}: %{detail}"
|
4033
4136
|
msgstr ""
|
4034
4137
|
|
4035
|
-
#: ../lib/puppet/node.rb:
|
4138
|
+
#: ../lib/puppet/node.rb:154
|
4036
4139
|
msgid "The node parameter '%{param_name}' for node '%{node_name}' was already set to '%{value}'. It could not be set to '%{desired_value}'"
|
4037
4140
|
msgstr ""
|
4038
4141
|
|
4039
|
-
#: ../lib/puppet/node.rb:
|
4142
|
+
#: ../lib/puppet/node.rb:193
|
4040
4143
|
msgid "Host is missing hostname and/or domain: %{name}"
|
4041
4144
|
msgstr ""
|
4042
4145
|
|
4043
|
-
#: ../lib/puppet/node.rb:
|
4146
|
+
#: ../lib/puppet/node.rb:225
|
4044
4147
|
msgid "Trusted node data modified for node %{name}"
|
4045
4148
|
msgstr ""
|
4046
4149
|
|
@@ -4048,7 +4151,7 @@ msgstr ""
|
|
4048
4151
|
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."
|
4049
4152
|
msgstr ""
|
4050
4153
|
|
4051
|
-
#: ../lib/puppet/node/environment.rb:564
|
4154
|
+
#: ../lib/puppet/node/environment.rb:564 ../lib/puppet/pops/loaders.rb:287
|
4052
4155
|
msgid "Could not parse for environment %{env}: %{detail}"
|
4053
4156
|
msgstr ""
|
4054
4157
|
|
@@ -4113,11 +4216,7 @@ msgstr ""
|
|
4113
4216
|
msgid "Node inheritance is removed in Puppet 4.0.0. See http://links.puppet.com/puppet-node-inheritance-deprecation"
|
4114
4217
|
msgstr ""
|
4115
4218
|
|
4116
|
-
#: ../lib/puppet/parser/ast/pops_bridge.rb:
|
4117
|
-
msgid "Internal Error: Unknown type of definition - got '%{name}'"
|
4118
|
-
msgstr ""
|
4119
|
-
|
4120
|
-
#: ../lib/puppet/parser/ast/pops_bridge.rb:183
|
4219
|
+
#: ../lib/puppet/parser/ast/pops_bridge.rb:176
|
4121
4220
|
msgid "Instantiating Resource with type checked parameters - scope is missing, skipping type checking."
|
4122
4221
|
msgstr ""
|
4123
4222
|
|
@@ -4133,147 +4232,147 @@ msgstr ""
|
|
4133
4232
|
msgid "Use of Puppet::Parser::AST::ResourceParam is deprecated and not fully functional"
|
4134
4233
|
msgstr ""
|
4135
4234
|
|
4136
|
-
#: ../lib/puppet/parser/compiler.rb:
|
4235
|
+
#: ../lib/puppet/parser/compiler.rb:29
|
4137
4236
|
msgid "Compilation has been halted because: %{error}"
|
4138
4237
|
msgstr ""
|
4139
4238
|
|
4140
|
-
#: ../lib/puppet/parser/compiler.rb:
|
4239
|
+
#: ../lib/puppet/parser/compiler.rb:30
|
4141
4240
|
msgid "For more information, see https://docs.puppet.com/puppet/latest/reference/environments.html"
|
4142
4241
|
msgstr ""
|
4143
4242
|
|
4144
4243
|
#. TRANSLATORS "stage" is a keyword in Puppet and should not be translated
|
4145
|
-
#: ../lib/puppet/parser/compiler.rb:
|
4244
|
+
#: ../lib/puppet/parser/compiler.rb:98 ../lib/puppet/parser/environment_compiler.rb:134
|
4146
4245
|
msgid "Only classes can set 'stage'; normal resources like %{resource} cannot change run stage"
|
4147
4246
|
msgstr ""
|
4148
4247
|
|
4149
4248
|
#. TRANSLATORS "Site" is a puppet keyword and should not be translated
|
4150
|
-
#: ../lib/puppet/parser/compiler.rb:
|
4249
|
+
#: ../lib/puppet/parser/compiler.rb:125
|
4151
4250
|
msgid "Application instances like '%{resource}' can only be contained within a Site"
|
4152
4251
|
msgstr ""
|
4153
4252
|
|
4154
|
-
#: ../lib/puppet/parser/compiler.rb:
|
4253
|
+
#: ../lib/puppet/parser/compiler.rb:155
|
4155
4254
|
msgid "For compiling %{node}"
|
4156
4255
|
msgstr ""
|
4157
4256
|
|
4158
|
-
#: ../lib/puppet/parser/compiler.rb:
|
4257
|
+
#: ../lib/puppet/parser/compiler.rb:159
|
4159
4258
|
msgid "Compile: Set node parameters"
|
4160
4259
|
msgstr ""
|
4161
4260
|
|
4162
|
-
#: ../lib/puppet/parser/compiler.rb:
|
4261
|
+
#: ../lib/puppet/parser/compiler.rb:161
|
4163
4262
|
msgid "Compile: Created settings scope"
|
4164
4263
|
msgstr ""
|
4165
4264
|
|
4166
|
-
#: ../lib/puppet/parser/compiler.rb:
|
4265
|
+
#: ../lib/puppet/parser/compiler.rb:163
|
4167
4266
|
msgid "Compile: Evaluated capability mappings"
|
4168
4267
|
msgstr ""
|
4169
4268
|
|
4170
4269
|
#. TRANSLATORS "main" is a function name and should not be translated
|
4171
|
-
#: ../lib/puppet/parser/compiler.rb:
|
4270
|
+
#: ../lib/puppet/parser/compiler.rb:166
|
4172
4271
|
msgid "Compile: Evaluated main"
|
4173
4272
|
msgstr ""
|
4174
4273
|
|
4175
|
-
#: ../lib/puppet/parser/compiler.rb:
|
4274
|
+
#: ../lib/puppet/parser/compiler.rb:168
|
4176
4275
|
msgid "Compile: Evaluated site"
|
4177
4276
|
msgstr ""
|
4178
4277
|
|
4179
|
-
#: ../lib/puppet/parser/compiler.rb:
|
4278
|
+
#: ../lib/puppet/parser/compiler.rb:170
|
4180
4279
|
msgid "Compile: Evaluated AST node"
|
4181
4280
|
msgstr ""
|
4182
4281
|
|
4183
|
-
#: ../lib/puppet/parser/compiler.rb:
|
4282
|
+
#: ../lib/puppet/parser/compiler.rb:172
|
4184
4283
|
msgid "Compile: Evaluated node classes"
|
4185
4284
|
msgstr ""
|
4186
4285
|
|
4187
|
-
#: ../lib/puppet/parser/compiler.rb:
|
4286
|
+
#: ../lib/puppet/parser/compiler.rb:174
|
4188
4287
|
msgid "Compile: Evaluated application instances"
|
4189
4288
|
msgstr ""
|
4190
4289
|
|
4191
|
-
#: ../lib/puppet/parser/compiler.rb:
|
4290
|
+
#: ../lib/puppet/parser/compiler.rb:177
|
4192
4291
|
msgid "Compile: Evaluated site capability mappings"
|
4193
4292
|
msgstr ""
|
4194
4293
|
|
4195
|
-
#: ../lib/puppet/parser/compiler.rb:
|
4294
|
+
#: ../lib/puppet/parser/compiler.rb:179
|
4196
4295
|
msgid "Compile: Evaluated generators"
|
4197
4296
|
msgstr ""
|
4198
4297
|
|
4199
|
-
#: ../lib/puppet/parser/compiler.rb:
|
4298
|
+
#: ../lib/puppet/parser/compiler.rb:181
|
4200
4299
|
msgid "Compile: Validate Catalog pre-finish"
|
4201
4300
|
msgstr ""
|
4202
4301
|
|
4203
|
-
#: ../lib/puppet/parser/compiler.rb:
|
4302
|
+
#: ../lib/puppet/parser/compiler.rb:185
|
4204
4303
|
msgid "Compile: Finished catalog"
|
4205
4304
|
msgstr ""
|
4206
4305
|
|
4207
|
-
#: ../lib/puppet/parser/compiler.rb:
|
4306
|
+
#: ../lib/puppet/parser/compiler.rb:187
|
4208
4307
|
msgid "Compile: Prune"
|
4209
4308
|
msgstr ""
|
4210
4309
|
|
4211
|
-
#: ../lib/puppet/parser/compiler.rb:
|
4310
|
+
#: ../lib/puppet/parser/compiler.rb:191
|
4212
4311
|
msgid "Compile: Validate Catalog final"
|
4213
4312
|
msgstr ""
|
4214
4313
|
|
4215
|
-
#: ../lib/puppet/parser/compiler.rb:
|
4314
|
+
#: ../lib/puppet/parser/compiler.rb:321
|
4216
4315
|
msgid "Invalid node mapping in %{app}: Mapping must be a hash"
|
4217
4316
|
msgstr ""
|
4218
4317
|
|
4219
|
-
#: ../lib/puppet/parser/compiler.rb:
|
4318
|
+
#: ../lib/puppet/parser/compiler.rb:324
|
4220
4319
|
msgid "Invalid node mapping in %{app}: Key %{k} is not a Node"
|
4221
4320
|
msgstr ""
|
4222
4321
|
|
4223
|
-
#: ../lib/puppet/parser/compiler.rb:
|
4322
|
+
#: ../lib/puppet/parser/compiler.rb:327
|
4224
4323
|
msgid "Invalid node mapping in %{app}: Value %{res} is not a resource"
|
4225
4324
|
msgstr ""
|
4226
4325
|
|
4227
|
-
#: ../lib/puppet/parser/compiler.rb:
|
4326
|
+
#: ../lib/puppet/parser/compiler.rb:328
|
4228
4327
|
msgid "Application %{app} maps component %{res} to multiple nodes"
|
4229
4328
|
msgstr ""
|
4230
4329
|
|
4231
|
-
#: ../lib/puppet/parser/compiler.rb:
|
4330
|
+
#: ../lib/puppet/parser/compiler.rb:357
|
4232
4331
|
msgid "No source for scope passed to evaluate_classes"
|
4233
4332
|
msgstr ""
|
4234
4333
|
|
4235
|
-
#: ../lib/puppet/parser/compiler.rb:
|
4334
|
+
#: ../lib/puppet/parser/compiler.rb:373
|
4236
4335
|
msgid "Could not find class %{name} for %{node}"
|
4237
4336
|
msgstr ""
|
4238
4337
|
|
4239
|
-
#: ../lib/puppet/parser/compiler.rb:
|
4338
|
+
#: ../lib/puppet/parser/compiler.rb:475
|
4240
4339
|
msgid "Capability mapping error: %{kind} clause references nonexistent %{component_type} %{component_name}"
|
4241
4340
|
msgstr ""
|
4242
4341
|
|
4243
|
-
#: ../lib/puppet/parser/compiler.rb:
|
4342
|
+
#: ../lib/puppet/parser/compiler.rb:501
|
4244
4343
|
msgid "Could not find node statement with name 'default' or '%{names}'"
|
4245
4344
|
msgstr ""
|
4246
4345
|
|
4247
|
-
#: ../lib/puppet/parser/compiler.rb:
|
4346
|
+
#: ../lib/puppet/parser/compiler.rb:522
|
4248
4347
|
msgid "Evaluated collections"
|
4249
4348
|
msgstr ""
|
4250
4349
|
|
4251
|
-
#: ../lib/puppet/parser/compiler.rb:
|
4350
|
+
#: ../lib/puppet/parser/compiler.rb:537
|
4252
4351
|
msgid "Evaluated definitions"
|
4253
4352
|
msgstr ""
|
4254
4353
|
|
4255
|
-
#: ../lib/puppet/parser/compiler.rb:
|
4354
|
+
#: ../lib/puppet/parser/compiler.rb:566
|
4256
4355
|
msgid "Iterated (%{count}) on generators"
|
4257
4356
|
msgstr ""
|
4258
4357
|
|
4259
|
-
#: ../lib/puppet/parser/compiler.rb:
|
4358
|
+
#: ../lib/puppet/parser/compiler.rb:577
|
4260
4359
|
msgid "Somehow looped more than 1000 times while evaluating host catalog"
|
4261
4360
|
msgstr ""
|
4262
4361
|
|
4263
|
-
#: ../lib/puppet/parser/compiler.rb:
|
4362
|
+
#: ../lib/puppet/parser/compiler.rb:608
|
4264
4363
|
msgid "Could not find resource(s) %{resources} for overriding"
|
4265
4364
|
msgstr ""
|
4266
4365
|
|
4267
|
-
#: ../lib/puppet/parser/compiler.rb:
|
4366
|
+
#: ../lib/puppet/parser/compiler.rb:619
|
4268
4367
|
msgid "Failed to realize virtual resources %{resources}"
|
4269
4368
|
msgstr ""
|
4270
4369
|
|
4271
4370
|
#. TRANSLATORS "main" is a function name and should not be translated
|
4272
|
-
#: ../lib/puppet/parser/compiler.rb:
|
4371
|
+
#: ../lib/puppet/parser/compiler.rb:649
|
4273
4372
|
msgid "Couldn't find main"
|
4274
4373
|
msgstr ""
|
4275
4374
|
|
4276
|
-
#: ../lib/puppet/parser/compiler.rb:
|
4375
|
+
#: ../lib/puppet/parser/compiler.rb:721
|
4277
4376
|
msgid "For initializing compiler"
|
4278
4377
|
msgstr ""
|
4279
4378
|
|
@@ -4369,7 +4468,7 @@ msgstr ""
|
|
4369
4468
|
msgid "custom functions must be called with a single array that contains the arguments. For example, function_example([1]) instead of function_example(1)"
|
4370
4469
|
msgstr ""
|
4371
4470
|
|
4372
|
-
#: ../lib/puppet/parser/functions.rb:
|
4471
|
+
#: ../lib/puppet/parser/functions.rb:274
|
4373
4472
|
msgid "%{name}() can only be called using the 4.x function API. See Scope#call_function"
|
4374
4473
|
msgstr ""
|
4375
4474
|
|
@@ -4377,15 +4476,15 @@ msgstr ""
|
|
4377
4476
|
msgid "Calling function_contain via the Scope class is deprecated. Use Scope#call_function instead"
|
4378
4477
|
msgstr ""
|
4379
4478
|
|
4380
|
-
#: ../lib/puppet/parser/functions/create_resources.rb:
|
4479
|
+
#: ../lib/puppet/parser/functions/create_resources.rb:56
|
4381
4480
|
msgid "create_resources(): wrong number of arguments (%{count}; must be 2 or 3)"
|
4382
4481
|
msgstr ""
|
4383
4482
|
|
4384
|
-
#: ../lib/puppet/parser/functions/create_resources.rb:
|
4483
|
+
#: ../lib/puppet/parser/functions/create_resources.rb:57
|
4385
4484
|
msgid "create_resources(): second argument must be a hash"
|
4386
4485
|
msgstr ""
|
4387
4486
|
|
4388
|
-
#: ../lib/puppet/parser/functions/create_resources.rb:
|
4487
|
+
#: ../lib/puppet/parser/functions/create_resources.rb:59
|
4389
4488
|
msgid "create_resources(): third argument, if provided, must be a hash"
|
4390
4489
|
msgstr ""
|
4391
4490
|
|
@@ -4415,7 +4514,7 @@ msgstr ""
|
|
4415
4514
|
msgid "Calling function_include via the Scope class is deprecated. Use Scope#call_function instead"
|
4416
4515
|
msgstr ""
|
4417
4516
|
|
4418
|
-
#: ../lib/puppet/parser/functions/inline_template.rb:
|
4517
|
+
#: ../lib/puppet/parser/functions/inline_template.rb:23
|
4419
4518
|
msgid "Failed to parse inline template: %{detail}"
|
4420
4519
|
msgstr ""
|
4421
4520
|
|
@@ -4423,19 +4522,19 @@ msgstr ""
|
|
4423
4522
|
msgid "Calling function_require via the Scope class is deprecated. Use Scope#call_function instead"
|
4424
4523
|
msgstr ""
|
4425
4524
|
|
4426
|
-
#: ../lib/puppet/parser/functions/template.rb:
|
4525
|
+
#: ../lib/puppet/parser/functions/template.rb:32
|
4427
4526
|
msgid "Failed to parse template %{file}:"
|
4428
4527
|
msgstr ""
|
4429
4528
|
|
4430
|
-
#: ../lib/puppet/parser/functions/template.rb:
|
4529
|
+
#: ../lib/puppet/parser/functions/template.rb:33
|
4431
4530
|
msgid " Filepath: %{file_path}"
|
4432
4531
|
msgstr ""
|
4433
4532
|
|
4434
|
-
#: ../lib/puppet/parser/functions/template.rb:
|
4533
|
+
#: ../lib/puppet/parser/functions/template.rb:34
|
4435
4534
|
msgid " Line: %{line}"
|
4436
4535
|
msgstr ""
|
4437
4536
|
|
4438
|
-
#: ../lib/puppet/parser/functions/template.rb:
|
4537
|
+
#: ../lib/puppet/parser/functions/template.rb:35
|
4439
4538
|
msgid " Detail: %{detail}"
|
4440
4539
|
msgstr ""
|
4441
4540
|
|
@@ -4567,70 +4666,87 @@ msgstr ""
|
|
4567
4666
|
msgid "Default already defined for %{type} { %{param} }; cannot redefine"
|
4568
4667
|
msgstr ""
|
4569
4668
|
|
4570
|
-
#: ../lib/puppet/parser/scope.rb:
|
4669
|
+
#: ../lib/puppet/parser/scope.rb:763
|
4571
4670
|
msgid "Cannot assign to a numeric match result variable '$%{name}'"
|
4572
4671
|
msgstr ""
|
4573
4672
|
|
4574
|
-
#: ../lib/puppet/parser/scope.rb:
|
4673
|
+
#: ../lib/puppet/parser/scope.rb:766
|
4575
4674
|
msgid "Scope variable name %{name} is a %{class_type}, not a string"
|
4576
4675
|
msgstr ""
|
4577
4676
|
|
4578
|
-
#: ../lib/puppet/parser/scope.rb:
|
4677
|
+
#: ../lib/puppet/parser/scope.rb:771 ../lib/puppet/parser/scope.rb:776
|
4579
4678
|
msgid "Attempt to assign to a reserved variable name: '%{name}'"
|
4580
4679
|
msgstr ""
|
4581
4680
|
|
4582
|
-
#: ../lib/puppet/parser/scope.rb:
|
4681
|
+
#: ../lib/puppet/parser/scope.rb:781
|
4583
4682
|
msgid "Cannot reassign variable '$%{name}'"
|
4584
4683
|
msgstr ""
|
4585
4684
|
|
4586
|
-
#: ../lib/puppet/parser/scope.rb:
|
4685
|
+
#: ../lib/puppet/parser/scope.rb:835
|
4587
4686
|
msgid "Unsupported data type: '%{klass}'"
|
4588
4687
|
msgstr ""
|
4589
4688
|
|
4590
|
-
#: ../lib/puppet/parser/scope.rb:
|
4689
|
+
#: ../lib/puppet/parser/scope.rb:1011
|
4591
4690
|
msgid "Invalid regex match data. Got a %{klass}"
|
4592
4691
|
msgstr ""
|
4593
4692
|
|
4594
|
-
#: ../lib/puppet/parser/scope.rb:
|
4693
|
+
#: ../lib/puppet/parser/scope.rb:1019
|
4595
4694
|
msgid "Scope#find_resource_type() is no longer supported, use Puppet::Pops::Evaluator::Runtime3ResourceSupport instead"
|
4596
4695
|
msgstr ""
|
4597
4696
|
|
4598
|
-
#: ../lib/puppet/parser/scope.rb:
|
4697
|
+
#: ../lib/puppet/parser/scope.rb:1024
|
4599
4698
|
msgid "Scope#find_builtin_resource_type() is no longer supported, use Puppet::Pops::Evaluator::Runtime3ResourceSupport instead"
|
4600
4699
|
msgstr ""
|
4601
4700
|
|
4602
|
-
#: ../lib/puppet/parser/scope.rb:
|
4701
|
+
#: ../lib/puppet/parser/scope.rb:1029
|
4603
4702
|
msgid "Scope#find_defined_resource_type() is no longer supported, use Puppet::Pops::Evaluator::Runtime3ResourceSupport instead"
|
4604
4703
|
msgstr ""
|
4605
4704
|
|
4606
|
-
#: ../lib/puppet/parser/scope.rb:
|
4705
|
+
#: ../lib/puppet/parser/scope.rb:1043
|
4607
4706
|
msgid "Function %{name} not defined despite being loaded!"
|
4608
4707
|
msgstr ""
|
4609
4708
|
|
4610
|
-
#: ../lib/puppet/parser/scope.rb:
|
4709
|
+
#: ../lib/puppet/parser/scope.rb:1050
|
4611
4710
|
msgid "Scope#resolve_type_and_title() is no longer supported, use Puppet::Pops::Evaluator::Runtime3ResourceSupport instead"
|
4612
4711
|
msgstr ""
|
4613
4712
|
|
4713
|
+
#: ../lib/puppet/parser/scope.rb:1070
|
4714
|
+
msgid "Cannot use undef as a class name"
|
4715
|
+
msgstr ""
|
4716
|
+
|
4717
|
+
#: ../lib/puppet/parser/scope.rb:1072
|
4718
|
+
msgid "Cannot use empty string as a class name"
|
4719
|
+
msgstr ""
|
4720
|
+
|
4614
4721
|
#. TRANSLATORS "Class" and "Type" are Puppet keywords and should not be translated
|
4615
|
-
#: ../lib/puppet/parser/scope.rb:
|
4722
|
+
#: ../lib/puppet/parser/scope.rb:1081
|
4616
4723
|
msgid "Cannot use an unspecific Class[] Type"
|
4617
4724
|
msgstr ""
|
4618
4725
|
|
4619
4726
|
#. TRANSLATORS "Resource" is a class name and should not be translated
|
4620
|
-
#: ../lib/puppet/parser/scope.rb:
|
4727
|
+
#: ../lib/puppet/parser/scope.rb:1108
|
4621
4728
|
msgid "Cannot use an unspecific Resource[] where a Resource['class', name] is expected"
|
4622
4729
|
msgstr ""
|
4623
4730
|
|
4624
4731
|
#. TRANSLATORS "Resource" is a class name and should not be translated
|
4625
|
-
#: ../lib/puppet/parser/scope.rb:
|
4732
|
+
#: ../lib/puppet/parser/scope.rb:1112
|
4626
4733
|
msgid "Cannot use a Resource[%{type_name}] where a Resource['class', name] is expected"
|
4627
4734
|
msgstr ""
|
4628
4735
|
|
4629
4736
|
#. TRANSLATORS "Resource" is a class name and should not be translated
|
4630
|
-
#: ../lib/puppet/parser/scope.rb:
|
4737
|
+
#: ../lib/puppet/parser/scope.rb:1116
|
4631
4738
|
msgid "Cannot use an unspecific Resource['class'] where a Resource['class', name] is expected"
|
4632
4739
|
msgstr ""
|
4633
4740
|
|
4741
|
+
#. TRANSLATORS "main" is a function name and should not be translated
|
4742
|
+
#: ../lib/puppet/parser/script_compiler.rb:45
|
4743
|
+
msgid "Script: Evaluated main"
|
4744
|
+
msgstr ""
|
4745
|
+
|
4746
|
+
#: ../lib/puppet/parser/script_compiler.rb:107
|
4747
|
+
msgid "having multiple named scopes is not supported when scripting"
|
4748
|
+
msgstr ""
|
4749
|
+
|
4634
4750
|
#: ../lib/puppet/parser/templatewrapper.rb:65
|
4635
4751
|
msgid "Could not find template '%{filename}'"
|
4636
4752
|
msgstr ""
|
@@ -4647,7 +4763,7 @@ msgstr ""
|
|
4647
4763
|
msgid "No file(s) found for import of '%{pattern}'"
|
4648
4764
|
msgstr ""
|
4649
4765
|
|
4650
|
-
#: ../lib/puppet/pops/evaluator/access_operator.rb:
|
4766
|
+
#: ../lib/puppet/pops/evaluator/access_operator.rb:288
|
4651
4767
|
msgid "Cannot use %{key} where %{expected} is expected"
|
4652
4768
|
msgstr ""
|
4653
4769
|
|
@@ -4740,27 +4856,31 @@ msgid "%{function_name}(): The EPP template contains illegal expressions (defini
|
|
4740
4856
|
msgstr ""
|
4741
4857
|
|
4742
4858
|
#. TRANSLATORS 'template_args' is a variable name and should not be translated
|
4743
|
-
#: ../lib/puppet/pops/evaluator/epp_evaluator.rb:
|
4859
|
+
#: ../lib/puppet/pops/evaluator/epp_evaluator.rb:114
|
4744
4860
|
msgid "%{function_name}(): the template_args must be a Hash, got a %{class_name}"
|
4745
4861
|
msgstr ""
|
4746
4862
|
|
4747
|
-
#: ../lib/puppet/pops/evaluator/evaluator_impl.rb:
|
4863
|
+
#: ../lib/puppet/pops/evaluator/evaluator_impl.rb:245
|
4864
|
+
msgid "multi var assignment from class"
|
4865
|
+
msgstr ""
|
4866
|
+
|
4867
|
+
#: ../lib/puppet/pops/evaluator/evaluator_impl.rb:742
|
4748
4868
|
msgid "break() from context where this is illegal"
|
4749
4869
|
msgstr ""
|
4750
4870
|
|
4751
|
-
#: ../lib/puppet/pops/evaluator/evaluator_impl.rb:
|
4871
|
+
#: ../lib/puppet/pops/evaluator/evaluator_impl.rb:1206
|
4752
4872
|
msgid "Can only append Array or Hash to a Hash"
|
4753
4873
|
msgstr ""
|
4754
4874
|
|
4755
|
-
#: ../lib/puppet/pops/evaluator/evaluator_impl.rb:
|
4756
|
-
msgid "
|
4875
|
+
#: ../lib/puppet/pops/evaluator/evaluator_impl.rb:1210
|
4876
|
+
msgid "An URI can only be merged with an URI or String"
|
4757
4877
|
msgstr ""
|
4758
4878
|
|
4759
|
-
#: ../lib/puppet/pops/evaluator/evaluator_impl.rb:
|
4879
|
+
#: ../lib/puppet/pops/evaluator/evaluator_impl.rb:1243
|
4760
4880
|
msgid "Can only delete from an Array or Hash."
|
4761
4881
|
msgstr ""
|
4762
4882
|
|
4763
|
-
#: ../lib/puppet/pops/evaluator/external_syntax_support.rb:22 ../lib/puppet/pops/evaluator/runtime3_support.rb:23 ../lib/puppet/pops/evaluator/runtime3_support.rb:
|
4883
|
+
#: ../lib/puppet/pops/evaluator/external_syntax_support.rb:22 ../lib/puppet/pops/evaluator/runtime3_support.rb:23 ../lib/puppet/pops/evaluator/runtime3_support.rb:528
|
4764
4884
|
msgid "Internal Error: Configuration of runtime error handling wrong: should have raised exception"
|
4765
4885
|
msgstr ""
|
4766
4886
|
|
@@ -4785,8 +4905,8 @@ msgstr ""
|
|
4785
4905
|
msgid "Unknown function '%{name}'"
|
4786
4906
|
msgstr ""
|
4787
4907
|
|
4788
|
-
#: ../lib/puppet/pops/functions/dispatch.rb:
|
4789
|
-
msgid "Unknown injection %{
|
4908
|
+
#: ../lib/puppet/pops/functions/dispatch.rb:83
|
4909
|
+
msgid "Unknown injection %{injection_name}"
|
4790
4910
|
msgstr ""
|
4791
4911
|
|
4792
4912
|
#: ../lib/puppet/pops/functions/function.rb:112
|
@@ -4976,7 +5096,7 @@ msgid "Illegal expression. %{expression} is unacceptable as %{feature} in %{cont
|
|
4976
5096
|
msgstr ""
|
4977
5097
|
|
4978
5098
|
#: ../lib/puppet/pops/issues.rb:357
|
4979
|
-
msgid "Illegal variable expression. %{
|
5099
|
+
msgid "Illegal variable expression. %{expression} did not produce a variable name (String or Numeric)."
|
4980
5100
|
msgstr ""
|
4981
5101
|
|
4982
5102
|
#: ../lib/puppet/pops/issues.rb:364
|
@@ -5368,123 +5488,155 @@ msgstr ""
|
|
5368
5488
|
msgid "Illegal %{format} Byte Order mark at beginning of input: %{bom} - remove these from the puppet source"
|
5369
5489
|
msgstr ""
|
5370
5490
|
|
5371
|
-
#: ../lib/puppet/pops/issues.rb:
|
5491
|
+
#: ../lib/puppet/pops/issues.rb:753
|
5492
|
+
msgid "No such file or directory: %{file}"
|
5493
|
+
msgstr ""
|
5494
|
+
|
5495
|
+
#: ../lib/puppet/pops/issues.rb:757
|
5496
|
+
msgid "%{file} is not a file"
|
5497
|
+
msgstr ""
|
5498
|
+
|
5499
|
+
#: ../lib/puppet/pops/issues.rb:762
|
5372
5500
|
msgid "%{expression} resulted in a value outside of Puppet Integer max range, got '%{value}'"
|
5373
5501
|
msgstr ""
|
5374
5502
|
|
5375
|
-
#: ../lib/puppet/pops/issues.rb:
|
5503
|
+
#: ../lib/puppet/pops/issues.rb:764
|
5376
5504
|
msgid "%{expression} resulted in a value outside of Puppet Integer min range, got '%{value}'"
|
5377
5505
|
msgstr ""
|
5378
5506
|
|
5379
|
-
#: ../lib/puppet/pops/issues.rb:
|
5507
|
+
#: ../lib/puppet/pops/issues.rb:769
|
5380
5508
|
msgid "This runtime does not support hiera.yaml version %{version}"
|
5381
5509
|
msgstr ""
|
5382
5510
|
|
5383
|
-
#: ../lib/puppet/pops/issues.rb:
|
5511
|
+
#: ../lib/puppet/pops/issues.rb:773
|
5384
5512
|
msgid "hiera.yaml version 3 cannot be used in %{location}"
|
5385
5513
|
msgstr ""
|
5386
5514
|
|
5387
|
-
#: ../lib/puppet/pops/issues.rb:
|
5515
|
+
#: ../lib/puppet/pops/issues.rb:777
|
5388
5516
|
msgid "hiera.yaml version 4 cannot be used in the global layer"
|
5389
5517
|
msgstr ""
|
5390
5518
|
|
5391
|
-
#: ../lib/puppet/pops/issues.rb:
|
5519
|
+
#: ../lib/puppet/pops/issues.rb:781
|
5392
5520
|
msgid "Undefined variable '%{name}'"
|
5393
5521
|
msgstr ""
|
5394
5522
|
|
5395
|
-
#: ../lib/puppet/pops/issues.rb:
|
5523
|
+
#: ../lib/puppet/pops/issues.rb:785
|
5396
5524
|
msgid "Backend '%{name}' is defined more than once."
|
5397
5525
|
msgstr ""
|
5398
5526
|
|
5399
|
-
#: ../lib/puppet/pops/issues.rb:
|
5527
|
+
#: ../lib/puppet/pops/issues.rb:788 ../lib/puppet/pops/issues.rb:801
|
5400
5528
|
msgid "First defined at %{error_location}"
|
5401
5529
|
msgstr ""
|
5402
5530
|
|
5403
|
-
#: ../lib/puppet/pops/issues.rb:
|
5531
|
+
#: ../lib/puppet/pops/issues.rb:794
|
5404
5532
|
msgid "No data provider is registered for backend '%{name}'"
|
5405
5533
|
msgstr ""
|
5406
5534
|
|
5407
|
-
#: ../lib/puppet/pops/issues.rb:
|
5535
|
+
#: ../lib/puppet/pops/issues.rb:798
|
5408
5536
|
msgid "Hierarchy name '%{name}' defined more than once."
|
5409
5537
|
msgstr ""
|
5410
5538
|
|
5411
|
-
#: ../lib/puppet/pops/issues.rb:
|
5539
|
+
#: ../lib/puppet/pops/issues.rb:807
|
5412
5540
|
msgid "'hiera3_backend' is only allowed in the global layer"
|
5413
5541
|
msgstr ""
|
5414
5542
|
|
5415
|
-
#: ../lib/puppet/pops/issues.rb:
|
5543
|
+
#: ../lib/puppet/pops/issues.rb:811
|
5416
5544
|
msgid "'default_hierarchy' is only allowed in the module layer"
|
5417
5545
|
msgstr ""
|
5418
5546
|
|
5419
|
-
#: ../lib/puppet/pops/issues.rb:
|
5547
|
+
#: ../lib/puppet/pops/issues.rb:815
|
5420
5548
|
msgid "Use \"data_hash: %{function_name}_data\" instead of \"hiera3_backend: %{function_name}\""
|
5421
5549
|
msgstr ""
|
5422
5550
|
|
5423
|
-
#: ../lib/puppet/pops/issues.rb:
|
5551
|
+
#: ../lib/puppet/pops/issues.rb:819
|
5424
5552
|
msgid "One of %{keys} must be defined in hierarchy '%{name}'"
|
5425
5553
|
msgstr ""
|
5426
5554
|
|
5427
|
-
#: ../lib/puppet/pops/issues.rb:
|
5555
|
+
#: ../lib/puppet/pops/issues.rb:823 ../lib/puppet/pops/issues.rb:831
|
5428
5556
|
msgid "Only one of %{keys} can be defined in hierarchy '%{name}'"
|
5429
5557
|
msgstr ""
|
5430
5558
|
|
5431
|
-
#: ../lib/puppet/pops/issues.rb:
|
5559
|
+
#: ../lib/puppet/pops/issues.rb:827
|
5432
5560
|
msgid "Only one of %{keys} can be defined in defaults"
|
5433
5561
|
msgstr ""
|
5434
5562
|
|
5435
|
-
#: ../lib/puppet/pops/issues.rb:
|
5563
|
+
#: ../lib/puppet/pops/issues.rb:835
|
5436
5564
|
msgid "Option key '%{key}' used in hierarchy '%{name}' is reserved by Puppet"
|
5437
5565
|
msgstr ""
|
5438
5566
|
|
5439
|
-
#: ../lib/puppet/pops/issues.rb:
|
5567
|
+
#: ../lib/puppet/pops/issues.rb:839
|
5440
5568
|
msgid "Option key '%{key}' used in defaults is reserved by Puppet"
|
5441
5569
|
msgstr ""
|
5442
5570
|
|
5443
|
-
#: ../lib/puppet/pops/issues.rb:
|
5571
|
+
#: ../lib/puppet/pops/issues.rb:843
|
5444
5572
|
msgid "Unable to find '%{function_type}' function named '%{function_name}'"
|
5445
5573
|
msgstr ""
|
5446
5574
|
|
5447
|
-
#: ../lib/puppet/pops/issues.rb:
|
5575
|
+
#: ../lib/puppet/pops/issues.rb:847
|
5448
5576
|
msgid "'alias' interpolation is only permitted if the expression is equal to the entire string"
|
5449
5577
|
msgstr ""
|
5450
5578
|
|
5451
|
-
#: ../lib/puppet/pops/issues.rb:
|
5579
|
+
#: ../lib/puppet/pops/issues.rb:851
|
5452
5580
|
msgid "Unknown interpolation method '%{name}'"
|
5453
5581
|
msgstr ""
|
5454
5582
|
|
5455
|
-
#: ../lib/puppet/pops/issues.rb:
|
5583
|
+
#: ../lib/puppet/pops/issues.rb:855
|
5456
5584
|
msgid "Interpolation using method syntax is not allowed in this context"
|
5457
5585
|
msgstr ""
|
5458
5586
|
|
5459
|
-
#: ../lib/puppet/pops/issues.rb:
|
5587
|
+
#: ../lib/puppet/pops/issues.rb:859
|
5460
5588
|
msgid "Endless recursion detected when attempting to serialize value of class %{type_name}"
|
5461
5589
|
msgstr ""
|
5462
5590
|
|
5463
|
-
#: ../lib/puppet/pops/issues.rb:
|
5591
|
+
#: ../lib/puppet/pops/issues.rb:863
|
5464
5592
|
msgid "%{path} contains the special value default. It will be converted to the String 'default'"
|
5465
5593
|
msgstr ""
|
5466
5594
|
|
5467
|
-
#: ../lib/puppet/pops/issues.rb:
|
5595
|
+
#: ../lib/puppet/pops/issues.rb:867
|
5468
5596
|
msgid "%{path} contains %{klass} value. It will be converted to the String '%{value}'"
|
5469
5597
|
msgstr ""
|
5470
5598
|
|
5471
|
-
#: ../lib/puppet/pops/issues.rb:
|
5599
|
+
#: ../lib/puppet/pops/issues.rb:871
|
5472
5600
|
msgid "%{path} contains a hash with %{klass} key. It will be converted to the String '%{value}'"
|
5473
5601
|
msgstr ""
|
5474
5602
|
|
5603
|
+
#: ../lib/puppet/pops/issues.rb:875
|
5604
|
+
msgid "The feature '%{feature}' is only available when compiling a catalog"
|
5605
|
+
msgstr ""
|
5606
|
+
|
5607
|
+
#: ../lib/puppet/pops/issues.rb:879
|
5608
|
+
msgid "The catalog operation '%{operation}' is only available when compiling a catalog"
|
5609
|
+
msgstr ""
|
5610
|
+
|
5611
|
+
#: ../lib/puppet/pops/issues.rb:883
|
5612
|
+
msgid "The task operation '%{operation}' is not available when compiling a catalog"
|
5613
|
+
msgstr ""
|
5614
|
+
|
5615
|
+
#: ../lib/puppet/pops/issues.rb:887
|
5616
|
+
msgid "The 'bolt' library is required to %{action}"
|
5617
|
+
msgstr ""
|
5618
|
+
|
5619
|
+
#: ../lib/puppet/pops/issues.rb:891
|
5620
|
+
msgid "Task not found: %{type_name}"
|
5621
|
+
msgstr ""
|
5622
|
+
|
5623
|
+
#: ../lib/puppet/pops/issues.rb:895
|
5624
|
+
msgid "Failed to load: %{type_name}"
|
5625
|
+
msgstr ""
|
5626
|
+
|
5475
5627
|
#: ../lib/puppet/pops/label_provider.rb:76
|
5476
5628
|
msgid "<%{string}> does not appear to contain a word"
|
5477
5629
|
msgstr ""
|
5478
5630
|
|
5479
|
-
#: ../lib/puppet/pops/loader/base_loader.rb:
|
5631
|
+
#: ../lib/puppet/pops/loader/base_loader.rb:122
|
5480
5632
|
msgid "Originally set %{original}."
|
5481
5633
|
msgstr ""
|
5482
5634
|
|
5483
|
-
#: ../lib/puppet/pops/loader/base_loader.rb:
|
5635
|
+
#: ../lib/puppet/pops/loader/base_loader.rb:122
|
5484
5636
|
msgid "Set at unknown location"
|
5485
5637
|
msgstr ""
|
5486
5638
|
|
5487
|
-
#: ../lib/puppet/pops/loader/base_loader.rb:
|
5639
|
+
#: ../lib/puppet/pops/loader/base_loader.rb:123
|
5488
5640
|
msgid "Attempt to redefine entity '%{name}'. %{origin_info}"
|
5489
5641
|
msgstr ""
|
5490
5642
|
|
@@ -5497,12 +5649,12 @@ msgid "Gem not found '%{gem_name}'"
|
|
5497
5649
|
msgstr ""
|
5498
5650
|
|
5499
5651
|
#. TRANSLATORS 'loadables' is a variable containing loadable modules and should not be translated
|
5500
|
-
#: ../lib/puppet/pops/loader/module_loaders.rb:
|
5652
|
+
#: ../lib/puppet/pops/loader/module_loaders.rb:120
|
5501
5653
|
msgid "given loadables are not of supported loadable kind"
|
5502
5654
|
msgstr ""
|
5503
5655
|
|
5504
5656
|
#. TRANSLATORS 'TypeSet' should not be translated
|
5505
|
-
#: ../lib/puppet/pops/loader/module_loaders.rb:
|
5657
|
+
#: ../lib/puppet/pops/loader/module_loaders.rb:223
|
5506
5658
|
msgid "The code loaded from %{origin} does not define the TypeSet '%{module_name}'"
|
5507
5659
|
msgstr ""
|
5508
5660
|
|
@@ -5526,6 +5678,26 @@ msgstr ""
|
|
5526
5678
|
msgid "The code loaded from %{source} contains additional logic - can only contain the function %{name}"
|
5527
5679
|
msgstr ""
|
5528
5680
|
|
5681
|
+
#: ../lib/puppet/pops/loader/puppet_plan_instantiator.rb:25
|
5682
|
+
msgid "The code loaded from %{source_ref} does not define the plan '%{plan_name}' - it is empty."
|
5683
|
+
msgstr ""
|
5684
|
+
|
5685
|
+
#: ../lib/puppet/pops/loader/puppet_plan_instantiator.rb:29
|
5686
|
+
msgid "The code loaded from %{source_ref} must contain only the plan '%{plan_name}' - it has additional definitions."
|
5687
|
+
msgstr ""
|
5688
|
+
|
5689
|
+
#: ../lib/puppet/pops/loader/puppet_plan_instantiator.rb:34
|
5690
|
+
msgid "The code loaded from %{source_ref} does not define the plan '%{plan_name}' - no plan found."
|
5691
|
+
msgstr ""
|
5692
|
+
|
5693
|
+
#: ../lib/puppet/pops/loader/puppet_plan_instantiator.rb:39
|
5694
|
+
msgid "The code loaded from %{source_ref} produced plan with the wrong name, expected %{expected}, actual %{actual}"
|
5695
|
+
msgstr ""
|
5696
|
+
|
5697
|
+
#: ../lib/puppet/pops/loader/puppet_plan_instantiator.rb:42
|
5698
|
+
msgid "The code loaded from %{source} contains additional logic - can only contain the plan %{plan_name}"
|
5699
|
+
msgstr ""
|
5700
|
+
|
5529
5701
|
#: ../lib/puppet/pops/loader/puppet_resource_type_impl_instantiator.rb:33
|
5530
5702
|
msgid "The code loaded from %{source_ref} does not create the resource type '%{type_name}' - it is empty"
|
5531
5703
|
msgstr ""
|
@@ -5546,6 +5718,18 @@ msgstr ""
|
|
5546
5718
|
msgid "The code loaded from %{source_ref} produced resource type with the wrong name, expected '%{expected}', actual '%{actual}'"
|
5547
5719
|
msgstr ""
|
5548
5720
|
|
5721
|
+
#: ../lib/puppet/pops/loader/ruby_data_type_instantiator.rb:17
|
5722
|
+
msgid "The code loaded from %{source_ref} does not seem to be a Puppet 5x API data type - no create_type call."
|
5723
|
+
msgstr ""
|
5724
|
+
|
5725
|
+
#: ../lib/puppet/pops/loader/ruby_data_type_instantiator.rb:24
|
5726
|
+
msgid "The code loaded from %{source_ref} did not produce a data type when evaluated. Got '%{klass}'"
|
5727
|
+
msgstr ""
|
5728
|
+
|
5729
|
+
#: ../lib/puppet/pops/loader/ruby_data_type_instantiator.rb:27 ../lib/puppet/pops/loader/ruby_function_instantiator.rb:27
|
5730
|
+
msgid "The code loaded from %{source_ref} produced mis-matched name, expected '%{type_name}', got %{created_name}"
|
5731
|
+
msgstr ""
|
5732
|
+
|
5549
5733
|
#: ../lib/puppet/pops/loader/ruby_function_instantiator.rb:17
|
5550
5734
|
msgid "The code loaded from %{source_ref} does not seem to be a Puppet 4x API function - no create_function call."
|
5551
5735
|
msgstr ""
|
@@ -5554,8 +5738,16 @@ msgstr ""
|
|
5554
5738
|
msgid "The code loaded from %{source_ref} did not produce a Function class when evaluated. Got '%{klass}'"
|
5555
5739
|
msgstr ""
|
5556
5740
|
|
5557
|
-
#: ../lib/puppet/pops/loader/
|
5558
|
-
msgid "
|
5741
|
+
#: ../lib/puppet/pops/loader/task_instantiator.rb:16
|
5742
|
+
msgid "Only one file can exists besides the .json file for task %{name} in directory %{directory}"
|
5743
|
+
msgstr ""
|
5744
|
+
|
5745
|
+
#: ../lib/puppet/pops/loader/task_instantiator.rb:22
|
5746
|
+
msgid "No source besides task metadata was found in directory %{directory} for task %{name}"
|
5747
|
+
msgstr ""
|
5748
|
+
|
5749
|
+
#: ../lib/puppet/pops/loader/task_instantiator.rb:40
|
5750
|
+
msgid "Failed to load metadata for task %{name}: %{reason}"
|
5559
5751
|
msgstr ""
|
5560
5752
|
|
5561
5753
|
#: ../lib/puppet/pops/loader/type_definition_instantiator.rb:15
|
@@ -5582,19 +5774,19 @@ msgstr ""
|
|
5582
5774
|
msgid "Attempt to redefine already initialized loaders for environment"
|
5583
5775
|
msgstr ""
|
5584
5776
|
|
5585
|
-
#: ../lib/puppet/pops/loaders.rb:
|
5777
|
+
#: ../lib/puppet/pops/loaders.rb:168
|
5586
5778
|
msgid "Internal Error: Puppet Context ':loaders' missing"
|
5587
5779
|
msgstr ""
|
5588
5780
|
|
5589
|
-
#: ../lib/puppet/pops/loaders.rb:
|
5781
|
+
#: ../lib/puppet/pops/loaders.rb:182
|
5590
5782
|
msgid "Unable to find loader named '%{loader_name}'"
|
5591
5783
|
msgstr ""
|
5592
5784
|
|
5593
|
-
#: ../lib/puppet/pops/loaders.rb:
|
5785
|
+
#: ../lib/puppet/pops/loaders.rb:203
|
5594
5786
|
msgid "Internal Error: did not find public loader for module: '%{module_name}'"
|
5595
5787
|
msgstr ""
|
5596
5788
|
|
5597
|
-
#: ../lib/puppet/pops/loaders.rb:
|
5789
|
+
#: ../lib/puppet/pops/loaders.rb:244
|
5598
5790
|
msgid "Internal Error: Attempt to redefine loader named '%{name}'"
|
5599
5791
|
msgstr ""
|
5600
5792
|
|
@@ -5637,51 +5829,51 @@ msgstr ""
|
|
5637
5829
|
msgid "Recursive lookup detected in [%{name_stack}]"
|
5638
5830
|
msgstr ""
|
5639
5831
|
|
5640
|
-
#: ../lib/puppet/pops/lookup/lookup_adapter.rb:
|
5832
|
+
#: ../lib/puppet/pops/lookup/lookup_adapter.rb:93
|
5641
5833
|
msgid "Lookup of key '%{key}' failed: %{detail}"
|
5642
5834
|
msgstr ""
|
5643
5835
|
|
5644
|
-
#: ../lib/puppet/pops/lookup/lookup_adapter.rb:
|
5836
|
+
#: ../lib/puppet/pops/lookup/lookup_adapter.rb:239
|
5645
5837
|
msgid "value of %{opts} must be a hash"
|
5646
5838
|
msgstr ""
|
5647
5839
|
|
5648
|
-
#: ../lib/puppet/pops/lookup/lookup_adapter.rb:
|
5840
|
+
#: ../lib/puppet/pops/lookup/lookup_adapter.rb:246
|
5649
5841
|
msgid "all %{opts} patterns must match a key starting with module name '%{module_name}'"
|
5650
5842
|
msgstr ""
|
5651
5843
|
|
5652
|
-
#: ../lib/puppet/pops/lookup/lookup_adapter.rb:
|
5844
|
+
#: ../lib/puppet/pops/lookup/lookup_adapter.rb:250
|
5653
5845
|
msgid "all %{opts} keys must start with module name '%{module_name}'"
|
5654
5846
|
msgstr ""
|
5655
5847
|
|
5656
|
-
#: ../lib/puppet/pops/lookup/lookup_adapter.rb:
|
5848
|
+
#: ../lib/puppet/pops/lookup/lookup_adapter.rb:375
|
5657
5849
|
msgid "Defining \"data_provider\": \"%{name}\" in metadata.json is deprecated. It is ignored since a '%{config}' with version >= 5 is present"
|
5658
5850
|
msgstr ""
|
5659
5851
|
|
5660
|
-
#: ../lib/puppet/pops/lookup/lookup_adapter.rb:
|
5852
|
+
#: ../lib/puppet/pops/lookup/lookup_adapter.rb:385
|
5661
5853
|
msgid "Defining \"data_provider\": \"%{name}\" in metadata.json is deprecated."
|
5662
5854
|
msgstr ""
|
5663
5855
|
|
5664
|
-
#: ../lib/puppet/pops/lookup/lookup_adapter.rb:
|
5856
|
+
#: ../lib/puppet/pops/lookup/lookup_adapter.rb:386 ../lib/puppet/pops/lookup/lookup_adapter.rb:440
|
5665
5857
|
msgid "A '%{hiera_config}' file should be used instead"
|
5666
5858
|
msgstr ""
|
5667
5859
|
|
5668
|
-
#: ../lib/puppet/pops/lookup/lookup_adapter.rb:
|
5860
|
+
#: ../lib/puppet/pops/lookup/lookup_adapter.rb:400
|
5669
5861
|
msgid "Environment '%{env}', cannot find module_data_provider '%{provider}'"
|
5670
5862
|
msgstr ""
|
5671
5863
|
|
5672
|
-
#: ../lib/puppet/pops/lookup/lookup_adapter.rb:
|
5864
|
+
#: ../lib/puppet/pops/lookup/lookup_adapter.rb:424
|
5673
5865
|
msgid "Defining environment_data_provider='%{provider_name}' in environment.conf is deprecated"
|
5674
5866
|
msgstr ""
|
5675
5867
|
|
5676
|
-
#: ../lib/puppet/pops/lookup/lookup_adapter.rb:
|
5868
|
+
#: ../lib/puppet/pops/lookup/lookup_adapter.rb:428
|
5677
5869
|
msgid "The environment_data_provider='%{provider_name}' setting is ignored since '%{config_path}' version >= 5"
|
5678
5870
|
msgstr ""
|
5679
5871
|
|
5680
|
-
#: ../lib/puppet/pops/lookup/lookup_adapter.rb:
|
5872
|
+
#: ../lib/puppet/pops/lookup/lookup_adapter.rb:439
|
5681
5873
|
msgid "Defining environment_data_provider='%{provider_name}' in environment.conf is deprecated."
|
5682
5874
|
msgstr ""
|
5683
5875
|
|
5684
|
-
#: ../lib/puppet/pops/lookup/lookup_adapter.rb:
|
5876
|
+
#: ../lib/puppet/pops/lookup/lookup_adapter.rb:455
|
5685
5877
|
msgid "Environment '%{env}', cannot find environment_data_provider '%{provider}'"
|
5686
5878
|
msgstr ""
|
5687
5879
|
|
@@ -5736,11 +5928,11 @@ msgid "Unacceptable transform - found an Object without a rule: %{klass}"
|
|
5736
5928
|
msgstr ""
|
5737
5929
|
|
5738
5930
|
#. TRANSLATORS 'NUMBER' refers to a method name and the 'name_or_numeric' was the passed in value and should not be translated
|
5739
|
-
#: ../lib/puppet/pops/model/factory.rb:
|
5931
|
+
#: ../lib/puppet/pops/model/factory.rb:806
|
5740
5932
|
msgid "Internal Error, NUMBER token does not contain a valid number, %{name_or_numeric}"
|
5741
5933
|
msgstr ""
|
5742
5934
|
|
5743
|
-
#: ../lib/puppet/pops/model/factory.rb:
|
5935
|
+
#: ../lib/puppet/pops/model/factory.rb:1114
|
5744
5936
|
msgid "can only concatenate strings, got %{class_name}"
|
5745
5937
|
msgstr ""
|
5746
5938
|
|
@@ -5765,15 +5957,15 @@ msgstr ""
|
|
5765
5957
|
msgid "Internal error. Integers cannot be tabulated in extension payload"
|
5766
5958
|
msgstr ""
|
5767
5959
|
|
5768
|
-
#: ../lib/puppet/pops/serialization/deserializer.rb:46 ../lib/puppet/pops/serialization/from_data_converter.rb:
|
5960
|
+
#: ../lib/puppet/pops/serialization/deserializer.rb:46 ../lib/puppet/pops/serialization/from_data_converter.rb:134
|
5769
5961
|
msgid "No implementation mapping found for Puppet Type %{type_name}"
|
5770
5962
|
msgstr ""
|
5771
5963
|
|
5772
|
-
#: ../lib/puppet/pops/serialization/from_data_converter.rb:
|
5964
|
+
#: ../lib/puppet/pops/serialization/from_data_converter.rb:125
|
5773
5965
|
msgid "Unable to deserialize type from %{type}"
|
5774
5966
|
msgstr ""
|
5775
5967
|
|
5776
|
-
#: ../lib/puppet/pops/serialization/from_data_converter.rb:
|
5968
|
+
#: ../lib/puppet/pops/serialization/from_data_converter.rb:217
|
5777
5969
|
msgid "Cannot create a %{type_name} from a %{arg_class}"
|
5778
5970
|
msgstr ""
|
5779
5971
|
|
@@ -5793,27 +5985,27 @@ msgstr ""
|
|
5793
5985
|
msgid "Invalid input. %{ext_no} is not a valid extension number"
|
5794
5986
|
msgstr ""
|
5795
5987
|
|
5796
|
-
#: ../lib/puppet/pops/serialization/json_path.rb:
|
5988
|
+
#: ../lib/puppet/pops/serialization/json_path.rb:93
|
5797
5989
|
msgid "undef"
|
5798
5990
|
msgstr ""
|
5799
5991
|
|
5800
|
-
#: ../lib/puppet/pops/serialization/json_path.rb:
|
5992
|
+
#: ../lib/puppet/pops/serialization/json_path.rb:97
|
5801
5993
|
msgid "default"
|
5802
5994
|
msgstr ""
|
5803
5995
|
|
5804
|
-
#: ../lib/puppet/pops/serialization/json_path.rb:
|
5996
|
+
#: ../lib/puppet/pops/serialization/json_path.rb:121
|
5805
5997
|
msgid "Unable to parse jsonpath \"%{path}\""
|
5806
5998
|
msgstr ""
|
5807
5999
|
|
5808
|
-
#: ../lib/puppet/pops/serialization/object.rb:
|
6000
|
+
#: ../lib/puppet/pops/serialization/object.rb:16
|
5809
6001
|
msgid "Feature count mismatch for %{value0}. Expected %{required_count} - %{max}, actual %{value_count}"
|
5810
6002
|
msgstr ""
|
5811
6003
|
|
5812
|
-
#: ../lib/puppet/pops/serialization/object.rb:
|
6004
|
+
#: ../lib/puppet/pops/serialization/object.rb:27
|
5813
6005
|
msgid "Missing default value for %{type_name}[%{name}]"
|
5814
6006
|
msgstr ""
|
5815
6007
|
|
5816
|
-
#: ../lib/puppet/pops/serialization/serializer.rb:
|
6008
|
+
#: ../lib/puppet/pops/serialization/serializer.rb:134
|
5817
6009
|
msgid "No Puppet Type found for %{klass}"
|
5818
6010
|
msgstr ""
|
5819
6011
|
|
@@ -5897,75 +6089,91 @@ msgstr ""
|
|
5897
6089
|
msgid "The type '%{type}' does not represent a valid set of parameters for %{subject}.new()"
|
5898
6090
|
msgstr ""
|
5899
6091
|
|
5900
|
-
#: ../lib/puppet/pops/types/p_object_type.rb:
|
6092
|
+
#: ../lib/puppet/pops/types/p_object_type.rb:147
|
5901
6093
|
msgid "expected %{label} to override an inherited %{feature_type}, but no such %{feature_type} was found"
|
5902
6094
|
msgstr ""
|
5903
6095
|
|
5904
|
-
#: ../lib/puppet/pops/types/p_object_type.rb:
|
6096
|
+
#: ../lib/puppet/pops/types/p_object_type.rb:164
|
5905
6097
|
msgid "%{member} attempts to override %{label}"
|
5906
6098
|
msgstr ""
|
5907
6099
|
|
5908
|
-
#: ../lib/puppet/pops/types/p_object_type.rb:
|
6100
|
+
#: ../lib/puppet/pops/types/p_object_type.rb:167
|
5909
6101
|
msgid "%{member} attempts to override final %{label}"
|
5910
6102
|
msgstr ""
|
5911
6103
|
|
5912
|
-
#: ../lib/puppet/pops/types/p_object_type.rb:
|
6104
|
+
#: ../lib/puppet/pops/types/p_object_type.rb:171
|
5913
6105
|
msgid "%{member} attempts to override %{label} without having override => true"
|
5914
6106
|
msgstr ""
|
5915
6107
|
|
5916
|
-
#: ../lib/puppet/pops/types/p_object_type.rb:
|
6108
|
+
#: ../lib/puppet/pops/types/p_object_type.rb:174
|
5917
6109
|
msgid "%{member} attempts to override %{label} with a type that does not match"
|
5918
6110
|
msgstr ""
|
5919
6111
|
|
5920
|
-
#: ../lib/puppet/pops/types/p_object_type.rb:
|
6112
|
+
#: ../lib/puppet/pops/types/p_object_type.rb:291
|
5921
6113
|
msgid "%{label} of kind 'constant' cannot be combined with final => false"
|
5922
6114
|
msgstr ""
|
5923
6115
|
|
5924
|
-
#: ../lib/puppet/pops/types/p_object_type.rb:
|
6116
|
+
#: ../lib/puppet/pops/types/p_object_type.rb:298
|
5925
6117
|
msgid "%{label} of kind '%{kind}' cannot be combined with an attribute value"
|
5926
6118
|
msgstr ""
|
5927
6119
|
|
5928
|
-
#: ../lib/puppet/pops/types/p_object_type.rb:
|
6120
|
+
#: ../lib/puppet/pops/types/p_object_type.rb:303
|
5929
6121
|
msgid "%{label} of kind 'constant' requires a value"
|
5930
6122
|
msgstr ""
|
5931
6123
|
|
5932
|
-
#: ../lib/puppet/pops/types/p_object_type.rb:
|
6124
|
+
#: ../lib/puppet/pops/types/p_object_type.rb:684
|
5933
6125
|
msgid "reference to unresolved type '%{name}'"
|
5934
6126
|
msgstr ""
|
5935
6127
|
|
5936
|
-
#: ../lib/puppet/pops/types/p_object_type.rb:
|
6128
|
+
#: ../lib/puppet/pops/types/p_object_type.rb:720
|
5937
6129
|
msgid "attribute %{label}[%{key}] is defined as both a constant and an attribute"
|
5938
6130
|
msgstr ""
|
5939
6131
|
|
5940
|
-
#: ../lib/puppet/pops/types/p_object_type.rb:
|
6132
|
+
#: ../lib/puppet/pops/types/p_object_type.rb:752
|
5941
6133
|
msgid "%{label} conflicts with attribute with the same name"
|
5942
6134
|
msgstr ""
|
5943
6135
|
|
5944
6136
|
#. TRANSLATORS equality_include_type = false should not be translated
|
5945
|
-
#: ../lib/puppet/pops/types/p_object_type.rb:
|
6137
|
+
#: ../lib/puppet/pops/types/p_object_type.rb:765
|
5946
6138
|
msgid "equality_include_type = false cannot be combined with non empty equality specification"
|
5947
6139
|
msgstr ""
|
5948
6140
|
|
5949
|
-
#: ../lib/puppet/pops/types/p_object_type.rb:
|
6141
|
+
#: ../lib/puppet/pops/types/p_object_type.rb:777
|
5950
6142
|
msgid "%{label} equality is referencing %{attribute} which is included in equality of %{including_parent}"
|
5951
6143
|
msgstr ""
|
5952
6144
|
|
5953
|
-
#: ../lib/puppet/pops/types/p_object_type.rb:
|
6145
|
+
#: ../lib/puppet/pops/types/p_object_type.rb:784
|
5954
6146
|
msgid "%{label} equality is referencing non existent attribute '%{attribute}'"
|
5955
6147
|
msgstr ""
|
5956
6148
|
|
5957
|
-
#: ../lib/puppet/pops/types/p_object_type.rb:
|
6149
|
+
#: ../lib/puppet/pops/types/p_object_type.rb:786
|
5958
6150
|
msgid "%{label} equality is referencing %{attribute}. Only attribute references are allowed"
|
5959
6151
|
msgstr ""
|
5960
6152
|
|
5961
|
-
#: ../lib/puppet/pops/types/p_object_type.rb:
|
6153
|
+
#: ../lib/puppet/pops/types/p_object_type.rb:790
|
5962
6154
|
msgid "%{label} equality is referencing constant %{attribute}."
|
5963
6155
|
msgstr ""
|
5964
6156
|
|
5965
|
-
#: ../lib/puppet/pops/types/p_object_type.rb:
|
6157
|
+
#: ../lib/puppet/pops/types/p_object_type.rb:791
|
5966
6158
|
msgid "Reference to constant is not allowed in equality"
|
5967
6159
|
msgstr ""
|
5968
6160
|
|
6161
|
+
#: ../lib/puppet/pops/types/p_object_type_extension.rb:55
|
6162
|
+
msgid "The %{label}-Type cannot be parameterized using []"
|
6163
|
+
msgstr ""
|
6164
|
+
|
6165
|
+
#: ../lib/puppet/pops/types/p_object_type_extension.rb:70
|
6166
|
+
msgid "'%{pn}' is not a known type parameter for %{label}-Type"
|
6167
|
+
msgstr ""
|
6168
|
+
|
6169
|
+
#: ../lib/puppet/pops/types/p_object_type_extension.rb:83
|
6170
|
+
msgid "The %{label}-Type cannot be parameterized using an empty parameter list"
|
6171
|
+
msgstr ""
|
6172
|
+
|
6173
|
+
#: ../lib/puppet/pops/types/p_sem_ver_type.rb:106
|
6174
|
+
msgid "The string '%{str}' cannot be converted to a SemVer"
|
6175
|
+
msgstr ""
|
6176
|
+
|
5969
6177
|
#: ../lib/puppet/pops/types/tree_iterators.rb:38
|
5970
6178
|
msgid "Only Array, Hash, and Object types can be used as container types. Got %{type}"
|
5971
6179
|
msgstr ""
|
@@ -5992,40 +6200,88 @@ msgstr ""
|
|
5992
6200
|
msgid "Everything is now reported using present tense"
|
5993
6201
|
msgstr ""
|
5994
6202
|
|
5995
|
-
#: ../lib/puppet/pops/types/type_parser.rb:
|
6203
|
+
#: ../lib/puppet/pops/types/type_parser.rb:420
|
5996
6204
|
msgid "Enum parameters must be identifiers or strings"
|
5997
6205
|
msgstr ""
|
5998
6206
|
|
5999
|
-
#: ../lib/puppet/pops/types/type_parser.rb:
|
6207
|
+
#: ../lib/puppet/pops/types/type_parser.rb:656
|
6000
6208
|
msgid "The expression <%{expression}> is not a valid type specification."
|
6001
6209
|
msgstr ""
|
6002
6210
|
|
6003
|
-
#: ../lib/puppet/pops/types/type_parser.rb:
|
6211
|
+
#: ../lib/puppet/pops/types/type_parser.rb:661
|
6004
6212
|
msgid "Invalid number of type parameters specified: %{type} requires %{required}, %{given} provided"
|
6005
6213
|
msgstr ""
|
6006
6214
|
|
6007
|
-
#: ../lib/puppet/pops/types/type_parser.rb:
|
6215
|
+
#: ../lib/puppet/pops/types/type_parser.rb:666
|
6008
6216
|
msgid "Not a parameterized type <%{type}>"
|
6009
6217
|
msgstr ""
|
6010
6218
|
|
6011
|
-
#: ../lib/puppet/pops/types/type_parser.rb:
|
6219
|
+
#: ../lib/puppet/pops/types/type_parser.rb:670
|
6012
6220
|
msgid "Unknown type <%{type}>"
|
6013
6221
|
msgstr ""
|
6014
6222
|
|
6223
|
+
#: ../lib/puppet/pops/types/types.rb:924
|
6224
|
+
msgid "The string '%{str}' cannot be converted to Numeric"
|
6225
|
+
msgstr ""
|
6226
|
+
|
6227
|
+
#: ../lib/puppet/pops/types/types.rb:927
|
6228
|
+
msgid "Value of type %{type} cannot be converted to Numeric"
|
6229
|
+
msgstr ""
|
6230
|
+
|
6231
|
+
#: ../lib/puppet/pops/types/types.rb:1165
|
6232
|
+
msgid "The string '%{str}' cannot be converted to Integer"
|
6233
|
+
msgstr ""
|
6234
|
+
|
6235
|
+
#: ../lib/puppet/pops/types/types.rb:1168
|
6236
|
+
msgid "Value of type %{type} cannot be converted to Integer"
|
6237
|
+
msgstr ""
|
6238
|
+
|
6239
|
+
#: ../lib/puppet/pops/types/types.rb:1176
|
6240
|
+
msgid "Illegal radix: %{radix}, expected 2, 8, 10, 16, or default"
|
6241
|
+
msgstr ""
|
6242
|
+
|
6243
|
+
#: ../lib/puppet/pops/types/types.rb:1289
|
6244
|
+
msgid "The string '%{str}' cannot be converted to Float"
|
6245
|
+
msgstr ""
|
6246
|
+
|
6247
|
+
#: ../lib/puppet/pops/types/types.rb:1292
|
6248
|
+
msgid "Value of type %{type} cannot be converted to Float"
|
6249
|
+
msgstr ""
|
6250
|
+
|
6015
6251
|
#. TRANSLATORS 'PStringType#initialize' is a class and method name and should not be translated
|
6016
|
-
#: ../lib/puppet/pops/types/types.rb:
|
6252
|
+
#: ../lib/puppet/pops/types/types.rb:1509
|
6017
6253
|
msgid "Passing more than one argument to PStringType#initialize is deprecated"
|
6018
6254
|
msgstr ""
|
6019
6255
|
|
6020
6256
|
#. TRANSLATORS 'PStringType#values' and '#value' are classes and method names and should not be translated
|
6021
|
-
#: ../lib/puppet/pops/types/types.rb:
|
6257
|
+
#: ../lib/puppet/pops/types/types.rb:1563
|
6022
6258
|
msgid "Method PStringType#values is deprecated. Use #value instead"
|
6023
6259
|
msgstr ""
|
6024
6260
|
|
6025
|
-
#: ../lib/puppet/pops/types/types.rb:
|
6261
|
+
#: ../lib/puppet/pops/types/types.rb:1911
|
6262
|
+
msgid "The string '%{str}' cannot be converted to Boolean"
|
6263
|
+
msgstr ""
|
6264
|
+
|
6265
|
+
#: ../lib/puppet/pops/types/types.rb:1914
|
6266
|
+
msgid "Value of type %{type} cannot be converted to Boolean"
|
6267
|
+
msgstr ""
|
6268
|
+
|
6269
|
+
#: ../lib/puppet/pops/types/types.rb:2642
|
6270
|
+
msgid "Value of type %{type} cannot be converted to Array"
|
6271
|
+
msgstr ""
|
6272
|
+
|
6273
|
+
#: ../lib/puppet/pops/types/types.rb:2712
|
6026
6274
|
msgid "Puppet::Pops::Types::PHashType#element_type is deprecated, use #value_type instead"
|
6027
6275
|
msgstr ""
|
6028
6276
|
|
6277
|
+
#: ../lib/puppet/pops/types/types.rb:2849
|
6278
|
+
msgid "odd number of arguments for Hash"
|
6279
|
+
msgstr ""
|
6280
|
+
|
6281
|
+
#: ../lib/puppet/pops/types/types.rb:2860
|
6282
|
+
msgid "Value of type %{type} cannot be converted to Hash"
|
6283
|
+
msgstr ""
|
6284
|
+
|
6029
6285
|
#: ../lib/puppet/pops/validation.rb:129
|
6030
6286
|
msgid "Attempt to set validation severity for something that is not an Issue. (Got %{issue})"
|
6031
6287
|
msgstr ""
|
@@ -6097,15 +6353,15 @@ msgstr ""
|
|
6097
6353
|
msgid "No command %{command} defined for provider %{provider}"
|
6098
6354
|
msgstr ""
|
6099
6355
|
|
6100
|
-
#: ../lib/puppet/provider.rb:
|
6356
|
+
#: ../lib/puppet/provider.rb:387
|
6101
6357
|
msgid "Provider %{provider} has not defined the 'instances' class method"
|
6102
6358
|
msgstr ""
|
6103
6359
|
|
6104
|
-
#: ../lib/puppet/provider.rb:
|
6360
|
+
#: ../lib/puppet/provider.rb:459
|
6105
6361
|
msgid "'%{parameter_name}' is not a valid parameter for %{resource_type}"
|
6106
6362
|
msgstr ""
|
6107
6363
|
|
6108
|
-
#: ../lib/puppet/provider.rb:
|
6364
|
+
#: ../lib/puppet/provider.rb:543
|
6109
6365
|
msgid "No resource and no name in property hash in %{class_name} instance"
|
6110
6366
|
msgstr ""
|
6111
6367
|
|
@@ -6133,7 +6389,7 @@ msgstr ""
|
|
6133
6389
|
msgid "Trying to update parameter '%{param}' to '%{value}' for a resource that does not exists %{resource} %{name}: %{detail}"
|
6134
6390
|
msgstr ""
|
6135
6391
|
|
6136
|
-
#: ../lib/puppet/provider/aixobject.rb:379 ../lib/puppet/provider/group/aix.rb:132 ../lib/puppet/provider/nameservice.rb:
|
6392
|
+
#: ../lib/puppet/provider/aixobject.rb:379 ../lib/puppet/provider/group/aix.rb:132 ../lib/puppet/provider/nameservice.rb:306 ../lib/puppet/provider/nameservice/directoryservice.rb:337 ../lib/puppet/provider/nameservice/directoryservice.rb:366
|
6137
6393
|
msgid "Could not set %{param} on %{resource}[%{name}]: %{detail}"
|
6138
6394
|
msgstr ""
|
6139
6395
|
|
@@ -6157,59 +6413,59 @@ msgstr ""
|
|
6157
6413
|
msgid "invalid comparator for command %{cmd}"
|
6158
6414
|
msgstr ""
|
6159
6415
|
|
6160
|
-
#: ../lib/puppet/provider/augeas/augeas.rb:
|
6416
|
+
#: ../lib/puppet/provider/augeas/augeas.rb:221 ../lib/puppet/provider/augeas/augeas.rb:252 ../lib/puppet/provider/augeas/augeas.rb:300 ../lib/puppet/provider/augeas/augeas.rb:315
|
6161
6417
|
msgid "Invalid command: %{cmd}"
|
6162
6418
|
msgstr ""
|
6163
6419
|
|
6164
|
-
#: ../lib/puppet/provider/augeas/augeas.rb:
|
6420
|
+
#: ../lib/puppet/provider/augeas/augeas.rb:262
|
6165
6421
|
msgid "Error trying to get path '%{path}'"
|
6166
6422
|
msgstr ""
|
6167
6423
|
|
6168
|
-
#: ../lib/puppet/provider/augeas/augeas.rb:
|
6424
|
+
#: ../lib/puppet/provider/augeas/augeas.rb:280 ../lib/puppet/provider/augeas/augeas.rb:288 ../lib/puppet/provider/augeas/augeas.rb:336 ../lib/puppet/provider/augeas/augeas.rb:344
|
6169
6425
|
msgid "Invalid array in command: %{cmd}"
|
6170
6426
|
msgstr ""
|
6171
6427
|
|
6172
|
-
#: ../lib/puppet/provider/augeas/augeas.rb:
|
6428
|
+
#: ../lib/puppet/provider/augeas/augeas.rb:310
|
6173
6429
|
msgid "Error trying to match path '%{path}'"
|
6174
6430
|
msgstr ""
|
6175
6431
|
|
6176
|
-
#: ../lib/puppet/provider/augeas/augeas.rb:
|
6432
|
+
#: ../lib/puppet/provider/augeas/augeas.rb:380
|
6177
6433
|
msgid "Loading failed for one or more files, see debug for /augeas//error output"
|
6178
6434
|
msgstr ""
|
6179
6435
|
|
6180
|
-
#: ../lib/puppet/provider/augeas/augeas.rb:
|
6436
|
+
#: ../lib/puppet/provider/augeas/augeas.rb:422
|
6181
6437
|
msgid "Error sending command '%{command}' with params %{param}/%{message}"
|
6182
6438
|
msgstr ""
|
6183
6439
|
|
6184
|
-
#: ../lib/puppet/provider/augeas/augeas.rb:
|
6440
|
+
#: ../lib/puppet/provider/augeas/augeas.rb:437
|
6185
6441
|
msgid "Saving failed, see debug"
|
6186
6442
|
msgstr ""
|
6187
6443
|
|
6188
|
-
#: ../lib/puppet/provider/augeas/augeas.rb:
|
6444
|
+
#: ../lib/puppet/provider/augeas/augeas.rb:479
|
6189
6445
|
msgid "Save failed, see debug"
|
6190
6446
|
msgstr ""
|
6191
6447
|
|
6192
|
-
#: ../lib/puppet/provider/augeas/augeas.rb:
|
6448
|
+
#: ../lib/puppet/provider/augeas/augeas.rb:491
|
6193
6449
|
msgid "invalid command %{cmd}"
|
6194
6450
|
msgstr ""
|
6195
6451
|
|
6196
|
-
#: ../lib/puppet/provider/augeas/augeas.rb:
|
6452
|
+
#: ../lib/puppet/provider/augeas/augeas.rb:499 ../lib/puppet/provider/augeas/augeas.rb:504 ../lib/puppet/provider/augeas/augeas.rb:511 ../lib/puppet/provider/augeas/augeas.rb:515 ../lib/puppet/provider/augeas/augeas.rb:521 ../lib/puppet/provider/augeas/augeas.rb:529 ../lib/puppet/provider/augeas/augeas.rb:542 ../lib/puppet/provider/augeas/augeas.rb:546 ../lib/puppet/provider/augeas/augeas.rb:550 ../lib/puppet/provider/augeas/augeas.rb:554 ../lib/puppet/provider/augeas/augeas.rb:558
|
6197
6453
|
msgid "Error sending command '%{command}' with params %{params}"
|
6198
6454
|
msgstr ""
|
6199
6455
|
|
6200
|
-
#: ../lib/puppet/provider/augeas/augeas.rb:
|
6456
|
+
#: ../lib/puppet/provider/augeas/augeas.rb:506 ../lib/puppet/provider/augeas/augeas.rb:523
|
6201
6457
|
msgid "command '%{command}' not supported in installed version of ruby-augeas"
|
6202
6458
|
msgstr ""
|
6203
6459
|
|
6204
|
-
#: ../lib/puppet/provider/augeas/augeas.rb:
|
6460
|
+
#: ../lib/puppet/provider/augeas/augeas.rb:538
|
6205
6461
|
msgid "Invalid value '%{where}' for where param"
|
6206
6462
|
msgstr ""
|
6207
6463
|
|
6208
|
-
#: ../lib/puppet/provider/augeas/augeas.rb:
|
6464
|
+
#: ../lib/puppet/provider/augeas/augeas.rb:559
|
6209
6465
|
msgid "Command '%{command}' is not supported"
|
6210
6466
|
msgstr ""
|
6211
6467
|
|
6212
|
-
#: ../lib/puppet/provider/augeas/augeas.rb:
|
6468
|
+
#: ../lib/puppet/provider/augeas/augeas.rb:562
|
6213
6469
|
msgid "Error sending command '%{command}' with params %{params}/%{message}"
|
6214
6470
|
msgstr ""
|
6215
6471
|
|
@@ -6225,19 +6481,19 @@ msgstr ""
|
|
6225
6481
|
msgid "no command specified, cannot create"
|
6226
6482
|
msgstr ""
|
6227
6483
|
|
6228
|
-
#: ../lib/puppet/provider/exec.rb:
|
6484
|
+
#: ../lib/puppet/provider/exec.rb:18
|
6229
6485
|
msgid "Working directory '%{dir}' does not exist"
|
6230
6486
|
msgstr ""
|
6231
6487
|
|
6232
|
-
#: ../lib/puppet/provider/exec.rb:
|
6488
|
+
#: ../lib/puppet/provider/exec.rb:40
|
6233
6489
|
msgid "Overriding environment setting '%{env_name}' with '%{value}'"
|
6234
6490
|
msgstr ""
|
6235
6491
|
|
6236
|
-
#: ../lib/puppet/provider/exec.rb:
|
6492
|
+
#: ../lib/puppet/provider/exec.rb:44
|
6237
6493
|
msgid "Cannot understand environment setting %{setting}"
|
6238
6494
|
msgstr ""
|
6239
6495
|
|
6240
|
-
#: ../lib/puppet/provider/exec.rb:
|
6496
|
+
#: ../lib/puppet/provider/exec.rb:94
|
6241
6497
|
msgid "'%{command}' is not qualified and no path was specified. Please qualify the command or specify a path."
|
6242
6498
|
msgstr ""
|
6243
6499
|
|
@@ -6285,7 +6541,7 @@ msgstr ""
|
|
6285
6541
|
msgid "GID must be an integer"
|
6286
6542
|
msgstr ""
|
6287
6543
|
|
6288
|
-
#: ../lib/puppet/provider/group/groupadd.rb:
|
6544
|
+
#: ../lib/puppet/provider/group/groupadd.rb:60
|
6289
6545
|
msgid "GID %{resource} already exists, use allowdupe to force group creation"
|
6290
6546
|
msgstr ""
|
6291
6547
|
|
@@ -6413,7 +6669,7 @@ msgstr ""
|
|
6413
6669
|
msgid "autogen_id() does not support auto generation of id for resource type %{resource_type}"
|
6414
6670
|
msgstr ""
|
6415
6671
|
|
6416
|
-
#: ../lib/puppet/provider/nameservice.rb:
|
6672
|
+
#: ../lib/puppet/provider/nameservice.rb:302
|
6417
6673
|
msgid "Nameservice command must be an array"
|
6418
6674
|
msgstr ""
|
6419
6675
|
|
@@ -6475,19 +6731,19 @@ msgstr ""
|
|
6475
6731
|
msgid "Could not list installed Packages: %{detail}"
|
6476
6732
|
msgstr ""
|
6477
6733
|
|
6478
|
-
#: ../lib/puppet/provider/package/aix.rb:139 ../lib/puppet/provider/package/yum.rb:
|
6734
|
+
#: ../lib/puppet/provider/package/aix.rb:139 ../lib/puppet/provider/package/yum.rb:248
|
6479
6735
|
msgid "Tried to get latest on a missing package"
|
6480
6736
|
msgstr ""
|
6481
6737
|
|
6482
|
-
#: ../lib/puppet/provider/package/appdmg.rb:
|
6738
|
+
#: ../lib/puppet/provider/package/appdmg.rb:102 ../lib/puppet/provider/package/pkgdmg.rb:144
|
6483
6739
|
msgid "Mac OS X PKG DMGs must specify a package source."
|
6484
6740
|
msgstr ""
|
6485
6741
|
|
6486
|
-
#: ../lib/puppet/provider/package/appdmg.rb:
|
6742
|
+
#: ../lib/puppet/provider/package/appdmg.rb:105 ../lib/puppet/provider/package/pkgdmg.rb:147
|
6487
6743
|
msgid "Mac OS X PKG DMGs must specify a package name."
|
6488
6744
|
msgstr ""
|
6489
6745
|
|
6490
|
-
#: ../lib/puppet/provider/package/apple.rb:
|
6746
|
+
#: ../lib/puppet/provider/package/apple.rb:41
|
6491
6747
|
msgid "Mac OS X packages must specify a package source"
|
6492
6748
|
msgstr ""
|
6493
6749
|
|
@@ -6507,7 +6763,7 @@ msgstr ""
|
|
6507
6763
|
msgid "No responsefile specified or non existent, not preseeding anything"
|
6508
6764
|
msgstr ""
|
6509
6765
|
|
6510
|
-
#: ../lib/puppet/provider/package/aptitude.rb:21 ../lib/puppet/provider/package/ports.rb:20 ../lib/puppet/provider/package/portupgrade.rb:93 ../lib/puppet/provider/package/portupgrade.rb:151 ../lib/puppet/provider/package/rug.rb:28 ../lib/puppet/provider/package/up2date.rb:17 ../lib/puppet/provider/package/yum.rb:
|
6766
|
+
#: ../lib/puppet/provider/package/aptitude.rb:21 ../lib/puppet/provider/package/ports.rb:20 ../lib/puppet/provider/package/portupgrade.rb:93 ../lib/puppet/provider/package/portupgrade.rb:151 ../lib/puppet/provider/package/rug.rb:28 ../lib/puppet/provider/package/up2date.rb:17 ../lib/puppet/provider/package/yum.rb:229 ../lib/puppet/provider/package/zypper.rb:109
|
6511
6767
|
msgid "Could not find package %{name}"
|
6512
6768
|
msgstr ""
|
6513
6769
|
|
@@ -6705,11 +6961,11 @@ msgstr ""
|
|
6705
6961
|
msgid "No version of %{name} matching %{should} is installable, even though the package is currently installed"
|
6706
6962
|
msgstr ""
|
6707
6963
|
|
6708
|
-
#: ../lib/puppet/provider/package/pkg.rb:
|
6964
|
+
#: ../lib/puppet/provider/package/pkg.rb:185
|
6709
6965
|
msgid "pkg warning: %{warnings}"
|
6710
6966
|
msgstr ""
|
6711
6967
|
|
6712
|
-
#: ../lib/puppet/provider/package/pkg.rb:
|
6968
|
+
#: ../lib/puppet/provider/package/pkg.rb:221 ../lib/puppet/provider/package/pkg.rb:241
|
6713
6969
|
msgid "Unable to update %{package}"
|
6714
6970
|
msgstr ""
|
6715
6971
|
|
@@ -6745,11 +7001,11 @@ msgstr ""
|
|
6745
7001
|
msgid "Package not in pkgutil catalog: %{package}"
|
6746
7002
|
msgstr ""
|
6747
7003
|
|
6748
|
-
#: ../lib/puppet/provider/package/portage.rb:
|
7004
|
+
#: ../lib/puppet/provider/package/portage.rb:215
|
6749
7005
|
msgid "No package found with the specified name [%{name}]"
|
6750
7006
|
msgstr ""
|
6751
7007
|
|
6752
|
-
#: ../lib/puppet/provider/package/portage.rb:
|
7008
|
+
#: ../lib/puppet/provider/package/portage.rb:219
|
6753
7009
|
msgid "More than one package with the specified name [%{search_value}], please use the category parameter to disambiguate"
|
6754
7010
|
msgstr ""
|
6755
7011
|
|
@@ -6830,11 +7086,11 @@ msgstr ""
|
|
6830
7086
|
msgid "Failed to parse package name and architecture from '%{pkgname}'"
|
6831
7087
|
msgstr ""
|
6832
7088
|
|
6833
|
-
#: ../lib/puppet/provider/package/yum.rb:
|
7089
|
+
#: ../lib/puppet/provider/package/yum.rb:223
|
6834
7090
|
msgid "Could not find package %{wanted}"
|
6835
7091
|
msgstr ""
|
6836
7092
|
|
6837
|
-
#: ../lib/puppet/provider/package/yum.rb:
|
7093
|
+
#: ../lib/puppet/provider/package/yum.rb:234
|
6838
7094
|
msgid "Failed to update to version %{should}, got version %{version} instead"
|
6839
7095
|
msgstr ""
|
6840
7096
|
|
@@ -6867,7 +7123,7 @@ msgid "%{name} is not running"
|
|
6867
7123
|
msgstr ""
|
6868
7124
|
|
6869
7125
|
#. TRANSLATORS 'plist' and label' should not be translated
|
6870
|
-
#: ../lib/puppet/provider/service/launchd.rb:
|
7126
|
+
#: ../lib/puppet/provider/service/launchd.rb:144
|
6871
7127
|
msgid "The %{file} plist does not contain a 'label' key; Puppet is skipping it"
|
6872
7128
|
msgstr ""
|
6873
7129
|
|
@@ -6876,18 +7132,18 @@ msgstr ""
|
|
6876
7132
|
msgid "Waiting 5 seconds for runsvdir to discover service %{service}"
|
6877
7133
|
msgstr ""
|
6878
7134
|
|
6879
|
-
#: ../lib/puppet/provider/user/aix.rb:
|
7135
|
+
#: ../lib/puppet/provider/user/aix.rb:144
|
6880
7136
|
msgid "Attributes must be a list of pairs key=value on %{class_name}[%{resource_name}]"
|
6881
7137
|
msgstr ""
|
6882
7138
|
|
6883
7139
|
#. TRANSLATORS 'AIX' is the name of the operating system and should not be translated
|
6884
7140
|
#. TRANSLATORS 'AIX' is the name of the operating system and should not be translated
|
6885
|
-
#: ../lib/puppet/provider/user/aix.rb:
|
7141
|
+
#: ../lib/puppet/provider/user/aix.rb:176 ../lib/puppet/provider/user/aix.rb:179
|
6886
7142
|
msgid "AIX group must be a valid existing group"
|
6887
7143
|
msgstr ""
|
6888
7144
|
|
6889
7145
|
#. TRANSLATORS 'AIX' is the name of an operating system and should not be translated
|
6890
|
-
#: ../lib/puppet/provider/user/aix.rb:
|
7146
|
+
#: ../lib/puppet/provider/user/aix.rb:217
|
6891
7147
|
msgid "Could not convert AIX expires date '%{value}' on %{class_name}[%{resource_name}]"
|
6892
7148
|
msgstr ""
|
6893
7149
|
|
@@ -6950,7 +7206,7 @@ msgstr ""
|
|
6950
7206
|
msgid "Could not retrieve property %{sname} on type %{type_name}"
|
6951
7207
|
msgstr ""
|
6952
7208
|
|
6953
|
-
#: ../lib/puppet/reference/type.rb:
|
7209
|
+
#: ../lib/puppet/reference/type.rb:83
|
6954
7210
|
msgid "No docs for %{type}[%{sname}]"
|
6955
7211
|
msgstr ""
|
6956
7212
|
|
@@ -6984,43 +7240,43 @@ msgstr ""
|
|
6984
7240
|
msgid "Did you mean (%{type}, %{title}) ?"
|
6985
7241
|
msgstr ""
|
6986
7242
|
|
6987
|
-
#: ../lib/puppet/resource.rb:
|
7243
|
+
#: ../lib/puppet/resource.rb:293
|
6988
7244
|
msgid "Could not find declared class %{title}"
|
6989
7245
|
msgstr ""
|
6990
7246
|
|
6991
|
-
#: ../lib/puppet/resource.rb:
|
7247
|
+
#: ../lib/puppet/resource.rb:295
|
6992
7248
|
msgid "Invalid resource type %{type}"
|
6993
7249
|
msgstr ""
|
6994
7250
|
|
6995
|
-
#: ../lib/puppet/resource.rb:
|
7251
|
+
#: ../lib/puppet/resource.rb:482
|
6996
7252
|
msgid "The method Puppet::Resource.set_default_parameters is deprecated and will be removed in the next major release of Puppet."
|
6997
7253
|
msgstr ""
|
6998
7254
|
|
6999
|
-
#: ../lib/puppet/resource.rb:
|
7255
|
+
#: ../lib/puppet/resource.rb:487
|
7000
7256
|
msgid "Cannot evaluate default parameters for %{resource} - not a parser resource"
|
7001
7257
|
msgstr ""
|
7002
7258
|
|
7003
|
-
#: ../lib/puppet/resource.rb:
|
7259
|
+
#: ../lib/puppet/resource.rb:527
|
7004
7260
|
msgid "The method Puppet::Resource.validate_complete is deprecated and will be removed in the next major release of Puppet."
|
7005
7261
|
msgstr ""
|
7006
7262
|
|
7007
|
-
#: ../lib/puppet/resource.rb:
|
7263
|
+
#: ../lib/puppet/resource.rb:533
|
7008
7264
|
msgid "Must pass %{param} to %{resource}"
|
7009
7265
|
msgstr ""
|
7010
7266
|
|
7011
|
-
#: ../lib/puppet/resource.rb:
|
7267
|
+
#: ../lib/puppet/resource.rb:544
|
7012
7268
|
msgid "Expected parameter '%{name}' of '%{value0}' to have type %{value1}, got %{value2}"
|
7013
7269
|
msgstr ""
|
7014
7270
|
|
7015
|
-
#: ../lib/puppet/resource.rb:
|
7271
|
+
#: ../lib/puppet/resource.rb:550
|
7016
7272
|
msgid "no parameter named '%{name}'"
|
7017
7273
|
msgstr ""
|
7018
7274
|
|
7019
|
-
#: ../lib/puppet/resource.rb:
|
7275
|
+
#: ../lib/puppet/resource.rb:592
|
7020
7276
|
msgid "No title provided and %{type} is not a valid resource reference"
|
7021
7277
|
msgstr ""
|
7022
7278
|
|
7023
|
-
#: ../lib/puppet/resource.rb:
|
7279
|
+
#: ../lib/puppet/resource.rb:665
|
7024
7280
|
msgid "No set of title patterns matched the title \"%{title}\"."
|
7025
7281
|
msgstr ""
|
7026
7282
|
|
@@ -7110,7 +7366,7 @@ msgstr ""
|
|
7110
7366
|
msgid "Could not find resource %{resource} when converting %{message} resources"
|
7111
7367
|
msgstr ""
|
7112
7368
|
|
7113
|
-
#: ../lib/puppet/resource/status.rb:135 ../lib/puppet/transaction.rb:
|
7369
|
+
#: ../lib/puppet/resource/status.rb:135 ../lib/puppet/transaction.rb:264
|
7114
7370
|
msgid "Could not evaluate: %{detail}"
|
7115
7371
|
msgstr ""
|
7116
7372
|
|
@@ -7373,24 +7629,20 @@ msgstr ""
|
|
7373
7629
|
msgid "Invalid duration format '%{value}' for parameter: %{name}"
|
7374
7630
|
msgstr ""
|
7375
7631
|
|
7376
|
-
#: ../lib/puppet/settings/enum_setting.rb:13 ../lib/puppet/settings/symbolic_enum_setting.rb:14
|
7377
|
-
msgid "Invalid value '%{value}' for parameter %{name}. Allowed values are '%{allowed_values}'"
|
7378
|
-
msgstr ""
|
7379
|
-
|
7380
7632
|
#. TRANSLATORS 'disable_per_environment_manifest' is a setting and 'environment.conf' is a file name and should not be translated
|
7381
|
-
#: ../lib/puppet/settings/environment_conf.rb:
|
7633
|
+
#: ../lib/puppet/settings/environment_conf.rb:69
|
7382
7634
|
msgid "The 'disable_per_environment_manifest' setting is true, but the environment located at %{path_to_env} has a manifest setting in its environment.conf of '%{environment_conf}' which does not match the default_manifest setting '%{puppet_conf}'."
|
7383
7635
|
msgstr ""
|
7384
7636
|
|
7385
|
-
#: ../lib/puppet/settings/environment_conf.rb:
|
7637
|
+
#: ../lib/puppet/settings/environment_conf.rb:71
|
7386
7638
|
msgid "If this environment is expecting to find modules in '%{environment_conf}', they will not be available!"
|
7387
7639
|
msgstr ""
|
7388
7640
|
|
7389
|
-
#: ../lib/puppet/settings/environment_conf.rb:
|
7641
|
+
#: ../lib/puppet/settings/environment_conf.rb:141
|
7390
7642
|
msgid "Invalid sections in environment.conf at '%{path_to_conf_file}'. Environment conf may not have sections. The following sections are being ignored: '%{sections}'"
|
7391
7643
|
msgstr ""
|
7392
7644
|
|
7393
|
-
#: ../lib/puppet/settings/environment_conf.rb:
|
7645
|
+
#: ../lib/puppet/settings/environment_conf.rb:153
|
7394
7646
|
msgid "Invalid settings in environment.conf at '%{path_to_conf_file}'. The following unknown setting(s) are being ignored: %{ignored_settings}"
|
7395
7647
|
msgstr ""
|
7396
7648
|
|
@@ -7515,7 +7767,7 @@ msgid "CSR '%{csr}' contains a subjectAltName outside the DNS label space: %{alt
|
|
7515
7767
|
msgstr ""
|
7516
7768
|
|
7517
7769
|
#: ../lib/puppet/ssl/certificate_authority.rb:402
|
7518
|
-
msgid "CSR '%{csr}' subjectAltName contains a wildcard, which is not allowed: %{alt_names} To continue, this CSR needs to be cleaned."
|
7770
|
+
msgid "CSR '%{csr}' subjectAltName contains a wildcard, which is not allowed: %{alt_names}. To continue, this CSR needs to be cleaned."
|
7519
7771
|
msgstr ""
|
7520
7772
|
|
7521
7773
|
#: ../lib/puppet/ssl/certificate_authority.rb:480
|
@@ -7656,11 +7908,11 @@ msgstr ""
|
|
7656
7908
|
msgid "unexpected attributes %{keys} in %{path}"
|
7657
7909
|
msgstr ""
|
7658
7910
|
|
7659
|
-
#: ../lib/puppet/ssl/certificate_revocation_list.rb:
|
7911
|
+
#: ../lib/puppet/ssl/certificate_revocation_list.rb:30
|
7660
7912
|
msgid "Creating a new certificate revocation list"
|
7661
7913
|
msgstr ""
|
7662
7914
|
|
7663
|
-
#: ../lib/puppet/ssl/certificate_revocation_list.rb:
|
7915
|
+
#: ../lib/puppet/ssl/certificate_revocation_list.rb:50
|
7664
7916
|
msgid "Revoked certificate with serial %{serial}"
|
7665
7917
|
msgstr ""
|
7666
7918
|
|
@@ -7678,7 +7930,7 @@ msgstr ""
|
|
7678
7930
|
|
7679
7931
|
#: ../lib/puppet/ssl/host.rb:213
|
7680
7932
|
msgid ""
|
7681
|
-
"The certificate retrieved from the master does not match the agent's private key
|
7933
|
+
"The certificate retrieved from the master does not match the agent's private key. Did you forget to run as root?\n"
|
7682
7934
|
"Certificate fingerprint: %{fingerprint}\n"
|
7683
7935
|
"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"
|
7684
7936
|
"On the master:\n"
|
@@ -7788,59 +8040,67 @@ msgstr ""
|
|
7788
8040
|
msgid "JSON syntax checker: Cannot parse invalid JSON string. \"%{message}\""
|
7789
8041
|
msgstr ""
|
7790
8042
|
|
7791
|
-
#: ../lib/puppet/transaction.rb:
|
8043
|
+
#: ../lib/puppet/transaction.rb:84
|
7792
8044
|
msgid "Some pre-run checks failed"
|
7793
8045
|
msgstr ""
|
7794
8046
|
|
7795
|
-
#: ../lib/puppet/transaction.rb:
|
8047
|
+
#: ../lib/puppet/transaction.rb:100
|
7796
8048
|
msgid "Applying configuration version '%{version}'"
|
7797
8049
|
msgstr ""
|
7798
8050
|
|
7799
|
-
#: ../lib/puppet/transaction.rb:
|
8051
|
+
#: ../lib/puppet/transaction.rb:123
|
7800
8052
|
msgid "Provider %{name} is not functional on this host"
|
7801
8053
|
msgstr ""
|
7802
8054
|
|
7803
|
-
#: ../lib/puppet/transaction.rb:
|
8055
|
+
#: ../lib/puppet/transaction.rb:139
|
7804
8056
|
msgid "Could not find a suitable provider for %{type}"
|
7805
8057
|
msgstr ""
|
7806
8058
|
|
7807
|
-
#: ../lib/puppet/transaction.rb:
|
8059
|
+
#: ../lib/puppet/transaction.rb:146
|
7808
8060
|
msgid "post_resource_eval failed for provider %{provider}"
|
7809
8061
|
msgstr ""
|
7810
8062
|
|
7811
|
-
#: ../lib/puppet/transaction.rb:
|
8063
|
+
#: ../lib/puppet/transaction.rb:163
|
7812
8064
|
msgid "resource is part of a dependency cycle"
|
7813
8065
|
msgstr ""
|
7814
8066
|
|
7815
|
-
#: ../lib/puppet/transaction.rb:
|
8067
|
+
#: ../lib/puppet/transaction.rb:165
|
7816
8068
|
msgid "One or more resource dependency cycles detected in graph"
|
7817
8069
|
msgstr ""
|
7818
8070
|
|
7819
|
-
#: ../lib/puppet/transaction.rb:
|
8071
|
+
#: ../lib/puppet/transaction.rb:178
|
7820
8072
|
msgid "Somehow left a component in the relationship graph"
|
7821
8073
|
msgstr ""
|
7822
8074
|
|
7823
|
-
#: ../lib/puppet/transaction.rb:
|
8075
|
+
#: ../lib/puppet/transaction.rb:180
|
7824
8076
|
msgid "Starting to evaluate the resource"
|
7825
8077
|
msgstr ""
|
7826
8078
|
|
7827
|
-
#: ../lib/puppet/transaction.rb:
|
8079
|
+
#: ../lib/puppet/transaction.rb:182
|
7828
8080
|
msgid "Evaluated in %{seconds} seconds"
|
7829
8081
|
msgstr ""
|
7830
8082
|
|
7831
|
-
#: ../lib/puppet/transaction.rb:
|
8083
|
+
#: ../lib/puppet/transaction.rb:295
|
7832
8084
|
msgid "Dependency %{dep} has failures: %{status}"
|
7833
8085
|
msgstr ""
|
7834
8086
|
|
8087
|
+
#: ../lib/puppet/transaction.rb:315
|
8088
|
+
msgid "Prefetch failed for %{type_name} provider '%{name}'"
|
8089
|
+
msgstr ""
|
8090
|
+
|
7835
8091
|
#. TRANSLATORS `prefetch` is a function name and should not be translated
|
7836
|
-
#: ../lib/puppet/transaction.rb:
|
8092
|
+
#: ../lib/puppet/transaction.rb:365
|
7837
8093
|
msgid "Could not prefetch %{type_name} provider '%{name}': %{detail}"
|
7838
8094
|
msgstr ""
|
7839
8095
|
|
7840
|
-
#: ../lib/puppet/transaction.rb:
|
8096
|
+
#: ../lib/puppet/transaction.rb:394
|
7841
8097
|
msgid "Skipping because of failed dependencies"
|
7842
8098
|
msgstr ""
|
7843
8099
|
|
8100
|
+
#: ../lib/puppet/transaction.rb:399
|
8101
|
+
msgid "Skipping because provider prefetch failed"
|
8102
|
+
msgstr ""
|
8103
|
+
|
7844
8104
|
#: ../lib/puppet/transaction/additional_resource_generator.rb:25
|
7845
8105
|
msgid "Failed to generate additional resources using 'generate': %{detail}"
|
7846
8106
|
msgstr ""
|
@@ -7980,39 +8240,39 @@ msgstr ""
|
|
7980
8240
|
msgid "Could not find %{description} %{ref} for %{resource}"
|
7981
8241
|
msgstr ""
|
7982
8242
|
|
7983
|
-
#: ../lib/puppet/type.rb:
|
8243
|
+
#: ../lib/puppet/type.rb:1770
|
7984
8244
|
msgid "Found multiple default providers for %{name}: %{provider_list}; using %{selected_provider}"
|
7985
8245
|
msgstr ""
|
7986
8246
|
|
7987
|
-
#: ../lib/puppet/type.rb:
|
8247
|
+
#: ../lib/puppet/type.rb:1855
|
7988
8248
|
msgid "Could not find parent provider %{parent} of %{name}"
|
7989
8249
|
msgstr ""
|
7990
8250
|
|
7991
|
-
#: ../lib/puppet/type.rb:
|
8251
|
+
#: ../lib/puppet/type.rb:1931
|
7992
8252
|
msgid "Invalid %{resource} provider '%{provider_class}'"
|
7993
8253
|
msgstr ""
|
7994
8254
|
|
7995
|
-
#: ../lib/puppet/type.rb:
|
8255
|
+
#: ../lib/puppet/type.rb:2014
|
7996
8256
|
msgid "Could not find %{name} provider of %{provider}"
|
7997
8257
|
msgstr ""
|
7998
8258
|
|
7999
|
-
#: ../lib/puppet/type.rb:
|
8259
|
+
#: ../lib/puppet/type.rb:2131
|
8000
8260
|
msgid "You cannot add relationships without a catalog"
|
8001
8261
|
msgstr ""
|
8002
8262
|
|
8003
|
-
#: ../lib/puppet/type.rb:
|
8263
|
+
#: ../lib/puppet/type.rb:2442
|
8004
8264
|
msgid "Unable to mark '%{name}' as sensitive: %{name} is a parameter and not a property, and cannot be automatically redacted."
|
8005
8265
|
msgstr ""
|
8006
8266
|
|
8007
|
-
#: ../lib/puppet/type.rb:
|
8267
|
+
#: ../lib/puppet/type.rb:2445
|
8008
8268
|
msgid "Unable to mark '%{name}' as sensitive: the property itself was not assigned a value."
|
8009
8269
|
msgstr ""
|
8010
8270
|
|
8011
|
-
#: ../lib/puppet/type.rb:
|
8271
|
+
#: ../lib/puppet/type.rb:2447
|
8012
8272
|
msgid "Unable to mark '%{name}' as sensitive: the property itself is not defined on %{type}."
|
8013
8273
|
msgstr ""
|
8014
8274
|
|
8015
|
-
#: ../lib/puppet/type.rb:
|
8275
|
+
#: ../lib/puppet/type.rb:2498
|
8016
8276
|
msgid "Could not set %{attribute} on %{class_name}: %{detail}"
|
8017
8277
|
msgstr ""
|
8018
8278
|
|
@@ -8064,35 +8324,35 @@ msgstr ""
|
|
8064
8324
|
msgid "Only root can execute commands as other users"
|
8065
8325
|
msgstr ""
|
8066
8326
|
|
8067
|
-
#: ../lib/puppet/type/exec.rb:
|
8327
|
+
#: ../lib/puppet/type/exec.rb:269
|
8068
8328
|
msgid "Invalid environment setting '%{value}'"
|
8069
8329
|
msgstr ""
|
8070
8330
|
|
8071
|
-
#: ../lib/puppet/type/exec.rb:
|
8331
|
+
#: ../lib/puppet/type/exec.rb:282
|
8072
8332
|
msgid "The umask specification is invalid: %{value}"
|
8073
8333
|
msgstr ""
|
8074
8334
|
|
8075
|
-
#: ../lib/puppet/type/exec.rb:
|
8335
|
+
#: ../lib/puppet/type/exec.rb:298
|
8076
8336
|
msgid "The timeout must be a number."
|
8077
8337
|
msgstr ""
|
8078
8338
|
|
8079
|
-
#: ../lib/puppet/type/exec.rb:
|
8339
|
+
#: ../lib/puppet/type/exec.rb:316
|
8080
8340
|
msgid "Tries must be an integer"
|
8081
8341
|
msgstr ""
|
8082
8342
|
|
8083
|
-
#: ../lib/puppet/type/exec.rb:
|
8343
|
+
#: ../lib/puppet/type/exec.rb:320
|
8084
8344
|
msgid "Tries must be an integer >= 1"
|
8085
8345
|
msgstr ""
|
8086
8346
|
|
8087
|
-
#: ../lib/puppet/type/exec.rb:
|
8347
|
+
#: ../lib/puppet/type/exec.rb:333
|
8088
8348
|
msgid "try_sleep must be a number"
|
8089
8349
|
msgstr ""
|
8090
8350
|
|
8091
|
-
#: ../lib/puppet/type/exec.rb:
|
8351
|
+
#: ../lib/puppet/type/exec.rb:337
|
8092
8352
|
msgid "try_sleep cannot be a negative number"
|
8093
8353
|
msgstr ""
|
8094
8354
|
|
8095
|
-
#: ../lib/puppet/type/exec.rb:
|
8355
|
+
#: ../lib/puppet/type/exec.rb:452 ../lib/puppet/type/exec.rb:504
|
8096
8356
|
msgid "Check %{value} exceeded timeout"
|
8097
8357
|
msgstr ""
|
8098
8358
|
|
@@ -8162,7 +8422,7 @@ msgid "Copying owner/mode/group from the source file on Windows is not supported
|
|
8162
8422
|
msgstr ""
|
8163
8423
|
|
8164
8424
|
#. TRANSLATORS "stat" is a program name and should not be translated
|
8165
|
-
#: ../lib/puppet/type/file.rb:837 ../lib/puppet/type/tidy.rb:
|
8425
|
+
#: ../lib/puppet/type/file.rb:837 ../lib/puppet/type/tidy.rb:341
|
8166
8426
|
msgid "Could not stat; permission denied"
|
8167
8427
|
msgstr ""
|
8168
8428
|
|
@@ -8179,6 +8439,10 @@ msgstr ""
|
|
8179
8439
|
msgid "File written to disk did not match checksum; discarding changes (%{content_checksum} vs %{newsum})"
|
8180
8440
|
msgstr ""
|
8181
8441
|
|
8442
|
+
#: ../lib/puppet/type/file/checksum.rb:20
|
8443
|
+
msgid "MD5 is not supported in FIPS mode"
|
8444
|
+
msgstr ""
|
8445
|
+
|
8182
8446
|
#. TRANSLATORS 'Ensure' is an attribute and ':present' is a value and should not be translated
|
8183
8447
|
#: ../lib/puppet/type/file/data_sync.rb:31
|
8184
8448
|
msgid "Ensure set to :present but file type is %{file_type} so no content will be synced"
|
@@ -8200,15 +8464,15 @@ msgstr ""
|
|
8200
8464
|
msgid "Could not create %{type} filebucket: %{detail}"
|
8201
8465
|
msgstr ""
|
8202
8466
|
|
8203
|
-
#: ../lib/puppet/type/group.rb:
|
8467
|
+
#: ../lib/puppet/type/group.rb:60
|
8204
8468
|
msgid "GID cannot be deleted"
|
8205
8469
|
msgstr ""
|
8206
8470
|
|
8207
|
-
#: ../lib/puppet/type/group.rb:
|
8471
|
+
#: ../lib/puppet/type/group.rb:72
|
8208
8472
|
msgid "Invalid GID %{gid}"
|
8209
8473
|
msgstr ""
|
8210
8474
|
|
8211
|
-
#: ../lib/puppet/type/group.rb:
|
8475
|
+
#: ../lib/puppet/type/group.rb:166 ../lib/puppet/type/user.rb:618
|
8212
8476
|
msgid "Attributes value pairs must be separated by an ="
|
8213
8477
|
msgstr ""
|
8214
8478
|
|
@@ -8240,7 +8504,7 @@ msgstr ""
|
|
8240
8504
|
msgid "Invalid interface ip address"
|
8241
8505
|
msgstr ""
|
8242
8506
|
|
8243
|
-
#: ../lib/puppet/type/k5login.rb:
|
8507
|
+
#: ../lib/puppet/type/k5login.rb:24
|
8244
8508
|
msgid "File paths must be fully qualified."
|
8245
8509
|
msgstr ""
|
8246
8510
|
|
@@ -8284,15 +8548,15 @@ msgstr ""
|
|
8284
8548
|
msgid "fstype must not be an empty string"
|
8285
8549
|
msgstr ""
|
8286
8550
|
|
8287
|
-
#: ../lib/puppet/type/mount.rb:
|
8551
|
+
#: ../lib/puppet/type/mount.rb:184
|
8288
8552
|
msgid "options must not contain whitespace: %{value}"
|
8289
8553
|
msgstr ""
|
8290
8554
|
|
8291
|
-
#: ../lib/puppet/type/mount.rb:
|
8555
|
+
#: ../lib/puppet/type/mount.rb:185
|
8292
8556
|
msgid "options must not be an empty string"
|
8293
8557
|
msgstr ""
|
8294
8558
|
|
8295
|
-
#: ../lib/puppet/type/mount.rb:
|
8559
|
+
#: ../lib/puppet/type/mount.rb:250
|
8296
8560
|
msgid "name must not contain whitespace: %{value}"
|
8297
8561
|
msgstr ""
|
8298
8562
|
|
@@ -8427,11 +8691,11 @@ msgid "Invalid tidy size %{age}"
|
|
8427
8691
|
msgstr ""
|
8428
8692
|
|
8429
8693
|
#. TRANSLATORS "Tidy" is a program name and should not be translated
|
8430
|
-
#: ../lib/puppet/type/tidy.rb:
|
8694
|
+
#: ../lib/puppet/type/tidy.rb:272
|
8431
8695
|
msgid "Tidying %{count} files"
|
8432
8696
|
msgstr ""
|
8433
8697
|
|
8434
|
-
#: ../lib/puppet/type/tidy.rb:
|
8698
|
+
#: ../lib/puppet/type/tidy.rb:337
|
8435
8699
|
msgid "File does not exist"
|
8436
8700
|
msgstr ""
|
8437
8701
|
|
@@ -8467,85 +8731,85 @@ msgstr ""
|
|
8467
8731
|
msgid "Password maximum age must be provided as a number."
|
8468
8732
|
msgstr ""
|
8469
8733
|
|
8470
|
-
#: ../lib/puppet/type/user.rb:
|
8734
|
+
#: ../lib/puppet/type/user.rb:308
|
8471
8735
|
msgid "Group names must be provided, not GID numbers."
|
8472
8736
|
msgstr ""
|
8473
8737
|
|
8474
|
-
#: ../lib/puppet/type/user.rb:
|
8738
|
+
#: ../lib/puppet/type/user.rb:310
|
8475
8739
|
msgid "Group names must be provided as an array, not a comma-separated list."
|
8476
8740
|
msgstr ""
|
8477
8741
|
|
8478
|
-
#: ../lib/puppet/type/user.rb:
|
8742
|
+
#: ../lib/puppet/type/user.rb:311
|
8479
8743
|
msgid "Group names must not be empty. If you want to specify \"no groups\" pass an empty array"
|
8480
8744
|
msgstr ""
|
8481
8745
|
|
8482
|
-
#: ../lib/puppet/type/user.rb:
|
8746
|
+
#: ../lib/puppet/type/user.rb:403
|
8483
8747
|
msgid "User provider %{name} can not manage home directories"
|
8484
8748
|
msgstr ""
|
8485
8749
|
|
8486
8750
|
#. TRANSLATORS YYYY-MM-DD represents a date with a four-digit year, a two-digit month, and a two-digit day,
|
8487
8751
|
#. TRANSLATORS separated by dashes.
|
8488
|
-
#: ../lib/puppet/type/user.rb:
|
8752
|
+
#: ../lib/puppet/type/user.rb:420
|
8489
8753
|
msgid "Expiry dates must be YYYY-MM-DD or the string \"absent\""
|
8490
8754
|
msgstr ""
|
8491
8755
|
|
8492
|
-
#: ../lib/puppet/type/user.rb:
|
8756
|
+
#: ../lib/puppet/type/user.rb:497
|
8493
8757
|
msgid "Role names must be provided, not numbers"
|
8494
8758
|
msgstr ""
|
8495
8759
|
|
8496
|
-
#: ../lib/puppet/type/user.rb:
|
8760
|
+
#: ../lib/puppet/type/user.rb:499
|
8497
8761
|
msgid "Role names must be provided as an array, not a comma-separated list"
|
8498
8762
|
msgstr ""
|
8499
8763
|
|
8500
|
-
#: ../lib/puppet/type/user.rb:
|
8764
|
+
#: ../lib/puppet/type/user.rb:534
|
8501
8765
|
msgid "Auth names must be provided, not numbers"
|
8502
8766
|
msgstr ""
|
8503
8767
|
|
8504
|
-
#: ../lib/puppet/type/user.rb:
|
8768
|
+
#: ../lib/puppet/type/user.rb:536
|
8505
8769
|
msgid "Auth names must be provided as an array, not a comma-separated list"
|
8506
8770
|
msgstr ""
|
8507
8771
|
|
8508
|
-
#: ../lib/puppet/type/user.rb:
|
8772
|
+
#: ../lib/puppet/type/user.rb:560
|
8509
8773
|
msgid "Profile names must be provided, not numbers"
|
8510
8774
|
msgstr ""
|
8511
8775
|
|
8512
|
-
#: ../lib/puppet/type/user.rb:
|
8776
|
+
#: ../lib/puppet/type/user.rb:562
|
8513
8777
|
msgid "Profile names must be provided as an array, not a comma-separated list"
|
8514
8778
|
msgstr ""
|
8515
8779
|
|
8516
|
-
#: ../lib/puppet/type/user.rb:
|
8780
|
+
#: ../lib/puppet/type/user.rb:584
|
8517
8781
|
msgid "Key/value pairs must be separated by an ="
|
8518
8782
|
msgstr ""
|
8519
8783
|
|
8520
|
-
#: ../lib/puppet/type/user.rb:
|
8784
|
+
#: ../lib/puppet/type/user.rb:691
|
8521
8785
|
msgid "Each entry for purge_ssh_keys must be a string, not a %{klass}"
|
8522
8786
|
msgstr ""
|
8523
8787
|
|
8524
|
-
#: ../lib/puppet/type/user.rb:
|
8788
|
+
#: ../lib/puppet/type/user.rb:694
|
8525
8789
|
msgid "Paths to keyfiles must be absolute, not %{entry}"
|
8526
8790
|
msgstr ""
|
8527
8791
|
|
8528
|
-
#: ../lib/puppet/type/user.rb:
|
8792
|
+
#: ../lib/puppet/type/user.rb:698
|
8529
8793
|
msgid "purge_ssh_keys must be true, false, or an array of file names, not %{value}"
|
8530
8794
|
msgstr ""
|
8531
8795
|
|
8532
|
-
#: ../lib/puppet/type/user.rb:
|
8796
|
+
#: ../lib/puppet/type/user.rb:710
|
8533
8797
|
msgid "purge_ssh_keys can only be true for users with a defined home directory"
|
8534
8798
|
msgstr ""
|
8535
8799
|
|
8536
|
-
#: ../lib/puppet/type/user.rb:
|
8800
|
+
#: ../lib/puppet/type/user.rb:717
|
8537
8801
|
msgid "purge_ssh_keys value '%{value}' meta character ~ or %{home_placeholder} only allowed for users with a defined home directory"
|
8538
8802
|
msgstr ""
|
8539
8803
|
|
8540
|
-
#: ../lib/puppet/type/user.rb:
|
8804
|
+
#: ../lib/puppet/type/user.rb:731
|
8541
8805
|
msgid "Class name must be provided."
|
8542
8806
|
msgstr ""
|
8543
8807
|
|
8544
|
-
#: ../lib/puppet/type/yumrepo.rb:65 ../lib/puppet/type/yumrepo.rb:82 ../lib/puppet/type/yumrepo.rb:
|
8808
|
+
#: ../lib/puppet/type/yumrepo.rb:65 ../lib/puppet/type/yumrepo.rb:82 ../lib/puppet/type/yumrepo.rb:138 ../lib/puppet/type/yumrepo.rb:162 ../lib/puppet/type/yumrepo.rb:184 ../lib/puppet/type/yumrepo.rb:312 ../lib/puppet/type/yumrepo.rb:378
|
8545
8809
|
msgid "Must be a valid URL"
|
8546
8810
|
msgstr ""
|
8547
8811
|
|
8548
|
-
#: ../lib/puppet/type/yumrepo.rb:
|
8812
|
+
#: ../lib/puppet/type/yumrepo.rb:270
|
8549
8813
|
msgid "Must be within range 1-99"
|
8550
8814
|
msgstr ""
|
8551
8815
|
|
@@ -8909,31 +9173,31 @@ msgstr ""
|
|
8909
9173
|
msgid "Cannot provide diff without the diff/lcs Ruby library"
|
8910
9174
|
msgstr ""
|
8911
9175
|
|
8912
|
-
#: ../lib/puppet/util/errors.rb:
|
9176
|
+
#: ../lib/puppet/util/errors.rb:47
|
8913
9177
|
msgid "(file: %{file}, line: %{line}, column: %{column})"
|
8914
9178
|
msgstr ""
|
8915
9179
|
|
8916
|
-
#: ../lib/puppet/util/errors.rb:
|
9180
|
+
#: ../lib/puppet/util/errors.rb:49
|
8917
9181
|
msgid "(file: %{file}, line: %{line})"
|
8918
9182
|
msgstr ""
|
8919
9183
|
|
8920
|
-
#: ../lib/puppet/util/errors.rb:
|
9184
|
+
#: ../lib/puppet/util/errors.rb:51
|
8921
9185
|
msgid "(line: %{line}, column: %{column})"
|
8922
9186
|
msgstr ""
|
8923
9187
|
|
8924
|
-
#: ../lib/puppet/util/errors.rb:
|
9188
|
+
#: ../lib/puppet/util/errors.rb:53
|
8925
9189
|
msgid "(line: %{line})"
|
8926
9190
|
msgstr ""
|
8927
9191
|
|
8928
|
-
#: ../lib/puppet/util/errors.rb:
|
9192
|
+
#: ../lib/puppet/util/errors.rb:55
|
8929
9193
|
msgid "(file: %{file})"
|
8930
9194
|
msgstr ""
|
8931
9195
|
|
8932
|
-
#: ../lib/puppet/util/errors.rb:
|
9196
|
+
#: ../lib/puppet/util/errors.rb:88 ../lib/puppet/util/errors.rb:89
|
8933
9197
|
msgid "unknown"
|
8934
9198
|
msgstr ""
|
8935
9199
|
|
8936
|
-
#: ../lib/puppet/util/errors.rb:
|
9200
|
+
#: ../lib/puppet/util/errors.rb:119
|
8937
9201
|
msgid "%{klass} failed with error %{error_type}: %{detail}"
|
8938
9202
|
msgstr ""
|
8939
9203
|
|
@@ -9049,7 +9313,7 @@ msgstr ""
|
|
9049
9313
|
msgid "Could not write crontab for %{path}: %{detail}"
|
9050
9314
|
msgstr ""
|
9051
9315
|
|
9052
|
-
#: ../lib/puppet/util/http_proxy.rb:
|
9316
|
+
#: ../lib/puppet/util/http_proxy.rb:203
|
9053
9317
|
msgid "Too many HTTP redirections for %{uri}"
|
9054
9318
|
msgstr ""
|
9055
9319
|
|
@@ -9239,15 +9503,15 @@ msgstr ""
|
|
9239
9503
|
msgid "Duplicate device found at %{file_error_location}, already found at %{device_error_location}"
|
9240
9504
|
msgstr ""
|
9241
9505
|
|
9242
|
-
#: ../lib/puppet/util/network_device/config.rb:
|
9506
|
+
#: ../lib/puppet/util/network_device/config.rb:77
|
9243
9507
|
msgid "Configuration error: Cannot read %{file}; cannot serve"
|
9244
9508
|
msgstr ""
|
9245
9509
|
|
9246
|
-
#: ../lib/puppet/util/network_device/config.rb:
|
9510
|
+
#: ../lib/puppet/util/network_device/config.rb:80
|
9247
9511
|
msgid "Configuration error: '%{file}' does not exit; cannot serve"
|
9248
9512
|
msgstr ""
|
9249
9513
|
|
9250
|
-
#: ../lib/puppet/util/network_device/config.rb:
|
9514
|
+
#: ../lib/puppet/util/network_device/config.rb:94
|
9251
9515
|
msgid "%{value} is an invalid url"
|
9252
9516
|
msgstr ""
|
9253
9517
|
|
@@ -9315,31 +9579,37 @@ msgstr ""
|
|
9315
9579
|
msgid "RDOC SUPPORT FOR MANIFEST HAS BEEN REMOVED - See PUP-3638"
|
9316
9580
|
msgstr ""
|
9317
9581
|
|
9318
|
-
#: ../lib/puppet/util/reference.rb:
|
9582
|
+
#: ../lib/puppet/util/reference.rb:16
|
9583
|
+
msgid ""
|
9584
|
+
"*This page autogenerated on %{current_time}*\n"
|
9585
|
+
msgstr ""
|
9586
|
+
|
9587
|
+
#: ../lib/puppet/util/reference.rb:34
|
9319
9588
|
msgid "Could not find section %{name}"
|
9320
9589
|
msgstr ""
|
9321
9590
|
|
9322
|
-
#: ../lib/puppet/util/reference.rb:
|
9591
|
+
#: ../lib/puppet/util/reference.rb:40
|
9323
9592
|
msgid "creating pdf"
|
9324
9593
|
msgstr ""
|
9325
9594
|
|
9326
|
-
#: ../lib/puppet/util/reference.rb:
|
9595
|
+
#: ../lib/puppet/util/reference.rb:42
|
9327
9596
|
msgid "Could not find rst2latex"
|
9328
9597
|
msgstr ""
|
9329
9598
|
|
9330
|
-
#: ../lib/puppet/util/reference.rb:
|
9599
|
+
#: ../lib/puppet/util/reference.rb:52
|
9331
9600
|
msgid "rst2latex failed"
|
9332
9601
|
msgstr ""
|
9333
9602
|
|
9334
|
-
#: ../lib/puppet/util/reference.rb:
|
9603
|
+
#: ../lib/puppet/util/reference.rb:92
|
9335
9604
|
msgid "%{name} Reference"
|
9336
9605
|
msgstr ""
|
9337
9606
|
|
9338
|
-
|
9607
|
+
#. TRANSLATORS message accompanied by date of generation
|
9608
|
+
#: ../lib/puppet/util/reference.rb:115
|
9339
9609
|
msgid ""
|
9340
9610
|
"\n"
|
9341
9611
|
"\n"
|
9342
|
-
"**This page is autogenerated; any changes will get overwritten
|
9612
|
+
"**This page is autogenerated; any changes will get overwritten** *(last generated on %{current_time})*\n"
|
9343
9613
|
"\n"
|
9344
9614
|
msgstr ""
|
9345
9615
|
|
@@ -9479,39 +9749,39 @@ msgstr ""
|
|
9479
9749
|
msgid "Value must be in DOMAIN\\user style syntax"
|
9480
9750
|
msgstr ""
|
9481
9751
|
|
9482
|
-
#: ../lib/puppet/util/windows/adsi.rb:
|
9752
|
+
#: ../lib/puppet/util/windows/adsi.rb:156
|
9483
9753
|
msgid "Could not resolve name: %{name}"
|
9484
9754
|
msgstr ""
|
9485
9755
|
|
9486
|
-
#: ../lib/puppet/util/windows/adsi.rb:
|
9756
|
+
#: ../lib/puppet/util/windows/adsi.rb:214
|
9487
9757
|
msgid "Puppet is not able to create/delete domain users with the user resource."
|
9488
9758
|
msgstr ""
|
9489
9759
|
|
9490
|
-
#: ../lib/puppet/util/windows/adsi.rb:
|
9760
|
+
#: ../lib/puppet/util/windows/adsi.rb:219
|
9491
9761
|
msgid "User update failed: %{e}"
|
9492
9762
|
msgstr ""
|
9493
9763
|
|
9494
|
-
#: ../lib/puppet/util/windows/adsi.rb:
|
9764
|
+
#: ../lib/puppet/util/windows/adsi.rb:314
|
9495
9765
|
msgid "Cannot create user if group '%{name}' exists."
|
9496
9766
|
msgstr ""
|
9497
9767
|
|
9498
|
-
#: ../lib/puppet/util/windows/adsi.rb:
|
9768
|
+
#: ../lib/puppet/util/windows/adsi.rb:328
|
9499
9769
|
msgid "Failed to get user name"
|
9500
9770
|
msgstr ""
|
9501
9771
|
|
9502
|
-
#: ../lib/puppet/util/windows/adsi.rb:
|
9772
|
+
#: ../lib/puppet/util/windows/adsi.rb:406
|
9503
9773
|
msgid "Cannot delete user profile for '%{sid}' prior to Vista SP1"
|
9504
9774
|
msgstr ""
|
9505
9775
|
|
9506
|
-
#: ../lib/puppet/util/windows/adsi.rb:
|
9776
|
+
#: ../lib/puppet/util/windows/adsi.rb:444
|
9507
9777
|
msgid "Puppet is not able to create/delete domain groups with the group resource."
|
9508
9778
|
msgstr ""
|
9509
9779
|
|
9510
|
-
#: ../lib/puppet/util/windows/adsi.rb:
|
9780
|
+
#: ../lib/puppet/util/windows/adsi.rb:449
|
9511
9781
|
msgid "Group update failed: %{error}"
|
9512
9782
|
msgstr ""
|
9513
9783
|
|
9514
|
-
#: ../lib/puppet/util/windows/adsi.rb:
|
9784
|
+
#: ../lib/puppet/util/windows/adsi.rb:505
|
9515
9785
|
msgid "Cannot create group if user '%{name}' exists."
|
9516
9786
|
msgstr ""
|
9517
9787
|
|
@@ -9574,17 +9844,17 @@ msgstr ""
|
|
9574
9844
|
msgid "Failed to call GetLongPathName"
|
9575
9845
|
msgstr ""
|
9576
9846
|
|
9577
|
-
#: ../lib/puppet/util/windows/principal.rb:
|
9578
|
-
msgid "Failed to call LookupAccountNameW
|
9847
|
+
#: ../lib/puppet/util/windows/principal.rb:67 ../lib/puppet/util/windows/principal.rb:74
|
9848
|
+
msgid "Failed to call LookupAccountNameW"
|
9579
9849
|
msgstr ""
|
9580
9850
|
|
9581
9851
|
#. TRANSLATORS `lookup_account_sid` is a variable name and should not be translated
|
9582
|
-
#: ../lib/puppet/util/windows/principal.rb:
|
9852
|
+
#: ../lib/puppet/util/windows/principal.rb:97
|
9583
9853
|
msgid "Byte array for lookup_account_sid must not be nil and must be at least 1 byte long"
|
9584
9854
|
msgstr ""
|
9585
9855
|
|
9586
|
-
#: ../lib/puppet/util/windows/principal.rb:
|
9587
|
-
msgid "Failed to call LookupAccountSidW
|
9856
|
+
#: ../lib/puppet/util/windows/principal.rb:119 ../lib/puppet/util/windows/principal.rb:126
|
9857
|
+
msgid "Failed to call LookupAccountSidW"
|
9588
9858
|
msgstr ""
|
9589
9859
|
|
9590
9860
|
#: ../lib/puppet/util/windows/process.rb:24
|
@@ -9663,7 +9933,7 @@ msgstr ""
|
|
9663
9933
|
msgid "Failed to get volume information"
|
9664
9934
|
msgstr ""
|
9665
9935
|
|
9666
|
-
#: ../lib/puppet/util/windows/security.rb:383 ../lib/puppet/util/windows/security.rb:400 ../lib/puppet/util/windows/sid.rb:
|
9936
|
+
#: ../lib/puppet/util/windows/security.rb:383 ../lib/puppet/util/windows/security.rb:400 ../lib/puppet/util/windows/sid.rb:125 ../lib/puppet/util/windows/sid.rb:187 ../lib/puppet/util/windows/user.rb:45
|
9667
9937
|
msgid "Invalid SID"
|
9668
9938
|
msgstr ""
|
9669
9939
|
|
@@ -9703,19 +9973,19 @@ msgstr ""
|
|
9703
9973
|
msgid "Failed to set security information"
|
9704
9974
|
msgstr ""
|
9705
9975
|
|
9706
|
-
#: ../lib/puppet/util/windows/sid.rb:
|
9976
|
+
#: ../lib/puppet/util/windows/sid.rb:92
|
9707
9977
|
msgid "Octet string must be an array of bytes"
|
9708
9978
|
msgstr ""
|
9709
9979
|
|
9710
|
-
#: ../lib/puppet/util/windows/sid.rb:
|
9980
|
+
#: ../lib/puppet/util/windows/sid.rb:131
|
9711
9981
|
msgid "Failed to convert binary SID"
|
9712
9982
|
msgstr ""
|
9713
9983
|
|
9714
|
-
#: ../lib/puppet/util/windows/sid.rb:
|
9984
|
+
#: ../lib/puppet/util/windows/sid.rb:136
|
9715
9985
|
msgid "ConvertSidToStringSidW failed to allocate buffer for sid"
|
9716
9986
|
msgstr ""
|
9717
9987
|
|
9718
|
-
#: ../lib/puppet/util/windows/sid.rb:
|
9988
|
+
#: ../lib/puppet/util/windows/sid.rb:156
|
9719
9989
|
msgid "Failed to convert string SID: %{string_sid}"
|
9720
9990
|
msgstr ""
|
9721
9991
|
|
@@ -9794,3 +10064,76 @@ msgstr ""
|
|
9794
10064
|
#: ../lib/puppet/util/windows/user.rb:118
|
9795
10065
|
msgid "Failed to unload user profile %{user}"
|
9796
10066
|
msgstr ""
|
10067
|
+
|
10068
|
+
#: ../lib/puppet_pal.rb:111
|
10069
|
+
msgid "The argument 'puppet_code' must be a String, got %{type}"
|
10070
|
+
msgstr ""
|
10071
|
+
|
10072
|
+
#. TRANSLATORS, the 'ast' is the name of a parameter, do not translate
|
10073
|
+
#: ../lib/puppet_pal.rb:153
|
10074
|
+
msgid "The given 'ast' does not represent a literal value"
|
10075
|
+
msgstr ""
|
10076
|
+
|
10077
|
+
#: ../lib/puppet_pal.rb:165
|
10078
|
+
msgid "The argument 'code_string' must be a String, got %{type}"
|
10079
|
+
msgstr ""
|
10080
|
+
|
10081
|
+
#: ../lib/puppet_pal.rb:178
|
10082
|
+
msgid "The argument 'file' must be a String, got %{type}"
|
10083
|
+
msgstr ""
|
10084
|
+
|
10085
|
+
#: ../lib/puppet_pal.rb:215
|
10086
|
+
msgid "Given data_type value is not a data type, got '%{type}'"
|
10087
|
+
msgstr ""
|
10088
|
+
|
10089
|
+
#. TRANSLATORS: do not translate the variable names in this error message
|
10090
|
+
#: ../lib/puppet_pal.rb:518
|
10091
|
+
msgid "manifest_file or code_string cannot be given when configured_by_env is true"
|
10092
|
+
msgstr ""
|
10093
|
+
|
10094
|
+
#: ../lib/puppet_pal.rb:583
|
10095
|
+
msgid "temporary environment name"
|
10096
|
+
msgstr ""
|
10097
|
+
|
10098
|
+
#. TRANSLATORS: do not translate variable name string in these assertions
|
10099
|
+
#: ../lib/puppet_pal.rb:588
|
10100
|
+
msgid "A block must be given to 'in_tmp_environment'"
|
10101
|
+
msgstr ""
|
10102
|
+
|
10103
|
+
#. TRANSLATORS terms in the assertions below are names of terms in code
|
10104
|
+
#: ../lib/puppet_pal.rb:642
|
10105
|
+
msgid "A block must be given to 'in_environment'"
|
10106
|
+
msgstr ""
|
10107
|
+
|
10108
|
+
#. TRANSLATORS 'in_environment' is a name, do not translate
|
10109
|
+
#: ../lib/puppet_pal.rb:647
|
10110
|
+
msgid "The environment directory '%{env_dir}' does not exist"
|
10111
|
+
msgstr ""
|
10112
|
+
|
10113
|
+
#: ../lib/puppet_pal.rb:670
|
10114
|
+
msgid "No directory found for the environment '%{env_name}' on the path '%{envpath}'"
|
10115
|
+
msgstr ""
|
10116
|
+
|
10117
|
+
#: ../lib/puppet_pal.rb:724
|
10118
|
+
msgid "Given variables must be a hash, got %{type}"
|
10119
|
+
msgstr ""
|
10120
|
+
|
10121
|
+
#: ../lib/puppet_pal.rb:730
|
10122
|
+
msgid "Given variable '%{varname}' has illegal name"
|
10123
|
+
msgstr ""
|
10124
|
+
|
10125
|
+
#: ../lib/puppet_pal.rb:734
|
10126
|
+
msgid "Given value for '%{varname}' has illegal type - got: %{type}"
|
10127
|
+
msgstr ""
|
10128
|
+
|
10129
|
+
#: ../lib/puppet_pal.rb:850
|
10130
|
+
msgid "Puppet Pal: %{what}"
|
10131
|
+
msgstr ""
|
10132
|
+
|
10133
|
+
#: ../lib/puppet_pal.rb:863
|
10134
|
+
msgid "Cannot use '%{a_term}' and '%{b_term}' at the same time"
|
10135
|
+
msgstr ""
|
10136
|
+
|
10137
|
+
#: ../lib/puppet_pal.rb:869
|
10138
|
+
msgid "A block must be given"
|
10139
|
+
msgstr ""
|