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 "%%{type} a été sélectionné pour déployer la stratégie auprès des
|
|
|
65
65
|
msgid "<b>Foreman</b> OpenSCAP summary"
|
|
66
66
|
msgstr "<b>Foreman</b> OpenSCAP Récapitulatif"
|
|
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 "Récapitulatif des rapports de stratégies OpenSCAP"
|
|
70
76
|
|
|
@@ -116,6 +122,9 @@ msgstr "Assignez openscap_proxy à %s avant de procéder."
|
|
|
116
122
|
msgid "Back"
|
|
117
123
|
msgstr "Précédent"
|
|
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 "Sélectionner une période"
|
|
|
161
170
|
msgid "Choose weekday"
|
|
162
171
|
msgstr "Sélectionner un jour de la semaine"
|
|
163
172
|
|
|
173
|
+
msgid "Close"
|
|
174
|
+
msgstr ""
|
|
175
|
+
|
|
164
176
|
msgid "Compliance"
|
|
165
177
|
msgstr "Conformité"
|
|
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 "Impossible de trouver l'hôte identifié par : %s"
|
|
199
214
|
|
|
@@ -305,9 +320,15 @@ msgstr "Détails de la stratégie de conformité {missing_vars}"
|
|
|
305
320
|
msgid "Directory to upload when using \"directory\" upload type"
|
|
306
321
|
msgstr "Répertoire à télécharger lors de l'utilisation du type de téléchargement \"répertoire\""
|
|
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 "Documentation"
|
|
310
328
|
|
|
329
|
+
msgid "Done"
|
|
330
|
+
msgstr ""
|
|
331
|
+
|
|
311
332
|
msgid "Download"
|
|
312
333
|
msgstr "Télécharger"
|
|
313
334
|
|
|
@@ -512,6 +533,9 @@ msgstr "Est-ce que theforeman.foreman_scap_client est présent ?"
|
|
|
512
533
|
msgid "It may sometimes be required to adjust the security policy to your specific needs. "
|
|
513
534
|
msgstr "Il est parfois nécessaire d'ajuster la stratégie de sécurité en fonction de vos besoins spécifiques."
|
|
514
535
|
|
|
536
|
+
msgid "Job details"
|
|
537
|
+
msgstr ""
|
|
538
|
+
|
|
515
539
|
msgid "Latest Compliance Reports"
|
|
516
540
|
msgstr "Derniers rapports de conformité"
|
|
517
541
|
|
|
@@ -545,9 +569,15 @@ msgstr "Chargement..."
|
|
|
545
569
|
msgid "Locations"
|
|
546
570
|
msgstr "Emplacements"
|
|
547
571
|
|
|
572
|
+
msgid "Manual"
|
|
573
|
+
msgstr ""
|
|
574
|
+
|
|
548
575
|
msgid "Message"
|
|
549
576
|
msgstr "Message"
|
|
550
577
|
|
|
578
|
+
msgid "Method"
|
|
579
|
+
msgstr ""
|
|
580
|
+
|
|
551
581
|
msgid "Monthly, day of month: %s"
|
|
552
582
|
msgstr ""
|
|
553
583
|
|
|
@@ -683,6 +713,9 @@ msgstr "Nombre d’évènements"
|
|
|
683
713
|
msgid "Number of a day in month, note that not all months have same count of days"
|
|
684
714
|
msgstr "Nombre de jours dans un mois, notez que chaque mois n'a pas le même nombre de jours"
|
|
685
715
|
|
|
716
|
+
msgid "OS"
|
|
717
|
+
msgstr ""
|
|
718
|
+
|
|
686
719
|
msgid "OVAL Content"
|
|
687
720
|
msgstr "Contenu OVAL"
|
|
688
721
|
|
|
@@ -782,6 +815,9 @@ msgstr "Nom de fichier original du fichier XML"
|
|
|
782
815
|
msgid "Other"
|
|
783
816
|
msgstr "Autre"
|
|
784
817
|
|
|
818
|
+
msgid "Other hosts failing this rule"
|
|
819
|
+
msgstr ""
|
|
820
|
+
|
|
785
821
|
msgid "Othered"
|
|
786
822
|
msgstr "Autre"
|
|
787
823
|
|
|
@@ -874,6 +910,9 @@ msgstr "Classe Puppet"
|
|
|
874
910
|
msgid "Rationale"
|
|
875
911
|
msgstr "Rationale"
|
|
876
912
|
|
|
913
|
+
msgid "Reboot the system(s)"
|
|
914
|
+
msgstr ""
|
|
915
|
+
|
|
877
916
|
msgid "Red Hat %s default content"
|
|
878
917
|
msgstr ""
|
|
879
918
|
|
|
@@ -883,9 +922,21 @@ msgstr "Réf Id"
|
|
|
883
922
|
msgid "References"
|
|
884
923
|
msgstr "Références"
|
|
885
924
|
|
|
925
|
+
msgid "Remediate %s rule"
|
|
926
|
+
msgstr ""
|
|
927
|
+
|
|
928
|
+
msgid "Remediation"
|
|
929
|
+
msgstr ""
|
|
930
|
+
|
|
931
|
+
msgid "Remediation might render the system non-functional."
|
|
932
|
+
msgstr ""
|
|
933
|
+
|
|
886
934
|
msgid "Remote action:"
|
|
887
935
|
msgstr "Action distante :"
|
|
888
936
|
|
|
937
|
+
msgid "Remote job"
|
|
938
|
+
msgstr ""
|
|
939
|
+
|
|
889
940
|
msgid "Report Metrics"
|
|
890
941
|
msgstr "Métriques du rapport"
|
|
891
942
|
|
|
@@ -922,12 +973,33 @@ msgstr "Ressource"
|
|
|
922
973
|
msgid "Result"
|
|
923
974
|
msgstr "Résultat"
|
|
924
975
|
|
|
976
|
+
msgid "Review hosts"
|
|
977
|
+
msgstr ""
|
|
978
|
+
|
|
979
|
+
msgid "Review remediation"
|
|
980
|
+
msgstr ""
|
|
981
|
+
|
|
982
|
+
msgid "Review the remediation snippet and apply it to the host manually."
|
|
983
|
+
msgstr ""
|
|
984
|
+
|
|
985
|
+
msgid "Review the remediation snippet that will be applied to selected host(s)."
|
|
986
|
+
msgstr ""
|
|
987
|
+
|
|
925
988
|
msgid "Rule Results"
|
|
926
989
|
msgstr "Résultats de règle"
|
|
927
990
|
|
|
991
|
+
msgid "Run"
|
|
992
|
+
msgstr ""
|
|
993
|
+
|
|
928
994
|
msgid "Run OVAL scan"
|
|
929
995
|
msgstr "Exécuter le scan OVAL"
|
|
930
996
|
|
|
997
|
+
msgid "Run OpenSCAP remediation with Ansible"
|
|
998
|
+
msgstr ""
|
|
999
|
+
|
|
1000
|
+
msgid "Run OpenSCAP remediation with Shell"
|
|
1001
|
+
msgstr ""
|
|
1002
|
+
|
|
931
1003
|
msgid "Run OpenSCAP scan"
|
|
932
1004
|
msgstr "Exécuter une analyse OpenSCAP"
|
|
933
1005
|
|
|
@@ -970,6 +1042,12 @@ msgstr "Sélectionner le proxy OpenSCAP"
|
|
|
970
1042
|
msgid "Select all items in this page"
|
|
971
1043
|
msgstr "Sélectionner tous les éléments de cette page"
|
|
972
1044
|
|
|
1045
|
+
msgid "Select remediation method"
|
|
1046
|
+
msgstr ""
|
|
1047
|
+
|
|
1048
|
+
msgid "Select snippet"
|
|
1049
|
+
msgstr ""
|
|
1050
|
+
|
|
973
1051
|
msgid "Severity"
|
|
974
1052
|
msgstr "Sévérité"
|
|
975
1053
|
|
|
@@ -1012,6 +1090,9 @@ msgstr "Afficher les messages de log:"
|
|
|
1012
1090
|
msgid "Smart Class Parameters"
|
|
1013
1091
|
msgstr "Paramètres smart class"
|
|
1014
1092
|
|
|
1093
|
+
msgid "Snippet"
|
|
1094
|
+
msgstr ""
|
|
1095
|
+
|
|
1015
1096
|
msgid "Something went wrong while selecting compliance reports - %s"
|
|
1016
1097
|
msgstr "Quelque chose s'est mal passé lors de la sélection des rapports de conformité - %s"
|
|
1017
1098
|
|
|
@@ -1030,6 +1111,9 @@ msgstr "Statut de la table"
|
|
|
1030
1111
|
msgid "Submit"
|
|
1031
1112
|
msgstr "Envoyer"
|
|
1032
1113
|
|
|
1114
|
+
msgid "Successfully copied to clipboard!"
|
|
1115
|
+
msgstr ""
|
|
1116
|
+
|
|
1033
1117
|
msgid "Successfully deleted %s compliance reports"
|
|
1034
1118
|
msgstr "Rapports de conformité %s supprimés"
|
|
1035
1119
|
|
|
@@ -1094,9 +1178,15 @@ msgstr "Impossible d'atteindre les proxies suivants : %s. Veillez à ce qu'ils s
|
|
|
1094
1178
|
msgid "The identifier of the host"
|
|
1095
1179
|
msgstr "Identifiant de l’hôte"
|
|
1096
1180
|
|
|
1181
|
+
msgid "The job has started on selected host(s), you can check the status on the job details page."
|
|
1182
|
+
msgstr ""
|
|
1183
|
+
|
|
1097
1184
|
msgid "There are significant differences in deployment options."
|
|
1098
1185
|
msgstr "Il existe des différences importantes dans les options de déploiement."
|
|
1099
1186
|
|
|
1187
|
+
msgid "There is no job to remediate with. Please remediate manually."
|
|
1188
|
+
msgstr ""
|
|
1189
|
+
|
|
1100
1190
|
msgid "There was a following error when deleting %(name)s: %(error)s"
|
|
1101
1191
|
msgstr ""
|
|
1102
1192
|
|
|
@@ -1220,6 +1310,9 @@ msgstr "Afficher le rapport"
|
|
|
1220
1310
|
msgid "View full report"
|
|
1221
1311
|
msgstr "Voir le rapport complet"
|
|
1222
1312
|
|
|
1313
|
+
msgid "View selected hosts"
|
|
1314
|
+
msgstr ""
|
|
1315
|
+
|
|
1223
1316
|
msgid "Was %s configured successfully?"
|
|
1224
1317
|
msgstr "%s a-t-il été configuré avec succès ?"
|
|
1225
1318
|
|
|
@@ -1250,6 +1343,9 @@ msgstr "Oui"
|
|
|
1250
1343
|
msgid "You are not authorized to view the page. "
|
|
1251
1344
|
msgstr ""
|
|
1252
1345
|
|
|
1346
|
+
msgid "You can remediate by running a remote job or you can display a snippet for manual remediation."
|
|
1347
|
+
msgstr ""
|
|
1348
|
+
|
|
1253
1349
|
msgid "You can specify custom cron line, e.g. \"0 3 * * *\", separate each of 5 values by space"
|
|
1254
1350
|
msgstr "Vous pouvez personnaliser votre ligne cron. \"0 3 * * *\", séparer chacune des 5 valeurs par un espace"
|
|
1255
1351
|
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
# Translators:
|
|
6
6
|
msgid ""
|
|
7
7
|
msgstr ""
|
|
8
|
-
"Project-Id-Version:
|
|
8
|
+
"Project-Id-Version: Foreman\n"
|
|
9
9
|
"Report-Msgid-Bugs-To: \n"
|
|
10
10
|
"PO-Revision-Date: 2016-04-14 07:48+0000\n"
|
|
11
11
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
|
@@ -381,15 +381,15 @@ msgstr ""
|
|
|
381
381
|
msgid "Successfully deleted %s compliance reports"
|
|
382
382
|
msgstr ""
|
|
383
383
|
|
|
384
|
-
#: ../app/controllers/arf_reports_controller.rb:
|
|
384
|
+
#: ../app/controllers/arf_reports_controller.rb:106
|
|
385
385
|
msgid "No compliance reports were found."
|
|
386
386
|
msgstr ""
|
|
387
387
|
|
|
388
|
-
#: ../app/controllers/arf_reports_controller.rb:
|
|
388
|
+
#: ../app/controllers/arf_reports_controller.rb:110
|
|
389
389
|
msgid "No compliance reports selected"
|
|
390
390
|
msgstr ""
|
|
391
391
|
|
|
392
|
-
#: ../app/controllers/arf_reports_controller.rb:
|
|
392
|
+
#: ../app/controllers/arf_reports_controller.rb:115
|
|
393
393
|
msgid "Something went wrong while selecting compliance reports - %s"
|
|
394
394
|
msgstr ""
|
|
395
395
|
|
|
@@ -429,15 +429,15 @@ msgstr ""
|
|
|
429
429
|
msgid "No valid policy ID provided"
|
|
430
430
|
msgstr ""
|
|
431
431
|
|
|
432
|
-
#: ../app/controllers/policies_controller.rb:
|
|
433
|
-
msgid "No hosts were found
|
|
432
|
+
#: ../app/controllers/policies_controller.rb:129
|
|
433
|
+
msgid "No hosts were found with that id, name or query filter"
|
|
434
434
|
msgstr ""
|
|
435
435
|
|
|
436
|
-
#: ../app/controllers/policies_controller.rb:
|
|
436
|
+
#: ../app/controllers/policies_controller.rb:134
|
|
437
437
|
msgid "No hosts selected"
|
|
438
438
|
msgstr "Ningún equipo seleccionado"
|
|
439
439
|
|
|
440
|
-
#: ../app/controllers/policies_controller.rb:
|
|
440
|
+
#: ../app/controllers/policies_controller.rb:139
|
|
441
441
|
msgid "Something went wrong while selecting hosts - %s"
|
|
442
442
|
msgstr "Algo fallou ao seleccionar equipos - %s"
|
|
443
443
|
|
|
@@ -509,18 +509,22 @@ msgstr ""
|
|
|
509
509
|
msgid " through %s"
|
|
510
510
|
msgstr ""
|
|
511
511
|
|
|
512
|
-
#: ../app/helpers/arf_reports_helper.rb:
|
|
512
|
+
#: ../app/helpers/arf_reports_helper.rb:67
|
|
513
513
|
msgid "Hosts failing this rule"
|
|
514
514
|
msgstr ""
|
|
515
515
|
|
|
516
|
-
#: ../app/helpers/arf_reports_helper.rb:
|
|
516
|
+
#: ../app/helpers/arf_reports_helper.rb:68
|
|
517
517
|
msgid "Hosts passing this rule"
|
|
518
518
|
msgstr ""
|
|
519
519
|
|
|
520
|
-
#: ../app/helpers/arf_reports_helper.rb:
|
|
520
|
+
#: ../app/helpers/arf_reports_helper.rb:69
|
|
521
521
|
msgid "Hosts othering this rule"
|
|
522
522
|
msgstr ""
|
|
523
523
|
|
|
524
|
+
#: ../app/helpers/arf_reports_helper.rb:72
|
|
525
|
+
msgid "Remediation"
|
|
526
|
+
msgstr ""
|
|
527
|
+
|
|
524
528
|
#: ../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
|
|
525
529
|
msgid "Host"
|
|
526
530
|
msgstr "Equipo"
|
|
@@ -1160,7 +1164,7 @@ msgstr ""
|
|
|
1160
1164
|
msgid "You can specify custom cron line, e.g. \"0 3 * * *\", separate each of 5 values by space"
|
|
1161
1165
|
msgstr ""
|
|
1162
1166
|
|
|
1163
|
-
#: ../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
|
|
1167
|
+
#: ../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
|
|
1164
1168
|
msgid "Name"
|
|
1165
1169
|
msgstr "Nome"
|
|
1166
1170
|
|
|
@@ -1486,14 +1490,22 @@ msgstr ""
|
|
|
1486
1490
|
msgid "ID of OpenSCAP Proxy"
|
|
1487
1491
|
msgstr ""
|
|
1488
1492
|
|
|
1489
|
-
#: ../lib/foreman_openscap/engine.rb:270 ../lib/foreman_openscap/engine.rb:
|
|
1493
|
+
#: ../lib/foreman_openscap/engine.rb:270 ../lib/foreman_openscap/engine.rb:293
|
|
1490
1494
|
msgid "Run OpenSCAP scan"
|
|
1491
1495
|
msgstr ""
|
|
1492
1496
|
|
|
1493
|
-
#: ../lib/foreman_openscap/engine.rb:275 ../lib/foreman_openscap/engine.rb:
|
|
1497
|
+
#: ../lib/foreman_openscap/engine.rb:275 ../lib/foreman_openscap/engine.rb:294
|
|
1494
1498
|
msgid "Run OVAL scan"
|
|
1495
1499
|
msgstr ""
|
|
1496
1500
|
|
|
1501
|
+
#: ../lib/foreman_openscap/engine.rb:279 ../lib/foreman_openscap/engine.rb:295
|
|
1502
|
+
msgid "Run OpenSCAP remediation with Ansible"
|
|
1503
|
+
msgstr ""
|
|
1504
|
+
|
|
1505
|
+
#: ../lib/foreman_openscap/engine.rb:284 ../lib/foreman_openscap/engine.rb:296
|
|
1506
|
+
msgid "Run OpenSCAP remediation with Shell"
|
|
1507
|
+
msgstr ""
|
|
1508
|
+
|
|
1497
1509
|
#: ../webpack/components/ConfirmModal.js:19
|
|
1498
1510
|
msgid "Confirm"
|
|
1499
1511
|
msgstr ""
|
|
@@ -1506,14 +1518,130 @@ msgstr ""
|
|
|
1506
1518
|
msgid "There's no available report for this host"
|
|
1507
1519
|
msgstr ""
|
|
1508
1520
|
|
|
1509
|
-
#: ../webpack/components/
|
|
1510
|
-
msgid "
|
|
1521
|
+
#: ../webpack/components/OpenscapRemediationWizard/ViewSelectedHostsLink.js:27
|
|
1522
|
+
msgid "View selected hosts"
|
|
1523
|
+
msgstr ""
|
|
1524
|
+
|
|
1525
|
+
#: ../webpack/components/OpenscapRemediationWizard/index.js:69 ../webpack/components/OpenscapRemediationWizard/steps/ReviewHosts.js:174
|
|
1526
|
+
msgid "Review hosts"
|
|
1527
|
+
msgstr ""
|
|
1528
|
+
|
|
1529
|
+
#: ../webpack/components/OpenscapRemediationWizard/index.js:77 ../webpack/components/OpenscapRemediationWizard/steps/SnippetSelect.js:123
|
|
1530
|
+
msgid "Select snippet"
|
|
1531
|
+
msgstr ""
|
|
1532
|
+
|
|
1533
|
+
#: ../webpack/components/OpenscapRemediationWizard/index.js:85 ../webpack/components/OpenscapRemediationWizard/steps/ReviewRemediation.js:94
|
|
1534
|
+
msgid "Review remediation"
|
|
1535
|
+
msgstr ""
|
|
1536
|
+
|
|
1537
|
+
#: ../webpack/components/OpenscapRemediationWizard/index.js:89
|
|
1538
|
+
msgid "Run"
|
|
1511
1539
|
msgstr ""
|
|
1512
1540
|
|
|
1513
|
-
#: ../webpack/components/
|
|
1541
|
+
#: ../webpack/components/OpenscapRemediationWizard/index.js:93
|
|
1542
|
+
msgid "Done"
|
|
1543
|
+
msgstr ""
|
|
1544
|
+
|
|
1545
|
+
#: ../webpack/components/OpenscapRemediationWizard/index.js:127
|
|
1546
|
+
msgid "Remediate %s rule"
|
|
1547
|
+
msgstr ""
|
|
1548
|
+
|
|
1549
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/Finish.js:84
|
|
1550
|
+
msgid "Job details"
|
|
1551
|
+
msgstr ""
|
|
1552
|
+
|
|
1553
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/Finish.js:87
|
|
1554
|
+
msgid "Close"
|
|
1555
|
+
msgstr ""
|
|
1556
|
+
|
|
1557
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/Finish.js:97 ../webpack/components/OpenscapRemediationWizard/steps/SnippetSelect.js:144 ../webpack/components/withLoading.js:12
|
|
1514
1558
|
msgid "Error!"
|
|
1515
1559
|
msgstr ""
|
|
1516
1560
|
|
|
1561
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/Finish.js:105
|
|
1562
|
+
msgid "The job has started on selected host(s), you can check the status on the job details page."
|
|
1563
|
+
msgstr ""
|
|
1564
|
+
|
|
1565
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/ReviewHosts.js:167
|
|
1566
|
+
msgid "OS"
|
|
1567
|
+
msgstr ""
|
|
1568
|
+
|
|
1569
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/ReviewHosts.js:175
|
|
1570
|
+
msgid "By default, remediation is applied to the current host. Optionally, remediate any additional hosts that fail the rule."
|
|
1571
|
+
msgstr ""
|
|
1572
|
+
|
|
1573
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/ReviewRemediation.js:61
|
|
1574
|
+
msgid "Review the remediation snippet and apply it to the host manually."
|
|
1575
|
+
msgstr ""
|
|
1576
|
+
|
|
1577
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/ReviewRemediation.js:62
|
|
1578
|
+
msgid "Review the remediation snippet that will be applied to selected host(s)."
|
|
1579
|
+
msgstr ""
|
|
1580
|
+
|
|
1581
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/ReviewRemediation.js:67
|
|
1582
|
+
msgid "A reboot is required after applying remediation."
|
|
1583
|
+
msgstr ""
|
|
1584
|
+
|
|
1585
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/ReviewRemediation.js:68
|
|
1586
|
+
msgid "A reboot might be required after applying remediation."
|
|
1587
|
+
msgstr ""
|
|
1588
|
+
|
|
1589
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/ReviewRemediation.js:84
|
|
1590
|
+
msgid "Successfully copied to clipboard!"
|
|
1591
|
+
msgstr ""
|
|
1592
|
+
|
|
1593
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/ReviewRemediation.js:85
|
|
1594
|
+
msgid "Copy to clipboard"
|
|
1595
|
+
msgstr ""
|
|
1596
|
+
|
|
1597
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/ReviewRemediation.js:103
|
|
1598
|
+
msgid "Do not implement any of the recommended remedial actions or scripts without first testing them in a non-production environment."
|
|
1599
|
+
msgstr ""
|
|
1600
|
+
|
|
1601
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/ReviewRemediation.js:106
|
|
1602
|
+
msgid "Remediation might render the system non-functional."
|
|
1603
|
+
msgstr ""
|
|
1604
|
+
|
|
1605
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/ReviewRemediation.js:139
|
|
1606
|
+
msgid "Other hosts failing this rule"
|
|
1607
|
+
msgstr ""
|
|
1608
|
+
|
|
1609
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/ReviewRemediation.js:155
|
|
1610
|
+
msgid "Reboot the system(s)"
|
|
1611
|
+
msgstr ""
|
|
1612
|
+
|
|
1613
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/SnippetSelect.js:71
|
|
1614
|
+
msgid "Method"
|
|
1615
|
+
msgstr ""
|
|
1616
|
+
|
|
1617
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/SnippetSelect.js:77
|
|
1618
|
+
msgid "Remote job"
|
|
1619
|
+
msgstr ""
|
|
1620
|
+
|
|
1621
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/SnippetSelect.js:86
|
|
1622
|
+
msgid "Manual"
|
|
1623
|
+
msgstr ""
|
|
1624
|
+
|
|
1625
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/SnippetSelect.js:101
|
|
1626
|
+
msgid "There is no job to remediate with. Please remediate manually."
|
|
1627
|
+
msgstr ""
|
|
1628
|
+
|
|
1629
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/SnippetSelect.js:107
|
|
1630
|
+
msgid "Snippet"
|
|
1631
|
+
msgstr ""
|
|
1632
|
+
|
|
1633
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/SnippetSelect.js:150
|
|
1634
|
+
msgid "Select remediation method"
|
|
1635
|
+
msgstr ""
|
|
1636
|
+
|
|
1637
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/SnippetSelect.js:151
|
|
1638
|
+
msgid "You can remediate by running a remote job or you can display a snippet for manual remediation."
|
|
1639
|
+
msgstr ""
|
|
1640
|
+
|
|
1641
|
+
#: ../webpack/components/withDeleteModal.js:27
|
|
1642
|
+
msgid "Are you sure you want to delete %s?"
|
|
1643
|
+
msgstr ""
|
|
1644
|
+
|
|
1517
1645
|
#: ../webpack/components/withLoading.js:64
|
|
1518
1646
|
msgid "Permission denied"
|
|
1519
1647
|
msgstr ""
|