puppet 5.5.0-universal-darwin → 5.5.1-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 (94) hide show
  1. data/Rakefile +1 -1
  2. data/ext/upload_facts.rb +1 -1
  3. data/lib/hiera/scope.rb +24 -2
  4. data/lib/puppet.rb +1 -1
  5. data/lib/puppet/application.rb +2 -2
  6. data/lib/puppet/application/face_base.rb +1 -1
  7. data/lib/puppet/application/resource.rb +1 -1
  8. data/lib/puppet/configurer.rb +15 -12
  9. data/lib/puppet/context.rb +1 -1
  10. data/lib/puppet/error.rb +2 -7
  11. data/lib/puppet/face/config.rb +10 -4
  12. data/lib/puppet/functions/break.rb +3 -7
  13. data/lib/puppet/functions/empty.rb +1 -3
  14. data/lib/puppet/functions/next.rb +1 -8
  15. data/lib/puppet/functions/return.rb +1 -8
  16. data/lib/puppet/functions/strftime.rb +1 -7
  17. data/lib/puppet/indirector/request.rb +6 -10
  18. data/lib/puppet/indirector/rest.rb +9 -9
  19. data/lib/puppet/module_tool/dependency.rb +1 -1
  20. data/lib/puppet/network/http/compression.rb +1 -1
  21. data/lib/puppet/network/http/connection.rb +8 -0
  22. data/lib/puppet/parser/compiler/catalog_validator/relationship_validator.rb +9 -2
  23. data/lib/puppet/parser/functions/create_resources.rb +1 -7
  24. data/lib/puppet/parser/functions/return.rb +22 -1
  25. data/lib/puppet/parser/scope.rb +2 -2
  26. data/lib/puppet/pops/evaluator/runtime3_support.rb +2 -7
  27. data/lib/puppet/pops/parser/epp_parser.rb +1 -1
  28. data/lib/puppet/pops/parser/lexer2.rb +1 -1
  29. data/lib/puppet/pops/puppet_stack.rb +15 -1
  30. data/lib/puppet/pops/serialization/to_data_converter.rb +5 -5
  31. data/lib/puppet/provider/augeas/augeas.rb +7 -0
  32. data/lib/puppet/provider/service/systemd.rb +1 -1
  33. data/lib/puppet/provider/user/aix.rb +1 -1
  34. data/lib/puppet/provider/yumrepo/inifile.rb +1 -0
  35. data/lib/puppet/settings.rb +9 -5
  36. data/lib/puppet/transaction/report.rb +0 -2
  37. data/lib/puppet/type/tidy.rb +4 -0
  38. data/lib/puppet/type/user.rb +34 -3
  39. data/lib/puppet/type/yumrepo.rb +4 -9
  40. data/lib/puppet/util/checksums.rb +0 -2
  41. data/lib/puppet/util/instance_loader.rb +1 -1
  42. data/lib/puppet/util/json.rb +9 -0
  43. data/lib/puppet/util/tagging.rb +16 -3
  44. data/lib/puppet/version.rb +1 -1
  45. data/locales/ja/puppet.po +318 -245
  46. data/locales/puppet.pot +65 -65
  47. data/man/man5/puppet.conf.5 +2 -2
  48. data/man/man8/puppet-agent.8 +1 -1
  49. data/man/man8/puppet-apply.8 +1 -1
  50. data/man/man8/puppet-ca.8 +1 -1
  51. data/man/man8/puppet-catalog.8 +1 -1
  52. data/man/man8/puppet-cert.8 +1 -1
  53. data/man/man8/puppet-certificate.8 +1 -1
  54. data/man/man8/puppet-certificate_request.8 +1 -1
  55. data/man/man8/puppet-certificate_revocation_list.8 +1 -1
  56. data/man/man8/puppet-config.8 +1 -1
  57. data/man/man8/puppet-describe.8 +1 -1
  58. data/man/man8/puppet-device.8 +1 -1
  59. data/man/man8/puppet-doc.8 +1 -1
  60. data/man/man8/puppet-epp.8 +1 -1
  61. data/man/man8/puppet-facts.8 +1 -1
  62. data/man/man8/puppet-filebucket.8 +1 -1
  63. data/man/man8/puppet-generate.8 +1 -1
  64. data/man/man8/puppet-help.8 +1 -1
  65. data/man/man8/puppet-key.8 +1 -1
  66. data/man/man8/puppet-lookup.8 +1 -1
  67. data/man/man8/puppet-man.8 +1 -1
  68. data/man/man8/puppet-master.8 +1 -1
  69. data/man/man8/puppet-module.8 +1 -1
  70. data/man/man8/puppet-node.8 +1 -1
  71. data/man/man8/puppet-parser.8 +1 -1
  72. data/man/man8/puppet-plugin.8 +1 -1
  73. data/man/man8/puppet-report.8 +1 -1
  74. data/man/man8/puppet-resource.8 +1 -1
  75. data/man/man8/puppet-script.8 +1 -1
  76. data/man/man8/puppet-status.8 +1 -1
  77. data/man/man8/puppet.8 +2 -2
  78. data/spec/integration/parser/compiler_spec.rb +9 -0
  79. data/spec/unit/configurer_spec.rb +31 -3
  80. data/spec/unit/face/config_spec.rb +37 -21
  81. data/spec/unit/functions/empty_spec.rb +2 -2
  82. data/spec/unit/functions/epp_spec.rb +5 -2
  83. data/spec/unit/indirector/rest_spec.rb +43 -0
  84. data/spec/unit/parser/functions/create_resources_spec.rb +1 -1
  85. data/spec/unit/pops/puppet_stack_spec.rb +38 -9
  86. data/spec/unit/provider/augeas/augeas_spec.rb +7 -1
  87. data/spec/unit/provider/service/systemd_spec.rb +1 -1
  88. data/spec/unit/provider/yumrepo/inifile_spec.rb +17 -1
  89. data/spec/unit/settings_spec.rb +43 -0
  90. data/spec/unit/transaction/report_spec.rb +1 -25
  91. data/spec/unit/type/tidy_spec.rb +2 -0
  92. data/spec/unit/type/yumrepo_spec.rb +37 -12
  93. data/spec/unit/util/tagging_spec.rb +15 -1
  94. metadata +3428 -3428
@@ -32,8 +32,15 @@ class Puppet::Parser::Compiler
32
32
  refs = param.value.is_a?(Array) ? param.value.flatten : [param.value]
33
33
  refs.each do |r|
34
34
  next if r.nil? || r == :undef
35
- unless catalog.resource(r.to_s)
36
- msg = _("Could not find resource '%{res}' in parameter '%{param}'") % { res: r.to_s, param: param.name.to_s }
35
+ res = r.to_s
36
+ begin
37
+ found = catalog.resource(res)
38
+ rescue ArgumentError => e
39
+ # Raise again but with file and line information
40
+ raise CatalogValidationError.new(e.message, param.file, param.line)
41
+ end
42
+ unless found
43
+ msg = _("Could not find resource '%{res}' in parameter '%{param}'") % { res: res, param: param.name.to_s }
37
44
  raise CatalogValidationError.new(msg, param.file, param.line)
38
45
  end
39
46
  end
@@ -67,13 +67,7 @@ Puppet::Parser::Functions::newfunction(:create_resources, :arity => -3, :doc =>
67
67
  # If relayed via other puppet functions in ruby that do not nest their calls, the source position
68
68
  # will be in the original puppet source.
69
69
  #
70
- stacktrace = Puppet::Pops::PuppetStack.stacktrace()
71
- if stacktrace.size > 0
72
- file, line = stacktrace[0]
73
- else
74
- file = nil
75
- line = nil
76
- end
70
+ file, line = Puppet::Pops::PuppetStack.top_of_stack
77
71
 
78
72
  if type.start_with? '@@'
79
73
  exported = true
@@ -4,7 +4,8 @@ Puppet::Parser::Functions::newfunction(
4
4
  :doc => <<-DOC
5
5
  Immediately returns the given optional value from a function, class body or user defined type body.
6
6
  If a value is not given, an `undef` value is returned. This function does not return to the immediate caller.
7
- If called from within a lambda the return will return from the function evaluating the lambda.
7
+ If this function is called from within a lambda, the return action is from the scope of the
8
+ function containing the lambda (top scope), not the function accepting the lambda (local scope).
8
9
 
9
10
  The signal produced to return a value bubbles up through
10
11
  the call stack until reaching a function, class definition or
@@ -63,6 +64,26 @@ The code would notice `'bar'` but not `'foo'`
63
64
 
64
65
  Note that the returned value is ignored if used in a class or user defined type.
65
66
 
67
+ **Example:** Using `return` in a lambda
68
+
69
+ ```puppet
70
+ # Concatenate three strings into a single string formatted as a list.
71
+ function getFruit() {
72
+ with("apples", "oranges", "bananas") |$x, $y, $z| {
73
+ return("${x}, ${y}, and ${z}")
74
+ }
75
+ notice "not reached"
76
+ }
77
+ $fruit = getFruit()
78
+ notice $fruit
79
+
80
+ # The output contains "apples, oranges, and bananas".
81
+ # "not reached" is not output because the function returns its value within the
82
+ # calling function's scope, which stops processing the calling function before
83
+ # the `notice "not reached"` statement.
84
+ # Using `return()` outside of a calling function results in an error.
85
+ ```
86
+
66
87
  * Also see functions `return` and `break`
67
88
  * Since 4.8.0
68
89
  DOC
@@ -875,8 +875,8 @@ class Puppet::Parser::Scope
875
875
  return "Scope(#{@resource})" unless @resource.nil?
876
876
 
877
877
  # For logging of function-scope - it is now showing the file and line.
878
- detail = Puppet::Pops::PuppetStack.stacktrace[0]
879
- return "Scope()" unless detail.is_a?(Array)
878
+ detail = Puppet::Pops::PuppetStack.top_of_stack
879
+ return "Scope()" if detail.empty?
880
880
 
881
881
  # shorten the path if possible
882
882
  path = detail[0]
@@ -55,13 +55,8 @@ module Runtime3Support
55
55
  #
56
56
  def runtime_issue(issue, options={})
57
57
  # Get position from puppet runtime stack
58
- stacktrace = Puppet::Pops::PuppetStack.stacktrace()
59
- if stacktrace.size > 0
60
- file, line = stacktrace[0]
61
- else
62
- file = nil
63
- line = nil
64
- end
58
+ file, line = Puppet::Pops::PuppetStack.top_of_stack
59
+
65
60
  # Use a SemanticError as the sourcepos
66
61
  semantic = Puppet::Pops::SemanticError.new(issue, nil, options.merge({:file => file, :line => line}))
67
62
  optionally_fail(issue, semantic)
@@ -6,7 +6,7 @@ class Puppet::Pops::Parser::EppParser < Puppet::Pops::Parser::Parser
6
6
  # @return [void]
7
7
  #
8
8
  def initvars
9
- self.lexer = Puppet::Pops::Parser::Lexer2.new()# {:mode => :epp})
9
+ self.lexer = Puppet::Pops::Parser::Lexer2.new()
10
10
  end
11
11
 
12
12
  # Parses a file expected to contain epp text/DSL logic.
@@ -647,7 +647,7 @@ class Lexer2
647
647
  #
648
648
  def lex_file(file)
649
649
  initvars
650
- contents = Puppet::FileSystem.exist?(file) ? Puppet::FileSystem.read(file, :encoding => 'utf-8') : ''
650
+ contents = Puppet::FileSystem.exist?(file) ? Puppet::FileSystem.read(file, :mode => 'rb', :encoding => 'utf-8') : ''
651
651
  assert_not_bom(contents)
652
652
  @scanner = StringScanner.new(contents.freeze)
653
653
  @locator = Locator.locator(contents, file)
@@ -17,6 +17,9 @@ module Puppet::Pops
17
17
  # will be represented with the text `unknown` and `0´ respectively.
18
18
  #
19
19
  module PuppetStack
20
+ # Pattern matching an entry in the ruby stack that is a puppet entry
21
+ PP_ENTRY_PATTERN = /^(.*\.pp)?:([0-9]+):in (`stack'|`block in call_function')/
22
+
20
23
  # Sends a message to an obj such that it appears to come from
21
24
  # file, line when calling stacktrace.
22
25
  #
@@ -33,11 +36,22 @@ module PuppetStack
33
36
 
34
37
  def self.stacktrace
35
38
  caller().reduce([]) do |memo, loc|
36
- if loc =~ /^(.*\.pp)?:([0-9]+):in (`stack'|`block in call_function')/
39
+ if loc =~ PP_ENTRY_PATTERN
37
40
  memo << [$1.nil? ? 'unknown' : $1, $2.to_i]
38
41
  end
39
42
  memo
40
43
  end
41
44
  end
45
+
46
+ # Returns an Array with the top of the puppet stack, or an empty Array if there was no such entry.
47
+ #
48
+ def self.top_of_stack
49
+ caller.each do |loc|
50
+ if loc =~ PP_ENTRY_PATTERN
51
+ return [$1.nil? ? 'unknown' : $1, $2.to_i]
52
+ end
53
+ end
54
+ []
55
+ end
42
56
  end
43
57
  end
@@ -290,12 +290,12 @@ module Serialization
290
290
  def serialization_issue(issue, options = EMPTY_HASH)
291
291
  semantic = @semantic
292
292
  if semantic.nil?
293
- stacktrace = Puppet::Pops::PuppetStack.stacktrace()
294
- if stacktrace.size > 0
295
- file, line = stacktrace[0]
296
- semantic = Puppet::Pops::SemanticError.new(issue, nil, {:file => file, :line => line})
297
- else
293
+ tos = Puppet::Pops::PuppetStack.top_of_stack
294
+ if tos.empty?
298
295
  semantic = Puppet::Pops::SemanticError.new(issue, nil, EMPTY_HASH)
296
+ else
297
+ file, line = stacktrace
298
+ semantic = Puppet::Pops::SemanticError.new(issue, nil, {:file => file, :line => line})
299
299
  end
300
300
  end
301
301
  optionally_fail(issue, semantic, options)
@@ -122,6 +122,13 @@ Puppet::Type.type(:augeas).provide(:augeas) do
122
122
  if delim == "'" || delim == "\""
123
123
  sc.getch
124
124
  argline << sc.scan(/([^\\#{delim}]|(\\.))*/)
125
+ # Unescape the delimiter so it's actually possible to have a
126
+ # literal delim inside the string. We only unescape the
127
+ # delimeter and not every backslash-escaped character so that
128
+ # things like escaped spaces '\ ' get passed through because
129
+ # Augeas needs to see them. If we unescaped them, too, users
130
+ # would be forced to double-escape them
131
+ argline.last.gsub!(/\\(#{delim})/, '\1')
125
132
  sc.getch
126
133
  else
127
134
  argline << sc.scan(/[^\s]+/)
@@ -25,7 +25,7 @@ Puppet::Type.type(:service).provide :systemd, :parent => :base do
25
25
  defaultfor :osfamily => :coreos
26
26
  defaultfor :operatingsystem => :amazon, :operatingsystemmajrelease => ["2"]
27
27
  defaultfor :operatingsystem => :debian, :operatingsystemmajrelease => ["8", "stretch/sid", "9", "buster/sid"]
28
- defaultfor :operatingsystem => :ubuntu, :operatingsystemmajrelease => ["15.04","15.10","16.04","16.10","17.04","17.10"]
28
+ defaultfor :operatingsystem => :ubuntu, :operatingsystemmajrelease => ["15.04","15.10","16.04","16.10","17.04","17.10","18.04"]
29
29
  defaultfor :operatingsystem => :cumuluslinux, :operatingsystemmajrelease => ["3"]
30
30
 
31
31
  def self.instances
@@ -276,7 +276,7 @@ Puppet::Type.type(:user).provide :aix, :parent => Puppet::Provider::AixObject do
276
276
  # Must receive "user:enc_password" as input
277
277
  # command, arguments = {:failonfail => true, :combine => true}
278
278
  # Fix for bugs #11200 and #10915
279
- cmd = [self.class.command(:chpasswd), get_ia_module_args, '-e', '-c', user].flatten
279
+ cmd = [self.class.command(:chpasswd), get_ia_module_args, '-e', '-c'].flatten
280
280
  begin
281
281
  output = execute(cmd, {:failonfail => false, :combine => true, :stdinfile => tmpfile.path })
282
282
  # chpasswd can return 1, even on success (at least on AIX 6.1); empty output indicates success
@@ -179,6 +179,7 @@ Puppet::Type.type(:yumrepo).provide(:inifile) do
179
179
 
180
180
  target_mode = 0644
181
181
  inifile.each_file do |file|
182
+ next unless Puppet::FileSystem.exist?(file)
182
183
  current_mode = Puppet::FileSystem.stat(file).mode & 0777
183
184
  unless current_mode == target_mode
184
185
  resource.info _("changing mode of %{file} from %{current_mode} to %{target_mode}") %
@@ -1176,11 +1176,15 @@ Generated on #{Time.now}.
1176
1176
  if configured_environment == "production" && envdir && Puppet::FileSystem.exist?(envdir)
1177
1177
  configured_environment_path = File.join(envdir, configured_environment)
1178
1178
  if !Puppet::FileSystem.symlink?(configured_environment_path)
1179
- catalog.add_resource(
1180
- Puppet::Resource.new(:file,
1181
- configured_environment_path,
1182
- :parameters => { :ensure => 'directory' })
1183
- )
1179
+ parameters = { :ensure => 'directory' }
1180
+ unless Puppet::FileSystem.exist?(configured_environment_path)
1181
+ parameters.merge!(:mode => '0750')
1182
+ if Puppet.features.root?
1183
+ parameters.merge!(:owner => Puppet[:user]) if service_user_available?
1184
+ parameters.merge!(:group => Puppet[:group]) if service_group_available?
1185
+ end
1186
+ end
1187
+ catalog.add_resource(Puppet::Resource.new(:file, configured_environment_path, :parameters => parameters))
1184
1188
  end
1185
1189
  end
1186
1190
  end
@@ -467,8 +467,6 @@ class Puppet::Transaction::Report
467
467
  metrics[name.to_s.downcase] = value
468
468
  end
469
469
 
470
- metrics[TOTAL] = metrics.values.inject(0) { |a,b| a+b }
471
-
472
470
  metrics
473
471
  end
474
472
  end
@@ -310,6 +310,10 @@ Puppet::Type.newtype(:tidy) do
310
310
 
311
311
  # Should we remove the specified file?
312
312
  def tidy?(path)
313
+ # ignore files that are already managed, since we can't tidy
314
+ # those files anyway
315
+ return false if catalog.resource(:file, path)
316
+
313
317
  return false unless stat = self.stat(path)
314
318
 
315
319
  return false if stat.ftype == "directory" and ! rmdirs?
@@ -212,13 +212,44 @@ module Puppet
212
212
  * OS X 10.8 and higher use salted SHA512 PBKDF2 hashes. When managing passwords
213
213
  on these systems, the `salt` and `iterations` attributes need to be specified as
214
214
  well as the password.
215
- * Windows passwords can only be managed in cleartext, as there is no Windows API
216
- for setting the password hash.
215
+ * Windows passwords can be managed only in cleartext, because there is no Windows
216
+ API for setting the password hash.
217
217
 
218
218
  [stdlib]: https://github.com/puppetlabs/puppetlabs-stdlib/
219
219
 
220
220
  Enclose any value that includes a dollar sign ($) in single quotes (') to avoid
221
- accidental variable interpolation.}
221
+ accidental variable interpolation.
222
+
223
+ To redact passwords from reports to PuppetDB, use the `Sensitive` data type. For
224
+ example, this resource protects the password:
225
+
226
+ ```puppet
227
+ user { 'foo':
228
+ ensure => present,
229
+ password => Sensitive("my secret password")
230
+ }
231
+ ```
232
+
233
+ This results in the password being redacted from the report, as in the
234
+ `previous_value`, `desired_value`, and `message` fields below.
235
+
236
+ ```yaml
237
+ events:
238
+ - !ruby/object:Puppet::Transaction::Event
239
+ audited: false
240
+ property: password
241
+ previous_value: "[redacted]"
242
+ desired_value: "[redacted]"
243
+ historical_value:
244
+ message: changed [redacted] to [redacted]
245
+ name: :password_changed
246
+ status: success
247
+ time: 2017-05-17 16:06:02.934398293 -07:00
248
+ redacted: true
249
+ corrective_change: false
250
+ corrective_change: false
251
+ ```
252
+ }
222
253
 
223
254
  validate do |value|
224
255
  raise ArgumentError, _("Passwords cannot include ':'") if value.is_a?(String) and value.include?(":")
@@ -261,17 +261,12 @@ Puppet::Type.newtype(:yumrepo) do
261
261
  end
262
262
 
263
263
  newproperty(:priority) do
264
- desc "Priority of this repository from 1-99. Requires that
265
- the `priorities` plugin is installed and enabled.
264
+ desc "Priority of this repository. Can be any integer value
265
+ (including negative). Requires that the `priorities` plugin
266
+ is installed and enabled.
266
267
  #{ABSENT_DOC}"
267
268
 
268
- newvalues(/.*/, :absent)
269
- validate do |value|
270
- next if value.to_s == 'absent'
271
- unless (1..99).include?(value.to_i)
272
- fail(_("Must be within range 1-99"))
273
- end
274
- end
269
+ newvalues(/^-?\d+$/, :absent)
275
270
  end
276
271
 
277
272
  newproperty(:throttle) do
@@ -340,8 +340,6 @@ module Puppet::Util::Checksums
340
340
  end
341
341
  end
342
342
 
343
- private_class_method
344
-
345
343
  # Perform an incremental checksum on a file.
346
344
  def checksum_file(digest, filename, lite = false)
347
345
  buffer = lite ? 512 : 4096
@@ -41,7 +41,7 @@ module Puppet::Util::InstanceLoader
41
41
 
42
42
  # Use this method so they all get loaded
43
43
  loaded_instances(type).sort { |a,b| a.to_s <=> b.to_s }.each do |name|
44
- mod = self.loaded_instance(name)
44
+ mod = self.loaded_instance(type, name)
45
45
  docs << "#{name}\n#{"-" * name.to_s.length}\n"
46
46
 
47
47
  docs << Puppet::Util::Docs.scrub(mod.doc) << "\n\n"
@@ -32,6 +32,15 @@ module Puppet::Util
32
32
  def self.load(string, options = {})
33
33
  if defined? MultiJson
34
34
  begin
35
+ # This ensures that JrJackson will parse very large or very small
36
+ # numbers as floats rather than BigDecimals, which are serialized as
37
+ # strings by the built-in JSON gem and therefore can cause schema errors,
38
+ # for example, when we are rendering reports to JSON using `to_pson` in
39
+ # PuppetDB.
40
+ if MultiJson.adapter.name == "MultiJson::Adapters::JrJackson"
41
+ options[:use_bigdecimal] = false
42
+ end
43
+
35
44
  MultiJson.load(string, options)
36
45
  rescue MultiJson::ParseError => e
37
46
  raise Puppet::Util::Json::ParseError.build(e, string)
@@ -1,7 +1,7 @@
1
1
  require 'puppet/util/tag_set'
2
2
 
3
3
  module Puppet::Util::Tagging
4
- ValidTagRegex = /\A[[:alnum:]_][[:alnum:]_:.-]*\Z/
4
+ ValidTagRegex = /\A[[:alnum:]_][[:alnum:]_:.-]*\Z/u
5
5
 
6
6
  # Add a tag to the current tag set.
7
7
  # When a tag set is used for a scope, these tags will be added to all of
@@ -17,7 +17,7 @@ module Puppet::Util::Tagging
17
17
  # up since we get a lot of duplicates and rarely fail on bad tags
18
18
  if @tags.add?(name)
19
19
  # not seen before, so now we test if it is valid
20
- if name =~ ValidTagRegex
20
+ if valid_tag?(name)
21
21
  if split_qualified_tags?
22
22
  # avoid adding twice by first testing if the string contains '::'
23
23
  @tags.merge(name.split('::')) if name.include?('::')
@@ -40,7 +40,7 @@ module Puppet::Util::Tagging
40
40
  # since that results in testing the same string twice
41
41
  #
42
42
  def tag_if_valid(name)
43
- if name.is_a?(String) && name =~ ValidTagRegex
43
+ if name.is_a?(String) && valid_tag?(name)
44
44
  name = name.downcase
45
45
  @tags ||= new_tags
46
46
  if @tags.add?(name) && name.include?('::')
@@ -106,6 +106,19 @@ module Puppet::Util::Tagging
106
106
  tag(*tags)
107
107
  end
108
108
 
109
+ def valid_tag?(maybe_tag)
110
+ begin
111
+ tag_enc = maybe_tag.encoding
112
+ if tag_enc == Encoding::UTF_8 || tag_enc == Encoding::ASCII
113
+ maybe_tag =~ ValidTagRegex
114
+ else
115
+ maybe_tag.encode(Encoding::UTF_8) =~ ValidTagRegex
116
+ end
117
+ rescue Encoding::UndefinedConversionError, Encoding::InvalidByteSequenceError
118
+ false
119
+ end
120
+ end
121
+
109
122
  private
110
123
 
111
124
  def split_qualified_tags?
@@ -6,7 +6,7 @@
6
6
  # Raketasks and such to set the version based on the output of `git describe`
7
7
 
8
8
  module Puppet
9
- PUPPETVERSION = '5.5.0'
9
+ PUPPETVERSION = '5.5.1'
10
10
 
11
11
  ##
12
12
  # version is a public API method intended to always provide a fast and
@@ -6,12 +6,12 @@
6
6
  #, fuzzy
7
7
  msgid ""
8
8
  msgstr ""
9
- "Project-Id-Version: Puppet automation framework 5.3.5-1201-g9441bc8\n"
9
+ "Project-Id-Version: Puppet automation framework 5.5.0-58-g68ecc59\n"
10
10
  "\n"
11
11
  "Report-Msgid-Bugs-To: https://tickets.puppetlabs.com\n"
12
- "POT-Creation-Date: 2018-03-02 10:48+0000\n"
13
- "PO-Revision-Date: 2018-03-02 10:48+0000\n"
14
- "Last-Translator: Kojima Ai <ai-kojima@to-in.co.jp>, 2017\n"
12
+ "POT-Creation-Date: 2018-04-04 16:16+0000\n"
13
+ "PO-Revision-Date: 2018-04-04 16:16+0000\n"
14
+ "Last-Translator: James Shen <James.Shen@puppet.com>, 2018\n"
15
15
  "Language-Team: Japanese (Japan) (https://www.transifex.com/puppet/teams/29089/ja_JP/)\n"
16
16
  "MIME-Version: 1.0\n"
17
17
  "Content-Type: text/plain; charset=UTF-8\n"
@@ -31,6 +31,15 @@ msgid ""
31
31
  msgstr ""
32
32
  "詳細については、https://docs.puppet.com/puppet/%{minor_version}/reference/deprecated_language.htmlを参照してください。"
33
33
 
34
+ #: ../lib/hiera/scope.rb:43 ../lib/puppet/parser/scope.rb:537
35
+ msgid "Variable: %{name}"
36
+ msgstr "変数: %{name}"
37
+
38
+ #: ../lib/hiera/scope.rb:44 ../lib/hiera/scope.rb:46
39
+ #: ../lib/puppet/parser/scope.rb:538 ../lib/puppet/parser/scope.rb:540
40
+ msgid "Undefined variable '%{name}'; %{reason}"
41
+ msgstr "定義されていない変数'%{name}'; %{reason}"
42
+
34
43
  #: ../lib/hiera_puppet.rb:14
35
44
  msgid ""
36
45
  "Could not find data item %{key} in any Hiera data file and no default "
@@ -276,40 +285,48 @@ msgstr "適用するホストを指定する必要があります; 有効な値
276
285
  msgid "Display help about resource types"
277
286
  msgstr "リソース型に関するヘルプを表示"
278
287
 
279
- #: ../lib/puppet/application/device.rb:70
288
+ #: ../lib/puppet/application/device.rb:75
280
289
  msgid "Manage remote network devices"
281
290
  msgstr "リモートネットワークデバイスを管理"
282
291
 
283
- #: ../lib/puppet/application/device.rb:203
292
+ #: ../lib/puppet/application/device.rb:211
284
293
  msgid "resource command requires target"
285
294
  msgstr "リソースコマンドにはターゲットが必要です。"
286
295
 
296
+ #: ../lib/puppet/application/device.rb:216
297
+ msgid "missing argument: --target is required when using --apply"
298
+ msgstr "引数がありません: --applyの使用時には--targetが必要です"
299
+
287
300
  #: ../lib/puppet/application/device.rb:220
301
+ msgid "%{file} does not exist, cannot apply"
302
+ msgstr "%{file}が存在せず、適用できません"
303
+
304
+ #: ../lib/puppet/application/device.rb:238
288
305
  msgid "Target device / certificate '%{target}' not found in %{config}"
289
306
  msgstr "ターゲットのデバイス/証明書'%{target}'が%{config}で見つかりません。"
290
307
 
291
- #: ../lib/puppet/application/device.rb:222
308
+ #: ../lib/puppet/application/device.rb:240
292
309
  msgid "No device found in %{config}"
293
310
  msgstr "デバイスが%{config}で見つかりません。"
294
311
 
295
- #: ../lib/puppet/application/device.rb:244
312
+ #: ../lib/puppet/application/device.rb:262
296
313
  msgid ""
297
314
  "retrieving resource: %{resource} from %{target} at "
298
315
  "%{scheme}%{url_host}%{port}%{url_path}"
299
316
  msgstr "取得リソース: %{scheme}%{url_host}%{port}%{url_path}で%{target}から%{resource}"
300
317
 
301
- #: ../lib/puppet/application/device.rb:260
318
+ #: ../lib/puppet/application/device.rb:294
302
319
  msgid ""
303
320
  "starting applying configuration to %{target} at "
304
321
  "%{scheme}%{url_host}%{port}%{url_path}"
305
322
  msgstr "%{scheme}%{url_host}%{port}%{url_path}で%{target}への設定の適用を開始しています。"
306
323
 
307
- #: ../lib/puppet/application/device.rb:297
324
+ #: ../lib/puppet/application/device.rb:331
308
325
  #: ../lib/puppet/application/resource.rb:196
309
326
  msgid "You must specify the type to display"
310
327
  msgstr "表示するタイプを指定する必要があります。"
311
328
 
312
- #: ../lib/puppet/application/device.rb:298
329
+ #: ../lib/puppet/application/device.rb:332
313
330
  #: ../lib/puppet/application/resource.rb:197
314
331
  msgid "Could not find type %{type}"
315
332
  msgstr "ファイルタイプ%{type}が見つかりませんでした。"
@@ -445,7 +462,7 @@ msgstr "参照するキーが指定されていません。"
445
462
  msgid "Unknown rendering format '%{format}'"
446
463
  msgstr "未知のレンダリングフォーマット'%{format}'"
447
464
 
448
- #: ../lib/puppet/application/lookup.rb:350 ../lib/puppet/face/epp.rb:518
465
+ #: ../lib/puppet/application/lookup.rb:360 ../lib/puppet/face/epp.rb:518
449
466
  msgid "Incorrect formatted data in %{fact_file} given via the --facts flag"
450
467
  msgstr "--factsフラグにより%{fact_file}で不適切なフォーマットのデータが指定されています。"
451
468
 
@@ -481,7 +498,7 @@ msgid ""
481
498
  "release. Please use Puppet Server instead. See http://links.puppet.com"
482
499
  "/deprecate-rack-webrick-servers for more information."
483
500
  msgstr ""
484
- "Rack Puppet masterサーバは廃止予定であり、今後のリリースで廃止されます。代わりにPuppet "
501
+ "Rack Puppet master serverは廃止予定であり、今後のリリースで廃止されます。代わりにPuppet "
485
502
  "Serverを使用してください。詳細については、http://links.puppet.com/deprecate-rack-webrick-"
486
503
  "serversを参照してください。"
487
504
 
@@ -491,7 +508,7 @@ msgid ""
491
508
  "future release. Please use Puppet Server instead. See "
492
509
  "http://links.puppet.com/deprecate-rack-webrick-servers for more information."
493
510
  msgstr ""
494
- "WEBrick Puppet masterサーバは廃止予定であり、今後のリリースで廃止されます。代わりにPuppet "
511
+ "WEBrick Puppet master serverは廃止予定であり、今後のリリースで廃止されます。代わりにPuppet "
495
512
  "Serverを使用してください。詳細については、http://links.puppet.com/deprecate-rack-webrick-"
496
513
  "serversを参照してください。"
497
514
 
@@ -561,23 +578,23 @@ msgid ""
561
578
  "match '%{local_env}'"
562
579
  msgstr "環境'%{catalog_env}'が'%{local_env}'と一致しないため、キャッシュしたカタログを使用できません。"
563
580
 
564
- #: ../lib/puppet/configurer.rb:96 ../lib/puppet/configurer.rb:161
581
+ #: ../lib/puppet/configurer.rb:96 ../lib/puppet/configurer.rb:173
565
582
  msgid "Using cached catalog from environment '%{catalog_env}'"
566
583
  msgstr "環境'%{catalog_env}'からキャッシュしたカタログを使用しています。"
567
584
 
568
- #: ../lib/puppet/configurer.rb:154
585
+ #: ../lib/puppet/configurer.rb:166
569
586
  msgid "Could not retrieve catalog; skipping run"
570
587
  msgstr "カタログを取得できませんでした; 実行をスキップしています。"
571
588
 
572
- #: ../lib/puppet/configurer.rb:173
589
+ #: ../lib/puppet/configurer.rb:185
573
590
  msgid "Applied catalog in %{seconds} seconds"
574
591
  msgstr "%{seconds}秒でカタログを適用しました。"
575
592
 
576
- #: ../lib/puppet/configurer.rb:212
593
+ #: ../lib/puppet/configurer.rb:227
577
594
  msgid "Could not select a functional puppet master"
578
595
  msgstr "機能するpuppet masterを選択できませんでした。"
579
596
 
580
- #: ../lib/puppet/configurer.rb:246
597
+ #: ../lib/puppet/configurer.rb:261
581
598
  msgid ""
582
599
  "Local environment: '%{local_env}' doesn't match the environment of the "
583
600
  "cached catalog '%{catalog_env}', switching agent to '%{catalog_env}'."
@@ -585,23 +602,23 @@ msgstr ""
585
602
  "ローカル環境: "
586
603
  "'%{local_env}'がキャッシュしたカタログ'%{catalog_env}'の環境と一致せず、agentを'%{catalog_env}'に切り替えています。"
587
604
 
588
- #: ../lib/puppet/configurer.rb:286
605
+ #: ../lib/puppet/configurer.rb:306
589
606
  msgid ""
590
607
  "Local environment: '%{local_env}' doesn't match server specified node "
591
608
  "environment '%{node_env}', switching agent to '%{node_env}'."
592
609
  msgstr ""
593
610
  "ローカル環境: "
594
- "'%{local_env}'がサーバ指定のノード環境'%{node_env}'と一致せず、agentを'%{node_env}'に切り替えています。"
611
+ "'%{local_env}'がserver指定のノード環境'%{node_env}'と一致せず、agentを'%{node_env}'に切り替えています。"
595
612
 
596
- #: ../lib/puppet/configurer.rb:291
613
+ #: ../lib/puppet/configurer.rb:311
597
614
  msgid "Using configured environment '%{env}'"
598
615
  msgstr "設定された環境'%{env}'を使用しています。"
599
616
 
600
- #: ../lib/puppet/configurer.rb:295
617
+ #: ../lib/puppet/configurer.rb:315
601
618
  msgid "Unable to fetch my node definition, but the agent run will continue:"
602
619
  msgstr "ノード定義を取得できませんが、agent実行を続行します:"
603
620
 
604
- #: ../lib/puppet/configurer.rb:319
621
+ #: ../lib/puppet/configurer.rb:339
605
622
  msgid ""
606
623
  "Not using catalog because its environment '%{catalog_env}' does not match "
607
624
  "agent specified environment '%{local_env}' and strict_environment_mode is "
@@ -609,42 +626,42 @@ msgid ""
609
626
  msgstr ""
610
627
  "環境'%{catalog_env}'がagent指定の環境'%{local_env}'と一致しないため、カタログを使用せずにstrict_environment_modeを設定しています。"
611
628
 
612
- #: ../lib/puppet/configurer.rb:330
629
+ #: ../lib/puppet/configurer.rb:350
613
630
  msgid ""
614
631
  "Catalog environment didn't stabilize after %{tries} fetches, aborting run"
615
632
  msgstr "%{tries}取得後にカタログ環境が安定しなかったため、実行を中止しています。"
616
633
 
617
- #: ../lib/puppet/configurer.rb:332
634
+ #: ../lib/puppet/configurer.rb:352
618
635
  msgid ""
619
636
  "Local environment: '%{local_env}' doesn't match server specified environment"
620
637
  " '%{catalog_env}', restarting agent run with environment '%{catalog_env}'"
621
638
  msgstr ""
622
639
  "ローカル環境: "
623
- "'%{local_env}'がサーバ指定の環境'%{catalog_env}'と一致しないため、環境'%{catalog_env}'でagent実行を再開しています。"
640
+ "'%{local_env}'がserver指定の環境'%{catalog_env}'と一致しないため、環境'%{catalog_env}'でagent実行を再開しています。"
624
641
 
625
- #: ../lib/puppet/configurer.rb:351
642
+ #: ../lib/puppet/configurer.rb:371
626
643
  msgid "Failed to apply catalog: %{detail}"
627
644
  msgstr "カタログ適用に失敗しました: %{detail}"
628
645
 
629
- #: ../lib/puppet/configurer.rb:398 ../lib/puppet/face/report.rb:47
646
+ #: ../lib/puppet/configurer.rb:418 ../lib/puppet/face/report.rb:47
630
647
  msgid "Could not send report: %{detail}"
631
648
  msgstr "レポートを送信できませんでした: %{detail}"
632
649
 
633
- #: ../lib/puppet/configurer.rb:407
650
+ #: ../lib/puppet/configurer.rb:427
634
651
  msgid "Could not save last run local report: %{detail}"
635
652
  msgstr "最後の実行のローカルレポートを保存できませんでした: %{detail}"
636
653
 
637
- #: ../lib/puppet/configurer.rb:419
654
+ #: ../lib/puppet/configurer.rb:439
638
655
  msgid "Could not run command from %{setting}: %{detail}"
639
656
  msgstr "%{setting}からコマンドを実行できませんでした: %{detail}"
640
657
 
641
- #: ../lib/puppet/configurer.rb:437
658
+ #: ../lib/puppet/configurer.rb:457
642
659
  msgid "Could not retrieve catalog from cache: %{detail}"
643
660
  msgstr "キャッシュからカタログを取得できませんでした: %{detail}"
644
661
 
645
- #: ../lib/puppet/configurer.rb:457
662
+ #: ../lib/puppet/configurer.rb:477
646
663
  msgid "Could not retrieve catalog from remote server: %{detail}"
647
- msgstr "リモートサーバからカタログを取得できませんでした: %{detail}"
664
+ msgstr "リモートserverからカタログを取得できませんでした: %{detail}"
648
665
 
649
666
  #: ../lib/puppet/configurer/downloader.rb:9
650
667
  msgid "Retrieving %{name}"
@@ -663,8 +680,8 @@ msgid "Attempted to pop, but already at root of the context stack."
663
680
  msgstr "popを試行していますが、すでにコンテキストスタックのルートです。"
664
681
 
665
682
  #: ../lib/puppet/context.rb:55
666
- msgid "no '%{name}' in %{table} at top of %{stack}"
667
- msgstr "%{stack}の最上位の%{table}に'%{name}'がありません。"
683
+ msgid "Unable to lookup '%{name}'"
684
+ msgstr "'%{name}'を検索できません"
668
685
 
669
686
  #: ../lib/puppet/context.rb:80
670
687
  msgid "no '%{name}' in ignores %{ignores} at top of %{stack}"
@@ -688,7 +705,7 @@ msgstr "ARGV引数が設定されていない限り、再実行できません
688
705
 
689
706
  #: ../lib/puppet/daemon.rb:143
690
707
  msgid "Daemons must have an agent, server, or both"
691
- msgstr "デーモンには、引数、サーバ、またはその両方が必要です。"
708
+ msgstr "デーモンには、引数、server、またはその両方が必要です。"
692
709
 
693
710
  #: ../lib/puppet/datatypes.rb:133
694
711
  msgid "Data Type Load Error for type '%{type_name}': %{message}"
@@ -744,22 +761,22 @@ msgstr "パラメータ%{name}に関して無効な値'%{value}'。許可され
744
761
 
745
762
  #: ../lib/puppet/defaults.rb:1493 ../lib/puppet/defaults.rb:1508
746
763
  msgid "Attempted to set both server and server_list."
747
- msgstr "サーバとserver_listの両方を設定しようとしました。"
764
+ msgstr "serverとserver_listの両方を設定しようとしました。"
748
765
 
749
766
  #: ../lib/puppet/defaults.rb:1494 ../lib/puppet/defaults.rb:1509
750
767
  msgid "Server setting will not be used."
751
- msgstr "サーバの設定は使用されません。"
768
+ msgstr "serverの設定は使用されません。"
752
769
 
753
770
  #. TRANSLATORS 'pluginsync' is a setting and should not be translated
754
771
  #: ../lib/puppet/defaults.rb:1819
755
772
  msgid "Setting 'pluginsync' is deprecated."
756
773
  msgstr "'pluginsync'の設定は廃止予定です。"
757
774
 
758
- #: ../lib/puppet/error.rb:67
775
+ #: ../lib/puppet/error.rb:69
759
776
  msgid "Could not parse for environment %{environment}: %{message}"
760
777
  msgstr "environment%{environment}を解析できませんでした: %{message}"
761
778
 
762
- #: ../lib/puppet/error.rb:68 ../lib/puppet/parser/compiler.rb:41
779
+ #: ../lib/puppet/error.rb:70 ../lib/puppet/parser/compiler.rb:41
763
780
  msgid "%{message} on node %{node}"
764
781
  msgstr "ノード%{node}での%{message}"
765
782
 
@@ -772,7 +789,7 @@ msgid "exceed depth limit"
772
789
  msgstr "深さの上限を超えています。"
773
790
 
774
791
  #: ../lib/puppet/face/ca.rb:5 ../lib/puppet/face/certificate.rb:6
775
- #: ../lib/puppet/face/config.rb:6 ../lib/puppet/face/epp.rb:8
792
+ #: ../lib/puppet/face/config.rb:7 ../lib/puppet/face/epp.rb:8
776
793
  #: ../lib/puppet/face/facts.rb:6 ../lib/puppet/face/generate.rb:7
777
794
  #: ../lib/puppet/face/help.rb:9 ../lib/puppet/face/key.rb:5
778
795
  #: ../lib/puppet/face/man.rb:8 ../lib/puppet/face/module.rb:9
@@ -981,39 +998,68 @@ msgstr "証明書リクエストを管理"
981
998
  msgid "Manage the list of revoked certificates."
982
999
  msgstr "無効化された証明書のリストを管理"
983
1000
 
984
- #: ../lib/puppet/face/config.rb:8
1001
+ #: ../lib/puppet/face/config.rb:9
985
1002
  msgid "Interact with Puppet's settings."
986
1003
  msgstr "Puppetの設定と情報交換。"
987
1004
 
988
- #: ../lib/puppet/face/config.rb:14
1005
+ #: ../lib/puppet/face/config.rb:17
989
1006
  msgid "SECTION_NAME"
990
1007
  msgstr "SECTION_NAME(セクション名)"
991
1008
 
992
- #: ../lib/puppet/face/config.rb:16
1009
+ #: ../lib/puppet/face/config.rb:19
993
1010
  msgid "The section of the configuration file to interact with."
994
1011
  msgstr "情報をやりとりする構成ファイルのセクション"
995
1012
 
996
- #: ../lib/puppet/face/config.rb:34
1013
+ #: ../lib/puppet/face/config.rb:37
997
1014
  msgid "Examine Puppet's current settings."
998
1015
  msgstr "Puppetの現在の設定を検証。"
999
1016
 
1000
- #: ../lib/puppet/face/config.rb:35
1017
+ #: ../lib/puppet/face/config.rb:38
1001
1018
  msgid "(all | <setting> [<setting> ...]"
1002
1019
  msgstr "(all | <setting> [<setting> ...]"
1003
1020
 
1004
- #: ../lib/puppet/face/config.rb:73
1021
+ #: ../lib/puppet/face/config.rb:83
1005
1022
  msgid "New environment loaders generated from the requested section."
1006
1023
  msgstr "リクエストされたセクションから生成された新規環境ローダ"
1007
1024
 
1008
- #: ../lib/puppet/face/config.rb:121
1025
+ #: ../lib/puppet/face/config.rb:135
1026
+ msgid "No section specified; defaulting to '%{section_name}'."
1027
+ msgstr "セクションが指定されていません。デフォルト値は'%{section_name}'。"
1028
+
1029
+ #. TRANSLATORS '--section' is a command line option and should not be
1030
+ #. translated
1031
+ #: ../lib/puppet/face/config.rb:138
1032
+ msgid "Set the config section by using the `--section` flag."
1033
+ msgstr "`--section`フラグを使用し、configセクションを設定します。"
1034
+
1035
+ #. TRANSLATORS `puppet config --section user print foo` is a command line
1036
+ #. example and should not be translated
1037
+ #: ../lib/puppet/face/config.rb:140
1038
+ msgid "For example, `puppet config --section user print foo`."
1039
+ msgstr "例えば、`puppet config --section user print foo`などです。"
1040
+
1041
+ #: ../lib/puppet/face/config.rb:141
1042
+ msgid ""
1043
+ "For more information, see "
1044
+ "https://puppet.com/docs/puppet/latest/configuration.html"
1045
+ msgstr ""
1046
+ "詳細については、https://puppet.com/docs/puppet/latest/configuration.htmlを参照してください。"
1047
+
1048
+ #: ../lib/puppet/face/config.rb:148
1049
+ msgid ""
1050
+ "Resolving settings from section '%{section_name}' in environment "
1051
+ "'%{environment_name}'"
1052
+ msgstr "環境'%{environment_name}'でセクション'%{section_name}'から設定を解決しています"
1053
+
1054
+ #: ../lib/puppet/face/config.rb:153
1009
1055
  msgid "Set Puppet's settings."
1010
1056
  msgstr "Puppetを設定。"
1011
1057
 
1012
- #: ../lib/puppet/face/config.rb:122
1058
+ #: ../lib/puppet/face/config.rb:154
1013
1059
  msgid "[setting_name] [setting_value]"
1014
1060
  msgstr "[setting_name] [setting_value]"
1015
1061
 
1016
- #: ../lib/puppet/face/config.rb:143
1062
+ #: ../lib/puppet/face/config.rb:182
1017
1063
  msgid ""
1018
1064
  "The environment should be set in either the `[user]`, `[agent]`, or `[master]`\n"
1019
1065
  "section. Variables set in the `[agent]` section are used when running\n"
@@ -1031,19 +1077,20 @@ msgstr ""
1031
1077
  " config --section user set environment "
1032
1078
  "foo`などです。詳細については、https://puppet.com/docs/puppet/latest/configuration.html#environmentを参照してください。\n"
1033
1079
 
1034
- #: ../lib/puppet/face/config.rb:167
1080
+ #: ../lib/puppet/face/config.rb:208
1035
1081
  msgid "Delete a Puppet setting."
1036
1082
  msgstr "Puppet設定を削除。"
1037
1083
 
1038
- #: ../lib/puppet/face/config.rb:168
1084
+ #: ../lib/puppet/face/config.rb:209
1039
1085
  msgid "(<setting>"
1040
1086
  msgstr "(<setting>"
1041
1087
 
1042
- #: ../lib/puppet/face/config.rb:195
1088
+ #. TRANSLATORS 'main' is a specific section name and should not be translated
1089
+ #: ../lib/puppet/face/config.rb:244
1043
1090
  msgid "Deleted setting from '%{section_name}': '%{setting_string}'"
1044
1091
  msgstr "'%{section_name}'から設定が削除されました: '%{setting_string}'"
1045
1092
 
1046
- #: ../lib/puppet/face/config.rb:198
1093
+ #: ../lib/puppet/face/config.rb:247
1047
1094
  msgid ""
1048
1095
  "No setting found in configuration file for section '%{section_name}' setting"
1049
1096
  " name '%{name}'"
@@ -1051,7 +1098,7 @@ msgstr "セクション'%{section_name}'設定名'%{name}'の設定ファイル
1051
1098
 
1052
1099
  #. TRANSLATORS the 'puppet.conf' is a specific file and should not be
1053
1100
  #. translated
1054
- #: ../lib/puppet/face/config.rb:205
1101
+ #: ../lib/puppet/face/config.rb:254
1055
1102
  msgid "The puppet.conf file does not exist %{puppet_conf}"
1056
1103
  msgstr "puppet.confファイルが存在しません%{puppet_conf}"
1057
1104
 
@@ -1234,6 +1281,14 @@ msgstr "ノードのfactsを取得。"
1234
1281
  msgid "[<node_certname>]"
1235
1282
  msgstr "[<node_certname>]"
1236
1283
 
1284
+ #: ../lib/puppet/face/facts.rb:40
1285
+ msgid "Upload local facts to the puppet master."
1286
+ msgstr "Puppet masterにローカルfactsをアップロード。"
1287
+
1288
+ #: ../lib/puppet/face/facts.rb:80
1289
+ msgid "Uploading facts for '%{node}' to: '%{server}'"
1290
+ msgstr "'%{node}'のfactsを'%{server}'にアップロードしています"
1291
+
1237
1292
  #: ../lib/puppet/face/generate.rb:9
1238
1293
  msgid "Generates Puppet code from Ruby definitions."
1239
1294
  msgstr "Ruby定義からPuppetコードを生成。"
@@ -1916,11 +1971,11 @@ msgstr "引数として渡される同じリソースオブジェクト"
1916
1971
 
1917
1972
  #: ../lib/puppet/face/status.rb:7
1918
1973
  msgid "View puppet server status."
1919
- msgstr "Puppetサーバのステータスを閲覧。"
1974
+ msgstr "Puppet serverのステータスを閲覧。"
1920
1975
 
1921
1976
  #: ../lib/puppet/face/status.rb:15
1922
1977
  msgid "Check status of puppet master server."
1923
- msgstr "puppet masterサーバのステータスを確認。"
1978
+ msgstr "puppet master serverのステータスを確認。"
1924
1979
 
1925
1980
  #. TRANSLATORS the string 'Puppet::Status' is a Puppet language object and
1926
1981
  #. should not be translated
@@ -2018,19 +2073,19 @@ msgstr "ファイルが見つかりません: 無効な相対パス'%{path}'"
2018
2073
  #: ../lib/puppet/file_serving/configuration.rb:108
2019
2074
  msgid ""
2020
2075
  "Error parsing fileserver configuration: %{detail}; using old configuration"
2021
- msgstr "ファイルサーバ設定の解析でエラーが生じました: %{detail}; 古い設定を使用"
2076
+ msgstr "ファイルserver設定の解析でエラーが生じました: %{detail}; 古い設定を使用"
2022
2077
 
2023
2078
  #: ../lib/puppet/file_serving/configuration/parser.rb:10
2024
2079
  msgid "File server configuration %{config_file} does not exist"
2025
- msgstr "ファイルサーバ設定%{config_file}が存在しません。"
2080
+ msgstr "ファイルserver設定%{config_file}が存在しません。"
2026
2081
 
2027
2082
  #: ../lib/puppet/file_serving/configuration/parser.rb:11
2028
2083
  msgid "Cannot read file server configuration %{config_file}"
2029
- msgstr "ファイルサーバ設定%{config_file}を読み込めません。"
2084
+ msgstr "ファイルserver設定%{config_file}を読み込めません。"
2030
2085
 
2031
2086
  #: ../lib/puppet/file_serving/configuration/parser.rb:31
2032
2087
  msgid "Fileserver configuration file does not use '=' as a separator"
2033
- msgstr "ファイルサーバ設定ファイルでセパレータとして'='が使われていません。"
2088
+ msgstr "ファイルserver設定ファイルでセパレータとして'='が使われていません。"
2034
2089
 
2035
2090
  #: ../lib/puppet/file_serving/configuration/parser.rb:41
2036
2091
  #: ../lib/puppet/network/auth_config_parser.rb:72
@@ -2259,7 +2314,7 @@ msgstr "OpenSSLに含まれるCAバンドルは有効でないか、最新の状
2259
2314
 
2260
2315
  #: ../lib/puppet/forge/errors.rb:54
2261
2316
  msgid "Unable to connect to the server at %{uri}. Detail: %{detail}."
2262
- msgstr "%{uri}のサーバに接続できません。詳細: %{detail}"
2317
+ msgstr "%{uri}のserverに接続できません。詳細: %{detail}"
2263
2318
 
2264
2319
  #: ../lib/puppet/forge/errors.rb:63
2265
2320
  msgid "Could not connect to %{uri}"
@@ -2288,7 +2343,7 @@ msgstr "詳細: %{detail}。"
2288
2343
 
2289
2344
  #: ../lib/puppet/forge/errors.rb:107
2290
2345
  msgid " The server being queried was %{uri}"
2291
- msgstr " クエリ対象のサーバは%{uri}です。"
2346
+ msgstr " クエリ対象のserverは%{uri}です。"
2292
2347
 
2293
2348
  #: ../lib/puppet/forge/errors.rb:108
2294
2349
  msgid " The HTTP response we received was '%{response}'"
@@ -2419,6 +2474,10 @@ msgid ""
2419
2474
  "'%{klass}'"
2420
2475
  msgstr "指定されたデータは%{walked_path}でコレクションを含まず、'%{klass}'が与えられています。"
2421
2476
 
2477
+ #: ../lib/puppet/functions/empty.rb:76
2478
+ msgid "Calling function empty() with %{arg_type} value is deprecated."
2479
+ msgstr "%{arg_type}値を用いた呼び出し関数empty()は廃止予定です。"
2480
+
2422
2481
  #. TRANSLATORS 'eyaml_lookup_key':, 'path', 'paths' 'glob', 'globs',
2423
2482
  #. 'mapped_paths', and lookup_key should not be translated
2424
2483
  #: ../lib/puppet/functions/eyaml_lookup_key.rb:31
@@ -2583,7 +2642,7 @@ msgstr "%{request}のカタログが、不適切なノードのfact定義とと
2583
2642
 
2584
2643
  #: ../lib/puppet/indirector/catalog/compiler.rb:70
2585
2644
  msgid "Setup server facts for compiling"
2586
- msgstr "コンパイルのためのサーバfactsをセットアップ。"
2645
+ msgstr "コンパイルのためのserver factsをセットアップ。"
2587
2646
 
2588
2647
  #: ../lib/puppet/indirector/catalog/compiler.rb:94
2589
2648
  msgid "Unsupported facts format"
@@ -2878,6 +2937,11 @@ msgid ""
2878
2937
  "from a remote device"
2879
2938
  msgstr "コードストアにfactsを保存できません。リモートデバイスからfactsを取得するためにのみ使用されます。"
2880
2939
 
2940
+ #: ../lib/puppet/indirector/facts/rest.rb:8
2941
+ #: ../lib/puppet/indirector/rest.rb:233
2942
+ msgid "PUT does not accept options"
2943
+ msgstr "PUTではオプションは認められていません。"
2944
+
2881
2945
  #: ../lib/puppet/indirector/file_bucket_file/file.rb:28
2882
2946
  msgid "could not find diff_with %{diff}"
2883
2947
  msgstr "diff_with %{diff}が見つかりませんでした。"
@@ -2941,7 +3005,7 @@ msgid ""
2941
3005
  "supported. Remove these directives and use the 'auth.conf' file instead for "
2942
3006
  "access control."
2943
3007
  msgstr ""
2944
- "ファイルサーバマウント'%{mount_name}'に関する%{desc}の%{method}リクエストを拒否しています。'fileserver.conf'マウントポイントでのauthディレクティブの使用は、現在ではサポートされていません。ディレクティブを削除し、代わりに'auth.conf'ファイルをアクセス管理に使用してください。"
3008
+ "ファイルserverマウント'%{mount_name}'に関する%{desc}の%{method}リクエストを拒否しています。'fileserver.conf'マウントポイントでのauthディレクティブの使用は、現在ではサポートされていません。ディレクティブを削除し、代わりに'auth.conf'ファイルをアクセス管理に使用してください。"
2945
3009
 
2946
3010
  #: ../lib/puppet/indirector/file_server.rb:47
2947
3011
  msgid ""
@@ -3178,7 +3242,7 @@ msgid ""
3178
3242
  "Server version %{version} does not accept reports in '%{format}', use "
3179
3243
  "`preferred_serialization_format=pson`"
3180
3244
  msgstr ""
3181
- "サーババージョン%{version}は'%{format}'のレポートを受け付けません。`preferred_serialization_format=pson`を使用してください。"
3245
+ "serverバージョン%{version}は'%{format}'のレポートを受け付けません。`preferred_serialization_format=pson`を使用してください。"
3182
3246
 
3183
3247
  #: ../lib/puppet/indirector/request.rb:100
3184
3248
  msgid "Could not find indirection '%{indirection}'"
@@ -3192,7 +3256,7 @@ msgstr "HTTP RESTクエリでは、タイプ'%{klass}'の値は処理できま
3192
3256
  msgid "Error connecting to %{srv_server}:%{srv_port}: %{message}"
3193
3257
  msgstr "%{srv_server}への接続でエラーが生じました:%{srv_port}: %{message}"
3194
3258
 
3195
- #: ../lib/puppet/indirector/request.rb:249
3259
+ #: ../lib/puppet/indirector/request.rb:245
3196
3260
  msgid "Could not understand URL %{key}: %{detail}"
3197
3261
  msgstr "URL %{key}を認識できませんでした: %{detail}"
3198
3262
 
@@ -3204,18 +3268,14 @@ msgstr "タイプ%{request_type}が見つかりませんでした。"
3204
3268
  msgid "Resource instance does not match request key"
3205
3269
  msgstr "リソースインスタンスがリクエストキーと一致しません。"
3206
3270
 
3207
- #: ../lib/puppet/indirector/rest.rb:187
3271
+ #: ../lib/puppet/indirector/rest.rb:185
3208
3272
  msgid "Find %{uri} resulted in 404 with the message: %{body}"
3209
3273
  msgstr "検索%{uri}が404エラーになりました。メッセージ: %{body}"
3210
3274
 
3211
- #: ../lib/puppet/indirector/rest.rb:220
3275
+ #: ../lib/puppet/indirector/rest.rb:218
3212
3276
  msgid "DELETE does not accept options"
3213
3277
  msgstr "DELETEではオプションは認められていません。"
3214
3278
 
3215
- #: ../lib/puppet/indirector/rest.rb:235
3216
- msgid "PUT does not accept options"
3217
- msgstr "PUTではオプションは認められていません。"
3218
-
3219
3279
  #. TRANSLATORS "PSON" should not be translated
3220
3280
  #: ../lib/puppet/indirector/rest.rb:270
3221
3281
  msgid "Downgrading to PSON for future requests"
@@ -3654,13 +3714,13 @@ msgstr ""
3654
3714
  "表現/^[a-z][a-z0-9_]*$/と一致するインストールされたモジュール名(例: modulename)、または\n"
3655
3715
  "表現/^[a-zA-Z0-9]+[-][a-z][a-z0-9_]*$/と一致する名前空間モジュール名(例: author-modulename)\n"
3656
3716
 
3657
- #: ../lib/puppet/module/task.rb:47
3717
+ #: ../lib/puppet/module/task.rb:46
3658
3718
  msgid ""
3659
3719
  "Task names must start with a lowercase letter and be composed of only "
3660
3720
  "lowercase letters, numbers, and underscores"
3661
3721
  msgstr "タスク名は小文字から始める必要があり、小文字、数字、アンダースコアのみ使用できます。"
3662
3722
 
3663
- #: ../lib/puppet/module/task.rb:53
3723
+ #: ../lib/puppet/module/task.rb:52
3664
3724
  msgid ""
3665
3725
  "The file '%{path}' is not located in the %{module_name} module's tasks "
3666
3726
  "directory"
@@ -4486,21 +4546,21 @@ msgstr "アプリケーション%{app}が複数のノードをコンポーネン
4486
4546
  msgid "Unknown content encoding - %{encoding}"
4487
4547
  msgstr "不明なコンテンツエンコーディング - %{encoding}"
4488
4548
 
4489
- #: ../lib/puppet/network/http/connection.rb:55
4549
+ #: ../lib/puppet/network/http/connection.rb:56
4490
4550
  msgid "Unrecognized option(s): %{opts}"
4491
4551
  msgstr "認識されていないオプション: %{opts}"
4492
4552
 
4493
- #: ../lib/puppet/network/http/connection.rb:203
4553
+ #: ../lib/puppet/network/http/connection.rb:204
4494
4554
  msgid "Too many HTTP redirections for %{host}:%{port}"
4495
4555
  msgstr "%{host}のHTTPリダイレクションが多すぎます:%{port}"
4496
4556
 
4497
4557
  #. TRANSLATORS: Used in the phrase:
4498
4558
  #. "Received a response from the remote server."
4499
- #: ../lib/puppet/network/http/connection.rb:234
4559
+ #: ../lib/puppet/network/http/connection.rb:235
4500
4560
  msgid "the remote server"
4501
- msgstr "リモートサーバー"
4561
+ msgstr "リモートserver"
4502
4562
 
4503
- #: ../lib/puppet/network/http/connection.rb:238
4563
+ #: ../lib/puppet/network/http/connection.rb:239
4504
4564
  msgid ""
4505
4565
  "Received a %{status_code} response from %{server_hostname}, but the Retry-"
4506
4566
  "After header value of \"%{retry_after}\" could not be converted to an "
@@ -4509,26 +4569,30 @@ msgstr ""
4509
4569
  "%{server_hostname}から%{status_code}応答を受信しましたが、\"%{retry_after}\"のRetry-"
4510
4570
  "Afterヘッダ値を整数またはRFC 2822日付に変換できませんでした。"
4511
4571
 
4512
- #: ../lib/puppet/network/http/connection.rb:249
4572
+ #: ../lib/puppet/network/http/connection.rb:250
4513
4573
  msgid ""
4514
4574
  "Received a %{status_code} response from %{server_hostname}. Sleeping for "
4515
4575
  "%{retry_sleep} seconds before retrying the request."
4516
4576
  msgstr ""
4517
4577
  "%{server_hostname}から%{status_code}応答を受信しました。リクエストを再試行する前に%{retry_sleep}秒間スリープ中です。"
4518
4578
 
4519
- #: ../lib/puppet/network/http/connection.rb:320
4579
+ #: ../lib/puppet/network/http/connection.rb:306
4580
+ msgid "request %{uri} interrupted after %{elapsed} seconds"
4581
+ msgstr "%{elapsed}秒後に中断されたリクエスト%{uri}"
4582
+
4583
+ #: ../lib/puppet/network/http/connection.rb:328
4520
4584
  msgid "expected one of %{certnames}"
4521
4585
  msgstr "想定される%{certnames}の1つ"
4522
4586
 
4523
- #: ../lib/puppet/network/http/connection.rb:322
4587
+ #: ../lib/puppet/network/http/connection.rb:330
4524
4588
  msgid "expected %{certname}"
4525
4589
  msgstr "想定される%{certname}"
4526
4590
 
4527
- #: ../lib/puppet/network/http/connection.rb:325
4591
+ #: ../lib/puppet/network/http/connection.rb:333
4528
4592
  msgid ""
4529
4593
  "Server hostname '%{host}' did not match server certificate; "
4530
4594
  "%{expected_certnames}"
4531
- msgstr "サーバホスト名'%{host}'がサーバ証明書; %{expected_certnames}と一致しませんでした"
4595
+ msgstr "serverホスト名'%{host}'がserver証明書; %{expected_certnames}と一致しませんでした"
4532
4596
 
4533
4597
  #: ../lib/puppet/network/http/error.rb:23
4534
4598
  msgid "Not Acceptable: %{message}"
@@ -4556,7 +4620,7 @@ msgstr "サポートされていないメディアタイプ: %{message}"
4556
4620
 
4557
4621
  #: ../lib/puppet/network/http/error.rb:66
4558
4622
  msgid "Server Error: %{message}"
4559
- msgstr "サーバエラー: %{message}"
4623
+ msgstr "serverエラー: %{message}"
4560
4624
 
4561
4625
  #: ../lib/puppet/network/http/handler.rb:23
4562
4626
  msgid "Given multiple routes with identical path regexes: %{regexes}"
@@ -4580,13 +4644,13 @@ msgstr "%{site}の接続終了に失敗しました: %{detail}"
4580
4644
 
4581
4645
  #: ../lib/puppet/network/http/rack.rb:26
4582
4646
  msgid "Internal Server Error: \"%{message}\""
4583
- msgstr "内部サーバエラー: \"%{message}\""
4647
+ msgstr "内部serverエラー: \"%{message}\""
4584
4648
 
4585
4649
  #: ../lib/puppet/network/http/rack.rb:28
4586
4650
  msgid ""
4587
4651
  "Puppet Server (Rack): Internal Server Error: Unhandled Exception: "
4588
4652
  "\"%{message}\""
4589
- msgstr "Puppetサーバ(ラック): 内部サーバエラー: 未処理の例外: \"%{message}\""
4653
+ msgstr "Puppet server (ラック): 内部serverエラー: 未処理の例外: \"%{message}\""
4590
4654
 
4591
4655
  #: ../lib/puppet/network/http/request.rb:14
4592
4656
  msgid "Unknown arguments: %{args}"
@@ -4604,7 +4668,7 @@ msgstr "要求されたAcceptヘッダが見つかりません。"
4604
4668
 
4605
4669
  #: ../lib/puppet/network/http/webrick.rb:22
4606
4670
  msgid "WEBrick server is already listening"
4607
- msgstr "WEBrickサーバはすでにリッスンしています。"
4671
+ msgstr "WEBrick serverはすでにリッスンしています。"
4608
4672
 
4609
4673
  #: ../lib/puppet/network/http/webrick.rb:28
4610
4674
  msgid "Client did not send data within %{timeout} seconds of connecting"
@@ -4612,7 +4676,7 @@ msgstr "クライアントが接続後%{timeout}秒以内にデータを送信
4612
4676
 
4613
4677
  #: ../lib/puppet/network/http/webrick.rb:38
4614
4678
  msgid "WEBrick server is not listening"
4615
- msgstr "WEBrickサーバはリッスンしていません。"
4679
+ msgstr "WEBrick serverはリッスンしていません。"
4616
4680
 
4617
4681
  #: ../lib/puppet/network/http/webrick.rb:99
4618
4682
  msgid ""
@@ -4626,7 +4690,7 @@ msgstr "CA証明書が見つかりませんでした。"
4626
4690
 
4627
4691
  #: ../lib/puppet/network/http/webrick/rest.rb:16
4628
4692
  msgid "server is required"
4629
- msgstr "サーバーが必要です。"
4693
+ msgstr "serverが必要です。"
4630
4694
 
4631
4695
  #: ../lib/puppet/network/rights.rb:58
4632
4696
  msgid "Forbidden request: %{msg}"
@@ -5246,14 +5310,6 @@ msgstr "新しい範囲オブジェクトに、コンパイラインスタンス
5246
5310
  msgid "Scope variable name %{name} is a %{klass}, not a string"
5247
5311
  msgstr "範囲変数名%{name}は%{klass}で、文字列ではありません。"
5248
5312
 
5249
- #: ../lib/puppet/parser/scope.rb:537
5250
- msgid "Variable: %{name}"
5251
- msgstr "変数: %{name}"
5252
-
5253
- #: ../lib/puppet/parser/scope.rb:538 ../lib/puppet/parser/scope.rb:540
5254
- msgid "Undefined variable '%{name}'; %{reason}"
5255
- msgstr "定義されていない変数'%{name}'; %{reason}"
5256
-
5257
5313
  #: ../lib/puppet/parser/scope.rb:657
5258
5314
  msgid "class %{classname} could not be found"
5259
5315
  msgstr "クラス%{classname}が見つかりませんでした。"
@@ -6260,76 +6316,80 @@ msgid "Heredoc without any following lines of text"
6260
6316
  msgstr "後続にテキスト行がないヒアドキュメント"
6261
6317
 
6262
6318
  #: ../lib/puppet/pops/issues.rb:744
6319
+ msgid "Heredoc with an empty endtag"
6320
+ msgstr "空の終了タグがあるヒアドキュメント"
6321
+
6322
+ #: ../lib/puppet/pops/issues.rb:748
6263
6323
  msgid "An escape char for @() may only appear once. Got '%{escapes}'"
6264
6324
  msgstr "@()のエスケープ文字は、一度しか使えません。'%{escapes}'が与えられています。"
6265
6325
 
6266
- #: ../lib/puppet/pops/issues.rb:748
6326
+ #: ../lib/puppet/pops/issues.rb:752
6267
6327
  msgid ""
6268
6328
  "Illegal %{format} Byte Order mark at beginning of input: %{bom} - remove "
6269
6329
  "these from the puppet source"
6270
6330
  msgstr "インプットの冒頭に不正な%{format}バイトオーダーマーク: %{bom} - Puppetソースからこれらを削除してください。"
6271
6331
 
6272
- #: ../lib/puppet/pops/issues.rb:752
6332
+ #: ../lib/puppet/pops/issues.rb:756
6273
6333
  msgid "No such file or directory: %{file}"
6274
6334
  msgstr "そのようなファイルまたはディレクトリはありません: %{file}"
6275
6335
 
6276
- #: ../lib/puppet/pops/issues.rb:756
6336
+ #: ../lib/puppet/pops/issues.rb:760
6277
6337
  msgid "%{file} is not a file"
6278
6338
  msgstr "%{file}はファイルではありません。"
6279
6339
 
6280
- #: ../lib/puppet/pops/issues.rb:761
6340
+ #: ../lib/puppet/pops/issues.rb:765
6281
6341
  msgid ""
6282
6342
  "%{expression} resulted in a value outside of Puppet Integer max range, got "
6283
6343
  "'%{value}'"
6284
6344
  msgstr "%{expression}がPuppet整数の最大値の範囲外になり、'%{value}'が与えられています。"
6285
6345
 
6286
- #: ../lib/puppet/pops/issues.rb:763
6346
+ #: ../lib/puppet/pops/issues.rb:767
6287
6347
  msgid ""
6288
6348
  "%{expression} resulted in a value outside of Puppet Integer min range, got "
6289
6349
  "'%{value}'"
6290
6350
  msgstr "%{expression}がPuppet整数の最小値の範囲外になり、'%{value}'が与えられています。"
6291
6351
 
6292
- #: ../lib/puppet/pops/issues.rb:768
6352
+ #: ../lib/puppet/pops/issues.rb:772
6293
6353
  msgid "This runtime does not support hiera.yaml version %{version}"
6294
6354
  msgstr "このランタイムはhiera.yamlバージョン%{version}をサポートしていません。"
6295
6355
 
6296
- #: ../lib/puppet/pops/issues.rb:772
6356
+ #: ../lib/puppet/pops/issues.rb:776
6297
6357
  msgid "hiera.yaml version 3 cannot be used in %{location}"
6298
6358
  msgstr "hiera.yamlバージョン3は%{location}では使用できません。"
6299
6359
 
6300
- #: ../lib/puppet/pops/issues.rb:776
6360
+ #: ../lib/puppet/pops/issues.rb:780
6301
6361
  msgid "hiera.yaml version 4 cannot be used in the global layer"
6302
6362
  msgstr "hiera.yamlバージョン4はグローバルレイヤでは使用できません。"
6303
6363
 
6304
- #: ../lib/puppet/pops/issues.rb:780
6364
+ #: ../lib/puppet/pops/issues.rb:784
6305
6365
  msgid "Undefined variable '%{name}'"
6306
6366
  msgstr "定義されていない変数'%{name}'"
6307
6367
 
6308
- #: ../lib/puppet/pops/issues.rb:784
6368
+ #: ../lib/puppet/pops/issues.rb:788
6309
6369
  msgid "Backend '%{name}' is defined more than once."
6310
6370
  msgstr "バックエンド'%{name}'が複数回定義されています。"
6311
6371
 
6312
- #: ../lib/puppet/pops/issues.rb:787 ../lib/puppet/pops/issues.rb:800
6372
+ #: ../lib/puppet/pops/issues.rb:791 ../lib/puppet/pops/issues.rb:804
6313
6373
  msgid "First defined at %{error_location}"
6314
6374
  msgstr "最初に%{error_location}で定義されています。"
6315
6375
 
6316
- #: ../lib/puppet/pops/issues.rb:793
6376
+ #: ../lib/puppet/pops/issues.rb:797
6317
6377
  msgid "No data provider is registered for backend '%{name}'"
6318
6378
  msgstr "バックエンド'%{name}'のデータプロバイダが登録されていません。"
6319
6379
 
6320
- #: ../lib/puppet/pops/issues.rb:797
6380
+ #: ../lib/puppet/pops/issues.rb:801
6321
6381
  msgid "Hierarchy name '%{name}' defined more than once."
6322
6382
  msgstr "階層名'%{name}'が複数回定義されています。"
6323
6383
 
6324
- #: ../lib/puppet/pops/issues.rb:806
6384
+ #: ../lib/puppet/pops/issues.rb:810
6325
6385
  msgid "'hiera3_backend' is only allowed in the global layer"
6326
6386
  msgstr "'hiera3_backend'が許可されているのはグローバルレイヤのみです。"
6327
6387
 
6328
- #: ../lib/puppet/pops/issues.rb:810
6388
+ #: ../lib/puppet/pops/issues.rb:814
6329
6389
  msgid "'default_hierarchy' is only allowed in the module layer"
6330
6390
  msgstr "'default_hierarchy'が許可されているのはモジュールレイヤのみです。"
6331
6391
 
6332
- #: ../lib/puppet/pops/issues.rb:814
6392
+ #: ../lib/puppet/pops/issues.rb:818
6333
6393
  msgid ""
6334
6394
  "Use \"data_hash: %{function_name}_data\" instead of \"hiera3_backend: "
6335
6395
  "%{function_name}\""
@@ -6337,92 +6397,92 @@ msgstr ""
6337
6397
  "\"hiera3_backend: %{function_name}\"ではなく\"data_hash: "
6338
6398
  "%{function_name}_data\"を使用してください。"
6339
6399
 
6340
- #: ../lib/puppet/pops/issues.rb:818
6400
+ #: ../lib/puppet/pops/issues.rb:822
6341
6401
  msgid "One of %{keys} must be defined in hierarchy '%{name}'"
6342
6402
  msgstr "%{keys}の1つを階層'%{name}'で定義する必要があります。"
6343
6403
 
6344
- #: ../lib/puppet/pops/issues.rb:822 ../lib/puppet/pops/issues.rb:830
6404
+ #: ../lib/puppet/pops/issues.rb:826 ../lib/puppet/pops/issues.rb:834
6345
6405
  msgid "Only one of %{keys} can be defined in hierarchy '%{name}'"
6346
6406
  msgstr "階層'%{name}'で定義できるのは1つの%{keys}のみです。"
6347
6407
 
6348
- #: ../lib/puppet/pops/issues.rb:826
6408
+ #: ../lib/puppet/pops/issues.rb:830
6349
6409
  msgid "Only one of %{keys} can be defined in defaults"
6350
6410
  msgstr "デフォルトで定義できるのは1つの%{keys}のみです。"
6351
6411
 
6352
- #: ../lib/puppet/pops/issues.rb:834
6412
+ #: ../lib/puppet/pops/issues.rb:838
6353
6413
  msgid "Option key '%{key}' used in hierarchy '%{name}' is reserved by Puppet"
6354
6414
  msgstr "階層'%{name}'で使用されているオプションキー'%{key}'は、Puppetにより予約されています。"
6355
6415
 
6356
- #: ../lib/puppet/pops/issues.rb:838
6416
+ #: ../lib/puppet/pops/issues.rb:842
6357
6417
  msgid "Option key '%{key}' used in defaults is reserved by Puppet"
6358
6418
  msgstr "デフォルトで使用されているオプションキー'%{key}'は、Puppetにより予約されています。"
6359
6419
 
6360
- #: ../lib/puppet/pops/issues.rb:842
6420
+ #: ../lib/puppet/pops/issues.rb:846
6361
6421
  msgid "Unable to find '%{function_type}' function named '%{function_name}'"
6362
6422
  msgstr "'%{function_name}'という名前の'%{function_type}'関数が見つかりません。"
6363
6423
 
6364
- #: ../lib/puppet/pops/issues.rb:846
6424
+ #: ../lib/puppet/pops/issues.rb:850
6365
6425
  msgid ""
6366
6426
  "'alias' interpolation is only permitted if the expression is equal to the "
6367
6427
  "entire string"
6368
6428
  msgstr "'alias'補間が許可されるのは、表現が文字列全体と等しい場合のみです。"
6369
6429
 
6370
- #: ../lib/puppet/pops/issues.rb:850
6430
+ #: ../lib/puppet/pops/issues.rb:854
6371
6431
  msgid "Unknown interpolation method '%{name}'"
6372
6432
  msgstr "不明な補間メソッド'%{name}'"
6373
6433
 
6374
- #: ../lib/puppet/pops/issues.rb:854
6434
+ #: ../lib/puppet/pops/issues.rb:858
6375
6435
  msgid "Interpolation using method syntax is not allowed in this context"
6376
6436
  msgstr "メソッド構文を用いた補間は、この文脈では許可されていません。"
6377
6437
 
6378
- #: ../lib/puppet/pops/issues.rb:858
6438
+ #: ../lib/puppet/pops/issues.rb:862
6379
6439
  msgid ""
6380
6440
  "Endless recursion detected when attempting to serialize value of class "
6381
6441
  "%{type_name}"
6382
6442
  msgstr "クラス%{type_name}の値のシリアライズを試みている際に、無限再帰が検出されました。"
6383
6443
 
6384
- #: ../lib/puppet/pops/issues.rb:862
6444
+ #: ../lib/puppet/pops/issues.rb:866
6385
6445
  msgid ""
6386
6446
  "%{path} contains the special value default. It will be converted to the "
6387
6447
  "String 'default'"
6388
6448
  msgstr "%{path}に特殊なデフォルト値が含まれています。これは文字列'default'に変換されます。"
6389
6449
 
6390
- #: ../lib/puppet/pops/issues.rb:866
6450
+ #: ../lib/puppet/pops/issues.rb:870
6391
6451
  msgid ""
6392
6452
  "%{path} contains %{klass} value. It will be converted to the String "
6393
6453
  "'%{value}'"
6394
6454
  msgstr "%{path}に%{klass}値が含まれています。これは文字列'%{value}'に変換されます。"
6395
6455
 
6396
- #: ../lib/puppet/pops/issues.rb:870
6456
+ #: ../lib/puppet/pops/issues.rb:874
6397
6457
  msgid ""
6398
6458
  "%{path} contains a hash with %{klass} key. It will be converted to the "
6399
6459
  "String '%{value}'"
6400
6460
  msgstr "%{path}に%{klass}キーを伴うハッシュが含まれています。これは文字列'%{value}'に変換されます。"
6401
6461
 
6402
- #: ../lib/puppet/pops/issues.rb:874
6462
+ #: ../lib/puppet/pops/issues.rb:878
6403
6463
  msgid "The feature '%{feature}' is only available when compiling a catalog"
6404
6464
  msgstr "フィーチャー'%{feature}'はカタログのコンパイル時のみ使用できます。"
6405
6465
 
6406
- #: ../lib/puppet/pops/issues.rb:878
6466
+ #: ../lib/puppet/pops/issues.rb:882
6407
6467
  msgid ""
6408
6468
  "The catalog operation '%{operation}' is only available when compiling a "
6409
6469
  "catalog"
6410
6470
  msgstr "カタログオペレーション'%{operation}'はカタログのコンパイル時のみ使用できます。"
6411
6471
 
6412
- #: ../lib/puppet/pops/issues.rb:882
6472
+ #: ../lib/puppet/pops/issues.rb:886
6413
6473
  msgid ""
6414
6474
  "The task operation '%{operation}' is not available when compiling a catalog"
6415
6475
  msgstr "タスクオペレーション'%{operation}'はカタログのコンパイル時には使用できません。"
6416
6476
 
6417
- #: ../lib/puppet/pops/issues.rb:886
6477
+ #: ../lib/puppet/pops/issues.rb:890
6418
6478
  msgid "The 'bolt' library is required to %{action}"
6419
6479
  msgstr "'bolt'ライブラリは%{action}に必須です。"
6420
6480
 
6421
- #: ../lib/puppet/pops/issues.rb:890
6481
+ #: ../lib/puppet/pops/issues.rb:894
6422
6482
  msgid "Task not found: %{type_name}"
6423
6483
  msgstr "タスクが見つかりませんでした: %{type_name}"
6424
6484
 
6425
- #: ../lib/puppet/pops/issues.rb:894
6485
+ #: ../lib/puppet/pops/issues.rb:898
6426
6486
  msgid "Failed to load: %{type_name}"
6427
6487
  msgstr "ロードに失敗しました: %{type_name}"
6428
6488
 
@@ -6720,25 +6780,41 @@ msgstr "%{config_path}: 'hiera.yaml'バージョン4の使用は廃止予定で
6720
6780
  msgid "Recursive lookup detected in [%{name_stack}]"
6721
6781
  msgstr "[%{name_stack}]で再帰検索が検出されました。"
6722
6782
 
6723
- #: ../lib/puppet/pops/lookup/lookup_adapter.rb:93
6783
+ #: ../lib/puppet/pops/lookup/lookup_adapter.rb:101
6784
+ msgid ""
6785
+ "Invalid data type in lookup_options for key '%{key}' could not parse "
6786
+ "'%{source}', error: '%{msg}"
6787
+ msgstr "キー'%{key}'の検索オプションで無効なデータタイプにより'%{source}'を解析できませんでした。エラー: '%{msg}"
6788
+
6789
+ #. TRANSLATORS 'lookup_options', 'convert_to' and args_string variable should
6790
+ #. not be translated,
6791
+ #: ../lib/puppet/pops/lookup/lookup_adapter.rb:109
6792
+ msgid "Applying convert_to lookup_option with arguments %{args}"
6793
+ msgstr "引数%{args}を用いる検索オプションへの変換を適用"
6794
+
6795
+ #: ../lib/puppet/pops/lookup/lookup_adapter.rb:112
6796
+ msgid "The convert_to lookup_option for key '%{key}' raised error: %{msg}"
6797
+ msgstr "キー'%{key}'の検索オプションへの変換によりエラーが発生しました: %{msg}"
6798
+
6799
+ #: ../lib/puppet/pops/lookup/lookup_adapter.rb:142
6724
6800
  msgid "Lookup of key '%{key}' failed: %{detail}"
6725
6801
  msgstr "キー'%{key}'の検索に失敗しました: %{detail}"
6726
6802
 
6727
- #: ../lib/puppet/pops/lookup/lookup_adapter.rb:239
6803
+ #: ../lib/puppet/pops/lookup/lookup_adapter.rb:288
6728
6804
  msgid "value of %{opts} must be a hash"
6729
6805
  msgstr "%{opts}の値はハッシュでなければなりません。"
6730
6806
 
6731
- #: ../lib/puppet/pops/lookup/lookup_adapter.rb:246
6807
+ #: ../lib/puppet/pops/lookup/lookup_adapter.rb:295
6732
6808
  msgid ""
6733
6809
  "all %{opts} patterns must match a key starting with module name "
6734
6810
  "'%{module_name}'"
6735
6811
  msgstr "すべての%{opts}パターンは、モジュール名'%{module_name}'で始まるキーと一致しなければなりません。"
6736
6812
 
6737
- #: ../lib/puppet/pops/lookup/lookup_adapter.rb:250
6813
+ #: ../lib/puppet/pops/lookup/lookup_adapter.rb:299
6738
6814
  msgid "all %{opts} keys must start with module name '%{module_name}'"
6739
6815
  msgstr "すべての%{opts}キーは、モジュール名'%{module_name}'で始まっていなければなりません。"
6740
6816
 
6741
- #: ../lib/puppet/pops/lookup/lookup_adapter.rb:375
6817
+ #: ../lib/puppet/pops/lookup/lookup_adapter.rb:424
6742
6818
  msgid ""
6743
6819
  "Defining \"data_provider\": \"%{name}\" in metadata.json is deprecated. It "
6744
6820
  "is ignored since a '%{config}' with version >= 5 is present"
@@ -6746,27 +6822,27 @@ msgstr ""
6746
6822
  "\"data_provider\"の定義: metadata.jsonでの\"%{name}\"は廃止予定です。バージョン>= "
6747
6823
  "5の'%{config}'が存在するため、無視されます。"
6748
6824
 
6749
- #: ../lib/puppet/pops/lookup/lookup_adapter.rb:385
6825
+ #: ../lib/puppet/pops/lookup/lookup_adapter.rb:434
6750
6826
  msgid "Defining \"data_provider\": \"%{name}\" in metadata.json is deprecated."
6751
6827
  msgstr "\"data_provider\"の定義: metadata.jsonの\"%{name}\"は廃止予定です。"
6752
6828
 
6753
- #: ../lib/puppet/pops/lookup/lookup_adapter.rb:386
6754
- #: ../lib/puppet/pops/lookup/lookup_adapter.rb:440
6829
+ #: ../lib/puppet/pops/lookup/lookup_adapter.rb:435
6830
+ #: ../lib/puppet/pops/lookup/lookup_adapter.rb:489
6755
6831
  msgid "A '%{hiera_config}' file should be used instead"
6756
6832
  msgstr "代わりに'%{hiera_config}'ファイルを使用する必要があります。"
6757
6833
 
6758
- #: ../lib/puppet/pops/lookup/lookup_adapter.rb:400
6834
+ #: ../lib/puppet/pops/lookup/lookup_adapter.rb:449
6759
6835
  msgid "Environment '%{env}', cannot find module_data_provider '%{provider}'"
6760
6836
  msgstr "環境'%{env}'でmodule_data_provider '%{provider}'が見つかりません。"
6761
6837
 
6762
- #: ../lib/puppet/pops/lookup/lookup_adapter.rb:424
6838
+ #: ../lib/puppet/pops/lookup/lookup_adapter.rb:473
6763
6839
  msgid ""
6764
6840
  "Defining environment_data_provider='%{provider_name}' in environment.conf is"
6765
6841
  " deprecated"
6766
6842
  msgstr ""
6767
6843
  "environment.confでのenvironment_data_provider='%{provider_name}'の定義は廃止予定です。"
6768
6844
 
6769
- #: ../lib/puppet/pops/lookup/lookup_adapter.rb:428
6845
+ #: ../lib/puppet/pops/lookup/lookup_adapter.rb:477
6770
6846
  msgid ""
6771
6847
  "The environment_data_provider='%{provider_name}' setting is ignored since "
6772
6848
  "'%{config_path}' version >= 5"
@@ -6774,14 +6850,14 @@ msgstr ""
6774
6850
  "'%{config_path}' version >= "
6775
6851
  "5以降では、environment_data_provider='%{provider_name}'設定は無視されます。"
6776
6852
 
6777
- #: ../lib/puppet/pops/lookup/lookup_adapter.rb:439
6853
+ #: ../lib/puppet/pops/lookup/lookup_adapter.rb:488
6778
6854
  msgid ""
6779
6855
  "Defining environment_data_provider='%{provider_name}' in environment.conf is"
6780
6856
  " deprecated."
6781
6857
  msgstr ""
6782
6858
  "environment.confでのenvironment_data_provider='%{provider_name}'の定義は廃止予定です。"
6783
6859
 
6784
- #: ../lib/puppet/pops/lookup/lookup_adapter.rb:455
6860
+ #: ../lib/puppet/pops/lookup/lookup_adapter.rb:504
6785
6861
  msgid ""
6786
6862
  "Environment '%{env}', cannot find environment_data_provider '%{provider}'"
6787
6863
  msgstr "環境'%{env}'でenvironment_data_provider '%{provider}'が見つかりません。"
@@ -7118,47 +7194,47 @@ msgstr "種類が'%{kind}'の%{label}は、属性値と組み合わせること
7118
7194
  msgid "%{label} of kind 'constant' requires a value"
7119
7195
  msgstr "種類が'constant'の%{label}には値が必要です。"
7120
7196
 
7121
- #: ../lib/puppet/pops/types/p_object_type.rb:683
7197
+ #: ../lib/puppet/pops/types/p_object_type.rb:684
7122
7198
  msgid "reference to unresolved type '%{name}'"
7123
7199
  msgstr "unresolved type '%{name}'への参照"
7124
7200
 
7125
- #: ../lib/puppet/pops/types/p_object_type.rb:719
7201
+ #: ../lib/puppet/pops/types/p_object_type.rb:720
7126
7202
  msgid ""
7127
7203
  "attribute %{label}[%{key}] is defined as both a constant and an attribute"
7128
7204
  msgstr "属性%{label}[%{key}]は、定数と属性の両方として定義されています。"
7129
7205
 
7130
- #: ../lib/puppet/pops/types/p_object_type.rb:751
7206
+ #: ../lib/puppet/pops/types/p_object_type.rb:752
7131
7207
  msgid "%{label} conflicts with attribute with the same name"
7132
7208
  msgstr "%{label}は、同じ名前を持つ属性と競合しています。"
7133
7209
 
7134
7210
  #. TRANSLATORS equality_include_type = false should not be translated
7135
- #: ../lib/puppet/pops/types/p_object_type.rb:764
7211
+ #: ../lib/puppet/pops/types/p_object_type.rb:765
7136
7212
  msgid ""
7137
7213
  "equality_include_type = false cannot be combined with non empty equality "
7138
7214
  "specification"
7139
7215
  msgstr "equality_include_type = falseは、空白ではない等値仕様と組み合わせることはできません。"
7140
7216
 
7141
- #: ../lib/puppet/pops/types/p_object_type.rb:776
7217
+ #: ../lib/puppet/pops/types/p_object_type.rb:777
7142
7218
  msgid ""
7143
7219
  "%{label} equality is referencing %{attribute} which is included in equality "
7144
7220
  "of %{including_parent}"
7145
7221
  msgstr "%{label}等値は、%{including_parent}等値に含まれている%{attribute}を参照しています。"
7146
7222
 
7147
- #: ../lib/puppet/pops/types/p_object_type.rb:783
7223
+ #: ../lib/puppet/pops/types/p_object_type.rb:784
7148
7224
  msgid "%{label} equality is referencing non existent attribute '%{attribute}'"
7149
7225
  msgstr "%{label}等値は、存在しない属性'%{attribute}'を参照しています。"
7150
7226
 
7151
- #: ../lib/puppet/pops/types/p_object_type.rb:785
7227
+ #: ../lib/puppet/pops/types/p_object_type.rb:786
7152
7228
  msgid ""
7153
7229
  "%{label} equality is referencing %{attribute}. Only attribute references are"
7154
7230
  " allowed"
7155
7231
  msgstr "%{label}等値は%{attribute}を参照しています。属性の参照のみ許可されています。"
7156
7232
 
7157
- #: ../lib/puppet/pops/types/p_object_type.rb:789
7233
+ #: ../lib/puppet/pops/types/p_object_type.rb:790
7158
7234
  msgid "%{label} equality is referencing constant %{attribute}."
7159
7235
  msgstr "%{label}等値は定数%{attribute}を参照しています。"
7160
7236
 
7161
- #: ../lib/puppet/pops/types/p_object_type.rb:790
7237
+ #: ../lib/puppet/pops/types/p_object_type.rb:791
7162
7238
  msgid "Reference to constant is not allowed in equality"
7163
7239
  msgstr "定数の参照は、等値では許可されていません。"
7164
7240
 
@@ -8324,7 +8400,7 @@ msgstr "%{class_name}[%{resource_name}]でAIXの有効期限'%{value}'を変換
8324
8400
  msgid "ruby-shadow doesn't support %{method}"
8325
8401
  msgstr "ruby-shadowは%{method}をサポートしていません。"
8326
8402
 
8327
- #: ../lib/puppet/provider/yumrepo/inifile.rb:192
8403
+ #: ../lib/puppet/provider/yumrepo/inifile.rb:185
8328
8404
  msgid "changing mode of %{file} from %{current_mode} to %{target_mode}"
8329
8405
  msgstr "%{file}のモードを%{current_mode}から%{target_mode}に変更しています。"
8330
8406
 
@@ -8525,46 +8601,46 @@ msgid ""
8525
8601
  msgstr ""
8526
8602
  "%{resource_declaration}で%{resource}を%{key}にaliasできません。リソース%{newref}はすでに宣言されています。"
8527
8603
 
8528
- #: ../lib/puppet/resource/catalog.rb:287
8604
+ #: ../lib/puppet/resource/catalog.rb:290
8529
8605
  msgid "Unknown resource type %{type}"
8530
8606
  msgstr "不明なリソースタイプ%{type}"
8531
8607
 
8532
- #: ../lib/puppet/resource/catalog.rb:449
8608
+ #: ../lib/puppet/resource/catalog.rb:452
8533
8609
  msgid ""
8534
8610
  "Could not intern from data: Could not find relationship source %{source} for"
8535
8611
  " %{target}"
8536
8612
  msgstr "データからinternを実行できません。%{target}の関連性に関するソース%{source}が見つかりませんでした。"
8537
8613
 
8538
- #: ../lib/puppet/resource/catalog.rb:455
8614
+ #: ../lib/puppet/resource/catalog.rb:458
8539
8615
  msgid ""
8540
8616
  "Could not intern from data: Could not find relationship target %{target} for"
8541
8617
  " %{source}"
8542
8618
  msgstr "データからinternを実行できません。%{source}の関連性に関するターゲット%{target}が見つかりませんでした。"
8543
8619
 
8544
- #: ../lib/puppet/resource/catalog.rb:548
8620
+ #: ../lib/puppet/resource/catalog.rb:551
8545
8621
  msgid "Could not create class file %{file}: %{detail}"
8546
8622
  msgstr "クラスファイル%{file}を作成できませんでした: %{detail}"
8547
8623
 
8548
- #: ../lib/puppet/resource/catalog.rb:568
8624
+ #: ../lib/puppet/resource/catalog.rb:571
8549
8625
  msgid "Could not create resource file %{file}: %{detail}"
8550
8626
  msgstr "リソースファイル%{file}を作成できませんでした: %{detail}"
8551
8627
 
8552
- #: ../lib/puppet/resource/catalog.rb:590
8628
+ #: ../lib/puppet/resource/catalog.rb:593
8553
8629
  msgid "Unknown ordering type %{ordering}"
8554
8630
  msgstr "不明な順序タイプ%{ordering}"
8555
8631
 
8556
- #: ../lib/puppet/resource/catalog.rb:611
8632
+ #: ../lib/puppet/resource/catalog.rb:614
8557
8633
  msgid ""
8558
8634
  "Duplicate declaration: %{resource} is already declared; cannot redeclare"
8559
8635
  msgstr "宣言が重複しています。%{resource}はすでに宣言されています。再宣言することはできません。"
8560
8636
 
8561
- #: ../lib/puppet/resource/catalog.rb:613
8637
+ #: ../lib/puppet/resource/catalog.rb:616
8562
8638
  msgid ""
8563
8639
  "Duplicate declaration: %{resource} is already declared at %{error_location};"
8564
8640
  " cannot redeclare"
8565
8641
  msgstr "宣言が重複しています。%{resource}は%{error_location}ですでに宣言されています。再宣言することはできません。"
8566
8642
 
8567
- #: ../lib/puppet/resource/catalog.rb:661 ../lib/puppet/resource/catalog.rb:665
8643
+ #: ../lib/puppet/resource/catalog.rb:664 ../lib/puppet/resource/catalog.rb:668
8568
8644
  msgid ""
8569
8645
  "Could not find resource %{resource} when converting %{message} resources"
8570
8646
  msgstr "%{message}リソースの変換中にリソース%{resource}が見つかりませんでした。"
@@ -8757,27 +8833,27 @@ msgstr "%{name}の設定は廃止予定です。"
8757
8833
  msgid "Setting %{name} is deprecated in puppet.conf."
8758
8834
  msgstr "%{name}の設定はpuppet.confで廃止予定です。"
8759
8835
 
8760
- #: ../lib/puppet/settings.rb:1329
8836
+ #: ../lib/puppet/settings.rb:1333
8761
8837
  msgid "Error converting value for param '%{name}': %{detail}"
8762
8838
  msgstr "param '%{name}'の値の変換エラー: %{detail}"
8763
8839
 
8764
- #: ../lib/puppet/settings.rb:1353
8840
+ #: ../lib/puppet/settings.rb:1357
8765
8841
  msgid "Could not find value for %{expression}"
8766
8842
  msgstr "%{expression}の値が見つかりませんでした。"
8767
8843
 
8768
8844
  #. TRANSLATORS '$environment' is a Puppet specific variable and should not be
8769
8845
  #. translated
8770
- #: ../lib/puppet/settings.rb:1363
8846
+ #: ../lib/puppet/settings.rb:1367
8771
8847
  msgid ""
8772
8848
  "You cannot interpolate $environment within '%{setting_name}' when using "
8773
8849
  "directory environments."
8774
8850
  msgstr "ディレクトリenvidonmentの使用中は、'%{setting_name}'内で$environmentを補間できません。"
8775
8851
 
8776
- #: ../lib/puppet/settings.rb:1364
8852
+ #: ../lib/puppet/settings.rb:1368
8777
8853
  msgid "Its value will remain %{value}."
8778
8854
  msgstr "値は%{value}のままです。"
8779
8855
 
8780
- #: ../lib/puppet/settings.rb:1395
8856
+ #: ../lib/puppet/settings.rb:1399
8781
8857
  msgid "Attempt to assign a value to unknown setting %{name}"
8782
8858
  msgstr "未知の設定%{name}に値を割り当てようとしています。"
8783
8859
 
@@ -9159,7 +9235,7 @@ msgstr "%{name}の新規SSL証明書リクエストを作成しています。"
9159
9235
  msgid ""
9160
9236
  "CSR sign verification failed; you need to clean the certificate request for "
9161
9237
  "%{name} on the server"
9162
- msgstr "CSR署名確認に失敗しました; サーバ上の%{name}の証明書リクエストを削除する必要があります。"
9238
+ msgstr "CSR署名確認に失敗しました; server上の%{name}の証明書リクエストを削除する必要があります。"
9163
9239
 
9164
9240
  #: ../lib/puppet/ssl/certificate_request.rb:106
9165
9241
  msgid "Certificate Request fingerprint (%{digest}): %{hex_digest}"
@@ -9599,23 +9675,23 @@ msgstr "%{name}の属性'%{attribute}'が定義されていません。"
9599
9675
 
9600
9676
  #. TRANSLATORS 'is' is a variable name and should not be translated
9601
9677
  #. TRANSLATORS 'is' is a variable name and should not be translated
9602
- #: ../lib/puppet/type.rb:1023 ../lib/puppet/type.rb:1034
9678
+ #: ../lib/puppet/type.rb:1022 ../lib/puppet/type.rb:1033
9603
9679
  msgid "The 'is' value is not in the 'is' array for '%{name}'"
9604
9680
  msgstr "'is'値は、'%{name}'の'is'配列ではありません。"
9605
9681
 
9606
- #: ../lib/puppet/type.rb:1160
9682
+ #: ../lib/puppet/type.rb:1159
9607
9683
  msgid "%{name} has no providers and has not overridden 'instances'"
9608
9684
  msgstr "%{name}にはプロバイダがなく、'instances'をオーバーライドしていません。"
9609
9685
 
9610
- #: ../lib/puppet/type.rb:1419
9686
+ #: ../lib/puppet/type.rb:1418
9611
9687
  msgid "Cannot add aliases without a catalog"
9612
9688
  msgstr "カタログがなければ、aliasを追加できません。"
9613
9689
 
9614
- #: ../lib/puppet/type.rb:1498
9690
+ #: ../lib/puppet/type.rb:1497
9615
9691
  msgid "Could not find %{description} %{ref} for %{resource}"
9616
9692
  msgstr "%{resource}の%{description} %{ref}が見つかりませんでした。"
9617
9693
 
9618
- #: ../lib/puppet/type.rb:1771
9694
+ #: ../lib/puppet/type.rb:1770
9619
9695
  msgid ""
9620
9696
  "Found multiple default providers for %{name}: %{provider_list}; using "
9621
9697
  "%{selected_provider}"
@@ -9623,41 +9699,41 @@ msgstr ""
9623
9699
  "%{name}に対し、複数のデフォルトプロバイダが見つかりました: "
9624
9700
  "%{provider_list}。%{selected_provider}を使用します。"
9625
9701
 
9626
- #: ../lib/puppet/type.rb:1856
9702
+ #: ../lib/puppet/type.rb:1855
9627
9703
  msgid "Could not find parent provider %{parent} of %{name}"
9628
9704
  msgstr "%{name}の親プロバイダ%{parent}が見つかりませんでした。"
9629
9705
 
9630
- #: ../lib/puppet/type.rb:1932
9706
+ #: ../lib/puppet/type.rb:1931
9631
9707
  msgid "Invalid %{resource} provider '%{provider_class}'"
9632
9708
  msgstr "無効な%{resource}プロバイダ'%{provider_class}'"
9633
9709
 
9634
- #: ../lib/puppet/type.rb:2015
9710
+ #: ../lib/puppet/type.rb:2014
9635
9711
  msgid "Could not find %{name} provider of %{provider}"
9636
9712
  msgstr "%{provider}の%{name}プロバイダが見つかりませんでした。"
9637
9713
 
9638
- #: ../lib/puppet/type.rb:2132
9714
+ #: ../lib/puppet/type.rb:2131
9639
9715
  msgid "You cannot add relationships without a catalog"
9640
9716
  msgstr "カタログがなければ、関係を追加できません。"
9641
9717
 
9642
- #: ../lib/puppet/type.rb:2439
9718
+ #: ../lib/puppet/type.rb:2438
9643
9719
  msgid ""
9644
9720
  "Unable to mark '%{name}' as sensitive: %{name} is a parameter and not a "
9645
9721
  "property, and cannot be automatically redacted."
9646
9722
  msgstr "'%{name}'を機密としてマークできませんでした: %{name}はプロパティではなくパラメータなので、自動的に編集できません。"
9647
9723
 
9648
- #: ../lib/puppet/type.rb:2442
9724
+ #: ../lib/puppet/type.rb:2441
9649
9725
  msgid ""
9650
9726
  "Unable to mark '%{name}' as sensitive: the property itself was not assigned "
9651
9727
  "a value."
9652
9728
  msgstr "'%{name}'を機密としてマークできませんでした: プロパティ自体に値が割り当てられていません。"
9653
9729
 
9654
- #: ../lib/puppet/type.rb:2444
9730
+ #: ../lib/puppet/type.rb:2443
9655
9731
  msgid ""
9656
9732
  "Unable to mark '%{name}' as sensitive: the property itself is not defined on"
9657
9733
  " %{type}."
9658
9734
  msgstr "'%{name}'を機密としてマークできませんでした: プロパティ自体が%{type}で定義されていません。"
9659
9735
 
9660
- #: ../lib/puppet/type.rb:2495
9736
+ #: ../lib/puppet/type.rb:2494
9661
9737
  msgid "Could not set %{attribute} on %{class_name}: %{detail}"
9662
9738
  msgstr "%{class_name}に%{attribute}を設定できませんでした: %{detail}"
9663
9739
 
@@ -9677,11 +9753,11 @@ msgstr "%{value}は有効な%{name}ではありません。"
9677
9753
  msgid "Invalid special schedule %{value}"
9678
9754
  msgstr "無効な特別スケジュール%{value}"
9679
9755
 
9680
- #: ../lib/puppet/type/cron.rb:324
9756
+ #: ../lib/puppet/type/cron.rb:329
9681
9757
  msgid "Invalid environment setting %{value}"
9682
9758
  msgstr "無効な環境設定%{value}"
9683
9759
 
9684
- #: ../lib/puppet/type/cron.rb:419
9760
+ #: ../lib/puppet/type/cron.rb:424
9685
9761
  msgid ""
9686
9762
  "%{cron} cannot specify both a special schedule and a value for %{field}"
9687
9763
  msgstr "%{cron}では、特別スケジュールと%{field}の値の両方を指定することはできません。"
@@ -9754,58 +9830,58 @@ msgstr "無効なバックアップタイプ%{value}"
9754
9830
  msgid "Invalid recurse value %{value}"
9755
9831
  msgstr "無効なrecurse%{value}"
9756
9832
 
9757
- #: ../lib/puppet/type/file.rb:201
9833
+ #: ../lib/puppet/type/file.rb:200
9758
9834
  msgid "Invalid recurselimit value %{value}"
9759
9835
  msgstr "無効なrecurselimit値%{value}"
9760
9836
 
9761
- #: ../lib/puppet/type/file.rb:371
9837
+ #: ../lib/puppet/type/file.rb:370
9762
9838
  msgid "You cannot specify more than one of %{creators}"
9763
9839
  msgstr "複数の%{creators}を指定することはできません。"
9764
9840
 
9765
- #: ../lib/puppet/type/file.rb:373
9841
+ #: ../lib/puppet/type/file.rb:372
9766
9842
  msgid "You cannot specify a remote recursion without a source"
9767
9843
  msgstr "ソースなしでリモート再帰を指定することはできません。"
9768
9844
 
9769
- #: ../lib/puppet/type/file.rb:375
9845
+ #: ../lib/puppet/type/file.rb:374
9770
9846
  msgid "You cannot specify source when using checksum 'none'"
9771
9847
  msgstr "チェックサム'none'を使っている場合はソースを指定することはできません。"
9772
9848
 
9773
- #: ../lib/puppet/type/file.rb:378
9849
+ #: ../lib/puppet/type/file.rb:377
9774
9850
  msgid "You cannot specify content when using checksum '%{checksum_type}'"
9775
9851
  msgstr "チェックサム'%{checksum_type}'を使っている場合はコンテンツを指定することはできません。"
9776
9852
 
9777
- #: ../lib/puppet/type/file.rb:381
9853
+ #: ../lib/puppet/type/file.rb:380
9778
9854
  msgid ""
9779
9855
  "Possible error: recurselimit is set but not recurse, no recursion will "
9780
9856
  "happen"
9781
9857
  msgstr "エラーの可能性:recurselimitが設定されていますがrecurseではありません。再帰が生じません。"
9782
9858
 
9783
- #: ../lib/puppet/type/file.rb:389
9859
+ #: ../lib/puppet/type/file.rb:388
9784
9860
  msgid "Checksum value '%{value}' is not a valid checksum type %{checksum}"
9785
9861
  msgstr "チェックサム'%{value}'は有効なチェックサムタイプ %{checksum}ではありません。"
9786
9862
 
9787
- #: ../lib/puppet/type/file.rb:392
9863
+ #: ../lib/puppet/type/file.rb:391
9788
9864
  msgid "Checksum value is ignored unless content or source are specified"
9789
9865
  msgstr "コンテンツまたはソースが指定されていない場合、チェックサムの値は無視されます。"
9790
9866
 
9791
- #: ../lib/puppet/type/file.rb:430
9867
+ #: ../lib/puppet/type/file.rb:429
9792
9868
  msgid "Can not find filebucket for backups without a catalog"
9793
9869
  msgstr "カタログがないとバックアップのfilebucketを検索できません。"
9794
9870
 
9795
- #: ../lib/puppet/type/file.rb:434
9871
+ #: ../lib/puppet/type/file.rb:433
9796
9872
  msgid "Could not find filebucket %{backup} specified in backup"
9797
9873
  msgstr "バックアップで指定されたfilebucket %{backup}が見つかりませんでした。"
9798
9874
 
9799
- #: ../lib/puppet/type/file.rb:730
9875
+ #: ../lib/puppet/type/file.rb:729
9800
9876
  msgid "Could not back up file of type %{current_type}"
9801
9877
  msgstr "タイプ%{current_type}のファイルをバックアップできませんでした。"
9802
9878
 
9803
- #: ../lib/puppet/type/file.rb:745
9879
+ #: ../lib/puppet/type/file.rb:744
9804
9880
  msgid "Could not remove files of type %{current_type}"
9805
9881
  msgstr "タイプ%{current_type}のファイルを削除できませんでした。"
9806
9882
 
9807
9883
  #. TRANSLATORS "source_permissions => ignore" should not be translated
9808
- #: ../lib/puppet/type/file.rb:756
9884
+ #: ../lib/puppet/type/file.rb:755
9809
9885
  msgid ""
9810
9886
  "Copying owner/mode/group from the source file on Windows is not supported; "
9811
9887
  "use source_permissions => ignore."
@@ -9814,20 +9890,21 @@ msgstr ""
9814
9890
  "ignoreを使用してください。"
9815
9891
 
9816
9892
  #. TRANSLATORS "stat" is a program name and should not be translated
9817
- #: ../lib/puppet/type/file.rb:837 ../lib/puppet/type/tidy.rb:341
9893
+ #: ../lib/puppet/type/file.rb:836 ../lib/puppet/type/k5login.rb:97
9894
+ #: ../lib/puppet/type/tidy.rb:345
9818
9895
  msgid "Could not stat; permission denied"
9819
9896
  msgstr "statできませんでした; 許可が拒否されました。"
9820
9897
 
9821
- #: ../lib/puppet/type/file.rb:962
9898
+ #: ../lib/puppet/type/file.rb:961
9822
9899
  msgid "Not removing directory; use 'force' to override"
9823
9900
  msgstr "ディレクトリは削除されません; 'force'を使ってオーバーライドしてください。"
9824
9901
 
9825
9902
  #. TRANSLATORS refers to a file which could not be backed up
9826
- #: ../lib/puppet/type/file.rb:987
9903
+ #: ../lib/puppet/type/file.rb:986
9827
9904
  msgid "Could not back up; will not remove"
9828
9905
  msgstr "バックアップできませんでした; 削除されません。"
9829
9906
 
9830
- #: ../lib/puppet/type/file.rb:1001
9907
+ #: ../lib/puppet/type/file.rb:1000
9831
9908
  msgid ""
9832
9909
  "File written to disk did not match checksum; discarding changes "
9833
9910
  "(%{content_checksum} vs %{newsum})"
@@ -9905,7 +9982,7 @@ msgstr "ホスト名に新しい行を含めることはできません。"
9905
9982
  msgid "Invalid interface ip address"
9906
9983
  msgstr "無効なインターフェースIPアドレス"
9907
9984
 
9908
- #: ../lib/puppet/type/k5login.rb:24
9985
+ #: ../lib/puppet/type/k5login.rb:25
9909
9986
  msgid "File paths must be fully qualified."
9910
9987
  msgstr "ファイルパスは完全修飾でなければなりません。"
9911
9988
 
@@ -10107,7 +10184,7 @@ msgstr "無効なtidyサイズ%{age}"
10107
10184
  msgid "Tidying %{count} files"
10108
10185
  msgstr "%{count}ファイルをTidyしています。"
10109
10186
 
10110
- #: ../lib/puppet/type/tidy.rb:337
10187
+ #: ../lib/puppet/type/tidy.rb:341
10111
10188
  msgid "File does not exist"
10112
10189
  msgstr "ファイルが存在しません。"
10113
10190
 
@@ -10196,46 +10273,42 @@ msgstr "プロファイル名はカンマ区切りリストではなく、配列
10196
10273
  msgid "Key/value pairs must be separated by an ="
10197
10274
  msgstr "キー/値ペアは=で区切る必要があります。"
10198
10275
 
10199
- #: ../lib/puppet/type/user.rb:690
10276
+ #: ../lib/puppet/type/user.rb:691
10200
10277
  msgid "Each entry for purge_ssh_keys must be a string, not a %{klass}"
10201
10278
  msgstr "purge_ssh_keysの各エントリは、%{klass}ではなく、文字列にする必要があります。"
10202
10279
 
10203
- #: ../lib/puppet/type/user.rb:693
10280
+ #: ../lib/puppet/type/user.rb:694
10204
10281
  msgid "Paths to keyfiles must be absolute, not %{entry}"
10205
10282
  msgstr "キーファイルのパスは、%{entry}ではなく、絶対パスにする必要があります。"
10206
10283
 
10207
- #: ../lib/puppet/type/user.rb:697
10284
+ #: ../lib/puppet/type/user.rb:698
10208
10285
  msgid ""
10209
10286
  "purge_ssh_keys must be true, false, or an array of file names, not %{value}"
10210
10287
  msgstr "purge_ssh_keysは、%{value}ではなく、true、false、またはファイル名の配列にする必要があります。 "
10211
10288
 
10212
- #: ../lib/puppet/type/user.rb:709
10289
+ #: ../lib/puppet/type/user.rb:710
10213
10290
  msgid ""
10214
10291
  "purge_ssh_keys can only be true for users with a defined home directory"
10215
10292
  msgstr "purge_ssh_keysをtrueにできるのは、ホームディレクトリが定義されたユーザの場合のみです。"
10216
10293
 
10217
- #: ../lib/puppet/type/user.rb:716
10294
+ #: ../lib/puppet/type/user.rb:717
10218
10295
  msgid ""
10219
10296
  "purge_ssh_keys value '%{value}' meta character ~ or %{home_placeholder} only"
10220
10297
  " allowed for users with a defined home directory"
10221
10298
  msgstr ""
10222
10299
  "purge_ssh_keys値'%{value}'のメタ文字~または%{home_placeholder}が許可されているのは、ホームディレクトリが定義されたユーザの場合のみです。"
10223
10300
 
10224
- #: ../lib/puppet/type/user.rb:730
10301
+ #: ../lib/puppet/type/user.rb:731
10225
10302
  msgid "Class name must be provided."
10226
10303
  msgstr "クラス名を指定する必要があります。"
10227
10304
 
10228
10305
  #: ../lib/puppet/type/yumrepo.rb:65 ../lib/puppet/type/yumrepo.rb:82
10229
10306
  #: ../lib/puppet/type/yumrepo.rb:138 ../lib/puppet/type/yumrepo.rb:162
10230
- #: ../lib/puppet/type/yumrepo.rb:184 ../lib/puppet/type/yumrepo.rb:312
10231
- #: ../lib/puppet/type/yumrepo.rb:378
10307
+ #: ../lib/puppet/type/yumrepo.rb:185 ../lib/puppet/type/yumrepo.rb:309
10308
+ #: ../lib/puppet/type/yumrepo.rb:375
10232
10309
  msgid "Must be a valid URL"
10233
10310
  msgstr "有効なURLにする必要があります。"
10234
10311
 
10235
- #: ../lib/puppet/type/yumrepo.rb:270
10236
- msgid "Must be within range 1-99"
10237
- msgstr "1-99の範囲内にする必要があります。"
10238
-
10239
10312
  #: ../lib/puppet/type/zone.rb:102
10240
10313
  msgid "Waiting for zone to finish processing"
10241
10314
  msgstr "ゾーンが処理を終えるまで待機しています。"
@@ -10776,15 +10849,15 @@ msgstr "%{uri}のHTTPリダイレクションが多すぎます。"
10776
10849
  msgid "Cannot read nonexistent file %{file}"
10777
10850
  msgstr "存在しないファイル%{file}を読み込めません。"
10778
10851
 
10779
- #: ../lib/puppet/util/inifile.rb:186
10852
+ #: ../lib/puppet/util/inifile.rb:185
10780
10853
  msgid "Property with key %{key} outside of a section"
10781
10854
  msgstr "セクション外のキー%{key}を持つプロパティ"
10782
10855
 
10783
- #: ../lib/puppet/util/inifile.rb:192
10856
+ #: ../lib/puppet/util/inifile.rb:191
10784
10857
  msgid "Can't parse line '%{line}'"
10785
10858
  msgstr "行'%{line}'を解析できません。"
10786
10859
 
10787
- #: ../lib/puppet/util/inifile.rb:241
10860
+ #: ../lib/puppet/util/inifile.rb:240
10788
10861
  msgid "Section %{name} is already defined, cannot redefine"
10789
10862
  msgstr "セクション%{name}はすでに定義されているため再定義できません。"
10790
10863
 
@@ -11220,41 +11293,41 @@ msgstr "有効なSID::Principalを使用する必要があります。"
11220
11293
  msgid "Value must be in DOMAIN\\user style syntax"
11221
11294
  msgstr "値はDOMAIN\\user形式の構文にする必要があります。"
11222
11295
 
11223
- #: ../lib/puppet/util/windows/adsi.rb:156
11296
+ #: ../lib/puppet/util/windows/adsi.rb:158
11224
11297
  msgid "Could not resolve name: %{name}"
11225
11298
  msgstr "名前: %{name}を解決できませんでした。"
11226
11299
 
11227
- #: ../lib/puppet/util/windows/adsi.rb:214
11300
+ #: ../lib/puppet/util/windows/adsi.rb:216
11228
11301
  msgid ""
11229
11302
  "Puppet is not able to create/delete domain users with the user resource."
11230
11303
  msgstr "Puppetはユーザリソースを持つドメインユーザを作成/削除できません。 "
11231
11304
 
11232
- #: ../lib/puppet/util/windows/adsi.rb:219
11305
+ #: ../lib/puppet/util/windows/adsi.rb:221
11233
11306
  msgid "User update failed: %{e}"
11234
11307
  msgstr "ユーザ更新に失敗しました: %{e}"
11235
11308
 
11236
- #: ../lib/puppet/util/windows/adsi.rb:314
11309
+ #: ../lib/puppet/util/windows/adsi.rb:316
11237
11310
  msgid "Cannot create user if group '%{name}' exists."
11238
11311
  msgstr "グループ'%{name}'が存在する場合はユーザを作成できません。"
11239
11312
 
11240
- #: ../lib/puppet/util/windows/adsi.rb:328
11313
+ #: ../lib/puppet/util/windows/adsi.rb:330
11241
11314
  msgid "Failed to get user name"
11242
11315
  msgstr "ユーザ名の取得に失敗しました。"
11243
11316
 
11244
- #: ../lib/puppet/util/windows/adsi.rb:406
11317
+ #: ../lib/puppet/util/windows/adsi.rb:408
11245
11318
  msgid "Cannot delete user profile for '%{sid}' prior to Vista SP1"
11246
11319
  msgstr "Vista SP1以前の'%{sid}'のユーザプロファイルは削除できません。"
11247
11320
 
11248
- #: ../lib/puppet/util/windows/adsi.rb:444
11321
+ #: ../lib/puppet/util/windows/adsi.rb:446
11249
11322
  msgid ""
11250
11323
  "Puppet is not able to create/delete domain groups with the group resource."
11251
11324
  msgstr "Puppetはグループリソースを持つドメイングループを作成/削除できません。 "
11252
11325
 
11253
- #: ../lib/puppet/util/windows/adsi.rb:449
11326
+ #: ../lib/puppet/util/windows/adsi.rb:451
11254
11327
  msgid "Group update failed: %{error}"
11255
11328
  msgstr "グループ更新に失敗しました: %{error}"
11256
11329
 
11257
- #: ../lib/puppet/util/windows/adsi.rb:500
11330
+ #: ../lib/puppet/util/windows/adsi.rb:502
11258
11331
  msgid "Cannot create group if user '%{name}' exists."
11259
11332
  msgstr "ユーザ'%{name}'が存在する場合はグループを作成できません。"
11260
11333
 
@@ -11319,23 +11392,23 @@ msgstr "out_bufferが必要です。"
11319
11392
  msgid "Failed to call GetLongPathName"
11320
11393
  msgstr "GetLongPathNameのコールに失敗しました。"
11321
11394
 
11322
- #: ../lib/puppet/util/windows/principal.rb:67
11323
- #: ../lib/puppet/util/windows/principal.rb:74
11324
- msgid "Failed to call LookupAccountNameW"
11325
- msgstr "LookupAccountNameWのコールに失敗しました。"
11395
+ #: ../lib/puppet/util/windows/principal.rb:68
11396
+ #: ../lib/puppet/util/windows/principal.rb:75
11397
+ msgid "Failed to call LookupAccountNameW with account: %{account_name}"
11398
+ msgstr "アカウントが%{account_name}であるLookupAccountNameWのコールに失敗しました。"
11326
11399
 
11327
11400
  #. TRANSLATORS `lookup_account_sid` is a variable name and should not be
11328
11401
  #. translated
11329
- #: ../lib/puppet/util/windows/principal.rb:97
11402
+ #: ../lib/puppet/util/windows/principal.rb:98
11330
11403
  msgid ""
11331
11404
  "Byte array for lookup_account_sid must not be nil and must be at least 1 "
11332
11405
  "byte long"
11333
11406
  msgstr "lookup_account_sidのバイト配列は空にする必要があり、1バイト以上の長さでなければなりません。 "
11334
11407
 
11335
- #: ../lib/puppet/util/windows/principal.rb:119
11336
- #: ../lib/puppet/util/windows/principal.rb:126
11337
- msgid "Failed to call LookupAccountSidW"
11338
- msgstr "LookupAccountSidWのコールに失敗しました。"
11408
+ #: ../lib/puppet/util/windows/principal.rb:120
11409
+ #: ../lib/puppet/util/windows/principal.rb:127
11410
+ msgid "Failed to call LookupAccountSidW with bytes: %{sid_bytes}"
11411
+ msgstr "バイトが%{sid_bytes}であるLookupAccountSidWのコールに失敗しました。"
11339
11412
 
11340
11413
  #: ../lib/puppet/util/windows/process.rb:24
11341
11414
  msgid "Failed to get child process exit code"
@@ -11416,7 +11489,7 @@ msgstr "ボリューム情報の取得に失敗しました。"
11416
11489
 
11417
11490
  #: ../lib/puppet/util/windows/security.rb:383
11418
11491
  #: ../lib/puppet/util/windows/security.rb:400
11419
- #: ../lib/puppet/util/windows/sid.rb:125 ../lib/puppet/util/windows/sid.rb:187
11492
+ #: ../lib/puppet/util/windows/sid.rb:154 ../lib/puppet/util/windows/sid.rb:216
11420
11493
  #: ../lib/puppet/util/windows/user.rb:45
11421
11494
  msgid "Invalid SID"
11422
11495
  msgstr "無効なSID"
@@ -11459,19 +11532,19 @@ msgstr "ACLの初期化に失敗しました。"
11459
11532
  msgid "Failed to set security information"
11460
11533
  msgstr "セキュリティ情報の設定に失敗しました。"
11461
11534
 
11462
- #: ../lib/puppet/util/windows/sid.rb:92
11535
+ #: ../lib/puppet/util/windows/sid.rb:93
11463
11536
  msgid "Octet string must be an array of bytes"
11464
11537
  msgstr "オクテット文字列はバイトの配列でなければなりません。"
11465
11538
 
11466
- #: ../lib/puppet/util/windows/sid.rb:131
11539
+ #: ../lib/puppet/util/windows/sid.rb:160
11467
11540
  msgid "Failed to convert binary SID"
11468
11541
  msgstr "バイナリSIDの変換に失敗しました。"
11469
11542
 
11470
- #: ../lib/puppet/util/windows/sid.rb:136
11543
+ #: ../lib/puppet/util/windows/sid.rb:165
11471
11544
  msgid "ConvertSidToStringSidW failed to allocate buffer for sid"
11472
11545
  msgstr "ConvertSidToStringSidWがSIDのバッファ割り当てに失敗しました。"
11473
11546
 
11474
- #: ../lib/puppet/util/windows/sid.rb:156
11547
+ #: ../lib/puppet/util/windows/sid.rb:185
11475
11548
  msgid "Failed to convert string SID: %{string_sid}"
11476
11549
  msgstr "文字列SID: %{string_sid}の変換に失敗しました。"
11477
11550