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,18 +1,18 @@
|
|
|
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
|
# Kazuki Omo <kazuki.omo@gmail.com>, 2016
|
|
8
8
|
msgid ""
|
|
9
9
|
msgstr ""
|
|
10
|
-
"Project-Id-Version:
|
|
10
|
+
"Project-Id-Version: Foreman\n"
|
|
11
11
|
"Report-Msgid-Bugs-To: \n"
|
|
12
|
-
"POT-Creation-Date: 2023-11-28 22:29+0100\n"
|
|
13
12
|
"PO-Revision-Date: 2016-04-14 07:48+0000\n"
|
|
14
13
|
"Last-Translator: Kazuki Omo <kazuki.omo@gmail.com>, 2016\n"
|
|
15
|
-
"Language-Team: Japanese (http://
|
|
14
|
+
"Language-Team: Japanese (http://www.transifex.com/foreman/foreman/language/ja/"
|
|
15
|
+
")\n"
|
|
16
16
|
"MIME-Version: 1.0\n"
|
|
17
17
|
"Content-Type: text/plain; charset=UTF-8\n"
|
|
18
18
|
"Content-Transfer-Encoding: 8bit\n"
|
|
@@ -47,15 +47,12 @@ msgstr "HTML の ARF レポートのダウンロード"
|
|
|
47
47
|
msgid "Policy with id %s not found."
|
|
48
48
|
msgstr "id が %s のポリシーが見つかりません"
|
|
49
49
|
|
|
50
|
-
#: ../app/controllers/api/v2/compliance/arf_reports_controller.rb:103
|
|
51
|
-
#: ../app/controllers/api/v2/compliance/oval_reports_controller.rb:32
|
|
50
|
+
#: ../app/controllers/api/v2/compliance/arf_reports_controller.rb:103 ../app/controllers/api/v2/compliance/oval_reports_controller.rb:32
|
|
52
51
|
msgid "Could not find host identified by: %s"
|
|
53
52
|
msgstr "%s が識別したホストが見つかりませんでした"
|
|
54
53
|
|
|
55
54
|
#: ../app/controllers/api/v2/compliance/arf_reports_controller.rb:108
|
|
56
|
-
msgid ""
|
|
57
|
-
"Failed to upload Arf Report, OpenSCAP proxy name or url not found in params "
|
|
58
|
-
"when uploading for %s and host is missing openscap_proxy"
|
|
55
|
+
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"
|
|
59
56
|
msgstr "Arf レポートのアップロードに失敗しました。%s のアップロード時にパラメーターで OpenSCAP プロキシー名または url が見つかりませんでした。ホストには openscap_proxy が設定されていません。"
|
|
60
57
|
|
|
61
58
|
#: ../app/controllers/api/v2/compliance/arf_reports_controller.rb:120
|
|
@@ -176,7 +173,7 @@ msgstr "ホスト"
|
|
|
176
173
|
|
|
177
174
|
#: ../app/controllers/api/v2/compliance/oval_policies_controller.rb:78
|
|
178
175
|
msgid "Show a policy's OVAL content"
|
|
179
|
-
msgstr "
|
|
176
|
+
msgstr ""
|
|
180
177
|
|
|
181
178
|
#: ../app/controllers/api/v2/compliance/oval_policies_controller.rb:104
|
|
182
179
|
msgid "OVAL policy successfully configured with %s."
|
|
@@ -294,8 +291,7 @@ msgstr "SCAP コンテンツ名"
|
|
|
294
291
|
msgid "XML containing SCAP content"
|
|
295
292
|
msgstr "SCAP コンテンツを含む XML"
|
|
296
293
|
|
|
297
|
-
#: ../app/controllers/api/v2/compliance/scap_contents_controller.rb:42
|
|
298
|
-
#: ../app/controllers/api/v2/compliance/tailoring_files_controller.rb:37
|
|
294
|
+
#: ../app/controllers/api/v2/compliance/scap_contents_controller.rb:42 ../app/controllers/api/v2/compliance/tailoring_files_controller.rb:37
|
|
299
295
|
msgid "Original file name of the XML file"
|
|
300
296
|
msgstr "XML ファイルの元のファイル名"
|
|
301
297
|
|
|
@@ -328,9 +324,7 @@ msgid "Directory to upload when using \"directory\" upload type"
|
|
|
328
324
|
msgstr "「ディレクトリ」アップロードタイプを使用する場合のアップロードするディレクトリー"
|
|
329
325
|
|
|
330
326
|
#: ../app/controllers/api/v2/compliance/scap_contents_controller.rb:86
|
|
331
|
-
msgid ""
|
|
332
|
-
"Please specify import type, received: %{received}, expected one of: "
|
|
333
|
-
"%{expected}"
|
|
327
|
+
msgid "Please specify import type, received: %{received}, expected one of: %{expected}"
|
|
334
328
|
msgstr "インポートタイプを指定してください。受信: %%{received}、次のうち 1 つを想定: %%{expected}"
|
|
335
329
|
|
|
336
330
|
#: ../app/controllers/api/v2/compliance/tailoring_files_controller.rb:11
|
|
@@ -378,9 +372,8 @@ msgid "Successfully deleted ARF report."
|
|
|
378
372
|
msgstr "ARF レポートが正常に削除されました。"
|
|
379
373
|
|
|
380
374
|
#: ../app/controllers/arf_reports_controller.rb:57
|
|
381
|
-
msgid ""
|
|
382
|
-
"
|
|
383
|
-
msgstr "%{reported_at} で報告されたホスト %{host_name} の ARF レポートの削除に失敗しました"
|
|
375
|
+
msgid "Failed to delete ARF Report for host %{host_name} reported at %{reported_at}"
|
|
376
|
+
msgstr "{reported_at} で報告されたホスト {host_name} の ARF レポートの削除に失敗しました"
|
|
384
377
|
|
|
385
378
|
#: ../app/controllers/arf_reports_controller.rb:67
|
|
386
379
|
msgid "Failed to delete %s compliance reports"
|
|
@@ -390,15 +383,15 @@ msgstr "%s コンプライアンスレポートの削除に失敗しました"
|
|
|
390
383
|
msgid "Successfully deleted %s compliance reports"
|
|
391
384
|
msgstr "%s コンプライアンスレポートが正常に削除されました"
|
|
392
385
|
|
|
393
|
-
#: ../app/controllers/arf_reports_controller.rb:
|
|
386
|
+
#: ../app/controllers/arf_reports_controller.rb:106
|
|
394
387
|
msgid "No compliance reports were found."
|
|
395
388
|
msgstr "コンプライアンスレポートが見つかりませんでした。"
|
|
396
389
|
|
|
397
|
-
#: ../app/controllers/arf_reports_controller.rb:
|
|
390
|
+
#: ../app/controllers/arf_reports_controller.rb:110
|
|
398
391
|
msgid "No compliance reports selected"
|
|
399
392
|
msgstr "コンプライアンスレポートが選択されていません"
|
|
400
393
|
|
|
401
|
-
#: ../app/controllers/arf_reports_controller.rb:
|
|
394
|
+
#: ../app/controllers/arf_reports_controller.rb:115
|
|
402
395
|
msgid "Something went wrong while selecting compliance reports - %s"
|
|
403
396
|
msgstr "コンプライアンスレポートの選択中に問題が発生しました: %s"
|
|
404
397
|
|
|
@@ -411,10 +404,8 @@ msgid "The identifier of the host"
|
|
|
411
404
|
msgstr "ホストの ID"
|
|
412
405
|
|
|
413
406
|
#: ../app/controllers/concerns/foreman_openscap/hosts_and_hostgroups_controller_extensions.rb:10
|
|
414
|
-
msgid ""
|
|
415
|
-
|
|
416
|
-
"OpenSCAP Proxy or unset it."
|
|
417
|
-
msgstr "%s プロキシーでは Openscap 機能が有効になっていません。正しい OpenSCAP プロキシーを設定するか、未設定にしてください。"
|
|
407
|
+
msgid "The %s proxy does not have Openscap feature enabled. Either set correct OpenSCAP Proxy or unset it."
|
|
408
|
+
msgstr ""
|
|
418
409
|
|
|
419
410
|
#: ../app/controllers/concerns/foreman_openscap/hosts_controller_extensions.rb:26
|
|
420
411
|
msgid "Updated hosts: Assigned with OpenSCAP Proxy: %s"
|
|
@@ -442,7 +433,7 @@ msgstr "有効なポリシー ID が提供されていません"
|
|
|
442
433
|
|
|
443
434
|
#: ../app/controllers/policies_controller.rb:129
|
|
444
435
|
msgid "No hosts were found with that id, name or query filter"
|
|
445
|
-
msgstr "
|
|
436
|
+
msgstr ""
|
|
446
437
|
|
|
447
438
|
#: ../app/controllers/policies_controller.rb:134
|
|
448
439
|
msgid "No hosts selected"
|
|
@@ -452,28 +443,15 @@ msgstr "ホストが選択されていません"
|
|
|
452
443
|
msgid "Something went wrong while selecting hosts - %s"
|
|
453
444
|
msgstr "ホストの選択中に問題が発生しました: %s"
|
|
454
445
|
|
|
455
|
-
#: ../app/helpers/arf_report_dashboard_helper.rb:16
|
|
456
|
-
#: ../app/helpers/compliance_dashboard_helper.rb:8
|
|
457
|
-
#: ../app/helpers/compliance_hosts_helper.rb:15
|
|
458
|
-
#: ../app/views/arf_reports/_list.html.erb:11
|
|
459
|
-
#: ../app/views/foreman_openscap/policy_mailer/_hosts.erb:11
|
|
460
|
-
#: ../app/views/policy_dashboard/_policy_reports.html.erb:10
|
|
446
|
+
#: ../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
|
|
461
447
|
msgid "Failed"
|
|
462
448
|
msgstr "失敗"
|
|
463
449
|
|
|
464
|
-
#: ../app/helpers/arf_report_dashboard_helper.rb:17
|
|
465
|
-
#: ../app/helpers/compliance_dashboard_helper.rb:6
|
|
466
|
-
#: ../app/helpers/compliance_hosts_helper.rb:14
|
|
467
|
-
#: ../app/views/arf_reports/_list.html.erb:10
|
|
468
|
-
#: ../app/views/foreman_openscap/policy_mailer/_hosts.erb:8
|
|
469
|
-
#: ../app/views/policy_dashboard/_policy_reports.html.erb:9
|
|
450
|
+
#: ../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
|
|
470
451
|
msgid "Passed"
|
|
471
452
|
msgstr "合格"
|
|
472
453
|
|
|
473
|
-
#: ../app/helpers/arf_report_dashboard_helper.rb:18
|
|
474
|
-
#: ../app/views/arf_reports/_list.html.erb:12
|
|
475
|
-
#: ../app/views/foreman_openscap/policy_mailer/_hosts.erb:14
|
|
476
|
-
#: ../app/views/policy_dashboard/_policy_reports.html.erb:11
|
|
454
|
+
#: ../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
|
|
477
455
|
msgid "Other"
|
|
478
456
|
msgstr "その他"
|
|
479
457
|
|
|
@@ -501,10 +479,7 @@ msgstr "Failed および Othered"
|
|
|
501
479
|
msgid "Failed only"
|
|
502
480
|
msgstr "失敗のみ"
|
|
503
481
|
|
|
504
|
-
#: ../app/helpers/arf_reports_helper.rb:20
|
|
505
|
-
#: ../app/views/arf_reports/index.html.erb:1
|
|
506
|
-
#: ../app/views/arf_reports/welcome.html.erb:1
|
|
507
|
-
#: ../app/views/arf_reports/welcome.html.erb:7
|
|
482
|
+
#: ../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
|
|
508
483
|
msgid "Compliance Reports"
|
|
509
484
|
msgstr "コンプライアンスレポート"
|
|
510
485
|
|
|
@@ -536,27 +511,27 @@ msgstr " ポリシー %s"
|
|
|
536
511
|
msgid " through %s"
|
|
537
512
|
msgstr " %s まで更新を受信できます。"
|
|
538
513
|
|
|
539
|
-
#: ../app/helpers/arf_reports_helper.rb:
|
|
514
|
+
#: ../app/helpers/arf_reports_helper.rb:67
|
|
540
515
|
msgid "Hosts failing this rule"
|
|
541
516
|
msgstr "このルールに不合格のホスト"
|
|
542
517
|
|
|
543
|
-
#: ../app/helpers/arf_reports_helper.rb:
|
|
518
|
+
#: ../app/helpers/arf_reports_helper.rb:68
|
|
544
519
|
msgid "Hosts passing this rule"
|
|
545
520
|
msgstr "このルールに合格のホスト"
|
|
546
521
|
|
|
547
|
-
#: ../app/helpers/arf_reports_helper.rb:
|
|
522
|
+
#: ../app/helpers/arf_reports_helper.rb:69
|
|
548
523
|
msgid "Hosts othering this rule"
|
|
549
524
|
msgstr "このルールに該当しないホスト"
|
|
550
525
|
|
|
551
|
-
#: ../app/helpers/
|
|
552
|
-
|
|
553
|
-
|
|
554
|
-
|
|
526
|
+
#: ../app/helpers/arf_reports_helper.rb:72
|
|
527
|
+
msgid "Remediation"
|
|
528
|
+
msgstr ""
|
|
529
|
+
|
|
530
|
+
#: ../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
|
|
555
531
|
msgid "Host"
|
|
556
532
|
msgstr "ホスト"
|
|
557
533
|
|
|
558
|
-
#: ../app/helpers/compliance_dashboard_helper.rb:4
|
|
559
|
-
#: ../app/views/arf_reports/_list.html.erb:8
|
|
534
|
+
#: ../app/helpers/compliance_dashboard_helper.rb:4 ../app/views/arf_reports/_list.html.erb:8
|
|
560
535
|
msgid "Policy"
|
|
561
536
|
msgstr "ポリシー"
|
|
562
537
|
|
|
@@ -575,8 +550,7 @@ msgstr "F"
|
|
|
575
550
|
msgid "Othered|O"
|
|
576
551
|
msgstr "O"
|
|
577
552
|
|
|
578
|
-
#: ../app/helpers/compliance_dashboard_helper.rb:10
|
|
579
|
-
#: ../app/helpers/compliance_hosts_helper.rb:16
|
|
553
|
+
#: ../app/helpers/compliance_dashboard_helper.rb:10 ../app/helpers/compliance_hosts_helper.rb:16
|
|
580
554
|
msgid "Othered"
|
|
581
555
|
msgstr "Othered"
|
|
582
556
|
|
|
@@ -592,10 +566,7 @@ msgstr "コンプライアンスポリシーの割り当て解除"
|
|
|
592
566
|
msgid "Change OpenSCAP Proxy"
|
|
593
567
|
msgstr "OpenSCAP プロキシーの変更"
|
|
594
568
|
|
|
595
|
-
#: ../app/helpers/compliance_hosts_helper.rb:37
|
|
596
|
-
#: ../app/models/foreman_openscap/compliance_status.rb:8
|
|
597
|
-
#: ../lib/foreman_openscap/engine.rb:159
|
|
598
|
-
#: ../webpack/components/HostExtentions/HostKebabItems.js:39
|
|
569
|
+
#: ../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
|
|
599
570
|
msgid "Compliance"
|
|
600
571
|
msgstr "コンプライアンス"
|
|
601
572
|
|
|
@@ -611,11 +582,7 @@ msgstr "ホストが削除されました"
|
|
|
611
582
|
msgid "Choose existing SCAP Content"
|
|
612
583
|
msgstr "既存の SCAP コンテンツを選択"
|
|
613
584
|
|
|
614
|
-
#: ../app/helpers/policies_helper.rb:57 ../app/helpers/policies_helper.rb:63
|
|
615
|
-
#: ../app/models/foreman_openscap/policy.rb:11
|
|
616
|
-
#: ../app/views/policies/_form.html.erb:10
|
|
617
|
-
#: ../app/views/scap_contents/welcome.html.erb:1
|
|
618
|
-
#: ../app/views/scap_contents/welcome.html.erb:6
|
|
585
|
+
#: ../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
|
|
619
586
|
msgid "SCAP Content"
|
|
620
587
|
msgstr "SCAP コンテンツ"
|
|
621
588
|
|
|
@@ -643,18 +610,11 @@ msgstr "テーラリングファイルでの XCCDF プロファイル"
|
|
|
643
610
|
msgid "This profile will be used to override the one from scap content"
|
|
644
611
|
msgstr "このプロファイルは scrap コンテンツからのものを上書きするために使用されます"
|
|
645
612
|
|
|
646
|
-
#: ../app/helpers/policies_helper.rb:111
|
|
647
|
-
#: ../app/views/arf_reports/_list.html.erb:54
|
|
648
|
-
#: ../webpack/routes/OvalContents/OvalContentsNew/OvalContentsNew.js:116
|
|
649
|
-
#: ../webpack/routes/OvalPolicies/OvalPoliciesNew/NewOvalPolicyForm.js:97
|
|
613
|
+
#: ../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
|
|
650
614
|
msgid "Submit"
|
|
651
615
|
msgstr "送信"
|
|
652
616
|
|
|
653
|
-
#: ../app/helpers/policies_helper.rb:115
|
|
654
|
-
#: ../app/views/arf_reports/_list.html.erb:53
|
|
655
|
-
#: ../webpack/components/ConfirmModal.js:27
|
|
656
|
-
#: ../webpack/routes/OvalContents/OvalContentsNew/OvalContentsNew.js:121
|
|
657
|
-
#: ../webpack/routes/OvalPolicies/OvalPoliciesNew/NewOvalPolicyForm.js:102
|
|
617
|
+
#: ../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
|
|
658
618
|
msgid "Cancel"
|
|
659
619
|
msgstr "取り消し"
|
|
660
620
|
|
|
@@ -666,8 +626,7 @@ msgstr "準拠したホスト"
|
|
|
666
626
|
msgid "Incompliant hosts"
|
|
667
627
|
msgstr "準拠しないホスト"
|
|
668
628
|
|
|
669
|
-
#: ../app/helpers/policy_dashboard_helper.rb:13
|
|
670
|
-
#: ../app/models/foreman_openscap/compliance_status.rb:24
|
|
629
|
+
#: ../app/helpers/policy_dashboard_helper.rb:13 ../app/models/foreman_openscap/compliance_status.rb:24
|
|
671
630
|
msgid "Inconclusive"
|
|
672
631
|
msgstr "不確定"
|
|
673
632
|
|
|
@@ -680,9 +639,7 @@ msgid "Host is assigned to policy"
|
|
|
680
639
|
msgstr "ホストはポリシーに割り当てられています"
|
|
681
640
|
|
|
682
641
|
#: ../app/helpers/policy_dashboard_helper.rb:44
|
|
683
|
-
msgid ""
|
|
684
|
-
"Host is not assigned to policy but reports were found. You may want to "
|
|
685
|
-
"delete the reports or assign the policy again."
|
|
642
|
+
msgid "Host is not assigned to policy but reports were found. You may want to delete the reports or assign the policy again."
|
|
686
643
|
msgstr "ホストはポリシーに割り当てられていませんが、レポートが見つかりました。レポートを削除するか、ポリシーを再度割り当てることをお勧めします。"
|
|
687
644
|
|
|
688
645
|
#: ../app/helpers/policy_dashboard_helper.rb:52
|
|
@@ -694,19 +651,16 @@ msgid "Total hosts with reports where policy is no longer assigned."
|
|
|
694
651
|
msgstr "ポリシーの割り当てが解除されたレポートが含まれるホストの総数。"
|
|
695
652
|
|
|
696
653
|
#: ../app/lib/proxy_api/openscap.rb:21
|
|
697
|
-
msgid ""
|
|
698
|
-
"Request timed out. Please try increasing Settings -> proxy_request_timeout"
|
|
654
|
+
msgid "Request timed out. Please try increasing Settings -> proxy_request_timeout"
|
|
699
655
|
msgstr "要求がタイムアウトしました。Settings -> proxy_request_timeout で値を増やしてみてください"
|
|
700
656
|
|
|
701
657
|
#: ../app/lib/proxy_api/openscap.rb:24
|
|
702
|
-
msgid ""
|
|
703
|
-
"Could not validate %s. Please make sure you have appropriate proxy version "
|
|
704
|
-
"to use this functionality"
|
|
658
|
+
msgid "Could not validate %s. Please make sure you have appropriate proxy version to use this functionality"
|
|
705
659
|
msgstr "%s を検証できませんでした。この機能を使用するための適切なプロキシーバージョンがあることを確認してください。"
|
|
706
660
|
|
|
707
661
|
#: ../app/lib/proxy_api/openscap.rb:27
|
|
708
662
|
msgid "Could not validate %{file_type}. Error %{error}"
|
|
709
|
-
msgstr "
|
|
663
|
+
msgstr "%{file_type} を検証できませんでした。エラー: %{error}"
|
|
710
664
|
|
|
711
665
|
#: ../app/lib/proxy_api/openscap.rb:40
|
|
712
666
|
msgid "Unable to get HTML version of requested report from Smart Proxy"
|
|
@@ -736,9 +690,7 @@ msgstr "ID %{id} の %{class} の OpenSCAP プロキシーが見つかりませ
|
|
|
736
690
|
msgid "does not consist of 5 parts separated by space"
|
|
737
691
|
msgstr "スペースで区切られた 5 つの部分で構成されていません"
|
|
738
692
|
|
|
739
|
-
#: ../app/models/concerns/foreman_openscap/policy_common.rb:21
|
|
740
|
-
#: ../app/models/foreman_openscap/oval_policy.rb:14
|
|
741
|
-
#: ../app/models/foreman_openscap/policy.rb:34
|
|
693
|
+
#: ../app/models/concerns/foreman_openscap/policy_common.rb:21 ../app/models/foreman_openscap/oval_policy.rb:14 ../app/models/foreman_openscap/policy.rb:34
|
|
742
694
|
msgid "is not a valid value"
|
|
743
695
|
msgstr "有効な値ではありません"
|
|
744
696
|
|
|
@@ -746,13 +698,11 @@ msgstr "有効な値ではありません"
|
|
|
746
698
|
msgid "must be between 1 and 31"
|
|
747
699
|
msgstr "1 から 31 の間でなければなりません"
|
|
748
700
|
|
|
749
|
-
#: ../app/models/foreman_openscap/compliance_status.rb:22
|
|
750
|
-
#: ../app/views/foreman_openscap/policy_mailer/_dashboard.erb:13
|
|
701
|
+
#: ../app/models/foreman_openscap/compliance_status.rb:22 ../app/views/foreman_openscap/policy_mailer/_dashboard.erb:13
|
|
751
702
|
msgid "Compliant"
|
|
752
703
|
msgstr "準拠"
|
|
753
704
|
|
|
754
|
-
#: ../app/models/foreman_openscap/compliance_status.rb:26
|
|
755
|
-
#: ../app/views/foreman_openscap/policy_mailer/_dashboard.erb:17
|
|
705
|
+
#: ../app/models/foreman_openscap/compliance_status.rb:26 ../app/views/foreman_openscap/policy_mailer/_dashboard.erb:17
|
|
756
706
|
msgid "Incompliant"
|
|
757
707
|
msgstr "非準拠"
|
|
758
708
|
|
|
@@ -780,8 +730,7 @@ msgstr "%s 利用可能なパッチがある脆弱性が見つかりました"
|
|
|
780
730
|
msgid "Unknown OVAL status"
|
|
781
731
|
msgstr "OVAL の不明なステータス"
|
|
782
732
|
|
|
783
|
-
#: ../app/models/foreman_openscap/policy.rb:11
|
|
784
|
-
#: ../app/views/policies/_form.html.erb:8
|
|
733
|
+
#: ../app/models/foreman_openscap/policy.rb:11 ../app/views/policies/_form.html.erb:8
|
|
785
734
|
msgid "Deployment Options"
|
|
786
735
|
msgstr "デプロイメントオプション"
|
|
787
736
|
|
|
@@ -789,29 +738,19 @@ msgstr "デプロイメントオプション"
|
|
|
789
738
|
msgid "Policy Attributes"
|
|
790
739
|
msgstr "ポリシー属性"
|
|
791
740
|
|
|
792
|
-
#: ../app/models/foreman_openscap/policy.rb:11
|
|
793
|
-
#: ../app/views/policies/_form.html.erb:11
|
|
794
|
-
#: ../webpack/routes/OvalPolicies/OvalPoliciesNew/NewOvalPolicyForm.js:67
|
|
741
|
+
#: ../app/models/foreman_openscap/policy.rb:11 ../app/views/policies/_form.html.erb:11 ../webpack/routes/OvalPolicies/OvalPoliciesNew/NewOvalPolicyForm.js:67
|
|
795
742
|
msgid "Schedule"
|
|
796
743
|
msgstr "スケジュール"
|
|
797
744
|
|
|
798
|
-
#: ../app/models/foreman_openscap/policy.rb:11
|
|
799
|
-
#: ../app/views/policies/_form.html.erb:13
|
|
800
|
-
#: ../app/views/scap_contents/_form.html.erb:11
|
|
801
|
-
#: ../app/views/tailoring_files/_form.html.erb:11
|
|
745
|
+
#: ../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
|
|
802
746
|
msgid "Locations"
|
|
803
747
|
msgstr "ロケーション"
|
|
804
748
|
|
|
805
|
-
#: ../app/models/foreman_openscap/policy.rb:11
|
|
806
|
-
#: ../app/views/policies/_form.html.erb:16
|
|
807
|
-
#: ../app/views/scap_contents/_form.html.erb:14
|
|
808
|
-
#: ../app/views/tailoring_files/_form.html.erb:14
|
|
749
|
+
#: ../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
|
|
809
750
|
msgid "Organizations"
|
|
810
751
|
msgstr "組織"
|
|
811
752
|
|
|
812
|
-
#: ../app/models/foreman_openscap/policy.rb:11
|
|
813
|
-
#: ../webpack/routes/OvalPolicies/OvalPoliciesNew/HostgroupSelect.js:99
|
|
814
|
-
#: ../webpack/routes/OvalPolicies/OvalPoliciesShow/OvalPoliciesShow.js:65
|
|
753
|
+
#: ../app/models/foreman_openscap/policy.rb:11 ../webpack/routes/OvalPolicies/OvalPoliciesNew/HostgroupSelect.js:99 ../webpack/routes/OvalPolicies/OvalPoliciesShow/OvalPoliciesShow.js:65
|
|
815
754
|
msgid "Hostgroups"
|
|
816
755
|
msgstr "ホストグループ"
|
|
817
756
|
|
|
@@ -840,9 +779,7 @@ msgid "does not have the selected SCAP content profile"
|
|
|
840
779
|
msgstr "選択した SCAP コンテンツプロファイルがありません"
|
|
841
780
|
|
|
842
781
|
#: ../app/models/foreman_openscap/policy.rb:271
|
|
843
|
-
msgid ""
|
|
844
|
-
"cannot assign to %s, all assigned policies must be deployed in the same way,"
|
|
845
|
-
" check 'deploy by' for each assigned policy"
|
|
782
|
+
msgid "cannot assign to %s, all assigned policies must be deployed in the same way, check 'deploy by' for each assigned policy"
|
|
846
783
|
msgstr "%s に割り当てることができません。割り当てたポリシーはすべて同じ方法でデプロイする必要があります。割り当て済みのポリシーごとに「デプロイ方法 (deploy by)」を確認してください。"
|
|
847
784
|
|
|
848
785
|
#: ../app/services/foreman_openscap/arf_report_status_calculator.rb:30
|
|
@@ -850,21 +787,15 @@ msgid "invalid type %s"
|
|
|
850
787
|
msgstr "無効なタイプ %s"
|
|
851
788
|
|
|
852
789
|
#: ../app/services/foreman_openscap/client_config/ansible.rb:23
|
|
853
|
-
msgid ""
|
|
854
|
-
|
|
855
|
-
" role to the hosts or selected hostgroups."
|
|
856
|
-
msgstr "Ansible プラグイン、%s Ansible ロール、変数が必要です。ホストまたは選択したホストグループにロールが割り当てられます。"
|
|
790
|
+
msgid "Requires Ansible plugin, %s Ansible role and variables. This will assign the role to the hosts or selected hostgroups."
|
|
791
|
+
msgstr ""
|
|
857
792
|
|
|
858
793
|
#: ../app/services/foreman_openscap/client_config/ansible.rb:24
|
|
859
|
-
msgid ""
|
|
860
|
-
|
|
861
|
-
"manually. Manual run is also required after any change to this policy."
|
|
862
|
-
msgstr "foreman_scap_client をデプロイするには、ansible ロールの実行を手動でトリガーする必要があります。このポリシーを変更した場合も、変更後に手動での実行が必要になります。"
|
|
794
|
+
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."
|
|
795
|
+
msgstr ""
|
|
863
796
|
|
|
864
797
|
#: ../app/services/foreman_openscap/client_config/ansible.rb:34
|
|
865
|
-
msgid ""
|
|
866
|
-
"theforeman.foreman_scap_client Ansible Role not found, please import it "
|
|
867
|
-
"before running this action again."
|
|
798
|
+
msgid "theforeman.foreman_scap_client Ansible Role not found, please import it before running this action again."
|
|
868
799
|
msgstr "theforeman.foreman_scap_client Ansible ロールが見つかりません。このアクションを再度実行する前に、インポートしてください。"
|
|
869
800
|
|
|
870
801
|
#: ../app/services/foreman_openscap/client_config/ansible.rb:57
|
|
@@ -876,22 +807,16 @@ msgid "Ansible variables"
|
|
|
876
807
|
msgstr "Ansible 変数"
|
|
877
808
|
|
|
878
809
|
#: ../app/services/foreman_openscap/client_config/manual.rb:14
|
|
879
|
-
msgid ""
|
|
880
|
-
|
|
881
|
-
"policy still needs to be defined in order to link incoming ARF reports."
|
|
882
|
-
msgstr "これにより、foreman_scap_client のセットアップはユーザーにのみ残ります。受信 ARF レポートをリンクするには、ポリシーを定義する必要があります。"
|
|
810
|
+
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."
|
|
811
|
+
msgstr ""
|
|
883
812
|
|
|
884
813
|
#: ../app/services/foreman_openscap/client_config/puppet.rb:17
|
|
885
|
-
msgid ""
|
|
886
|
-
|
|
887
|
-
"selected hostgroups."
|
|
888
|
-
msgstr "%s Puppet クラスが必要です。ホストまたは選択したホストグループに、そのクラスが割り当てられます。"
|
|
814
|
+
msgid "Requires %s Puppet class. This will assign the class to the hosts or selected hostgroups."
|
|
815
|
+
msgstr ""
|
|
889
816
|
|
|
890
817
|
#: ../app/services/foreman_openscap/client_config/puppet.rb:18
|
|
891
|
-
msgid ""
|
|
892
|
-
|
|
893
|
-
"the policy."
|
|
894
|
-
msgstr "すべての Puppet 実行により、foreman_scap_client がポリシーに従って設定されます。"
|
|
818
|
+
msgid "Every puppet run ensures the foreman_scap_client is configured according to the policy."
|
|
819
|
+
msgstr ""
|
|
895
820
|
|
|
896
821
|
#: ../app/services/foreman_openscap/client_config/puppet.rb:39
|
|
897
822
|
msgid "Puppet class"
|
|
@@ -902,42 +827,31 @@ msgid "Smart Class Parameters"
|
|
|
902
827
|
msgstr "スマートクラスパラメーター"
|
|
903
828
|
|
|
904
829
|
#: ../app/services/foreman_openscap/lookup_key_overrider.rb:19
|
|
905
|
-
msgid ""
|
|
906
|
-
"%{type} was selected to deploy policy to clients, but %{type} is not "
|
|
907
|
-
"available. Are you missing a plugin?"
|
|
830
|
+
msgid "%{type} was selected to deploy policy to clients, but %{type} is not available. Are you missing a plugin?"
|
|
908
831
|
msgstr "クライアントへのポリシーのデプロイに %{type} が選択されましたが、%{type} は利用できません。プラグインがありませんか?"
|
|
909
832
|
|
|
910
833
|
#: ../app/services/foreman_openscap/lookup_key_overrider.rb:26
|
|
911
|
-
msgid ""
|
|
912
|
-
"
|
|
913
|
-
"first."
|
|
914
|
-
msgstr "必要とされる %%{msg_name} %%{class} が見つかりませんでした。最初にインポートされていることを確認してください。"
|
|
834
|
+
msgid "Required %{msg_name} %{class} was not found, please ensure it is imported first."
|
|
835
|
+
msgstr "必要とされる {msg_name}%{class} が見つかりませんでした。最初にインポートされていることを確認してください。"
|
|
915
836
|
|
|
916
837
|
#: ../app/services/foreman_openscap/lookup_key_overrider.rb:34
|
|
917
|
-
msgid ""
|
|
918
|
-
"
|
|
919
|
-
"sure they are imported before proceeding."
|
|
920
|
-
msgstr "以下の %%{key_name} が %%{item_name}: %%{key_names} にありませんでした。続行前にインポートされていることを確認してください。"
|
|
838
|
+
msgid "The following %{key_name} were missing for %{item_name}: %{key_names}. Make sure they are imported before proceeding."
|
|
839
|
+
msgstr "以下の %{key_name} が %{item_name}: %{key_names} にありませんでした。続行前にインポートされていることを確認してください。"
|
|
921
840
|
|
|
922
841
|
#: ../app/services/foreman_openscap/lookup_key_overrider.rb:56
|
|
923
|
-
msgid ""
|
|
924
|
-
"
|
|
925
|
-
"%{errors}"
|
|
926
|
-
msgstr "%%{config_tool} のパラメーターの上書き時に保存に失敗しました。原因: %%{errors}"
|
|
842
|
+
msgid "Failed to save when overriding parameters for %{config_tool}, cause: %{errors}"
|
|
843
|
+
msgstr "%{config_tool} のパラメーターのオーバーライド時に、保存に失敗しました。原因: %{errors}"
|
|
927
844
|
|
|
928
845
|
#: ../app/services/foreman_openscap/openscap_proxy_version_check.rb:39
|
|
929
846
|
msgid "This feature is temporarily disabled. "
|
|
930
847
|
msgstr "この機能は一時的に無効にされています。 "
|
|
931
848
|
|
|
932
849
|
#: ../app/services/foreman_openscap/openscap_proxy_version_check.rb:40
|
|
933
|
-
msgid ""
|
|
934
|
-
"The following Smart Proxies need to be updated to unlock the feature: %s. "
|
|
850
|
+
msgid "The following Smart Proxies need to be updated to unlock the feature: %s. "
|
|
935
851
|
msgstr "以下のスマートプロキシーを更新して機能のロックを解除する必要があります: %s "
|
|
936
852
|
|
|
937
853
|
#: ../app/services/foreman_openscap/openscap_proxy_version_check.rb:41
|
|
938
|
-
msgid ""
|
|
939
|
-
"The following proxies could not be reached: %s. Please make sure they are "
|
|
940
|
-
"available so Foreman can check their versions."
|
|
854
|
+
msgid "The following proxies could not be reached: %s. Please make sure they are available so Foreman can check their versions."
|
|
941
855
|
msgstr "以下のプロキシーに到達できませんでした: %s。Foreman がバージョンを確認できるように、プロキシーが利用可能であることを確認してください。"
|
|
942
856
|
|
|
943
857
|
#: ../app/services/foreman_openscap/oval/configure.rb:65
|
|
@@ -950,7 +864,7 @@ msgstr "続行する前に、openscap_proxy を %s に割り当てます。"
|
|
|
950
864
|
|
|
951
865
|
#: ../app/services/foreman_openscap/oval/configure.rb:75
|
|
952
866
|
msgid "Was %{model_name} %{name} configured successfully?"
|
|
953
|
-
msgstr "
|
|
867
|
+
msgstr "%{model_name} %%{name} は正常に設定されましたか?"
|
|
954
868
|
|
|
955
869
|
#: ../app/services/foreman_openscap/oval/setup.rb:56
|
|
956
870
|
msgid "Could not update Ansible Variables with override: true"
|
|
@@ -961,9 +875,7 @@ msgid "Is foreman_ansible present?"
|
|
|
961
875
|
msgstr "foreman_ansible は存在しますか?"
|
|
962
876
|
|
|
963
877
|
#: ../app/services/foreman_openscap/oval/setup.rb:62
|
|
964
|
-
msgid ""
|
|
965
|
-
"foreman_ansible plugin not found, please install it before running this "
|
|
966
|
-
"action again."
|
|
878
|
+
msgid "foreman_ansible plugin not found, please install it before running this action again."
|
|
967
879
|
msgstr "foreman_ansible プラグインが見つかりません。このアクションを再度実行する前に、プラグインをインストールしてください。"
|
|
968
880
|
|
|
969
881
|
#: ../app/services/foreman_openscap/oval/setup.rb:66
|
|
@@ -975,24 +887,20 @@ msgid "Are required variables for theforeman.foreman_scap_client present?"
|
|
|
975
887
|
msgstr "theforeman.foreman_scap_client に必要な変数ですか?"
|
|
976
888
|
|
|
977
889
|
#: ../app/services/foreman_openscap/oval/setup.rb:72
|
|
978
|
-
msgid ""
|
|
979
|
-
"
|
|
980
|
-
"import them before running this action again."
|
|
981
|
-
msgstr "次の Ansible 変数が見つかりませんでした: %%{missing_vars}。このアクションを再度実行する前に、Ansible 変数をインポートしてください。"
|
|
890
|
+
msgid "The following Ansible Variables were not found: %{missing_vars}, please import them before running this action again."
|
|
891
|
+
msgstr "次の Ansible 変数が見つかりませんでした: %{missing_vars}。このアクションを再度実行する前に、Ansible 変数をインポートしてください。"
|
|
982
892
|
|
|
983
|
-
#: ../app/services/foreman_openscap/oval/setup.rb:76
|
|
984
|
-
#: ../app/services/foreman_openscap/oval/setup.rb:81
|
|
985
|
-
#: ../app/services/foreman_openscap/oval/setup.rb:86
|
|
893
|
+
#: ../app/services/foreman_openscap/oval/setup.rb:76 ../app/services/foreman_openscap/oval/setup.rb:81 ../app/services/foreman_openscap/oval/setup.rb:86
|
|
986
894
|
msgid "Is %s param set to be overriden?"
|
|
987
895
|
msgstr "%s param はオーバーライドされるように設定されていますか?"
|
|
988
896
|
|
|
989
897
|
#: ../app/services/foreman_openscap/oval/sync_oval_contents.rb:8
|
|
990
898
|
msgid "cause: "
|
|
991
|
-
msgstr "
|
|
899
|
+
msgstr ""
|
|
992
900
|
|
|
993
901
|
#: ../app/services/foreman_openscap/oval/sync_oval_contents.rb:28
|
|
994
902
|
msgid "Failed to fetch content file from %s"
|
|
995
|
-
msgstr "
|
|
903
|
+
msgstr ""
|
|
996
904
|
|
|
997
905
|
#: ../app/validators/foreman_openscap/data_stream_validator.rb:9
|
|
998
906
|
msgid "No proxy with OpenSCAP feature was found."
|
|
@@ -1014,9 +922,7 @@ msgstr "変更されたファイルには既存の SCAP コンテンツプロフ
|
|
|
1014
922
|
msgid "More details"
|
|
1015
923
|
msgstr "詳細"
|
|
1016
924
|
|
|
1017
|
-
#: ../app/views/arf_reports/_detailed_message.html.erb:6
|
|
1018
|
-
#: ../webpack/routes/OvalPolicies/OvalPoliciesNew/NewOvalPolicyForm.js:62
|
|
1019
|
-
#: ../webpack/routes/OvalPolicies/OvalPoliciesShow/DetailsTab.js:57
|
|
925
|
+
#: ../app/views/arf_reports/_detailed_message.html.erb:6 ../webpack/routes/OvalPolicies/OvalPoliciesNew/NewOvalPolicyForm.js:62 ../webpack/routes/OvalPolicies/OvalPoliciesShow/DetailsTab.js:57
|
|
1020
926
|
msgid "Description"
|
|
1021
927
|
msgstr "説明"
|
|
1022
928
|
|
|
@@ -1036,8 +942,7 @@ msgstr "このページのすべての項目を選択"
|
|
|
1036
942
|
msgid "items selected. Uncheck to Clear"
|
|
1037
943
|
msgstr "項目が選択されています。クリアするにはチェックを解除してください"
|
|
1038
944
|
|
|
1039
|
-
#: ../app/views/arf_reports/_list.html.erb:7
|
|
1040
|
-
#: ../app/views/arf_reports/delete_multiple.html.erb:10
|
|
945
|
+
#: ../app/views/arf_reports/_list.html.erb:7 ../app/views/arf_reports/delete_multiple.html.erb:10
|
|
1041
946
|
msgid "Reported At"
|
|
1042
947
|
msgstr "報告済み"
|
|
1043
948
|
|
|
@@ -1045,12 +950,7 @@ msgstr "報告済み"
|
|
|
1045
950
|
msgid "Openscap Proxy"
|
|
1046
951
|
msgstr "OpenSCAP プロキシー"
|
|
1047
952
|
|
|
1048
|
-
#: ../app/views/arf_reports/_list.html.erb:13
|
|
1049
|
-
#: ../app/views/arf_reports/_output.html.erb:16
|
|
1050
|
-
#: ../app/views/policies/_list.html.erb:8
|
|
1051
|
-
#: ../app/views/policy_dashboard/_policy_reports.html.erb:12
|
|
1052
|
-
#: ../app/views/scap_contents/_list.html.erb:6
|
|
1053
|
-
#: ../app/views/tailoring_files/_list.html.erb:6
|
|
953
|
+
#: ../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
|
|
1054
954
|
msgid "Actions"
|
|
1055
955
|
msgstr "アクション"
|
|
1056
956
|
|
|
@@ -1130,15 +1030,12 @@ msgstr "XML を bzip でダウンロード"
|
|
|
1130
1030
|
msgid "Download HTML"
|
|
1131
1031
|
msgstr "HTML のダウンロード"
|
|
1132
1032
|
|
|
1133
|
-
#: ../app/views/arf_reports/show_html.html.erb:10
|
|
1134
|
-
#: ../webpack/routes/OvalPolicies/OvalPoliciesNew/HostgroupSelect.js:68
|
|
1033
|
+
#: ../app/views/arf_reports/show_html.html.erb:10 ../webpack/routes/OvalPolicies/OvalPoliciesNew/HostgroupSelect.js:68
|
|
1135
1034
|
msgid "Loading..."
|
|
1136
|
-
msgstr "
|
|
1035
|
+
msgstr "読み込み中..."
|
|
1137
1036
|
|
|
1138
1037
|
#: ../app/views/arf_reports/welcome.html.erb:9
|
|
1139
|
-
msgid ""
|
|
1140
|
-
"You don't seem to have any ARF report. ARF report is a summary of a single "
|
|
1141
|
-
"scan occurrence on a particular host for a given Compliance Policy."
|
|
1038
|
+
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."
|
|
1142
1039
|
msgstr "ARF レポートがないようです。ARF レポートは、指定のコンプライアンスポリシーを基に、特定のホストを 1 回スキャンしたときのサマリーです。"
|
|
1143
1040
|
|
|
1144
1041
|
#: ../app/views/arf_reports/welcome.html.erb:12
|
|
@@ -1166,8 +1063,7 @@ msgstr "経過レポート %s 件"
|
|
|
1166
1063
|
msgid "No report for this policy"
|
|
1167
1064
|
msgstr "このポリシーのレポートはありません"
|
|
1168
1065
|
|
|
1169
|
-
#: ../app/views/dashboard/_compliance_host_reports_widget.html.erb:1
|
|
1170
|
-
#: ../lib/foreman_openscap/engine.rb:183
|
|
1066
|
+
#: ../app/views/dashboard/_compliance_host_reports_widget.html.erb:1 ../lib/foreman_openscap/engine.rb:183
|
|
1171
1067
|
msgid "Latest Compliance Reports"
|
|
1172
1068
|
msgstr "最新コンプライアンスレポート"
|
|
1173
1069
|
|
|
@@ -1183,8 +1079,7 @@ msgstr "ホストは存在しません"
|
|
|
1183
1079
|
msgid "Policy is missing"
|
|
1184
1080
|
msgstr "ポリシーがありません"
|
|
1185
1081
|
|
|
1186
|
-
#: ../app/views/dashboard/_compliance_reports_breakdown_widget.html.erb:1
|
|
1187
|
-
#: ../lib/foreman_openscap/engine.rb:185
|
|
1082
|
+
#: ../app/views/dashboard/_compliance_reports_breakdown_widget.html.erb:1 ../lib/foreman_openscap/engine.rb:185
|
|
1188
1083
|
msgid "Compliance Reports Breakdown"
|
|
1189
1084
|
msgstr "コンプライアンスレポートの内訳"
|
|
1190
1085
|
|
|
@@ -1200,13 +1095,11 @@ msgstr "ホスト名"
|
|
|
1200
1095
|
msgid "Changed?"
|
|
1201
1096
|
msgstr "変更されましたか?"
|
|
1202
1097
|
|
|
1203
|
-
#: ../app/views/foreman_openscap/policy_mailer/_hosts.erb:36
|
|
1204
|
-
#: ../webpack/routes/OvalPolicies/OvalPoliciesShow/CvesTable.js:35
|
|
1098
|
+
#: ../app/views/foreman_openscap/policy_mailer/_hosts.erb:36 ../webpack/routes/OvalPolicies/OvalPoliciesShow/CvesTable.js:35
|
|
1205
1099
|
msgid "Yes"
|
|
1206
1100
|
msgstr "はい"
|
|
1207
1101
|
|
|
1208
|
-
#: ../app/views/foreman_openscap/policy_mailer/_hosts.erb:36
|
|
1209
|
-
#: ../webpack/routes/OvalPolicies/OvalPoliciesShow/CvesTable.js:35
|
|
1102
|
+
#: ../app/views/foreman_openscap/policy_mailer/_hosts.erb:36 ../webpack/routes/OvalPolicies/OvalPoliciesShow/CvesTable.js:35
|
|
1210
1103
|
msgid "No"
|
|
1211
1104
|
msgstr "いいえ"
|
|
1212
1105
|
|
|
@@ -1237,7 +1130,7 @@ msgstr "過去 %{time} から今までの概要"
|
|
|
1237
1130
|
|
|
1238
1131
|
#: ../app/views/foreman_openscap/policy_mailer/policy_summary.erb:11
|
|
1239
1132
|
msgid "Summary report from Foreman server at %{foreman_url}"
|
|
1240
|
-
msgstr "
|
|
1133
|
+
msgstr "%{foreman_url} にある Foreman サーバーからの概要レポート"
|
|
1241
1134
|
|
|
1242
1135
|
#: ../app/views/foreman_openscap/policy_mailer/policy_summary.erb:16
|
|
1243
1136
|
msgid "Policies with hosts:"
|
|
@@ -1255,48 +1148,33 @@ msgstr "全般"
|
|
|
1255
1148
|
msgid "Host Groups"
|
|
1256
1149
|
msgstr "ホストグループ"
|
|
1257
1150
|
|
|
1258
|
-
#: ../app/views/policies/_form.html.erb:45
|
|
1259
|
-
#: ../app/views/policies/steps/_schedule_form.html.erb:6
|
|
1151
|
+
#: ../app/views/policies/_form.html.erb:45 ../app/views/policies/steps/_schedule_form.html.erb:6
|
|
1260
1152
|
msgid "Choose period"
|
|
1261
1153
|
msgstr "期間を選択"
|
|
1262
1154
|
|
|
1263
|
-
#: ../app/views/policies/_form.html.erb:47
|
|
1264
|
-
#: ../app/views/policies/steps/_schedule_form.html.erb:9
|
|
1155
|
+
#: ../app/views/policies/_form.html.erb:47 ../app/views/policies/steps/_schedule_form.html.erb:9
|
|
1265
1156
|
msgid "Choose weekday"
|
|
1266
1157
|
msgstr "平日を選択"
|
|
1267
1158
|
|
|
1268
|
-
#: ../app/views/policies/_form.html.erb:48
|
|
1269
|
-
|
|
1270
|
-
msgid ""
|
|
1271
|
-
"Number of a day in month, note that not all months have same count of days"
|
|
1159
|
+
#: ../app/views/policies/_form.html.erb:48 ../app/views/policies/steps/_schedule_form.html.erb:13
|
|
1160
|
+
msgid "Number of a day in month, note that not all months have same count of days"
|
|
1272
1161
|
msgstr "月の日数。すべての月の日数が同じであるとは限らないことに注意してください"
|
|
1273
1162
|
|
|
1274
|
-
#: ../app/views/policies/_form.html.erb:49
|
|
1275
|
-
|
|
1276
|
-
msgid ""
|
|
1277
|
-
"You can specify custom cron line, e.g. \"0 3 * * *\", separate each of 5"
|
|
1278
|
-
" values by space"
|
|
1163
|
+
#: ../app/views/policies/_form.html.erb:49 ../app/views/policies/steps/_schedule_form.html.erb:14
|
|
1164
|
+
msgid "You can specify custom cron line, e.g. \"0 3 * * *\", separate each of 5 values by space"
|
|
1279
1165
|
msgstr "カスタム cron 行を指定できます (たとえば、\"0 3 * * *\" のように 5 つの値をスペースで区切ります)"
|
|
1280
1166
|
|
|
1281
|
-
#: ../app/views/policies/_list.html.erb:3
|
|
1282
|
-
#: ../app/views/tailoring_files/_list.html.erb:3
|
|
1283
|
-
#: ../webpack/routes/OvalContents/OvalContentsIndex/OvalContentsTable.js:19
|
|
1284
|
-
#: ../webpack/routes/OvalContents/OvalContentsNew/OvalContentsNew.js:57
|
|
1285
|
-
#: ../webpack/routes/OvalContents/OvalContentsShow/OvalContentsShow.js:48
|
|
1286
|
-
#: ../webpack/routes/OvalPolicies/OvalPoliciesIndex/OvalPoliciesTable.js:19
|
|
1287
|
-
#: ../webpack/routes/OvalPolicies/OvalPoliciesNew/NewOvalPolicyForm.js:56
|
|
1288
|
-
#: ../webpack/routes/OvalPolicies/OvalPoliciesShow/DetailsTab.js:31
|
|
1289
|
-
#: ../webpack/routes/OvalPolicies/OvalPoliciesShow/HostgroupsTable.js:9
|
|
1167
|
+
#: ../app/views/policies/_list.html.erb:3 ../app/views/tailoring_files/_list.html.erb:3 ../webpack/components/OpenscapRemediationWizard/steps/ReviewHosts.js:162 ../webpack/routes/OvalContents/OvalContentsIndex/OvalContentsTable.js:19 ../webpack/routes/OvalContents/OvalContentsNew/OvalContentsNew.js:57 ../webpack/routes/OvalContents/OvalContentsShow/OvalContentsShow.js:48 ../webpack/routes/OvalPolicies/OvalPoliciesIndex/OvalPoliciesTable.js:19 ../webpack/routes/OvalPolicies/OvalPoliciesNew/NewOvalPolicyForm.js:56 ../webpack/routes/OvalPolicies/OvalPoliciesShow/DetailsTab.js:31 ../webpack/routes/OvalPolicies/OvalPoliciesShow/HostgroupsTable.js:9
|
|
1290
1168
|
msgid "Name"
|
|
1291
1169
|
msgstr "名前"
|
|
1292
1170
|
|
|
1293
1171
|
#: ../app/views/policies/_list.html.erb:4
|
|
1294
1172
|
msgid "Content"
|
|
1295
|
-
msgstr "
|
|
1173
|
+
msgstr ""
|
|
1296
1174
|
|
|
1297
1175
|
#: ../app/views/policies/_list.html.erb:5
|
|
1298
1176
|
msgid "Profile"
|
|
1299
|
-
msgstr "
|
|
1177
|
+
msgstr ""
|
|
1300
1178
|
|
|
1301
1179
|
#: ../app/views/policies/_list.html.erb:7
|
|
1302
1180
|
msgid "Effective Profile"
|
|
@@ -1318,25 +1196,19 @@ msgstr "ガイドの表示"
|
|
|
1318
1196
|
msgid "Delete compliance policy %s with all of its reports?"
|
|
1319
1197
|
msgstr "すべてのレポートでコンプライアンスポリシー %s を削除しますか?"
|
|
1320
1198
|
|
|
1321
|
-
#: ../app/views/policies/create.html.erb:1
|
|
1322
|
-
#: ../app/views/policies/index.html.erb:5 ../app/views/policies/new.html.erb:1
|
|
1199
|
+
#: ../app/views/policies/create.html.erb:1 ../app/views/policies/index.html.erb:5 ../app/views/policies/new.html.erb:1
|
|
1323
1200
|
msgid "New Compliance Policy"
|
|
1324
1201
|
msgstr "新規コンプライアンスポリシー"
|
|
1325
1202
|
|
|
1326
|
-
#: ../app/views/policies/disassociate_multiple_hosts.html.erb:4
|
|
1327
|
-
#: ../app/views/policies/select_multiple_hosts.html.erb:5
|
|
1203
|
+
#: ../app/views/policies/disassociate_multiple_hosts.html.erb:4 ../app/views/policies/select_multiple_hosts.html.erb:5
|
|
1328
1204
|
msgid "Select Compliance Policy"
|
|
1329
1205
|
msgstr "コンプライアンスポリシーの選択"
|
|
1330
1206
|
|
|
1331
|
-
#: ../app/views/policies/edit.html.erb:1
|
|
1332
|
-
#: ../app/views/scap_contents/edit.html.erb:1
|
|
1333
|
-
#: ../app/views/tailoring_files/edit.html.erb:1
|
|
1207
|
+
#: ../app/views/policies/edit.html.erb:1 ../app/views/scap_contents/edit.html.erb:1 ../app/views/tailoring_files/edit.html.erb:1
|
|
1334
1208
|
msgid "Edit %s"
|
|
1335
1209
|
msgstr "%s の編集"
|
|
1336
1210
|
|
|
1337
|
-
#: ../app/views/policies/index.html.erb:2
|
|
1338
|
-
#: ../app/views/policies/welcome.html.erb:1
|
|
1339
|
-
#: ../app/views/policies/welcome.html.erb:6
|
|
1211
|
+
#: ../app/views/policies/index.html.erb:2 ../app/views/policies/welcome.html.erb:1 ../app/views/policies/welcome.html.erb:6
|
|
1340
1212
|
msgid "Compliance Policies"
|
|
1341
1213
|
msgstr "コンプライアンスポリシー"
|
|
1342
1214
|
|
|
@@ -1373,9 +1245,7 @@ msgid "SCAP content"
|
|
|
1373
1245
|
msgstr "SCAP のコンテンツ"
|
|
1374
1246
|
|
|
1375
1247
|
#: ../app/views/policies/welcome.html.erb:8
|
|
1376
|
-
msgid ""
|
|
1377
|
-
"Once SCAP content is present, you can create a policy, assign select host "
|
|
1378
|
-
"groups and schedule to run."
|
|
1248
|
+
msgid "Once SCAP content is present, you can create a policy, assign select host groups and schedule to run."
|
|
1379
1249
|
msgstr "SCAP コンテンツが表示されたら、ポリシーの作成、選択したホストグループの割り当て、実行のスケジューリングが可能です。"
|
|
1380
1250
|
|
|
1381
1251
|
#: ../app/views/policies/welcome.html.erb:12
|
|
@@ -1438,8 +1308,7 @@ msgstr "状態チャート"
|
|
|
1438
1308
|
msgid "Latest reports for policy: %s"
|
|
1439
1309
|
msgstr "ポリシーの最新レポート: %s"
|
|
1440
1310
|
|
|
1441
|
-
#: ../app/views/scap_contents/_form.html.erb:9
|
|
1442
|
-
#: ../app/views/tailoring_files/_form.html.erb:9
|
|
1311
|
+
#: ../app/views/scap_contents/_form.html.erb:9 ../app/views/tailoring_files/_form.html.erb:9
|
|
1443
1312
|
msgid "File Upload"
|
|
1444
1313
|
msgstr "ファイルアップロード"
|
|
1445
1314
|
|
|
@@ -1449,20 +1318,17 @@ msgstr "SCAP データストリームファイル"
|
|
|
1449
1318
|
|
|
1450
1319
|
#: ../app/views/scap_contents/_list.html.erb:3
|
|
1451
1320
|
msgid "Title"
|
|
1452
|
-
msgstr "
|
|
1321
|
+
msgstr ""
|
|
1453
1322
|
|
|
1454
|
-
#: ../app/views/scap_contents/_list.html.erb:4
|
|
1455
|
-
#: ../app/views/tailoring_files/_list.html.erb:4
|
|
1323
|
+
#: ../app/views/scap_contents/_list.html.erb:4 ../app/views/tailoring_files/_list.html.erb:4
|
|
1456
1324
|
msgid "File name"
|
|
1457
|
-
msgstr "
|
|
1325
|
+
msgstr ""
|
|
1458
1326
|
|
|
1459
|
-
#: ../app/views/scap_contents/_list.html.erb:5
|
|
1460
|
-
#: ../app/views/tailoring_files/_list.html.erb:5
|
|
1327
|
+
#: ../app/views/scap_contents/_list.html.erb:5 ../app/views/tailoring_files/_list.html.erb:5
|
|
1461
1328
|
msgid "Created at"
|
|
1462
|
-
msgstr "
|
|
1329
|
+
msgstr ""
|
|
1463
1330
|
|
|
1464
|
-
#: ../app/views/scap_contents/_list.html.erb:17
|
|
1465
|
-
#: ../app/views/tailoring_files/_list.html.erb:23
|
|
1331
|
+
#: ../app/views/scap_contents/_list.html.erb:17 ../app/views/tailoring_files/_list.html.erb:23
|
|
1466
1332
|
msgid "Download"
|
|
1467
1333
|
msgstr "ダウンロード"
|
|
1468
1334
|
|
|
@@ -1486,21 +1352,24 @@ msgstr "新規 SCAP コンテンツファイルをアップロード"
|
|
|
1486
1352
|
msgid ""
|
|
1487
1353
|
"The Security Content Automation Protocol (SCAP), combines a number of open standards that are used to enumerate software flaws and\n"
|
|
1488
1354
|
" configuration issues related to security. "
|
|
1489
|
-
msgstr "
|
|
1355
|
+
msgstr ""
|
|
1356
|
+
"Security Content Automation Protocol (SCAP) は、ソフトウェアの不具合およびセキュリティーに関連する設定の問題を列挙するために使用される\n"
|
|
1357
|
+
" 数多くのオープンスタンダードの組み合わせです。 "
|
|
1490
1358
|
|
|
1491
1359
|
#: ../app/views/scap_contents/welcome.html.erb:9
|
|
1492
1360
|
msgid ""
|
|
1493
1361
|
"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"
|
|
1494
1362
|
" via %s"
|
|
1495
|
-
msgstr "
|
|
1363
|
+
msgstr ""
|
|
1364
|
+
"Foreman では、scap_contents はホストの SCAP セキュリティーガイドを表し、%s でホスト/ホストグループに割り当てるための SCAP プロファルを\n"
|
|
1365
|
+
" 作成します。"
|
|
1496
1366
|
|
|
1497
1367
|
#: ../app/views/scap_contents/welcome.html.erb:14
|
|
1498
1368
|
msgid "New SCAP Content"
|
|
1499
1369
|
msgstr "新規 SCAP コンテンツ"
|
|
1500
1370
|
|
|
1501
1371
|
#: ../app/views/smart_proxies/_openscap_spool.html.erb:4
|
|
1502
|
-
msgid ""
|
|
1503
|
-
"%s spool errors detected, inspect the appropriate file directly on proxy"
|
|
1372
|
+
msgid "%s spool errors detected, inspect the appropriate file directly on proxy"
|
|
1504
1373
|
msgstr "%s のスプールエラーが検出されました。プロキシーで直接適切なファイルを検証してください。"
|
|
1505
1374
|
|
|
1506
1375
|
#: ../app/views/smart_proxies/_openscap_spool.html.erb:8
|
|
@@ -1512,10 +1381,7 @@ msgid "None found"
|
|
|
1512
1381
|
msgstr "何も見つかりません"
|
|
1513
1382
|
|
|
1514
1383
|
#: ../app/views/smart_proxies/plugins/_openscap.html.erb:6
|
|
1515
|
-
msgid ""
|
|
1516
|
-
"Proxy failed to send a report from spool to Foreman. This indicates a "
|
|
1517
|
-
"corrupted report format. Report has been moved to directory for storing "
|
|
1518
|
-
"corrupted files on proxy for later inspection."
|
|
1384
|
+
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."
|
|
1519
1385
|
msgstr "プロキシーは、スプールから Foreman へのレポートの送信に失敗しました。これは、レポート形式が破損していることを示しています。レポートは、後で検査できるようプロキシーの破損ファイルを保存するディレクトリーに移動しました。"
|
|
1520
1386
|
|
|
1521
1387
|
#: ../app/views/smart_proxies/plugins/_openscap.html.erb:7
|
|
@@ -1530,10 +1396,7 @@ msgstr "DataStream テーラリングファイル"
|
|
|
1530
1396
|
msgid "Delete tailoring file %s?"
|
|
1531
1397
|
msgstr "テーラリングファイル %s を削除しますか?"
|
|
1532
1398
|
|
|
1533
|
-
#: ../app/views/tailoring_files/index.html.erb:1
|
|
1534
|
-
#: ../app/views/tailoring_files/welcome.html.erb:1
|
|
1535
|
-
#: ../app/views/tailoring_files/welcome.html.erb:6
|
|
1536
|
-
#: ../lib/foreman_openscap/engine.rb:169
|
|
1399
|
+
#: ../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
|
|
1537
1400
|
msgid "Tailoring Files"
|
|
1538
1401
|
msgstr "テーラリングファイル"
|
|
1539
1402
|
|
|
@@ -1546,16 +1409,16 @@ msgid "Upload new Tailoring File"
|
|
|
1546
1409
|
msgstr "新規テーラリングファイルのアップロード"
|
|
1547
1410
|
|
|
1548
1411
|
#: ../app/views/tailoring_files/welcome.html.erb:7
|
|
1549
|
-
msgid ""
|
|
1550
|
-
"It may sometimes be required to adjust the security policy to your specific "
|
|
1551
|
-
"needs. "
|
|
1412
|
+
msgid "It may sometimes be required to adjust the security policy to your specific needs. "
|
|
1552
1413
|
msgstr "セキュリティーポリシーを特定のニーズに合わせて調整することが必要になることがあります。 "
|
|
1553
1414
|
|
|
1554
1415
|
#: ../app/views/tailoring_files/welcome.html.erb:8
|
|
1555
1416
|
msgid ""
|
|
1556
1417
|
"In Foreman, tailoring_files represent the custom modifications to default XCCDF profiles and they can be applied to hosts\n"
|
|
1557
1418
|
" via %s"
|
|
1558
|
-
msgstr "
|
|
1419
|
+
msgstr ""
|
|
1420
|
+
"Foreman では、tailoring_files はデフォルトの XCCDF プロファイルへのカスタム修正を表し、%s で\n"
|
|
1421
|
+
" ホストに適用できます"
|
|
1559
1422
|
|
|
1560
1423
|
#: ../app/views/tailoring_files/welcome.html.erb:13
|
|
1561
1424
|
msgid "New Tailoring File"
|
|
@@ -1570,38 +1433,36 @@ msgid "A summary of reports for OpenSCAP policies"
|
|
|
1570
1433
|
msgstr "OpenSCAP ポリシーのレポートの概要"
|
|
1571
1434
|
|
|
1572
1435
|
#: ../lib/foreman_openscap/bulk_upload.rb:20
|
|
1573
|
-
msgid ""
|
|
1574
|
-
|
|
1575
|
-
"server?"
|
|
1576
|
-
msgstr "scap-security-guide RPM が見つかりません。サーバーにインストールされていますか?"
|
|
1436
|
+
msgid "Can't find scap-security-guide RPM, are you sure it is installed on your server?"
|
|
1437
|
+
msgstr ""
|
|
1577
1438
|
|
|
1578
1439
|
#: ../lib/foreman_openscap/bulk_upload.rb:29
|
|
1579
1440
|
msgid "Expected an array of files to upload, got: %s."
|
|
1580
|
-
msgstr "
|
|
1441
|
+
msgstr ""
|
|
1581
1442
|
|
|
1582
1443
|
#: ../lib/foreman_openscap/bulk_upload.rb:35
|
|
1583
1444
|
msgid "%s is a directory, expecting file."
|
|
1584
|
-
msgstr "
|
|
1445
|
+
msgstr ""
|
|
1585
1446
|
|
|
1586
1447
|
#: ../lib/foreman_openscap/bulk_upload.rb:40
|
|
1587
1448
|
msgid "%s does not exist, skipping."
|
|
1588
|
-
msgstr "
|
|
1449
|
+
msgstr ""
|
|
1589
1450
|
|
|
1590
1451
|
#: ../lib/foreman_openscap/bulk_upload.rb:58
|
|
1591
1452
|
msgid "Failed saving %s:"
|
|
1592
|
-
msgstr "
|
|
1453
|
+
msgstr ""
|
|
1593
1454
|
|
|
1594
1455
|
#: ../lib/foreman_openscap/bulk_upload.rb:66
|
|
1595
1456
|
msgid "No such directory: %s. Please check the path you have provided."
|
|
1596
|
-
msgstr "
|
|
1457
|
+
msgstr ""
|
|
1597
1458
|
|
|
1598
1459
|
#: ../lib/foreman_openscap/bulk_upload.rb:88
|
|
1599
1460
|
msgid "Red Hat %s default content"
|
|
1600
|
-
msgstr "
|
|
1461
|
+
msgstr ""
|
|
1601
1462
|
|
|
1602
1463
|
#: ../lib/foreman_openscap/bulk_upload.rb:88
|
|
1603
1464
|
msgid "%s content"
|
|
1604
|
-
msgstr "
|
|
1465
|
+
msgstr ""
|
|
1605
1466
|
|
|
1606
1467
|
#: ../lib/foreman_openscap/engine.rb:160
|
|
1607
1468
|
msgid "Policies"
|
|
@@ -1615,21 +1476,16 @@ msgstr "SCAP コンテンツ"
|
|
|
1615
1476
|
msgid "Reports"
|
|
1616
1477
|
msgstr "レポート"
|
|
1617
1478
|
|
|
1618
|
-
#: ../lib/foreman_openscap/engine.rb:172
|
|
1619
|
-
#: ../webpack/routes/OvalContents/OvalContentsIndex/OvalContentsIndex.js:33
|
|
1479
|
+
#: ../lib/foreman_openscap/engine.rb:172 ../webpack/routes/OvalContents/OvalContentsIndex/OvalContentsIndex.js:33
|
|
1620
1480
|
msgid "OVAL Contents"
|
|
1621
1481
|
msgstr "OVAL コンテンツ"
|
|
1622
1482
|
|
|
1623
|
-
#: ../lib/foreman_openscap/engine.rb:177
|
|
1624
|
-
#: ../webpack/routes/OvalPolicies/OvalPoliciesIndex/OvalPoliciesIndex.js:32
|
|
1483
|
+
#: ../lib/foreman_openscap/engine.rb:177 ../webpack/routes/OvalPolicies/OvalPoliciesIndex/OvalPoliciesIndex.js:32
|
|
1625
1484
|
msgid "OVAL Policies"
|
|
1626
1485
|
msgstr "OVAL ポリシー"
|
|
1627
1486
|
|
|
1628
1487
|
#: ../lib/foreman_openscap/engine.rb:199
|
|
1629
|
-
msgid ""
|
|
1630
|
-
"OpenSCAP Proxy to use for fetching SCAP content and uploading ARF reports. "
|
|
1631
|
-
"Leave blank and override appropriate parameters when using proxy load "
|
|
1632
|
-
"balancer."
|
|
1488
|
+
msgid "OpenSCAP Proxy to use for fetching SCAP content and uploading ARF reports. Leave blank and override appropriate parameters when using proxy load balancer."
|
|
1633
1489
|
msgstr "SCAP コンテンツのフェッチおよび ARF レポートのアップロードに使用する OpenSCAP プロキシー。プロキシーロードバランサーを使用する場合には、空白にして、適切なパラメーターを上書きします。"
|
|
1634
1490
|
|
|
1635
1491
|
#: ../lib/foreman_openscap/engine.rb:203 ../lib/foreman_openscap/engine.rb:208
|
|
@@ -1640,84 +1496,201 @@ msgstr "OpenSCAP プロキシー"
|
|
|
1640
1496
|
msgid "ID of OpenSCAP Proxy"
|
|
1641
1497
|
msgstr "OpenSCAP プロキシーの ID"
|
|
1642
1498
|
|
|
1643
|
-
#: ../lib/foreman_openscap/engine.rb:270 ../lib/foreman_openscap/engine.rb:
|
|
1499
|
+
#: ../lib/foreman_openscap/engine.rb:270 ../lib/foreman_openscap/engine.rb:293
|
|
1644
1500
|
msgid "Run OpenSCAP scan"
|
|
1645
1501
|
msgstr "OpenSCAP スキャンの実行"
|
|
1646
1502
|
|
|
1647
|
-
#: ../lib/foreman_openscap/engine.rb:275 ../lib/foreman_openscap/engine.rb:
|
|
1503
|
+
#: ../lib/foreman_openscap/engine.rb:275 ../lib/foreman_openscap/engine.rb:294
|
|
1648
1504
|
msgid "Run OVAL scan"
|
|
1649
1505
|
msgstr "OVAL スキャンの実行"
|
|
1650
1506
|
|
|
1507
|
+
#: ../lib/foreman_openscap/engine.rb:279 ../lib/foreman_openscap/engine.rb:295
|
|
1508
|
+
msgid "Run OpenSCAP remediation with Ansible"
|
|
1509
|
+
msgstr ""
|
|
1510
|
+
|
|
1511
|
+
#: ../lib/foreman_openscap/engine.rb:284 ../lib/foreman_openscap/engine.rb:296
|
|
1512
|
+
msgid "Run OpenSCAP remediation with Shell"
|
|
1513
|
+
msgstr ""
|
|
1514
|
+
|
|
1651
1515
|
#: ../webpack/components/ConfirmModal.js:19
|
|
1652
1516
|
msgid "Confirm"
|
|
1653
|
-
msgstr "
|
|
1517
|
+
msgstr ""
|
|
1654
1518
|
|
|
1655
1519
|
#: ../webpack/components/EditableInput.js:78
|
|
1656
1520
|
msgid "None provided"
|
|
1657
|
-
msgstr "
|
|
1521
|
+
msgstr ""
|
|
1658
1522
|
|
|
1659
1523
|
#: ../webpack/components/HostExtentions/HostKebabItems.js:37
|
|
1660
1524
|
msgid "There's no available report for this host"
|
|
1661
|
-
msgstr "
|
|
1525
|
+
msgstr ""
|
|
1662
1526
|
|
|
1663
|
-
#: ../webpack/components/
|
|
1664
|
-
msgid "
|
|
1665
|
-
msgstr "
|
|
1527
|
+
#: ../webpack/components/OpenscapRemediationWizard/ViewSelectedHostsLink.js:27
|
|
1528
|
+
msgid "View selected hosts"
|
|
1529
|
+
msgstr ""
|
|
1530
|
+
|
|
1531
|
+
#: ../webpack/components/OpenscapRemediationWizard/index.js:69 ../webpack/components/OpenscapRemediationWizard/steps/ReviewHosts.js:174
|
|
1532
|
+
msgid "Review hosts"
|
|
1533
|
+
msgstr ""
|
|
1534
|
+
|
|
1535
|
+
#: ../webpack/components/OpenscapRemediationWizard/index.js:77 ../webpack/components/OpenscapRemediationWizard/steps/SnippetSelect.js:123
|
|
1536
|
+
msgid "Select snippet"
|
|
1537
|
+
msgstr ""
|
|
1538
|
+
|
|
1539
|
+
#: ../webpack/components/OpenscapRemediationWizard/index.js:85 ../webpack/components/OpenscapRemediationWizard/steps/ReviewRemediation.js:94
|
|
1540
|
+
msgid "Review remediation"
|
|
1541
|
+
msgstr ""
|
|
1542
|
+
|
|
1543
|
+
#: ../webpack/components/OpenscapRemediationWizard/index.js:89
|
|
1544
|
+
msgid "Run"
|
|
1545
|
+
msgstr ""
|
|
1546
|
+
|
|
1547
|
+
#: ../webpack/components/OpenscapRemediationWizard/index.js:93
|
|
1548
|
+
msgid "Done"
|
|
1549
|
+
msgstr ""
|
|
1550
|
+
|
|
1551
|
+
#: ../webpack/components/OpenscapRemediationWizard/index.js:127
|
|
1552
|
+
msgid "Remediate %s rule"
|
|
1553
|
+
msgstr ""
|
|
1666
1554
|
|
|
1667
|
-
#: ../webpack/components/
|
|
1555
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/Finish.js:84
|
|
1556
|
+
msgid "Job details"
|
|
1557
|
+
msgstr ""
|
|
1558
|
+
|
|
1559
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/Finish.js:87
|
|
1560
|
+
msgid "Close"
|
|
1561
|
+
msgstr ""
|
|
1562
|
+
|
|
1563
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/Finish.js:97 ../webpack/components/OpenscapRemediationWizard/steps/SnippetSelect.js:144 ../webpack/components/withLoading.js:12
|
|
1668
1564
|
msgid "Error!"
|
|
1669
1565
|
msgstr "エラー!"
|
|
1670
1566
|
|
|
1567
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/Finish.js:105
|
|
1568
|
+
msgid "The job has started on selected host(s), you can check the status on the job details page."
|
|
1569
|
+
msgstr ""
|
|
1570
|
+
|
|
1571
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/ReviewHosts.js:167
|
|
1572
|
+
msgid "OS"
|
|
1573
|
+
msgstr ""
|
|
1574
|
+
|
|
1575
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/ReviewHosts.js:175
|
|
1576
|
+
msgid "By default, remediation is applied to the current host. Optionally, remediate any additional hosts that fail the rule."
|
|
1577
|
+
msgstr ""
|
|
1578
|
+
|
|
1579
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/ReviewRemediation.js:61
|
|
1580
|
+
msgid "Review the remediation snippet and apply it to the host manually."
|
|
1581
|
+
msgstr ""
|
|
1582
|
+
|
|
1583
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/ReviewRemediation.js:62
|
|
1584
|
+
msgid "Review the remediation snippet that will be applied to selected host(s)."
|
|
1585
|
+
msgstr ""
|
|
1586
|
+
|
|
1587
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/ReviewRemediation.js:67
|
|
1588
|
+
msgid "A reboot is required after applying remediation."
|
|
1589
|
+
msgstr ""
|
|
1590
|
+
|
|
1591
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/ReviewRemediation.js:68
|
|
1592
|
+
msgid "A reboot might be required after applying remediation."
|
|
1593
|
+
msgstr ""
|
|
1594
|
+
|
|
1595
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/ReviewRemediation.js:84
|
|
1596
|
+
msgid "Successfully copied to clipboard!"
|
|
1597
|
+
msgstr ""
|
|
1598
|
+
|
|
1599
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/ReviewRemediation.js:85
|
|
1600
|
+
msgid "Copy to clipboard"
|
|
1601
|
+
msgstr ""
|
|
1602
|
+
|
|
1603
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/ReviewRemediation.js:103
|
|
1604
|
+
msgid "Do not implement any of the recommended remedial actions or scripts without first testing them in a non-production environment."
|
|
1605
|
+
msgstr ""
|
|
1606
|
+
|
|
1607
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/ReviewRemediation.js:106
|
|
1608
|
+
msgid "Remediation might render the system non-functional."
|
|
1609
|
+
msgstr ""
|
|
1610
|
+
|
|
1611
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/ReviewRemediation.js:139
|
|
1612
|
+
msgid "Other hosts failing this rule"
|
|
1613
|
+
msgstr ""
|
|
1614
|
+
|
|
1615
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/ReviewRemediation.js:155
|
|
1616
|
+
msgid "Reboot the system(s)"
|
|
1617
|
+
msgstr ""
|
|
1618
|
+
|
|
1619
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/SnippetSelect.js:71
|
|
1620
|
+
msgid "Method"
|
|
1621
|
+
msgstr ""
|
|
1622
|
+
|
|
1623
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/SnippetSelect.js:77
|
|
1624
|
+
msgid "Remote job"
|
|
1625
|
+
msgstr ""
|
|
1626
|
+
|
|
1627
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/SnippetSelect.js:86
|
|
1628
|
+
msgid "Manual"
|
|
1629
|
+
msgstr ""
|
|
1630
|
+
|
|
1631
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/SnippetSelect.js:101
|
|
1632
|
+
msgid "There is no job to remediate with. Please remediate manually."
|
|
1633
|
+
msgstr ""
|
|
1634
|
+
|
|
1635
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/SnippetSelect.js:107
|
|
1636
|
+
msgid "Snippet"
|
|
1637
|
+
msgstr ""
|
|
1638
|
+
|
|
1639
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/SnippetSelect.js:150
|
|
1640
|
+
msgid "Select remediation method"
|
|
1641
|
+
msgstr ""
|
|
1642
|
+
|
|
1643
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/SnippetSelect.js:151
|
|
1644
|
+
msgid "You can remediate by running a remote job or you can display a snippet for manual remediation."
|
|
1645
|
+
msgstr ""
|
|
1646
|
+
|
|
1647
|
+
#: ../webpack/components/withDeleteModal.js:27
|
|
1648
|
+
msgid "Are you sure you want to delete %s?"
|
|
1649
|
+
msgstr ""
|
|
1650
|
+
|
|
1671
1651
|
#: ../webpack/components/withLoading.js:64
|
|
1672
1652
|
msgid "Permission denied"
|
|
1673
|
-
msgstr "
|
|
1653
|
+
msgstr ""
|
|
1674
1654
|
|
|
1675
1655
|
#: ../webpack/helpers/mutationHelper.js:7
|
|
1676
1656
|
msgid "There was a following error when deleting %(name)s: %(error)s"
|
|
1677
|
-
msgstr "
|
|
1657
|
+
msgstr ""
|
|
1678
1658
|
|
|
1679
1659
|
#: ../webpack/helpers/permissionsHelper.js:34
|
|
1680
1660
|
msgid "You are not authorized to view the page. "
|
|
1681
|
-
msgstr "
|
|
1661
|
+
msgstr ""
|
|
1682
1662
|
|
|
1683
1663
|
#: ../webpack/helpers/permissionsHelper.js:37
|
|
1684
1664
|
msgid "Request the following permissions from administrator: %s."
|
|
1685
|
-
msgstr "
|
|
1665
|
+
msgstr ""
|
|
1686
1666
|
|
|
1687
1667
|
#: ../webpack/routes/OvalContents/OvalContentsIndex/OvalContentsIndex.js:40
|
|
1688
1668
|
msgid "No OVAL Contents found."
|
|
1689
1669
|
msgstr "OVAL コンテンツが見つかりません。"
|
|
1690
1670
|
|
|
1691
|
-
#: ../webpack/routes/OvalContents/OvalContentsIndex/OvalContentsIndex.js:42
|
|
1692
|
-
#: ../webpack/routes/OvalContents/OvalContentsIndex/OvalContentsTable.js:42
|
|
1671
|
+
#: ../webpack/routes/OvalContents/OvalContentsIndex/OvalContentsIndex.js:42 ../webpack/routes/OvalContents/OvalContentsIndex/OvalContentsTable.js:42
|
|
1693
1672
|
msgid "Delete OVAL Content"
|
|
1694
|
-
msgstr "
|
|
1673
|
+
msgstr ""
|
|
1695
1674
|
|
|
1696
1675
|
#: ../webpack/routes/OvalContents/OvalContentsIndex/OvalContentsIndex.js:49
|
|
1697
1676
|
msgid "OVAL Content successfully deleted."
|
|
1698
|
-
msgstr "
|
|
1677
|
+
msgstr ""
|
|
1699
1678
|
|
|
1700
|
-
#: ../webpack/routes/OvalContents/OvalContentsIndex/OvalContentsIndex.js:51
|
|
1701
|
-
#: ../webpack/routes/OvalContents/OvalContentsShow/OvalContentsShow.js:39
|
|
1702
|
-
#: ../webpack/routes/OvalPolicies/OvalPoliciesIndex/OvalPoliciesTable.js:19
|
|
1703
|
-
#: ../webpack/routes/OvalPolicies/OvalPoliciesNew/NewOvalPolicyForm.js:74
|
|
1679
|
+
#: ../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
|
|
1704
1680
|
msgid "OVAL Content"
|
|
1705
1681
|
msgstr "OVAL コンテンツ"
|
|
1706
1682
|
|
|
1707
|
-
#: ../webpack/routes/OvalContents/OvalContentsIndex/OvalContentsIndex.js:56
|
|
1708
|
-
#: ../webpack/routes/OvalContents/OvalContentsIndex/OvalContentsTable.js:57
|
|
1683
|
+
#: ../webpack/routes/OvalContents/OvalContentsIndex/OvalContentsIndex.js:56 ../webpack/routes/OvalContents/OvalContentsIndex/OvalContentsTable.js:57
|
|
1709
1684
|
msgid "Create OVAL Content"
|
|
1710
|
-
msgstr "
|
|
1685
|
+
msgstr ""
|
|
1711
1686
|
|
|
1712
|
-
#: ../webpack/routes/OvalContents/OvalContentsIndex/OvalContentsTable.js:20
|
|
1713
|
-
#: ../webpack/routes/OvalContents/OvalContentsNew/OvalContentsNew.js:103
|
|
1714
|
-
#: ../webpack/routes/OvalContents/OvalContentsShow/OvalContentsShow.js:21
|
|
1687
|
+
#: ../webpack/routes/OvalContents/OvalContentsIndex/OvalContentsTable.js:20 ../webpack/routes/OvalContents/OvalContentsNew/OvalContentsNew.js:103 ../webpack/routes/OvalContents/OvalContentsShow/OvalContentsShow.js:21
|
|
1715
1688
|
msgid "URL"
|
|
1716
|
-
msgstr "
|
|
1689
|
+
msgstr ""
|
|
1717
1690
|
|
|
1718
1691
|
#: ../webpack/routes/OvalContents/OvalContentsIndex/OvalContentsTable.js:21
|
|
1719
1692
|
msgid "Original File Name"
|
|
1720
|
-
msgstr "
|
|
1693
|
+
msgstr ""
|
|
1721
1694
|
|
|
1722
1695
|
#: ../webpack/routes/OvalContents/OvalContentsIndex/OvalContentsTable.js:69
|
|
1723
1696
|
msgid "OVAL Contents table"
|
|
@@ -1725,59 +1698,55 @@ msgstr "OVAL コンテンツテーブル"
|
|
|
1725
1698
|
|
|
1726
1699
|
#: ../webpack/routes/OvalContents/OvalContentsNew/OvalContentsNew.js:39
|
|
1727
1700
|
msgid "New OVAL Content"
|
|
1728
|
-
msgstr "
|
|
1701
|
+
msgstr ""
|
|
1729
1702
|
|
|
1730
1703
|
#: ../webpack/routes/OvalContents/OvalContentsNew/OvalContentsNew.js:62
|
|
1731
1704
|
msgid "OVAL Content Source"
|
|
1732
|
-
msgstr "
|
|
1705
|
+
msgstr ""
|
|
1733
1706
|
|
|
1734
1707
|
#: ../webpack/routes/OvalContents/OvalContentsNew/OvalContentsNew.js:74
|
|
1735
1708
|
msgid "OVAL Content from URL"
|
|
1736
|
-
msgstr "
|
|
1709
|
+
msgstr ""
|
|
1737
1710
|
|
|
1738
1711
|
#: ../webpack/routes/OvalContents/OvalContentsNew/OvalContentsNew.js:88
|
|
1739
1712
|
msgid "OVAL Content from file"
|
|
1740
|
-
msgstr "
|
|
1713
|
+
msgstr ""
|
|
1741
1714
|
|
|
1742
|
-
#: ../webpack/routes/OvalContents/OvalContentsNew/OvalContentsNew.js:92
|
|
1743
|
-
#: ../webpack/routes/OvalContents/OvalContentsShow/OvalContentsShow.js:28
|
|
1715
|
+
#: ../webpack/routes/OvalContents/OvalContentsNew/OvalContentsNew.js:92 ../webpack/routes/OvalContents/OvalContentsShow/OvalContentsShow.js:28
|
|
1744
1716
|
msgid "File"
|
|
1745
|
-
msgstr "
|
|
1717
|
+
msgstr ""
|
|
1746
1718
|
|
|
1747
1719
|
#: ../webpack/routes/OvalContents/OvalContentsNew/OvalContentsNewHelper.js:38
|
|
1748
1720
|
msgid "OVAL Content %s successfully created"
|
|
1749
|
-
msgstr "
|
|
1721
|
+
msgstr ""
|
|
1750
1722
|
|
|
1751
1723
|
#: ../webpack/routes/OvalContents/OvalContentsNew/OvalContentsNewHelper.js:52
|
|
1752
1724
|
msgid "Unknown error when submitting data, please try again later."
|
|
1753
|
-
msgstr "
|
|
1725
|
+
msgstr ""
|
|
1754
1726
|
|
|
1755
|
-
#: ../webpack/routes/OvalContents/OvalContentsShow/index.js:26
|
|
1756
|
-
#: ../webpack/routes/OvalPolicies/OvalPoliciesNew/OvalPoliciesNew.js:22
|
|
1727
|
+
#: ../webpack/routes/OvalContents/OvalContentsShow/index.js:26 ../webpack/routes/OvalPolicies/OvalPoliciesNew/OvalPoliciesNew.js:22
|
|
1757
1728
|
msgid "No OVAL Content found"
|
|
1758
|
-
msgstr "
|
|
1729
|
+
msgstr ""
|
|
1759
1730
|
|
|
1760
1731
|
#: ../webpack/routes/OvalPolicies/OvalPoliciesIndex/OvalPoliciesIndex.js:39
|
|
1761
1732
|
msgid "No OVAL Policies found"
|
|
1762
1733
|
msgstr "OVAL ポリシーが見つかりません"
|
|
1763
1734
|
|
|
1764
|
-
#: ../webpack/routes/OvalPolicies/OvalPoliciesIndex/OvalPoliciesIndex.js:41
|
|
1765
|
-
#: ../webpack/routes/OvalPolicies/OvalPoliciesIndex/OvalPoliciesTable.js:33
|
|
1735
|
+
#: ../webpack/routes/OvalPolicies/OvalPoliciesIndex/OvalPoliciesIndex.js:41 ../webpack/routes/OvalPolicies/OvalPoliciesIndex/OvalPoliciesTable.js:33
|
|
1766
1736
|
msgid "Delete OVAL Policy"
|
|
1767
|
-
msgstr "
|
|
1737
|
+
msgstr ""
|
|
1768
1738
|
|
|
1769
1739
|
#: ../webpack/routes/OvalPolicies/OvalPoliciesIndex/OvalPoliciesIndex.js:48
|
|
1770
1740
|
msgid "OVAL policy was successfully deleted."
|
|
1771
|
-
msgstr "
|
|
1741
|
+
msgstr ""
|
|
1772
1742
|
|
|
1773
1743
|
#: ../webpack/routes/OvalPolicies/OvalPoliciesIndex/OvalPoliciesIndex.js:50
|
|
1774
1744
|
msgid "OVAL policy"
|
|
1775
|
-
msgstr "
|
|
1745
|
+
msgstr ""
|
|
1776
1746
|
|
|
1777
|
-
#: ../webpack/routes/OvalPolicies/OvalPoliciesIndex/OvalPoliciesTable.js:48
|
|
1778
|
-
#: ../webpack/routes/OvalPolicies/OvalPoliciesNew/OvalPoliciesNew.js:17
|
|
1747
|
+
#: ../webpack/routes/OvalPolicies/OvalPoliciesIndex/OvalPoliciesTable.js:48 ../webpack/routes/OvalPolicies/OvalPoliciesNew/OvalPoliciesNew.js:17
|
|
1779
1748
|
msgid "Create OVAL Policy"
|
|
1780
|
-
msgstr "
|
|
1749
|
+
msgstr ""
|
|
1781
1750
|
|
|
1782
1751
|
#: ../webpack/routes/OvalPolicies/OvalPoliciesIndex/OvalPoliciesTable.js:60
|
|
1783
1752
|
msgid "OVAL Policies Table"
|
|
@@ -1785,33 +1754,31 @@ msgstr "OVAL ポリシーテーブル"
|
|
|
1785
1754
|
|
|
1786
1755
|
#: ../webpack/routes/OvalPolicies/OvalPoliciesNew/HostgroupSelect.js:107
|
|
1787
1756
|
msgid "Type a hostgroup name..."
|
|
1788
|
-
msgstr "
|
|
1757
|
+
msgstr ""
|
|
1789
1758
|
|
|
1790
1759
|
#: ../webpack/routes/OvalPolicies/OvalPoliciesNew/NewOvalPolicyForm.js:76
|
|
1791
1760
|
msgid "Choose OVAL Content"
|
|
1792
|
-
msgstr "
|
|
1761
|
+
msgstr ""
|
|
1793
1762
|
|
|
1794
1763
|
#: ../webpack/routes/OvalPolicies/OvalPoliciesNew/NewOvalPolicyFormHelpers.js:8
|
|
1795
1764
|
msgid "can't be blank"
|
|
1796
|
-
msgstr "
|
|
1765
|
+
msgstr ""
|
|
1797
1766
|
|
|
1798
1767
|
#: ../webpack/routes/OvalPolicies/OvalPoliciesNew/NewOvalPolicyFormHelpers.js:15
|
|
1799
1768
|
msgid "is not a valid cronline"
|
|
1800
|
-
msgstr "
|
|
1769
|
+
msgstr ""
|
|
1801
1770
|
|
|
1802
1771
|
#: ../webpack/routes/OvalPolicies/OvalPoliciesNew/NewOvalPolicyFormHelpers.js:54
|
|
1803
1772
|
msgid "OVAL Policy succesfully created."
|
|
1804
|
-
msgstr "
|
|
1773
|
+
msgstr ""
|
|
1805
1774
|
|
|
1806
1775
|
#: ../webpack/routes/OvalPolicies/OvalPoliciesNew/NewOvalPolicyFormHelpers.js:86
|
|
1807
1776
|
msgid "Failed to create OVAL Policy: %s"
|
|
1808
|
-
msgstr "
|
|
1777
|
+
msgstr ""
|
|
1809
1778
|
|
|
1810
1779
|
#: ../webpack/routes/OvalPolicies/OvalPoliciesNew/OvalPoliciesNew.js:23
|
|
1811
|
-
msgid ""
|
|
1812
|
-
|
|
1813
|
-
"proceeding."
|
|
1814
|
-
msgstr "OVAL ポリシーを作成するには、OVAL コンテンツが必要です。OVAL コンテンツを 1 つ作成してから続行してください。"
|
|
1780
|
+
msgid "OVAL Content is required to create OVAL Policy. Please create one before proceeding."
|
|
1781
|
+
msgstr ""
|
|
1815
1782
|
|
|
1816
1783
|
#: ../webpack/routes/OvalPolicies/OvalPoliciesShow/CvesTab.js:38
|
|
1817
1784
|
msgid "No CVEs found."
|
|
@@ -1835,15 +1802,15 @@ msgstr "OVAL ポリシーの CVE テーブル"
|
|
|
1835
1802
|
|
|
1836
1803
|
#: ../webpack/routes/OvalPolicies/OvalPoliciesShow/DetailsTab.js:47
|
|
1837
1804
|
msgid "Period"
|
|
1838
|
-
msgstr "
|
|
1805
|
+
msgstr ""
|
|
1839
1806
|
|
|
1840
1807
|
#: ../webpack/routes/OvalPolicies/OvalPoliciesShow/HostgroupsTab.js:38
|
|
1841
1808
|
msgid "No Hostgroups found."
|
|
1842
|
-
msgstr "
|
|
1809
|
+
msgstr ""
|
|
1843
1810
|
|
|
1844
1811
|
#: ../webpack/routes/OvalPolicies/OvalPoliciesShow/HostgroupsTable.js:26
|
|
1845
1812
|
msgid "Table of hostgroups for OVAL policy"
|
|
1846
|
-
msgstr "
|
|
1813
|
+
msgstr ""
|
|
1847
1814
|
|
|
1848
1815
|
#: ../webpack/routes/OvalPolicies/OvalPoliciesShow/OvalPoliciesShow.js:46
|
|
1849
1816
|
msgid "Scan All Hostgroups"
|
|
@@ -1851,35 +1818,35 @@ msgstr "すべてのホストグループのスキャン"
|
|
|
1851
1818
|
|
|
1852
1819
|
#: ../webpack/routes/OvalPolicies/OvalPoliciesShow/OvalPoliciesShow.js:53
|
|
1853
1820
|
msgid "Details"
|
|
1854
|
-
msgstr "
|
|
1821
|
+
msgstr ""
|
|
1855
1822
|
|
|
1856
1823
|
#: ../webpack/routes/OvalPolicies/OvalPoliciesShow/OvalPoliciesShow.js:59
|
|
1857
1824
|
msgid "CVEs"
|
|
1858
|
-
msgstr "
|
|
1825
|
+
msgstr ""
|
|
1859
1826
|
|
|
1860
1827
|
#: ../webpack/routes/OvalPolicies/OvalPoliciesShow/OvalPoliciesShowHelper.js:9
|
|
1861
1828
|
msgid "Weekly, on %s"
|
|
1862
|
-
msgstr "
|
|
1829
|
+
msgstr ""
|
|
1863
1830
|
|
|
1864
1831
|
#: ../webpack/routes/OvalPolicies/OvalPoliciesShow/OvalPoliciesShowHelper.js:11
|
|
1865
1832
|
msgid "Monthly, day of month: %s"
|
|
1866
|
-
msgstr "
|
|
1833
|
+
msgstr ""
|
|
1867
1834
|
|
|
1868
1835
|
#: ../webpack/routes/OvalPolicies/OvalPoliciesShow/OvalPoliciesShowHelper.js:13
|
|
1869
1836
|
msgid "Custom cron: %s"
|
|
1870
|
-
msgstr "
|
|
1837
|
+
msgstr ""
|
|
1871
1838
|
|
|
1872
1839
|
#: ../webpack/routes/OvalPolicies/OvalPoliciesShow/OvalPoliciesShowHelper.js:15
|
|
1873
1840
|
msgid "Unknown schedule"
|
|
1874
|
-
msgstr "
|
|
1841
|
+
msgstr ""
|
|
1875
1842
|
|
|
1876
1843
|
#: ../webpack/routes/OvalPolicies/OvalPoliciesShow/OvalPoliciesShowHelper.js:77
|
|
1877
1844
|
msgid "OVAL policy was successfully updated."
|
|
1878
|
-
msgstr "
|
|
1845
|
+
msgstr ""
|
|
1879
1846
|
|
|
1880
1847
|
#: ../webpack/routes/OvalPolicies/OvalPoliciesShow/OvalPoliciesShowHelper.js:84
|
|
1881
1848
|
msgid "There was a following error when updating OVAL policy: %s"
|
|
1882
|
-
msgstr "
|
|
1849
|
+
msgstr ""
|
|
1883
1850
|
|
|
1884
1851
|
#: ../webpack/routes/OvalPolicies/OvalPoliciesShow/index.js:28
|
|
1885
1852
|
msgid "No OVAL Policy found"
|