foreman_openscap 7.1.1 → 8.0.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/assets/javascripts/foreman_openscap/locale/cs_CZ/foreman_openscap.js +517 -421
- data/app/assets/javascripts/foreman_openscap/locale/de/foreman_openscap.js +907 -814
- data/app/assets/javascripts/foreman_openscap/locale/en/foreman_openscap.js +517 -421
- data/app/assets/javascripts/foreman_openscap/locale/en_GB/foreman_openscap.js +549 -453
- data/app/assets/javascripts/foreman_openscap/locale/es/foreman_openscap.js +911 -818
- data/app/assets/javascripts/foreman_openscap/locale/fr/foreman_openscap.js +911 -818
- data/app/assets/javascripts/foreman_openscap/locale/gl/foreman_openscap.js +556 -460
- data/app/assets/javascripts/foreman_openscap/locale/it/foreman_openscap.js +601 -505
- data/app/assets/javascripts/foreman_openscap/locale/ja/foreman_openscap.js +909 -816
- data/app/assets/javascripts/foreman_openscap/locale/ka/foreman_openscap.js +96 -0
- data/app/assets/javascripts/foreman_openscap/locale/ko/foreman_openscap.js +704 -611
- data/app/assets/javascripts/foreman_openscap/locale/pt_BR/foreman_openscap.js +911 -818
- data/app/assets/javascripts/foreman_openscap/locale/ru/foreman_openscap.js +706 -613
- data/app/assets/javascripts/foreman_openscap/locale/sv_SE/foreman_openscap.js +556 -460
- data/app/assets/javascripts/foreman_openscap/locale/zh_CN/foreman_openscap.js +909 -816
- data/app/assets/javascripts/foreman_openscap/locale/zh_TW/foreman_openscap.js +704 -611
- data/app/assets/javascripts/foreman_openscap/reports.js +5 -0
- data/app/controllers/arf_reports_controller.rb +23 -2
- data/app/helpers/arf_reports_helper.rb +17 -4
- data/app/models/foreman_openscap/arf_report.rb +11 -2
- data/app/views/arf_reports/_output.html.erb +5 -1
- data/app/views/job_templates/run_openscap_remediation_-_ansible_default.erb +27 -0
- data/app/views/job_templates/run_openscap_remediation_-_script_default.erb +24 -0
- data/config/routes.rb +1 -0
- data/db/migrate/20230912122310_add_fixes_to_message.rb +5 -0
- data/lib/foreman_openscap/engine.rb +18 -2
- data/lib/foreman_openscap/version.rb +1 -1
- data/lib/tasks/foreman_openscap_tasks.rake +5 -16
- data/locale/cs_CZ/foreman_openscap.edit.po +145 -17
- data/locale/cs_CZ/foreman_openscap.po +96 -0
- data/locale/de/foreman_openscap.edit.po +248 -282
- data/locale/de/foreman_openscap.po +96 -0
- data/locale/en/foreman_openscap.edit.po +145 -17
- data/locale/en/foreman_openscap.po +96 -0
- data/locale/en_GB/foreman_openscap.edit.po +145 -17
- data/locale/en_GB/foreman_openscap.po +96 -0
- data/locale/es/foreman_openscap.edit.po +241 -279
- data/locale/es/foreman_openscap.po +96 -0
- data/locale/foreman_openscap.pot +164 -12
- data/locale/fr/foreman_openscap.edit.po +330 -363
- data/locale/fr/foreman_openscap.po +96 -0
- data/locale/gl/foreman_openscap.edit.po +145 -17
- data/locale/gl/foreman_openscap.po +96 -0
- data/locale/it/foreman_openscap.edit.po +145 -17
- data/locale/it/foreman_openscap.po +96 -0
- data/locale/ja/foreman_openscap.edit.po +314 -347
- data/locale/ja/foreman_openscap.po +96 -0
- data/locale/ka/foreman_openscap.edit.po +289 -328
- data/locale/ka/foreman_openscap.po +96 -0
- data/locale/ka/foreman_openscap.po.time_stamp +0 -0
- data/locale/ko/foreman_openscap.edit.po +146 -18
- data/locale/ko/foreman_openscap.po +96 -0
- data/locale/pt_BR/foreman_openscap.edit.po +247 -279
- data/locale/pt_BR/foreman_openscap.po +96 -0
- data/locale/ru/foreman_openscap.edit.po +146 -18
- data/locale/ru/foreman_openscap.po +96 -0
- data/locale/sv_SE/foreman_openscap.edit.po +145 -17
- data/locale/sv_SE/foreman_openscap.po +96 -0
- data/locale/zh_CN/foreman_openscap.edit.po +314 -347
- data/locale/zh_CN/foreman_openscap.po +96 -0
- data/locale/zh_TW/foreman_openscap.edit.po +146 -18
- data/locale/zh_TW/foreman_openscap.po +96 -0
- data/webpack/components/EmptyState.js +6 -2
- data/webpack/components/OpenscapRemediationWizard/OpenscapRemediationSelectors.js +16 -0
- data/webpack/components/OpenscapRemediationWizard/OpenscapRemediationWizardContext.js +4 -0
- data/webpack/components/OpenscapRemediationWizard/ViewSelectedHostsLink.js +38 -0
- data/webpack/components/OpenscapRemediationWizard/WizardHeader.js +43 -0
- data/webpack/components/OpenscapRemediationWizard/constants.js +14 -0
- data/webpack/components/OpenscapRemediationWizard/helpers.js +33 -0
- data/webpack/components/OpenscapRemediationWizard/index.js +160 -0
- data/webpack/components/OpenscapRemediationWizard/steps/Finish.js +131 -0
- data/webpack/components/OpenscapRemediationWizard/steps/ReviewHosts.js +217 -0
- data/webpack/components/OpenscapRemediationWizard/steps/ReviewRemediation.js +176 -0
- data/webpack/components/OpenscapRemediationWizard/steps/ReviewRemediation.scss +4 -0
- data/webpack/components/OpenscapRemediationWizard/steps/SnippetSelect.js +160 -0
- data/webpack/components/OpenscapRemediationWizard/steps/index.js +4 -0
- data/webpack/index.js +8 -3
- data/webpack/testHelper.js +6 -5
- metadata +20 -3
|
@@ -61,6 +61,12 @@ msgstr ""
|
|
|
61
61
|
msgid "<b>Foreman</b> OpenSCAP summary"
|
|
62
62
|
msgstr ""
|
|
63
63
|
|
|
64
|
+
msgid "A reboot is required after applying remediation."
|
|
65
|
+
msgstr ""
|
|
66
|
+
|
|
67
|
+
msgid "A reboot might be required after applying remediation."
|
|
68
|
+
msgstr ""
|
|
69
|
+
|
|
64
70
|
msgid "A summary of reports for OpenSCAP policies"
|
|
65
71
|
msgstr ""
|
|
66
72
|
|
|
@@ -112,6 +118,9 @@ msgstr ""
|
|
|
112
118
|
msgid "Back"
|
|
113
119
|
msgstr "Atrás"
|
|
114
120
|
|
|
121
|
+
msgid "By default, remediation is applied to the current host. Optionally, remediate any additional hosts that fail the rule."
|
|
122
|
+
msgstr ""
|
|
123
|
+
|
|
115
124
|
msgid "CVEs"
|
|
116
125
|
msgstr ""
|
|
117
126
|
|
|
@@ -157,6 +166,9 @@ msgstr ""
|
|
|
157
166
|
msgid "Choose weekday"
|
|
158
167
|
msgstr ""
|
|
159
168
|
|
|
169
|
+
msgid "Close"
|
|
170
|
+
msgstr ""
|
|
171
|
+
|
|
160
172
|
msgid "Compliance"
|
|
161
173
|
msgstr ""
|
|
162
174
|
|
|
@@ -190,6 +202,9 @@ msgstr ""
|
|
|
190
202
|
msgid "Content"
|
|
191
203
|
msgstr ""
|
|
192
204
|
|
|
205
|
+
msgid "Copy to clipboard"
|
|
206
|
+
msgstr ""
|
|
207
|
+
|
|
193
208
|
msgid "Could not find host identified by: %s"
|
|
194
209
|
msgstr ""
|
|
195
210
|
|
|
@@ -301,9 +316,15 @@ msgstr ""
|
|
|
301
316
|
msgid "Directory to upload when using \"directory\" upload type"
|
|
302
317
|
msgstr ""
|
|
303
318
|
|
|
319
|
+
msgid "Do not implement any of the recommended remedial actions or scripts without first testing them in a non-production environment."
|
|
320
|
+
msgstr ""
|
|
321
|
+
|
|
304
322
|
msgid "Documentation"
|
|
305
323
|
msgstr "Documentación"
|
|
306
324
|
|
|
325
|
+
msgid "Done"
|
|
326
|
+
msgstr ""
|
|
327
|
+
|
|
307
328
|
msgid "Download"
|
|
308
329
|
msgstr ""
|
|
309
330
|
|
|
@@ -504,6 +525,9 @@ msgstr ""
|
|
|
504
525
|
msgid "It may sometimes be required to adjust the security policy to your specific needs. "
|
|
505
526
|
msgstr ""
|
|
506
527
|
|
|
528
|
+
msgid "Job details"
|
|
529
|
+
msgstr ""
|
|
530
|
+
|
|
507
531
|
msgid "Latest Compliance Reports"
|
|
508
532
|
msgstr ""
|
|
509
533
|
|
|
@@ -537,9 +561,15 @@ msgstr ""
|
|
|
537
561
|
msgid "Locations"
|
|
538
562
|
msgstr "Lugares"
|
|
539
563
|
|
|
564
|
+
msgid "Manual"
|
|
565
|
+
msgstr ""
|
|
566
|
+
|
|
540
567
|
msgid "Message"
|
|
541
568
|
msgstr "Mensaxe"
|
|
542
569
|
|
|
570
|
+
msgid "Method"
|
|
571
|
+
msgstr ""
|
|
572
|
+
|
|
543
573
|
msgid "Monthly, day of month: %s"
|
|
544
574
|
msgstr ""
|
|
545
575
|
|
|
@@ -675,6 +705,9 @@ msgstr "Número de Eventos"
|
|
|
675
705
|
msgid "Number of a day in month, note that not all months have same count of days"
|
|
676
706
|
msgstr ""
|
|
677
707
|
|
|
708
|
+
msgid "OS"
|
|
709
|
+
msgstr ""
|
|
710
|
+
|
|
678
711
|
msgid "OVAL Content"
|
|
679
712
|
msgstr ""
|
|
680
713
|
|
|
@@ -774,6 +807,9 @@ msgstr ""
|
|
|
774
807
|
msgid "Other"
|
|
775
808
|
msgstr ""
|
|
776
809
|
|
|
810
|
+
msgid "Other hosts failing this rule"
|
|
811
|
+
msgstr ""
|
|
812
|
+
|
|
777
813
|
msgid "Othered"
|
|
778
814
|
msgstr ""
|
|
779
815
|
|
|
@@ -866,6 +902,9 @@ msgstr "Clase Puppet"
|
|
|
866
902
|
msgid "Rationale"
|
|
867
903
|
msgstr ""
|
|
868
904
|
|
|
905
|
+
msgid "Reboot the system(s)"
|
|
906
|
+
msgstr ""
|
|
907
|
+
|
|
869
908
|
msgid "Red Hat %s default content"
|
|
870
909
|
msgstr ""
|
|
871
910
|
|
|
@@ -875,9 +914,21 @@ msgstr ""
|
|
|
875
914
|
msgid "References"
|
|
876
915
|
msgstr ""
|
|
877
916
|
|
|
917
|
+
msgid "Remediate %s rule"
|
|
918
|
+
msgstr ""
|
|
919
|
+
|
|
920
|
+
msgid "Remediation"
|
|
921
|
+
msgstr ""
|
|
922
|
+
|
|
923
|
+
msgid "Remediation might render the system non-functional."
|
|
924
|
+
msgstr ""
|
|
925
|
+
|
|
878
926
|
msgid "Remote action:"
|
|
879
927
|
msgstr ""
|
|
880
928
|
|
|
929
|
+
msgid "Remote job"
|
|
930
|
+
msgstr ""
|
|
931
|
+
|
|
881
932
|
msgid "Report Metrics"
|
|
882
933
|
msgstr "Métricas de Informe"
|
|
883
934
|
|
|
@@ -914,12 +965,33 @@ msgstr "Recurso"
|
|
|
914
965
|
msgid "Result"
|
|
915
966
|
msgstr ""
|
|
916
967
|
|
|
968
|
+
msgid "Review hosts"
|
|
969
|
+
msgstr ""
|
|
970
|
+
|
|
971
|
+
msgid "Review remediation"
|
|
972
|
+
msgstr ""
|
|
973
|
+
|
|
974
|
+
msgid "Review the remediation snippet and apply it to the host manually."
|
|
975
|
+
msgstr ""
|
|
976
|
+
|
|
977
|
+
msgid "Review the remediation snippet that will be applied to selected host(s)."
|
|
978
|
+
msgstr ""
|
|
979
|
+
|
|
917
980
|
msgid "Rule Results"
|
|
918
981
|
msgstr ""
|
|
919
982
|
|
|
983
|
+
msgid "Run"
|
|
984
|
+
msgstr ""
|
|
985
|
+
|
|
920
986
|
msgid "Run OVAL scan"
|
|
921
987
|
msgstr ""
|
|
922
988
|
|
|
989
|
+
msgid "Run OpenSCAP remediation with Ansible"
|
|
990
|
+
msgstr ""
|
|
991
|
+
|
|
992
|
+
msgid "Run OpenSCAP remediation with Shell"
|
|
993
|
+
msgstr ""
|
|
994
|
+
|
|
923
995
|
msgid "Run OpenSCAP scan"
|
|
924
996
|
msgstr ""
|
|
925
997
|
|
|
@@ -962,6 +1034,12 @@ msgstr ""
|
|
|
962
1034
|
msgid "Select all items in this page"
|
|
963
1035
|
msgstr "Seleccionar tódolos obxetos desta páxina"
|
|
964
1036
|
|
|
1037
|
+
msgid "Select remediation method"
|
|
1038
|
+
msgstr ""
|
|
1039
|
+
|
|
1040
|
+
msgid "Select snippet"
|
|
1041
|
+
msgstr ""
|
|
1042
|
+
|
|
965
1043
|
msgid "Severity"
|
|
966
1044
|
msgstr ""
|
|
967
1045
|
|
|
@@ -1004,6 +1082,9 @@ msgstr "Mostrar rexistro de mensaxes:"
|
|
|
1004
1082
|
msgid "Smart Class Parameters"
|
|
1005
1083
|
msgstr ""
|
|
1006
1084
|
|
|
1085
|
+
msgid "Snippet"
|
|
1086
|
+
msgstr ""
|
|
1087
|
+
|
|
1007
1088
|
msgid "Something went wrong while selecting compliance reports - %s"
|
|
1008
1089
|
msgstr ""
|
|
1009
1090
|
|
|
@@ -1022,6 +1103,9 @@ msgstr ""
|
|
|
1022
1103
|
msgid "Submit"
|
|
1023
1104
|
msgstr "Introducir"
|
|
1024
1105
|
|
|
1106
|
+
msgid "Successfully copied to clipboard!"
|
|
1107
|
+
msgstr ""
|
|
1108
|
+
|
|
1025
1109
|
msgid "Successfully deleted %s compliance reports"
|
|
1026
1110
|
msgstr ""
|
|
1027
1111
|
|
|
@@ -1084,9 +1168,15 @@ msgstr ""
|
|
|
1084
1168
|
msgid "The identifier of the host"
|
|
1085
1169
|
msgstr ""
|
|
1086
1170
|
|
|
1171
|
+
msgid "The job has started on selected host(s), you can check the status on the job details page."
|
|
1172
|
+
msgstr ""
|
|
1173
|
+
|
|
1087
1174
|
msgid "There are significant differences in deployment options."
|
|
1088
1175
|
msgstr ""
|
|
1089
1176
|
|
|
1177
|
+
msgid "There is no job to remediate with. Please remediate manually."
|
|
1178
|
+
msgstr ""
|
|
1179
|
+
|
|
1090
1180
|
msgid "There was a following error when deleting %(name)s: %(error)s"
|
|
1091
1181
|
msgstr ""
|
|
1092
1182
|
|
|
@@ -1209,6 +1299,9 @@ msgstr ""
|
|
|
1209
1299
|
msgid "View full report"
|
|
1210
1300
|
msgstr ""
|
|
1211
1301
|
|
|
1302
|
+
msgid "View selected hosts"
|
|
1303
|
+
msgstr ""
|
|
1304
|
+
|
|
1212
1305
|
msgid "Was %s configured successfully?"
|
|
1213
1306
|
msgstr ""
|
|
1214
1307
|
|
|
@@ -1239,6 +1332,9 @@ msgstr ""
|
|
|
1239
1332
|
msgid "You are not authorized to view the page. "
|
|
1240
1333
|
msgstr ""
|
|
1241
1334
|
|
|
1335
|
+
msgid "You can remediate by running a remote job or you can display a snippet for manual remediation."
|
|
1336
|
+
msgstr ""
|
|
1337
|
+
|
|
1242
1338
|
msgid "You can specify custom cron line, e.g. \"0 3 * * *\", separate each of 5 values by space"
|
|
1243
1339
|
msgstr ""
|
|
1244
1340
|
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
# FIRST AUTHOR <EMAIL@ADDRESS>, 2016
|
|
7
7
|
msgid ""
|
|
8
8
|
msgstr ""
|
|
9
|
-
"Project-Id-Version:
|
|
9
|
+
"Project-Id-Version: Foreman\n"
|
|
10
10
|
"Report-Msgid-Bugs-To: \n"
|
|
11
11
|
"PO-Revision-Date: 2016-04-14 07:48+0000\n"
|
|
12
12
|
"Last-Translator: FIRST AUTHOR <EMAIL@ADDRESS>, 2016\n"
|
|
@@ -383,15 +383,15 @@ msgstr ""
|
|
|
383
383
|
msgid "Successfully deleted %s compliance reports"
|
|
384
384
|
msgstr ""
|
|
385
385
|
|
|
386
|
-
#: ../app/controllers/arf_reports_controller.rb:
|
|
386
|
+
#: ../app/controllers/arf_reports_controller.rb:106
|
|
387
387
|
msgid "No compliance reports were found."
|
|
388
388
|
msgstr ""
|
|
389
389
|
|
|
390
|
-
#: ../app/controllers/arf_reports_controller.rb:
|
|
390
|
+
#: ../app/controllers/arf_reports_controller.rb:110
|
|
391
391
|
msgid "No compliance reports selected"
|
|
392
392
|
msgstr ""
|
|
393
393
|
|
|
394
|
-
#: ../app/controllers/arf_reports_controller.rb:
|
|
394
|
+
#: ../app/controllers/arf_reports_controller.rb:115
|
|
395
395
|
msgid "Something went wrong while selecting compliance reports - %s"
|
|
396
396
|
msgstr ""
|
|
397
397
|
|
|
@@ -431,15 +431,15 @@ msgstr ""
|
|
|
431
431
|
msgid "No valid policy ID provided"
|
|
432
432
|
msgstr ""
|
|
433
433
|
|
|
434
|
-
#: ../app/controllers/policies_controller.rb:
|
|
435
|
-
msgid "No hosts were found
|
|
434
|
+
#: ../app/controllers/policies_controller.rb:129
|
|
435
|
+
msgid "No hosts were found with that id, name or query filter"
|
|
436
436
|
msgstr ""
|
|
437
437
|
|
|
438
|
-
#: ../app/controllers/policies_controller.rb:
|
|
438
|
+
#: ../app/controllers/policies_controller.rb:134
|
|
439
439
|
msgid "No hosts selected"
|
|
440
440
|
msgstr "Nessun host selezionato"
|
|
441
441
|
|
|
442
|
-
#: ../app/controllers/policies_controller.rb:
|
|
442
|
+
#: ../app/controllers/policies_controller.rb:139
|
|
443
443
|
msgid "Something went wrong while selecting hosts - %s"
|
|
444
444
|
msgstr "Si è verificato un errore durante la selezione degli host - %s"
|
|
445
445
|
|
|
@@ -511,18 +511,22 @@ msgstr ""
|
|
|
511
511
|
msgid " through %s"
|
|
512
512
|
msgstr ""
|
|
513
513
|
|
|
514
|
-
#: ../app/helpers/arf_reports_helper.rb:
|
|
514
|
+
#: ../app/helpers/arf_reports_helper.rb:67
|
|
515
515
|
msgid "Hosts failing this rule"
|
|
516
516
|
msgstr ""
|
|
517
517
|
|
|
518
|
-
#: ../app/helpers/arf_reports_helper.rb:
|
|
518
|
+
#: ../app/helpers/arf_reports_helper.rb:68
|
|
519
519
|
msgid "Hosts passing this rule"
|
|
520
520
|
msgstr ""
|
|
521
521
|
|
|
522
|
-
#: ../app/helpers/arf_reports_helper.rb:
|
|
522
|
+
#: ../app/helpers/arf_reports_helper.rb:69
|
|
523
523
|
msgid "Hosts othering this rule"
|
|
524
524
|
msgstr ""
|
|
525
525
|
|
|
526
|
+
#: ../app/helpers/arf_reports_helper.rb:72
|
|
527
|
+
msgid "Remediation"
|
|
528
|
+
msgstr ""
|
|
529
|
+
|
|
526
530
|
#: ../app/helpers/compliance_dashboard_helper.rb:3 ../app/views/arf_reports/_list.html.erb:6 ../app/views/arf_reports/delete_multiple.html.erb:7 ../app/views/policy_dashboard/_policy_reports.html.erb:6
|
|
527
531
|
msgid "Host"
|
|
528
532
|
msgstr "Host"
|
|
@@ -1162,7 +1166,7 @@ msgstr ""
|
|
|
1162
1166
|
msgid "You can specify custom cron line, e.g. \"0 3 * * *\", separate each of 5 values by space"
|
|
1163
1167
|
msgstr ""
|
|
1164
1168
|
|
|
1165
|
-
#: ../app/views/policies/_list.html.erb:3 ../app/views/tailoring_files/_list.html.erb:3 ../webpack/routes/OvalContents/OvalContentsIndex/OvalContentsTable.js:19 ../webpack/routes/OvalContents/OvalContentsNew/OvalContentsNew.js:57 ../webpack/routes/OvalContents/OvalContentsShow/OvalContentsShow.js:48 ../webpack/routes/OvalPolicies/OvalPoliciesIndex/OvalPoliciesTable.js:19 ../webpack/routes/OvalPolicies/OvalPoliciesNew/NewOvalPolicyForm.js:56 ../webpack/routes/OvalPolicies/OvalPoliciesShow/DetailsTab.js:31 ../webpack/routes/OvalPolicies/OvalPoliciesShow/HostgroupsTable.js:9
|
|
1169
|
+
#: ../app/views/policies/_list.html.erb:3 ../app/views/tailoring_files/_list.html.erb:3 ../webpack/components/OpenscapRemediationWizard/steps/ReviewHosts.js:162 ../webpack/routes/OvalContents/OvalContentsIndex/OvalContentsTable.js:19 ../webpack/routes/OvalContents/OvalContentsNew/OvalContentsNew.js:57 ../webpack/routes/OvalContents/OvalContentsShow/OvalContentsShow.js:48 ../webpack/routes/OvalPolicies/OvalPoliciesIndex/OvalPoliciesTable.js:19 ../webpack/routes/OvalPolicies/OvalPoliciesNew/NewOvalPolicyForm.js:56 ../webpack/routes/OvalPolicies/OvalPoliciesShow/DetailsTab.js:31 ../webpack/routes/OvalPolicies/OvalPoliciesShow/HostgroupsTable.js:9
|
|
1166
1170
|
msgid "Name"
|
|
1167
1171
|
msgstr "Nome"
|
|
1168
1172
|
|
|
@@ -1488,14 +1492,22 @@ msgstr ""
|
|
|
1488
1492
|
msgid "ID of OpenSCAP Proxy"
|
|
1489
1493
|
msgstr ""
|
|
1490
1494
|
|
|
1491
|
-
#: ../lib/foreman_openscap/engine.rb:270 ../lib/foreman_openscap/engine.rb:
|
|
1495
|
+
#: ../lib/foreman_openscap/engine.rb:270 ../lib/foreman_openscap/engine.rb:293
|
|
1492
1496
|
msgid "Run OpenSCAP scan"
|
|
1493
1497
|
msgstr ""
|
|
1494
1498
|
|
|
1495
|
-
#: ../lib/foreman_openscap/engine.rb:275 ../lib/foreman_openscap/engine.rb:
|
|
1499
|
+
#: ../lib/foreman_openscap/engine.rb:275 ../lib/foreman_openscap/engine.rb:294
|
|
1496
1500
|
msgid "Run OVAL scan"
|
|
1497
1501
|
msgstr ""
|
|
1498
1502
|
|
|
1503
|
+
#: ../lib/foreman_openscap/engine.rb:279 ../lib/foreman_openscap/engine.rb:295
|
|
1504
|
+
msgid "Run OpenSCAP remediation with Ansible"
|
|
1505
|
+
msgstr ""
|
|
1506
|
+
|
|
1507
|
+
#: ../lib/foreman_openscap/engine.rb:284 ../lib/foreman_openscap/engine.rb:296
|
|
1508
|
+
msgid "Run OpenSCAP remediation with Shell"
|
|
1509
|
+
msgstr ""
|
|
1510
|
+
|
|
1499
1511
|
#: ../webpack/components/ConfirmModal.js:19
|
|
1500
1512
|
msgid "Confirm"
|
|
1501
1513
|
msgstr ""
|
|
@@ -1508,14 +1520,130 @@ msgstr ""
|
|
|
1508
1520
|
msgid "There's no available report for this host"
|
|
1509
1521
|
msgstr ""
|
|
1510
1522
|
|
|
1511
|
-
#: ../webpack/components/
|
|
1512
|
-
msgid "
|
|
1523
|
+
#: ../webpack/components/OpenscapRemediationWizard/ViewSelectedHostsLink.js:27
|
|
1524
|
+
msgid "View selected hosts"
|
|
1525
|
+
msgstr ""
|
|
1526
|
+
|
|
1527
|
+
#: ../webpack/components/OpenscapRemediationWizard/index.js:69 ../webpack/components/OpenscapRemediationWizard/steps/ReviewHosts.js:174
|
|
1528
|
+
msgid "Review hosts"
|
|
1529
|
+
msgstr ""
|
|
1530
|
+
|
|
1531
|
+
#: ../webpack/components/OpenscapRemediationWizard/index.js:77 ../webpack/components/OpenscapRemediationWizard/steps/SnippetSelect.js:123
|
|
1532
|
+
msgid "Select snippet"
|
|
1533
|
+
msgstr ""
|
|
1534
|
+
|
|
1535
|
+
#: ../webpack/components/OpenscapRemediationWizard/index.js:85 ../webpack/components/OpenscapRemediationWizard/steps/ReviewRemediation.js:94
|
|
1536
|
+
msgid "Review remediation"
|
|
1537
|
+
msgstr ""
|
|
1538
|
+
|
|
1539
|
+
#: ../webpack/components/OpenscapRemediationWizard/index.js:89
|
|
1540
|
+
msgid "Run"
|
|
1513
1541
|
msgstr ""
|
|
1514
1542
|
|
|
1515
|
-
#: ../webpack/components/
|
|
1543
|
+
#: ../webpack/components/OpenscapRemediationWizard/index.js:93
|
|
1544
|
+
msgid "Done"
|
|
1545
|
+
msgstr ""
|
|
1546
|
+
|
|
1547
|
+
#: ../webpack/components/OpenscapRemediationWizard/index.js:127
|
|
1548
|
+
msgid "Remediate %s rule"
|
|
1549
|
+
msgstr ""
|
|
1550
|
+
|
|
1551
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/Finish.js:84
|
|
1552
|
+
msgid "Job details"
|
|
1553
|
+
msgstr ""
|
|
1554
|
+
|
|
1555
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/Finish.js:87
|
|
1556
|
+
msgid "Close"
|
|
1557
|
+
msgstr ""
|
|
1558
|
+
|
|
1559
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/Finish.js:97 ../webpack/components/OpenscapRemediationWizard/steps/SnippetSelect.js:144 ../webpack/components/withLoading.js:12
|
|
1516
1560
|
msgid "Error!"
|
|
1517
1561
|
msgstr ""
|
|
1518
1562
|
|
|
1563
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/Finish.js:105
|
|
1564
|
+
msgid "The job has started on selected host(s), you can check the status on the job details page."
|
|
1565
|
+
msgstr ""
|
|
1566
|
+
|
|
1567
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/ReviewHosts.js:167
|
|
1568
|
+
msgid "OS"
|
|
1569
|
+
msgstr ""
|
|
1570
|
+
|
|
1571
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/ReviewHosts.js:175
|
|
1572
|
+
msgid "By default, remediation is applied to the current host. Optionally, remediate any additional hosts that fail the rule."
|
|
1573
|
+
msgstr ""
|
|
1574
|
+
|
|
1575
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/ReviewRemediation.js:61
|
|
1576
|
+
msgid "Review the remediation snippet and apply it to the host manually."
|
|
1577
|
+
msgstr ""
|
|
1578
|
+
|
|
1579
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/ReviewRemediation.js:62
|
|
1580
|
+
msgid "Review the remediation snippet that will be applied to selected host(s)."
|
|
1581
|
+
msgstr ""
|
|
1582
|
+
|
|
1583
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/ReviewRemediation.js:67
|
|
1584
|
+
msgid "A reboot is required after applying remediation."
|
|
1585
|
+
msgstr ""
|
|
1586
|
+
|
|
1587
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/ReviewRemediation.js:68
|
|
1588
|
+
msgid "A reboot might be required after applying remediation."
|
|
1589
|
+
msgstr ""
|
|
1590
|
+
|
|
1591
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/ReviewRemediation.js:84
|
|
1592
|
+
msgid "Successfully copied to clipboard!"
|
|
1593
|
+
msgstr ""
|
|
1594
|
+
|
|
1595
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/ReviewRemediation.js:85
|
|
1596
|
+
msgid "Copy to clipboard"
|
|
1597
|
+
msgstr ""
|
|
1598
|
+
|
|
1599
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/ReviewRemediation.js:103
|
|
1600
|
+
msgid "Do not implement any of the recommended remedial actions or scripts without first testing them in a non-production environment."
|
|
1601
|
+
msgstr ""
|
|
1602
|
+
|
|
1603
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/ReviewRemediation.js:106
|
|
1604
|
+
msgid "Remediation might render the system non-functional."
|
|
1605
|
+
msgstr ""
|
|
1606
|
+
|
|
1607
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/ReviewRemediation.js:139
|
|
1608
|
+
msgid "Other hosts failing this rule"
|
|
1609
|
+
msgstr ""
|
|
1610
|
+
|
|
1611
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/ReviewRemediation.js:155
|
|
1612
|
+
msgid "Reboot the system(s)"
|
|
1613
|
+
msgstr ""
|
|
1614
|
+
|
|
1615
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/SnippetSelect.js:71
|
|
1616
|
+
msgid "Method"
|
|
1617
|
+
msgstr ""
|
|
1618
|
+
|
|
1619
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/SnippetSelect.js:77
|
|
1620
|
+
msgid "Remote job"
|
|
1621
|
+
msgstr ""
|
|
1622
|
+
|
|
1623
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/SnippetSelect.js:86
|
|
1624
|
+
msgid "Manual"
|
|
1625
|
+
msgstr ""
|
|
1626
|
+
|
|
1627
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/SnippetSelect.js:101
|
|
1628
|
+
msgid "There is no job to remediate with. Please remediate manually."
|
|
1629
|
+
msgstr ""
|
|
1630
|
+
|
|
1631
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/SnippetSelect.js:107
|
|
1632
|
+
msgid "Snippet"
|
|
1633
|
+
msgstr ""
|
|
1634
|
+
|
|
1635
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/SnippetSelect.js:150
|
|
1636
|
+
msgid "Select remediation method"
|
|
1637
|
+
msgstr ""
|
|
1638
|
+
|
|
1639
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/SnippetSelect.js:151
|
|
1640
|
+
msgid "You can remediate by running a remote job or you can display a snippet for manual remediation."
|
|
1641
|
+
msgstr ""
|
|
1642
|
+
|
|
1643
|
+
#: ../webpack/components/withDeleteModal.js:27
|
|
1644
|
+
msgid "Are you sure you want to delete %s?"
|
|
1645
|
+
msgstr ""
|
|
1646
|
+
|
|
1519
1647
|
#: ../webpack/components/withLoading.js:64
|
|
1520
1648
|
msgid "Permission denied"
|
|
1521
1649
|
msgstr ""
|
|
@@ -63,6 +63,12 @@ msgstr ""
|
|
|
63
63
|
msgid "<b>Foreman</b> OpenSCAP summary"
|
|
64
64
|
msgstr ""
|
|
65
65
|
|
|
66
|
+
msgid "A reboot is required after applying remediation."
|
|
67
|
+
msgstr ""
|
|
68
|
+
|
|
69
|
+
msgid "A reboot might be required after applying remediation."
|
|
70
|
+
msgstr ""
|
|
71
|
+
|
|
66
72
|
msgid "A summary of reports for OpenSCAP policies"
|
|
67
73
|
msgstr ""
|
|
68
74
|
|
|
@@ -114,6 +120,9 @@ msgstr ""
|
|
|
114
120
|
msgid "Back"
|
|
115
121
|
msgstr "Indietro"
|
|
116
122
|
|
|
123
|
+
msgid "By default, remediation is applied to the current host. Optionally, remediate any additional hosts that fail the rule."
|
|
124
|
+
msgstr ""
|
|
125
|
+
|
|
117
126
|
msgid "CVEs"
|
|
118
127
|
msgstr ""
|
|
119
128
|
|
|
@@ -159,6 +168,9 @@ msgstr ""
|
|
|
159
168
|
msgid "Choose weekday"
|
|
160
169
|
msgstr ""
|
|
161
170
|
|
|
171
|
+
msgid "Close"
|
|
172
|
+
msgstr ""
|
|
173
|
+
|
|
162
174
|
msgid "Compliance"
|
|
163
175
|
msgstr "Conforme"
|
|
164
176
|
|
|
@@ -192,6 +204,9 @@ msgstr ""
|
|
|
192
204
|
msgid "Content"
|
|
193
205
|
msgstr ""
|
|
194
206
|
|
|
207
|
+
msgid "Copy to clipboard"
|
|
208
|
+
msgstr ""
|
|
209
|
+
|
|
195
210
|
msgid "Could not find host identified by: %s"
|
|
196
211
|
msgstr ""
|
|
197
212
|
|
|
@@ -303,9 +318,15 @@ msgstr ""
|
|
|
303
318
|
msgid "Directory to upload when using \"directory\" upload type"
|
|
304
319
|
msgstr ""
|
|
305
320
|
|
|
321
|
+
msgid "Do not implement any of the recommended remedial actions or scripts without first testing them in a non-production environment."
|
|
322
|
+
msgstr ""
|
|
323
|
+
|
|
306
324
|
msgid "Documentation"
|
|
307
325
|
msgstr "Documentazione"
|
|
308
326
|
|
|
327
|
+
msgid "Done"
|
|
328
|
+
msgstr ""
|
|
329
|
+
|
|
309
330
|
msgid "Download"
|
|
310
331
|
msgstr "Scarica"
|
|
311
332
|
|
|
@@ -506,6 +527,9 @@ msgstr ""
|
|
|
506
527
|
msgid "It may sometimes be required to adjust the security policy to your specific needs. "
|
|
507
528
|
msgstr ""
|
|
508
529
|
|
|
530
|
+
msgid "Job details"
|
|
531
|
+
msgstr ""
|
|
532
|
+
|
|
509
533
|
msgid "Latest Compliance Reports"
|
|
510
534
|
msgstr ""
|
|
511
535
|
|
|
@@ -539,9 +563,15 @@ msgstr "Caricamento..."
|
|
|
539
563
|
msgid "Locations"
|
|
540
564
|
msgstr "Posizioni"
|
|
541
565
|
|
|
566
|
+
msgid "Manual"
|
|
567
|
+
msgstr ""
|
|
568
|
+
|
|
542
569
|
msgid "Message"
|
|
543
570
|
msgstr "Messaggio"
|
|
544
571
|
|
|
572
|
+
msgid "Method"
|
|
573
|
+
msgstr ""
|
|
574
|
+
|
|
545
575
|
msgid "Monthly, day of month: %s"
|
|
546
576
|
msgstr ""
|
|
547
577
|
|
|
@@ -677,6 +707,9 @@ msgstr "Numero di eventi"
|
|
|
677
707
|
msgid "Number of a day in month, note that not all months have same count of days"
|
|
678
708
|
msgstr ""
|
|
679
709
|
|
|
710
|
+
msgid "OS"
|
|
711
|
+
msgstr ""
|
|
712
|
+
|
|
680
713
|
msgid "OVAL Content"
|
|
681
714
|
msgstr ""
|
|
682
715
|
|
|
@@ -776,6 +809,9 @@ msgstr ""
|
|
|
776
809
|
msgid "Other"
|
|
777
810
|
msgstr "Altro"
|
|
778
811
|
|
|
812
|
+
msgid "Other hosts failing this rule"
|
|
813
|
+
msgstr ""
|
|
814
|
+
|
|
779
815
|
msgid "Othered"
|
|
780
816
|
msgstr ""
|
|
781
817
|
|
|
@@ -868,6 +904,9 @@ msgstr "Classe del puppet"
|
|
|
868
904
|
msgid "Rationale"
|
|
869
905
|
msgstr ""
|
|
870
906
|
|
|
907
|
+
msgid "Reboot the system(s)"
|
|
908
|
+
msgstr ""
|
|
909
|
+
|
|
871
910
|
msgid "Red Hat %s default content"
|
|
872
911
|
msgstr ""
|
|
873
912
|
|
|
@@ -877,9 +916,21 @@ msgstr ""
|
|
|
877
916
|
msgid "References"
|
|
878
917
|
msgstr "Riferimenti"
|
|
879
918
|
|
|
919
|
+
msgid "Remediate %s rule"
|
|
920
|
+
msgstr ""
|
|
921
|
+
|
|
922
|
+
msgid "Remediation"
|
|
923
|
+
msgstr ""
|
|
924
|
+
|
|
925
|
+
msgid "Remediation might render the system non-functional."
|
|
926
|
+
msgstr ""
|
|
927
|
+
|
|
880
928
|
msgid "Remote action:"
|
|
881
929
|
msgstr "Azione remota:"
|
|
882
930
|
|
|
931
|
+
msgid "Remote job"
|
|
932
|
+
msgstr ""
|
|
933
|
+
|
|
883
934
|
msgid "Report Metrics"
|
|
884
935
|
msgstr "Metriche notifica"
|
|
885
936
|
|
|
@@ -916,12 +967,33 @@ msgstr "Risorse"
|
|
|
916
967
|
msgid "Result"
|
|
917
968
|
msgstr "Risultato"
|
|
918
969
|
|
|
970
|
+
msgid "Review hosts"
|
|
971
|
+
msgstr ""
|
|
972
|
+
|
|
973
|
+
msgid "Review remediation"
|
|
974
|
+
msgstr ""
|
|
975
|
+
|
|
976
|
+
msgid "Review the remediation snippet and apply it to the host manually."
|
|
977
|
+
msgstr ""
|
|
978
|
+
|
|
979
|
+
msgid "Review the remediation snippet that will be applied to selected host(s)."
|
|
980
|
+
msgstr ""
|
|
981
|
+
|
|
919
982
|
msgid "Rule Results"
|
|
920
983
|
msgstr ""
|
|
921
984
|
|
|
985
|
+
msgid "Run"
|
|
986
|
+
msgstr ""
|
|
987
|
+
|
|
922
988
|
msgid "Run OVAL scan"
|
|
923
989
|
msgstr ""
|
|
924
990
|
|
|
991
|
+
msgid "Run OpenSCAP remediation with Ansible"
|
|
992
|
+
msgstr ""
|
|
993
|
+
|
|
994
|
+
msgid "Run OpenSCAP remediation with Shell"
|
|
995
|
+
msgstr ""
|
|
996
|
+
|
|
925
997
|
msgid "Run OpenSCAP scan"
|
|
926
998
|
msgstr ""
|
|
927
999
|
|
|
@@ -964,6 +1036,12 @@ msgstr ""
|
|
|
964
1036
|
msgid "Select all items in this page"
|
|
965
1037
|
msgstr "Seleziona tutti gli elementi in questa pagina"
|
|
966
1038
|
|
|
1039
|
+
msgid "Select remediation method"
|
|
1040
|
+
msgstr ""
|
|
1041
|
+
|
|
1042
|
+
msgid "Select snippet"
|
|
1043
|
+
msgstr ""
|
|
1044
|
+
|
|
967
1045
|
msgid "Severity"
|
|
968
1046
|
msgstr "Severità"
|
|
969
1047
|
|
|
@@ -1006,6 +1084,9 @@ msgstr "Mostra i messaggi di log:"
|
|
|
1006
1084
|
msgid "Smart Class Parameters"
|
|
1007
1085
|
msgstr ""
|
|
1008
1086
|
|
|
1087
|
+
msgid "Snippet"
|
|
1088
|
+
msgstr ""
|
|
1089
|
+
|
|
1009
1090
|
msgid "Something went wrong while selecting compliance reports - %s"
|
|
1010
1091
|
msgstr ""
|
|
1011
1092
|
|
|
@@ -1024,6 +1105,9 @@ msgstr "Tabella stato"
|
|
|
1024
1105
|
msgid "Submit"
|
|
1025
1106
|
msgstr "Invia"
|
|
1026
1107
|
|
|
1108
|
+
msgid "Successfully copied to clipboard!"
|
|
1109
|
+
msgstr ""
|
|
1110
|
+
|
|
1027
1111
|
msgid "Successfully deleted %s compliance reports"
|
|
1028
1112
|
msgstr ""
|
|
1029
1113
|
|
|
@@ -1086,9 +1170,15 @@ msgstr ""
|
|
|
1086
1170
|
msgid "The identifier of the host"
|
|
1087
1171
|
msgstr ""
|
|
1088
1172
|
|
|
1173
|
+
msgid "The job has started on selected host(s), you can check the status on the job details page."
|
|
1174
|
+
msgstr ""
|
|
1175
|
+
|
|
1089
1176
|
msgid "There are significant differences in deployment options."
|
|
1090
1177
|
msgstr ""
|
|
1091
1178
|
|
|
1179
|
+
msgid "There is no job to remediate with. Please remediate manually."
|
|
1180
|
+
msgstr ""
|
|
1181
|
+
|
|
1092
1182
|
msgid "There was a following error when deleting %(name)s: %(error)s"
|
|
1093
1183
|
msgstr ""
|
|
1094
1184
|
|
|
@@ -1211,6 +1301,9 @@ msgstr ""
|
|
|
1211
1301
|
msgid "View full report"
|
|
1212
1302
|
msgstr ""
|
|
1213
1303
|
|
|
1304
|
+
msgid "View selected hosts"
|
|
1305
|
+
msgstr ""
|
|
1306
|
+
|
|
1214
1307
|
msgid "Was %s configured successfully?"
|
|
1215
1308
|
msgstr ""
|
|
1216
1309
|
|
|
@@ -1241,6 +1334,9 @@ msgstr "Sì"
|
|
|
1241
1334
|
msgid "You are not authorized to view the page. "
|
|
1242
1335
|
msgstr ""
|
|
1243
1336
|
|
|
1337
|
+
msgid "You can remediate by running a remote job or you can display a snippet for manual remediation."
|
|
1338
|
+
msgstr ""
|
|
1339
|
+
|
|
1244
1340
|
msgid "You can specify custom cron line, e.g. \"0 3 * * *\", separate each of 5 values by space"
|
|
1245
1341
|
msgstr ""
|
|
1246
1342
|
|