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
|
|
@@ -9,8 +9,8 @@ msgid ""
|
|
|
9
9
|
msgstr ""
|
|
10
10
|
"Project-Id-Version: Foreman\n"
|
|
11
11
|
"Report-Msgid-Bugs-To: \n"
|
|
12
|
-
"PO-Revision-Date: 2020-
|
|
13
|
-
"Last-Translator:
|
|
12
|
+
"PO-Revision-Date: 2020-05-12 09:50+0000\n"
|
|
13
|
+
"Last-Translator: Transifex Bot <>\n"
|
|
14
14
|
"Language-Team: Russian (http://www.transifex.com/foreman/foreman/language/ru/)"
|
|
15
15
|
"\n"
|
|
16
16
|
"MIME-Version: 1.0\n"
|
|
@@ -35,9 +35,6 @@ msgid_plural "%s compliance reports by policy"
|
|
|
35
35
|
msgstr[0] ""
|
|
36
36
|
msgstr[1] ""
|
|
37
37
|
|
|
38
|
-
msgid "%s compliance reports by policy"
|
|
39
|
-
msgstr "%s отчетов по политике"
|
|
40
|
-
|
|
41
38
|
msgid "%s latest report"
|
|
42
39
|
msgstr "Последний отчет %s"
|
|
43
40
|
|
|
@@ -47,6 +44,12 @@ msgstr "Распределение отчетов %s по времени"
|
|
|
47
44
|
msgid "%s spool errors detected, inspect the appropriate file directly on proxy"
|
|
48
45
|
msgstr ""
|
|
49
46
|
|
|
47
|
+
msgid "%s vulnerabilities found"
|
|
48
|
+
msgstr ""
|
|
49
|
+
|
|
50
|
+
msgid "%s vulnerabilities with available patch found"
|
|
51
|
+
msgstr ""
|
|
52
|
+
|
|
50
53
|
msgid "%{type} was selected to deploy policy to clients, but %{type} is not available. Are you missing a plugin?"
|
|
51
54
|
msgstr ""
|
|
52
55
|
|
|
@@ -77,9 +80,27 @@ msgstr ""
|
|
|
77
80
|
msgid "Apply policy to hosts"
|
|
78
81
|
msgstr ""
|
|
79
82
|
|
|
83
|
+
msgid "Are required variables for theforeman.foreman_scap_client present?"
|
|
84
|
+
msgstr ""
|
|
85
|
+
|
|
86
|
+
msgid "Array of host IDs"
|
|
87
|
+
msgstr ""
|
|
88
|
+
|
|
89
|
+
msgid "Array of hostgroup IDs"
|
|
90
|
+
msgstr ""
|
|
91
|
+
|
|
80
92
|
msgid "Assign Compliance Policy"
|
|
81
93
|
msgstr "Выбрать политику"
|
|
82
94
|
|
|
95
|
+
msgid "Assign hostgroups to an OVAL Policy"
|
|
96
|
+
msgstr ""
|
|
97
|
+
|
|
98
|
+
msgid "Assign hosts to an OVAL Policy"
|
|
99
|
+
msgstr ""
|
|
100
|
+
|
|
101
|
+
msgid "Assign openscap_proxy to %s before proceeding."
|
|
102
|
+
msgstr ""
|
|
103
|
+
|
|
83
104
|
msgid "Back"
|
|
84
105
|
msgstr "Назад"
|
|
85
106
|
|
|
@@ -122,9 +143,6 @@ msgstr "Выберите день недели"
|
|
|
122
143
|
msgid "Compliance"
|
|
123
144
|
msgstr "Соответствие стандартам"
|
|
124
145
|
|
|
125
|
-
msgid "Compliance Hosts"
|
|
126
|
-
msgstr ""
|
|
127
|
-
|
|
128
146
|
msgid "Compliance Policies"
|
|
129
147
|
msgstr "Политика соответствия нормам безопасности"
|
|
130
148
|
|
|
@@ -152,12 +170,18 @@ msgstr "Соответствует требованиям политики"
|
|
|
152
170
|
msgid "Could not find host identified by: %s"
|
|
153
171
|
msgstr ""
|
|
154
172
|
|
|
173
|
+
msgid "Could not update Ansible Variables with override: true"
|
|
174
|
+
msgstr ""
|
|
175
|
+
|
|
155
176
|
msgid "Could not validate %s. Please make sure you have appropriate proxy version to use this functionality"
|
|
156
177
|
msgstr ""
|
|
157
178
|
|
|
158
179
|
msgid "Could not validate %{file_type}. Error %{error}"
|
|
159
180
|
msgstr ""
|
|
160
181
|
|
|
182
|
+
msgid "Create OVAL content"
|
|
183
|
+
msgstr ""
|
|
184
|
+
|
|
161
185
|
msgid "Create SCAP content"
|
|
162
186
|
msgstr "Создать описание SCAP"
|
|
163
187
|
|
|
@@ -167,6 +191,9 @@ msgstr ""
|
|
|
167
191
|
msgid "Create a Tailoring file"
|
|
168
192
|
msgstr ""
|
|
169
193
|
|
|
194
|
+
msgid "Create an OVAL Policy"
|
|
195
|
+
msgstr ""
|
|
196
|
+
|
|
170
197
|
msgid "Dashboard"
|
|
171
198
|
msgstr "Обзор"
|
|
172
199
|
|
|
@@ -188,6 +215,9 @@ msgstr ""
|
|
|
188
215
|
msgid "Delete an ARF Report"
|
|
189
216
|
msgstr ""
|
|
190
217
|
|
|
218
|
+
msgid "Delete an OVAL Policy"
|
|
219
|
+
msgstr ""
|
|
220
|
+
|
|
191
221
|
msgid "Delete compliance policy %s with all of its reports?"
|
|
192
222
|
msgstr ""
|
|
193
223
|
|
|
@@ -209,6 +239,9 @@ msgstr ""
|
|
|
209
239
|
msgid "Deletes a Tailoring file"
|
|
210
240
|
msgstr ""
|
|
211
241
|
|
|
242
|
+
msgid "Deletes an OVAL content"
|
|
243
|
+
msgstr ""
|
|
244
|
+
|
|
212
245
|
msgid "Deletes an SCAP content"
|
|
213
246
|
msgstr "Удалить описание SCAP"
|
|
214
247
|
|
|
@@ -218,6 +251,12 @@ msgstr ""
|
|
|
218
251
|
msgid "Description"
|
|
219
252
|
msgstr "Описание"
|
|
220
253
|
|
|
254
|
+
msgid "Details for Compliance Policy %s"
|
|
255
|
+
msgstr ""
|
|
256
|
+
|
|
257
|
+
msgid "Directory to upload when using \"directory\" upload type"
|
|
258
|
+
msgstr ""
|
|
259
|
+
|
|
221
260
|
msgid "Documentation"
|
|
222
261
|
msgstr "Справка"
|
|
223
262
|
|
|
@@ -242,18 +281,15 @@ msgstr ""
|
|
|
242
281
|
msgid "Download bzipped ARF report"
|
|
243
282
|
msgstr ""
|
|
244
283
|
|
|
245
|
-
msgid "Edit
|
|
246
|
-
msgstr "Изменить политику"
|
|
247
|
-
|
|
248
|
-
msgid "Edit SCAP Content"
|
|
249
|
-
msgstr "Изменить описание SCAP"
|
|
250
|
-
|
|
251
|
-
msgid "Edit Tailoring File"
|
|
284
|
+
msgid "Edit %s"
|
|
252
285
|
msgstr ""
|
|
253
286
|
|
|
254
287
|
msgid "Effective Profile"
|
|
255
288
|
msgstr ""
|
|
256
289
|
|
|
290
|
+
msgid "Error!"
|
|
291
|
+
msgstr ""
|
|
292
|
+
|
|
257
293
|
msgid "Failed"
|
|
258
294
|
msgstr "Неудачно"
|
|
259
295
|
|
|
@@ -291,12 +327,18 @@ msgstr "Н"
|
|
|
291
327
|
msgid "File Upload"
|
|
292
328
|
msgstr "Добавить файл"
|
|
293
329
|
|
|
330
|
+
msgid "File paths to upload when using \"files\" upload type"
|
|
331
|
+
msgstr ""
|
|
332
|
+
|
|
294
333
|
msgid "Full Report"
|
|
295
334
|
msgstr ""
|
|
296
335
|
|
|
297
336
|
msgid "General"
|
|
298
337
|
msgstr "Общие"
|
|
299
338
|
|
|
339
|
+
msgid "Has Errata?"
|
|
340
|
+
msgstr ""
|
|
341
|
+
|
|
300
342
|
msgid "Host"
|
|
301
343
|
msgstr "Узел"
|
|
302
344
|
|
|
@@ -333,6 +375,9 @@ msgstr "Имя узла"
|
|
|
333
375
|
msgid "Hosts Breakdown"
|
|
334
376
|
msgstr "Распределение по узлам"
|
|
335
377
|
|
|
378
|
+
msgid "Hosts Count"
|
|
379
|
+
msgstr ""
|
|
380
|
+
|
|
336
381
|
msgid "Hosts failing this rule"
|
|
337
382
|
msgstr ""
|
|
338
383
|
|
|
@@ -382,6 +427,15 @@ msgstr "Неопределенный результат"
|
|
|
382
427
|
msgid "Inconclusive results"
|
|
383
428
|
msgstr "Неопределенные результаты"
|
|
384
429
|
|
|
430
|
+
msgid "Is %s param set to be overriden?"
|
|
431
|
+
msgstr ""
|
|
432
|
+
|
|
433
|
+
msgid "Is foreman_ansible present?"
|
|
434
|
+
msgstr ""
|
|
435
|
+
|
|
436
|
+
msgid "Is theforeman.foreman_scap_client present?"
|
|
437
|
+
msgstr ""
|
|
438
|
+
|
|
385
439
|
msgid "It may sometimes be required to adjust the security policy to your specific needs. "
|
|
386
440
|
msgstr ""
|
|
387
441
|
|
|
@@ -394,6 +448,12 @@ msgstr "Последние отчеты для %s"
|
|
|
394
448
|
msgid "List ARF reports"
|
|
395
449
|
msgstr ""
|
|
396
450
|
|
|
451
|
+
msgid "List OVAL Policies"
|
|
452
|
+
msgstr ""
|
|
453
|
+
|
|
454
|
+
msgid "List OVAL contents"
|
|
455
|
+
msgstr ""
|
|
456
|
+
|
|
397
457
|
msgid "List Policies"
|
|
398
458
|
msgstr ""
|
|
399
459
|
|
|
@@ -418,6 +478,9 @@ msgstr "Сообщение"
|
|
|
418
478
|
msgid "More details"
|
|
419
479
|
msgstr "Подробности"
|
|
420
480
|
|
|
481
|
+
msgid "Name"
|
|
482
|
+
msgstr ""
|
|
483
|
+
|
|
421
484
|
msgid "Never audited"
|
|
422
485
|
msgstr "Никогда не проверялись"
|
|
423
486
|
|
|
@@ -442,6 +505,18 @@ msgstr "Нет"
|
|
|
442
505
|
msgid "No ARF reports for this policy"
|
|
443
506
|
msgstr "Нет отчетов ARF для этой политики"
|
|
444
507
|
|
|
508
|
+
msgid "No CVEs found."
|
|
509
|
+
msgstr ""
|
|
510
|
+
|
|
511
|
+
msgid "No OVAL Contents found."
|
|
512
|
+
msgstr ""
|
|
513
|
+
|
|
514
|
+
msgid "No OVAL Policies found"
|
|
515
|
+
msgstr ""
|
|
516
|
+
|
|
517
|
+
msgid "No OVAL Policy found"
|
|
518
|
+
msgstr ""
|
|
519
|
+
|
|
445
520
|
msgid "No OpenSCAP Proxy selected."
|
|
446
521
|
msgstr ""
|
|
447
522
|
|
|
@@ -451,6 +526,9 @@ msgstr ""
|
|
|
451
526
|
msgid "No Tailoring file assigned for policy with id %s"
|
|
452
527
|
msgstr ""
|
|
453
528
|
|
|
529
|
+
msgid "No Vulnerabilities found"
|
|
530
|
+
msgstr ""
|
|
531
|
+
|
|
454
532
|
msgid "No available proxy to validate. Returned with error: %s"
|
|
455
533
|
msgstr "Нет доступных прокси для проведения проверки. Ошибка: %s"
|
|
456
534
|
|
|
@@ -514,6 +592,48 @@ msgstr "Количество событий"
|
|
|
514
592
|
msgid "Number of a day in month, note that not all months have same count of days"
|
|
515
593
|
msgstr "Порядковый номер дня в месяце (количество дней в разных месяцах может отличаться)"
|
|
516
594
|
|
|
595
|
+
msgid "OVAL Content"
|
|
596
|
+
msgstr ""
|
|
597
|
+
|
|
598
|
+
msgid "OVAL Contents"
|
|
599
|
+
msgstr ""
|
|
600
|
+
|
|
601
|
+
msgid "OVAL Contents table"
|
|
602
|
+
msgstr ""
|
|
603
|
+
|
|
604
|
+
msgid "OVAL Policies"
|
|
605
|
+
msgstr ""
|
|
606
|
+
|
|
607
|
+
msgid "OVAL Policies Table"
|
|
608
|
+
msgstr ""
|
|
609
|
+
|
|
610
|
+
msgid "OVAL Policy description"
|
|
611
|
+
msgstr ""
|
|
612
|
+
|
|
613
|
+
msgid "OVAL Policy name"
|
|
614
|
+
msgstr ""
|
|
615
|
+
|
|
616
|
+
msgid "OVAL Policy schedule cron line (only if period == \"custom\")"
|
|
617
|
+
msgstr ""
|
|
618
|
+
|
|
619
|
+
msgid "OVAL Policy schedule day of month (only if period == \"monthly\")"
|
|
620
|
+
msgstr ""
|
|
621
|
+
|
|
622
|
+
msgid "OVAL Policy schedule period (weekly, monthly, custom)"
|
|
623
|
+
msgstr ""
|
|
624
|
+
|
|
625
|
+
msgid "OVAL Policy schedule weekday (only if period == \"weekly\")"
|
|
626
|
+
msgstr ""
|
|
627
|
+
|
|
628
|
+
msgid "OVAL content name"
|
|
629
|
+
msgstr ""
|
|
630
|
+
|
|
631
|
+
msgid "OVAL policy successfully configured with %s."
|
|
632
|
+
msgstr ""
|
|
633
|
+
|
|
634
|
+
msgid "OVAL scan"
|
|
635
|
+
msgstr ""
|
|
636
|
+
|
|
517
637
|
msgid "Once SCAP content is present, you can create a policy, assign select host groups and schedule to run."
|
|
518
638
|
msgstr ""
|
|
519
639
|
|
|
@@ -529,6 +649,9 @@ msgstr ""
|
|
|
529
649
|
msgid "Organizations"
|
|
530
650
|
msgstr "Организации"
|
|
531
651
|
|
|
652
|
+
msgid "Original file name of the OVAL content file"
|
|
653
|
+
msgstr ""
|
|
654
|
+
|
|
532
655
|
msgid "Original file name of the XML file"
|
|
533
656
|
msgstr ""
|
|
534
657
|
|
|
@@ -552,6 +675,12 @@ msgstr "У"
|
|
|
552
675
|
msgid "Please Confirm"
|
|
553
676
|
msgstr "Подтвердите"
|
|
554
677
|
|
|
678
|
+
msgid "Please make sure you understand them by reading our"
|
|
679
|
+
msgstr ""
|
|
680
|
+
|
|
681
|
+
msgid "Please specify import type, received: %{received}, expected one of: %{expected}"
|
|
682
|
+
msgstr ""
|
|
683
|
+
|
|
555
684
|
msgid "Policies"
|
|
556
685
|
msgstr "Политика"
|
|
557
686
|
|
|
@@ -567,6 +696,9 @@ msgstr "Политика %s"
|
|
|
567
696
|
msgid "Policy Attributes"
|
|
568
697
|
msgstr ""
|
|
569
698
|
|
|
699
|
+
msgid "Policy OVAL content ID"
|
|
700
|
+
msgstr ""
|
|
701
|
+
|
|
570
702
|
msgid "Policy SCAP content ID"
|
|
571
703
|
msgstr ""
|
|
572
704
|
|
|
@@ -609,6 +741,9 @@ msgstr "Класс Puppet"
|
|
|
609
741
|
msgid "Rationale"
|
|
610
742
|
msgstr "Обоснование"
|
|
611
743
|
|
|
744
|
+
msgid "Ref Id"
|
|
745
|
+
msgstr ""
|
|
746
|
+
|
|
612
747
|
msgid "References"
|
|
613
748
|
msgstr "Ссылки"
|
|
614
749
|
|
|
@@ -645,6 +780,9 @@ msgstr "Результат"
|
|
|
645
780
|
msgid "Rule Results"
|
|
646
781
|
msgstr ""
|
|
647
782
|
|
|
783
|
+
msgid "Run OVAL scan"
|
|
784
|
+
msgstr ""
|
|
785
|
+
|
|
648
786
|
msgid "Run OpenSCAP scan"
|
|
649
787
|
msgstr ""
|
|
650
788
|
|
|
@@ -669,7 +807,7 @@ msgstr "Описание SCAP"
|
|
|
669
807
|
msgid "SCAP policies summary"
|
|
670
808
|
msgstr ""
|
|
671
809
|
|
|
672
|
-
msgid "
|
|
810
|
+
msgid "Scan All Hostgroups"
|
|
673
811
|
msgstr ""
|
|
674
812
|
|
|
675
813
|
msgid "Schedule"
|
|
@@ -708,6 +846,12 @@ msgstr ""
|
|
|
708
846
|
msgid "Show an ARF report"
|
|
709
847
|
msgstr ""
|
|
710
848
|
|
|
849
|
+
msgid "Show an OVAL Policy"
|
|
850
|
+
msgstr ""
|
|
851
|
+
|
|
852
|
+
msgid "Show an OVAL content"
|
|
853
|
+
msgstr ""
|
|
854
|
+
|
|
711
855
|
msgid "Show an SCAP content"
|
|
712
856
|
msgstr "Показать описание SCAP"
|
|
713
857
|
|
|
@@ -753,6 +897,12 @@ msgstr ""
|
|
|
753
897
|
msgid "Summary report from Foreman server at %{foreman_url}"
|
|
754
898
|
msgstr "Сводный отчет с сервера Foreman: %{foreman_url}"
|
|
755
899
|
|
|
900
|
+
msgid "Sync contents that have remote source URL"
|
|
901
|
+
msgstr ""
|
|
902
|
+
|
|
903
|
+
msgid "Table of CVEs for OVAL policy"
|
|
904
|
+
msgstr ""
|
|
905
|
+
|
|
756
906
|
msgid "Tailoring File"
|
|
757
907
|
msgstr ""
|
|
758
908
|
|
|
@@ -776,6 +926,9 @@ msgstr ""
|
|
|
776
926
|
msgid "The following %{key_name} were missing for %{item_name}: %{key_names}. Make sure they are imported before proceeding."
|
|
777
927
|
msgstr ""
|
|
778
928
|
|
|
929
|
+
msgid "The following Ansible Variables were not found: %{missing_vars}, please import them before running this action again."
|
|
930
|
+
msgstr ""
|
|
931
|
+
|
|
779
932
|
msgid "The following Smart Proxies need to be updated to unlock the feature: %s. "
|
|
780
933
|
msgstr ""
|
|
781
934
|
|
|
@@ -785,6 +938,9 @@ msgstr ""
|
|
|
785
938
|
msgid "The identifier of the host"
|
|
786
939
|
msgstr ""
|
|
787
940
|
|
|
941
|
+
msgid "There are significant differences in deployment options."
|
|
942
|
+
msgstr ""
|
|
943
|
+
|
|
788
944
|
msgid "This feature is temporarily disabled. "
|
|
789
945
|
msgstr ""
|
|
790
946
|
|
|
@@ -805,6 +961,12 @@ msgid_plural "Total of %{hosts} hosts"
|
|
|
805
961
|
msgstr[0] ""
|
|
806
962
|
msgstr[1] ""
|
|
807
963
|
|
|
964
|
+
msgid "Type of the upload"
|
|
965
|
+
msgstr ""
|
|
966
|
+
|
|
967
|
+
msgid "URL of the OVAL content file"
|
|
968
|
+
msgstr ""
|
|
969
|
+
|
|
808
970
|
msgid "Unable to get HTML version of requested report from Smart Proxy"
|
|
809
971
|
msgstr ""
|
|
810
972
|
|
|
@@ -817,12 +979,21 @@ msgstr "Отменить политику"
|
|
|
817
979
|
msgid "Unknown Compliance status"
|
|
818
980
|
msgstr "Неизвестный статус"
|
|
819
981
|
|
|
982
|
+
msgid "Unknown OVAL status"
|
|
983
|
+
msgstr ""
|
|
984
|
+
|
|
820
985
|
msgid "Update a Policy"
|
|
821
986
|
msgstr ""
|
|
822
987
|
|
|
823
988
|
msgid "Update a Tailoring file"
|
|
824
989
|
msgstr ""
|
|
825
990
|
|
|
991
|
+
msgid "Update an OVAL Policy"
|
|
992
|
+
msgstr ""
|
|
993
|
+
|
|
994
|
+
msgid "Update an OVAL content"
|
|
995
|
+
msgstr ""
|
|
996
|
+
|
|
826
997
|
msgid "Update an SCAP content"
|
|
827
998
|
msgstr "Обновить описание SCAP"
|
|
828
999
|
|
|
@@ -844,24 +1015,39 @@ msgstr ""
|
|
|
844
1015
|
msgid "Upload an ARF report"
|
|
845
1016
|
msgstr "Выгрузить отчет ARF"
|
|
846
1017
|
|
|
1018
|
+
msgid "Upload an OVAL report - a list of CVEs for given host"
|
|
1019
|
+
msgstr ""
|
|
1020
|
+
|
|
847
1021
|
msgid "Upload new SCAP content file"
|
|
848
1022
|
msgstr "Добавление файла описания SCAP"
|
|
849
1023
|
|
|
850
1024
|
msgid "Upload new Tailoring File"
|
|
851
1025
|
msgstr ""
|
|
852
1026
|
|
|
1027
|
+
msgid "Upload scap contents in bulk"
|
|
1028
|
+
msgstr ""
|
|
1029
|
+
|
|
853
1030
|
msgid "View Report"
|
|
854
1031
|
msgstr "Показать отчет"
|
|
855
1032
|
|
|
856
1033
|
msgid "View full report"
|
|
857
1034
|
msgstr "Показать полный отчет"
|
|
858
1035
|
|
|
1036
|
+
msgid "Was %s configured successfully?"
|
|
1037
|
+
msgstr ""
|
|
1038
|
+
|
|
1039
|
+
msgid "Was %{model_name} %{name} configured successfully?"
|
|
1040
|
+
msgstr ""
|
|
1041
|
+
|
|
859
1042
|
msgid "XCCDF Profile"
|
|
860
1043
|
msgstr "Профиль XCCDF"
|
|
861
1044
|
|
|
862
1045
|
msgid "XCCDF Profile in Tailoring File"
|
|
863
1046
|
msgstr ""
|
|
864
1047
|
|
|
1048
|
+
msgid "XML containing OVAL content"
|
|
1049
|
+
msgstr ""
|
|
1050
|
+
|
|
865
1051
|
msgid "XML containing SCAP content"
|
|
866
1052
|
msgstr ""
|
|
867
1053
|
|
|
@@ -892,6 +1078,15 @@ msgstr ""
|
|
|
892
1078
|
msgid "does not have the selected SCAP content profile"
|
|
893
1079
|
msgstr ""
|
|
894
1080
|
|
|
1081
|
+
msgid "foreman_ansible plugin not found, please install it before running this action again."
|
|
1082
|
+
msgstr ""
|
|
1083
|
+
|
|
1084
|
+
msgid "hostgroups"
|
|
1085
|
+
msgstr ""
|
|
1086
|
+
|
|
1087
|
+
msgid "hosts"
|
|
1088
|
+
msgstr ""
|
|
1089
|
+
|
|
895
1090
|
msgid "invalid type %s"
|
|
896
1091
|
msgstr "недопустимый тип %s"
|
|
897
1092
|
|
|
@@ -916,5 +1111,8 @@ msgstr ""
|
|
|
916
1111
|
msgid "must have Openscap feature"
|
|
917
1112
|
msgstr ""
|
|
918
1113
|
|
|
1114
|
+
msgid "theforeman.foreman_scap_client Ansible Role not found, please import it before running this action again."
|
|
1115
|
+
msgstr ""
|
|
1116
|
+
|
|
919
1117
|
msgid "these Compliance reports"
|
|
920
1118
|
msgstr ""
|