hammer_cli_foreman 0.1.4 → 0.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (85) hide show
  1. checksums.yaml +4 -4
  2. data/config/foreman.yml +16 -0
  3. data/doc/host_create.md +102 -54
  4. data/doc/release_notes.md +20 -0
  5. data/lib/hammer_cli_foreman.rb +8 -0
  6. data/lib/hammer_cli_foreman/commands.rb +33 -9
  7. data/lib/hammer_cli_foreman/compute_resource.rb +13 -2
  8. data/lib/hammer_cli_foreman/domain.rb +24 -1
  9. data/lib/hammer_cli_foreman/environment.rb +1 -2
  10. data/lib/hammer_cli_foreman/host.rb +131 -73
  11. data/lib/hammer_cli_foreman/hostgroup.rb +18 -8
  12. data/lib/hammer_cli_foreman/i18n.rb +2 -6
  13. data/lib/hammer_cli_foreman/id_resolver.rb +41 -6
  14. data/lib/hammer_cli_foreman/interface.rb +165 -0
  15. data/lib/hammer_cli_foreman/output/fields.rb +7 -0
  16. data/lib/hammer_cli_foreman/output/formatters.rb +3 -5
  17. data/lib/hammer_cli_foreman/puppet_class.rb +16 -2
  18. data/lib/hammer_cli_foreman/settings.rb +37 -0
  19. data/lib/hammer_cli_foreman/smart_class_parameter.rb +75 -11
  20. data/lib/hammer_cli_foreman/smart_variable.rb +146 -0
  21. data/lib/hammer_cli_foreman/user.rb +9 -3
  22. data/lib/hammer_cli_foreman/version.rb +1 -1
  23. data/locale/Makefile +9 -17
  24. data/locale/de/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
  25. data/locale/de/hammer-cli-foreman.edit.po +2403 -0
  26. data/locale/de/hammer-cli-foreman.po +302 -355
  27. data/locale/de/hammer-cli-foreman.po.time_stamp +0 -0
  28. data/locale/en/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
  29. data/locale/en/hammer-cli-foreman.edit.po +2260 -0
  30. data/locale/en/hammer-cli-foreman.po +946 -823
  31. data/locale/en/hammer-cli-foreman.po.time_stamp +0 -0
  32. data/locale/en_GB/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
  33. data/locale/en_GB/hammer-cli-foreman.edit.po +2267 -0
  34. data/locale/en_GB/hammer-cli-foreman.po +297 -351
  35. data/locale/en_GB/hammer-cli-foreman.po.time_stamp +0 -0
  36. data/locale/es/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
  37. data/locale/es/hammer-cli-foreman.edit.po +2427 -0
  38. data/locale/es/hammer-cli-foreman.po +301 -354
  39. data/locale/es/hammer-cli-foreman.po.time_stamp +0 -0
  40. data/locale/fr/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
  41. data/locale/fr/hammer-cli-foreman.edit.po +2427 -0
  42. data/locale/fr/hammer-cli-foreman.po +299 -353
  43. data/locale/fr/hammer-cli-foreman.po.time_stamp +0 -0
  44. data/locale/hammer-cli-foreman.pot +1413 -1112
  45. data/locale/it/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
  46. data/locale/it/hammer-cli-foreman.edit.po +2402 -0
  47. data/locale/it/hammer-cli-foreman.po +299 -353
  48. data/locale/it/hammer-cli-foreman.po.time_stamp +0 -0
  49. data/locale/ja/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
  50. data/locale/ja/hammer-cli-foreman.edit.po +2401 -0
  51. data/locale/ja/hammer-cli-foreman.po +338 -391
  52. data/locale/ja/hammer-cli-foreman.po.time_stamp +0 -0
  53. data/locale/ko/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
  54. data/locale/ko/hammer-cli-foreman.edit.po +2401 -0
  55. data/locale/ko/hammer-cli-foreman.po +299 -353
  56. data/locale/ko/hammer-cli-foreman.po.time_stamp +0 -0
  57. data/locale/pt_BR/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
  58. data/locale/pt_BR/hammer-cli-foreman.edit.po +2417 -0
  59. data/locale/pt_BR/hammer-cli-foreman.po +312 -365
  60. data/locale/pt_BR/hammer-cli-foreman.po.time_stamp +0 -0
  61. data/locale/ru/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
  62. data/locale/ru/hammer-cli-foreman.edit.po +2401 -0
  63. data/locale/ru/hammer-cli-foreman.po +300 -354
  64. data/locale/ru/hammer-cli-foreman.po.time_stamp +0 -0
  65. data/locale/zh_CN/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
  66. data/locale/zh_CN/hammer-cli-foreman.edit.po +2400 -0
  67. data/locale/zh_CN/hammer-cli-foreman.po +299 -353
  68. data/locale/zh_CN/hammer-cli-foreman.po.time_stamp +0 -0
  69. data/locale/zh_TW/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
  70. data/locale/zh_TW/hammer-cli-foreman.edit.po +2400 -0
  71. data/locale/zh_TW/hammer-cli-foreman.po +299 -353
  72. data/locale/zh_TW/hammer-cli-foreman.po.time_stamp +0 -0
  73. data/test/unit/apipie_resource_mock.rb +7 -0
  74. data/test/unit/commands_test.rb +42 -0
  75. data/test/unit/data/1.7/foreman_api.json +1 -0
  76. data/test/unit/dependency_resolver_test.rb +4 -2
  77. data/test/unit/environment_test.rb +2 -2
  78. data/test/unit/host_test.rb +50 -27
  79. data/test/unit/hostgroup_test.rb +19 -3
  80. data/test/unit/media_test.rb +2 -2
  81. data/test/unit/puppet_class_test.rb +17 -2
  82. data/test/unit/smart_class_parameter_test.rb +26 -2
  83. data/test/unit/smart_variable_test.rb +134 -0
  84. data/test/unit/test_helper.rb +1 -1
  85. metadata +36 -4
File without changes
@@ -0,0 +1,2401 @@
1
+ # SOME DESCRIPTIVE TITLE.
2
+ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
3
+ # This file is distributed under the same license as the hammer-cli-foreman package.
4
+ #
5
+ # Translators:
6
+ # Dominic Cleal <dcleal@redhat.com>, 2014
7
+ msgid ""
8
+ msgstr ""
9
+ "Project-Id-Version: hammer-cli-foreman 0.1.4\n"
10
+ "Report-Msgid-Bugs-To: \n"
11
+ "POT-Creation-Date: 2015-04-23 17:25+0200\n"
12
+ "PO-Revision-Date: 2014-10-11 10:31+0000\n"
13
+ "Last-Translator: Lukáš Zapletal\n"
14
+ "Language-Team: Korean (http://www.transifex.com/projects/p/foreman/language/ko"
15
+ "/)\n"
16
+ "MIME-Version: 1.0\n"
17
+ "Content-Type: text/plain; charset=UTF-8\n"
18
+ "Content-Transfer-Encoding: 8bit\n"
19
+ "Language: ko\n"
20
+ "Plural-Forms: nplurals=1; plural=0;\n"
21
+
22
+ #: ../lib/hammer_cli_foreman.rb:30
23
+ msgid "Foreman connection login/logout."
24
+ msgstr "Foreman 연결 로그인/로그아웃."
25
+
26
+ #: ../lib/hammer_cli_foreman.rb:34
27
+ msgid "Manipulate architectures."
28
+ msgstr "아키텍처를 조정합니다."
29
+
30
+ #: ../lib/hammer_cli_foreman.rb:38
31
+ msgid "Manipulate auth sources."
32
+ msgstr ""
33
+
34
+ #: ../lib/hammer_cli_foreman.rb:42
35
+ msgid "Manipulate compute resources."
36
+ msgstr "컴퓨터 리소스를 조정합니다. "
37
+
38
+ #: ../lib/hammer_cli_foreman.rb:46
39
+ msgid "Manipulate domains."
40
+ msgstr "도메인을 조정합니다. "
41
+
42
+ #: ../lib/hammer_cli_foreman.rb:50
43
+ msgid "Manipulate environments."
44
+ msgstr ""
45
+
46
+ #: ../lib/hammer_cli_foreman.rb:54
47
+ msgid "Search facts."
48
+ msgstr "정보를 검색합니다. "
49
+
50
+ #: ../lib/hammer_cli_foreman.rb:58
51
+ msgid "Manage permission filters."
52
+ msgstr "권한 필터를 관리합니다. "
53
+
54
+ #: ../lib/hammer_cli_foreman.rb:62
55
+ msgid "Manipulate hosts."
56
+ msgstr ""
57
+
58
+ #: ../lib/hammer_cli_foreman.rb:66
59
+ msgid "Manipulate hostgroups."
60
+ msgstr "호스트 그룹을 조정합니다."
61
+
62
+ #: ../lib/hammer_cli_foreman.rb:70
63
+ msgid "Manipulate locations."
64
+ msgstr "위치를 조정합니다. "
65
+
66
+ #: ../lib/hammer_cli_foreman.rb:74
67
+ msgid "Manipulate installation media."
68
+ msgstr "설치 미디어를 조정합니다. "
69
+
70
+ #: ../lib/hammer_cli_foreman.rb:78
71
+ msgid "Manipulate hardware models."
72
+ msgstr "하드웨어 모델을 조정합니다. "
73
+
74
+ #: ../lib/hammer_cli_foreman.rb:82
75
+ msgid "Manipulate operating system."
76
+ msgstr ""
77
+
78
+ #: ../lib/hammer_cli_foreman.rb:86
79
+ msgid "Manipulate organizations."
80
+ msgstr "조직을 조정합니다. "
81
+
82
+ #: ../lib/hammer_cli_foreman.rb:90
83
+ msgid "Manipulate partition tables."
84
+ msgstr "파티션 테이블을 조정합니다. "
85
+
86
+ #: ../lib/hammer_cli_foreman.rb:94
87
+ msgid "Search puppet modules."
88
+ msgstr "puppet 모듈을 검색합니다. "
89
+
90
+ #: ../lib/hammer_cli_foreman.rb:98
91
+ msgid "Browse and read reports."
92
+ msgstr "보고서 검색 및 확인 "
93
+
94
+ #: ../lib/hammer_cli_foreman.rb:102
95
+ msgid "Manage user roles."
96
+ msgstr "사용자 역할을 관리합니다."
97
+
98
+ #: ../lib/hammer_cli_foreman.rb:106
99
+ msgid "Manipulate smart class parameters."
100
+ msgstr "스마트 클래스 매개 변수를 조정합니다. "
101
+
102
+ #: ../lib/hammer_cli_foreman.rb:110
103
+ msgid "Manipulate smart variables."
104
+ msgstr ""
105
+
106
+ #: ../lib/hammer_cli_foreman.rb:114
107
+ msgid "Manipulate smart proxies."
108
+ msgstr "스마트 프록시를 조정합니다."
109
+
110
+ #: ../lib/hammer_cli_foreman.rb:118
111
+ msgid "Change server settings."
112
+ msgstr ""
113
+
114
+ #: ../lib/hammer_cli_foreman.rb:122
115
+ msgid "Manipulate subnets."
116
+ msgstr "서브넷을 조정합니다."
117
+
118
+ #: ../lib/hammer_cli_foreman.rb:126
119
+ msgid "Manipulate config templates."
120
+ msgstr "설정 템플릿을 조정합니다. "
121
+
122
+ #: ../lib/hammer_cli_foreman.rb:130
123
+ msgid "Manipulate users."
124
+ msgstr "사용자를 조정합니다. "
125
+
126
+ #: ../lib/hammer_cli_foreman.rb:134
127
+ msgid "Manage user groups."
128
+ msgstr "사용자 그룹을 관리합니다."
129
+
130
+ #: ../lib/hammer_cli_foreman/architecture.rb:10 ../lib/hammer_cli_foreman/auth_source_ldap.rb:13 ../lib/hammer_cli_foreman/compute_resource.rb:20 ../lib/hammer_cli_foreman/domain.rb:31 ../lib/hammer_cli_foreman/environment.rb:14 ../lib/hammer_cli_foreman/external_usergroup.rb:10 ../lib/hammer_cli_foreman/filter.rb:9 ../lib/hammer_cli_foreman/filter.rb:72 ../lib/hammer_cli_foreman/host.rb:163 ../lib/hammer_cli_foreman/host.rb:200 ../lib/hammer_cli_foreman/host.rb:231 ../lib/hammer_cli_foreman/hostgroup.rb:47 ../lib/hammer_cli_foreman/image.rb:29 ../lib/hammer_cli_foreman/interface.rb:23 ../lib/hammer_cli_foreman/interface.rb:43 ../lib/hammer_cli_foreman/location.rb:13 ../lib/hammer_cli_foreman/media.rb:9 ../lib/hammer_cli_foreman/model.rb:10 ../lib/hammer_cli_foreman/operating_system.rb:10 ../lib/hammer_cli_foreman/organization.rb:13 ../lib/hammer_cli_foreman/partition_table.rb:10 ../lib/hammer_cli_foreman/puppet_class.rb:13 ../lib/hammer_cli_foreman/report.rb:10 ../lib/hammer_cli_foreman/report.rb:30 ../lib/hammer_cli_foreman/role.rb:11 ../lib/hammer_cli_foreman/settings.rb:11 ../lib/hammer_cli_foreman/smart_class_parameter.rb:8 ../lib/hammer_cli_foreman/smart_class_parameter.rb:74 ../lib/hammer_cli_foreman/smart_proxy.rb:11 ../lib/hammer_cli_foreman/smart_variable.rb:8 ../lib/hammer_cli_foreman/smart_variable.rb:62 ../lib/hammer_cli_foreman/subnet.rb:10 ../lib/hammer_cli_foreman/template.rb:25 ../lib/hammer_cli_foreman/user.rb:10 ../lib/hammer_cli_foreman/usergroup.rb:11
131
+ msgid "Id"
132
+ msgstr "ID "
133
+
134
+ #: ../lib/hammer_cli_foreman/architecture.rb:11 ../lib/hammer_cli_foreman/auth_source_ldap.rb:14 ../lib/hammer_cli_foreman/common_parameter.rb:12 ../lib/hammer_cli_foreman/compute_resource.rb:21 ../lib/hammer_cli_foreman/domain.rb:32 ../lib/hammer_cli_foreman/environment.rb:15 ../lib/hammer_cli_foreman/external_usergroup.rb:11 ../lib/hammer_cli_foreman/external_usergroup.rb:42 ../lib/hammer_cli_foreman/filter.rb:73 ../lib/hammer_cli_foreman/filter.rb:90 ../lib/hammer_cli_foreman/host.rb:164 ../lib/hammer_cli_foreman/host.rb:202 ../lib/hammer_cli_foreman/hostgroup.rb:48 ../lib/hammer_cli_foreman/image.rb:30 ../lib/hammer_cli_foreman/image.rb:70 ../lib/hammer_cli_foreman/location.rb:14 ../lib/hammer_cli_foreman/media.rb:10 ../lib/hammer_cli_foreman/model.rb:11 ../lib/hammer_cli_foreman/operating_system.rb:22 ../lib/hammer_cli_foreman/organization.rb:14 ../lib/hammer_cli_foreman/partition_table.rb:11 ../lib/hammer_cli_foreman/puppet_class.rb:14 ../lib/hammer_cli_foreman/role.rb:12 ../lib/hammer_cli_foreman/settings.rb:12 ../lib/hammer_cli_foreman/smart_proxy.rb:12 ../lib/hammer_cli_foreman/smart_variable.rb:10 ../lib/hammer_cli_foreman/subnet.rb:11 ../lib/hammer_cli_foreman/template.rb:26 ../lib/hammer_cli_foreman/template.rb:74 ../lib/hammer_cli_foreman/user.rb:12 ../lib/hammer_cli_foreman/usergroup.rb:12
135
+ msgid "Name"
136
+ msgstr "이름 "
137
+
138
+ #: ../lib/hammer_cli_foreman/architecture.rb:31
139
+ msgid "Architecture created"
140
+ msgstr "아키텍처가 생성되었습니다 "
141
+
142
+ #: ../lib/hammer_cli_foreman/architecture.rb:32
143
+ msgid "Could not create the architecture"
144
+ msgstr "아키텍처를 생성할 수 없습니다 "
145
+
146
+ #: ../lib/hammer_cli_foreman/architecture.rb:39
147
+ msgid "Architecture deleted"
148
+ msgstr "아키텍처가 삭제되었습니다 "
149
+
150
+ #: ../lib/hammer_cli_foreman/architecture.rb:40
151
+ msgid "Could not delete the architecture"
152
+ msgstr "아키텍처를 삭제할 수 없습니다 "
153
+
154
+ #: ../lib/hammer_cli_foreman/architecture.rb:47
155
+ msgid "Architecture updated"
156
+ msgstr "아키텍처가 업데이트되었습니다 "
157
+
158
+ #: ../lib/hammer_cli_foreman/architecture.rb:48
159
+ msgid "Could not update the architecture"
160
+ msgstr "아키텍처를 업데이트할 수 없습니다 "
161
+
162
+ #: ../lib/hammer_cli_foreman/associating_commands.rb:41
163
+ msgid "Associate a hostgroup"
164
+ msgstr "호스트 그룹 연결 "
165
+
166
+ #: ../lib/hammer_cli_foreman/associating_commands.rb:46
167
+ msgid "Disassociate a hostgroup"
168
+ msgstr "호스트 그룹 연결 해제 "
169
+
170
+ #: ../lib/hammer_cli_foreman/associating_commands.rb:55
171
+ msgid "Associate an environment"
172
+ msgstr "환경 연결 "
173
+
174
+ #: ../lib/hammer_cli_foreman/associating_commands.rb:60
175
+ msgid "Disassociate an environment"
176
+ msgstr "환경 연결 해제 "
177
+
178
+ #: ../lib/hammer_cli_foreman/associating_commands.rb:69
179
+ msgid "Associate a domain"
180
+ msgstr "도메인 연결 "
181
+
182
+ #: ../lib/hammer_cli_foreman/associating_commands.rb:74
183
+ msgid "Disassociate a domain"
184
+ msgstr "도메인 연결 해제 "
185
+
186
+ #: ../lib/hammer_cli_foreman/associating_commands.rb:83
187
+ msgid "Associate a medium"
188
+ msgstr "미디어 연결 "
189
+
190
+ #: ../lib/hammer_cli_foreman/associating_commands.rb:88
191
+ msgid "Disassociate a medium"
192
+ msgstr "미디어 연결 해제 "
193
+
194
+ #: ../lib/hammer_cli_foreman/associating_commands.rb:97
195
+ msgid "Associate a subnet"
196
+ msgstr "서브넷 연결 "
197
+
198
+ #: ../lib/hammer_cli_foreman/associating_commands.rb:102
199
+ msgid "Disassociate a subnet"
200
+ msgstr "서브넷 연결 해제 "
201
+
202
+ #: ../lib/hammer_cli_foreman/associating_commands.rb:111
203
+ msgid "Associate a compute resource"
204
+ msgstr "컴퓨터 리소스 연결 "
205
+
206
+ #: ../lib/hammer_cli_foreman/associating_commands.rb:116
207
+ msgid "Disassociate a compute resource"
208
+ msgstr "컴퓨터 리소스 연결 해제 "
209
+
210
+ #: ../lib/hammer_cli_foreman/associating_commands.rb:125
211
+ msgid "Associate a smart proxy"
212
+ msgstr "스마트 프록시 연결 "
213
+
214
+ #: ../lib/hammer_cli_foreman/associating_commands.rb:134
215
+ msgid "Disassociate a smart proxy"
216
+ msgstr "스마트 프록시 연결 해제 "
217
+
218
+ #: ../lib/hammer_cli_foreman/associating_commands.rb:147
219
+ msgid "Associate an user"
220
+ msgstr "사용자 연결 "
221
+
222
+ #: ../lib/hammer_cli_foreman/associating_commands.rb:155
223
+ msgid "Disassociate an user"
224
+ msgstr "사용자 연결 해제 "
225
+
226
+ #: ../lib/hammer_cli_foreman/associating_commands.rb:167
227
+ msgid "Associate an user group"
228
+ msgstr "사용자 그룹 연결 "
229
+
230
+ #: ../lib/hammer_cli_foreman/associating_commands.rb:177
231
+ msgid "Disassociate an user group"
232
+ msgstr "사용자 그룹 연결 해제 "
233
+
234
+ #: ../lib/hammer_cli_foreman/associating_commands.rb:191
235
+ msgid "Associate a configuration template"
236
+ msgstr "설정 템플릿 연결 "
237
+
238
+ #: ../lib/hammer_cli_foreman/associating_commands.rb:196
239
+ msgid "Disassociate a configuration template"
240
+ msgstr "설정 템플릿 연결 해제 "
241
+
242
+ #: ../lib/hammer_cli_foreman/associating_commands.rb:205
243
+ msgid "Associate an organization"
244
+ msgstr "조직 연결 "
245
+
246
+ #: ../lib/hammer_cli_foreman/associating_commands.rb:210
247
+ msgid "Disassociate an organization"
248
+ msgstr "조직 연결 해제 "
249
+
250
+ #: ../lib/hammer_cli_foreman/associating_commands.rb:219
251
+ msgid "Associate an operating system"
252
+ msgstr "운영 체제 연결 "
253
+
254
+ #: ../lib/hammer_cli_foreman/associating_commands.rb:221
255
+ msgid "Operating system has been associated"
256
+ msgstr "운영 체제가 연결되었습니다 "
257
+
258
+ #: ../lib/hammer_cli_foreman/associating_commands.rb:222
259
+ msgid "Could not associate the operating system"
260
+ msgstr "운영 체제를 연결할 수 없습니다 "
261
+
262
+ #: ../lib/hammer_cli_foreman/associating_commands.rb:228
263
+ msgid "Disassociate an operating system"
264
+ msgstr "운영 체제 연결 해제 "
265
+
266
+ #: ../lib/hammer_cli_foreman/associating_commands.rb:230
267
+ msgid "Operating system has been disassociated"
268
+ msgstr "운영 체제가 연결 해제되었습니다 "
269
+
270
+ #: ../lib/hammer_cli_foreman/associating_commands.rb:231
271
+ msgid "Could not disassociate the operating system"
272
+ msgstr "운영 체제를 연결 해제할 수 없습니다 "
273
+
274
+ #: ../lib/hammer_cli_foreman/associating_commands.rb:240
275
+ msgid "Associate an architecture"
276
+ msgstr "아키텍처 연결 "
277
+
278
+ #: ../lib/hammer_cli_foreman/associating_commands.rb:242
279
+ msgid "Architecture has been associated"
280
+ msgstr "아키텍처가 연결되었습니다 "
281
+
282
+ #: ../lib/hammer_cli_foreman/associating_commands.rb:243
283
+ msgid "Could not associate the architecture"
284
+ msgstr "아키텍처를 연결할 수 없습니다 "
285
+
286
+ #: ../lib/hammer_cli_foreman/associating_commands.rb:249
287
+ msgid "Disassociate an architecture"
288
+ msgstr "아키텍처 연결 해제 "
289
+
290
+ #: ../lib/hammer_cli_foreman/associating_commands.rb:251
291
+ msgid "Architecture has been disassociated"
292
+ msgstr "아키텍처가 연결 해제되었습니다 "
293
+
294
+ #: ../lib/hammer_cli_foreman/associating_commands.rb:252
295
+ msgid "Could not disassociate the architecture"
296
+ msgstr "아키텍처를 연결 해제할 수 없습니다 "
297
+
298
+ #: ../lib/hammer_cli_foreman/associating_commands.rb:261
299
+ msgid "Associate a partition table"
300
+ msgstr "파티션 테이블 연결 "
301
+
302
+ #: ../lib/hammer_cli_foreman/associating_commands.rb:263
303
+ msgid "Partition table has been associated"
304
+ msgstr "파티션 테이블이 연결되었습니다 "
305
+
306
+ #: ../lib/hammer_cli_foreman/associating_commands.rb:264
307
+ msgid "Could not associate the partition table"
308
+ msgstr "파티션 테이블을 연결할 수 없습니다 "
309
+
310
+ #: ../lib/hammer_cli_foreman/associating_commands.rb:270
311
+ msgid "Disassociate a partition table"
312
+ msgstr "파티션 테이블 연결 해제 "
313
+
314
+ #: ../lib/hammer_cli_foreman/associating_commands.rb:272
315
+ msgid "Partition table has been disassociated"
316
+ msgstr "파티션 테이블이 연결 해제되었습니다 "
317
+
318
+ #: ../lib/hammer_cli_foreman/associating_commands.rb:273
319
+ msgid "Could not disassociate the partition table"
320
+ msgstr "파티션 테이블을 연결 해제할 수 없습니다 "
321
+
322
+ #: ../lib/hammer_cli_foreman/associating_commands.rb:282
323
+ msgid "Assign a user role"
324
+ msgstr "사용자 역할 할당 "
325
+
326
+ #: ../lib/hammer_cli_foreman/associating_commands.rb:284
327
+ msgid "User role has been assigned"
328
+ msgstr "사용자 역할이 할당되었습니다 "
329
+
330
+ #: ../lib/hammer_cli_foreman/associating_commands.rb:285
331
+ msgid "Could not assign the user role"
332
+ msgstr "사용자 역할을 할당할 수 없습니다 "
333
+
334
+ #: ../lib/hammer_cli_foreman/associating_commands.rb:291
335
+ msgid "Remove a user role"
336
+ msgstr "사용자 역할 삭제 "
337
+
338
+ #: ../lib/hammer_cli_foreman/associating_commands.rb:293
339
+ msgid "User role has been removed"
340
+ msgstr "사용자 역할이 삭제되었습니다 "
341
+
342
+ #: ../lib/hammer_cli_foreman/associating_commands.rb:294
343
+ msgid "Could not remove the user role"
344
+ msgstr "사용자 역할을 삭제할 수 없습니다 "
345
+
346
+ #: ../lib/hammer_cli_foreman/auth.rb:7
347
+ msgid "Set credentials"
348
+ msgstr "인증 정보 설정 "
349
+
350
+ #: ../lib/hammer_cli_foreman/auth.rb:20
351
+ msgid "Wipe your credentials"
352
+ msgstr "인증 정보 삭제 "
353
+
354
+ #: ../lib/hammer_cli_foreman/auth.rb:26
355
+ msgid "Credentials deleted."
356
+ msgstr "인증 정보가 삭제되었습니다. "
357
+
358
+ #: ../lib/hammer_cli_foreman/auth.rb:33
359
+ msgid "Information about current connections"
360
+ msgstr "현재 연결에 대한 정보 "
361
+
362
+ #: ../lib/hammer_cli_foreman/auth.rb:37
363
+ msgid "You are logged in as '%s'"
364
+ msgstr "'%s'로 로그인되었습니다 "
365
+
366
+ #: ../lib/hammer_cli_foreman/auth.rb:39
367
+ msgid ""
368
+ "You are currently not logged in to any service.\n"
369
+ "Use the service to set credentials."
370
+ msgstr ""
371
+ "현재 어떤 서비스에도 로그이되어 있지 않습니다.\n"
372
+ "인증 정보를 설정하기 위해 서비스를 사용합니다."
373
+
374
+ #: ../lib/hammer_cli_foreman/auth_source_ldap.rb:7
375
+ msgid "Manage LDAP auth sources."
376
+ msgstr ""
377
+
378
+ #: ../lib/hammer_cli_foreman/auth_source_ldap.rb:15
379
+ msgid "LDAPS?"
380
+ msgstr ""
381
+
382
+ #: ../lib/hammer_cli_foreman/auth_source_ldap.rb:16
383
+ msgid "Port"
384
+ msgstr ""
385
+
386
+ #: ../lib/hammer_cli_foreman/auth_source_ldap.rb:17
387
+ msgid "Server Type"
388
+ msgstr ""
389
+
390
+ #: ../lib/hammer_cli_foreman/auth_source_ldap.rb:27
391
+ msgid "Account Username"
392
+ msgstr ""
393
+
394
+ #: ../lib/hammer_cli_foreman/auth_source_ldap.rb:28
395
+ msgid "Base DN"
396
+ msgstr "기본 DN"
397
+
398
+ #: ../lib/hammer_cli_foreman/auth_source_ldap.rb:29
399
+ msgid "LDAP filter"
400
+ msgstr "LDAP 필터 "
401
+
402
+ #: ../lib/hammer_cli_foreman/auth_source_ldap.rb:30
403
+ msgid "Automatically Create Accounts?"
404
+ msgstr ""
405
+
406
+ #: ../lib/hammer_cli_foreman/auth_source_ldap.rb:31
407
+ msgid "Login Name Attribute"
408
+ msgstr ""
409
+
410
+ #: ../lib/hammer_cli_foreman/auth_source_ldap.rb:32
411
+ msgid "First Name Attribute"
412
+ msgstr ""
413
+
414
+ #: ../lib/hammer_cli_foreman/auth_source_ldap.rb:33
415
+ msgid "Last Name Attribute"
416
+ msgstr ""
417
+
418
+ #: ../lib/hammer_cli_foreman/auth_source_ldap.rb:34
419
+ msgid "Email Address Attribute"
420
+ msgstr ""
421
+
422
+ #: ../lib/hammer_cli_foreman/auth_source_ldap.rb:35
423
+ msgid "Photo Attribute"
424
+ msgstr ""
425
+
426
+ #: ../lib/hammer_cli_foreman/auth_source_ldap.rb:43
427
+ msgid "Auth source created"
428
+ msgstr ""
429
+
430
+ #: ../lib/hammer_cli_foreman/auth_source_ldap.rb:44
431
+ msgid "Could not create the Auth Source"
432
+ msgstr ""
433
+
434
+ #: ../lib/hammer_cli_foreman/auth_source_ldap.rb:51
435
+ msgid "Auth source deleted"
436
+ msgstr ""
437
+
438
+ #: ../lib/hammer_cli_foreman/auth_source_ldap.rb:52
439
+ msgid "Could not delete the Auth Source"
440
+ msgstr ""
441
+
442
+ #: ../lib/hammer_cli_foreman/auth_source_ldap.rb:59
443
+ msgid "Auth source updated"
444
+ msgstr ""
445
+
446
+ #: ../lib/hammer_cli_foreman/auth_source_ldap.rb:60
447
+ msgid "Could not update the Auth Source"
448
+ msgstr ""
449
+
450
+ #: ../lib/hammer_cli_foreman/commands.rb:83
451
+ msgid "Received data of unknown format"
452
+ msgstr "알 수 없는 형식의 데이터를 수신했습니다 "
453
+
454
+ #: ../lib/hammer_cli_foreman/commands.rb:191
455
+ msgid "Could not find %{resource}. Some search options were missing, please see --help."
456
+ msgstr ""
457
+
458
+ #: ../lib/hammer_cli_foreman/commands.rb:193
459
+ msgid "Could not find %{resource}, please set option %{switches}."
460
+ msgstr ""
461
+
462
+ #: ../lib/hammer_cli_foreman/commands.rb:195
463
+ msgid "Could not find %{resource}, please set one of options %{switches}."
464
+ msgstr ""
465
+
466
+ #: ../lib/hammer_cli_foreman/commands.rb:313
467
+ msgid "List next page? (%s): "
468
+ msgstr "다음 페이지 목록을 나열하시겠습니까? (%s): "
469
+
470
+ #: ../lib/hammer_cli_foreman/commands.rb:516
471
+ msgid "Associate a resource"
472
+ msgstr "리소스 연결 "
473
+
474
+ #: ../lib/hammer_cli_foreman/commands.rb:538
475
+ msgid "Disassociate a resource"
476
+ msgstr "리소스 연결 해제 "
477
+
478
+ #: ../lib/hammer_cli_foreman/common_parameter.rb:13 ../lib/hammer_cli_foreman/fact.rb:14 ../lib/hammer_cli_foreman/host.rb:327 ../lib/hammer_cli_foreman/settings.rb:13 ../lib/hammer_cli_foreman/smart_class_parameter.rb:76 ../lib/hammer_cli_foreman/smart_variable.rb:64
479
+ msgid "Value"
480
+ msgstr "값"
481
+
482
+ #: ../lib/hammer_cli_foreman/common_parameter.rb:22
483
+ msgid "Set a global parameter."
484
+ msgstr "글로벌 매개 변수를 설정합니다."
485
+
486
+ #: ../lib/hammer_cli_foreman/common_parameter.rb:24
487
+ msgid "Created parameter [%{name}] with value [%{value}]."
488
+ msgstr "값 [%{value}]으로 매개 변수 [%{name}] 을(를) 생성했습니다. "
489
+
490
+ #: ../lib/hammer_cli_foreman/common_parameter.rb:25
491
+ msgid "Parameter [%{name}] updated to [%{value}]."
492
+ msgstr "매개 변수 [%{name}] 이(가) [%{value}]로 업데이트되었습니다. "
493
+
494
+ #: ../lib/hammer_cli_foreman/common_parameter.rb:27 ../lib/hammer_cli_foreman/parameter.rb:49 ../lib/hammer_cli_foreman/parameter.rb:96
495
+ msgid "parameter name"
496
+ msgstr "매개 변수 이름 "
497
+
498
+ #: ../lib/hammer_cli_foreman/common_parameter.rb:28 ../lib/hammer_cli_foreman/parameter.rb:50
499
+ msgid "parameter value"
500
+ msgstr "매개 변수 값 "
501
+
502
+ #: ../lib/hammer_cli_foreman/common_parameter.rb:53
503
+ msgid "Global parameter [%{name}] deleted."
504
+ msgstr "글로벌 매개 변수 [%{name}]이(가) 삭제되었습니다. "
505
+
506
+ #: ../lib/hammer_cli_foreman/common_parameter.rb:54
507
+ msgid "Could not delete the global parameter [%{name}]"
508
+ msgstr "글로벌 매개 변수 [%{name}]을(를) 삭제할 수 없습니다 "
509
+
510
+ #: ../lib/hammer_cli_foreman/common_parameter.rb:67
511
+ msgid "Manipulate global parameters."
512
+ msgstr "글로벌 매개 변수를 조정합니다. "
513
+
514
+ #: ../lib/hammer_cli_foreman/compute_resource.rb:22 ../lib/hammer_cli_foreman/interface.rb:60
515
+ msgid "Provider"
516
+ msgstr "공급자 "
517
+
518
+ #: ../lib/hammer_cli_foreman/compute_resource.rb:34 ../lib/hammer_cli_foreman/compute_resource.rb:40 ../lib/hammer_cli_foreman/host.rb:201 ../lib/hammer_cli_foreman/image.rb:33 ../lib/hammer_cli_foreman/image.rb:71
519
+ msgid "UUID"
520
+ msgstr "UUID"
521
+
522
+ #: ../lib/hammer_cli_foreman/compute_resource.rb:37 ../lib/hammer_cli_foreman/compute_resource.rb:47
523
+ msgid "Region"
524
+ msgstr "지역 "
525
+
526
+ #: ../lib/hammer_cli_foreman/compute_resource.rb:41
527
+ msgid "Server"
528
+ msgstr "서버 "
529
+
530
+ #: ../lib/hammer_cli_foreman/compute_resource.rb:44
531
+ msgid "Tenant"
532
+ msgstr "테넌트 "
533
+
534
+ #: ../lib/hammer_cli_foreman/compute_resource.rb:54
535
+ msgid "Url"
536
+ msgstr "Url"
537
+
538
+ #: ../lib/hammer_cli_foreman/compute_resource.rb:55 ../lib/hammer_cli_foreman/domain.rb:42 ../lib/hammer_cli_foreman/settings.rb:14 ../lib/hammer_cli_foreman/smart_class_parameter.rb:61 ../lib/hammer_cli_foreman/smart_variable.rb:51
539
+ msgid "Description"
540
+ msgstr "설명 "
541
+
542
+ #: ../lib/hammer_cli_foreman/compute_resource.rb:56
543
+ msgid "User"
544
+ msgstr "사용자 "
545
+
546
+ #: ../lib/hammer_cli_foreman/compute_resource.rb:73
547
+ msgid "Compute resource created"
548
+ msgstr "컴퓨터 리소스가 생성되었습니다 "
549
+
550
+ #: ../lib/hammer_cli_foreman/compute_resource.rb:74
551
+ msgid "Could not create the compute resource"
552
+ msgstr "컴퓨터 리소스를 생성할 수 없습니다 "
553
+
554
+ #: ../lib/hammer_cli_foreman/compute_resource.rb:85
555
+ msgid "Compute resource updated"
556
+ msgstr "컴퓨터 리소스가 업데이트되었습니다 "
557
+
558
+ #: ../lib/hammer_cli_foreman/compute_resource.rb:86
559
+ msgid "Could not update the compute resource"
560
+ msgstr "컴퓨터 리소스를 업데이트할 수 없습니다 "
561
+
562
+ #: ../lib/hammer_cli_foreman/compute_resource.rb:93
563
+ msgid "Compute resource deleted"
564
+ msgstr "컴퓨터 리소스가 삭제되었습니다 "
565
+
566
+ #: ../lib/hammer_cli_foreman/compute_resource.rb:94
567
+ msgid "Could not delete the compute resource"
568
+ msgstr "컴퓨터 리소스를 삭제할 수 없습니다 "
569
+
570
+ #: ../lib/hammer_cli_foreman/credentials.rb:26
571
+ #, fuzzy
572
+ msgid "[Foreman] Username: "
573
+ msgstr "[Foreman] 사용자 이름: "
574
+
575
+ #: ../lib/hammer_cli_foreman/credentials.rb:33
576
+ #, fuzzy
577
+ msgid "[Foreman] Password for %s: "
578
+ msgstr "%s의 [Foreman] 암호: "
579
+
580
+ #: ../lib/hammer_cli_foreman/domain.rb:6
581
+ msgid "ID of DNS proxy to use within this domain"
582
+ msgstr ""
583
+
584
+ #: ../lib/hammer_cli_foreman/domain.rb:7
585
+ msgid "Name of DNS proxy to use within this domain"
586
+ msgstr ""
587
+
588
+ #: ../lib/hammer_cli_foreman/domain.rb:43
589
+ msgid "DNS Id"
590
+ msgstr "DNS Id"
591
+
592
+ #: ../lib/hammer_cli_foreman/domain.rb:57
593
+ msgid "Domain [%{name}] created"
594
+ msgstr "도메인 [%{name}] 이(가) 생성되었습니다 "
595
+
596
+ #: ../lib/hammer_cli_foreman/domain.rb:58
597
+ msgid "Could not create the domain"
598
+ msgstr "도메인을 생성할 수 없습니다 "
599
+
600
+ #: ../lib/hammer_cli_foreman/domain.rb:60 ../lib/hammer_cli_foreman/domain.rb:71
601
+ msgid "Full name describing the domain"
602
+ msgstr "도메인을 나타내는 전체 이름 "
603
+
604
+ #: ../lib/hammer_cli_foreman/domain.rb:68
605
+ msgid "Domain [%{name}] updated"
606
+ msgstr "도메인 [%{name}] 이 업데이트되었습니다 "
607
+
608
+ #: ../lib/hammer_cli_foreman/domain.rb:69
609
+ msgid "Could not update the domain"
610
+ msgstr "도메인을 업데이트할 수 없습니다 "
611
+
612
+ #: ../lib/hammer_cli_foreman/domain.rb:78
613
+ msgid "Domain [%{name}] deleted"
614
+ msgstr "도메인 [%{name}]이(가) 삭제되었습니다 "
615
+
616
+ #: ../lib/hammer_cli_foreman/domain.rb:79
617
+ msgid "Could not delete the domain"
618
+ msgstr "도메인을 삭제할 수 없습니다 "
619
+
620
+ #: ../lib/hammer_cli_foreman/domain.rb:86
621
+ msgid "Create or update parameter for a domain."
622
+ msgstr "도메인의 매개 변수를 생성 또는 업데이트합니다. "
623
+
624
+ #: ../lib/hammer_cli_foreman/domain.rb:88
625
+ msgid "Domain parameter updated"
626
+ msgstr "도메인 매개 변수가 업데이트되었습니다 "
627
+
628
+ #: ../lib/hammer_cli_foreman/domain.rb:89
629
+ msgid "New domain parameter created"
630
+ msgstr "새 도메인 매개 변수가 생성되었습니다 "
631
+
632
+ #: ../lib/hammer_cli_foreman/domain.rb:90
633
+ msgid "Could not set domain parameter"
634
+ msgstr "도메인 매개 변수를 설정할 수 없습니다 "
635
+
636
+ #: ../lib/hammer_cli_foreman/domain.rb:102
637
+ msgid "Delete parameter for a domain."
638
+ msgstr "도메인의 매개 변수를 삭제합니다. "
639
+
640
+ #: ../lib/hammer_cli_foreman/domain.rb:104
641
+ msgid "Domain parameter deleted"
642
+ msgstr "도메인 매개 변수가 삭제되었습니다 "
643
+
644
+ #: ../lib/hammer_cli_foreman/environment.rb:34
645
+ msgid "Environment created"
646
+ msgstr "환경이 생성되었습니다 "
647
+
648
+ #: ../lib/hammer_cli_foreman/environment.rb:35
649
+ msgid "Could not create the environment"
650
+ msgstr "환경을 생성할 수 없습니다 "
651
+
652
+ #: ../lib/hammer_cli_foreman/environment.rb:42
653
+ msgid "Environment updated"
654
+ msgstr "환경이 업데이트되었습니다 "
655
+
656
+ #: ../lib/hammer_cli_foreman/environment.rb:43
657
+ msgid "Could not update the environment"
658
+ msgstr "환경을 업데이트할 수 없습니다 "
659
+
660
+ #: ../lib/hammer_cli_foreman/environment.rb:50
661
+ msgid "Environment deleted"
662
+ msgstr "환경이 삭제되었습니다 "
663
+
664
+ #: ../lib/hammer_cli_foreman/environment.rb:51
665
+ msgid "Could not delete the environment"
666
+ msgstr "환경을 삭제할 수 없습니다 "
667
+
668
+ #: ../lib/hammer_cli_foreman/exception_handler.rb:41
669
+ msgid "Forbidden - server refused to process the request"
670
+ msgstr "거부 - 서버가 요청 처리를 거부했습니다 "
671
+
672
+ #: ../lib/hammer_cli_foreman/exception_handler.rb:75
673
+ msgid "Could not load the API description from the server"
674
+ msgstr ""
675
+
676
+ #: ../lib/hammer_cli_foreman/exception_handler.rb:76
677
+ msgid "is the server down?"
678
+ msgstr ""
679
+
680
+ #: ../lib/hammer_cli_foreman/exception_handler.rb:77
681
+ msgid "was '%s' run on the server when using apipie cache? (typical production settings)"
682
+ msgstr ""
683
+
684
+ #: ../lib/hammer_cli_foreman/external_usergroup.rb:6
685
+ msgid "View and manage user group's external user groups"
686
+ msgstr ""
687
+
688
+ #: ../lib/hammer_cli_foreman/external_usergroup.rb:12 ../lib/hammer_cli_foreman/external_usergroup.rb:43
689
+ msgid "Auth source"
690
+ msgstr "인증 소스 "
691
+
692
+ #: ../lib/hammer_cli_foreman/external_usergroup.rb:39
693
+ msgid "Refresh external user group"
694
+ msgstr ""
695
+
696
+ #: ../lib/hammer_cli_foreman/external_usergroup.rb:57
697
+ msgid "External user group created"
698
+ msgstr ""
699
+
700
+ #: ../lib/hammer_cli_foreman/external_usergroup.rb:58
701
+ msgid "Could not create external user group"
702
+ msgstr ""
703
+
704
+ #: ../lib/hammer_cli_foreman/external_usergroup.rb:65
705
+ msgid "External user group updated"
706
+ msgstr ""
707
+
708
+ #: ../lib/hammer_cli_foreman/external_usergroup.rb:66
709
+ msgid "Could not update external user group"
710
+ msgstr ""
711
+
712
+ #: ../lib/hammer_cli_foreman/external_usergroup.rb:73
713
+ msgid "External user group deleted"
714
+ msgstr ""
715
+
716
+ #: ../lib/hammer_cli_foreman/external_usergroup.rb:74
717
+ msgid "Could not delete the external user group"
718
+ msgstr ""
719
+
720
+ #: ../lib/hammer_cli_foreman/fact.rb:12 ../lib/hammer_cli_foreman/report.rb:11 ../lib/hammer_cli_foreman/report.rb:31
721
+ msgid "Host"
722
+ msgstr "호스트 "
723
+
724
+ #: ../lib/hammer_cli_foreman/fact.rb:13 ../lib/hammer_cli_foreman/host.rb:326
725
+ msgid "Fact"
726
+ msgstr "정보 "
727
+
728
+ #: ../lib/hammer_cli_foreman/filter.rb:10
729
+ msgid "Resource type"
730
+ msgstr "리소스 유형 "
731
+
732
+ #: ../lib/hammer_cli_foreman/filter.rb:11
733
+ msgid "Search"
734
+ msgstr "검색 "
735
+
736
+ #: ../lib/hammer_cli_foreman/filter.rb:12
737
+ msgid "Unlimited?"
738
+ msgstr "제한 없음?"
739
+
740
+ #: ../lib/hammer_cli_foreman/filter.rb:13
741
+ msgid "Role"
742
+ msgstr "역할 "
743
+
744
+ #: ../lib/hammer_cli_foreman/filter.rb:14
745
+ msgid "Permissions"
746
+ msgstr "권한 "
747
+
748
+ #: ../lib/hammer_cli_foreman/filter.rb:18 ../lib/hammer_cli_foreman/filter.rb:34 ../lib/hammer_cli_foreman/filter.rb:78 ../lib/hammer_cli_foreman/role.rb:33
749
+ msgid "(Miscellaneous)"
750
+ msgstr "(기타)"
751
+
752
+ #: ../lib/hammer_cli_foreman/filter.rb:19 ../lib/hammer_cli_foreman/filter.rb:35 ../lib/hammer_cli_foreman/role.rb:34
753
+ msgid "none"
754
+ msgstr "없음 "
755
+
756
+ #: ../lib/hammer_cli_foreman/filter.rb:44
757
+ msgid "Permission filter for [%<resource_type>s] created"
758
+ msgstr "[%<resource_type>s] 의 권한 필터가 생성되었습니다 "
759
+
760
+ #: ../lib/hammer_cli_foreman/filter.rb:45
761
+ msgid "Could not create the permission filter"
762
+ msgstr "권한 필터를 생성할 수 없습니다 "
763
+
764
+ #: ../lib/hammer_cli_foreman/filter.rb:52
765
+ msgid "Permission filter for [%<resource_type>s] updated"
766
+ msgstr "[%<resource_type>s] 의 권한 필터가 업데이트되었습니다 "
767
+
768
+ #: ../lib/hammer_cli_foreman/filter.rb:53
769
+ msgid "Could not update the permission filter"
770
+ msgstr "권한 필터를 업데이트할 수 없습니다 "
771
+
772
+ #: ../lib/hammer_cli_foreman/filter.rb:60
773
+ msgid "Permission filter deleted"
774
+ msgstr "권한 필터가 삭제되었습니다 "
775
+
776
+ #: ../lib/hammer_cli_foreman/filter.rb:61
777
+ msgid "Could not delete the permission filter"
778
+ msgstr "권한 필터를 삭제할 수 없습니다 "
779
+
780
+ #: ../lib/hammer_cli_foreman/filter.rb:74 ../lib/hammer_cli_foreman/report.rb:62
781
+ msgid "Resource"
782
+ msgstr "리소스 "
783
+
784
+ #: ../lib/hammer_cli_foreman/host.rb:15
785
+ msgid "Login of the owner"
786
+ msgstr ""
787
+
788
+ #: ../lib/hammer_cli_foreman/host.rb:17
789
+ msgid "ID of the owner"
790
+ msgstr ""
791
+
792
+ #: ../lib/hammer_cli_foreman/host.rb:42
793
+ msgid "Host parameters."
794
+ msgstr "호스트 매개 변수 "
795
+
796
+ #: ../lib/hammer_cli_foreman/host.rb:44
797
+ msgid "Compute resource attributes."
798
+ msgstr "컴퓨터 리소스 속성 "
799
+
800
+ #: ../lib/hammer_cli_foreman/host.rb:46
801
+ msgid "Volume parameters"
802
+ msgstr "볼륨 매개 변수 "
803
+
804
+ #: ../lib/hammer_cli_foreman/host.rb:48
805
+ msgid "Interface parameters."
806
+ msgstr "인터페이스 매개 변수 "
807
+
808
+ #: ../lib/hammer_cli_foreman/host.rb:146
809
+ msgid "At least one interface must be set as primary"
810
+ msgstr ""
811
+
812
+ #: ../lib/hammer_cli_foreman/host.rb:149
813
+ msgid "At least one interface must be set as provision"
814
+ msgstr ""
815
+
816
+ #: ../lib/hammer_cli_foreman/host.rb:165 ../lib/hammer_cli_foreman/host.rb:241 ../lib/hammer_cli_foreman/hostgroup.rb:50 ../lib/hammer_cli_foreman/image.rb:31
817
+ msgid "Operating System"
818
+ msgstr "운영체제"
819
+
820
+ #: ../lib/hammer_cli_foreman/host.rb:166 ../lib/hammer_cli_foreman/host.rb:205
821
+ msgid "Host Group"
822
+ msgstr "호스트 그룹 "
823
+
824
+ #: ../lib/hammer_cli_foreman/host.rb:167 ../lib/hammer_cli_foreman/host.rb:218
825
+ msgid "IP"
826
+ msgstr "IP "
827
+
828
+ #: ../lib/hammer_cli_foreman/host.rb:168 ../lib/hammer_cli_foreman/host.rb:219
829
+ msgid "MAC"
830
+ msgstr "MAC"
831
+
832
+ #: ../lib/hammer_cli_foreman/host.rb:178
833
+ msgid "Bare Metal"
834
+ msgstr ""
835
+
836
+ #: ../lib/hammer_cli_foreman/host.rb:203
837
+ #, fuzzy
838
+ msgid "Organization"
839
+ msgstr "조직 "
840
+
841
+ #: ../lib/hammer_cli_foreman/host.rb:204
842
+ #, fuzzy
843
+ msgid "Location"
844
+ msgstr "위치 "
845
+
846
+ #: ../lib/hammer_cli_foreman/host.rb:206
847
+ msgid "Compute Resource"
848
+ msgstr "컴퓨터 리소스 "
849
+
850
+ #: ../lib/hammer_cli_foreman/host.rb:207
851
+ #, fuzzy
852
+ msgid "Compute Profile"
853
+ msgstr "컴퓨터 프로파일 "
854
+
855
+ #: ../lib/hammer_cli_foreman/host.rb:208 ../lib/hammer_cli_foreman/hostgroup.rb:51
856
+ msgid "Environment"
857
+ msgstr "환경 "
858
+
859
+ #: ../lib/hammer_cli_foreman/host.rb:209
860
+ #, fuzzy
861
+ msgid "Puppet CA Id"
862
+ msgstr "Puppet CA 프록시 Id"
863
+
864
+ #: ../lib/hammer_cli_foreman/host.rb:210
865
+ #, fuzzy
866
+ msgid "Puppet Master Id"
867
+ msgstr "Puppet 마스터 프록시 Id"
868
+
869
+ #: ../lib/hammer_cli_foreman/host.rb:211
870
+ msgid "Cert name"
871
+ msgstr "인증서 이름 "
872
+
873
+ #: ../lib/hammer_cli_foreman/host.rb:212 ../lib/hammer_cli_foreman/interface.rb:51
874
+ msgid "Managed"
875
+ msgstr "관리됨 "
876
+
877
+ #: ../lib/hammer_cli_foreman/host.rb:214
878
+ msgid "Installed at"
879
+ msgstr "설치됨 "
880
+
881
+ #: ../lib/hammer_cli_foreman/host.rb:215 ../lib/hammer_cli_foreman/report.rb:12
882
+ msgid "Last report"
883
+ msgstr "마지막 보고 "
884
+
885
+ #: ../lib/hammer_cli_foreman/host.rb:217 ../lib/hammer_cli_foreman/subnet.rb:12
886
+ msgid "Network"
887
+ msgstr "네트워크"
888
+
889
+ #: ../lib/hammer_cli_foreman/host.rb:220 ../lib/hammer_cli_foreman/hostgroup.rb:62 ../lib/hammer_cli_foreman/interface.rb:49
890
+ msgid "Subnet"
891
+ msgstr "서브넷"
892
+
893
+ #: ../lib/hammer_cli_foreman/host.rb:221 ../lib/hammer_cli_foreman/hostgroup.rb:64 ../lib/hammer_cli_foreman/interface.rb:50
894
+ msgid "Domain"
895
+ msgstr "도메인 "
896
+
897
+ #: ../lib/hammer_cli_foreman/host.rb:222
898
+ msgid "Service provider"
899
+ msgstr ""
900
+
901
+ #: ../lib/hammer_cli_foreman/host.rb:223
902
+ msgid "SP Name"
903
+ msgstr "SP 이름 "
904
+
905
+ #: ../lib/hammer_cli_foreman/host.rb:224
906
+ msgid "SP IP"
907
+ msgstr "SP IP"
908
+
909
+ #: ../lib/hammer_cli_foreman/host.rb:225
910
+ msgid "SP MAC"
911
+ msgstr "SP MAC"
912
+
913
+ #: ../lib/hammer_cli_foreman/host.rb:226
914
+ msgid "SP Subnet"
915
+ msgstr "SP 서브넷 "
916
+
917
+ #: ../lib/hammer_cli_foreman/host.rb:230
918
+ #, fuzzy
919
+ msgid "Network interfaces"
920
+ msgstr "BMC 네트워크 인터페이스 "
921
+
922
+ #: ../lib/hammer_cli_foreman/host.rb:232 ../lib/hammer_cli_foreman/interface.rb:24 ../lib/hammer_cli_foreman/interface.rb:44
923
+ msgid "Identifier"
924
+ msgstr ""
925
+
926
+ #: ../lib/hammer_cli_foreman/host.rb:233 ../lib/hammer_cli_foreman/interface.rb:25 ../lib/hammer_cli_foreman/interface.rb:45 ../lib/hammer_cli_foreman/smart_class_parameter.rb:62 ../lib/hammer_cli_foreman/smart_class_parameter.rb:66 ../lib/hammer_cli_foreman/smart_variable.rb:12 ../lib/hammer_cli_foreman/smart_variable.rb:54 ../lib/hammer_cli_foreman/template.rb:27
927
+ msgid "Type"
928
+ msgstr "유형"
929
+
930
+ #: ../lib/hammer_cli_foreman/host.rb:234 ../lib/hammer_cli_foreman/interface.rb:26 ../lib/hammer_cli_foreman/interface.rb:46
931
+ msgid "MAC address"
932
+ msgstr ""
933
+
934
+ #: ../lib/hammer_cli_foreman/host.rb:235 ../lib/hammer_cli_foreman/interface.rb:27 ../lib/hammer_cli_foreman/interface.rb:47
935
+ msgid "IP address"
936
+ msgstr ""
937
+
938
+ #: ../lib/hammer_cli_foreman/host.rb:236
939
+ msgid "FQDN"
940
+ msgstr ""
941
+
942
+ #: ../lib/hammer_cli_foreman/host.rb:239
943
+ #, fuzzy
944
+ msgid "Operating system"
945
+ msgstr "운영 체제 "
946
+
947
+ #: ../lib/hammer_cli_foreman/host.rb:240 ../lib/hammer_cli_foreman/hostgroup.rb:65 ../lib/hammer_cli_foreman/image.rb:45
948
+ msgid "Architecture"
949
+ msgstr "아키텍처 "
950
+
951
+ #: ../lib/hammer_cli_foreman/host.rb:244
952
+ msgid "Build"
953
+ msgstr "빌드 "
954
+
955
+ #: ../lib/hammer_cli_foreman/host.rb:245 ../lib/hammer_cli_foreman/hostgroup.rb:67
956
+ msgid "Medium"
957
+ msgstr "미디어 "
958
+
959
+ #: ../lib/hammer_cli_foreman/host.rb:246 ../lib/hammer_cli_foreman/hostgroup.rb:66
960
+ msgid "Partition Table"
961
+ msgstr "파티션 테이블 "
962
+
963
+ #: ../lib/hammer_cli_foreman/host.rb:247
964
+ #, fuzzy
965
+ msgid "Custom partition table"
966
+ msgstr "파티션 테이블 연결 "
967
+
968
+ #: ../lib/hammer_cli_foreman/host.rb:250
969
+ msgid "Image"
970
+ msgstr "이미지 "
971
+
972
+ #: ../lib/hammer_cli_foreman/host.rb:251
973
+ msgid "Image file"
974
+ msgstr "이미지 파일 "
975
+
976
+ #: ../lib/hammer_cli_foreman/host.rb:252
977
+ msgid "Use image"
978
+ msgstr "이미지 사용 "
979
+
980
+ #: ../lib/hammer_cli_foreman/host.rb:258
981
+ msgid "Additional info"
982
+ msgstr ""
983
+
984
+ #: ../lib/hammer_cli_foreman/host.rb:259
985
+ msgid "Owner Id"
986
+ msgstr "소유자 Id"
987
+
988
+ #: ../lib/hammer_cli_foreman/host.rb:260
989
+ msgid "Owner Type"
990
+ msgstr "소유자 유형 "
991
+
992
+ #: ../lib/hammer_cli_foreman/host.rb:261
993
+ msgid "Enabled"
994
+ msgstr "활성화됨 "
995
+
996
+ #: ../lib/hammer_cli_foreman/host.rb:262 ../lib/hammer_cli_foreman/hostgroup.rb:52
997
+ msgid "Model"
998
+ msgstr "모델 "
999
+
1000
+ #: ../lib/hammer_cli_foreman/host.rb:263
1001
+ msgid "Comment"
1002
+ msgstr "코멘트 "
1003
+
1004
+ #: ../lib/hammer_cli_foreman/host.rb:276
1005
+ msgid "Status"
1006
+ msgstr "상태 "
1007
+
1008
+ #: ../lib/hammer_cli_foreman/host.rb:277
1009
+ msgid "Power"
1010
+ msgstr "전원"
1011
+
1012
+ #: ../lib/hammer_cli_foreman/host.rb:313
1013
+ msgid "Puppet run triggered"
1014
+ msgstr "Puppet run이 실행되었습니다 "
1015
+
1016
+ #: ../lib/hammer_cli_foreman/host.rb:366
1017
+ msgid "Host created"
1018
+ msgstr "호스트가 생성되었습니다 "
1019
+
1020
+ #: ../lib/hammer_cli_foreman/host.rb:367
1021
+ msgid "Could not create the host"
1022
+ msgstr "호스트를 생성할 수 없습니다 "
1023
+
1024
+ #: ../lib/hammer_cli_foreman/host.rb:388
1025
+ msgid "Host updated"
1026
+ msgstr "호스트가 업데이트되었습니다 "
1027
+
1028
+ #: ../lib/hammer_cli_foreman/host.rb:389
1029
+ msgid "Could not update the host"
1030
+ msgstr "호스트를 업데이트할 수 없습니다 "
1031
+
1032
+ #: ../lib/hammer_cli_foreman/host.rb:396
1033
+ msgid "Host deleted"
1034
+ msgstr "호스트가 삭제되었습니다 "
1035
+
1036
+ #: ../lib/hammer_cli_foreman/host.rb:397
1037
+ msgid "Could not delete the host"
1038
+ msgstr "호스트를 삭제할 수 없습니다 "
1039
+
1040
+ #: ../lib/hammer_cli_foreman/host.rb:404
1041
+ msgid "Create or update parameter for a host."
1042
+ msgstr "호스트의 매개 변수를 생성 또는 업데이트합니다. "
1043
+
1044
+ #: ../lib/hammer_cli_foreman/host.rb:406
1045
+ msgid "Host parameter updated"
1046
+ msgstr "호스트 매개 변수가 업데이트되었습니다 "
1047
+
1048
+ #: ../lib/hammer_cli_foreman/host.rb:407
1049
+ msgid "New host parameter created"
1050
+ msgstr "새 호스트 매개 변수가 생성되었습니다 "
1051
+
1052
+ #: ../lib/hammer_cli_foreman/host.rb:408
1053
+ msgid "Could not set host parameter"
1054
+ msgstr "호스트 매개 변수를 설정할 수 없습니다 "
1055
+
1056
+ #: ../lib/hammer_cli_foreman/host.rb:420
1057
+ msgid "Delete parameter for a host."
1058
+ msgstr "호스트의 매개 변수를 삭제합니다. "
1059
+
1060
+ #: ../lib/hammer_cli_foreman/host.rb:422
1061
+ msgid "Host parameter deleted"
1062
+ msgstr "호스트 매개 변수가 삭제되었습니다 "
1063
+
1064
+ #: ../lib/hammer_cli_foreman/host.rb:437
1065
+ msgid "Power a host on"
1066
+ msgstr "호스트 전원 켜기 "
1067
+
1068
+ #: ../lib/hammer_cli_foreman/host.rb:438
1069
+ msgid "The host is starting."
1070
+ msgstr "호스트가 시작되고 있습니다. "
1071
+
1072
+ #: ../lib/hammer_cli_foreman/host.rb:455
1073
+ msgid "Force turning off a host"
1074
+ msgstr "강제로 호스트 전원 끄기 "
1075
+
1076
+ #: ../lib/hammer_cli_foreman/host.rb:460
1077
+ msgid "Power a host off"
1078
+ msgstr "호스트 전원 끄기 "
1079
+
1080
+ #: ../lib/hammer_cli_foreman/host.rb:472
1081
+ msgid "Power off forced."
1082
+ msgstr "강제로 전원을 끕니다. "
1083
+
1084
+ #: ../lib/hammer_cli_foreman/host.rb:474
1085
+ msgid "Powering the host off."
1086
+ msgstr "호스트 전원을 끄고 있습니다. "
1087
+
1088
+ #: ../lib/hammer_cli_foreman/host.rb:491
1089
+ msgid "Reboot a host"
1090
+ msgstr "호스트 재부팅 "
1091
+
1092
+ #: ../lib/hammer_cli_foreman/host.rb:492
1093
+ msgid "Host reboot started."
1094
+ msgstr "호스트 재부팅을 시작했습니다. "
1095
+
1096
+ #: ../lib/hammer_cli_foreman/hostgroup.rb:10
1097
+ msgid "List of puppetclass ids"
1098
+ msgstr ""
1099
+
1100
+ #: ../lib/hammer_cli_foreman/hostgroup.rb:12
1101
+ msgid "Name of puppet CA proxy"
1102
+ msgstr ""
1103
+
1104
+ #: ../lib/hammer_cli_foreman/hostgroup.rb:13
1105
+ msgid "Name of puppet proxy"
1106
+ msgstr ""
1107
+
1108
+ #: ../lib/hammer_cli_foreman/hostgroup.rb:14
1109
+ msgid "Name of parent hostgroup"
1110
+ msgstr ""
1111
+
1112
+ #: ../lib/hammer_cli_foreman/hostgroup.rb:49 ../lib/hammer_cli_foreman/operating_system.rb:11
1113
+ #, fuzzy
1114
+ msgid "Title"
1115
+ msgstr "파일 "
1116
+
1117
+ #: ../lib/hammer_cli_foreman/hostgroup.rb:68
1118
+ msgid "Puppet CA Proxy Id"
1119
+ msgstr "Puppet CA 프록시 Id"
1120
+
1121
+ #: ../lib/hammer_cli_foreman/hostgroup.rb:69
1122
+ msgid "Puppet Master Proxy Id"
1123
+ msgstr "Puppet 마스터 프록시 Id"
1124
+
1125
+ #: ../lib/hammer_cli_foreman/hostgroup.rb:70
1126
+ msgid "ComputeProfile"
1127
+ msgstr "컴퓨터 프로파일 "
1128
+
1129
+ #: ../lib/hammer_cli_foreman/hostgroup.rb:74
1130
+ msgid "Parent Id"
1131
+ msgstr ""
1132
+
1133
+ #: ../lib/hammer_cli_foreman/hostgroup.rb:84
1134
+ msgid "Hostgroup created"
1135
+ msgstr "호스트 그룹이 생성되었습니다 "
1136
+
1137
+ #: ../lib/hammer_cli_foreman/hostgroup.rb:85
1138
+ msgid "Could not create the hostgroup"
1139
+ msgstr "호스트 그룹을 생성할 수 없습니다 "
1140
+
1141
+ #: ../lib/hammer_cli_foreman/hostgroup.rb:94
1142
+ msgid "Hostgroup updated"
1143
+ msgstr "호스트 그룹이 업데이트되었습니다 "
1144
+
1145
+ #: ../lib/hammer_cli_foreman/hostgroup.rb:95
1146
+ msgid "Could not update the hostgroup"
1147
+ msgstr "호스트 그룹을 업데이트할 수 없습니다 "
1148
+
1149
+ #: ../lib/hammer_cli_foreman/hostgroup.rb:102
1150
+ msgid "Hostgroup deleted"
1151
+ msgstr "호스트 그룹이 삭제되었습니다 "
1152
+
1153
+ #: ../lib/hammer_cli_foreman/hostgroup.rb:103
1154
+ msgid "Could not delete the hostgroup"
1155
+ msgstr "호스트 그룹을 삭제할 수 없습니다 "
1156
+
1157
+ #: ../lib/hammer_cli_foreman/hostgroup.rb:127
1158
+ msgid "Create or update parameter for a hostgroup."
1159
+ msgstr "호스트 그룹의 매개 변수가 생성 또는 업데이트합니다."
1160
+
1161
+ #: ../lib/hammer_cli_foreman/hostgroup.rb:129
1162
+ msgid "Hostgroup parameter updated"
1163
+ msgstr "호스트 그룹 매개 변수가 업데이트되었습니다 "
1164
+
1165
+ #: ../lib/hammer_cli_foreman/hostgroup.rb:130
1166
+ msgid "New hostgroup parameter created"
1167
+ msgstr "새 호스트 그룹 매개 변수가 생성되었습니다 "
1168
+
1169
+ #: ../lib/hammer_cli_foreman/hostgroup.rb:131
1170
+ msgid "Could not set hostgroup parameter"
1171
+ msgstr "호스트 그룹 매개 변수를 설정할 수 없습니다 "
1172
+
1173
+ #: ../lib/hammer_cli_foreman/hostgroup.rb:138
1174
+ msgid "Delete parameter for a hostgroup."
1175
+ msgstr "호스트 그룹의 매개 변수를 삭제합니다."
1176
+
1177
+ #: ../lib/hammer_cli_foreman/hostgroup.rb:140
1178
+ msgid "Hostgroup parameter deleted"
1179
+ msgstr "호스트 그룹 매개 변수가 삭제되었습니다 "
1180
+
1181
+ #: ../lib/hammer_cli_foreman/id_resolver.rb:36
1182
+ msgid "Architecture name"
1183
+ msgstr "아키텍처 이름 "
1184
+
1185
+ #: ../lib/hammer_cli_foreman/id_resolver.rb:37
1186
+ msgid "Compute resource name"
1187
+ msgstr "컴퓨터 리소스 이름 "
1188
+
1189
+ #: ../lib/hammer_cli_foreman/id_resolver.rb:38
1190
+ msgid "Domain name"
1191
+ msgstr "도메인 이름 "
1192
+
1193
+ #: ../lib/hammer_cli_foreman/id_resolver.rb:39
1194
+ msgid "Environment name"
1195
+ msgstr "환경 이름 "
1196
+
1197
+ #: ../lib/hammer_cli_foreman/id_resolver.rb:42
1198
+ msgid "Host name"
1199
+ msgstr "호스트 이름 "
1200
+
1201
+ #: ../lib/hammer_cli_foreman/id_resolver.rb:43
1202
+ #, fuzzy
1203
+ msgid "Hostgroup title"
1204
+ msgstr "호스트 그룹 이름 "
1205
+
1206
+ #: ../lib/hammer_cli_foreman/id_resolver.rb:43
1207
+ msgid "Hostgroup name"
1208
+ msgstr "호스트 그룹 이름 "
1209
+
1210
+ #: ../lib/hammer_cli_foreman/id_resolver.rb:46
1211
+ msgid "Location name"
1212
+ msgstr "위치 이름 "
1213
+
1214
+ #: ../lib/hammer_cli_foreman/id_resolver.rb:47
1215
+ msgid "Medium name"
1216
+ msgstr "미디어 이름 "
1217
+
1218
+ #: ../lib/hammer_cli_foreman/id_resolver.rb:48
1219
+ msgid "Model name"
1220
+ msgstr "모델 이름 "
1221
+
1222
+ #: ../lib/hammer_cli_foreman/id_resolver.rb:49
1223
+ msgid "Organization name"
1224
+ msgstr "조직 이름 "
1225
+
1226
+ #: ../lib/hammer_cli_foreman/id_resolver.rb:50
1227
+ #, fuzzy
1228
+ msgid "Operating system title"
1229
+ msgstr "운영 체제가 생성되었습니다 "
1230
+
1231
+ #: ../lib/hammer_cli_foreman/id_resolver.rb:52
1232
+ msgid "Partition table name"
1233
+ msgstr "파티션 테이블 이름 "
1234
+
1235
+ #: ../lib/hammer_cli_foreman/id_resolver.rb:53
1236
+ msgid "Proxy name"
1237
+ msgstr "프록시 이름 "
1238
+
1239
+ #: ../lib/hammer_cli_foreman/id_resolver.rb:54
1240
+ msgid "Puppet class name"
1241
+ msgstr "Puppet 클래스 이름 "
1242
+
1243
+ #: ../lib/hammer_cli_foreman/id_resolver.rb:55
1244
+ msgid "Report name"
1245
+ msgstr "보고서 이름 "
1246
+
1247
+ #: ../lib/hammer_cli_foreman/id_resolver.rb:56
1248
+ msgid "User role name"
1249
+ msgstr "사용자 역할 이름 "
1250
+
1251
+ #: ../lib/hammer_cli_foreman/id_resolver.rb:57
1252
+ #, fuzzy
1253
+ msgid "Setting name"
1254
+ msgstr "인증서 이름 "
1255
+
1256
+ #: ../lib/hammer_cli_foreman/id_resolver.rb:58
1257
+ msgid "Subnet name"
1258
+ msgstr "서브넷 이름 "
1259
+
1260
+ #: ../lib/hammer_cli_foreman/id_resolver.rb:60
1261
+ msgid "User's login to search by"
1262
+ msgstr "검색할 사용자 로그인 "
1263
+
1264
+ #: ../lib/hammer_cli_foreman/id_resolver.rb:61
1265
+ msgid "Common parameter name"
1266
+ msgstr "일반적인 매개 변수 이름 "
1267
+
1268
+ #: ../lib/hammer_cli_foreman/id_resolver.rb:62
1269
+ msgid "Smart class parameter name"
1270
+ msgstr "스마트 클래스 매개 변수 이름 "
1271
+
1272
+ #: ../lib/hammer_cli_foreman/id_resolver.rb:63
1273
+ #, fuzzy
1274
+ msgid "Smart variable name"
1275
+ msgstr "스마트 매개 변수 "
1276
+
1277
+ #: ../lib/hammer_cli_foreman/id_resolver.rb:65
1278
+ msgid "Name to search by"
1279
+ msgstr "검색할 이름 "
1280
+
1281
+ #: ../lib/hammer_cli_foreman/id_resolver.rb:153
1282
+ #, fuzzy
1283
+ msgid "one of %s not found"
1284
+ msgstr "%s을(를) 찾을 수 없음 "
1285
+
1286
+ #: ../lib/hammer_cli_foreman/id_resolver.rb:200
1287
+ msgid "%s not found"
1288
+ msgstr "%s을(를) 찾을 수 없음 "
1289
+
1290
+ #: ../lib/hammer_cli_foreman/id_resolver.rb:201
1291
+ msgid "%s found more than once"
1292
+ msgstr "%s을(를) 하나 이상 발견했습니다 "
1293
+
1294
+ #: ../lib/hammer_cli_foreman/id_resolver.rb:212
1295
+ msgid "Missing options to search %s"
1296
+ msgstr "%s의 검색에 누락된 옵션 "
1297
+
1298
+ #: ../lib/hammer_cli_foreman/image.rb:8
1299
+ msgid "View and manage compute resource's images"
1300
+ msgstr "컴퓨터 리소스의 이미지 보기 및 관리 "
1301
+
1302
+ #: ../lib/hammer_cli_foreman/image.rb:32 ../lib/hammer_cli_foreman/interface.rb:59
1303
+ msgid "Username"
1304
+ msgstr "사용자 이름 "
1305
+
1306
+ #: ../lib/hammer_cli_foreman/image.rb:46
1307
+ msgid "IAM role"
1308
+ msgstr "IAM 역할 "
1309
+
1310
+ #: ../lib/hammer_cli_foreman/image.rb:56
1311
+ msgid "Show images available for addition"
1312
+ msgstr "추가할 수 있는 이미지 표시 "
1313
+
1314
+ #: ../lib/hammer_cli_foreman/image.rb:81
1315
+ msgid "Image created"
1316
+ msgstr "이미지가 생성되었습니다 "
1317
+
1318
+ #: ../lib/hammer_cli_foreman/image.rb:82
1319
+ msgid "Could not create the image"
1320
+ msgstr "이미지를 생성할 수 없습니다 "
1321
+
1322
+ #: ../lib/hammer_cli_foreman/image.rb:90
1323
+ msgid "Image updated"
1324
+ msgstr "이미지가 업데이트되었습니다 "
1325
+
1326
+ #: ../lib/hammer_cli_foreman/image.rb:91
1327
+ msgid "Could not update the image"
1328
+ msgstr "이미지를 업데이트할 수 없습니다 "
1329
+
1330
+ #: ../lib/hammer_cli_foreman/image.rb:99
1331
+ msgid "Image deleted"
1332
+ msgstr "이미지가 삭제되었습니다 "
1333
+
1334
+ #: ../lib/hammer_cli_foreman/image.rb:100
1335
+ msgid "Could not delete the image"
1336
+ msgstr "이미지를 삭제할 수 없습니다 "
1337
+
1338
+ #: ../lib/hammer_cli_foreman/interface.rb:6
1339
+ msgid "View and manage host's network interfaces"
1340
+ msgstr ""
1341
+
1342
+ #: ../lib/hammer_cli_foreman/interface.rb:10
1343
+ #, fuzzy
1344
+ msgid "primary"
1345
+ msgstr "1차 DNS"
1346
+
1347
+ #: ../lib/hammer_cli_foreman/interface.rb:11
1348
+ msgid "provision"
1349
+ msgstr ""
1350
+
1351
+ #: ../lib/hammer_cli_foreman/interface.rb:28 ../lib/hammer_cli_foreman/interface.rb:48
1352
+ #, fuzzy
1353
+ msgid "DNS name"
1354
+ msgstr "인증서 이름 "
1355
+
1356
+ #: ../lib/hammer_cli_foreman/interface.rb:52
1357
+ #, fuzzy
1358
+ msgid "Primary"
1359
+ msgstr "1차 DNS"
1360
+
1361
+ #: ../lib/hammer_cli_foreman/interface.rb:53
1362
+ #, fuzzy
1363
+ msgid "Provision"
1364
+ msgstr "공급자 "
1365
+
1366
+ #: ../lib/hammer_cli_foreman/interface.rb:54
1367
+ msgid "Virtual"
1368
+ msgstr ""
1369
+
1370
+ #: ../lib/hammer_cli_foreman/interface.rb:55
1371
+ msgid "Tag"
1372
+ msgstr ""
1373
+
1374
+ #: ../lib/hammer_cli_foreman/interface.rb:56
1375
+ msgid "Attached to"
1376
+ msgstr ""
1377
+
1378
+ #: ../lib/hammer_cli_foreman/interface.rb:58
1379
+ msgid "BMC"
1380
+ msgstr ""
1381
+
1382
+ #: ../lib/hammer_cli_foreman/interface.rb:63
1383
+ msgid "Bond"
1384
+ msgstr ""
1385
+
1386
+ #: ../lib/hammer_cli_foreman/interface.rb:64
1387
+ #, fuzzy
1388
+ msgid "Mode"
1389
+ msgstr "모델 "
1390
+
1391
+ #: ../lib/hammer_cli_foreman/interface.rb:65
1392
+ msgid "Attached devices"
1393
+ msgstr ""
1394
+
1395
+ #: ../lib/hammer_cli_foreman/interface.rb:66
1396
+ msgid "Bond options"
1397
+ msgstr ""
1398
+
1399
+ #: ../lib/hammer_cli_foreman/interface.rb:77
1400
+ msgid "Should this interface be used for constructing the FQDN of the host? Each managed hosts needs to have one primary interface."
1401
+ msgstr ""
1402
+
1403
+ #: ../lib/hammer_cli_foreman/interface.rb:78
1404
+ msgid "Should this interface be used for TFTP of PXELinux (or SSH for image-based hosts)? Each managed hosts needs to have one provision interface."
1405
+ msgstr ""
1406
+
1407
+ #: ../lib/hammer_cli_foreman/interface.rb:128
1408
+ #, fuzzy
1409
+ msgid "Interface created"
1410
+ msgstr "이미지가 생성되었습니다 "
1411
+
1412
+ #: ../lib/hammer_cli_foreman/interface.rb:129
1413
+ #, fuzzy
1414
+ msgid "Could not create the interface"
1415
+ msgstr "이미지를 생성할 수 없습니다 "
1416
+
1417
+ #: ../lib/hammer_cli_foreman/interface.rb:131 ../lib/hammer_cli_foreman/interface.rb:144
1418
+ #, fuzzy
1419
+ msgid "Compute resource specific attributes."
1420
+ msgstr "컴퓨터 리소스 속성 "
1421
+
1422
+ #: ../lib/hammer_cli_foreman/interface.rb:141
1423
+ #, fuzzy
1424
+ msgid "Interface updated"
1425
+ msgstr "이미지가 업데이트되었습니다 "
1426
+
1427
+ #: ../lib/hammer_cli_foreman/interface.rb:142
1428
+ #, fuzzy
1429
+ msgid "Could not update the interface"
1430
+ msgstr "이미지를 업데이트할 수 없습니다 "
1431
+
1432
+ #: ../lib/hammer_cli_foreman/interface.rb:154
1433
+ #, fuzzy
1434
+ msgid "Interface deleted"
1435
+ msgstr "이미지가 삭제되었습니다 "
1436
+
1437
+ #: ../lib/hammer_cli_foreman/interface.rb:155
1438
+ #, fuzzy
1439
+ msgid "Could not delete the interface"
1440
+ msgstr "이미지를 삭제할 수 없습니다 "
1441
+
1442
+ #: ../lib/hammer_cli_foreman/location.rb:24 ../lib/hammer_cli_foreman/location.rb:62 ../lib/hammer_cli_foreman/location.rb:74
1443
+ msgid "Location numeric id to search by"
1444
+ msgstr "검색 대상 위치의 숫자로된 ID "
1445
+
1446
+ #: ../lib/hammer_cli_foreman/location.rb:37 ../lib/hammer_cli_foreman/references.rb:18
1447
+ msgid "Organizations"
1448
+ msgstr "조직 "
1449
+
1450
+ #: ../lib/hammer_cli_foreman/location.rb:52
1451
+ msgid "Location created"
1452
+ msgstr "위치가 생성되었습니다 "
1453
+
1454
+ #: ../lib/hammer_cli_foreman/location.rb:53
1455
+ msgid "Could not create the location"
1456
+ msgstr "위치를 생성할 수 없습니다 "
1457
+
1458
+ #: ../lib/hammer_cli_foreman/location.rb:64
1459
+ msgid "Location updated"
1460
+ msgstr "위치가 업데이트되었습니다 "
1461
+
1462
+ #: ../lib/hammer_cli_foreman/location.rb:65
1463
+ msgid "Could not update the location"
1464
+ msgstr "위치를 업데이트할 수 없습니다 "
1465
+
1466
+ #: ../lib/hammer_cli_foreman/location.rb:76
1467
+ msgid "Location deleted"
1468
+ msgstr "위치가 삭제되었습니다 "
1469
+
1470
+ #: ../lib/hammer_cli_foreman/location.rb:77
1471
+ msgid "Could not delete the location"
1472
+ msgstr "위치를 삭제할 수 없습니다 "
1473
+
1474
+ #: ../lib/hammer_cli_foreman/media.rb:11
1475
+ msgid "Path"
1476
+ msgstr "경로"
1477
+
1478
+ #: ../lib/hammer_cli_foreman/media.rb:20 ../lib/hammer_cli_foreman/partition_table.rb:12
1479
+ msgid "OS Family"
1480
+ msgstr "OS 제품군 "
1481
+
1482
+ #: ../lib/hammer_cli_foreman/media.rb:32
1483
+ msgid "Installation medium created"
1484
+ msgstr "설치 미디어가 생성되었습니다 "
1485
+
1486
+ #: ../lib/hammer_cli_foreman/media.rb:33
1487
+ msgid "Could not create the installation medium"
1488
+ msgstr "설치 미디어를 생성할 수 없습니다 "
1489
+
1490
+ #: ../lib/hammer_cli_foreman/media.rb:41
1491
+ msgid "Installation medium updated"
1492
+ msgstr "설치 미디어가 업데이트되었습니다 "
1493
+
1494
+ #: ../lib/hammer_cli_foreman/media.rb:42
1495
+ msgid "Could not update the installation media"
1496
+ msgstr "설치 미디어를 업데이트할 수 없습니다 "
1497
+
1498
+ #: ../lib/hammer_cli_foreman/media.rb:50
1499
+ msgid "Installation medium deleted"
1500
+ msgstr "설치 미디어가 삭제되었습니다 "
1501
+
1502
+ #: ../lib/hammer_cli_foreman/media.rb:51
1503
+ msgid "Could not delete the installation media"
1504
+ msgstr "설치 미디어를 삭제할 수 없습니다 "
1505
+
1506
+ #: ../lib/hammer_cli_foreman/model.rb:12
1507
+ msgid "Vendor class"
1508
+ msgstr "벤더 클래스 "
1509
+
1510
+ #: ../lib/hammer_cli_foreman/model.rb:13
1511
+ msgid "HW model"
1512
+ msgstr "HW 모델 "
1513
+
1514
+ #: ../lib/hammer_cli_foreman/model.rb:22
1515
+ msgid "Info"
1516
+ msgstr "정보 "
1517
+
1518
+ #: ../lib/hammer_cli_foreman/model.rb:31
1519
+ msgid "Hardware model created"
1520
+ msgstr "하드웨어 모델이 생성되었습니다 "
1521
+
1522
+ #: ../lib/hammer_cli_foreman/model.rb:32
1523
+ msgid "Could not create the hardware model"
1524
+ msgstr "하드웨어 모델을 생성할 수 없습니다 "
1525
+
1526
+ #: ../lib/hammer_cli_foreman/model.rb:38
1527
+ msgid "Hardware model deleted"
1528
+ msgstr "하드웨어 모델이 삭제되었습니다 "
1529
+
1530
+ #: ../lib/hammer_cli_foreman/model.rb:39
1531
+ msgid "Could not delete the hardware model"
1532
+ msgstr "하드웨어 모델을 삭제할 수 없습니다 "
1533
+
1534
+ #: ../lib/hammer_cli_foreman/model.rb:46
1535
+ msgid "Hardware model updated"
1536
+ msgstr "하드웨어 모델이 업데이트되었습니다 "
1537
+
1538
+ #: ../lib/hammer_cli_foreman/model.rb:47
1539
+ msgid "Could not update the hardware model"
1540
+ msgstr "하드웨어 모델을 업데이트할 수 없습니다 "
1541
+
1542
+ #: ../lib/hammer_cli_foreman/operating_system.rb:12
1543
+ msgid "Release name"
1544
+ msgstr "릴리즈 이름 "
1545
+
1546
+ #: ../lib/hammer_cli_foreman/operating_system.rb:13
1547
+ msgid "Family"
1548
+ msgstr "제품군 "
1549
+
1550
+ #: ../lib/hammer_cli_foreman/operating_system.rb:23
1551
+ msgid "Major version"
1552
+ msgstr "주요 버전 "
1553
+
1554
+ #: ../lib/hammer_cli_foreman/operating_system.rb:24
1555
+ msgid "Minor version"
1556
+ msgstr "마이너 버전 "
1557
+
1558
+ #: ../lib/hammer_cli_foreman/operating_system.rb:25
1559
+ msgid "Partition tables"
1560
+ msgstr "파티션 테이블 "
1561
+
1562
+ #: ../lib/hammer_cli_foreman/operating_system.rb:28
1563
+ msgid "Default templates"
1564
+ msgstr "기본값 템플릿 "
1565
+
1566
+ #: ../lib/hammer_cli_foreman/operating_system.rb:31
1567
+ msgid "Architectures"
1568
+ msgstr "아키텍처 "
1569
+
1570
+ #: ../lib/hammer_cli_foreman/operating_system.rb:44
1571
+ msgid "Operating system created"
1572
+ msgstr "운영 체제가 생성되었습니다 "
1573
+
1574
+ #: ../lib/hammer_cli_foreman/operating_system.rb:45
1575
+ msgid "Could not create the operating system"
1576
+ msgstr "운영 체제를 생성할 수 없습니다 "
1577
+
1578
+ #: ../lib/hammer_cli_foreman/operating_system.rb:52
1579
+ msgid "Operating system updated"
1580
+ msgstr "운영 체제가 업데이트되었습니다 "
1581
+
1582
+ #: ../lib/hammer_cli_foreman/operating_system.rb:53
1583
+ msgid "Could not update the operating system"
1584
+ msgstr "운영 체제를 업데이트할 수 없습니다 "
1585
+
1586
+ #: ../lib/hammer_cli_foreman/operating_system.rb:60
1587
+ msgid "Operating system deleted"
1588
+ msgstr "운영 체제가 삭제되었습니다 "
1589
+
1590
+ #: ../lib/hammer_cli_foreman/operating_system.rb:61
1591
+ msgid "Could not delete the operating system"
1592
+ msgstr "운영 체제를 삭제할 수 없습니다 "
1593
+
1594
+ #: ../lib/hammer_cli_foreman/operating_system.rb:68
1595
+ msgid "Create or update parameter for an operating system."
1596
+ msgstr "운영 체제의 매개 변수를 생성 또는 업데이트합니다. "
1597
+
1598
+ #: ../lib/hammer_cli_foreman/operating_system.rb:70
1599
+ msgid "Operating system parameter updated"
1600
+ msgstr "운영 체제 매개 변수가 업데이트되었습니다 "
1601
+
1602
+ #: ../lib/hammer_cli_foreman/operating_system.rb:71
1603
+ msgid "New operating system parameter created"
1604
+ msgstr "새 운영 체제 매개 변수가 생성되었습니다 "
1605
+
1606
+ #: ../lib/hammer_cli_foreman/operating_system.rb:72
1607
+ msgid "Could not set operating system parameter"
1608
+ msgstr "운영 체제 매개 변수를 설정할 수 없습니다 "
1609
+
1610
+ #: ../lib/hammer_cli_foreman/operating_system.rb:84
1611
+ msgid "Delete parameter for an operating system."
1612
+ msgstr "운영 체제의 매개변수를 삭제합니다. "
1613
+
1614
+ #: ../lib/hammer_cli_foreman/operating_system.rb:86
1615
+ msgid "operating system parameter deleted"
1616
+ msgstr "운영 체제 매개 변수가 삭제되었습니다 "
1617
+
1618
+ #: ../lib/hammer_cli_foreman/operating_system.rb:101 ../lib/hammer_cli_foreman/operating_system.rb:167
1619
+ msgid "operatingsystem id"
1620
+ msgstr "운영 체제 ID "
1621
+
1622
+ #: ../lib/hammer_cli_foreman/operating_system.rb:102
1623
+ msgid "config template id to be set"
1624
+ msgstr "설정할 설정 템플릿 ID "
1625
+
1626
+ #: ../lib/hammer_cli_foreman/operating_system.rb:105
1627
+ msgid "[%{config_template_name}] was set as default %{template_kind_name} template"
1628
+ msgstr "[%{config_template_name}]이(가) 기본값 %{template_kind_name} 템플릿으로 설정되었습니다 "
1629
+
1630
+ #: ../lib/hammer_cli_foreman/operating_system.rb:106
1631
+ msgid "Could not set the os default template"
1632
+ msgstr "os 기본값 템플릿을 설정할 수 없습니다 "
1633
+
1634
+ #: ../lib/hammer_cli_foreman/operating_system.rb:168
1635
+ msgid "Type of the config template"
1636
+ msgstr "설정 템플릿 유형 "
1637
+
1638
+ #: ../lib/hammer_cli_foreman/operating_system.rb:170
1639
+ msgid "Default template deleted"
1640
+ msgstr "기본값 템플릿이 삭제되었습니다 "
1641
+
1642
+ #: ../lib/hammer_cli_foreman/operating_system.rb:171
1643
+ msgid "Could not delete the default template"
1644
+ msgstr "기본값 템플릿을 삭제할 수 없습니다 "
1645
+
1646
+ #: ../lib/hammer_cli_foreman/operating_system.rb:178
1647
+ msgid "Default template of type %s not found"
1648
+ msgstr ""
1649
+
1650
+ #: ../lib/hammer_cli_foreman/organization.rb:37 ../lib/hammer_cli_foreman/references.rb:15
1651
+ msgid "Locations"
1652
+ msgstr "위치 "
1653
+
1654
+ #: ../lib/hammer_cli_foreman/organization.rb:53
1655
+ msgid "Organization created"
1656
+ msgstr "조직이 생성되었습니다 "
1657
+
1658
+ #: ../lib/hammer_cli_foreman/organization.rb:54
1659
+ msgid "Could not create the organization"
1660
+ msgstr "조직을 생성할 수 없습니다 "
1661
+
1662
+ #: ../lib/hammer_cli_foreman/organization.rb:65
1663
+ msgid "Organization updated"
1664
+ msgstr "조직이 업데이트되었습니다 "
1665
+
1666
+ #: ../lib/hammer_cli_foreman/organization.rb:66
1667
+ msgid "Could not update the organization"
1668
+ msgstr "조직을 업데이트할 수 없습니다 "
1669
+
1670
+ #: ../lib/hammer_cli_foreman/organization.rb:77
1671
+ msgid "Organization deleted"
1672
+ msgstr "조직이 삭제되었습니다 "
1673
+
1674
+ #: ../lib/hammer_cli_foreman/organization.rb:78
1675
+ msgid "Could not delete the organization"
1676
+ msgstr "조직을 삭제할 수 없습니다 "
1677
+
1678
+ #: ../lib/hammer_cli_foreman/partition_table.rb:31
1679
+ msgid "View partition table content."
1680
+ msgstr "파티션 테이블 내용을 표시합니다. "
1681
+
1682
+ #: ../lib/hammer_cli_foreman/partition_table.rb:43 ../lib/hammer_cli_foreman/partition_table.rb:54
1683
+ msgid "Path to a file that contains the partition layout"
1684
+ msgstr "파티션 레이아웃이 들어 있는 파일로의 경로 "
1685
+
1686
+ #: ../lib/hammer_cli_foreman/partition_table.rb:46
1687
+ msgid "Partition table created"
1688
+ msgstr "파티션 테이블이 생성되었습니다 "
1689
+
1690
+ #: ../lib/hammer_cli_foreman/partition_table.rb:47
1691
+ msgid "Could not create the partition table"
1692
+ msgstr "파티션 테이블을 생성할 수 없습니다 "
1693
+
1694
+ #: ../lib/hammer_cli_foreman/partition_table.rb:57
1695
+ msgid "Partition table updated"
1696
+ msgstr "파티션 테이블이 업데이트되었습니다 "
1697
+
1698
+ #: ../lib/hammer_cli_foreman/partition_table.rb:58
1699
+ msgid "Could not update the partition table"
1700
+ msgstr "파티션 테이블을 업데이트할 수 없습니다 "
1701
+
1702
+ #: ../lib/hammer_cli_foreman/partition_table.rb:65
1703
+ msgid "Partition table deleted"
1704
+ msgstr "파티션 테이블이 삭제되었습니다 "
1705
+
1706
+ #: ../lib/hammer_cli_foreman/partition_table.rb:66
1707
+ msgid "Could not delete the partition table"
1708
+ msgstr "파티션 테이블을 삭제할 수 없습니다 "
1709
+
1710
+ #: ../lib/hammer_cli_foreman/puppet_class.rb:34
1711
+ msgid "Smart variables"
1712
+ msgstr "스마트 매개 변수 "
1713
+
1714
+ #: ../lib/hammer_cli_foreman/puppet_class.rb:35 ../lib/hammer_cli_foreman/smart_class_parameter.rb:10
1715
+ msgid "Parameter"
1716
+ msgstr "매개 변수 "
1717
+
1718
+ #: ../lib/hammer_cli_foreman/puppet_class.rb:36
1719
+ msgid "Default value"
1720
+ msgstr "기본값 "
1721
+
1722
+ #: ../lib/hammer_cli_foreman/puppet_class.rb:38
1723
+ msgid "Smart class parameters"
1724
+ msgstr "스마트 클래스 매개 변수 "
1725
+
1726
+ #: ../lib/hammer_cli_foreman/references.rb:8
1727
+ msgid "Created at"
1728
+ msgstr "생성 일시 "
1729
+
1730
+ #: ../lib/hammer_cli_foreman/references.rb:9
1731
+ msgid "Updated at"
1732
+ msgstr "업데이트 일시 "
1733
+
1734
+ #: ../lib/hammer_cli_foreman/references.rb:26
1735
+ msgid "Users"
1736
+ msgstr "사용자 "
1737
+
1738
+ #: ../lib/hammer_cli_foreman/references.rb:34
1739
+ msgid "User groups"
1740
+ msgstr "사용자 그룹 "
1741
+
1742
+ #: ../lib/hammer_cli_foreman/references.rb:42
1743
+ msgid "Smart proxies"
1744
+ msgstr "스마트 프록시 "
1745
+
1746
+ #: ../lib/hammer_cli_foreman/references.rb:50
1747
+ msgid "Compute resources"
1748
+ msgstr "컴퓨터 리소스 "
1749
+
1750
+ #: ../lib/hammer_cli_foreman/references.rb:58
1751
+ msgid "Installation media"
1752
+ msgstr "설치 미디어 "
1753
+
1754
+ #: ../lib/hammer_cli_foreman/references.rb:66
1755
+ msgid "Templates"
1756
+ msgstr "템플릿 "
1757
+
1758
+ #: ../lib/hammer_cli_foreman/references.rb:74
1759
+ msgid "Domains"
1760
+ msgstr "도메인 "
1761
+
1762
+ #: ../lib/hammer_cli_foreman/references.rb:82
1763
+ msgid "Environments"
1764
+ msgstr "환경 "
1765
+
1766
+ #: ../lib/hammer_cli_foreman/references.rb:90
1767
+ msgid "Hostgroups"
1768
+ msgstr "호스트 그룹 "
1769
+
1770
+ #: ../lib/hammer_cli_foreman/references.rb:98
1771
+ msgid "Subnets"
1772
+ msgstr "서브넷 "
1773
+
1774
+ #: ../lib/hammer_cli_foreman/references.rb:107
1775
+ msgid "Parameters"
1776
+ msgstr "매개 변수 "
1777
+
1778
+ #: ../lib/hammer_cli_foreman/references.rb:115
1779
+ msgid "Puppetclasses"
1780
+ msgstr "Puppet 클래스 "
1781
+
1782
+ #: ../lib/hammer_cli_foreman/references.rb:123
1783
+ msgid "Operating systems"
1784
+ msgstr "운영 체제 "
1785
+
1786
+ #: ../lib/hammer_cli_foreman/references.rb:131
1787
+ msgid "Roles"
1788
+ msgstr "역할 "
1789
+
1790
+ #: ../lib/hammer_cli_foreman/references.rb:139
1791
+ msgid "External user groups"
1792
+ msgstr ""
1793
+
1794
+ #: ../lib/hammer_cli_foreman/report.rb:14 ../lib/hammer_cli_foreman/report.rb:35
1795
+ msgid "Applied"
1796
+ msgstr "적용됨 "
1797
+
1798
+ #: ../lib/hammer_cli_foreman/report.rb:15 ../lib/hammer_cli_foreman/report.rb:36
1799
+ msgid "Restarted"
1800
+ msgstr "다시 시작됨 "
1801
+
1802
+ #: ../lib/hammer_cli_foreman/report.rb:16 ../lib/hammer_cli_foreman/report.rb:37
1803
+ msgid "Failed"
1804
+ msgstr "실패 "
1805
+
1806
+ #: ../lib/hammer_cli_foreman/report.rb:17 ../lib/hammer_cli_foreman/report.rb:38
1807
+ msgid "Restart Failures"
1808
+ msgstr "다시 시작 실패 "
1809
+
1810
+ #: ../lib/hammer_cli_foreman/report.rb:18 ../lib/hammer_cli_foreman/report.rb:39
1811
+ msgid "Skipped"
1812
+ msgstr "건너 뛰기 "
1813
+
1814
+ #: ../lib/hammer_cli_foreman/report.rb:19 ../lib/hammer_cli_foreman/report.rb:40
1815
+ msgid "Pending"
1816
+ msgstr "보류 중 "
1817
+
1818
+ #: ../lib/hammer_cli_foreman/report.rb:32
1819
+ msgid "Reported at"
1820
+ msgstr "보고 "
1821
+
1822
+ #: ../lib/hammer_cli_foreman/report.rb:33
1823
+ msgid "Report status"
1824
+ msgstr "보고서 상태 "
1825
+
1826
+ #: ../lib/hammer_cli_foreman/report.rb:43
1827
+ msgid "Report metrics"
1828
+ msgstr "보고서 메트릭스 "
1829
+
1830
+ #: ../lib/hammer_cli_foreman/report.rb:46
1831
+ msgid "config_retrieval"
1832
+ msgstr "config_retrieval"
1833
+
1834
+ #: ../lib/hammer_cli_foreman/report.rb:47
1835
+ msgid "exec"
1836
+ msgstr "exec"
1837
+
1838
+ #: ../lib/hammer_cli_foreman/report.rb:48
1839
+ msgid "file"
1840
+ msgstr "파일 "
1841
+
1842
+ #: ../lib/hammer_cli_foreman/report.rb:49
1843
+ msgid "package"
1844
+ msgstr "패키지 "
1845
+
1846
+ #: ../lib/hammer_cli_foreman/report.rb:50
1847
+ msgid "service"
1848
+ msgstr "서비스 "
1849
+
1850
+ #: ../lib/hammer_cli_foreman/report.rb:51
1851
+ msgid "user"
1852
+ msgstr "사용자 "
1853
+
1854
+ #: ../lib/hammer_cli_foreman/report.rb:52
1855
+ msgid "yumrepo"
1856
+ msgstr "yumrepo"
1857
+
1858
+ #: ../lib/hammer_cli_foreman/report.rb:53
1859
+ msgid "filebucket"
1860
+ msgstr "filebucket"
1861
+
1862
+ #: ../lib/hammer_cli_foreman/report.rb:54
1863
+ msgid "cron"
1864
+ msgstr "cron"
1865
+
1866
+ #: ../lib/hammer_cli_foreman/report.rb:55
1867
+ msgid "total"
1868
+ msgstr "합계 "
1869
+
1870
+ #: ../lib/hammer_cli_foreman/report.rb:59
1871
+ msgid "Logs"
1872
+ msgstr "로그"
1873
+
1874
+ #: ../lib/hammer_cli_foreman/report.rb:65
1875
+ msgid "Message"
1876
+ msgstr "메세지 "
1877
+
1878
+ #: ../lib/hammer_cli_foreman/report.rb:76
1879
+ msgid "Report has been deleted"
1880
+ msgstr "보고서가 삭제되었습니다 "
1881
+
1882
+ #: ../lib/hammer_cli_foreman/report.rb:77
1883
+ msgid "Could not delete the report"
1884
+ msgstr "보고서를 삭제할 수 없습니다 "
1885
+
1886
+ #: ../lib/hammer_cli_foreman/resource_supported_test.rb:11
1887
+ msgid "The server does not support such operation."
1888
+ msgstr "서버가 이러한 동작을 지원하지 않습니다. "
1889
+
1890
+ #: ../lib/hammer_cli_foreman/role.rb:23
1891
+ msgid "User role id"
1892
+ msgstr "사용자 역할 ID"
1893
+
1894
+ #: ../lib/hammer_cli_foreman/role.rb:47
1895
+ msgid "User role [%<name>s] created"
1896
+ msgstr "사용자 역할 [%<name>s]이(가) 생성되었습니다 "
1897
+
1898
+ #: ../lib/hammer_cli_foreman/role.rb:48
1899
+ msgid "Could not create the user role"
1900
+ msgstr "사용자 역할을 생성할 수 없습니다 "
1901
+
1902
+ #: ../lib/hammer_cli_foreman/role.rb:55
1903
+ msgid "User role [%<name>s] updated"
1904
+ msgstr "사용자 역할 [%<name>s]이(가) 업데이트되었습니다 "
1905
+
1906
+ #: ../lib/hammer_cli_foreman/role.rb:56
1907
+ msgid "Could not update the user role"
1908
+ msgstr "사용자 역할을 업데이트할 수 없습니다 "
1909
+
1910
+ #: ../lib/hammer_cli_foreman/role.rb:63
1911
+ msgid "User role [%<name>s] deleted"
1912
+ msgstr "사용자 역할 [%<name>s]이(가) 삭제되었습니다 "
1913
+
1914
+ #: ../lib/hammer_cli_foreman/role.rb:64
1915
+ msgid "Could not delete the user roles"
1916
+ msgstr "사용자 역할을 삭제할 수 없습니다 "
1917
+
1918
+ #: ../lib/hammer_cli_foreman/settings.rb:28
1919
+ #, fuzzy
1920
+ msgid "Setting [%{name}] updated to [%{value}]"
1921
+ msgstr "매개 변수 [%{name}] 이(가) [%{value}]로 업데이트되었습니다. "
1922
+
1923
+ #: ../lib/hammer_cli_foreman/settings.rb:29
1924
+ #, fuzzy
1925
+ msgid "Could not update the setting"
1926
+ msgstr "도메인을 업데이트할 수 없습니다 "
1927
+
1928
+ #: ../lib/hammer_cli_foreman/smart_class_parameter.rb:11 ../lib/hammer_cli_foreman/smart_variable.rb:11
1929
+ msgid "Default Value"
1930
+ msgstr "기본값 "
1931
+
1932
+ #: ../lib/hammer_cli_foreman/smart_class_parameter.rb:12
1933
+ msgid "Override"
1934
+ msgstr "덮어쓰기 "
1935
+
1936
+ #: ../lib/hammer_cli_foreman/smart_class_parameter.rb:36 ../lib/hammer_cli_foreman/smart_variable.rb:27
1937
+ msgid "Puppet class"
1938
+ msgstr "Puppet 클래스 "
1939
+
1940
+ #: ../lib/hammer_cli_foreman/smart_class_parameter.rb:37 ../lib/hammer_cli_foreman/smart_variable.rb:28
1941
+ msgid "Class Id"
1942
+ msgstr "클래스 Id"
1943
+
1944
+ #: ../lib/hammer_cli_foreman/smart_class_parameter.rb:63
1945
+ msgid "Required"
1946
+ msgstr "필수 "
1947
+
1948
+ #: ../lib/hammer_cli_foreman/smart_class_parameter.rb:65 ../lib/hammer_cli_foreman/smart_variable.rb:53
1949
+ msgid "Validator"
1950
+ msgstr "유효성 검사기 "
1951
+
1952
+ #: ../lib/hammer_cli_foreman/smart_class_parameter.rb:67 ../lib/hammer_cli_foreman/smart_variable.rb:55
1953
+ msgid "Rule"
1954
+ msgstr "규칙 "
1955
+
1956
+ #: ../lib/hammer_cli_foreman/smart_class_parameter.rb:69 ../lib/hammer_cli_foreman/smart_variable.rb:57
1957
+ msgid "Override values"
1958
+ msgstr "값 덮어쓰기 "
1959
+
1960
+ #: ../lib/hammer_cli_foreman/smart_class_parameter.rb:70 ../lib/hammer_cli_foreman/smart_variable.rb:58
1961
+ msgid "Merge overrides"
1962
+ msgstr ""
1963
+
1964
+ #: ../lib/hammer_cli_foreman/smart_class_parameter.rb:71 ../lib/hammer_cli_foreman/smart_variable.rb:59
1965
+ msgid "Avoid duplicates"
1966
+ msgstr ""
1967
+
1968
+ #: ../lib/hammer_cli_foreman/smart_class_parameter.rb:72 ../lib/hammer_cli_foreman/smart_variable.rb:60
1969
+ msgid "Order"
1970
+ msgstr "순서"
1971
+
1972
+ #: ../lib/hammer_cli_foreman/smart_class_parameter.rb:73 ../lib/hammer_cli_foreman/smart_variable.rb:61
1973
+ #, fuzzy
1974
+ msgid "Values"
1975
+ msgstr "값"
1976
+
1977
+ #: ../lib/hammer_cli_foreman/smart_class_parameter.rb:75 ../lib/hammer_cli_foreman/smart_variable.rb:63
1978
+ msgid "Match"
1979
+ msgstr "일치 "
1980
+
1981
+ #: ../lib/hammer_cli_foreman/smart_class_parameter.rb:102
1982
+ msgid "Parameter updated"
1983
+ msgstr "매개 변수가 업데이트되었습니다 "
1984
+
1985
+ #: ../lib/hammer_cli_foreman/smart_class_parameter.rb:103
1986
+ msgid "Could not update the parameter"
1987
+ msgstr "매개 변수를 업데이트할 수 없습니다 "
1988
+
1989
+ #: ../lib/hammer_cli_foreman/smart_class_parameter.rb:110
1990
+ msgid "Override this parameter."
1991
+ msgstr "매개 변수를 덮어쓰기합니다."
1992
+
1993
+ #: ../lib/hammer_cli_foreman/smart_class_parameter.rb:112
1994
+ msgid "This parameter is required."
1995
+ msgstr "매개 변수가 필요합니다. "
1996
+
1997
+ #: ../lib/hammer_cli_foreman/smart_class_parameter.rb:114
1998
+ msgid "Type of the parameter."
1999
+ msgstr "매개 변수 유형 "
2000
+
2001
+ #: ../lib/hammer_cli_foreman/smart_class_parameter.rb:117 ../lib/hammer_cli_foreman/smart_variable.rb:89 ../lib/hammer_cli_foreman/smart_variable.rb:103
2002
+ msgid "Type of the validator."
2003
+ msgstr "유효성 검사 유형 "
2004
+
2005
+ #: ../lib/hammer_cli_foreman/smart_class_parameter.rb:131 ../lib/hammer_cli_foreman/smart_variable.rb:121
2006
+ #, fuzzy
2007
+ msgid "Override value created"
2008
+ msgstr "값 덮어쓰기 "
2009
+
2010
+ #: ../lib/hammer_cli_foreman/smart_class_parameter.rb:132 ../lib/hammer_cli_foreman/smart_variable.rb:122
2011
+ msgid "Could not create the override_value"
2012
+ msgstr ""
2013
+
2014
+ #: ../lib/hammer_cli_foreman/smart_class_parameter.rb:151 ../lib/hammer_cli_foreman/smart_variable.rb:134
2015
+ #, fuzzy
2016
+ msgid "Override value deleted"
2017
+ msgstr "값 덮어쓰기 "
2018
+
2019
+ #: ../lib/hammer_cli_foreman/smart_class_parameter.rb:152 ../lib/hammer_cli_foreman/smart_variable.rb:135
2020
+ #, fuzzy
2021
+ msgid "Could not delete the override value"
2022
+ msgstr "운영 체제를 삭제할 수 없습니다 "
2023
+
2024
+ #: ../lib/hammer_cli_foreman/smart_proxy.rb:13
2025
+ msgid "URL"
2026
+ msgstr "URL"
2027
+
2028
+ #: ../lib/hammer_cli_foreman/smart_proxy.rb:14 ../lib/hammer_cli_foreman/smart_proxy.rb:29
2029
+ msgid "Features"
2030
+ msgstr "기능 "
2031
+
2032
+ #: ../lib/hammer_cli_foreman/smart_proxy.rb:41
2033
+ msgid "Smart proxy created"
2034
+ msgstr "스마트 프록시가 생성되었습니다 "
2035
+
2036
+ #: ../lib/hammer_cli_foreman/smart_proxy.rb:42
2037
+ msgid "Could not create the proxy"
2038
+ msgstr "프록시를 생성할 수 없습니다 "
2039
+
2040
+ #: ../lib/hammer_cli_foreman/smart_proxy.rb:49
2041
+ msgid "Smart proxy updated"
2042
+ msgstr "스마트 프록시가 업데이트되었습니다 "
2043
+
2044
+ #: ../lib/hammer_cli_foreman/smart_proxy.rb:50
2045
+ msgid "Could not update the proxy"
2046
+ msgstr "프록시를 업데이트할 수 없습니다 "
2047
+
2048
+ #: ../lib/hammer_cli_foreman/smart_proxy.rb:57
2049
+ msgid "Smart proxy deleted"
2050
+ msgstr "스마트 프록시가 삭제되었습니다 "
2051
+
2052
+ #: ../lib/hammer_cli_foreman/smart_proxy.rb:58
2053
+ msgid "Could not delete the proxy"
2054
+ msgstr "프록시를 삭제할 수 없습니다 "
2055
+
2056
+ #: ../lib/hammer_cli_foreman/smart_proxy.rb:69
2057
+ msgid "Puppet classes were imported"
2058
+ msgstr "Puppet 클래스를 가져오기했습니다 "
2059
+
2060
+ #: ../lib/hammer_cli_foreman/smart_proxy.rb:70
2061
+ msgid "Import of puppet classes failed"
2062
+ msgstr "Puppet 클래스 가져오기를 실패했습니다 "
2063
+
2064
+ #: ../lib/hammer_cli_foreman/smart_proxy.rb:72
2065
+ msgid "Do not run the import"
2066
+ msgstr "가져오기를 실행하지 않습니다 "
2067
+
2068
+ #: ../lib/hammer_cli_foreman/smart_proxy.rb:92
2069
+ msgid "Smart proxy features were refreshed"
2070
+ msgstr "스마트 프록시 기능을 새로고침했습니다 "
2071
+
2072
+ #: ../lib/hammer_cli_foreman/smart_proxy.rb:93
2073
+ msgid "Refresh of smart proxy features failed"
2074
+ msgstr "스마트 프록시 기능 새로 고침을 실패했습니다 "
2075
+
2076
+ #: ../lib/hammer_cli_foreman/smart_variable.rb:81
2077
+ msgid "Smart variable [%{variable}] created"
2078
+ msgstr ""
2079
+
2080
+ #: ../lib/hammer_cli_foreman/smart_variable.rb:82
2081
+ #, fuzzy
2082
+ msgid "Could not create the smart variable"
2083
+ msgstr "파티션 테이블을 생성할 수 없습니다 "
2084
+
2085
+ #: ../lib/hammer_cli_foreman/smart_variable.rb:86 ../lib/hammer_cli_foreman/smart_variable.rb:100
2086
+ #, fuzzy
2087
+ msgid "Type of the variable."
2088
+ msgstr "유효성 검사 유형 "
2089
+
2090
+ #: ../lib/hammer_cli_foreman/smart_variable.rb:95
2091
+ msgid "Smart variable [%{variable}] updated"
2092
+ msgstr ""
2093
+
2094
+ #: ../lib/hammer_cli_foreman/smart_variable.rb:96
2095
+ #, fuzzy
2096
+ msgid "Could not update the smart variable"
2097
+ msgstr "파티션 테이블을 업데이트할 수 없습니다 "
2098
+
2099
+ #: ../lib/hammer_cli_foreman/smart_variable.rb:110
2100
+ msgid "Smart variable [%{variable}] deleted"
2101
+ msgstr ""
2102
+
2103
+ #: ../lib/hammer_cli_foreman/smart_variable.rb:111
2104
+ #, fuzzy
2105
+ msgid "Could not delete the smart variable"
2106
+ msgstr "파티션 테이블을 삭제할 수 없습니다 "
2107
+
2108
+ #: ../lib/hammer_cli_foreman/subnet.rb:13
2109
+ msgid "Mask"
2110
+ msgstr "마스크 "
2111
+
2112
+ #: ../lib/hammer_cli_foreman/subnet.rb:23
2113
+ msgid "Priority"
2114
+ msgstr "우선 순위 "
2115
+
2116
+ #: ../lib/hammer_cli_foreman/subnet.rb:24
2117
+ msgid "DNS"
2118
+ msgstr "DNS"
2119
+
2120
+ #: ../lib/hammer_cli_foreman/subnet.rb:25
2121
+ msgid "Primary DNS"
2122
+ msgstr "1차 DNS"
2123
+
2124
+ #: ../lib/hammer_cli_foreman/subnet.rb:26
2125
+ msgid "Secondary DNS"
2126
+ msgstr "2차 DNS"
2127
+
2128
+ #: ../lib/hammer_cli_foreman/subnet.rb:27
2129
+ msgid "TFTP"
2130
+ msgstr "TFTP"
2131
+
2132
+ #: ../lib/hammer_cli_foreman/subnet.rb:28
2133
+ msgid "DHCP"
2134
+ msgstr "DHCP"
2135
+
2136
+ #: ../lib/hammer_cli_foreman/subnet.rb:30
2137
+ msgid "VLAN ID"
2138
+ msgstr "VLAN ID"
2139
+
2140
+ #: ../lib/hammer_cli_foreman/subnet.rb:31
2141
+ msgid "Gateway"
2142
+ msgstr "케이트웨이"
2143
+
2144
+ #: ../lib/hammer_cli_foreman/subnet.rb:32
2145
+ msgid "From"
2146
+ msgstr "부터 "
2147
+
2148
+ #: ../lib/hammer_cli_foreman/subnet.rb:33
2149
+ msgid "To"
2150
+ msgstr "까지 "
2151
+
2152
+ #: ../lib/hammer_cli_foreman/subnet.rb:44
2153
+ msgid "Subnet created"
2154
+ msgstr "서브넷이 생성되었습니다 "
2155
+
2156
+ #: ../lib/hammer_cli_foreman/subnet.rb:45
2157
+ msgid "Could not create the subnet"
2158
+ msgstr "서브넷을 생성할 수 없습니다 "
2159
+
2160
+ #: ../lib/hammer_cli_foreman/subnet.rb:53
2161
+ msgid "Subnet updated"
2162
+ msgstr "서브넷이 업데이트되었습니다 "
2163
+
2164
+ #: ../lib/hammer_cli_foreman/subnet.rb:54
2165
+ msgid "Could not update the subnet"
2166
+ msgstr "서브넷을 업데이트할 수 없습니다 "
2167
+
2168
+ #: ../lib/hammer_cli_foreman/subnet.rb:62
2169
+ msgid "Subnet deleted"
2170
+ msgstr "서브넷이 삭제되었습니다 "
2171
+
2172
+ #: ../lib/hammer_cli_foreman/subnet.rb:63
2173
+ msgid "Could not delete the subnet"
2174
+ msgstr "서브넷을 삭제할 수 없습니다 "
2175
+
2176
+ #: ../lib/hammer_cli_foreman/template.rb:71
2177
+ msgid "List available config template kinds."
2178
+ msgstr "사용 가능한 설정 템플릿 종류를 나열합니다. "
2179
+
2180
+ #: ../lib/hammer_cli_foreman/template.rb:90
2181
+ msgid "View config template content."
2182
+ msgstr "설정 템플릿 내용을 표시합니다. "
2183
+
2184
+ #: ../lib/hammer_cli_foreman/template.rb:102 ../lib/hammer_cli_foreman/template.rb:120
2185
+ msgid "Path to a file that contains the template"
2186
+ msgstr "템플릿이 들어있는 파일로의 경로 "
2187
+
2188
+ #: ../lib/hammer_cli_foreman/template.rb:104 ../lib/hammer_cli_foreman/template.rb:122
2189
+ msgid "Template type. Eg. snippet, script, provision"
2190
+ msgstr "템플릿 유형. 예: 조각 모음, 스트립트, 프로비저닝 "
2191
+
2192
+ #: ../lib/hammer_cli_foreman/template.rb:106
2193
+ msgid "Config template created"
2194
+ msgstr "설정 템플릿이 생성되었습니다 "
2195
+
2196
+ #: ../lib/hammer_cli_foreman/template.rb:107
2197
+ msgid "Could not create the config template"
2198
+ msgstr "설정 템플릿을 생성할 수 없습니다 "
2199
+
2200
+ #: ../lib/hammer_cli_foreman/template.rb:124
2201
+ msgid "Config template updated"
2202
+ msgstr "설정 템플릿이 업데이트되었습니다 "
2203
+
2204
+ #: ../lib/hammer_cli_foreman/template.rb:125
2205
+ msgid "Could not update the config template"
2206
+ msgstr "설정 템플릿을 업데이트할 수 없습니다 "
2207
+
2208
+ #: ../lib/hammer_cli_foreman/template.rb:138
2209
+ msgid "Config template deleted"
2210
+ msgstr "설정 템플릿이 삭제되었습니다 "
2211
+
2212
+ #: ../lib/hammer_cli_foreman/template.rb:139
2213
+ msgid "Could not delete the config template"
2214
+ msgstr "설정 템플릿을 삭제할 수 없습니다 "
2215
+
2216
+ #: ../lib/hammer_cli_foreman/user.rb:11
2217
+ msgid "Login"
2218
+ msgstr "로그인 "
2219
+
2220
+ #: ../lib/hammer_cli_foreman/user.rb:13
2221
+ msgid "Email"
2222
+ msgstr "이메일 "
2223
+
2224
+ #: ../lib/hammer_cli_foreman/user.rb:28
2225
+ msgid "Admin"
2226
+ msgstr "관리자 "
2227
+
2228
+ #: ../lib/hammer_cli_foreman/user.rb:29
2229
+ msgid "Authorized by"
2230
+ msgstr "승인자 "
2231
+
2232
+ #: ../lib/hammer_cli_foreman/user.rb:30
2233
+ msgid "Locale"
2234
+ msgstr ""
2235
+
2236
+ #: ../lib/hammer_cli_foreman/user.rb:31
2237
+ msgid "Timezone"
2238
+ msgstr ""
2239
+
2240
+ #: ../lib/hammer_cli_foreman/user.rb:32
2241
+ msgid "Last login"
2242
+ msgstr "마지막 로그인"
2243
+
2244
+ #: ../lib/hammer_cli_foreman/user.rb:33
2245
+ #, fuzzy
2246
+ msgid "Default organization"
2247
+ msgstr "조직을 조정합니다. "
2248
+
2249
+ #: ../lib/hammer_cli_foreman/user.rb:34
2250
+ #, fuzzy
2251
+ msgid "Default location"
2252
+ msgstr "위치를 조정합니다. "
2253
+
2254
+ #: ../lib/hammer_cli_foreman/user.rb:42 ../lib/hammer_cli_foreman/user.rb:43
2255
+ msgid "default"
2256
+ msgstr ""
2257
+
2258
+ #: ../lib/hammer_cli_foreman/user.rb:53
2259
+ msgid "User [%{login}] created"
2260
+ msgstr ""
2261
+
2262
+ #: ../lib/hammer_cli_foreman/user.rb:54
2263
+ msgid "Could not create the user"
2264
+ msgstr "사용자를 생성할 수 없습니다 "
2265
+
2266
+ #: ../lib/hammer_cli_foreman/user.rb:61
2267
+ msgid "User [%{login}] updated"
2268
+ msgstr ""
2269
+
2270
+ #: ../lib/hammer_cli_foreman/user.rb:62
2271
+ msgid "Could not update the user"
2272
+ msgstr "사용자를 업데이트할 수 없습니다 "
2273
+
2274
+ #: ../lib/hammer_cli_foreman/user.rb:69
2275
+ msgid "User [%{login}] deleted"
2276
+ msgstr ""
2277
+
2278
+ #: ../lib/hammer_cli_foreman/user.rb:70
2279
+ msgid "Could not delete the user"
2280
+ msgstr "사용자를 삭제할 수 없습니다 "
2281
+
2282
+ #: ../lib/hammer_cli_foreman/usergroup.rb:31
2283
+ msgid "User group [%<name>s] created"
2284
+ msgstr "사용자 그룹 [%<name>s]이(가) 생성되었습니다 "
2285
+
2286
+ #: ../lib/hammer_cli_foreman/usergroup.rb:32
2287
+ msgid "Could not create the user group"
2288
+ msgstr "사용자 그룹을 생성할 수 없습니다 "
2289
+
2290
+ #: ../lib/hammer_cli_foreman/usergroup.rb:38
2291
+ msgid "User group [%<name>s] updated"
2292
+ msgstr "사용자 그룹 [%<name>s]이(가) 업데이트되었습니다 "
2293
+
2294
+ #: ../lib/hammer_cli_foreman/usergroup.rb:39
2295
+ msgid "Could not update the user group"
2296
+ msgstr "사용자 그룹을 업데이트할 수 없습니다 "
2297
+
2298
+ #: ../lib/hammer_cli_foreman/usergroup.rb:45
2299
+ msgid "User group [%<name>s] deleted"
2300
+ msgstr "사용자 그룹 [%<name>s]이(가) 삭제되었습니다 "
2301
+
2302
+ #: ../lib/hammer_cli_foreman/usergroup.rb:46
2303
+ msgid "Could not delete the user group"
2304
+ msgstr "사용자 그룹을 삭제할 수 없습니다 "
2305
+
2306
+ #: lib/hammer_cli_foreman/smart_variables.rb:62
2307
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:63
2308
+ #~ msgid "Count"
2309
+ #~ msgstr "수 "
2310
+
2311
+ #: lib/hammer_cli_foreman/hostgroup.rb:41
2312
+ #~ msgid "Label"
2313
+ #~ msgstr "레이블 "
2314
+
2315
+ #: lib/hammer_cli_foreman/hostgroup.rb:45
2316
+ #~ msgid "Ancestry"
2317
+ #~ msgstr "상위 "
2318
+
2319
+ #: lib/hammer_cli_foreman/host.rb:167
2320
+ #~ msgid "Disk"
2321
+ #~ msgstr "디스크"
2322
+
2323
+ #: lib/hammer_cli_foreman/host.rb:185
2324
+ #~ msgid "Puppet Proxy Id"
2325
+ #~ msgstr "Puppet 프록시 Id"
2326
+
2327
+ #: lib/hammer_cli_foreman/host.rb:194
2328
+ #~ msgid "BMC Network Interfaces"
2329
+ #~ msgstr "BMC 네트워크 인터페이스 "
2330
+
2331
+ #: lib/hammer_cli_foreman/host.rb:199 lib/hammer_cli_foreman/host.rb:212
2332
+ #~ msgid "Domain Id"
2333
+ #~ msgstr "도메인 ID "
2334
+
2335
+ #: lib/hammer_cli_foreman/host.rb:200 lib/hammer_cli_foreman/host.rb:213
2336
+ #~ msgid "Domain Name"
2337
+ #~ msgstr "도메인 이름 "
2338
+
2339
+ #: lib/hammer_cli_foreman/host.rb:201 lib/hammer_cli_foreman/host.rb:214
2340
+ #~ msgid "Subnet Id"
2341
+ #~ msgstr "서브넷 ID"
2342
+
2343
+ #: lib/hammer_cli_foreman/host.rb:202 lib/hammer_cli_foreman/host.rb:215
2344
+ #~ msgid "Subnet Name"
2345
+ #~ msgstr "서브넷 이름 "
2346
+
2347
+ #: lib/hammer_cli_foreman/host.rb:203
2348
+ #~ msgid "BMC Username"
2349
+ #~ msgstr "BMC 사용자 이름 "
2350
+
2351
+ #: lib/hammer_cli_foreman/host.rb:204
2352
+ #~ msgid "BMC Password"
2353
+ #~ msgstr "BMC 암호 "
2354
+
2355
+ #: lib/hammer_cli_foreman/host.rb:207
2356
+ #~ msgid "Managed Network Interfaces"
2357
+ #~ msgstr "관리되는 네트워크 인터페이스 "
2358
+
2359
+ #: lib/hammer_cli_foreman/operating_system.rb:11
2360
+ #~ msgid "Full name"
2361
+ #~ msgstr "전체 이름 "
2362
+
2363
+ #: lib/hammer_cli_foreman/operating_system.rb:46
2364
+ #: lib/hammer_cli_foreman/operating_system.rb:73
2365
+ #~ msgid "set associated architectures"
2366
+ #~ msgstr "관련된 아키텍처 설정 "
2367
+
2368
+ #: lib/hammer_cli_foreman/operating_system.rb:48
2369
+ #: lib/hammer_cli_foreman/operating_system.rb:75
2370
+ #~ msgid "set associated templates"
2371
+ #~ msgstr "관련된 템플릿 설정 "
2372
+
2373
+ #: lib/hammer_cli_foreman/operating_system.rb:50
2374
+ #: lib/hammer_cli_foreman/operating_system.rb:77
2375
+ #~ msgid "set associated installation media"
2376
+ #~ msgstr "관련된 설치 미디어 설정 "
2377
+
2378
+ #: lib/hammer_cli_foreman/operating_system.rb:52
2379
+ #: lib/hammer_cli_foreman/operating_system.rb:79
2380
+ #~ msgid "set associated partition tables"
2381
+ #~ msgstr "관련된 파티션 테이블 설정 "
2382
+
2383
+ #: lib/hammer_cli_foreman/credentials.rb:10
2384
+ #~ msgid "[Foreman] username: "
2385
+ #~ msgstr "[Foreman] 사용자 이름: "
2386
+
2387
+ #: lib/hammer_cli_foreman/credentials.rb:15
2388
+ #~ msgid "[Foreman] password for %s: "
2389
+ #~ msgstr "%s의 [Foreman] 암호: "
2390
+
2391
+ #: lib/hammer_cli_foreman/user.rb:47
2392
+ #~ msgid "User created"
2393
+ #~ msgstr "사용자가 생성되었습니다 "
2394
+
2395
+ #: lib/hammer_cli_foreman/user.rb:55
2396
+ #~ msgid "User updated"
2397
+ #~ msgstr "사용자가 업데이트되었습니다 "
2398
+
2399
+ #: lib/hammer_cli_foreman/user.rb:63
2400
+ #~ msgid "User deleted"
2401
+ #~ msgstr "사용자가 삭제되었습니다 "