foreman_puppet 1.0.4 → 2.0.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (112) hide show
  1. checksums.yaml +4 -4
  2. data/app/controllers/concerns/foreman_puppet/extensions/api_hostgroups_controller.rb +14 -16
  3. data/app/controllers/concerns/foreman_puppet/{api/import_puppetclasses_common_controller.rb → extensions/api_smart_proxies_controller.rb} +9 -3
  4. data/app/controllers/concerns/foreman_puppet/extensions/api_template_combinations_controller.rb +23 -1
  5. data/app/controllers/concerns/foreman_puppet/extensions/api_v2_hosts_controller.rb +15 -17
  6. data/app/controllers/concerns/foreman_puppet/extensions/hostgroups_controller_extensions.rb +3 -1
  7. data/app/controllers/concerns/foreman_puppet/extensions/hosts_controller_extensions.rb +0 -1
  8. data/app/controllers/concerns/foreman_puppet/extensions/parameters_hostgroup.rb +2 -8
  9. data/app/controllers/foreman_puppet/api/v2/environments_controller.rb +0 -1
  10. data/app/controllers/foreman_puppet/api/v2/hostgroup_classes_controller.rb +1 -1
  11. data/app/controllers/foreman_puppet/puppetclasses_controller.rb +1 -1
  12. data/app/helpers/foreman_puppet/environments_helper.rb +1 -1
  13. data/app/helpers/foreman_puppet/hosts_and_hostgroups_helper.rb +0 -5
  14. data/app/helpers/foreman_puppet/hosts_helper.rb +6 -10
  15. data/app/models/concerns/foreman_puppet/extensions/host.rb +2 -16
  16. data/app/models/concerns/foreman_puppet/extensions/hostgroup.rb +2 -7
  17. data/app/models/concerns/foreman_puppet/extensions/provisioning_template.rb +7 -12
  18. data/app/models/concerns/foreman_puppet/extensions/template_combination.rb +5 -10
  19. data/app/models/foreman_puppet/host_puppet_facet.rb +1 -1
  20. data/app/models/foreman_puppet/hostgroup_puppet_facet.rb +2 -0
  21. data/app/services/foreman_puppet/puppet_class_importer.rb +0 -6
  22. data/app/views/foreman_puppet/api/v2/host_puppet_facets/host_list.json.rabl +3 -0
  23. data/app/views/foreman_puppet/api/v2/hostgroup_puppet_facets/base.json.rabl +2 -0
  24. data/app/views/foreman_puppet/api/v2/hostgroup_puppet_facets/hostgroup_list.json.rabl +3 -0
  25. data/app/views/foreman_puppet/config_groups/index.html.erb +1 -1
  26. data/config/api_routes.rb +1 -9
  27. data/config/initializers/api_reroute.rb +73 -5
  28. data/db/migrate/20101121140000_add_environment_to_template_combinations.foreman_puppet.rb +1 -1
  29. data/db/migrate/20200803113803_migrate_environment_to_puppet_facet.foreman_puppet.rb +2 -0
  30. data/db/migrate/20200803113903_migrate_host_type_in_host_config_groups.foreman_puppet.rb +36 -20
  31. data/db/migrate/20201125113903_migrate_puppetclasses_to_facets.foreman_puppet.rb +0 -8
  32. data/db/migrate/20210924103241_remove_katello_id_from_environments.foreman_puppet.rb +5 -0
  33. data/db/migrate/20211111125003_drop_puppetclasses_direct_references.foreman_puppet.rb +11 -0
  34. data/db/migrate/20211112130803_cleanup_environment_from_core_tables.foreman_puppet.rb +10 -0
  35. data/db/migrate_foreman/{20090722141107_create_environments.rb → 20090722141107_create_environments.foreman_puppet.rb} +3 -3
  36. data/db/migrate_foreman/20090802062223_create_puppetclasses.foreman_puppet.rb +29 -0
  37. data/db/migrate_foreman/20090905150132_create_hostgroups_puppetclasses.foreman_puppet.rb +12 -0
  38. data/db/migrate_foreman/20110412103238_remove_unused_fields_from_puppet_classes.foreman_puppet.rb +9 -0
  39. data/db/migrate_foreman/20110712070522_create_host_class.foreman_puppet.rb +11 -0
  40. data/db/migrate_foreman/20120824142048_add_some_indexes.foreman_puppet.rb +21 -0
  41. data/db/migrate_foreman/{20120905095532_create_environment_classes.rb → 20120905095532_create_environment_classes.foreman_puppet.rb} +2 -2
  42. data/db/migrate_foreman/20121018152459_create_hostgroup_classes.foreman_puppet.rb +11 -0
  43. data/db/migrate_foreman/{20140407161817_create_config_groups.rb → 20140407161817_create_config_groups.foreman_puppet.rb} +0 -0
  44. data/db/migrate_foreman/{20140407162007_create_config_group_classes.rb → 20140407162007_create_config_group_classes.foreman_puppet.rb} +0 -0
  45. data/db/migrate_foreman/{20140407162059_create_host_config_groups.rb → 20140407162059_create_host_config_groups.foreman_puppet.rb} +0 -0
  46. data/db/migrate_foreman/{20161205142618_delete_orphaned_smart_class_parameters.rb → 20161205142618_delete_orphaned_smart_class_parameters.foreman_puppet.rb} +1 -1
  47. data/db/migrate_foreman/{20170109115157_fix_lookup_key_auditable_type.rb → 20170109115157_fix_lookup_key_auditable_type.foreman_puppet.rb} +0 -0
  48. data/db/migrate_foreman/20180816134832_cast_lookup_key_values.foreman_puppet.rb +5 -0
  49. data/db/migrate_foreman/20180831115634_add_uniqueness_to_puppetclass_name.foreman_puppet.rb +24 -0
  50. data/db/migrate_foreman/{20181023112532_add_environment_puppetclass_id.rb → 20181023112532_add_environment_puppetclass_id.foreman_puppet.rb} +1 -1
  51. data/db/migrate_foreman/{20181224174419_add_index_to_environment_class_by_lookup_key_and_puppetclass.rb → 20181224174419_add_index_to_environment_class_by_lookup_key_and_puppetclass.foreman_puppet.rb} +0 -0
  52. data/lib/foreman_puppet/engine.rb +4 -36
  53. data/lib/foreman_puppet/register.rb +49 -45
  54. data/lib/foreman_puppet/version.rb +1 -1
  55. data/lib/foreman_puppet.rb +1 -6
  56. data/locale/ca/LC_MESSAGES/foreman_puppet.mo +0 -0
  57. data/locale/ca/foreman_puppet.po +760 -0
  58. data/locale/cs_CZ/LC_MESSAGES/foreman_puppet.mo +0 -0
  59. data/locale/cs_CZ/foreman_puppet.edit.po +1085 -0
  60. data/locale/cs_CZ/foreman_puppet.po +823 -0
  61. data/locale/cs_CZ/foreman_puppet.po.time_stamp +0 -0
  62. data/locale/de/LC_MESSAGES/foreman_puppet.mo +0 -0
  63. data/locale/de/foreman_puppet.po +844 -0
  64. data/locale/en/LC_MESSAGES/foreman_puppet.mo +0 -0
  65. data/locale/en/foreman_puppet.edit.po +317 -162
  66. data/locale/en/foreman_puppet.po +119 -8
  67. data/locale/en_GB/LC_MESSAGES/foreman_puppet.mo +0 -0
  68. data/locale/en_GB/foreman_puppet.po +820 -0
  69. data/locale/es/LC_MESSAGES/foreman_puppet.mo +0 -0
  70. data/locale/es/foreman_puppet.po +827 -0
  71. data/locale/foreman_puppet.pot +376 -205
  72. data/locale/fr/LC_MESSAGES/foreman_puppet.mo +0 -0
  73. data/locale/fr/foreman_puppet.po +835 -0
  74. data/locale/gemspec.rb +1 -1
  75. data/locale/gl/LC_MESSAGES/foreman_puppet.mo +0 -0
  76. data/locale/gl/foreman_puppet.po +818 -0
  77. data/locale/it/LC_MESSAGES/foreman_puppet.mo +0 -0
  78. data/locale/it/foreman_puppet.po +822 -0
  79. data/locale/ja/LC_MESSAGES/foreman_puppet.mo +0 -0
  80. data/locale/ja/foreman_puppet.po +830 -0
  81. data/locale/ko/LC_MESSAGES/foreman_puppet.mo +0 -0
  82. data/locale/ko/foreman_puppet.po +819 -0
  83. data/locale/nl_NL/LC_MESSAGES/foreman_puppet.mo +0 -0
  84. data/locale/nl_NL/foreman_puppet.po +823 -0
  85. data/locale/pl/LC_MESSAGES/foreman_puppet.mo +0 -0
  86. data/locale/pl/foreman_puppet.po +822 -0
  87. data/locale/pt_BR/LC_MESSAGES/foreman_puppet.mo +0 -0
  88. data/locale/pt_BR/foreman_puppet.po +826 -0
  89. data/locale/ru/LC_MESSAGES/foreman_puppet.mo +0 -0
  90. data/locale/ru/foreman_puppet.po +827 -0
  91. data/locale/sv_SE/LC_MESSAGES/foreman_puppet.mo +0 -0
  92. data/locale/sv_SE/foreman_puppet.po +822 -0
  93. data/locale/zh_CN/LC_MESSAGES/foreman_puppet.mo +0 -0
  94. data/locale/zh_CN/foreman_puppet.po +831 -0
  95. data/locale/zh_TW/LC_MESSAGES/foreman_puppet.mo +0 -0
  96. data/locale/zh_TW/foreman_puppet.po +821 -0
  97. data/package.json +8 -11
  98. data/test/controllers/foreman_puppet/api/v2/environments_controller_test.rb +0 -231
  99. data/test/controllers/foreman_puppet/api/v2/smart_proxies_controller_test.rb +255 -0
  100. data/test/controllers/foreman_puppet/environments_controller_test.rb +2 -2
  101. data/test/controllers/foreman_puppet/hosts_controller_test.rb +0 -1
  102. data/test/factories/foreman_puppet_factories.rb +0 -2
  103. data/test/helpers/foreman_puppet/hosts_and_hostgroups_helper_test.rb +70 -31
  104. data/test/integration/foreman_puppet/dashboard_js_test.rb +31 -0
  105. data/test/integration/foreman_puppet/host_js_test.rb +0 -1
  106. data/test/integration/foreman_puppet/puppetclass_js_test.rb +1 -1
  107. data/test/models/foreman_puppet/host_puppet_facet_test.rb +7 -1
  108. data/test/models/foreman_puppet/host_test.rb +26 -0
  109. data/test/models/foreman_puppet/user_test.rb +1 -5
  110. data/test/unit/foreman_puppet/puppet_class_importer_test.rb +1 -1
  111. metadata +67 -15
  112. data/db/migrate_foreman/20180816134832_cast_lookup_key_values.rb +0 -35
@@ -0,0 +1,830 @@
1
+ # SOME DESCRIPTIVE TITLE.
2
+ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
3
+ # This file is distributed under the same license as the foreman_puppet package.
4
+ # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
5
+ #
6
+ # Translators:
7
+ # 0868a4d1af5275b3f70b0a6dac4c99a4, 2021
8
+ # Bryan Kearney <bryan.kearney@gmail.com>, 2021
9
+ # 山田 修司 🍣 Shuji Yamada <uzy.exe@gmail.com>, 2021
10
+ # Transifex Bot <>, 2021
11
+ # Amit Upadhye <aupadhye@redhat.com>, 2021
12
+ #
13
+ #, fuzzy
14
+ msgid ""
15
+ msgstr ""
16
+ "Project-Id-Version: foreman_puppet 2.0.0.alpha.2\n"
17
+ "Report-Msgid-Bugs-To: \n"
18
+ "PO-Revision-Date: 2021-02-03 16:30+0000\n"
19
+ "Last-Translator: Amit Upadhye <aupadhye@redhat.com>, 2021\n"
20
+ "Language-Team: Japanese (https://www.transifex.com/foreman/teams/114/ja/)\n"
21
+ "MIME-Version: 1.0\n"
22
+ "Content-Type: text/plain; charset=UTF-8\n"
23
+ "Content-Transfer-Encoding: 8bit\n"
24
+ "Language: ja\n"
25
+ "Plural-Forms: nplurals=1; plural=0;\n"
26
+
27
+ msgid " Remove"
28
+ msgstr " 削除"
29
+
30
+ msgid "%s is not in environment"
31
+ msgstr "%s は環境内にありません"
32
+
33
+ msgid "%s out of sync disabled"
34
+ msgstr "%s の非同期切り替えを無効にしました"
35
+
36
+ msgid "%{model} with id '%{id}' was not found"
37
+ msgstr "id '%{id}' の %{model} が見つかりませんでした"
38
+
39
+ msgid "%{name} has %{num_tag} class"
40
+ msgid_plural "%{name} has %{num_tag} classes"
41
+ msgstr[0] "%{name} には %{num_tag} クラスが含まれます"
42
+
43
+ msgid "%{puppetclass} does not belong to the %{environment} environment"
44
+ msgstr "%{puppetclass} は %{environment} 環境に属していません"
45
+
46
+ msgid "*Clear environment*"
47
+ msgstr "*環境をクリア*"
48
+
49
+ msgid "*Inherit from host group*"
50
+ msgstr "*ホストグループから継承*"
51
+
52
+ msgid ""
53
+ "<b>Description:</b> %{desc}<br/>\n"
54
+ " <b>Type:</b> %{type}<br/>\n"
55
+ " <b>Matcher:</b> %{matcher}<br/>\n"
56
+ " <b>Inherited value:</b> %{inherited_value}"
57
+ msgstr ""
58
+ "<b>説明:</b> %{desc}<br/>\n"
59
+ " <b>タイプ:</b> %{type}<br/>\n"
60
+ " <b>Matcher:</b> %{matcher}<br/>\n"
61
+ " <b>継承値:</b> %{inherited_value}"
62
+
63
+ msgid "A config group provides a one-step method of associating many Puppet classes to either a host or host group. Typically this would be used to add a particular application profile or stack in one step."
64
+ msgstr "設定グループは、多くの Puppet クラスをホストまたはホストグループのいずれかに関連付けるワンステップの方法を提供します。通常、これは特定のアプリケーションプロファイルまたはスタックを 1 つのステップで追加するために使用されます。"
65
+
66
+ msgid "Action with sub plans"
67
+ msgstr "サブプランによるアクション"
68
+
69
+ msgid "Actions"
70
+ msgstr "アクション"
71
+
72
+ msgid "Add"
73
+ msgstr "追加"
74
+
75
+ msgid "Add Combination"
76
+ msgstr "組み合わせの追加"
77
+
78
+ msgid "Add a Puppet class to host"
79
+ msgstr "Puppet クラスをホストに追加"
80
+
81
+ msgid "Add a Puppet class to host group"
82
+ msgstr "Puppet クラスをホストグループに追加"
83
+
84
+ msgid "Add a template combination"
85
+ msgstr "テンプレートの組み合わせの追加"
86
+
87
+ msgid "Add:"
88
+ msgstr "追加:"
89
+
90
+ msgid "All environments - (not filtered)"
91
+ msgstr "すべての環境 - (フィルターなし)"
92
+
93
+ msgid "Allow assigning Puppet environments and classes to the Foreman Hosts."
94
+ msgstr ""
95
+
96
+ msgid "Available Classes"
97
+ msgstr "利用可能なクラス"
98
+
99
+ msgid "Available Config Groups"
100
+ msgstr "選択可能な設定グループ"
101
+
102
+ msgid "Can't find a valid Foreman Proxy with a Puppet feature"
103
+ msgstr "Puppet 機能を持つ有効な Foreman プロキシーが見つかりません"
104
+
105
+ msgid "Can't find a valid Proxy with a Puppet feature"
106
+ msgstr "Puppet 機能を持つ有効なプロキシーが見つかりません"
107
+
108
+ msgid "Cancel"
109
+ msgstr "取り消し"
110
+
111
+ msgid "Change Environment"
112
+ msgstr "環境の変更"
113
+
114
+ msgid "Change Puppet Master"
115
+ msgstr "Puppet マスターの変更"
116
+
117
+ msgid "Changed environments"
118
+ msgstr "変更済みの環境"
119
+
120
+ msgid "Check/Uncheck all"
121
+ msgstr "すべて選択/選択解除"
122
+
123
+ msgid "Check/Uncheck all %s changes"
124
+ msgstr "%s のすべての変更を選択/選択解除"
125
+
126
+ msgid "Check/Uncheck new"
127
+ msgstr "新規の選択/選択解除"
128
+
129
+ msgid "Check/Uncheck obsolete"
130
+ msgstr "旧版の選択/選択解除"
131
+
132
+ msgid "Check/Uncheck updated"
133
+ msgstr "更新版の選択/選択解除"
134
+
135
+ msgid "Classes"
136
+ msgstr "クラス"
137
+
138
+ msgid "Click to add %s"
139
+ msgstr "クリックして %s を追加"
140
+
141
+ msgid "Click to remove %s"
142
+ msgstr "クリックして %s を削除"
143
+
144
+ msgid "Click to remove config group"
145
+ msgstr "クリックして設定グループを削除"
146
+
147
+ msgid "Config Groups"
148
+ msgstr "設定グループ"
149
+
150
+ msgid "Config Management"
151
+ msgstr "設定管理"
152
+
153
+ msgid "Create Config Group"
154
+ msgstr "設定グループの作成"
155
+
156
+ msgid "Create Environment"
157
+ msgstr "環境の作成"
158
+
159
+ msgid "Create Puppet Environment"
160
+ msgstr "Puppet 環境の作成"
161
+
162
+ msgid "Create a Puppet class"
163
+ msgstr "Puppet クラスの作成"
164
+
165
+ msgid "Create a config group"
166
+ msgstr "設定グループの作成"
167
+
168
+ msgid "Create an environment"
169
+ msgstr "環境の作成"
170
+
171
+ msgid "Create an override value for a specific smart class parameter"
172
+ msgstr "特定スマートクラスパラメーターの上書き値を作成"
173
+
174
+ msgid "Default Puppet environment"
175
+ msgstr "デフォルトの Puppet 環境"
176
+
177
+ msgid "Default value"
178
+ msgstr "デフォルト値"
179
+
180
+ msgid "Delete %s?"
181
+ msgstr "%s を削除しますか?"
182
+
183
+ msgid "Delete a Puppet class"
184
+ msgstr "Puppet クラスの削除"
185
+
186
+ msgid "Delete a config group"
187
+ msgstr "設定グループの削除"
188
+
189
+ msgid "Delete an environment"
190
+ msgstr "環境の削除"
191
+
192
+ msgid "Delete an override value for a specific smart class parameter"
193
+ msgstr "特定スマートクラスパラメーターの上書き値の削除"
194
+
195
+ msgid "Deleted environment"
196
+ msgstr "削除済みの環境"
197
+
198
+ msgid "Deleted environment %{env} and %{pcs}"
199
+ msgstr "削除済みの環境 %{env} および %{pcs}"
200
+
201
+ msgid "Deprecated in favor of host/puppet_attributes/config_group_ids"
202
+ msgstr "host/puppet_attributes/config_group_ids を優先して非推奨となりました"
203
+
204
+ msgid "Deprecated in favor of host/puppet_attributes/environment_id"
205
+ msgstr "host/puppet_attributes/environment_id を優先して非推奨となりました"
206
+
207
+ msgid "Deprecated in favor of host/puppet_attributes/puppetclass_ids"
208
+ msgstr "host/puppet_attributes/puppetclass_ids を優先して非推奨となりました"
209
+
210
+ msgid "Deprecated in favor of hostgroup/puppet_attributes/config_group_ids"
211
+ msgstr "hostgroup/puppet_attributes/config_group_ids を優先して非推奨となりました"
212
+
213
+ msgid "Deprecated in favor of hostgroup/puppet_attributes/environment_id"
214
+ msgstr "hostgroup/puppet_attributes/environment_id を優先して非推奨となりました"
215
+
216
+ msgid "Deprecated in favor of hostgroup/puppet_attributes/puppetclass_ids"
217
+ msgstr "hostgroup/puppet_attributes/puppetclass_ids を優先して非推奨となりました"
218
+
219
+ msgid "Description of smart class"
220
+ msgstr "スマートクラスの説明"
221
+
222
+ msgid "Disable host configuration status turning to out of sync for %s after report does not arrive within configured interval"
223
+ msgstr "設定した間隔でレポートが到達しない場合に、%s のホスト設定ステータスが非同期に切り替わらないように無効にします"
224
+
225
+ msgid "Display hidden values"
226
+ msgstr "非表示の値の表示"
227
+
228
+ msgid "Duration in minutes after servers reporting via Puppet are classed as out of sync."
229
+ msgstr "Puppet 経由で報告するサーバーが非同期として分類されるまでの期間 (分単位)。"
230
+
231
+ msgid "ENC environment"
232
+ msgstr "ENC 環境"
233
+
234
+ msgid "Edit %s"
235
+ msgstr "%s の編集"
236
+
237
+ msgid "Edit Puppet Class %s"
238
+ msgstr "Puppet クラス %s の編集"
239
+
240
+ msgid "Empty environment"
241
+ msgstr "空の環境"
242
+
243
+ msgid "Environment"
244
+ msgstr "環境"
245
+
246
+ msgid "Environment only"
247
+ msgstr "環境のみ"
248
+
249
+ msgid "Environments"
250
+ msgstr "環境"
251
+
252
+ msgid "Environment|Name"
253
+ msgstr "名前"
254
+
255
+ msgid "Facts"
256
+ msgstr "ファクト"
257
+
258
+ msgid "Failed to import %{klass} for %{name}: doesn't exists in our database - ignoring"
259
+ msgstr "%{name} の %{klass} のインポートに失敗しました: データベースに存在しません - 無視します"
260
+
261
+ msgid "Failed to set %{proxy_type} proxy for %{host}."
262
+ msgstr "%{host} に %{proxy_type} プロキシーを設定できませんでした。"
263
+
264
+ msgid "Failed to update environments and Puppet classes from the on-disk Puppet installation: %s"
265
+ msgstr "オンディスクの Puppet インストールからの環境と Puppet クラスの更新に失敗しました: %s"
266
+
267
+ msgid "Failed to update the environments and Puppet classes from the on-disk puppet installation: %s"
268
+ msgstr "オンディスクの Puppet インストールから環境および Puppet クラスを更新できませんでした: %s"
269
+
270
+ msgid "Filter by name"
271
+ msgstr "名前でフィルター"
272
+
273
+ msgid "Filter classes"
274
+ msgstr "クラスのフィルター"
275
+
276
+ msgid "Foreman will default to this puppet environment if it cannot auto detect one"
277
+ msgstr "Foreman は、自動検出できない場合にこの puppet 環境にデフォルト設定されます"
278
+
279
+ msgid "Foreman will explicitly set the puppet environment in the ENC yaml output. This will avoid conflicts between the environment in puppet.conf and the environment set in Foreman"
280
+ msgstr "Foreman は ENC YAML 出力で puppet 環境を明示的に設定します。これにより、puppet.conf の環境と Foreman で設定される環境間の競合を避けられます"
281
+
282
+ msgid "Foreman will not send this parameter in classification output"
283
+ msgstr "Foreman では、このパラメーターは分類出力で送信されません。"
284
+
285
+ msgid "Foreman will not send this parameter in classification output.Puppet will use the value defined in the Puppet manifest for this parameter"
286
+ msgstr "Foreman はこのパラメーターを分類出力で送信しません。Puppet はこのパラメーターについて Puppet マニフェストで定義された値を使用します"
287
+
288
+ msgid "Foreman will update a host's environment from its facts"
289
+ msgstr "Foreman はホスト環境をそのファクトで更新します"
290
+
291
+ msgid "General"
292
+ msgstr "全般"
293
+
294
+ msgid "Host Groups"
295
+ msgstr "ホストグループ"
296
+
297
+ msgid "Host group and Environment"
298
+ msgstr "ホストグループと環境"
299
+
300
+ msgid "Host group only"
301
+ msgstr "ホストグループのみ"
302
+
303
+ msgid "Host groups"
304
+ msgstr "ホストグループ"
305
+
306
+ msgid "Hostgroup"
307
+ msgstr "ホストグループ"
308
+
309
+ msgid "Hosts"
310
+ msgstr "ホスト"
311
+
312
+ msgid "Hosts managed:"
313
+ msgstr "管理されるホスト:"
314
+
315
+ msgid "ID of Puppet class"
316
+ msgstr "Puppet クラスの ID"
317
+
318
+ msgid "ID of Puppet environment"
319
+ msgstr ""
320
+
321
+ msgid "ID of Puppetclass"
322
+ msgstr "Puppet クラスの ID"
323
+
324
+ msgid "ID of associated puppet Environment"
325
+ msgstr "関連する Puppet 環境の ID"
326
+
327
+ msgid "ID of environment"
328
+ msgstr "環境の ID"
329
+
330
+ msgid "ID of host"
331
+ msgstr "ホストの ID"
332
+
333
+ msgid "ID of host group"
334
+ msgstr "ホストグループの ID"
335
+
336
+ msgid "ID of puppet environment"
337
+ msgstr "Puppet 環境の ID"
338
+
339
+ msgid "IDs of associated ConfigGroups"
340
+ msgstr "関連付けられた設定グループの ID"
341
+
342
+ msgid "IDs of associated Puppetclasses"
343
+ msgstr "関連する Puppet クラスの ID"
344
+
345
+ msgid "If true, will raise an error if there is no default value and no matcher provide a value"
346
+ msgstr "true の場合は、デフォルト値がなく、Matcher が値を提供しないときにエラーが発生します"
347
+
348
+ msgid "Ignored classes in the environments: %s"
349
+ msgstr "環境内で無視されたクラス: %s"
350
+
351
+ msgid "Ignored environment"
352
+ msgstr "無視された環境"
353
+
354
+ msgid "Ignored environment names resulting in booleans found. Please quote strings like true/false and yes/no in config/ignored_environments.yml"
355
+ msgstr "環境名を無視したブール値が見つかりました。config/ignored_environments.yml の true/false および yes/no などの文字列を引用符で囲んでください"
356
+
357
+ msgid "Ignored environments: %s"
358
+ msgstr "無視された環境: %s"
359
+
360
+ msgid "Ignored:"
361
+ msgstr "無視:"
362
+
363
+ msgid "Import"
364
+ msgstr "インポート"
365
+
366
+ msgid "Import Puppet classes"
367
+ msgstr "Puppet クラスのインポート"
368
+
369
+ msgid "Import classes from %s"
370
+ msgstr "%s からのクラスのインポート"
371
+
372
+ msgid "Import environments from %s"
373
+ msgstr "%s からの環境のインポート"
374
+
375
+ msgid "Import facts"
376
+ msgstr "ファクトのインポート"
377
+
378
+ msgid "Import puppet classes from puppet proxy"
379
+ msgstr "Puppet プロキシーから Puppet クラスをインポート"
380
+
381
+ msgid "Import puppet classes from puppet proxy for an environment"
382
+ msgstr "環境の Puppet プロキシーから Puppet クラスをインポート"
383
+
384
+ msgid "Include default value when merging all matching values"
385
+ msgstr "一致するすべての値をマージするときにデフォルト値を含めます"
386
+
387
+ msgid "Included Classes"
388
+ msgstr "組み込み済みのクラス"
389
+
390
+ msgid "Included Config Groups"
391
+ msgstr "組み込まれた設定グループ"
392
+
393
+ msgid "Inherited Classes from %s"
394
+ msgstr "%s から継承されたクラス"
395
+
396
+ msgid "Invalid proxy selected!"
397
+ msgstr "無効なプロキシーが選択されました!"
398
+
399
+ msgid "List all Puppet class IDs for host"
400
+ msgstr "ホストのすべての Puppet クラス ID を一覧表示"
401
+
402
+ msgid "List all Puppet class IDs for host group"
403
+ msgstr "ホストグループのすべての Puppet クラス ID を一覧表示"
404
+
405
+ msgid "List all Puppet classes"
406
+ msgstr "すべての Puppet クラスを一覧表示する"
407
+
408
+ msgid "List all Puppet classes for a host"
409
+ msgstr "ホストのすべての Puppet クラスを一覧表示"
410
+
411
+ msgid "List all Puppet classes for a host group"
412
+ msgstr "ホストグループのすべての Puppet クラスを一覧表示"
413
+
414
+ msgid "List all Puppet classes for an environment"
415
+ msgstr "環境のすべての Puppet クラスを一覧表示"
416
+
417
+ msgid "List all environments"
418
+ msgstr "すべての環境を一覧表示"
419
+
420
+ msgid "List all host groups for a Puppet class"
421
+ msgstr "Puppet クラスのすべてのホストグループを一覧表示"
422
+
423
+ msgid "List all smart class parameters"
424
+ msgstr "すべてのスマートクラスパラメーターを一覧表示"
425
+
426
+ msgid "List environments of Puppet class"
427
+ msgstr "Puppet クラスの環境を一覧表示"
428
+
429
+ msgid "List environments per location"
430
+ msgstr "ロケーションごとに環境を一覧表示"
431
+
432
+ msgid "List environments per organization"
433
+ msgstr "組織ごとに環境を一覧表示"
434
+
435
+ msgid "List hosts per environment"
436
+ msgstr "環境ごとにホストを一覧表示"
437
+
438
+ msgid "List of config groups"
439
+ msgstr "設定グループの一覧"
440
+
441
+ msgid "List of override values for a specific smart class parameter"
442
+ msgstr "特定スマートクラスパラメーターの上書き値の一覧"
443
+
444
+ msgid "List of smart class parameters for a specific Puppet class"
445
+ msgstr "特定 Puppet クラスのスマートクラスパラメーターの一覧"
446
+
447
+ msgid "List of smart class parameters for a specific environment"
448
+ msgstr "特定の環境のスマートクラスパラメーターの一覧"
449
+
450
+ msgid "List of smart class parameters for a specific environment/Puppet class combination"
451
+ msgstr "特定の環境/Puppet クラスの組み合わせ用のスマートクラスパラメーターの一覧"
452
+
453
+ msgid "List of smart class parameters for a specific host"
454
+ msgstr "特定ホストのスマートクラスパラメーターの一覧"
455
+
456
+ msgid "List of smart class parameters for a specific host group"
457
+ msgstr "特定ホストグループのスマートクラスパラメーターの一覧"
458
+
459
+ msgid "List template combination"
460
+ msgstr "テンプレートの組み合わせを一覧表示"
461
+
462
+ msgid "Loading parameters..."
463
+ msgstr "パラメーターのロード中..."
464
+
465
+ msgid "Locations"
466
+ msgstr "ロケーション"
467
+
468
+ msgid "Merge all matching values (only array/hash type)"
469
+ msgstr "一致するすべての値のマージ (配列/ハッシュタイプのみ)"
470
+
471
+ msgid "Name"
472
+ msgstr "名前"
473
+
474
+ msgid "New"
475
+ msgstr "新規"
476
+
477
+ msgid "No changes to your environments detected"
478
+ msgstr "環境への変更が検出されませんでした"
479
+
480
+ msgid "No environment selected!"
481
+ msgstr "環境が選択されていません!"
482
+
483
+ msgid "No environments found"
484
+ msgstr "環境が見つかりません"
485
+
486
+ msgid "No parameters to override for Puppet class %s"
487
+ msgstr "Puppet クラス %s で上書きするパラメーターはありません"
488
+
489
+ msgid "No proxy found to import classes from, ensure that the smart proxy has the Puppet feature enabled."
490
+ msgstr "クラスのインポート元となるプロキシーが見つかりません。Smart Proxy で Puppet 機能が有効であることを確認してください。"
491
+
492
+ msgid "No proxy selected!"
493
+ msgstr "プロキシーが選択されていません!"
494
+
495
+ msgid "No smart proxy was found to import environments from, ensure that at least one smart proxy is registered with the 'puppet' feature"
496
+ msgstr "環境のインポート元となる Smart Proxy が見つかりませんでした。1 つ以上の Smart Proxy が「Puppet」機能で登録されていることを確認してください"
497
+
498
+ msgid "None"
499
+ msgstr "なし"
500
+
501
+ msgid "Not authorized to edit classes"
502
+ msgstr "クラスを編集する権限がありません"
503
+
504
+ msgid "Notice"
505
+ msgstr "通知"
506
+
507
+ msgid "Number of Overrides"
508
+ msgstr "上書き数"
509
+
510
+ msgid "Number of classes"
511
+ msgstr "クラスの数"
512
+
513
+ msgid "Obsolete"
514
+ msgstr "旧版"
515
+
516
+ msgid "Omit"
517
+ msgstr "省略"
518
+
519
+ msgid "Omit from classification output"
520
+ msgstr "分類出力からの省略"
521
+
522
+ msgid "Operating System"
523
+ msgstr "オペレーティングシステム"
524
+
525
+ msgid "Operating system default"
526
+ msgstr "オペレーティングシステムのデフォルト"
527
+
528
+ msgid "Operation"
529
+ msgstr "操作"
530
+
531
+ msgid "Optional comma-delimited stringcontaining either 'new', 'updated', or 'obsolete'that is used to limit the imported Puppet classes"
532
+ msgstr "インポートされた Puppet クラスを制限するために使用される '新規'、'更新済み'、または '旧版' のいずれかが含まれる、オプションのコンマ区切りの文字列"
533
+
534
+ msgid "Optional parameter without value.<br/><i>Still managed by Foreman, the value will be empty.</i><br/>"
535
+ msgstr "値なしの任意パラメーターです。<br/><i>引き続き Foreman により管理されます。値は空白になります。</i><br/>"
536
+
537
+ msgid "Organizations"
538
+ msgstr "組織"
539
+
540
+ msgid "Original value info"
541
+ msgstr "元の値の情報"
542
+
543
+ msgid "Overridden"
544
+ msgstr "上書き済み"
545
+
546
+ msgid "Override all parameters"
547
+ msgstr "すべてのパラメーターの上書き"
548
+
549
+ msgid "Override match"
550
+ msgstr "一致候補の上書き"
551
+
552
+ msgid "Override this value"
553
+ msgstr "この値の上書き"
554
+
555
+ msgid "Override value, required if omit is false"
556
+ msgstr "上書き値 (omit が false の場合に必要)"
557
+
558
+ msgid "Parameter"
559
+ msgstr "パラメーター"
560
+
561
+ msgid "Parameterized class support permits detecting, importing, and supplying parameters directly to classes which support it, via the ENC and depending on a set of rules (Smart Matchers)."
562
+ msgstr "パラメーター化クラスのサポートでは、ENC を介して一連のルール (Smart Matcher) に従い、パラメーターを検出してインポートし、そのパラメーターをサポートするクラスに直接渡すことができます。"
563
+
564
+ msgid "Parameters"
565
+ msgstr "パラメーター"
566
+
567
+ msgid "Please select an environment first"
568
+ msgstr "まず環境を選択してください"
569
+
570
+ msgid "Puppet"
571
+ msgstr "Puppet"
572
+
573
+ msgid "Puppet CA"
574
+ msgstr "Puppet CA"
575
+
576
+ msgid "Puppet Class"
577
+ msgstr "Puppet クラス"
578
+
579
+ msgid "Puppet Class Parameters"
580
+ msgstr "Puppet クラスパラメーター"
581
+
582
+ msgid "Puppet Classes"
583
+ msgstr "Puppet クラス"
584
+
585
+ msgid "Puppet ENC"
586
+ msgstr "Puppet ENC"
587
+
588
+ msgid "Puppet Environment"
589
+ msgstr "Puppet 環境"
590
+
591
+ msgid "Puppet Environments"
592
+ msgstr "Puppet 環境"
593
+
594
+ msgid "Puppet Modules"
595
+ msgstr "Puppet モジュール"
596
+
597
+ msgid "Puppet YAML"
598
+ msgstr "Puppet YAML"
599
+
600
+ msgid "Puppet environments"
601
+ msgstr "Puppet 環境"
602
+
603
+ msgid "Puppet external nodes YAML dump"
604
+ msgstr "Puppet 外部ノード YAML ダンプ"
605
+
606
+ msgid "Puppet interval"
607
+ msgstr "Puppet の間隔"
608
+
609
+ msgid "Puppet parameter"
610
+ msgstr "Puppet パラメーター"
611
+
612
+ msgid "Puppetclass|Name"
613
+ msgstr "名前"
614
+
615
+ msgid "Remote action:"
616
+ msgstr "リモートアクション:"
617
+
618
+ msgid "Remove"
619
+ msgstr "削除"
620
+
621
+ msgid "Remove Combination"
622
+ msgstr "組み合わせの削除"
623
+
624
+ msgid "Remove a Puppet class from host"
625
+ msgstr "ホストから Puppet クラスを削除"
626
+
627
+ msgid "Remove a Puppet class from host group"
628
+ msgstr "ホストグループからの Puppet クラスの削除"
629
+
630
+ msgid "Remove duplicate values (only array type)"
631
+ msgstr "重複する値の削除 (配列タイプのみ)"
632
+
633
+ msgid "Remove this override"
634
+ msgstr "この上書きの削除"
635
+
636
+ msgid "Remove:"
637
+ msgstr "削除:"
638
+
639
+ msgid "Required parameter without value.<br/><b>Please override!</b><br/>"
640
+ msgstr "値なしの必須パラメーターです。<br/><b>上書きしてください!</b><br/>"
641
+
642
+ msgid "Select environment"
643
+ msgstr "環境の選択"
644
+
645
+ msgid "Select the changes you want to apply to Foreman"
646
+ msgstr "Foreman に適用する変更を選択してください"
647
+
648
+ msgid "Set parameters to defaults"
649
+ msgstr "パラメーターをデフォルトに設定"
650
+
651
+ msgid "Show a Puppet class"
652
+ msgstr "Puppet クラスの表示"
653
+
654
+ msgid "Show a Puppet class for a host group"
655
+ msgstr "ホストグループの Puppet クラスの表示"
656
+
657
+ msgid "Show a Puppet class for an environment"
658
+ msgstr "環境の Puppet クラスの表示"
659
+
660
+ msgid "Show a Puppet class for host"
661
+ msgstr "ホストの Puppet クラスの表示"
662
+
663
+ msgid "Show a config group"
664
+ msgstr "設定グループの表示"
665
+
666
+ msgid "Show a smart class parameter"
667
+ msgstr "スマートクラスパラメーターの表示"
668
+
669
+ msgid "Show an environment"
670
+ msgstr "環境の表示"
671
+
672
+ msgid "Show an override value for a specific smart class parameter"
673
+ msgstr "特定スマートクラスパラメーターの上書き値を表示"
674
+
675
+ msgid "Show template combination"
676
+ msgstr "テンプレートの組み合わせの表示"
677
+
678
+ msgid "Smart Class Parameter"
679
+ msgstr "スマートクラスパラメーター"
680
+
681
+ msgid "Smart Class Parameters"
682
+ msgstr "スマートクラスパラメーター"
683
+
684
+ msgid "Successfully overridden all parameters of Puppet class %s"
685
+ msgstr "Puppet クラス %s のすべてのパラメーターが正常に上書きされました"
686
+
687
+ msgid "Successfully reset all parameters of Puppet class %s to their default values"
688
+ msgstr "Puppet クラス %s の全パラメーターをデフォルト値に正常にリセットしました"
689
+
690
+ msgid "Successfully updated environments and Puppet classes from the on-disk Puppet installation"
691
+ msgstr "オンディスクの Puppet インストールから環境および Puppet クラスを正常に更新しました"
692
+
693
+ msgid "The %{proxy_type} proxy could not be set for host: %{host_names}."
694
+ msgid_plural "The %{proxy_type} puppet ca proxy could not be set for hosts: %{host_names}"
695
+ msgstr[0] "ホスト: %{host_names} に %{proxy_type} プロキシーを設定できませんでした。"
696
+
697
+ msgid "The %{proxy_type} proxy of the selected hosts was cleared."
698
+ msgstr "選択したホストの %{proxy_type} プロキシーが消去されました。"
699
+
700
+ msgid "The %{proxy_type} proxy of the selected hosts was set to %{proxy_name}"
701
+ msgstr "選択したホストの %{proxy_type} プロキシーが %{proxy_name} に設定されました"
702
+
703
+ msgid "The %{proxy_type} proxy of the selected hosts was set to %{proxy_name}."
704
+ msgstr "選択したホストの %{proxy_type} プロキシーが %{proxy_name} に設定されました。"
705
+
706
+ msgid "The class could not be saved because of an error in one of the class parameters."
707
+ msgstr "クラスパラメーターのいずれかにエラーがあるため、このクラスは保存できませんでした。"
708
+
709
+ msgid "The final entry, Operating System default, can be set by editing the %s page."
710
+ msgstr "最終エントリーのオペレーティングシステムのデフォルトは、%s ページを編集して設定できます。"
711
+
712
+ msgid "The order in which values are resolved"
713
+ msgstr "値が解決される順序"
714
+
715
+ msgid "The requested environment cannot be found."
716
+ msgstr ""
717
+
718
+ msgid "There are no puppet environments set up on this puppet master. Please check the puppet master configuration."
719
+ msgstr "この puppet マスターには puppet 環境がセットアップされていません。puppet マスター設定を確認してください。"
720
+
721
+ msgid "This Puppet class has no parameters in its signature."
722
+ msgstr "この Puppet クラスの署名にはパラメーターがありません。"
723
+
724
+ msgid "This will reset parameters of the class %s to their default values. Continue?"
725
+ msgstr "この操作ではクラス %s のパラメーターをデフォルト値にリセットします。続行しますか?"
726
+
727
+ msgid "This will set all parameters of the class %s as overridden. Continue?"
728
+ msgstr "これは、クラス %s のすべてのパラメーターを上書き済みとして設定します。続行しますか?"
729
+
730
+ msgid "To update the class signature, go to the Puppet Classes page and select \"Import\"."
731
+ msgstr "クラス署名を更新するには「Puppet クラス」ページに移動して「インポート」を選択します。"
732
+
733
+ msgid "Toggle"
734
+ msgstr "切り替え"
735
+
736
+ msgid "Total"
737
+ msgstr "合計"
738
+
739
+ msgid "Types of validation values"
740
+ msgstr "検証値のタイプ"
741
+
742
+ msgid "Types of variable values"
743
+ msgstr "変数値のタイプ"
744
+
745
+ msgid "Unable to generate output, Check log files"
746
+ msgstr "出力を生成できません。ログファイルを確認してください"
747
+
748
+ msgid "Update"
749
+ msgstr "更新"
750
+
751
+ msgid "Update a Puppet class"
752
+ msgstr "Puppet クラスの更新"
753
+
754
+ msgid "Update a config group"
755
+ msgstr "設定グループの更新"
756
+
757
+ msgid "Update a smart class parameter"
758
+ msgstr "スマートクラスパラメーターの更新"
759
+
760
+ msgid "Update an environment"
761
+ msgstr "環境の更新"
762
+
763
+ msgid "Update an override value for a specific smart class parameter"
764
+ msgstr "特定スマートクラスパラメーターの上書き値を更新"
765
+
766
+ msgid "Update environment from facts"
767
+ msgstr "ファクトから環境を更新"
768
+
769
+ msgid "Update template combination"
770
+ msgstr "テンプレートの組み合わせの更新"
771
+
772
+ msgid "Update:"
773
+ msgstr "更新:"
774
+
775
+ msgid "Updated"
776
+ msgstr "更新済み"
777
+
778
+ msgid "Updated hosts: changed environment"
779
+ msgstr "更新済みホスト: 変更済み環境"
780
+
781
+ msgid "Used to enforce certain values for the parameter values"
782
+ msgstr "パラメーター値の特定の値を適用するために使用されます"
783
+
784
+ msgid "Valid Host Group and Environment Combinations"
785
+ msgstr "有効なホストグループと環境の組み合わせ"
786
+
787
+ msgid "Value"
788
+ msgstr "値"
789
+
790
+ msgid "Value to use when there is no match"
791
+ msgstr "一致がない場合に使用する値"
792
+
793
+ msgid ""
794
+ "When a Host requests a template (e.g. during provisioning), Foreman \\\n"
795
+ " will select the best match from the available templates of that type, in the \\\n"
796
+ " following order:"
797
+ msgstr ""
798
+ "ホストがテンプレートを要求する際 (例: プロビジョニング時) に、Foreman \\\n"
799
+ " は以下の順序で、該当タイプの利用可能なテンプレートからベストマッチ \\\n"
800
+ " を選択します:"
801
+
802
+ msgid ""
803
+ "When editing a template, you must assign a list \\\n"
804
+ " of operating systems which this template can be used with. Optionally, you can \\\n"
805
+ " restrict a template to a list of host groups and/or environments."
806
+ msgstr ""
807
+ "テンプレートの編集時に、このテンプレートを使用できる \\\n"
808
+ " オペレーティングシステムの一覧を割り当てる必要があります。オプションで、テンプレート \\\n"
809
+ " をホストグループや環境の一覧に制限することができます。"
810
+
811
+ msgid "When enabled the parameter is hidden in the UI"
812
+ msgstr "有効な場合はパラメーターは UI で非表示になります"
813
+
814
+ msgid "Whether the smart class parameter value is managed by Foreman"
815
+ msgstr "スマートクラスパラメーター値が Foreman によって管理されているかどうか"
816
+
817
+ msgid "belongs to config group"
818
+ msgstr "設定グループに属します"
819
+
820
+ msgid "environment id"
821
+ msgstr "環境 ID"
822
+
823
+ msgid "included already from parent"
824
+ msgstr "すでに親から組み込まれています"
825
+
826
+ msgid "must be true to edit the parameter"
827
+ msgstr "パラメーターを編集するには true に設定する必要があります"
828
+
829
+ msgid "with id %{object_id} doesn't exist or is not assigned to proper organization and/or location"
830
+ msgstr "id %{object_id} が存在しないか、適切な組織またはロケーションに割り当てられていません"