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,819 @@
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
+ #
10
+ #, fuzzy
11
+ msgid ""
12
+ msgstr ""
13
+ "Project-Id-Version: foreman_puppet 2.0.0.alpha.2\n"
14
+ "Report-Msgid-Bugs-To: \n"
15
+ "PO-Revision-Date: 2021-02-03 16:30+0000\n"
16
+ "Last-Translator: Bryan Kearney <bryan.kearney@gmail.com>, 2021\n"
17
+ "Language-Team: Korean (https://www.transifex.com/foreman/teams/114/ko/)\n"
18
+ "MIME-Version: 1.0\n"
19
+ "Content-Type: text/plain; charset=UTF-8\n"
20
+ "Content-Transfer-Encoding: 8bit\n"
21
+ "Language: ko\n"
22
+ "Plural-Forms: nplurals=1; plural=0;\n"
23
+
24
+ msgid " Remove"
25
+ msgstr "삭제 "
26
+
27
+ msgid "%s is not in environment"
28
+ msgstr "%s은(는) 환경에 없습니다 "
29
+
30
+ msgid "%s out of sync disabled"
31
+ msgstr ""
32
+
33
+ msgid "%{model} with id '%{id}' was not found"
34
+ msgstr "ID가 '%{id}'인 %{model}이(가) 없습니다."
35
+
36
+ msgid "%{name} has %{num_tag} class"
37
+ msgid_plural "%{name} has %{num_tag} classes"
38
+ msgstr[0] ""
39
+ msgstr[1] ""
40
+
41
+ msgid "%{puppetclass} does not belong to the %{environment} environment"
42
+ msgstr ""
43
+
44
+ msgid "*Clear environment*"
45
+ msgstr "*환경 삭제*"
46
+
47
+ msgid "*Inherit from host group*"
48
+ msgstr "*호스트 그룹에서 상속*"
49
+
50
+ msgid ""
51
+ "<b>Description:</b> %{desc}<br/>\n"
52
+ " <b>Type:</b> %{type}<br/>\n"
53
+ " <b>Matcher:</b> %{matcher}<br/>\n"
54
+ " <b>Inherited value:</b> %{inherited_value}"
55
+ msgstr ""
56
+
57
+ 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."
58
+ msgstr ""
59
+
60
+ msgid "Action with sub plans"
61
+ msgstr "하위 계획이 있는 작업"
62
+
63
+ msgid "Actions"
64
+ msgstr "동작 "
65
+
66
+ msgid "Add"
67
+ msgstr "추가 "
68
+
69
+ msgid "Add Combination"
70
+ msgstr ""
71
+
72
+ msgid "Add a Puppet class to host"
73
+ msgstr "호스트에 Puppet 클래스 추가 "
74
+
75
+ msgid "Add a Puppet class to host group"
76
+ msgstr "호스트 그룹에 Puppet 클래스 추가 "
77
+
78
+ msgid "Add a template combination"
79
+ msgstr "템플릿 조합 추가 "
80
+
81
+ msgid "Add:"
82
+ msgstr "추가:"
83
+
84
+ msgid "All environments - (not filtered)"
85
+ msgstr "모든 환경 - (필터링되지 않음)"
86
+
87
+ msgid "Allow assigning Puppet environments and classes to the Foreman Hosts."
88
+ msgstr ""
89
+
90
+ msgid "Available Classes"
91
+ msgstr "사용 가능한 클래스 "
92
+
93
+ msgid "Available Config Groups"
94
+ msgstr "사용 가능한 설정 그룹 "
95
+
96
+ msgid "Can't find a valid Foreman Proxy with a Puppet feature"
97
+ msgstr "Puppet 기능이 있는 유효한 Foreman Proxy를 찾을 수 없습니다 "
98
+
99
+ msgid "Can't find a valid Proxy with a Puppet feature"
100
+ msgstr ""
101
+
102
+ msgid "Cancel"
103
+ msgstr "취소 "
104
+
105
+ msgid "Change Environment"
106
+ msgstr "환경 변경 "
107
+
108
+ msgid "Change Puppet Master"
109
+ msgstr "Puppet 마스터 변경"
110
+
111
+ msgid "Changed environments"
112
+ msgstr "변경된 환경 "
113
+
114
+ msgid "Check/Uncheck all"
115
+ msgstr "모두 선택/선택 해제 "
116
+
117
+ msgid "Check/Uncheck all %s changes"
118
+ msgstr "전체 %s 변경 선택/선택 해제 "
119
+
120
+ msgid "Check/Uncheck new"
121
+ msgstr "새로운 사항 선택/선택 해제 "
122
+
123
+ msgid "Check/Uncheck obsolete"
124
+ msgstr "이전 버전 선택/ 선택 해제 "
125
+
126
+ msgid "Check/Uncheck updated"
127
+ msgstr "업데이트 선택/선택 해제 "
128
+
129
+ msgid "Classes"
130
+ msgstr "클래스 "
131
+
132
+ msgid "Click to add %s"
133
+ msgstr "클릭하여 %s 추가 "
134
+
135
+ msgid "Click to remove %s"
136
+ msgstr "클릭하여 %s 삭제 "
137
+
138
+ msgid "Click to remove config group"
139
+ msgstr "클릭하여 설정 그룹 삭제 "
140
+
141
+ msgid "Config Groups"
142
+ msgstr ""
143
+
144
+ msgid "Config Management"
145
+ msgstr ""
146
+
147
+ msgid "Create Config Group"
148
+ msgstr ""
149
+
150
+ msgid "Create Environment"
151
+ msgstr ""
152
+
153
+ msgid "Create Puppet Environment"
154
+ msgstr ""
155
+
156
+ msgid "Create a Puppet class"
157
+ msgstr "Puppet 클래스 생성 "
158
+
159
+ msgid "Create a config group"
160
+ msgstr "설정 그룹 생성 "
161
+
162
+ msgid "Create an environment"
163
+ msgstr "환경 생성 "
164
+
165
+ msgid "Create an override value for a specific smart class parameter"
166
+ msgstr "특정 스마트 클래스 매개 변수의 덮어쓰기 값 생성 "
167
+
168
+ msgid "Default Puppet environment"
169
+ msgstr "기본 Puppet 환경"
170
+
171
+ msgid "Default value"
172
+ msgstr "기본값 "
173
+
174
+ msgid "Delete %s?"
175
+ msgstr "%s 을(를) 삭제하시겠습니까?"
176
+
177
+ msgid "Delete a Puppet class"
178
+ msgstr "Puppet 클래스 삭제 "
179
+
180
+ msgid "Delete a config group"
181
+ msgstr "설정 그룹 삭제 "
182
+
183
+ msgid "Delete an environment"
184
+ msgstr "환경 삭제 "
185
+
186
+ msgid "Delete an override value for a specific smart class parameter"
187
+ msgstr "특정 스마트 클랙스 매개 변수의 덮어쓰기 값 삭제 "
188
+
189
+ msgid "Deleted environment"
190
+ msgstr "삭제된 환경 "
191
+
192
+ msgid "Deleted environment %{env} and %{pcs}"
193
+ msgstr "삭제된 환경 %{env} 및 %{pcs}"
194
+
195
+ msgid "Deprecated in favor of host/puppet_attributes/config_group_ids"
196
+ msgstr ""
197
+
198
+ msgid "Deprecated in favor of host/puppet_attributes/environment_id"
199
+ msgstr ""
200
+
201
+ msgid "Deprecated in favor of host/puppet_attributes/puppetclass_ids"
202
+ msgstr ""
203
+
204
+ msgid "Deprecated in favor of hostgroup/puppet_attributes/config_group_ids"
205
+ msgstr ""
206
+
207
+ msgid "Deprecated in favor of hostgroup/puppet_attributes/environment_id"
208
+ msgstr ""
209
+
210
+ msgid "Deprecated in favor of hostgroup/puppet_attributes/puppetclass_ids"
211
+ msgstr ""
212
+
213
+ msgid "Description of smart class"
214
+ msgstr "스마트 클래스 설명"
215
+
216
+ msgid "Disable host configuration status turning to out of sync for %s after report does not arrive within configured interval"
217
+ msgstr ""
218
+
219
+ msgid "Display hidden values"
220
+ msgstr ""
221
+
222
+ msgid "Duration in minutes after servers reporting via Puppet are classed as out of sync."
223
+ msgstr ""
224
+
225
+ msgid "ENC environment"
226
+ msgstr "ENC 환경"
227
+
228
+ msgid "Edit %s"
229
+ msgstr "%s 편집 "
230
+
231
+ msgid "Edit Puppet Class %s"
232
+ msgstr "Puppet 클래스 %s 편집 "
233
+
234
+ msgid "Empty environment"
235
+ msgstr "빈 환경 "
236
+
237
+ msgid "Environment"
238
+ msgstr "환경 "
239
+
240
+ msgid "Environment only"
241
+ msgstr "환경만 "
242
+
243
+ msgid "Environments"
244
+ msgstr "환경 "
245
+
246
+ msgid "Environment|Name"
247
+ msgstr "이름 "
248
+
249
+ msgid "Facts"
250
+ msgstr "팩트 "
251
+
252
+ msgid "Failed to import %{klass} for %{name}: doesn't exists in our database - ignoring"
253
+ msgstr "%{name}의 %{klass} 가져오기에 실패했습니다: 데이터베이스에 존재하지 않습니다 - 무시합니다 "
254
+
255
+ msgid "Failed to set %{proxy_type} proxy for %{host}."
256
+ msgstr "%{host}의 %{proxy_type} 프록시를 설정하지 못했습니다."
257
+
258
+ msgid "Failed to update environments and Puppet classes from the on-disk Puppet installation: %s"
259
+ msgstr "온디스크 Puppet 설치에서 환경 및 Puppet 클래스 업데이트에 실패했습니다: %s"
260
+
261
+ msgid "Failed to update the environments and Puppet classes from the on-disk puppet installation: %s"
262
+ msgstr "온디스크 Puppet 설치에서 환경 및 Puppet 클래스 업데이트에 실패했습니다: %s"
263
+
264
+ msgid "Filter by name"
265
+ msgstr "이름에 따라 필터링 "
266
+
267
+ msgid "Filter classes"
268
+ msgstr "필터 클래스 "
269
+
270
+ msgid "Foreman will default to this puppet environment if it cannot auto detect one"
271
+ msgstr "Foreman은 자동으로 검색하지 못 할 경우 puppet 환경에 기본값 설정됩니다 "
272
+
273
+ 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"
274
+ msgstr "Foreman은 ENC yaml 출력에서 puppet 환경을 명시적으로 설정합니다. 이로 인해 puppet.conf의 환경과 Foreman으로 설정되는 환경 간의 충돌을 방지할 수 있습니다 "
275
+
276
+ msgid "Foreman will not send this parameter in classification output"
277
+ msgstr ""
278
+
279
+ msgid "Foreman will not send this parameter in classification output.Puppet will use the value defined in the Puppet manifest for this parameter"
280
+ msgstr ""
281
+
282
+ msgid "Foreman will update a host's environment from its facts"
283
+ msgstr "Foreman은 정보에서 호스트 환경을 업데이트합니다 "
284
+
285
+ msgid "General"
286
+ msgstr "일반"
287
+
288
+ msgid "Host Groups"
289
+ msgstr "호스트 그룹 "
290
+
291
+ msgid "Host group and Environment"
292
+ msgstr "호스트 그룹 및 환경 "
293
+
294
+ msgid "Host group only"
295
+ msgstr "호스트 그룹만 "
296
+
297
+ msgid "Host groups"
298
+ msgstr "호스트 그룹 "
299
+
300
+ msgid "Hostgroup"
301
+ msgstr "호스트 그룹 "
302
+
303
+ msgid "Hosts"
304
+ msgstr "호스트"
305
+
306
+ msgid "Hosts managed:"
307
+ msgstr "관리되는 호스트:"
308
+
309
+ msgid "ID of Puppet class"
310
+ msgstr "Puppet 클래스 ID "
311
+
312
+ msgid "ID of Puppet environment"
313
+ msgstr ""
314
+
315
+ msgid "ID of Puppetclass"
316
+ msgstr ""
317
+
318
+ msgid "ID of associated puppet Environment"
319
+ msgstr ""
320
+
321
+ msgid "ID of environment"
322
+ msgstr "환경 ID "
323
+
324
+ msgid "ID of host"
325
+ msgstr "호스트 ID "
326
+
327
+ msgid "ID of host group"
328
+ msgstr "호스트 그룹 ID "
329
+
330
+ msgid "ID of puppet environment"
331
+ msgstr ""
332
+
333
+ msgid "IDs of associated ConfigGroups"
334
+ msgstr ""
335
+
336
+ msgid "IDs of associated Puppetclasses"
337
+ msgstr ""
338
+
339
+ msgid "If true, will raise an error if there is no default value and no matcher provide a value"
340
+ msgstr "true인 경우, 기본값이 없고 matcher에서 값이 제공되지 않으면 오류가 발생합니다."
341
+
342
+ msgid "Ignored classes in the environments: %s"
343
+ msgstr ""
344
+
345
+ msgid "Ignored environment"
346
+ msgstr ""
347
+
348
+ msgid "Ignored environment names resulting in booleans found. Please quote strings like true/false and yes/no in config/ignored_environments.yml"
349
+ msgstr ""
350
+
351
+ msgid "Ignored environments: %s"
352
+ msgstr ""
353
+
354
+ msgid "Ignored:"
355
+ msgstr ""
356
+
357
+ msgid "Import"
358
+ msgstr "불러오기"
359
+
360
+ msgid "Import Puppet classes"
361
+ msgstr "Puppet 클래스 가져오기"
362
+
363
+ msgid "Import classes from %s"
364
+ msgstr ""
365
+
366
+ msgid "Import environments from %s"
367
+ msgstr ""
368
+
369
+ msgid "Import facts"
370
+ msgstr "팩트 불러오기"
371
+
372
+ msgid "Import puppet classes from puppet proxy"
373
+ msgstr ""
374
+
375
+ msgid "Import puppet classes from puppet proxy for an environment"
376
+ msgstr "환경에 대한 Puppet 프록시에서 Puppet 클래스를 가져옵니다"
377
+
378
+ msgid "Include default value when merging all matching values"
379
+ msgstr "일치하는 모든 값을 병합할 때 기본값 포함"
380
+
381
+ msgid "Included Classes"
382
+ msgstr "내장된 클래스 "
383
+
384
+ msgid "Included Config Groups"
385
+ msgstr "내장된 설정 그룹 "
386
+
387
+ msgid "Inherited Classes from %s"
388
+ msgstr ""
389
+
390
+ msgid "Invalid proxy selected!"
391
+ msgstr "잘못된 프록시를 선택했습니다."
392
+
393
+ msgid "List all Puppet class IDs for host"
394
+ msgstr "호스트의 모든 Puppet 클래스 ID 나열 "
395
+
396
+ msgid "List all Puppet class IDs for host group"
397
+ msgstr "호스트 그룹의 모든 Puppet 클래스 ID 나열 "
398
+
399
+ msgid "List all Puppet classes"
400
+ msgstr "모든 Puppet 클래스 나열 "
401
+
402
+ msgid "List all Puppet classes for a host"
403
+ msgstr "호스트의 모든 Puppet 클래스 나열 "
404
+
405
+ msgid "List all Puppet classes for a host group"
406
+ msgstr "호스트 그룹의 모든 Puppet 클래스 나열 "
407
+
408
+ msgid "List all Puppet classes for an environment"
409
+ msgstr "환경의 모든 Puppet 클래스 나열 "
410
+
411
+ msgid "List all environments"
412
+ msgstr "모든 환경 목록 나열 "
413
+
414
+ msgid "List all host groups for a Puppet class"
415
+ msgstr "Puppet 클래스의 모든 호스트 그룹 목록 나열 "
416
+
417
+ msgid "List all smart class parameters"
418
+ msgstr "모든 스마트 클래스 매개 변수 나열 "
419
+
420
+ msgid "List environments of Puppet class"
421
+ msgstr "Puppet 클래스 환경 목록 나열 "
422
+
423
+ msgid "List environments per location"
424
+ msgstr "위치 별 환경 나열 "
425
+
426
+ msgid "List environments per organization"
427
+ msgstr "조직 별 환경 나열 "
428
+
429
+ msgid "List hosts per environment"
430
+ msgstr "환경 별 호스트 나열 "
431
+
432
+ msgid "List of config groups"
433
+ msgstr "설정 그룹 목록"
434
+
435
+ msgid "List of override values for a specific smart class parameter"
436
+ msgstr "특정 스마트 클래스 매개 변수의 덮어쓰기 값 목록 "
437
+
438
+ msgid "List of smart class parameters for a specific Puppet class"
439
+ msgstr "특정 Puppet 클래스의 스마트 클래스 매개 변수 목록 "
440
+
441
+ msgid "List of smart class parameters for a specific environment"
442
+ msgstr "특정 환경의 스마트 클래스 매개 변수 목록 "
443
+
444
+ msgid "List of smart class parameters for a specific environment/Puppet class combination"
445
+ msgstr "특정 환경/Puppet 클래스 조합의 스마트 클래스 매개 변수 목록 "
446
+
447
+ msgid "List of smart class parameters for a specific host"
448
+ msgstr "특정 호스트의 스마트 클래스 매개 변수 목록 "
449
+
450
+ msgid "List of smart class parameters for a specific host group"
451
+ msgstr "특정 호스트 그룹의 스마트 클래스 매개 변수 목록 "
452
+
453
+ msgid "List template combination"
454
+ msgstr "템플릿 조합 목록 나열 "
455
+
456
+ msgid "Loading parameters..."
457
+ msgstr "매개 변수 로딩 중..."
458
+
459
+ msgid "Locations"
460
+ msgstr "위치 "
461
+
462
+ msgid "Merge all matching values (only array/hash type)"
463
+ msgstr "일치하는 모든 값 병합(배열/해시 유형만)"
464
+
465
+ msgid "Name"
466
+ msgstr "이름 "
467
+
468
+ msgid "New"
469
+ msgstr "신규"
470
+
471
+ msgid "No changes to your environments detected"
472
+ msgstr "환경에서 변경 사항을 감지할 수 없음 "
473
+
474
+ msgid "No environment selected!"
475
+ msgstr "선택된 환경이 없습니다!"
476
+
477
+ msgid "No environments found"
478
+ msgstr "환경을 찾을 수 없음"
479
+
480
+ msgid "No parameters to override for Puppet class %s"
481
+ msgstr "Puppet 클래스 %s에 덮어쓰기할 매개 변수가 없음 "
482
+
483
+ msgid "No proxy found to import classes from, ensure that the smart proxy has the Puppet feature enabled."
484
+ msgstr "클래스를 가져오기할 프록시를 찾을 수 없습니다. 스마트 프록시에서 Puppet 기능이 활성화되어 있는지 확인합니다. "
485
+
486
+ msgid "No proxy selected!"
487
+ msgstr "프록시를 선택하지 않았습니다."
488
+
489
+ msgid "No smart proxy was found to import environments from, ensure that at least one smart proxy is registered with the 'puppet' feature"
490
+ msgstr ""
491
+
492
+ msgid "None"
493
+ msgstr "없음 "
494
+
495
+ msgid "Not authorized to edit classes"
496
+ msgstr "클래스를 편집할 권한이 없습니다 "
497
+
498
+ msgid "Notice"
499
+ msgstr "주의 "
500
+
501
+ msgid "Number of Overrides"
502
+ msgstr ""
503
+
504
+ msgid "Number of classes"
505
+ msgstr "클래스 수"
506
+
507
+ msgid "Obsolete"
508
+ msgstr "이전 버전 "
509
+
510
+ msgid "Omit"
511
+ msgstr ""
512
+
513
+ msgid "Omit from classification output"
514
+ msgstr ""
515
+
516
+ msgid "Operating System"
517
+ msgstr "운영체제"
518
+
519
+ msgid "Operating system default"
520
+ msgstr "기본값 운영 체제 "
521
+
522
+ msgid "Operation"
523
+ msgstr "작업 "
524
+
525
+ msgid "Optional comma-delimited stringcontaining either 'new', 'updated', or 'obsolete'that is used to limit the imported Puppet classes"
526
+ msgstr ""
527
+
528
+ msgid "Optional parameter without value.<br/><i>Still managed by Foreman, the value will be empty.</i><br/>"
529
+ msgstr ""
530
+
531
+ msgid "Organizations"
532
+ msgstr "조직"
533
+
534
+ msgid "Original value info"
535
+ msgstr "원래 값 정보"
536
+
537
+ msgid "Overridden"
538
+ msgstr ""
539
+
540
+ msgid "Override all parameters"
541
+ msgstr "모든 매개 변수 덮어쓰기 "
542
+
543
+ msgid "Override match"
544
+ msgstr "일치 항목 덮어쓰기"
545
+
546
+ msgid "Override this value"
547
+ msgstr "이 값 덮어쓰기 "
548
+
549
+ msgid "Override value, required if omit is false"
550
+ msgstr ""
551
+
552
+ msgid "Parameter"
553
+ msgstr "매개 변수 "
554
+
555
+ 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)."
556
+ msgstr ""
557
+
558
+ msgid "Parameters"
559
+ msgstr "매개 변수 "
560
+
561
+ msgid "Please select an environment first"
562
+ msgstr "먼저 환경을 선택하십시오 "
563
+
564
+ msgid "Puppet"
565
+ msgstr "Puppet"
566
+
567
+ msgid "Puppet CA"
568
+ msgstr "Puppet CA"
569
+
570
+ msgid "Puppet Class"
571
+ msgstr "Puppet 클래스 "
572
+
573
+ msgid "Puppet Class Parameters"
574
+ msgstr ""
575
+
576
+ msgid "Puppet Classes"
577
+ msgstr "Puppet 클래스 "
578
+
579
+ msgid "Puppet ENC"
580
+ msgstr ""
581
+
582
+ msgid "Puppet Environment"
583
+ msgstr "Puppet 환경 "
584
+
585
+ msgid "Puppet Environments"
586
+ msgstr "Puppet 환경"
587
+
588
+ msgid "Puppet Modules"
589
+ msgstr "Puppet 모듈 "
590
+
591
+ msgid "Puppet YAML"
592
+ msgstr ""
593
+
594
+ msgid "Puppet environments"
595
+ msgstr "Puppet 환경"
596
+
597
+ msgid "Puppet external nodes YAML dump"
598
+ msgstr "Puppet 외부 노드 YAML 덤프 "
599
+
600
+ msgid "Puppet interval"
601
+ msgstr "Puppet 간격"
602
+
603
+ msgid "Puppet parameter"
604
+ msgstr "Puppet 매개 변수"
605
+
606
+ msgid "Puppetclass|Name"
607
+ msgstr "이름 "
608
+
609
+ msgid "Remote action:"
610
+ msgstr "원격 작업:"
611
+
612
+ msgid "Remove"
613
+ msgstr "삭제 "
614
+
615
+ msgid "Remove Combination"
616
+ msgstr ""
617
+
618
+ msgid "Remove a Puppet class from host"
619
+ msgstr "호스트에 Puppet 클래스 삭제 "
620
+
621
+ msgid "Remove a Puppet class from host group"
622
+ msgstr "호스트 그룹에서 Puppet 클래스 삭제 "
623
+
624
+ msgid "Remove duplicate values (only array type)"
625
+ msgstr "중복 값 삭제(배열 유형만)"
626
+
627
+ msgid "Remove this override"
628
+ msgstr "이 덮어쓰기 삭제"
629
+
630
+ msgid "Remove:"
631
+ msgstr "삭제: "
632
+
633
+ msgid "Required parameter without value.<br/><b>Please override!</b><br/>"
634
+ msgstr "필수 매개 변수에 값이 없습니다.<br/><b>덮어쓰십시오.</b><br/>"
635
+
636
+ msgid "Select environment"
637
+ msgstr "환경 선택 "
638
+
639
+ msgid "Select the changes you want to apply to Foreman"
640
+ msgstr ""
641
+
642
+ msgid "Set parameters to defaults"
643
+ msgstr "매개 변수를 기본값으로 설정 "
644
+
645
+ msgid "Show a Puppet class"
646
+ msgstr "Puppet 클래스 표시 "
647
+
648
+ msgid "Show a Puppet class for a host group"
649
+ msgstr "호스트 그룹의 Puppet 클래스 표시 "
650
+
651
+ msgid "Show a Puppet class for an environment"
652
+ msgstr "환경의 Puppet 클래스 표시 "
653
+
654
+ msgid "Show a Puppet class for host"
655
+ msgstr "호스트의 Puppet 클래스 표시 "
656
+
657
+ msgid "Show a config group"
658
+ msgstr "설정 그룹 표시 "
659
+
660
+ msgid "Show a smart class parameter"
661
+ msgstr "스마트 클래스 매개 변수 표시"
662
+
663
+ msgid "Show an environment"
664
+ msgstr "환경 표시 "
665
+
666
+ msgid "Show an override value for a specific smart class parameter"
667
+ msgstr "특정 스마트 클래스 매개 변수의 덮어쓰기 값 표시 "
668
+
669
+ msgid "Show template combination"
670
+ msgstr "템플릿 조합 표시 "
671
+
672
+ msgid "Smart Class Parameter"
673
+ msgstr "스마트 클래스 매개 변수 "
674
+
675
+ msgid "Smart Class Parameters"
676
+ msgstr ""
677
+
678
+ msgid "Successfully overridden all parameters of Puppet class %s"
679
+ msgstr "Puppet 클래스 %s의 모든 매개 변수를 성공적으로 덮어쓰기했습니다 "
680
+
681
+ msgid "Successfully reset all parameters of Puppet class %s to their default values"
682
+ msgstr "Puppet 클래스 %s의 모든 매개 변수를 기본값으로 성공적으로 덮어쓰기했습니다 "
683
+
684
+ msgid "Successfully updated environments and Puppet classes from the on-disk Puppet installation"
685
+ msgstr "온디스크 Puppet 설치에서 환경 및 Puppet 클래스를 성공적으로 업데이트했습니다 "
686
+
687
+ msgid "The %{proxy_type} proxy could not be set for host: %{host_names}."
688
+ msgid_plural "The %{proxy_type} puppet ca proxy could not be set for hosts: %{host_names}"
689
+ msgstr[0] ""
690
+ msgstr[1] ""
691
+
692
+ msgid "The %{proxy_type} proxy of the selected hosts was cleared."
693
+ msgstr "선택한 호스트의 %{proxy_type} 프록시를 삭제했습니다."
694
+
695
+ msgid "The %{proxy_type} proxy of the selected hosts was set to %{proxy_name}"
696
+ msgstr ""
697
+
698
+ msgid "The %{proxy_type} proxy of the selected hosts was set to %{proxy_name}."
699
+ msgstr "선택한 호스트의 %{proxy_type} 프록시가 %{proxy_name}(으)로 설정되었습니다."
700
+
701
+ msgid "The class could not be saved because of an error in one of the class parameters."
702
+ msgstr ""
703
+
704
+ msgid "The final entry, Operating System default, can be set by editing the %s page."
705
+ msgstr "최종 엔트리, 운영 체제 기본값은 %s 페이지를 편집하여 설정할 수 있습니다. "
706
+
707
+ msgid "The order in which values are resolved"
708
+ msgstr "값이 해결되는 순서 "
709
+
710
+ msgid "The requested environment cannot be found."
711
+ msgstr ""
712
+
713
+ msgid "There are no puppet environments set up on this puppet master. Please check the puppet master configuration."
714
+ msgstr "이 Puppet 마스터에 설정된 Puppet 환경이 없습니다. Puppet 마스터 구성을 확인하십시오."
715
+
716
+ msgid "This Puppet class has no parameters in its signature."
717
+ msgstr "Puppet 클래스 서명에는 매개 변수가 없습니다."
718
+
719
+ msgid "This will reset parameters of the class %s to their default values. Continue?"
720
+ msgstr "이는 클래스 %s의 매개 변수를 기본값으로 재설정합니다. 계속 진행하시겠습니까? "
721
+
722
+ msgid "This will set all parameters of the class %s as overridden. Continue?"
723
+ msgstr "이는 클래스 %s의 모든 매개 변수를 덮어쓰기된 것으로 설정합니다. 계속 진행하시겠습니까? "
724
+
725
+ msgid "To update the class signature, go to the Puppet Classes page and select \"Import\"."
726
+ msgstr "클래스 서명을 업데이트하려면 Puppet 클래스 페이지로 가서 \"가져오기\"를 선택합니다. "
727
+
728
+ msgid "Toggle"
729
+ msgstr "토글 "
730
+
731
+ msgid "Total"
732
+ msgstr "전체"
733
+
734
+ msgid "Types of validation values"
735
+ msgstr "검증 값의 유형"
736
+
737
+ msgid "Types of variable values"
738
+ msgstr "변수 값의 유형"
739
+
740
+ msgid "Unable to generate output, Check log files"
741
+ msgstr "출력을 생성할 수 없습니다. 로그 파일을 확인하십시오."
742
+
743
+ msgid "Update"
744
+ msgstr "업데이트 "
745
+
746
+ msgid "Update a Puppet class"
747
+ msgstr "Puppet 클래스 업데이트 "
748
+
749
+ msgid "Update a config group"
750
+ msgstr "설정 그룹 업데이트 "
751
+
752
+ msgid "Update a smart class parameter"
753
+ msgstr "스마트 클래스 매개 변수 업데이트 "
754
+
755
+ msgid "Update an environment"
756
+ msgstr "환경 업데이트 "
757
+
758
+ msgid "Update an override value for a specific smart class parameter"
759
+ msgstr "특정 스마트 클래스 매개 변수의 덮어쓰기 값 업데이트 "
760
+
761
+ msgid "Update environment from facts"
762
+ msgstr "팩트에서 환경 업데이트"
763
+
764
+ msgid "Update template combination"
765
+ msgstr "템플릿 조합 업데이트"
766
+
767
+ msgid "Update:"
768
+ msgstr "업데이트: "
769
+
770
+ msgid "Updated"
771
+ msgstr "업데이트 일시 "
772
+
773
+ msgid "Updated hosts: changed environment"
774
+ msgstr "업데이트된 호스트: 변경된 환경 "
775
+
776
+ msgid "Used to enforce certain values for the parameter values"
777
+ msgstr "특정 값을 매개 변수 값에 적용하는 데 사용됩니다."
778
+
779
+ msgid "Valid Host Group and Environment Combinations"
780
+ msgstr ""
781
+
782
+ msgid "Value"
783
+ msgstr "값 "
784
+
785
+ msgid "Value to use when there is no match"
786
+ msgstr "일치하지 않는 경우 사용할 값 "
787
+
788
+ msgid ""
789
+ "When a Host requests a template (e.g. during provisioning), Foreman \\\n"
790
+ " will select the best match from the available templates of that type, in the \\\n"
791
+ " following order:"
792
+ msgstr ""
793
+
794
+ msgid ""
795
+ "When editing a template, you must assign a list \\\n"
796
+ " of operating systems which this template can be used with. Optionally, you can \\\n"
797
+ " restrict a template to a list of host groups and/or environments."
798
+ msgstr ""
799
+
800
+ msgid "When enabled the parameter is hidden in the UI"
801
+ msgstr "활성화된 경우 매개 변수가 UI에서 숨겨집니다."
802
+
803
+ msgid "Whether the smart class parameter value is managed by Foreman"
804
+ msgstr "스마트 클래스 매개 변수 값을 Foreman에서 관리하는지 여부"
805
+
806
+ msgid "belongs to config group"
807
+ msgstr "설정 그룹에 속합니다 "
808
+
809
+ msgid "environment id"
810
+ msgstr "환경 ID "
811
+
812
+ msgid "included already from parent"
813
+ msgstr "이미 부모에게서 포함되어 있습니다 "
814
+
815
+ msgid "must be true to edit the parameter"
816
+ msgstr ""
817
+
818
+ msgid "with id %{object_id} doesn't exist or is not assigned to proper organization and/or location"
819
+ msgstr ""