foreman_openscap 1.0.10 → 3.0.1
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.
- checksums.yaml +5 -5
- data/app/controllers/api/v2/compliance/arf_reports_controller.rb +11 -3
- data/app/controllers/api/v2/compliance/policies_controller.rb +2 -9
- data/app/controllers/api/v2/compliance/scap_content_profiles_controller.rb +15 -0
- data/app/controllers/api/v2/compliance/scap_contents_controller.rb +2 -8
- data/app/controllers/api/v2/compliance/tailoring_files_controller.rb +2 -8
- data/app/controllers/concerns/foreman_openscap/api/v2/scap_api_controller_extensions.rb +9 -0
- data/app/controllers/policies_controller.rb +1 -1
- data/app/helpers/compliance_hosts_helper.rb +23 -0
- data/app/helpers/concerns/foreman_openscap/hosts_helper_extensions.rb +0 -6
- data/app/models/concerns/foreman_openscap/host_extensions.rb +1 -1
- data/app/models/concerns/foreman_openscap/smart_proxy_extensions.rb +1 -1
- data/app/models/foreman_openscap/policy.rb +12 -0
- data/app/models/foreman_openscap/scap_content_profile.rb +3 -0
- data/app/services/foreman_openscap/lookup_key_overrider.rb +3 -2
- data/app/views/api/v2/compliance/scap_content_profiles/base.json.rabl +3 -0
- data/app/views/api/v2/compliance/scap_content_profiles/index.json.rabl +3 -0
- data/app/views/api/v2/compliance/scap_content_profiles/main.json.rabl +9 -0
- data/app/views/arf_reports/_list.html.erb +1 -1
- data/app/views/arf_reports/welcome.html.erb +2 -0
- data/app/views/hosts/select_multiple_openscap_proxy.html.erb +1 -1
- data/app/views/policies/disassociate_multiple_hosts.html.erb +1 -1
- data/app/views/policies/select_multiple_hosts.html.erb +1 -1
- data/config/routes.rb +2 -0
- data/db/migrate/20150929152345_move_arf_reports_to_reports_table.rb +0 -2
- data/db/migrate/20200117135424_migrate_port_overrides_to_int.rb +24 -0
- data/lib/foreman_openscap/engine.rb +15 -10
- data/lib/foreman_openscap/helper.rb +1 -1
- data/lib/foreman_openscap/version.rb +1 -1
- data/locale/action_names.rb +1 -1
- data/locale/de/LC_MESSAGES/foreman_openscap.mo +0 -0
- data/locale/de/foreman_openscap.po +244 -241
- data/locale/en_GB/LC_MESSAGES/foreman_openscap.mo +0 -0
- data/locale/en_GB/foreman_openscap.po +38 -38
- data/locale/es/LC_MESSAGES/foreman_openscap.mo +0 -0
- data/locale/es/foreman_openscap.po +285 -283
- data/locale/foreman_openscap.pot +119 -120
- data/locale/fr/LC_MESSAGES/foreman_openscap.mo +0 -0
- data/locale/fr/foreman_openscap.po +292 -284
- data/locale/gl/LC_MESSAGES/foreman_openscap.mo +0 -0
- data/locale/gl/foreman_openscap.po +49 -49
- data/locale/it/LC_MESSAGES/foreman_openscap.mo +0 -0
- data/locale/it/foreman_openscap.po +74 -73
- data/locale/ja/LC_MESSAGES/foreman_openscap.mo +0 -0
- data/locale/ja/foreman_openscap.po +284 -282
- data/locale/ko/LC_MESSAGES/foreman_openscap.mo +0 -0
- data/locale/ko/foreman_openscap.po +155 -155
- data/locale/pt_BR/LC_MESSAGES/foreman_openscap.mo +0 -0
- data/locale/pt_BR/foreman_openscap.po +287 -280
- data/locale/ru/LC_MESSAGES/foreman_openscap.mo +0 -0
- data/locale/ru/foreman_openscap.po +163 -160
- data/locale/sv_SE/LC_MESSAGES/foreman_openscap.mo +0 -0
- data/locale/sv_SE/foreman_openscap.po +49 -49
- data/locale/zh_CN/LC_MESSAGES/foreman_openscap.mo +0 -0
- data/locale/zh_CN/foreman_openscap.po +284 -281
- data/locale/zh_TW/LC_MESSAGES/foreman_openscap.mo +0 -0
- data/locale/zh_TW/foreman_openscap.po +151 -150
- data/test/functional/api/v2/compliance/arf_reports_controller_test.rb +0 -3
- data/test/functional/api/v2/compliance/scap_content_profiles_controller_test.rb +15 -0
- data/test/test_plugin_helper.rb +2 -2
- data/test/unit/concerns/host_extensions_test.rb +7 -0
- data/test/unit/policy_test.rb +19 -0
- metadata +24 -32
- data/app/overrides/hosts/overview/host_compliance_status.rb +0 -4
- data/app/views/compliance_hosts/_compliance_status.erb +0 -6
- data/locale/de/foreman_openscap.edit.po +0 -0
- data/locale/en_GB/foreman_openscap.edit.po +0 -0
- data/locale/es/foreman_openscap.edit.po +0 -0
- data/locale/fr/foreman_openscap.edit.po +0 -0
- data/locale/gl/foreman_openscap.edit.po +0 -0
- data/locale/it/foreman_openscap.edit.po +0 -0
- data/locale/ja/foreman_openscap.edit.po +0 -0
- data/locale/ko/foreman_openscap.edit.po +0 -0
- data/locale/pt_BR/foreman_openscap.edit.po +0 -0
- data/locale/ru/foreman_openscap.edit.po +0 -0
- data/locale/sv_SE/foreman_openscap.edit.po +0 -0
- data/locale/zh_CN/foreman_openscap.edit.po +0 -0
- data/locale/zh_TW/foreman_openscap.edit.po +0 -0
Binary file
|
@@ -1,21 +1,21 @@
|
|
1
|
-
#
|
2
|
-
# Copyright (C)
|
1
|
+
# SOME DESCRIPTIVE TITLE.
|
2
|
+
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
3
3
|
# This file is distributed under the same license as the foreman_openscap package.
|
4
|
-
# FIRST AUTHOR <EMAIL@ADDRESS>, 2016.
|
5
4
|
#
|
5
|
+
# Translators:
|
6
|
+
# FIRST AUTHOR <EMAIL@ADDRESS>, 2016
|
6
7
|
msgid ""
|
7
8
|
msgstr ""
|
8
|
-
"Project-Id-Version:
|
9
|
+
"Project-Id-Version: Foreman\n"
|
9
10
|
"Report-Msgid-Bugs-To: \n"
|
10
|
-
"PO-Revision-Date:
|
11
|
-
"Last-Translator:
|
12
|
-
"Language-Team: Korean\n"
|
13
|
-
"Language: ko\n"
|
11
|
+
"PO-Revision-Date: 2019-10-23 20:36+0000\n"
|
12
|
+
"Last-Translator: Bryan Kearney <bryan.kearney@gmail.com>\n"
|
13
|
+
"Language-Team: Korean (http://www.transifex.com/foreman/foreman/language/ko/)\n"
|
14
14
|
"MIME-Version: 1.0\n"
|
15
15
|
"Content-Type: text/plain; charset=UTF-8\n"
|
16
16
|
"Content-Transfer-Encoding: 8bit\n"
|
17
|
+
"Language: ko\n"
|
17
18
|
"Plural-Forms: nplurals=1; plural=0;\n"
|
18
|
-
"\n"
|
19
19
|
|
20
20
|
msgid " for policy %s"
|
21
21
|
msgstr ""
|
@@ -24,7 +24,7 @@ msgid " through %s"
|
|
24
24
|
msgstr ""
|
25
25
|
|
26
26
|
msgid "%s - The following compliance reports are about to be changed"
|
27
|
-
msgstr ""
|
27
|
+
msgstr "%s - 다음 컴플라이언스 보고서는 즉시 변경됩니다."
|
28
28
|
|
29
29
|
msgid "%s compliance report by policy"
|
30
30
|
msgid_plural "%s compliance reports by policy"
|
@@ -35,10 +35,10 @@ msgid "%s compliance reports by policy"
|
|
35
35
|
msgstr ""
|
36
36
|
|
37
37
|
msgid "%s latest report"
|
38
|
-
msgstr ""
|
38
|
+
msgstr "%s 최신 보고서"
|
39
39
|
|
40
40
|
msgid "%s reports over time"
|
41
|
-
msgstr ""
|
41
|
+
msgstr "기간별 %s 보고서"
|
42
42
|
|
43
43
|
msgid "%s spool errors detected, inspect the appropriate file directly on proxy"
|
44
44
|
msgstr ""
|
@@ -53,13 +53,13 @@ msgid "A summary of reports for OpenSCAP policies"
|
|
53
53
|
msgstr ""
|
54
54
|
|
55
55
|
msgid "Action with sub plans"
|
56
|
-
msgstr ""
|
56
|
+
msgstr "하위 계획이 있는 작업"
|
57
57
|
|
58
58
|
msgid "Actions"
|
59
|
-
msgstr ""
|
59
|
+
msgstr "동작 "
|
60
60
|
|
61
61
|
msgid "All messages"
|
62
|
-
msgstr ""
|
62
|
+
msgstr "전체 메세지 "
|
63
63
|
|
64
64
|
msgid "Ansible role"
|
65
65
|
msgstr ""
|
@@ -74,13 +74,13 @@ msgid "Apply policy to hosts"
|
|
74
74
|
msgstr ""
|
75
75
|
|
76
76
|
msgid "Assign Compliance Policy"
|
77
|
-
msgstr ""
|
77
|
+
msgstr "컴플라이언스 정책 할당"
|
78
78
|
|
79
79
|
msgid "Back"
|
80
|
-
msgstr ""
|
80
|
+
msgstr "뒤로(_B)"
|
81
81
|
|
82
82
|
msgid "Cancel"
|
83
|
-
msgstr ""
|
83
|
+
msgstr "취소"
|
84
84
|
|
85
85
|
msgid "Cannot generate HTML guide, no valid OpenSCAP proxy server found."
|
86
86
|
msgstr ""
|
@@ -92,13 +92,13 @@ msgid "Change OpenSCAP Proxy"
|
|
92
92
|
msgstr ""
|
93
93
|
|
94
94
|
msgid "Changed"
|
95
|
-
msgstr ""
|
95
|
+
msgstr "변경됨"
|
96
96
|
|
97
97
|
msgid "Changed file does not include existing SCAP content profiles"
|
98
98
|
msgstr ""
|
99
99
|
|
100
100
|
msgid "Changed?"
|
101
|
-
msgstr ""
|
101
|
+
msgstr "변경 여부"
|
102
102
|
|
103
103
|
msgid "Choose Tailoring File"
|
104
104
|
msgstr ""
|
@@ -107,49 +107,43 @@ msgid "Choose day in month"
|
|
107
107
|
msgstr ""
|
108
108
|
|
109
109
|
msgid "Choose existing SCAP Content"
|
110
|
-
msgstr ""
|
110
|
+
msgstr "기존 SCAP 컨텐츠 선택"
|
111
111
|
|
112
112
|
msgid "Choose period"
|
113
|
-
msgstr ""
|
113
|
+
msgstr "기간 선택"
|
114
114
|
|
115
115
|
msgid "Choose weekday"
|
116
|
-
msgstr ""
|
116
|
+
msgstr "요일 선택"
|
117
117
|
|
118
118
|
msgid "Compliance"
|
119
|
-
msgstr ""
|
119
|
+
msgstr "컴플라이언스 "
|
120
120
|
|
121
121
|
msgid "Compliance Hosts"
|
122
122
|
msgstr ""
|
123
123
|
|
124
124
|
msgid "Compliance Policies"
|
125
|
-
msgstr ""
|
125
|
+
msgstr "컴플라이언스 정책"
|
126
126
|
|
127
127
|
msgid "Compliance Reports"
|
128
|
-
msgstr ""
|
128
|
+
msgstr "컴플라이언스 보고서"
|
129
129
|
|
130
130
|
msgid "Compliance Reports Breakdown"
|
131
131
|
msgstr ""
|
132
132
|
|
133
|
-
msgid "Compliance Status"
|
134
|
-
msgstr ""
|
135
|
-
|
136
133
|
msgid "Compliance policy summary"
|
137
134
|
msgstr ""
|
138
135
|
|
139
136
|
msgid "Compliance policy: %s"
|
140
|
-
msgstr ""
|
141
|
-
|
142
|
-
msgid "Compliance reports breakdown"
|
143
|
-
msgstr ""
|
137
|
+
msgstr "컴플라이언스 정책: %s"
|
144
138
|
|
145
139
|
msgid "Compliant"
|
146
|
-
msgstr ""
|
140
|
+
msgstr "부합"
|
147
141
|
|
148
142
|
msgid "Compliant hosts"
|
149
|
-
msgstr ""
|
143
|
+
msgstr "부합하는 호스트"
|
150
144
|
|
151
145
|
msgid "Compliant with the policy"
|
152
|
-
msgstr ""
|
146
|
+
msgstr "정책에 부합"
|
153
147
|
|
154
148
|
msgid "Could not find host identified by: %s"
|
155
149
|
msgstr ""
|
@@ -161,7 +155,7 @@ msgid "Could not validate %{file_type}. Error %{error}"
|
|
161
155
|
msgstr ""
|
162
156
|
|
163
157
|
msgid "Create SCAP content"
|
164
|
-
msgstr ""
|
158
|
+
msgstr "SCAP 컨텐츠 생성"
|
165
159
|
|
166
160
|
msgid "Create a Policy"
|
167
161
|
msgstr ""
|
@@ -173,19 +167,19 @@ msgid "Create client"
|
|
173
167
|
msgstr ""
|
174
168
|
|
175
169
|
msgid "Dashboard"
|
176
|
-
msgstr ""
|
170
|
+
msgstr "대시보드 "
|
177
171
|
|
178
172
|
msgid "DataStream Tailoring file"
|
179
173
|
msgstr ""
|
180
174
|
|
181
175
|
msgid "Date"
|
182
|
-
msgstr ""
|
176
|
+
msgstr "날짜"
|
183
177
|
|
184
178
|
msgid "Default XCCDF profile"
|
185
|
-
msgstr ""
|
179
|
+
msgstr "기본 XCCDF 프로파일"
|
186
180
|
|
187
181
|
msgid "Delete"
|
188
|
-
msgstr ""
|
182
|
+
msgstr "삭제"
|
189
183
|
|
190
184
|
msgid "Delete a Policy"
|
191
185
|
msgstr ""
|
@@ -200,13 +194,13 @@ msgid "Delete compliance policy %s with all of its reports?"
|
|
200
194
|
msgstr ""
|
201
195
|
|
202
196
|
msgid "Delete compliance report for %s?"
|
203
|
-
msgstr ""
|
197
|
+
msgstr "%s에 대한 컴플라이언스 보고서를 삭제하시겠습니까?"
|
204
198
|
|
205
199
|
msgid "Delete host"
|
206
200
|
msgstr ""
|
207
201
|
|
208
202
|
msgid "Delete reports"
|
209
|
-
msgstr ""
|
203
|
+
msgstr "보고서 삭제"
|
210
204
|
|
211
205
|
msgid "Delete scap content %s?"
|
212
206
|
msgstr ""
|
@@ -221,19 +215,19 @@ msgid "Deletes a Tailoring file"
|
|
221
215
|
msgstr ""
|
222
216
|
|
223
217
|
msgid "Deletes an SCAP content"
|
224
|
-
msgstr ""
|
218
|
+
msgstr "SCAP 컨텐츠 삭제"
|
225
219
|
|
226
220
|
msgid "Deployment Options"
|
227
221
|
msgstr ""
|
228
222
|
|
229
223
|
msgid "Description"
|
230
|
-
msgstr ""
|
224
|
+
msgstr "설명"
|
231
225
|
|
232
226
|
msgid "Documentation"
|
233
227
|
msgstr ""
|
234
228
|
|
235
229
|
msgid "Download"
|
236
|
-
msgstr ""
|
230
|
+
msgstr "다운로드 "
|
237
231
|
|
238
232
|
msgid "Download ARF report in HTML"
|
239
233
|
msgstr ""
|
@@ -242,7 +236,7 @@ msgid "Download HTML"
|
|
242
236
|
msgstr ""
|
243
237
|
|
244
238
|
msgid "Download XML in bzip"
|
245
|
-
msgstr ""
|
239
|
+
msgstr "XML을 bzip으로 다운로드"
|
246
240
|
|
247
241
|
msgid "Download a Tailoring file as XML"
|
248
242
|
msgstr ""
|
@@ -254,10 +248,10 @@ msgid "Download bzipped ARF report"
|
|
254
248
|
msgstr ""
|
255
249
|
|
256
250
|
msgid "Edit Compliance Policy"
|
257
|
-
msgstr ""
|
251
|
+
msgstr "컴플라이언스 정책 편집"
|
258
252
|
|
259
253
|
msgid "Edit SCAP Content"
|
260
|
-
msgstr ""
|
254
|
+
msgstr "SCAP 컨텐츠 편집"
|
261
255
|
|
262
256
|
msgid "Edit Tailoring File"
|
263
257
|
msgstr ""
|
@@ -266,16 +260,16 @@ msgid "Effective Profile"
|
|
266
260
|
msgstr ""
|
267
261
|
|
268
262
|
msgid "Failed"
|
269
|
-
msgstr ""
|
263
|
+
msgstr "실패"
|
270
264
|
|
271
265
|
msgid "Failed and Othered"
|
272
|
-
msgstr ""
|
266
|
+
msgstr "실패함 및 제외됨"
|
273
267
|
|
274
268
|
msgid "Failed only"
|
275
|
-
msgstr ""
|
269
|
+
msgstr "실패함만"
|
276
270
|
|
277
271
|
msgid "Failed to delete %s compliance reports"
|
278
|
-
msgstr ""
|
272
|
+
msgstr "%s 컴플라이언스 보고서를 삭제하지 못했습니다."
|
279
273
|
|
280
274
|
msgid "Failed to delete ARF Report for host %{host_name} reported at %{reported_at}"
|
281
275
|
msgstr ""
|
@@ -297,52 +291,52 @@ msgstr ""
|
|
297
291
|
|
298
292
|
#. TRANSLATORS: initial character of Failed
|
299
293
|
msgid "Failed|F"
|
300
|
-
msgstr ""
|
294
|
+
msgstr "F"
|
301
295
|
|
302
296
|
msgid "File Upload"
|
303
|
-
msgstr ""
|
297
|
+
msgstr "파일 업로드"
|
304
298
|
|
305
299
|
msgid "Full Report"
|
306
300
|
msgstr ""
|
307
301
|
|
308
302
|
msgid "General"
|
309
|
-
msgstr ""
|
303
|
+
msgstr "일반"
|
310
304
|
|
311
305
|
msgid "Host"
|
312
|
-
msgstr ""
|
306
|
+
msgstr "호스트"
|
313
307
|
|
314
308
|
msgid "Host Breakdown Chart"
|
315
|
-
msgstr ""
|
309
|
+
msgstr "호스트 분류 차트"
|
316
310
|
|
317
311
|
msgid "Host Groups"
|
318
|
-
msgstr ""
|
312
|
+
msgstr "호스트 그룹 "
|
319
313
|
|
320
314
|
msgid "Host compliance details"
|
321
|
-
msgstr ""
|
315
|
+
msgstr "호스트 컴플라이언스 정보"
|
322
316
|
|
323
317
|
msgid "Host details"
|
324
|
-
msgstr ""
|
318
|
+
msgstr "호스트 상세 정보 "
|
325
319
|
|
326
320
|
msgid "Host does not exist anymore"
|
327
|
-
msgstr ""
|
321
|
+
msgstr "호스트가 더 이상 존재하지 않음"
|
328
322
|
|
329
323
|
msgid "Host is assigned to policy"
|
330
324
|
msgstr ""
|
331
325
|
|
332
326
|
msgid "Host is deleted"
|
333
|
-
msgstr ""
|
327
|
+
msgstr "호스트가 삭제되었습니다."
|
334
328
|
|
335
329
|
msgid "Host is not assigned to policy but reports were found. You may want to delete the reports or assign the policy again."
|
336
330
|
msgstr ""
|
337
331
|
|
338
332
|
msgid "Hostgroups"
|
339
|
-
msgstr ""
|
333
|
+
msgstr "호스트 그룹 "
|
340
334
|
|
341
335
|
msgid "Hostname"
|
342
|
-
msgstr ""
|
336
|
+
msgstr "호스트 이름 "
|
343
337
|
|
344
338
|
msgid "Hosts Breakdown"
|
345
|
-
msgstr ""
|
339
|
+
msgstr "호스트 분류"
|
346
340
|
|
347
341
|
msgid "Hosts failing this rule"
|
348
342
|
msgstr ""
|
@@ -363,10 +357,10 @@ msgid "ID of OpenSCAP Proxy"
|
|
363
357
|
msgstr ""
|
364
358
|
|
365
359
|
msgid "Import Puppet classes"
|
366
|
-
msgstr ""
|
360
|
+
msgstr "Puppet 클래스 가져오기"
|
367
361
|
|
368
362
|
msgid "Import facts"
|
369
|
-
msgstr ""
|
363
|
+
msgstr "팩트 불러오기"
|
370
364
|
|
371
365
|
msgid "In Foreman, a compliance policy checklist is defined via %s."
|
372
366
|
msgstr ""
|
@@ -382,16 +376,16 @@ msgid ""
|
|
382
376
|
msgstr ""
|
383
377
|
|
384
378
|
msgid "Incompliant"
|
385
|
-
msgstr ""
|
379
|
+
msgstr "부합하지 않음"
|
386
380
|
|
387
381
|
msgid "Incompliant hosts"
|
388
|
-
msgstr ""
|
382
|
+
msgstr "부합하지 않는 호스트"
|
389
383
|
|
390
384
|
msgid "Inconclusive"
|
391
|
-
msgstr ""
|
385
|
+
msgstr "판단할 수 없음"
|
392
386
|
|
393
387
|
msgid "Inconclusive results"
|
394
|
-
msgstr ""
|
388
|
+
msgstr "판단할 수 없는 결과"
|
395
389
|
|
396
390
|
msgid "It may sometimes be required to adjust the security policy to your specific needs. "
|
397
391
|
msgstr ""
|
@@ -400,7 +394,7 @@ msgid "Latest Compliance Reports"
|
|
400
394
|
msgstr ""
|
401
395
|
|
402
396
|
msgid "Latest reports for policy: %s"
|
403
|
-
msgstr ""
|
397
|
+
msgstr "정책에 대한 최신 보고서: %s"
|
404
398
|
|
405
399
|
msgid "List ARF reports"
|
406
400
|
msgstr ""
|
@@ -408,29 +402,32 @@ msgstr ""
|
|
408
402
|
msgid "List Policies"
|
409
403
|
msgstr ""
|
410
404
|
|
411
|
-
msgid "List SCAP
|
405
|
+
msgid "List SCAP content profiles"
|
412
406
|
msgstr ""
|
413
407
|
|
408
|
+
msgid "List SCAP contents"
|
409
|
+
msgstr "SCAP 컨텐츠 나열"
|
410
|
+
|
414
411
|
msgid "List Tailoring files"
|
415
412
|
msgstr ""
|
416
413
|
|
417
414
|
msgid "Loading..."
|
418
|
-
msgstr ""
|
415
|
+
msgstr "읽어들이는 중..."
|
419
416
|
|
420
417
|
msgid "Locations"
|
421
|
-
msgstr ""
|
418
|
+
msgstr "위치"
|
422
419
|
|
423
420
|
msgid "Message"
|
424
|
-
msgstr ""
|
421
|
+
msgstr "메시지"
|
425
422
|
|
426
423
|
msgid "More details"
|
427
|
-
msgstr ""
|
424
|
+
msgstr "더 자세히"
|
428
425
|
|
429
426
|
msgid "Never audited"
|
430
|
-
msgstr ""
|
427
|
+
msgstr "감사되지 않음"
|
431
428
|
|
432
429
|
msgid "New Compliance Policy"
|
433
|
-
msgstr ""
|
430
|
+
msgstr "새 컴플라이언스 정책"
|
434
431
|
|
435
432
|
msgid "New Policy"
|
436
433
|
msgstr ""
|
@@ -442,13 +439,13 @@ msgid "New Tailoring File"
|
|
442
439
|
msgstr ""
|
443
440
|
|
444
441
|
msgid "Next"
|
445
|
-
msgstr ""
|
442
|
+
msgstr "다음"
|
446
443
|
|
447
444
|
msgid "No"
|
448
|
-
msgstr ""
|
445
|
+
msgstr "제공되지 않음"
|
449
446
|
|
450
447
|
msgid "No ARF reports for this policy"
|
451
|
-
msgstr ""
|
448
|
+
msgstr "이 정책에 대한 ARF 보고서가 없습니다."
|
452
449
|
|
453
450
|
msgid "No OpenSCAP Proxy selected."
|
454
451
|
msgstr ""
|
@@ -460,10 +457,10 @@ msgid "No Tailoring file assigned for policy with id %s"
|
|
460
457
|
msgstr ""
|
461
458
|
|
462
459
|
msgid "No available proxy to validate. Returned with error: %s"
|
463
|
-
msgstr ""
|
460
|
+
msgstr "검증하는 데 사용할 수 있는 프록시가 없습니다. 오류가 반환되었습니다: %s"
|
464
461
|
|
465
462
|
msgid "No compliance policy selected."
|
466
|
-
msgstr ""
|
463
|
+
msgstr "컴플라이언스 정책을 선택하지 않았습니다."
|
467
464
|
|
468
465
|
msgid "No compliance reports selected"
|
469
466
|
msgstr ""
|
@@ -472,10 +469,10 @@ msgid "No compliance reports were found."
|
|
472
469
|
msgstr ""
|
473
470
|
|
474
471
|
msgid "No hosts selected"
|
475
|
-
msgstr ""
|
472
|
+
msgstr "선택된 호스트가 없음 "
|
476
473
|
|
477
474
|
msgid "No hosts were found."
|
478
|
-
msgstr ""
|
475
|
+
msgstr "호스트를 찾을 수 없습니다."
|
479
476
|
|
480
477
|
msgid "No proxy found for %{name} or %{url}"
|
481
478
|
msgstr ""
|
@@ -490,37 +487,37 @@ msgid "No proxy with OpenSCAP feature was found."
|
|
490
487
|
msgstr ""
|
491
488
|
|
492
489
|
msgid "No report for this policy"
|
493
|
-
msgstr ""
|
490
|
+
msgstr "이 정책에 대한 보고서가 없습니다."
|
494
491
|
|
495
492
|
msgid "No reports available"
|
496
|
-
msgstr ""
|
493
|
+
msgstr "사용 가능한 보고서가 없습니다."
|
497
494
|
|
498
495
|
msgid "No valid policy ID provided"
|
499
496
|
msgstr ""
|
500
497
|
|
501
498
|
msgid "None"
|
502
|
-
msgstr ""
|
499
|
+
msgstr "없음"
|
503
500
|
|
504
501
|
msgid "None found"
|
505
|
-
msgstr ""
|
502
|
+
msgstr "찾을 수 없습니다."
|
506
503
|
|
507
504
|
msgid "None!"
|
508
|
-
msgstr ""
|
505
|
+
msgstr "없음!"
|
509
506
|
|
510
507
|
msgid "Not audited"
|
511
|
-
msgstr ""
|
508
|
+
msgstr "감사되지 않음"
|
512
509
|
|
513
510
|
msgid "Not compliant with the policy"
|
514
|
-
msgstr ""
|
511
|
+
msgstr "정책에 부합하지 않음"
|
515
512
|
|
516
513
|
msgid "Nothing to show"
|
517
|
-
msgstr ""
|
514
|
+
msgstr "표시할 것이 없습니다 "
|
518
515
|
|
519
516
|
msgid "Number of Events"
|
520
|
-
msgstr ""
|
517
|
+
msgstr "이벤트 수 "
|
521
518
|
|
522
519
|
msgid "Number of a day in month, note that not all months have same count of days"
|
523
|
-
msgstr ""
|
520
|
+
msgstr "달의 일수입니다. 모든 달의 일수가 동일하지는 않습니다."
|
524
521
|
|
525
522
|
msgid "Once SCAP content is present, you can create a policy, assign select host groups and schedule to run."
|
526
523
|
msgstr ""
|
@@ -535,42 +532,42 @@ msgid "Openscap Proxy"
|
|
535
532
|
msgstr ""
|
536
533
|
|
537
534
|
msgid "Organizations"
|
538
|
-
msgstr ""
|
535
|
+
msgstr "조직 "
|
539
536
|
|
540
537
|
msgid "Original file name of the XML file"
|
541
538
|
msgstr ""
|
542
539
|
|
543
540
|
msgid "Other"
|
544
|
-
msgstr ""
|
541
|
+
msgstr "기타"
|
545
542
|
|
546
543
|
msgid "Othered"
|
547
|
-
msgstr ""
|
544
|
+
msgstr "제외됨"
|
548
545
|
|
549
546
|
#. TRANSLATORS: initial character of Othered which is an SCAP term
|
550
547
|
msgid "Othered|O"
|
551
|
-
msgstr ""
|
548
|
+
msgstr "제외됨|O"
|
552
549
|
|
553
550
|
msgid "Passed"
|
554
|
-
msgstr ""
|
551
|
+
msgstr "통과됨"
|
555
552
|
|
556
553
|
#. TRANSLATORS: initial character of Passed
|
557
554
|
msgid "Passed|P"
|
558
|
-
msgstr ""
|
555
|
+
msgstr "통과됨|P"
|
559
556
|
|
560
557
|
msgid "Please Confirm"
|
561
|
-
msgstr ""
|
558
|
+
msgstr "확인해 주십시오 "
|
562
559
|
|
563
560
|
msgid "Policies"
|
564
|
-
msgstr ""
|
561
|
+
msgstr "정책"
|
565
562
|
|
566
563
|
msgid "Policies with hosts:"
|
567
|
-
msgstr ""
|
564
|
+
msgstr "호스트의 정책:"
|
568
565
|
|
569
566
|
msgid "Policy"
|
570
|
-
msgstr ""
|
567
|
+
msgstr "정책"
|
571
568
|
|
572
569
|
msgid "Policy %s"
|
573
|
-
msgstr ""
|
570
|
+
msgstr "정책 %s"
|
574
571
|
|
575
572
|
msgid "Policy Attributes"
|
576
573
|
msgstr ""
|
@@ -585,13 +582,13 @@ msgid "Policy assigned"
|
|
585
582
|
msgstr ""
|
586
583
|
|
587
584
|
msgid "Policy description"
|
588
|
-
msgstr ""
|
585
|
+
msgstr "정책 설명"
|
589
586
|
|
590
587
|
msgid "Policy is missing"
|
591
588
|
msgstr ""
|
592
589
|
|
593
590
|
msgid "Policy name"
|
594
|
-
msgstr ""
|
591
|
+
msgstr "정책 이름"
|
595
592
|
|
596
593
|
msgid "Policy schedule cron line (only if period == \"custom\")"
|
597
594
|
msgstr ""
|
@@ -612,31 +609,31 @@ msgid "Proxy failed to send a report from spool to Foreman. This indicates a cor
|
|
612
609
|
msgstr ""
|
613
610
|
|
614
611
|
msgid "Puppet class"
|
615
|
-
msgstr ""
|
612
|
+
msgstr "Puppet 클래스 "
|
616
613
|
|
617
614
|
msgid "Rationale"
|
618
|
-
msgstr ""
|
615
|
+
msgstr "근거"
|
619
616
|
|
620
617
|
msgid "References"
|
621
|
-
msgstr ""
|
618
|
+
msgstr "참조"
|
622
619
|
|
623
620
|
msgid "Remote action:"
|
624
|
-
msgstr ""
|
621
|
+
msgstr "원격 작업:"
|
625
622
|
|
626
623
|
msgid "Report Metrics"
|
627
|
-
msgstr ""
|
624
|
+
msgstr "보고서 메트릭스 "
|
628
625
|
|
629
626
|
msgid "Report Status"
|
630
|
-
msgstr ""
|
627
|
+
msgstr "보고서 상태 "
|
631
628
|
|
632
629
|
msgid "Reported At"
|
633
|
-
msgstr ""
|
630
|
+
msgstr "보고 일시"
|
634
631
|
|
635
632
|
msgid "Reported at %s"
|
636
633
|
msgstr ""
|
637
634
|
|
638
635
|
msgid "Reports"
|
639
|
-
msgstr ""
|
636
|
+
msgstr "보고서 "
|
640
637
|
|
641
638
|
msgid "Request timed out. Please try increasing Settings -> proxy_request_timeout"
|
642
639
|
msgstr ""
|
@@ -645,31 +642,34 @@ msgid "Required %{msg_name} %{class} was not found, please ensure it is imported
|
|
645
642
|
msgstr ""
|
646
643
|
|
647
644
|
msgid "Resource"
|
648
|
-
msgstr ""
|
645
|
+
msgstr "자원"
|
649
646
|
|
650
647
|
msgid "Result"
|
648
|
+
msgstr "결과"
|
649
|
+
|
650
|
+
msgid "Rule Results"
|
651
651
|
msgstr ""
|
652
652
|
|
653
653
|
msgid "Run OpenSCAP scan"
|
654
654
|
msgstr ""
|
655
655
|
|
656
656
|
msgid "SCAP Content"
|
657
|
-
msgstr ""
|
657
|
+
msgstr "SCAP 컨텐츠"
|
658
658
|
|
659
659
|
msgid "SCAP Contents"
|
660
|
-
msgstr ""
|
660
|
+
msgstr "SCAP 컨텐츠"
|
661
661
|
|
662
662
|
msgid "SCAP DataStream file"
|
663
663
|
msgstr ""
|
664
664
|
|
665
665
|
msgid "SCAP content"
|
666
|
-
msgstr ""
|
666
|
+
msgstr "SCAP 컨텐츠 "
|
667
667
|
|
668
668
|
msgid "SCAP content name"
|
669
669
|
msgstr ""
|
670
670
|
|
671
671
|
msgid "SCAP contents"
|
672
|
-
msgstr ""
|
672
|
+
msgstr "SCAP 컨텐츠"
|
673
673
|
|
674
674
|
msgid "SCAP policies summary"
|
675
675
|
msgstr ""
|
@@ -678,25 +678,25 @@ msgid "Scap Contents"
|
|
678
678
|
msgstr ""
|
679
679
|
|
680
680
|
msgid "Schedule"
|
681
|
-
msgstr ""
|
681
|
+
msgstr "스케줄 "
|
682
682
|
|
683
683
|
msgid "Select Action"
|
684
|
-
msgstr ""
|
684
|
+
msgstr "작업 선택 "
|
685
685
|
|
686
686
|
msgid "Select Compliance Policy"
|
687
|
-
msgstr ""
|
687
|
+
msgstr "컴플라이언스 정책 선택"
|
688
688
|
|
689
689
|
msgid "Select OpenSCAP Proxy"
|
690
690
|
msgstr ""
|
691
691
|
|
692
692
|
msgid "Select all items in this page"
|
693
|
-
msgstr ""
|
693
|
+
msgstr "이 페이지에 있는 모든 항목을 선택 "
|
694
694
|
|
695
695
|
msgid "Severity"
|
696
|
-
msgstr ""
|
696
|
+
msgstr "심각도"
|
697
697
|
|
698
698
|
msgid "Show Guide"
|
699
|
-
msgstr ""
|
699
|
+
msgstr "가이드 표시"
|
700
700
|
|
701
701
|
msgid "Show a Policy"
|
702
702
|
msgstr ""
|
@@ -705,7 +705,7 @@ msgid "Show a Tailoring file"
|
|
705
705
|
msgstr ""
|
706
706
|
|
707
707
|
msgid "Show a policy's SCAP content"
|
708
|
-
msgstr ""
|
708
|
+
msgstr "정책의 SCAP 컨텐츠 표시"
|
709
709
|
|
710
710
|
msgid "Show a policy's Tailoring file"
|
711
711
|
msgstr ""
|
@@ -714,49 +714,49 @@ msgid "Show an ARF report"
|
|
714
714
|
msgstr ""
|
715
715
|
|
716
716
|
msgid "Show an SCAP content"
|
717
|
-
msgstr ""
|
717
|
+
msgstr "SCAP 컨텐츠 표시"
|
718
718
|
|
719
719
|
msgid "Show config information for foreman_scap_client"
|
720
720
|
msgstr ""
|
721
721
|
|
722
722
|
msgid "Show log messages:"
|
723
|
-
msgstr ""
|
723
|
+
msgstr "로그 메세지 표시: "
|
724
724
|
|
725
725
|
msgid "Smart Class Parameters"
|
726
726
|
msgstr ""
|
727
727
|
|
728
728
|
msgid "Something went wrong while selecting compliance reports - %s"
|
729
|
-
msgstr ""
|
729
|
+
msgstr "컴플라이언스 보고서를 선택하는 도중 문제가 발생했습니다 - %s"
|
730
730
|
|
731
731
|
msgid "Something went wrong while selecting hosts - %s"
|
732
|
-
msgstr ""
|
732
|
+
msgstr "호스트를 선택하는 도중 문제가 발생했습니다 - %s"
|
733
733
|
|
734
734
|
msgid "Spool errors"
|
735
735
|
msgstr ""
|
736
736
|
|
737
737
|
msgid "Status chart"
|
738
|
-
msgstr ""
|
738
|
+
msgstr "상태 차트 "
|
739
739
|
|
740
740
|
msgid "Status table"
|
741
|
-
msgstr ""
|
741
|
+
msgstr "상태 표 "
|
742
742
|
|
743
743
|
msgid "Submit"
|
744
|
-
msgstr ""
|
744
|
+
msgstr "보내기"
|
745
745
|
|
746
746
|
msgid "Successfully deleted %s compliance reports"
|
747
|
-
msgstr ""
|
747
|
+
msgstr "%s 컴플라이언스 보고서를 삭제했습니다."
|
748
748
|
|
749
749
|
msgid "Successfully deleted ARF report."
|
750
750
|
msgstr ""
|
751
751
|
|
752
752
|
msgid "Summary from %{time} ago to now"
|
753
|
-
msgstr ""
|
753
|
+
msgstr "%{time} 전에서 현재까지의 요약"
|
754
754
|
|
755
755
|
msgid "Summary report for OpenScap from Foreman"
|
756
756
|
msgstr ""
|
757
757
|
|
758
758
|
msgid "Summary report from Foreman server at %{foreman_url}"
|
759
|
-
msgstr ""
|
759
|
+
msgstr "%{foreman_url}의 Foreman 서버에서 가져온 요약"
|
760
760
|
|
761
761
|
msgid "Tailoring File"
|
762
762
|
msgstr ""
|
@@ -797,7 +797,7 @@ msgid "This profile will be used to override the one from scap content"
|
|
797
797
|
msgstr ""
|
798
798
|
|
799
799
|
msgid "Total"
|
800
|
-
msgstr ""
|
800
|
+
msgstr "전체"
|
801
801
|
|
802
802
|
msgid "Total hosts with policy: %s"
|
803
803
|
msgstr ""
|
@@ -817,10 +817,10 @@ msgid "Unable to get XML version of requested report from Smart Proxy"
|
|
817
817
|
msgstr ""
|
818
818
|
|
819
819
|
msgid "Unassign Compliance Policy"
|
820
|
-
msgstr ""
|
820
|
+
msgstr "컴플라이언스 정책 할당 취소"
|
821
821
|
|
822
822
|
msgid "Unknown Compliance status"
|
823
|
-
msgstr ""
|
823
|
+
msgstr "알 수 없는 컴플라이언스 상태"
|
824
824
|
|
825
825
|
msgid "Update a Policy"
|
826
826
|
msgstr ""
|
@@ -829,7 +829,7 @@ msgid "Update a Tailoring file"
|
|
829
829
|
msgstr ""
|
830
830
|
|
831
831
|
msgid "Update an SCAP content"
|
832
|
-
msgstr ""
|
832
|
+
msgstr "SCAP 컨텐츠 업데이트"
|
833
833
|
|
834
834
|
msgid "Update host"
|
835
835
|
msgstr ""
|
@@ -844,31 +844,31 @@ msgid "Updated hosts: Assigned with compliance policy: %s"
|
|
844
844
|
msgstr ""
|
845
845
|
|
846
846
|
msgid "Updated hosts: Unassigned from compliance policy '%s'"
|
847
|
-
msgstr ""
|
847
|
+
msgstr "업데이트된 호스트: 컴플라이언스 정책 '%s'에서 할당 취소됨"
|
848
848
|
|
849
849
|
msgid "Upload New SCAP Content"
|
850
|
-
msgstr ""
|
850
|
+
msgstr "새 SCAP 컨텐츠 업로드"
|
851
851
|
|
852
852
|
msgid "Upload New Tailoring file"
|
853
853
|
msgstr ""
|
854
854
|
|
855
855
|
msgid "Upload an ARF report"
|
856
|
-
msgstr ""
|
856
|
+
msgstr "ARF 보고서 업로드"
|
857
857
|
|
858
858
|
msgid "Upload new SCAP content file"
|
859
|
-
msgstr ""
|
859
|
+
msgstr "새 SCAP 컨텐츠 파일 업로드"
|
860
860
|
|
861
861
|
msgid "Upload new Tailoring File"
|
862
862
|
msgstr ""
|
863
863
|
|
864
864
|
msgid "View Report"
|
865
|
-
msgstr ""
|
865
|
+
msgstr "보고서 보기"
|
866
866
|
|
867
867
|
msgid "View full report"
|
868
|
-
msgstr ""
|
868
|
+
msgstr "전체 보고서 보기"
|
869
869
|
|
870
870
|
msgid "XCCDF Profile"
|
871
|
-
msgstr ""
|
871
|
+
msgstr "XCCDF 프로파일 "
|
872
872
|
|
873
873
|
msgid "XCCDF Profile in Tailoring File"
|
874
874
|
msgstr ""
|
@@ -880,10 +880,10 @@ msgid "XML containing tailoring file"
|
|
880
880
|
msgstr ""
|
881
881
|
|
882
882
|
msgid "Yes"
|
883
|
-
msgstr ""
|
883
|
+
msgstr "제공됨"
|
884
884
|
|
885
885
|
msgid "You can specify custom cron line, e.g. \"0 3 * * *\", separate each of 5 values by space"
|
886
|
-
msgstr ""
|
886
|
+
msgstr "각각의 5자리 값을 공백으로 구분하여 사용자 정의 cron 줄을 지정할 수 있습니다(예: \"0 3 * * *\")."
|
887
887
|
|
888
888
|
msgid "You don't seem to have any ARF report. ARF report is a summary of a single scan occurrence on a particular host for a given Compliance Policy."
|
889
889
|
msgstr ""
|
@@ -904,7 +904,7 @@ msgid "does not have the selected SCAP content profile"
|
|
904
904
|
msgstr ""
|
905
905
|
|
906
906
|
msgid "invalid type %s"
|
907
|
-
msgstr ""
|
907
|
+
msgstr "잘못된 유형 %s"
|
908
908
|
|
909
909
|
msgid "is not a valid value"
|
910
910
|
msgstr ""
|
@@ -913,7 +913,7 @@ msgid "is not included in SCAP_RESULT"
|
|
913
913
|
msgstr ""
|
914
914
|
|
915
915
|
msgid "items selected. Uncheck to Clear"
|
916
|
-
msgstr ""
|
916
|
+
msgstr "항목이 선택되어 있습니다. 삭제하려면 선택 해제합니다 "
|
917
917
|
|
918
918
|
msgid "must be between 1 and 31"
|
919
919
|
msgstr ""
|