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 "已选择 %{type} 将策略部署到客户端,但是%{type} 不可用
|
|
|
61
61
|
msgid "<b>Foreman</b> OpenSCAP summary"
|
|
62
62
|
msgstr "<b>Foreman</b> OpenSCAP 摘要"
|
|
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 "OpenSCAP 策略报告摘要"
|
|
66
72
|
|
|
@@ -112,6 +118,9 @@ msgstr "在继续前,把 openscap_proxy 分配给 %s。"
|
|
|
112
118
|
msgid "Back"
|
|
113
119
|
msgstr "返回"
|
|
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 "无法找到由 %s 标识的主机"
|
|
195
210
|
|
|
@@ -301,9 +316,15 @@ msgstr "合规政策 %s 详情"
|
|
|
301
316
|
msgid "Directory to upload when using \"directory\" upload type"
|
|
302
317
|
msgstr "当使用 “directory” 上载类型时要上传的目录"
|
|
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 "文档"
|
|
306
324
|
|
|
325
|
+
msgid "Done"
|
|
326
|
+
msgstr ""
|
|
327
|
+
|
|
307
328
|
msgid "Download"
|
|
308
329
|
msgstr "下載"
|
|
309
330
|
|
|
@@ -508,6 +529,9 @@ msgstr "是否存在 foreman.foreman_scap_client?"
|
|
|
508
529
|
msgid "It may sometimes be required to adjust the security policy to your specific needs. "
|
|
509
530
|
msgstr "有些可能需要根据您的具体需求调整安全策略。"
|
|
510
531
|
|
|
532
|
+
msgid "Job details"
|
|
533
|
+
msgstr ""
|
|
534
|
+
|
|
511
535
|
msgid "Latest Compliance Reports"
|
|
512
536
|
msgstr "最新合规报告"
|
|
513
537
|
|
|
@@ -541,9 +565,15 @@ msgstr "载入中..."
|
|
|
541
565
|
msgid "Locations"
|
|
542
566
|
msgstr "位置"
|
|
543
567
|
|
|
568
|
+
msgid "Manual"
|
|
569
|
+
msgstr ""
|
|
570
|
+
|
|
544
571
|
msgid "Message"
|
|
545
572
|
msgstr "信息"
|
|
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 "事件数量"
|
|
|
679
709
|
msgid "Number of a day in month, note that not all months have same count of days"
|
|
680
710
|
msgstr "月份中的日子,請注意並不是所有月份都有同樣的天數"
|
|
681
711
|
|
|
712
|
+
msgid "OS"
|
|
713
|
+
msgstr ""
|
|
714
|
+
|
|
682
715
|
msgid "OVAL Content"
|
|
683
716
|
msgstr "OVAL 内容"
|
|
684
717
|
|
|
@@ -778,6 +811,9 @@ msgstr "XML 文件的原文件名称"
|
|
|
778
811
|
msgid "Other"
|
|
779
812
|
msgstr "其他"
|
|
780
813
|
|
|
814
|
+
msgid "Other hosts failing this rule"
|
|
815
|
+
msgstr ""
|
|
816
|
+
|
|
781
817
|
msgid "Othered"
|
|
782
818
|
msgstr "其它"
|
|
783
819
|
|
|
@@ -870,6 +906,9 @@ msgstr "Puppet 类别"
|
|
|
870
906
|
msgid "Rationale"
|
|
871
907
|
msgstr "理由"
|
|
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 "参考 id"
|
|
|
879
918
|
msgid "References"
|
|
880
919
|
msgstr "参考"
|
|
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 "远程操作:"
|
|
884
932
|
|
|
933
|
+
msgid "Remote job"
|
|
934
|
+
msgstr ""
|
|
935
|
+
|
|
885
936
|
msgid "Report Metrics"
|
|
886
937
|
msgstr "报告指标"
|
|
887
938
|
|
|
@@ -918,12 +969,33 @@ msgstr "资源"
|
|
|
918
969
|
msgid "Result"
|
|
919
970
|
msgstr "结果"
|
|
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 "规则结果"
|
|
923
986
|
|
|
987
|
+
msgid "Run"
|
|
988
|
+
msgstr ""
|
|
989
|
+
|
|
924
990
|
msgid "Run OVAL scan"
|
|
925
991
|
msgstr "运行 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 "运行 OpenSCAP 扫描"
|
|
929
1001
|
|
|
@@ -966,6 +1038,12 @@ msgstr "选择 OpenSCAP 代理"
|
|
|
966
1038
|
msgid "Select all items in this page"
|
|
967
1039
|
msgstr "选择这个页中的所有项"
|
|
968
1040
|
|
|
1041
|
+
msgid "Select remediation method"
|
|
1042
|
+
msgstr ""
|
|
1043
|
+
|
|
1044
|
+
msgid "Select snippet"
|
|
1045
|
+
msgstr ""
|
|
1046
|
+
|
|
969
1047
|
msgid "Severity"
|
|
970
1048
|
msgstr "严重性"
|
|
971
1049
|
|
|
@@ -1008,6 +1086,9 @@ msgstr "显示日志信息:"
|
|
|
1008
1086
|
msgid "Smart Class Parameters"
|
|
1009
1087
|
msgstr "智能类参数"
|
|
1010
1088
|
|
|
1089
|
+
msgid "Snippet"
|
|
1090
|
+
msgstr ""
|
|
1091
|
+
|
|
1011
1092
|
msgid "Something went wrong while selecting compliance reports - %s"
|
|
1012
1093
|
msgstr "在选择合规报告时出错 - %s"
|
|
1013
1094
|
|
|
@@ -1026,6 +1107,9 @@ msgstr "状态表"
|
|
|
1026
1107
|
msgid "Submit"
|
|
1027
1108
|
msgstr "提交"
|
|
1028
1109
|
|
|
1110
|
+
msgid "Successfully copied to clipboard!"
|
|
1111
|
+
msgstr ""
|
|
1112
|
+
|
|
1029
1113
|
msgid "Successfully deleted %s compliance reports"
|
|
1030
1114
|
msgstr "刪除 %s 合规报告成功"
|
|
1031
1115
|
|
|
@@ -1090,9 +1174,15 @@ msgstr "无法访问下列代理服务器:%s。请确保它们可用,以便
|
|
|
1090
1174
|
msgid "The identifier of the host"
|
|
1091
1175
|
msgstr "主机 ID"
|
|
1092
1176
|
|
|
1177
|
+
msgid "The job has started on selected host(s), you can check the status on the job details page."
|
|
1178
|
+
msgstr ""
|
|
1179
|
+
|
|
1093
1180
|
msgid "There are significant differences in deployment options."
|
|
1094
1181
|
msgstr "部署选项之间存在重大差异。"
|
|
1095
1182
|
|
|
1183
|
+
msgid "There is no job to remediate with. Please remediate manually."
|
|
1184
|
+
msgstr ""
|
|
1185
|
+
|
|
1096
1186
|
msgid "There was a following error when deleting %(name)s: %(error)s"
|
|
1097
1187
|
msgstr ""
|
|
1098
1188
|
|
|
@@ -1214,6 +1304,9 @@ msgstr "查看报表"
|
|
|
1214
1304
|
msgid "View full report"
|
|
1215
1305
|
msgstr "查看完整报告"
|
|
1216
1306
|
|
|
1307
|
+
msgid "View selected hosts"
|
|
1308
|
+
msgstr ""
|
|
1309
|
+
|
|
1217
1310
|
msgid "Was %s configured successfully?"
|
|
1218
1311
|
msgstr "%s 配置成功吗?"
|
|
1219
1312
|
|
|
@@ -1244,6 +1337,9 @@ msgstr "是"
|
|
|
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 "您可以设置定制的 cron 行,如 \"0 3 * * *\",其中的 5 个值由空格分隔"
|
|
1249
1345
|
|
|
@@ -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"
|
|
@@ -382,15 +382,15 @@ msgstr "刪除 %s 合規報告失敗"
|
|
|
382
382
|
msgid "Successfully deleted %s compliance reports"
|
|
383
383
|
msgstr "刪除 %s 合規報告成功"
|
|
384
384
|
|
|
385
|
-
#: ../app/controllers/arf_reports_controller.rb:
|
|
385
|
+
#: ../app/controllers/arf_reports_controller.rb:106
|
|
386
386
|
msgid "No compliance reports were found."
|
|
387
387
|
msgstr ""
|
|
388
388
|
|
|
389
|
-
#: ../app/controllers/arf_reports_controller.rb:
|
|
389
|
+
#: ../app/controllers/arf_reports_controller.rb:110
|
|
390
390
|
msgid "No compliance reports selected"
|
|
391
391
|
msgstr ""
|
|
392
392
|
|
|
393
|
-
#: ../app/controllers/arf_reports_controller.rb:
|
|
393
|
+
#: ../app/controllers/arf_reports_controller.rb:115
|
|
394
394
|
msgid "Something went wrong while selecting compliance reports - %s"
|
|
395
395
|
msgstr "選擇合規報告時發生了錯誤 - %s"
|
|
396
396
|
|
|
@@ -430,15 +430,15 @@ msgstr "已更新主機:未從合規政策指定 '%s'"
|
|
|
430
430
|
msgid "No valid policy ID provided"
|
|
431
431
|
msgstr ""
|
|
432
432
|
|
|
433
|
-
#: ../app/controllers/policies_controller.rb:125
|
|
434
|
-
msgid "No hosts were found."
|
|
435
|
-
msgstr "找不到主機。"
|
|
436
|
-
|
|
437
433
|
#: ../app/controllers/policies_controller.rb:129
|
|
434
|
+
msgid "No hosts were found with that id, name or query filter"
|
|
435
|
+
msgstr ""
|
|
436
|
+
|
|
437
|
+
#: ../app/controllers/policies_controller.rb:134
|
|
438
438
|
msgid "No hosts selected"
|
|
439
439
|
msgstr "未選擇主機"
|
|
440
440
|
|
|
441
|
-
#: ../app/controllers/policies_controller.rb:
|
|
441
|
+
#: ../app/controllers/policies_controller.rb:139
|
|
442
442
|
msgid "Something went wrong while selecting hosts - %s"
|
|
443
443
|
msgstr "選擇主機時發生了錯誤 - %s"
|
|
444
444
|
|
|
@@ -510,18 +510,22 @@ msgstr ""
|
|
|
510
510
|
msgid " through %s"
|
|
511
511
|
msgstr ""
|
|
512
512
|
|
|
513
|
-
#: ../app/helpers/arf_reports_helper.rb:
|
|
513
|
+
#: ../app/helpers/arf_reports_helper.rb:67
|
|
514
514
|
msgid "Hosts failing this rule"
|
|
515
515
|
msgstr ""
|
|
516
516
|
|
|
517
|
-
#: ../app/helpers/arf_reports_helper.rb:
|
|
517
|
+
#: ../app/helpers/arf_reports_helper.rb:68
|
|
518
518
|
msgid "Hosts passing this rule"
|
|
519
519
|
msgstr ""
|
|
520
520
|
|
|
521
|
-
#: ../app/helpers/arf_reports_helper.rb:
|
|
521
|
+
#: ../app/helpers/arf_reports_helper.rb:69
|
|
522
522
|
msgid "Hosts othering this rule"
|
|
523
523
|
msgstr ""
|
|
524
524
|
|
|
525
|
+
#: ../app/helpers/arf_reports_helper.rb:72
|
|
526
|
+
msgid "Remediation"
|
|
527
|
+
msgstr ""
|
|
528
|
+
|
|
525
529
|
#: ../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
|
|
526
530
|
msgid "Host"
|
|
527
531
|
msgstr "主機"
|
|
@@ -1161,7 +1165,7 @@ msgstr "月份中的日子,請注意並不是所有月份都有同樣的天數
|
|
|
1161
1165
|
msgid "You can specify custom cron line, e.g. \"0 3 * * *\", separate each of 5 values by space"
|
|
1162
1166
|
msgstr "您可指定自訂的 cron 行,例如\"0 3 * * *\",五個數值均由空格隔開"
|
|
1163
1167
|
|
|
1164
|
-
#: ../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
|
|
1168
|
+
#: ../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
|
|
1165
1169
|
msgid "Name"
|
|
1166
1170
|
msgstr "名稱"
|
|
1167
1171
|
|
|
@@ -1487,14 +1491,22 @@ msgstr ""
|
|
|
1487
1491
|
msgid "ID of OpenSCAP Proxy"
|
|
1488
1492
|
msgstr ""
|
|
1489
1493
|
|
|
1490
|
-
#: ../lib/foreman_openscap/engine.rb:270 ../lib/foreman_openscap/engine.rb:
|
|
1494
|
+
#: ../lib/foreman_openscap/engine.rb:270 ../lib/foreman_openscap/engine.rb:293
|
|
1491
1495
|
msgid "Run OpenSCAP scan"
|
|
1492
1496
|
msgstr ""
|
|
1493
1497
|
|
|
1494
|
-
#: ../lib/foreman_openscap/engine.rb:275 ../lib/foreman_openscap/engine.rb:
|
|
1498
|
+
#: ../lib/foreman_openscap/engine.rb:275 ../lib/foreman_openscap/engine.rb:294
|
|
1495
1499
|
msgid "Run OVAL scan"
|
|
1496
1500
|
msgstr ""
|
|
1497
1501
|
|
|
1502
|
+
#: ../lib/foreman_openscap/engine.rb:279 ../lib/foreman_openscap/engine.rb:295
|
|
1503
|
+
msgid "Run OpenSCAP remediation with Ansible"
|
|
1504
|
+
msgstr ""
|
|
1505
|
+
|
|
1506
|
+
#: ../lib/foreman_openscap/engine.rb:284 ../lib/foreman_openscap/engine.rb:296
|
|
1507
|
+
msgid "Run OpenSCAP remediation with Shell"
|
|
1508
|
+
msgstr ""
|
|
1509
|
+
|
|
1498
1510
|
#: ../webpack/components/ConfirmModal.js:19
|
|
1499
1511
|
msgid "Confirm"
|
|
1500
1512
|
msgstr ""
|
|
@@ -1507,14 +1519,130 @@ msgstr ""
|
|
|
1507
1519
|
msgid "There's no available report for this host"
|
|
1508
1520
|
msgstr ""
|
|
1509
1521
|
|
|
1510
|
-
#: ../webpack/components/
|
|
1511
|
-
msgid "
|
|
1522
|
+
#: ../webpack/components/OpenscapRemediationWizard/ViewSelectedHostsLink.js:27
|
|
1523
|
+
msgid "View selected hosts"
|
|
1512
1524
|
msgstr ""
|
|
1513
1525
|
|
|
1514
|
-
#: ../webpack/components/
|
|
1526
|
+
#: ../webpack/components/OpenscapRemediationWizard/index.js:69 ../webpack/components/OpenscapRemediationWizard/steps/ReviewHosts.js:174
|
|
1527
|
+
msgid "Review hosts"
|
|
1528
|
+
msgstr ""
|
|
1529
|
+
|
|
1530
|
+
#: ../webpack/components/OpenscapRemediationWizard/index.js:77 ../webpack/components/OpenscapRemediationWizard/steps/SnippetSelect.js:123
|
|
1531
|
+
msgid "Select snippet"
|
|
1532
|
+
msgstr ""
|
|
1533
|
+
|
|
1534
|
+
#: ../webpack/components/OpenscapRemediationWizard/index.js:85 ../webpack/components/OpenscapRemediationWizard/steps/ReviewRemediation.js:94
|
|
1535
|
+
msgid "Review remediation"
|
|
1536
|
+
msgstr ""
|
|
1537
|
+
|
|
1538
|
+
#: ../webpack/components/OpenscapRemediationWizard/index.js:89
|
|
1539
|
+
msgid "Run"
|
|
1540
|
+
msgstr ""
|
|
1541
|
+
|
|
1542
|
+
#: ../webpack/components/OpenscapRemediationWizard/index.js:93
|
|
1543
|
+
msgid "Done"
|
|
1544
|
+
msgstr ""
|
|
1545
|
+
|
|
1546
|
+
#: ../webpack/components/OpenscapRemediationWizard/index.js:127
|
|
1547
|
+
msgid "Remediate %s rule"
|
|
1548
|
+
msgstr ""
|
|
1549
|
+
|
|
1550
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/Finish.js:84
|
|
1551
|
+
msgid "Job details"
|
|
1552
|
+
msgstr ""
|
|
1553
|
+
|
|
1554
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/Finish.js:87
|
|
1555
|
+
msgid "Close"
|
|
1556
|
+
msgstr ""
|
|
1557
|
+
|
|
1558
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/Finish.js:97 ../webpack/components/OpenscapRemediationWizard/steps/SnippetSelect.js:144 ../webpack/components/withLoading.js:12
|
|
1515
1559
|
msgid "Error!"
|
|
1516
1560
|
msgstr ""
|
|
1517
1561
|
|
|
1562
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/Finish.js:105
|
|
1563
|
+
msgid "The job has started on selected host(s), you can check the status on the job details page."
|
|
1564
|
+
msgstr ""
|
|
1565
|
+
|
|
1566
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/ReviewHosts.js:167
|
|
1567
|
+
msgid "OS"
|
|
1568
|
+
msgstr ""
|
|
1569
|
+
|
|
1570
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/ReviewHosts.js:175
|
|
1571
|
+
msgid "By default, remediation is applied to the current host. Optionally, remediate any additional hosts that fail the rule."
|
|
1572
|
+
msgstr ""
|
|
1573
|
+
|
|
1574
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/ReviewRemediation.js:61
|
|
1575
|
+
msgid "Review the remediation snippet and apply it to the host manually."
|
|
1576
|
+
msgstr ""
|
|
1577
|
+
|
|
1578
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/ReviewRemediation.js:62
|
|
1579
|
+
msgid "Review the remediation snippet that will be applied to selected host(s)."
|
|
1580
|
+
msgstr ""
|
|
1581
|
+
|
|
1582
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/ReviewRemediation.js:67
|
|
1583
|
+
msgid "A reboot is required after applying remediation."
|
|
1584
|
+
msgstr ""
|
|
1585
|
+
|
|
1586
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/ReviewRemediation.js:68
|
|
1587
|
+
msgid "A reboot might be required after applying remediation."
|
|
1588
|
+
msgstr ""
|
|
1589
|
+
|
|
1590
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/ReviewRemediation.js:84
|
|
1591
|
+
msgid "Successfully copied to clipboard!"
|
|
1592
|
+
msgstr ""
|
|
1593
|
+
|
|
1594
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/ReviewRemediation.js:85
|
|
1595
|
+
msgid "Copy to clipboard"
|
|
1596
|
+
msgstr ""
|
|
1597
|
+
|
|
1598
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/ReviewRemediation.js:103
|
|
1599
|
+
msgid "Do not implement any of the recommended remedial actions or scripts without first testing them in a non-production environment."
|
|
1600
|
+
msgstr ""
|
|
1601
|
+
|
|
1602
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/ReviewRemediation.js:106
|
|
1603
|
+
msgid "Remediation might render the system non-functional."
|
|
1604
|
+
msgstr ""
|
|
1605
|
+
|
|
1606
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/ReviewRemediation.js:139
|
|
1607
|
+
msgid "Other hosts failing this rule"
|
|
1608
|
+
msgstr ""
|
|
1609
|
+
|
|
1610
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/ReviewRemediation.js:155
|
|
1611
|
+
msgid "Reboot the system(s)"
|
|
1612
|
+
msgstr ""
|
|
1613
|
+
|
|
1614
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/SnippetSelect.js:71
|
|
1615
|
+
msgid "Method"
|
|
1616
|
+
msgstr ""
|
|
1617
|
+
|
|
1618
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/SnippetSelect.js:77
|
|
1619
|
+
msgid "Remote job"
|
|
1620
|
+
msgstr ""
|
|
1621
|
+
|
|
1622
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/SnippetSelect.js:86
|
|
1623
|
+
msgid "Manual"
|
|
1624
|
+
msgstr ""
|
|
1625
|
+
|
|
1626
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/SnippetSelect.js:101
|
|
1627
|
+
msgid "There is no job to remediate with. Please remediate manually."
|
|
1628
|
+
msgstr ""
|
|
1629
|
+
|
|
1630
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/SnippetSelect.js:107
|
|
1631
|
+
msgid "Snippet"
|
|
1632
|
+
msgstr ""
|
|
1633
|
+
|
|
1634
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/SnippetSelect.js:150
|
|
1635
|
+
msgid "Select remediation method"
|
|
1636
|
+
msgstr ""
|
|
1637
|
+
|
|
1638
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/SnippetSelect.js:151
|
|
1639
|
+
msgid "You can remediate by running a remote job or you can display a snippet for manual remediation."
|
|
1640
|
+
msgstr ""
|
|
1641
|
+
|
|
1642
|
+
#: ../webpack/components/withDeleteModal.js:27
|
|
1643
|
+
msgid "Are you sure you want to delete %s?"
|
|
1644
|
+
msgstr ""
|
|
1645
|
+
|
|
1518
1646
|
#: ../webpack/components/withLoading.js:64
|
|
1519
1647
|
msgid "Permission denied"
|
|
1520
1648
|
msgstr ""
|