foreman_openscap 4.2.0 → 4.3.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/controllers/api/v2/compliance/oval_contents_controller.rb +72 -0
- data/app/controllers/api/v2/compliance/oval_policies_controller.rb +111 -0
- data/app/controllers/api/v2/compliance/oval_reports_controller.rb +47 -0
- data/app/controllers/concerns/foreman/controller/parameters/oval_content.rb +22 -0
- data/app/controllers/concerns/foreman/controller/parameters/oval_policy.rb +22 -0
- data/app/controllers/concerns/foreman_openscap/hosts_controller_extensions.rb +1 -1
- data/app/graphql/types/cve.rb +17 -0
- data/app/graphql/types/oval_content.rb +17 -0
- data/app/graphql/types/oval_policy.rb +21 -0
- data/app/helpers/arf_reports_helper.rb +0 -14
- data/app/mailers/foreman_openscap/policy_mailer.rb +2 -2
- data/app/models/concerns/foreman_openscap/compliance_status_scoped_search.rb +1 -1
- data/app/models/concerns/foreman_openscap/data_stream_content.rb +0 -17
- data/app/models/concerns/foreman_openscap/host_extensions.rb +11 -11
- data/app/models/concerns/foreman_openscap/hostgroup_extensions.rb +3 -5
- data/app/models/concerns/foreman_openscap/inherited_policies.rb +11 -0
- data/app/models/concerns/foreman_openscap/oval_facet_host_extensions.rb +38 -0
- data/app/models/concerns/foreman_openscap/oval_facet_hostgroup_extensions.rb +15 -0
- data/app/models/concerns/foreman_openscap/policy_common.rb +75 -0
- data/app/models/concerns/foreman_openscap/scap_file_content.rb +24 -0
- data/app/models/foreman_openscap/cve.rb +23 -0
- data/app/models/foreman_openscap/host/oval_facet.rb +14 -0
- data/app/models/foreman_openscap/host_cve.rb +7 -0
- data/app/models/foreman_openscap/hostgroup/oval_facet.rb +14 -0
- data/app/models/foreman_openscap/hostgroup_oval_facet_oval_policy.rb +6 -0
- data/app/models/foreman_openscap/oval_content.rb +26 -0
- data/app/models/foreman_openscap/oval_facet_oval_policy.rb +6 -0
- data/app/models/foreman_openscap/oval_policy.rb +54 -0
- data/app/models/foreman_openscap/oval_status.rb +45 -0
- data/app/models/foreman_openscap/policy.rb +7 -69
- data/app/models/foreman_openscap/scap_content.rb +1 -0
- data/app/models/foreman_openscap/tailoring_file.rb +1 -0
- data/app/services/foreman_openscap/client_config/ansible.rb +39 -6
- data/app/services/foreman_openscap/client_config/base.rb +5 -1
- data/app/services/foreman_openscap/client_config/puppet.rb +2 -1
- data/app/services/foreman_openscap/config_name_service.rb +1 -1
- data/app/services/foreman_openscap/hostgroup_overrider.rb +2 -24
- data/app/services/foreman_openscap/hostgroup_overrider_common.rb +28 -0
- data/app/services/foreman_openscap/lookup_key_overrider.rb +30 -62
- data/app/services/foreman_openscap/lookup_key_overrides_common.rb +63 -0
- data/app/services/foreman_openscap/oval/check_collection.rb +45 -0
- data/app/services/foreman_openscap/oval/configure.rb +80 -0
- data/app/services/foreman_openscap/oval/cves.rb +41 -0
- data/app/services/foreman_openscap/oval/setup.rb +93 -0
- data/app/services/foreman_openscap/oval/setup_check.rb +55 -0
- data/app/services/foreman_openscap/oval/sync_oval_contents.rb +42 -0
- data/app/views/api/v2/compliance/oval_contents/base.json.rabl +6 -0
- data/app/views/api/v2/compliance/oval_contents/create.json.rabl +3 -0
- data/app/views/api/v2/compliance/oval_contents/index.json.rabl +3 -0
- data/app/views/api/v2/compliance/oval_contents/show.json.rabl +3 -0
- data/app/views/api/v2/compliance/oval_contents/sync.json.rabl +3 -0
- data/app/views/api/v2/compliance/oval_contents/sync_result.json.rabl +11 -0
- data/app/views/api/v2/compliance/oval_contents/update.json.rabl +3 -0
- data/app/views/api/v2/compliance/oval_policies/create.json.rabl +3 -0
- data/app/views/api/v2/compliance/oval_policies/index.json.rabl +3 -0
- data/app/views/api/v2/compliance/oval_policies/main.json.rabl +15 -0
- data/app/views/api/v2/compliance/oval_policies/show.json.rabl +3 -0
- data/app/views/api/v2/compliance/policies/base.json.rabl +2 -2
- data/app/views/api/v2/compliance/policies_common/_attrs.json.rabl +2 -0
- data/app/views/arf_reports/_output.html.erb +9 -1
- data/app/views/job_templates/run_oval_scans.erb +24 -0
- data/app/views/policies/steps/_deployment_options_form.html.erb +2 -2
- data/config/initializers/inflections.rb +12 -0
- data/config/routes.rb +19 -0
- data/db/migrate/20201019074925_create_oval_policy.rb +13 -0
- data/db/migrate/20201020113801_create_oval_facet.rb +14 -0
- data/db/migrate/20201021084109_create_hostgroup_oval_facet.rb +14 -0
- data/db/migrate/20201106080924_create_oval_content.rb +12 -0
- data/db/migrate/20201116110256_add_oval_content_to_oval_policy.rb +5 -0
- data/db/migrate/20201120080329_create_cves.rb +13 -0
- data/db/migrate/20201202110213_update_puppet_port_param_type.rb +2 -6
- data/db/migrate/20201217130800_add_has_errata_to_cve.rb +8 -0
- data/db/migrate/20201217161511_add_url_to_oval_content.rb +5 -0
- data/db/migrate/20210409095625_add_oval_policy_reference_to_cve.rb +7 -0
- data/lib/foreman_openscap/engine.rb +67 -9
- data/lib/foreman_openscap/version.rb +1 -1
- data/lib/tasks/foreman_openscap_tasks.rake +14 -9
- data/locale/de/LC_MESSAGES/foreman_openscap.mo +0 -0
- data/locale/de/foreman_openscap.edit.po +0 -0
- data/locale/de/foreman_openscap.po +215 -17
- data/locale/en_GB/LC_MESSAGES/foreman_openscap.mo +0 -0
- data/locale/en_GB/foreman_openscap.edit.po +0 -0
- data/locale/en_GB/foreman_openscap.po +213 -15
- data/locale/es/LC_MESSAGES/foreman_openscap.mo +0 -0
- data/locale/es/foreman_openscap.edit.po +0 -0
- data/locale/es/foreman_openscap.po +239 -41
- data/locale/foreman_openscap.pot +395 -112
- data/locale/fr/LC_MESSAGES/foreman_openscap.mo +0 -0
- data/locale/fr/foreman_openscap.edit.po +0 -0
- data/locale/fr/foreman_openscap.po +243 -45
- data/locale/gl/LC_MESSAGES/foreman_openscap.mo +0 -0
- data/locale/gl/foreman_openscap.edit.po +0 -0
- data/locale/gl/foreman_openscap.po +213 -15
- data/locale/it/LC_MESSAGES/foreman_openscap.mo +0 -0
- data/locale/it/foreman_openscap.edit.po +0 -0
- data/locale/it/foreman_openscap.po +213 -15
- data/locale/ja/LC_MESSAGES/foreman_openscap.mo +0 -0
- data/locale/ja/foreman_openscap.edit.po +0 -0
- data/locale/ja/foreman_openscap.po +262 -66
- data/locale/ko/LC_MESSAGES/foreman_openscap.mo +0 -0
- data/locale/ko/foreman_openscap.edit.po +0 -0
- data/locale/ko/foreman_openscap.po +214 -16
- data/locale/pt_BR/LC_MESSAGES/foreman_openscap.mo +0 -0
- data/locale/pt_BR/foreman_openscap.edit.po +0 -0
- data/locale/pt_BR/foreman_openscap.po +252 -54
- data/locale/ru/LC_MESSAGES/foreman_openscap.mo +0 -0
- data/locale/ru/foreman_openscap.edit.po +0 -0
- data/locale/ru/foreman_openscap.po +214 -16
- data/locale/sv_SE/LC_MESSAGES/foreman_openscap.mo +0 -0
- data/locale/sv_SE/foreman_openscap.edit.po +0 -0
- data/locale/sv_SE/foreman_openscap.po +213 -15
- data/locale/zh_CN/LC_MESSAGES/foreman_openscap.mo +0 -0
- data/locale/zh_CN/foreman_openscap.edit.po +0 -0
- data/locale/zh_CN/foreman_openscap.po +369 -169
- data/locale/zh_TW/LC_MESSAGES/foreman_openscap.mo +0 -0
- data/locale/zh_TW/foreman_openscap.edit.po +0 -0
- data/locale/zh_TW/foreman_openscap.po +214 -16
- data/test/factories/compliance_host_factory.rb +12 -0
- data/test/factories/oval_content_factory.rb +7 -0
- data/test/factories/oval_policy_factory.rb +9 -0
- data/test/files/oval_contents/ansible-2.9.oval.xml.bz2 +0 -0
- data/test/fixtures/cve_fixtures.rb +104 -0
- data/test/functional/api/v2/compliance/oval_contents_controller_test.rb +39 -0
- data/test/functional/api/v2/compliance/oval_policies_controller_test.rb +141 -0
- data/test/functional/api/v2/compliance/oval_reports_controller_test.rb +32 -0
- data/test/graphql/queries/oval_contents_query_test.rb +35 -0
- data/test/graphql/queries/oval_policies_query_test.rb +35 -0
- data/test/test_plugin_helper.rb +4 -0
- data/test/unit/oval_host_test.rb +45 -0
- data/test/unit/oval_policy_test.rb +133 -0
- data/test/unit/oval_status_test.rb +47 -0
- data/test/unit/services/oval/cves_test.rb +81 -0
- data/test/unit/services/oval/setup_test.rb +87 -0
- metadata +97 -3
|
Binary file
|
|
File without changes
|
|
@@ -9,8 +9,8 @@ msgid ""
|
|
|
9
9
|
msgstr ""
|
|
10
10
|
"Project-Id-Version: Foreman\n"
|
|
11
11
|
"Report-Msgid-Bugs-To: \n"
|
|
12
|
-
"PO-Revision-Date: 2020-
|
|
13
|
-
"Last-Translator:
|
|
12
|
+
"PO-Revision-Date: 2020-12-01 08:26+0000\n"
|
|
13
|
+
"Last-Translator: Amit Upadhye <aupadhye@redhat.com>\n"
|
|
14
14
|
"Language-Team: Japanese (http://www.transifex.com/foreman/foreman/language/ja/"
|
|
15
15
|
")\n"
|
|
16
16
|
"MIME-Version: 1.0\n"
|
|
@@ -20,34 +20,36 @@ msgstr ""
|
|
|
20
20
|
"Plural-Forms: nplurals=1; plural=0;\n"
|
|
21
21
|
|
|
22
22
|
msgid " for policy %s"
|
|
23
|
-
msgstr "ポリシー %s"
|
|
23
|
+
msgstr " ポリシー %s"
|
|
24
24
|
|
|
25
25
|
msgid " through %s"
|
|
26
26
|
msgstr "%s まで更新を受信できます。"
|
|
27
27
|
|
|
28
28
|
msgid "%s - The following compliance reports are about to be changed"
|
|
29
|
-
msgstr "%s
|
|
29
|
+
msgstr "%s: 次のコンプライアンスレポートが変更されます"
|
|
30
30
|
|
|
31
31
|
msgid "%s compliance report by policy"
|
|
32
32
|
msgid_plural "%s compliance reports by policy"
|
|
33
|
-
msgstr[0] ""
|
|
34
|
-
msgstr[1] ""
|
|
35
|
-
|
|
36
|
-
msgid "%s compliance reports by policy"
|
|
37
|
-
msgstr "ポリシー別 %s コンプライアンスレポート"
|
|
33
|
+
msgstr[0] "ポリシー別 コンプライアンスレポート %s 件"
|
|
38
34
|
|
|
39
35
|
msgid "%s latest report"
|
|
40
|
-
msgstr "%s
|
|
36
|
+
msgstr "最新レポート %s 件"
|
|
41
37
|
|
|
42
38
|
msgid "%s reports over time"
|
|
43
|
-
msgstr "%s
|
|
39
|
+
msgstr "経過レポート %s 件"
|
|
44
40
|
|
|
45
41
|
msgid "%s spool errors detected, inspect the appropriate file directly on proxy"
|
|
46
42
|
msgstr "%s のスプールエラーが検出されました。プロキシーで直接適切なファイルを検証してください。"
|
|
47
43
|
|
|
48
|
-
msgid "%
|
|
44
|
+
msgid "%s vulnerabilities found"
|
|
45
|
+
msgstr ""
|
|
46
|
+
|
|
47
|
+
msgid "%s vulnerabilities with available patch found"
|
|
49
48
|
msgstr ""
|
|
50
49
|
|
|
50
|
+
msgid "%{type} was selected to deploy policy to clients, but %{type} is not available. Are you missing a plugin?"
|
|
51
|
+
msgstr "クライアントへのポリシーのデプロイに %{type} が選択されましたが、%{type} は利用できません。プラグインがありませんか?"
|
|
52
|
+
|
|
51
53
|
msgid "<b>Foreman</b> OpenSCAP summary"
|
|
52
54
|
msgstr "<b>Foreman</b> OpenSCAP の概要"
|
|
53
55
|
|
|
@@ -64,10 +66,10 @@ msgid "All messages"
|
|
|
64
66
|
msgstr "すべてのメッセージ"
|
|
65
67
|
|
|
66
68
|
msgid "Ansible role"
|
|
67
|
-
msgstr ""
|
|
69
|
+
msgstr "Ansible ロール"
|
|
68
70
|
|
|
69
71
|
msgid "Ansible variables"
|
|
70
|
-
msgstr ""
|
|
72
|
+
msgstr "Ansible 変数"
|
|
71
73
|
|
|
72
74
|
msgid "Apply policy to host groups"
|
|
73
75
|
msgstr "ホストグループ にポリシーを適用"
|
|
@@ -75,9 +77,27 @@ msgstr "ホストグループ にポリシーを適用"
|
|
|
75
77
|
msgid "Apply policy to hosts"
|
|
76
78
|
msgstr "ホストにポリシーを適用"
|
|
77
79
|
|
|
80
|
+
msgid "Are required variables for theforeman.foreman_scap_client present?"
|
|
81
|
+
msgstr ""
|
|
82
|
+
|
|
83
|
+
msgid "Array of host IDs"
|
|
84
|
+
msgstr ""
|
|
85
|
+
|
|
86
|
+
msgid "Array of hostgroup IDs"
|
|
87
|
+
msgstr ""
|
|
88
|
+
|
|
78
89
|
msgid "Assign Compliance Policy"
|
|
79
90
|
msgstr "コンプライアンスポリシーの割り当て"
|
|
80
91
|
|
|
92
|
+
msgid "Assign hostgroups to an OVAL Policy"
|
|
93
|
+
msgstr ""
|
|
94
|
+
|
|
95
|
+
msgid "Assign hosts to an OVAL Policy"
|
|
96
|
+
msgstr ""
|
|
97
|
+
|
|
98
|
+
msgid "Assign openscap_proxy to %s before proceeding."
|
|
99
|
+
msgstr ""
|
|
100
|
+
|
|
81
101
|
msgid "Back"
|
|
82
102
|
msgstr "戻る"
|
|
83
103
|
|
|
@@ -120,9 +140,6 @@ msgstr "平日を選択"
|
|
|
120
140
|
msgid "Compliance"
|
|
121
141
|
msgstr "コンプライアンス"
|
|
122
142
|
|
|
123
|
-
msgid "Compliance Hosts"
|
|
124
|
-
msgstr "コンプライアンスホスト"
|
|
125
|
-
|
|
126
143
|
msgid "Compliance Policies"
|
|
127
144
|
msgstr "コンプライアンスポリシー"
|
|
128
145
|
|
|
@@ -148,13 +165,19 @@ msgid "Compliant with the policy"
|
|
|
148
165
|
msgstr "ポリシーに準拠"
|
|
149
166
|
|
|
150
167
|
msgid "Could not find host identified by: %s"
|
|
168
|
+
msgstr "%s が識別したホストが見つかりませんでした"
|
|
169
|
+
|
|
170
|
+
msgid "Could not update Ansible Variables with override: true"
|
|
151
171
|
msgstr ""
|
|
152
172
|
|
|
153
173
|
msgid "Could not validate %s. Please make sure you have appropriate proxy version to use this functionality"
|
|
154
174
|
msgstr "%s を検証できませんでした。この機能を使用するための適切なプロキシーバージョンがあることを確認してください。"
|
|
155
175
|
|
|
156
176
|
msgid "Could not validate %{file_type}. Error %{error}"
|
|
157
|
-
msgstr "
|
|
177
|
+
msgstr "%{file_type} を検証できませんでした。エラー: %{error}"
|
|
178
|
+
|
|
179
|
+
msgid "Create OVAL content"
|
|
180
|
+
msgstr ""
|
|
158
181
|
|
|
159
182
|
msgid "Create SCAP content"
|
|
160
183
|
msgstr "SCAP コンテンツの作成"
|
|
@@ -165,6 +188,9 @@ msgstr "ポリシーの作成"
|
|
|
165
188
|
msgid "Create a Tailoring file"
|
|
166
189
|
msgstr "テーラリングファイルの作成"
|
|
167
190
|
|
|
191
|
+
msgid "Create an OVAL Policy"
|
|
192
|
+
msgstr ""
|
|
193
|
+
|
|
168
194
|
msgid "Dashboard"
|
|
169
195
|
msgstr "ダッシュボード"
|
|
170
196
|
|
|
@@ -186,6 +212,9 @@ msgstr "ポリシーの削除"
|
|
|
186
212
|
msgid "Delete an ARF Report"
|
|
187
213
|
msgstr "ARF レポートの定義"
|
|
188
214
|
|
|
215
|
+
msgid "Delete an OVAL Policy"
|
|
216
|
+
msgstr ""
|
|
217
|
+
|
|
189
218
|
msgid "Delete compliance policy %s with all of its reports?"
|
|
190
219
|
msgstr "すべてのレポートでコンプライアンスポリシー %s を削除しますか?"
|
|
191
220
|
|
|
@@ -196,7 +225,7 @@ msgid "Delete reports"
|
|
|
196
225
|
msgstr "レポートを削除"
|
|
197
226
|
|
|
198
227
|
msgid "Delete scap content %s?"
|
|
199
|
-
msgstr ""
|
|
228
|
+
msgstr "SCAP コンテンツ %s を削除しますか?"
|
|
200
229
|
|
|
201
230
|
msgid "Delete tailoring file %s?"
|
|
202
231
|
msgstr "テーラリングファイル %s を削除しますか?"
|
|
@@ -207,15 +236,24 @@ msgstr "削除済みのポリシー"
|
|
|
207
236
|
msgid "Deletes a Tailoring file"
|
|
208
237
|
msgstr "テーラリングファイルの削除"
|
|
209
238
|
|
|
239
|
+
msgid "Deletes an OVAL content"
|
|
240
|
+
msgstr ""
|
|
241
|
+
|
|
210
242
|
msgid "Deletes an SCAP content"
|
|
211
243
|
msgstr "SCAP コンテンツの削除"
|
|
212
244
|
|
|
213
245
|
msgid "Deployment Options"
|
|
214
|
-
msgstr ""
|
|
246
|
+
msgstr "デプロイメントオプション"
|
|
215
247
|
|
|
216
248
|
msgid "Description"
|
|
217
249
|
msgstr "説明"
|
|
218
250
|
|
|
251
|
+
msgid "Details for Compliance Policy %s"
|
|
252
|
+
msgstr ""
|
|
253
|
+
|
|
254
|
+
msgid "Directory to upload when using \"directory\" upload type"
|
|
255
|
+
msgstr ""
|
|
256
|
+
|
|
219
257
|
msgid "Documentation"
|
|
220
258
|
msgstr "ドキュメント"
|
|
221
259
|
|
|
@@ -240,20 +278,17 @@ msgstr "XML として SCAP コンテンツをダウンロード"
|
|
|
240
278
|
msgid "Download bzipped ARF report"
|
|
241
279
|
msgstr "zip 形式の ARF レポートのダウンロード"
|
|
242
280
|
|
|
243
|
-
msgid "Edit
|
|
244
|
-
msgstr "
|
|
245
|
-
|
|
246
|
-
msgid "Edit SCAP Content"
|
|
247
|
-
msgstr "SCAP コンテンツを編集"
|
|
248
|
-
|
|
249
|
-
msgid "Edit Tailoring File"
|
|
250
|
-
msgstr "テーラリングファイルの編集"
|
|
281
|
+
msgid "Edit %s"
|
|
282
|
+
msgstr ""
|
|
251
283
|
|
|
252
284
|
msgid "Effective Profile"
|
|
253
285
|
msgstr "有効なプロファイル"
|
|
254
286
|
|
|
287
|
+
msgid "Error!"
|
|
288
|
+
msgstr ""
|
|
289
|
+
|
|
255
290
|
msgid "Failed"
|
|
256
|
-
msgstr "
|
|
291
|
+
msgstr "失敗"
|
|
257
292
|
|
|
258
293
|
msgid "Failed and Othered"
|
|
259
294
|
msgstr "Failed および Othered"
|
|
@@ -265,7 +300,7 @@ msgid "Failed to delete %s compliance reports"
|
|
|
265
300
|
msgstr "%s コンプライアンスレポートの削除に失敗しました"
|
|
266
301
|
|
|
267
302
|
msgid "Failed to delete ARF Report for host %{host_name} reported at %{reported_at}"
|
|
268
|
-
msgstr "
|
|
303
|
+
msgstr "{reported_at} で報告されたホスト {host_name} の ARF レポートの削除に失敗しました"
|
|
269
304
|
|
|
270
305
|
msgid "Failed to downloaded ARF report as bzip: %s"
|
|
271
306
|
msgstr "ARFレポートを bzip でダウンロードするのに失敗しました: %s"
|
|
@@ -277,7 +312,7 @@ msgid "Failed to fetch spool status from proxy"
|
|
|
277
312
|
msgstr "プロキシーからスプールステータスを取得できませんでした"
|
|
278
313
|
|
|
279
314
|
msgid "Failed to save when overriding parameters for %{config_tool}, cause: %{errors}"
|
|
280
|
-
msgstr ""
|
|
315
|
+
msgstr "%{config_tool} のパラメーターのオーバーライド時に、保存に失敗しました。原因: %{errors}"
|
|
281
316
|
|
|
282
317
|
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"
|
|
283
318
|
msgstr "Arf レポートのアップロードに失敗しました。%s のアップロード時にパラメーターで OpenSCAP プロキシー名または url が見つかりませんでした。ホストには openscap_proxy が設定されていません。"
|
|
@@ -289,12 +324,18 @@ msgstr "F"
|
|
|
289
324
|
msgid "File Upload"
|
|
290
325
|
msgstr "ファイルアップロード"
|
|
291
326
|
|
|
327
|
+
msgid "File paths to upload when using \"files\" upload type"
|
|
328
|
+
msgstr ""
|
|
329
|
+
|
|
292
330
|
msgid "Full Report"
|
|
293
331
|
msgstr "完全レポート"
|
|
294
332
|
|
|
295
333
|
msgid "General"
|
|
296
334
|
msgstr "全般"
|
|
297
335
|
|
|
336
|
+
msgid "Has Errata?"
|
|
337
|
+
msgstr ""
|
|
338
|
+
|
|
298
339
|
msgid "Host"
|
|
299
340
|
msgstr "ホスト"
|
|
300
341
|
|
|
@@ -314,16 +355,16 @@ msgid "Host does not exist anymore"
|
|
|
314
355
|
msgstr "ホストは存在しません"
|
|
315
356
|
|
|
316
357
|
msgid "Host is assigned to policy"
|
|
317
|
-
msgstr ""
|
|
358
|
+
msgstr "ホストはポリシーに割り当てられています"
|
|
318
359
|
|
|
319
360
|
msgid "Host is deleted"
|
|
320
361
|
msgstr "ホストが削除されました"
|
|
321
362
|
|
|
322
363
|
msgid "Host is not assigned to policy but reports were found. You may want to delete the reports or assign the policy again."
|
|
323
|
-
msgstr ""
|
|
364
|
+
msgstr "ホストはポリシーに割り当てられていませんが、レポートが見つかりました。レポートを削除するか、ポリシーを再度割り当てることができます。"
|
|
324
365
|
|
|
325
366
|
msgid "Hostgroups"
|
|
326
|
-
msgstr "ホストグループ
|
|
367
|
+
msgstr "ホストグループ"
|
|
327
368
|
|
|
328
369
|
msgid "Hostname"
|
|
329
370
|
msgstr "ホスト名"
|
|
@@ -331,11 +372,14 @@ msgstr "ホスト名"
|
|
|
331
372
|
msgid "Hosts Breakdown"
|
|
332
373
|
msgstr "ホストブレークダウン"
|
|
333
374
|
|
|
375
|
+
msgid "Hosts Count"
|
|
376
|
+
msgstr ""
|
|
377
|
+
|
|
334
378
|
msgid "Hosts failing this rule"
|
|
335
379
|
msgstr "このルールに不合格のホスト"
|
|
336
380
|
|
|
337
381
|
msgid "Hosts no longer assigned: %s"
|
|
338
|
-
msgstr ""
|
|
382
|
+
msgstr "割り当てが解除されたホスト: %s"
|
|
339
383
|
|
|
340
384
|
msgid "Hosts othering this rule"
|
|
341
385
|
msgstr "このルールに該当しないホスト"
|
|
@@ -344,7 +388,7 @@ msgid "Hosts passing this rule"
|
|
|
344
388
|
msgstr "このルールに合格のホスト"
|
|
345
389
|
|
|
346
390
|
msgid "How the policy should be deployed"
|
|
347
|
-
msgstr ""
|
|
391
|
+
msgstr "ポリシーのデプロイメント方法"
|
|
348
392
|
|
|
349
393
|
msgid "ID of OpenSCAP Proxy"
|
|
350
394
|
msgstr "OpenSCAP プロキシーの ID"
|
|
@@ -366,7 +410,7 @@ msgstr "Foreman では、scap_contents はホストの SCAP セキュリティ
|
|
|
366
410
|
msgid ""
|
|
367
411
|
"In Foreman, tailoring_files represent the custom modifications to default XCCDF profiles and they can be applied to hosts\n"
|
|
368
412
|
" via %s"
|
|
369
|
-
msgstr "Foreman では、tailoring_files はデフォルトの XCCDF
|
|
413
|
+
msgstr "Foreman では、tailoring_files はデフォルトの XCCDF プロファイルへのカスタム修正を表し、%s でホストに適用できます"
|
|
370
414
|
|
|
371
415
|
msgid "Incompliant"
|
|
372
416
|
msgstr "非準拠"
|
|
@@ -380,6 +424,15 @@ msgstr "不確定"
|
|
|
380
424
|
msgid "Inconclusive results"
|
|
381
425
|
msgstr "不確定な結果"
|
|
382
426
|
|
|
427
|
+
msgid "Is %s param set to be overriden?"
|
|
428
|
+
msgstr ""
|
|
429
|
+
|
|
430
|
+
msgid "Is foreman_ansible present?"
|
|
431
|
+
msgstr ""
|
|
432
|
+
|
|
433
|
+
msgid "Is theforeman.foreman_scap_client present?"
|
|
434
|
+
msgstr ""
|
|
435
|
+
|
|
383
436
|
msgid "It may sometimes be required to adjust the security policy to your specific needs. "
|
|
384
437
|
msgstr "セキュリティーポリシーを特定のニーズに合わせて調整することが必要になることがあります。"
|
|
385
438
|
|
|
@@ -392,11 +445,17 @@ msgstr "ポリシーの最新レポート: %s"
|
|
|
392
445
|
msgid "List ARF reports"
|
|
393
446
|
msgstr "ARF レポートの一覧表示"
|
|
394
447
|
|
|
448
|
+
msgid "List OVAL Policies"
|
|
449
|
+
msgstr ""
|
|
450
|
+
|
|
451
|
+
msgid "List OVAL contents"
|
|
452
|
+
msgstr ""
|
|
453
|
+
|
|
395
454
|
msgid "List Policies"
|
|
396
455
|
msgstr "ポリシーの一覧表示"
|
|
397
456
|
|
|
398
457
|
msgid "List SCAP content profiles"
|
|
399
|
-
msgstr ""
|
|
458
|
+
msgstr "SCAP コンテンツプロファイルの一覧表示"
|
|
400
459
|
|
|
401
460
|
msgid "List SCAP contents"
|
|
402
461
|
msgstr "SCAP コンテンツの一覧表示"
|
|
@@ -405,10 +464,10 @@ msgid "List Tailoring files"
|
|
|
405
464
|
msgstr "テーラリングファイルの一覧表示"
|
|
406
465
|
|
|
407
466
|
msgid "Loading..."
|
|
408
|
-
msgstr "
|
|
467
|
+
msgstr "ロード中..."
|
|
409
468
|
|
|
410
469
|
msgid "Locations"
|
|
411
|
-
msgstr "
|
|
470
|
+
msgstr "ロケーション"
|
|
412
471
|
|
|
413
472
|
msgid "Message"
|
|
414
473
|
msgstr "メッセージ"
|
|
@@ -416,6 +475,9 @@ msgstr "メッセージ"
|
|
|
416
475
|
msgid "More details"
|
|
417
476
|
msgstr "詳細"
|
|
418
477
|
|
|
478
|
+
msgid "Name"
|
|
479
|
+
msgstr ""
|
|
480
|
+
|
|
419
481
|
msgid "Never audited"
|
|
420
482
|
msgstr "未監査"
|
|
421
483
|
|
|
@@ -440,6 +502,18 @@ msgstr "いいえ"
|
|
|
440
502
|
msgid "No ARF reports for this policy"
|
|
441
503
|
msgstr "このポリシーの ARF レポートがありません"
|
|
442
504
|
|
|
505
|
+
msgid "No CVEs found."
|
|
506
|
+
msgstr ""
|
|
507
|
+
|
|
508
|
+
msgid "No OVAL Contents found."
|
|
509
|
+
msgstr ""
|
|
510
|
+
|
|
511
|
+
msgid "No OVAL Policies found"
|
|
512
|
+
msgstr ""
|
|
513
|
+
|
|
514
|
+
msgid "No OVAL Policy found"
|
|
515
|
+
msgstr ""
|
|
516
|
+
|
|
443
517
|
msgid "No OpenSCAP Proxy selected."
|
|
444
518
|
msgstr "OpenSCAP プロキシーが選択されていません。"
|
|
445
519
|
|
|
@@ -447,10 +521,13 @@ msgid "No OpenSCAP proxy found for %{class} with id %{id}"
|
|
|
447
521
|
msgstr "ID %{id} の %{class} の OpenSCAP プロキシーが見つかりません"
|
|
448
522
|
|
|
449
523
|
msgid "No Tailoring file assigned for policy with id %s"
|
|
450
|
-
msgstr "id %s のポリシーに割り当てられているテーラリングファイルはありません"
|
|
524
|
+
msgstr "id が %s のポリシーに割り当てられているテーラリングファイルはありません"
|
|
525
|
+
|
|
526
|
+
msgid "No Vulnerabilities found"
|
|
527
|
+
msgstr ""
|
|
451
528
|
|
|
452
529
|
msgid "No available proxy to validate. Returned with error: %s"
|
|
453
|
-
msgstr "
|
|
530
|
+
msgstr "検証するプロキシーがありません。返されたエラー: %s"
|
|
454
531
|
|
|
455
532
|
msgid "No compliance policy selected."
|
|
456
533
|
msgstr "コンプライアンスポリシーが選択されていません。"
|
|
@@ -512,8 +589,50 @@ msgstr "イベント数"
|
|
|
512
589
|
msgid "Number of a day in month, note that not all months have same count of days"
|
|
513
590
|
msgstr "月の日の数。すべての月の日数が同じであるとは限らないことに注意してください"
|
|
514
591
|
|
|
592
|
+
msgid "OVAL Content"
|
|
593
|
+
msgstr ""
|
|
594
|
+
|
|
595
|
+
msgid "OVAL Contents"
|
|
596
|
+
msgstr ""
|
|
597
|
+
|
|
598
|
+
msgid "OVAL Contents table"
|
|
599
|
+
msgstr ""
|
|
600
|
+
|
|
601
|
+
msgid "OVAL Policies"
|
|
602
|
+
msgstr ""
|
|
603
|
+
|
|
604
|
+
msgid "OVAL Policies Table"
|
|
605
|
+
msgstr ""
|
|
606
|
+
|
|
607
|
+
msgid "OVAL Policy description"
|
|
608
|
+
msgstr ""
|
|
609
|
+
|
|
610
|
+
msgid "OVAL Policy name"
|
|
611
|
+
msgstr ""
|
|
612
|
+
|
|
613
|
+
msgid "OVAL Policy schedule cron line (only if period == \"custom\")"
|
|
614
|
+
msgstr ""
|
|
615
|
+
|
|
616
|
+
msgid "OVAL Policy schedule day of month (only if period == \"monthly\")"
|
|
617
|
+
msgstr ""
|
|
618
|
+
|
|
619
|
+
msgid "OVAL Policy schedule period (weekly, monthly, custom)"
|
|
620
|
+
msgstr ""
|
|
621
|
+
|
|
622
|
+
msgid "OVAL Policy schedule weekday (only if period == \"weekly\")"
|
|
623
|
+
msgstr ""
|
|
624
|
+
|
|
625
|
+
msgid "OVAL content name"
|
|
626
|
+
msgstr ""
|
|
627
|
+
|
|
628
|
+
msgid "OVAL policy successfully configured with %s."
|
|
629
|
+
msgstr ""
|
|
630
|
+
|
|
631
|
+
msgid "OVAL scan"
|
|
632
|
+
msgstr ""
|
|
633
|
+
|
|
515
634
|
msgid "Once SCAP content is present, you can create a policy, assign select host groups and schedule to run."
|
|
516
|
-
msgstr "Once SCAP
|
|
635
|
+
msgstr "Once SCAP コンテンツが存在する場合には、ポリシーの作成、選択したホストグループの割り当て、実行のスケジューリングが可能です。"
|
|
517
636
|
|
|
518
637
|
msgid "OpenSCAP Proxy"
|
|
519
638
|
msgstr "OpenSCAP プロキシー"
|
|
@@ -527,6 +646,9 @@ msgstr "OpenSCAP プロキシー"
|
|
|
527
646
|
msgid "Organizations"
|
|
528
647
|
msgstr "組織"
|
|
529
648
|
|
|
649
|
+
msgid "Original file name of the OVAL content file"
|
|
650
|
+
msgstr ""
|
|
651
|
+
|
|
530
652
|
msgid "Original file name of the XML file"
|
|
531
653
|
msgstr "XML ファイルの元のファイル名"
|
|
532
654
|
|
|
@@ -550,6 +672,12 @@ msgstr "P"
|
|
|
550
672
|
msgid "Please Confirm"
|
|
551
673
|
msgstr "確認してください"
|
|
552
674
|
|
|
675
|
+
msgid "Please make sure you understand them by reading our"
|
|
676
|
+
msgstr ""
|
|
677
|
+
|
|
678
|
+
msgid "Please specify import type, received: %{received}, expected one of: %{expected}"
|
|
679
|
+
msgstr ""
|
|
680
|
+
|
|
553
681
|
msgid "Policies"
|
|
554
682
|
msgstr "ポリシー"
|
|
555
683
|
|
|
@@ -560,9 +688,12 @@ msgid "Policy"
|
|
|
560
688
|
msgstr "ポリシー"
|
|
561
689
|
|
|
562
690
|
msgid "Policy %s"
|
|
563
|
-
msgstr "ポリシー %s"
|
|
691
|
+
msgstr "ポリシー %s 件"
|
|
564
692
|
|
|
565
693
|
msgid "Policy Attributes"
|
|
694
|
+
msgstr "ポリシー属性"
|
|
695
|
+
|
|
696
|
+
msgid "Policy OVAL content ID"
|
|
566
697
|
msgstr ""
|
|
567
698
|
|
|
568
699
|
msgid "Policy SCAP content ID"
|
|
@@ -572,7 +703,7 @@ msgid "Policy SCAP content profile ID"
|
|
|
572
703
|
msgstr "ポリシー SCAP コンテンツプロファイル ID"
|
|
573
704
|
|
|
574
705
|
msgid "Policy assigned"
|
|
575
|
-
msgstr ""
|
|
706
|
+
msgstr "割り当て済みのポリシー"
|
|
576
707
|
|
|
577
708
|
msgid "Policy description"
|
|
578
709
|
msgstr "ポリシーの説明"
|
|
@@ -596,7 +727,7 @@ msgid "Policy schedule weekday (only if period == \"weekly\")"
|
|
|
596
727
|
msgstr "ポリシースケジュール: 平日 (period == \"weekly\" の場合のみ)"
|
|
597
728
|
|
|
598
729
|
msgid "Policy with id %s not found."
|
|
599
|
-
msgstr ""
|
|
730
|
+
msgstr "id が %s のポリシーが見つかりません"
|
|
600
731
|
|
|
601
732
|
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."
|
|
602
733
|
msgstr "プロキシーは、スプールから Foreman へのレポートの送信に失敗しました。これは、レポート形式が破損していることを示しています。レポートは、後で検査できるようプロキシーの破損ファイルを保存するディレクターに移動しました。"
|
|
@@ -607,6 +738,9 @@ msgstr "Puppet クラス"
|
|
|
607
738
|
msgid "Rationale"
|
|
608
739
|
msgstr "理由"
|
|
609
740
|
|
|
741
|
+
msgid "Ref Id"
|
|
742
|
+
msgstr ""
|
|
743
|
+
|
|
610
744
|
msgid "References"
|
|
611
745
|
msgstr "リファレンス"
|
|
612
746
|
|
|
@@ -623,7 +757,7 @@ msgid "Reported At"
|
|
|
623
757
|
msgstr "報告済み"
|
|
624
758
|
|
|
625
759
|
msgid "Reported at %s"
|
|
626
|
-
msgstr "%s
|
|
760
|
+
msgstr "レポート日時: %s"
|
|
627
761
|
|
|
628
762
|
msgid "Reports"
|
|
629
763
|
msgstr "レポート"
|
|
@@ -632,7 +766,7 @@ msgid "Request timed out. Please try increasing Settings -> proxy_request_timeou
|
|
|
632
766
|
msgstr "要求がタイムアウトしました。Settings -> proxy_request_timeout で値を増やしてみてください"
|
|
633
767
|
|
|
634
768
|
msgid "Required %{msg_name} %{class} was not found, please ensure it is imported first."
|
|
635
|
-
msgstr ""
|
|
769
|
+
msgstr "必要とされる {msg_name}%{class} が見つかりませんでした。最初にインポートされていることを確認してください。"
|
|
636
770
|
|
|
637
771
|
msgid "Resource"
|
|
638
772
|
msgstr "リソース"
|
|
@@ -641,6 +775,9 @@ msgid "Result"
|
|
|
641
775
|
msgstr "結果"
|
|
642
776
|
|
|
643
777
|
msgid "Rule Results"
|
|
778
|
+
msgstr "ルールの結果"
|
|
779
|
+
|
|
780
|
+
msgid "Run OVAL scan"
|
|
644
781
|
msgstr ""
|
|
645
782
|
|
|
646
783
|
msgid "Run OpenSCAP scan"
|
|
@@ -667,8 +804,8 @@ msgstr "SCAP コンテンツ"
|
|
|
667
804
|
msgid "SCAP policies summary"
|
|
668
805
|
msgstr "SCAP ポリシーの概要"
|
|
669
806
|
|
|
670
|
-
msgid "
|
|
671
|
-
msgstr "
|
|
807
|
+
msgid "Scan All Hostgroups"
|
|
808
|
+
msgstr ""
|
|
672
809
|
|
|
673
810
|
msgid "Schedule"
|
|
674
811
|
msgstr "スケジュール"
|
|
@@ -686,7 +823,7 @@ msgid "Select all items in this page"
|
|
|
686
823
|
msgstr "このページのすべての項目を選択"
|
|
687
824
|
|
|
688
825
|
msgid "Severity"
|
|
689
|
-
msgstr "
|
|
826
|
+
msgstr "重要度"
|
|
690
827
|
|
|
691
828
|
msgid "Show Guide"
|
|
692
829
|
msgstr "ガイドの表示"
|
|
@@ -706,11 +843,17 @@ msgstr "ポリシーのテーラリングファイルを表示"
|
|
|
706
843
|
msgid "Show an ARF report"
|
|
707
844
|
msgstr "ARF レポートの表示"
|
|
708
845
|
|
|
846
|
+
msgid "Show an OVAL Policy"
|
|
847
|
+
msgstr ""
|
|
848
|
+
|
|
849
|
+
msgid "Show an OVAL content"
|
|
850
|
+
msgstr ""
|
|
851
|
+
|
|
709
852
|
msgid "Show an SCAP content"
|
|
710
853
|
msgstr "SCAP コンテンツの表示"
|
|
711
854
|
|
|
712
855
|
msgid "Show config information for foreman_scap_client"
|
|
713
|
-
msgstr ""
|
|
856
|
+
msgstr "foreman_scap_client の設定情報の表示"
|
|
714
857
|
|
|
715
858
|
msgid "Show log messages:"
|
|
716
859
|
msgstr "ログメッセージの表示:"
|
|
@@ -719,10 +862,10 @@ msgid "Smart Class Parameters"
|
|
|
719
862
|
msgstr "スマートクラスパラメーター"
|
|
720
863
|
|
|
721
864
|
msgid "Something went wrong while selecting compliance reports - %s"
|
|
722
|
-
msgstr "
|
|
865
|
+
msgstr "コンプライアンスレポートの選択中に問題が発生しました: %s"
|
|
723
866
|
|
|
724
867
|
msgid "Something went wrong while selecting hosts - %s"
|
|
725
|
-
msgstr "
|
|
868
|
+
msgstr "ホストの選択中に問題が発生しました: %s"
|
|
726
869
|
|
|
727
870
|
msgid "Spool errors"
|
|
728
871
|
msgstr "スプールエラー"
|
|
@@ -743,13 +886,19 @@ msgid "Successfully deleted ARF report."
|
|
|
743
886
|
msgstr "ARF レポートが正常に削除されました。"
|
|
744
887
|
|
|
745
888
|
msgid "Summary from %{time} ago to now"
|
|
746
|
-
msgstr "
|
|
889
|
+
msgstr "%{time} 前から現在までの概要"
|
|
747
890
|
|
|
748
891
|
msgid "Summary report for OpenScap from Foreman"
|
|
749
892
|
msgstr "Foreman からの OpenScap の概要レポート"
|
|
750
893
|
|
|
751
894
|
msgid "Summary report from Foreman server at %{foreman_url}"
|
|
752
|
-
msgstr "
|
|
895
|
+
msgstr "{foreman_url} にある Foreman サーバーからの概要レポート"
|
|
896
|
+
|
|
897
|
+
msgid "Sync contents that have remote source URL"
|
|
898
|
+
msgstr ""
|
|
899
|
+
|
|
900
|
+
msgid "Table of CVEs for OVAL policy"
|
|
901
|
+
msgstr ""
|
|
753
902
|
|
|
754
903
|
msgid "Tailoring File"
|
|
755
904
|
msgstr "テーラリングファイル"
|
|
@@ -772,15 +921,21 @@ msgid ""
|
|
|
772
921
|
msgstr "Security Content Automation Protocol (SCAP) は、ソフトウェアの不具合およびセキュリティーに関連する設定の問題を列挙するために使用される数多くのオープンスタンダードの組み合わせです。"
|
|
773
922
|
|
|
774
923
|
msgid "The following %{key_name} were missing for %{item_name}: %{key_names}. Make sure they are imported before proceeding."
|
|
924
|
+
msgstr "%{key_name} に以下の %{item_name} がありません: %{key_names}。続行前にインポートするようにしてください。"
|
|
925
|
+
|
|
926
|
+
msgid "The following Ansible Variables were not found: %{missing_vars}, please import them before running this action again."
|
|
775
927
|
msgstr ""
|
|
776
928
|
|
|
777
929
|
msgid "The following Smart Proxies need to be updated to unlock the feature: %s. "
|
|
778
|
-
msgstr "以下のスマートプロキシーを更新して機能のロックを解除する必要があります: %s
|
|
930
|
+
msgstr "以下のスマートプロキシーを更新して機能のロックを解除する必要があります: %s"
|
|
779
931
|
|
|
780
932
|
msgid "The following proxies could not be reached: %s. Please make sure they are available so Foreman can check their versions."
|
|
781
|
-
msgstr "以下のプロキシーに到達できませんでした: %s
|
|
933
|
+
msgstr "以下のプロキシーに到達できませんでした: %s。Foreman がバージョンを確認できるように、プロキシーが利用できりうことを確認してください。"
|
|
782
934
|
|
|
783
935
|
msgid "The identifier of the host"
|
|
936
|
+
msgstr "ホストの ID"
|
|
937
|
+
|
|
938
|
+
msgid "There are significant differences in deployment options."
|
|
784
939
|
msgstr ""
|
|
785
940
|
|
|
786
941
|
msgid "This feature is temporarily disabled. "
|
|
@@ -793,15 +948,20 @@ msgid "Total"
|
|
|
793
948
|
msgstr "合計"
|
|
794
949
|
|
|
795
950
|
msgid "Total hosts with policy: %s"
|
|
796
|
-
msgstr ""
|
|
951
|
+
msgstr "ポリシーが割り当てられたホスト総数: %s"
|
|
797
952
|
|
|
798
953
|
msgid "Total hosts with reports where policy is no longer assigned."
|
|
799
|
-
msgstr ""
|
|
954
|
+
msgstr "ポリシーの割り当てが解除されおり、レポートが含まれるホスト総数。"
|
|
800
955
|
|
|
801
956
|
msgid "Total of one host"
|
|
802
957
|
msgid_plural "Total of %{hosts} hosts"
|
|
803
|
-
msgstr[0] ""
|
|
804
|
-
|
|
958
|
+
msgstr[0] "合計ホスト 1 台"
|
|
959
|
+
|
|
960
|
+
msgid "Type of the upload"
|
|
961
|
+
msgstr ""
|
|
962
|
+
|
|
963
|
+
msgid "URL of the OVAL content file"
|
|
964
|
+
msgstr ""
|
|
805
965
|
|
|
806
966
|
msgid "Unable to get HTML version of requested report from Smart Proxy"
|
|
807
967
|
msgstr "要求されたレポートの HTML バージョンをスマートプロキシーから取得できません"
|
|
@@ -815,12 +975,21 @@ msgstr "コンプライアンスポリシーの割り当て解除
|
|
|
815
975
|
msgid "Unknown Compliance status"
|
|
816
976
|
msgstr "不明なコンプライアンスステータス"
|
|
817
977
|
|
|
978
|
+
msgid "Unknown OVAL status"
|
|
979
|
+
msgstr ""
|
|
980
|
+
|
|
818
981
|
msgid "Update a Policy"
|
|
819
982
|
msgstr "ポリシーの更新"
|
|
820
983
|
|
|
821
984
|
msgid "Update a Tailoring file"
|
|
822
985
|
msgstr "テーラリングファイルの更新"
|
|
823
986
|
|
|
987
|
+
msgid "Update an OVAL Policy"
|
|
988
|
+
msgstr ""
|
|
989
|
+
|
|
990
|
+
msgid "Update an OVAL content"
|
|
991
|
+
msgstr ""
|
|
992
|
+
|
|
824
993
|
msgid "Update an SCAP content"
|
|
825
994
|
msgstr "SCAP コンテンツの更新"
|
|
826
995
|
|
|
@@ -831,7 +1000,7 @@ msgid "Updated hosts: Assigned with compliance policy: %s"
|
|
|
831
1000
|
msgstr "更新済みホスト: コンプライアンスポリシーで割り当て済み: %s"
|
|
832
1001
|
|
|
833
1002
|
msgid "Updated hosts: Unassigned from compliance policy '%s'"
|
|
834
|
-
msgstr "更新済みホスト: コンプライアンスポリシー '%s'
|
|
1003
|
+
msgstr "更新済みホスト: コンプライアンスポリシー '%s' の割り当てなし"
|
|
835
1004
|
|
|
836
1005
|
msgid "Upload New SCAP Content"
|
|
837
1006
|
msgstr "新規 SCAP コンテンツをアップロード"
|
|
@@ -842,24 +1011,39 @@ msgstr "新規テーラリングファイルのアップロード"
|
|
|
842
1011
|
msgid "Upload an ARF report"
|
|
843
1012
|
msgstr "ARF レポートのアップロード"
|
|
844
1013
|
|
|
1014
|
+
msgid "Upload an OVAL report - a list of CVEs for given host"
|
|
1015
|
+
msgstr ""
|
|
1016
|
+
|
|
845
1017
|
msgid "Upload new SCAP content file"
|
|
846
1018
|
msgstr "新規 SCAP コンテンツファイルをアップロード"
|
|
847
1019
|
|
|
848
1020
|
msgid "Upload new Tailoring File"
|
|
849
1021
|
msgstr "新規テーラリングファイルのアップロード"
|
|
850
1022
|
|
|
1023
|
+
msgid "Upload scap contents in bulk"
|
|
1024
|
+
msgstr ""
|
|
1025
|
+
|
|
851
1026
|
msgid "View Report"
|
|
852
1027
|
msgstr "レポートを表示"
|
|
853
1028
|
|
|
854
1029
|
msgid "View full report"
|
|
855
1030
|
msgstr "フルレポートを表示"
|
|
856
1031
|
|
|
1032
|
+
msgid "Was %s configured successfully?"
|
|
1033
|
+
msgstr ""
|
|
1034
|
+
|
|
1035
|
+
msgid "Was %{model_name} %{name} configured successfully?"
|
|
1036
|
+
msgstr ""
|
|
1037
|
+
|
|
857
1038
|
msgid "XCCDF Profile"
|
|
858
1039
|
msgstr "XCCDF プロファイル"
|
|
859
1040
|
|
|
860
1041
|
msgid "XCCDF Profile in Tailoring File"
|
|
861
1042
|
msgstr "テーラリングファイルでの XCCDF プロファイル"
|
|
862
1043
|
|
|
1044
|
+
msgid "XML containing OVAL content"
|
|
1045
|
+
msgstr ""
|
|
1046
|
+
|
|
863
1047
|
msgid "XML containing SCAP content"
|
|
864
1048
|
msgstr "SCAP コンテンツを含む XML"
|
|
865
1049
|
|
|
@@ -873,13 +1057,13 @@ msgid "You can specify custom cron line, e.g. \"0 3 * * *\", separate each o
|
|
|
873
1057
|
msgstr "カスタム cron 行を指定できます (たとえば、\"0 3 * * *\" のように 5 つの値をスペースで区切ります)"
|
|
874
1058
|
|
|
875
1059
|
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."
|
|
876
|
-
msgstr "ARF レポートがないようです。ARF
|
|
1060
|
+
msgstr "ARF レポートがないようです。ARF レポートは、指定のコンプライアンスポリシーを基に、特定のホストを 1 回スキャンしたときのサマリーです。"
|
|
877
1061
|
|
|
878
1062
|
msgid "cannot assign to %s, all assigned policies must be deployed in the same way, check 'deploy by' for each assigned policy"
|
|
879
|
-
msgstr ""
|
|
1063
|
+
msgstr "%s に割り当てることができません。割り当てたポリシーはすべて同じ方法でデプロイする必要があります。割り当て済みのポリシーごとに「デプロイ方法 (deploy by)」を確認してください。"
|
|
880
1064
|
|
|
881
1065
|
msgid "documentation"
|
|
882
|
-
msgstr ""
|
|
1066
|
+
msgstr "ドキュメント"
|
|
883
1067
|
|
|
884
1068
|
msgid "does not come from selected tailoring file"
|
|
885
1069
|
msgstr "選択したテーラリングファイルからのものではありません"
|
|
@@ -890,6 +1074,15 @@ msgstr "スペースで区切られた 5 つの部分で構成されていませ
|
|
|
890
1074
|
msgid "does not have the selected SCAP content profile"
|
|
891
1075
|
msgstr "選択した SCAP コンテンツプロファイルがありません"
|
|
892
1076
|
|
|
1077
|
+
msgid "foreman_ansible plugin not found, please install it before running this action again."
|
|
1078
|
+
msgstr ""
|
|
1079
|
+
|
|
1080
|
+
msgid "hostgroups"
|
|
1081
|
+
msgstr ""
|
|
1082
|
+
|
|
1083
|
+
msgid "hosts"
|
|
1084
|
+
msgstr ""
|
|
1085
|
+
|
|
893
1086
|
msgid "invalid type %s"
|
|
894
1087
|
msgstr "無効なタイプ %s"
|
|
895
1088
|
|
|
@@ -914,5 +1107,8 @@ msgstr "テーラリングファイルのプロファイルがある場合にな
|
|
|
914
1107
|
msgid "must have Openscap feature"
|
|
915
1108
|
msgstr "Openscap 機能がなければなりません"
|
|
916
1109
|
|
|
1110
|
+
msgid "theforeman.foreman_scap_client Ansible Role not found, please import it before running this action again."
|
|
1111
|
+
msgstr ""
|
|
1112
|
+
|
|
917
1113
|
msgid "these Compliance reports"
|
|
918
1114
|
msgstr "コンプライアンスレポート"
|