pdk 2.4.0 → 2.5.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +1336 -1329
- data/LICENSE +201 -201
- data/README.md +163 -163
- data/exe/pdk +10 -10
- data/lib/pdk/analytics/client/google_analytics.rb +143 -143
- data/lib/pdk/analytics/client/noop.rb +25 -25
- data/lib/pdk/analytics/util.rb +19 -19
- data/lib/pdk/analytics.rb +30 -30
- data/lib/pdk/answer_file.rb +12 -12
- data/lib/pdk/bolt.rb +19 -19
- data/lib/pdk/cli/build.rb +82 -82
- data/lib/pdk/cli/bundle.rb +48 -48
- data/lib/pdk/cli/config/get.rb +26 -26
- data/lib/pdk/cli/config.rb +22 -22
- data/lib/pdk/cli/console.rb +148 -148
- data/lib/pdk/cli/convert.rb +52 -52
- data/lib/pdk/cli/env.rb +52 -52
- data/lib/pdk/cli/errors.rb +25 -25
- data/lib/pdk/cli/exec/command.rb +293 -293
- data/lib/pdk/cli/exec/interactive_command.rb +114 -114
- data/lib/pdk/cli/exec.rb +84 -84
- data/lib/pdk/cli/exec_group.rb +104 -104
- data/lib/pdk/cli/get/config.rb +24 -24
- data/lib/pdk/cli/get.rb +20 -20
- data/lib/pdk/cli/module/build.rb +12 -12
- data/lib/pdk/cli/module/generate.rb +47 -47
- data/lib/pdk/cli/module.rb +14 -14
- data/lib/pdk/cli/new/class.rb +32 -32
- data/lib/pdk/cli/new/defined_type.rb +32 -32
- data/lib/pdk/cli/new/fact.rb +29 -29
- data/lib/pdk/cli/new/function.rb +29 -29
- data/lib/pdk/cli/new/module.rb +53 -53
- data/lib/pdk/cli/new/provider.rb +29 -29
- data/lib/pdk/cli/new/task.rb +34 -34
- data/lib/pdk/cli/new/test.rb +52 -52
- data/lib/pdk/cli/new/transport.rb +27 -27
- data/lib/pdk/cli/new.rb +21 -21
- data/lib/pdk/cli/release/prep.rb +39 -39
- data/lib/pdk/cli/release/publish.rb +50 -50
- data/lib/pdk/cli/release.rb +194 -194
- data/lib/pdk/cli/remove/config.rb +80 -80
- data/lib/pdk/cli/remove.rb +20 -20
- data/lib/pdk/cli/set/config.rb +119 -119
- data/lib/pdk/cli/set.rb +20 -20
- data/lib/pdk/cli/test/unit.rb +90 -90
- data/lib/pdk/cli/test.rb +11 -11
- data/lib/pdk/cli/update.rb +64 -64
- data/lib/pdk/cli/util/command_redirector.rb +27 -27
- data/lib/pdk/cli/util/interview.rb +72 -72
- data/lib/pdk/cli/util/option_normalizer.rb +55 -55
- data/lib/pdk/cli/util/option_validator.rb +68 -68
- data/lib/pdk/cli/util/spinner.rb +13 -13
- data/lib/pdk/cli/util/update_manager_printer.rb +82 -82
- data/lib/pdk/cli/util.rb +305 -305
- data/lib/pdk/cli/validate.rb +116 -116
- data/lib/pdk/cli.rb +175 -175
- data/lib/pdk/config/analytics_schema.json +26 -26
- data/lib/pdk/config/errors.rb +5 -5
- data/lib/pdk/config/ini_file.rb +183 -183
- data/lib/pdk/config/ini_file_setting.rb +39 -39
- data/lib/pdk/config/json.rb +34 -34
- data/lib/pdk/config/json_schema_namespace.rb +142 -142
- data/lib/pdk/config/json_schema_setting.rb +53 -53
- data/lib/pdk/config/json_with_schema.rb +49 -49
- data/lib/pdk/config/namespace.rb +354 -354
- data/lib/pdk/config/setting.rb +135 -135
- data/lib/pdk/config/validator.rb +31 -31
- data/lib/pdk/config/yaml.rb +46 -46
- data/lib/pdk/config/yaml_with_schema.rb +59 -59
- data/lib/pdk/config.rb +390 -390
- data/lib/pdk/context/control_repo.rb +60 -60
- data/lib/pdk/context/module.rb +28 -28
- data/lib/pdk/context/none.rb +22 -22
- data/lib/pdk/context.rb +99 -99
- data/lib/pdk/control_repo.rb +90 -90
- data/lib/pdk/generate/defined_type.rb +43 -43
- data/lib/pdk/generate/fact.rb +25 -25
- data/lib/pdk/generate/function.rb +48 -48
- data/lib/pdk/generate/module.rb +352 -352
- data/lib/pdk/generate/provider.rb +28 -28
- data/lib/pdk/generate/puppet_class.rb +43 -43
- data/lib/pdk/generate/puppet_object.rb +232 -232
- data/lib/pdk/generate/task.rb +68 -68
- data/lib/pdk/generate/transport.rb +33 -33
- data/lib/pdk/generate.rb +24 -24
- data/lib/pdk/i18n.rb +4 -4
- data/lib/pdk/logger.rb +45 -45
- data/lib/pdk/module/build.rb +322 -322
- data/lib/pdk/module/convert.rb +296 -296
- data/lib/pdk/module/metadata.rb +202 -202
- data/lib/pdk/module/release.rb +260 -260
- data/lib/pdk/module/update.rb +131 -131
- data/lib/pdk/module/update_manager.rb +227 -227
- data/lib/pdk/module.rb +30 -30
- data/lib/pdk/report/event.rb +370 -370
- data/lib/pdk/report.rb +121 -121
- data/lib/pdk/template/fetcher/git.rb +85 -85
- data/lib/pdk/template/fetcher/local.rb +28 -28
- data/lib/pdk/template/fetcher.rb +98 -98
- data/lib/pdk/template/renderer/v1/legacy_template_dir.rb +116 -116
- data/lib/pdk/template/renderer/v1/renderer.rb +132 -132
- data/lib/pdk/template/renderer/v1/template_file.rb +102 -102
- data/lib/pdk/template/renderer/v1.rb +25 -25
- data/lib/pdk/template/renderer.rb +96 -96
- data/lib/pdk/template/template_dir.rb +67 -67
- data/lib/pdk/template.rb +59 -59
- data/lib/pdk/tests/unit.rb +252 -252
- data/lib/pdk/util/bundler.rb +259 -259
- data/lib/pdk/util/changelog_generator.rb +137 -137
- data/lib/pdk/util/env.rb +47 -47
- data/lib/pdk/util/filesystem.rb +138 -138
- data/lib/pdk/util/git.rb +179 -179
- data/lib/pdk/util/json_finder.rb +85 -85
- data/lib/pdk/util/puppet_strings.rb +125 -125
- data/lib/pdk/util/puppet_version.rb +266 -266
- data/lib/pdk/util/ruby_version.rb +179 -179
- data/lib/pdk/util/template_uri.rb +295 -295
- data/lib/pdk/util/vendored_file.rb +93 -93
- data/lib/pdk/util/version.rb +43 -43
- data/lib/pdk/util/windows/api_types.rb +82 -82
- data/lib/pdk/util/windows/file.rb +36 -36
- data/lib/pdk/util/windows/process.rb +79 -79
- data/lib/pdk/util/windows/string.rb +16 -16
- data/lib/pdk/util/windows.rb +15 -15
- data/lib/pdk/util.rb +278 -278
- data/lib/pdk/validate/control_repo/control_repo_validator_group.rb +23 -23
- data/lib/pdk/validate/control_repo/environment_conf_validator.rb +98 -98
- data/lib/pdk/validate/external_command_validator.rb +208 -208
- data/lib/pdk/validate/internal_ruby_validator.rb +100 -100
- data/lib/pdk/validate/invokable_validator.rb +228 -228
- data/lib/pdk/validate/metadata/metadata_json_lint_validator.rb +86 -86
- data/lib/pdk/validate/metadata/metadata_syntax_validator.rb +78 -78
- data/lib/pdk/validate/metadata/metadata_validator_group.rb +20 -20
- data/lib/pdk/validate/puppet/puppet_epp_validator.rb +133 -133
- data/lib/pdk/validate/puppet/puppet_lint_validator.rb +66 -66
- data/lib/pdk/validate/puppet/puppet_syntax_validator.rb +137 -137
- data/lib/pdk/validate/puppet/puppet_validator_group.rb +21 -21
- data/lib/pdk/validate/ruby/ruby_rubocop_validator.rb +80 -80
- data/lib/pdk/validate/ruby/ruby_validator_group.rb +19 -19
- data/lib/pdk/validate/tasks/tasks_metadata_lint_validator.rb +88 -88
- data/lib/pdk/validate/tasks/tasks_name_validator.rb +50 -50
- data/lib/pdk/validate/tasks/tasks_validator_group.rb +20 -20
- data/lib/pdk/validate/validator.rb +118 -118
- data/lib/pdk/validate/validator_group.rb +104 -104
- data/lib/pdk/validate/yaml/yaml_syntax_validator.rb +95 -95
- data/lib/pdk/validate/yaml/yaml_validator_group.rb +19 -19
- data/lib/pdk/validate.rb +94 -94
- data/lib/pdk/version.rb +4 -4
- data/lib/pdk.rb +76 -76
- data/locales/config.yaml +21 -21
- data/locales/pdk.pot +2111 -2094
- metadata +3 -3
data/locales/pdk.pot
CHANGED
@@ -1,2094 +1,2111 @@
|
|
1
|
-
# SOME DESCRIPTIVE TITLE.
|
2
|
-
# Copyright (C)
|
3
|
-
# This file is distributed under the same license as the puppet development kit package.
|
4
|
-
# FIRST AUTHOR <EMAIL@ADDRESS>,
|
5
|
-
#
|
6
|
-
#, fuzzy
|
7
|
-
msgid ""
|
8
|
-
msgstr ""
|
9
|
-
"Project-Id-Version: puppet development kit
|
10
|
-
"\n"
|
11
|
-
"Report-Msgid-Bugs-To: docs@puppet.com\n"
|
12
|
-
"POT-Creation-Date:
|
13
|
-
"PO-Revision-Date:
|
14
|
-
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
15
|
-
"Language-Team: LANGUAGE <LL@li.org>\n"
|
16
|
-
"Language: \n"
|
17
|
-
"MIME-Version: 1.0\n"
|
18
|
-
"Content-Type: text/plain; charset=UTF-8\n"
|
19
|
-
"Content-Transfer-Encoding: 8bit\n"
|
20
|
-
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
|
21
|
-
|
22
|
-
#: ../lib/pdk/analytics/client/google_analytics.rb:45 ../lib/pdk/analytics/client/google_analytics.rb:60
|
23
|
-
msgid "Unknown analytics key '%{key}'"
|
24
|
-
msgstr ""
|
25
|
-
|
26
|
-
#: ../lib/pdk/cli.rb:
|
27
|
-
msgid "Support for Ruby versions older than 2.4 will be dropped in the future PDK 2.0.0 release. We recommend updating your Ruby installation to ensure that you can continue using the latest version of PDK."
|
28
|
-
msgstr ""
|
29
|
-
|
30
|
-
#: ../lib/pdk/cli.rb:
|
31
|
-
msgid "Specifies the URL to the template to use when creating new modules or classes. (default: %{default_url})"
|
32
|
-
msgstr ""
|
33
|
-
|
34
|
-
#: ../lib/pdk/cli.rb:
|
35
|
-
msgid "Specifies the template git branch or tag to use when creating new modules or classes."
|
36
|
-
msgstr ""
|
37
|
-
|
38
|
-
#: ../lib/pdk/cli.rb:
|
39
|
-
msgid "When specified, skips interactive querying of metadata."
|
40
|
-
msgstr ""
|
41
|
-
|
42
|
-
#: ../lib/pdk/cli.rb:
|
43
|
-
msgid "When specified, interactive querying of metadata will include all optional questions."
|
44
|
-
msgstr ""
|
45
|
-
|
46
|
-
#: ../lib/pdk/cli.rb:
|
47
|
-
msgid "Puppet version to run tests or validations against."
|
48
|
-
msgstr ""
|
49
|
-
|
50
|
-
#: ../lib/pdk/cli.rb:
|
51
|
-
msgid "Puppet Enterprise version to run tests or validations against."
|
52
|
-
msgstr ""
|
53
|
-
|
54
|
-
#: ../lib/pdk/cli.rb:
|
55
|
-
msgid "When specified, PDK will validate or test against the current Puppet source from github.com. To use this option, you must have network access to https://github.com."
|
56
|
-
msgstr ""
|
57
|
-
|
58
|
-
#: ../lib/pdk/cli.rb:
|
59
|
-
msgid "pdk command [options]"
|
60
|
-
msgstr ""
|
61
|
-
|
62
|
-
#: ../lib/pdk/cli.rb:
|
63
|
-
msgid "Puppet Development Kit"
|
64
|
-
msgstr ""
|
65
|
-
|
66
|
-
#: ../lib/pdk/cli.rb:
|
67
|
-
msgid "The shortest path to better modules."
|
68
|
-
msgstr ""
|
69
|
-
|
70
|
-
#: ../lib/pdk/cli.rb:
|
71
|
-
msgid "Show version of pdk."
|
72
|
-
msgstr ""
|
73
|
-
|
74
|
-
#: ../lib/pdk/cli.rb:
|
75
|
-
msgid "Show help for this command."
|
76
|
-
msgstr ""
|
77
|
-
|
78
|
-
#: ../lib/pdk/cli.rb:
|
79
|
-
msgid "Specify desired output format. Valid formats are '%{available_formats}'. You may also specify a file to which the formatted output is sent, for example: '--format=junit:report.xml'. This option may be specified multiple times if each option specifies a distinct target file."
|
80
|
-
msgstr ""
|
81
|
-
|
82
|
-
#: ../lib/pdk/cli.rb:
|
83
|
-
msgid "Enable debug output."
|
84
|
-
msgstr ""
|
85
|
-
|
86
|
-
#: ../lib/pdk/cli/build.rb:4
|
87
|
-
msgid "build [options]"
|
88
|
-
msgstr ""
|
89
|
-
|
90
|
-
#: ../lib/pdk/cli/build.rb:5
|
91
|
-
msgid "Builds a package from the module that can be published to the Puppet Forge."
|
92
|
-
msgstr ""
|
93
|
-
|
94
|
-
#: ../lib/pdk/cli/build.rb:8
|
95
|
-
msgid "The target directory where you want PDK to write the package."
|
96
|
-
msgstr ""
|
97
|
-
|
98
|
-
#: ../lib/pdk/cli/build.rb:11
|
99
|
-
msgid "Skips the prompts and builds the module package."
|
100
|
-
msgstr ""
|
101
|
-
|
102
|
-
#: ../lib/pdk/cli/build.rb:20
|
103
|
-
msgid "`pdk build` can only be run from inside a valid module with a metadata.json."
|
104
|
-
msgstr ""
|
105
|
-
|
106
|
-
#: ../lib/pdk/cli/build.rb:33 ../lib/pdk/cli/release.rb:
|
107
|
-
msgid "This module is missing the following fields in the metadata.json: %{fields}. These missing fields may affect the visibility of the module on the Forge."
|
108
|
-
msgstr ""
|
109
|
-
|
110
|
-
#: ../lib/pdk/cli/build.rb:49
|
111
|
-
msgid "The file '%{package}' already exists."
|
112
|
-
msgstr ""
|
113
|
-
|
114
|
-
#: ../lib/pdk/cli/build.rb:51
|
115
|
-
msgid "Overwrite?"
|
116
|
-
msgstr ""
|
117
|
-
|
118
|
-
#: ../lib/pdk/cli/build.rb:52 ../lib/pdk/cli/build.rb:63 ../lib/pdk/cli/release.rb:
|
119
|
-
msgid "Build cancelled; exiting."
|
120
|
-
msgstr ""
|
121
|
-
|
122
|
-
#: ../lib/pdk/cli/build.rb:58 ../lib/pdk/cli/release.rb:
|
123
|
-
msgid "This module is not compatible with PDK, so PDK can not validate or test this build. Unvalidated modules may have errors when uploading to the Forge. To make this module PDK compatible and use validate features, cancel the build and run `pdk convert`."
|
124
|
-
msgstr ""
|
125
|
-
|
126
|
-
#: ../lib/pdk/cli/build.rb:62 ../lib/pdk/cli/release.rb:
|
127
|
-
msgid "Continue build without converting?"
|
128
|
-
msgstr ""
|
129
|
-
|
130
|
-
#: ../lib/pdk/cli/build.rb:69
|
131
|
-
msgid "Building %{module_name} version %{module_version}"
|
132
|
-
msgstr ""
|
133
|
-
|
134
|
-
#: ../lib/pdk/cli/build.rb:76
|
135
|
-
msgid "Build of %{package_name} has completed successfully. Built package can be found here: %{package_path}"
|
136
|
-
msgstr ""
|
137
|
-
|
138
|
-
#: ../lib/pdk/cli/bundle.rb:4
|
139
|
-
msgid "bundle [bundler_options]"
|
140
|
-
msgstr ""
|
141
|
-
|
142
|
-
#: ../lib/pdk/cli/bundle.rb:5
|
143
|
-
msgid "(Experimental) Command pass-through to bundler"
|
144
|
-
msgstr ""
|
145
|
-
|
146
|
-
#: ../lib/pdk/cli/bundle.rb:6
|
147
|
-
msgid ""
|
148
|
-
"[experimental] For advanced users, pdk bundle runs arbitrary commands in the bundler environment that pdk manages.\n"
|
149
|
-
"Careless use of this command can lead to errors that pdk can't help recover from.\n"
|
150
|
-
msgstr ""
|
151
|
-
|
152
|
-
#: ../lib/pdk/cli/bundle.rb:18
|
153
|
-
msgid "`pdk bundle` can only be run from inside a valid module directory."
|
154
|
-
msgstr ""
|
155
|
-
|
156
|
-
#: ../lib/pdk/cli/config.rb:4
|
157
|
-
msgid "config [subcommand] [options]"
|
158
|
-
msgstr ""
|
159
|
-
|
160
|
-
#: ../lib/pdk/cli/config.rb:5
|
161
|
-
msgid "(Deprecated) Configure the Puppet Development Kit."
|
162
|
-
msgstr ""
|
163
|
-
|
164
|
-
#: ../lib/pdk/cli/config.rb:9
|
165
|
-
msgid "The 'pdk config' command is deprecated, please use 'pdk get config' and 'pdk set config' instead."
|
166
|
-
msgstr ""
|
167
|
-
|
168
|
-
#: ../lib/pdk/cli/config/get.rb:4
|
169
|
-
msgid "config get [name]"
|
170
|
-
msgstr ""
|
171
|
-
|
172
|
-
#: ../lib/pdk/cli/config/get.rb:5
|
173
|
-
msgid "(Deprecated) Retrieve the configuration for <name>. If not specified, retrieve all configuration settings"
|
174
|
-
msgstr ""
|
175
|
-
|
176
|
-
#: ../lib/pdk/cli/config/get.rb:8
|
177
|
-
msgid "The 'pdk config get' command is deprecated, please use 'pdk get config' instead."
|
178
|
-
msgstr ""
|
179
|
-
|
180
|
-
#: ../lib/pdk/cli/config/get.rb:14 ../lib/pdk/cli/get/config.rb:12
|
181
|
-
msgid "Configuration item '%{name}' does not exist"
|
182
|
-
msgstr ""
|
183
|
-
|
184
|
-
#: ../lib/pdk/cli/config/get.rb:19 ../lib/pdk/cli/get/config.rb:17
|
185
|
-
msgid "%{value}"
|
186
|
-
msgstr ""
|
187
|
-
|
188
|
-
#: ../lib/pdk/cli/config/get.rb:23 ../lib/pdk/cli/get/config.rb:21 ../lib/pdk/cli/remove/config.rb:63 ../lib/pdk/cli/set/config.rb:99
|
189
|
-
msgid "%{name}=%{value}"
|
190
|
-
msgstr ""
|
191
|
-
|
192
|
-
#: ../lib/pdk/cli/console.rb:4
|
193
|
-
msgid "console [console_options]"
|
194
|
-
msgstr ""
|
195
|
-
|
196
|
-
#: ../lib/pdk/cli/console.rb:5
|
197
|
-
msgid "(Experimental) Start a session of the puppet debugger console."
|
198
|
-
msgstr ""
|
199
|
-
|
200
|
-
#: ../lib/pdk/cli/console.rb:7
|
201
|
-
msgid ""
|
202
|
-
"The pdk console runs a interactive session of the puppet debugger tool to test out snippets of code, run\n"
|
203
|
-
"language evaluations, datatype prototyping and much more. A virtual playground for your puppet code!\n"
|
204
|
-
"For usage details see the puppet debugger docs at https://docs.puppet-debugger.com.\n"
|
205
|
-
"\n"
|
206
|
-
msgstr ""
|
207
|
-
|
208
|
-
#: ../lib/pdk/cli/console.rb:26
|
209
|
-
msgid "Console can only be run from inside a valid module directory"
|
210
|
-
msgstr ""
|
211
|
-
|
212
|
-
#: ../lib/pdk/cli/console.rb:89
|
213
|
-
msgid "Module fixtures not found, please run pdk bundle exec rake spec_prep."
|
214
|
-
msgstr ""
|
215
|
-
|
216
|
-
#: ../lib/pdk/cli/convert.rb:4
|
217
|
-
msgid "convert [options]"
|
218
|
-
msgstr ""
|
219
|
-
|
220
|
-
#: ../lib/pdk/cli/convert.rb:5
|
221
|
-
msgid "Convert an existing module to be compatible with the PDK."
|
222
|
-
msgstr ""
|
223
|
-
|
224
|
-
#: ../lib/pdk/cli/convert.rb:11
|
225
|
-
msgid "Do not convert the module, just output what would be done."
|
226
|
-
msgstr ""
|
227
|
-
|
228
|
-
#: ../lib/pdk/cli/convert.rb:12
|
229
|
-
msgid "Convert the module automatically, with no prompts."
|
230
|
-
msgstr ""
|
231
|
-
|
232
|
-
#: ../lib/pdk/cli/convert.rb:13
|
233
|
-
msgid "Add any missing tests while converting the module."
|
234
|
-
msgstr ""
|
235
|
-
|
236
|
-
#: ../lib/pdk/cli/convert.rb:14
|
237
|
-
msgid "Convert the module to use the default PDK template."
|
238
|
-
msgstr ""
|
239
|
-
|
240
|
-
#: ../lib/pdk/cli/convert.rb:21
|
241
|
-
msgid "`pdk convert` can only be run from inside a valid module directory."
|
242
|
-
msgstr ""
|
243
|
-
|
244
|
-
#: ../lib/pdk/cli/convert.rb:25
|
245
|
-
msgid "You can not specify --noop and --force when converting a module"
|
246
|
-
msgstr ""
|
247
|
-
|
248
|
-
#: ../lib/pdk/cli/convert.rb:29
|
249
|
-
msgid "You can not specify --template-url and --default-template."
|
250
|
-
msgstr ""
|
251
|
-
|
252
|
-
#: ../lib/pdk/cli/convert.rb:40 ../lib/pdk/cli/new/module.rb:27
|
253
|
-
msgid "Ignoring --full-interview and continuing with --skip-interview."
|
254
|
-
msgstr ""
|
255
|
-
|
256
|
-
#: ../lib/pdk/cli/convert.rb:45
|
257
|
-
msgid "Ignoring --full-interview and continuing with --force."
|
258
|
-
msgstr ""
|
259
|
-
|
260
|
-
#: ../lib/pdk/cli/
|
261
|
-
msgid "
|
262
|
-
msgstr ""
|
263
|
-
|
264
|
-
#: ../lib/pdk/cli/
|
265
|
-
msgid "
|
266
|
-
msgstr ""
|
267
|
-
|
268
|
-
#: ../lib/pdk/cli/
|
269
|
-
msgid "
|
270
|
-
|
271
|
-
|
272
|
-
|
273
|
-
|
274
|
-
|
275
|
-
|
276
|
-
|
277
|
-
|
278
|
-
|
279
|
-
|
280
|
-
|
281
|
-
|
282
|
-
|
283
|
-
|
284
|
-
|
285
|
-
|
286
|
-
|
287
|
-
|
288
|
-
|
289
|
-
|
290
|
-
|
291
|
-
|
292
|
-
|
293
|
-
|
294
|
-
|
295
|
-
|
296
|
-
|
297
|
-
|
298
|
-
|
299
|
-
|
300
|
-
|
301
|
-
|
302
|
-
|
303
|
-
|
304
|
-
|
305
|
-
|
306
|
-
|
307
|
-
|
308
|
-
|
309
|
-
|
310
|
-
|
311
|
-
|
312
|
-
|
313
|
-
|
314
|
-
|
315
|
-
|
316
|
-
|
317
|
-
|
318
|
-
|
319
|
-
|
320
|
-
|
321
|
-
|
322
|
-
|
323
|
-
|
324
|
-
|
325
|
-
|
326
|
-
|
327
|
-
|
328
|
-
|
329
|
-
|
330
|
-
"Execution of '%{command}' complete (duration:
|
331
|
-
|
332
|
-
|
333
|
-
|
334
|
-
|
335
|
-
|
336
|
-
|
337
|
-
|
338
|
-
|
339
|
-
|
340
|
-
|
341
|
-
|
342
|
-
|
343
|
-
|
344
|
-
|
345
|
-
|
346
|
-
|
347
|
-
|
348
|
-
|
349
|
-
|
350
|
-
|
351
|
-
|
352
|
-
|
353
|
-
|
354
|
-
|
355
|
-
|
356
|
-
|
357
|
-
|
358
|
-
|
359
|
-
|
360
|
-
|
361
|
-
|
362
|
-
|
363
|
-
|
364
|
-
|
365
|
-
|
366
|
-
|
367
|
-
|
368
|
-
|
369
|
-
|
370
|
-
|
371
|
-
|
372
|
-
|
373
|
-
|
374
|
-
|
375
|
-
|
376
|
-
|
377
|
-
|
378
|
-
|
379
|
-
|
380
|
-
|
381
|
-
|
382
|
-
|
383
|
-
|
384
|
-
|
385
|
-
|
386
|
-
|
387
|
-
|
388
|
-
|
389
|
-
|
390
|
-
|
391
|
-
|
392
|
-
|
393
|
-
|
394
|
-
|
395
|
-
|
396
|
-
|
397
|
-
|
398
|
-
|
399
|
-
|
400
|
-
|
401
|
-
|
402
|
-
|
403
|
-
|
404
|
-
|
405
|
-
|
406
|
-
|
407
|
-
|
408
|
-
|
409
|
-
|
410
|
-
|
411
|
-
|
412
|
-
|
413
|
-
|
414
|
-
|
415
|
-
|
416
|
-
|
417
|
-
|
418
|
-
|
419
|
-
|
420
|
-
|
421
|
-
|
422
|
-
|
423
|
-
|
424
|
-
|
425
|
-
|
426
|
-
|
427
|
-
|
428
|
-
|
429
|
-
|
430
|
-
|
431
|
-
|
432
|
-
|
433
|
-
|
434
|
-
|
435
|
-
|
436
|
-
|
437
|
-
|
438
|
-
|
439
|
-
|
440
|
-
|
441
|
-
|
442
|
-
|
443
|
-
|
444
|
-
|
445
|
-
|
446
|
-
|
447
|
-
|
448
|
-
|
449
|
-
|
450
|
-
|
451
|
-
|
452
|
-
|
453
|
-
|
454
|
-
|
455
|
-
|
456
|
-
|
457
|
-
|
458
|
-
|
459
|
-
|
460
|
-
|
461
|
-
|
462
|
-
|
463
|
-
|
464
|
-
|
465
|
-
|
466
|
-
|
467
|
-
|
468
|
-
|
469
|
-
|
470
|
-
|
471
|
-
|
472
|
-
|
473
|
-
|
474
|
-
|
475
|
-
|
476
|
-
|
477
|
-
|
478
|
-
|
479
|
-
|
480
|
-
|
481
|
-
|
482
|
-
|
483
|
-
|
484
|
-
|
485
|
-
|
486
|
-
|
487
|
-
|
488
|
-
|
489
|
-
|
490
|
-
|
491
|
-
|
492
|
-
|
493
|
-
|
494
|
-
|
495
|
-
|
496
|
-
|
497
|
-
|
498
|
-
|
499
|
-
|
500
|
-
|
501
|
-
|
502
|
-
|
503
|
-
|
504
|
-
|
505
|
-
|
506
|
-
|
507
|
-
|
508
|
-
|
509
|
-
|
510
|
-
|
511
|
-
|
512
|
-
|
513
|
-
|
514
|
-
|
515
|
-
|
516
|
-
|
517
|
-
|
518
|
-
|
519
|
-
|
520
|
-
|
521
|
-
|
522
|
-
|
523
|
-
|
524
|
-
|
525
|
-
|
526
|
-
|
527
|
-
|
528
|
-
|
529
|
-
|
530
|
-
|
531
|
-
|
532
|
-
|
533
|
-
|
534
|
-
|
535
|
-
|
536
|
-
|
537
|
-
|
538
|
-
|
539
|
-
|
540
|
-
|
541
|
-
|
542
|
-
|
543
|
-
|
544
|
-
|
545
|
-
|
546
|
-
|
547
|
-
|
548
|
-
|
549
|
-
|
550
|
-
|
551
|
-
|
552
|
-
|
553
|
-
|
554
|
-
|
555
|
-
|
556
|
-
|
557
|
-
|
558
|
-
|
559
|
-
|
560
|
-
|
561
|
-
|
562
|
-
|
563
|
-
|
564
|
-
|
565
|
-
|
566
|
-
|
567
|
-
|
568
|
-
|
569
|
-
|
570
|
-
|
571
|
-
|
572
|
-
|
573
|
-
|
574
|
-
|
575
|
-
|
576
|
-
|
577
|
-
|
578
|
-
|
579
|
-
|
580
|
-
|
581
|
-
|
582
|
-
|
583
|
-
|
584
|
-
|
585
|
-
|
586
|
-
|
587
|
-
|
588
|
-
|
589
|
-
|
590
|
-
|
591
|
-
|
592
|
-
|
593
|
-
|
594
|
-
|
595
|
-
|
596
|
-
|
597
|
-
|
598
|
-
|
599
|
-
|
600
|
-
|
601
|
-
|
602
|
-
|
603
|
-
|
604
|
-
|
605
|
-
|
606
|
-
|
607
|
-
|
608
|
-
|
609
|
-
|
610
|
-
|
611
|
-
|
612
|
-
|
613
|
-
|
614
|
-
|
615
|
-
|
616
|
-
|
617
|
-
|
618
|
-
|
619
|
-
|
620
|
-
|
621
|
-
|
622
|
-
|
623
|
-
|
624
|
-
|
625
|
-
|
626
|
-
|
627
|
-
|
628
|
-
|
629
|
-
|
630
|
-
|
631
|
-
|
632
|
-
|
633
|
-
|
634
|
-
|
635
|
-
|
636
|
-
|
637
|
-
|
638
|
-
|
639
|
-
|
640
|
-
|
641
|
-
|
642
|
-
|
643
|
-
|
644
|
-
|
645
|
-
|
646
|
-
|
647
|
-
|
648
|
-
|
649
|
-
|
650
|
-
|
651
|
-
|
652
|
-
|
653
|
-
|
654
|
-
|
655
|
-
|
656
|
-
|
657
|
-
|
658
|
-
|
659
|
-
|
660
|
-
|
661
|
-
|
662
|
-
|
663
|
-
|
664
|
-
|
665
|
-
|
666
|
-
|
667
|
-
|
668
|
-
|
669
|
-
|
670
|
-
|
671
|
-
|
672
|
-
|
673
|
-
|
674
|
-
|
675
|
-
|
676
|
-
|
677
|
-
|
678
|
-
|
679
|
-
|
680
|
-
|
681
|
-
|
682
|
-
|
683
|
-
|
684
|
-
|
685
|
-
|
686
|
-
|
687
|
-
|
688
|
-
|
689
|
-
|
690
|
-
|
691
|
-
|
692
|
-
|
693
|
-
|
694
|
-
|
695
|
-
|
696
|
-
|
697
|
-
|
698
|
-
|
699
|
-
|
700
|
-
|
701
|
-
|
702
|
-
|
703
|
-
|
704
|
-
|
705
|
-
|
706
|
-
|
707
|
-
|
708
|
-
|
709
|
-
|
710
|
-
|
711
|
-
|
712
|
-
|
713
|
-
|
714
|
-
|
715
|
-
|
716
|
-
|
717
|
-
|
718
|
-
|
719
|
-
|
720
|
-
|
721
|
-
|
722
|
-
|
723
|
-
|
724
|
-
|
725
|
-
|
726
|
-
|
727
|
-
|
728
|
-
|
729
|
-
|
730
|
-
|
731
|
-
|
732
|
-
|
733
|
-
|
734
|
-
|
735
|
-
|
736
|
-
|
737
|
-
|
738
|
-
|
739
|
-
|
740
|
-
|
741
|
-
|
742
|
-
|
743
|
-
|
744
|
-
|
745
|
-
|
746
|
-
|
747
|
-
|
748
|
-
|
749
|
-
|
750
|
-
|
751
|
-
|
752
|
-
|
753
|
-
|
754
|
-
|
755
|
-
|
756
|
-
|
757
|
-
|
758
|
-
|
759
|
-
|
760
|
-
|
761
|
-
|
762
|
-
|
763
|
-
|
764
|
-
|
765
|
-
|
766
|
-
|
767
|
-
|
768
|
-
|
769
|
-
|
770
|
-
|
771
|
-
|
772
|
-
|
773
|
-
|
774
|
-
|
775
|
-
|
776
|
-
|
777
|
-
|
778
|
-
|
779
|
-
|
780
|
-
|
781
|
-
|
782
|
-
|
783
|
-
|
784
|
-
|
785
|
-
|
786
|
-
|
787
|
-
|
788
|
-
|
789
|
-
|
790
|
-
|
791
|
-
|
792
|
-
|
793
|
-
|
794
|
-
|
795
|
-
|
796
|
-
|
797
|
-
|
798
|
-
|
799
|
-
|
800
|
-
|
801
|
-
|
802
|
-
|
803
|
-
|
804
|
-
|
805
|
-
|
806
|
-
|
807
|
-
|
808
|
-
|
809
|
-
|
810
|
-
|
811
|
-
|
812
|
-
|
813
|
-
|
814
|
-
|
815
|
-
|
816
|
-
|
817
|
-
|
818
|
-
|
819
|
-
|
820
|
-
|
821
|
-
|
822
|
-
|
823
|
-
|
824
|
-
|
825
|
-
|
826
|
-
|
827
|
-
|
828
|
-
|
829
|
-
|
830
|
-
|
831
|
-
|
832
|
-
|
833
|
-
|
834
|
-
|
835
|
-
|
836
|
-
|
837
|
-
|
838
|
-
|
839
|
-
|
840
|
-
|
841
|
-
|
842
|
-
|
843
|
-
|
844
|
-
|
845
|
-
|
846
|
-
|
847
|
-
|
848
|
-
|
849
|
-
|
850
|
-
|
851
|
-
|
852
|
-
|
853
|
-
|
854
|
-
|
855
|
-
|
856
|
-
|
857
|
-
|
858
|
-
|
859
|
-
|
860
|
-
|
861
|
-
|
862
|
-
|
863
|
-
|
864
|
-
|
865
|
-
|
866
|
-
|
867
|
-
|
868
|
-
|
869
|
-
|
870
|
-
|
871
|
-
|
872
|
-
|
873
|
-
|
874
|
-
|
875
|
-
|
876
|
-
|
877
|
-
|
878
|
-
|
879
|
-
|
880
|
-
|
881
|
-
|
882
|
-
|
883
|
-
|
884
|
-
|
885
|
-
|
886
|
-
|
887
|
-
|
888
|
-
|
889
|
-
|
890
|
-
|
891
|
-
|
892
|
-
|
893
|
-
|
894
|
-
|
895
|
-
|
896
|
-
|
897
|
-
|
898
|
-
|
899
|
-
|
900
|
-
|
901
|
-
|
902
|
-
|
903
|
-
|
904
|
-
|
905
|
-
|
906
|
-
|
907
|
-
|
908
|
-
|
909
|
-
|
910
|
-
|
911
|
-
|
912
|
-
|
913
|
-
|
914
|
-
|
915
|
-
|
916
|
-
|
917
|
-
|
918
|
-
|
919
|
-
|
920
|
-
|
921
|
-
|
922
|
-
|
923
|
-
|
924
|
-
|
925
|
-
|
926
|
-
|
927
|
-
|
928
|
-
|
929
|
-
|
930
|
-
|
931
|
-
|
932
|
-
|
933
|
-
|
934
|
-
|
935
|
-
|
936
|
-
|
937
|
-
|
938
|
-
|
939
|
-
|
940
|
-
|
941
|
-
|
942
|
-
|
943
|
-
|
944
|
-
|
945
|
-
|
946
|
-
|
947
|
-
|
948
|
-
|
949
|
-
|
950
|
-
|
951
|
-
|
952
|
-
|
953
|
-
|
954
|
-
|
955
|
-
|
956
|
-
"
|
957
|
-
"
|
958
|
-
|
959
|
-
|
960
|
-
"
|
961
|
-
msgstr ""
|
962
|
-
|
963
|
-
#: ../lib/pdk/cli/
|
964
|
-
msgid "
|
965
|
-
msgstr ""
|
966
|
-
|
967
|
-
#: ../lib/pdk/cli/
|
968
|
-
msgid "
|
969
|
-
msgstr ""
|
970
|
-
|
971
|
-
#: ../lib/pdk/cli/
|
972
|
-
msgid "
|
973
|
-
msgstr ""
|
974
|
-
|
975
|
-
#: ../lib/pdk/cli/
|
976
|
-
msgid "
|
977
|
-
msgstr ""
|
978
|
-
|
979
|
-
#: ../lib/pdk/cli/
|
980
|
-
msgid "
|
981
|
-
msgstr ""
|
982
|
-
|
983
|
-
#: ../lib/pdk/cli/
|
984
|
-
msgid "
|
985
|
-
msgstr ""
|
986
|
-
|
987
|
-
#: ../lib/pdk/cli/
|
988
|
-
msgid "
|
989
|
-
msgstr ""
|
990
|
-
|
991
|
-
#: ../lib/pdk/
|
992
|
-
msgid "
|
993
|
-
msgstr ""
|
994
|
-
|
995
|
-
#: ../lib/pdk/
|
996
|
-
msgid "
|
997
|
-
msgstr ""
|
998
|
-
|
999
|
-
#: ../lib/pdk/
|
1000
|
-
msgid "
|
1001
|
-
msgstr ""
|
1002
|
-
|
1003
|
-
#: ../lib/pdk/
|
1004
|
-
msgid "
|
1005
|
-
|
1006
|
-
|
1007
|
-
|
1008
|
-
|
1009
|
-
|
1010
|
-
|
1011
|
-
|
1012
|
-
|
1013
|
-
|
1014
|
-
|
1015
|
-
|
1016
|
-
|
1017
|
-
"
|
1018
|
-
msgstr ""
|
1019
|
-
|
1020
|
-
#: ../lib/pdk/
|
1021
|
-
msgid "
|
1022
|
-
msgstr ""
|
1023
|
-
|
1024
|
-
#: ../lib/pdk/
|
1025
|
-
msgid "
|
1026
|
-
msgstr ""
|
1027
|
-
|
1028
|
-
#: ../lib/pdk/
|
1029
|
-
msgid "
|
1030
|
-
msgstr ""
|
1031
|
-
|
1032
|
-
#: ../lib/pdk/
|
1033
|
-
msgid "
|
1034
|
-
msgstr ""
|
1035
|
-
|
1036
|
-
#: ../lib/pdk/
|
1037
|
-
msgid "
|
1038
|
-
msgstr ""
|
1039
|
-
|
1040
|
-
#: ../lib/pdk/config.rb:
|
1041
|
-
msgid "
|
1042
|
-
msgstr ""
|
1043
|
-
|
1044
|
-
#: ../lib/pdk/config.rb:
|
1045
|
-
msgid "
|
1046
|
-
msgstr ""
|
1047
|
-
|
1048
|
-
#: ../lib/pdk/config
|
1049
|
-
msgid "
|
1050
|
-
msgstr ""
|
1051
|
-
|
1052
|
-
#: ../lib/pdk/config
|
1053
|
-
msgid "
|
1054
|
-
msgstr ""
|
1055
|
-
|
1056
|
-
#: ../lib/pdk/config
|
1057
|
-
msgid "
|
1058
|
-
msgstr ""
|
1059
|
-
|
1060
|
-
#: ../lib/pdk/config
|
1061
|
-
msgid "Unable to
|
1062
|
-
msgstr ""
|
1063
|
-
|
1064
|
-
#: ../lib/pdk/config
|
1065
|
-
msgid "
|
1066
|
-
|
1067
|
-
|
1068
|
-
|
1069
|
-
|
1070
|
-
|
1071
|
-
|
1072
|
-
|
1073
|
-
|
1074
|
-
|
1075
|
-
|
1076
|
-
|
1077
|
-
|
1078
|
-
|
1079
|
-
|
1080
|
-
|
1081
|
-
|
1082
|
-
|
1083
|
-
|
1084
|
-
|
1085
|
-
|
1086
|
-
|
1087
|
-
|
1088
|
-
|
1089
|
-
|
1090
|
-
|
1091
|
-
|
1092
|
-
|
1093
|
-
|
1094
|
-
|
1095
|
-
|
1096
|
-
|
1097
|
-
|
1098
|
-
|
1099
|
-
|
1100
|
-
|
1101
|
-
|
1102
|
-
|
1103
|
-
|
1104
|
-
|
1105
|
-
|
1106
|
-
|
1107
|
-
|
1108
|
-
|
1109
|
-
|
1110
|
-
|
1111
|
-
|
1112
|
-
|
1113
|
-
|
1114
|
-
|
1115
|
-
|
1116
|
-
|
1117
|
-
|
1118
|
-
|
1119
|
-
|
1120
|
-
|
1121
|
-
|
1122
|
-
|
1123
|
-
|
1124
|
-
|
1125
|
-
|
1126
|
-
|
1127
|
-
|
1128
|
-
|
1129
|
-
|
1130
|
-
"
|
1131
|
-
|
1132
|
-
|
1133
|
-
|
1134
|
-
|
1135
|
-
|
1136
|
-
|
1137
|
-
|
1138
|
-
|
1139
|
-
|
1140
|
-
|
1141
|
-
|
1142
|
-
|
1143
|
-
|
1144
|
-
|
1145
|
-
|
1146
|
-
|
1147
|
-
|
1148
|
-
|
1149
|
-
|
1150
|
-
|
1151
|
-
|
1152
|
-
|
1153
|
-
|
1154
|
-
|
1155
|
-
|
1156
|
-
|
1157
|
-
|
1158
|
-
|
1159
|
-
|
1160
|
-
|
1161
|
-
|
1162
|
-
|
1163
|
-
|
1164
|
-
|
1165
|
-
|
1166
|
-
|
1167
|
-
|
1168
|
-
|
1169
|
-
|
1170
|
-
|
1171
|
-
|
1172
|
-
|
1173
|
-
|
1174
|
-
|
1175
|
-
|
1176
|
-
|
1177
|
-
|
1178
|
-
|
1179
|
-
|
1180
|
-
|
1181
|
-
|
1182
|
-
|
1183
|
-
|
1184
|
-
|
1185
|
-
|
1186
|
-
|
1187
|
-
|
1188
|
-
|
1189
|
-
|
1190
|
-
|
1191
|
-
|
1192
|
-
|
1193
|
-
|
1194
|
-
|
1195
|
-
|
1196
|
-
|
1197
|
-
|
1198
|
-
|
1199
|
-
|
1200
|
-
|
1201
|
-
|
1202
|
-
|
1203
|
-
|
1204
|
-
|
1205
|
-
|
1206
|
-
|
1207
|
-
|
1208
|
-
|
1209
|
-
|
1210
|
-
|
1211
|
-
|
1212
|
-
|
1213
|
-
|
1214
|
-
|
1215
|
-
|
1216
|
-
|
1217
|
-
|
1218
|
-
|
1219
|
-
|
1220
|
-
|
1221
|
-
|
1222
|
-
|
1223
|
-
|
1224
|
-
|
1225
|
-
|
1226
|
-
|
1227
|
-
|
1228
|
-
|
1229
|
-
|
1230
|
-
|
1231
|
-
|
1232
|
-
|
1233
|
-
|
1234
|
-
|
1235
|
-
|
1236
|
-
|
1237
|
-
|
1238
|
-
|
1239
|
-
|
1240
|
-
|
1241
|
-
|
1242
|
-
|
1243
|
-
|
1244
|
-
|
1245
|
-
|
1246
|
-
|
1247
|
-
|
1248
|
-
|
1249
|
-
|
1250
|
-
|
1251
|
-
|
1252
|
-
|
1253
|
-
|
1254
|
-
|
1255
|
-
|
1256
|
-
|
1257
|
-
|
1258
|
-
|
1259
|
-
|
1260
|
-
|
1261
|
-
|
1262
|
-
|
1263
|
-
|
1264
|
-
|
1265
|
-
|
1266
|
-
|
1267
|
-
|
1268
|
-
"
|
1269
|
-
|
1270
|
-
|
1271
|
-
|
1272
|
-
|
1273
|
-
|
1274
|
-
|
1275
|
-
|
1276
|
-
|
1277
|
-
|
1278
|
-
|
1279
|
-
|
1280
|
-
"
|
1281
|
-
"
|
1282
|
-
|
1283
|
-
|
1284
|
-
|
1285
|
-
|
1286
|
-
|
1287
|
-
|
1288
|
-
|
1289
|
-
|
1290
|
-
|
1291
|
-
|
1292
|
-
|
1293
|
-
|
1294
|
-
|
1295
|
-
|
1296
|
-
|
1297
|
-
|
1298
|
-
|
1299
|
-
|
1300
|
-
|
1301
|
-
|
1302
|
-
|
1303
|
-
|
1304
|
-
|
1305
|
-
|
1306
|
-
|
1307
|
-
|
1308
|
-
|
1309
|
-
|
1310
|
-
|
1311
|
-
|
1312
|
-
|
1313
|
-
|
1314
|
-
|
1315
|
-
|
1316
|
-
|
1317
|
-
|
1318
|
-
|
1319
|
-
|
1320
|
-
|
1321
|
-
|
1322
|
-
|
1323
|
-
|
1324
|
-
|
1325
|
-
|
1326
|
-
|
1327
|
-
|
1328
|
-
|
1329
|
-
|
1330
|
-
|
1331
|
-
|
1332
|
-
|
1333
|
-
|
1334
|
-
|
1335
|
-
|
1336
|
-
|
1337
|
-
|
1338
|
-
|
1339
|
-
|
1340
|
-
|
1341
|
-
|
1342
|
-
|
1343
|
-
|
1344
|
-
|
1345
|
-
|
1346
|
-
|
1347
|
-
|
1348
|
-
|
1349
|
-
|
1350
|
-
|
1351
|
-
|
1352
|
-
|
1353
|
-
|
1354
|
-
|
1355
|
-
|
1356
|
-
|
1357
|
-
|
1358
|
-
|
1359
|
-
|
1360
|
-
|
1361
|
-
|
1362
|
-
|
1363
|
-
|
1364
|
-
|
1365
|
-
|
1366
|
-
|
1367
|
-
|
1368
|
-
|
1369
|
-
|
1370
|
-
|
1371
|
-
|
1372
|
-
|
1373
|
-
|
1374
|
-
|
1375
|
-
|
1376
|
-
|
1377
|
-
|
1378
|
-
|
1379
|
-
|
1380
|
-
|
1381
|
-
|
1382
|
-
|
1383
|
-
|
1384
|
-
|
1385
|
-
|
1386
|
-
|
1387
|
-
|
1388
|
-
|
1389
|
-
|
1390
|
-
|
1391
|
-
|
1392
|
-
|
1393
|
-
|
1394
|
-
|
1395
|
-
|
1396
|
-
|
1397
|
-
|
1398
|
-
|
1399
|
-
|
1400
|
-
|
1401
|
-
|
1402
|
-
|
1403
|
-
|
1404
|
-
|
1405
|
-
|
1406
|
-
|
1407
|
-
|
1408
|
-
|
1409
|
-
|
1410
|
-
|
1411
|
-
|
1412
|
-
|
1413
|
-
|
1414
|
-
|
1415
|
-
|
1416
|
-
|
1417
|
-
|
1418
|
-
|
1419
|
-
|
1420
|
-
|
1421
|
-
|
1422
|
-
"
|
1423
|
-
"
|
1424
|
-
|
1425
|
-
|
1426
|
-
|
1427
|
-
|
1428
|
-
|
1429
|
-
|
1430
|
-
"
|
1431
|
-
|
1432
|
-
|
1433
|
-
|
1434
|
-
|
1435
|
-
|
1436
|
-
|
1437
|
-
"\n"
|
1438
|
-
|
1439
|
-
|
1440
|
-
|
1441
|
-
|
1442
|
-
|
1443
|
-
|
1444
|
-
|
1445
|
-
|
1446
|
-
|
1447
|
-
|
1448
|
-
|
1449
|
-
|
1450
|
-
|
1451
|
-
|
1452
|
-
|
1453
|
-
|
1454
|
-
|
1455
|
-
|
1456
|
-
|
1457
|
-
|
1458
|
-
|
1459
|
-
|
1460
|
-
|
1461
|
-
|
1462
|
-
|
1463
|
-
|
1464
|
-
|
1465
|
-
|
1466
|
-
|
1467
|
-
|
1468
|
-
|
1469
|
-
|
1470
|
-
|
1471
|
-
|
1472
|
-
|
1473
|
-
|
1474
|
-
|
1475
|
-
|
1476
|
-
|
1477
|
-
|
1478
|
-
|
1479
|
-
|
1480
|
-
|
1481
|
-
|
1482
|
-
|
1483
|
-
|
1484
|
-
|
1485
|
-
|
1486
|
-
|
1487
|
-
|
1488
|
-
|
1489
|
-
|
1490
|
-
|
1491
|
-
|
1492
|
-
|
1493
|
-
|
1494
|
-
|
1495
|
-
|
1496
|
-
|
1497
|
-
|
1498
|
-
|
1499
|
-
|
1500
|
-
|
1501
|
-
|
1502
|
-
|
1503
|
-
|
1504
|
-
|
1505
|
-
|
1506
|
-
|
1507
|
-
|
1508
|
-
|
1509
|
-
|
1510
|
-
|
1511
|
-
|
1512
|
-
|
1513
|
-
|
1514
|
-
|
1515
|
-
|
1516
|
-
|
1517
|
-
|
1518
|
-
|
1519
|
-
|
1520
|
-
|
1521
|
-
|
1522
|
-
|
1523
|
-
|
1524
|
-
|
1525
|
-
|
1526
|
-
|
1527
|
-
|
1528
|
-
|
1529
|
-
|
1530
|
-
|
1531
|
-
|
1532
|
-
|
1533
|
-
|
1534
|
-
|
1535
|
-
|
1536
|
-
|
1537
|
-
|
1538
|
-
|
1539
|
-
|
1540
|
-
|
1541
|
-
|
1542
|
-
|
1543
|
-
|
1544
|
-
|
1545
|
-
|
1546
|
-
|
1547
|
-
|
1548
|
-
|
1549
|
-
|
1550
|
-
|
1551
|
-
|
1552
|
-
|
1553
|
-
|
1554
|
-
|
1555
|
-
|
1556
|
-
|
1557
|
-
|
1558
|
-
|
1559
|
-
|
1560
|
-
|
1561
|
-
|
1562
|
-
|
1563
|
-
|
1564
|
-
|
1565
|
-
|
1566
|
-
|
1567
|
-
|
1568
|
-
|
1569
|
-
|
1570
|
-
|
1571
|
-
|
1572
|
-
|
1573
|
-
|
1574
|
-
|
1575
|
-
|
1576
|
-
|
1577
|
-
|
1578
|
-
|
1579
|
-
|
1580
|
-
|
1581
|
-
|
1582
|
-
|
1583
|
-
|
1584
|
-
|
1585
|
-
|
1586
|
-
|
1587
|
-
|
1588
|
-
|
1589
|
-
|
1590
|
-
|
1591
|
-
|
1592
|
-
|
1593
|
-
|
1594
|
-
|
1595
|
-
|
1596
|
-
|
1597
|
-
|
1598
|
-
|
1599
|
-
|
1600
|
-
|
1601
|
-
|
1602
|
-
|
1603
|
-
|
1604
|
-
|
1605
|
-
|
1606
|
-
|
1607
|
-
|
1608
|
-
|
1609
|
-
|
1610
|
-
|
1611
|
-
|
1612
|
-
|
1613
|
-
|
1614
|
-
|
1615
|
-
|
1616
|
-
|
1617
|
-
|
1618
|
-
|
1619
|
-
|
1620
|
-
|
1621
|
-
|
1622
|
-
|
1623
|
-
|
1624
|
-
|
1625
|
-
|
1626
|
-
|
1627
|
-
|
1628
|
-
|
1629
|
-
|
1630
|
-
|
1631
|
-
|
1632
|
-
|
1633
|
-
|
1634
|
-
|
1635
|
-
|
1636
|
-
|
1637
|
-
|
1638
|
-
|
1639
|
-
|
1640
|
-
|
1641
|
-
|
1642
|
-
|
1643
|
-
|
1644
|
-
|
1645
|
-
|
1646
|
-
|
1647
|
-
|
1648
|
-
|
1649
|
-
|
1650
|
-
|
1651
|
-
|
1652
|
-
|
1653
|
-
|
1654
|
-
|
1655
|
-
|
1656
|
-
|
1657
|
-
|
1658
|
-
|
1659
|
-
|
1660
|
-
|
1661
|
-
|
1662
|
-
|
1663
|
-
|
1664
|
-
|
1665
|
-
|
1666
|
-
|
1667
|
-
|
1668
|
-
|
1669
|
-
|
1670
|
-
|
1671
|
-
|
1672
|
-
|
1673
|
-
|
1674
|
-
"
|
1675
|
-
|
1676
|
-
|
1677
|
-
|
1678
|
-
|
1679
|
-
|
1680
|
-
|
1681
|
-
|
1682
|
-
|
1683
|
-
|
1684
|
-
|
1685
|
-
|
1686
|
-
|
1687
|
-
|
1688
|
-
|
1689
|
-
|
1690
|
-
|
1691
|
-
|
1692
|
-
|
1693
|
-
|
1694
|
-
|
1695
|
-
|
1696
|
-
|
1697
|
-
|
1698
|
-
|
1699
|
-
|
1700
|
-
|
1701
|
-
|
1702
|
-
|
1703
|
-
|
1704
|
-
|
1705
|
-
|
1706
|
-
|
1707
|
-
|
1708
|
-
|
1709
|
-
|
1710
|
-
|
1711
|
-
|
1712
|
-
|
1713
|
-
|
1714
|
-
|
1715
|
-
|
1716
|
-
|
1717
|
-
|
1718
|
-
|
1719
|
-
|
1720
|
-
|
1721
|
-
|
1722
|
-
|
1723
|
-
|
1724
|
-
|
1725
|
-
|
1726
|
-
|
1727
|
-
|
1728
|
-
|
1729
|
-
|
1730
|
-
|
1731
|
-
|
1732
|
-
|
1733
|
-
|
1734
|
-
|
1735
|
-
|
1736
|
-
|
1737
|
-
|
1738
|
-
|
1739
|
-
|
1740
|
-
|
1741
|
-
|
1742
|
-
|
1743
|
-
|
1744
|
-
|
1745
|
-
|
1746
|
-
|
1747
|
-
|
1748
|
-
|
1749
|
-
|
1750
|
-
|
1751
|
-
|
1752
|
-
|
1753
|
-
|
1754
|
-
|
1755
|
-
|
1756
|
-
|
1757
|
-
|
1758
|
-
|
1759
|
-
|
1760
|
-
|
1761
|
-
|
1762
|
-
|
1763
|
-
|
1764
|
-
|
1765
|
-
|
1766
|
-
|
1767
|
-
|
1768
|
-
|
1769
|
-
|
1770
|
-
|
1771
|
-
|
1772
|
-
|
1773
|
-
|
1774
|
-
|
1775
|
-
|
1776
|
-
|
1777
|
-
|
1778
|
-
|
1779
|
-
|
1780
|
-
|
1781
|
-
|
1782
|
-
|
1783
|
-
|
1784
|
-
|
1785
|
-
|
1786
|
-
|
1787
|
-
|
1788
|
-
|
1789
|
-
|
1790
|
-
|
1791
|
-
|
1792
|
-
|
1793
|
-
|
1794
|
-
|
1795
|
-
|
1796
|
-
|
1797
|
-
|
1798
|
-
|
1799
|
-
|
1800
|
-
"
|
1801
|
-
"
|
1802
|
-
|
1803
|
-
|
1804
|
-
|
1805
|
-
|
1806
|
-
|
1807
|
-
|
1808
|
-
|
1809
|
-
|
1810
|
-
|
1811
|
-
|
1812
|
-
|
1813
|
-
|
1814
|
-
|
1815
|
-
|
1816
|
-
|
1817
|
-
|
1818
|
-
|
1819
|
-
|
1820
|
-
|
1821
|
-
|
1822
|
-
|
1823
|
-
|
1824
|
-
|
1825
|
-
|
1826
|
-
|
1827
|
-
|
1828
|
-
|
1829
|
-
|
1830
|
-
|
1831
|
-
|
1832
|
-
|
1833
|
-
|
1834
|
-
|
1835
|
-
|
1836
|
-
|
1837
|
-
|
1838
|
-
|
1839
|
-
|
1840
|
-
|
1841
|
-
|
1842
|
-
|
1843
|
-
|
1844
|
-
|
1845
|
-
|
1846
|
-
|
1847
|
-
|
1848
|
-
|
1849
|
-
|
1850
|
-
|
1851
|
-
|
1852
|
-
|
1853
|
-
|
1854
|
-
|
1855
|
-
|
1856
|
-
|
1857
|
-
|
1858
|
-
|
1859
|
-
|
1860
|
-
|
1861
|
-
|
1862
|
-
|
1863
|
-
|
1864
|
-
|
1865
|
-
|
1866
|
-
|
1867
|
-
|
1868
|
-
|
1869
|
-
|
1870
|
-
|
1871
|
-
|
1872
|
-
|
1873
|
-
|
1874
|
-
|
1875
|
-
|
1876
|
-
|
1877
|
-
|
1878
|
-
|
1879
|
-
|
1880
|
-
|
1881
|
-
|
1882
|
-
|
1883
|
-
|
1884
|
-
|
1885
|
-
|
1886
|
-
|
1887
|
-
|
1888
|
-
|
1889
|
-
|
1890
|
-
|
1891
|
-
|
1892
|
-
|
1893
|
-
|
1894
|
-
|
1895
|
-
|
1896
|
-
|
1897
|
-
|
1898
|
-
|
1899
|
-
|
1900
|
-
|
1901
|
-
|
1902
|
-
|
1903
|
-
|
1904
|
-
|
1905
|
-
|
1906
|
-
|
1907
|
-
|
1908
|
-
|
1909
|
-
|
1910
|
-
|
1911
|
-
|
1912
|
-
|
1913
|
-
|
1914
|
-
|
1915
|
-
|
1916
|
-
|
1917
|
-
|
1918
|
-
|
1919
|
-
|
1920
|
-
|
1921
|
-
|
1922
|
-
|
1923
|
-
|
1924
|
-
|
1925
|
-
|
1926
|
-
|
1927
|
-
|
1928
|
-
|
1929
|
-
|
1930
|
-
|
1931
|
-
|
1932
|
-
|
1933
|
-
|
1934
|
-
|
1935
|
-
|
1936
|
-
|
1937
|
-
|
1938
|
-
|
1939
|
-
|
1940
|
-
|
1941
|
-
|
1942
|
-
|
1943
|
-
|
1944
|
-
|
1945
|
-
|
1946
|
-
|
1947
|
-
|
1948
|
-
|
1949
|
-
|
1950
|
-
|
1951
|
-
|
1952
|
-
|
1953
|
-
|
1954
|
-
|
1955
|
-
|
1956
|
-
|
1957
|
-
|
1958
|
-
|
1959
|
-
|
1960
|
-
|
1961
|
-
|
1962
|
-
|
1963
|
-
|
1964
|
-
|
1965
|
-
|
1966
|
-
|
1967
|
-
|
1968
|
-
|
1969
|
-
|
1970
|
-
|
1971
|
-
|
1972
|
-
|
1973
|
-
|
1974
|
-
|
1975
|
-
|
1976
|
-
|
1977
|
-
|
1978
|
-
|
1979
|
-
|
1980
|
-
|
1981
|
-
|
1982
|
-
|
1983
|
-
|
1984
|
-
|
1985
|
-
|
1986
|
-
|
1987
|
-
|
1988
|
-
|
1989
|
-
|
1990
|
-
|
1991
|
-
|
1992
|
-
|
1993
|
-
|
1994
|
-
|
1995
|
-
|
1996
|
-
|
1997
|
-
|
1998
|
-
|
1999
|
-
|
2000
|
-
|
2001
|
-
|
2002
|
-
|
2003
|
-
|
2004
|
-
|
2005
|
-
|
2006
|
-
|
2007
|
-
|
2008
|
-
|
2009
|
-
|
2010
|
-
|
2011
|
-
|
2012
|
-
|
2013
|
-
|
2014
|
-
|
2015
|
-
|
2016
|
-
|
2017
|
-
|
2018
|
-
|
2019
|
-
|
2020
|
-
|
2021
|
-
|
2022
|
-
|
2023
|
-
|
2024
|
-
|
2025
|
-
|
2026
|
-
|
2027
|
-
|
2028
|
-
|
2029
|
-
|
2030
|
-
|
2031
|
-
|
2032
|
-
|
2033
|
-
|
2034
|
-
|
2035
|
-
|
2036
|
-
|
2037
|
-
|
2038
|
-
|
2039
|
-
|
2040
|
-
|
2041
|
-
|
2042
|
-
|
2043
|
-
|
2044
|
-
|
2045
|
-
|
2046
|
-
|
2047
|
-
|
2048
|
-
|
2049
|
-
|
2050
|
-
|
2051
|
-
|
2052
|
-
|
2053
|
-
|
2054
|
-
|
2055
|
-
|
2056
|
-
|
2057
|
-
|
2058
|
-
|
2059
|
-
|
2060
|
-
|
2061
|
-
|
2062
|
-
|
2063
|
-
|
2064
|
-
|
2065
|
-
|
2066
|
-
|
2067
|
-
|
2068
|
-
|
2069
|
-
|
2070
|
-
|
2071
|
-
|
2072
|
-
|
2073
|
-
|
2074
|
-
|
2075
|
-
|
2076
|
-
|
2077
|
-
|
2078
|
-
|
2079
|
-
|
2080
|
-
|
2081
|
-
|
2082
|
-
|
2083
|
-
|
2084
|
-
|
2085
|
-
|
2086
|
-
|
2087
|
-
|
2088
|
-
|
2089
|
-
|
2090
|
-
|
2091
|
-
|
2092
|
-
|
2093
|
-
|
2094
|
-
|
1
|
+
# SOME DESCRIPTIVE TITLE.
|
2
|
+
# Copyright (C) 2022 Puppet, Inc.
|
3
|
+
# This file is distributed under the same license as the puppet development kit package.
|
4
|
+
# FIRST AUTHOR <EMAIL@ADDRESS>, 2022.
|
5
|
+
#
|
6
|
+
#, fuzzy
|
7
|
+
msgid ""
|
8
|
+
msgstr ""
|
9
|
+
"Project-Id-Version: puppet development kit v2.4.0-6-g0eec3ab\n"
|
10
|
+
"\n"
|
11
|
+
"Report-Msgid-Bugs-To: docs@puppet.com\n"
|
12
|
+
"POT-Creation-Date: 2022-04-25 13:04+0100\n"
|
13
|
+
"PO-Revision-Date: 2022-04-25 13:04+0100\n"
|
14
|
+
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
15
|
+
"Language-Team: LANGUAGE <LL@li.org>\n"
|
16
|
+
"Language: \n"
|
17
|
+
"MIME-Version: 1.0\n"
|
18
|
+
"Content-Type: text/plain; charset=UTF-8\n"
|
19
|
+
"Content-Transfer-Encoding: 8bit\n"
|
20
|
+
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
|
21
|
+
|
22
|
+
#: ../lib/pdk/analytics/client/google_analytics.rb:45 ../lib/pdk/analytics/client/google_analytics.rb:60
|
23
|
+
msgid "Unknown analytics key '%{key}'"
|
24
|
+
msgstr ""
|
25
|
+
|
26
|
+
#: ../lib/pdk/cli.rb:59
|
27
|
+
msgid "Support for Ruby versions older than 2.4 will be dropped in the future PDK 2.0.0 release. We recommend updating your Ruby installation to ensure that you can continue using the latest version of PDK."
|
28
|
+
msgstr ""
|
29
|
+
|
30
|
+
#: ../lib/pdk/cli.rb:97
|
31
|
+
msgid "Specifies the URL to the template to use when creating new modules or classes. (default: %{default_url})"
|
32
|
+
msgstr ""
|
33
|
+
|
34
|
+
#: ../lib/pdk/cli.rb:103
|
35
|
+
msgid "Specifies the template git branch or tag to use when creating new modules or classes."
|
36
|
+
msgstr ""
|
37
|
+
|
38
|
+
#: ../lib/pdk/cli.rb:107
|
39
|
+
msgid "When specified, skips interactive querying of metadata."
|
40
|
+
msgstr ""
|
41
|
+
|
42
|
+
#: ../lib/pdk/cli.rb:111
|
43
|
+
msgid "When specified, interactive querying of metadata will include all optional questions."
|
44
|
+
msgstr ""
|
45
|
+
|
46
|
+
#: ../lib/pdk/cli.rb:115
|
47
|
+
msgid "Puppet version to run tests or validations against."
|
48
|
+
msgstr ""
|
49
|
+
|
50
|
+
#: ../lib/pdk/cli.rb:116
|
51
|
+
msgid "Puppet Enterprise version to run tests or validations against."
|
52
|
+
msgstr ""
|
53
|
+
|
54
|
+
#: ../lib/pdk/cli.rb:122
|
55
|
+
msgid "When specified, PDK will validate or test against the current Puppet source from github.com. To use this option, you must have network access to https://github.com."
|
56
|
+
msgstr ""
|
57
|
+
|
58
|
+
#: ../lib/pdk/cli.rb:127
|
59
|
+
msgid "pdk command [options]"
|
60
|
+
msgstr ""
|
61
|
+
|
62
|
+
#: ../lib/pdk/cli.rb:128
|
63
|
+
msgid "Puppet Development Kit"
|
64
|
+
msgstr ""
|
65
|
+
|
66
|
+
#: ../lib/pdk/cli.rb:129
|
67
|
+
msgid "The shortest path to better modules."
|
68
|
+
msgstr ""
|
69
|
+
|
70
|
+
#: ../lib/pdk/cli.rb:132
|
71
|
+
msgid "Show version of pdk."
|
72
|
+
msgstr ""
|
73
|
+
|
74
|
+
#: ../lib/pdk/cli.rb:137
|
75
|
+
msgid "Show help for this command."
|
76
|
+
msgstr ""
|
77
|
+
|
78
|
+
#: ../lib/pdk/cli.rb:142
|
79
|
+
msgid "Specify desired output format. Valid formats are '%{available_formats}'. You may also specify a file to which the formatted output is sent, for example: '--format=junit:report.xml'. This option may be specified multiple times if each option specifies a distinct target file."
|
80
|
+
msgstr ""
|
81
|
+
|
82
|
+
#: ../lib/pdk/cli.rb:153
|
83
|
+
msgid "Enable debug output."
|
84
|
+
msgstr ""
|
85
|
+
|
86
|
+
#: ../lib/pdk/cli/build.rb:4
|
87
|
+
msgid "build [options]"
|
88
|
+
msgstr ""
|
89
|
+
|
90
|
+
#: ../lib/pdk/cli/build.rb:5
|
91
|
+
msgid "Builds a package from the module that can be published to the Puppet Forge."
|
92
|
+
msgstr ""
|
93
|
+
|
94
|
+
#: ../lib/pdk/cli/build.rb:8
|
95
|
+
msgid "The target directory where you want PDK to write the package."
|
96
|
+
msgstr ""
|
97
|
+
|
98
|
+
#: ../lib/pdk/cli/build.rb:11
|
99
|
+
msgid "Skips the prompts and builds the module package."
|
100
|
+
msgstr ""
|
101
|
+
|
102
|
+
#: ../lib/pdk/cli/build.rb:20
|
103
|
+
msgid "`pdk build` can only be run from inside a valid module with a metadata.json."
|
104
|
+
msgstr ""
|
105
|
+
|
106
|
+
#: ../lib/pdk/cli/build.rb:33 ../lib/pdk/cli/release.rb:60
|
107
|
+
msgid "This module is missing the following fields in the metadata.json: %{fields}. These missing fields may affect the visibility of the module on the Forge."
|
108
|
+
msgstr ""
|
109
|
+
|
110
|
+
#: ../lib/pdk/cli/build.rb:49
|
111
|
+
msgid "The file '%{package}' already exists."
|
112
|
+
msgstr ""
|
113
|
+
|
114
|
+
#: ../lib/pdk/cli/build.rb:51
|
115
|
+
msgid "Overwrite?"
|
116
|
+
msgstr ""
|
117
|
+
|
118
|
+
#: ../lib/pdk/cli/build.rb:52 ../lib/pdk/cli/build.rb:63 ../lib/pdk/cli/release.rb:80
|
119
|
+
msgid "Build cancelled; exiting."
|
120
|
+
msgstr ""
|
121
|
+
|
122
|
+
#: ../lib/pdk/cli/build.rb:58 ../lib/pdk/cli/release.rb:76
|
123
|
+
msgid "This module is not compatible with PDK, so PDK can not validate or test this build. Unvalidated modules may have errors when uploading to the Forge. To make this module PDK compatible and use validate features, cancel the build and run `pdk convert`."
|
124
|
+
msgstr ""
|
125
|
+
|
126
|
+
#: ../lib/pdk/cli/build.rb:62 ../lib/pdk/cli/release.rb:79
|
127
|
+
msgid "Continue build without converting?"
|
128
|
+
msgstr ""
|
129
|
+
|
130
|
+
#: ../lib/pdk/cli/build.rb:69
|
131
|
+
msgid "Building %{module_name} version %{module_version}"
|
132
|
+
msgstr ""
|
133
|
+
|
134
|
+
#: ../lib/pdk/cli/build.rb:76
|
135
|
+
msgid "Build of %{package_name} has completed successfully. Built package can be found here: %{package_path}"
|
136
|
+
msgstr ""
|
137
|
+
|
138
|
+
#: ../lib/pdk/cli/bundle.rb:4
|
139
|
+
msgid "bundle [bundler_options]"
|
140
|
+
msgstr ""
|
141
|
+
|
142
|
+
#: ../lib/pdk/cli/bundle.rb:5
|
143
|
+
msgid "(Experimental) Command pass-through to bundler"
|
144
|
+
msgstr ""
|
145
|
+
|
146
|
+
#: ../lib/pdk/cli/bundle.rb:6
|
147
|
+
msgid ""
|
148
|
+
"[experimental] For advanced users, pdk bundle runs arbitrary commands in the bundler environment that pdk manages.\n"
|
149
|
+
"Careless use of this command can lead to errors that pdk can't help recover from.\n"
|
150
|
+
msgstr ""
|
151
|
+
|
152
|
+
#: ../lib/pdk/cli/bundle.rb:18
|
153
|
+
msgid "`pdk bundle` can only be run from inside a valid module directory."
|
154
|
+
msgstr ""
|
155
|
+
|
156
|
+
#: ../lib/pdk/cli/config.rb:4
|
157
|
+
msgid "config [subcommand] [options]"
|
158
|
+
msgstr ""
|
159
|
+
|
160
|
+
#: ../lib/pdk/cli/config.rb:5
|
161
|
+
msgid "(Deprecated) Configure the Puppet Development Kit."
|
162
|
+
msgstr ""
|
163
|
+
|
164
|
+
#: ../lib/pdk/cli/config.rb:9
|
165
|
+
msgid "The 'pdk config' command is deprecated, please use 'pdk get config' and 'pdk set config' instead."
|
166
|
+
msgstr ""
|
167
|
+
|
168
|
+
#: ../lib/pdk/cli/config/get.rb:4
|
169
|
+
msgid "config get [name]"
|
170
|
+
msgstr ""
|
171
|
+
|
172
|
+
#: ../lib/pdk/cli/config/get.rb:5
|
173
|
+
msgid "(Deprecated) Retrieve the configuration for <name>. If not specified, retrieve all configuration settings"
|
174
|
+
msgstr ""
|
175
|
+
|
176
|
+
#: ../lib/pdk/cli/config/get.rb:8
|
177
|
+
msgid "The 'pdk config get' command is deprecated, please use 'pdk get config' instead."
|
178
|
+
msgstr ""
|
179
|
+
|
180
|
+
#: ../lib/pdk/cli/config/get.rb:14 ../lib/pdk/cli/get/config.rb:12
|
181
|
+
msgid "Configuration item '%{name}' does not exist"
|
182
|
+
msgstr ""
|
183
|
+
|
184
|
+
#: ../lib/pdk/cli/config/get.rb:19 ../lib/pdk/cli/get/config.rb:17
|
185
|
+
msgid "%{value}"
|
186
|
+
msgstr ""
|
187
|
+
|
188
|
+
#: ../lib/pdk/cli/config/get.rb:23 ../lib/pdk/cli/get/config.rb:21 ../lib/pdk/cli/remove/config.rb:63 ../lib/pdk/cli/set/config.rb:99
|
189
|
+
msgid "%{name}=%{value}"
|
190
|
+
msgstr ""
|
191
|
+
|
192
|
+
#: ../lib/pdk/cli/console.rb:4
|
193
|
+
msgid "console [console_options]"
|
194
|
+
msgstr ""
|
195
|
+
|
196
|
+
#: ../lib/pdk/cli/console.rb:5
|
197
|
+
msgid "(Experimental) Start a session of the puppet debugger console."
|
198
|
+
msgstr ""
|
199
|
+
|
200
|
+
#: ../lib/pdk/cli/console.rb:7
|
201
|
+
msgid ""
|
202
|
+
"The pdk console runs a interactive session of the puppet debugger tool to test out snippets of code, run\n"
|
203
|
+
"language evaluations, datatype prototyping and much more. A virtual playground for your puppet code!\n"
|
204
|
+
"For usage details see the puppet debugger docs at https://docs.puppet-debugger.com.\n"
|
205
|
+
"\n"
|
206
|
+
msgstr ""
|
207
|
+
|
208
|
+
#: ../lib/pdk/cli/console.rb:26
|
209
|
+
msgid "Console can only be run from inside a valid module directory"
|
210
|
+
msgstr ""
|
211
|
+
|
212
|
+
#: ../lib/pdk/cli/console.rb:89
|
213
|
+
msgid "Module fixtures not found, please run pdk bundle exec rake spec_prep."
|
214
|
+
msgstr ""
|
215
|
+
|
216
|
+
#: ../lib/pdk/cli/convert.rb:4
|
217
|
+
msgid "convert [options]"
|
218
|
+
msgstr ""
|
219
|
+
|
220
|
+
#: ../lib/pdk/cli/convert.rb:5
|
221
|
+
msgid "Convert an existing module to be compatible with the PDK."
|
222
|
+
msgstr ""
|
223
|
+
|
224
|
+
#: ../lib/pdk/cli/convert.rb:11
|
225
|
+
msgid "Do not convert the module, just output what would be done."
|
226
|
+
msgstr ""
|
227
|
+
|
228
|
+
#: ../lib/pdk/cli/convert.rb:12
|
229
|
+
msgid "Convert the module automatically, with no prompts."
|
230
|
+
msgstr ""
|
231
|
+
|
232
|
+
#: ../lib/pdk/cli/convert.rb:13
|
233
|
+
msgid "Add any missing tests while converting the module."
|
234
|
+
msgstr ""
|
235
|
+
|
236
|
+
#: ../lib/pdk/cli/convert.rb:14
|
237
|
+
msgid "Convert the module to use the default PDK template."
|
238
|
+
msgstr ""
|
239
|
+
|
240
|
+
#: ../lib/pdk/cli/convert.rb:21
|
241
|
+
msgid "`pdk convert` can only be run from inside a valid module directory."
|
242
|
+
msgstr ""
|
243
|
+
|
244
|
+
#: ../lib/pdk/cli/convert.rb:25
|
245
|
+
msgid "You can not specify --noop and --force when converting a module"
|
246
|
+
msgstr ""
|
247
|
+
|
248
|
+
#: ../lib/pdk/cli/convert.rb:29
|
249
|
+
msgid "You can not specify --template-url and --default-template."
|
250
|
+
msgstr ""
|
251
|
+
|
252
|
+
#: ../lib/pdk/cli/convert.rb:40 ../lib/pdk/cli/new/module.rb:27
|
253
|
+
msgid "Ignoring --full-interview and continuing with --skip-interview."
|
254
|
+
msgstr ""
|
255
|
+
|
256
|
+
#: ../lib/pdk/cli/convert.rb:45
|
257
|
+
msgid "Ignoring --full-interview and continuing with --force."
|
258
|
+
msgstr ""
|
259
|
+
|
260
|
+
#: ../lib/pdk/cli/env.rb:4
|
261
|
+
msgid "env"
|
262
|
+
msgstr ""
|
263
|
+
|
264
|
+
#: ../lib/pdk/cli/env.rb:5
|
265
|
+
msgid "(Experimental) Output environment variables for specific Puppet context"
|
266
|
+
msgstr ""
|
267
|
+
|
268
|
+
#: ../lib/pdk/cli/env.rb:6
|
269
|
+
msgid ""
|
270
|
+
"[experimental] Aids in setting a CLI context for a specified version of Puppet by outputting export commands for necessary environment variables.\n"
|
271
|
+
msgstr ""
|
272
|
+
|
273
|
+
#: ../lib/pdk/cli/errors.rb:8
|
274
|
+
msgid "An unexpected error has occurred. Try running the command again with --debug"
|
275
|
+
msgstr ""
|
276
|
+
|
277
|
+
#: ../lib/pdk/cli/exec.rb:36
|
278
|
+
msgid "Unable to find `%{name}`. Check that it is installed and try again."
|
279
|
+
msgstr ""
|
280
|
+
|
281
|
+
#: ../lib/pdk/cli/exec.rb:62
|
282
|
+
msgid "PDK package installation not found. Trying '%{fallback}' from the system PATH instead."
|
283
|
+
msgstr ""
|
284
|
+
|
285
|
+
#: ../lib/pdk/cli/exec.rb:72
|
286
|
+
msgid "Could not find '%{vendored_bin}' in PDK package. Trying '%{fallback}' from the system PATH instead."
|
287
|
+
msgstr ""
|
288
|
+
|
289
|
+
#: ../lib/pdk/cli/exec.rb:79
|
290
|
+
msgid "Using '%{vendored_bin}' from PDK package."
|
291
|
+
msgstr ""
|
292
|
+
|
293
|
+
#: ../lib/pdk/cli/exec/command.rb:60
|
294
|
+
msgid "Expected execution context to be :system or :module but got '%{context}'."
|
295
|
+
msgstr ""
|
296
|
+
|
297
|
+
#: ../lib/pdk/cli/exec/command.rb:111 ../lib/pdk/cli/exec/interactive_command.rb:46
|
298
|
+
msgid "Current working directory is not part of a module. (No metadata.json was found.)"
|
299
|
+
msgstr ""
|
300
|
+
|
301
|
+
#: ../lib/pdk/cli/exec/command.rb:138
|
302
|
+
msgid "STDOUT: %{output}"
|
303
|
+
msgstr ""
|
304
|
+
|
305
|
+
#: ../lib/pdk/cli/exec/command.rb:141
|
306
|
+
msgid "STDERR: %{output}"
|
307
|
+
msgstr ""
|
308
|
+
|
309
|
+
#: ../lib/pdk/cli/exec/command.rb:155
|
310
|
+
msgid "PUPPET_GEM_VERSION is not supported by PDK. Use the --puppet-version option on your PDK command or set the PDK_PUPPET_VERSION environment variable instead"
|
311
|
+
msgstr ""
|
312
|
+
|
313
|
+
#: ../lib/pdk/cli/exec/command.rb:164
|
314
|
+
msgid "%{varname} is not supported by PDK."
|
315
|
+
msgstr ""
|
316
|
+
|
317
|
+
#: ../lib/pdk/cli/exec/command.rb:235
|
318
|
+
msgid "Executing '%{command}'"
|
319
|
+
msgstr ""
|
320
|
+
|
321
|
+
#: ../lib/pdk/cli/exec/command.rb:238 ../lib/pdk/cli/exec/interactive_command.rb:78
|
322
|
+
msgid "Command environment:"
|
323
|
+
msgstr ""
|
324
|
+
|
325
|
+
#: ../lib/pdk/cli/exec/command.rb:249
|
326
|
+
msgid "Failed to execute '%{command}': %{message}"
|
327
|
+
msgstr ""
|
328
|
+
|
329
|
+
#: ../lib/pdk/cli/exec/command.rb:265
|
330
|
+
msgid "Execution of '%{command}' complete (duration: %{duration_in_seconds}s; exit code: %{exit_code})"
|
331
|
+
msgstr ""
|
332
|
+
|
333
|
+
#: ../lib/pdk/cli/exec/interactive_command.rb:18 ../lib/pdk/cli/exec/interactive_command.rb:22 ../lib/pdk/cli/exec/interactive_command.rb:26 ../lib/pdk/cli/exec/interactive_command.rb:30 ../lib/pdk/cli/exec/interactive_command.rb:34 ../lib/pdk/cli/exec/interactive_command.rb:109
|
334
|
+
msgid "This method is not implemented for PDK::CLI::Exec::InteractiveCommand"
|
335
|
+
msgstr ""
|
336
|
+
|
337
|
+
#: ../lib/pdk/cli/exec/interactive_command.rb:75
|
338
|
+
msgid "Executing '%{command}' interactively"
|
339
|
+
msgstr ""
|
340
|
+
|
341
|
+
#: ../lib/pdk/cli/exec/interactive_command.rb:91
|
342
|
+
msgid ""
|
343
|
+
"Execution of '%{command}' complete (duration: \\\n"
|
344
|
+
" %{duration_in_seconds}s; exit code: %{exit_code})"
|
345
|
+
msgstr ""
|
346
|
+
|
347
|
+
#: ../lib/pdk/cli/exec_group.rb:41
|
348
|
+
msgid "No block registered"
|
349
|
+
msgstr ""
|
350
|
+
|
351
|
+
#: ../lib/pdk/cli/get.rb:4
|
352
|
+
msgid "get [subcommand] [options]"
|
353
|
+
msgstr ""
|
354
|
+
|
355
|
+
#: ../lib/pdk/cli/get.rb:5
|
356
|
+
msgid "Retrieve information about the PDK or current project."
|
357
|
+
msgstr ""
|
358
|
+
|
359
|
+
#: ../lib/pdk/cli/get/config.rb:4
|
360
|
+
msgid "config [name]"
|
361
|
+
msgstr ""
|
362
|
+
|
363
|
+
#: ../lib/pdk/cli/get/config.rb:5
|
364
|
+
msgid "Retrieve the configuration for <name>. If not specified, retrieve all configuration settings"
|
365
|
+
msgstr ""
|
366
|
+
|
367
|
+
#: ../lib/pdk/cli/module.rb:4
|
368
|
+
msgid "module [options]"
|
369
|
+
msgstr ""
|
370
|
+
|
371
|
+
#: ../lib/pdk/cli/module.rb:5
|
372
|
+
msgid "Provide CLI-backwards compatibility to the puppet module tool."
|
373
|
+
msgstr ""
|
374
|
+
|
375
|
+
#: ../lib/pdk/cli/module.rb:6
|
376
|
+
msgid "This command is only for reminding you how to accomplish tasks with the PDK, when you were previously doing them with the puppet module command."
|
377
|
+
msgstr ""
|
378
|
+
|
379
|
+
#: ../lib/pdk/cli/module/build.rb:4
|
380
|
+
msgid "build"
|
381
|
+
msgstr ""
|
382
|
+
|
383
|
+
#: ../lib/pdk/cli/module/build.rb:5
|
384
|
+
msgid "This command is now 'pdk build'."
|
385
|
+
msgstr ""
|
386
|
+
|
387
|
+
#: ../lib/pdk/cli/module/build.rb:8
|
388
|
+
msgid "Modules are built using the 'pdk build' command."
|
389
|
+
msgstr ""
|
390
|
+
|
391
|
+
#: ../lib/pdk/cli/module/generate.rb:4
|
392
|
+
msgid "generate [options] <module_name>"
|
393
|
+
msgstr ""
|
394
|
+
|
395
|
+
#: ../lib/pdk/cli/module/generate.rb:5
|
396
|
+
msgid "This command is now 'pdk new module'."
|
397
|
+
msgstr ""
|
398
|
+
|
399
|
+
#: ../lib/pdk/cli/module/generate.rb:24
|
400
|
+
msgid "New modules are created using the 'pdk new module' command."
|
401
|
+
msgstr ""
|
402
|
+
|
403
|
+
#: ../lib/pdk/cli/module/generate.rb:40 ../lib/pdk/cli/new/module.rb:49
|
404
|
+
msgid "Creating new module: %{modname}"
|
405
|
+
msgstr ""
|
406
|
+
|
407
|
+
#: ../lib/pdk/cli/new.rb:4
|
408
|
+
msgid "new <thing> [options]"
|
409
|
+
msgstr ""
|
410
|
+
|
411
|
+
#: ../lib/pdk/cli/new.rb:5
|
412
|
+
msgid "create a new module, etc."
|
413
|
+
msgstr ""
|
414
|
+
|
415
|
+
#: ../lib/pdk/cli/new.rb:6
|
416
|
+
msgid "Creates a new <thing> using relevant options."
|
417
|
+
msgstr ""
|
418
|
+
|
419
|
+
#: ../lib/pdk/cli/new/class.rb:4
|
420
|
+
msgid "class [options] <class_name>"
|
421
|
+
msgstr ""
|
422
|
+
|
423
|
+
#: ../lib/pdk/cli/new/class.rb:5
|
424
|
+
msgid "Create a new class named <class_name> using given options"
|
425
|
+
msgstr ""
|
426
|
+
|
427
|
+
#: ../lib/pdk/cli/new/class.rb:11
|
428
|
+
msgid "Classes can only be created from inside a valid module directory."
|
429
|
+
msgstr ""
|
430
|
+
|
431
|
+
#: ../lib/pdk/cli/new/class.rb:23
|
432
|
+
msgid "'%{name}' is not a valid class name"
|
433
|
+
msgstr ""
|
434
|
+
|
435
|
+
#: ../lib/pdk/cli/new/defined_type.rb:4
|
436
|
+
msgid "defined_type [options] <name>"
|
437
|
+
msgstr ""
|
438
|
+
|
439
|
+
#: ../lib/pdk/cli/new/defined_type.rb:5
|
440
|
+
msgid "Create a new defined type named <name> using given options"
|
441
|
+
msgstr ""
|
442
|
+
|
443
|
+
#: ../lib/pdk/cli/new/defined_type.rb:9
|
444
|
+
msgid "Defined types can only be created from inside a valid module directory."
|
445
|
+
msgstr ""
|
446
|
+
|
447
|
+
#: ../lib/pdk/cli/new/defined_type.rb:21
|
448
|
+
msgid "'%{name}' is not a valid defined type name"
|
449
|
+
msgstr ""
|
450
|
+
|
451
|
+
#: ../lib/pdk/cli/new/fact.rb:4
|
452
|
+
msgid "fact [options] <name>"
|
453
|
+
msgstr ""
|
454
|
+
|
455
|
+
#: ../lib/pdk/cli/new/fact.rb:5
|
456
|
+
msgid "Create a new custom fact named <name> using given options"
|
457
|
+
msgstr ""
|
458
|
+
|
459
|
+
#: ../lib/pdk/cli/new/fact.rb:18
|
460
|
+
msgid "'%{name}' is not a valid fact name"
|
461
|
+
msgstr ""
|
462
|
+
|
463
|
+
#: ../lib/pdk/cli/new/function.rb:4
|
464
|
+
msgid "function [options] <name>"
|
465
|
+
msgstr ""
|
466
|
+
|
467
|
+
#: ../lib/pdk/cli/new/function.rb:5
|
468
|
+
msgid "Create a new function named <name> using given options"
|
469
|
+
msgstr ""
|
470
|
+
|
471
|
+
#: ../lib/pdk/cli/new/function.rb:6
|
472
|
+
msgid "The function type, (native or v4)"
|
473
|
+
msgstr ""
|
474
|
+
|
475
|
+
#: ../lib/pdk/cli/new/function.rb:19
|
476
|
+
msgid "'%{name}' is not a valid function name"
|
477
|
+
msgstr ""
|
478
|
+
|
479
|
+
#: ../lib/pdk/cli/new/module.rb:4
|
480
|
+
msgid "module [options] [module_name] [target_dir]"
|
481
|
+
msgstr ""
|
482
|
+
|
483
|
+
#: ../lib/pdk/cli/new/module.rb:5
|
484
|
+
msgid "Create a new module named [module_name] using given options"
|
485
|
+
msgstr ""
|
486
|
+
|
487
|
+
#: ../lib/pdk/cli/new/module.rb:12
|
488
|
+
msgid "Specifies the license this module is written under. This should be a identifier from https://spdx.org/licenses/. Common values are 'Apache-2.0', 'MIT', or 'proprietary'."
|
489
|
+
msgstr ""
|
490
|
+
|
491
|
+
#: ../lib/pdk/cli/new/module.rb:14
|
492
|
+
msgid "Do not automatically run `bundle install` after creating the module."
|
493
|
+
msgstr ""
|
494
|
+
|
495
|
+
#: ../lib/pdk/cli/new/module.rb:33
|
496
|
+
msgid "You must specify a module name on the command line when running with --skip-interview."
|
497
|
+
msgstr ""
|
498
|
+
|
499
|
+
#: ../lib/pdk/cli/new/provider.rb:4
|
500
|
+
msgid "provider [options] <name>"
|
501
|
+
msgstr ""
|
502
|
+
|
503
|
+
#: ../lib/pdk/cli/new/provider.rb:5
|
504
|
+
msgid "[experimental] Create a new ruby provider named <name> using given options"
|
505
|
+
msgstr ""
|
506
|
+
|
507
|
+
#: ../lib/pdk/cli/new/provider.rb:18
|
508
|
+
msgid "'%{name}' is not a valid provider name"
|
509
|
+
msgstr ""
|
510
|
+
|
511
|
+
#: ../lib/pdk/cli/new/task.rb:4
|
512
|
+
msgid "task [options] <name>"
|
513
|
+
msgstr ""
|
514
|
+
|
515
|
+
#: ../lib/pdk/cli/new/task.rb:5
|
516
|
+
msgid "Create a new task named <name> using given options"
|
517
|
+
msgstr ""
|
518
|
+
|
519
|
+
#: ../lib/pdk/cli/new/task.rb:7
|
520
|
+
msgid "A short description of the purpose of the task"
|
521
|
+
msgstr ""
|
522
|
+
|
523
|
+
#: ../lib/pdk/cli/new/task.rb:13
|
524
|
+
msgid "Tasks can only be created from inside a valid module directory."
|
525
|
+
msgstr ""
|
526
|
+
|
527
|
+
#: ../lib/pdk/cli/new/task.rb:25
|
528
|
+
msgid "'%{name}' is not a valid task name"
|
529
|
+
msgstr ""
|
530
|
+
|
531
|
+
#: ../lib/pdk/cli/new/test.rb:4
|
532
|
+
msgid "test [options] <name>"
|
533
|
+
msgstr ""
|
534
|
+
|
535
|
+
#: ../lib/pdk/cli/new/test.rb:5
|
536
|
+
msgid "Create a new test for the object named <name>"
|
537
|
+
msgstr ""
|
538
|
+
|
539
|
+
#: ../lib/pdk/cli/new/test.rb:6
|
540
|
+
msgid "Create a new unit test."
|
541
|
+
msgstr ""
|
542
|
+
|
543
|
+
#: ../lib/pdk/cli/new/test.rb:16
|
544
|
+
msgid "Tests can only be created from inside a valid module directory."
|
545
|
+
msgstr ""
|
546
|
+
|
547
|
+
#: ../lib/pdk/cli/new/test.rb:30
|
548
|
+
msgid "Test type not specified, assuming unit."
|
549
|
+
msgstr ""
|
550
|
+
|
551
|
+
#: ../lib/pdk/cli/new/test.rb:46
|
552
|
+
msgid "Unable to find anything called \"%{object}\" to generate unit tests for."
|
553
|
+
msgstr ""
|
554
|
+
|
555
|
+
#: ../lib/pdk/cli/new/test.rb:48
|
556
|
+
msgid "PDK does not support generating unit tests for \"%{object_type}\" objects."
|
557
|
+
msgstr ""
|
558
|
+
|
559
|
+
#: ../lib/pdk/cli/new/transport.rb:4
|
560
|
+
msgid "transport [options] <name>"
|
561
|
+
msgstr ""
|
562
|
+
|
563
|
+
#: ../lib/pdk/cli/new/transport.rb:5
|
564
|
+
msgid "[experimental] Create a new ruby transport named <name> using given options"
|
565
|
+
msgstr ""
|
566
|
+
|
567
|
+
#: ../lib/pdk/cli/new/transport.rb:18
|
568
|
+
msgid "'%{name}' is not a valid transport name"
|
569
|
+
msgstr ""
|
570
|
+
|
571
|
+
#: ../lib/pdk/cli/release.rb:11
|
572
|
+
msgid "release [options]"
|
573
|
+
msgstr ""
|
574
|
+
|
575
|
+
#: ../lib/pdk/cli/release.rb:12
|
576
|
+
msgid "(Experimental) Release a module to the Puppet Forge."
|
577
|
+
msgstr ""
|
578
|
+
|
579
|
+
#: ../lib/pdk/cli/release.rb:14
|
580
|
+
msgid "Release the module automatically, with no prompts."
|
581
|
+
msgstr ""
|
582
|
+
|
583
|
+
#: ../lib/pdk/cli/release.rb:15 ../lib/pdk/cli/release/prep.rb:10
|
584
|
+
msgid "Skips the module validation check."
|
585
|
+
msgstr ""
|
586
|
+
|
587
|
+
#: ../lib/pdk/cli/release.rb:16 ../lib/pdk/cli/release/prep.rb:11
|
588
|
+
msgid "Skips the automatic changelog generation."
|
589
|
+
msgstr ""
|
590
|
+
|
591
|
+
#: ../lib/pdk/cli/release.rb:17 ../lib/pdk/cli/release/prep.rb:12
|
592
|
+
msgid "Skips the module dependency check."
|
593
|
+
msgstr ""
|
594
|
+
|
595
|
+
#: ../lib/pdk/cli/release.rb:18 ../lib/pdk/cli/release/prep.rb:13
|
596
|
+
msgid "Skips the documentation update."
|
597
|
+
msgstr ""
|
598
|
+
|
599
|
+
#: ../lib/pdk/cli/release.rb:19
|
600
|
+
msgid "Skips module build."
|
601
|
+
msgstr ""
|
602
|
+
|
603
|
+
#: ../lib/pdk/cli/release.rb:20
|
604
|
+
msgid "Skips publishing the module to the forge."
|
605
|
+
msgstr ""
|
606
|
+
|
607
|
+
#: ../lib/pdk/cli/release.rb:22 ../lib/pdk/cli/release/publish.rb:11
|
608
|
+
msgid "Set forge upload url path."
|
609
|
+
msgstr ""
|
610
|
+
|
611
|
+
#: ../lib/pdk/cli/release.rb:25
|
612
|
+
msgid "Set Forge API token."
|
613
|
+
msgstr ""
|
614
|
+
|
615
|
+
#: ../lib/pdk/cli/release.rb:28 ../lib/pdk/cli/release/prep.rb:15
|
616
|
+
msgid "Update the module to the specified version prior to release. When not specified, the new version will be computed from the Changelog where possible."
|
617
|
+
msgstr ""
|
618
|
+
|
619
|
+
#: ../lib/pdk/cli/release.rb:31
|
620
|
+
msgid "Path to the built module to push to the Forge. This option can only be used when --skip-build is also used. Defaults to pkg/<module version>.tar.gz"
|
621
|
+
msgstr ""
|
622
|
+
|
623
|
+
#: ../lib/pdk/cli/release.rb:37
|
624
|
+
msgid "`pdk release` can only be run from inside a valid module with a metadata.json."
|
625
|
+
msgstr ""
|
626
|
+
|
627
|
+
#: ../lib/pdk/cli/release.rb:74
|
628
|
+
msgid "This module is not compatible with PDK, so PDK can not validate or test this build."
|
629
|
+
msgstr ""
|
630
|
+
|
631
|
+
#: ../lib/pdk/cli/release.rb:99
|
632
|
+
msgid "Do you want to run the module validation ?"
|
633
|
+
msgstr ""
|
634
|
+
|
635
|
+
#: ../lib/pdk/cli/release.rb:106
|
636
|
+
msgid "Do you want to run the automatic changelog generation ?"
|
637
|
+
msgstr ""
|
638
|
+
|
639
|
+
#: ../lib/pdk/cli/release.rb:113
|
640
|
+
msgid "Do you want to set the module version ?"
|
641
|
+
msgstr ""
|
642
|
+
|
643
|
+
#: ../lib/pdk/cli/release.rb:120
|
644
|
+
msgid "Do you want to run the dependency-checker on this module?"
|
645
|
+
msgstr ""
|
646
|
+
|
647
|
+
#: ../lib/pdk/cli/release.rb:127
|
648
|
+
msgid "Do you want to update the documentation for this module?"
|
649
|
+
msgstr ""
|
650
|
+
|
651
|
+
#: ../lib/pdk/cli/release.rb:134
|
652
|
+
msgid "Do you want to publish the module on the Puppet Forge?"
|
653
|
+
msgstr ""
|
654
|
+
|
655
|
+
#: ../lib/pdk/cli/release.rb:162
|
656
|
+
msgid "Please set the module version"
|
657
|
+
msgstr ""
|
658
|
+
|
659
|
+
#: ../lib/pdk/cli/release.rb:163
|
660
|
+
msgid "This value is the version that will be used in the changelog generator and building of the module."
|
661
|
+
msgstr ""
|
662
|
+
|
663
|
+
#: ../lib/pdk/cli/release.rb:166
|
664
|
+
msgid "The version format should be in the format x.y.z where x represents the major version, y the minor version and z the build number."
|
665
|
+
msgstr ""
|
666
|
+
|
667
|
+
#: ../lib/pdk/cli/release.rb:180
|
668
|
+
msgid "Please set the api key(authorization token) to upload on the Puppet Forge"
|
669
|
+
msgstr ""
|
670
|
+
|
671
|
+
#: ../lib/pdk/cli/release.rb:181
|
672
|
+
msgid "This value is used for authentication on the Puppet Forge to upload your module tarball."
|
673
|
+
msgstr ""
|
674
|
+
|
675
|
+
#: ../lib/pdk/cli/release/prep.rb:6
|
676
|
+
msgid "prep [options]"
|
677
|
+
msgstr ""
|
678
|
+
|
679
|
+
#: ../lib/pdk/cli/release/prep.rb:7
|
680
|
+
msgid "(Experimental) Performs all the pre-release checks to ensure module is ready to be released"
|
681
|
+
msgstr ""
|
682
|
+
|
683
|
+
#: ../lib/pdk/cli/release/prep.rb:9
|
684
|
+
msgid "Prepare the module automatically, with no prompts."
|
685
|
+
msgstr ""
|
686
|
+
|
687
|
+
#: ../lib/pdk/cli/release/prep.rb:21 ../lib/pdk/cli/release/publish.rb:19
|
688
|
+
msgid "`pdk release #{cmd.name}` can only be run from inside a valid module with a metadata.json."
|
689
|
+
msgstr ""
|
690
|
+
|
691
|
+
#: ../lib/pdk/cli/release/publish.rb:6
|
692
|
+
msgid "publish [options] <tarball>"
|
693
|
+
msgstr ""
|
694
|
+
|
695
|
+
#: ../lib/pdk/cli/release/publish.rb:7
|
696
|
+
msgid "(Experimental) Publishes the module <tarball> to the Forge."
|
697
|
+
msgstr ""
|
698
|
+
|
699
|
+
#: ../lib/pdk/cli/release/publish.rb:9
|
700
|
+
msgid "Publish the module automatically, with no prompts."
|
701
|
+
msgstr ""
|
702
|
+
|
703
|
+
#: ../lib/pdk/cli/release/publish.rb:14
|
704
|
+
msgid "Set Forge API token (you may also set via environment variable PDK_FORGE_TOKEN)"
|
705
|
+
msgstr ""
|
706
|
+
|
707
|
+
#: ../lib/pdk/cli/release/publish.rb:33
|
708
|
+
msgid "You must supply a Forge API token either via `--forge-token` option or PDK_FORGE_TOKEN environment variable."
|
709
|
+
msgstr ""
|
710
|
+
|
711
|
+
#: ../lib/pdk/cli/remove.rb:4
|
712
|
+
msgid "remove [subcommand] [options]"
|
713
|
+
msgstr ""
|
714
|
+
|
715
|
+
#: ../lib/pdk/cli/remove.rb:5
|
716
|
+
msgid "Remove or delete information about the PDK or current project."
|
717
|
+
msgstr ""
|
718
|
+
|
719
|
+
#: ../lib/pdk/cli/remove/config.rb:11 ../lib/pdk/cli/set/config.rb:73
|
720
|
+
msgid "Configuration name is required"
|
721
|
+
msgstr ""
|
722
|
+
|
723
|
+
#: ../lib/pdk/cli/remove/config.rb:14
|
724
|
+
msgid "The configuration item '%{name}' can not be removed."
|
725
|
+
msgstr ""
|
726
|
+
|
727
|
+
#: ../lib/pdk/cli/remove/config.rb:16
|
728
|
+
msgid "Could not remove '%{name}' as it has not been set"
|
729
|
+
msgstr ""
|
730
|
+
|
731
|
+
#: ../lib/pdk/cli/remove/config.rb:20
|
732
|
+
msgid "Ignoring the item value '%{value}' as --force has been set"
|
733
|
+
msgstr ""
|
734
|
+
|
735
|
+
#: ../lib/pdk/cli/remove/config.rb:21
|
736
|
+
msgid "Ignoring --force as the setting is not multi-valued"
|
737
|
+
msgstr ""
|
738
|
+
|
739
|
+
#: ../lib/pdk/cli/remove/config.rb:34
|
740
|
+
msgid "Could not remove '%{name}' as it is already empty"
|
741
|
+
msgstr ""
|
742
|
+
|
743
|
+
#: ../lib/pdk/cli/remove/config.rb:36
|
744
|
+
msgid "Could not remove '%{value}' from '%{name}' as it has not been set"
|
745
|
+
msgstr ""
|
746
|
+
|
747
|
+
#: ../lib/pdk/cli/remove/config.rb:52
|
748
|
+
msgid "Cleared '%{name}' which had a value of '%{from}'"
|
749
|
+
msgstr ""
|
750
|
+
|
751
|
+
#: ../lib/pdk/cli/remove/config.rb:54
|
752
|
+
msgid "Removed '%{value}' from '%{name}'"
|
753
|
+
msgstr ""
|
754
|
+
|
755
|
+
#: ../lib/pdk/cli/remove/config.rb:57
|
756
|
+
msgid "Could not remove '%{name}' as it using a default value of '%{to}'"
|
757
|
+
msgstr ""
|
758
|
+
|
759
|
+
#: ../lib/pdk/cli/remove/config.rb:59
|
760
|
+
msgid "Removed '%{name}' which had a value of '%{from}'"
|
761
|
+
msgstr ""
|
762
|
+
|
763
|
+
#: ../lib/pdk/cli/remove/config.rb:71 ../lib/pdk/cli/set/config.rb:107
|
764
|
+
msgid "config [name] [value]"
|
765
|
+
msgstr ""
|
766
|
+
|
767
|
+
#: ../lib/pdk/cli/remove/config.rb:72
|
768
|
+
msgid "Remove or delete the configuration for <name>"
|
769
|
+
msgstr ""
|
770
|
+
|
771
|
+
#: ../lib/pdk/cli/remove/config.rb:74
|
772
|
+
msgid "Force multi-value configuration settings to be removed instead of emptied."
|
773
|
+
msgstr ""
|
774
|
+
|
775
|
+
#: ../lib/pdk/cli/set.rb:4
|
776
|
+
msgid "set [subcommand] [options]"
|
777
|
+
msgstr ""
|
778
|
+
|
779
|
+
#: ../lib/pdk/cli/set.rb:5
|
780
|
+
msgid "Set or update information about the PDK or current project."
|
781
|
+
msgstr ""
|
782
|
+
|
783
|
+
#: ../lib/pdk/cli/set/config.rb:15
|
784
|
+
msgid "Unknown type %{type_name}. Expected one of %{allowed}"
|
785
|
+
msgstr ""
|
786
|
+
|
787
|
+
#: ../lib/pdk/cli/set/config.rb:20 ../lib/pdk/cli/set/config.rb:36
|
788
|
+
msgid "An error occured converting '%{value}' into a %{type_name}"
|
789
|
+
msgstr ""
|
790
|
+
|
791
|
+
#: ../lib/pdk/cli/set/config.rb:74
|
792
|
+
msgid "Configuration value is required. If you wish to remove a value use 'pdk remove config'"
|
793
|
+
msgstr ""
|
794
|
+
|
795
|
+
#: ../lib/pdk/cli/set/config.rb:77
|
796
|
+
msgid "The configuration item '%{name}' can not have a value set."
|
797
|
+
msgstr ""
|
798
|
+
|
799
|
+
#: ../lib/pdk/cli/set/config.rb:83
|
800
|
+
msgid "No changes made to '%{name}' as it already contains value '%{to}'"
|
801
|
+
msgstr ""
|
802
|
+
|
803
|
+
#: ../lib/pdk/cli/set/config.rb:90
|
804
|
+
msgid "Set initial value of '%{name}' to '%{to}'"
|
805
|
+
msgstr ""
|
806
|
+
|
807
|
+
#: ../lib/pdk/cli/set/config.rb:93
|
808
|
+
msgid "Added new value '%{to}' to '%{name}'"
|
809
|
+
msgstr ""
|
810
|
+
|
811
|
+
#: ../lib/pdk/cli/set/config.rb:95
|
812
|
+
msgid "Changed existing value of '%{name}' from '%{from}' to '%{to}'"
|
813
|
+
msgstr ""
|
814
|
+
|
815
|
+
#: ../lib/pdk/cli/set/config.rb:108
|
816
|
+
msgid "Set or update the configuration for <name>"
|
817
|
+
msgstr ""
|
818
|
+
|
819
|
+
#: ../lib/pdk/cli/set/config.rb:110
|
820
|
+
msgid "Force the configuration setting to be overwitten."
|
821
|
+
msgstr ""
|
822
|
+
|
823
|
+
#: ../lib/pdk/cli/set/config.rb:112
|
824
|
+
msgid "The type of value to set. Acceptable values: %{values}"
|
825
|
+
msgstr ""
|
826
|
+
|
827
|
+
#: ../lib/pdk/cli/set/config.rb:113
|
828
|
+
msgid "Alias of --type"
|
829
|
+
msgstr ""
|
830
|
+
|
831
|
+
#: ../lib/pdk/cli/test.rb:4
|
832
|
+
msgid "test [subcommand] [options]"
|
833
|
+
msgstr ""
|
834
|
+
|
835
|
+
#: ../lib/pdk/cli/test.rb:5
|
836
|
+
msgid "Run tests."
|
837
|
+
msgstr ""
|
838
|
+
|
839
|
+
#: ../lib/pdk/cli/test/unit.rb:4
|
840
|
+
msgid "unit [options]"
|
841
|
+
msgstr ""
|
842
|
+
|
843
|
+
#: ../lib/pdk/cli/test/unit.rb:5
|
844
|
+
msgid "Run unit tests."
|
845
|
+
msgstr ""
|
846
|
+
|
847
|
+
#: ../lib/pdk/cli/test/unit.rb:9
|
848
|
+
msgid "List all available unit test files."
|
849
|
+
msgstr ""
|
850
|
+
|
851
|
+
#: ../lib/pdk/cli/test/unit.rb:10
|
852
|
+
msgid "Run unit tests in parallel."
|
853
|
+
msgstr ""
|
854
|
+
|
855
|
+
#: ../lib/pdk/cli/test/unit.rb:11
|
856
|
+
msgid "More verbose --list output. Displays a list of examples in each unit test file."
|
857
|
+
msgstr ""
|
858
|
+
|
859
|
+
#: ../lib/pdk/cli/test/unit.rb:12
|
860
|
+
msgid "Clean up downloaded fixtures after the test run."
|
861
|
+
msgstr ""
|
862
|
+
|
863
|
+
#: ../lib/pdk/cli/test/unit.rb:14
|
864
|
+
msgid "Specify a comma-separated list of unit test files to run."
|
865
|
+
msgstr ""
|
866
|
+
|
867
|
+
#: ../lib/pdk/cli/test/unit.rb:30
|
868
|
+
msgid "Unit tests can only be run from inside a valid module directory."
|
869
|
+
msgstr ""
|
870
|
+
|
871
|
+
#: ../lib/pdk/cli/test/unit.rb:52
|
872
|
+
msgid "No unit test files with examples were found."
|
873
|
+
msgstr ""
|
874
|
+
|
875
|
+
#: ../lib/pdk/cli/test/unit.rb:54
|
876
|
+
msgid "Unit Test Files:"
|
877
|
+
msgstr ""
|
878
|
+
|
879
|
+
#: ../lib/pdk/cli/test/unit.rb:63
|
880
|
+
msgid "\t%{id}\t%{description}"
|
881
|
+
msgstr ""
|
882
|
+
|
883
|
+
#: ../lib/pdk/cli/update.rb:4
|
884
|
+
msgid "update [options]"
|
885
|
+
msgstr ""
|
886
|
+
|
887
|
+
#: ../lib/pdk/cli/update.rb:5
|
888
|
+
msgid "Update a module that has been created by or converted for use by PDK."
|
889
|
+
msgstr ""
|
890
|
+
|
891
|
+
#: ../lib/pdk/cli/update.rb:7
|
892
|
+
msgid "Do not update the module, just output what would be done."
|
893
|
+
msgstr ""
|
894
|
+
|
895
|
+
#: ../lib/pdk/cli/update.rb:8
|
896
|
+
msgid "Update the module automatically, with no prompts."
|
897
|
+
msgstr ""
|
898
|
+
|
899
|
+
#: ../lib/pdk/cli/update.rb:17
|
900
|
+
msgid "`pdk update` can only be run from inside a valid module directory."
|
901
|
+
msgstr ""
|
902
|
+
|
903
|
+
#: ../lib/pdk/cli/update.rb:20
|
904
|
+
msgid "This module does not appear to be PDK compatible. To make the module compatible with PDK, run `pdk convert`."
|
905
|
+
msgstr ""
|
906
|
+
|
907
|
+
#: ../lib/pdk/cli/update.rb:23
|
908
|
+
msgid "You can not specify --noop and --force when updating a module"
|
909
|
+
msgstr ""
|
910
|
+
|
911
|
+
#: ../lib/pdk/cli/update.rb:27
|
912
|
+
msgid "This module has been updated to PDK %{module_pdk_version} which is newer than your PDK version (%{user_pdk_version}), proceed with caution!"
|
913
|
+
msgstr ""
|
914
|
+
|
915
|
+
#: ../lib/pdk/cli/update.rb:37
|
916
|
+
msgid "Please update your PDK installation and try again. You may also use the --force flag to override this and continue at your own risk."
|
917
|
+
msgstr ""
|
918
|
+
|
919
|
+
#: ../lib/pdk/cli/update.rb:50
|
920
|
+
msgid "This module is currently pinned to version %{current_version} of the default template. If you would like to update your module to the latest version of the template, please run `pdk update --template-ref %{new_version}`."
|
921
|
+
msgstr ""
|
922
|
+
|
923
|
+
#: ../lib/pdk/cli/util.rb:26
|
924
|
+
msgid "This command must be run from inside a valid module (no metadata.json found)."
|
925
|
+
msgstr ""
|
926
|
+
|
927
|
+
#: ../lib/pdk/cli/util.rb:52
|
928
|
+
msgid "Answer \"Y\" to continue or \"n\" to cancel."
|
929
|
+
msgstr ""
|
930
|
+
|
931
|
+
#: ../lib/pdk/cli/util.rb:99
|
932
|
+
msgid "This module is not PDK compatible. Run `pdk convert` to make it compatible with your version of PDK."
|
933
|
+
msgstr ""
|
934
|
+
|
935
|
+
#: ../lib/pdk/cli/util.rb:105
|
936
|
+
msgid "This module template is out of date. Run `pdk convert` to make it compatible with your version of PDK."
|
937
|
+
msgstr ""
|
938
|
+
|
939
|
+
#: ../lib/pdk/cli/util.rb:110
|
940
|
+
msgid "This module is compatible with a newer version of PDK. Upgrade your version of PDK to ensure compatibility."
|
941
|
+
msgstr ""
|
942
|
+
|
943
|
+
#: ../lib/pdk/cli/util.rb:114
|
944
|
+
msgid "This module is compatible with an older version of PDK. Run `pdk update` to update it to your version of PDK."
|
945
|
+
msgstr ""
|
946
|
+
|
947
|
+
#: ../lib/pdk/cli/util.rb:125
|
948
|
+
msgid "Support for Puppet versions older than %{version} is deprecated and will be removed in a future version of PDK."
|
949
|
+
msgstr ""
|
950
|
+
|
951
|
+
#: ../lib/pdk/cli/util.rb:166
|
952
|
+
msgid "Using Ruby %{version}"
|
953
|
+
msgstr ""
|
954
|
+
|
955
|
+
#: ../lib/pdk/cli/util.rb:180
|
956
|
+
msgid "Using %{gem} %{version}"
|
957
|
+
msgstr ""
|
958
|
+
|
959
|
+
#: ../lib/pdk/cli/util.rb:211 ../lib/pdk/cli/util.rb:223
|
960
|
+
msgid "You cannot specify a %{first} and %{second} at the same time."
|
961
|
+
msgstr ""
|
962
|
+
|
963
|
+
#: ../lib/pdk/cli/util.rb:259
|
964
|
+
msgid "--template-ref requires --template-url to also be specified."
|
965
|
+
msgstr ""
|
966
|
+
|
967
|
+
#: ../lib/pdk/cli/util.rb:263
|
968
|
+
msgid "--template-url may not be used to specify paths containing #'s."
|
969
|
+
msgstr ""
|
970
|
+
|
971
|
+
#: ../lib/pdk/cli/util/command_redirector.rb:19
|
972
|
+
msgid "Did you mean '%{command}'?"
|
973
|
+
msgstr ""
|
974
|
+
|
975
|
+
#: ../lib/pdk/cli/util/interview.rb:33
|
976
|
+
msgid "[Q %{current_number}/%{questions_total}]"
|
977
|
+
msgstr ""
|
978
|
+
|
979
|
+
#: ../lib/pdk/cli/util/interview.rb:39 ../lib/pdk/cli/util/interview.rb:43 ../lib/pdk/cli/util/interview.rb:52
|
980
|
+
msgid "-->"
|
981
|
+
msgstr ""
|
982
|
+
|
983
|
+
#: ../lib/pdk/cli/util/option_normalizer.rb:8
|
984
|
+
msgid "Error: expected comma separated list"
|
985
|
+
msgstr ""
|
986
|
+
|
987
|
+
#: ../lib/pdk/cli/util/option_normalizer.rb:34
|
988
|
+
msgid "'%{name}' is not a valid report format (%{valid})"
|
989
|
+
msgstr ""
|
990
|
+
|
991
|
+
#: ../lib/pdk/cli/util/option_validator.rb:21
|
992
|
+
msgid "Error: the following values are invalid: %{invalid_entries}"
|
993
|
+
msgstr ""
|
994
|
+
|
995
|
+
#: ../lib/pdk/cli/validate.rb:4
|
996
|
+
msgid "validate [validators] [options] [targets]"
|
997
|
+
msgstr ""
|
998
|
+
|
999
|
+
#: ../lib/pdk/cli/validate.rb:5
|
1000
|
+
msgid "Run static analysis tests."
|
1001
|
+
msgstr ""
|
1002
|
+
|
1003
|
+
#: ../lib/pdk/cli/validate.rb:6
|
1004
|
+
msgid ""
|
1005
|
+
"Run metadata, YAML, Puppet, Ruby, or Tasks validation.\n"
|
1006
|
+
"\n"
|
1007
|
+
"[validators] is an optional comma-separated list of validators to use. If not specified, all validators are used. Note that when using PowerShell, the list of validators must be enclosed in single quotes.\n"
|
1008
|
+
"\n"
|
1009
|
+
"[targets] is an optional space-separated list of files or directories to be validated. If not specified, validators are run against all applicable files in the module."
|
1010
|
+
msgstr ""
|
1011
|
+
|
1012
|
+
#: ../lib/pdk/cli/validate.rb:17
|
1013
|
+
msgid "List all available validators."
|
1014
|
+
msgstr ""
|
1015
|
+
|
1016
|
+
#: ../lib/pdk/cli/validate.rb:18
|
1017
|
+
msgid "Automatically correct problems where possible."
|
1018
|
+
msgstr ""
|
1019
|
+
|
1020
|
+
#: ../lib/pdk/cli/validate.rb:19
|
1021
|
+
msgid "Run validations in parallel."
|
1022
|
+
msgstr ""
|
1023
|
+
|
1024
|
+
#: ../lib/pdk/cli/validate.rb:34
|
1025
|
+
msgid "Available validators: %{validator_names}"
|
1026
|
+
msgstr ""
|
1027
|
+
|
1028
|
+
#: ../lib/pdk/cli/validate.rb:40
|
1029
|
+
msgid "Code validation can only be run from inside a valid module directory"
|
1030
|
+
msgstr ""
|
1031
|
+
|
1032
|
+
#: ../lib/pdk/cli/validate.rb:61
|
1033
|
+
msgid "Unknown validator '%{v}'. Available validators: %{validators}."
|
1034
|
+
msgstr ""
|
1035
|
+
|
1036
|
+
#: ../lib/pdk/cli/validate.rb:71 ../lib/pdk/cli/validate.rb:75
|
1037
|
+
msgid "Running all available validators..."
|
1038
|
+
msgstr ""
|
1039
|
+
|
1040
|
+
#: ../lib/pdk/config.rb:146
|
1041
|
+
msgid "Expected an Array but got '%{klass}' for scopes"
|
1042
|
+
msgstr ""
|
1043
|
+
|
1044
|
+
#: ../lib/pdk/config.rb:147
|
1045
|
+
msgid "Expected an Array or String but got '%{klass}' for setting_name"
|
1046
|
+
msgstr ""
|
1047
|
+
|
1048
|
+
#: ../lib/pdk/config.rb:167 ../lib/pdk/config/setting.rb:113
|
1049
|
+
msgid "must be passed a block"
|
1050
|
+
msgstr ""
|
1051
|
+
|
1052
|
+
#: ../lib/pdk/config.rb:186
|
1053
|
+
msgid "Invalid configuration names"
|
1054
|
+
msgstr ""
|
1055
|
+
|
1056
|
+
#: ../lib/pdk/config.rb:188
|
1057
|
+
msgid "Unknown configuration root '%{name}'"
|
1058
|
+
msgstr ""
|
1059
|
+
|
1060
|
+
#: ../lib/pdk/config.rb:196
|
1061
|
+
msgid "Unable to load %{file}: %{message}"
|
1062
|
+
msgstr ""
|
1063
|
+
|
1064
|
+
#: ../lib/pdk/config.rb:237
|
1065
|
+
msgid ""
|
1066
|
+
"PDK collects anonymous usage information to help us understand how it is being used and make decisions on how to improve it. You can find out more about what data we collect and how it is used in the PDK documentation at %{url}.\n"
|
1067
|
+
msgstr ""
|
1068
|
+
|
1069
|
+
#: ../lib/pdk/config.rb:243
|
1070
|
+
msgid "You can opt in or out of the usage data collection at any time by editing the analytics configuration file at %{path} and changing the '%{key}' value."
|
1071
|
+
msgstr ""
|
1072
|
+
|
1073
|
+
#: ../lib/pdk/config.rb:255
|
1074
|
+
msgid "Do you consent to the collection of anonymous PDK usage information?"
|
1075
|
+
msgstr ""
|
1076
|
+
|
1077
|
+
#: ../lib/pdk/config.rb:269
|
1078
|
+
msgid "No answer given, opting out of analytics collection."
|
1079
|
+
msgstr ""
|
1080
|
+
|
1081
|
+
#: ../lib/pdk/config.rb:307
|
1082
|
+
msgid "Expected a String but got '%{klass}'"
|
1083
|
+
msgstr ""
|
1084
|
+
|
1085
|
+
#: ../lib/pdk/config.rb:331
|
1086
|
+
msgid "Missing or invalid namespace"
|
1087
|
+
msgstr ""
|
1088
|
+
|
1089
|
+
#: ../lib/pdk/config.rb:332
|
1090
|
+
msgid "Missing a name to set"
|
1091
|
+
msgstr ""
|
1092
|
+
|
1093
|
+
#: ../lib/pdk/config.rb:383
|
1094
|
+
msgid "Unable to set '%{key}' to '%{value}' as it is not a Hash"
|
1095
|
+
msgstr ""
|
1096
|
+
|
1097
|
+
#: ../lib/pdk/config/ini_file_setting.rb:23 ../lib/pdk/config/ini_file_setting.rb:31
|
1098
|
+
msgid "The setting %{key} may only be a String or Integer, not %{class}"
|
1099
|
+
msgstr ""
|
1100
|
+
|
1101
|
+
#: ../lib/pdk/config/json_schema_namespace.rb:102
|
1102
|
+
msgid "Setting '#{key}' does not exist'"
|
1103
|
+
msgstr ""
|
1104
|
+
|
1105
|
+
#: ../lib/pdk/config/json_schema_namespace.rb:123
|
1106
|
+
msgid "Unable to open %{file} for reading. File does not exist"
|
1107
|
+
msgstr ""
|
1108
|
+
|
1109
|
+
#: ../lib/pdk/config/json_schema_namespace.rb:135
|
1110
|
+
msgid "Unable to open %{file} for reading. JSON Error: %{msg}"
|
1111
|
+
msgstr ""
|
1112
|
+
|
1113
|
+
#: ../lib/pdk/config/json_schema_setting.rb:27 ../lib/pdk/config/setting.rb:99
|
1114
|
+
msgid "%{key} %{message}"
|
1115
|
+
msgstr ""
|
1116
|
+
|
1117
|
+
#: ../lib/pdk/config/json_with_schema.rb:22 ../lib/pdk/config/yaml_with_schema.rb:23
|
1118
|
+
msgid "The configuration file %{filename} is not valid: %{message}"
|
1119
|
+
msgstr ""
|
1120
|
+
|
1121
|
+
#: ../lib/pdk/config/namespace.rb:68
|
1122
|
+
msgid "Only PDK::Config::Namespace objects can be mounted into a namespace"
|
1123
|
+
msgstr ""
|
1124
|
+
|
1125
|
+
#: ../lib/pdk/config/namespace.rb:141
|
1126
|
+
msgid "Namespace mounts can not be set a value"
|
1127
|
+
msgstr ""
|
1128
|
+
|
1129
|
+
#: ../lib/pdk/config/namespace.rb:308
|
1130
|
+
msgid "Unable to open %{file} for reading"
|
1131
|
+
msgstr ""
|
1132
|
+
|
1133
|
+
#: ../lib/pdk/config/namespace.rb:331
|
1134
|
+
msgid "Unable to open %{file} for writing"
|
1135
|
+
msgstr ""
|
1136
|
+
|
1137
|
+
#: ../lib/pdk/config/setting.rb:80
|
1138
|
+
msgid "`validator` must be a Hash"
|
1139
|
+
msgstr ""
|
1140
|
+
|
1141
|
+
#: ../lib/pdk/config/setting.rb:81
|
1142
|
+
msgid "the :proc key must contain a Proc"
|
1143
|
+
msgstr ""
|
1144
|
+
|
1145
|
+
#: ../lib/pdk/config/setting.rb:82
|
1146
|
+
msgid "the :message key must contain a String"
|
1147
|
+
msgstr ""
|
1148
|
+
|
1149
|
+
#: ../lib/pdk/config/validator.rb:16
|
1150
|
+
msgid "must be a boolean: true or false"
|
1151
|
+
msgstr ""
|
1152
|
+
|
1153
|
+
#: ../lib/pdk/config/validator.rb:26
|
1154
|
+
msgid "must be a version 4 UUID"
|
1155
|
+
msgstr ""
|
1156
|
+
|
1157
|
+
#: ../lib/pdk/config/yaml.rb:25 ../lib/pdk/config/yaml_with_schema.rb:39
|
1158
|
+
msgid "Syntax error when loading %{file}: %{error}"
|
1159
|
+
msgstr ""
|
1160
|
+
|
1161
|
+
#: ../lib/pdk/config/yaml.rb:30 ../lib/pdk/config/yaml_with_schema.rb:44
|
1162
|
+
msgid "Unsupported class in %{file}: %{error}"
|
1163
|
+
msgstr ""
|
1164
|
+
|
1165
|
+
#: ../lib/pdk/context/control_repo.rb:47
|
1166
|
+
msgid "a Control Repository context"
|
1167
|
+
msgstr ""
|
1168
|
+
|
1169
|
+
#: ../lib/pdk/context/module.rb:23
|
1170
|
+
msgid "a Puppet Module context"
|
1171
|
+
msgstr ""
|
1172
|
+
|
1173
|
+
#: ../lib/pdk/context/none.rb:11
|
1174
|
+
msgid "an unknown context"
|
1175
|
+
msgstr ""
|
1176
|
+
|
1177
|
+
#: ../lib/pdk/generate/module.rb:10
|
1178
|
+
msgid ""
|
1179
|
+
"'%{module_name}' is not a valid module name.\n"
|
1180
|
+
"Module names must begin with a lowercase letter and can only include lowercase letters, digits, and underscores."
|
1181
|
+
msgstr ""
|
1182
|
+
|
1183
|
+
#: ../lib/pdk/generate/module.rb:18
|
1184
|
+
msgid "The destination directory '%{dir}' already exists"
|
1185
|
+
msgstr ""
|
1186
|
+
|
1187
|
+
#: ../lib/pdk/generate/module.rb:38
|
1188
|
+
msgid "You do not have permission to write to '%{parent_dir}'"
|
1189
|
+
msgstr ""
|
1190
|
+
|
1191
|
+
#: ../lib/pdk/generate/module.rb:50
|
1192
|
+
msgid "Using the default template-url and template-ref."
|
1193
|
+
msgstr ""
|
1194
|
+
|
1195
|
+
#: ../lib/pdk/generate/module.rb:52
|
1196
|
+
msgid "Using the %{method} template-url and template-ref '%{template_uri}'."
|
1197
|
+
msgstr ""
|
1198
|
+
|
1199
|
+
#: ../lib/pdk/generate/module.rb:54
|
1200
|
+
msgid "saved"
|
1201
|
+
msgstr ""
|
1202
|
+
|
1203
|
+
#: ../lib/pdk/generate/module.rb:54
|
1204
|
+
msgid "specified"
|
1205
|
+
msgstr ""
|
1206
|
+
|
1207
|
+
#: ../lib/pdk/generate/module.rb:102
|
1208
|
+
msgid "Module '%{name}' generated at path '%{path}'."
|
1209
|
+
msgstr ""
|
1210
|
+
|
1211
|
+
#: ../lib/pdk/generate/module.rb:106
|
1212
|
+
msgid "In your module directory, add classes with the 'pdk new class' command."
|
1213
|
+
msgstr ""
|
1214
|
+
|
1215
|
+
#: ../lib/pdk/generate/module.rb:111
|
1216
|
+
msgid "Failed to move '%{source}' to '%{target}': %{message}"
|
1217
|
+
msgstr ""
|
1218
|
+
|
1219
|
+
#: ../lib/pdk/generate/module.rb:127
|
1220
|
+
msgid "Your username is not a valid Forge username. Proceeding with the username %{username}. You can fix this later in metadata.json."
|
1221
|
+
msgstr ""
|
1222
|
+
|
1223
|
+
#: ../lib/pdk/generate/module.rb:165
|
1224
|
+
msgid "Unable to create directory '%{dir}': %{message}"
|
1225
|
+
msgstr ""
|
1226
|
+
|
1227
|
+
#: ../lib/pdk/generate/module.rb:180
|
1228
|
+
msgid "If you have a name for your module, add it here."
|
1229
|
+
msgstr ""
|
1230
|
+
|
1231
|
+
#: ../lib/pdk/generate/module.rb:181
|
1232
|
+
msgid "This is the name that will be associated with your module, it should be relevant to the modules content."
|
1233
|
+
msgstr ""
|
1234
|
+
|
1235
|
+
#: ../lib/pdk/generate/module.rb:184
|
1236
|
+
msgid "Module names must begin with a lowercase letter and can only include lowercase letters, numbers, and underscores."
|
1237
|
+
msgstr ""
|
1238
|
+
|
1239
|
+
#: ../lib/pdk/generate/module.rb:188
|
1240
|
+
msgid "If you have a Puppet Forge username, add it here."
|
1241
|
+
msgstr ""
|
1242
|
+
|
1243
|
+
#: ../lib/pdk/generate/module.rb:189
|
1244
|
+
msgid "We can use this to upload your module to the Forge when it's complete."
|
1245
|
+
msgstr ""
|
1246
|
+
|
1247
|
+
#: ../lib/pdk/generate/module.rb:192
|
1248
|
+
msgid "Forge usernames can only contain lowercase letters and numbers"
|
1249
|
+
msgstr ""
|
1250
|
+
|
1251
|
+
#: ../lib/pdk/generate/module.rb:197
|
1252
|
+
msgid "What version is this module?"
|
1253
|
+
msgstr ""
|
1254
|
+
|
1255
|
+
#: ../lib/pdk/generate/module.rb:198
|
1256
|
+
msgid "Puppet uses Semantic Versioning (semver.org) to version modules."
|
1257
|
+
msgstr ""
|
1258
|
+
|
1259
|
+
#: ../lib/pdk/generate/module.rb:201
|
1260
|
+
msgid "Semantic Version numbers must be in the form MAJOR.MINOR.PATCH"
|
1261
|
+
msgstr ""
|
1262
|
+
|
1263
|
+
#: ../lib/pdk/generate/module.rb:207
|
1264
|
+
msgid "Who wrote this module?"
|
1265
|
+
msgstr ""
|
1266
|
+
|
1267
|
+
#: ../lib/pdk/generate/module.rb:208
|
1268
|
+
msgid "This is used to credit the module's author."
|
1269
|
+
msgstr ""
|
1270
|
+
|
1271
|
+
#: ../lib/pdk/generate/module.rb:214
|
1272
|
+
msgid "What license does this module code fall under?"
|
1273
|
+
msgstr ""
|
1274
|
+
|
1275
|
+
#: ../lib/pdk/generate/module.rb:215
|
1276
|
+
msgid "This should be an identifier from https://spdx.org/licenses/. Common values are \"Apache-2.0\", \"MIT\", or \"proprietary\"."
|
1277
|
+
msgstr ""
|
1278
|
+
|
1279
|
+
#: ../lib/pdk/generate/module.rb:221
|
1280
|
+
msgid "What operating systems does this module support?"
|
1281
|
+
msgstr ""
|
1282
|
+
|
1283
|
+
#: ../lib/pdk/generate/module.rb:222
|
1284
|
+
msgid "Use the up and down keys to move between the choices, space to select and enter to continue."
|
1285
|
+
msgstr ""
|
1286
|
+
|
1287
|
+
#: ../lib/pdk/generate/module.rb:233
|
1288
|
+
msgid "Summarize the purpose of this module in a single sentence."
|
1289
|
+
msgstr ""
|
1290
|
+
|
1291
|
+
#: ../lib/pdk/generate/module.rb:234
|
1292
|
+
msgid "This helps other Puppet users understand what the module does."
|
1293
|
+
msgstr ""
|
1294
|
+
|
1295
|
+
#: ../lib/pdk/generate/module.rb:241
|
1296
|
+
msgid "If there is a source code repository for this module, enter the URL here."
|
1297
|
+
msgstr ""
|
1298
|
+
|
1299
|
+
#: ../lib/pdk/generate/module.rb:242
|
1300
|
+
msgid "Skip this if no repository exists yet. You can update this later in the metadata.json."
|
1301
|
+
msgstr ""
|
1302
|
+
|
1303
|
+
#: ../lib/pdk/generate/module.rb:249
|
1304
|
+
msgid "If there is a URL where others can learn more about this module, enter it here."
|
1305
|
+
msgstr ""
|
1306
|
+
|
1307
|
+
#: ../lib/pdk/generate/module.rb:250 ../lib/pdk/generate/module.rb:257
|
1308
|
+
msgid "Optional. You can update this later in the metadata.json."
|
1309
|
+
msgstr ""
|
1310
|
+
|
1311
|
+
#: ../lib/pdk/generate/module.rb:256
|
1312
|
+
msgid "If there is a public issue tracker for this module, enter its URL here."
|
1313
|
+
msgstr ""
|
1314
|
+
|
1315
|
+
#: ../lib/pdk/generate/module.rb:284
|
1316
|
+
msgid ""
|
1317
|
+
"\n"
|
1318
|
+
"We need to update the metadata.json file for this module, so we\\'re going to ask you %{count} questions.\n"
|
1319
|
+
msgstr ""
|
1320
|
+
|
1321
|
+
#: ../lib/pdk/generate/module.rb:291
|
1322
|
+
msgid ""
|
1323
|
+
"\n"
|
1324
|
+
"We need to create the metadata.json file for this module, so we\\'re going to ask you %{count} questions.\n"
|
1325
|
+
msgstr ""
|
1326
|
+
|
1327
|
+
#: ../lib/pdk/generate/module.rb:299
|
1328
|
+
msgid ""
|
1329
|
+
"If the question is not applicable to this module, accept the default option shown after each question. You can modify any answers at any time by manually updating the metadata.json file.\n"
|
1330
|
+
"\n"
|
1331
|
+
msgstr ""
|
1332
|
+
|
1333
|
+
#: ../lib/pdk/generate/module.rb:308
|
1334
|
+
msgid "No answers given, interview cancelled."
|
1335
|
+
msgstr ""
|
1336
|
+
|
1337
|
+
#: ../lib/pdk/generate/module.rb:334
|
1338
|
+
msgid "Metadata will be generated based on this information, continue?"
|
1339
|
+
msgstr ""
|
1340
|
+
|
1341
|
+
#: ../lib/pdk/generate/module.rb:336
|
1342
|
+
msgid "Interview cancelled; exiting."
|
1343
|
+
msgstr ""
|
1344
|
+
|
1345
|
+
#: ../lib/pdk/generate/module.rb:340
|
1346
|
+
msgid "Process cancelled; exiting."
|
1347
|
+
msgstr ""
|
1348
|
+
|
1349
|
+
#: ../lib/pdk/generate/puppet_object.rb:24 ../lib/pdk/validate/validator.rb:36
|
1350
|
+
msgid "Expected PDK::Context::AbstractContext but got '%{klass}' for context"
|
1351
|
+
msgstr ""
|
1352
|
+
|
1353
|
+
#: ../lib/pdk/generate/puppet_object.rb:64
|
1354
|
+
msgid "Expected a module context but got %{context_name}"
|
1355
|
+
msgstr ""
|
1356
|
+
|
1357
|
+
#: ../lib/pdk/generate/puppet_object.rb:125
|
1358
|
+
msgid "Unable to generate %{object_type}; '%{file}' already exists."
|
1359
|
+
msgstr ""
|
1360
|
+
|
1361
|
+
#: ../lib/pdk/generate/puppet_object.rb:163
|
1362
|
+
msgid "No %{dir_type} template found; trying next template directory."
|
1363
|
+
msgstr ""
|
1364
|
+
|
1365
|
+
#: ../lib/pdk/generate/puppet_object.rb:173
|
1366
|
+
msgid "Unable to find a %{type} template in %{url}; trying next template directory."
|
1367
|
+
msgstr ""
|
1368
|
+
|
1369
|
+
#: ../lib/pdk/generate/puppet_object.rb:175
|
1370
|
+
msgid "Unable to find the %{type} template in %{url}."
|
1371
|
+
msgstr ""
|
1372
|
+
|
1373
|
+
#: ../lib/pdk/generate/task.rb:31
|
1374
|
+
msgid "A task named '%{name}' already exists in this module; defined in %{file}"
|
1375
|
+
msgstr ""
|
1376
|
+
|
1377
|
+
#: ../lib/pdk/module/build.rb:129
|
1378
|
+
msgid "%{message} Rename the file or exclude it from the package by adding it to the .pdkignore file in your module."
|
1379
|
+
msgstr ""
|
1380
|
+
|
1381
|
+
#: ../lib/pdk/module/build.rb:159
|
1382
|
+
msgid "Symlinks in modules are not supported and will not be included in the package. Please investigate symlink %{from} -> %{to}."
|
1383
|
+
msgstr ""
|
1384
|
+
|
1385
|
+
#: ../lib/pdk/module/build.rb:186
|
1386
|
+
msgid "The path '%{path}' is longer than 256 bytes."
|
1387
|
+
msgstr ""
|
1388
|
+
|
1389
|
+
#: ../lib/pdk/module/build.rb:210
|
1390
|
+
msgid "'%{path}' could not be split at a directory separator into two parts, the first having a maximum length of 155 bytes and the second having a maximum length of 100 bytes."
|
1391
|
+
msgstr ""
|
1392
|
+
|
1393
|
+
#: ../lib/pdk/module/build.rb:232
|
1394
|
+
msgid "'%{path}' can only include ASCII characters in its path or filename in order to be compatible with a wide range of hosts."
|
1395
|
+
msgstr ""
|
1396
|
+
|
1397
|
+
#: ../lib/pdk/module/build.rb:266
|
1398
|
+
msgid "Updated permissions of packaged '%{entry}' to %{new_mode}"
|
1399
|
+
msgstr ""
|
1400
|
+
|
1401
|
+
#: ../lib/pdk/module/convert.rb:33 ../lib/pdk/module/update.rb:20
|
1402
|
+
msgid "No changes required."
|
1403
|
+
msgstr ""
|
1404
|
+
|
1405
|
+
#: ../lib/pdk/module/convert.rb:48
|
1406
|
+
msgid "Module conversion is a potentially destructive action. Ensure that you have committed your module to a version control system or have a backup, and review the changes above before continuing."
|
1407
|
+
msgstr ""
|
1408
|
+
|
1409
|
+
#: ../lib/pdk/module/convert.rb:53 ../lib/pdk/module/update.rb:32
|
1410
|
+
msgid "Do you want to continue and make these changes to your module?"
|
1411
|
+
msgstr ""
|
1412
|
+
|
1413
|
+
#: ../lib/pdk/module/convert.rb:131
|
1414
|
+
msgid "No test changes required."
|
1415
|
+
msgstr ""
|
1416
|
+
|
1417
|
+
#: ../lib/pdk/module/convert.rb:158
|
1418
|
+
msgid "skipping '%{path}'"
|
1419
|
+
msgstr ""
|
1420
|
+
|
1421
|
+
#: ../lib/pdk/module/convert.rb:197
|
1422
|
+
msgid "Unable to update module metadata; %{path} exists but it is not readable."
|
1423
|
+
msgstr ""
|
1424
|
+
|
1425
|
+
#: ../lib/pdk/module/convert.rb:213
|
1426
|
+
msgid "Unable to update module metadata; %{path} exists but it is not a file."
|
1427
|
+
msgstr ""
|
1428
|
+
|
1429
|
+
#: ../lib/pdk/module/convert.rb:258 ../lib/pdk/module/convert.rb:263 ../lib/pdk/module/convert.rb:269
|
1430
|
+
msgid ""
|
1431
|
+
"\n"
|
1432
|
+
"%{banner}"
|
1433
|
+
msgstr ""
|
1434
|
+
|
1435
|
+
#: ../lib/pdk/module/convert.rb:271
|
1436
|
+
msgid ""
|
1437
|
+
"\n"
|
1438
|
+
"%{summary}\n"
|
1439
|
+
"\n"
|
1440
|
+
msgstr ""
|
1441
|
+
|
1442
|
+
#: ../lib/pdk/module/convert.rb:280
|
1443
|
+
msgid ""
|
1444
|
+
"\n"
|
1445
|
+
"You can find a report of differences in %{path}.\n"
|
1446
|
+
"\n"
|
1447
|
+
msgstr ""
|
1448
|
+
|
1449
|
+
#: ../lib/pdk/module/metadata.rb:95
|
1450
|
+
msgid "Cannot read metadata from file: no path to file was given."
|
1451
|
+
msgstr ""
|
1452
|
+
|
1453
|
+
#: ../lib/pdk/module/metadata.rb:99
|
1454
|
+
msgid "'%{file}' does not exist or is not a file."
|
1455
|
+
msgstr ""
|
1456
|
+
|
1457
|
+
#: ../lib/pdk/module/metadata.rb:103
|
1458
|
+
msgid "Unable to open '%{file}' for reading."
|
1459
|
+
msgstr ""
|
1460
|
+
|
1461
|
+
#: ../lib/pdk/module/metadata.rb:110
|
1462
|
+
msgid "Invalid JSON in metadata.json: %{msg}"
|
1463
|
+
msgstr ""
|
1464
|
+
|
1465
|
+
#: ../lib/pdk/module/metadata.rb:147
|
1466
|
+
msgid "Module metadata does not contain any requirements."
|
1467
|
+
msgstr ""
|
1468
|
+
|
1469
|
+
#: ../lib/pdk/module/metadata.rb:148
|
1470
|
+
msgid "Module metadata does not contain a \"puppet\" requirement."
|
1471
|
+
msgstr ""
|
1472
|
+
|
1473
|
+
#: ../lib/pdk/module/metadata.rb:149
|
1474
|
+
msgid "The \"puppet\" requirement in module metadata does not specify a \"version_requirement\"."
|
1475
|
+
msgstr ""
|
1476
|
+
|
1477
|
+
#: ../lib/pdk/module/metadata.rb:189
|
1478
|
+
msgid "Field must be a dash-separated user name and module name."
|
1479
|
+
msgstr ""
|
1480
|
+
|
1481
|
+
#: ../lib/pdk/module/metadata.rb:191
|
1482
|
+
msgid "Module name must contain only alphanumeric or underscore characters."
|
1483
|
+
msgstr ""
|
1484
|
+
|
1485
|
+
#: ../lib/pdk/module/metadata.rb:193
|
1486
|
+
msgid "Module name must begin with a letter."
|
1487
|
+
msgstr ""
|
1488
|
+
|
1489
|
+
#: ../lib/pdk/module/metadata.rb:195
|
1490
|
+
msgid "Namespace must contain only alphanumeric characters."
|
1491
|
+
msgstr ""
|
1492
|
+
|
1493
|
+
#: ../lib/pdk/module/metadata.rb:198
|
1494
|
+
msgid "Invalid 'name' field in metadata.json: %{err}"
|
1495
|
+
msgstr ""
|
1496
|
+
|
1497
|
+
#: ../lib/pdk/module/release.rb:19
|
1498
|
+
msgid "Running the release process outside of the working directory is not supported"
|
1499
|
+
msgstr ""
|
1500
|
+
|
1501
|
+
#: ../lib/pdk/module/release.rb:23
|
1502
|
+
msgid "The module release process requires a valid module path"
|
1503
|
+
msgstr ""
|
1504
|
+
|
1505
|
+
#: ../lib/pdk/module/release.rb:25
|
1506
|
+
msgid "%{module_path} is not a valid module"
|
1507
|
+
msgstr ""
|
1508
|
+
|
1509
|
+
#: ../lib/pdk/module/release.rb:32
|
1510
|
+
msgid "The module is not PDK compatible"
|
1511
|
+
msgstr ""
|
1512
|
+
|
1513
|
+
#: ../lib/pdk/module/release.rb:33
|
1514
|
+
msgid "The module is not Forge compatible"
|
1515
|
+
msgstr ""
|
1516
|
+
|
1517
|
+
#: ../lib/pdk/module/release.rb:43
|
1518
|
+
msgid "Releasing %{module_name} - from version %{module_version}"
|
1519
|
+
msgstr ""
|
1520
|
+
|
1521
|
+
#: ../lib/pdk/module/release.rb:58
|
1522
|
+
msgid "Updating version to %{module_version}"
|
1523
|
+
msgstr ""
|
1524
|
+
|
1525
|
+
#: ../lib/pdk/module/release.rb:72
|
1526
|
+
msgid "%{new_version} does not match %{latest_version}"
|
1527
|
+
msgstr ""
|
1528
|
+
|
1529
|
+
#: ../lib/pdk/module/release.rb:121
|
1530
|
+
msgid "An error occured during validation"
|
1531
|
+
msgstr ""
|
1532
|
+
|
1533
|
+
#: ../lib/pdk/module/release.rb:125
|
1534
|
+
msgid "Updating documentation using puppet strings"
|
1535
|
+
msgstr ""
|
1536
|
+
|
1537
|
+
#: ../lib/pdk/module/release.rb:129
|
1538
|
+
msgid "An error occured generating the module documentation: %{stdout}"
|
1539
|
+
msgstr ""
|
1540
|
+
|
1541
|
+
#: ../lib/pdk/module/release.rb:134
|
1542
|
+
msgid "Running dependency checks"
|
1543
|
+
msgstr ""
|
1544
|
+
|
1545
|
+
#: ../lib/pdk/module/release.rb:140
|
1546
|
+
msgid "An error occured checking the module dependencies: %{stdout}"
|
1547
|
+
msgstr ""
|
1548
|
+
|
1549
|
+
#: ../lib/pdk/module/release.rb:150
|
1550
|
+
msgid "Module tarball %{tarball_path} does not exist"
|
1551
|
+
msgstr ""
|
1552
|
+
|
1553
|
+
#: ../lib/pdk/module/release.rb:156
|
1554
|
+
msgid "Uploading tarball to puppet forge..."
|
1555
|
+
msgstr ""
|
1556
|
+
|
1557
|
+
#: ../lib/pdk/module/release.rb:172
|
1558
|
+
msgid "Error uploading to Puppet Forge: %{result}"
|
1559
|
+
msgstr ""
|
1560
|
+
|
1561
|
+
#: ../lib/pdk/module/release.rb:173
|
1562
|
+
msgid "Publish to Forge was successful"
|
1563
|
+
msgstr ""
|
1564
|
+
|
1565
|
+
#: ../lib/pdk/module/release.rb:178
|
1566
|
+
msgid "Missing forge-upload-url option"
|
1567
|
+
msgstr ""
|
1568
|
+
|
1569
|
+
#: ../lib/pdk/module/release.rb:179
|
1570
|
+
msgid "Missing forge-token option"
|
1571
|
+
msgstr ""
|
1572
|
+
|
1573
|
+
#: ../lib/pdk/module/update.rb:14
|
1574
|
+
msgid "This module is already up to date with version %{version} of the template."
|
1575
|
+
msgstr ""
|
1576
|
+
|
1577
|
+
#: ../lib/pdk/module/update.rb:117
|
1578
|
+
msgid "Updating %{module_name} using the default template, from %{current_version} to %{new_version}"
|
1579
|
+
msgstr ""
|
1580
|
+
|
1581
|
+
#: ../lib/pdk/module/update.rb:119
|
1582
|
+
msgid "Updating %{module_name} using the template at %{template_url}, from %{current_version} to %{new_version}"
|
1583
|
+
msgstr ""
|
1584
|
+
|
1585
|
+
#: ../lib/pdk/module/update_manager.rb:118
|
1586
|
+
msgid "unlinking '%{path}'"
|
1587
|
+
msgstr ""
|
1588
|
+
|
1589
|
+
#: ../lib/pdk/module/update_manager.rb:121
|
1590
|
+
msgid "'%{path}': already gone"
|
1591
|
+
msgstr ""
|
1592
|
+
|
1593
|
+
#: ../lib/pdk/module/update_manager.rb:124
|
1594
|
+
msgid "Unable to remove '%{path}': %{message}"
|
1595
|
+
msgstr ""
|
1596
|
+
|
1597
|
+
#: ../lib/pdk/module/update_manager.rb:144
|
1598
|
+
msgid "Unable to open '%{path}' for reading"
|
1599
|
+
msgstr ""
|
1600
|
+
|
1601
|
+
#: ../lib/pdk/module/update_manager.rb:163
|
1602
|
+
msgid "writing '%{path}'"
|
1603
|
+
msgstr ""
|
1604
|
+
|
1605
|
+
#: ../lib/pdk/module/update_manager.rb:166
|
1606
|
+
msgid "You do not have permission to write to '%{path}'"
|
1607
|
+
msgstr ""
|
1608
|
+
|
1609
|
+
#: ../lib/pdk/report/event.rb:198
|
1610
|
+
msgid "File not specified."
|
1611
|
+
msgstr ""
|
1612
|
+
|
1613
|
+
#: ../lib/pdk/report/event.rb:202
|
1614
|
+
msgid "File must be a String."
|
1615
|
+
msgstr ""
|
1616
|
+
|
1617
|
+
#: ../lib/pdk/report/event.rb:238
|
1618
|
+
msgid "State not specified."
|
1619
|
+
msgstr ""
|
1620
|
+
|
1621
|
+
#: ../lib/pdk/report/event.rb:243
|
1622
|
+
msgid "State must be a Symbol, not %{type}"
|
1623
|
+
msgstr ""
|
1624
|
+
|
1625
|
+
#: ../lib/pdk/report/event.rb:248
|
1626
|
+
msgid "Invalid state %{state}. Valid states are: %{valid}."
|
1627
|
+
msgstr ""
|
1628
|
+
|
1629
|
+
#: ../lib/pdk/report/event.rb:267
|
1630
|
+
msgid "Source not specified."
|
1631
|
+
msgstr ""
|
1632
|
+
|
1633
|
+
#: ../lib/pdk/report/event.rb:288
|
1634
|
+
msgid "Line must be an Integer or a String representation of an Integer."
|
1635
|
+
msgstr ""
|
1636
|
+
|
1637
|
+
#: ../lib/pdk/report/event.rb:292
|
1638
|
+
msgid "The line number can contain only the digits 0-9."
|
1639
|
+
msgstr ""
|
1640
|
+
|
1641
|
+
#: ../lib/pdk/report/event.rb:313
|
1642
|
+
msgid "Column must be an Integer or a String representation of an Integer."
|
1643
|
+
msgstr ""
|
1644
|
+
|
1645
|
+
#: ../lib/pdk/report/event.rb:317
|
1646
|
+
msgid "The column number can contain only the digits 0-9."
|
1647
|
+
msgstr ""
|
1648
|
+
|
1649
|
+
#: ../lib/pdk/report/event.rb:335
|
1650
|
+
msgid "Trace must be an Array of stack trace lines."
|
1651
|
+
msgstr ""
|
1652
|
+
|
1653
|
+
#: ../lib/pdk/template.rb:41 ../lib/pdk/template/fetcher.rb:38
|
1654
|
+
msgid "%{class_name}.with must be passed a block."
|
1655
|
+
msgstr ""
|
1656
|
+
|
1657
|
+
#: ../lib/pdk/template.rb:44
|
1658
|
+
msgid "%{class_name}.with must be passed a PDK::Util::TemplateURI, got a %{uri_type}"
|
1659
|
+
msgstr ""
|
1660
|
+
|
1661
|
+
#: ../lib/pdk/template/fetcher/git.rb:25
|
1662
|
+
msgid "Repository '%{repo}' has a work-tree; skipping git reset."
|
1663
|
+
msgstr ""
|
1664
|
+
|
1665
|
+
#: ../lib/pdk/template/fetcher/git.rb:52
|
1666
|
+
msgid "Unable to clone git repository at '%{repo}' into '%{dest}'."
|
1667
|
+
msgstr ""
|
1668
|
+
|
1669
|
+
#: ../lib/pdk/template/fetcher/git.rb:66
|
1670
|
+
msgid "Unable to checkout '%{ref}' of git repository at '%{path}'."
|
1671
|
+
msgstr ""
|
1672
|
+
|
1673
|
+
#: ../lib/pdk/template/fetcher/git.rb:69
|
1674
|
+
msgid "Uncommitted changes found when attempting to checkout '%{ref}' of git repository at '%{path}'; skipping git reset."
|
1675
|
+
msgstr ""
|
1676
|
+
|
1677
|
+
#: ../lib/pdk/template/renderer/v1/legacy_template_dir.rb:96
|
1678
|
+
msgid "'%{file}' is not a valid YAML file: %{problem} %{context} at line %{line} column %{column}"
|
1679
|
+
msgstr ""
|
1680
|
+
|
1681
|
+
#: ../lib/pdk/template/renderer/v1/renderer.rb:24 ../lib/pdk/template/renderer/v1/renderer.rb:74
|
1682
|
+
msgid "Rendering '%{template}'..."
|
1683
|
+
msgstr ""
|
1684
|
+
|
1685
|
+
#: ../lib/pdk/template/renderer/v1/renderer.rb:92
|
1686
|
+
msgid ""
|
1687
|
+
"Failed to render template '%{template}'\n"
|
1688
|
+
"%{exception}: %{message}"
|
1689
|
+
msgstr ""
|
1690
|
+
|
1691
|
+
#: ../lib/pdk/template/renderer/v1/renderer.rb:116
|
1692
|
+
msgid "The directory '%{dir}' doesn't exist"
|
1693
|
+
msgstr ""
|
1694
|
+
|
1695
|
+
#: ../lib/pdk/template/renderer/v1/template_file.rb:72
|
1696
|
+
msgid "'%{template}' is not a readable file"
|
1697
|
+
msgstr ""
|
1698
|
+
|
1699
|
+
#: ../lib/pdk/template/template_dir.rb:39
|
1700
|
+
msgid "Could not find a compatible template renderer for %{path}"
|
1701
|
+
msgstr ""
|
1702
|
+
|
1703
|
+
#: ../lib/pdk/tests/unit.rb:64
|
1704
|
+
msgid "Cleaning up after running unit tests."
|
1705
|
+
msgstr ""
|
1706
|
+
|
1707
|
+
#: ../lib/pdk/tests/unit.rb:68
|
1708
|
+
msgid "The spec_clean rake task failed with the following error(s):"
|
1709
|
+
msgstr ""
|
1710
|
+
|
1711
|
+
#: ../lib/pdk/tests/unit.rb:69
|
1712
|
+
msgid "Failed to clean up after running unit tests"
|
1713
|
+
msgstr ""
|
1714
|
+
|
1715
|
+
#: ../lib/pdk/tests/unit.rb:73
|
1716
|
+
msgid "Preparing to run the unit tests."
|
1717
|
+
msgstr ""
|
1718
|
+
|
1719
|
+
#: ../lib/pdk/tests/unit.rb:79
|
1720
|
+
msgid "The spec_prep rake task failed with the following error(s):"
|
1721
|
+
msgstr ""
|
1722
|
+
|
1723
|
+
#: ../lib/pdk/tests/unit.rb:80
|
1724
|
+
msgid "Failed to prepare to run the unit tests."
|
1725
|
+
msgstr ""
|
1726
|
+
|
1727
|
+
#: ../lib/pdk/tests/unit.rb:100
|
1728
|
+
msgid "Running unit tests."
|
1729
|
+
msgstr ""
|
1730
|
+
|
1731
|
+
#: ../lib/pdk/tests/unit.rb:100
|
1732
|
+
msgid "Running unit tests in parallel."
|
1733
|
+
msgstr ""
|
1734
|
+
|
1735
|
+
#: ../lib/pdk/tests/unit.rb:125
|
1736
|
+
msgid "Unit test output did not contain a valid JSON result: %{output}"
|
1737
|
+
msgstr ""
|
1738
|
+
|
1739
|
+
#: ../lib/pdk/tests/unit.rb:177
|
1740
|
+
msgid "Evaluated %{total} tests in %{duration} seconds: %{failures} failures, %{pending} pending."
|
1741
|
+
msgstr ""
|
1742
|
+
|
1743
|
+
#: ../lib/pdk/tests/unit.rb:233
|
1744
|
+
msgid "Finding unit tests."
|
1745
|
+
msgstr ""
|
1746
|
+
|
1747
|
+
#: ../lib/pdk/tests/unit.rb:236
|
1748
|
+
msgid "Failed to find valid JSON in output from rspec: %{output}"
|
1749
|
+
msgstr ""
|
1750
|
+
|
1751
|
+
#: ../lib/pdk/tests/unit.rb:241
|
1752
|
+
msgid "Unable to enumerate examples. rspec reported: %{message}"
|
1753
|
+
msgstr ""
|
1754
|
+
|
1755
|
+
#: ../lib/pdk/util.rb:88
|
1756
|
+
msgid "Cannot resolve a full path to '%{path}', as it does not currently exist."
|
1757
|
+
msgstr ""
|
1758
|
+
|
1759
|
+
#: ../lib/pdk/util.rb:117
|
1760
|
+
msgid "Package basedir requested for non-package install."
|
1761
|
+
msgstr ""
|
1762
|
+
|
1763
|
+
#: ../lib/pdk/util/bundler.rb:15
|
1764
|
+
msgid "Bundler managed gems already up to date."
|
1765
|
+
msgstr ""
|
1766
|
+
|
1767
|
+
#: ../lib/pdk/util/bundler.rb:20
|
1768
|
+
msgid "No Gemfile found in '%{cwd}'. Skipping bundler management."
|
1769
|
+
msgstr ""
|
1770
|
+
|
1771
|
+
#: ../lib/pdk/util/bundler.rb:96
|
1772
|
+
msgid "Checking for missing Gemfile dependencies."
|
1773
|
+
msgstr ""
|
1774
|
+
|
1775
|
+
#: ../lib/pdk/util/bundler.rb:126
|
1776
|
+
msgid "Vendored Gemfile.lock (%{source}) not found."
|
1777
|
+
msgstr ""
|
1778
|
+
|
1779
|
+
#: ../lib/pdk/util/bundler.rb:131
|
1780
|
+
msgid "Using vendored Gemfile.lock from %{source}."
|
1781
|
+
msgstr ""
|
1782
|
+
|
1783
|
+
#: ../lib/pdk/util/bundler.rb:137
|
1784
|
+
msgid "Resolving default Gemfile dependencies."
|
1785
|
+
msgstr ""
|
1786
|
+
|
1787
|
+
#: ../lib/pdk/util/bundler.rb:144
|
1788
|
+
msgid "Unable to resolve default Gemfile dependencies."
|
1789
|
+
msgstr ""
|
1790
|
+
|
1791
|
+
#: ../lib/pdk/util/bundler.rb:157
|
1792
|
+
msgid "Updating Gemfile dependencies."
|
1793
|
+
msgstr ""
|
1794
|
+
|
1795
|
+
#: ../lib/pdk/util/bundler.rb:185
|
1796
|
+
msgid "Unable to resolve Gemfile dependencies."
|
1797
|
+
msgstr ""
|
1798
|
+
|
1799
|
+
#: ../lib/pdk/util/bundler.rb:198
|
1800
|
+
msgid "Installing missing Gemfile dependencies."
|
1801
|
+
msgstr ""
|
1802
|
+
|
1803
|
+
#: ../lib/pdk/util/bundler.rb:206
|
1804
|
+
msgid "Unable to install missing Gemfile dependencies."
|
1805
|
+
msgstr ""
|
1806
|
+
|
1807
|
+
#: ../lib/pdk/util/bundler.rb:213
|
1808
|
+
msgid "Unable to install requested binstubs as the Gemfile is missing"
|
1809
|
+
msgstr ""
|
1810
|
+
|
1811
|
+
#: ../lib/pdk/util/bundler.rb:221
|
1812
|
+
msgid ""
|
1813
|
+
"Failed to generate binstubs for '%{gems}':\n"
|
1814
|
+
"%{output}"
|
1815
|
+
msgstr ""
|
1816
|
+
|
1817
|
+
#: ../lib/pdk/util/bundler.rb:222
|
1818
|
+
msgid "Unable to install requested binstubs."
|
1819
|
+
msgstr ""
|
1820
|
+
|
1821
|
+
#: ../lib/pdk/util/changelog_generator.rb:19
|
1822
|
+
msgid "Unable to generate the changelog as the %{gem} gem is not included in this module's Gemfile"
|
1823
|
+
msgstr ""
|
1824
|
+
|
1825
|
+
#: ../lib/pdk/util/changelog_generator.rb:34
|
1826
|
+
msgid "Error generating changelog: %{stdout}"
|
1827
|
+
msgstr ""
|
1828
|
+
|
1829
|
+
#: ../lib/pdk/util/changelog_generator.rb:38
|
1830
|
+
msgid "The generated changelog contains uncategorized Pull Requests. Please label them and try again. See %{changelog_file} for more details"
|
1831
|
+
msgstr ""
|
1832
|
+
|
1833
|
+
#: ../lib/pdk/util/changelog_generator.rb:47
|
1834
|
+
msgid "Invalid version string %{version}"
|
1835
|
+
msgstr ""
|
1836
|
+
|
1837
|
+
#: ../lib/pdk/util/changelog_generator.rb:49
|
1838
|
+
msgid "Determing the target version from '%{file}'"
|
1839
|
+
msgstr ""
|
1840
|
+
|
1841
|
+
#: ../lib/pdk/util/filesystem.rb:8
|
1842
|
+
msgid "content must be a String"
|
1843
|
+
msgstr ""
|
1844
|
+
|
1845
|
+
#: ../lib/pdk/util/filesystem.rb:9
|
1846
|
+
msgid "path must be a String or Pathname"
|
1847
|
+
msgstr ""
|
1848
|
+
|
1849
|
+
#: ../lib/pdk/util/git.rb:17
|
1850
|
+
msgid "Git command failed: git %{args}"
|
1851
|
+
msgstr ""
|
1852
|
+
|
1853
|
+
#: ../lib/pdk/util/git.rb:103
|
1854
|
+
msgid "Unable to locate git work dir \"%{workdir}\""
|
1855
|
+
msgstr ""
|
1856
|
+
|
1857
|
+
#: ../lib/pdk/util/git.rb:104
|
1858
|
+
msgid "Unable to locate git dir \"%{gitdir}\""
|
1859
|
+
msgstr ""
|
1860
|
+
|
1861
|
+
#: ../lib/pdk/util/git.rb:119
|
1862
|
+
msgid "Unable to access the template repository \"%{repository}\""
|
1863
|
+
msgstr ""
|
1864
|
+
|
1865
|
+
#: ../lib/pdk/util/git.rb:126
|
1866
|
+
msgid "Unable to find a branch or tag named \"%{ref}\" in %{repo}"
|
1867
|
+
msgstr ""
|
1868
|
+
|
1869
|
+
#: ../lib/pdk/util/puppet_strings.rb:25
|
1870
|
+
msgid "Examining module contents"
|
1871
|
+
msgstr ""
|
1872
|
+
|
1873
|
+
#: ../lib/pdk/util/puppet_strings.rb:47
|
1874
|
+
msgid "Unable to parse puppet-strings output"
|
1875
|
+
msgstr ""
|
1876
|
+
|
1877
|
+
#: ../lib/pdk/util/puppet_version.rb:41
|
1878
|
+
msgid "Unable to find a Puppet gem in current Ruby environment or from Rubygems.org."
|
1879
|
+
msgstr ""
|
1880
|
+
|
1881
|
+
#: ../lib/pdk/util/puppet_version.rb:70
|
1882
|
+
msgid "Unable to clone git repository from '%{repo}'."
|
1883
|
+
msgstr ""
|
1884
|
+
|
1885
|
+
#: ../lib/pdk/util/puppet_version.rb:79
|
1886
|
+
msgid "Unable to fetch from git remote at '%{repo}'."
|
1887
|
+
msgstr ""
|
1888
|
+
|
1889
|
+
#: ../lib/pdk/util/puppet_version.rb:90
|
1890
|
+
msgid "Unable to update git repository at '%{cachedir}'."
|
1891
|
+
msgstr ""
|
1892
|
+
|
1893
|
+
#: ../lib/pdk/util/puppet_version.rb:111
|
1894
|
+
msgid "Unable to find a Puppet gem matching %{requirement}."
|
1895
|
+
msgstr ""
|
1896
|
+
|
1897
|
+
#: ../lib/pdk/util/puppet_version.rb:118
|
1898
|
+
msgid "Puppet %{requested_version} is not available, activating %{found_version} instead."
|
1899
|
+
msgstr ""
|
1900
|
+
|
1901
|
+
#: ../lib/pdk/util/puppet_version.rb:135
|
1902
|
+
msgid "Unable to map Puppet Enterprise version %{pe_version} to a Puppet version."
|
1903
|
+
msgstr ""
|
1904
|
+
|
1905
|
+
#: ../lib/pdk/util/puppet_version.rb:140
|
1906
|
+
msgid "Puppet Enterprise %{pe_version} maps to Puppet %{puppet_version}."
|
1907
|
+
msgstr ""
|
1908
|
+
|
1909
|
+
#: ../lib/pdk/util/puppet_version.rb:156
|
1910
|
+
msgid "Unable to determine Puppet version for module: no metadata.json present in module."
|
1911
|
+
msgstr ""
|
1912
|
+
|
1913
|
+
#: ../lib/pdk/util/puppet_version.rb:182
|
1914
|
+
msgid "%{version} is not a valid version number."
|
1915
|
+
msgstr ""
|
1916
|
+
|
1917
|
+
#: ../lib/pdk/util/puppet_version.rb:218
|
1918
|
+
msgid "Failed to parse Puppet Enterprise version map file."
|
1919
|
+
msgstr ""
|
1920
|
+
|
1921
|
+
#: ../lib/pdk/util/ruby_version.rb:37
|
1922
|
+
msgid "Unknown Ruby version \"%{ruby_version}\""
|
1923
|
+
msgstr ""
|
1924
|
+
|
1925
|
+
#: ../lib/pdk/util/template_uri.rb:51
|
1926
|
+
msgid "PDK::Util::TemplateURI attempted initialization with a non-uri string: {string}"
|
1927
|
+
msgstr ""
|
1928
|
+
|
1929
|
+
#: ../lib/pdk/util/template_uri.rb:181
|
1930
|
+
msgid "%{scp_uri} appears to be an SCP style URL; it will be converted to an RFC compliant URI: %{rfc_uri}"
|
1931
|
+
msgstr ""
|
1932
|
+
|
1933
|
+
#: ../lib/pdk/util/template_uri.rb:232
|
1934
|
+
msgid "--template-url"
|
1935
|
+
msgstr ""
|
1936
|
+
|
1937
|
+
#: ../lib/pdk/util/template_uri.rb:233
|
1938
|
+
msgid "metadata.json"
|
1939
|
+
msgstr ""
|
1940
|
+
|
1941
|
+
#: ../lib/pdk/util/template_uri.rb:234
|
1942
|
+
msgid "PDK answers"
|
1943
|
+
msgstr ""
|
1944
|
+
|
1945
|
+
#: ../lib/pdk/util/template_uri.rb:235
|
1946
|
+
msgid "default"
|
1947
|
+
msgstr ""
|
1948
|
+
|
1949
|
+
#: ../lib/pdk/util/template_uri.rb:259
|
1950
|
+
msgid "Unable to find a valid module template to use."
|
1951
|
+
msgstr ""
|
1952
|
+
|
1953
|
+
#: ../lib/pdk/util/template_uri.rb:282
|
1954
|
+
msgid "Unable to find a valid template at %{uri}"
|
1955
|
+
msgstr ""
|
1956
|
+
|
1957
|
+
#: ../lib/pdk/util/vendored_file.rb:50
|
1958
|
+
msgid "%{file_name} was not found in the cache, downloading it from %{url}."
|
1959
|
+
msgstr ""
|
1960
|
+
|
1961
|
+
#: ../lib/pdk/util/vendored_file.rb:64
|
1962
|
+
msgid "Unable to download %{url}. %{code}: %{message}."
|
1963
|
+
msgstr ""
|
1964
|
+
|
1965
|
+
#: ../lib/pdk/util/vendored_file.rb:73
|
1966
|
+
msgid "Unable to download %{url}. Check internet connectivity and try again. %{error}"
|
1967
|
+
msgstr ""
|
1968
|
+
|
1969
|
+
#: ../lib/pdk/util/windows/api_types.rb:31
|
1970
|
+
msgid "Unable to convert value %{string} to encoding %{encoding} due to %{error}"
|
1971
|
+
msgstr ""
|
1972
|
+
|
1973
|
+
#: ../lib/pdk/util/windows/api_types.rb:41
|
1974
|
+
msgid "Unable to read wide strings with %{null_terminator} terminal nulls"
|
1975
|
+
msgstr ""
|
1976
|
+
|
1977
|
+
#: ../lib/pdk/util/windows/file.rb:15
|
1978
|
+
msgid "Failed to call GetLongPathName"
|
1979
|
+
msgstr ""
|
1980
|
+
|
1981
|
+
#: ../lib/pdk/util/windows/process.rb:14
|
1982
|
+
msgid "Discarding environment variable %{string} which contains invalid bytes"
|
1983
|
+
msgstr ""
|
1984
|
+
|
1985
|
+
#: ../lib/pdk/util/windows/process.rb:32
|
1986
|
+
msgid "FreeEnvironmentStringsW memory leak"
|
1987
|
+
msgstr ""
|
1988
|
+
|
1989
|
+
#: ../lib/pdk/util/windows/process.rb:39
|
1990
|
+
msgid "Environment variable name must not be nil or empty"
|
1991
|
+
msgstr ""
|
1992
|
+
|
1993
|
+
#: ../lib/pdk/util/windows/process.rb:44
|
1994
|
+
msgid "Failed to remove environment variable: %{name}"
|
1995
|
+
msgstr ""
|
1996
|
+
|
1997
|
+
#: ../lib/pdk/util/windows/process.rb:49
|
1998
|
+
msgid "Failed to set environment variaible: %{name}"
|
1999
|
+
msgstr ""
|
2000
|
+
|
2001
|
+
#: ../lib/pdk/validate.rb:78
|
2002
|
+
msgid "Validating module using %{num_of_threads} threads"
|
2003
|
+
msgstr ""
|
2004
|
+
|
2005
|
+
#: ../lib/pdk/validate/control_repo/environment_conf_validator.rb:22
|
2006
|
+
msgid "Checking Puppet Environment settings (%{patterns})."
|
2007
|
+
msgstr ""
|
2008
|
+
|
2009
|
+
#: ../lib/pdk/validate/control_repo/environment_conf_validator.rb:34 ../lib/pdk/validate/metadata/metadata_syntax_validator.rb:43 ../lib/pdk/validate/tasks/tasks_metadata_lint_validator.rb:42 ../lib/pdk/validate/yaml/yaml_syntax_validator.rb:50
|
2010
|
+
msgid "Could not be read."
|
2011
|
+
msgstr ""
|
2012
|
+
|
2013
|
+
#: ../lib/pdk/validate/control_repo/environment_conf_validator.rb:49
|
2014
|
+
msgid "Invalid section '%{name}'"
|
2015
|
+
msgstr ""
|
2016
|
+
|
2017
|
+
#: ../lib/pdk/validate/control_repo/environment_conf_validator.rb:51
|
2018
|
+
msgid "Invalid setting '%{name}'"
|
2019
|
+
msgstr ""
|
2020
|
+
|
2021
|
+
#: ../lib/pdk/validate/control_repo/environment_conf_validator.rb:71
|
2022
|
+
msgid "environment_timeout is set to '%{timeout}' but should be 0, 'unlimited' or not set."
|
2023
|
+
msgstr ""
|
2024
|
+
|
2025
|
+
#: ../lib/pdk/validate/invokable_validator.rb:90
|
2026
|
+
msgid "Validator '%{validator}' skipped for '%{target}'. No files matching '%{pattern}' found to validate."
|
2027
|
+
msgstr ""
|
2028
|
+
|
2029
|
+
#: ../lib/pdk/validate/invokable_validator.rb:124
|
2030
|
+
msgid "Running %{name} validator ..."
|
2031
|
+
msgstr ""
|
2032
|
+
|
2033
|
+
#: ../lib/pdk/validate/invokable_validator.rb:141
|
2034
|
+
msgid "%{validator}: Skipped '%{target}'. Target does not contain any files to validate (%{pattern})."
|
2035
|
+
msgstr ""
|
2036
|
+
|
2037
|
+
#: ../lib/pdk/validate/invokable_validator.rb:145
|
2038
|
+
msgid "Target does not contain any files to validate (%{pattern})."
|
2039
|
+
msgstr ""
|
2040
|
+
|
2041
|
+
#: ../lib/pdk/validate/invokable_validator.rb:157
|
2042
|
+
msgid "%{validator}: Skipped '%{target}'. Target file not found."
|
2043
|
+
msgstr ""
|
2044
|
+
|
2045
|
+
#: ../lib/pdk/validate/invokable_validator.rb:161
|
2046
|
+
msgid "File does not exist."
|
2047
|
+
msgstr ""
|
2048
|
+
|
2049
|
+
#: ../lib/pdk/validate/metadata/metadata_json_lint_validator.rb:22
|
2050
|
+
msgid "Checking module metadata style (%{targets})."
|
2051
|
+
msgstr ""
|
2052
|
+
|
2053
|
+
#: ../lib/pdk/validate/metadata/metadata_json_lint_validator.rb:39
|
2054
|
+
msgid "More than 1 target provided to PDK::Validate::MetadataJSONLintValidator."
|
2055
|
+
msgstr ""
|
2056
|
+
|
2057
|
+
#: ../lib/pdk/validate/metadata/metadata_syntax_validator.rb:16
|
2058
|
+
msgid "Checking metadata syntax (%{patterns})."
|
2059
|
+
msgstr ""
|
2060
|
+
|
2061
|
+
#: ../lib/pdk/validate/puppet/puppet_epp_validator.rb:40
|
2062
|
+
msgid "Checking Puppet EPP syntax (%{pattern})."
|
2063
|
+
msgstr ""
|
2064
|
+
|
2065
|
+
#: ../lib/pdk/validate/puppet/puppet_lint_validator.rb:20
|
2066
|
+
msgid "Checking Puppet manifest style (%{pattern})."
|
2067
|
+
msgstr ""
|
2068
|
+
|
2069
|
+
#: ../lib/pdk/validate/puppet/puppet_syntax_validator.rb:44
|
2070
|
+
msgid "Checking Puppet manifest syntax (%{pattern})."
|
2071
|
+
msgstr ""
|
2072
|
+
|
2073
|
+
#: ../lib/pdk/validate/ruby/ruby_rubocop_validator.rb:28
|
2074
|
+
msgid "Checking Ruby code style (%{pattern})."
|
2075
|
+
msgstr ""
|
2076
|
+
|
2077
|
+
#: ../lib/pdk/validate/tasks/tasks_metadata_lint_validator.rb:18
|
2078
|
+
msgid "Checking task metadata style (%{pattern})."
|
2079
|
+
msgstr ""
|
2080
|
+
|
2081
|
+
#: ../lib/pdk/validate/tasks/tasks_metadata_lint_validator.rb:32
|
2082
|
+
msgid "Failed to parse Task Metadata Schema file."
|
2083
|
+
msgstr ""
|
2084
|
+
|
2085
|
+
#: ../lib/pdk/validate/tasks/tasks_metadata_lint_validator.rb:57
|
2086
|
+
msgid "Unable to validate Task Metadata. %{error}."
|
2087
|
+
msgstr ""
|
2088
|
+
|
2089
|
+
#: ../lib/pdk/validate/tasks/tasks_name_validator.rb:7
|
2090
|
+
msgid "Invalid task name. Task names must start with a lowercase letter and can only contain lowercase letters, numbers, and underscores."
|
2091
|
+
msgstr ""
|
2092
|
+
|
2093
|
+
#: ../lib/pdk/validate/tasks/tasks_name_validator.rb:21
|
2094
|
+
msgid "Checking task names (%{pattern})."
|
2095
|
+
msgstr ""
|
2096
|
+
|
2097
|
+
#: ../lib/pdk/validate/validator_group.rb:35
|
2098
|
+
msgid "Running %{name} validators ..."
|
2099
|
+
msgstr ""
|
2100
|
+
|
2101
|
+
#: ../lib/pdk/validate/yaml/yaml_syntax_validator.rb:36
|
2102
|
+
msgid "Checking YAML syntax (%{patterns})."
|
2103
|
+
msgstr ""
|
2104
|
+
|
2105
|
+
#: ../lib/pdk/validate/yaml/yaml_syntax_validator.rb:73
|
2106
|
+
msgid "%{problem} %{context}"
|
2107
|
+
msgstr ""
|
2108
|
+
|
2109
|
+
#: ../lib/pdk/validate/yaml/yaml_syntax_validator.rb:85
|
2110
|
+
msgid "Unsupported class: %{message}"
|
2111
|
+
msgstr ""
|