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
|
@@ -64,6 +64,12 @@ msgstr "{type} foi selecionado para implantar a política para os clientes, mas
|
|
|
64
64
|
msgid "<b>Foreman</b> OpenSCAP summary"
|
|
65
65
|
msgstr "Resumo do OpenSCAP do <b>Foreman</b>"
|
|
66
66
|
|
|
67
|
+
msgid "A reboot is required after applying remediation."
|
|
68
|
+
msgstr ""
|
|
69
|
+
|
|
70
|
+
msgid "A reboot might be required after applying remediation."
|
|
71
|
+
msgstr ""
|
|
72
|
+
|
|
67
73
|
msgid "A summary of reports for OpenSCAP policies"
|
|
68
74
|
msgstr "Um resumo de relatórios para políticas OpenSCAP"
|
|
69
75
|
|
|
@@ -115,6 +121,9 @@ msgstr "Atribua openscap_proxy para %s antes de prosseguir."
|
|
|
115
121
|
msgid "Back"
|
|
116
122
|
msgstr "Retornar"
|
|
117
123
|
|
|
124
|
+
msgid "By default, remediation is applied to the current host. Optionally, remediate any additional hosts that fail the rule."
|
|
125
|
+
msgstr ""
|
|
126
|
+
|
|
118
127
|
msgid "CVEs"
|
|
119
128
|
msgstr ""
|
|
120
129
|
|
|
@@ -160,6 +169,9 @@ msgstr "Selecionar período"
|
|
|
160
169
|
msgid "Choose weekday"
|
|
161
170
|
msgstr "Selecionar dia útil"
|
|
162
171
|
|
|
172
|
+
msgid "Close"
|
|
173
|
+
msgstr ""
|
|
174
|
+
|
|
163
175
|
msgid "Compliance"
|
|
164
176
|
msgstr "Conformidade"
|
|
165
177
|
|
|
@@ -193,6 +205,9 @@ msgstr ""
|
|
|
193
205
|
msgid "Content"
|
|
194
206
|
msgstr ""
|
|
195
207
|
|
|
208
|
+
msgid "Copy to clipboard"
|
|
209
|
+
msgstr ""
|
|
210
|
+
|
|
196
211
|
msgid "Could not find host identified by: %s"
|
|
197
212
|
msgstr "Não foi possível encontrar o host identificado por: %s"
|
|
198
213
|
|
|
@@ -304,9 +319,15 @@ msgstr "Detalhes da Política de Conformidade %s"
|
|
|
304
319
|
msgid "Directory to upload when using \"directory\" upload type"
|
|
305
320
|
msgstr "Diretório para carregar ao usar o tipo \"diretório\" de carregamento"
|
|
306
321
|
|
|
322
|
+
msgid "Do not implement any of the recommended remedial actions or scripts without first testing them in a non-production environment."
|
|
323
|
+
msgstr ""
|
|
324
|
+
|
|
307
325
|
msgid "Documentation"
|
|
308
326
|
msgstr "Documentação"
|
|
309
327
|
|
|
328
|
+
msgid "Done"
|
|
329
|
+
msgstr ""
|
|
330
|
+
|
|
310
331
|
msgid "Download"
|
|
311
332
|
msgstr "Baixar"
|
|
312
333
|
|
|
@@ -511,6 +532,9 @@ msgstr "Oforeman.foreman_scap_client está presente?"
|
|
|
511
532
|
msgid "It may sometimes be required to adjust the security policy to your specific needs. "
|
|
512
533
|
msgstr "Algumas vezes, poderá ser necessário ajustar a política de segurança para suas necessidades específicas."
|
|
513
534
|
|
|
535
|
+
msgid "Job details"
|
|
536
|
+
msgstr ""
|
|
537
|
+
|
|
514
538
|
msgid "Latest Compliance Reports"
|
|
515
539
|
msgstr "Relatórios de conformidade mais recentes "
|
|
516
540
|
|
|
@@ -544,9 +568,15 @@ msgstr "Carregando..."
|
|
|
544
568
|
msgid "Locations"
|
|
545
569
|
msgstr "Locais"
|
|
546
570
|
|
|
571
|
+
msgid "Manual"
|
|
572
|
+
msgstr ""
|
|
573
|
+
|
|
547
574
|
msgid "Message"
|
|
548
575
|
msgstr "Mensagem"
|
|
549
576
|
|
|
577
|
+
msgid "Method"
|
|
578
|
+
msgstr ""
|
|
579
|
+
|
|
550
580
|
msgid "Monthly, day of month: %s"
|
|
551
581
|
msgstr ""
|
|
552
582
|
|
|
@@ -682,6 +712,9 @@ msgstr "Número de Eventos"
|
|
|
682
712
|
msgid "Number of a day in month, note that not all months have same count of days"
|
|
683
713
|
msgstr "Número de dias no mês, observe que nem todos os meses possuem o mesmo número de dias"
|
|
684
714
|
|
|
715
|
+
msgid "OS"
|
|
716
|
+
msgstr ""
|
|
717
|
+
|
|
685
718
|
msgid "OVAL Content"
|
|
686
719
|
msgstr "Conteúdo OVAL"
|
|
687
720
|
|
|
@@ -781,6 +814,9 @@ msgstr "Nome do arquivo original do arquivo XML"
|
|
|
781
814
|
msgid "Other"
|
|
782
815
|
msgstr "Outros"
|
|
783
816
|
|
|
817
|
+
msgid "Other hosts failing this rule"
|
|
818
|
+
msgstr ""
|
|
819
|
+
|
|
784
820
|
msgid "Othered"
|
|
785
821
|
msgstr "Outros"
|
|
786
822
|
|
|
@@ -873,6 +909,9 @@ msgstr "Classe de puppet"
|
|
|
873
909
|
msgid "Rationale"
|
|
874
910
|
msgstr "Base lógica"
|
|
875
911
|
|
|
912
|
+
msgid "Reboot the system(s)"
|
|
913
|
+
msgstr ""
|
|
914
|
+
|
|
876
915
|
msgid "Red Hat %s default content"
|
|
877
916
|
msgstr ""
|
|
878
917
|
|
|
@@ -882,9 +921,21 @@ msgstr "Ref. Id"
|
|
|
882
921
|
msgid "References"
|
|
883
922
|
msgstr "Referências"
|
|
884
923
|
|
|
924
|
+
msgid "Remediate %s rule"
|
|
925
|
+
msgstr ""
|
|
926
|
+
|
|
927
|
+
msgid "Remediation"
|
|
928
|
+
msgstr ""
|
|
929
|
+
|
|
930
|
+
msgid "Remediation might render the system non-functional."
|
|
931
|
+
msgstr ""
|
|
932
|
+
|
|
885
933
|
msgid "Remote action:"
|
|
886
934
|
msgstr "Ação remota:"
|
|
887
935
|
|
|
936
|
+
msgid "Remote job"
|
|
937
|
+
msgstr ""
|
|
938
|
+
|
|
888
939
|
msgid "Report Metrics"
|
|
889
940
|
msgstr "Relatar Medidas"
|
|
890
941
|
|
|
@@ -921,12 +972,33 @@ msgstr "Recurso"
|
|
|
921
972
|
msgid "Result"
|
|
922
973
|
msgstr "Resultado"
|
|
923
974
|
|
|
975
|
+
msgid "Review hosts"
|
|
976
|
+
msgstr ""
|
|
977
|
+
|
|
978
|
+
msgid "Review remediation"
|
|
979
|
+
msgstr ""
|
|
980
|
+
|
|
981
|
+
msgid "Review the remediation snippet and apply it to the host manually."
|
|
982
|
+
msgstr ""
|
|
983
|
+
|
|
984
|
+
msgid "Review the remediation snippet that will be applied to selected host(s)."
|
|
985
|
+
msgstr ""
|
|
986
|
+
|
|
924
987
|
msgid "Rule Results"
|
|
925
988
|
msgstr "Resultados de regras"
|
|
926
989
|
|
|
990
|
+
msgid "Run"
|
|
991
|
+
msgstr ""
|
|
992
|
+
|
|
927
993
|
msgid "Run OVAL scan"
|
|
928
994
|
msgstr "Executar OVAL scan"
|
|
929
995
|
|
|
996
|
+
msgid "Run OpenSCAP remediation with Ansible"
|
|
997
|
+
msgstr ""
|
|
998
|
+
|
|
999
|
+
msgid "Run OpenSCAP remediation with Shell"
|
|
1000
|
+
msgstr ""
|
|
1001
|
+
|
|
930
1002
|
msgid "Run OpenSCAP scan"
|
|
931
1003
|
msgstr "Executar verificação OpenSCAP"
|
|
932
1004
|
|
|
@@ -969,6 +1041,12 @@ msgstr "Selecionar proxy OpenSCAP"
|
|
|
969
1041
|
msgid "Select all items in this page"
|
|
970
1042
|
msgstr "Selecionar todos os itens desta página"
|
|
971
1043
|
|
|
1044
|
+
msgid "Select remediation method"
|
|
1045
|
+
msgstr ""
|
|
1046
|
+
|
|
1047
|
+
msgid "Select snippet"
|
|
1048
|
+
msgstr ""
|
|
1049
|
+
|
|
972
1050
|
msgid "Severity"
|
|
973
1051
|
msgstr "Severidade"
|
|
974
1052
|
|
|
@@ -1011,6 +1089,9 @@ msgstr "Exibir mensagens de logs:"
|
|
|
1011
1089
|
msgid "Smart Class Parameters"
|
|
1012
1090
|
msgstr "Parâmetros de classe inteligentes"
|
|
1013
1091
|
|
|
1092
|
+
msgid "Snippet"
|
|
1093
|
+
msgstr ""
|
|
1094
|
+
|
|
1014
1095
|
msgid "Something went wrong while selecting compliance reports - %s"
|
|
1015
1096
|
msgstr "Algo deu errado ao selecionar os relatórios de conformidade - %s"
|
|
1016
1097
|
|
|
@@ -1029,6 +1110,9 @@ msgstr "Tabela de status"
|
|
|
1029
1110
|
msgid "Submit"
|
|
1030
1111
|
msgstr "Enviar"
|
|
1031
1112
|
|
|
1113
|
+
msgid "Successfully copied to clipboard!"
|
|
1114
|
+
msgstr ""
|
|
1115
|
+
|
|
1032
1116
|
msgid "Successfully deleted %s compliance reports"
|
|
1033
1117
|
msgstr "Relatórios de conformidade %s removidos com êxito"
|
|
1034
1118
|
|
|
@@ -1093,9 +1177,15 @@ msgstr "Não foi possível alcançar os proxies a seguir: %s. Certifique-se de q
|
|
|
1093
1177
|
msgid "The identifier of the host"
|
|
1094
1178
|
msgstr "O identificador do host"
|
|
1095
1179
|
|
|
1180
|
+
msgid "The job has started on selected host(s), you can check the status on the job details page."
|
|
1181
|
+
msgstr ""
|
|
1182
|
+
|
|
1096
1183
|
msgid "There are significant differences in deployment options."
|
|
1097
1184
|
msgstr "Existem diferenças significativas nas opções de implantação."
|
|
1098
1185
|
|
|
1186
|
+
msgid "There is no job to remediate with. Please remediate manually."
|
|
1187
|
+
msgstr ""
|
|
1188
|
+
|
|
1099
1189
|
msgid "There was a following error when deleting %(name)s: %(error)s"
|
|
1100
1190
|
msgstr ""
|
|
1101
1191
|
|
|
@@ -1219,6 +1309,9 @@ msgstr "Visualizar relatório"
|
|
|
1219
1309
|
msgid "View full report"
|
|
1220
1310
|
msgstr "Visualizar relatório completo"
|
|
1221
1311
|
|
|
1312
|
+
msgid "View selected hosts"
|
|
1313
|
+
msgstr ""
|
|
1314
|
+
|
|
1222
1315
|
msgid "Was %s configured successfully?"
|
|
1223
1316
|
msgstr "O %s foi configurado com sucesso?"
|
|
1224
1317
|
|
|
@@ -1249,6 +1342,9 @@ msgstr "Sim"
|
|
|
1249
1342
|
msgid "You are not authorized to view the page. "
|
|
1250
1343
|
msgstr ""
|
|
1251
1344
|
|
|
1345
|
+
msgid "You can remediate by running a remote job or you can display a snippet for manual remediation."
|
|
1346
|
+
msgstr ""
|
|
1347
|
+
|
|
1252
1348
|
msgid "You can specify custom cron line, e.g. \"0 3 * * *\", separate each of 5 values by space"
|
|
1253
1349
|
msgstr "Você pode especificar cron line personalizado, ex. \"0 3 * * *\", separe cada um dos 5 valores por espaço "
|
|
1254
1350
|
|
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
# Yulia <yulia.poyarkova@redhat.com>, 2016
|
|
8
8
|
msgid ""
|
|
9
9
|
msgstr ""
|
|
10
|
-
"Project-Id-Version:
|
|
10
|
+
"Project-Id-Version: Foreman\n"
|
|
11
11
|
"Report-Msgid-Bugs-To: \n"
|
|
12
12
|
"PO-Revision-Date: 2016-04-14 07:48+0000\n"
|
|
13
13
|
"Last-Translator: FIRST AUTHOR <EMAIL@ADDRESS>, 2016\n"
|
|
@@ -385,15 +385,15 @@ msgstr "Некоторые отчеты не были удалены (всего
|
|
|
385
385
|
msgid "Successfully deleted %s compliance reports"
|
|
386
386
|
msgstr "Успешно удалено отчетов: %s "
|
|
387
387
|
|
|
388
|
-
#: ../app/controllers/arf_reports_controller.rb:
|
|
388
|
+
#: ../app/controllers/arf_reports_controller.rb:106
|
|
389
389
|
msgid "No compliance reports were found."
|
|
390
390
|
msgstr ""
|
|
391
391
|
|
|
392
|
-
#: ../app/controllers/arf_reports_controller.rb:
|
|
392
|
+
#: ../app/controllers/arf_reports_controller.rb:110
|
|
393
393
|
msgid "No compliance reports selected"
|
|
394
394
|
msgstr ""
|
|
395
395
|
|
|
396
|
-
#: ../app/controllers/arf_reports_controller.rb:
|
|
396
|
+
#: ../app/controllers/arf_reports_controller.rb:115
|
|
397
397
|
msgid "Something went wrong while selecting compliance reports - %s"
|
|
398
398
|
msgstr "Произошли ошибки при выборе отчетов: %s"
|
|
399
399
|
|
|
@@ -433,15 +433,15 @@ msgstr "Узлы больше не регламентируются полити
|
|
|
433
433
|
msgid "No valid policy ID provided"
|
|
434
434
|
msgstr ""
|
|
435
435
|
|
|
436
|
-
#: ../app/controllers/policies_controller.rb:125
|
|
437
|
-
msgid "No hosts were found."
|
|
438
|
-
msgstr "Узлов не найдено."
|
|
439
|
-
|
|
440
436
|
#: ../app/controllers/policies_controller.rb:129
|
|
437
|
+
msgid "No hosts were found with that id, name or query filter"
|
|
438
|
+
msgstr ""
|
|
439
|
+
|
|
440
|
+
#: ../app/controllers/policies_controller.rb:134
|
|
441
441
|
msgid "No hosts selected"
|
|
442
442
|
msgstr "Не выбран узел"
|
|
443
443
|
|
|
444
|
-
#: ../app/controllers/policies_controller.rb:
|
|
444
|
+
#: ../app/controllers/policies_controller.rb:139
|
|
445
445
|
msgid "Something went wrong while selecting hosts - %s"
|
|
446
446
|
msgstr "Произошли ошибки при выборе узлов: %s"
|
|
447
447
|
|
|
@@ -513,18 +513,22 @@ msgstr ""
|
|
|
513
513
|
msgid " through %s"
|
|
514
514
|
msgstr ""
|
|
515
515
|
|
|
516
|
-
#: ../app/helpers/arf_reports_helper.rb:
|
|
516
|
+
#: ../app/helpers/arf_reports_helper.rb:67
|
|
517
517
|
msgid "Hosts failing this rule"
|
|
518
518
|
msgstr ""
|
|
519
519
|
|
|
520
|
-
#: ../app/helpers/arf_reports_helper.rb:
|
|
520
|
+
#: ../app/helpers/arf_reports_helper.rb:68
|
|
521
521
|
msgid "Hosts passing this rule"
|
|
522
522
|
msgstr ""
|
|
523
523
|
|
|
524
|
-
#: ../app/helpers/arf_reports_helper.rb:
|
|
524
|
+
#: ../app/helpers/arf_reports_helper.rb:69
|
|
525
525
|
msgid "Hosts othering this rule"
|
|
526
526
|
msgstr ""
|
|
527
527
|
|
|
528
|
+
#: ../app/helpers/arf_reports_helper.rb:72
|
|
529
|
+
msgid "Remediation"
|
|
530
|
+
msgstr ""
|
|
531
|
+
|
|
528
532
|
#: ../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
|
|
529
533
|
msgid "Host"
|
|
530
534
|
msgstr "Узел"
|
|
@@ -1164,7 +1168,7 @@ msgstr "Порядковый номер дня в месяце (количест
|
|
|
1164
1168
|
msgid "You can specify custom cron line, e.g. \"0 3 * * *\", separate each of 5 values by space"
|
|
1165
1169
|
msgstr "Вы можете изменить расписание по своему усмотрению. Строка cron должна состоять из пяти значений, разделенных пробелами, например: «0 3 * * *»"
|
|
1166
1170
|
|
|
1167
|
-
#: ../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
|
|
1171
|
+
#: ../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
|
|
1168
1172
|
msgid "Name"
|
|
1169
1173
|
msgstr "Имя"
|
|
1170
1174
|
|
|
@@ -1490,14 +1494,22 @@ msgstr "Прокси OpenSCAP"
|
|
|
1490
1494
|
msgid "ID of OpenSCAP Proxy"
|
|
1491
1495
|
msgstr ""
|
|
1492
1496
|
|
|
1493
|
-
#: ../lib/foreman_openscap/engine.rb:270 ../lib/foreman_openscap/engine.rb:
|
|
1497
|
+
#: ../lib/foreman_openscap/engine.rb:270 ../lib/foreman_openscap/engine.rb:293
|
|
1494
1498
|
msgid "Run OpenSCAP scan"
|
|
1495
1499
|
msgstr ""
|
|
1496
1500
|
|
|
1497
|
-
#: ../lib/foreman_openscap/engine.rb:275 ../lib/foreman_openscap/engine.rb:
|
|
1501
|
+
#: ../lib/foreman_openscap/engine.rb:275 ../lib/foreman_openscap/engine.rb:294
|
|
1498
1502
|
msgid "Run OVAL scan"
|
|
1499
1503
|
msgstr ""
|
|
1500
1504
|
|
|
1505
|
+
#: ../lib/foreman_openscap/engine.rb:279 ../lib/foreman_openscap/engine.rb:295
|
|
1506
|
+
msgid "Run OpenSCAP remediation with Ansible"
|
|
1507
|
+
msgstr ""
|
|
1508
|
+
|
|
1509
|
+
#: ../lib/foreman_openscap/engine.rb:284 ../lib/foreman_openscap/engine.rb:296
|
|
1510
|
+
msgid "Run OpenSCAP remediation with Shell"
|
|
1511
|
+
msgstr ""
|
|
1512
|
+
|
|
1501
1513
|
#: ../webpack/components/ConfirmModal.js:19
|
|
1502
1514
|
msgid "Confirm"
|
|
1503
1515
|
msgstr ""
|
|
@@ -1510,14 +1522,130 @@ msgstr ""
|
|
|
1510
1522
|
msgid "There's no available report for this host"
|
|
1511
1523
|
msgstr ""
|
|
1512
1524
|
|
|
1513
|
-
#: ../webpack/components/
|
|
1514
|
-
msgid "
|
|
1525
|
+
#: ../webpack/components/OpenscapRemediationWizard/ViewSelectedHostsLink.js:27
|
|
1526
|
+
msgid "View selected hosts"
|
|
1515
1527
|
msgstr ""
|
|
1516
1528
|
|
|
1517
|
-
#: ../webpack/components/
|
|
1529
|
+
#: ../webpack/components/OpenscapRemediationWizard/index.js:69 ../webpack/components/OpenscapRemediationWizard/steps/ReviewHosts.js:174
|
|
1530
|
+
msgid "Review hosts"
|
|
1531
|
+
msgstr ""
|
|
1532
|
+
|
|
1533
|
+
#: ../webpack/components/OpenscapRemediationWizard/index.js:77 ../webpack/components/OpenscapRemediationWizard/steps/SnippetSelect.js:123
|
|
1534
|
+
msgid "Select snippet"
|
|
1535
|
+
msgstr ""
|
|
1536
|
+
|
|
1537
|
+
#: ../webpack/components/OpenscapRemediationWizard/index.js:85 ../webpack/components/OpenscapRemediationWizard/steps/ReviewRemediation.js:94
|
|
1538
|
+
msgid "Review remediation"
|
|
1539
|
+
msgstr ""
|
|
1540
|
+
|
|
1541
|
+
#: ../webpack/components/OpenscapRemediationWizard/index.js:89
|
|
1542
|
+
msgid "Run"
|
|
1543
|
+
msgstr ""
|
|
1544
|
+
|
|
1545
|
+
#: ../webpack/components/OpenscapRemediationWizard/index.js:93
|
|
1546
|
+
msgid "Done"
|
|
1547
|
+
msgstr ""
|
|
1548
|
+
|
|
1549
|
+
#: ../webpack/components/OpenscapRemediationWizard/index.js:127
|
|
1550
|
+
msgid "Remediate %s rule"
|
|
1551
|
+
msgstr ""
|
|
1552
|
+
|
|
1553
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/Finish.js:84
|
|
1554
|
+
msgid "Job details"
|
|
1555
|
+
msgstr ""
|
|
1556
|
+
|
|
1557
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/Finish.js:87
|
|
1558
|
+
msgid "Close"
|
|
1559
|
+
msgstr ""
|
|
1560
|
+
|
|
1561
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/Finish.js:97 ../webpack/components/OpenscapRemediationWizard/steps/SnippetSelect.js:144 ../webpack/components/withLoading.js:12
|
|
1518
1562
|
msgid "Error!"
|
|
1519
1563
|
msgstr ""
|
|
1520
1564
|
|
|
1565
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/Finish.js:105
|
|
1566
|
+
msgid "The job has started on selected host(s), you can check the status on the job details page."
|
|
1567
|
+
msgstr ""
|
|
1568
|
+
|
|
1569
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/ReviewHosts.js:167
|
|
1570
|
+
msgid "OS"
|
|
1571
|
+
msgstr ""
|
|
1572
|
+
|
|
1573
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/ReviewHosts.js:175
|
|
1574
|
+
msgid "By default, remediation is applied to the current host. Optionally, remediate any additional hosts that fail the rule."
|
|
1575
|
+
msgstr ""
|
|
1576
|
+
|
|
1577
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/ReviewRemediation.js:61
|
|
1578
|
+
msgid "Review the remediation snippet and apply it to the host manually."
|
|
1579
|
+
msgstr ""
|
|
1580
|
+
|
|
1581
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/ReviewRemediation.js:62
|
|
1582
|
+
msgid "Review the remediation snippet that will be applied to selected host(s)."
|
|
1583
|
+
msgstr ""
|
|
1584
|
+
|
|
1585
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/ReviewRemediation.js:67
|
|
1586
|
+
msgid "A reboot is required after applying remediation."
|
|
1587
|
+
msgstr ""
|
|
1588
|
+
|
|
1589
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/ReviewRemediation.js:68
|
|
1590
|
+
msgid "A reboot might be required after applying remediation."
|
|
1591
|
+
msgstr ""
|
|
1592
|
+
|
|
1593
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/ReviewRemediation.js:84
|
|
1594
|
+
msgid "Successfully copied to clipboard!"
|
|
1595
|
+
msgstr ""
|
|
1596
|
+
|
|
1597
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/ReviewRemediation.js:85
|
|
1598
|
+
msgid "Copy to clipboard"
|
|
1599
|
+
msgstr ""
|
|
1600
|
+
|
|
1601
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/ReviewRemediation.js:103
|
|
1602
|
+
msgid "Do not implement any of the recommended remedial actions or scripts without first testing them in a non-production environment."
|
|
1603
|
+
msgstr ""
|
|
1604
|
+
|
|
1605
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/ReviewRemediation.js:106
|
|
1606
|
+
msgid "Remediation might render the system non-functional."
|
|
1607
|
+
msgstr ""
|
|
1608
|
+
|
|
1609
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/ReviewRemediation.js:139
|
|
1610
|
+
msgid "Other hosts failing this rule"
|
|
1611
|
+
msgstr ""
|
|
1612
|
+
|
|
1613
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/ReviewRemediation.js:155
|
|
1614
|
+
msgid "Reboot the system(s)"
|
|
1615
|
+
msgstr ""
|
|
1616
|
+
|
|
1617
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/SnippetSelect.js:71
|
|
1618
|
+
msgid "Method"
|
|
1619
|
+
msgstr ""
|
|
1620
|
+
|
|
1621
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/SnippetSelect.js:77
|
|
1622
|
+
msgid "Remote job"
|
|
1623
|
+
msgstr ""
|
|
1624
|
+
|
|
1625
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/SnippetSelect.js:86
|
|
1626
|
+
msgid "Manual"
|
|
1627
|
+
msgstr ""
|
|
1628
|
+
|
|
1629
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/SnippetSelect.js:101
|
|
1630
|
+
msgid "There is no job to remediate with. Please remediate manually."
|
|
1631
|
+
msgstr ""
|
|
1632
|
+
|
|
1633
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/SnippetSelect.js:107
|
|
1634
|
+
msgid "Snippet"
|
|
1635
|
+
msgstr ""
|
|
1636
|
+
|
|
1637
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/SnippetSelect.js:150
|
|
1638
|
+
msgid "Select remediation method"
|
|
1639
|
+
msgstr ""
|
|
1640
|
+
|
|
1641
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/SnippetSelect.js:151
|
|
1642
|
+
msgid "You can remediate by running a remote job or you can display a snippet for manual remediation."
|
|
1643
|
+
msgstr ""
|
|
1644
|
+
|
|
1645
|
+
#: ../webpack/components/withDeleteModal.js:27
|
|
1646
|
+
msgid "Are you sure you want to delete %s?"
|
|
1647
|
+
msgstr ""
|
|
1648
|
+
|
|
1521
1649
|
#: ../webpack/components/withLoading.js:64
|
|
1522
1650
|
msgid "Permission denied"
|
|
1523
1651
|
msgstr ""
|