foreman_openscap 4.2.0 → 4.3.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.
- checksums.yaml +4 -4
- data/app/controllers/api/v2/compliance/oval_contents_controller.rb +72 -0
- data/app/controllers/api/v2/compliance/oval_policies_controller.rb +111 -0
- data/app/controllers/api/v2/compliance/oval_reports_controller.rb +47 -0
- data/app/controllers/concerns/foreman/controller/parameters/oval_content.rb +22 -0
- data/app/controllers/concerns/foreman/controller/parameters/oval_policy.rb +22 -0
- data/app/controllers/concerns/foreman_openscap/hosts_controller_extensions.rb +1 -1
- data/app/graphql/types/cve.rb +17 -0
- data/app/graphql/types/oval_content.rb +17 -0
- data/app/graphql/types/oval_policy.rb +21 -0
- data/app/helpers/arf_reports_helper.rb +0 -14
- data/app/mailers/foreman_openscap/policy_mailer.rb +2 -2
- data/app/models/concerns/foreman_openscap/compliance_status_scoped_search.rb +1 -1
- data/app/models/concerns/foreman_openscap/data_stream_content.rb +0 -17
- data/app/models/concerns/foreman_openscap/host_extensions.rb +11 -11
- data/app/models/concerns/foreman_openscap/hostgroup_extensions.rb +3 -5
- data/app/models/concerns/foreman_openscap/inherited_policies.rb +11 -0
- data/app/models/concerns/foreman_openscap/oval_facet_host_extensions.rb +38 -0
- data/app/models/concerns/foreman_openscap/oval_facet_hostgroup_extensions.rb +15 -0
- data/app/models/concerns/foreman_openscap/policy_common.rb +75 -0
- data/app/models/concerns/foreman_openscap/scap_file_content.rb +24 -0
- data/app/models/foreman_openscap/cve.rb +23 -0
- data/app/models/foreman_openscap/host/oval_facet.rb +14 -0
- data/app/models/foreman_openscap/host_cve.rb +7 -0
- data/app/models/foreman_openscap/hostgroup/oval_facet.rb +14 -0
- data/app/models/foreman_openscap/hostgroup_oval_facet_oval_policy.rb +6 -0
- data/app/models/foreman_openscap/oval_content.rb +26 -0
- data/app/models/foreman_openscap/oval_facet_oval_policy.rb +6 -0
- data/app/models/foreman_openscap/oval_policy.rb +54 -0
- data/app/models/foreman_openscap/oval_status.rb +45 -0
- data/app/models/foreman_openscap/policy.rb +7 -69
- data/app/models/foreman_openscap/scap_content.rb +1 -0
- data/app/models/foreman_openscap/tailoring_file.rb +1 -0
- data/app/services/foreman_openscap/client_config/ansible.rb +39 -6
- data/app/services/foreman_openscap/client_config/base.rb +5 -1
- data/app/services/foreman_openscap/client_config/puppet.rb +2 -1
- data/app/services/foreman_openscap/config_name_service.rb +1 -1
- data/app/services/foreman_openscap/hostgroup_overrider.rb +2 -24
- data/app/services/foreman_openscap/hostgroup_overrider_common.rb +28 -0
- data/app/services/foreman_openscap/lookup_key_overrider.rb +30 -62
- data/app/services/foreman_openscap/lookup_key_overrides_common.rb +63 -0
- data/app/services/foreman_openscap/oval/check_collection.rb +45 -0
- data/app/services/foreman_openscap/oval/configure.rb +80 -0
- data/app/services/foreman_openscap/oval/cves.rb +41 -0
- data/app/services/foreman_openscap/oval/setup.rb +93 -0
- data/app/services/foreman_openscap/oval/setup_check.rb +55 -0
- data/app/services/foreman_openscap/oval/sync_oval_contents.rb +42 -0
- data/app/views/api/v2/compliance/oval_contents/base.json.rabl +6 -0
- data/app/views/api/v2/compliance/oval_contents/create.json.rabl +3 -0
- data/app/views/api/v2/compliance/oval_contents/index.json.rabl +3 -0
- data/app/views/api/v2/compliance/oval_contents/show.json.rabl +3 -0
- data/app/views/api/v2/compliance/oval_contents/sync.json.rabl +3 -0
- data/app/views/api/v2/compliance/oval_contents/sync_result.json.rabl +11 -0
- data/app/views/api/v2/compliance/oval_contents/update.json.rabl +3 -0
- data/app/views/api/v2/compliance/oval_policies/create.json.rabl +3 -0
- data/app/views/api/v2/compliance/oval_policies/index.json.rabl +3 -0
- data/app/views/api/v2/compliance/oval_policies/main.json.rabl +15 -0
- data/app/views/api/v2/compliance/oval_policies/show.json.rabl +3 -0
- data/app/views/api/v2/compliance/policies/base.json.rabl +2 -2
- data/app/views/api/v2/compliance/policies_common/_attrs.json.rabl +2 -0
- data/app/views/arf_reports/_output.html.erb +9 -1
- data/app/views/job_templates/run_oval_scans.erb +24 -0
- data/app/views/policies/steps/_deployment_options_form.html.erb +2 -2
- data/config/initializers/inflections.rb +12 -0
- data/config/routes.rb +19 -0
- data/db/migrate/20201019074925_create_oval_policy.rb +13 -0
- data/db/migrate/20201020113801_create_oval_facet.rb +14 -0
- data/db/migrate/20201021084109_create_hostgroup_oval_facet.rb +14 -0
- data/db/migrate/20201106080924_create_oval_content.rb +12 -0
- data/db/migrate/20201116110256_add_oval_content_to_oval_policy.rb +5 -0
- data/db/migrate/20201120080329_create_cves.rb +13 -0
- data/db/migrate/20201202110213_update_puppet_port_param_type.rb +2 -6
- data/db/migrate/20201217130800_add_has_errata_to_cve.rb +8 -0
- data/db/migrate/20201217161511_add_url_to_oval_content.rb +5 -0
- data/db/migrate/20210409095625_add_oval_policy_reference_to_cve.rb +7 -0
- data/lib/foreman_openscap/engine.rb +67 -9
- data/lib/foreman_openscap/version.rb +1 -1
- data/lib/tasks/foreman_openscap_tasks.rake +14 -9
- data/locale/de/LC_MESSAGES/foreman_openscap.mo +0 -0
- data/locale/de/foreman_openscap.edit.po +0 -0
- data/locale/de/foreman_openscap.po +215 -17
- data/locale/en_GB/LC_MESSAGES/foreman_openscap.mo +0 -0
- data/locale/en_GB/foreman_openscap.edit.po +0 -0
- data/locale/en_GB/foreman_openscap.po +213 -15
- data/locale/es/LC_MESSAGES/foreman_openscap.mo +0 -0
- data/locale/es/foreman_openscap.edit.po +0 -0
- data/locale/es/foreman_openscap.po +239 -41
- data/locale/foreman_openscap.pot +395 -112
- data/locale/fr/LC_MESSAGES/foreman_openscap.mo +0 -0
- data/locale/fr/foreman_openscap.edit.po +0 -0
- data/locale/fr/foreman_openscap.po +243 -45
- data/locale/gl/LC_MESSAGES/foreman_openscap.mo +0 -0
- data/locale/gl/foreman_openscap.edit.po +0 -0
- data/locale/gl/foreman_openscap.po +213 -15
- data/locale/it/LC_MESSAGES/foreman_openscap.mo +0 -0
- data/locale/it/foreman_openscap.edit.po +0 -0
- data/locale/it/foreman_openscap.po +213 -15
- data/locale/ja/LC_MESSAGES/foreman_openscap.mo +0 -0
- data/locale/ja/foreman_openscap.edit.po +0 -0
- data/locale/ja/foreman_openscap.po +262 -66
- data/locale/ko/LC_MESSAGES/foreman_openscap.mo +0 -0
- data/locale/ko/foreman_openscap.edit.po +0 -0
- data/locale/ko/foreman_openscap.po +214 -16
- data/locale/pt_BR/LC_MESSAGES/foreman_openscap.mo +0 -0
- data/locale/pt_BR/foreman_openscap.edit.po +0 -0
- data/locale/pt_BR/foreman_openscap.po +252 -54
- data/locale/ru/LC_MESSAGES/foreman_openscap.mo +0 -0
- data/locale/ru/foreman_openscap.edit.po +0 -0
- data/locale/ru/foreman_openscap.po +214 -16
- data/locale/sv_SE/LC_MESSAGES/foreman_openscap.mo +0 -0
- data/locale/sv_SE/foreman_openscap.edit.po +0 -0
- data/locale/sv_SE/foreman_openscap.po +213 -15
- data/locale/zh_CN/LC_MESSAGES/foreman_openscap.mo +0 -0
- data/locale/zh_CN/foreman_openscap.edit.po +0 -0
- data/locale/zh_CN/foreman_openscap.po +369 -169
- data/locale/zh_TW/LC_MESSAGES/foreman_openscap.mo +0 -0
- data/locale/zh_TW/foreman_openscap.edit.po +0 -0
- data/locale/zh_TW/foreman_openscap.po +214 -16
- data/test/factories/compliance_host_factory.rb +12 -0
- data/test/factories/oval_content_factory.rb +7 -0
- data/test/factories/oval_policy_factory.rb +9 -0
- data/test/files/oval_contents/ansible-2.9.oval.xml.bz2 +0 -0
- data/test/fixtures/cve_fixtures.rb +104 -0
- data/test/functional/api/v2/compliance/oval_contents_controller_test.rb +39 -0
- data/test/functional/api/v2/compliance/oval_policies_controller_test.rb +141 -0
- data/test/functional/api/v2/compliance/oval_reports_controller_test.rb +32 -0
- data/test/graphql/queries/oval_contents_query_test.rb +35 -0
- data/test/graphql/queries/oval_policies_query_test.rb +35 -0
- data/test/test_plugin_helper.rb +4 -0
- data/test/unit/oval_host_test.rb +45 -0
- data/test/unit/oval_policy_test.rb +133 -0
- data/test/unit/oval_status_test.rb +47 -0
- data/test/unit/services/oval/cves_test.rb +81 -0
- data/test/unit/services/oval/setup_test.rb +87 -0
- metadata +97 -3
|
Binary file
|
|
File without changes
|
|
@@ -8,8 +8,8 @@ msgid ""
|
|
|
8
8
|
msgstr ""
|
|
9
9
|
"Project-Id-Version: Foreman\n"
|
|
10
10
|
"Report-Msgid-Bugs-To: \n"
|
|
11
|
-
"PO-Revision-Date: 2020-
|
|
12
|
-
"Last-Translator:
|
|
11
|
+
"PO-Revision-Date: 2020-05-12 09:50+0000\n"
|
|
12
|
+
"Last-Translator: Transifex Bot <>\n"
|
|
13
13
|
"Language-Team: Chinese (Taiwan) (http://www.transifex.com/foreman/foreman/lang"
|
|
14
14
|
"uage/zh_TW/)\n"
|
|
15
15
|
"MIME-Version: 1.0\n"
|
|
@@ -32,9 +32,6 @@ msgid_plural "%s compliance reports by policy"
|
|
|
32
32
|
msgstr[0] ""
|
|
33
33
|
msgstr[1] ""
|
|
34
34
|
|
|
35
|
-
msgid "%s compliance reports by policy"
|
|
36
|
-
msgstr ""
|
|
37
|
-
|
|
38
35
|
msgid "%s latest report"
|
|
39
36
|
msgstr "%s 最新報告"
|
|
40
37
|
|
|
@@ -44,6 +41,12 @@ msgstr "%s 一直以來的報告"
|
|
|
44
41
|
msgid "%s spool errors detected, inspect the appropriate file directly on proxy"
|
|
45
42
|
msgstr ""
|
|
46
43
|
|
|
44
|
+
msgid "%s vulnerabilities found"
|
|
45
|
+
msgstr ""
|
|
46
|
+
|
|
47
|
+
msgid "%s vulnerabilities with available patch found"
|
|
48
|
+
msgstr ""
|
|
49
|
+
|
|
47
50
|
msgid "%{type} was selected to deploy policy to clients, but %{type} is not available. Are you missing a plugin?"
|
|
48
51
|
msgstr ""
|
|
49
52
|
|
|
@@ -74,9 +77,27 @@ msgstr ""
|
|
|
74
77
|
msgid "Apply policy to hosts"
|
|
75
78
|
msgstr ""
|
|
76
79
|
|
|
80
|
+
msgid "Are required variables for theforeman.foreman_scap_client present?"
|
|
81
|
+
msgstr ""
|
|
82
|
+
|
|
83
|
+
msgid "Array of host IDs"
|
|
84
|
+
msgstr ""
|
|
85
|
+
|
|
86
|
+
msgid "Array of hostgroup IDs"
|
|
87
|
+
msgstr ""
|
|
88
|
+
|
|
77
89
|
msgid "Assign Compliance Policy"
|
|
78
90
|
msgstr "指定合規政策"
|
|
79
91
|
|
|
92
|
+
msgid "Assign hostgroups to an OVAL Policy"
|
|
93
|
+
msgstr ""
|
|
94
|
+
|
|
95
|
+
msgid "Assign hosts to an OVAL Policy"
|
|
96
|
+
msgstr ""
|
|
97
|
+
|
|
98
|
+
msgid "Assign openscap_proxy to %s before proceeding."
|
|
99
|
+
msgstr ""
|
|
100
|
+
|
|
80
101
|
msgid "Back"
|
|
81
102
|
msgstr "上一頁"
|
|
82
103
|
|
|
@@ -119,9 +140,6 @@ msgstr "選擇星期幾"
|
|
|
119
140
|
msgid "Compliance"
|
|
120
141
|
msgstr "合規"
|
|
121
142
|
|
|
122
|
-
msgid "Compliance Hosts"
|
|
123
|
-
msgstr ""
|
|
124
|
-
|
|
125
143
|
msgid "Compliance Policies"
|
|
126
144
|
msgstr "合規政策"
|
|
127
145
|
|
|
@@ -149,12 +167,18 @@ msgstr "合於政策"
|
|
|
149
167
|
msgid "Could not find host identified by: %s"
|
|
150
168
|
msgstr ""
|
|
151
169
|
|
|
170
|
+
msgid "Could not update Ansible Variables with override: true"
|
|
171
|
+
msgstr ""
|
|
172
|
+
|
|
152
173
|
msgid "Could not validate %s. Please make sure you have appropriate proxy version to use this functionality"
|
|
153
174
|
msgstr ""
|
|
154
175
|
|
|
155
176
|
msgid "Could not validate %{file_type}. Error %{error}"
|
|
156
177
|
msgstr ""
|
|
157
178
|
|
|
179
|
+
msgid "Create OVAL content"
|
|
180
|
+
msgstr ""
|
|
181
|
+
|
|
158
182
|
msgid "Create SCAP content"
|
|
159
183
|
msgstr "建立 SCAP 內容"
|
|
160
184
|
|
|
@@ -164,6 +188,9 @@ msgstr ""
|
|
|
164
188
|
msgid "Create a Tailoring file"
|
|
165
189
|
msgstr ""
|
|
166
190
|
|
|
191
|
+
msgid "Create an OVAL Policy"
|
|
192
|
+
msgstr ""
|
|
193
|
+
|
|
167
194
|
msgid "Dashboard"
|
|
168
195
|
msgstr "控制面板"
|
|
169
196
|
|
|
@@ -185,6 +212,9 @@ msgstr ""
|
|
|
185
212
|
msgid "Delete an ARF Report"
|
|
186
213
|
msgstr ""
|
|
187
214
|
|
|
215
|
+
msgid "Delete an OVAL Policy"
|
|
216
|
+
msgstr ""
|
|
217
|
+
|
|
188
218
|
msgid "Delete compliance policy %s with all of its reports?"
|
|
189
219
|
msgstr ""
|
|
190
220
|
|
|
@@ -206,6 +236,9 @@ msgstr ""
|
|
|
206
236
|
msgid "Deletes a Tailoring file"
|
|
207
237
|
msgstr ""
|
|
208
238
|
|
|
239
|
+
msgid "Deletes an OVAL content"
|
|
240
|
+
msgstr ""
|
|
241
|
+
|
|
209
242
|
msgid "Deletes an SCAP content"
|
|
210
243
|
msgstr "刪除 SCAP 內容"
|
|
211
244
|
|
|
@@ -215,6 +248,12 @@ msgstr ""
|
|
|
215
248
|
msgid "Description"
|
|
216
249
|
msgstr "說明"
|
|
217
250
|
|
|
251
|
+
msgid "Details for Compliance Policy %s"
|
|
252
|
+
msgstr ""
|
|
253
|
+
|
|
254
|
+
msgid "Directory to upload when using \"directory\" upload type"
|
|
255
|
+
msgstr ""
|
|
256
|
+
|
|
218
257
|
msgid "Documentation"
|
|
219
258
|
msgstr ""
|
|
220
259
|
|
|
@@ -239,18 +278,15 @@ msgstr ""
|
|
|
239
278
|
msgid "Download bzipped ARF report"
|
|
240
279
|
msgstr ""
|
|
241
280
|
|
|
242
|
-
msgid "Edit
|
|
243
|
-
msgstr "編輯合規政策"
|
|
244
|
-
|
|
245
|
-
msgid "Edit SCAP Content"
|
|
246
|
-
msgstr "編輯 SCAP 內容"
|
|
247
|
-
|
|
248
|
-
msgid "Edit Tailoring File"
|
|
281
|
+
msgid "Edit %s"
|
|
249
282
|
msgstr ""
|
|
250
283
|
|
|
251
284
|
msgid "Effective Profile"
|
|
252
285
|
msgstr ""
|
|
253
286
|
|
|
287
|
+
msgid "Error!"
|
|
288
|
+
msgstr ""
|
|
289
|
+
|
|
254
290
|
msgid "Failed"
|
|
255
291
|
msgstr "已失敗"
|
|
256
292
|
|
|
@@ -288,12 +324,18 @@ msgstr "F"
|
|
|
288
324
|
msgid "File Upload"
|
|
289
325
|
msgstr "檔案上傳"
|
|
290
326
|
|
|
327
|
+
msgid "File paths to upload when using \"files\" upload type"
|
|
328
|
+
msgstr ""
|
|
329
|
+
|
|
291
330
|
msgid "Full Report"
|
|
292
331
|
msgstr ""
|
|
293
332
|
|
|
294
333
|
msgid "General"
|
|
295
334
|
msgstr "一般"
|
|
296
335
|
|
|
336
|
+
msgid "Has Errata?"
|
|
337
|
+
msgstr ""
|
|
338
|
+
|
|
297
339
|
msgid "Host"
|
|
298
340
|
msgstr "主機"
|
|
299
341
|
|
|
@@ -330,6 +372,9 @@ msgstr "主機名稱"
|
|
|
330
372
|
msgid "Hosts Breakdown"
|
|
331
373
|
msgstr "主機錯誤"
|
|
332
374
|
|
|
375
|
+
msgid "Hosts Count"
|
|
376
|
+
msgstr ""
|
|
377
|
+
|
|
333
378
|
msgid "Hosts failing this rule"
|
|
334
379
|
msgstr ""
|
|
335
380
|
|
|
@@ -379,6 +424,15 @@ msgstr "非決定性"
|
|
|
379
424
|
msgid "Inconclusive results"
|
|
380
425
|
msgstr "非決定性結果"
|
|
381
426
|
|
|
427
|
+
msgid "Is %s param set to be overriden?"
|
|
428
|
+
msgstr ""
|
|
429
|
+
|
|
430
|
+
msgid "Is foreman_ansible present?"
|
|
431
|
+
msgstr ""
|
|
432
|
+
|
|
433
|
+
msgid "Is theforeman.foreman_scap_client present?"
|
|
434
|
+
msgstr ""
|
|
435
|
+
|
|
382
436
|
msgid "It may sometimes be required to adjust the security policy to your specific needs. "
|
|
383
437
|
msgstr ""
|
|
384
438
|
|
|
@@ -391,6 +445,12 @@ msgstr "最新的政策報告:%s"
|
|
|
391
445
|
msgid "List ARF reports"
|
|
392
446
|
msgstr ""
|
|
393
447
|
|
|
448
|
+
msgid "List OVAL Policies"
|
|
449
|
+
msgstr ""
|
|
450
|
+
|
|
451
|
+
msgid "List OVAL contents"
|
|
452
|
+
msgstr ""
|
|
453
|
+
|
|
394
454
|
msgid "List Policies"
|
|
395
455
|
msgstr ""
|
|
396
456
|
|
|
@@ -415,6 +475,9 @@ msgstr "訊息"
|
|
|
415
475
|
msgid "More details"
|
|
416
476
|
msgstr "更多詳細資訊"
|
|
417
477
|
|
|
478
|
+
msgid "Name"
|
|
479
|
+
msgstr ""
|
|
480
|
+
|
|
418
481
|
msgid "Never audited"
|
|
419
482
|
msgstr "未曾稽核"
|
|
420
483
|
|
|
@@ -439,6 +502,18 @@ msgstr "否"
|
|
|
439
502
|
msgid "No ARF reports for this policy"
|
|
440
503
|
msgstr "此政策沒有 ARF 報告"
|
|
441
504
|
|
|
505
|
+
msgid "No CVEs found."
|
|
506
|
+
msgstr ""
|
|
507
|
+
|
|
508
|
+
msgid "No OVAL Contents found."
|
|
509
|
+
msgstr ""
|
|
510
|
+
|
|
511
|
+
msgid "No OVAL Policies found"
|
|
512
|
+
msgstr ""
|
|
513
|
+
|
|
514
|
+
msgid "No OVAL Policy found"
|
|
515
|
+
msgstr ""
|
|
516
|
+
|
|
442
517
|
msgid "No OpenSCAP Proxy selected."
|
|
443
518
|
msgstr ""
|
|
444
519
|
|
|
@@ -448,6 +523,9 @@ msgstr ""
|
|
|
448
523
|
msgid "No Tailoring file assigned for policy with id %s"
|
|
449
524
|
msgstr ""
|
|
450
525
|
|
|
526
|
+
msgid "No Vulnerabilities found"
|
|
527
|
+
msgstr ""
|
|
528
|
+
|
|
451
529
|
msgid "No available proxy to validate. Returned with error: %s"
|
|
452
530
|
msgstr "沒有可用的代理供驗證。傳回錯誤:%s"
|
|
453
531
|
|
|
@@ -511,6 +589,48 @@ msgstr "事件數量"
|
|
|
511
589
|
msgid "Number of a day in month, note that not all months have same count of days"
|
|
512
590
|
msgstr "月份中的日子,請注意並不是所有月份都有同樣的天數"
|
|
513
591
|
|
|
592
|
+
msgid "OVAL Content"
|
|
593
|
+
msgstr ""
|
|
594
|
+
|
|
595
|
+
msgid "OVAL Contents"
|
|
596
|
+
msgstr ""
|
|
597
|
+
|
|
598
|
+
msgid "OVAL Contents table"
|
|
599
|
+
msgstr ""
|
|
600
|
+
|
|
601
|
+
msgid "OVAL Policies"
|
|
602
|
+
msgstr ""
|
|
603
|
+
|
|
604
|
+
msgid "OVAL Policies Table"
|
|
605
|
+
msgstr ""
|
|
606
|
+
|
|
607
|
+
msgid "OVAL Policy description"
|
|
608
|
+
msgstr ""
|
|
609
|
+
|
|
610
|
+
msgid "OVAL Policy name"
|
|
611
|
+
msgstr ""
|
|
612
|
+
|
|
613
|
+
msgid "OVAL Policy schedule cron line (only if period == \"custom\")"
|
|
614
|
+
msgstr ""
|
|
615
|
+
|
|
616
|
+
msgid "OVAL Policy schedule day of month (only if period == \"monthly\")"
|
|
617
|
+
msgstr ""
|
|
618
|
+
|
|
619
|
+
msgid "OVAL Policy schedule period (weekly, monthly, custom)"
|
|
620
|
+
msgstr ""
|
|
621
|
+
|
|
622
|
+
msgid "OVAL Policy schedule weekday (only if period == \"weekly\")"
|
|
623
|
+
msgstr ""
|
|
624
|
+
|
|
625
|
+
msgid "OVAL content name"
|
|
626
|
+
msgstr ""
|
|
627
|
+
|
|
628
|
+
msgid "OVAL policy successfully configured with %s."
|
|
629
|
+
msgstr ""
|
|
630
|
+
|
|
631
|
+
msgid "OVAL scan"
|
|
632
|
+
msgstr ""
|
|
633
|
+
|
|
514
634
|
msgid "Once SCAP content is present, you can create a policy, assign select host groups and schedule to run."
|
|
515
635
|
msgstr ""
|
|
516
636
|
|
|
@@ -526,6 +646,9 @@ msgstr ""
|
|
|
526
646
|
msgid "Organizations"
|
|
527
647
|
msgstr "組織"
|
|
528
648
|
|
|
649
|
+
msgid "Original file name of the OVAL content file"
|
|
650
|
+
msgstr ""
|
|
651
|
+
|
|
529
652
|
msgid "Original file name of the XML file"
|
|
530
653
|
msgstr ""
|
|
531
654
|
|
|
@@ -549,6 +672,12 @@ msgstr "Passed|P"
|
|
|
549
672
|
msgid "Please Confirm"
|
|
550
673
|
msgstr "請確認"
|
|
551
674
|
|
|
675
|
+
msgid "Please make sure you understand them by reading our"
|
|
676
|
+
msgstr ""
|
|
677
|
+
|
|
678
|
+
msgid "Please specify import type, received: %{received}, expected one of: %{expected}"
|
|
679
|
+
msgstr ""
|
|
680
|
+
|
|
552
681
|
msgid "Policies"
|
|
553
682
|
msgstr "方針"
|
|
554
683
|
|
|
@@ -564,6 +693,9 @@ msgstr "政策 %s"
|
|
|
564
693
|
msgid "Policy Attributes"
|
|
565
694
|
msgstr ""
|
|
566
695
|
|
|
696
|
+
msgid "Policy OVAL content ID"
|
|
697
|
+
msgstr ""
|
|
698
|
+
|
|
567
699
|
msgid "Policy SCAP content ID"
|
|
568
700
|
msgstr ""
|
|
569
701
|
|
|
@@ -606,6 +738,9 @@ msgstr "Puppet 類別"
|
|
|
606
738
|
msgid "Rationale"
|
|
607
739
|
msgstr "理由"
|
|
608
740
|
|
|
741
|
+
msgid "Ref Id"
|
|
742
|
+
msgstr ""
|
|
743
|
+
|
|
609
744
|
msgid "References"
|
|
610
745
|
msgstr "參照"
|
|
611
746
|
|
|
@@ -642,6 +777,9 @@ msgstr "結果"
|
|
|
642
777
|
msgid "Rule Results"
|
|
643
778
|
msgstr ""
|
|
644
779
|
|
|
780
|
+
msgid "Run OVAL scan"
|
|
781
|
+
msgstr ""
|
|
782
|
+
|
|
645
783
|
msgid "Run OpenSCAP scan"
|
|
646
784
|
msgstr ""
|
|
647
785
|
|
|
@@ -666,7 +804,7 @@ msgstr "SCAP 內容"
|
|
|
666
804
|
msgid "SCAP policies summary"
|
|
667
805
|
msgstr ""
|
|
668
806
|
|
|
669
|
-
msgid "
|
|
807
|
+
msgid "Scan All Hostgroups"
|
|
670
808
|
msgstr ""
|
|
671
809
|
|
|
672
810
|
msgid "Schedule"
|
|
@@ -705,6 +843,12 @@ msgstr ""
|
|
|
705
843
|
msgid "Show an ARF report"
|
|
706
844
|
msgstr ""
|
|
707
845
|
|
|
846
|
+
msgid "Show an OVAL Policy"
|
|
847
|
+
msgstr ""
|
|
848
|
+
|
|
849
|
+
msgid "Show an OVAL content"
|
|
850
|
+
msgstr ""
|
|
851
|
+
|
|
708
852
|
msgid "Show an SCAP content"
|
|
709
853
|
msgstr "顯示 SCAP 內容"
|
|
710
854
|
|
|
@@ -750,6 +894,12 @@ msgstr ""
|
|
|
750
894
|
msgid "Summary report from Foreman server at %{foreman_url}"
|
|
751
895
|
msgstr "來自 Foreman 伺服器的摘要報告,於 %{foreman_url}"
|
|
752
896
|
|
|
897
|
+
msgid "Sync contents that have remote source URL"
|
|
898
|
+
msgstr ""
|
|
899
|
+
|
|
900
|
+
msgid "Table of CVEs for OVAL policy"
|
|
901
|
+
msgstr ""
|
|
902
|
+
|
|
753
903
|
msgid "Tailoring File"
|
|
754
904
|
msgstr ""
|
|
755
905
|
|
|
@@ -773,6 +923,9 @@ msgstr ""
|
|
|
773
923
|
msgid "The following %{key_name} were missing for %{item_name}: %{key_names}. Make sure they are imported before proceeding."
|
|
774
924
|
msgstr ""
|
|
775
925
|
|
|
926
|
+
msgid "The following Ansible Variables were not found: %{missing_vars}, please import them before running this action again."
|
|
927
|
+
msgstr ""
|
|
928
|
+
|
|
776
929
|
msgid "The following Smart Proxies need to be updated to unlock the feature: %s. "
|
|
777
930
|
msgstr ""
|
|
778
931
|
|
|
@@ -782,6 +935,9 @@ msgstr ""
|
|
|
782
935
|
msgid "The identifier of the host"
|
|
783
936
|
msgstr ""
|
|
784
937
|
|
|
938
|
+
msgid "There are significant differences in deployment options."
|
|
939
|
+
msgstr ""
|
|
940
|
+
|
|
785
941
|
msgid "This feature is temporarily disabled. "
|
|
786
942
|
msgstr ""
|
|
787
943
|
|
|
@@ -802,6 +958,12 @@ msgid_plural "Total of %{hosts} hosts"
|
|
|
802
958
|
msgstr[0] ""
|
|
803
959
|
msgstr[1] ""
|
|
804
960
|
|
|
961
|
+
msgid "Type of the upload"
|
|
962
|
+
msgstr ""
|
|
963
|
+
|
|
964
|
+
msgid "URL of the OVAL content file"
|
|
965
|
+
msgstr ""
|
|
966
|
+
|
|
805
967
|
msgid "Unable to get HTML version of requested report from Smart Proxy"
|
|
806
968
|
msgstr ""
|
|
807
969
|
|
|
@@ -814,12 +976,21 @@ msgstr "取消指定合規政策"
|
|
|
814
976
|
msgid "Unknown Compliance status"
|
|
815
977
|
msgstr "未知的合規狀態"
|
|
816
978
|
|
|
979
|
+
msgid "Unknown OVAL status"
|
|
980
|
+
msgstr ""
|
|
981
|
+
|
|
817
982
|
msgid "Update a Policy"
|
|
818
983
|
msgstr ""
|
|
819
984
|
|
|
820
985
|
msgid "Update a Tailoring file"
|
|
821
986
|
msgstr ""
|
|
822
987
|
|
|
988
|
+
msgid "Update an OVAL Policy"
|
|
989
|
+
msgstr ""
|
|
990
|
+
|
|
991
|
+
msgid "Update an OVAL content"
|
|
992
|
+
msgstr ""
|
|
993
|
+
|
|
823
994
|
msgid "Update an SCAP content"
|
|
824
995
|
msgstr "更新 SCAP 內容"
|
|
825
996
|
|
|
@@ -841,24 +1012,39 @@ msgstr ""
|
|
|
841
1012
|
msgid "Upload an ARF report"
|
|
842
1013
|
msgstr "上傳 ARF 報告"
|
|
843
1014
|
|
|
1015
|
+
msgid "Upload an OVAL report - a list of CVEs for given host"
|
|
1016
|
+
msgstr ""
|
|
1017
|
+
|
|
844
1018
|
msgid "Upload new SCAP content file"
|
|
845
1019
|
msgstr "上傳新的 SCAP 內容檔案"
|
|
846
1020
|
|
|
847
1021
|
msgid "Upload new Tailoring File"
|
|
848
1022
|
msgstr ""
|
|
849
1023
|
|
|
1024
|
+
msgid "Upload scap contents in bulk"
|
|
1025
|
+
msgstr ""
|
|
1026
|
+
|
|
850
1027
|
msgid "View Report"
|
|
851
1028
|
msgstr "檢視報告"
|
|
852
1029
|
|
|
853
1030
|
msgid "View full report"
|
|
854
1031
|
msgstr "檢視完整報告"
|
|
855
1032
|
|
|
1033
|
+
msgid "Was %s configured successfully?"
|
|
1034
|
+
msgstr ""
|
|
1035
|
+
|
|
1036
|
+
msgid "Was %{model_name} %{name} configured successfully?"
|
|
1037
|
+
msgstr ""
|
|
1038
|
+
|
|
856
1039
|
msgid "XCCDF Profile"
|
|
857
1040
|
msgstr "XCCDF 設定檔"
|
|
858
1041
|
|
|
859
1042
|
msgid "XCCDF Profile in Tailoring File"
|
|
860
1043
|
msgstr ""
|
|
861
1044
|
|
|
1045
|
+
msgid "XML containing OVAL content"
|
|
1046
|
+
msgstr ""
|
|
1047
|
+
|
|
862
1048
|
msgid "XML containing SCAP content"
|
|
863
1049
|
msgstr ""
|
|
864
1050
|
|
|
@@ -889,6 +1075,15 @@ msgstr ""
|
|
|
889
1075
|
msgid "does not have the selected SCAP content profile"
|
|
890
1076
|
msgstr ""
|
|
891
1077
|
|
|
1078
|
+
msgid "foreman_ansible plugin not found, please install it before running this action again."
|
|
1079
|
+
msgstr ""
|
|
1080
|
+
|
|
1081
|
+
msgid "hostgroups"
|
|
1082
|
+
msgstr ""
|
|
1083
|
+
|
|
1084
|
+
msgid "hosts"
|
|
1085
|
+
msgstr ""
|
|
1086
|
+
|
|
892
1087
|
msgid "invalid type %s"
|
|
893
1088
|
msgstr "無效的類型 %s"
|
|
894
1089
|
|
|
@@ -913,5 +1108,8 @@ msgstr ""
|
|
|
913
1108
|
msgid "must have Openscap feature"
|
|
914
1109
|
msgstr ""
|
|
915
1110
|
|
|
1111
|
+
msgid "theforeman.foreman_scap_client Ansible Role not found, please import it before running this action again."
|
|
1112
|
+
msgstr ""
|
|
1113
|
+
|
|
916
1114
|
msgid "these Compliance reports"
|
|
917
1115
|
msgstr ""
|