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
|
@@ -65,6 +65,12 @@ msgstr "Se seleccionó %{type} para implementar la política para los clientes,
|
|
|
65
65
|
msgid "<b>Foreman</b> OpenSCAP summary"
|
|
66
66
|
msgstr "<b>Capataz</b> Resumen de OpenSCAP"
|
|
67
67
|
|
|
68
|
+
msgid "A reboot is required after applying remediation."
|
|
69
|
+
msgstr ""
|
|
70
|
+
|
|
71
|
+
msgid "A reboot might be required after applying remediation."
|
|
72
|
+
msgstr ""
|
|
73
|
+
|
|
68
74
|
msgid "A summary of reports for OpenSCAP policies"
|
|
69
75
|
msgstr "Un resumen de los informes para las políticas de OpenSCAP"
|
|
70
76
|
|
|
@@ -116,6 +122,9 @@ msgstr "Asigne openscap_proxy a %s antes de continuar."
|
|
|
116
122
|
msgid "Back"
|
|
117
123
|
msgstr "Atrás"
|
|
118
124
|
|
|
125
|
+
msgid "By default, remediation is applied to the current host. Optionally, remediate any additional hosts that fail the rule."
|
|
126
|
+
msgstr ""
|
|
127
|
+
|
|
119
128
|
msgid "CVEs"
|
|
120
129
|
msgstr ""
|
|
121
130
|
|
|
@@ -161,6 +170,9 @@ msgstr "Elegir período"
|
|
|
161
170
|
msgid "Choose weekday"
|
|
162
171
|
msgstr "Elegir día de la semana"
|
|
163
172
|
|
|
173
|
+
msgid "Close"
|
|
174
|
+
msgstr ""
|
|
175
|
+
|
|
164
176
|
msgid "Compliance"
|
|
165
177
|
msgstr "Cumplimiento"
|
|
166
178
|
|
|
@@ -194,6 +206,9 @@ msgstr ""
|
|
|
194
206
|
msgid "Content"
|
|
195
207
|
msgstr ""
|
|
196
208
|
|
|
209
|
+
msgid "Copy to clipboard"
|
|
210
|
+
msgstr ""
|
|
211
|
+
|
|
197
212
|
msgid "Could not find host identified by: %s"
|
|
198
213
|
msgstr "No se pudo encontrar el host identificado por: %s"
|
|
199
214
|
|
|
@@ -305,9 +320,15 @@ msgstr "Detalles de la política de cumplimiento %s"
|
|
|
305
320
|
msgid "Directory to upload when using \"directory\" upload type"
|
|
306
321
|
msgstr "Directorio a cargar cuando se utiliza el tipo de carga \"directorio\""
|
|
307
322
|
|
|
323
|
+
msgid "Do not implement any of the recommended remedial actions or scripts without first testing them in a non-production environment."
|
|
324
|
+
msgstr ""
|
|
325
|
+
|
|
308
326
|
msgid "Documentation"
|
|
309
327
|
msgstr "Documentación"
|
|
310
328
|
|
|
329
|
+
msgid "Done"
|
|
330
|
+
msgstr ""
|
|
331
|
+
|
|
311
332
|
msgid "Download"
|
|
312
333
|
msgstr "Descargar"
|
|
313
334
|
|
|
@@ -508,6 +529,9 @@ msgstr "¿Está presente theforeman.foreman_scap_client?"
|
|
|
508
529
|
msgid "It may sometimes be required to adjust the security policy to your specific needs. "
|
|
509
530
|
msgstr "A veces, puede ser necesario ajustar la política de seguridad en función de sus necesidades específicas."
|
|
510
531
|
|
|
532
|
+
msgid "Job details"
|
|
533
|
+
msgstr ""
|
|
534
|
+
|
|
511
535
|
msgid "Latest Compliance Reports"
|
|
512
536
|
msgstr "Últimos informes de cumplimiento"
|
|
513
537
|
|
|
@@ -541,9 +565,15 @@ msgstr "Cargando..."
|
|
|
541
565
|
msgid "Locations"
|
|
542
566
|
msgstr "Ubicaciones"
|
|
543
567
|
|
|
568
|
+
msgid "Manual"
|
|
569
|
+
msgstr ""
|
|
570
|
+
|
|
544
571
|
msgid "Message"
|
|
545
572
|
msgstr "Mensaje"
|
|
546
573
|
|
|
574
|
+
msgid "Method"
|
|
575
|
+
msgstr ""
|
|
576
|
+
|
|
547
577
|
msgid "Monthly, day of month: %s"
|
|
548
578
|
msgstr ""
|
|
549
579
|
|
|
@@ -679,6 +709,9 @@ msgstr "Número de eventos"
|
|
|
679
709
|
msgid "Number of a day in month, note that not all months have same count of days"
|
|
680
710
|
msgstr "Cantidad de días en el mes, tenga en cuenta que no todos los meses tienen la misma cantidad de días"
|
|
681
711
|
|
|
712
|
+
msgid "OS"
|
|
713
|
+
msgstr ""
|
|
714
|
+
|
|
682
715
|
msgid "OVAL Content"
|
|
683
716
|
msgstr "Contenido de OVAL"
|
|
684
717
|
|
|
@@ -778,6 +811,9 @@ msgstr "Nombre de archivo original del archivo XML"
|
|
|
778
811
|
msgid "Other"
|
|
779
812
|
msgstr "Otro"
|
|
780
813
|
|
|
814
|
+
msgid "Other hosts failing this rule"
|
|
815
|
+
msgstr ""
|
|
816
|
+
|
|
781
817
|
msgid "Othered"
|
|
782
818
|
msgstr "Distinto"
|
|
783
819
|
|
|
@@ -870,6 +906,9 @@ msgstr "Clase Puppet"
|
|
|
870
906
|
msgid "Rationale"
|
|
871
907
|
msgstr "Fundamento"
|
|
872
908
|
|
|
909
|
+
msgid "Reboot the system(s)"
|
|
910
|
+
msgstr ""
|
|
911
|
+
|
|
873
912
|
msgid "Red Hat %s default content"
|
|
874
913
|
msgstr ""
|
|
875
914
|
|
|
@@ -879,9 +918,21 @@ msgstr "Ref. Id."
|
|
|
879
918
|
msgid "References"
|
|
880
919
|
msgstr "Referencias"
|
|
881
920
|
|
|
921
|
+
msgid "Remediate %s rule"
|
|
922
|
+
msgstr ""
|
|
923
|
+
|
|
924
|
+
msgid "Remediation"
|
|
925
|
+
msgstr ""
|
|
926
|
+
|
|
927
|
+
msgid "Remediation might render the system non-functional."
|
|
928
|
+
msgstr ""
|
|
929
|
+
|
|
882
930
|
msgid "Remote action:"
|
|
883
931
|
msgstr "Acción remota:"
|
|
884
932
|
|
|
933
|
+
msgid "Remote job"
|
|
934
|
+
msgstr ""
|
|
935
|
+
|
|
885
936
|
msgid "Report Metrics"
|
|
886
937
|
msgstr "Métrica de informe"
|
|
887
938
|
|
|
@@ -918,12 +969,33 @@ msgstr "Recurso"
|
|
|
918
969
|
msgid "Result"
|
|
919
970
|
msgstr "Resultado:"
|
|
920
971
|
|
|
972
|
+
msgid "Review hosts"
|
|
973
|
+
msgstr ""
|
|
974
|
+
|
|
975
|
+
msgid "Review remediation"
|
|
976
|
+
msgstr ""
|
|
977
|
+
|
|
978
|
+
msgid "Review the remediation snippet and apply it to the host manually."
|
|
979
|
+
msgstr ""
|
|
980
|
+
|
|
981
|
+
msgid "Review the remediation snippet that will be applied to selected host(s)."
|
|
982
|
+
msgstr ""
|
|
983
|
+
|
|
921
984
|
msgid "Rule Results"
|
|
922
985
|
msgstr "Resultados de regla"
|
|
923
986
|
|
|
987
|
+
msgid "Run"
|
|
988
|
+
msgstr ""
|
|
989
|
+
|
|
924
990
|
msgid "Run OVAL scan"
|
|
925
991
|
msgstr "Ejecute el escaneo de OVAL"
|
|
926
992
|
|
|
993
|
+
msgid "Run OpenSCAP remediation with Ansible"
|
|
994
|
+
msgstr ""
|
|
995
|
+
|
|
996
|
+
msgid "Run OpenSCAP remediation with Shell"
|
|
997
|
+
msgstr ""
|
|
998
|
+
|
|
927
999
|
msgid "Run OpenSCAP scan"
|
|
928
1000
|
msgstr "Ejecutar escaneo OpenSCAP"
|
|
929
1001
|
|
|
@@ -966,6 +1038,12 @@ msgstr "Seleccionar proxy OpenSCAP"
|
|
|
966
1038
|
msgid "Select all items in this page"
|
|
967
1039
|
msgstr "Seleccionar todos los objetos de esta página"
|
|
968
1040
|
|
|
1041
|
+
msgid "Select remediation method"
|
|
1042
|
+
msgstr ""
|
|
1043
|
+
|
|
1044
|
+
msgid "Select snippet"
|
|
1045
|
+
msgstr ""
|
|
1046
|
+
|
|
969
1047
|
msgid "Severity"
|
|
970
1048
|
msgstr "Gravedad"
|
|
971
1049
|
|
|
@@ -1008,6 +1086,9 @@ msgstr "Mostrar registro de mensajes:"
|
|
|
1008
1086
|
msgid "Smart Class Parameters"
|
|
1009
1087
|
msgstr "Parámetros de clase inteligente"
|
|
1010
1088
|
|
|
1089
|
+
msgid "Snippet"
|
|
1090
|
+
msgstr ""
|
|
1091
|
+
|
|
1011
1092
|
msgid "Something went wrong while selecting compliance reports - %s"
|
|
1012
1093
|
msgstr "Algo ha fallado al seleccionar los informes de cumplimiento: %s."
|
|
1013
1094
|
|
|
@@ -1026,6 +1107,9 @@ msgstr "Tabla de estado"
|
|
|
1026
1107
|
msgid "Submit"
|
|
1027
1108
|
msgstr "Enviar"
|
|
1028
1109
|
|
|
1110
|
+
msgid "Successfully copied to clipboard!"
|
|
1111
|
+
msgstr ""
|
|
1112
|
+
|
|
1029
1113
|
msgid "Successfully deleted %s compliance reports"
|
|
1030
1114
|
msgstr "Los informes de cumplimiento %s se eliminaron correctamente."
|
|
1031
1115
|
|
|
@@ -1088,9 +1172,15 @@ msgstr "No se pudieron alcanzar los siguientes proxies: %s. Asegúrese de que es
|
|
|
1088
1172
|
msgid "The identifier of the host"
|
|
1089
1173
|
msgstr "El identificador del host"
|
|
1090
1174
|
|
|
1175
|
+
msgid "The job has started on selected host(s), you can check the status on the job details page."
|
|
1176
|
+
msgstr ""
|
|
1177
|
+
|
|
1091
1178
|
msgid "There are significant differences in deployment options."
|
|
1092
1179
|
msgstr "Hay diferencias significativas en las opciones de despliegue."
|
|
1093
1180
|
|
|
1181
|
+
msgid "There is no job to remediate with. Please remediate manually."
|
|
1182
|
+
msgstr ""
|
|
1183
|
+
|
|
1094
1184
|
msgid "There was a following error when deleting %(name)s: %(error)s"
|
|
1095
1185
|
msgstr ""
|
|
1096
1186
|
|
|
@@ -1214,6 +1304,9 @@ msgstr "Ver informe"
|
|
|
1214
1304
|
msgid "View full report"
|
|
1215
1305
|
msgstr "Ver el informe completo"
|
|
1216
1306
|
|
|
1307
|
+
msgid "View selected hosts"
|
|
1308
|
+
msgstr ""
|
|
1309
|
+
|
|
1217
1310
|
msgid "Was %s configured successfully?"
|
|
1218
1311
|
msgstr "¿Se ha configurado correctamente %s?"
|
|
1219
1312
|
|
|
@@ -1244,6 +1337,9 @@ msgstr "Sí"
|
|
|
1244
1337
|
msgid "You are not authorized to view the page. "
|
|
1245
1338
|
msgstr ""
|
|
1246
1339
|
|
|
1340
|
+
msgid "You can remediate by running a remote job or you can display a snippet for manual remediation."
|
|
1341
|
+
msgstr ""
|
|
1342
|
+
|
|
1247
1343
|
msgid "You can specify custom cron line, e.g. \"0 3 * * *\", separate each of 5 values by space"
|
|
1248
1344
|
msgstr "Puede especificar la línea Cron personalizada, por ejemplo: \"0 3 * * *\", separe cada uno de los 5 valores con espacio."
|
|
1249
1345
|
|
data/locale/foreman_openscap.pot
CHANGED
|
@@ -8,8 +8,8 @@ msgid ""
|
|
|
8
8
|
msgstr ""
|
|
9
9
|
"Project-Id-Version: foreman_openscap 1.0.0\n"
|
|
10
10
|
"Report-Msgid-Bugs-To: \n"
|
|
11
|
-
"POT-Creation-Date:
|
|
12
|
-
"PO-Revision-Date:
|
|
11
|
+
"POT-Creation-Date: 2024-04-26 14:46+0000\n"
|
|
12
|
+
"PO-Revision-Date: 2024-04-26 14:46+0000\n"
|
|
13
13
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
|
14
14
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
|
15
15
|
"Language: \n"
|
|
@@ -388,15 +388,15 @@ msgstr ""
|
|
|
388
388
|
msgid "Successfully deleted %s compliance reports"
|
|
389
389
|
msgstr ""
|
|
390
390
|
|
|
391
|
-
#: ../app/controllers/arf_reports_controller.rb:
|
|
391
|
+
#: ../app/controllers/arf_reports_controller.rb:106
|
|
392
392
|
msgid "No compliance reports were found."
|
|
393
393
|
msgstr ""
|
|
394
394
|
|
|
395
|
-
#: ../app/controllers/arf_reports_controller.rb:
|
|
395
|
+
#: ../app/controllers/arf_reports_controller.rb:110
|
|
396
396
|
msgid "No compliance reports selected"
|
|
397
397
|
msgstr ""
|
|
398
398
|
|
|
399
|
-
#: ../app/controllers/arf_reports_controller.rb:
|
|
399
|
+
#: ../app/controllers/arf_reports_controller.rb:115
|
|
400
400
|
msgid "Something went wrong while selecting compliance reports - %s"
|
|
401
401
|
msgstr ""
|
|
402
402
|
|
|
@@ -539,18 +539,22 @@ msgstr ""
|
|
|
539
539
|
msgid " through %s"
|
|
540
540
|
msgstr ""
|
|
541
541
|
|
|
542
|
-
#: ../app/helpers/arf_reports_helper.rb:
|
|
542
|
+
#: ../app/helpers/arf_reports_helper.rb:67
|
|
543
543
|
msgid "Hosts failing this rule"
|
|
544
544
|
msgstr ""
|
|
545
545
|
|
|
546
|
-
#: ../app/helpers/arf_reports_helper.rb:
|
|
546
|
+
#: ../app/helpers/arf_reports_helper.rb:68
|
|
547
547
|
msgid "Hosts passing this rule"
|
|
548
548
|
msgstr ""
|
|
549
549
|
|
|
550
|
-
#: ../app/helpers/arf_reports_helper.rb:
|
|
550
|
+
#: ../app/helpers/arf_reports_helper.rb:69
|
|
551
551
|
msgid "Hosts othering this rule"
|
|
552
552
|
msgstr ""
|
|
553
553
|
|
|
554
|
+
#: ../app/helpers/arf_reports_helper.rb:72
|
|
555
|
+
msgid "Remediation"
|
|
556
|
+
msgstr ""
|
|
557
|
+
|
|
554
558
|
#: ../app/helpers/compliance_dashboard_helper.rb:3
|
|
555
559
|
#: ../app/views/arf_reports/_list.html.erb:6
|
|
556
560
|
#: ../app/views/arf_reports/delete_multiple.html.erb:7
|
|
@@ -1280,6 +1284,7 @@ msgstr ""
|
|
|
1280
1284
|
|
|
1281
1285
|
#: ../app/views/policies/_list.html.erb:3
|
|
1282
1286
|
#: ../app/views/tailoring_files/_list.html.erb:3
|
|
1287
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/ReviewHosts.js:162
|
|
1283
1288
|
#: ../webpack/routes/OvalContents/OvalContentsIndex/OvalContentsTable.js:19
|
|
1284
1289
|
#: ../webpack/routes/OvalContents/OvalContentsNew/OvalContentsNew.js:57
|
|
1285
1290
|
#: ../webpack/routes/OvalContents/OvalContentsShow/OvalContentsShow.js:48
|
|
@@ -1641,14 +1646,22 @@ msgstr ""
|
|
|
1641
1646
|
msgid "ID of OpenSCAP Proxy"
|
|
1642
1647
|
msgstr ""
|
|
1643
1648
|
|
|
1644
|
-
#: ../lib/foreman_openscap/engine.rb:270 ../lib/foreman_openscap/engine.rb:
|
|
1649
|
+
#: ../lib/foreman_openscap/engine.rb:270 ../lib/foreman_openscap/engine.rb:293
|
|
1645
1650
|
msgid "Run OpenSCAP scan"
|
|
1646
1651
|
msgstr ""
|
|
1647
1652
|
|
|
1648
|
-
#: ../lib/foreman_openscap/engine.rb:275 ../lib/foreman_openscap/engine.rb:
|
|
1653
|
+
#: ../lib/foreman_openscap/engine.rb:275 ../lib/foreman_openscap/engine.rb:294
|
|
1649
1654
|
msgid "Run OVAL scan"
|
|
1650
1655
|
msgstr ""
|
|
1651
1656
|
|
|
1657
|
+
#: ../lib/foreman_openscap/engine.rb:279 ../lib/foreman_openscap/engine.rb:295
|
|
1658
|
+
msgid "Run OpenSCAP remediation with Ansible"
|
|
1659
|
+
msgstr ""
|
|
1660
|
+
|
|
1661
|
+
#: ../lib/foreman_openscap/engine.rb:284 ../lib/foreman_openscap/engine.rb:296
|
|
1662
|
+
msgid "Run OpenSCAP remediation with Shell"
|
|
1663
|
+
msgstr ""
|
|
1664
|
+
|
|
1652
1665
|
#: ../webpack/components/ConfirmModal.js:19
|
|
1653
1666
|
msgid "Confirm"
|
|
1654
1667
|
msgstr ""
|
|
@@ -1661,14 +1674,153 @@ msgstr ""
|
|
|
1661
1674
|
msgid "There's no available report for this host"
|
|
1662
1675
|
msgstr ""
|
|
1663
1676
|
|
|
1664
|
-
#: ../webpack/components/
|
|
1665
|
-
msgid "
|
|
1677
|
+
#: ../webpack/components/OpenscapRemediationWizard/ViewSelectedHostsLink.js:27
|
|
1678
|
+
msgid "View selected hosts"
|
|
1679
|
+
msgstr ""
|
|
1680
|
+
|
|
1681
|
+
#: ../webpack/components/OpenscapRemediationWizard/index.js:69
|
|
1682
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/ReviewHosts.js:174
|
|
1683
|
+
msgid "Review hosts"
|
|
1684
|
+
msgstr ""
|
|
1685
|
+
|
|
1686
|
+
#: ../webpack/components/OpenscapRemediationWizard/index.js:77
|
|
1687
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/SnippetSelect.js:123
|
|
1688
|
+
msgid "Select snippet"
|
|
1689
|
+
msgstr ""
|
|
1690
|
+
|
|
1691
|
+
#: ../webpack/components/OpenscapRemediationWizard/index.js:85
|
|
1692
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/ReviewRemediation.js:94
|
|
1693
|
+
msgid "Review remediation"
|
|
1694
|
+
msgstr ""
|
|
1695
|
+
|
|
1696
|
+
#: ../webpack/components/OpenscapRemediationWizard/index.js:89
|
|
1697
|
+
msgid "Run"
|
|
1698
|
+
msgstr ""
|
|
1699
|
+
|
|
1700
|
+
#: ../webpack/components/OpenscapRemediationWizard/index.js:93
|
|
1701
|
+
msgid "Done"
|
|
1666
1702
|
msgstr ""
|
|
1667
1703
|
|
|
1704
|
+
#: ../webpack/components/OpenscapRemediationWizard/index.js:127
|
|
1705
|
+
msgid "Remediate %s rule"
|
|
1706
|
+
msgstr ""
|
|
1707
|
+
|
|
1708
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/Finish.js:84
|
|
1709
|
+
msgid "Job details"
|
|
1710
|
+
msgstr ""
|
|
1711
|
+
|
|
1712
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/Finish.js:87
|
|
1713
|
+
msgid "Close"
|
|
1714
|
+
msgstr ""
|
|
1715
|
+
|
|
1716
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/Finish.js:97
|
|
1717
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/SnippetSelect.js:144
|
|
1668
1718
|
#: ../webpack/components/withLoading.js:12
|
|
1669
1719
|
msgid "Error!"
|
|
1670
1720
|
msgstr ""
|
|
1671
1721
|
|
|
1722
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/Finish.js:105
|
|
1723
|
+
msgid ""
|
|
1724
|
+
"The job has started on selected host(s), you can check the status on the job d"
|
|
1725
|
+
"etails page."
|
|
1726
|
+
msgstr ""
|
|
1727
|
+
|
|
1728
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/ReviewHosts.js:167
|
|
1729
|
+
msgid "OS"
|
|
1730
|
+
msgstr ""
|
|
1731
|
+
|
|
1732
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/ReviewHosts.js:175
|
|
1733
|
+
msgid ""
|
|
1734
|
+
"By default, remediation is applied to the current host. Optionally, remediate "
|
|
1735
|
+
"any additional hosts that fail the rule."
|
|
1736
|
+
msgstr ""
|
|
1737
|
+
|
|
1738
|
+
#:
|
|
1739
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/ReviewRemediation.js:61
|
|
1740
|
+
msgid "Review the remediation snippet and apply it to the host manually."
|
|
1741
|
+
msgstr ""
|
|
1742
|
+
|
|
1743
|
+
#:
|
|
1744
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/ReviewRemediation.js:62
|
|
1745
|
+
msgid "Review the remediation snippet that will be applied to selected host(s)."
|
|
1746
|
+
msgstr ""
|
|
1747
|
+
|
|
1748
|
+
#:
|
|
1749
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/ReviewRemediation.js:67
|
|
1750
|
+
msgid "A reboot is required after applying remediation."
|
|
1751
|
+
msgstr ""
|
|
1752
|
+
|
|
1753
|
+
#:
|
|
1754
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/ReviewRemediation.js:68
|
|
1755
|
+
msgid "A reboot might be required after applying remediation."
|
|
1756
|
+
msgstr ""
|
|
1757
|
+
|
|
1758
|
+
#:
|
|
1759
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/ReviewRemediation.js:84
|
|
1760
|
+
msgid "Successfully copied to clipboard!"
|
|
1761
|
+
msgstr ""
|
|
1762
|
+
|
|
1763
|
+
#:
|
|
1764
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/ReviewRemediation.js:85
|
|
1765
|
+
msgid "Copy to clipboard"
|
|
1766
|
+
msgstr ""
|
|
1767
|
+
|
|
1768
|
+
#:
|
|
1769
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/ReviewRemediation.js:103
|
|
1770
|
+
msgid ""
|
|
1771
|
+
"Do not implement any of the recommended remedial actions or scripts without fi"
|
|
1772
|
+
"rst testing them in a non-production environment."
|
|
1773
|
+
msgstr ""
|
|
1774
|
+
|
|
1775
|
+
#:
|
|
1776
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/ReviewRemediation.js:106
|
|
1777
|
+
msgid "Remediation might render the system non-functional."
|
|
1778
|
+
msgstr ""
|
|
1779
|
+
|
|
1780
|
+
#:
|
|
1781
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/ReviewRemediation.js:139
|
|
1782
|
+
msgid "Other hosts failing this rule"
|
|
1783
|
+
msgstr ""
|
|
1784
|
+
|
|
1785
|
+
#:
|
|
1786
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/ReviewRemediation.js:155
|
|
1787
|
+
msgid "Reboot the system(s)"
|
|
1788
|
+
msgstr ""
|
|
1789
|
+
|
|
1790
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/SnippetSelect.js:71
|
|
1791
|
+
msgid "Method"
|
|
1792
|
+
msgstr ""
|
|
1793
|
+
|
|
1794
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/SnippetSelect.js:77
|
|
1795
|
+
msgid "Remote job"
|
|
1796
|
+
msgstr ""
|
|
1797
|
+
|
|
1798
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/SnippetSelect.js:86
|
|
1799
|
+
msgid "Manual"
|
|
1800
|
+
msgstr ""
|
|
1801
|
+
|
|
1802
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/SnippetSelect.js:101
|
|
1803
|
+
msgid "There is no job to remediate with. Please remediate manually."
|
|
1804
|
+
msgstr ""
|
|
1805
|
+
|
|
1806
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/SnippetSelect.js:107
|
|
1807
|
+
msgid "Snippet"
|
|
1808
|
+
msgstr ""
|
|
1809
|
+
|
|
1810
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/SnippetSelect.js:150
|
|
1811
|
+
msgid "Select remediation method"
|
|
1812
|
+
msgstr ""
|
|
1813
|
+
|
|
1814
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/SnippetSelect.js:151
|
|
1815
|
+
msgid ""
|
|
1816
|
+
"You can remediate by running a remote job or you can display a snippet for man"
|
|
1817
|
+
"ual remediation."
|
|
1818
|
+
msgstr ""
|
|
1819
|
+
|
|
1820
|
+
#: ../webpack/components/withDeleteModal.js:27
|
|
1821
|
+
msgid "Are you sure you want to delete %s?"
|
|
1822
|
+
msgstr ""
|
|
1823
|
+
|
|
1672
1824
|
#: ../webpack/components/withLoading.js:64
|
|
1673
1825
|
msgid "Permission denied"
|
|
1674
1826
|
msgstr ""
|