puppet 5.1.0-universal-darwin → 5.2.0-universal-darwin

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of puppet might be problematic. Click here for more details.

Files changed (108) hide show
  1. data/lib/puppet.rb +6 -53
  2. data/lib/puppet/application.rb +14 -7
  3. data/lib/puppet/application/agent.rb +6 -2
  4. data/lib/puppet/application/apply.rb +6 -2
  5. data/lib/puppet/application/cert.rb +6 -2
  6. data/lib/puppet/application/describe.rb +6 -2
  7. data/lib/puppet/application/device.rb +40 -29
  8. data/lib/puppet/application/doc.rb +6 -2
  9. data/lib/puppet/application/filebucket.rb +6 -2
  10. data/lib/puppet/application/lookup.rb +6 -2
  11. data/lib/puppet/application/master.rb +6 -2
  12. data/lib/puppet/application/resource.rb +6 -2
  13. data/lib/puppet/face/catalog.rb +1 -1
  14. data/lib/puppet/face/certificate_request.rb +1 -1
  15. data/lib/puppet/face/certificate_revocation_list.rb +1 -1
  16. data/lib/puppet/face/help.rb +17 -13
  17. data/lib/puppet/file_serving/configuration.rb +3 -0
  18. data/lib/puppet/file_serving/configuration/parser.rb +2 -0
  19. data/lib/puppet/file_serving/mount/tasks.rb +21 -0
  20. data/lib/puppet/functions/epp.rb +3 -0
  21. data/lib/puppet/functions/lookup.rb +2 -1
  22. data/lib/puppet/generate/models/type/property.rb +1 -1
  23. data/lib/puppet/gettext/config.rb +70 -0
  24. data/lib/puppet/gettext/stubs.rb +11 -0
  25. data/lib/puppet/indirector/request.rb +4 -4
  26. data/lib/puppet/info_service.rb +10 -0
  27. data/lib/puppet/info_service/task_information_service.rb +32 -0
  28. data/lib/puppet/module.rb +43 -12
  29. data/lib/puppet/module/task.rb +90 -0
  30. data/lib/puppet/parser/ast/leaf.rb +1 -1
  31. data/lib/puppet/parser/functions/dig.rb +11 -2
  32. data/lib/puppet/parser/functions/epp.rb +3 -0
  33. data/lib/puppet/parser/functions/new.rb +8 -8
  34. data/lib/puppet/pops/evaluator/evaluator_impl.rb +1 -1
  35. data/lib/puppet/pops/evaluator/runtime3_support.rb +1 -0
  36. data/lib/puppet/pops/issues.rb +11 -5
  37. data/lib/puppet/pops/loader/static_loader.rb +1 -1
  38. data/lib/puppet/pops/model/factory.rb +42 -2
  39. data/lib/puppet/pops/model/model_tree_dumper.rb +1 -1
  40. data/lib/puppet/pops/parser/egrammar.ra +30 -9
  41. data/lib/puppet/pops/parser/eparser.rb +1094 -1043
  42. data/lib/puppet/pops/patterns.rb +1 -1
  43. data/lib/puppet/pops/serialization/from_data_converter.rb +1 -1
  44. data/lib/puppet/pops/serialization/json_path.rb +1 -1
  45. data/lib/puppet/pops/serialization/to_data_converter.rb +12 -3
  46. data/lib/puppet/pops/types/p_object_type.rb +31 -3
  47. data/lib/puppet/pops/types/p_sem_ver_range_type.rb +3 -3
  48. data/lib/puppet/pops/types/p_timespan_type.rb +1 -1
  49. data/lib/puppet/pops/types/p_timestamp_type.rb +1 -1
  50. data/lib/puppet/pops/types/string_converter.rb +15 -12
  51. data/lib/puppet/pops/types/type_calculator.rb +1 -1
  52. data/lib/puppet/pops/types/type_factory.rb +7 -0
  53. data/lib/puppet/pops/types/type_formatter.rb +1 -1
  54. data/lib/puppet/pops/types/type_mismatch_describer.rb +86 -130
  55. data/lib/puppet/pops/types/type_parser.rb +10 -4
  56. data/lib/puppet/pops/types/types.rb +81 -22
  57. data/lib/puppet/provider/package/aix.rb +4 -4
  58. data/lib/puppet/provider/package/yum.rb +1 -0
  59. data/lib/puppet/type.rb +1 -1
  60. data/lib/puppet/type/mount.rb +1 -1
  61. data/lib/puppet/type/sshkey.rb +9 -1
  62. data/lib/puppet/util.rb +1 -1
  63. data/lib/puppet/util/command_line.rb +1 -1
  64. data/lib/puppet/util/log.rb +15 -10
  65. data/lib/puppet/util/windows/api_types.rb +9 -5
  66. data/lib/puppet/util/windows/process.rb +9 -1
  67. data/lib/puppet/vendor/semantic_puppet/lib/semantic_puppet.rb +1 -3
  68. data/lib/puppet/version.rb +1 -1
  69. data/locales/ja/puppet.po +9270 -0
  70. data/locales/puppet.pot +272 -212
  71. data/spec/fixtures/unit/provider/package/yum/yum-check-update-plugin-output.txt +36 -0
  72. data/spec/integration/indirector/file_content/file_server_spec.rb +17 -0
  73. data/spec/integration/indirector/file_metadata/file_server_spec.rb +10 -0
  74. data/spec/integration/util/windows/process_spec.rb +45 -0
  75. data/spec/lib/puppet_spec/modules.rb +10 -0
  76. data/spec/shared_contexts/types_setup.rb +19 -4
  77. data/spec/spec_helper.rb +6 -7
  78. data/spec/unit/face/help_spec.rb +2 -2
  79. data/spec/unit/file_serving/configuration_spec.rb +14 -4
  80. data/spec/unit/file_serving/mount/modules_spec.rb +1 -1
  81. data/spec/unit/file_serving/mount/tasks_spec.rb +72 -0
  82. data/spec/unit/functions/epp_spec.rb +5 -0
  83. data/spec/unit/functions/regsubst_spec.rb +1 -1
  84. data/spec/unit/gettext_config_spec.rb +57 -0
  85. data/spec/unit/indirector/request_spec.rb +41 -0
  86. data/spec/unit/info_service_spec.rb +66 -2
  87. data/spec/unit/module_spec.rb +81 -1
  88. data/spec/unit/parser/ast/leaf_spec.rb +3 -4
  89. data/spec/unit/pops/evaluator/access_ops_spec.rb +5 -0
  90. data/spec/unit/pops/factory_spec.rb +5 -1
  91. data/spec/unit/pops/parser/parser_spec.rb +138 -0
  92. data/spec/unit/pops/serialization/to_from_hr_spec.rb +74 -1
  93. data/spec/unit/pops/types/p_init_type_spec.rb +1 -1
  94. data/spec/unit/pops/types/p_object_type_spec.rb +217 -33
  95. data/spec/unit/pops/types/p_timespan_type_spec.rb +7 -0
  96. data/spec/unit/pops/types/p_timestamp_type_spec.rb +7 -0
  97. data/spec/unit/pops/types/string_converter_spec.rb +48 -11
  98. data/spec/unit/pops/types/type_calculator_spec.rb +37 -5
  99. data/spec/unit/pops/types/type_mismatch_describer_spec.rb +12 -0
  100. data/spec/unit/pops/types/type_parser_spec.rb +25 -0
  101. data/spec/unit/pops/validator/validator_spec.rb +2 -2
  102. data/spec/unit/provider/package/aix_spec.rb +26 -1
  103. data/spec/unit/provider/package/yum_spec.rb +10 -0
  104. data/spec/unit/task_spec.rb +102 -0
  105. data/spec/unit/util/log_spec.rb +32 -3
  106. data/spec/unit/util/windows/api_types_spec.rb +51 -0
  107. metadata +3476 -3450
  108. checksums.yaml +0 -7
@@ -6,11 +6,11 @@
6
6
  #, fuzzy
7
7
  msgid ""
8
8
  msgstr ""
9
- "Project-Id-Version: Puppet automation framework 5.0.1-184-gc50f87a\n"
9
+ "Project-Id-Version: Puppet automation framework 5.0.1-294-g802509d\n"
10
10
  "\n"
11
11
  "Report-Msgid-Bugs-To: https://tickets.puppetlabs.com\n"
12
- "POT-Creation-Date: 2017-08-01 23:58+0000\n"
13
- "PO-Revision-Date: 2017-08-01 23:58+0000\n"
12
+ "POT-Creation-Date: 2017-08-23 21:04+0000\n"
13
+ "PO-Revision-Date: 2017-08-23 21:04+0000\n"
14
14
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
15
15
  "Language-Team: LANGUAGE <LL@li.org>\n"
16
16
  "Language: \n"
@@ -23,15 +23,15 @@ msgstr ""
23
23
  msgid "Puppet %{version} requires ruby 1.9.3 or greater."
24
24
  msgstr ""
25
25
 
26
- #: ../lib/puppet.rb:181
26
+ #: ../lib/puppet.rb:134
27
27
  msgid "Support for ruby version %{version} is deprecated and will be removed in a future release. See https://docs.puppet.com/puppet/latest/system_requirements.html#ruby for a list of supported ruby versions."
28
28
  msgstr ""
29
29
 
30
- #: ../lib/puppet.rb:228
30
+ #: ../lib/puppet.rb:181
31
31
  msgid "Creating %{name} via Puppet.newtype is deprecated and will be removed in a future release. Use Puppet::Type.newtype instead."
32
32
  msgstr ""
33
33
 
34
- #: ../lib/puppet.rb:247
34
+ #: ../lib/puppet.rb:200
35
35
  msgid "The environmentpath setting cannot be empty or nil."
36
36
  msgstr ""
37
37
 
@@ -89,19 +89,19 @@ msgid "Unable to load application class '%{class_name}' from file 'puppet/applic
89
89
  msgstr ""
90
90
 
91
91
  #: ../lib/puppet/application.rb:342
92
- msgid "get application-specific default settings"
92
+ msgid "Could not get application-specific default settings"
93
93
  msgstr ""
94
94
 
95
95
  #: ../lib/puppet/application.rb:348
96
- msgid "initialize"
96
+ msgid "Could not initialize"
97
97
  msgstr ""
98
98
 
99
99
  #: ../lib/puppet/application.rb:349
100
- msgid "parse application options"
100
+ msgid "Could not parse application options"
101
101
  msgstr ""
102
102
 
103
103
  #: ../lib/puppet/application.rb:350
104
- msgid "prepare for execution"
104
+ msgid "Could not prepare for execution"
105
105
  msgstr ""
106
106
 
107
107
  #: ../lib/puppet/application.rb:353
@@ -109,15 +109,15 @@ msgid "`puppet %{name}` is deprecated and will be removed in a future release."
109
109
  msgstr ""
110
110
 
111
111
  #: ../lib/puppet/application.rb:356
112
- msgid "configure routes from %{route_file}"
112
+ msgid "Could not configure routes from %{route_file}"
113
113
  msgstr ""
114
114
 
115
115
  #: ../lib/puppet/application.rb:357
116
- msgid "log runtime debug info"
116
+ msgid "Could not log runtime debug info"
117
117
  msgstr ""
118
118
 
119
119
  #: ../lib/puppet/application.rb:358
120
- msgid "run"
120
+ msgid "Could not run"
121
121
  msgstr ""
122
122
 
123
123
  #: ../lib/puppet/application.rb:362
@@ -132,68 +132,88 @@ msgstr ""
132
132
  msgid "Cancelling startup"
133
133
  msgstr ""
134
134
 
135
- #: ../lib/puppet/application/agent.rb:349
135
+ #: ../lib/puppet/application/agent.rb:79
136
+ msgid "The puppet agent daemon"
137
+ msgstr ""
138
+
139
+ #: ../lib/puppet/application/agent.rb:353
136
140
  msgid "Fingerprint asked but no certificate nor certificate request have yet been issued"
137
141
  msgstr ""
138
142
 
139
- #: ../lib/puppet/application/agent.rb:354
143
+ #: ../lib/puppet/application/agent.rb:358
140
144
  msgid "Could not get fingerprint for digest '%{digest}'"
141
145
  msgstr ""
142
146
 
143
- #: ../lib/puppet/application/agent.rb:378
147
+ #: ../lib/puppet/application/agent.rb:382
144
148
  msgid "Starting Puppet client version %{version}"
145
149
  msgstr ""
146
150
 
147
- #: ../lib/puppet/application/agent.rb:394
151
+ #: ../lib/puppet/application/agent.rb:398
148
152
  msgid "The puppet agent command does not take parameters"
149
153
  msgstr ""
150
154
 
151
- #: ../lib/puppet/application/apply.rb:193
155
+ #: ../lib/puppet/application/apply.rb:35
156
+ msgid "Apply Puppet manifests locally"
157
+ msgstr ""
158
+
159
+ #: ../lib/puppet/application/apply.rb:197
152
160
  msgid "Could not find file %{manifest}"
153
161
  msgstr ""
154
162
 
155
- #: ../lib/puppet/application/apply.rb:194
163
+ #: ../lib/puppet/application/apply.rb:198
156
164
  msgid "Only one file can be applied per run. Skipping %{files}"
157
165
  msgstr ""
158
166
 
159
- #: ../lib/puppet/application/apply.rb:203
167
+ #: ../lib/puppet/application/apply.rb:207
160
168
  msgid "Could not find facts for %{node}"
161
169
  msgstr ""
162
170
 
163
- #: ../lib/puppet/application/apply.rb:212
171
+ #: ../lib/puppet/application/apply.rb:216
164
172
  msgid "Could not find node %{node}"
165
173
  msgstr ""
166
174
 
167
175
  #. TRANSLATORS "puppet apply" is a program command and should not be translated
168
- #: ../lib/puppet/application/apply.rb:229
176
+ #: ../lib/puppet/application/apply.rb:233
169
177
  msgid "For puppet apply"
170
178
  msgstr ""
171
179
 
172
- #: ../lib/puppet/application/apply.rb:241
180
+ #: ../lib/puppet/application/apply.rb:245
173
181
  msgid "%{file} is not readable"
174
182
  msgstr ""
175
183
 
176
- #: ../lib/puppet/application/apply.rb:314
184
+ #: ../lib/puppet/application/apply.rb:318
177
185
  msgid "Exiting"
178
186
  msgstr ""
179
187
 
180
- #: ../lib/puppet/application/apply.rb:344
188
+ #: ../lib/puppet/application/apply.rb:348
181
189
  msgid "Could not deserialize catalog from %{format}: %{detail}"
182
190
  msgstr ""
183
191
 
184
- #: ../lib/puppet/application/cert.rb:325
192
+ #: ../lib/puppet/application/cert.rb:103
193
+ msgid "Manage certificates and requests"
194
+ msgstr ""
195
+
196
+ #: ../lib/puppet/application/cert.rb:329
185
197
  msgid "You must specify the hosts to apply to; valid values are an array or the symbol :all"
186
198
  msgstr ""
187
199
 
188
- #: ../lib/puppet/application/device.rb:193
200
+ #: ../lib/puppet/application/describe.rb:182
201
+ msgid "Display help about resource types"
202
+ msgstr ""
203
+
204
+ #: ../lib/puppet/application/device.rb:66
205
+ msgid "Manage remote network devices"
206
+ msgstr ""
207
+
208
+ #: ../lib/puppet/application/device.rb:197
189
209
  msgid "Target device / certificate '%{target}' not found in %{config}"
190
210
  msgstr ""
191
211
 
192
- #: ../lib/puppet/application/device.rb:195
212
+ #: ../lib/puppet/application/device.rb:199
193
213
  msgid "No device found in %{config}"
194
214
  msgstr ""
195
215
 
196
- #: ../lib/puppet/application/device.rb:205
216
+ #: ../lib/puppet/application/device.rb:209
197
217
  msgid "starting applying configuration to %{target} at %{scheme}%{url_host}%{port}%{url_path}"
198
218
  msgstr ""
199
219
 
@@ -205,19 +225,23 @@ msgstr ""
205
225
  msgid "Invalid output mode %{arg}"
206
226
  msgstr ""
207
227
 
208
- #: ../lib/puppet/application/doc.rb:130
228
+ #: ../lib/puppet/application/doc.rb:52
229
+ msgid "Generate Puppet references"
230
+ msgstr ""
231
+
232
+ #: ../lib/puppet/application/doc.rb:134
209
233
  msgid "scanning: %{files}"
210
234
  msgstr ""
211
235
 
212
- #: ../lib/puppet/application/doc.rb:142
236
+ #: ../lib/puppet/application/doc.rb:146
213
237
  msgid "Could not generate documentation: %{detail}"
214
238
  msgstr ""
215
239
 
216
- #: ../lib/puppet/application/doc.rb:154
240
+ #: ../lib/puppet/application/doc.rb:158
217
241
  msgid "Could not find reference %{name}"
218
242
  msgstr ""
219
243
 
220
- #: ../lib/puppet/application/doc.rb:160
244
+ #: ../lib/puppet/application/doc.rb:164
221
245
  msgid "Could not generate reference %{name}: %{detail}"
222
246
  msgstr ""
223
247
 
@@ -251,27 +275,31 @@ msgstr ""
251
275
  msgid "Try 'puppet help %{face} %{action}' for usage"
252
276
  msgstr ""
253
277
 
254
- #: ../lib/puppet/application/filebucket.rb:169
255
- msgid "You must specify a file to back up"
278
+ #: ../lib/puppet/application/filebucket.rb:16
279
+ msgid "Store and retrieve files in a filebucket"
256
280
  msgstr ""
257
281
 
258
282
  #: ../lib/puppet/application/filebucket.rb:173
259
- msgid "%{file}: no such file"
283
+ msgid "You must specify a file to back up"
260
284
  msgstr ""
261
285
 
262
286
  #: ../lib/puppet/application/filebucket.rb:177
287
+ msgid "%{file}: no such file"
288
+ msgstr ""
289
+
290
+ #: ../lib/puppet/application/filebucket.rb:181
263
291
  msgid "%{file}: cannot read file"
264
292
  msgstr ""
265
293
 
266
- #: ../lib/puppet/application/filebucket.rb:199 ../lib/puppet/application/filebucket.rb:222
294
+ #: ../lib/puppet/application/filebucket.rb:203 ../lib/puppet/application/filebucket.rb:226
267
295
  msgid "Need exactly two arguments: filebucket diff <file_a> <file_b>"
268
296
  msgstr ""
269
297
 
270
- #: ../lib/puppet/application/filebucket.rb:219
298
+ #: ../lib/puppet/application/filebucket.rb:223
271
299
  msgid "Comparing %{checksum_a} %{checksum_b} %{file_a} %{file_b}"
272
300
  msgstr ""
273
301
 
274
- #: ../lib/puppet/application/filebucket.rb:233
302
+ #: ../lib/puppet/application/filebucket.rb:237
275
303
  msgid "Cancelling"
276
304
  msgstr ""
277
305
 
@@ -285,83 +313,95 @@ msgid ""
285
313
  "%{run_help}"
286
314
  msgstr ""
287
315
 
288
- #: ../lib/puppet/application/lookup.rb:262
316
+ #: ../lib/puppet/application/lookup.rb:99
317
+ msgid "Interactive Hiera lookup"
318
+ msgstr ""
319
+
320
+ #: ../lib/puppet/application/lookup.rb:266
289
321
  msgid ""
290
322
  "The options %{deep_merge_opts} are only available with '--merge deep'\n"
291
323
  "%{run_help}"
292
324
  msgstr ""
293
325
 
294
- #: ../lib/puppet/application/lookup.rb:273
326
+ #: ../lib/puppet/application/lookup.rb:277
295
327
  msgid ""
296
328
  "The --merge option only accepts %{strategies}, or %{last_strategy}\n"
297
329
  "%{run_help}"
298
330
  msgstr ""
299
331
 
300
- #: ../lib/puppet/application/lookup.rb:298
332
+ #: ../lib/puppet/application/lookup.rb:302
301
333
  msgid "No keys were given to lookup."
302
334
  msgstr ""
303
335
 
304
- #: ../lib/puppet/application/lookup.rb:306
336
+ #: ../lib/puppet/application/lookup.rb:310
305
337
  msgid "Unknown rendering format '%{format}'"
306
338
  msgstr ""
307
339
 
308
- #: ../lib/puppet/application/lookup.rb:347 ../lib/puppet/face/epp.rb:491
340
+ #: ../lib/puppet/application/lookup.rb:351 ../lib/puppet/face/epp.rb:491
309
341
  msgid "Incorrect formatted data in %{fact_file} given via the --facts flag"
310
342
  msgstr ""
311
343
 
312
- #: ../lib/puppet/application/master.rb:146
344
+ #: ../lib/puppet/application/master.rb:29
345
+ msgid "The puppet master daemon"
346
+ msgstr ""
347
+
348
+ #: ../lib/puppet/application/master.rb:150
313
349
  msgid "Canceling startup"
314
350
  msgstr ""
315
351
 
316
- #: ../lib/puppet/application/master.rb:165
352
+ #: ../lib/puppet/application/master.rb:169
317
353
  msgid "Could not compile catalog for %{node}"
318
354
  msgstr ""
319
355
 
320
- #: ../lib/puppet/application/master.rb:170
356
+ #: ../lib/puppet/application/master.rb:174
321
357
  msgid "Failed to compile catalog for node %{node}: %{detail}"
322
358
  msgstr ""
323
359
 
324
- #: ../lib/puppet/application/master.rb:190
360
+ #: ../lib/puppet/application/master.rb:194
325
361
  msgid "Could not change user to %{user}: %{detail}"
326
362
  msgstr ""
327
363
 
328
- #: ../lib/puppet/application/master.rb:194
364
+ #: ../lib/puppet/application/master.rb:198
329
365
  msgid "Could not change user to %{user}. User does not exist and is required to continue."
330
366
  msgstr ""
331
367
 
332
- #: ../lib/puppet/application/master.rb:200
368
+ #: ../lib/puppet/application/master.rb:204
333
369
  msgid "The Rack Puppet master server is deprecated and will be removed in a future release. Please use Puppet Server instead. See http://links.puppet.com/deprecate-rack-webrick-servers for more information."
334
370
  msgstr ""
335
371
 
336
- #: ../lib/puppet/application/master.rb:203
372
+ #: ../lib/puppet/application/master.rb:207
337
373
  msgid "The WEBrick Puppet master server is deprecated and will be removed in a future release. Please use Puppet Server instead. See http://links.puppet.com/deprecate-rack-webrick-servers for more information."
338
374
  msgstr ""
339
375
 
340
- #: ../lib/puppet/application/master.rb:262
376
+ #: ../lib/puppet/application/master.rb:266
341
377
  msgid "Puppet master is not supported on Microsoft Windows"
342
378
  msgstr ""
343
379
 
344
- #: ../lib/puppet/application/master.rb:311
380
+ #: ../lib/puppet/application/master.rb:315
345
381
  msgid "Starting Puppet master version %{version}"
346
382
  msgstr ""
347
383
 
348
- #: ../lib/puppet/application/resource.rb:136
384
+ #: ../lib/puppet/application/resource.rb:32
385
+ msgid "The resource abstraction layer shell"
386
+ msgstr ""
387
+
388
+ #: ../lib/puppet/application/resource.rb:140
349
389
  msgid "Editing with Yaml output is not supported"
350
390
  msgstr ""
351
391
 
352
- #: ../lib/puppet/application/resource.rb:192
392
+ #: ../lib/puppet/application/resource.rb:196
353
393
  msgid "You must specify the type to display"
354
394
  msgstr ""
355
395
 
356
- #: ../lib/puppet/application/resource.rb:193
396
+ #: ../lib/puppet/application/resource.rb:197
357
397
  msgid "Could not find type %{type}"
358
398
  msgstr ""
359
399
 
360
- #: ../lib/puppet/application/resource.rb:200
400
+ #: ../lib/puppet/application/resource.rb:204
361
401
  msgid "Invalid parameter setting %{setting}"
362
402
  msgstr ""
363
403
 
364
- #: ../lib/puppet/application/resource.rb:222
404
+ #: ../lib/puppet/application/resource.rb:226
365
405
  msgid "Listing all file instances is not supported. Please specify a file or directory, e.g. puppet resource file /etc"
366
406
  msgstr ""
367
407
 
@@ -600,6 +640,10 @@ msgstr ""
600
640
  msgid "Could not verify %{host}: %{error}"
601
641
  msgstr ""
602
642
 
643
+ #: ../lib/puppet/face/catalog.rb:7
644
+ msgid "Compile, save, view, and convert catalogs."
645
+ msgstr ""
646
+
603
647
  #: ../lib/puppet/face/catalog/select.rb:4
604
648
  msgid "Retrieve a catalog and filter it for resources of a given type."
605
649
  msgstr ""
@@ -670,6 +714,14 @@ msgstr ""
670
714
  msgid "Delete a certificate."
671
715
  msgstr ""
672
716
 
717
+ #: ../lib/puppet/face/certificate_request.rb:7
718
+ msgid "Manage certificate requests."
719
+ msgstr ""
720
+
721
+ #: ../lib/puppet/face/certificate_revocation_list.rb:7
722
+ msgid "Manage the list of revoked certificates."
723
+ msgstr ""
724
+
673
725
  #: ../lib/puppet/face/config.rb:8
674
726
  msgid "Interact with Puppet's settings."
675
727
  msgstr ""
@@ -942,7 +994,7 @@ msgstr ""
942
994
  msgid " (Deprecated)"
943
995
  msgstr ""
944
996
 
945
- #: ../lib/puppet/face/help.rb:153 ../lib/puppet/face/help.rb:174
997
+ #: ../lib/puppet/face/help.rb:153 ../lib/puppet/face/help.rb:163
946
998
  msgid "! Subcommand unavailable due to error. Check error logs."
947
999
  msgstr ""
948
1000
 
@@ -1515,15 +1567,15 @@ msgstr ""
1515
1567
  msgid "Relative paths must not be fully qualified"
1516
1568
  msgstr ""
1517
1569
 
1518
- #: ../lib/puppet/file_serving/configuration.rb:53
1570
+ #: ../lib/puppet/file_serving/configuration.rb:54
1519
1571
  msgid "Cannot find file: Invalid mount '%{mount_name}'"
1520
1572
  msgstr ""
1521
1573
 
1522
- #: ../lib/puppet/file_serving/configuration.rb:54
1574
+ #: ../lib/puppet/file_serving/configuration.rb:55
1523
1575
  msgid "Cannot find file: Invalid relative path '%{path}'"
1524
1576
  msgstr ""
1525
1577
 
1526
- #: ../lib/puppet/file_serving/configuration.rb:102
1578
+ #: ../lib/puppet/file_serving/configuration.rb:105
1527
1579
  msgid "Error parsing fileserver configuration: %{detail}; using old configuration"
1528
1580
  msgstr ""
1529
1581
 
@@ -1563,11 +1615,11 @@ msgstr ""
1563
1615
  msgid "%{mount} is already mounted at %{name} in %{file}, line %{line_num}"
1564
1616
  msgstr ""
1565
1617
 
1566
- #: ../lib/puppet/file_serving/configuration/parser.rb:108
1618
+ #: ../lib/puppet/file_serving/configuration/parser.rb:110
1567
1619
  msgid "Removing mount \"%{mount}\": %{detail}"
1568
1620
  msgstr ""
1569
1621
 
1570
- #: ../lib/puppet/file_serving/configuration/parser.rb:112
1622
+ #: ../lib/puppet/file_serving/configuration/parser.rb:114
1571
1623
  msgid "The '%{mount}' module can not have a path. Ignoring attempt to set it"
1572
1624
  msgstr ""
1573
1625
 
@@ -1653,6 +1705,10 @@ msgstr ""
1653
1705
  msgid "No module specified"
1654
1706
  msgstr ""
1655
1707
 
1708
+ #: ../lib/puppet/file_serving/mount/tasks.rb:5
1709
+ msgid "No task specified"
1710
+ msgstr ""
1711
+
1656
1712
  #: ../lib/puppet/file_serving/terminus_selector.rb:29
1657
1713
  msgid "URI protocol '%{protocol}' is not currently supported for file serving"
1658
1714
  msgstr ""
@@ -2494,20 +2550,28 @@ msgstr ""
2494
2550
  msgid "The file %{f} does not exist"
2495
2551
  msgstr ""
2496
2552
 
2497
- #: ../lib/puppet/module.rb:66
2553
+ #: ../lib/puppet/info_service/task_information_service.rb:20
2554
+ msgid "Module %{module_name} not found in environment %{environment_name}."
2555
+ msgstr ""
2556
+
2557
+ #: ../lib/puppet/info_service/task_information_service.rb:26
2558
+ msgid "Task %{task_name} not found in module %{module_name}."
2559
+ msgstr ""
2560
+
2561
+ #: ../lib/puppet/module.rb:67
2498
2562
  msgid "VersionRanges will never be strict when using non-vendored SemanticPuppet gem, version %{version}"
2499
2563
  msgstr ""
2500
2564
 
2501
- #: ../lib/puppet/module.rb:72
2565
+ #: ../lib/puppet/module.rb:73
2502
2566
  msgid "VersionRanges will always be strict when using non-vendored SemanticPuppet gem, version %{version}"
2503
2567
  msgstr ""
2504
2568
 
2505
- #: ../lib/puppet/module.rb:104
2506
- msgid "GettextSetup initialization for %{module_name} failed with: %{error_message}"
2569
+ #: ../lib/puppet/module/task.rb:47
2570
+ msgid "Task names must start with a lowercase letter and be composed of only lowercase letters, numbers, and underscores"
2507
2571
  msgstr ""
2508
2572
 
2509
- #: ../lib/puppet/module.rb:107
2510
- msgid "GettextSetup is not available, skipping GettextSetup initialization for %{module_name}."
2573
+ #: ../lib/puppet/module/task.rb:53
2574
+ msgid "The file '%{path}' is not located in the %{module_name} module's tasks directory"
2511
2575
  msgstr ""
2512
2576
 
2513
2577
  #: ../lib/puppet/module_tool.rb:37
@@ -4145,419 +4209,419 @@ msgid "%{expression}[] cannot use %{actual} where %{expected_text} expected"
4145
4209
  msgstr ""
4146
4210
 
4147
4211
  #: ../lib/puppet/pops/issues.rb:444
4148
- msgid "\"#{label.article(actual_type)} #{actual_type}\""
4149
- msgstr ""
4150
-
4151
- #: ../lib/puppet/pops/issues.rb:445
4152
- msgid "A substring operation does not accept %{actual_type_text} as a character index. Expected an Integer"
4212
+ msgid "A substring operation does not accept %{label_article} %{actual_type} as a character index. Expected an Integer"
4153
4213
  msgstr ""
4154
4214
 
4155
- #: ../lib/puppet/pops/issues.rb:449
4215
+ #: ../lib/puppet/pops/issues.rb:448
4156
4216
  msgid "%{expression}[] argument must be a Type or a String. Got %{actual}"
4157
4217
  msgstr ""
4158
4218
 
4159
- #: ../lib/puppet/pops/issues.rb:453
4219
+ #: ../lib/puppet/pops/issues.rb:452
4160
4220
  msgid "%{base_type}[] arguments must be types. Got %{actual}"
4161
4221
  msgstr ""
4162
4222
 
4163
- #: ../lib/puppet/pops/issues.rb:459
4223
+ #: ../lib/puppet/pops/issues.rb:458
4164
4224
  msgid "%{base_type_label}[] accepts %{min} or more arguments. Got %{actual}"
4165
4225
  msgstr ""
4166
4226
 
4167
- #: ../lib/puppet/pops/issues.rb:461
4227
+ #: ../lib/puppet/pops/issues.rb:460
4168
4228
  msgid "%{base_type_label}[] accepts %{min} to %{max} arguments. Got %{actual}"
4169
4229
  msgstr ""
4170
4230
 
4171
- #: ../lib/puppet/pops/issues.rb:463
4231
+ #: ../lib/puppet/pops/issues.rb:462
4172
4232
  msgid "%{base_type_label}[] accepts %{min} %{label}. Got %{actual}"
4173
4233
  msgstr ""
4174
4234
 
4175
- #: ../lib/puppet/pops/issues.rb:463
4235
+ #: ../lib/puppet/pops/issues.rb:462
4176
4236
  msgid "argument"
4177
4237
  msgstr ""
4178
4238
 
4179
- #: ../lib/puppet/pops/issues.rb:468
4239
+ #: ../lib/puppet/pops/issues.rb:467
4180
4240
  msgid "Error creating type specialization of %{base_type}, %{message}"
4181
4241
  msgstr ""
4182
4242
 
4183
- #: ../lib/puppet/pops/issues.rb:472
4243
+ #: ../lib/puppet/pops/issues.rb:471
4184
4244
  msgid "Cannot specialize an already specialized %{kind} type"
4185
4245
  msgstr ""
4186
4246
 
4187
- #: ../lib/puppet/pops/issues.rb:476
4247
+ #: ../lib/puppet/pops/issues.rb:475
4188
4248
  msgid "First argument to Resource[] must be a resource type or a String. Got %{actual}."
4189
4249
  msgstr ""
4190
4250
 
4191
- #: ../lib/puppet/pops/issues.rb:480
4251
+ #: ../lib/puppet/pops/issues.rb:479
4192
4252
  msgid "Arguments to Resource[] are all empty/undefined"
4193
4253
  msgstr ""
4194
4254
 
4195
- #: ../lib/puppet/pops/issues.rb:484
4255
+ #: ../lib/puppet/pops/issues.rb:483
4196
4256
  msgid "Illegal Class name in class reference. %{expression} cannot be used where a String is expected"
4197
4257
  msgstr ""
4198
4258
 
4199
- #: ../lib/puppet/pops/issues.rb:488
4259
+ #: ../lib/puppet/pops/issues.rb:487
4200
4260
  msgid "Unacceptable name. The name '%{name}' is unacceptable as the name of %{value}"
4201
4261
  msgstr ""
4202
4262
 
4203
- #: ../lib/puppet/pops/issues.rb:492
4263
+ #: ../lib/puppet/pops/issues.rb:491
4204
4264
  msgid "Parameter $%{param} is not last, and has 'captures rest'"
4205
4265
  msgstr ""
4206
4266
 
4207
- #: ../lib/puppet/pops/issues.rb:496
4267
+ #: ../lib/puppet/pops/issues.rb:495
4208
4268
  msgid "Parameter $%{param} has 'captures rest' - not supported in %{container}"
4209
4269
  msgstr ""
4210
4270
 
4211
- #: ../lib/puppet/pops/issues.rb:500
4271
+ #: ../lib/puppet/pops/issues.rb:499
4212
4272
  msgid "Parameter $%{param} is required but appears after optional parameters"
4213
4273
  msgstr ""
4214
4274
 
4215
- #: ../lib/puppet/pops/issues.rb:504
4275
+ #: ../lib/puppet/pops/issues.rb:503
4216
4276
  msgid "Parameter $%{param} is required but no value was given"
4217
4277
  msgstr ""
4218
4278
 
4219
- #: ../lib/puppet/pops/issues.rb:508
4279
+ #: ../lib/puppet/pops/issues.rb:507
4220
4280
  msgid "The value '%{value}' cannot be converted to Numeric."
4221
4281
  msgstr ""
4222
4282
 
4223
- #: ../lib/puppet/pops/issues.rb:516
4283
+ #: ../lib/puppet/pops/issues.rb:511
4284
+ msgid "The string '%{before}' was automatically coerced to the numerical value %{after}"
4285
+ msgstr ""
4286
+
4287
+ #: ../lib/puppet/pops/issues.rb:515
4224
4288
  msgid "Unknown function: '%{name}'."
4225
4289
  msgstr ""
4226
4290
 
4227
- #: ../lib/puppet/pops/issues.rb:520
4291
+ #: ../lib/puppet/pops/issues.rb:519
4228
4292
  msgid "Unknown variable: '%{name}'."
4229
4293
  msgstr ""
4230
4294
 
4231
- #: ../lib/puppet/pops/issues.rb:524
4295
+ #: ../lib/puppet/pops/issues.rb:523
4232
4296
  msgid "Error while evaluating %{expression}, %{detail}"
4233
4297
  msgstr ""
4234
4298
 
4235
- #: ../lib/puppet/pops/issues.rb:528
4299
+ #: ../lib/puppet/pops/issues.rb:527
4236
4300
  msgid "Resource type not found: %{res_type}"
4237
4301
  msgstr ""
4238
4302
 
4239
- #: ../lib/puppet/pops/issues.rb:532
4303
+ #: ../lib/puppet/pops/issues.rb:531
4240
4304
  msgid "Illegal Resource Type expression, expected result to be a type name, or untitled Resource, got %{actual}"
4241
4305
  msgstr ""
4242
4306
 
4243
- #: ../lib/puppet/pops/issues.rb:536
4307
+ #: ../lib/puppet/pops/issues.rb:535
4244
4308
  msgid "The title '%{title}' has already been used in this resource expression"
4245
4309
  msgstr ""
4246
4310
 
4247
- #: ../lib/puppet/pops/issues.rb:540
4311
+ #: ../lib/puppet/pops/issues.rb:539
4248
4312
  msgid "The attribute '%{attribute}' has already been set"
4249
4313
  msgstr ""
4250
4314
 
4251
- #: ../lib/puppet/pops/issues.rb:544
4315
+ #: ../lib/puppet/pops/issues.rb:543
4252
4316
  msgid "Missing title. The title expression resulted in undef"
4253
4317
  msgstr ""
4254
4318
 
4255
- #: ../lib/puppet/pops/issues.rb:548
4319
+ #: ../lib/puppet/pops/issues.rb:547
4256
4320
  msgid "Missing title at index %{index}. The title expression resulted in an undef title"
4257
4321
  msgstr ""
4258
4322
 
4259
- #: ../lib/puppet/pops/issues.rb:552
4323
+ #: ../lib/puppet/pops/issues.rb:551
4260
4324
  msgid "Illegal title type at index %{index}. Expected String, got %{actual}"
4261
4325
  msgstr ""
4262
4326
 
4263
- #: ../lib/puppet/pops/issues.rb:556
4327
+ #: ../lib/puppet/pops/issues.rb:555
4264
4328
  msgid "Empty string title at %{index}. Title strings must have a length greater than zero."
4265
4329
  msgstr ""
4266
4330
 
4267
- #: ../lib/puppet/pops/issues.rb:560
4331
+ #: ../lib/puppet/pops/issues.rb:559
4268
4332
  msgid "Resource not found: %{type_name}['%{title}']"
4269
4333
  msgstr ""
4270
4334
 
4271
- #: ../lib/puppet/pops/issues.rb:564
4335
+ #: ../lib/puppet/pops/issues.rb:563
4272
4336
  msgid "The resource %{type_name}['%{title}'] does not have a parameter called '%{param}'"
4273
4337
  msgstr ""
4274
4338
 
4275
- #: ../lib/puppet/pops/issues.rb:568
4339
+ #: ../lib/puppet/pops/issues.rb:567
4276
4340
  msgid "Division by 0"
4277
4341
  msgstr ""
4278
4342
 
4279
- #: ../lib/puppet/pops/issues.rb:572
4343
+ #: ../lib/puppet/pops/issues.rb:571
4280
4344
  msgid "The result of the %{operator} expression is Infinity"
4281
4345
  msgstr ""
4282
4346
 
4283
- #: ../lib/puppet/pops/issues.rb:577
4347
+ #: ../lib/puppet/pops/issues.rb:576
4284
4348
  msgid "Heredoc syntax specification has empty segment between '+' : '%{syntax}'"
4285
4349
  msgstr ""
4286
4350
 
4287
- #: ../lib/puppet/pops/issues.rb:581
4351
+ #: ../lib/puppet/pops/issues.rb:580
4288
4352
  msgid "Ambiguous EPP parameter expression. Probably missing '<%-' before parameters to remove leading whitespace"
4289
4353
  msgstr ""
4290
4354
 
4291
4355
  #. TRANSLATORS "import" is a function name and should not be translated
4292
- #: ../lib/puppet/pops/issues.rb:586
4356
+ #: ../lib/puppet/pops/issues.rb:585
4293
4357
  msgid "Use of 'import' has been discontinued in favor of a manifest directory. See http://links.puppet.com/puppet-import-deprecation"
4294
4358
  msgstr ""
4295
4359
 
4296
- #: ../lib/puppet/pops/issues.rb:590
4360
+ #: ../lib/puppet/pops/issues.rb:589
4297
4361
  msgid "This %{expression} has no effect. A value was produced and then forgotten (one or more preceding expressions may have the wrong form)"
4298
4362
  msgstr ""
4299
4363
 
4300
- #: ../lib/puppet/pops/issues.rb:594
4364
+ #: ../lib/puppet/pops/issues.rb:593
4301
4365
  msgid "This expression is invalid. Did you try declaring a '%{name}' resource without a title?"
4302
4366
  msgstr ""
4303
4367
 
4304
- #: ../lib/puppet/pops/issues.rb:598
4368
+ #: ../lib/puppet/pops/issues.rb:597
4305
4369
  msgid "This %{expression} has no effect. %{container} can not end with a value-producing expression without other effect"
4306
4370
  msgstr ""
4307
4371
 
4308
- #: ../lib/puppet/pops/issues.rb:602
4372
+ #: ../lib/puppet/pops/issues.rb:601
4309
4373
  msgid "Use of reserved word: %{word}, must be quoted if intended to be a String value"
4310
4374
  msgstr ""
4311
4375
 
4312
- #: ../lib/puppet/pops/issues.rb:606
4376
+ #: ../lib/puppet/pops/issues.rb:605
4313
4377
  msgid "Use of future reserved word: '%{word}'"
4314
4378
  msgstr ""
4315
4379
 
4316
- #: ../lib/puppet/pops/issues.rb:610
4380
+ #: ../lib/puppet/pops/issues.rb:609
4317
4381
  msgid "The name: '%{name}' is already defined by Puppet and can not be used as the name of %{expression}."
4318
4382
  msgstr ""
4319
4383
 
4320
- #: ../lib/puppet/pops/issues.rb:614
4384
+ #: ../lib/puppet/pops/issues.rb:613
4321
4385
  msgid "No matching entry for selector parameter with value '%{param}'"
4322
4386
  msgstr ""
4323
4387
 
4324
- #: ../lib/puppet/pops/issues.rb:618
4388
+ #: ../lib/puppet/pops/issues.rb:617
4325
4389
  msgid "Node inheritance is not supported in Puppet >= 4.0.0. See http://links.puppet.com/puppet-node-inheritance-deprecation"
4326
4390
  msgstr ""
4327
4391
 
4328
- #: ../lib/puppet/pops/issues.rb:622
4392
+ #: ../lib/puppet/pops/issues.rb:621
4329
4393
  msgid "Resource Override can only operate on resources, got: %{actual}"
4330
4394
  msgstr ""
4331
4395
 
4332
- #: ../lib/puppet/pops/issues.rb:626
4396
+ #: ../lib/puppet/pops/issues.rb:625
4333
4397
  msgid "The parameter '%{param}' is declared more than once in the parameter list"
4334
4398
  msgstr ""
4335
4399
 
4336
- #: ../lib/puppet/pops/issues.rb:630
4400
+ #: ../lib/puppet/pops/issues.rb:629
4337
4401
  msgid "The key '%{key}' is declared more than once"
4338
4402
  msgstr ""
4339
4403
 
4340
- #: ../lib/puppet/pops/issues.rb:634
4404
+ #: ../lib/puppet/pops/issues.rb:633
4341
4405
  msgid "This %{container} already has a 'default' entry - this is a duplicate"
4342
4406
  msgstr ""
4343
4407
 
4344
- #: ../lib/puppet/pops/issues.rb:638
4408
+ #: ../lib/puppet/pops/issues.rb:637
4345
4409
  msgid "The parameter $%{param} redefines a built in parameter in %{container}"
4346
4410
  msgstr ""
4347
4411
 
4348
- #: ../lib/puppet/pops/issues.rb:642
4412
+ #: ../lib/puppet/pops/issues.rb:641
4349
4413
  msgid "Expected value of type %{expected}, got %{actual}"
4350
4414
  msgstr ""
4351
4415
 
4352
- #: ../lib/puppet/pops/issues.rb:646
4416
+ #: ../lib/puppet/pops/issues.rb:645
4353
4417
  msgid "Unfolding of attributes from Hash can only be used once per resource body"
4354
4418
  msgstr ""
4355
4419
 
4356
- #: ../lib/puppet/pops/issues.rb:650
4420
+ #: ../lib/puppet/pops/issues.rb:649
4357
4421
  msgid "This %{expression} appears in a context where catalog related expressions are not allowed"
4358
4422
  msgstr ""
4359
4423
 
4360
- #: ../lib/puppet/pops/issues.rb:654
4424
+ #: ../lib/puppet/pops/issues.rb:653
4361
4425
  msgid "Syntax error at %{location}"
4362
4426
  msgstr ""
4363
4427
 
4364
- #: ../lib/puppet/pops/issues.rb:658
4428
+ #: ../lib/puppet/pops/issues.rb:657
4365
4429
  msgid "Illegal class reference"
4366
4430
  msgstr ""
4367
4431
 
4368
- #: ../lib/puppet/pops/issues.rb:662
4432
+ #: ../lib/puppet/pops/issues.rb:661
4369
4433
  msgid "Illegal fully qualified class reference"
4370
4434
  msgstr ""
4371
4435
 
4372
- #: ../lib/puppet/pops/issues.rb:666
4436
+ #: ../lib/puppet/pops/issues.rb:665
4373
4437
  msgid "Illegal fully qualified name"
4374
4438
  msgstr ""
4375
4439
 
4376
- #: ../lib/puppet/pops/issues.rb:670
4440
+ #: ../lib/puppet/pops/issues.rb:669
4377
4441
  msgid "Illegal name or bare word"
4378
4442
  msgstr ""
4379
4443
 
4380
- #: ../lib/puppet/pops/issues.rb:674
4444
+ #: ../lib/puppet/pops/issues.rb:673
4381
4445
  msgid "Illegal number '%{value}'"
4382
4446
  msgstr ""
4383
4447
 
4384
- #: ../lib/puppet/pops/issues.rb:678
4448
+ #: ../lib/puppet/pops/issues.rb:677
4385
4449
  msgid "Unicode escape '\\u' was not followed by 4 hex digits or 1-6 hex digits in {} or was > 10ffff"
4386
4450
  msgstr ""
4387
4451
 
4388
- #: ../lib/puppet/pops/issues.rb:682
4452
+ #: ../lib/puppet/pops/issues.rb:681
4389
4453
  msgid "Not a valid hex number %{value}"
4390
4454
  msgstr ""
4391
4455
 
4392
- #: ../lib/puppet/pops/issues.rb:686
4456
+ #: ../lib/puppet/pops/issues.rb:685
4393
4457
  msgid "Not a valid octal number %{value}"
4394
4458
  msgstr ""
4395
4459
 
4396
- #: ../lib/puppet/pops/issues.rb:690
4460
+ #: ../lib/puppet/pops/issues.rb:689
4397
4461
  msgid "Not a valid decimal number %{value}"
4398
4462
  msgstr ""
4399
4463
 
4400
- #: ../lib/puppet/pops/issues.rb:694
4464
+ #: ../lib/puppet/pops/issues.rb:693
4401
4465
  msgid "Internal Error: No string or file given to lexer to process."
4402
4466
  msgstr ""
4403
4467
 
4404
- #: ../lib/puppet/pops/issues.rb:698
4468
+ #: ../lib/puppet/pops/issues.rb:697
4405
4469
  msgid "Unrecognized escape sequence '\\%{ch}'"
4406
4470
  msgstr ""
4407
4471
 
4408
- #: ../lib/puppet/pops/issues.rb:702
4472
+ #: ../lib/puppet/pops/issues.rb:701
4409
4473
  msgid "Unclosed quote after %{after} followed by '%{followed_by}'"
4410
4474
  msgstr ""
4411
4475
 
4412
- #: ../lib/puppet/pops/issues.rb:706
4476
+ #: ../lib/puppet/pops/issues.rb:705
4413
4477
  msgid "Unclosed multiline comment"
4414
4478
  msgstr ""
4415
4479
 
4416
- #: ../lib/puppet/pops/issues.rb:710
4480
+ #: ../lib/puppet/pops/issues.rb:709
4417
4481
  msgid "Internal error: %{error}"
4418
4482
  msgstr ""
4419
4483
 
4420
- #: ../lib/puppet/pops/issues.rb:714
4484
+ #: ../lib/puppet/pops/issues.rb:713
4421
4485
  msgid "Unbalanced epp tag, reached <eof> without closing tag."
4422
4486
  msgstr ""
4423
4487
 
4424
- #: ../lib/puppet/pops/issues.rb:718
4488
+ #: ../lib/puppet/pops/issues.rb:717
4425
4489
  msgid "Reaching end after opening <%# without seeing %>"
4426
4490
  msgstr ""
4427
4491
 
4428
- #: ../lib/puppet/pops/issues.rb:722
4492
+ #: ../lib/puppet/pops/issues.rb:721
4429
4493
  msgid "Unbalanced embedded expression - opening <% and reaching end of input"
4430
4494
  msgstr ""
4431
4495
 
4432
- #: ../lib/puppet/pops/issues.rb:726
4496
+ #: ../lib/puppet/pops/issues.rb:725
4433
4497
  msgid "Unclosed parenthesis after '@(' followed by '%{followed_by}'"
4434
4498
  msgstr ""
4435
4499
 
4436
- #: ../lib/puppet/pops/issues.rb:730
4500
+ #: ../lib/puppet/pops/issues.rb:729
4437
4501
  msgid "Heredoc without end-tagged line"
4438
4502
  msgstr ""
4439
4503
 
4440
- #: ../lib/puppet/pops/issues.rb:734
4504
+ #: ../lib/puppet/pops/issues.rb:733
4441
4505
  msgid "Invalid heredoc escape char. Only t, r, n, s, u, L, $ allowed. Got '%{actual}'"
4442
4506
  msgstr ""
4443
4507
 
4444
- #: ../lib/puppet/pops/issues.rb:738
4508
+ #: ../lib/puppet/pops/issues.rb:737
4445
4509
  msgid "Invalid syntax in heredoc expected @(endtag[:syntax][/escapes])"
4446
4510
  msgstr ""
4447
4511
 
4448
- #: ../lib/puppet/pops/issues.rb:742
4512
+ #: ../lib/puppet/pops/issues.rb:741
4449
4513
  msgid "Heredoc without any following lines of text"
4450
4514
  msgstr ""
4451
4515
 
4452
- #: ../lib/puppet/pops/issues.rb:746
4516
+ #: ../lib/puppet/pops/issues.rb:745
4453
4517
  msgid "An escape char for @() may only appear once. Got '%{escapes}'"
4454
4518
  msgstr ""
4455
4519
 
4456
- #: ../lib/puppet/pops/issues.rb:750
4520
+ #: ../lib/puppet/pops/issues.rb:749
4457
4521
  msgid "Illegal %{format} Byte Order mark at beginning of input: %{bom} - remove these from the puppet source"
4458
4522
  msgstr ""
4459
4523
 
4460
4524
  #: ../lib/puppet/pops/issues.rb:754
4461
- msgid "max"
4525
+ msgid "%{expression} resulted in a value outside of Puppet Integer max range, got '%{value}'"
4462
4526
  msgstr ""
4463
4527
 
4464
- #: ../lib/puppet/pops/issues.rb:754
4465
- msgid "min"
4528
+ #: ../lib/puppet/pops/issues.rb:756
4529
+ msgid "%{expression} resulted in a value outside of Puppet Integer min range, got '%{value}'"
4466
4530
  msgstr ""
4467
4531
 
4468
- #: ../lib/puppet/pops/issues.rb:755
4469
- msgid "\"#{label.a_an_uc(semantic)} resulted in a value outside of Puppet Integer #{range_end} range, got '#{\"%#+x\" % value}'\""
4470
- msgstr ""
4471
-
4472
- #: ../lib/puppet/pops/issues.rb:759
4532
+ #: ../lib/puppet/pops/issues.rb:761
4473
4533
  msgid "This runtime does not support hiera.yaml version %{version}"
4474
4534
  msgstr ""
4475
4535
 
4476
- #: ../lib/puppet/pops/issues.rb:763
4536
+ #: ../lib/puppet/pops/issues.rb:765
4477
4537
  msgid "hiera.yaml version 3 cannot be used in %{location}"
4478
4538
  msgstr ""
4479
4539
 
4480
- #: ../lib/puppet/pops/issues.rb:767
4540
+ #: ../lib/puppet/pops/issues.rb:769
4481
4541
  msgid "hiera.yaml version 4 cannot be used in the global layer"
4482
4542
  msgstr ""
4483
4543
 
4484
- #: ../lib/puppet/pops/issues.rb:771
4544
+ #: ../lib/puppet/pops/issues.rb:773
4485
4545
  msgid "Undefined variable '%{name}'"
4486
4546
  msgstr ""
4487
4547
 
4488
- #: ../lib/puppet/pops/issues.rb:775
4548
+ #: ../lib/puppet/pops/issues.rb:777
4489
4549
  msgid "Backend '%{name}' is defined more than once"
4490
4550
  msgstr ""
4491
4551
 
4492
- #: ../lib/puppet/pops/issues.rb:777 ../lib/puppet/pops/issues.rb:787
4552
+ #: ../lib/puppet/pops/issues.rb:779 ../lib/puppet/pops/issues.rb:789
4493
4553
  msgid "%{msg}. First defined at line %{line}"
4494
4554
  msgstr ""
4495
4555
 
4496
- #: ../lib/puppet/pops/issues.rb:781
4556
+ #: ../lib/puppet/pops/issues.rb:783
4497
4557
  msgid "No data provider is registered for backend '%{name}'"
4498
4558
  msgstr ""
4499
4559
 
4500
- #: ../lib/puppet/pops/issues.rb:785
4560
+ #: ../lib/puppet/pops/issues.rb:787
4501
4561
  msgid "Hierarchy name '%{name}' defined more than once"
4502
4562
  msgstr ""
4503
4563
 
4504
- #: ../lib/puppet/pops/issues.rb:791
4564
+ #: ../lib/puppet/pops/issues.rb:793
4505
4565
  msgid "'hiera3_backend' is only allowed in the global layer"
4506
4566
  msgstr ""
4507
4567
 
4508
- #: ../lib/puppet/pops/issues.rb:795
4568
+ #: ../lib/puppet/pops/issues.rb:797
4509
4569
  msgid "'default_hierarchy' is only allowed in the module layer"
4510
4570
  msgstr ""
4511
4571
 
4512
- #: ../lib/puppet/pops/issues.rb:799
4572
+ #: ../lib/puppet/pops/issues.rb:801
4513
4573
  msgid "Use \"data_hash: %{function_name}_data\" instead of \"hiera3_backend: %{function_name}\""
4514
4574
  msgstr ""
4515
4575
 
4516
- #: ../lib/puppet/pops/issues.rb:803
4576
+ #: ../lib/puppet/pops/issues.rb:805
4517
4577
  msgid "One of %{keys} must be defined in hierarchy '%{name}'"
4518
4578
  msgstr ""
4519
4579
 
4520
- #: ../lib/puppet/pops/issues.rb:807 ../lib/puppet/pops/issues.rb:815
4580
+ #: ../lib/puppet/pops/issues.rb:809 ../lib/puppet/pops/issues.rb:817
4521
4581
  msgid "Only one of %{keys} can be defined in hierarchy '%{name}'"
4522
4582
  msgstr ""
4523
4583
 
4524
- #: ../lib/puppet/pops/issues.rb:811
4584
+ #: ../lib/puppet/pops/issues.rb:813
4525
4585
  msgid "Only one of %{keys} can be defined in defaults"
4526
4586
  msgstr ""
4527
4587
 
4528
- #: ../lib/puppet/pops/issues.rb:819
4588
+ #: ../lib/puppet/pops/issues.rb:821
4529
4589
  msgid "Option key '%{key}' used in hierarchy '%{name}' is reserved by Puppet"
4530
4590
  msgstr ""
4531
4591
 
4532
- #: ../lib/puppet/pops/issues.rb:823
4592
+ #: ../lib/puppet/pops/issues.rb:825
4533
4593
  msgid "Option key '%{key}' used in defaults is reserved by Puppet"
4534
4594
  msgstr ""
4535
4595
 
4536
- #: ../lib/puppet/pops/issues.rb:827
4596
+ #: ../lib/puppet/pops/issues.rb:829
4537
4597
  msgid "Unable to find '%{function_type}' function named '%{function_name}'"
4538
4598
  msgstr ""
4539
4599
 
4540
- #: ../lib/puppet/pops/issues.rb:831
4600
+ #: ../lib/puppet/pops/issues.rb:833
4541
4601
  msgid "'alias' interpolation is only permitted if the expression is equal to the entire string"
4542
4602
  msgstr ""
4543
4603
 
4544
- #: ../lib/puppet/pops/issues.rb:835
4604
+ #: ../lib/puppet/pops/issues.rb:837
4545
4605
  msgid "Unknown interpolation method '%{name}'"
4546
4606
  msgstr ""
4547
4607
 
4548
- #: ../lib/puppet/pops/issues.rb:839
4608
+ #: ../lib/puppet/pops/issues.rb:841
4549
4609
  msgid "Interpolation using method syntax is not allowed in this context"
4550
4610
  msgstr ""
4551
4611
 
4552
- #: ../lib/puppet/pops/issues.rb:843
4612
+ #: ../lib/puppet/pops/issues.rb:845
4553
4613
  msgid "Endless recursion detected when attempting to serialize value of class %{type_name}"
4554
4614
  msgstr ""
4555
4615
 
4556
- #: ../lib/puppet/pops/issues.rb:847
4616
+ #: ../lib/puppet/pops/issues.rb:849
4617
+ msgid "%{path} contains the special value default. It will be converted to the String 'default'"
4618
+ msgstr ""
4619
+
4620
+ #: ../lib/puppet/pops/issues.rb:853
4557
4621
  msgid "%{path} contains %{klass} value. It will be converted to the String '%{value}'"
4558
4622
  msgstr ""
4559
4623
 
4560
- #: ../lib/puppet/pops/issues.rb:851
4624
+ #: ../lib/puppet/pops/issues.rb:857
4561
4625
  msgid "%{path} contains a hash with %{klass} key. It will be converted to the String '%{value}'"
4562
4626
  msgstr ""
4563
4627
 
@@ -4800,7 +4864,7 @@ msgid "Unable to deserialize type from %{type}"
4800
4864
  msgstr ""
4801
4865
 
4802
4866
  #: ../lib/puppet/pops/serialization/from_data_converter.rb:163
4803
- msgid "Cannot create a %{type_name} from a %{arg_class"
4867
+ msgid "Cannot create a %{type_name} from a %{arg_class}"
4804
4868
  msgstr ""
4805
4869
 
4806
4870
  #: ../lib/puppet/pops/serialization/json.rb:204
@@ -5307,7 +5371,7 @@ msgstr ""
5307
5371
  msgid "No responsefile specified or non existent, not preseeding anything"
5308
5372
  msgstr ""
5309
5373
 
5310
- #: ../lib/puppet/provider/package/aptitude.rb:21 ../lib/puppet/provider/package/ports.rb:20 ../lib/puppet/provider/package/portupgrade.rb:93 ../lib/puppet/provider/package/portupgrade.rb:151 ../lib/puppet/provider/package/rug.rb:28 ../lib/puppet/provider/package/up2date.rb:17 ../lib/puppet/provider/package/yum.rb:213 ../lib/puppet/provider/package/zypper.rb:109
5374
+ #: ../lib/puppet/provider/package/aptitude.rb:21 ../lib/puppet/provider/package/ports.rb:20 ../lib/puppet/provider/package/portupgrade.rb:93 ../lib/puppet/provider/package/portupgrade.rb:151 ../lib/puppet/provider/package/rug.rb:28 ../lib/puppet/provider/package/up2date.rb:17 ../lib/puppet/provider/package/yum.rb:214 ../lib/puppet/provider/package/zypper.rb:109
5311
5375
  msgid "Could not find package %{name}"
5312
5376
  msgstr ""
5313
5377
 
@@ -5628,15 +5692,15 @@ msgstr ""
5628
5692
  msgid "Could not check for updates, '%{cmd} check-update' exited with %{status}"
5629
5693
  msgstr ""
5630
5694
 
5631
- #: ../lib/puppet/provider/package/yum.rb:116
5695
+ #: ../lib/puppet/provider/package/yum.rb:117
5632
5696
  msgid "Failed to parse package name and architecture from '%{pkgname}'"
5633
5697
  msgstr ""
5634
5698
 
5635
- #: ../lib/puppet/provider/package/yum.rb:207
5699
+ #: ../lib/puppet/provider/package/yum.rb:208
5636
5700
  msgid "Could not find package %{wanted}"
5637
5701
  msgstr ""
5638
5702
 
5639
- #: ../lib/puppet/provider/package/yum.rb:218
5703
+ #: ../lib/puppet/provider/package/yum.rb:219
5640
5704
  msgid "Failed to update to version %{should}, got version %{version} instead"
5641
5705
  msgstr ""
5642
5706
 
@@ -6650,7 +6714,7 @@ msgid "Purged %{resource}"
6650
6714
  msgstr ""
6651
6715
 
6652
6716
  #: ../lib/puppet/type/mount.rb:68
6653
- msgid "Unexpected change from %{current} to unmounted}"
6717
+ msgid "Unexpected change from %{current} to unmounted"
6654
6718
  msgstr ""
6655
6719
 
6656
6720
  #: ../lib/puppet/type/mount.rb:134
@@ -6773,19 +6837,19 @@ msgstr ""
6773
6837
  msgid "Attribute 'user' or 'target' is mandatory"
6774
6838
  msgstr ""
6775
6839
 
6776
- #: ../lib/puppet/type/sshkey.rb:44
6840
+ #: ../lib/puppet/type/sshkey.rb:52
6777
6841
  msgid "Aliases cannot include whitespace"
6778
6842
  msgstr ""
6779
6843
 
6780
- #: ../lib/puppet/type/sshkey.rb:47
6844
+ #: ../lib/puppet/type/sshkey.rb:55
6781
6845
  msgid "Aliases must be provided as an array, not a comma-separated list"
6782
6846
  msgstr ""
6783
6847
 
6784
- #: ../lib/puppet/type/sshkey.rb:58
6848
+ #: ../lib/puppet/type/sshkey.rb:66
6785
6849
  msgid "Resourcename cannot include whitespaces"
6786
6850
  msgstr ""
6787
6851
 
6788
- #: ../lib/puppet/type/sshkey.rb:59
6852
+ #: ../lib/puppet/type/sshkey.rb:67
6789
6853
  msgid "No comma in resourcename allowed. If you want to specify aliases use the host_aliases property"
6790
6854
  msgstr ""
6791
6855
 
@@ -7022,10 +7086,6 @@ msgstr ""
7022
7086
  msgid "Failed to convert '%{path}' to URI: %{detail}"
7023
7087
  msgstr ""
7024
7088
 
7025
- #: ../lib/puppet/util.rb:678
7026
- msgid "Could not %{message}: %{err}"
7027
- msgstr ""
7028
-
7029
7089
  #: ../lib/puppet/util/at_fork.rb:22
7030
7090
  msgid "Failed to load Solaris implementation of the Puppet::Util::AtFork handler. Child process contract management will be unavailable, which means that agent runs executed by the puppet agent service will be killed when they attempt to restart the service."
7031
7091
  msgstr ""
@@ -7111,7 +7171,7 @@ msgid "Already a generated class named %{klassname}"
7111
7171
  msgstr ""
7112
7172
 
7113
7173
  #: ../lib/puppet/util/command_line.rb:66
7114
- msgid "initialize global default settings"
7174
+ msgid "Could not initialize global default settings"
7115
7175
  msgstr ""
7116
7176
 
7117
7177
  #: ../lib/puppet/util/command_line.rb:162
@@ -7414,43 +7474,43 @@ msgstr ""
7414
7474
  msgid "Failed to set process priority to '%{priority}'"
7415
7475
  msgstr ""
7416
7476
 
7417
- #: ../lib/puppet/util/log.rb:176
7418
- msgid "Received a log message with invalid encoding:"
7477
+ #: ../lib/puppet/util/log.rb:171
7478
+ msgid "Received a Log attribute with invalid encoding:"
7419
7479
  msgstr ""
7420
7480
 
7421
- #: ../lib/puppet/util/log.rb:179
7481
+ #: ../lib/puppet/util/log.rb:174
7422
7482
  msgid "Backtrace:"
7423
7483
  msgstr ""
7424
7484
 
7425
- #: ../lib/puppet/util/log.rb:223
7485
+ #: ../lib/puppet/util/log.rb:228
7426
7486
  msgid "Reopening log files"
7427
7487
  msgstr ""
7428
7488
 
7429
- #: ../lib/puppet/util/log.rb:392
7489
+ #: ../lib/puppet/util/log.rb:397
7430
7490
  msgid "Could not parse for environment %{env}: %{msg}"
7431
7491
  msgstr ""
7432
7492
 
7433
- #: ../lib/puppet/util/log.rb:394
7493
+ #: ../lib/puppet/util/log.rb:399
7434
7494
  msgid "%{msg} at %{file}:%{line}:%{pos}"
7435
7495
  msgstr ""
7436
7496
 
7437
- #: ../lib/puppet/util/log.rb:396
7497
+ #: ../lib/puppet/util/log.rb:401
7438
7498
  msgid "%{msg} at %{file}:%{line}"
7439
7499
  msgstr ""
7440
7500
 
7441
- #: ../lib/puppet/util/log.rb:398
7501
+ #: ../lib/puppet/util/log.rb:403
7442
7502
  msgid "%{msg} at line %{line}:%{pos}"
7443
7503
  msgstr ""
7444
7504
 
7445
- #: ../lib/puppet/util/log.rb:400
7505
+ #: ../lib/puppet/util/log.rb:405
7446
7506
  msgid "%{msg} at line %{line}"
7447
7507
  msgstr ""
7448
7508
 
7449
- #: ../lib/puppet/util/log.rb:402
7509
+ #: ../lib/puppet/util/log.rb:407
7450
7510
  msgid "%{msg} in %{file}"
7451
7511
  msgstr ""
7452
7512
 
7453
- #: ../lib/puppet/util/log.rb:404
7513
+ #: ../lib/puppet/util/log.rb:409
7454
7514
  msgid "%{msg} on node %{node}"
7455
7515
  msgstr ""
7456
7516
 
@@ -7817,11 +7877,11 @@ msgstr ""
7817
7877
  msgid "Cannot create group if user '%{name}' exists."
7818
7878
  msgstr ""
7819
7879
 
7820
- #: ../lib/puppet/util/windows/api_types.rb:68
7880
+ #: ../lib/puppet/util/windows/api_types.rb:72
7821
7881
  msgid "Unable to read wide strings with %{null_terminator} terminal nulls"
7822
7882
  msgstr ""
7823
7883
 
7824
- #: ../lib/puppet/util/windows/api_types.rb:199
7884
+ #: ../lib/puppet/util/windows/api_types.rb:203
7825
7885
  msgid "Bad GUID format."
7826
7886
  msgstr ""
7827
7887
 
@@ -7878,15 +7938,15 @@ msgstr ""
7878
7938
  msgid "GetVersionEx failed"
7879
7939
  msgstr ""
7880
7940
 
7881
- #: ../lib/puppet/util/windows/process.rb:254
7941
+ #: ../lib/puppet/util/windows/process.rb:262
7882
7942
  msgid "environment variable name must not be nil or empty"
7883
7943
  msgstr ""
7884
7944
 
7885
- #: ../lib/puppet/util/windows/process.rb:259
7945
+ #: ../lib/puppet/util/windows/process.rb:267
7886
7946
  msgid "Failed to remove environment variable: %{name}"
7887
7947
  msgstr ""
7888
7948
 
7889
- #: ../lib/puppet/util/windows/process.rb:264
7949
+ #: ../lib/puppet/util/windows/process.rb:272
7890
7950
  msgid "Failed to set environment variable: %{name}"
7891
7951
  msgstr ""
7892
7952