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
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
# SOME DESCRIPTIVE TITLE.
|
|
2
2
|
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
|
3
3
|
# This file is distributed under the same license as the foreman_openscap package.
|
|
4
|
-
#
|
|
4
|
+
#
|
|
5
5
|
# Translators:
|
|
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
|
-
"POT-Creation-Date: 2023-11-28 22:29+0100\n"
|
|
12
11
|
"PO-Revision-Date: 2016-04-14 07:48+0000\n"
|
|
13
12
|
"Last-Translator: FIRST AUTHOR <EMAIL@ADDRESS>, 2016\n"
|
|
14
|
-
"Language-Team: Chinese (China) (http://
|
|
13
|
+
"Language-Team: Chinese (China) (http://www.transifex.com/foreman/foreman/langu"
|
|
14
|
+
"age/zh_CN/)\n"
|
|
15
15
|
"MIME-Version: 1.0\n"
|
|
16
16
|
"Content-Type: text/plain; charset=UTF-8\n"
|
|
17
17
|
"Content-Transfer-Encoding: 8bit\n"
|
|
@@ -46,15 +46,12 @@ msgstr "下载 HTML 格式的 ARF 报告"
|
|
|
46
46
|
msgid "Policy with id %s not found."
|
|
47
47
|
msgstr "没有找到带有 id %s 的策略。"
|
|
48
48
|
|
|
49
|
-
#: ../app/controllers/api/v2/compliance/arf_reports_controller.rb:103
|
|
50
|
-
#: ../app/controllers/api/v2/compliance/oval_reports_controller.rb:32
|
|
49
|
+
#: ../app/controllers/api/v2/compliance/arf_reports_controller.rb:103 ../app/controllers/api/v2/compliance/oval_reports_controller.rb:32
|
|
51
50
|
msgid "Could not find host identified by: %s"
|
|
52
51
|
msgstr "无法找到由 %s 标识的主机"
|
|
53
52
|
|
|
54
53
|
#: ../app/controllers/api/v2/compliance/arf_reports_controller.rb:108
|
|
55
|
-
msgid ""
|
|
56
|
-
"Failed to upload Arf Report, OpenSCAP proxy name or url not found in params "
|
|
57
|
-
"when uploading for %s and host is missing openscap_proxy"
|
|
54
|
+
msgid "Failed to upload Arf Report, OpenSCAP proxy name or url not found in params when uploading for %s and host is missing openscap_proxy"
|
|
58
55
|
msgstr "上传 Arf Report 失败,在为 %s 上传时没有在参数中找到 OpenSCAP 代理名或 url,主机缺少 openscap_proxy"
|
|
59
56
|
|
|
60
57
|
#: ../app/controllers/api/v2/compliance/arf_reports_controller.rb:120
|
|
@@ -175,7 +172,7 @@ msgstr "主机"
|
|
|
175
172
|
|
|
176
173
|
#: ../app/controllers/api/v2/compliance/oval_policies_controller.rb:78
|
|
177
174
|
msgid "Show a policy's OVAL content"
|
|
178
|
-
msgstr "
|
|
175
|
+
msgstr ""
|
|
179
176
|
|
|
180
177
|
#: ../app/controllers/api/v2/compliance/oval_policies_controller.rb:104
|
|
181
178
|
msgid "OVAL policy successfully configured with %s."
|
|
@@ -293,8 +290,7 @@ msgstr "SCAP 内容名称"
|
|
|
293
290
|
msgid "XML containing SCAP content"
|
|
294
291
|
msgstr "包含 SCAP 内容的 XML"
|
|
295
292
|
|
|
296
|
-
#: ../app/controllers/api/v2/compliance/scap_contents_controller.rb:42
|
|
297
|
-
#: ../app/controllers/api/v2/compliance/tailoring_files_controller.rb:37
|
|
293
|
+
#: ../app/controllers/api/v2/compliance/scap_contents_controller.rb:42 ../app/controllers/api/v2/compliance/tailoring_files_controller.rb:37
|
|
298
294
|
msgid "Original file name of the XML file"
|
|
299
295
|
msgstr "XML 文件的原文件名称"
|
|
300
296
|
|
|
@@ -327,9 +323,7 @@ msgid "Directory to upload when using \"directory\" upload type"
|
|
|
327
323
|
msgstr "当使用 “directory” 上载类型时要上传的目录"
|
|
328
324
|
|
|
329
325
|
#: ../app/controllers/api/v2/compliance/scap_contents_controller.rb:86
|
|
330
|
-
msgid ""
|
|
331
|
-
"Please specify import type, received: %{received}, expected one of: "
|
|
332
|
-
"%{expected}"
|
|
326
|
+
msgid "Please specify import type, received: %{received}, expected one of: %{expected}"
|
|
333
327
|
msgstr "请指定导入类型,已收到:%%{received},预期为%%{expected} 中的一个"
|
|
334
328
|
|
|
335
329
|
#: ../app/controllers/api/v2/compliance/tailoring_files_controller.rb:11
|
|
@@ -377,9 +371,8 @@ msgid "Successfully deleted ARF report."
|
|
|
377
371
|
msgstr "成功删除了 ARF 报告。"
|
|
378
372
|
|
|
379
373
|
#: ../app/controllers/arf_reports_controller.rb:57
|
|
380
|
-
msgid ""
|
|
381
|
-
"
|
|
382
|
-
msgstr "无法删除主机 %%{host_name} 在 %%{reported_at} 报告的 ARF 报告"
|
|
374
|
+
msgid "Failed to delete ARF Report for host %{host_name} reported at %{reported_at}"
|
|
375
|
+
msgstr "无法删除主机 %{host_name} 在 %{reported_at} 报告的 ARF 报告"
|
|
383
376
|
|
|
384
377
|
#: ../app/controllers/arf_reports_controller.rb:67
|
|
385
378
|
msgid "Failed to delete %s compliance reports"
|
|
@@ -389,15 +382,15 @@ msgstr "刪除 %s 合规报告失败"
|
|
|
389
382
|
msgid "Successfully deleted %s compliance reports"
|
|
390
383
|
msgstr "刪除 %s 合规报告成功"
|
|
391
384
|
|
|
392
|
-
#: ../app/controllers/arf_reports_controller.rb:
|
|
385
|
+
#: ../app/controllers/arf_reports_controller.rb:106
|
|
393
386
|
msgid "No compliance reports were found."
|
|
394
387
|
msgstr "没有找到合规报告。"
|
|
395
388
|
|
|
396
|
-
#: ../app/controllers/arf_reports_controller.rb:
|
|
389
|
+
#: ../app/controllers/arf_reports_controller.rb:110
|
|
397
390
|
msgid "No compliance reports selected"
|
|
398
391
|
msgstr "未选择合规报告"
|
|
399
392
|
|
|
400
|
-
#: ../app/controllers/arf_reports_controller.rb:
|
|
393
|
+
#: ../app/controllers/arf_reports_controller.rb:115
|
|
401
394
|
msgid "Something went wrong while selecting compliance reports - %s"
|
|
402
395
|
msgstr "在选择合规报告时出错 - %s"
|
|
403
396
|
|
|
@@ -410,10 +403,8 @@ msgid "The identifier of the host"
|
|
|
410
403
|
msgstr "主机 ID"
|
|
411
404
|
|
|
412
405
|
#: ../app/controllers/concerns/foreman_openscap/hosts_and_hostgroups_controller_extensions.rb:10
|
|
413
|
-
msgid ""
|
|
414
|
-
|
|
415
|
-
"OpenSCAP Proxy or unset it."
|
|
416
|
-
msgstr "%s 代理没有启用 Openscap 功能。设置正确的 OpenSCAP 代理或取消设置它。"
|
|
406
|
+
msgid "The %s proxy does not have Openscap feature enabled. Either set correct OpenSCAP Proxy or unset it."
|
|
407
|
+
msgstr ""
|
|
417
408
|
|
|
418
409
|
#: ../app/controllers/concerns/foreman_openscap/hosts_controller_extensions.rb:26
|
|
419
410
|
msgid "Updated hosts: Assigned with OpenSCAP Proxy: %s"
|
|
@@ -441,7 +432,7 @@ msgstr "未提供有效的策略 ID"
|
|
|
441
432
|
|
|
442
433
|
#: ../app/controllers/policies_controller.rb:129
|
|
443
434
|
msgid "No hosts were found with that id, name or query filter"
|
|
444
|
-
msgstr "
|
|
435
|
+
msgstr ""
|
|
445
436
|
|
|
446
437
|
#: ../app/controllers/policies_controller.rb:134
|
|
447
438
|
msgid "No hosts selected"
|
|
@@ -451,28 +442,15 @@ msgstr "未选择主机"
|
|
|
451
442
|
msgid "Something went wrong while selecting hosts - %s"
|
|
452
443
|
msgstr "选择主机时出错 - %s"
|
|
453
444
|
|
|
454
|
-
#: ../app/helpers/arf_report_dashboard_helper.rb:16
|
|
455
|
-
#: ../app/helpers/compliance_dashboard_helper.rb:8
|
|
456
|
-
#: ../app/helpers/compliance_hosts_helper.rb:15
|
|
457
|
-
#: ../app/views/arf_reports/_list.html.erb:11
|
|
458
|
-
#: ../app/views/foreman_openscap/policy_mailer/_hosts.erb:11
|
|
459
|
-
#: ../app/views/policy_dashboard/_policy_reports.html.erb:10
|
|
445
|
+
#: ../app/helpers/arf_report_dashboard_helper.rb:16 ../app/helpers/compliance_dashboard_helper.rb:8 ../app/helpers/compliance_hosts_helper.rb:15 ../app/views/arf_reports/_list.html.erb:11 ../app/views/foreman_openscap/policy_mailer/_hosts.erb:11 ../app/views/policy_dashboard/_policy_reports.html.erb:10
|
|
460
446
|
msgid "Failed"
|
|
461
447
|
msgstr "失败"
|
|
462
448
|
|
|
463
|
-
#: ../app/helpers/arf_report_dashboard_helper.rb:17
|
|
464
|
-
#: ../app/helpers/compliance_dashboard_helper.rb:6
|
|
465
|
-
#: ../app/helpers/compliance_hosts_helper.rb:14
|
|
466
|
-
#: ../app/views/arf_reports/_list.html.erb:10
|
|
467
|
-
#: ../app/views/foreman_openscap/policy_mailer/_hosts.erb:8
|
|
468
|
-
#: ../app/views/policy_dashboard/_policy_reports.html.erb:9
|
|
449
|
+
#: ../app/helpers/arf_report_dashboard_helper.rb:17 ../app/helpers/compliance_dashboard_helper.rb:6 ../app/helpers/compliance_hosts_helper.rb:14 ../app/views/arf_reports/_list.html.erb:10 ../app/views/foreman_openscap/policy_mailer/_hosts.erb:8 ../app/views/policy_dashboard/_policy_reports.html.erb:9
|
|
469
450
|
msgid "Passed"
|
|
470
451
|
msgstr "通过"
|
|
471
452
|
|
|
472
|
-
#: ../app/helpers/arf_report_dashboard_helper.rb:18
|
|
473
|
-
#: ../app/views/arf_reports/_list.html.erb:12
|
|
474
|
-
#: ../app/views/foreman_openscap/policy_mailer/_hosts.erb:14
|
|
475
|
-
#: ../app/views/policy_dashboard/_policy_reports.html.erb:11
|
|
453
|
+
#: ../app/helpers/arf_report_dashboard_helper.rb:18 ../app/views/arf_reports/_list.html.erb:12 ../app/views/foreman_openscap/policy_mailer/_hosts.erb:14 ../app/views/policy_dashboard/_policy_reports.html.erb:11
|
|
476
454
|
msgid "Other"
|
|
477
455
|
msgstr "其他"
|
|
478
456
|
|
|
@@ -500,10 +478,7 @@ msgstr "失败和其他"
|
|
|
500
478
|
msgid "Failed only"
|
|
501
479
|
msgstr "只有失敗"
|
|
502
480
|
|
|
503
|
-
#: ../app/helpers/arf_reports_helper.rb:20
|
|
504
|
-
#: ../app/views/arf_reports/index.html.erb:1
|
|
505
|
-
#: ../app/views/arf_reports/welcome.html.erb:1
|
|
506
|
-
#: ../app/views/arf_reports/welcome.html.erb:7
|
|
481
|
+
#: ../app/helpers/arf_reports_helper.rb:20 ../app/views/arf_reports/index.html.erb:1 ../app/views/arf_reports/welcome.html.erb:1 ../app/views/arf_reports/welcome.html.erb:7
|
|
507
482
|
msgid "Compliance Reports"
|
|
508
483
|
msgstr "合规报告"
|
|
509
484
|
|
|
@@ -535,27 +510,27 @@ msgstr " 对策略 %s"
|
|
|
535
510
|
msgid " through %s"
|
|
536
511
|
msgstr " 通过 %s"
|
|
537
512
|
|
|
538
|
-
#: ../app/helpers/arf_reports_helper.rb:
|
|
513
|
+
#: ../app/helpers/arf_reports_helper.rb:67
|
|
539
514
|
msgid "Hosts failing this rule"
|
|
540
515
|
msgstr "主机在这个规则上失败"
|
|
541
516
|
|
|
542
|
-
#: ../app/helpers/arf_reports_helper.rb:
|
|
517
|
+
#: ../app/helpers/arf_reports_helper.rb:68
|
|
543
518
|
msgid "Hosts passing this rule"
|
|
544
519
|
msgstr "主机通过了这个规则"
|
|
545
520
|
|
|
546
|
-
#: ../app/helpers/arf_reports_helper.rb:
|
|
521
|
+
#: ../app/helpers/arf_reports_helper.rb:69
|
|
547
522
|
msgid "Hosts othering this rule"
|
|
548
523
|
msgstr "主机除了这个规则"
|
|
549
524
|
|
|
550
|
-
#: ../app/helpers/
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
|
|
525
|
+
#: ../app/helpers/arf_reports_helper.rb:72
|
|
526
|
+
msgid "Remediation"
|
|
527
|
+
msgstr ""
|
|
528
|
+
|
|
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
|
|
554
530
|
msgid "Host"
|
|
555
531
|
msgstr "主机"
|
|
556
532
|
|
|
557
|
-
#: ../app/helpers/compliance_dashboard_helper.rb:4
|
|
558
|
-
#: ../app/views/arf_reports/_list.html.erb:8
|
|
533
|
+
#: ../app/helpers/compliance_dashboard_helper.rb:4 ../app/views/arf_reports/_list.html.erb:8
|
|
559
534
|
msgid "Policy"
|
|
560
535
|
msgstr "策略"
|
|
561
536
|
|
|
@@ -574,8 +549,7 @@ msgstr "Failed|F"
|
|
|
574
549
|
msgid "Othered|O"
|
|
575
550
|
msgstr "Othered|O"
|
|
576
551
|
|
|
577
|
-
#: ../app/helpers/compliance_dashboard_helper.rb:10
|
|
578
|
-
#: ../app/helpers/compliance_hosts_helper.rb:16
|
|
552
|
+
#: ../app/helpers/compliance_dashboard_helper.rb:10 ../app/helpers/compliance_hosts_helper.rb:16
|
|
579
553
|
msgid "Othered"
|
|
580
554
|
msgstr "其它"
|
|
581
555
|
|
|
@@ -591,10 +565,7 @@ msgstr "取消分配合规政策"
|
|
|
591
565
|
msgid "Change OpenSCAP Proxy"
|
|
592
566
|
msgstr "改变 OpenSCAP 代理"
|
|
593
567
|
|
|
594
|
-
#: ../app/helpers/compliance_hosts_helper.rb:37
|
|
595
|
-
#: ../app/models/foreman_openscap/compliance_status.rb:8
|
|
596
|
-
#: ../lib/foreman_openscap/engine.rb:159
|
|
597
|
-
#: ../webpack/components/HostExtentions/HostKebabItems.js:39
|
|
568
|
+
#: ../app/helpers/compliance_hosts_helper.rb:37 ../app/models/foreman_openscap/compliance_status.rb:8 ../lib/foreman_openscap/engine.rb:159 ../webpack/components/HostExtentions/HostKebabItems.js:39
|
|
598
569
|
msgid "Compliance"
|
|
599
570
|
msgstr "合规"
|
|
600
571
|
|
|
@@ -610,11 +581,7 @@ msgstr "主机被删除"
|
|
|
610
581
|
msgid "Choose existing SCAP Content"
|
|
611
582
|
msgstr "选择现有的SCAP内容"
|
|
612
583
|
|
|
613
|
-
#: ../app/helpers/policies_helper.rb:57 ../app/helpers/policies_helper.rb:63
|
|
614
|
-
#: ../app/models/foreman_openscap/policy.rb:11
|
|
615
|
-
#: ../app/views/policies/_form.html.erb:10
|
|
616
|
-
#: ../app/views/scap_contents/welcome.html.erb:1
|
|
617
|
-
#: ../app/views/scap_contents/welcome.html.erb:6
|
|
584
|
+
#: ../app/helpers/policies_helper.rb:57 ../app/helpers/policies_helper.rb:63 ../app/models/foreman_openscap/policy.rb:11 ../app/views/policies/_form.html.erb:10 ../app/views/scap_contents/welcome.html.erb:1 ../app/views/scap_contents/welcome.html.erb:6
|
|
618
585
|
msgid "SCAP Content"
|
|
619
586
|
msgstr "SCAP 內容"
|
|
620
587
|
|
|
@@ -642,18 +609,11 @@ msgstr "定制文件中的 XCCDF 配置文件"
|
|
|
642
609
|
msgid "This profile will be used to override the one from scap content"
|
|
643
610
|
msgstr "这个配置文件将用于覆盖 scap 内容中的配置文件"
|
|
644
611
|
|
|
645
|
-
#: ../app/helpers/policies_helper.rb:111
|
|
646
|
-
#: ../app/views/arf_reports/_list.html.erb:54
|
|
647
|
-
#: ../webpack/routes/OvalContents/OvalContentsNew/OvalContentsNew.js:116
|
|
648
|
-
#: ../webpack/routes/OvalPolicies/OvalPoliciesNew/NewOvalPolicyForm.js:97
|
|
612
|
+
#: ../app/helpers/policies_helper.rb:111 ../app/views/arf_reports/_list.html.erb:54 ../webpack/routes/OvalContents/OvalContentsNew/OvalContentsNew.js:116 ../webpack/routes/OvalPolicies/OvalPoliciesNew/NewOvalPolicyForm.js:97
|
|
649
613
|
msgid "Submit"
|
|
650
614
|
msgstr "提交"
|
|
651
615
|
|
|
652
|
-
#: ../app/helpers/policies_helper.rb:115
|
|
653
|
-
#: ../app/views/arf_reports/_list.html.erb:53
|
|
654
|
-
#: ../webpack/components/ConfirmModal.js:27
|
|
655
|
-
#: ../webpack/routes/OvalContents/OvalContentsNew/OvalContentsNew.js:121
|
|
656
|
-
#: ../webpack/routes/OvalPolicies/OvalPoliciesNew/NewOvalPolicyForm.js:102
|
|
616
|
+
#: ../app/helpers/policies_helper.rb:115 ../app/views/arf_reports/_list.html.erb:53 ../webpack/components/ConfirmModal.js:27 ../webpack/routes/OvalContents/OvalContentsNew/OvalContentsNew.js:121 ../webpack/routes/OvalPolicies/OvalPoliciesNew/NewOvalPolicyForm.js:102
|
|
657
617
|
msgid "Cancel"
|
|
658
618
|
msgstr "取消"
|
|
659
619
|
|
|
@@ -665,8 +625,7 @@ msgstr "合规主机"
|
|
|
665
625
|
msgid "Incompliant hosts"
|
|
666
626
|
msgstr "不合规主机"
|
|
667
627
|
|
|
668
|
-
#: ../app/helpers/policy_dashboard_helper.rb:13
|
|
669
|
-
#: ../app/models/foreman_openscap/compliance_status.rb:24
|
|
628
|
+
#: ../app/helpers/policy_dashboard_helper.rb:13 ../app/models/foreman_openscap/compliance_status.rb:24
|
|
670
629
|
msgid "Inconclusive"
|
|
671
630
|
msgstr "非決定性"
|
|
672
631
|
|
|
@@ -679,9 +638,7 @@ msgid "Host is assigned to policy"
|
|
|
679
638
|
msgstr "主机已分配给策略"
|
|
680
639
|
|
|
681
640
|
#: ../app/helpers/policy_dashboard_helper.rb:44
|
|
682
|
-
msgid ""
|
|
683
|
-
"Host is not assigned to policy but reports were found. You may want to "
|
|
684
|
-
"delete the reports or assign the policy again."
|
|
641
|
+
msgid "Host is not assigned to policy but reports were found. You may want to delete the reports or assign the policy again."
|
|
685
642
|
msgstr "主机未分配给策略,但是找到了报告。您可能要删除报告或再次分配策略。"
|
|
686
643
|
|
|
687
644
|
#: ../app/helpers/policy_dashboard_helper.rb:52
|
|
@@ -693,19 +650,16 @@ msgid "Total hosts with reports where policy is no longer assigned."
|
|
|
693
650
|
msgstr "具有不再分配策略的报告的主机总数。"
|
|
694
651
|
|
|
695
652
|
#: ../app/lib/proxy_api/openscap.rb:21
|
|
696
|
-
msgid ""
|
|
697
|
-
"Request timed out. Please try increasing Settings -> proxy_request_timeout"
|
|
653
|
+
msgid "Request timed out. Please try increasing Settings -> proxy_request_timeout"
|
|
698
654
|
msgstr "请求超时。请尝试增加 Settings -> proxy_request_timeout"
|
|
699
655
|
|
|
700
656
|
#: ../app/lib/proxy_api/openscap.rb:24
|
|
701
|
-
msgid ""
|
|
702
|
-
"Could not validate %s. Please make sure you have appropriate proxy version "
|
|
703
|
-
"to use this functionality"
|
|
657
|
+
msgid "Could not validate %s. Please make sure you have appropriate proxy version to use this functionality"
|
|
704
658
|
msgstr "无法验证 %s。请确保您具备合适的代理服务器版本,以便使用此功能"
|
|
705
659
|
|
|
706
660
|
#: ../app/lib/proxy_api/openscap.rb:27
|
|
707
661
|
msgid "Could not validate %{file_type}. Error %{error}"
|
|
708
|
-
msgstr "
|
|
662
|
+
msgstr "无法验证%{file_type} 。错误 %{error}"
|
|
709
663
|
|
|
710
664
|
#: ../app/lib/proxy_api/openscap.rb:40
|
|
711
665
|
msgid "Unable to get HTML version of requested report from Smart Proxy"
|
|
@@ -735,9 +689,7 @@ msgstr "没有找到 id 为 %%{id} 的 %%{class} 的 OpenSCAP 代理服务器"
|
|
|
735
689
|
msgid "does not consist of 5 parts separated by space"
|
|
736
690
|
msgstr "不是由使用空格分开的 5 个部分组成"
|
|
737
691
|
|
|
738
|
-
#: ../app/models/concerns/foreman_openscap/policy_common.rb:21
|
|
739
|
-
#: ../app/models/foreman_openscap/oval_policy.rb:14
|
|
740
|
-
#: ../app/models/foreman_openscap/policy.rb:34
|
|
692
|
+
#: ../app/models/concerns/foreman_openscap/policy_common.rb:21 ../app/models/foreman_openscap/oval_policy.rb:14 ../app/models/foreman_openscap/policy.rb:34
|
|
741
693
|
msgid "is not a valid value"
|
|
742
694
|
msgstr "不是有效值"
|
|
743
695
|
|
|
@@ -745,13 +697,11 @@ msgstr "不是有效值"
|
|
|
745
697
|
msgid "must be between 1 and 31"
|
|
746
698
|
msgstr "数字必须在 1 到 31 之间"
|
|
747
699
|
|
|
748
|
-
#: ../app/models/foreman_openscap/compliance_status.rb:22
|
|
749
|
-
#: ../app/views/foreman_openscap/policy_mailer/_dashboard.erb:13
|
|
700
|
+
#: ../app/models/foreman_openscap/compliance_status.rb:22 ../app/views/foreman_openscap/policy_mailer/_dashboard.erb:13
|
|
750
701
|
msgid "Compliant"
|
|
751
702
|
msgstr "合规"
|
|
752
703
|
|
|
753
|
-
#: ../app/models/foreman_openscap/compliance_status.rb:26
|
|
754
|
-
#: ../app/views/foreman_openscap/policy_mailer/_dashboard.erb:17
|
|
704
|
+
#: ../app/models/foreman_openscap/compliance_status.rb:26 ../app/views/foreman_openscap/policy_mailer/_dashboard.erb:17
|
|
755
705
|
msgid "Incompliant"
|
|
756
706
|
msgstr "不合规"
|
|
757
707
|
|
|
@@ -779,8 +729,7 @@ msgstr "找到了 %s 个有可用补丁的漏洞"
|
|
|
779
729
|
msgid "Unknown OVAL status"
|
|
780
730
|
msgstr "未知的 OVAL 状态"
|
|
781
731
|
|
|
782
|
-
#: ../app/models/foreman_openscap/policy.rb:11
|
|
783
|
-
#: ../app/views/policies/_form.html.erb:8
|
|
732
|
+
#: ../app/models/foreman_openscap/policy.rb:11 ../app/views/policies/_form.html.erb:8
|
|
784
733
|
msgid "Deployment Options"
|
|
785
734
|
msgstr "部署选项"
|
|
786
735
|
|
|
@@ -788,29 +737,19 @@ msgstr "部署选项"
|
|
|
788
737
|
msgid "Policy Attributes"
|
|
789
738
|
msgstr "策略属性"
|
|
790
739
|
|
|
791
|
-
#: ../app/models/foreman_openscap/policy.rb:11
|
|
792
|
-
#: ../app/views/policies/_form.html.erb:11
|
|
793
|
-
#: ../webpack/routes/OvalPolicies/OvalPoliciesNew/NewOvalPolicyForm.js:67
|
|
740
|
+
#: ../app/models/foreman_openscap/policy.rb:11 ../app/views/policies/_form.html.erb:11 ../webpack/routes/OvalPolicies/OvalPoliciesNew/NewOvalPolicyForm.js:67
|
|
794
741
|
msgid "Schedule"
|
|
795
742
|
msgstr "调度"
|
|
796
743
|
|
|
797
|
-
#: ../app/models/foreman_openscap/policy.rb:11
|
|
798
|
-
#: ../app/views/policies/_form.html.erb:13
|
|
799
|
-
#: ../app/views/scap_contents/_form.html.erb:11
|
|
800
|
-
#: ../app/views/tailoring_files/_form.html.erb:11
|
|
744
|
+
#: ../app/models/foreman_openscap/policy.rb:11 ../app/views/policies/_form.html.erb:13 ../app/views/scap_contents/_form.html.erb:11 ../app/views/tailoring_files/_form.html.erb:11
|
|
801
745
|
msgid "Locations"
|
|
802
746
|
msgstr "位置"
|
|
803
747
|
|
|
804
|
-
#: ../app/models/foreman_openscap/policy.rb:11
|
|
805
|
-
#: ../app/views/policies/_form.html.erb:16
|
|
806
|
-
#: ../app/views/scap_contents/_form.html.erb:14
|
|
807
|
-
#: ../app/views/tailoring_files/_form.html.erb:14
|
|
748
|
+
#: ../app/models/foreman_openscap/policy.rb:11 ../app/views/policies/_form.html.erb:16 ../app/views/scap_contents/_form.html.erb:14 ../app/views/tailoring_files/_form.html.erb:14
|
|
808
749
|
msgid "Organizations"
|
|
809
750
|
msgstr "机构"
|
|
810
751
|
|
|
811
|
-
#: ../app/models/foreman_openscap/policy.rb:11
|
|
812
|
-
#: ../webpack/routes/OvalPolicies/OvalPoliciesNew/HostgroupSelect.js:99
|
|
813
|
-
#: ../webpack/routes/OvalPolicies/OvalPoliciesShow/OvalPoliciesShow.js:65
|
|
752
|
+
#: ../app/models/foreman_openscap/policy.rb:11 ../webpack/routes/OvalPolicies/OvalPoliciesNew/HostgroupSelect.js:99 ../webpack/routes/OvalPolicies/OvalPoliciesShow/OvalPoliciesShow.js:65
|
|
814
753
|
msgid "Hostgroups"
|
|
815
754
|
msgstr "主机组"
|
|
816
755
|
|
|
@@ -839,31 +778,23 @@ msgid "does not have the selected SCAP content profile"
|
|
|
839
778
|
msgstr "不具备所选的 SCAP 内容配置文件"
|
|
840
779
|
|
|
841
780
|
#: ../app/models/foreman_openscap/policy.rb:271
|
|
842
|
-
msgid ""
|
|
843
|
-
"
|
|
844
|
-
" check 'deploy by' for each assigned policy"
|
|
845
|
-
msgstr "无法分配给 %s,必须以相同的方式部署所有分配的策略,请为每个分配的策略选择 'deploy by'"
|
|
781
|
+
msgid "cannot assign to %s, all assigned policies must be deployed in the same way, check 'deploy by' for each assigned policy"
|
|
782
|
+
msgstr "无法分配给 %s,必须以相同的方式部署所有分配的策略,请为每个分配的策略选择 'deploy by'。"
|
|
846
783
|
|
|
847
784
|
#: ../app/services/foreman_openscap/arf_report_status_calculator.rb:30
|
|
848
785
|
msgid "invalid type %s"
|
|
849
786
|
msgstr "无效类型 %s"
|
|
850
787
|
|
|
851
788
|
#: ../app/services/foreman_openscap/client_config/ansible.rb:23
|
|
852
|
-
msgid ""
|
|
853
|
-
|
|
854
|
-
" role to the hosts or selected hostgroups."
|
|
855
|
-
msgstr "需要 Ansible 插件,%s Ansible 角色和变量。这将为主机或选定的主机组分配角色。"
|
|
789
|
+
msgid "Requires Ansible plugin, %s Ansible role and variables. This will assign the role to the hosts or selected hostgroups."
|
|
790
|
+
msgstr ""
|
|
856
791
|
|
|
857
792
|
#: ../app/services/foreman_openscap/client_config/ansible.rb:24
|
|
858
|
-
msgid ""
|
|
859
|
-
|
|
860
|
-
"manually. Manual run is also required after any change to this policy."
|
|
861
|
-
msgstr "要部署 foreman_scap_client,需要手动触发 ansible 角色运行。在更改此策略后,还需要手动运行。"
|
|
793
|
+
msgid "To deploy foreman_scap_client, ansible roles run needs to be triggered manually. Manual run is also required after any change to this policy."
|
|
794
|
+
msgstr ""
|
|
862
795
|
|
|
863
796
|
#: ../app/services/foreman_openscap/client_config/ansible.rb:34
|
|
864
|
-
msgid ""
|
|
865
|
-
"theforeman.foreman_scap_client Ansible Role not found, please import it "
|
|
866
|
-
"before running this action again."
|
|
797
|
+
msgid "theforeman.foreman_scap_client Ansible Role not found, please import it before running this action again."
|
|
867
798
|
msgstr "没有找到 theforeman.foreman_scap_client Ansible 角色,请先将其导入,然后再运行此操作。"
|
|
868
799
|
|
|
869
800
|
#: ../app/services/foreman_openscap/client_config/ansible.rb:57
|
|
@@ -875,22 +806,16 @@ msgid "Ansible variables"
|
|
|
875
806
|
msgstr "Ansible 变量"
|
|
876
807
|
|
|
877
808
|
#: ../app/services/foreman_openscap/client_config/manual.rb:14
|
|
878
|
-
msgid ""
|
|
879
|
-
|
|
880
|
-
"policy still needs to be defined in order to link incoming ARF reports."
|
|
881
|
-
msgstr "这会使用户只保留 foreman_scap_client 的设置。策略仍然需要定义才能来链接传入的 ARF 报告。"
|
|
809
|
+
msgid "This leaves the setup of the foreman_scap_client solely on the user. The policy still needs to be defined in order to link incoming ARF reports."
|
|
810
|
+
msgstr ""
|
|
882
811
|
|
|
883
812
|
#: ../app/services/foreman_openscap/client_config/puppet.rb:17
|
|
884
|
-
msgid ""
|
|
885
|
-
|
|
886
|
-
"selected hostgroups."
|
|
887
|
-
msgstr "需要 %s Puppet 类。这会将类分配给主机或所选主机组。"
|
|
813
|
+
msgid "Requires %s Puppet class. This will assign the class to the hosts or selected hostgroups."
|
|
814
|
+
msgstr ""
|
|
888
815
|
|
|
889
816
|
#: ../app/services/foreman_openscap/client_config/puppet.rb:18
|
|
890
|
-
msgid ""
|
|
891
|
-
|
|
892
|
-
"the policy."
|
|
893
|
-
msgstr "每个 puppet 运行确保了 foreman_scap_client 会根据策略配置。"
|
|
817
|
+
msgid "Every puppet run ensures the foreman_scap_client is configured according to the policy."
|
|
818
|
+
msgstr ""
|
|
894
819
|
|
|
895
820
|
#: ../app/services/foreman_openscap/client_config/puppet.rb:39
|
|
896
821
|
msgid "Puppet class"
|
|
@@ -901,42 +826,31 @@ msgid "Smart Class Parameters"
|
|
|
901
826
|
msgstr "智能类参数"
|
|
902
827
|
|
|
903
828
|
#: ../app/services/foreman_openscap/lookup_key_overrider.rb:19
|
|
904
|
-
msgid ""
|
|
905
|
-
"%{type} was selected to deploy policy to clients, but %{type} is not "
|
|
906
|
-
"available. Are you missing a plugin?"
|
|
829
|
+
msgid "%{type} was selected to deploy policy to clients, but %{type} is not available. Are you missing a plugin?"
|
|
907
830
|
msgstr "已选择 %{type} 将策略部署到客户端,但是%{type} 不可用。您是否缺少插件?"
|
|
908
831
|
|
|
909
832
|
#: ../app/services/foreman_openscap/lookup_key_overrider.rb:26
|
|
910
|
-
msgid ""
|
|
911
|
-
"
|
|
912
|
-
"first."
|
|
913
|
-
msgstr "没有找到所需的%%{msg_name}%%{class},请确认它已被导入。"
|
|
833
|
+
msgid "Required %{msg_name} %{class} was not found, please ensure it is imported first."
|
|
834
|
+
msgstr "没有找到所需的%{msg_name}%{class},请确认它已被导入。"
|
|
914
835
|
|
|
915
836
|
#: ../app/services/foreman_openscap/lookup_key_overrider.rb:34
|
|
916
|
-
msgid ""
|
|
917
|
-
"
|
|
918
|
-
"sure they are imported before proceeding."
|
|
919
|
-
msgstr "%%{item_name} 缺少以下 %%{key_name}:%%{key_names}。在继续操作之前,请确保已将其导入。"
|
|
837
|
+
msgid "The following %{key_name} were missing for %{item_name}: %{key_names}. Make sure they are imported before proceeding."
|
|
838
|
+
msgstr "%{item_name} 缺少以下 %{key_name}:%{key_names}。在继续操作之前,请确保已将其导入。"
|
|
920
839
|
|
|
921
840
|
#: ../app/services/foreman_openscap/lookup_key_overrider.rb:56
|
|
922
|
-
msgid ""
|
|
923
|
-
"
|
|
924
|
-
"%{errors}"
|
|
925
|
-
msgstr "覆盖%%{config_tool} 的参数时无法保存,原因是:%{errors}"
|
|
841
|
+
msgid "Failed to save when overriding parameters for %{config_tool}, cause: %{errors}"
|
|
842
|
+
msgstr "覆盖%{config_tool} 的参数时无法保存,原因是:%{errors}"
|
|
926
843
|
|
|
927
844
|
#: ../app/services/foreman_openscap/openscap_proxy_version_check.rb:39
|
|
928
845
|
msgid "This feature is temporarily disabled. "
|
|
929
846
|
msgstr "此功能暂时被禁用。"
|
|
930
847
|
|
|
931
848
|
#: ../app/services/foreman_openscap/openscap_proxy_version_check.rb:40
|
|
932
|
-
msgid ""
|
|
933
|
-
"The following Smart Proxies need to be updated to unlock the feature: %s. "
|
|
849
|
+
msgid "The following Smart Proxies need to be updated to unlock the feature: %s. "
|
|
934
850
|
msgstr "下列智能代理服务器需要更新,以便解锁功能:%s。 "
|
|
935
851
|
|
|
936
852
|
#: ../app/services/foreman_openscap/openscap_proxy_version_check.rb:41
|
|
937
|
-
msgid ""
|
|
938
|
-
"The following proxies could not be reached: %s. Please make sure they are "
|
|
939
|
-
"available so Foreman can check their versions."
|
|
853
|
+
msgid "The following proxies could not be reached: %s. Please make sure they are available so Foreman can check their versions."
|
|
940
854
|
msgstr "无法访问下列代理服务器:%s。请确保它们可用,以便 Foreman 检查其版本。"
|
|
941
855
|
|
|
942
856
|
#: ../app/services/foreman_openscap/oval/configure.rb:65
|
|
@@ -949,7 +863,7 @@ msgstr "在继续前,把 openscap_proxy 分配给 %s。"
|
|
|
949
863
|
|
|
950
864
|
#: ../app/services/foreman_openscap/oval/configure.rb:75
|
|
951
865
|
msgid "Was %{model_name} %{name} configured successfully?"
|
|
952
|
-
msgstr "
|
|
866
|
+
msgstr "%{model_name}%%{name}配置成功了吗?"
|
|
953
867
|
|
|
954
868
|
#: ../app/services/foreman_openscap/oval/setup.rb:56
|
|
955
869
|
msgid "Could not update Ansible Variables with override: true"
|
|
@@ -960,9 +874,7 @@ msgid "Is foreman_ansible present?"
|
|
|
960
874
|
msgstr "foreman_ansible 存在吗?"
|
|
961
875
|
|
|
962
876
|
#: ../app/services/foreman_openscap/oval/setup.rb:62
|
|
963
|
-
msgid ""
|
|
964
|
-
"foreman_ansible plugin not found, please install it before running this "
|
|
965
|
-
"action again."
|
|
877
|
+
msgid "foreman_ansible plugin not found, please install it before running this action again."
|
|
966
878
|
msgstr "没有找到 foreman_ansible 插件,请先安装它,然后再次运行此操作。"
|
|
967
879
|
|
|
968
880
|
#: ../app/services/foreman_openscap/oval/setup.rb:66
|
|
@@ -974,24 +886,20 @@ msgid "Are required variables for theforeman.foreman_scap_client present?"
|
|
|
974
886
|
msgstr "是否存在 forforeman.foreman_scap_client 所需的变量?"
|
|
975
887
|
|
|
976
888
|
#: ../app/services/foreman_openscap/oval/setup.rb:72
|
|
977
|
-
msgid ""
|
|
978
|
-
"
|
|
979
|
-
"import them before running this action again."
|
|
980
|
-
msgstr "找不到以下 Ansible 变量:%%{missing_vars},请再次导入它们,然后再运行此操作。"
|
|
889
|
+
msgid "The following Ansible Variables were not found: %{missing_vars}, please import them before running this action again."
|
|
890
|
+
msgstr "找不到以下 Ansible 变量:%{missing_vars},请再次导入它们,然后再运行此操作。"
|
|
981
891
|
|
|
982
|
-
#: ../app/services/foreman_openscap/oval/setup.rb:76
|
|
983
|
-
#: ../app/services/foreman_openscap/oval/setup.rb:81
|
|
984
|
-
#: ../app/services/foreman_openscap/oval/setup.rb:86
|
|
892
|
+
#: ../app/services/foreman_openscap/oval/setup.rb:76 ../app/services/foreman_openscap/oval/setup.rb:81 ../app/services/foreman_openscap/oval/setup.rb:86
|
|
985
893
|
msgid "Is %s param set to be overriden?"
|
|
986
894
|
msgstr "是否设置了 %s 参数?"
|
|
987
895
|
|
|
988
896
|
#: ../app/services/foreman_openscap/oval/sync_oval_contents.rb:8
|
|
989
897
|
msgid "cause: "
|
|
990
|
-
msgstr "
|
|
898
|
+
msgstr ""
|
|
991
899
|
|
|
992
900
|
#: ../app/services/foreman_openscap/oval/sync_oval_contents.rb:28
|
|
993
901
|
msgid "Failed to fetch content file from %s"
|
|
994
|
-
msgstr "
|
|
902
|
+
msgstr ""
|
|
995
903
|
|
|
996
904
|
#: ../app/validators/foreman_openscap/data_stream_validator.rb:9
|
|
997
905
|
msgid "No proxy with OpenSCAP feature was found."
|
|
@@ -1013,9 +921,7 @@ msgstr "更改的文件不含现有的 SCAP 内容配置文件"
|
|
|
1013
921
|
msgid "More details"
|
|
1014
922
|
msgstr "更多细节"
|
|
1015
923
|
|
|
1016
|
-
#: ../app/views/arf_reports/_detailed_message.html.erb:6
|
|
1017
|
-
#: ../webpack/routes/OvalPolicies/OvalPoliciesNew/NewOvalPolicyForm.js:62
|
|
1018
|
-
#: ../webpack/routes/OvalPolicies/OvalPoliciesShow/DetailsTab.js:57
|
|
924
|
+
#: ../app/views/arf_reports/_detailed_message.html.erb:6 ../webpack/routes/OvalPolicies/OvalPoliciesNew/NewOvalPolicyForm.js:62 ../webpack/routes/OvalPolicies/OvalPoliciesShow/DetailsTab.js:57
|
|
1019
925
|
msgid "Description"
|
|
1020
926
|
msgstr "描述"
|
|
1021
927
|
|
|
@@ -1035,8 +941,7 @@ msgstr "选择这个页中的所有项"
|
|
|
1035
941
|
msgid "items selected. Uncheck to Clear"
|
|
1036
942
|
msgstr "选择的项。取消选中以清除"
|
|
1037
943
|
|
|
1038
|
-
#: ../app/views/arf_reports/_list.html.erb:7
|
|
1039
|
-
#: ../app/views/arf_reports/delete_multiple.html.erb:10
|
|
944
|
+
#: ../app/views/arf_reports/_list.html.erb:7 ../app/views/arf_reports/delete_multiple.html.erb:10
|
|
1040
945
|
msgid "Reported At"
|
|
1041
946
|
msgstr "报告于"
|
|
1042
947
|
|
|
@@ -1044,12 +949,7 @@ msgstr "报告于"
|
|
|
1044
949
|
msgid "Openscap Proxy"
|
|
1045
950
|
msgstr "Openscap 代理"
|
|
1046
951
|
|
|
1047
|
-
#: ../app/views/arf_reports/_list.html.erb:13
|
|
1048
|
-
#: ../app/views/arf_reports/_output.html.erb:16
|
|
1049
|
-
#: ../app/views/policies/_list.html.erb:8
|
|
1050
|
-
#: ../app/views/policy_dashboard/_policy_reports.html.erb:12
|
|
1051
|
-
#: ../app/views/scap_contents/_list.html.erb:6
|
|
1052
|
-
#: ../app/views/tailoring_files/_list.html.erb:6
|
|
952
|
+
#: ../app/views/arf_reports/_list.html.erb:13 ../app/views/arf_reports/_output.html.erb:16 ../app/views/policies/_list.html.erb:8 ../app/views/policy_dashboard/_policy_reports.html.erb:12 ../app/views/scap_contents/_list.html.erb:6 ../app/views/tailoring_files/_list.html.erb:6
|
|
1053
953
|
msgid "Actions"
|
|
1054
954
|
msgstr "操作"
|
|
1055
955
|
|
|
@@ -1129,15 +1029,12 @@ msgstr "下载 XML,格式为 bzip"
|
|
|
1129
1029
|
msgid "Download HTML"
|
|
1130
1030
|
msgstr "下载 HTML"
|
|
1131
1031
|
|
|
1132
|
-
#: ../app/views/arf_reports/show_html.html.erb:10
|
|
1133
|
-
#: ../webpack/routes/OvalPolicies/OvalPoliciesNew/HostgroupSelect.js:68
|
|
1032
|
+
#: ../app/views/arf_reports/show_html.html.erb:10 ../webpack/routes/OvalPolicies/OvalPoliciesNew/HostgroupSelect.js:68
|
|
1134
1033
|
msgid "Loading..."
|
|
1135
1034
|
msgstr "载入中..."
|
|
1136
1035
|
|
|
1137
1036
|
#: ../app/views/arf_reports/welcome.html.erb:9
|
|
1138
|
-
msgid ""
|
|
1139
|
-
"You don't seem to have any ARF report. ARF report is a summary of a single "
|
|
1140
|
-
"scan occurrence on a particular host for a given Compliance Policy."
|
|
1037
|
+
msgid "You don't seem to have any ARF report. ARF report is a summary of a single scan occurrence on a particular host for a given Compliance Policy."
|
|
1141
1038
|
msgstr "您似乎没有 ARF 报告。ARF 报告是针对给定的合规策略对特定主机执行单次扫描的摘要。"
|
|
1142
1039
|
|
|
1143
1040
|
#: ../app/views/arf_reports/welcome.html.erb:12
|
|
@@ -1165,8 +1062,7 @@ msgstr "一直以來的 %s 报告"
|
|
|
1165
1062
|
msgid "No report for this policy"
|
|
1166
1063
|
msgstr "没有此策略的报告"
|
|
1167
1064
|
|
|
1168
|
-
#: ../app/views/dashboard/_compliance_host_reports_widget.html.erb:1
|
|
1169
|
-
#: ../lib/foreman_openscap/engine.rb:183
|
|
1065
|
+
#: ../app/views/dashboard/_compliance_host_reports_widget.html.erb:1 ../lib/foreman_openscap/engine.rb:183
|
|
1170
1066
|
msgid "Latest Compliance Reports"
|
|
1171
1067
|
msgstr "最新合规报告"
|
|
1172
1068
|
|
|
@@ -1182,8 +1078,7 @@ msgstr "主机已不存在"
|
|
|
1182
1078
|
msgid "Policy is missing"
|
|
1183
1079
|
msgstr "策略缺失"
|
|
1184
1080
|
|
|
1185
|
-
#: ../app/views/dashboard/_compliance_reports_breakdown_widget.html.erb:1
|
|
1186
|
-
#: ../lib/foreman_openscap/engine.rb:185
|
|
1081
|
+
#: ../app/views/dashboard/_compliance_reports_breakdown_widget.html.erb:1 ../lib/foreman_openscap/engine.rb:185
|
|
1187
1082
|
msgid "Compliance Reports Breakdown"
|
|
1188
1083
|
msgstr "合规报告故障"
|
|
1189
1084
|
|
|
@@ -1199,13 +1094,11 @@ msgstr "主机名"
|
|
|
1199
1094
|
msgid "Changed?"
|
|
1200
1095
|
msgstr "已改变?"
|
|
1201
1096
|
|
|
1202
|
-
#: ../app/views/foreman_openscap/policy_mailer/_hosts.erb:36
|
|
1203
|
-
#: ../webpack/routes/OvalPolicies/OvalPoliciesShow/CvesTable.js:35
|
|
1097
|
+
#: ../app/views/foreman_openscap/policy_mailer/_hosts.erb:36 ../webpack/routes/OvalPolicies/OvalPoliciesShow/CvesTable.js:35
|
|
1204
1098
|
msgid "Yes"
|
|
1205
1099
|
msgstr "是"
|
|
1206
1100
|
|
|
1207
|
-
#: ../app/views/foreman_openscap/policy_mailer/_hosts.erb:36
|
|
1208
|
-
#: ../webpack/routes/OvalPolicies/OvalPoliciesShow/CvesTable.js:35
|
|
1101
|
+
#: ../app/views/foreman_openscap/policy_mailer/_hosts.erb:36 ../webpack/routes/OvalPolicies/OvalPoliciesShow/CvesTable.js:35
|
|
1209
1102
|
msgid "No"
|
|
1210
1103
|
msgstr "否"
|
|
1211
1104
|
|
|
@@ -1254,48 +1147,33 @@ msgstr "常规"
|
|
|
1254
1147
|
msgid "Host Groups"
|
|
1255
1148
|
msgstr "主机组"
|
|
1256
1149
|
|
|
1257
|
-
#: ../app/views/policies/_form.html.erb:45
|
|
1258
|
-
#: ../app/views/policies/steps/_schedule_form.html.erb:6
|
|
1150
|
+
#: ../app/views/policies/_form.html.erb:45 ../app/views/policies/steps/_schedule_form.html.erb:6
|
|
1259
1151
|
msgid "Choose period"
|
|
1260
1152
|
msgstr "选择期间"
|
|
1261
1153
|
|
|
1262
|
-
#: ../app/views/policies/_form.html.erb:47
|
|
1263
|
-
#: ../app/views/policies/steps/_schedule_form.html.erb:9
|
|
1154
|
+
#: ../app/views/policies/_form.html.erb:47 ../app/views/policies/steps/_schedule_form.html.erb:9
|
|
1264
1155
|
msgid "Choose weekday"
|
|
1265
1156
|
msgstr "选择星期几"
|
|
1266
1157
|
|
|
1267
|
-
#: ../app/views/policies/_form.html.erb:48
|
|
1268
|
-
|
|
1269
|
-
msgid ""
|
|
1270
|
-
"Number of a day in month, note that not all months have same count of days"
|
|
1158
|
+
#: ../app/views/policies/_form.html.erb:48 ../app/views/policies/steps/_schedule_form.html.erb:13
|
|
1159
|
+
msgid "Number of a day in month, note that not all months have same count of days"
|
|
1271
1160
|
msgstr "月份中的日子,請注意並不是所有月份都有同樣的天數"
|
|
1272
1161
|
|
|
1273
|
-
#: ../app/views/policies/_form.html.erb:49
|
|
1274
|
-
|
|
1275
|
-
msgid ""
|
|
1276
|
-
"You can specify custom cron line, e.g. \"0 3 * * *\", separate each of 5"
|
|
1277
|
-
" values by space"
|
|
1162
|
+
#: ../app/views/policies/_form.html.erb:49 ../app/views/policies/steps/_schedule_form.html.erb:14
|
|
1163
|
+
msgid "You can specify custom cron line, e.g. \"0 3 * * *\", separate each of 5 values by space"
|
|
1278
1164
|
msgstr "您可以设置定制的 cron 行,如 \"0 3 * * *\",其中的 5 个值由空格分隔"
|
|
1279
1165
|
|
|
1280
|
-
#: ../app/views/policies/_list.html.erb:3
|
|
1281
|
-
#: ../app/views/tailoring_files/_list.html.erb:3
|
|
1282
|
-
#: ../webpack/routes/OvalContents/OvalContentsIndex/OvalContentsTable.js:19
|
|
1283
|
-
#: ../webpack/routes/OvalContents/OvalContentsNew/OvalContentsNew.js:57
|
|
1284
|
-
#: ../webpack/routes/OvalContents/OvalContentsShow/OvalContentsShow.js:48
|
|
1285
|
-
#: ../webpack/routes/OvalPolicies/OvalPoliciesIndex/OvalPoliciesTable.js:19
|
|
1286
|
-
#: ../webpack/routes/OvalPolicies/OvalPoliciesNew/NewOvalPolicyForm.js:56
|
|
1287
|
-
#: ../webpack/routes/OvalPolicies/OvalPoliciesShow/DetailsTab.js:31
|
|
1288
|
-
#: ../webpack/routes/OvalPolicies/OvalPoliciesShow/HostgroupsTable.js:9
|
|
1166
|
+
#: ../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
|
|
1289
1167
|
msgid "Name"
|
|
1290
1168
|
msgstr "名称"
|
|
1291
1169
|
|
|
1292
1170
|
#: ../app/views/policies/_list.html.erb:4
|
|
1293
1171
|
msgid "Content"
|
|
1294
|
-
msgstr "
|
|
1172
|
+
msgstr ""
|
|
1295
1173
|
|
|
1296
1174
|
#: ../app/views/policies/_list.html.erb:5
|
|
1297
1175
|
msgid "Profile"
|
|
1298
|
-
msgstr "
|
|
1176
|
+
msgstr ""
|
|
1299
1177
|
|
|
1300
1178
|
#: ../app/views/policies/_list.html.erb:7
|
|
1301
1179
|
msgid "Effective Profile"
|
|
@@ -1317,25 +1195,19 @@ msgstr "显示指南"
|
|
|
1317
1195
|
msgid "Delete compliance policy %s with all of its reports?"
|
|
1318
1196
|
msgstr "是否删除所有报告中的合规策略 %s?"
|
|
1319
1197
|
|
|
1320
|
-
#: ../app/views/policies/create.html.erb:1
|
|
1321
|
-
#: ../app/views/policies/index.html.erb:5 ../app/views/policies/new.html.erb:1
|
|
1198
|
+
#: ../app/views/policies/create.html.erb:1 ../app/views/policies/index.html.erb:5 ../app/views/policies/new.html.erb:1
|
|
1322
1199
|
msgid "New Compliance Policy"
|
|
1323
1200
|
msgstr "新的合规政策"
|
|
1324
1201
|
|
|
1325
|
-
#: ../app/views/policies/disassociate_multiple_hosts.html.erb:4
|
|
1326
|
-
#: ../app/views/policies/select_multiple_hosts.html.erb:5
|
|
1202
|
+
#: ../app/views/policies/disassociate_multiple_hosts.html.erb:4 ../app/views/policies/select_multiple_hosts.html.erb:5
|
|
1327
1203
|
msgid "Select Compliance Policy"
|
|
1328
1204
|
msgstr "选择合规政策"
|
|
1329
1205
|
|
|
1330
|
-
#: ../app/views/policies/edit.html.erb:1
|
|
1331
|
-
#: ../app/views/scap_contents/edit.html.erb:1
|
|
1332
|
-
#: ../app/views/tailoring_files/edit.html.erb:1
|
|
1206
|
+
#: ../app/views/policies/edit.html.erb:1 ../app/views/scap_contents/edit.html.erb:1 ../app/views/tailoring_files/edit.html.erb:1
|
|
1333
1207
|
msgid "Edit %s"
|
|
1334
1208
|
msgstr "编辑 %s"
|
|
1335
1209
|
|
|
1336
|
-
#: ../app/views/policies/index.html.erb:2
|
|
1337
|
-
#: ../app/views/policies/welcome.html.erb:1
|
|
1338
|
-
#: ../app/views/policies/welcome.html.erb:6
|
|
1210
|
+
#: ../app/views/policies/index.html.erb:2 ../app/views/policies/welcome.html.erb:1 ../app/views/policies/welcome.html.erb:6
|
|
1339
1211
|
msgid "Compliance Policies"
|
|
1340
1212
|
msgstr "合规性策略"
|
|
1341
1213
|
|
|
@@ -1372,9 +1244,7 @@ msgid "SCAP content"
|
|
|
1372
1244
|
msgstr "SCAP 內容"
|
|
1373
1245
|
|
|
1374
1246
|
#: ../app/views/policies/welcome.html.erb:8
|
|
1375
|
-
msgid ""
|
|
1376
|
-
"Once SCAP content is present, you can create a policy, assign select host "
|
|
1377
|
-
"groups and schedule to run."
|
|
1247
|
+
msgid "Once SCAP content is present, you can create a policy, assign select host groups and schedule to run."
|
|
1378
1248
|
msgstr "存在 SCAP 内容时,您可以创建策略、分配选定主机组,并调度运行时间。"
|
|
1379
1249
|
|
|
1380
1250
|
#: ../app/views/policies/welcome.html.erb:12
|
|
@@ -1437,8 +1307,7 @@ msgstr "状态图"
|
|
|
1437
1307
|
msgid "Latest reports for policy: %s"
|
|
1438
1308
|
msgstr "最新的政策报告:%s"
|
|
1439
1309
|
|
|
1440
|
-
#: ../app/views/scap_contents/_form.html.erb:9
|
|
1441
|
-
#: ../app/views/tailoring_files/_form.html.erb:9
|
|
1310
|
+
#: ../app/views/scap_contents/_form.html.erb:9 ../app/views/tailoring_files/_form.html.erb:9
|
|
1442
1311
|
msgid "File Upload"
|
|
1443
1312
|
msgstr "上传文件"
|
|
1444
1313
|
|
|
@@ -1448,20 +1317,17 @@ msgstr "SCAP 数据流文件"
|
|
|
1448
1317
|
|
|
1449
1318
|
#: ../app/views/scap_contents/_list.html.erb:3
|
|
1450
1319
|
msgid "Title"
|
|
1451
|
-
msgstr "
|
|
1320
|
+
msgstr ""
|
|
1452
1321
|
|
|
1453
|
-
#: ../app/views/scap_contents/_list.html.erb:4
|
|
1454
|
-
#: ../app/views/tailoring_files/_list.html.erb:4
|
|
1322
|
+
#: ../app/views/scap_contents/_list.html.erb:4 ../app/views/tailoring_files/_list.html.erb:4
|
|
1455
1323
|
msgid "File name"
|
|
1456
|
-
msgstr "
|
|
1324
|
+
msgstr ""
|
|
1457
1325
|
|
|
1458
|
-
#: ../app/views/scap_contents/_list.html.erb:5
|
|
1459
|
-
#: ../app/views/tailoring_files/_list.html.erb:5
|
|
1326
|
+
#: ../app/views/scap_contents/_list.html.erb:5 ../app/views/tailoring_files/_list.html.erb:5
|
|
1460
1327
|
msgid "Created at"
|
|
1461
|
-
msgstr "
|
|
1328
|
+
msgstr ""
|
|
1462
1329
|
|
|
1463
|
-
#: ../app/views/scap_contents/_list.html.erb:17
|
|
1464
|
-
#: ../app/views/tailoring_files/_list.html.erb:23
|
|
1330
|
+
#: ../app/views/scap_contents/_list.html.erb:17 ../app/views/tailoring_files/_list.html.erb:23
|
|
1465
1331
|
msgid "Download"
|
|
1466
1332
|
msgstr "下載"
|
|
1467
1333
|
|
|
@@ -1485,21 +1351,24 @@ msgstr "上载新的 SCAP 内容文件"
|
|
|
1485
1351
|
msgid ""
|
|
1486
1352
|
"The Security Content Automation Protocol (SCAP), combines a number of open standards that are used to enumerate software flaws and\n"
|
|
1487
1353
|
" configuration issues related to security. "
|
|
1488
|
-
msgstr "
|
|
1354
|
+
msgstr ""
|
|
1355
|
+
"安全内容自动化协议(SCAP)是由一系列用来枚举与安全性有关的软件漏洞和\n"
|
|
1356
|
+
" 配置问题的开源标准。"
|
|
1489
1357
|
|
|
1490
1358
|
#: ../app/views/scap_contents/welcome.html.erb:9
|
|
1491
1359
|
msgid ""
|
|
1492
1360
|
"In Foreman, scap_contents represent the SCAP security guides on your hosts, and create SCAP profiles for you to assign to hosts / host groups\n"
|
|
1493
1361
|
" via %s"
|
|
1494
|
-
msgstr "
|
|
1362
|
+
msgstr ""
|
|
1363
|
+
"在 Foreman 中,scap_contents 代表主机上的 SCAP 安全指南,并创建 SCAP 配置文件,供您通过\n"
|
|
1364
|
+
" %s 分配到主机/主机组"
|
|
1495
1365
|
|
|
1496
1366
|
#: ../app/views/scap_contents/welcome.html.erb:14
|
|
1497
1367
|
msgid "New SCAP Content"
|
|
1498
1368
|
msgstr "新建 SCAP 内容"
|
|
1499
1369
|
|
|
1500
1370
|
#: ../app/views/smart_proxies/_openscap_spool.html.erb:4
|
|
1501
|
-
msgid ""
|
|
1502
|
-
"%s spool errors detected, inspect the appropriate file directly on proxy"
|
|
1371
|
+
msgid "%s spool errors detected, inspect the appropriate file directly on proxy"
|
|
1503
1372
|
msgstr "发现了 %s 个 spool 错误,在代理上直接检查相关的文件"
|
|
1504
1373
|
|
|
1505
1374
|
#: ../app/views/smart_proxies/_openscap_spool.html.erb:8
|
|
@@ -1511,10 +1380,7 @@ msgid "None found"
|
|
|
1511
1380
|
msgstr "未找到"
|
|
1512
1381
|
|
|
1513
1382
|
#: ../app/views/smart_proxies/plugins/_openscap.html.erb:6
|
|
1514
|
-
msgid ""
|
|
1515
|
-
"Proxy failed to send a report from spool to Foreman. This indicates a "
|
|
1516
|
-
"corrupted report format. Report has been moved to directory for storing "
|
|
1517
|
-
"corrupted files on proxy for later inspection."
|
|
1383
|
+
msgid "Proxy failed to send a report from spool to Foreman. This indicates a corrupted report format. Report has been moved to directory for storing corrupted files on proxy for later inspection."
|
|
1518
1384
|
msgstr "代理服务器未能从 spool 发送报告至 Foreman。这表示报告格式损坏。报告已被移动至目录,以便将破坏文件存储到代理服务器上供以后检查。"
|
|
1519
1385
|
|
|
1520
1386
|
#: ../app/views/smart_proxies/plugins/_openscap.html.erb:7
|
|
@@ -1529,10 +1395,7 @@ msgstr "数据流 Tailoring 文件"
|
|
|
1529
1395
|
msgid "Delete tailoring file %s?"
|
|
1530
1396
|
msgstr "删除 tailoring 文件 %s?"
|
|
1531
1397
|
|
|
1532
|
-
#: ../app/views/tailoring_files/index.html.erb:1
|
|
1533
|
-
#: ../app/views/tailoring_files/welcome.html.erb:1
|
|
1534
|
-
#: ../app/views/tailoring_files/welcome.html.erb:6
|
|
1535
|
-
#: ../lib/foreman_openscap/engine.rb:169
|
|
1398
|
+
#: ../app/views/tailoring_files/index.html.erb:1 ../app/views/tailoring_files/welcome.html.erb:1 ../app/views/tailoring_files/welcome.html.erb:6 ../lib/foreman_openscap/engine.rb:169
|
|
1536
1399
|
msgid "Tailoring Files"
|
|
1537
1400
|
msgstr "Tailoring 文件"
|
|
1538
1401
|
|
|
@@ -1545,16 +1408,16 @@ msgid "Upload new Tailoring File"
|
|
|
1545
1408
|
msgstr "上传新定制文件"
|
|
1546
1409
|
|
|
1547
1410
|
#: ../app/views/tailoring_files/welcome.html.erb:7
|
|
1548
|
-
msgid ""
|
|
1549
|
-
"It may sometimes be required to adjust the security policy to your specific "
|
|
1550
|
-
"needs. "
|
|
1411
|
+
msgid "It may sometimes be required to adjust the security policy to your specific needs. "
|
|
1551
1412
|
msgstr "有些可能需要根据您的具体需求调整安全策略。"
|
|
1552
1413
|
|
|
1553
1414
|
#: ../app/views/tailoring_files/welcome.html.erb:8
|
|
1554
1415
|
msgid ""
|
|
1555
1416
|
"In Foreman, tailoring_files represent the custom modifications to default XCCDF profiles and they can be applied to hosts\n"
|
|
1556
1417
|
" via %s"
|
|
1557
|
-
msgstr "
|
|
1418
|
+
msgstr ""
|
|
1419
|
+
"在 Foreman 中,tailoring_files 代表对默认 XCCDF 配置文件的自定义更改,它们可通过\n"
|
|
1420
|
+
" %s 应用于主机"
|
|
1558
1421
|
|
|
1559
1422
|
#: ../app/views/tailoring_files/welcome.html.erb:13
|
|
1560
1423
|
msgid "New Tailoring File"
|
|
@@ -1569,38 +1432,36 @@ msgid "A summary of reports for OpenSCAP policies"
|
|
|
1569
1432
|
msgstr "OpenSCAP 策略报告摘要"
|
|
1570
1433
|
|
|
1571
1434
|
#: ../lib/foreman_openscap/bulk_upload.rb:20
|
|
1572
|
-
msgid ""
|
|
1573
|
-
|
|
1574
|
-
"server?"
|
|
1575
|
-
msgstr "无法找到 scap-security-guide RPM,您确定是否已安装在服务器上?"
|
|
1435
|
+
msgid "Can't find scap-security-guide RPM, are you sure it is installed on your server?"
|
|
1436
|
+
msgstr ""
|
|
1576
1437
|
|
|
1577
1438
|
#: ../lib/foreman_openscap/bulk_upload.rb:29
|
|
1578
1439
|
msgid "Expected an array of files to upload, got: %s."
|
|
1579
|
-
msgstr "
|
|
1440
|
+
msgstr ""
|
|
1580
1441
|
|
|
1581
1442
|
#: ../lib/foreman_openscap/bulk_upload.rb:35
|
|
1582
1443
|
msgid "%s is a directory, expecting file."
|
|
1583
|
-
msgstr "
|
|
1444
|
+
msgstr ""
|
|
1584
1445
|
|
|
1585
1446
|
#: ../lib/foreman_openscap/bulk_upload.rb:40
|
|
1586
1447
|
msgid "%s does not exist, skipping."
|
|
1587
|
-
msgstr "
|
|
1448
|
+
msgstr ""
|
|
1588
1449
|
|
|
1589
1450
|
#: ../lib/foreman_openscap/bulk_upload.rb:58
|
|
1590
1451
|
msgid "Failed saving %s:"
|
|
1591
|
-
msgstr "
|
|
1452
|
+
msgstr ""
|
|
1592
1453
|
|
|
1593
1454
|
#: ../lib/foreman_openscap/bulk_upload.rb:66
|
|
1594
1455
|
msgid "No such directory: %s. Please check the path you have provided."
|
|
1595
|
-
msgstr "
|
|
1456
|
+
msgstr ""
|
|
1596
1457
|
|
|
1597
1458
|
#: ../lib/foreman_openscap/bulk_upload.rb:88
|
|
1598
1459
|
msgid "Red Hat %s default content"
|
|
1599
|
-
msgstr "
|
|
1460
|
+
msgstr ""
|
|
1600
1461
|
|
|
1601
1462
|
#: ../lib/foreman_openscap/bulk_upload.rb:88
|
|
1602
1463
|
msgid "%s content"
|
|
1603
|
-
msgstr "
|
|
1464
|
+
msgstr ""
|
|
1604
1465
|
|
|
1605
1466
|
#: ../lib/foreman_openscap/engine.rb:160
|
|
1606
1467
|
msgid "Policies"
|
|
@@ -1614,21 +1475,16 @@ msgstr "SCAP 內容"
|
|
|
1614
1475
|
msgid "Reports"
|
|
1615
1476
|
msgstr "报表"
|
|
1616
1477
|
|
|
1617
|
-
#: ../lib/foreman_openscap/engine.rb:172
|
|
1618
|
-
#: ../webpack/routes/OvalContents/OvalContentsIndex/OvalContentsIndex.js:33
|
|
1478
|
+
#: ../lib/foreman_openscap/engine.rb:172 ../webpack/routes/OvalContents/OvalContentsIndex/OvalContentsIndex.js:33
|
|
1619
1479
|
msgid "OVAL Contents"
|
|
1620
1480
|
msgstr "OVAL 內容"
|
|
1621
1481
|
|
|
1622
|
-
#: ../lib/foreman_openscap/engine.rb:177
|
|
1623
|
-
#: ../webpack/routes/OvalPolicies/OvalPoliciesIndex/OvalPoliciesIndex.js:32
|
|
1482
|
+
#: ../lib/foreman_openscap/engine.rb:177 ../webpack/routes/OvalPolicies/OvalPoliciesIndex/OvalPoliciesIndex.js:32
|
|
1624
1483
|
msgid "OVAL Policies"
|
|
1625
1484
|
msgstr "OVAL 策略"
|
|
1626
1485
|
|
|
1627
1486
|
#: ../lib/foreman_openscap/engine.rb:199
|
|
1628
|
-
msgid ""
|
|
1629
|
-
"OpenSCAP Proxy to use for fetching SCAP content and uploading ARF reports. "
|
|
1630
|
-
"Leave blank and override appropriate parameters when using proxy load "
|
|
1631
|
-
"balancer."
|
|
1487
|
+
msgid "OpenSCAP Proxy to use for fetching SCAP content and uploading ARF reports. Leave blank and override appropriate parameters when using proxy load balancer."
|
|
1632
1488
|
msgstr "用来获取 SCAP 内容以及上传 ARF 报告的 OpenSCAP 代理。如果为空,则在使用代理负责均衡器时覆盖相应的参数。"
|
|
1633
1489
|
|
|
1634
1490
|
#: ../lib/foreman_openscap/engine.rb:203 ../lib/foreman_openscap/engine.rb:208
|
|
@@ -1639,84 +1495,201 @@ msgstr "OpenSCAP 代理"
|
|
|
1639
1495
|
msgid "ID of OpenSCAP Proxy"
|
|
1640
1496
|
msgstr "OpenSCAP 代理服务器的 ID"
|
|
1641
1497
|
|
|
1642
|
-
#: ../lib/foreman_openscap/engine.rb:270 ../lib/foreman_openscap/engine.rb:
|
|
1498
|
+
#: ../lib/foreman_openscap/engine.rb:270 ../lib/foreman_openscap/engine.rb:293
|
|
1643
1499
|
msgid "Run OpenSCAP scan"
|
|
1644
1500
|
msgstr "运行 OpenSCAP 扫描"
|
|
1645
1501
|
|
|
1646
|
-
#: ../lib/foreman_openscap/engine.rb:275 ../lib/foreman_openscap/engine.rb:
|
|
1502
|
+
#: ../lib/foreman_openscap/engine.rb:275 ../lib/foreman_openscap/engine.rb:294
|
|
1647
1503
|
msgid "Run OVAL scan"
|
|
1648
1504
|
msgstr "运行 OVAL 扫描"
|
|
1649
1505
|
|
|
1506
|
+
#: ../lib/foreman_openscap/engine.rb:279 ../lib/foreman_openscap/engine.rb:295
|
|
1507
|
+
msgid "Run OpenSCAP remediation with Ansible"
|
|
1508
|
+
msgstr ""
|
|
1509
|
+
|
|
1510
|
+
#: ../lib/foreman_openscap/engine.rb:284 ../lib/foreman_openscap/engine.rb:296
|
|
1511
|
+
msgid "Run OpenSCAP remediation with Shell"
|
|
1512
|
+
msgstr ""
|
|
1513
|
+
|
|
1650
1514
|
#: ../webpack/components/ConfirmModal.js:19
|
|
1651
1515
|
msgid "Confirm"
|
|
1652
|
-
msgstr "
|
|
1516
|
+
msgstr ""
|
|
1653
1517
|
|
|
1654
1518
|
#: ../webpack/components/EditableInput.js:78
|
|
1655
1519
|
msgid "None provided"
|
|
1656
|
-
msgstr "
|
|
1520
|
+
msgstr ""
|
|
1657
1521
|
|
|
1658
1522
|
#: ../webpack/components/HostExtentions/HostKebabItems.js:37
|
|
1659
1523
|
msgid "There's no available report for this host"
|
|
1660
|
-
msgstr "
|
|
1524
|
+
msgstr ""
|
|
1661
1525
|
|
|
1662
|
-
#: ../webpack/components/
|
|
1663
|
-
msgid "
|
|
1664
|
-
msgstr "
|
|
1526
|
+
#: ../webpack/components/OpenscapRemediationWizard/ViewSelectedHostsLink.js:27
|
|
1527
|
+
msgid "View selected hosts"
|
|
1528
|
+
msgstr ""
|
|
1529
|
+
|
|
1530
|
+
#: ../webpack/components/OpenscapRemediationWizard/index.js:69 ../webpack/components/OpenscapRemediationWizard/steps/ReviewHosts.js:174
|
|
1531
|
+
msgid "Review hosts"
|
|
1532
|
+
msgstr ""
|
|
1533
|
+
|
|
1534
|
+
#: ../webpack/components/OpenscapRemediationWizard/index.js:77 ../webpack/components/OpenscapRemediationWizard/steps/SnippetSelect.js:123
|
|
1535
|
+
msgid "Select snippet"
|
|
1536
|
+
msgstr ""
|
|
1537
|
+
|
|
1538
|
+
#: ../webpack/components/OpenscapRemediationWizard/index.js:85 ../webpack/components/OpenscapRemediationWizard/steps/ReviewRemediation.js:94
|
|
1539
|
+
msgid "Review remediation"
|
|
1540
|
+
msgstr ""
|
|
1541
|
+
|
|
1542
|
+
#: ../webpack/components/OpenscapRemediationWizard/index.js:89
|
|
1543
|
+
msgid "Run"
|
|
1544
|
+
msgstr ""
|
|
1545
|
+
|
|
1546
|
+
#: ../webpack/components/OpenscapRemediationWizard/index.js:93
|
|
1547
|
+
msgid "Done"
|
|
1548
|
+
msgstr ""
|
|
1549
|
+
|
|
1550
|
+
#: ../webpack/components/OpenscapRemediationWizard/index.js:127
|
|
1551
|
+
msgid "Remediate %s rule"
|
|
1552
|
+
msgstr ""
|
|
1553
|
+
|
|
1554
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/Finish.js:84
|
|
1555
|
+
msgid "Job details"
|
|
1556
|
+
msgstr ""
|
|
1665
1557
|
|
|
1666
|
-
#: ../webpack/components/
|
|
1558
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/Finish.js:87
|
|
1559
|
+
msgid "Close"
|
|
1560
|
+
msgstr ""
|
|
1561
|
+
|
|
1562
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/Finish.js:97 ../webpack/components/OpenscapRemediationWizard/steps/SnippetSelect.js:144 ../webpack/components/withLoading.js:12
|
|
1667
1563
|
msgid "Error!"
|
|
1668
1564
|
msgstr "错误!"
|
|
1669
1565
|
|
|
1566
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/Finish.js:105
|
|
1567
|
+
msgid "The job has started on selected host(s), you can check the status on the job details page."
|
|
1568
|
+
msgstr ""
|
|
1569
|
+
|
|
1570
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/ReviewHosts.js:167
|
|
1571
|
+
msgid "OS"
|
|
1572
|
+
msgstr ""
|
|
1573
|
+
|
|
1574
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/ReviewHosts.js:175
|
|
1575
|
+
msgid "By default, remediation is applied to the current host. Optionally, remediate any additional hosts that fail the rule."
|
|
1576
|
+
msgstr ""
|
|
1577
|
+
|
|
1578
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/ReviewRemediation.js:61
|
|
1579
|
+
msgid "Review the remediation snippet and apply it to the host manually."
|
|
1580
|
+
msgstr ""
|
|
1581
|
+
|
|
1582
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/ReviewRemediation.js:62
|
|
1583
|
+
msgid "Review the remediation snippet that will be applied to selected host(s)."
|
|
1584
|
+
msgstr ""
|
|
1585
|
+
|
|
1586
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/ReviewRemediation.js:67
|
|
1587
|
+
msgid "A reboot is required after applying remediation."
|
|
1588
|
+
msgstr ""
|
|
1589
|
+
|
|
1590
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/ReviewRemediation.js:68
|
|
1591
|
+
msgid "A reboot might be required after applying remediation."
|
|
1592
|
+
msgstr ""
|
|
1593
|
+
|
|
1594
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/ReviewRemediation.js:84
|
|
1595
|
+
msgid "Successfully copied to clipboard!"
|
|
1596
|
+
msgstr ""
|
|
1597
|
+
|
|
1598
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/ReviewRemediation.js:85
|
|
1599
|
+
msgid "Copy to clipboard"
|
|
1600
|
+
msgstr ""
|
|
1601
|
+
|
|
1602
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/ReviewRemediation.js:103
|
|
1603
|
+
msgid "Do not implement any of the recommended remedial actions or scripts without first testing them in a non-production environment."
|
|
1604
|
+
msgstr ""
|
|
1605
|
+
|
|
1606
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/ReviewRemediation.js:106
|
|
1607
|
+
msgid "Remediation might render the system non-functional."
|
|
1608
|
+
msgstr ""
|
|
1609
|
+
|
|
1610
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/ReviewRemediation.js:139
|
|
1611
|
+
msgid "Other hosts failing this rule"
|
|
1612
|
+
msgstr ""
|
|
1613
|
+
|
|
1614
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/ReviewRemediation.js:155
|
|
1615
|
+
msgid "Reboot the system(s)"
|
|
1616
|
+
msgstr ""
|
|
1617
|
+
|
|
1618
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/SnippetSelect.js:71
|
|
1619
|
+
msgid "Method"
|
|
1620
|
+
msgstr ""
|
|
1621
|
+
|
|
1622
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/SnippetSelect.js:77
|
|
1623
|
+
msgid "Remote job"
|
|
1624
|
+
msgstr ""
|
|
1625
|
+
|
|
1626
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/SnippetSelect.js:86
|
|
1627
|
+
msgid "Manual"
|
|
1628
|
+
msgstr ""
|
|
1629
|
+
|
|
1630
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/SnippetSelect.js:101
|
|
1631
|
+
msgid "There is no job to remediate with. Please remediate manually."
|
|
1632
|
+
msgstr ""
|
|
1633
|
+
|
|
1634
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/SnippetSelect.js:107
|
|
1635
|
+
msgid "Snippet"
|
|
1636
|
+
msgstr ""
|
|
1637
|
+
|
|
1638
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/SnippetSelect.js:150
|
|
1639
|
+
msgid "Select remediation method"
|
|
1640
|
+
msgstr ""
|
|
1641
|
+
|
|
1642
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/SnippetSelect.js:151
|
|
1643
|
+
msgid "You can remediate by running a remote job or you can display a snippet for manual remediation."
|
|
1644
|
+
msgstr ""
|
|
1645
|
+
|
|
1646
|
+
#: ../webpack/components/withDeleteModal.js:27
|
|
1647
|
+
msgid "Are you sure you want to delete %s?"
|
|
1648
|
+
msgstr ""
|
|
1649
|
+
|
|
1670
1650
|
#: ../webpack/components/withLoading.js:64
|
|
1671
1651
|
msgid "Permission denied"
|
|
1672
|
-
msgstr "
|
|
1652
|
+
msgstr ""
|
|
1673
1653
|
|
|
1674
1654
|
#: ../webpack/helpers/mutationHelper.js:7
|
|
1675
1655
|
msgid "There was a following error when deleting %(name)s: %(error)s"
|
|
1676
|
-
msgstr "
|
|
1656
|
+
msgstr ""
|
|
1677
1657
|
|
|
1678
1658
|
#: ../webpack/helpers/permissionsHelper.js:34
|
|
1679
1659
|
msgid "You are not authorized to view the page. "
|
|
1680
|
-
msgstr "
|
|
1660
|
+
msgstr ""
|
|
1681
1661
|
|
|
1682
1662
|
#: ../webpack/helpers/permissionsHelper.js:37
|
|
1683
1663
|
msgid "Request the following permissions from administrator: %s."
|
|
1684
|
-
msgstr "
|
|
1664
|
+
msgstr ""
|
|
1685
1665
|
|
|
1686
1666
|
#: ../webpack/routes/OvalContents/OvalContentsIndex/OvalContentsIndex.js:40
|
|
1687
1667
|
msgid "No OVAL Contents found."
|
|
1688
1668
|
msgstr "找不到 OVAL 内容。"
|
|
1689
1669
|
|
|
1690
|
-
#: ../webpack/routes/OvalContents/OvalContentsIndex/OvalContentsIndex.js:42
|
|
1691
|
-
#: ../webpack/routes/OvalContents/OvalContentsIndex/OvalContentsTable.js:42
|
|
1670
|
+
#: ../webpack/routes/OvalContents/OvalContentsIndex/OvalContentsIndex.js:42 ../webpack/routes/OvalContents/OvalContentsIndex/OvalContentsTable.js:42
|
|
1692
1671
|
msgid "Delete OVAL Content"
|
|
1693
|
-
msgstr "
|
|
1672
|
+
msgstr ""
|
|
1694
1673
|
|
|
1695
1674
|
#: ../webpack/routes/OvalContents/OvalContentsIndex/OvalContentsIndex.js:49
|
|
1696
1675
|
msgid "OVAL Content successfully deleted."
|
|
1697
|
-
msgstr "
|
|
1676
|
+
msgstr ""
|
|
1698
1677
|
|
|
1699
|
-
#: ../webpack/routes/OvalContents/OvalContentsIndex/OvalContentsIndex.js:51
|
|
1700
|
-
#: ../webpack/routes/OvalContents/OvalContentsShow/OvalContentsShow.js:39
|
|
1701
|
-
#: ../webpack/routes/OvalPolicies/OvalPoliciesIndex/OvalPoliciesTable.js:19
|
|
1702
|
-
#: ../webpack/routes/OvalPolicies/OvalPoliciesNew/NewOvalPolicyForm.js:74
|
|
1678
|
+
#: ../webpack/routes/OvalContents/OvalContentsIndex/OvalContentsIndex.js:51 ../webpack/routes/OvalContents/OvalContentsShow/OvalContentsShow.js:39 ../webpack/routes/OvalPolicies/OvalPoliciesIndex/OvalPoliciesTable.js:19 ../webpack/routes/OvalPolicies/OvalPoliciesNew/NewOvalPolicyForm.js:74
|
|
1703
1679
|
msgid "OVAL Content"
|
|
1704
1680
|
msgstr "OVAL 内容"
|
|
1705
1681
|
|
|
1706
|
-
#: ../webpack/routes/OvalContents/OvalContentsIndex/OvalContentsIndex.js:56
|
|
1707
|
-
#: ../webpack/routes/OvalContents/OvalContentsIndex/OvalContentsTable.js:57
|
|
1682
|
+
#: ../webpack/routes/OvalContents/OvalContentsIndex/OvalContentsIndex.js:56 ../webpack/routes/OvalContents/OvalContentsIndex/OvalContentsTable.js:57
|
|
1708
1683
|
msgid "Create OVAL Content"
|
|
1709
|
-
msgstr "
|
|
1684
|
+
msgstr ""
|
|
1710
1685
|
|
|
1711
|
-
#: ../webpack/routes/OvalContents/OvalContentsIndex/OvalContentsTable.js:20
|
|
1712
|
-
#: ../webpack/routes/OvalContents/OvalContentsNew/OvalContentsNew.js:103
|
|
1713
|
-
#: ../webpack/routes/OvalContents/OvalContentsShow/OvalContentsShow.js:21
|
|
1686
|
+
#: ../webpack/routes/OvalContents/OvalContentsIndex/OvalContentsTable.js:20 ../webpack/routes/OvalContents/OvalContentsNew/OvalContentsNew.js:103 ../webpack/routes/OvalContents/OvalContentsShow/OvalContentsShow.js:21
|
|
1714
1687
|
msgid "URL"
|
|
1715
|
-
msgstr "
|
|
1688
|
+
msgstr ""
|
|
1716
1689
|
|
|
1717
1690
|
#: ../webpack/routes/OvalContents/OvalContentsIndex/OvalContentsTable.js:21
|
|
1718
1691
|
msgid "Original File Name"
|
|
1719
|
-
msgstr "
|
|
1692
|
+
msgstr ""
|
|
1720
1693
|
|
|
1721
1694
|
#: ../webpack/routes/OvalContents/OvalContentsIndex/OvalContentsTable.js:69
|
|
1722
1695
|
msgid "OVAL Contents table"
|
|
@@ -1724,59 +1697,55 @@ msgstr "OVAL 内容表"
|
|
|
1724
1697
|
|
|
1725
1698
|
#: ../webpack/routes/OvalContents/OvalContentsNew/OvalContentsNew.js:39
|
|
1726
1699
|
msgid "New OVAL Content"
|
|
1727
|
-
msgstr "
|
|
1700
|
+
msgstr ""
|
|
1728
1701
|
|
|
1729
1702
|
#: ../webpack/routes/OvalContents/OvalContentsNew/OvalContentsNew.js:62
|
|
1730
1703
|
msgid "OVAL Content Source"
|
|
1731
|
-
msgstr "
|
|
1704
|
+
msgstr ""
|
|
1732
1705
|
|
|
1733
1706
|
#: ../webpack/routes/OvalContents/OvalContentsNew/OvalContentsNew.js:74
|
|
1734
1707
|
msgid "OVAL Content from URL"
|
|
1735
|
-
msgstr "
|
|
1708
|
+
msgstr ""
|
|
1736
1709
|
|
|
1737
1710
|
#: ../webpack/routes/OvalContents/OvalContentsNew/OvalContentsNew.js:88
|
|
1738
1711
|
msgid "OVAL Content from file"
|
|
1739
|
-
msgstr "
|
|
1712
|
+
msgstr ""
|
|
1740
1713
|
|
|
1741
|
-
#: ../webpack/routes/OvalContents/OvalContentsNew/OvalContentsNew.js:92
|
|
1742
|
-
#: ../webpack/routes/OvalContents/OvalContentsShow/OvalContentsShow.js:28
|
|
1714
|
+
#: ../webpack/routes/OvalContents/OvalContentsNew/OvalContentsNew.js:92 ../webpack/routes/OvalContents/OvalContentsShow/OvalContentsShow.js:28
|
|
1743
1715
|
msgid "File"
|
|
1744
|
-
msgstr "
|
|
1716
|
+
msgstr ""
|
|
1745
1717
|
|
|
1746
1718
|
#: ../webpack/routes/OvalContents/OvalContentsNew/OvalContentsNewHelper.js:38
|
|
1747
1719
|
msgid "OVAL Content %s successfully created"
|
|
1748
|
-
msgstr "
|
|
1720
|
+
msgstr ""
|
|
1749
1721
|
|
|
1750
1722
|
#: ../webpack/routes/OvalContents/OvalContentsNew/OvalContentsNewHelper.js:52
|
|
1751
1723
|
msgid "Unknown error when submitting data, please try again later."
|
|
1752
|
-
msgstr "
|
|
1724
|
+
msgstr ""
|
|
1753
1725
|
|
|
1754
|
-
#: ../webpack/routes/OvalContents/OvalContentsShow/index.js:26
|
|
1755
|
-
#: ../webpack/routes/OvalPolicies/OvalPoliciesNew/OvalPoliciesNew.js:22
|
|
1726
|
+
#: ../webpack/routes/OvalContents/OvalContentsShow/index.js:26 ../webpack/routes/OvalPolicies/OvalPoliciesNew/OvalPoliciesNew.js:22
|
|
1756
1727
|
msgid "No OVAL Content found"
|
|
1757
|
-
msgstr "
|
|
1728
|
+
msgstr ""
|
|
1758
1729
|
|
|
1759
1730
|
#: ../webpack/routes/OvalPolicies/OvalPoliciesIndex/OvalPoliciesIndex.js:39
|
|
1760
1731
|
msgid "No OVAL Policies found"
|
|
1761
1732
|
msgstr "找不到 OVAL 政策"
|
|
1762
1733
|
|
|
1763
|
-
#: ../webpack/routes/OvalPolicies/OvalPoliciesIndex/OvalPoliciesIndex.js:41
|
|
1764
|
-
#: ../webpack/routes/OvalPolicies/OvalPoliciesIndex/OvalPoliciesTable.js:33
|
|
1734
|
+
#: ../webpack/routes/OvalPolicies/OvalPoliciesIndex/OvalPoliciesIndex.js:41 ../webpack/routes/OvalPolicies/OvalPoliciesIndex/OvalPoliciesTable.js:33
|
|
1765
1735
|
msgid "Delete OVAL Policy"
|
|
1766
|
-
msgstr "
|
|
1736
|
+
msgstr ""
|
|
1767
1737
|
|
|
1768
1738
|
#: ../webpack/routes/OvalPolicies/OvalPoliciesIndex/OvalPoliciesIndex.js:48
|
|
1769
1739
|
msgid "OVAL policy was successfully deleted."
|
|
1770
|
-
msgstr "
|
|
1740
|
+
msgstr ""
|
|
1771
1741
|
|
|
1772
1742
|
#: ../webpack/routes/OvalPolicies/OvalPoliciesIndex/OvalPoliciesIndex.js:50
|
|
1773
1743
|
msgid "OVAL policy"
|
|
1774
|
-
msgstr "
|
|
1744
|
+
msgstr ""
|
|
1775
1745
|
|
|
1776
|
-
#: ../webpack/routes/OvalPolicies/OvalPoliciesIndex/OvalPoliciesTable.js:48
|
|
1777
|
-
#: ../webpack/routes/OvalPolicies/OvalPoliciesNew/OvalPoliciesNew.js:17
|
|
1746
|
+
#: ../webpack/routes/OvalPolicies/OvalPoliciesIndex/OvalPoliciesTable.js:48 ../webpack/routes/OvalPolicies/OvalPoliciesNew/OvalPoliciesNew.js:17
|
|
1778
1747
|
msgid "Create OVAL Policy"
|
|
1779
|
-
msgstr "
|
|
1748
|
+
msgstr ""
|
|
1780
1749
|
|
|
1781
1750
|
#: ../webpack/routes/OvalPolicies/OvalPoliciesIndex/OvalPoliciesTable.js:60
|
|
1782
1751
|
msgid "OVAL Policies Table"
|
|
@@ -1784,33 +1753,31 @@ msgstr "OVAL 策略表"
|
|
|
1784
1753
|
|
|
1785
1754
|
#: ../webpack/routes/OvalPolicies/OvalPoliciesNew/HostgroupSelect.js:107
|
|
1786
1755
|
msgid "Type a hostgroup name..."
|
|
1787
|
-
msgstr "
|
|
1756
|
+
msgstr ""
|
|
1788
1757
|
|
|
1789
1758
|
#: ../webpack/routes/OvalPolicies/OvalPoliciesNew/NewOvalPolicyForm.js:76
|
|
1790
1759
|
msgid "Choose OVAL Content"
|
|
1791
|
-
msgstr "
|
|
1760
|
+
msgstr ""
|
|
1792
1761
|
|
|
1793
1762
|
#: ../webpack/routes/OvalPolicies/OvalPoliciesNew/NewOvalPolicyFormHelpers.js:8
|
|
1794
1763
|
msgid "can't be blank"
|
|
1795
|
-
msgstr "
|
|
1764
|
+
msgstr ""
|
|
1796
1765
|
|
|
1797
1766
|
#: ../webpack/routes/OvalPolicies/OvalPoliciesNew/NewOvalPolicyFormHelpers.js:15
|
|
1798
1767
|
msgid "is not a valid cronline"
|
|
1799
|
-
msgstr "
|
|
1768
|
+
msgstr ""
|
|
1800
1769
|
|
|
1801
1770
|
#: ../webpack/routes/OvalPolicies/OvalPoliciesNew/NewOvalPolicyFormHelpers.js:54
|
|
1802
1771
|
msgid "OVAL Policy succesfully created."
|
|
1803
|
-
msgstr "
|
|
1772
|
+
msgstr ""
|
|
1804
1773
|
|
|
1805
1774
|
#: ../webpack/routes/OvalPolicies/OvalPoliciesNew/NewOvalPolicyFormHelpers.js:86
|
|
1806
1775
|
msgid "Failed to create OVAL Policy: %s"
|
|
1807
|
-
msgstr "
|
|
1776
|
+
msgstr ""
|
|
1808
1777
|
|
|
1809
1778
|
#: ../webpack/routes/OvalPolicies/OvalPoliciesNew/OvalPoliciesNew.js:23
|
|
1810
|
-
msgid ""
|
|
1811
|
-
|
|
1812
|
-
"proceeding."
|
|
1813
|
-
msgstr "创建 OVAL 策略需要 OVAL 内容。请在继续操作前创建一个。"
|
|
1779
|
+
msgid "OVAL Content is required to create OVAL Policy. Please create one before proceeding."
|
|
1780
|
+
msgstr ""
|
|
1814
1781
|
|
|
1815
1782
|
#: ../webpack/routes/OvalPolicies/OvalPoliciesShow/CvesTab.js:38
|
|
1816
1783
|
msgid "No CVEs found."
|
|
@@ -1818,7 +1785,7 @@ msgstr "找不到 CVE。"
|
|
|
1818
1785
|
|
|
1819
1786
|
#: ../webpack/routes/OvalPolicies/OvalPoliciesShow/CvesTable.js:15
|
|
1820
1787
|
msgid "Ref Id"
|
|
1821
|
-
msgstr "参考
|
|
1788
|
+
msgstr "参考 id"
|
|
1822
1789
|
|
|
1823
1790
|
#: ../webpack/routes/OvalPolicies/OvalPoliciesShow/CvesTable.js:16
|
|
1824
1791
|
msgid "Has Errata?"
|
|
@@ -1834,15 +1801,15 @@ msgstr "OVAL 策略的 CVE 表"
|
|
|
1834
1801
|
|
|
1835
1802
|
#: ../webpack/routes/OvalPolicies/OvalPoliciesShow/DetailsTab.js:47
|
|
1836
1803
|
msgid "Period"
|
|
1837
|
-
msgstr "
|
|
1804
|
+
msgstr ""
|
|
1838
1805
|
|
|
1839
1806
|
#: ../webpack/routes/OvalPolicies/OvalPoliciesShow/HostgroupsTab.js:38
|
|
1840
1807
|
msgid "No Hostgroups found."
|
|
1841
|
-
msgstr "
|
|
1808
|
+
msgstr ""
|
|
1842
1809
|
|
|
1843
1810
|
#: ../webpack/routes/OvalPolicies/OvalPoliciesShow/HostgroupsTable.js:26
|
|
1844
1811
|
msgid "Table of hostgroups for OVAL policy"
|
|
1845
|
-
msgstr "
|
|
1812
|
+
msgstr ""
|
|
1846
1813
|
|
|
1847
1814
|
#: ../webpack/routes/OvalPolicies/OvalPoliciesShow/OvalPoliciesShow.js:46
|
|
1848
1815
|
msgid "Scan All Hostgroups"
|
|
@@ -1850,35 +1817,35 @@ msgstr "扫描所有主机组"
|
|
|
1850
1817
|
|
|
1851
1818
|
#: ../webpack/routes/OvalPolicies/OvalPoliciesShow/OvalPoliciesShow.js:53
|
|
1852
1819
|
msgid "Details"
|
|
1853
|
-
msgstr "
|
|
1820
|
+
msgstr ""
|
|
1854
1821
|
|
|
1855
1822
|
#: ../webpack/routes/OvalPolicies/OvalPoliciesShow/OvalPoliciesShow.js:59
|
|
1856
1823
|
msgid "CVEs"
|
|
1857
|
-
msgstr "
|
|
1824
|
+
msgstr ""
|
|
1858
1825
|
|
|
1859
1826
|
#: ../webpack/routes/OvalPolicies/OvalPoliciesShow/OvalPoliciesShowHelper.js:9
|
|
1860
1827
|
msgid "Weekly, on %s"
|
|
1861
|
-
msgstr "
|
|
1828
|
+
msgstr ""
|
|
1862
1829
|
|
|
1863
1830
|
#: ../webpack/routes/OvalPolicies/OvalPoliciesShow/OvalPoliciesShowHelper.js:11
|
|
1864
1831
|
msgid "Monthly, day of month: %s"
|
|
1865
|
-
msgstr "
|
|
1832
|
+
msgstr ""
|
|
1866
1833
|
|
|
1867
1834
|
#: ../webpack/routes/OvalPolicies/OvalPoliciesShow/OvalPoliciesShowHelper.js:13
|
|
1868
1835
|
msgid "Custom cron: %s"
|
|
1869
|
-
msgstr "
|
|
1836
|
+
msgstr ""
|
|
1870
1837
|
|
|
1871
1838
|
#: ../webpack/routes/OvalPolicies/OvalPoliciesShow/OvalPoliciesShowHelper.js:15
|
|
1872
1839
|
msgid "Unknown schedule"
|
|
1873
|
-
msgstr "
|
|
1840
|
+
msgstr ""
|
|
1874
1841
|
|
|
1875
1842
|
#: ../webpack/routes/OvalPolicies/OvalPoliciesShow/OvalPoliciesShowHelper.js:77
|
|
1876
1843
|
msgid "OVAL policy was successfully updated."
|
|
1877
|
-
msgstr "
|
|
1844
|
+
msgstr ""
|
|
1878
1845
|
|
|
1879
1846
|
#: ../webpack/routes/OvalPolicies/OvalPoliciesShow/OvalPoliciesShowHelper.js:84
|
|
1880
1847
|
msgid "There was a following error when updating OVAL policy: %s"
|
|
1881
|
-
msgstr "
|
|
1848
|
+
msgstr ""
|
|
1882
1849
|
|
|
1883
1850
|
#: ../webpack/routes/OvalPolicies/OvalPoliciesShow/index.js:28
|
|
1884
1851
|
msgid "No OVAL Policy found"
|