puppet 6.4.5-universal-darwin → 6.5.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/CODEOWNERS +10 -10
- data/Gemfile +6 -6
- data/Gemfile.lock +46 -52
- data/ext/build_defaults.yaml +0 -1
- data/ext/project_data.yaml +3 -3
- data/ext/regexp_nodes/regexp_nodes.rb +4 -4
- data/ext/solaris/smf/puppet.xml +0 -2
- data/ext/windows/eventlog/Rakefile +32 -0
- data/ext/windows/eventlog/puppetres.dll +0 -0
- data/ext/windows/eventlog/puppetres.mc +18 -0
- data/ext/windows/service/daemon.rb +8 -38
- data/install.rb +24 -6
- data/lib/puppet.rb +3 -1
- data/lib/puppet/application.rb +1 -1
- data/lib/puppet/application/agent.rb +11 -34
- data/lib/puppet/application/apply.rb +6 -6
- data/lib/puppet/application/describe.rb +9 -3
- data/lib/puppet/application/device.rb +4 -14
- data/lib/puppet/application/doc.rb +1 -1
- data/lib/puppet/application/lookup.rb +2 -2
- data/lib/puppet/application/resource.rb +4 -4
- data/lib/puppet/application/script.rb +2 -2
- data/lib/puppet/application/ssl.rb +10 -9
- data/lib/puppet/configurer.rb +30 -86
- data/lib/puppet/configurer/downloader.rb +6 -2
- data/lib/puppet/defaults.rb +50 -44
- data/lib/puppet/error.rb +14 -9
- data/lib/puppet/face/catalog.rb +20 -1
- data/lib/puppet/face/config.rb +48 -10
- data/lib/puppet/face/facts.rb +1 -1
- data/lib/puppet/face/help.rb +1 -1
- data/lib/puppet/face/module/list.rb +5 -5
- data/lib/puppet/face/module/search.rb +1 -1
- data/lib/puppet/face/module/uninstall.rb +1 -1
- data/lib/puppet/face/module/upgrade.rb +1 -1
- data/lib/puppet/face/parser.rb +48 -9
- data/lib/puppet/face/plugin.rb +2 -9
- data/lib/puppet/file_serving/http_metadata.rb +1 -1
- data/lib/puppet/file_system.rb +12 -2
- data/lib/puppet/file_system/file_impl.rb +6 -3
- data/lib/puppet/file_system/memory_file.rb +1 -1
- data/lib/puppet/file_system/posix.rb +2 -3
- data/lib/puppet/forge.rb +3 -3
- data/lib/puppet/functions.rb +2 -1
- data/lib/puppet/functions/camelcase.rb +2 -2
- data/lib/puppet/functions/epp.rb +4 -4
- data/lib/puppet/functions/find_file.rb +9 -9
- data/lib/puppet/functions/inline_epp.rb +5 -5
- data/lib/puppet/functions/regsubst.rb +6 -8
- data/lib/puppet/gettext/module_translations.rb +1 -1
- data/lib/puppet/graph/rb_tree_map.rb +2 -2
- data/lib/puppet/graph/simple_graph.rb +3 -4
- data/lib/puppet/indirector/catalog/compiler.rb +5 -11
- data/lib/puppet/indirector/file_bucket_file/file.rb +1 -1
- data/lib/puppet/indirector/hiera.rb +0 -2
- data/lib/puppet/indirector/resource/ral.rb +3 -1
- data/lib/puppet/indirector/resource/validator.rb +1 -1
- data/lib/puppet/interface.rb +1 -2
- data/lib/puppet/loaders.rb +1 -0
- data/lib/puppet/metatype/manager.rb +1 -1
- data/lib/puppet/module.rb +1 -1
- data/lib/puppet/module/task.rb +4 -20
- data/lib/puppet/module_tool/applications/installer.rb +1 -1
- data/lib/puppet/module_tool/applications/uninstaller.rb +3 -3
- data/lib/puppet/module_tool/metadata.rb +1 -1
- data/lib/puppet/module_tool/shared_behaviors.rb +4 -4
- data/lib/puppet/module_tool/tar/mini.rb +2 -12
- data/lib/puppet/network/http/api/indirected_routes.rb +11 -12
- data/lib/puppet/network/http/connection.rb +12 -10
- data/lib/puppet/network/http/factory.rb +11 -1
- data/lib/puppet/network/http/pool.rb +0 -2
- data/lib/puppet/network/http/site.rb +1 -1
- data/lib/puppet/network/resolver.rb +2 -2
- data/lib/puppet/node/environment.rb +2 -4
- data/lib/puppet/pal/pal_impl.rb +2 -2
- data/lib/puppet/parser/ast.rb +1 -1
- data/lib/puppet/parser/ast/resourceparam.rb +1 -1
- data/lib/puppet/parser/functions.rb +1 -1
- data/lib/puppet/parser/functions/epp.rb +3 -3
- data/lib/puppet/parser/functions/fail.rb +8 -1
- data/lib/puppet/parser/functions/inline_epp.rb +5 -5
- data/lib/puppet/parser/scope.rb +7 -8
- data/lib/puppet/pops/evaluator/collectors/catalog_collector.rb +1 -1
- data/lib/puppet/pops/evaluator/collectors/exported_collector.rb +1 -1
- data/lib/puppet/pops/evaluator/external_syntax_support.rb +2 -3
- data/lib/puppet/pops/evaluator/runtime3_support.rb +4 -4
- data/lib/puppet/pops/loader/null_loader.rb +60 -0
- data/lib/puppet/pops/loader/ruby_legacy_function_instantiator.rb +6 -4
- data/lib/puppet/pops/loader/task_instantiator.rb +0 -4
- data/lib/puppet/pops/loaders.rb +1 -1
- data/lib/puppet/pops/lookup/hiera_config.rb +0 -1
- data/lib/puppet/pops/lookup/sub_lookup.rb +1 -1
- data/lib/puppet/pops/merge_strategy.rb +18 -22
- data/lib/puppet/pops/parser/heredoc_support.rb +1 -1
- data/lib/puppet/pops/parser/interpolation_support.rb +4 -4
- data/lib/puppet/pops/parser/locator.rb +1 -1
- data/lib/puppet/pops/parser/pn_parser.rb +16 -17
- data/lib/puppet/pops/puppet_stack.rb +49 -51
- data/lib/puppet/pops/types/p_sensitive_type.rb +1 -1
- data/lib/puppet/pops/types/string_converter.rb +10 -10
- data/lib/puppet/pops/types/types.rb +6 -5
- data/lib/puppet/property.rb +1 -1
- data/lib/puppet/property/ensure.rb +1 -1
- data/lib/puppet/provider/exec.rb +2 -6
- data/lib/puppet/provider/file/posix.rb +0 -5
- data/lib/puppet/provider/nameservice.rb +3 -10
- data/lib/puppet/provider/nameservice/directoryservice.rb +1 -1
- data/lib/puppet/provider/nameservice/pw.rb +2 -2
- data/lib/puppet/provider/package.rb +0 -2
- data/lib/puppet/provider/package/apt.rb +1 -5
- data/lib/puppet/provider/package/dnf.rb +1 -1
- data/lib/puppet/provider/package/dpkg.rb +18 -34
- data/lib/puppet/provider/package/openbsd.rb +1 -1
- data/lib/puppet/provider/package/pip.rb +13 -37
- data/lib/puppet/provider/package/portage.rb +4 -4
- data/lib/puppet/provider/package/puppet_gem.rb +1 -1
- data/lib/puppet/provider/package/rpm.rb +18 -56
- data/lib/puppet/provider/package/windows/package.rb +1 -1
- data/lib/puppet/provider/package/yum.rb +5 -9
- data/lib/puppet/provider/package_targetable.rb +4 -7
- data/lib/puppet/provider/parsedfile.rb +1 -1
- data/lib/puppet/provider/service/daemontools.rb +9 -9
- data/lib/puppet/provider/service/launchd.rb +5 -20
- data/lib/puppet/provider/service/openbsd.rb +1 -1
- data/lib/puppet/provider/service/rcng.rb +2 -2
- data/lib/puppet/provider/service/runit.rb +8 -2
- data/lib/puppet/provider/service/systemd.rb +19 -14
- data/lib/puppet/provider/service/windows.rb +0 -8
- data/lib/puppet/provider/user/directoryservice.rb +1 -1
- data/lib/puppet/provider/user/hpux.rb +1 -1
- data/lib/puppet/provider/user/pw.rb +3 -12
- data/lib/puppet/provider/user/user_role_add.rb +1 -5
- data/lib/puppet/provider/user/useradd.rb +20 -45
- data/lib/puppet/provider/user/windows_adsi.rb +5 -4
- data/lib/puppet/reference/configuration.rb +3 -3
- data/lib/puppet/reference/indirection.rb +2 -2
- data/lib/puppet/reference/metaparameter.rb +3 -1
- data/lib/puppet/reference/providers.rb +3 -1
- data/lib/puppet/reference/type.rb +9 -3
- data/lib/puppet/reports.rb +1 -1
- data/lib/puppet/resource.rb +1 -18
- data/lib/puppet/resource/catalog.rb +1 -1
- data/lib/puppet/rest/routes.rb +30 -17
- data/lib/puppet/settings.rb +3 -43
- data/lib/puppet/settings/environment_conf.rb +0 -1
- data/lib/puppet/ssl/certificate_request.rb +12 -2
- data/lib/puppet/ssl/host.rb +2 -2
- data/lib/puppet/ssl/oids.rb +1 -1
- data/lib/puppet/ssl/ssl_provider.rb +11 -5
- data/lib/puppet/ssl/state_machine.rb +102 -98
- data/lib/puppet/test/test_helper.rb +1 -0
- data/lib/puppet/transaction.rb +11 -33
- data/lib/puppet/transaction/report.rb +1 -1
- data/lib/puppet/type.rb +4 -2
- data/lib/puppet/type/exec.rb +17 -23
- data/lib/puppet/type/file.rb +39 -11
- data/lib/puppet/type/file/data_sync.rb +1 -5
- data/lib/puppet/type/group.rb +2 -4
- data/lib/puppet/type/notify.rb +3 -4
- data/lib/puppet/type/package.rb +3 -20
- data/lib/puppet/type/schedule.rb +1 -1
- data/lib/puppet/type/service.rb +3 -8
- data/lib/puppet/type/user.rb +2 -4
- data/lib/puppet/util.rb +29 -39
- data/lib/puppet/util/command_line/trollop.rb +1 -1
- data/lib/puppet/util/execution.rb +3 -4
- data/lib/puppet/util/http_proxy.rb +19 -27
- data/lib/puppet/util/log.rb +2 -2
- data/lib/puppet/util/log/destinations.rb +2 -2
- data/lib/puppet/util/logging.rb +20 -32
- data/lib/puppet/util/metric.rb +2 -2
- data/lib/puppet/util/monkey_patches.rb +33 -0
- data/lib/puppet/util/pidlock.rb +2 -3
- data/lib/puppet/util/provider_features.rb +4 -2
- data/lib/puppet/util/rdoc.rb +1 -1
- data/lib/puppet/util/reference.rb +1 -1
- data/lib/puppet/util/resource_template.rb +1 -1
- data/lib/puppet/util/selinux.rb +2 -8
- data/lib/puppet/util/skip_tags.rb +4 -0
- data/lib/puppet/util/windows/adsi.rb +18 -48
- data/lib/puppet/util/windows/process.rb +8 -8
- data/lib/puppet/util/windows/registry.rb +5 -7
- data/lib/puppet/util/windows/security.rb +0 -2
- data/lib/puppet/util/windows/service.rb +4 -149
- data/lib/puppet/util/windows/sid.rb +0 -1
- data/lib/puppet/vendor.rb +1 -1
- data/lib/puppet/version.rb +1 -1
- data/lib/puppet/x509/cert_provider.rb +81 -24
- data/locales/puppet.pot +462 -482
- data/man/man5/puppet.conf.5 +43 -44
- data/man/man8/puppet-agent.8 +1 -1
- data/man/man8/puppet-apply.8 +3 -3
- data/man/man8/puppet-catalog.8 +31 -3
- data/man/man8/puppet-config.8 +1 -1
- data/man/man8/puppet-describe.8 +1 -1
- data/man/man8/puppet-device.8 +1 -1
- data/man/man8/puppet-doc.8 +1 -1
- data/man/man8/puppet-epp.8 +1 -1
- data/man/man8/puppet-facts.8 +1 -1
- data/man/man8/puppet-filebucket.8 +1 -1
- 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-module.8 +1 -1
- 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-script.8 +1 -1
- data/man/man8/puppet-ssl.8 +1 -1
- data/man/man8/puppet-status.8 +1 -1
- data/man/man8/puppet.8 +3 -3
- data/spec/fixtures/ssl/127.0.0.1-key.pem +56 -56
- data/spec/fixtures/ssl/127.0.0.1.pem +27 -27
- data/spec/fixtures/ssl/bad-basic-constraints.pem +32 -32
- data/spec/fixtures/ssl/bad-int-basic-constraints.pem +30 -30
- data/spec/fixtures/ssl/ca.pem +30 -30
- data/spec/fixtures/ssl/crl.pem +15 -15
- data/spec/fixtures/ssl/ec-key.pem +18 -0
- data/spec/fixtures/ssl/ec.pem +40 -0
- data/spec/fixtures/ssl/encrypted-ec-key.pem +21 -0
- data/spec/fixtures/ssl/encrypted-key.pem +57 -57
- data/spec/fixtures/ssl/intermediate-agent-crl.pem +16 -16
- data/spec/fixtures/ssl/intermediate-agent.pem +33 -33
- data/spec/fixtures/ssl/intermediate-crl.pem +17 -17
- data/spec/fixtures/ssl/intermediate.pem +31 -31
- data/spec/fixtures/ssl/pluto-key.pem +56 -56
- data/spec/fixtures/ssl/pluto.pem +28 -28
- data/spec/fixtures/ssl/request-key.pem +56 -56
- data/spec/fixtures/ssl/request.pem +24 -24
- data/spec/fixtures/ssl/revoked-key.pem +56 -56
- data/spec/fixtures/ssl/revoked.pem +25 -25
- data/spec/fixtures/ssl/signed-key.pem +56 -56
- data/spec/fixtures/ssl/signed.pem +25 -25
- data/spec/fixtures/ssl/tampered-cert.pem +27 -27
- data/spec/fixtures/ssl/tampered-csr.pem +24 -24
- data/spec/fixtures/unit/pops/loaders/loaders/mix_4x_and_3x_functions/usee/lib/puppet/parser/functions/func_with_syntax_error.rb +9 -0
- data/spec/fixtures/vcr/cassettes/Puppet_Network_HTTP_Connection/when_handling_requests/_request_get/should_yield_to_the_block.yml +24 -0
- data/spec/fixtures/vcr/cassettes/Puppet_Network_HTTP_Connection/when_handling_requests/_request_head/should_yield_to_the_block.yml +24 -0
- data/spec/fixtures/vcr/cassettes/Puppet_Network_HTTP_Connection/when_handling_requests/_request_post/should_yield_to_the_block.yml +24 -0
- data/spec/integration/configurer_spec.rb +0 -52
- data/spec/integration/provider/service/init_spec.rb +1 -0
- data/spec/integration/provider/service/systemd_spec.rb +5 -8
- data/spec/integration/type/file_spec.rb +38 -28
- data/spec/integration/util/execution_spec.rb +0 -27
- data/spec/lib/puppet/certificate_factory.rb +2 -2
- data/spec/lib/puppet/test_ca.rb +17 -4
- data/spec/lib/puppet_spec/fixtures.rb +4 -0
- data/spec/spec_helper.rb +0 -28
- data/spec/unit/application/agent_spec.rb +34 -67
- data/spec/unit/application/device_spec.rb +1 -27
- data/spec/unit/application/ssl_spec.rb +60 -35
- data/spec/unit/configurer_spec.rb +399 -395
- data/spec/unit/defaults_spec.rb +4 -4
- data/spec/unit/face/facts_spec.rb +0 -9
- data/spec/unit/face/parser_spec.rb +69 -22
- data/spec/unit/face/plugin_spec.rb +0 -8
- data/spec/unit/file_system_spec.rb +30 -1
- data/spec/unit/forge/forge_spec.rb +3 -1
- data/spec/unit/forge/repository_spec.rb +3 -1
- data/spec/unit/indirector/catalog/compiler_spec.rb +5 -62
- data/spec/unit/indirector/resource/ral_spec.rb +4 -4
- data/spec/unit/module_tool/tar/mini_spec.rb +1 -1
- data/spec/unit/network/http/api/indirected_routes_spec.rb +10 -25
- data/spec/unit/network/http/connection_spec.rb +145 -119
- data/spec/unit/network/http/factory_spec.rb +5 -27
- data/spec/unit/parser/scope_spec.rb +0 -10
- data/spec/unit/pops/evaluator/evaluating_parser_spec.rb +3 -8
- data/spec/unit/pops/loaders/loaders_spec.rb +4 -0
- data/spec/unit/pops/loaders/module_loaders_spec.rb +0 -37
- data/spec/unit/pops/types/types_spec.rb +27 -0
- data/spec/unit/provider/exec_spec.rb +0 -209
- data/spec/unit/provider/package/aptrpm_spec.rb +1 -1
- data/spec/unit/provider/package/dnf_spec.rb +0 -7
- data/spec/unit/provider/package/dpkg_spec.rb +80 -240
- data/spec/unit/provider/package/pip_spec.rb +8 -61
- data/spec/unit/provider/package/portage_spec.rb +4 -4
- data/spec/unit/provider/package/rpm_spec.rb +16 -150
- data/spec/unit/provider/package/yum_spec.rb +0 -7
- data/spec/unit/provider/service/daemontools_spec.rb +0 -24
- data/spec/unit/provider/service/launchd_spec.rb +0 -28
- data/spec/unit/provider/service/runit_spec.rb +0 -24
- data/spec/unit/provider/service/systemd_spec.rb +25 -39
- data/spec/unit/provider/service/windows_spec.rb +0 -20
- data/spec/unit/provider/user/hpux_spec.rb +2 -2
- data/spec/unit/provider/user/pw_spec.rb +0 -37
- data/spec/unit/provider/user/useradd_spec.rb +0 -88
- data/spec/unit/resource_spec.rb +1 -26
- data/spec/unit/ssl/host_spec.rb +5 -0
- data/spec/unit/ssl/ssl_provider_spec.rb +36 -11
- data/spec/unit/ssl/state_machine_spec.rb +233 -158
- data/spec/unit/transaction_spec.rb +0 -64
- data/spec/unit/type/exec_spec.rb +12 -15
- data/spec/unit/type/file/content_spec.rb +3 -9
- data/spec/unit/type/file/source_spec.rb +4 -4
- data/spec/unit/type/file_spec.rb +15 -11
- data/spec/unit/type/package_spec.rb +0 -5
- data/spec/unit/type/schedule_spec.rb +1 -3
- data/spec/unit/type/service_spec.rb +0 -16
- data/spec/unit/util/execution_spec.rb +0 -16
- data/spec/unit/util/http_proxy_spec.rb +21 -151
- data/spec/unit/util/ldap/manager_spec.rb +0 -15
- data/spec/unit/util/log/destinations_spec.rb +3 -7
- data/spec/unit/util/log_spec.rb +138 -0
- data/spec/unit/util/logging_spec.rb +0 -200
- data/spec/unit/util/pidlock_spec.rb +0 -26
- data/spec/unit/util/skip_tags_spec.rb +14 -0
- data/spec/unit/util/windows/adsi_spec.rb +0 -51
- data/spec/unit/util/windows/service_spec.rb +0 -9
- data/spec/unit/util_spec.rb +10 -0
- data/spec/unit/x509/cert_provider_spec.rb +82 -43
- data/tasks/generate_cert_fixtures.rake +13 -1
- data/tasks/manpages.rake +0 -1
- metadata +26 -20
- data/ext/cert_inspector +0 -140
- data/ext/envpuppet +0 -139
- data/ext/envpuppet.bat +0 -14
- data/ext/puppet-test +0 -476
- data/ext/pure_ruby_dsl/dsl_test.rb +0 -7
- data/ext/upload_facts.rb +0 -119
- data/lib/puppet/provider/package/dnfmodule.rb +0 -87
- data/spec/fixtures/unit/provider/package/dnfmodule/dnf-module-list-installed.txt +0 -11
- data/spec/integration/type/notify_spec.rb +0 -46
- data/spec/unit/provider/package/dnfmodule_spec.rb +0 -186
- data/spec/unit/provider/package_targetable_spec.rb +0 -60
data/locales/puppet.pot
CHANGED
@@ -6,11 +6,11 @@
|
|
6
6
|
#, fuzzy
|
7
7
|
msgid ""
|
8
8
|
msgstr ""
|
9
|
-
"Project-Id-Version: Puppet automation framework 6.4.
|
9
|
+
"Project-Id-Version: Puppet automation framework 6.4.2-220-gcca62be\n"
|
10
10
|
"\n"
|
11
11
|
"Report-Msgid-Bugs-To: https://tickets.puppetlabs.com\n"
|
12
|
-
"POT-Creation-Date: 2019-
|
13
|
-
"PO-Revision-Date: 2019-
|
12
|
+
"POT-Creation-Date: 2019-06-05 21:33+0000\n"
|
13
|
+
"PO-Revision-Date: 2019-06-05 21:33+0000\n"
|
14
14
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
15
15
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
16
16
|
"Language: \n"
|
@@ -44,7 +44,7 @@ msgstr ""
|
|
44
44
|
msgid "Please supply a parameter to perform a Hiera lookup"
|
45
45
|
msgstr ""
|
46
46
|
|
47
|
-
#: ../lib/hiera_puppet.rb:74 ../lib/puppet/indirector/hiera.rb:
|
47
|
+
#: ../lib/hiera_puppet.rb:74 ../lib/puppet/indirector/hiera.rb:79
|
48
48
|
msgid "Config file %{hiera_config} not found, using Hiera defaults"
|
49
49
|
msgstr ""
|
50
50
|
|
@@ -57,12 +57,12 @@ msgid "The environmentpath setting cannot be empty or nil."
|
|
57
57
|
msgstr ""
|
58
58
|
|
59
59
|
#. TRANSLATORS: `message` is an already translated string of why SSL failed to initialize
|
60
|
-
#: ../lib/puppet.rb:
|
60
|
+
#: ../lib/puppet.rb:218
|
61
61
|
msgid "Failed to initialize SSL: %{message}"
|
62
62
|
msgstr ""
|
63
63
|
|
64
64
|
#. TRANSLATORS: `puppet agent -t` is a command and should not be translated
|
65
|
-
#: ../lib/puppet.rb:
|
65
|
+
#: ../lib/puppet.rb:220
|
66
66
|
msgid "Run `puppet agent -t`"
|
67
67
|
msgstr ""
|
68
68
|
|
@@ -182,19 +182,15 @@ msgstr ""
|
|
182
182
|
msgid "The puppet agent daemon"
|
183
183
|
msgstr ""
|
184
184
|
|
185
|
-
#: ../lib/puppet/application/agent.rb:
|
186
|
-
msgid "Fingerprint asked but
|
185
|
+
#: ../lib/puppet/application/agent.rb:365
|
186
|
+
msgid "Fingerprint asked but no certificate nor certificate request have yet been issued"
|
187
187
|
msgstr ""
|
188
188
|
|
189
189
|
#: ../lib/puppet/application/agent.rb:388
|
190
|
-
msgid "Failed to generate fingerprint: %{message}"
|
191
|
-
msgstr ""
|
192
|
-
|
193
|
-
#: ../lib/puppet/application/agent.rb:411
|
194
190
|
msgid "Starting Puppet client version %{version}"
|
195
191
|
msgstr ""
|
196
192
|
|
197
|
-
#: ../lib/puppet/application/agent.rb:
|
193
|
+
#: ../lib/puppet/application/agent.rb:404
|
198
194
|
msgid "The puppet agent command does not take parameters"
|
199
195
|
msgstr ""
|
200
196
|
|
@@ -240,7 +236,7 @@ msgstr ""
|
|
240
236
|
msgid "Manage certificates and requests (Disabled)"
|
241
237
|
msgstr ""
|
242
238
|
|
243
|
-
#: ../lib/puppet/application/describe.rb:
|
239
|
+
#: ../lib/puppet/application/describe.rb:181
|
244
240
|
msgid "Display help about resource types"
|
245
241
|
msgstr ""
|
246
242
|
|
@@ -264,31 +260,31 @@ msgstr ""
|
|
264
260
|
msgid "%{file} does not exist, cannot apply"
|
265
261
|
msgstr ""
|
266
262
|
|
267
|
-
#: ../lib/puppet/application/device.rb:
|
263
|
+
#: ../lib/puppet/application/device.rb:253
|
268
264
|
msgid "Target device / certificate '%{target}' not found in %{config}"
|
269
265
|
msgstr ""
|
270
266
|
|
271
|
-
#: ../lib/puppet/application/device.rb:
|
267
|
+
#: ../lib/puppet/application/device.rb:255
|
272
268
|
msgid "No device found in %{config}"
|
273
269
|
msgstr ""
|
274
270
|
|
275
|
-
#: ../lib/puppet/application/device.rb:
|
271
|
+
#: ../lib/puppet/application/device.rb:306
|
276
272
|
msgid "retrieving resource: %{resource} from %{target} at %{scheme}%{url_host}%{port}%{url_path}"
|
277
273
|
msgstr ""
|
278
274
|
|
279
|
-
#: ../lib/puppet/application/device.rb:
|
275
|
+
#: ../lib/puppet/application/device.rb:321
|
280
276
|
msgid "retrieving facts from %{target} at %{scheme}%{url_host}%{port}%{url_path}"
|
281
277
|
msgstr ""
|
282
278
|
|
283
|
-
#: ../lib/puppet/application/device.rb:
|
279
|
+
#: ../lib/puppet/application/device.rb:344
|
284
280
|
msgid "starting applying configuration to %{target} at %{scheme}%{url_host}%{port}%{url_path}"
|
285
281
|
msgstr ""
|
286
282
|
|
287
|
-
#: ../lib/puppet/application/device.rb:
|
283
|
+
#: ../lib/puppet/application/device.rb:381 ../lib/puppet/application/resource.rb:196
|
288
284
|
msgid "You must specify the type to display"
|
289
285
|
msgstr ""
|
290
286
|
|
291
|
-
#: ../lib/puppet/application/device.rb:
|
287
|
+
#: ../lib/puppet/application/device.rb:382 ../lib/puppet/application/resource.rb:197
|
292
288
|
msgid "Could not find type %{type}"
|
293
289
|
msgstr ""
|
294
290
|
|
@@ -463,51 +459,55 @@ msgstr ""
|
|
463
459
|
msgid "An action must be specified."
|
464
460
|
msgstr ""
|
465
461
|
|
466
|
-
#: ../lib/puppet/application/ssl.rb:
|
462
|
+
#: ../lib/puppet/application/ssl.rb:123 ../lib/puppet/application/ssl.rb:130
|
467
463
|
msgid "The certificate for '%{name}' has not yet been signed"
|
468
464
|
msgstr ""
|
469
465
|
|
470
|
-
#: ../lib/puppet/application/ssl.rb:
|
466
|
+
#: ../lib/puppet/application/ssl.rb:141
|
471
467
|
msgid "Completed SSL initialization"
|
472
468
|
msgstr ""
|
473
469
|
|
474
|
-
#: ../lib/puppet/application/ssl.rb:
|
470
|
+
#: ../lib/puppet/application/ssl.rb:143
|
475
471
|
msgid "Unknown action '%{action}'"
|
476
472
|
msgstr ""
|
477
473
|
|
478
|
-
#: ../lib/puppet/application/ssl.rb:
|
474
|
+
#: ../lib/puppet/application/ssl.rb:151 ../lib/puppet/ssl/state_machine.rb:156
|
475
|
+
msgid "Creating a new EC SSL key for %{name} using curve %{curve}"
|
476
|
+
msgstr ""
|
477
|
+
|
478
|
+
#: ../lib/puppet/application/ssl.rb:154 ../lib/puppet/ssl/key.rb:24
|
479
479
|
msgid "Creating a new SSL key for %{name}"
|
480
480
|
msgstr ""
|
481
481
|
|
482
|
-
#: ../lib/puppet/application/ssl.rb:
|
482
|
+
#: ../lib/puppet/application/ssl.rb:163
|
483
483
|
msgid "Submitted certificate request for '%{name}' to https://%{server}:%{port}"
|
484
484
|
msgstr ""
|
485
485
|
|
486
|
-
#: ../lib/puppet/application/ssl.rb:
|
486
|
+
#: ../lib/puppet/application/ssl.rb:168
|
487
487
|
msgid "Could not submit certificate request for '%{name}' to https://%{server}:%{port} due to a conflict on the server"
|
488
488
|
msgstr ""
|
489
489
|
|
490
|
-
#: ../lib/puppet/application/ssl.rb:
|
490
|
+
#: ../lib/puppet/application/ssl.rb:170 ../lib/puppet/application/ssl.rb:173
|
491
491
|
msgid "Failed to submit certificate request: %{message}"
|
492
492
|
msgstr ""
|
493
493
|
|
494
|
-
#: ../lib/puppet/application/ssl.rb:
|
494
|
+
#: ../lib/puppet/application/ssl.rb:179
|
495
495
|
msgid "Downloading certificate '%{name}' from https://%{server}:%{port}"
|
496
496
|
msgstr ""
|
497
497
|
|
498
|
-
#: ../lib/puppet/application/ssl.rb:
|
498
|
+
#: ../lib/puppet/application/ssl.rb:186 ../lib/puppet/application/ssl.rb:194
|
499
499
|
msgid "Downloaded certificate '%{name}' with fingerprint %{fingerprint}"
|
500
500
|
msgstr ""
|
501
501
|
|
502
|
-
#: ../lib/puppet/application/ssl.rb:
|
502
|
+
#: ../lib/puppet/application/ssl.rb:202 ../lib/puppet/application/ssl.rb:205
|
503
503
|
msgid "Failed to download certificate: %{message}"
|
504
504
|
msgstr ""
|
505
505
|
|
506
|
-
#: ../lib/puppet/application/ssl.rb:
|
506
|
+
#: ../lib/puppet/application/ssl.rb:233 ../lib/puppet/application/ssl.rb:236
|
507
507
|
msgid "Failed to connect to the CA to determine if certificate %{certname} has been cleaned"
|
508
508
|
msgstr ""
|
509
509
|
|
510
|
-
#: ../lib/puppet/application/ssl.rb:
|
510
|
+
#: ../lib/puppet/application/ssl.rb:240
|
511
511
|
msgid ""
|
512
512
|
"The certificate %{certname} must be cleaned from the CA first. To fix this,\n"
|
513
513
|
"run the following commands on the CA:\n"
|
@@ -515,7 +515,7 @@ msgid ""
|
|
515
515
|
" puppet ssl clean\n"
|
516
516
|
msgstr ""
|
517
517
|
|
518
|
-
#: ../lib/puppet/application/ssl.rb:
|
518
|
+
#: ../lib/puppet/application/ssl.rb:260
|
519
519
|
msgid "Removed %{label} %{path}"
|
520
520
|
msgstr ""
|
521
521
|
|
@@ -596,40 +596,32 @@ msgstr ""
|
|
596
596
|
msgid "Failed to apply catalog: %{detail}"
|
597
597
|
msgstr ""
|
598
598
|
|
599
|
-
#: ../lib/puppet/configurer.rb:
|
599
|
+
#: ../lib/puppet/configurer.rb:404
|
600
600
|
msgid "Puppet server %{host}:%{port} is unavailable: %{code} %{reason}"
|
601
601
|
msgstr ""
|
602
602
|
|
603
603
|
#. TRANSLATORS 'server_list' is the name of a setting and should not be translated
|
604
|
-
#: ../lib/puppet/configurer.rb:
|
604
|
+
#: ../lib/puppet/configurer.rb:408
|
605
605
|
msgid "Unable to connect to server from server_list setting: %{detail}"
|
606
606
|
msgstr ""
|
607
607
|
|
608
|
-
#: ../lib/puppet/configurer.rb:
|
608
|
+
#: ../lib/puppet/configurer.rb:420 ../lib/puppet/face/report.rb:47
|
609
609
|
msgid "Could not send report: %{detail}"
|
610
610
|
msgstr ""
|
611
611
|
|
612
|
-
#: ../lib/puppet/configurer.rb:
|
612
|
+
#: ../lib/puppet/configurer.rb:429
|
613
613
|
msgid "Could not save last run local report: %{detail}"
|
614
614
|
msgstr ""
|
615
615
|
|
616
|
-
#: ../lib/puppet/configurer.rb:
|
617
|
-
msgid "Uploading facts for %{node} to %{server}"
|
618
|
-
msgstr ""
|
619
|
-
|
620
|
-
#: ../lib/puppet/configurer.rb:468
|
621
|
-
msgid "Failed to submit facts: %{detail}"
|
622
|
-
msgstr ""
|
623
|
-
|
624
|
-
#: ../lib/puppet/configurer.rb:483
|
616
|
+
#: ../lib/puppet/configurer.rb:441
|
625
617
|
msgid "Could not run command from %{setting}: %{detail}"
|
626
618
|
msgstr ""
|
627
619
|
|
628
|
-
#: ../lib/puppet/configurer.rb:
|
620
|
+
#: ../lib/puppet/configurer.rb:459
|
629
621
|
msgid "Could not retrieve catalog from cache: %{detail}"
|
630
622
|
msgstr ""
|
631
623
|
|
632
|
-
#: ../lib/puppet/configurer.rb:
|
624
|
+
#: ../lib/puppet/configurer.rb:479
|
633
625
|
msgid "Could not retrieve catalog from remote server: %{detail}"
|
634
626
|
msgstr ""
|
635
627
|
|
@@ -702,21 +694,21 @@ msgid "Valid values are %{values}."
|
|
702
694
|
msgstr ""
|
703
695
|
|
704
696
|
#. TRANSLATORS 'data_binding_terminus' is a setting and should not be translated
|
705
|
-
#: ../lib/puppet/defaults.rb:
|
697
|
+
#: ../lib/puppet/defaults.rb:495
|
706
698
|
msgid "Setting 'data_binding_terminus' is deprecated."
|
707
699
|
msgstr ""
|
708
700
|
|
709
701
|
#. TRANSLATORS 'hiera' should not be translated
|
710
|
-
#: ../lib/puppet/defaults.rb:
|
702
|
+
#: ../lib/puppet/defaults.rb:497
|
711
703
|
msgid "Convert custom terminus to hiera 5 API."
|
712
704
|
msgstr ""
|
713
705
|
|
714
706
|
#. TRANSLATORS 'environment_data_provider' is a setting and should not be translated
|
715
|
-
#: ../lib/puppet/defaults.rb:
|
707
|
+
#: ../lib/puppet/defaults.rb:672
|
716
708
|
msgid "Setting 'environment_data_provider' is deprecated."
|
717
709
|
msgstr ""
|
718
710
|
|
719
|
-
#: ../lib/puppet/defaults.rb:
|
711
|
+
#: ../lib/puppet/defaults.rb:753
|
720
712
|
msgid "Certificate names must be lower case"
|
721
713
|
msgstr ""
|
722
714
|
|
@@ -744,6 +736,10 @@ msgstr ""
|
|
744
736
|
msgid "Compile, save, view, and convert catalogs."
|
745
737
|
msgstr ""
|
746
738
|
|
739
|
+
#: ../lib/puppet/face/catalog.rb:87
|
740
|
+
msgid "Compile a catalog."
|
741
|
+
msgstr ""
|
742
|
+
|
747
743
|
#: ../lib/puppet/face/catalog/select.rb:4
|
748
744
|
msgid "Retrieve a catalog and filter it for resources of a given type."
|
749
745
|
msgstr ""
|
@@ -786,37 +782,41 @@ msgstr ""
|
|
786
782
|
msgid "all | <setting> [<setting> ...]"
|
787
783
|
msgstr ""
|
788
784
|
|
789
|
-
#: ../lib/puppet/face/config.rb:
|
785
|
+
#: ../lib/puppet/face/config.rb:83
|
786
|
+
msgid "New environment loaders generated from the requested section."
|
787
|
+
msgstr ""
|
788
|
+
|
789
|
+
#: ../lib/puppet/face/config.rb:137
|
790
790
|
msgid "No section specified; defaulting to '%{section_name}'."
|
791
791
|
msgstr ""
|
792
792
|
|
793
793
|
#. TRANSLATORS '--section' is a command line option and should not be translated
|
794
|
-
#: ../lib/puppet/face/config.rb:
|
794
|
+
#: ../lib/puppet/face/config.rb:140
|
795
795
|
msgid "Set the config section by using the `--section` flag."
|
796
796
|
msgstr ""
|
797
797
|
|
798
798
|
#. TRANSLATORS `puppet config --section user print foo` is a command line example and should not be translated
|
799
|
-
#: ../lib/puppet/face/config.rb:
|
799
|
+
#: ../lib/puppet/face/config.rb:142
|
800
800
|
msgid "For example, `puppet config --section user print foo`."
|
801
801
|
msgstr ""
|
802
802
|
|
803
|
-
#: ../lib/puppet/face/config.rb:
|
803
|
+
#: ../lib/puppet/face/config.rb:143
|
804
804
|
msgid "For more information, see https://puppet.com/docs/puppet/latest/configuration.html"
|
805
805
|
msgstr ""
|
806
806
|
|
807
|
-
#: ../lib/puppet/face/config.rb:
|
807
|
+
#: ../lib/puppet/face/config.rb:150
|
808
808
|
msgid "Resolving settings from section '%{section_name}' in environment '%{environment_name}'"
|
809
809
|
msgstr ""
|
810
810
|
|
811
|
-
#: ../lib/puppet/face/config.rb:
|
811
|
+
#: ../lib/puppet/face/config.rb:155
|
812
812
|
msgid "Set Puppet's settings."
|
813
813
|
msgstr ""
|
814
814
|
|
815
|
-
#: ../lib/puppet/face/config.rb:
|
815
|
+
#: ../lib/puppet/face/config.rb:156
|
816
816
|
msgid "[setting_name] [setting_value]"
|
817
817
|
msgstr ""
|
818
818
|
|
819
|
-
#: ../lib/puppet/face/config.rb:
|
819
|
+
#: ../lib/puppet/face/config.rb:184
|
820
820
|
msgid ""
|
821
821
|
"The environment should be set in either the `[user]`, `[agent]`, or `[master]`\n"
|
822
822
|
"section. Variables set in the `[agent]` section are used when running\n"
|
@@ -828,25 +828,25 @@ msgid ""
|
|
828
828
|
"https://puppet.com/docs/puppet/latest/configuration.html#environment\n"
|
829
829
|
msgstr ""
|
830
830
|
|
831
|
-
#: ../lib/puppet/face/config.rb:
|
831
|
+
#: ../lib/puppet/face/config.rb:212
|
832
832
|
msgid "Delete a Puppet setting."
|
833
833
|
msgstr ""
|
834
834
|
|
835
|
-
#: ../lib/puppet/face/config.rb:
|
835
|
+
#: ../lib/puppet/face/config.rb:213
|
836
836
|
msgid "<setting>"
|
837
837
|
msgstr ""
|
838
838
|
|
839
839
|
#. TRANSLATORS 'main' is a specific section name and should not be translated
|
840
|
-
#: ../lib/puppet/face/config.rb:
|
840
|
+
#: ../lib/puppet/face/config.rb:250
|
841
841
|
msgid "Deleted setting from '%{section_name}': '%{setting_string}'"
|
842
842
|
msgstr ""
|
843
843
|
|
844
|
-
#: ../lib/puppet/face/config.rb:
|
844
|
+
#: ../lib/puppet/face/config.rb:253
|
845
845
|
msgid "No setting found in configuration file for section '%{section_name}' setting name '%{name}'"
|
846
846
|
msgstr ""
|
847
847
|
|
848
848
|
#. TRANSLATORS the 'puppet.conf' is a specific file and should not be translated
|
849
|
-
#: ../lib/puppet/face/config.rb:
|
849
|
+
#: ../lib/puppet/face/config.rb:260
|
850
850
|
msgid "The puppet.conf file does not exist %{puppet_conf}"
|
851
851
|
msgstr ""
|
852
852
|
|
@@ -888,11 +888,11 @@ msgstr ""
|
|
888
888
|
msgid "Outputs a dump of the internal template parse tree for debugging"
|
889
889
|
msgstr ""
|
890
890
|
|
891
|
-
#: ../lib/puppet/face/epp.rb:108 ../lib/puppet/face/parser.rb:
|
891
|
+
#: ../lib/puppet/face/epp.rb:108 ../lib/puppet/face/parser.rb:105
|
892
892
|
msgid "A dump of the resulting AST model unless there are syntax or validation errors."
|
893
893
|
msgstr ""
|
894
894
|
|
895
|
-
#: ../lib/puppet/face/epp.rb:137 ../lib/puppet/face/epp.rb:309 ../lib/puppet/face/parser.rb:
|
895
|
+
#: ../lib/puppet/face/epp.rb:137 ../lib/puppet/face/epp.rb:309 ../lib/puppet/face/parser.rb:126
|
896
896
|
msgid "<source>"
|
897
897
|
msgstr ""
|
898
898
|
|
@@ -904,15 +904,15 @@ msgstr ""
|
|
904
904
|
msgid "Whether or not to validate the parsed result, if no-validate only syntax errors are reported."
|
905
905
|
msgstr ""
|
906
906
|
|
907
|
-
#: ../lib/puppet/face/epp.rb:146 ../lib/puppet/face/parser.rb:
|
907
|
+
#: ../lib/puppet/face/epp.rb:146 ../lib/puppet/face/parser.rb:135
|
908
908
|
msgid "<old, pn, or json>"
|
909
909
|
msgstr ""
|
910
910
|
|
911
|
-
#: ../lib/puppet/face/epp.rb:147 ../lib/puppet/face/parser.rb:
|
911
|
+
#: ../lib/puppet/face/epp.rb:147 ../lib/puppet/face/parser.rb:136
|
912
912
|
msgid "Get result in 'old' (deprecated format), 'pn' (new format), or 'json' (new format in JSON)."
|
913
913
|
msgstr ""
|
914
914
|
|
915
|
-
#: ../lib/puppet/face/epp.rb:151 ../lib/puppet/face/parser.rb:
|
915
|
+
#: ../lib/puppet/face/epp.rb:151 ../lib/puppet/face/parser.rb:140
|
916
916
|
msgid "Pretty print output. Only applicable together with --format pn or json"
|
917
917
|
msgstr ""
|
918
918
|
|
@@ -920,7 +920,7 @@ msgstr ""
|
|
920
920
|
msgid "Whether or not to show a file name header between files."
|
921
921
|
msgstr ""
|
922
922
|
|
923
|
-
#: ../lib/puppet/face/epp.rb:179 ../lib/puppet/face/parser.rb:
|
923
|
+
#: ../lib/puppet/face/epp.rb:179 ../lib/puppet/face/parser.rb:152
|
924
924
|
msgid "No input to parse given on command line or stdin"
|
925
925
|
msgstr ""
|
926
926
|
|
@@ -1409,34 +1409,34 @@ msgstr ""
|
|
1409
1409
|
msgid "Nothing, or the first syntax error encountered."
|
1410
1410
|
msgstr ""
|
1411
1411
|
|
1412
|
-
#: ../lib/puppet/face/parser.rb:
|
1412
|
+
#: ../lib/puppet/face/parser.rb:49
|
1413
1413
|
msgid "No manifest specified. Validating the default manifest %{manifest}"
|
1414
1414
|
msgstr ""
|
1415
1415
|
|
1416
|
-
#: ../lib/puppet/face/parser.rb:
|
1416
|
+
#: ../lib/puppet/face/parser.rb:65
|
1417
1417
|
msgid ""
|
1418
1418
|
"One or more file(s) specified did not exist:\n"
|
1419
1419
|
"%{files}"
|
1420
1420
|
msgstr ""
|
1421
1421
|
|
1422
|
-
#: ../lib/puppet/face/parser.rb:
|
1422
|
+
#: ../lib/puppet/face/parser.rb:103
|
1423
1423
|
msgid "Outputs a dump of the internal parse tree for debugging"
|
1424
1424
|
msgstr ""
|
1425
1425
|
|
1426
|
-
#: ../lib/puppet/face/parser.rb:
|
1426
|
+
#: ../lib/puppet/face/parser.rb:128
|
1427
1427
|
msgid "dump one source expression given on the command line."
|
1428
1428
|
msgstr ""
|
1429
1429
|
|
1430
|
-
#: ../lib/puppet/face/parser.rb:
|
1430
|
+
#: ../lib/puppet/face/parser.rb:132
|
1431
1431
|
msgid "Whether or not to validate the parsed result, if no-validate only syntax errors are reported"
|
1432
1432
|
msgstr ""
|
1433
1433
|
|
1434
|
-
#: ../lib/puppet/face/parser.rb:
|
1434
|
+
#: ../lib/puppet/face/parser.rb:168
|
1435
1435
|
msgid ""
|
1436
1436
|
"One or more file(s) specified did not exist:\n"
|
1437
1437
|
msgstr ""
|
1438
1438
|
|
1439
|
-
#: ../lib/puppet/face/parser.rb:
|
1439
|
+
#: ../lib/puppet/face/parser.rb:214
|
1440
1440
|
msgid "For puppet parser validate"
|
1441
1441
|
msgstr ""
|
1442
1442
|
|
@@ -1455,11 +1455,11 @@ msgid ""
|
|
1455
1455
|
" the files downloaded, which will be empty if none were retrieved.\n"
|
1456
1456
|
msgstr ""
|
1457
1457
|
|
1458
|
-
#: ../lib/puppet/face/plugin.rb:
|
1458
|
+
#: ../lib/puppet/face/plugin.rb:50
|
1459
1459
|
msgid "No plugins downloaded."
|
1460
1460
|
msgstr ""
|
1461
1461
|
|
1462
|
-
#: ../lib/puppet/face/plugin.rb:
|
1462
|
+
#: ../lib/puppet/face/plugin.rb:52
|
1463
1463
|
msgid "Downloaded these plugins: %{plugins}"
|
1464
1464
|
msgstr ""
|
1465
1465
|
|
@@ -1753,11 +1753,19 @@ msgstr ""
|
|
1753
1753
|
msgid "FileSystem implementation expected Pathname, got: '%{klass}'"
|
1754
1754
|
msgstr ""
|
1755
1755
|
|
1756
|
-
#: ../lib/puppet/file_system/file_impl.rb:
|
1756
|
+
#: ../lib/puppet/file_system/file_impl.rb:57
|
1757
|
+
msgid "Locked '%{path}'"
|
1758
|
+
msgstr ""
|
1759
|
+
|
1760
|
+
#: ../lib/puppet/file_system/file_impl.rb:60
|
1761
|
+
msgid "Unlocked '%{path}'"
|
1762
|
+
msgstr ""
|
1763
|
+
|
1764
|
+
#: ../lib/puppet/file_system/file_impl.rb:67
|
1757
1765
|
msgid "Timeout waiting for exclusive lock on %{path}"
|
1758
1766
|
msgstr ""
|
1759
1767
|
|
1760
|
-
#: ../lib/puppet/file_system/jruby.rb:18 ../lib/puppet/file_system/windows.rb:126 ../lib/puppet/util.rb:
|
1768
|
+
#: ../lib/puppet/file_system/jruby.rb:18 ../lib/puppet/file_system/windows.rb:126 ../lib/puppet/util.rb:655
|
1761
1769
|
msgid "Is a directory: %{directory}"
|
1762
1770
|
msgstr ""
|
1763
1771
|
|
@@ -1954,13 +1962,13 @@ msgid ""
|
|
1954
1962
|
"Parsing of type string '\"%{type_string}\"' failed with message: <%{message}>.\n"
|
1955
1963
|
msgstr ""
|
1956
1964
|
|
1957
|
-
#: ../lib/puppet/functions.rb:
|
1965
|
+
#: ../lib/puppet/functions.rb:635
|
1958
1966
|
msgid ""
|
1959
1967
|
"Parsing of 'type \"%{assignment_string}\"' failed with message: <%{message}>.\n"
|
1960
1968
|
"Called from <%{ruby_file_location}>"
|
1961
1969
|
msgstr ""
|
1962
1970
|
|
1963
|
-
#: ../lib/puppet/functions.rb:
|
1971
|
+
#: ../lib/puppet/functions.rb:644
|
1964
1972
|
msgid ""
|
1965
1973
|
"Expected a type alias assignment on the form 'AliasType = T', got '%{assignment_string}'.\n"
|
1966
1974
|
"Called from <%{ruby_file_location}>"
|
@@ -2172,11 +2180,11 @@ msgid "Got an event from invalid vertex %{source}"
|
|
2172
2180
|
msgstr ""
|
2173
2181
|
|
2174
2182
|
#. TRANSLATORS "negative or zero" refers to the count of paths
|
2175
|
-
#: ../lib/puppet/graph/simple_graph.rb:
|
2183
|
+
#: ../lib/puppet/graph/simple_graph.rb:199
|
2176
2184
|
msgid "negative or zero max_paths"
|
2177
2185
|
msgstr ""
|
2178
2186
|
|
2179
|
-
#: ../lib/puppet/graph/simple_graph.rb:
|
2187
|
+
#: ../lib/puppet/graph/simple_graph.rb:231
|
2180
2188
|
msgid ""
|
2181
2189
|
"Found %{num} dependency cycle:\n"
|
2182
2190
|
msgid_plural ""
|
@@ -2184,12 +2192,12 @@ msgid_plural ""
|
|
2184
2192
|
msgstr[0] ""
|
2185
2193
|
msgstr[1] ""
|
2186
2194
|
|
2187
|
-
#: ../lib/puppet/graph/simple_graph.rb:
|
2195
|
+
#: ../lib/puppet/graph/simple_graph.rb:240
|
2188
2196
|
msgid "Cycle graph written to %{filename}."
|
2189
2197
|
msgstr ""
|
2190
2198
|
|
2191
2199
|
#. TRANSLATORS '--graph' refers to a command line option and OmniGraffle and GraphViz are program names and should not be translated
|
2192
|
-
#: ../lib/puppet/graph/simple_graph.rb:
|
2200
|
+
#: ../lib/puppet/graph/simple_graph.rb:243
|
2193
2201
|
msgid "Try the '--graph' option and opening the resulting '.dot' file in OmniGraffle or GraphViz"
|
2194
2202
|
msgstr ""
|
2195
2203
|
|
@@ -2322,12 +2330,8 @@ msgstr ""
|
|
2322
2330
|
msgid "Could not find node '%{name}'; cannot compile"
|
2323
2331
|
msgstr ""
|
2324
2332
|
|
2325
|
-
#: ../lib/puppet/indirector/catalog/compiler.rb:
|
2326
|
-
msgid "Could not retrieve fact
|
2327
|
-
msgstr ""
|
2328
|
-
|
2329
|
-
#: ../lib/puppet/indirector/catalog/compiler.rb:419
|
2330
|
-
msgid "Could not retrieve either serverip or serverip6 fact"
|
2333
|
+
#: ../lib/puppet/indirector/catalog/compiler.rb:403
|
2334
|
+
msgid "Could not retrieve fact %{fact}"
|
2331
2335
|
msgstr ""
|
2332
2336
|
|
2333
2337
|
#: ../lib/puppet/indirector/catalog/json.rb:13
|
@@ -2696,7 +2700,7 @@ msgstr ""
|
|
2696
2700
|
msgid "Could not understand URL %{key}: %{detail}"
|
2697
2701
|
msgstr ""
|
2698
2702
|
|
2699
|
-
#: ../lib/puppet/indirector/resource/ral.rb:
|
2703
|
+
#: ../lib/puppet/indirector/resource/ral.rb:61
|
2700
2704
|
msgid "Could not find type %{request_type}"
|
2701
2705
|
msgstr ""
|
2702
2706
|
|
@@ -3091,7 +3095,7 @@ msgid ""
|
|
3091
3095
|
" A namespaced module name (ex. author-modulename) matching the expression /^[a-zA-Z0-9]+[-][a-z][a-z0-9_]*$/\n"
|
3092
3096
|
msgstr ""
|
3093
3097
|
|
3094
|
-
#: ../lib/puppet/module/task.rb:24 ../lib/puppet/module/task.rb:
|
3098
|
+
#: ../lib/puppet/module/task.rb:24 ../lib/puppet/module/task.rb:203
|
3095
3099
|
msgid "Task names must start with a lowercase letter and be composed of only lowercase letters, numbers, and underscores"
|
3096
3100
|
msgstr ""
|
3097
3101
|
|
@@ -3099,55 +3103,47 @@ msgstr ""
|
|
3099
3103
|
msgid "Task %{task_name} not found in module %{module_name}."
|
3100
3104
|
msgstr ""
|
3101
3105
|
|
3102
|
-
#: ../lib/puppet/module/task.rb:
|
3103
|
-
msgid "The 'files' task metadata expects an array, got %{files}."
|
3104
|
-
msgstr ""
|
3105
|
-
|
3106
|
-
#: ../lib/puppet/module/task.rb:103
|
3106
|
+
#: ../lib/puppet/module/task.rb:91
|
3107
3107
|
msgid "Could not find module %{module_name} containing task file %{filename}"
|
3108
3108
|
msgstr ""
|
3109
3109
|
|
3110
|
-
#: ../lib/puppet/module/task.rb:
|
3110
|
+
#: ../lib/puppet/module/task.rb:97
|
3111
3111
|
msgid "Files must be saved in module directories that Puppet makes available via mount points: %{mounts}"
|
3112
3112
|
msgstr ""
|
3113
3113
|
|
3114
|
-
#: ../lib/puppet/module/task.rb:
|
3114
|
+
#: ../lib/puppet/module/task.rb:104
|
3115
3115
|
msgid "File pathnames cannot include relative paths"
|
3116
3116
|
msgstr ""
|
3117
3117
|
|
3118
|
-
#: ../lib/puppet/module/task.rb:
|
3118
|
+
#: ../lib/puppet/module/task.rb:109
|
3119
3119
|
msgid "Could not find %{path} on disk"
|
3120
3120
|
msgstr ""
|
3121
3121
|
|
3122
|
-
#: ../lib/puppet/module/task.rb:
|
3122
|
+
#: ../lib/puppet/module/task.rb:116
|
3123
3123
|
msgid "Directories specified in task metadata must include a trailing slash: %{dir}"
|
3124
3124
|
msgstr ""
|
3125
3125
|
|
3126
|
-
#: ../lib/puppet/module/task.rb:
|
3126
|
+
#: ../lib/puppet/module/task.rb:123
|
3127
3127
|
msgid "Files specified in task metadata cannot include a trailing slash: %{file}"
|
3128
3128
|
msgstr ""
|
3129
3129
|
|
3130
|
-
#: ../lib/puppet/module/task.rb:
|
3130
|
+
#: ../lib/puppet/module/task.rb:140
|
3131
3131
|
msgid "Task metadata for task %{name} does not specify implementations as an array"
|
3132
3132
|
msgstr ""
|
3133
3133
|
|
3134
|
-
#: ../lib/puppet/module/task.rb:
|
3135
|
-
msgid "Task metadata for task %{name} does not specify requirements as an array"
|
3136
|
-
msgstr ""
|
3137
|
-
|
3138
|
-
#: ../lib/puppet/module/task.rb:163
|
3134
|
+
#: ../lib/puppet/module/task.rb:147
|
3139
3135
|
msgid "Task metadata for task %{name} specifies missing implementation %{implementation}"
|
3140
3136
|
msgstr ""
|
3141
3137
|
|
3142
|
-
#: ../lib/puppet/module/task.rb:
|
3138
|
+
#: ../lib/puppet/module/task.rb:159
|
3143
3139
|
msgid "No source besides task metadata was found in directory %{directory} for task %{name}"
|
3144
3140
|
msgstr ""
|
3145
3141
|
|
3146
|
-
#: ../lib/puppet/module/task.rb:
|
3142
|
+
#: ../lib/puppet/module/task.rb:163
|
3147
3143
|
msgid "Multiple executables were found in directory %{directory} for task %{name}; define 'implementations' in metadata to differentiate between them"
|
3148
3144
|
msgstr ""
|
3149
3145
|
|
3150
|
-
#: ../lib/puppet/module/task.rb:
|
3146
|
+
#: ../lib/puppet/module/task.rb:217
|
3151
3147
|
msgid "Error reading metadata: %{message}"
|
3152
3148
|
msgstr ""
|
3153
3149
|
|
@@ -3762,45 +3758,45 @@ msgstr ""
|
|
3762
3758
|
msgid "No request key specified in %{uri}"
|
3763
3759
|
msgstr ""
|
3764
3760
|
|
3765
|
-
#: ../lib/puppet/network/http/api/indirected_routes.rb:
|
3761
|
+
#: ../lib/puppet/network/http/api/indirected_routes.rb:128
|
3766
3762
|
msgid "Could not find %{value0} %{key}"
|
3767
3763
|
msgstr ""
|
3768
3764
|
|
3769
|
-
#: ../lib/puppet/network/http/api/indirected_routes.rb:
|
3765
|
+
#: ../lib/puppet/network/http/api/indirected_routes.rb:135
|
3770
3766
|
msgid "Rendered result in %{format}"
|
3771
3767
|
msgstr ""
|
3772
3768
|
|
3773
|
-
#: ../lib/puppet/network/http/api/indirected_routes.rb:
|
3769
|
+
#: ../lib/puppet/network/http/api/indirected_routes.rb:141
|
3774
3770
|
msgid "Sent response"
|
3775
3771
|
msgstr ""
|
3776
3772
|
|
3777
|
-
#: ../lib/puppet/network/http/api/indirected_routes.rb:
|
3773
|
+
#: ../lib/puppet/network/http/api/indirected_routes.rb:149
|
3778
3774
|
msgid "Could not find %{indirection} %{key}"
|
3779
3775
|
msgstr ""
|
3780
3776
|
|
3781
|
-
#: ../lib/puppet/network/http/api/indirected_routes.rb:
|
3777
|
+
#: ../lib/puppet/network/http/api/indirected_routes.rb:161
|
3782
3778
|
msgid "Could not find instances in %{indirection} with '%{key}'"
|
3783
3779
|
msgstr ""
|
3784
3780
|
|
3785
|
-
#: ../lib/puppet/network/http/api/indirected_routes.rb:
|
3781
|
+
#: ../lib/puppet/network/http/api/indirected_routes.rb:209 ../lib/puppet/network/http/request.rb:60
|
3786
3782
|
msgid "No supported formats are acceptable (Accept: %{accepted_formats})"
|
3787
3783
|
msgstr ""
|
3788
3784
|
|
3789
|
-
#: ../lib/puppet/network/http/api/indirected_routes.rb:
|
3785
|
+
#: ../lib/puppet/network/http/api/indirected_routes.rb:234
|
3790
3786
|
msgid "The request body is invalid: %{message}"
|
3791
3787
|
msgstr ""
|
3792
3788
|
|
3793
3789
|
#. TRANSLATORS "mime-type" is a keyword and should not be translated
|
3794
3790
|
#. TRANSLATORS "mime-type" is a keyword and should not be translated
|
3795
|
-
#: ../lib/puppet/network/http/api/indirected_routes.rb:
|
3791
|
+
#: ../lib/puppet/network/http/api/indirected_routes.rb:240 ../lib/puppet/network/http/request.rb:31
|
3796
3792
|
msgid "Client sent a mime-type (%{header}) that doesn't correspond to a format we support"
|
3797
3793
|
msgstr ""
|
3798
3794
|
|
3799
|
-
#: ../lib/puppet/network/http/api/indirected_routes.rb:
|
3795
|
+
#: ../lib/puppet/network/http/api/indirected_routes.rb:246
|
3800
3796
|
msgid "No support for http method %{http_method}"
|
3801
3797
|
msgstr ""
|
3802
3798
|
|
3803
|
-
#: ../lib/puppet/network/http/api/indirected_routes.rb:
|
3799
|
+
#: ../lib/puppet/network/http/api/indirected_routes.rb:250
|
3804
3800
|
msgid "No support for plurality %{indirection} for %{http_method} operations"
|
3805
3801
|
msgstr ""
|
3806
3802
|
|
@@ -3854,15 +3850,15 @@ msgstr ""
|
|
3854
3850
|
msgid "Received a %{status_code} response from %{server_hostname}. Sleeping for %{retry_sleep} seconds before retrying the request."
|
3855
3851
|
msgstr ""
|
3856
3852
|
|
3857
|
-
#: ../lib/puppet/network/http/connection.rb:
|
3853
|
+
#: ../lib/puppet/network/http/connection.rb:332
|
3858
3854
|
msgid "request %{uri} interrupted after %{elapsed} seconds"
|
3859
3855
|
msgstr ""
|
3860
3856
|
|
3861
|
-
#: ../lib/puppet/network/http/connection.rb:
|
3857
|
+
#: ../lib/puppet/network/http/connection.rb:334
|
3862
3858
|
msgid "request %{uri} timed out after %{elapsed} seconds"
|
3863
3859
|
msgstr ""
|
3864
3860
|
|
3865
|
-
#: ../lib/puppet/network/http/connection.rb:
|
3861
|
+
#: ../lib/puppet/network/http/connection.rb:336
|
3866
3862
|
msgid "request %{uri} failed: %{msg}"
|
3867
3863
|
msgstr ""
|
3868
3864
|
|
@@ -3988,7 +3984,7 @@ msgstr ""
|
|
3988
3984
|
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."
|
3989
3985
|
msgstr ""
|
3990
3986
|
|
3991
|
-
#: ../lib/puppet/node/environment.rb:
|
3987
|
+
#: ../lib/puppet/node/environment.rb:553 ../lib/puppet/pops/loaders.rb:298
|
3992
3988
|
msgid "Could not parse for environment %{env}: %{detail}"
|
3993
3989
|
msgstr ""
|
3994
3990
|
|
@@ -4582,79 +4578,79 @@ msgstr ""
|
|
4582
4578
|
msgid "class %{classname} has not been evaluated"
|
4583
4579
|
msgstr ""
|
4584
4580
|
|
4585
|
-
#: ../lib/puppet/parser/scope.rb:
|
4581
|
+
#: ../lib/puppet/parser/scope.rb:701
|
4586
4582
|
msgid "Default already defined for %{type} { %{param} }; cannot redefine"
|
4587
4583
|
msgstr ""
|
4588
4584
|
|
4589
|
-
#: ../lib/puppet/parser/scope.rb:
|
4585
|
+
#: ../lib/puppet/parser/scope.rb:761
|
4590
4586
|
msgid "Cannot assign to a numeric match result variable '$%{name}'"
|
4591
4587
|
msgstr ""
|
4592
4588
|
|
4593
|
-
#: ../lib/puppet/parser/scope.rb:
|
4589
|
+
#: ../lib/puppet/parser/scope.rb:764
|
4594
4590
|
msgid "Scope variable name %{name} is a %{class_type}, not a string"
|
4595
4591
|
msgstr ""
|
4596
4592
|
|
4597
|
-
#: ../lib/puppet/parser/scope.rb:
|
4593
|
+
#: ../lib/puppet/parser/scope.rb:769 ../lib/puppet/parser/scope.rb:774
|
4598
4594
|
msgid "Attempt to assign to a reserved variable name: '%{name}'"
|
4599
4595
|
msgstr ""
|
4600
4596
|
|
4601
|
-
#: ../lib/puppet/parser/scope.rb:
|
4597
|
+
#: ../lib/puppet/parser/scope.rb:779
|
4602
4598
|
msgid "Cannot reassign variable '$%{name}'"
|
4603
4599
|
msgstr ""
|
4604
4600
|
|
4605
|
-
#: ../lib/puppet/parser/scope.rb:
|
4601
|
+
#: ../lib/puppet/parser/scope.rb:833
|
4606
4602
|
msgid "Unsupported data type: '%{klass}'"
|
4607
4603
|
msgstr ""
|
4608
4604
|
|
4609
|
-
#: ../lib/puppet/parser/scope.rb:
|
4605
|
+
#: ../lib/puppet/parser/scope.rb:1009
|
4610
4606
|
msgid "Invalid regex match data. Got a %{klass}"
|
4611
4607
|
msgstr ""
|
4612
4608
|
|
4613
|
-
#: ../lib/puppet/parser/scope.rb:
|
4609
|
+
#: ../lib/puppet/parser/scope.rb:1017
|
4614
4610
|
msgid "Scope#find_resource_type() is no longer supported, use Puppet::Pops::Evaluator::Runtime3ResourceSupport instead"
|
4615
4611
|
msgstr ""
|
4616
4612
|
|
4617
|
-
#: ../lib/puppet/parser/scope.rb:
|
4613
|
+
#: ../lib/puppet/parser/scope.rb:1022
|
4618
4614
|
msgid "Scope#find_builtin_resource_type() is no longer supported, use Puppet::Pops::Evaluator::Runtime3ResourceSupport instead"
|
4619
4615
|
msgstr ""
|
4620
4616
|
|
4621
|
-
#: ../lib/puppet/parser/scope.rb:
|
4617
|
+
#: ../lib/puppet/parser/scope.rb:1027
|
4622
4618
|
msgid "Scope#find_defined_resource_type() is no longer supported, use Puppet::Pops::Evaluator::Runtime3ResourceSupport instead"
|
4623
4619
|
msgstr ""
|
4624
4620
|
|
4625
|
-
#: ../lib/puppet/parser/scope.rb:
|
4621
|
+
#: ../lib/puppet/parser/scope.rb:1041
|
4626
4622
|
msgid "Function %{name} not defined despite being loaded!"
|
4627
4623
|
msgstr ""
|
4628
4624
|
|
4629
|
-
#: ../lib/puppet/parser/scope.rb:
|
4625
|
+
#: ../lib/puppet/parser/scope.rb:1048
|
4630
4626
|
msgid "Scope#resolve_type_and_title() is no longer supported, use Puppet::Pops::Evaluator::Runtime3ResourceSupport instead"
|
4631
4627
|
msgstr ""
|
4632
4628
|
|
4633
|
-
#: ../lib/puppet/parser/scope.rb:
|
4629
|
+
#: ../lib/puppet/parser/scope.rb:1068
|
4634
4630
|
msgid "Cannot use undef as a class name"
|
4635
4631
|
msgstr ""
|
4636
4632
|
|
4637
|
-
#: ../lib/puppet/parser/scope.rb:
|
4633
|
+
#: ../lib/puppet/parser/scope.rb:1070
|
4638
4634
|
msgid "Cannot use empty string as a class name"
|
4639
4635
|
msgstr ""
|
4640
4636
|
|
4641
4637
|
#. TRANSLATORS "Class" and "Type" are Puppet keywords and should not be translated
|
4642
|
-
#: ../lib/puppet/parser/scope.rb:
|
4638
|
+
#: ../lib/puppet/parser/scope.rb:1079
|
4643
4639
|
msgid "Cannot use an unspecific Class[] Type"
|
4644
4640
|
msgstr ""
|
4645
4641
|
|
4646
4642
|
#. TRANSLATORS "Resource" is a class name and should not be translated
|
4647
|
-
#: ../lib/puppet/parser/scope.rb:
|
4643
|
+
#: ../lib/puppet/parser/scope.rb:1106
|
4648
4644
|
msgid "Cannot use an unspecific Resource[] where a Resource['class', name] is expected"
|
4649
4645
|
msgstr ""
|
4650
4646
|
|
4651
4647
|
#. TRANSLATORS "Resource" is a class name and should not be translated
|
4652
|
-
#: ../lib/puppet/parser/scope.rb:
|
4648
|
+
#: ../lib/puppet/parser/scope.rb:1110
|
4653
4649
|
msgid "Cannot use a Resource[%{type_name}] where a Resource['class', name] is expected"
|
4654
4650
|
msgstr ""
|
4655
4651
|
|
4656
4652
|
#. TRANSLATORS "Resource" is a class name and should not be translated
|
4657
|
-
#: ../lib/puppet/parser/scope.rb:
|
4653
|
+
#: ../lib/puppet/parser/scope.rb:1114
|
4658
4654
|
msgid "Cannot use an unspecific Resource['class'] where a Resource['class', name] is expected"
|
4659
4655
|
msgstr ""
|
4660
4656
|
|
@@ -5699,23 +5695,19 @@ msgid "The code loaded from %{source_ref} does not seem to be a Puppet 3x API fu
|
|
5699
5695
|
msgstr ""
|
5700
5696
|
|
5701
5697
|
#. TRANSLATORS - the word 'newfunction' should not be translated as it is a method name.
|
5702
|
-
#: ../lib/puppet/pops/loader/ruby_legacy_function_instantiator.rb:
|
5698
|
+
#: ../lib/puppet/pops/loader/ruby_legacy_function_instantiator.rb:47
|
5703
5699
|
msgid "Illegal legacy function definition! The code loaded from %{source_ref} did not return the result of calling 'newfunction'. Got '%{klass}'"
|
5704
5700
|
msgstr ""
|
5705
5701
|
|
5706
|
-
#: ../lib/puppet/pops/loader/ruby_legacy_function_instantiator.rb:
|
5702
|
+
#: ../lib/puppet/pops/loader/ruby_legacy_function_instantiator.rb:50
|
5707
5703
|
msgid "The code loaded from %{source_ref} produced mis-matched name, expected 'function_%{type_name}', got '%{created_name}'"
|
5708
5704
|
msgstr ""
|
5709
5705
|
|
5710
|
-
#: ../lib/puppet/pops/loader/ruby_legacy_function_instantiator.rb:
|
5706
|
+
#: ../lib/puppet/pops/loader/ruby_legacy_function_instantiator.rb:94
|
5711
5707
|
msgid "Illegal method definition of method '%{method_name}' on line %{line}' in legacy function. See %{url} for more information"
|
5712
5708
|
msgstr ""
|
5713
5709
|
|
5714
|
-
#: ../lib/puppet/pops/loader/task_instantiator.rb:
|
5715
|
-
msgid "Failed to load metadata for task %{name}: 'parameters' must be a hash"
|
5716
|
-
msgstr ""
|
5717
|
-
|
5718
|
-
#: ../lib/puppet/pops/loader/task_instantiator.rb:31
|
5710
|
+
#: ../lib/puppet/pops/loader/task_instantiator.rb:27
|
5719
5711
|
msgid "Failed to load metadata for task %{name}: %{reason}"
|
5720
5712
|
msgstr ""
|
5721
5713
|
|
@@ -5786,11 +5778,11 @@ msgstr ""
|
|
5786
5778
|
msgid "Hiera configuration recreated due to change of scope variables used in interpolation expressions"
|
5787
5779
|
msgstr ""
|
5788
5780
|
|
5789
|
-
#: ../lib/puppet/pops/lookup/hiera_config.rb:
|
5781
|
+
#: ../lib/puppet/pops/lookup/hiera_config.rb:427
|
5790
5782
|
msgid "%{config_path}: Use of 'hiera.yaml' version 3 is deprecated. It should be converted to version 5"
|
5791
5783
|
msgstr ""
|
5792
5784
|
|
5793
|
-
#: ../lib/puppet/pops/lookup/hiera_config.rb:
|
5785
|
+
#: ../lib/puppet/pops/lookup/hiera_config.rb:527
|
5794
5786
|
msgid "%{config_path}: Use of 'hiera.yaml' version 4 is deprecated. It should be converted to version 5"
|
5795
5787
|
msgstr ""
|
5796
5788
|
|
@@ -5926,39 +5918,39 @@ msgstr ""
|
|
5926
5918
|
msgid "illegal comma separated argument list"
|
5927
5919
|
msgstr ""
|
5928
5920
|
|
5929
|
-
#: ../lib/puppet/pops/parser/pn_parser.rb:
|
5921
|
+
#: ../lib/puppet/pops/parser/pn_parser.rb:64
|
5930
5922
|
msgid "unexpected end of input"
|
5931
5923
|
msgstr ""
|
5932
5924
|
|
5933
|
-
#: ../lib/puppet/pops/parser/pn_parser.rb:
|
5925
|
+
#: ../lib/puppet/pops/parser/pn_parser.rb:66
|
5934
5926
|
msgid "unexpected %{value}"
|
5935
5927
|
msgstr ""
|
5936
5928
|
|
5937
|
-
#: ../lib/puppet/pops/parser/pn_parser.rb:
|
5929
|
+
#: ../lib/puppet/pops/parser/pn_parser.rb:103
|
5938
5930
|
msgid "map key expected"
|
5939
5931
|
msgstr ""
|
5940
5932
|
|
5941
|
-
#: ../lib/puppet/pops/parser/pn_parser.rb:
|
5933
|
+
#: ../lib/puppet/pops/parser/pn_parser.rb:114
|
5942
5934
|
msgid "expected identifier to follow '('"
|
5943
5935
|
msgstr ""
|
5944
5936
|
|
5945
|
-
#: ../lib/puppet/pops/parser/pn_parser.rb:
|
5937
|
+
#: ../lib/puppet/pops/parser/pn_parser.rb:125
|
5946
5938
|
msgid "missing '%{token}' to end list"
|
5947
5939
|
msgstr ""
|
5948
5940
|
|
5949
|
-
#: ../lib/puppet/pops/parser/pn_parser.rb:
|
5941
|
+
#: ../lib/puppet/pops/parser/pn_parser.rb:186
|
5950
5942
|
msgid "expected identifier after ':'"
|
5951
5943
|
msgstr ""
|
5952
5944
|
|
5953
|
-
#: ../lib/puppet/pops/parser/pn_parser.rb:
|
5945
|
+
#: ../lib/puppet/pops/parser/pn_parser.rb:225
|
5954
5946
|
msgid "unterminated quote"
|
5955
5947
|
msgstr ""
|
5956
5948
|
|
5957
|
-
#: ../lib/puppet/pops/parser/pn_parser.rb:
|
5949
|
+
#: ../lib/puppet/pops/parser/pn_parser.rb:251
|
5958
5950
|
msgid "malformed octal quote"
|
5959
5951
|
msgstr ""
|
5960
5952
|
|
5961
|
-
#: ../lib/puppet/pops/parser/pn_parser.rb:
|
5953
|
+
#: ../lib/puppet/pops/parser/pn_parser.rb:266 ../lib/puppet/pops/parser/pn_parser.rb:271 ../lib/puppet/pops/parser/pn_parser.rb:275
|
5962
5954
|
msgid "digit expected"
|
5963
5955
|
msgstr ""
|
5964
5956
|
|
@@ -6280,27 +6272,27 @@ msgstr ""
|
|
6280
6272
|
msgid "Method PStringType#values is deprecated. Use #value instead"
|
6281
6273
|
msgstr ""
|
6282
6274
|
|
6283
|
-
#: ../lib/puppet/pops/types/types.rb:
|
6275
|
+
#: ../lib/puppet/pops/types/types.rb:1895
|
6284
6276
|
msgid "The string '%{str}' cannot be converted to Boolean"
|
6285
6277
|
msgstr ""
|
6286
6278
|
|
6287
|
-
#: ../lib/puppet/pops/types/types.rb:
|
6279
|
+
#: ../lib/puppet/pops/types/types.rb:1898
|
6288
6280
|
msgid "Value of type %{type} cannot be converted to Boolean"
|
6289
6281
|
msgstr ""
|
6290
6282
|
|
6291
|
-
#: ../lib/puppet/pops/types/types.rb:
|
6283
|
+
#: ../lib/puppet/pops/types/types.rb:2626
|
6292
6284
|
msgid "Value of type %{type} cannot be converted to Array"
|
6293
6285
|
msgstr ""
|
6294
6286
|
|
6295
|
-
#: ../lib/puppet/pops/types/types.rb:
|
6287
|
+
#: ../lib/puppet/pops/types/types.rb:2696
|
6296
6288
|
msgid "Puppet::Pops::Types::PHashType#element_type is deprecated, use #value_type instead"
|
6297
6289
|
msgstr ""
|
6298
6290
|
|
6299
|
-
#: ../lib/puppet/pops/types/types.rb:
|
6291
|
+
#: ../lib/puppet/pops/types/types.rb:2833
|
6300
6292
|
msgid "odd number of arguments for Hash"
|
6301
6293
|
msgstr ""
|
6302
6294
|
|
6303
|
-
#: ../lib/puppet/pops/types/types.rb:
|
6295
|
+
#: ../lib/puppet/pops/types/types.rb:2844
|
6304
6296
|
msgid "Value of type %{type} cannot be converted to Hash"
|
6305
6297
|
msgstr ""
|
6306
6298
|
|
@@ -6415,11 +6407,11 @@ msgstr ""
|
|
6415
6407
|
msgid "aix.object_info(): Could not find %{resource}[%{name}]"
|
6416
6408
|
msgstr ""
|
6417
6409
|
|
6418
|
-
#: ../lib/puppet/provider/aix_object.rb:469 ../lib/puppet/provider/nameservice.rb:
|
6410
|
+
#: ../lib/puppet/provider/aix_object.rb:469 ../lib/puppet/provider/nameservice.rb:180 ../lib/puppet/provider/nameservice/directoryservice.rb:421
|
6419
6411
|
msgid "Could not create %{resource} %{name}: %{detail}"
|
6420
6412
|
msgstr ""
|
6421
6413
|
|
6422
|
-
#: ../lib/puppet/provider/aix_object.rb:481 ../lib/puppet/provider/nameservice.rb:
|
6414
|
+
#: ../lib/puppet/provider/aix_object.rb:481 ../lib/puppet/provider/nameservice.rb:194
|
6423
6415
|
msgid "Could not delete %{resource} %{name}: %{detail}"
|
6424
6416
|
msgstr ""
|
6425
6417
|
|
@@ -6439,8 +6431,8 @@ msgstr ""
|
|
6439
6431
|
msgid "Empty environment setting '%{var}'"
|
6440
6432
|
msgstr ""
|
6441
6433
|
|
6442
|
-
#: ../lib/puppet/provider/exec.rb:
|
6443
|
-
msgid "'%{
|
6434
|
+
#: ../lib/puppet/provider/exec.rb:96
|
6435
|
+
msgid "'%{command}' is not qualified and no path was specified. Please qualify the command or specify a path."
|
6444
6436
|
msgstr ""
|
6445
6437
|
|
6446
6438
|
#: ../lib/puppet/provider/exec/posix.rb:21 ../lib/puppet/provider/exec/posix.rb:38 ../lib/puppet/provider/exec/windows.rb:40 ../lib/puppet/provider/exec/windows.rb:53
|
@@ -6455,23 +6447,23 @@ msgstr ""
|
|
6455
6447
|
msgid "'%{exe}' is not executable"
|
6456
6448
|
msgstr ""
|
6457
6449
|
|
6458
|
-
#: ../lib/puppet/provider/file/posix.rb:
|
6450
|
+
#: ../lib/puppet/provider/file/posix.rb:66
|
6459
6451
|
msgid "Apparently using negative UID (%{currentvalue}) on a platform that does not consistently handle them"
|
6460
6452
|
msgstr ""
|
6461
6453
|
|
6462
|
-
#: ../lib/puppet/provider/file/posix.rb:
|
6454
|
+
#: ../lib/puppet/provider/file/posix.rb:84 ../lib/puppet/provider/file/windows.rb:46
|
6463
6455
|
msgid "Failed to set owner to '%{should}': %{detail}"
|
6464
6456
|
msgstr ""
|
6465
6457
|
|
6466
|
-
#: ../lib/puppet/provider/file/posix.rb:
|
6458
|
+
#: ../lib/puppet/provider/file/posix.rb:97
|
6467
6459
|
msgid "Apparently using negative GID (%{currentvalue}) on a platform that does not consistently handle them"
|
6468
6460
|
msgstr ""
|
6469
6461
|
|
6470
|
-
#: ../lib/puppet/provider/file/posix.rb:
|
6462
|
+
#: ../lib/puppet/provider/file/posix.rb:115 ../lib/puppet/provider/file/windows.rb:59
|
6471
6463
|
msgid "Failed to set group to '%{should}': %{detail}"
|
6472
6464
|
msgstr ""
|
6473
6465
|
|
6474
|
-
#: ../lib/puppet/provider/file/posix.rb:
|
6466
|
+
#: ../lib/puppet/provider/file/posix.rb:131 ../lib/puppet/provider/file/windows.rb:78
|
6475
6467
|
msgid "failed to set mode %{mode} on %{path}: %{message}"
|
6476
6468
|
msgstr ""
|
6477
6469
|
|
@@ -6525,15 +6517,15 @@ msgstr ""
|
|
6525
6517
|
msgid "already exists"
|
6526
6518
|
msgstr ""
|
6527
6519
|
|
6528
|
-
#: ../lib/puppet/provider/nameservice.rb:
|
6520
|
+
#: ../lib/puppet/provider/nameservice.rb:186
|
6529
6521
|
msgid "already absent"
|
6530
6522
|
msgstr ""
|
6531
6523
|
|
6532
|
-
#: ../lib/puppet/provider/nameservice.rb:
|
6524
|
+
#: ../lib/puppet/provider/nameservice.rb:278
|
6533
6525
|
msgid "Nameservice command must be an array"
|
6534
6526
|
msgstr ""
|
6535
6527
|
|
6536
|
-
#: ../lib/puppet/provider/nameservice.rb:
|
6528
|
+
#: ../lib/puppet/provider/nameservice.rb:282 ../lib/puppet/provider/nameservice/directoryservice.rb:337 ../lib/puppet/provider/nameservice/directoryservice.rb:366
|
6537
6529
|
msgid "Could not set %{param} on %{resource}[%{name}]: %{detail}"
|
6538
6530
|
msgstr ""
|
6539
6531
|
|
@@ -6595,7 +6587,7 @@ msgstr ""
|
|
6595
6587
|
msgid "Could not list installed Packages: %{detail}"
|
6596
6588
|
msgstr ""
|
6597
6589
|
|
6598
|
-
#: ../lib/puppet/provider/package/aix.rb:139 ../lib/puppet/provider/package/yum.rb:
|
6590
|
+
#: ../lib/puppet/provider/package/aix.rb:139 ../lib/puppet/provider/package/yum.rb:248
|
6599
6591
|
msgid "Tried to get latest on a missing package"
|
6600
6592
|
msgstr ""
|
6601
6593
|
|
@@ -6611,23 +6603,23 @@ msgstr ""
|
|
6611
6603
|
msgid "Mac OS X packages must specify a package source"
|
6612
6604
|
msgstr ""
|
6613
6605
|
|
6614
|
-
#: ../lib/puppet/provider/package/apt.rb:
|
6606
|
+
#: ../lib/puppet/provider/package/apt.rb:39
|
6615
6607
|
msgid "/etc/apt/sources.list contains a cdrom source; not installing. Use 'allowcdrom' to override this failure."
|
6616
6608
|
msgstr ""
|
6617
6609
|
|
6618
|
-
#: ../lib/puppet/provider/package/apt.rb:
|
6610
|
+
#: ../lib/puppet/provider/package/apt.rb:83 ../lib/puppet/provider/package/fink.rb:50
|
6619
6611
|
msgid "Could not find latest version"
|
6620
6612
|
msgstr ""
|
6621
6613
|
|
6622
|
-
#: ../lib/puppet/provider/package/apt.rb:
|
6614
|
+
#: ../lib/puppet/provider/package/apt.rb:93 ../lib/puppet/provider/package/fink.rb:60
|
6623
6615
|
msgid "Preseeding %{response} to debconf-set-selections"
|
6624
6616
|
msgstr ""
|
6625
6617
|
|
6626
|
-
#: ../lib/puppet/provider/package/apt.rb:
|
6618
|
+
#: ../lib/puppet/provider/package/apt.rb:97 ../lib/puppet/provider/package/fink.rb:64
|
6627
6619
|
msgid "No responsefile specified or non existent, not preseeding anything"
|
6628
6620
|
msgstr ""
|
6629
6621
|
|
6630
|
-
#: ../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:
|
6622
|
+
#: ../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
|
6631
6623
|
msgid "Could not find package %{name}"
|
6632
6624
|
msgstr ""
|
6633
6625
|
|
@@ -6655,19 +6647,11 @@ msgstr ""
|
|
6655
6647
|
msgid "Cannot match %{line}"
|
6656
6648
|
msgstr ""
|
6657
6649
|
|
6658
|
-
#: ../lib/puppet/provider/package/
|
6659
|
-
msgid "Modules are not supported on DNF versions lower than 3.0.1"
|
6660
|
-
msgstr ""
|
6661
|
-
|
6662
|
-
#: ../lib/puppet/provider/package/dpkg.rb:89
|
6650
|
+
#: ../lib/puppet/provider/package/dpkg.rb:82
|
6663
6651
|
msgid "You cannot install dpkg packages without a source"
|
6664
6652
|
msgstr ""
|
6665
6653
|
|
6666
|
-
#: ../lib/puppet/provider/package/dpkg.rb:
|
6667
|
-
msgid "Could not update: You cannot install dpkg packages without a source"
|
6668
|
-
msgstr ""
|
6669
|
-
|
6670
|
-
#: ../lib/puppet/provider/package/dpkg.rb:118
|
6654
|
+
#: ../lib/puppet/provider/package/dpkg.rb:107
|
6671
6655
|
msgid "source doesn't contain named package, but %{name}"
|
6672
6656
|
msgstr ""
|
6673
6657
|
|
@@ -6675,27 +6659,27 @@ msgstr ""
|
|
6675
6659
|
msgid "source is defined but does not have trailing slash, ignoring %{source}"
|
6676
6660
|
msgstr ""
|
6677
6661
|
|
6678
|
-
#: ../lib/puppet/provider/package/gem.rb:
|
6662
|
+
#: ../lib/puppet/provider/package/gem.rb:84
|
6679
6663
|
msgid "Could not list gems: %{detail}"
|
6680
6664
|
msgstr ""
|
6681
6665
|
|
6682
|
-
#: ../lib/puppet/provider/package/gem.rb:
|
6666
|
+
#: ../lib/puppet/provider/package/gem.rb:110
|
6683
6667
|
msgid "Could not match %{desc}"
|
6684
6668
|
msgstr ""
|
6685
6669
|
|
6686
|
-
#: ../lib/puppet/provider/package/gem.rb:
|
6670
|
+
#: ../lib/puppet/provider/package/gem.rb:158
|
6687
6671
|
msgid "Invalid source '%{uri}': %{detail}"
|
6688
6672
|
msgstr ""
|
6689
6673
|
|
6690
|
-
#: ../lib/puppet/provider/package/gem.rb:
|
6674
|
+
#: ../lib/puppet/provider/package/gem.rb:169
|
6691
6675
|
msgid "puppet:// URLs are not supported as gem sources"
|
6692
6676
|
msgstr ""
|
6693
6677
|
|
6694
|
-
#: ../lib/puppet/provider/package/gem.rb:
|
6678
|
+
#: ../lib/puppet/provider/package/gem.rb:185
|
6695
6679
|
msgid "Could not install: %{output}"
|
6696
6680
|
msgstr ""
|
6697
6681
|
|
6698
|
-
#: ../lib/puppet/provider/package/gem.rb:
|
6682
|
+
#: ../lib/puppet/provider/package/gem.rb:211
|
6699
6683
|
msgid "Could not uninstall: %{output}"
|
6700
6684
|
msgstr ""
|
6701
6685
|
|
@@ -6805,10 +6789,6 @@ msgstr ""
|
|
6805
6789
|
msgid "Refusing to install package group %{resource_name}, because allow_virtual is false."
|
6806
6790
|
msgstr ""
|
6807
6791
|
|
6808
|
-
#: ../lib/puppet/provider/package/pip.rb:54
|
6809
|
-
msgid "Cannot resolve pip version"
|
6810
|
-
msgstr ""
|
6811
|
-
|
6812
6792
|
#: ../lib/puppet/provider/package/pkg.rb:53 ../lib/puppet/provider/package/pkg.rb:63
|
6813
6793
|
msgid "Unknown format %{resource_name}: %{full_flags}[%{bad_flag}]"
|
6814
6794
|
msgstr ""
|
@@ -6901,11 +6881,11 @@ msgstr ""
|
|
6901
6881
|
msgid "portversion.latest() - fatal error with portversion: %{output}"
|
6902
6882
|
msgstr ""
|
6903
6883
|
|
6904
|
-
#: ../lib/puppet/provider/package/rpm.rb:
|
6884
|
+
#: ../lib/puppet/provider/package/rpm.rb:90
|
6905
6885
|
msgid "Failed to list packages"
|
6906
6886
|
msgstr ""
|
6907
6887
|
|
6908
|
-
#: ../lib/puppet/provider/package/rpm.rb:
|
6888
|
+
#: ../lib/puppet/provider/package/rpm.rb:130 ../lib/puppet/provider/package/rpm.rb:142
|
6909
6889
|
msgid "RPMs must specify a package source"
|
6910
6890
|
msgstr ""
|
6911
6891
|
|
@@ -6962,19 +6942,19 @@ msgstr ""
|
|
6962
6942
|
msgid "Failed to parse package name and architecture from '%{pkgname}'"
|
6963
6943
|
msgstr ""
|
6964
6944
|
|
6965
|
-
#: ../lib/puppet/provider/package/yum.rb:
|
6945
|
+
#: ../lib/puppet/provider/package/yum.rb:223
|
6966
6946
|
msgid "Could not find package %{wanted}"
|
6967
6947
|
msgstr ""
|
6968
6948
|
|
6969
|
-
#: ../lib/puppet/provider/package/yum.rb:
|
6949
|
+
#: ../lib/puppet/provider/package/yum.rb:234
|
6970
6950
|
msgid "Failed to update to version %{should}, got version %{version} instead"
|
6971
6951
|
msgstr ""
|
6972
6952
|
|
6973
|
-
#: ../lib/puppet/provider/package_targetable.rb:
|
6953
|
+
#: ../lib/puppet/provider/package_targetable.rb:53
|
6974
6954
|
msgid "Provider %{name} package command is not functional on this host"
|
6975
6955
|
msgstr ""
|
6976
6956
|
|
6977
|
-
#: ../lib/puppet/provider/package_targetable.rb:
|
6957
|
+
#: ../lib/puppet/provider/package_targetable.rb:56
|
6978
6958
|
msgid "Provider %{name} package command '%{cmd}' does not exist on this host"
|
6979
6959
|
msgstr ""
|
6980
6960
|
|
@@ -7024,7 +7004,7 @@ msgid "Overrides file could not be read, trying again."
|
|
7024
7004
|
msgstr ""
|
7025
7005
|
|
7026
7006
|
#. TRANSLATORS 'runsvdir' is a linux service name and should not be translated
|
7027
|
-
#: ../lib/puppet/provider/service/runit.rb:
|
7007
|
+
#: ../lib/puppet/provider/service/runit.rb:93
|
7028
7008
|
msgid "Waiting 5 seconds for runsvdir to discover service %{service}"
|
7029
7009
|
msgstr ""
|
7030
7010
|
|
@@ -7052,23 +7032,19 @@ msgstr ""
|
|
7052
7032
|
msgid "Cannot enable %{resource_name} for manual start, error was: %{detail}"
|
7053
7033
|
msgstr ""
|
7054
7034
|
|
7055
|
-
#: ../lib/puppet/provider/service/windows.rb:
|
7056
|
-
msgid "Cannot enable %{resource_name} for delayed start, error was: %{detail}"
|
7057
|
-
msgstr ""
|
7058
|
-
|
7059
|
-
#: ../lib/puppet/provider/service/windows.rb:61
|
7035
|
+
#: ../lib/puppet/provider/service/windows.rb:53
|
7060
7036
|
msgid "Unknown start type: %{start_type}"
|
7061
7037
|
msgstr ""
|
7062
7038
|
|
7063
|
-
#: ../lib/puppet/provider/service/windows.rb:
|
7039
|
+
#: ../lib/puppet/provider/service/windows.rb:56
|
7064
7040
|
msgid "Cannot get start type %{resource_name}, error was: %{detail}"
|
7065
7041
|
msgstr ""
|
7066
7042
|
|
7067
|
-
#: ../lib/puppet/provider/service/windows.rb:
|
7043
|
+
#: ../lib/puppet/provider/service/windows.rb:70
|
7068
7044
|
msgid "Will not start disabled service %{resource_name} without managing enable. Specify 'enable => false' to override."
|
7069
7045
|
msgstr ""
|
7070
7046
|
|
7071
|
-
#: ../lib/puppet/provider/service/windows.rb:
|
7047
|
+
#: ../lib/puppet/provider/service/windows.rb:102
|
7072
7048
|
msgid "Unknown service state '%{current_state}' for service '%{resource_name}'"
|
7073
7049
|
msgstr ""
|
7074
7050
|
|
@@ -7091,60 +7067,60 @@ msgid "ruby-shadow doesn't support %{method}"
|
|
7091
7067
|
msgstr ""
|
7092
7068
|
|
7093
7069
|
#: ../lib/puppet/provider/user/windows_adsi.rb:128
|
7094
|
-
msgid "The user account '%s' is disabled;
|
7070
|
+
msgid "The user account '%s' is disabled; puppet will not reset the password"
|
7095
7071
|
msgstr ""
|
7096
7072
|
|
7097
7073
|
#: ../lib/puppet/provider/user/windows_adsi.rb:130
|
7098
|
-
msgid "The user account '%s' is locked out;
|
7074
|
+
msgid "The user account '%s' is locked out; puppet will not reset the password"
|
7099
7075
|
msgstr ""
|
7100
7076
|
|
7101
7077
|
#: ../lib/puppet/provider/user/windows_adsi.rb:132
|
7102
|
-
msgid "The user account '%s' is expired;
|
7078
|
+
msgid "The user account '%s' is expired; puppet will not reset the password"
|
7103
7079
|
msgstr ""
|
7104
7080
|
|
7105
7081
|
#: ../lib/puppet/reference/indirection.rb:22
|
7106
7082
|
msgid "Could not build docs for indirector %{name}, terminus %{terminus}: could not locate terminus."
|
7107
7083
|
msgstr ""
|
7108
7084
|
|
7109
|
-
#: ../lib/puppet/reference/metaparameter.rb:
|
7085
|
+
#: ../lib/puppet/reference/metaparameter.rb:30
|
7110
7086
|
msgid "incorrect metaparams: %{detail}"
|
7111
7087
|
msgstr ""
|
7112
7088
|
|
7113
|
-
#: ../lib/puppet/reference/providers.rb:
|
7089
|
+
#: ../lib/puppet/reference/providers.rb:59
|
7114
7090
|
msgid ""
|
7115
7091
|
" - Missing files %{files}\n"
|
7116
7092
|
msgstr ""
|
7117
7093
|
|
7118
|
-
#: ../lib/puppet/reference/providers.rb:
|
7094
|
+
#: ../lib/puppet/reference/providers.rb:63
|
7119
7095
|
msgid ""
|
7120
7096
|
" - Setting %{name} (currently %{value}) not in list %{facts}\n"
|
7121
7097
|
msgstr ""
|
7122
7098
|
|
7123
|
-
#: ../lib/puppet/reference/providers.rb:
|
7099
|
+
#: ../lib/puppet/reference/providers.rb:65
|
7124
7100
|
msgid ""
|
7125
7101
|
" - Fact %{name} (currently %{value}) not in list %{facts}\n"
|
7126
7102
|
msgstr ""
|
7127
7103
|
|
7128
|
-
#: ../lib/puppet/reference/providers.rb:
|
7104
|
+
#: ../lib/puppet/reference/providers.rb:69
|
7129
7105
|
msgid ""
|
7130
7106
|
" - Got %{values} true tests that should have been false\n"
|
7131
7107
|
msgstr ""
|
7132
7108
|
|
7133
|
-
#: ../lib/puppet/reference/providers.rb:
|
7109
|
+
#: ../lib/puppet/reference/providers.rb:71
|
7134
7110
|
msgid ""
|
7135
7111
|
" - Got %{values} false tests that should have been true\n"
|
7136
7112
|
msgstr ""
|
7137
7113
|
|
7138
|
-
#: ../lib/puppet/reference/providers.rb:
|
7114
|
+
#: ../lib/puppet/reference/providers.rb:73
|
7139
7115
|
msgid ""
|
7140
7116
|
" - Missing features %{values}\n"
|
7141
7117
|
msgstr ""
|
7142
7118
|
|
7143
|
-
#: ../lib/puppet/reference/type.rb:
|
7119
|
+
#: ../lib/puppet/reference/type.rb:80
|
7144
7120
|
msgid "Could not retrieve property %{sname} on type %{type_name}"
|
7145
7121
|
msgstr ""
|
7146
7122
|
|
7147
|
-
#: ../lib/puppet/reference/type.rb:
|
7123
|
+
#: ../lib/puppet/reference/type.rb:83
|
7148
7124
|
msgid "No docs for %{type}[%{sname}]"
|
7149
7125
|
msgstr ""
|
7150
7126
|
|
@@ -7186,35 +7162,35 @@ msgstr ""
|
|
7186
7162
|
msgid "Invalid resource type %{type}"
|
7187
7163
|
msgstr ""
|
7188
7164
|
|
7189
|
-
#: ../lib/puppet/resource.rb:
|
7165
|
+
#: ../lib/puppet/resource.rb:499
|
7190
7166
|
msgid "The method Puppet::Resource.set_default_parameters is deprecated and will be removed in the next major release of Puppet."
|
7191
7167
|
msgstr ""
|
7192
7168
|
|
7193
|
-
#: ../lib/puppet/resource.rb:
|
7169
|
+
#: ../lib/puppet/resource.rb:504
|
7194
7170
|
msgid "Cannot evaluate default parameters for %{resource} - not a parser resource"
|
7195
7171
|
msgstr ""
|
7196
7172
|
|
7197
|
-
#: ../lib/puppet/resource.rb:
|
7173
|
+
#: ../lib/puppet/resource.rb:544
|
7198
7174
|
msgid "The method Puppet::Resource.validate_complete is deprecated and will be removed in the next major release of Puppet."
|
7199
7175
|
msgstr ""
|
7200
7176
|
|
7201
|
-
#: ../lib/puppet/resource.rb:
|
7177
|
+
#: ../lib/puppet/resource.rb:550
|
7202
7178
|
msgid "Must pass %{param} to %{resource}"
|
7203
7179
|
msgstr ""
|
7204
7180
|
|
7205
|
-
#: ../lib/puppet/resource.rb:
|
7181
|
+
#: ../lib/puppet/resource.rb:561
|
7206
7182
|
msgid "Expected parameter '%{name}' of '%{value0}' to have type %{value1}, got %{value2}"
|
7207
7183
|
msgstr ""
|
7208
7184
|
|
7209
|
-
#: ../lib/puppet/resource.rb:
|
7185
|
+
#: ../lib/puppet/resource.rb:567
|
7210
7186
|
msgid "no parameter named '%{name}'"
|
7211
7187
|
msgstr ""
|
7212
7188
|
|
7213
|
-
#: ../lib/puppet/resource.rb:
|
7189
|
+
#: ../lib/puppet/resource.rb:611
|
7214
7190
|
msgid "No title provided and %{type} is not a valid resource reference"
|
7215
7191
|
msgstr ""
|
7216
7192
|
|
7217
|
-
#: ../lib/puppet/resource.rb:
|
7193
|
+
#: ../lib/puppet/resource.rb:684
|
7218
7194
|
msgid "No set of title patterns matched the title \"%{title}\"."
|
7219
7195
|
msgstr ""
|
7220
7196
|
|
@@ -7300,7 +7276,7 @@ msgstr ""
|
|
7300
7276
|
msgid "Could not find resource %{resource} when converting %{message} resources"
|
7301
7277
|
msgstr ""
|
7302
7278
|
|
7303
|
-
#: ../lib/puppet/resource/status.rb:139 ../lib/puppet/transaction.rb:
|
7279
|
+
#: ../lib/puppet/resource/status.rb:139 ../lib/puppet/transaction.rb:266
|
7304
7280
|
msgid "Could not evaluate: %{detail}"
|
7305
7281
|
msgstr ""
|
7306
7282
|
|
@@ -7424,81 +7400,77 @@ msgstr ""
|
|
7424
7400
|
msgid "Connection to cached server and port %{server}:%{port} failed: %{message}"
|
7425
7401
|
msgstr ""
|
7426
7402
|
|
7427
|
-
#: ../lib/puppet/rest/routes.rb:
|
7403
|
+
#: ../lib/puppet/rest/routes.rb:43
|
7428
7404
|
msgid "Downloaded certificate for %{name} from %{server}"
|
7429
7405
|
msgstr ""
|
7430
7406
|
|
7431
|
-
#: ../lib/puppet/rest/routes.rb:
|
7407
|
+
#: ../lib/puppet/rest/routes.rb:73
|
7432
7408
|
msgid "Downloaded certificate revocation list for %{name} from %{server}"
|
7433
7409
|
msgstr ""
|
7434
7410
|
|
7435
|
-
#: ../lib/puppet/rest/routes.rb:
|
7411
|
+
#: ../lib/puppet/rest/routes.rb:126
|
7436
7412
|
msgid "Downloaded existing certificate request for %{name} from %{server}"
|
7437
7413
|
msgstr ""
|
7438
7414
|
|
7439
|
-
#: ../lib/puppet/settings.rb:
|
7440
|
-
msgid "New environment loaders generated from the requested section."
|
7441
|
-
msgstr ""
|
7442
|
-
|
7443
|
-
#: ../lib/puppet/settings.rb:299
|
7415
|
+
#: ../lib/puppet/settings.rb:259
|
7444
7416
|
msgid "Attempting to initialize global default settings more than once!"
|
7445
7417
|
msgstr ""
|
7446
7418
|
|
7447
|
-
#: ../lib/puppet/settings.rb:
|
7419
|
+
#: ../lib/puppet/settings.rb:457
|
7448
7420
|
msgid "Using --configprint is deprecated. Use 'puppet config <subcommand>' instead."
|
7449
7421
|
msgstr ""
|
7450
7422
|
|
7451
|
-
#: ../lib/puppet/settings.rb:
|
7423
|
+
#: ../lib/puppet/settings.rb:599
|
7452
7424
|
msgid "Could not load %{file}: %{detail}"
|
7453
7425
|
msgstr ""
|
7454
7426
|
|
7455
|
-
#: ../lib/puppet/settings.rb:
|
7427
|
+
#: ../lib/puppet/settings.rb:700
|
7456
7428
|
msgid "Invalid setting type '%{type}'"
|
7457
7429
|
msgstr ""
|
7458
7430
|
|
7459
|
-
#: ../lib/puppet/settings.rb:
|
7431
|
+
#: ../lib/puppet/settings.rb:844
|
7460
7432
|
msgid "Unknown searchpath case: %{source_type} for the %{source} settings path element."
|
7461
7433
|
msgstr ""
|
7462
7434
|
|
7463
|
-
#: ../lib/puppet/settings.rb:
|
7435
|
+
#: ../lib/puppet/settings.rb:906
|
7464
7436
|
msgid "setting definition for '%{name}' is not a hash!"
|
7465
7437
|
msgstr ""
|
7466
7438
|
|
7467
|
-
#: ../lib/puppet/settings.rb:
|
7439
|
+
#: ../lib/puppet/settings.rb:911
|
7468
7440
|
msgid "Setting %{name} is already defined"
|
7469
7441
|
msgstr ""
|
7470
7442
|
|
7471
|
-
#: ../lib/puppet/settings.rb:
|
7443
|
+
#: ../lib/puppet/settings.rb:915
|
7472
7444
|
msgid "Setting %{name} is already using short name '%{short}'"
|
7473
7445
|
msgstr ""
|
7474
7446
|
|
7475
|
-
#: ../lib/puppet/settings.rb:
|
7447
|
+
#: ../lib/puppet/settings.rb:1172
|
7476
7448
|
msgid "Setting %{name} is deprecated."
|
7477
7449
|
msgstr ""
|
7478
7450
|
|
7479
7451
|
#. TRANSLATORS 'puppet.conf' is a file name and should not be translated
|
7480
|
-
#: ../lib/puppet/settings.rb:
|
7452
|
+
#: ../lib/puppet/settings.rb:1177
|
7481
7453
|
msgid "Setting %{name} is deprecated in puppet.conf."
|
7482
7454
|
msgstr ""
|
7483
7455
|
|
7484
|
-
#: ../lib/puppet/settings.rb:
|
7456
|
+
#: ../lib/puppet/settings.rb:1344
|
7485
7457
|
msgid "Error converting value for param '%{name}': %{detail}"
|
7486
7458
|
msgstr ""
|
7487
7459
|
|
7488
|
-
#: ../lib/puppet/settings.rb:
|
7460
|
+
#: ../lib/puppet/settings.rb:1368
|
7489
7461
|
msgid "Could not find value for %{expression}"
|
7490
7462
|
msgstr ""
|
7491
7463
|
|
7492
7464
|
#. TRANSLATORS '$environment' is a Puppet specific variable and should not be translated
|
7493
|
-
#: ../lib/puppet/settings.rb:
|
7465
|
+
#: ../lib/puppet/settings.rb:1378
|
7494
7466
|
msgid "You cannot interpolate $environment within '%{setting_name}' when using directory environments."
|
7495
7467
|
msgstr ""
|
7496
7468
|
|
7497
|
-
#: ../lib/puppet/settings.rb:
|
7469
|
+
#: ../lib/puppet/settings.rb:1379
|
7498
7470
|
msgid "Its value will remain %{value}."
|
7499
7471
|
msgstr ""
|
7500
7472
|
|
7501
|
-
#: ../lib/puppet/settings.rb:
|
7473
|
+
#: ../lib/puppet/settings.rb:1410
|
7502
7474
|
msgid "Attempt to assign a value to unknown setting %{name}"
|
7503
7475
|
msgstr ""
|
7504
7476
|
|
@@ -7640,7 +7612,7 @@ msgstr ""
|
|
7640
7612
|
msgid "%{name} has not declared what class it wraps"
|
7641
7613
|
msgstr ""
|
7642
7614
|
|
7643
|
-
#: ../lib/puppet/ssl/base.rb:32 ../lib/puppet/x509/cert_provider.rb:
|
7615
|
+
#: ../lib/puppet/ssl/base.rb:32 ../lib/puppet/x509/cert_provider.rb:340
|
7644
7616
|
msgid "Certname %{name} must not contain unprintable or non-ASCII characters"
|
7645
7617
|
msgstr ""
|
7646
7618
|
|
@@ -7664,55 +7636,55 @@ msgstr ""
|
|
7664
7636
|
msgid "Creating a new SSL certificate request for %{name}"
|
7665
7637
|
msgstr ""
|
7666
7638
|
|
7667
|
-
#: ../lib/puppet/ssl/certificate_request.rb:
|
7639
|
+
#: ../lib/puppet/ssl/certificate_request.rb:101
|
7668
7640
|
msgid "CSR sign verification failed; you need to clean the certificate request for %{name} on the server"
|
7669
7641
|
msgstr ""
|
7670
7642
|
|
7671
|
-
#: ../lib/puppet/ssl/certificate_request.rb:
|
7643
|
+
#: ../lib/puppet/ssl/certificate_request.rb:107
|
7672
7644
|
msgid "Certificate Request fingerprint (%{digest}): %{hex_digest}"
|
7673
7645
|
msgstr ""
|
7674
7646
|
|
7675
|
-
#: ../lib/puppet/ssl/certificate_request.rb:
|
7647
|
+
#: ../lib/puppet/ssl/certificate_request.rb:151
|
7676
7648
|
msgid "CSR needs content to extract fields"
|
7677
7649
|
msgstr ""
|
7678
7650
|
|
7679
|
-
#: ../lib/puppet/ssl/certificate_request.rb:
|
7651
|
+
#: ../lib/puppet/ssl/certificate_request.rb:178
|
7680
7652
|
msgid "In %{attr}, expected extension record %{index} to have two or three items, but found %{count}"
|
7681
7653
|
msgstr ""
|
7682
7654
|
|
7683
|
-
#: ../lib/puppet/ssl/certificate_request.rb:
|
7655
|
+
#: ../lib/puppet/ssl/certificate_request.rb:229
|
7684
7656
|
msgid "Cannot specify CSR attribute %{oid}: conflicts with internally used CSR attribute"
|
7685
7657
|
msgstr ""
|
7686
7658
|
|
7687
|
-
#: ../lib/puppet/ssl/certificate_request.rb:
|
7659
|
+
#: ../lib/puppet/ssl/certificate_request.rb:238
|
7688
7660
|
msgid "Cannot create CSR with attribute %{oid}: %{message}"
|
7689
7661
|
msgstr ""
|
7690
7662
|
|
7691
|
-
#: ../lib/puppet/ssl/certificate_request.rb:
|
7663
|
+
#: ../lib/puppet/ssl/certificate_request.rb:255
|
7692
7664
|
msgid "Cannot specify CSR extension request %{oid}: conflicts with internally used extension request"
|
7693
7665
|
msgstr ""
|
7694
7666
|
|
7695
|
-
#: ../lib/puppet/ssl/certificate_request.rb:
|
7667
|
+
#: ../lib/puppet/ssl/certificate_request.rb:261
|
7696
7668
|
msgid "Cannot create CSR with extension request %{oid}: %{message}"
|
7697
7669
|
msgstr ""
|
7698
7670
|
|
7699
|
-
#: ../lib/puppet/ssl/certificate_request.rb:
|
7671
|
+
#: ../lib/puppet/ssl/certificate_request.rb:312
|
7700
7672
|
msgid "In %{attr}, expected Set but found %{klass}"
|
7701
7673
|
msgstr ""
|
7702
7674
|
|
7703
|
-
#: ../lib/puppet/ssl/certificate_request.rb:
|
7675
|
+
#: ../lib/puppet/ssl/certificate_request.rb:316
|
7704
7676
|
msgid "In %{attr}, expected Set[Array] but found %{klass}"
|
7705
7677
|
msgstr ""
|
7706
7678
|
|
7707
|
-
#: ../lib/puppet/ssl/certificate_request.rb:
|
7679
|
+
#: ../lib/puppet/ssl/certificate_request.rb:320
|
7708
7680
|
msgid "In %{attr}, expected Set[Array] with one value but found %{count} elements"
|
7709
7681
|
msgstr ""
|
7710
7682
|
|
7711
|
-
#: ../lib/puppet/ssl/certificate_request.rb:
|
7683
|
+
#: ../lib/puppet/ssl/certificate_request.rb:324
|
7712
7684
|
msgid "In %{attr}, expected Set[Array[Sequence[...]]], but found %{klass}"
|
7713
7685
|
msgstr ""
|
7714
7686
|
|
7715
|
-
#: ../lib/puppet/ssl/certificate_request.rb:
|
7687
|
+
#: ../lib/puppet/ssl/certificate_request.rb:328
|
7716
7688
|
msgid "In %{attr}, expected Set[Array[Sequence[Array[...]]]], but found %{klass}"
|
7717
7689
|
msgstr ""
|
7718
7690
|
|
@@ -7804,7 +7776,7 @@ msgid ""
|
|
7804
7776
|
"%{crl}"
|
7805
7777
|
msgstr ""
|
7806
7778
|
|
7807
|
-
#: ../lib/puppet/ssl/host.rb:384 ../lib/puppet/ssl/state_machine.rb:
|
7779
|
+
#: ../lib/puppet/ssl/host.rb:384 ../lib/puppet/ssl/state_machine.rb:97
|
7808
7780
|
msgid "Could not download CRLs: %{message}"
|
7809
7781
|
msgstr ""
|
7810
7782
|
|
@@ -7868,114 +7840,138 @@ msgstr ""
|
|
7868
7840
|
msgid "The certificate for '%{name}' does not match its private key"
|
7869
7841
|
msgstr ""
|
7870
7842
|
|
7871
|
-
#: ../lib/puppet/ssl/ssl_provider.rb:
|
7843
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:117
|
7844
|
+
msgid "Failed to load private key for host '%{name}': %{message}"
|
7845
|
+
msgstr ""
|
7846
|
+
|
7847
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:131
|
7872
7848
|
msgid "The CSR for host '%{name}' does not match the public key"
|
7873
7849
|
msgstr ""
|
7874
7850
|
|
7875
|
-
#: ../lib/puppet/ssl/ssl_provider.rb:
|
7851
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:195
|
7876
7852
|
msgid "The issuer '%{issuer}' of certificate '%{subject}' cannot be found locally"
|
7877
7853
|
msgstr ""
|
7878
7854
|
|
7879
|
-
#: ../lib/puppet/ssl/ssl_provider.rb:
|
7855
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:211
|
7880
7856
|
msgid "The certificate '%{subject}' is not yet valid, verify time is synchronized"
|
7881
7857
|
msgstr ""
|
7882
7858
|
|
7883
|
-
#: ../lib/puppet/ssl/ssl_provider.rb:
|
7859
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:213
|
7884
7860
|
msgid "The certificate '%{subject}' has expired, verify time is synchronized"
|
7885
7861
|
msgstr ""
|
7886
7862
|
|
7887
|
-
#: ../lib/puppet/ssl/ssl_provider.rb:
|
7863
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:215
|
7888
7864
|
msgid "The CRL issued by '%{issuer}' is not yet valid, verify time is synchronized"
|
7889
7865
|
msgstr ""
|
7890
7866
|
|
7891
|
-
#: ../lib/puppet/ssl/ssl_provider.rb:
|
7867
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:217
|
7892
7868
|
msgid "The CRL issued by '%{issuer}' has expired, verify time is synchronized"
|
7893
7869
|
msgstr ""
|
7894
7870
|
|
7895
|
-
#: ../lib/puppet/ssl/ssl_provider.rb:
|
7871
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:219
|
7896
7872
|
msgid "Invalid signature for certificate '%{subject}'"
|
7897
7873
|
msgstr ""
|
7898
7874
|
|
7899
|
-
#: ../lib/puppet/ssl/ssl_provider.rb:
|
7875
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:221
|
7900
7876
|
msgid "Invalid signature for CRL issued by '%{issuer}'"
|
7901
7877
|
msgstr ""
|
7902
7878
|
|
7903
|
-
#: ../lib/puppet/ssl/ssl_provider.rb:
|
7879
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:223
|
7904
7880
|
msgid "The issuer '%{issuer}' of certificate '%{subject}' is missing"
|
7905
7881
|
msgstr ""
|
7906
7882
|
|
7907
|
-
#: ../lib/puppet/ssl/ssl_provider.rb:
|
7883
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:226
|
7908
7884
|
msgid "The CRL issued by '%{issuer}' is missing"
|
7909
7885
|
msgstr ""
|
7910
7886
|
|
7911
|
-
#: ../lib/puppet/ssl/ssl_provider.rb:
|
7887
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:228
|
7912
7888
|
msgid "Certificate '%{subject}' is revoked"
|
7913
7889
|
msgstr ""
|
7914
7890
|
|
7915
|
-
#: ../lib/puppet/ssl/ssl_provider.rb:
|
7891
|
+
#: ../lib/puppet/ssl/ssl_provider.rb:232
|
7916
7892
|
msgid "Certificate '%{subject}' failed verification (%{err}): %{err_utf8}"
|
7917
7893
|
msgstr ""
|
7918
7894
|
|
7919
|
-
#: ../lib/puppet/ssl/state_machine.rb:
|
7895
|
+
#: ../lib/puppet/ssl/state_machine.rb:51
|
7920
7896
|
msgid "CA certificate is missing from the server"
|
7921
7897
|
msgstr ""
|
7922
7898
|
|
7923
|
-
#: ../lib/puppet/ssl/state_machine.rb:
|
7899
|
+
#: ../lib/puppet/ssl/state_machine.rb:53
|
7924
7900
|
msgid "Could not download CA certificate: %{message}"
|
7925
7901
|
msgstr ""
|
7926
7902
|
|
7927
|
-
#: ../lib/puppet/ssl/state_machine.rb:
|
7903
|
+
#: ../lib/puppet/ssl/state_machine.rb:95
|
7928
7904
|
msgid "CRL is missing from the server"
|
7929
7905
|
msgstr ""
|
7930
7906
|
|
7931
|
-
#: ../lib/puppet/ssl/state_machine.rb:
|
7907
|
+
#: ../lib/puppet/ssl/state_machine.rb:104
|
7908
|
+
msgid "Refreshing CRL"
|
7909
|
+
msgstr ""
|
7910
|
+
|
7911
|
+
#: ../lib/puppet/ssl/state_machine.rb:110
|
7912
|
+
msgid "CRL is unmodified, using existing CRL"
|
7913
|
+
msgstr ""
|
7914
|
+
|
7915
|
+
#: ../lib/puppet/ssl/state_machine.rb:112 ../lib/puppet/ssl/state_machine.rb:118
|
7916
|
+
msgid "Failed to refresh CRL, using existing CRL: %{message}"
|
7917
|
+
msgstr ""
|
7918
|
+
|
7919
|
+
#: ../lib/puppet/ssl/state_machine.rb:142
|
7932
7920
|
msgid "Loading/generating private key"
|
7933
7921
|
msgstr ""
|
7934
7922
|
|
7935
|
-
#: ../lib/puppet/ssl/state_machine.rb:
|
7923
|
+
#: ../lib/puppet/ssl/state_machine.rb:159
|
7924
|
+
msgid "Creating a new RSA SSL key for %{name}"
|
7925
|
+
msgstr ""
|
7926
|
+
|
7927
|
+
#: ../lib/puppet/ssl/state_machine.rb:189
|
7936
7928
|
msgid "Generating and submitting a CSR"
|
7937
7929
|
msgstr ""
|
7938
7930
|
|
7939
|
-
#: ../lib/puppet/ssl/state_machine.rb:
|
7931
|
+
#: ../lib/puppet/ssl/state_machine.rb:197
|
7940
7932
|
msgid "Failed to submit the CSR, HTTP response was %{code}"
|
7941
7933
|
msgstr ""
|
7942
7934
|
|
7943
|
-
#: ../lib/puppet/ssl/state_machine.rb:
|
7935
|
+
#: ../lib/puppet/ssl/state_machine.rb:208
|
7944
7936
|
msgid "Downloading client certificate"
|
7945
7937
|
msgstr ""
|
7946
7938
|
|
7947
|
-
#: ../lib/puppet/ssl/state_machine.rb:
|
7939
|
+
#: ../lib/puppet/ssl/state_machine.rb:224
|
7948
7940
|
msgid "Failed to parse certificate: %{message}"
|
7949
7941
|
msgstr ""
|
7950
7942
|
|
7951
|
-
#: ../lib/puppet/ssl/state_machine.rb:
|
7943
|
+
#: ../lib/puppet/ssl/state_machine.rb:228
|
7952
7944
|
msgid "Certificate for %{certname} has not been signed yet"
|
7953
7945
|
msgstr ""
|
7954
7946
|
|
7955
|
-
#: ../lib/puppet/ssl/state_machine.rb:
|
7956
|
-
msgid "
|
7947
|
+
#: ../lib/puppet/ssl/state_machine.rb:230
|
7948
|
+
msgid "Failed to retrieve certificate for %{certname}: %{message}"
|
7957
7949
|
msgstr ""
|
7958
7950
|
|
7959
|
-
#: ../lib/puppet/ssl/state_machine.rb:
|
7960
|
-
msgid "
|
7951
|
+
#: ../lib/puppet/ssl/state_machine.rb:243
|
7952
|
+
msgid "Couldn't fetch certificate from CA server; you might still need to sign this agent's certificate (%{name}). Exiting now because the waitforcert setting is set to 0."
|
7961
7953
|
msgstr ""
|
7962
7954
|
|
7963
|
-
#: ../lib/puppet/ssl/state_machine.rb:
|
7964
|
-
msgid "Exiting now because the
|
7955
|
+
#: ../lib/puppet/ssl/state_machine.rb:246
|
7956
|
+
msgid "Couldn't fetch certificate from CA server; you might still need to sign this agent's certificate (%{name}). Exiting now because the maxwaitforcert timeout has been exceeded."
|
7965
7957
|
msgstr ""
|
7966
7958
|
|
7967
|
-
#: ../lib/puppet/ssl/state_machine.rb:
|
7968
|
-
msgid "Will try again in %{time} seconds."
|
7959
|
+
#: ../lib/puppet/ssl/state_machine.rb:249
|
7960
|
+
msgid "Couldn't fetch certificate from CA server; you might still need to sign this agent's certificate (%{name}). Will try again in %{time} seconds."
|
7969
7961
|
msgstr ""
|
7970
7962
|
|
7971
|
-
#: ../lib/puppet/ssl/state_machine.rb:
|
7963
|
+
#: ../lib/puppet/ssl/state_machine.rb:300
|
7972
7964
|
msgid "Verified client certificate '%{subject}' fingerprint %{digest}"
|
7973
7965
|
msgstr ""
|
7974
7966
|
|
7975
|
-
#: ../lib/puppet/ssl/state_machine.rb:
|
7967
|
+
#: ../lib/puppet/ssl/state_machine.rb:302
|
7976
7968
|
msgid "Verified CA certificate '%{subject}' fingerprint %{digest}"
|
7977
7969
|
msgstr ""
|
7978
7970
|
|
7971
|
+
#: ../lib/puppet/ssl/state_machine.rb:332
|
7972
|
+
msgid "Another puppet instance is already running; exiting"
|
7973
|
+
msgstr ""
|
7974
|
+
|
7979
7975
|
#. TRANSLATORS: `error` is an untranslated message from openssl describing why a certificate in the server's chain is invalid, and `subject` is the identity/name of the failed certificate
|
7980
7976
|
#: ../lib/puppet/ssl/verifier.rb:128
|
7981
7977
|
msgid "certificate verify failed [%{error} for %{subject}]"
|
@@ -8049,72 +8045,64 @@ msgstr ""
|
|
8049
8045
|
msgid "PP syntax checker: \"%{message}\""
|
8050
8046
|
msgstr ""
|
8051
8047
|
|
8052
|
-
#: ../lib/puppet/transaction.rb:
|
8048
|
+
#: ../lib/puppet/transaction.rb:86
|
8053
8049
|
msgid "Some pre-run checks failed"
|
8054
8050
|
msgstr ""
|
8055
8051
|
|
8056
|
-
#: ../lib/puppet/transaction.rb:
|
8052
|
+
#: ../lib/puppet/transaction.rb:102
|
8057
8053
|
msgid "Applying configuration version '%{version}'"
|
8058
8054
|
msgstr ""
|
8059
8055
|
|
8060
|
-
#: ../lib/puppet/transaction.rb:
|
8056
|
+
#: ../lib/puppet/transaction.rb:125
|
8061
8057
|
msgid "Provider %{name} is not functional on this host"
|
8062
8058
|
msgstr ""
|
8063
8059
|
|
8064
|
-
#: ../lib/puppet/transaction.rb:
|
8060
|
+
#: ../lib/puppet/transaction.rb:141
|
8065
8061
|
msgid "Could not find a suitable provider for %{type}"
|
8066
8062
|
msgstr ""
|
8067
8063
|
|
8068
|
-
#: ../lib/puppet/transaction.rb:
|
8064
|
+
#: ../lib/puppet/transaction.rb:148
|
8069
8065
|
msgid "post_resource_eval failed for provider %{provider}"
|
8070
8066
|
msgstr ""
|
8071
8067
|
|
8072
|
-
#: ../lib/puppet/transaction.rb:
|
8068
|
+
#: ../lib/puppet/transaction.rb:165
|
8073
8069
|
msgid "resource is part of a dependency cycle"
|
8074
8070
|
msgstr ""
|
8075
8071
|
|
8076
|
-
#: ../lib/puppet/transaction.rb:
|
8072
|
+
#: ../lib/puppet/transaction.rb:167
|
8077
8073
|
msgid "One or more resource dependency cycles detected in graph"
|
8078
8074
|
msgstr ""
|
8079
8075
|
|
8080
|
-
#: ../lib/puppet/transaction.rb:
|
8076
|
+
#: ../lib/puppet/transaction.rb:180
|
8081
8077
|
msgid "Somehow left a component in the relationship graph"
|
8082
8078
|
msgstr ""
|
8083
8079
|
|
8084
|
-
#: ../lib/puppet/transaction.rb:
|
8080
|
+
#: ../lib/puppet/transaction.rb:182
|
8085
8081
|
msgid "Starting to evaluate the resource"
|
8086
8082
|
msgstr ""
|
8087
8083
|
|
8088
|
-
#: ../lib/puppet/transaction.rb:
|
8084
|
+
#: ../lib/puppet/transaction.rb:184
|
8089
8085
|
msgid "Evaluated in %{seconds} seconds"
|
8090
8086
|
msgstr ""
|
8091
8087
|
|
8092
|
-
#: ../lib/puppet/transaction.rb:
|
8093
|
-
msgid "Class dependency %{dep} has failures: %{status}"
|
8094
|
-
msgstr ""
|
8095
|
-
|
8096
|
-
#: ../lib/puppet/transaction.rb:310
|
8088
|
+
#: ../lib/puppet/transaction.rb:297
|
8097
8089
|
msgid "Dependency %{dep} has failures: %{status}"
|
8098
8090
|
msgstr ""
|
8099
8091
|
|
8100
|
-
#: ../lib/puppet/transaction.rb:
|
8092
|
+
#: ../lib/puppet/transaction.rb:318
|
8101
8093
|
msgid "Prefetch failed for %{type_name} provider '%{name}'"
|
8102
8094
|
msgstr ""
|
8103
8095
|
|
8104
8096
|
#. TRANSLATORS `prefetch` is a function name and should not be translated
|
8105
|
-
#: ../lib/puppet/transaction.rb:
|
8097
|
+
#: ../lib/puppet/transaction.rb:363 ../lib/puppet/transaction.rb:366
|
8106
8098
|
msgid "Could not prefetch %{type_name} provider '%{name}': %{detail}"
|
8107
8099
|
msgstr ""
|
8108
8100
|
|
8109
|
-
#: ../lib/puppet/transaction.rb:
|
8110
|
-
msgid "Skipping resources in class because of failed class dependencies"
|
8111
|
-
msgstr ""
|
8112
|
-
|
8113
|
-
#: ../lib/puppet/transaction.rb:421
|
8101
|
+
#: ../lib/puppet/transaction.rb:399
|
8114
8102
|
msgid "Skipping because of failed dependencies"
|
8115
8103
|
msgstr ""
|
8116
8104
|
|
8117
|
-
#: ../lib/puppet/transaction.rb:
|
8105
|
+
#: ../lib/puppet/transaction.rb:404
|
8118
8106
|
msgid "Skipping because provider prefetch failed"
|
8119
8107
|
msgstr ""
|
8120
8108
|
|
@@ -8269,100 +8257,100 @@ msgstr ""
|
|
8269
8257
|
msgid "Could not find parent provider %{parent} of %{name}"
|
8270
8258
|
msgstr ""
|
8271
8259
|
|
8272
|
-
#: ../lib/puppet/type.rb:
|
8260
|
+
#: ../lib/puppet/type.rb:1938
|
8273
8261
|
msgid "Invalid %{resource} provider '%{provider_class}'"
|
8274
8262
|
msgstr ""
|
8275
8263
|
|
8276
|
-
#: ../lib/puppet/type.rb:
|
8264
|
+
#: ../lib/puppet/type.rb:2021
|
8277
8265
|
msgid "Could not find %{name} provider of %{provider}"
|
8278
8266
|
msgstr ""
|
8279
8267
|
|
8280
|
-
#: ../lib/puppet/type.rb:
|
8268
|
+
#: ../lib/puppet/type.rb:2138
|
8281
8269
|
msgid "You cannot add relationships without a catalog"
|
8282
8270
|
msgstr ""
|
8283
8271
|
|
8284
|
-
#: ../lib/puppet/type.rb:
|
8272
|
+
#: ../lib/puppet/type.rb:2445
|
8285
8273
|
msgid "Unable to mark '%{name}' as sensitive: %{name} is a parameter and not a property, and cannot be automatically redacted."
|
8286
8274
|
msgstr ""
|
8287
8275
|
|
8288
|
-
#: ../lib/puppet/type.rb:
|
8276
|
+
#: ../lib/puppet/type.rb:2448
|
8289
8277
|
msgid "Unable to mark '%{name}' as sensitive: the property itself was not assigned a value."
|
8290
8278
|
msgstr ""
|
8291
8279
|
|
8292
|
-
#: ../lib/puppet/type.rb:
|
8280
|
+
#: ../lib/puppet/type.rb:2450
|
8293
8281
|
msgid "Unable to mark '%{name}' as sensitive: the property itself is not defined on %{type}."
|
8294
8282
|
msgstr ""
|
8295
8283
|
|
8296
|
-
#: ../lib/puppet/type.rb:
|
8284
|
+
#: ../lib/puppet/type.rb:2508
|
8297
8285
|
msgid "Could not set %{attribute} on %{class_name}: %{detail}"
|
8298
8286
|
msgstr ""
|
8299
8287
|
|
8300
|
-
#: ../lib/puppet/type/exec.rb:
|
8288
|
+
#: ../lib/puppet/type/exec.rb:107
|
8301
8289
|
msgid "executed successfully"
|
8302
8290
|
msgstr ""
|
8303
8291
|
|
8304
|
-
#: ../lib/puppet/type/exec.rb:
|
8292
|
+
#: ../lib/puppet/type/exec.rb:141
|
8305
8293
|
msgid "Command exceeded timeout"
|
8306
8294
|
msgstr ""
|
8307
8295
|
|
8308
|
-
#: ../lib/puppet/type/exec.rb:
|
8296
|
+
#: ../lib/puppet/type/exec.rb:165
|
8309
8297
|
msgid "[command redacted] returned %{status} instead of one of [%{expected}]"
|
8310
8298
|
msgstr ""
|
8311
8299
|
|
8312
|
-
#: ../lib/puppet/type/exec.rb:
|
8300
|
+
#: ../lib/puppet/type/exec.rb:167
|
8313
8301
|
msgid "'%{cmd}' returned %{status} instead of one of [%{expected}]"
|
8314
8302
|
msgstr ""
|
8315
8303
|
|
8316
|
-
#: ../lib/puppet/type/exec.rb:
|
8304
|
+
#: ../lib/puppet/type/exec.rb:188
|
8317
8305
|
msgid "Command must be a String, got value of class %{klass}"
|
8318
8306
|
msgstr ""
|
8319
8307
|
|
8320
|
-
#: ../lib/puppet/type/exec.rb:
|
8308
|
+
#: ../lib/puppet/type/exec.rb:220
|
8321
8309
|
msgid "Unable to execute commands as other users on Windows"
|
8322
8310
|
msgstr ""
|
8323
8311
|
|
8324
|
-
#: ../lib/puppet/type/exec.rb:
|
8312
|
+
#: ../lib/puppet/type/exec.rb:222
|
8325
8313
|
msgid "Only root can execute commands as other users"
|
8326
8314
|
msgstr ""
|
8327
8315
|
|
8328
|
-
#: ../lib/puppet/type/exec.rb:
|
8316
|
+
#: ../lib/puppet/type/exec.rb:278
|
8329
8317
|
msgid "Invalid environment setting '%{value}'"
|
8330
8318
|
msgstr ""
|
8331
8319
|
|
8332
|
-
#: ../lib/puppet/type/exec.rb:
|
8320
|
+
#: ../lib/puppet/type/exec.rb:291
|
8333
8321
|
msgid "The umask specification is invalid: %{value}"
|
8334
8322
|
msgstr ""
|
8335
8323
|
|
8336
|
-
#: ../lib/puppet/type/exec.rb:
|
8324
|
+
#: ../lib/puppet/type/exec.rb:307
|
8337
8325
|
msgid "The timeout must be a number."
|
8338
8326
|
msgstr ""
|
8339
8327
|
|
8340
|
-
#: ../lib/puppet/type/exec.rb:
|
8328
|
+
#: ../lib/puppet/type/exec.rb:324
|
8341
8329
|
msgid "Tries must be an integer"
|
8342
8330
|
msgstr ""
|
8343
8331
|
|
8344
|
-
#: ../lib/puppet/type/exec.rb:
|
8332
|
+
#: ../lib/puppet/type/exec.rb:328
|
8345
8333
|
msgid "Tries must be an integer >= 1"
|
8346
8334
|
msgstr ""
|
8347
8335
|
|
8348
|
-
#: ../lib/puppet/type/exec.rb:
|
8336
|
+
#: ../lib/puppet/type/exec.rb:341
|
8349
8337
|
msgid "try_sleep must be a number"
|
8350
8338
|
msgstr ""
|
8351
8339
|
|
8352
|
-
#: ../lib/puppet/type/exec.rb:
|
8340
|
+
#: ../lib/puppet/type/exec.rb:345
|
8353
8341
|
msgid "try_sleep cannot be a negative number"
|
8354
8342
|
msgstr ""
|
8355
8343
|
|
8356
8344
|
#. TRANSLATORS 'creates' is a parameter name and should not be translated
|
8357
|
-
#: ../lib/puppet/type/exec.rb:
|
8345
|
+
#: ../lib/puppet/type/exec.rb:417
|
8358
8346
|
msgid "Checking that 'creates' path '%{creates_path}' exists"
|
8359
8347
|
msgstr ""
|
8360
8348
|
|
8361
|
-
#: ../lib/puppet/type/exec.rb:
|
8349
|
+
#: ../lib/puppet/type/exec.rb:462 ../lib/puppet/type/exec.rb:514
|
8362
8350
|
msgid "Check %{value} exceeded timeout"
|
8363
8351
|
msgstr ""
|
8364
8352
|
|
8365
|
-
#: ../lib/puppet/type/exec.rb:
|
8353
|
+
#: ../lib/puppet/type/exec.rb:597
|
8366
8354
|
msgid "'%{cmd}' won't be executed because of failed check '%{check}'"
|
8367
8355
|
msgstr ""
|
8368
8356
|
|
@@ -8382,74 +8370,74 @@ msgstr ""
|
|
8382
8370
|
msgid "Invalid recurselimit value %{value}"
|
8383
8371
|
msgstr ""
|
8384
8372
|
|
8385
|
-
#: ../lib/puppet/type/file.rb:
|
8373
|
+
#: ../lib/puppet/type/file.rb:399
|
8386
8374
|
msgid "You cannot specify more than one of %{creators}"
|
8387
8375
|
msgstr ""
|
8388
8376
|
|
8389
|
-
#: ../lib/puppet/type/file.rb:
|
8377
|
+
#: ../lib/puppet/type/file.rb:401
|
8390
8378
|
msgid "You cannot specify a remote recursion without a source"
|
8391
8379
|
msgstr ""
|
8392
8380
|
|
8393
|
-
#: ../lib/puppet/type/file.rb:
|
8381
|
+
#: ../lib/puppet/type/file.rb:403
|
8394
8382
|
msgid "You cannot specify source when using checksum 'none'"
|
8395
8383
|
msgstr ""
|
8396
8384
|
|
8397
|
-
#: ../lib/puppet/type/file.rb:
|
8385
|
+
#: ../lib/puppet/type/file.rb:406
|
8398
8386
|
msgid "You cannot specify content when using checksum '%{checksum_type}'"
|
8399
8387
|
msgstr ""
|
8400
8388
|
|
8401
|
-
#: ../lib/puppet/type/file.rb:
|
8389
|
+
#: ../lib/puppet/type/file.rb:409
|
8402
8390
|
msgid "Possible error: recurselimit is set but not recurse, no recursion will happen"
|
8403
8391
|
msgstr ""
|
8404
8392
|
|
8405
|
-
#: ../lib/puppet/type/file.rb:
|
8393
|
+
#: ../lib/puppet/type/file.rb:417
|
8406
8394
|
msgid "Checksum value '%{value}' is not a valid checksum type %{checksum}"
|
8407
8395
|
msgstr ""
|
8408
8396
|
|
8409
|
-
#: ../lib/puppet/type/file.rb:
|
8397
|
+
#: ../lib/puppet/type/file.rb:420
|
8410
8398
|
msgid "Checksum value is ignored unless content or source are specified"
|
8411
8399
|
msgstr ""
|
8412
8400
|
|
8413
|
-
#: ../lib/puppet/type/file.rb:
|
8401
|
+
#: ../lib/puppet/type/file.rb:458
|
8414
8402
|
msgid "Can not find filebucket for backups without a catalog"
|
8415
8403
|
msgstr ""
|
8416
8404
|
|
8417
|
-
#: ../lib/puppet/type/file.rb:
|
8405
|
+
#: ../lib/puppet/type/file.rb:462
|
8418
8406
|
msgid "Could not find filebucket %{backup} specified in backup"
|
8419
8407
|
msgstr ""
|
8420
8408
|
|
8421
|
-
#: ../lib/puppet/type/file.rb:
|
8409
|
+
#: ../lib/puppet/type/file.rb:758
|
8422
8410
|
msgid "Could not back up file of type %{current_type}"
|
8423
8411
|
msgstr ""
|
8424
8412
|
|
8425
|
-
#: ../lib/puppet/type/file.rb:
|
8413
|
+
#: ../lib/puppet/type/file.rb:773
|
8426
8414
|
msgid "Could not remove files of type %{current_type}"
|
8427
8415
|
msgstr ""
|
8428
8416
|
|
8429
8417
|
#. TRANSLATORS "source_permissions => ignore" should not be translated
|
8430
|
-
#: ../lib/puppet/type/file.rb:
|
8418
|
+
#: ../lib/puppet/type/file.rb:784
|
8431
8419
|
msgid "Copying owner/mode/group from the source file on Windows is not supported; use source_permissions => ignore."
|
8432
8420
|
msgstr ""
|
8433
8421
|
|
8434
8422
|
#. TRANSLATORS "stat" is a program name and should not be translated
|
8435
|
-
#: ../lib/puppet/type/file.rb:
|
8423
|
+
#: ../lib/puppet/type/file.rb:865 ../lib/puppet/type/tidy.rb:345
|
8436
8424
|
msgid "Could not stat; permission denied"
|
8437
8425
|
msgstr ""
|
8438
8426
|
|
8439
|
-
#: ../lib/puppet/type/file.rb:
|
8427
|
+
#: ../lib/puppet/type/file.rb:868
|
8440
8428
|
msgid "Could not stat; invalid pathname"
|
8441
8429
|
msgstr ""
|
8442
8430
|
|
8443
|
-
#: ../lib/puppet/type/file.rb:
|
8431
|
+
#: ../lib/puppet/type/file.rb:996
|
8444
8432
|
msgid "Not removing directory; use 'force' to override"
|
8445
8433
|
msgstr ""
|
8446
8434
|
|
8447
8435
|
#. TRANSLATORS refers to a file which could not be backed up
|
8448
|
-
#: ../lib/puppet/type/file.rb:
|
8436
|
+
#: ../lib/puppet/type/file.rb:1021
|
8449
8437
|
msgid "Could not back up; will not remove"
|
8450
8438
|
msgstr ""
|
8451
8439
|
|
8452
|
-
#: ../lib/puppet/type/file.rb:
|
8440
|
+
#: ../lib/puppet/type/file.rb:1035
|
8453
8441
|
msgid "File written to disk did not match checksum; discarding changes (%{content_checksum} vs %{newsum})"
|
8454
8442
|
msgstr ""
|
8455
8443
|
|
@@ -8519,15 +8507,15 @@ msgstr ""
|
|
8519
8507
|
msgid "Invalid GID %{gid}"
|
8520
8508
|
msgstr ""
|
8521
8509
|
|
8522
|
-
#: ../lib/puppet/type/package.rb:
|
8510
|
+
#: ../lib/puppet/type/package.rb:116 ../lib/puppet/type/package.rb:130
|
8523
8511
|
msgid "Could not update: %{detail}"
|
8524
8512
|
msgstr ""
|
8525
8513
|
|
8526
|
-
#: ../lib/puppet/type/package.rb:
|
8514
|
+
#: ../lib/puppet/type/package.rb:165
|
8527
8515
|
msgid "Could not get latest version: %{detail}"
|
8528
8516
|
msgstr ""
|
8529
8517
|
|
8530
|
-
#: ../lib/puppet/type/package.rb:
|
8518
|
+
#: ../lib/puppet/type/package.rb:265
|
8531
8519
|
msgid "Name must be a String not %{klass}"
|
8532
8520
|
msgstr ""
|
8533
8521
|
|
@@ -8583,11 +8571,11 @@ msgstr ""
|
|
8583
8571
|
msgid "%{value} is not a valid day of the week"
|
8584
8572
|
msgstr ""
|
8585
8573
|
|
8586
|
-
#: ../lib/puppet/type/service.rb:
|
8587
|
-
msgid "Setting enable to
|
8574
|
+
#: ../lib/puppet/type/service.rb:91
|
8575
|
+
msgid "Setting enable to manual is only supported on Microsoft Windows."
|
8588
8576
|
msgstr ""
|
8589
8577
|
|
8590
|
-
#: ../lib/puppet/type/service.rb:
|
8578
|
+
#: ../lib/puppet/type/service.rb:247
|
8591
8579
|
msgid "\"%{value}\" is not a positive integer: the timeout parameter must be specified as a positive integer"
|
8592
8580
|
msgstr ""
|
8593
8581
|
|
@@ -8771,11 +8759,11 @@ msgstr ""
|
|
8771
8759
|
msgid "path may not be nil"
|
8772
8760
|
msgstr ""
|
8773
8761
|
|
8774
|
-
#: ../lib/puppet/util.rb:
|
8762
|
+
#: ../lib/puppet/util.rb:570
|
8775
8763
|
msgid "replace_file requires a block"
|
8776
8764
|
msgstr ""
|
8777
8765
|
|
8778
|
-
#: ../lib/puppet/util.rb:
|
8766
|
+
#: ../lib/puppet/util.rb:574
|
8779
8767
|
msgid "replace_file default_mode: %{default_mode} is invalid"
|
8780
8768
|
msgstr ""
|
8781
8769
|
|
@@ -9087,23 +9075,23 @@ msgstr ""
|
|
9087
9075
|
msgid "%{klass} failed with error %{error_type}: %{detail}"
|
9088
9076
|
msgstr ""
|
9089
9077
|
|
9090
|
-
#: ../lib/puppet/util/execution.rb:
|
9078
|
+
#: ../lib/puppet/util/execution.rb:195
|
9091
9079
|
msgid "Working directory %{cwd} does not exist!"
|
9092
9080
|
msgstr ""
|
9093
9081
|
|
9094
|
-
#: ../lib/puppet/util/execution.rb:
|
9082
|
+
#: ../lib/puppet/util/execution.rb:285
|
9095
9083
|
msgid "Could not get output"
|
9096
9084
|
msgstr ""
|
9097
9085
|
|
9098
|
-
#: ../lib/puppet/util/execution.rb:
|
9086
|
+
#: ../lib/puppet/util/execution.rb:294
|
9099
9087
|
msgid "Execution of '%{str}' returned %{exit_status}: %{output}"
|
9100
9088
|
msgstr ""
|
9101
9089
|
|
9102
|
-
#: ../lib/puppet/util/execution.rb:
|
9090
|
+
#: ../lib/puppet/util/execution.rb:371
|
9103
9091
|
msgid "Could not execute posix command: %{detail}"
|
9104
9092
|
msgstr ""
|
9105
9093
|
|
9106
|
-
#: ../lib/puppet/util/execution.rb:
|
9094
|
+
#: ../lib/puppet/util/execution.rb:419
|
9107
9095
|
msgid "Waiting for output; will sleep %{time_to_sleep} seconds"
|
9108
9096
|
msgstr ""
|
9109
9097
|
|
@@ -9215,7 +9203,7 @@ msgstr ""
|
|
9215
9203
|
msgid "Could not write crontab for %{path}: %{detail}"
|
9216
9204
|
msgstr ""
|
9217
9205
|
|
9218
|
-
#: ../lib/puppet/util/http_proxy.rb:
|
9206
|
+
#: ../lib/puppet/util/http_proxy.rb:206
|
9219
9207
|
msgid "Too many HTTP redirections for %{uri}"
|
9220
9208
|
msgstr ""
|
9221
9209
|
|
@@ -9467,31 +9455,31 @@ msgstr ""
|
|
9467
9455
|
msgid "Caught exception %{klass}:%{error} retrying"
|
9468
9456
|
msgstr ""
|
9469
9457
|
|
9470
|
-
#: ../lib/puppet/util/selinux.rb:
|
9458
|
+
#: ../lib/puppet/util/selinux.rb:67
|
9471
9459
|
msgid "Invalid context to parse: %{context}"
|
9472
9460
|
msgstr ""
|
9473
9461
|
|
9474
|
-
#: ../lib/puppet/util/selinux.rb:
|
9462
|
+
#: ../lib/puppet/util/selinux.rb:79
|
9475
9463
|
msgid "Invalid SELinux parameter type"
|
9476
9464
|
msgstr ""
|
9477
9465
|
|
9478
|
-
#: ../lib/puppet/util/selinux.rb:
|
9466
|
+
#: ../lib/puppet/util/selinux.rb:100
|
9479
9467
|
msgid "Can't set SELinux context on file unless the file already has some kind of context"
|
9480
9468
|
msgstr ""
|
9481
9469
|
|
9482
|
-
#: ../lib/puppet/util/selinux.rb:
|
9470
|
+
#: ../lib/puppet/util/selinux.rb:114
|
9483
9471
|
msgid "set_selinux_context component must be one of :seluser, :selrole, :seltype, or :selrange"
|
9484
9472
|
msgstr ""
|
9485
9473
|
|
9486
|
-
#: ../lib/puppet/util/selinux.rb:
|
9474
|
+
#: ../lib/puppet/util/selinux.rb:125
|
9487
9475
|
msgid "Failed to set SELinux context %{context} on %{file}"
|
9488
9476
|
msgstr ""
|
9489
9477
|
|
9490
|
-
#: ../lib/puppet/util/selinux.rb:
|
9478
|
+
#: ../lib/puppet/util/selinux.rb:176
|
9491
9479
|
msgid "Could not open SELinux category translation file %{path}."
|
9492
9480
|
msgstr ""
|
9493
9481
|
|
9494
|
-
#: ../lib/puppet/util/selinux.rb:
|
9482
|
+
#: ../lib/puppet/util/selinux.rb:243
|
9495
9483
|
msgid "got a relative path in SELinux find_fs: %{path}"
|
9496
9484
|
msgstr ""
|
9497
9485
|
|
@@ -9731,39 +9719,39 @@ msgstr ""
|
|
9731
9719
|
msgid "Failed to open registry key '%{key}\\%{path}'"
|
9732
9720
|
msgstr ""
|
9733
9721
|
|
9734
|
-
#: ../lib/puppet/util/windows/registry.rb:
|
9722
|
+
#: ../lib/puppet/util/windows/registry.rb:128
|
9735
9723
|
msgid "Failed to enumerate %{key} registry keys at index %{index}"
|
9736
9724
|
msgstr ""
|
9737
9725
|
|
9738
|
-
#: ../lib/puppet/util/windows/registry.rb:
|
9726
|
+
#: ../lib/puppet/util/windows/registry.rb:159
|
9739
9727
|
msgid "Failed to enumerate %{key} registry values at index %{index}"
|
9740
9728
|
msgstr ""
|
9741
9729
|
|
9742
|
-
#: ../lib/puppet/util/windows/registry.rb:
|
9730
|
+
#: ../lib/puppet/util/windows/registry.rb:189
|
9743
9731
|
msgid "Failed to query registry %{key} for sizes"
|
9744
9732
|
msgstr ""
|
9745
9733
|
|
9746
|
-
#: ../lib/puppet/util/windows/registry.rb:
|
9734
|
+
#: ../lib/puppet/util/windows/registry.rb:225
|
9747
9735
|
msgid "Type mismatch (expect %{rtype} but %{type} present)"
|
9748
9736
|
msgstr ""
|
9749
9737
|
|
9750
|
-
#: ../lib/puppet/util/windows/registry.rb:
|
9738
|
+
#: ../lib/puppet/util/windows/registry.rb:247
|
9751
9739
|
msgid "Type %{type} is not supported."
|
9752
9740
|
msgstr ""
|
9753
9741
|
|
9754
|
-
#: ../lib/puppet/util/windows/registry.rb:
|
9742
|
+
#: ../lib/puppet/util/windows/registry.rb:252
|
9755
9743
|
msgid "A value in the registry key %{parent_key_name}%{key} is corrupt or invalid"
|
9756
9744
|
msgstr ""
|
9757
9745
|
|
9758
|
-
#: ../lib/puppet/util/windows/registry.rb:
|
9746
|
+
#: ../lib/puppet/util/windows/registry.rb:274
|
9759
9747
|
msgid "Failed to read registry value %{value} at %{key}"
|
9760
9748
|
msgstr ""
|
9761
9749
|
|
9762
|
-
#: ../lib/puppet/util/windows/registry.rb:
|
9750
|
+
#: ../lib/puppet/util/windows/registry.rb:292
|
9763
9751
|
msgid "Failed to delete registry value %{name} at %{key}"
|
9764
9752
|
msgstr ""
|
9765
9753
|
|
9766
|
-
#: ../lib/puppet/util/windows/registry.rb:
|
9754
|
+
#: ../lib/puppet/util/windows/registry.rb:307
|
9767
9755
|
msgid "Failed to delete registry key %{name} at %{key}"
|
9768
9756
|
msgstr ""
|
9769
9757
|
|
@@ -9776,208 +9764,200 @@ msgid "Failed to get volume information"
|
|
9776
9764
|
msgstr ""
|
9777
9765
|
|
9778
9766
|
#. TRANSLATORS 'SYSTEM' is a Windows name and should not be translated
|
9779
|
-
#: ../lib/puppet/util/windows/security.rb:
|
9767
|
+
#: ../lib/puppet/util/windows/security.rb:337
|
9780
9768
|
msgid "Setting control rights for %{path} owner SYSTEM to less than Full Control rights. Setting SYSTEM rights to less than Full Control may have unintented consequences for operations on this file"
|
9781
9769
|
msgstr ""
|
9782
9770
|
|
9783
9771
|
#. TRANSLATORS 'SYSTEM' is a Windows name and should not be translated
|
9784
|
-
#: ../lib/puppet/util/windows/security.rb:
|
9772
|
+
#: ../lib/puppet/util/windows/security.rb:340
|
9785
9773
|
msgid "%{path} owner and group both set to user SYSTEM, but group is not managed directly: SYSTEM user rights will be set to FullControl by group"
|
9786
9774
|
msgstr ""
|
9787
9775
|
|
9788
9776
|
#. TRANSLATORS 'SYSTEM' is a Windows name and should not be translated
|
9789
|
-
#: ../lib/puppet/util/windows/security.rb:
|
9777
|
+
#: ../lib/puppet/util/windows/security.rb:343
|
9790
9778
|
msgid "An attempt to set mode %{mode} on item %{path} would result in the owner, SYSTEM, to have less than Full Control rights. This attempt has been corrected to Full Control"
|
9791
9779
|
msgstr ""
|
9792
9780
|
|
9793
9781
|
#. TRANSLATORS 'SYSTEM' is a Windows name and should not be translated
|
9794
|
-
#: ../lib/puppet/util/windows/security.rb:
|
9782
|
+
#: ../lib/puppet/util/windows/security.rb:353
|
9795
9783
|
msgid "Setting control rights for %{path} group SYSTEM to less than Full Control rights. Setting SYSTEM rights to less than Full Control may have unintented consequences for operations on this file"
|
9796
9784
|
msgstr ""
|
9797
9785
|
|
9798
9786
|
#. TRANSLATORS 'SYSTEM' is a Windows name and should not be translated
|
9799
|
-
#: ../lib/puppet/util/windows/security.rb:
|
9787
|
+
#: ../lib/puppet/util/windows/security.rb:356
|
9800
9788
|
msgid "%{path} owner and group both set to user SYSTEM, but owner is not managed directly: SYSTEM user rights will be set to FullControl by owner"
|
9801
9789
|
msgstr ""
|
9802
9790
|
|
9803
9791
|
#. TRANSLATORS 'SYSTEM' is a Windows name and should not be translated
|
9804
|
-
#: ../lib/puppet/util/windows/security.rb:
|
9792
|
+
#: ../lib/puppet/util/windows/security.rb:359
|
9805
9793
|
msgid "An attempt to set mode %{mode} on item %{path} would result in the group, SYSTEM, to have less than Full Control rights. This attempt has been corrected to Full Control"
|
9806
9794
|
msgstr ""
|
9807
9795
|
|
9808
|
-
#: ../lib/puppet/util/windows/security.rb:
|
9796
|
+
#: ../lib/puppet/util/windows/security.rb:430 ../lib/puppet/util/windows/security.rb:447 ../lib/puppet/util/windows/sid.rb:154 ../lib/puppet/util/windows/sid.rb:216 ../lib/puppet/util/windows/user.rb:43
|
9809
9797
|
msgid "Invalid SID"
|
9810
9798
|
msgstr ""
|
9811
9799
|
|
9812
|
-
#: ../lib/puppet/util/windows/security.rb:
|
9800
|
+
#: ../lib/puppet/util/windows/security.rb:434 ../lib/puppet/util/windows/security.rb:451
|
9813
9801
|
msgid "Failed to add access control entry"
|
9814
9802
|
msgstr ""
|
9815
9803
|
|
9816
|
-
#: ../lib/puppet/util/windows/security.rb:
|
9804
|
+
#: ../lib/puppet/util/windows/security.rb:462 ../lib/puppet/util/windows/security.rb:644
|
9817
9805
|
msgid "Invalid DACL"
|
9818
9806
|
msgstr ""
|
9819
9807
|
|
9820
|
-
#: ../lib/puppet/util/windows/security.rb:
|
9808
|
+
#: ../lib/puppet/util/windows/security.rb:485
|
9821
9809
|
msgid "Unsupported access control entry type: 0x%{type}"
|
9822
9810
|
msgstr ""
|
9823
9811
|
|
9824
|
-
#: ../lib/puppet/util/windows/security.rb:
|
9812
|
+
#: ../lib/puppet/util/windows/security.rb:519
|
9825
9813
|
msgid "Failed to open '%{path}'"
|
9826
9814
|
msgstr ""
|
9827
9815
|
|
9828
|
-
#: ../lib/puppet/util/windows/security.rb:
|
9816
|
+
#: ../lib/puppet/util/windows/security.rb:566
|
9829
9817
|
msgid "Failed to adjust process privileges"
|
9830
9818
|
msgstr ""
|
9831
9819
|
|
9832
|
-
#: ../lib/puppet/util/windows/security.rb:
|
9820
|
+
#: ../lib/puppet/util/windows/security.rb:596
|
9833
9821
|
msgid "Failed to get security information"
|
9834
9822
|
msgstr ""
|
9835
9823
|
|
9836
|
-
#: ../lib/puppet/util/windows/security.rb:
|
9824
|
+
#: ../lib/puppet/util/windows/security.rb:607
|
9837
9825
|
msgid "Failed to get security descriptor control"
|
9838
9826
|
msgstr ""
|
9839
9827
|
|
9840
|
-
#: ../lib/puppet/util/windows/security.rb:
|
9828
|
+
#: ../lib/puppet/util/windows/security.rb:640
|
9841
9829
|
msgid "Failed to initialize ACL"
|
9842
9830
|
msgstr ""
|
9843
9831
|
|
9844
|
-
#: ../lib/puppet/util/windows/security.rb:
|
9832
|
+
#: ../lib/puppet/util/windows/security.rb:679
|
9845
9833
|
msgid "Failed to set security information"
|
9846
9834
|
msgstr ""
|
9847
9835
|
|
9848
|
-
#: ../lib/puppet/util/windows/service.rb:
|
9836
|
+
#: ../lib/puppet/util/windows/service.rb:301
|
9849
9837
|
msgid "Starting the %{service_name} service. Timeout set to: %{timeout} seconds"
|
9850
9838
|
msgstr ""
|
9851
9839
|
|
9852
|
-
#: ../lib/puppet/util/windows/service.rb:
|
9840
|
+
#: ../lib/puppet/util/windows/service.rb:311
|
9853
9841
|
msgid "Failed to start the service"
|
9854
9842
|
msgstr ""
|
9855
9843
|
|
9856
|
-
#: ../lib/puppet/util/windows/service.rb:
|
9844
|
+
#: ../lib/puppet/util/windows/service.rb:315
|
9857
9845
|
msgid "Successfully started the %{service_name} service"
|
9858
9846
|
msgstr ""
|
9859
9847
|
|
9860
|
-
#: ../lib/puppet/util/windows/service.rb:
|
9848
|
+
#: ../lib/puppet/util/windows/service.rb:324
|
9861
9849
|
msgid "Stopping the %{service_name} service. Timeout set to: %{timeout} seconds"
|
9862
9850
|
msgstr ""
|
9863
9851
|
|
9864
|
-
#: ../lib/puppet/util/windows/service.rb:
|
9852
|
+
#: ../lib/puppet/util/windows/service.rb:332
|
9865
9853
|
msgid "Successfully stopped the %{service_name} service"
|
9866
9854
|
msgstr ""
|
9867
9855
|
|
9868
|
-
#: ../lib/puppet/util/windows/service.rb:
|
9856
|
+
#: ../lib/puppet/util/windows/service.rb:341
|
9869
9857
|
msgid "Resuming the %{service_name} service. Timeout set to: %{timeout} seconds"
|
9870
9858
|
msgstr ""
|
9871
9859
|
|
9872
|
-
#: ../lib/puppet/util/windows/service.rb:
|
9860
|
+
#: ../lib/puppet/util/windows/service.rb:357
|
9873
9861
|
msgid "Successfully resumed the %{service_name} service"
|
9874
9862
|
msgstr ""
|
9875
9863
|
|
9876
|
-
#: ../lib/puppet/util/windows/service.rb:
|
9864
|
+
#: ../lib/puppet/util/windows/service.rb:373
|
9877
9865
|
msgid "Unknown Service state '%{current_state}' for '%{service_name}'"
|
9878
9866
|
msgstr ""
|
9879
9867
|
|
9880
|
-
#: ../lib/puppet/util/windows/service.rb:
|
9868
|
+
#: ../lib/puppet/util/windows/service.rb:391
|
9881
9869
|
msgid "Unknown start type '%{start_type}' for '%{service_name}'"
|
9882
9870
|
msgstr ""
|
9883
9871
|
|
9884
|
-
#: ../lib/puppet/util/windows/service.rb:
|
9872
|
+
#: ../lib/puppet/util/windows/service.rb:406
|
9885
9873
|
msgid "Unknown start type %{start_type}"
|
9886
9874
|
msgstr ""
|
9887
9875
|
|
9888
|
-
#: ../lib/puppet/util/windows/service.rb:
|
9876
|
+
#: ../lib/puppet/util/windows/service.rb:427
|
9889
9877
|
msgid "Failed to update service configuration"
|
9890
9878
|
msgstr ""
|
9891
9879
|
|
9892
|
-
#: ../lib/puppet/util/windows/service.rb:
|
9880
|
+
#: ../lib/puppet/util/windows/service.rb:487
|
9893
9881
|
msgid "Failed to fetch services"
|
9894
9882
|
msgstr ""
|
9895
9883
|
|
9896
|
-
#: ../lib/puppet/util/windows/service.rb:
|
9884
|
+
#: ../lib/puppet/util/windows/service.rb:536
|
9897
9885
|
msgid "Failed to open a handle to the service"
|
9898
9886
|
msgstr ""
|
9899
9887
|
|
9900
|
-
#: ../lib/puppet/util/windows/service.rb:
|
9888
|
+
#: ../lib/puppet/util/windows/service.rb:553
|
9901
9889
|
msgid "Failed to open a handle to the service control manager"
|
9902
9890
|
msgstr ""
|
9903
9891
|
|
9904
|
-
#: ../lib/puppet/util/windows/service.rb:
|
9892
|
+
#: ../lib/puppet/util/windows/service.rb:576
|
9905
9893
|
msgid "The service is already in the %{final_state} state. No further work needs to be done."
|
9906
9894
|
msgstr ""
|
9907
9895
|
|
9908
|
-
#: ../lib/puppet/util/windows/service.rb:
|
9896
|
+
#: ../lib/puppet/util/windows/service.rb:588
|
9909
9897
|
msgid "The service must be in one of the %{valid_initial_states} states to perform this transition. It is currently in the %{current_state} state."
|
9910
9898
|
msgstr ""
|
9911
9899
|
|
9912
|
-
#: ../lib/puppet/util/windows/service.rb:
|
9900
|
+
#: ../lib/puppet/util/windows/service.rb:599
|
9913
9901
|
msgid "There is already a pending transition to the %{final_state} state for the %{service_name} service."
|
9914
9902
|
msgstr ""
|
9915
9903
|
|
9916
|
-
#: ../lib/puppet/util/windows/service.rb:
|
9904
|
+
#: ../lib/puppet/util/windows/service.rb:615
|
9917
9905
|
msgid "The service is in the %{pending_state} state, which is an unsafe pending state."
|
9918
9906
|
msgstr ""
|
9919
9907
|
|
9920
|
-
#: ../lib/puppet/util/windows/service.rb:
|
9908
|
+
#: ../lib/puppet/util/windows/service.rb:620
|
9921
9909
|
msgid "Transitioning the %{service_name} service from %{initial_state} to %{final_state}"
|
9922
9910
|
msgstr ""
|
9923
9911
|
|
9924
|
-
#: ../lib/puppet/util/windows/service.rb:
|
9912
|
+
#: ../lib/puppet/util/windows/service.rb:624
|
9925
9913
|
msgid "Waiting for the transition to finish"
|
9926
9914
|
msgstr ""
|
9927
9915
|
|
9928
|
-
#: ../lib/puppet/util/windows/service.rb:
|
9916
|
+
#: ../lib/puppet/util/windows/service.rb:629
|
9929
9917
|
msgid "Failed to transition the %{service_name} service to the %{final_state} state. Detail: %{detail}"
|
9930
9918
|
msgstr ""
|
9931
9919
|
|
9932
|
-
#: ../lib/puppet/util/windows/service.rb:
|
9920
|
+
#: ../lib/puppet/util/windows/service.rb:668 ../lib/puppet/util/windows/service.rb:704
|
9933
9921
|
msgid "Service query failed"
|
9934
9922
|
msgstr ""
|
9935
9923
|
|
9936
|
-
#: ../lib/puppet/util/windows/service.rb:
|
9937
|
-
msgid "Service query for %{parameter_name} failed"
|
9938
|
-
msgstr ""
|
9939
|
-
|
9940
|
-
#: ../lib/puppet/util/windows/service.rb:818
|
9941
|
-
msgid "Failed to update service %{change} configuration"
|
9942
|
-
msgstr ""
|
9943
|
-
|
9944
|
-
#: ../lib/puppet/util/windows/service.rb:845
|
9924
|
+
#: ../lib/puppet/util/windows/service.rb:721
|
9945
9925
|
msgid "Failed to send the %{control_signal} signal to the service. Its current state is %{current_state}. Reason for failure:"
|
9946
9926
|
msgstr ""
|
9947
9927
|
|
9948
|
-
#: ../lib/puppet/util/windows/service.rb:
|
9928
|
+
#: ../lib/puppet/util/windows/service.rb:756
|
9949
9929
|
msgid "The service transitioned to the %{pending_state} state."
|
9950
9930
|
msgstr ""
|
9951
9931
|
|
9952
|
-
#: ../lib/puppet/util/windows/service.rb:
|
9932
|
+
#: ../lib/puppet/util/windows/service.rb:770
|
9953
9933
|
msgid "Timed out while waiting for the service to transition from %{initial_state} to %{final_state} OR from %{initial_state} to %{pending_state} to %{final_state}. The service's current state is %{current_state}."
|
9954
9934
|
msgstr ""
|
9955
9935
|
|
9956
|
-
#: ../lib/puppet/util/windows/service.rb:
|
9936
|
+
#: ../lib/puppet/util/windows/service.rb:785
|
9957
9937
|
msgid "Waiting for the pending transition to the %{final_state} state to finish."
|
9958
9938
|
msgstr ""
|
9959
9939
|
|
9960
|
-
#: ../lib/puppet/util/windows/service.rb:
|
9940
|
+
#: ../lib/puppet/util/windows/service.rb:799
|
9961
9941
|
msgid "Unexpected transition to the %{current_state} state while waiting for the pending transition from %{pending_state} to %{final_state} to finish."
|
9962
9942
|
msgstr ""
|
9963
9943
|
|
9964
|
-
#: ../lib/puppet/util/windows/service.rb:
|
9944
|
+
#: ../lib/puppet/util/windows/service.rb:813
|
9965
9945
|
msgid "Timed out while waiting for the pending transition from %{pending_state} to %{final_state} to finish. The current state is %{current_state}."
|
9966
9946
|
msgstr ""
|
9967
9947
|
|
9968
|
-
#: ../lib/puppet/util/windows/sid.rb:
|
9948
|
+
#: ../lib/puppet/util/windows/sid.rb:93
|
9969
9949
|
msgid "Octet string must be an array of bytes"
|
9970
9950
|
msgstr ""
|
9971
9951
|
|
9972
|
-
#: ../lib/puppet/util/windows/sid.rb:
|
9952
|
+
#: ../lib/puppet/util/windows/sid.rb:160
|
9973
9953
|
msgid "Failed to convert binary SID"
|
9974
9954
|
msgstr ""
|
9975
9955
|
|
9976
|
-
#: ../lib/puppet/util/windows/sid.rb:
|
9956
|
+
#: ../lib/puppet/util/windows/sid.rb:165
|
9977
9957
|
msgid "ConvertSidToStringSidW failed to allocate buffer for sid"
|
9978
9958
|
msgstr ""
|
9979
9959
|
|
9980
|
-
#: ../lib/puppet/util/windows/sid.rb:
|
9960
|
+
#: ../lib/puppet/util/windows/sid.rb:185
|
9981
9961
|
msgid "Failed to convert string SID: %{string_sid}"
|
9982
9962
|
msgstr ""
|
9983
9963
|
|
@@ -10005,72 +9985,72 @@ msgstr ""
|
|
10005
9985
|
msgid "Puppet::Util::Yaml.load_file is deprecated. Use safe_load_file instead."
|
10006
9986
|
msgstr ""
|
10007
9987
|
|
10008
|
-
#: ../lib/puppet/x509/cert_provider.rb:
|
9988
|
+
#: ../lib/puppet/x509/cert_provider.rb:35
|
10009
9989
|
msgid "Failed to save CA certificates to '%{capath}'"
|
10010
9990
|
msgstr ""
|
10011
9991
|
|
10012
|
-
#: ../lib/puppet/x509/cert_provider.rb:
|
9992
|
+
#: ../lib/puppet/x509/cert_provider.rb:48
|
10013
9993
|
msgid "The CA certificates are missing from '%{path}'"
|
10014
9994
|
msgstr ""
|
10015
9995
|
|
10016
|
-
#: ../lib/puppet/x509/cert_provider.rb:
|
9996
|
+
#: ../lib/puppet/x509/cert_provider.rb:52
|
10017
9997
|
msgid "Failed to load CA certificates from '%{capath}'"
|
10018
9998
|
msgstr ""
|
10019
9999
|
|
10020
10000
|
#. TRANSLATORS 'PEM' is an acronym and shouldn't be translated
|
10021
|
-
#: ../lib/puppet/x509/cert_provider.rb:
|
10001
|
+
#: ../lib/puppet/x509/cert_provider.rb:63
|
10022
10002
|
msgid "Failed to parse CA certificates as PEM"
|
10023
10003
|
msgstr ""
|
10024
10004
|
|
10025
|
-
#: ../lib/puppet/x509/cert_provider.rb:
|
10005
|
+
#: ../lib/puppet/x509/cert_provider.rb:78
|
10026
10006
|
msgid "Failed to save CRLs to '%{crlpath}'"
|
10027
10007
|
msgstr ""
|
10028
10008
|
|
10029
|
-
#: ../lib/puppet/x509/cert_provider.rb:
|
10009
|
+
#: ../lib/puppet/x509/cert_provider.rb:91
|
10030
10010
|
msgid "The CRL is missing from '%{path}'"
|
10031
10011
|
msgstr ""
|
10032
10012
|
|
10033
|
-
#: ../lib/puppet/x509/cert_provider.rb:
|
10013
|
+
#: ../lib/puppet/x509/cert_provider.rb:95
|
10034
10014
|
msgid "Failed to load CRLs from '%{crlpath}'"
|
10035
10015
|
msgstr ""
|
10036
10016
|
|
10037
10017
|
#. TRANSLATORS 'PEM' is an acronym and shouldn't be translated
|
10038
|
-
#: ../lib/puppet/x509/cert_provider.rb:
|
10018
|
+
#: ../lib/puppet/x509/cert_provider.rb:106
|
10039
10019
|
msgid "Failed to parse CRLs as PEM"
|
10040
10020
|
msgstr ""
|
10041
10021
|
|
10042
|
-
#: ../lib/puppet/x509/cert_provider.rb:
|
10022
|
+
#: ../lib/puppet/x509/cert_provider.rb:152
|
10043
10023
|
msgid "Failed to save private key for '%{name}'"
|
10044
10024
|
msgstr ""
|
10045
10025
|
|
10046
|
-
#: ../lib/puppet/x509/cert_provider.rb:
|
10026
|
+
#: ../lib/puppet/x509/cert_provider.rb:171
|
10047
10027
|
msgid "The private key is missing from '%{path}'"
|
10048
10028
|
msgstr ""
|
10049
10029
|
|
10050
|
-
#: ../lib/puppet/x509/cert_provider.rb:
|
10030
|
+
#: ../lib/puppet/x509/cert_provider.rb:175
|
10051
10031
|
msgid "Failed to load private key for '%{name}'"
|
10052
10032
|
msgstr ""
|
10053
10033
|
|
10054
|
-
#: ../lib/puppet/x509/cert_provider.rb:
|
10034
|
+
#: ../lib/puppet/x509/cert_provider.rb:233
|
10055
10035
|
msgid "Failed to save client certificate for '%{name}'"
|
10056
10036
|
msgstr ""
|
10057
10037
|
|
10058
|
-
#: ../lib/puppet/x509/cert_provider.rb:
|
10038
|
+
#: ../lib/puppet/x509/cert_provider.rb:248
|
10059
10039
|
msgid "The client certificate is missing from '%{path}'"
|
10060
10040
|
msgstr ""
|
10061
10041
|
|
10062
|
-
#: ../lib/puppet/x509/cert_provider.rb:
|
10042
|
+
#: ../lib/puppet/x509/cert_provider.rb:252
|
10063
10043
|
msgid "Failed to load client certificate for '%{name}'"
|
10064
10044
|
msgstr ""
|
10065
10045
|
|
10066
|
-
#: ../lib/puppet/x509/cert_provider.rb:
|
10046
|
+
#: ../lib/puppet/x509/cert_provider.rb:298
|
10067
10047
|
msgid "Failed to save certificate request for '%{name}'"
|
10068
10048
|
msgstr ""
|
10069
10049
|
|
10070
|
-
#: ../lib/puppet/x509/cert_provider.rb:
|
10050
|
+
#: ../lib/puppet/x509/cert_provider.rb:313
|
10071
10051
|
msgid "Failed to load certificate request for '%{name}'"
|
10072
10052
|
msgstr ""
|
10073
10053
|
|
10074
|
-
#: ../lib/puppet/x509/cert_provider.rb:
|
10054
|
+
#: ../lib/puppet/x509/cert_provider.rb:324
|
10075
10055
|
msgid "Failed to delete certificate request for '%{name}'"
|
10076
10056
|
msgstr ""
|