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
|
@@ -17,344 +17,350 @@
|
|
|
17
17
|
"domain": "foreman_openscap",
|
|
18
18
|
"plural_forms": "nplurals=1; plural=0;"
|
|
19
19
|
},
|
|
20
|
-
"
|
|
21
|
-
"
|
|
22
|
-
],
|
|
23
|
-
"Show an ARF report": [
|
|
24
|
-
"ARF レポートの表示"
|
|
25
|
-
],
|
|
26
|
-
"Delete an ARF Report": [
|
|
27
|
-
"ARF レポートの削除"
|
|
28
|
-
],
|
|
29
|
-
"Upload an ARF report": [
|
|
30
|
-
"ARF レポートのアップロード"
|
|
20
|
+
" for policy %s": [
|
|
21
|
+
" ポリシー %s"
|
|
31
22
|
],
|
|
32
|
-
"
|
|
33
|
-
"
|
|
23
|
+
" through %s": [
|
|
24
|
+
" %s まで更新を受信できます。"
|
|
34
25
|
],
|
|
35
|
-
"
|
|
36
|
-
"
|
|
26
|
+
"%s - The following compliance reports are about to be changed": [
|
|
27
|
+
"%s: 次のコンプライアンスレポートが変更されます"
|
|
37
28
|
],
|
|
38
|
-
"
|
|
39
|
-
"
|
|
29
|
+
"%s compliance report by policy": [
|
|
30
|
+
"ポリシー別 コンプライアンスレポート %s 件"
|
|
40
31
|
],
|
|
41
|
-
"
|
|
42
|
-
"
|
|
32
|
+
"%s content": [
|
|
33
|
+
""
|
|
43
34
|
],
|
|
44
|
-
"
|
|
45
|
-
"
|
|
35
|
+
"%s does not exist, skipping.": [
|
|
36
|
+
""
|
|
46
37
|
],
|
|
47
|
-
"
|
|
48
|
-
"
|
|
38
|
+
"%s is a directory, expecting file.": [
|
|
39
|
+
""
|
|
49
40
|
],
|
|
50
|
-
"
|
|
51
|
-
"
|
|
41
|
+
"%s latest report": [
|
|
42
|
+
"最新レポート %s 件"
|
|
52
43
|
],
|
|
53
|
-
"
|
|
54
|
-
"
|
|
44
|
+
"%s reports over time": [
|
|
45
|
+
"経過レポート %s 件"
|
|
55
46
|
],
|
|
56
|
-
"
|
|
57
|
-
"
|
|
47
|
+
"%s spool errors detected, inspect the appropriate file directly on proxy": [
|
|
48
|
+
"%s のスプールエラーが検出されました。プロキシーで直接適切なファイルを検証してください。"
|
|
58
49
|
],
|
|
59
|
-
"
|
|
60
|
-
"
|
|
50
|
+
"%s vulnerabilities found": [
|
|
51
|
+
"%s 脆弱性が見つかりました"
|
|
61
52
|
],
|
|
62
|
-
"
|
|
63
|
-
"
|
|
53
|
+
"%s vulnerabilities with available patch found": [
|
|
54
|
+
"%s 利用可能なパッチがある脆弱性が見つかりました"
|
|
64
55
|
],
|
|
65
|
-
"
|
|
66
|
-
"
|
|
56
|
+
"%{type} was selected to deploy policy to clients, but %{type} is not available. Are you missing a plugin?": [
|
|
57
|
+
"クライアントへのポリシーのデプロイに %{type} が選択されましたが、%{type} は利用できません。プラグインがありませんか?"
|
|
67
58
|
],
|
|
68
|
-
"
|
|
69
|
-
"
|
|
59
|
+
"<b>Foreman</b> OpenSCAP summary": [
|
|
60
|
+
"<b>Foreman</b> OpenSCAP の概要"
|
|
70
61
|
],
|
|
71
|
-
"
|
|
72
|
-
"
|
|
62
|
+
"A reboot is required after applying remediation.": [
|
|
63
|
+
""
|
|
73
64
|
],
|
|
74
|
-
"
|
|
75
|
-
"
|
|
65
|
+
"A reboot might be required after applying remediation.": [
|
|
66
|
+
""
|
|
76
67
|
],
|
|
77
|
-
"
|
|
78
|
-
"
|
|
68
|
+
"A summary of reports for OpenSCAP policies": [
|
|
69
|
+
"OpenSCAP ポリシーのレポートの概要"
|
|
79
70
|
],
|
|
80
|
-
"
|
|
81
|
-
"
|
|
71
|
+
"Action with sub plans": [
|
|
72
|
+
"サブプランによるアクション"
|
|
82
73
|
],
|
|
83
|
-
"
|
|
84
|
-
"
|
|
74
|
+
"Actions": [
|
|
75
|
+
"アクション"
|
|
85
76
|
],
|
|
86
|
-
"
|
|
87
|
-
"
|
|
77
|
+
"All messages": [
|
|
78
|
+
"すべてのメッセージ"
|
|
88
79
|
],
|
|
89
|
-
"
|
|
90
|
-
"
|
|
80
|
+
"Ansible role": [
|
|
81
|
+
"Ansible ロール"
|
|
91
82
|
],
|
|
92
|
-
"
|
|
93
|
-
"
|
|
83
|
+
"Ansible variables": [
|
|
84
|
+
"Ansible 変数"
|
|
94
85
|
],
|
|
95
|
-
"
|
|
96
|
-
"
|
|
86
|
+
"Apply policy to host groups": [
|
|
87
|
+
"ホストグループ にポリシーを適用"
|
|
97
88
|
],
|
|
98
|
-
"
|
|
99
|
-
"
|
|
89
|
+
"Apply policy to hosts": [
|
|
90
|
+
"ホストにポリシーを適用"
|
|
100
91
|
],
|
|
101
|
-
"
|
|
102
|
-
"
|
|
92
|
+
"Are required variables for theforeman.foreman_scap_client present?": [
|
|
93
|
+
"theforeman.foreman_scap_client に必要な変数ですか?"
|
|
103
94
|
],
|
|
104
|
-
"
|
|
105
|
-
"
|
|
95
|
+
"Are you sure you want to delete %s?": [
|
|
96
|
+
""
|
|
106
97
|
],
|
|
107
|
-
"
|
|
108
|
-
"
|
|
98
|
+
"Array of host IDs": [
|
|
99
|
+
"ホスト ID の配列"
|
|
109
100
|
],
|
|
110
|
-
"
|
|
111
|
-
"
|
|
101
|
+
"Array of hostgroup IDs": [
|
|
102
|
+
"ホストグループ ID の配列"
|
|
112
103
|
],
|
|
113
|
-
"
|
|
114
|
-
"
|
|
104
|
+
"Assign Compliance Policy": [
|
|
105
|
+
"コンプライアンスポリシーの割り当て"
|
|
115
106
|
],
|
|
116
107
|
"Assign hostgroups to an OVAL Policy": [
|
|
117
108
|
"OVAL ポリシーへのホストグループの割り当て"
|
|
118
109
|
],
|
|
119
|
-
"Array of hostgroup IDs": [
|
|
120
|
-
"ホストグループ ID の配列"
|
|
121
|
-
],
|
|
122
|
-
"hostgroups": [
|
|
123
|
-
"ホストグループ"
|
|
124
|
-
],
|
|
125
110
|
"Assign hosts to an OVAL Policy": [
|
|
126
111
|
"OVAL ポリシーへのホストの割り当て"
|
|
127
112
|
],
|
|
128
|
-
"
|
|
129
|
-
"
|
|
113
|
+
"Assign openscap_proxy to %s before proceeding.": [
|
|
114
|
+
"続行する前に、openscap_proxy を %s に割り当てます。"
|
|
130
115
|
],
|
|
131
|
-
"
|
|
132
|
-
"
|
|
116
|
+
"Back": [
|
|
117
|
+
"戻る"
|
|
133
118
|
],
|
|
134
|
-
"
|
|
119
|
+
"By default, remediation is applied to the current host. Optionally, remediate any additional hosts that fail the rule.": [
|
|
135
120
|
""
|
|
136
121
|
],
|
|
137
|
-
"
|
|
138
|
-
"
|
|
122
|
+
"CVEs": [
|
|
123
|
+
""
|
|
139
124
|
],
|
|
140
|
-
"
|
|
141
|
-
"
|
|
125
|
+
"Can't find scap-security-guide RPM, are you sure it is installed on your server?": [
|
|
126
|
+
""
|
|
142
127
|
],
|
|
143
|
-
"
|
|
144
|
-
"
|
|
128
|
+
"Cancel": [
|
|
129
|
+
"取り消し"
|
|
145
130
|
],
|
|
146
|
-
"
|
|
147
|
-
"
|
|
131
|
+
"Cannot generate HTML guide, no valid OpenSCAP proxy server found.": [
|
|
132
|
+
"HTML ガイドを生成できません。有効な OpenSCAP プロキシーサーバーが見つかりません。"
|
|
148
133
|
],
|
|
149
|
-
"
|
|
150
|
-
"
|
|
134
|
+
"Cannot generate HTML guide, scap content is missing.": [
|
|
135
|
+
"HTML ガイドを生成できません。SCAP のコンテンツがありません。"
|
|
151
136
|
],
|
|
152
|
-
"
|
|
153
|
-
"
|
|
137
|
+
"Change OpenSCAP Proxy": [
|
|
138
|
+
"OpenSCAP プロキシーの変更"
|
|
154
139
|
],
|
|
155
|
-
"
|
|
156
|
-
"
|
|
140
|
+
"Changed": [
|
|
141
|
+
"変更済み"
|
|
157
142
|
],
|
|
158
|
-
"
|
|
159
|
-
"
|
|
143
|
+
"Changed file does not include existing SCAP content profiles": [
|
|
144
|
+
"変更されたファイルには既存の SCAP コンテンツプロファイルが含まれません"
|
|
160
145
|
],
|
|
161
|
-
"
|
|
162
|
-
"
|
|
146
|
+
"Changed?": [
|
|
147
|
+
"変更されましたか?"
|
|
163
148
|
],
|
|
164
|
-
"
|
|
165
|
-
"
|
|
149
|
+
"Choose OVAL Content": [
|
|
150
|
+
""
|
|
166
151
|
],
|
|
167
|
-
"
|
|
168
|
-
"
|
|
152
|
+
"Choose Tailoring File": [
|
|
153
|
+
"テーラリングファイルの選択"
|
|
169
154
|
],
|
|
170
|
-
"
|
|
171
|
-
"
|
|
155
|
+
"Choose day in month": [
|
|
156
|
+
"月の日付を選択"
|
|
172
157
|
],
|
|
173
|
-
"
|
|
174
|
-
"
|
|
158
|
+
"Choose existing SCAP Content": [
|
|
159
|
+
"既存の SCAP コンテンツを選択"
|
|
175
160
|
],
|
|
176
|
-
"
|
|
177
|
-
"
|
|
161
|
+
"Choose period": [
|
|
162
|
+
"期間を選択"
|
|
178
163
|
],
|
|
179
|
-
"
|
|
180
|
-
"
|
|
164
|
+
"Choose weekday": [
|
|
165
|
+
"平日を選択"
|
|
181
166
|
],
|
|
182
|
-
"
|
|
183
|
-
"
|
|
167
|
+
"Close": [
|
|
168
|
+
""
|
|
184
169
|
],
|
|
185
|
-
"
|
|
186
|
-
"
|
|
170
|
+
"Compliance": [
|
|
171
|
+
"コンプライアンス"
|
|
187
172
|
],
|
|
188
|
-
"
|
|
189
|
-
"
|
|
173
|
+
"Compliance Policies": [
|
|
174
|
+
"コンプライアンスポリシー"
|
|
190
175
|
],
|
|
191
|
-
"
|
|
192
|
-
"
|
|
176
|
+
"Compliance Reports": [
|
|
177
|
+
"コンプライアンスレポート"
|
|
193
178
|
],
|
|
194
|
-
"
|
|
195
|
-
"
|
|
179
|
+
"Compliance Reports Breakdown": [
|
|
180
|
+
"コンプライアンスレポートの内訳"
|
|
196
181
|
],
|
|
197
|
-
"
|
|
198
|
-
"
|
|
182
|
+
"Compliance policy summary": [
|
|
183
|
+
"コンプライアンスポリシーの概要"
|
|
199
184
|
],
|
|
200
|
-
"
|
|
201
|
-
"
|
|
185
|
+
"Compliance policy: %s": [
|
|
186
|
+
"コンプライアンスポリシー: %s"
|
|
202
187
|
],
|
|
203
|
-
"
|
|
204
|
-
"
|
|
188
|
+
"Compliant": [
|
|
189
|
+
"準拠"
|
|
205
190
|
],
|
|
206
|
-
"
|
|
207
|
-
"
|
|
191
|
+
"Compliant hosts": [
|
|
192
|
+
"準拠したホスト"
|
|
208
193
|
],
|
|
209
|
-
"
|
|
210
|
-
"
|
|
194
|
+
"Compliant with the policy": [
|
|
195
|
+
"ポリシーに準拠"
|
|
211
196
|
],
|
|
212
|
-
"
|
|
213
|
-
"
|
|
197
|
+
"Confirm": [
|
|
198
|
+
""
|
|
214
199
|
],
|
|
215
|
-
"
|
|
216
|
-
"
|
|
200
|
+
"Content": [
|
|
201
|
+
""
|
|
217
202
|
],
|
|
218
|
-
"
|
|
219
|
-
"
|
|
203
|
+
"Copy to clipboard": [
|
|
204
|
+
""
|
|
220
205
|
],
|
|
221
|
-
"
|
|
222
|
-
"
|
|
206
|
+
"Could not find host identified by: %s": [
|
|
207
|
+
"%s が識別したホストが見つかりませんでした"
|
|
223
208
|
],
|
|
224
|
-
"
|
|
225
|
-
"
|
|
209
|
+
"Could not update Ansible Variables with override: true": [
|
|
210
|
+
"オーバーライドで Ansible 変数を更新できませんでした: true"
|
|
211
|
+
],
|
|
212
|
+
"Could not validate %s. Please make sure you have appropriate proxy version to use this functionality": [
|
|
213
|
+
"%s を検証できませんでした。この機能を使用するための適切なプロキシーバージョンがあることを確認してください。"
|
|
214
|
+
],
|
|
215
|
+
"Could not validate %{file_type}. Error %{error}": [
|
|
216
|
+
"%{file_type} を検証できませんでした。エラー: %{error}"
|
|
217
|
+
],
|
|
218
|
+
"Create OVAL Content": [
|
|
219
|
+
""
|
|
220
|
+
],
|
|
221
|
+
"Create OVAL Policy": [
|
|
222
|
+
""
|
|
223
|
+
],
|
|
224
|
+
"Create OVAL content": [
|
|
225
|
+
"OVAL コンテンツの作成"
|
|
226
226
|
],
|
|
227
227
|
"Create SCAP content": [
|
|
228
228
|
"SCAP コンテンツの作成"
|
|
229
229
|
],
|
|
230
|
-
"
|
|
231
|
-
"
|
|
230
|
+
"Create a Policy": [
|
|
231
|
+
"ポリシーの作成"
|
|
232
232
|
],
|
|
233
|
-
"
|
|
234
|
-
"
|
|
233
|
+
"Create a Tailoring file": [
|
|
234
|
+
"テーラリングファイルの作成"
|
|
235
235
|
],
|
|
236
|
-
"
|
|
237
|
-
"
|
|
236
|
+
"Create an OVAL Policy": [
|
|
237
|
+
"OVAL ポリシーの作成"
|
|
238
238
|
],
|
|
239
|
-
"
|
|
240
|
-
"
|
|
239
|
+
"Created at": [
|
|
240
|
+
""
|
|
241
241
|
],
|
|
242
|
-
"
|
|
243
|
-
"
|
|
242
|
+
"Custom cron: %s": [
|
|
243
|
+
""
|
|
244
244
|
],
|
|
245
|
-
"
|
|
246
|
-
"
|
|
245
|
+
"Dashboard": [
|
|
246
|
+
"ダッシュボード"
|
|
247
247
|
],
|
|
248
|
-
"
|
|
249
|
-
"
|
|
248
|
+
"DataStream Tailoring file": [
|
|
249
|
+
"DataStream テーラリングファイル"
|
|
250
250
|
],
|
|
251
|
-
"
|
|
252
|
-
"
|
|
251
|
+
"Date": [
|
|
252
|
+
"日付"
|
|
253
253
|
],
|
|
254
|
-
"
|
|
255
|
-
"
|
|
254
|
+
"Default XCCDF profile": [
|
|
255
|
+
"デフォルトの XCCDF プロファイル"
|
|
256
256
|
],
|
|
257
|
-
"
|
|
258
|
-
"
|
|
257
|
+
"Delete": [
|
|
258
|
+
"削除"
|
|
259
259
|
],
|
|
260
|
-
"
|
|
261
|
-
"
|
|
260
|
+
"Delete OVAL Content": [
|
|
261
|
+
""
|
|
262
262
|
],
|
|
263
|
-
"
|
|
264
|
-
"
|
|
263
|
+
"Delete OVAL Policy": [
|
|
264
|
+
""
|
|
265
265
|
],
|
|
266
|
-
"
|
|
267
|
-
"
|
|
266
|
+
"Delete a Policy": [
|
|
267
|
+
"ポリシーの削除"
|
|
268
268
|
],
|
|
269
|
-
"
|
|
270
|
-
"
|
|
269
|
+
"Delete an ARF Report": [
|
|
270
|
+
"ARF レポートの削除"
|
|
271
271
|
],
|
|
272
|
-
"
|
|
273
|
-
"
|
|
272
|
+
"Delete an OVAL Policy": [
|
|
273
|
+
"OVAL ポリシーの削除"
|
|
274
274
|
],
|
|
275
|
-
"
|
|
276
|
-
"
|
|
275
|
+
"Delete compliance policy %s with all of its reports?": [
|
|
276
|
+
"すべてのレポートでコンプライアンスポリシー %s を削除しますか?"
|
|
277
277
|
],
|
|
278
|
-
"
|
|
279
|
-
"
|
|
278
|
+
"Delete compliance report for %s?": [
|
|
279
|
+
"%s のコンプライアンスレポートを削除しますか?"
|
|
280
280
|
],
|
|
281
|
-
"
|
|
282
|
-
"
|
|
281
|
+
"Delete reports": [
|
|
282
|
+
"レポートを削除"
|
|
283
283
|
],
|
|
284
|
-
"
|
|
285
|
-
"
|
|
284
|
+
"Delete scap content %s?": [
|
|
285
|
+
"SCAP コンテンツ %s を削除しますか?"
|
|
286
286
|
],
|
|
287
|
-
"
|
|
288
|
-
"%s
|
|
287
|
+
"Delete tailoring file %s?": [
|
|
288
|
+
"テーラリングファイル %s を削除しますか?"
|
|
289
289
|
],
|
|
290
|
-
"
|
|
291
|
-
"
|
|
290
|
+
"Deleted policy": [
|
|
291
|
+
"削除済みのポリシー"
|
|
292
292
|
],
|
|
293
|
-
"
|
|
294
|
-
"
|
|
293
|
+
"Deletes a Tailoring file": [
|
|
294
|
+
"テーラリングファイルの削除"
|
|
295
295
|
],
|
|
296
|
-
"
|
|
297
|
-
"
|
|
296
|
+
"Deletes an OVAL content": [
|
|
297
|
+
"OVAL コンテンツの削除"
|
|
298
298
|
],
|
|
299
|
-
"
|
|
300
|
-
"
|
|
299
|
+
"Deletes an SCAP content": [
|
|
300
|
+
"SCAP コンテンツの削除"
|
|
301
301
|
],
|
|
302
|
-
"
|
|
303
|
-
"
|
|
302
|
+
"Deployment Options": [
|
|
303
|
+
"デプロイメントオプション"
|
|
304
304
|
],
|
|
305
|
-
"
|
|
306
|
-
"
|
|
305
|
+
"Description": [
|
|
306
|
+
"説明"
|
|
307
307
|
],
|
|
308
|
-
"
|
|
308
|
+
"Details": [
|
|
309
309
|
""
|
|
310
310
|
],
|
|
311
|
-
"
|
|
312
|
-
"
|
|
311
|
+
"Details for Compliance Policy %s": [
|
|
312
|
+
"コンプライアンスポリシー %s の詳細"
|
|
313
313
|
],
|
|
314
|
-
"
|
|
315
|
-
"
|
|
314
|
+
"Directory to upload when using \\\"directory\\\" upload type": [
|
|
315
|
+
"「ディレクトリ」アップロードタイプを使用する場合のアップロードするディレクトリー"
|
|
316
316
|
],
|
|
317
|
-
"
|
|
318
|
-
"
|
|
317
|
+
"Do not implement any of the recommended remedial actions or scripts without first testing them in a non-production environment.": [
|
|
318
|
+
""
|
|
319
319
|
],
|
|
320
|
-
"
|
|
321
|
-
"
|
|
320
|
+
"Documentation": [
|
|
321
|
+
"ドキュメント"
|
|
322
322
|
],
|
|
323
|
-
"
|
|
324
|
-
"
|
|
323
|
+
"Done": [
|
|
324
|
+
""
|
|
325
325
|
],
|
|
326
|
-
"
|
|
327
|
-
"
|
|
326
|
+
"Download": [
|
|
327
|
+
"ダウンロード"
|
|
328
328
|
],
|
|
329
|
-
"
|
|
330
|
-
""
|
|
329
|
+
"Download ARF report in HTML": [
|
|
330
|
+
"HTML の ARF レポートのダウンロード"
|
|
331
331
|
],
|
|
332
|
-
"
|
|
333
|
-
"
|
|
332
|
+
"Download HTML": [
|
|
333
|
+
"HTML のダウンロード"
|
|
334
334
|
],
|
|
335
|
-
"
|
|
336
|
-
"
|
|
335
|
+
"Download XML in bzip": [
|
|
336
|
+
"XML を bzip でダウンロード"
|
|
337
337
|
],
|
|
338
|
-
"
|
|
339
|
-
"
|
|
338
|
+
"Download a Tailoring file as XML": [
|
|
339
|
+
"XML としてテーラリングファイルをダウンロード"
|
|
340
340
|
],
|
|
341
|
-
"
|
|
342
|
-
"
|
|
341
|
+
"Download an SCAP content as XML": [
|
|
342
|
+
"XML として SCAP コンテンツをダウンロード"
|
|
343
343
|
],
|
|
344
|
-
"
|
|
345
|
-
"
|
|
344
|
+
"Download bzipped ARF report": [
|
|
345
|
+
"bzip 形式の ARF レポートのダウンロード"
|
|
346
346
|
],
|
|
347
|
-
"
|
|
348
|
-
"
|
|
347
|
+
"Edit %s": [
|
|
348
|
+
"%s の編集"
|
|
349
349
|
],
|
|
350
|
-
"
|
|
351
|
-
"
|
|
350
|
+
"Effective Profile": [
|
|
351
|
+
"有効なプロファイル"
|
|
352
352
|
],
|
|
353
|
-
"
|
|
354
|
-
"
|
|
353
|
+
"Error!": [
|
|
354
|
+
"エラー!"
|
|
355
355
|
],
|
|
356
|
-
"
|
|
357
|
-
"
|
|
356
|
+
"Every puppet run ensures the foreman_scap_client is configured according to the policy.": [
|
|
357
|
+
""
|
|
358
|
+
],
|
|
359
|
+
"Expected an array of files to upload, got: %s.": [
|
|
360
|
+
""
|
|
361
|
+
],
|
|
362
|
+
"Failed": [
|
|
363
|
+
"失敗"
|
|
358
364
|
],
|
|
359
365
|
"Failed and Othered": [
|
|
360
366
|
"Failed および Othered"
|
|
@@ -362,107 +368,134 @@
|
|
|
362
368
|
"Failed only": [
|
|
363
369
|
"失敗のみ"
|
|
364
370
|
],
|
|
365
|
-
"
|
|
366
|
-
"
|
|
367
|
-
],
|
|
368
|
-
"Delete reports": [
|
|
369
|
-
"レポートを削除"
|
|
370
|
-
],
|
|
371
|
-
"Select Action": [
|
|
372
|
-
"アクションの選択"
|
|
373
|
-
],
|
|
374
|
-
"%s - The following compliance reports are about to be changed": [
|
|
375
|
-
"%s: 次のコンプライアンスレポートが変更されます"
|
|
376
|
-
],
|
|
377
|
-
"No proxy found!": [
|
|
378
|
-
"プロキシーが見つかりません!"
|
|
371
|
+
"Failed saving %s:": [
|
|
372
|
+
""
|
|
379
373
|
],
|
|
380
|
-
"
|
|
381
|
-
"
|
|
374
|
+
"Failed to create OVAL Policy: %s": [
|
|
375
|
+
""
|
|
382
376
|
],
|
|
383
|
-
"
|
|
384
|
-
"
|
|
377
|
+
"Failed to delete %s compliance reports": [
|
|
378
|
+
"%s コンプライアンスレポートの削除に失敗しました"
|
|
385
379
|
],
|
|
386
|
-
"
|
|
387
|
-
"
|
|
380
|
+
"Failed to delete ARF Report for host %{host_name} reported at %{reported_at}": [
|
|
381
|
+
"{reported_at} で報告されたホスト {host_name} の ARF レポートの削除に失敗しました"
|
|
388
382
|
],
|
|
389
|
-
"
|
|
390
|
-
"
|
|
383
|
+
"Failed to downloaded ARF report as bzip: %s": [
|
|
384
|
+
"ARFレポートを bzip でダウンロードするのに失敗しました: %s"
|
|
391
385
|
],
|
|
392
|
-
"
|
|
393
|
-
"
|
|
386
|
+
"Failed to downloaded ARF report in HTML: %s": [
|
|
387
|
+
"ARF レポートを HTML でダウンロードするのに失敗しました: %s"
|
|
394
388
|
],
|
|
395
|
-
"
|
|
396
|
-
"
|
|
389
|
+
"Failed to fetch content file from %s": [
|
|
390
|
+
""
|
|
397
391
|
],
|
|
398
|
-
"
|
|
399
|
-
"
|
|
392
|
+
"Failed to fetch spool status from proxy": [
|
|
393
|
+
"プロキシーからスプールステータスを取得できませんでした"
|
|
400
394
|
],
|
|
401
|
-
"
|
|
402
|
-
"
|
|
395
|
+
"Failed to save when overriding parameters for %{config_tool}, cause: %{errors}": [
|
|
396
|
+
"%{config_tool} のパラメーターのオーバーライド時に、保存に失敗しました。原因: %{errors}"
|
|
403
397
|
],
|
|
404
|
-
"
|
|
405
|
-
"
|
|
398
|
+
"Failed to upload Arf Report, OpenSCAP proxy name or url not found in params when uploading for %s and host is missing openscap_proxy": [
|
|
399
|
+
"Arf レポートのアップロードに失敗しました。%s のアップロード時にパラメーターで OpenSCAP プロキシー名または url が見つかりませんでした。ホストには openscap_proxy が設定されていません。"
|
|
406
400
|
],
|
|
407
401
|
"Failed|F": [
|
|
408
402
|
"F"
|
|
409
403
|
],
|
|
410
|
-
"
|
|
411
|
-
"
|
|
412
|
-
],
|
|
413
|
-
"Othered": [
|
|
414
|
-
"Othered"
|
|
404
|
+
"File": [
|
|
405
|
+
""
|
|
415
406
|
],
|
|
416
|
-
"
|
|
417
|
-
"
|
|
407
|
+
"File Upload": [
|
|
408
|
+
"ファイルアップロード"
|
|
418
409
|
],
|
|
419
|
-
"
|
|
420
|
-
"
|
|
410
|
+
"File name": [
|
|
411
|
+
""
|
|
421
412
|
],
|
|
422
|
-
"
|
|
423
|
-
"
|
|
413
|
+
"File paths to upload when using \\\"files\\\" upload type": [
|
|
414
|
+
"「ファイル」アップロードタイプを使用する場合のアップロードするファイルパス"
|
|
424
415
|
],
|
|
425
|
-
"
|
|
426
|
-
"
|
|
416
|
+
"Full Report": [
|
|
417
|
+
"完全レポート"
|
|
418
|
+
],
|
|
419
|
+
"General": [
|
|
420
|
+
"全般"
|
|
421
|
+
],
|
|
422
|
+
"Has Errata?": [
|
|
423
|
+
"エラータはありますか?"
|
|
424
|
+
],
|
|
425
|
+
"Host": [
|
|
426
|
+
"ホスト"
|
|
427
|
+
],
|
|
428
|
+
"Host Breakdown Chart": [
|
|
429
|
+
"ホストブレークダウンチャート"
|
|
430
|
+
],
|
|
431
|
+
"Host Groups": [
|
|
432
|
+
"ホストグループ"
|
|
427
433
|
],
|
|
428
434
|
"Host compliance details": [
|
|
429
435
|
"ホストコンプライアンス詳細"
|
|
430
436
|
],
|
|
437
|
+
"Host details": [
|
|
438
|
+
"ホストの詳細"
|
|
439
|
+
],
|
|
440
|
+
"Host does not exist anymore": [
|
|
441
|
+
"ホストは存在しません"
|
|
442
|
+
],
|
|
443
|
+
"Host is assigned to policy": [
|
|
444
|
+
"ホストはポリシーに割り当てられています"
|
|
445
|
+
],
|
|
431
446
|
"Host is deleted": [
|
|
432
447
|
"ホストが削除されました"
|
|
433
448
|
],
|
|
434
|
-
"
|
|
435
|
-
"
|
|
449
|
+
"Host is not assigned to policy but reports were found. You may want to delete the reports or assign the policy again.": [
|
|
450
|
+
"ホストはポリシーに割り当てられていませんが、レポートが見つかりました。レポートを削除するか、ポリシーを再度割り当てることをお勧めします。"
|
|
436
451
|
],
|
|
437
|
-
"
|
|
438
|
-
"
|
|
452
|
+
"Hostgroups": [
|
|
453
|
+
"ホストグループ"
|
|
439
454
|
],
|
|
440
|
-
"
|
|
441
|
-
"
|
|
455
|
+
"Hostname": [
|
|
456
|
+
"ホスト名"
|
|
442
457
|
],
|
|
443
|
-
"
|
|
444
|
-
"
|
|
458
|
+
"Hosts Breakdown": [
|
|
459
|
+
"ホストブレークダウン"
|
|
445
460
|
],
|
|
446
|
-
"
|
|
447
|
-
"
|
|
461
|
+
"Hosts Count": [
|
|
462
|
+
"ホスト数"
|
|
448
463
|
],
|
|
449
|
-
"
|
|
450
|
-
"
|
|
464
|
+
"Hosts failing this rule": [
|
|
465
|
+
"このルールに不合格のホスト"
|
|
451
466
|
],
|
|
452
|
-
"
|
|
453
|
-
"
|
|
467
|
+
"Hosts no longer assigned: %s": [
|
|
468
|
+
"割り当てが解除されたホスト: %s"
|
|
454
469
|
],
|
|
455
|
-
"
|
|
456
|
-
"
|
|
470
|
+
"Hosts othering this rule": [
|
|
471
|
+
"このルールに該当しないホスト"
|
|
457
472
|
],
|
|
458
|
-
"
|
|
459
|
-
"
|
|
473
|
+
"Hosts passing this rule": [
|
|
474
|
+
"このルールに合格のホスト"
|
|
460
475
|
],
|
|
461
|
-
"
|
|
462
|
-
"
|
|
476
|
+
"How the policy should be deployed": [
|
|
477
|
+
"ポリシーのデプロイメント方法"
|
|
463
478
|
],
|
|
464
|
-
"
|
|
465
|
-
"
|
|
479
|
+
"ID of OpenSCAP Proxy": [
|
|
480
|
+
"OpenSCAP プロキシーの ID"
|
|
481
|
+
],
|
|
482
|
+
"Import Puppet classes": [
|
|
483
|
+
"Puppet クラスのインポート"
|
|
484
|
+
],
|
|
485
|
+
"Import facts": [
|
|
486
|
+
"ファクトのインポート"
|
|
487
|
+
],
|
|
488
|
+
"In Foreman, a compliance policy checklist is defined via %s.": [
|
|
489
|
+
"Foreman では、コンプライアンスポリシーのチェックリストは %s で定義されます。"
|
|
490
|
+
],
|
|
491
|
+
"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 via %s": [
|
|
492
|
+
"Foreman では、scap_contents はホストの SCAP セキュリティーガイドを表し、%s でホスト/ホストグループに割り当てるための SCAP プロファルを\\n 作成します。"
|
|
493
|
+
],
|
|
494
|
+
"In Foreman, tailoring_files represent the custom modifications to default XCCDF profiles and they can be applied to hosts\\n via %s": [
|
|
495
|
+
"Foreman では、tailoring_files はデフォルトの XCCDF プロファイルへのカスタム修正を表し、%s で\\n ホストに適用できます"
|
|
496
|
+
],
|
|
497
|
+
"Incompliant": [
|
|
498
|
+
"非準拠"
|
|
466
499
|
],
|
|
467
500
|
"Incompliant hosts": [
|
|
468
501
|
"準拠しないホスト"
|
|
@@ -470,833 +503,893 @@
|
|
|
470
503
|
"Inconclusive": [
|
|
471
504
|
"不確定"
|
|
472
505
|
],
|
|
473
|
-
"
|
|
474
|
-
"
|
|
506
|
+
"Inconclusive results": [
|
|
507
|
+
"不確定な結果"
|
|
475
508
|
],
|
|
476
|
-
"
|
|
477
|
-
"
|
|
509
|
+
"Is %s param set to be overriden?": [
|
|
510
|
+
"%s param はオーバーライドされるように設定されていますか?"
|
|
478
511
|
],
|
|
479
|
-
"
|
|
480
|
-
"
|
|
512
|
+
"Is foreman_ansible present?": [
|
|
513
|
+
"foreman_ansible は存在しますか?"
|
|
481
514
|
],
|
|
482
|
-
"
|
|
483
|
-
"
|
|
515
|
+
"Is theforeman.foreman_scap_client present?": [
|
|
516
|
+
"theforeman.foreman_scap_client は存在しますか?"
|
|
484
517
|
],
|
|
485
|
-
"
|
|
486
|
-
"
|
|
518
|
+
"It may sometimes be required to adjust the security policy to your specific needs. ": [
|
|
519
|
+
"セキュリティーポリシーを特定のニーズに合わせて調整することが必要になることがあります。 "
|
|
487
520
|
],
|
|
488
|
-
"
|
|
489
|
-
"
|
|
521
|
+
"Job details": [
|
|
522
|
+
""
|
|
490
523
|
],
|
|
491
|
-
"
|
|
492
|
-
"
|
|
524
|
+
"Latest Compliance Reports": [
|
|
525
|
+
"最新コンプライアンスレポート"
|
|
493
526
|
],
|
|
494
|
-
"
|
|
495
|
-
"
|
|
527
|
+
"Latest reports for policy: %s": [
|
|
528
|
+
"ポリシーの最新レポート: %s"
|
|
496
529
|
],
|
|
497
|
-
"
|
|
498
|
-
"
|
|
530
|
+
"List ARF reports": [
|
|
531
|
+
"ARF レポートの一覧表示"
|
|
499
532
|
],
|
|
500
|
-
"
|
|
501
|
-
"
|
|
533
|
+
"List OVAL Policies": [
|
|
534
|
+
"OVAL ポリシーの一覧表示"
|
|
502
535
|
],
|
|
503
|
-
"
|
|
504
|
-
"
|
|
536
|
+
"List OVAL contents": [
|
|
537
|
+
"OVAL コンテンツの一覧表示"
|
|
505
538
|
],
|
|
506
|
-
"
|
|
507
|
-
"
|
|
539
|
+
"List Policies": [
|
|
540
|
+
"ポリシーの一覧表示"
|
|
508
541
|
],
|
|
509
|
-
"
|
|
510
|
-
"
|
|
542
|
+
"List SCAP content profiles": [
|
|
543
|
+
"SCAP コンテンツプロファイルの一覧表示"
|
|
511
544
|
],
|
|
512
|
-
"
|
|
513
|
-
"
|
|
545
|
+
"List SCAP contents": [
|
|
546
|
+
"SCAP コンテンツの一覧表示"
|
|
514
547
|
],
|
|
515
|
-
"
|
|
516
|
-
"
|
|
548
|
+
"List Tailoring files": [
|
|
549
|
+
"テーラリングファイルの一覧表示"
|
|
517
550
|
],
|
|
518
|
-
"
|
|
519
|
-
"
|
|
551
|
+
"Loading...": [
|
|
552
|
+
"読み込み中..."
|
|
520
553
|
],
|
|
521
|
-
"
|
|
522
|
-
"
|
|
554
|
+
"Locations": [
|
|
555
|
+
"ロケーション"
|
|
523
556
|
],
|
|
524
|
-
"
|
|
525
|
-
"
|
|
557
|
+
"Manual": [
|
|
558
|
+
""
|
|
526
559
|
],
|
|
527
|
-
"
|
|
528
|
-
"
|
|
560
|
+
"Message": [
|
|
561
|
+
"メッセージ"
|
|
529
562
|
],
|
|
530
|
-
"
|
|
531
|
-
"
|
|
563
|
+
"Method": [
|
|
564
|
+
""
|
|
532
565
|
],
|
|
533
|
-
"
|
|
534
|
-
"
|
|
566
|
+
"Monthly, day of month: %s": [
|
|
567
|
+
""
|
|
535
568
|
],
|
|
536
|
-
"
|
|
537
|
-
"
|
|
569
|
+
"More details": [
|
|
570
|
+
"詳細"
|
|
538
571
|
],
|
|
539
|
-
"
|
|
540
|
-
"
|
|
572
|
+
"Name": [
|
|
573
|
+
"名前"
|
|
541
574
|
],
|
|
542
|
-
"
|
|
543
|
-
"
|
|
575
|
+
"Never audited": [
|
|
576
|
+
"未監査"
|
|
544
577
|
],
|
|
545
|
-
"
|
|
546
|
-
"
|
|
578
|
+
"New Compliance Policy": [
|
|
579
|
+
"新規コンプライアンスポリシー"
|
|
547
580
|
],
|
|
548
|
-
"
|
|
549
|
-
"
|
|
581
|
+
"New OVAL Content": [
|
|
582
|
+
""
|
|
550
583
|
],
|
|
551
|
-
"Policy
|
|
552
|
-
"
|
|
584
|
+
"New Policy": [
|
|
585
|
+
"新規ポリシー"
|
|
553
586
|
],
|
|
554
|
-
"
|
|
555
|
-
"
|
|
587
|
+
"New SCAP Content": [
|
|
588
|
+
"新規 SCAP コンテンツ"
|
|
556
589
|
],
|
|
557
|
-
"
|
|
558
|
-
"
|
|
590
|
+
"New Tailoring File": [
|
|
591
|
+
"新規テーラリングファイル"
|
|
559
592
|
],
|
|
560
|
-
"
|
|
561
|
-
"
|
|
593
|
+
"Next": [
|
|
594
|
+
"次へ"
|
|
562
595
|
],
|
|
563
|
-
"
|
|
564
|
-
"
|
|
596
|
+
"No": [
|
|
597
|
+
"いいえ"
|
|
565
598
|
],
|
|
566
|
-
"
|
|
567
|
-
"
|
|
599
|
+
"No ARF reports for this policy": [
|
|
600
|
+
"このポリシーの ARF レポートがありません"
|
|
568
601
|
],
|
|
569
|
-
"
|
|
570
|
-
"
|
|
602
|
+
"No CVEs found.": [
|
|
603
|
+
"CVE が見つかりません。"
|
|
571
604
|
],
|
|
572
|
-
"
|
|
573
|
-
"
|
|
605
|
+
"No Hostgroups found.": [
|
|
606
|
+
""
|
|
574
607
|
],
|
|
575
|
-
"
|
|
576
|
-
"
|
|
608
|
+
"No OVAL Content found": [
|
|
609
|
+
""
|
|
577
610
|
],
|
|
578
|
-
"
|
|
579
|
-
"
|
|
611
|
+
"No OVAL Contents found.": [
|
|
612
|
+
"OVAL コンテンツが見つかりません。"
|
|
580
613
|
],
|
|
581
|
-
"
|
|
582
|
-
"
|
|
614
|
+
"No OVAL Policies found": [
|
|
615
|
+
"OVAL ポリシーが見つかりません"
|
|
583
616
|
],
|
|
584
|
-
"
|
|
585
|
-
"
|
|
617
|
+
"No OVAL Policy found": [
|
|
618
|
+
"OVAL ポリシーが見つかりません"
|
|
586
619
|
],
|
|
587
|
-
"
|
|
588
|
-
"
|
|
620
|
+
"No OpenSCAP Proxy selected.": [
|
|
621
|
+
"OpenSCAP プロキシーが選択されていません。"
|
|
589
622
|
],
|
|
590
|
-
"
|
|
591
|
-
""
|
|
623
|
+
"No OpenSCAP proxy found for %{class} with id %{id}": [
|
|
624
|
+
"ID %{id} の %{class} の OpenSCAP プロキシーが見つかりません"
|
|
592
625
|
],
|
|
593
|
-
"
|
|
594
|
-
""
|
|
626
|
+
"No Tailoring file assigned for policy with id %s": [
|
|
627
|
+
"id が %s のポリシーに割り当てられているテーラリングファイルはありません"
|
|
595
628
|
],
|
|
596
|
-
"
|
|
597
|
-
"
|
|
629
|
+
"No Vulnerabilities found": [
|
|
630
|
+
"脆弱性は見つかりませんでした"
|
|
598
631
|
],
|
|
599
|
-
"
|
|
600
|
-
"
|
|
632
|
+
"No available proxy to validate. Returned with error: %s": [
|
|
633
|
+
"検証するプロキシーがありません。返されたエラー: %s"
|
|
601
634
|
],
|
|
602
|
-
"
|
|
603
|
-
"
|
|
635
|
+
"No compliance policy selected.": [
|
|
636
|
+
"コンプライアンスポリシーが選択されていません。"
|
|
604
637
|
],
|
|
605
|
-
"
|
|
606
|
-
""
|
|
638
|
+
"No compliance reports selected": [
|
|
639
|
+
"コンプライアンスレポートが選択されていません"
|
|
607
640
|
],
|
|
608
|
-
"
|
|
609
|
-
""
|
|
641
|
+
"No compliance reports were found.": [
|
|
642
|
+
"コンプライアンスレポートが見つかりませんでした。"
|
|
610
643
|
],
|
|
611
|
-
"
|
|
644
|
+
"No hosts selected": [
|
|
645
|
+
"ホストが選択されていません"
|
|
646
|
+
],
|
|
647
|
+
"No hosts were found with that id, name or query filter": [
|
|
612
648
|
""
|
|
613
649
|
],
|
|
614
|
-
"
|
|
615
|
-
"
|
|
650
|
+
"No proxy found for %{name} or %{url}": [
|
|
651
|
+
"%{name} または %{url} のプロキシーが見つかりません"
|
|
616
652
|
],
|
|
617
|
-
"
|
|
618
|
-
"
|
|
653
|
+
"No proxy found!": [
|
|
654
|
+
"プロキシーが見つかりません!"
|
|
619
655
|
],
|
|
620
|
-
"
|
|
621
|
-
"
|
|
656
|
+
"No proxy with OpenSCAP feature is running.": [
|
|
657
|
+
"OpenSCAP 機能のあるプロキシーが実行されていません。"
|
|
622
658
|
],
|
|
623
|
-
"
|
|
624
|
-
"
|
|
659
|
+
"No proxy with OpenSCAP feature was found.": [
|
|
660
|
+
"OpenSCAP 機能のあるプロキシーが見つかりませんでした。"
|
|
625
661
|
],
|
|
626
|
-
"
|
|
627
|
-
"
|
|
662
|
+
"No report for this policy": [
|
|
663
|
+
"このポリシーのレポートはありません"
|
|
628
664
|
],
|
|
629
|
-
"
|
|
630
|
-
"
|
|
665
|
+
"No reports available": [
|
|
666
|
+
"利用可能なレポートがありません"
|
|
631
667
|
],
|
|
632
|
-
"
|
|
633
|
-
"
|
|
668
|
+
"No such directory: %s. Please check the path you have provided.": [
|
|
669
|
+
""
|
|
634
670
|
],
|
|
635
|
-
"
|
|
636
|
-
"
|
|
671
|
+
"No valid policy ID provided": [
|
|
672
|
+
"有効なポリシー ID が提供されていません"
|
|
637
673
|
],
|
|
638
|
-
"
|
|
639
|
-
"
|
|
674
|
+
"None": [
|
|
675
|
+
"なし"
|
|
640
676
|
],
|
|
641
|
-
"
|
|
642
|
-
"
|
|
677
|
+
"None found": [
|
|
678
|
+
"何も見つかりません"
|
|
643
679
|
],
|
|
644
|
-
"
|
|
645
|
-
"
|
|
680
|
+
"None provided": [
|
|
681
|
+
""
|
|
646
682
|
],
|
|
647
|
-
"
|
|
648
|
-
"
|
|
683
|
+
"None!": [
|
|
684
|
+
"なし!"
|
|
649
685
|
],
|
|
650
|
-
"
|
|
651
|
-
"
|
|
686
|
+
"Not audited": [
|
|
687
|
+
"未監査"
|
|
652
688
|
],
|
|
653
|
-
"
|
|
654
|
-
"
|
|
689
|
+
"Not compliant with the policy": [
|
|
690
|
+
"ポリシーに準拠しない"
|
|
655
691
|
],
|
|
656
|
-
"
|
|
657
|
-
"
|
|
692
|
+
"Nothing to show": [
|
|
693
|
+
"表示するものがありません"
|
|
658
694
|
],
|
|
659
|
-
"
|
|
660
|
-
"
|
|
695
|
+
"Number of Events": [
|
|
696
|
+
"イベント数"
|
|
661
697
|
],
|
|
662
|
-
"
|
|
663
|
-
"
|
|
698
|
+
"Number of a day in month, note that not all months have same count of days": [
|
|
699
|
+
"月の日数。すべての月の日数が同じであるとは限らないことに注意してください"
|
|
664
700
|
],
|
|
665
|
-
"
|
|
666
|
-
"
|
|
701
|
+
"OS": [
|
|
702
|
+
""
|
|
667
703
|
],
|
|
668
|
-
"
|
|
669
|
-
"
|
|
704
|
+
"OVAL Content": [
|
|
705
|
+
"OVAL コンテンツ"
|
|
670
706
|
],
|
|
671
|
-
"
|
|
707
|
+
"OVAL Content %s successfully created": [
|
|
672
708
|
""
|
|
673
709
|
],
|
|
674
|
-
"
|
|
710
|
+
"OVAL Content Source": [
|
|
675
711
|
""
|
|
676
712
|
],
|
|
677
|
-
"
|
|
678
|
-
"
|
|
713
|
+
"OVAL Content from URL": [
|
|
714
|
+
""
|
|
679
715
|
],
|
|
680
|
-
"
|
|
681
|
-
"
|
|
716
|
+
"OVAL Content from file": [
|
|
717
|
+
""
|
|
682
718
|
],
|
|
683
|
-
"
|
|
684
|
-
"
|
|
719
|
+
"OVAL Content is required to create OVAL Policy. Please create one before proceeding.": [
|
|
720
|
+
""
|
|
685
721
|
],
|
|
686
|
-
"
|
|
687
|
-
"
|
|
722
|
+
"OVAL Content successfully deleted.": [
|
|
723
|
+
""
|
|
688
724
|
],
|
|
689
|
-
"
|
|
690
|
-
"
|
|
725
|
+
"OVAL Contents": [
|
|
726
|
+
"OVAL コンテンツ"
|
|
691
727
|
],
|
|
692
|
-
"
|
|
693
|
-
"
|
|
728
|
+
"OVAL Contents table": [
|
|
729
|
+
"OVAL コンテンツテーブル"
|
|
694
730
|
],
|
|
695
|
-
"
|
|
696
|
-
"
|
|
731
|
+
"OVAL Policies": [
|
|
732
|
+
"OVAL ポリシー"
|
|
697
733
|
],
|
|
698
|
-
"
|
|
699
|
-
"
|
|
734
|
+
"OVAL Policies Table": [
|
|
735
|
+
"OVAL ポリシーテーブル"
|
|
736
|
+
],
|
|
737
|
+
"OVAL Policy description": [
|
|
738
|
+
"OVAL ポリシーの説明"
|
|
739
|
+
],
|
|
740
|
+
"OVAL Policy name": [
|
|
741
|
+
"OVAL ポリシー名"
|
|
742
|
+
],
|
|
743
|
+
"OVAL Policy schedule cron line (only if period == \\\"custom\\\")": [
|
|
744
|
+
"OVAL ポリシーのスケジュール: cron 行 (period == \\\"custom\\\" の場合のみ)"
|
|
745
|
+
],
|
|
746
|
+
"OVAL Policy schedule day of month (only if period == \\\"monthly\\\")": [
|
|
747
|
+
"OVAL ポリシーのスケジュール: 月の日付 (period == \\\"monthly\\\" の場合のみ)"
|
|
748
|
+
],
|
|
749
|
+
"OVAL Policy schedule period (weekly, monthly, custom)": [
|
|
750
|
+
"OVAL ポリシーのスケジュール期間 (週次、月次、カスタム)"
|
|
751
|
+
],
|
|
752
|
+
"OVAL Policy schedule weekday (only if period == \\\"weekly\\\")": [
|
|
753
|
+
"OVAL ポリシーのスケジュール: 平日 (period == \\\"weekly\\\" の場合のみ)"
|
|
754
|
+
],
|
|
755
|
+
"OVAL Policy succesfully created.": [
|
|
756
|
+
""
|
|
700
757
|
],
|
|
701
|
-
"
|
|
702
|
-
"
|
|
758
|
+
"OVAL content name": [
|
|
759
|
+
"OVAL コンテンツ名"
|
|
703
760
|
],
|
|
704
|
-
"
|
|
705
|
-
"
|
|
761
|
+
"OVAL policy": [
|
|
762
|
+
""
|
|
706
763
|
],
|
|
707
|
-
"
|
|
708
|
-
"
|
|
764
|
+
"OVAL policy successfully configured with %s.": [
|
|
765
|
+
"%s で正常に設定された OVAL ポリシー。"
|
|
709
766
|
],
|
|
710
|
-
"
|
|
711
|
-
"
|
|
767
|
+
"OVAL policy was successfully deleted.": [
|
|
768
|
+
""
|
|
712
769
|
],
|
|
713
|
-
"
|
|
714
|
-
"
|
|
770
|
+
"OVAL policy was successfully updated.": [
|
|
771
|
+
""
|
|
715
772
|
],
|
|
716
|
-
"
|
|
717
|
-
"
|
|
773
|
+
"OVAL scan": [
|
|
774
|
+
"OVAL スキャン"
|
|
718
775
|
],
|
|
719
|
-
"
|
|
720
|
-
"
|
|
776
|
+
"Once SCAP content is present, you can create a policy, assign select host groups and schedule to run.": [
|
|
777
|
+
"SCAP コンテンツが表示されたら、ポリシーの作成、選択したホストグループの割り当て、実行のスケジューリングが可能です。"
|
|
721
778
|
],
|
|
722
|
-
"
|
|
723
|
-
"
|
|
779
|
+
"OpenSCAP Proxy": [
|
|
780
|
+
"OpenSCAP プロキシー"
|
|
724
781
|
],
|
|
725
|
-
"
|
|
726
|
-
"
|
|
782
|
+
"OpenSCAP Proxy to use for fetching SCAP content and uploading ARF reports. Leave blank and override appropriate parameters when using proxy load balancer.": [
|
|
783
|
+
"SCAP コンテンツのフェッチおよび ARF レポートのアップロードに使用する OpenSCAP プロキシー。プロキシーロードバランサーを使用する場合には、空白にして、適切なパラメーターを上書きします。"
|
|
727
784
|
],
|
|
728
|
-
"
|
|
729
|
-
"
|
|
785
|
+
"Openscap Proxy": [
|
|
786
|
+
"OpenSCAP プロキシー"
|
|
730
787
|
],
|
|
731
|
-
"
|
|
732
|
-
"
|
|
788
|
+
"Organizations": [
|
|
789
|
+
"組織"
|
|
733
790
|
],
|
|
734
|
-
"
|
|
735
|
-
"
|
|
791
|
+
"Original File Name": [
|
|
792
|
+
""
|
|
736
793
|
],
|
|
737
|
-
"
|
|
738
|
-
"
|
|
794
|
+
"Original file name of the OVAL content file": [
|
|
795
|
+
"OVAL コンテンツファイルの元のファイル名"
|
|
739
796
|
],
|
|
740
|
-
"
|
|
741
|
-
"
|
|
797
|
+
"Original file name of the XML file": [
|
|
798
|
+
"XML ファイルの元のファイル名"
|
|
742
799
|
],
|
|
743
|
-
"
|
|
744
|
-
"
|
|
800
|
+
"Other": [
|
|
801
|
+
"その他"
|
|
745
802
|
],
|
|
746
|
-
"
|
|
747
|
-
"
|
|
803
|
+
"Other hosts failing this rule": [
|
|
804
|
+
""
|
|
748
805
|
],
|
|
749
|
-
"
|
|
750
|
-
"
|
|
806
|
+
"Othered": [
|
|
807
|
+
"Othered"
|
|
751
808
|
],
|
|
752
|
-
"
|
|
753
|
-
"
|
|
809
|
+
"Othered|O": [
|
|
810
|
+
"O"
|
|
754
811
|
],
|
|
755
|
-
"
|
|
756
|
-
"
|
|
812
|
+
"Passed": [
|
|
813
|
+
"合格"
|
|
757
814
|
],
|
|
758
|
-
"
|
|
759
|
-
"
|
|
815
|
+
"Passed|P": [
|
|
816
|
+
"P"
|
|
760
817
|
],
|
|
761
|
-
"
|
|
762
|
-
"
|
|
818
|
+
"Period": [
|
|
819
|
+
""
|
|
763
820
|
],
|
|
764
|
-
"
|
|
765
|
-
"
|
|
821
|
+
"Permission denied": [
|
|
822
|
+
""
|
|
766
823
|
],
|
|
767
|
-
"
|
|
768
|
-
"
|
|
824
|
+
"Please Confirm": [
|
|
825
|
+
"確認してください"
|
|
769
826
|
],
|
|
770
|
-
"
|
|
771
|
-
"
|
|
827
|
+
"Please make sure you understand them by reading our": [
|
|
828
|
+
"理解するために読んでください。"
|
|
772
829
|
],
|
|
773
|
-
"
|
|
774
|
-
"
|
|
830
|
+
"Please specify import type, received: %{received}, expected one of: %{expected}": [
|
|
831
|
+
"インポートタイプを指定してください。受信: %%{received}、次のうち 1 つを想定: %%{expected}"
|
|
775
832
|
],
|
|
776
|
-
"
|
|
777
|
-
"
|
|
833
|
+
"Policies": [
|
|
834
|
+
"ポリシー"
|
|
778
835
|
],
|
|
779
|
-
"
|
|
780
|
-
"
|
|
836
|
+
"Policies with hosts:": [
|
|
837
|
+
"ホスト付きポリシー:"
|
|
781
838
|
],
|
|
782
|
-
"
|
|
783
|
-
"
|
|
839
|
+
"Policy": [
|
|
840
|
+
"ポリシー"
|
|
784
841
|
],
|
|
785
842
|
"Policy %s": [
|
|
786
843
|
"ポリシー %s 件"
|
|
787
844
|
],
|
|
788
|
-
"
|
|
789
|
-
"
|
|
845
|
+
"Policy Attributes": [
|
|
846
|
+
"ポリシー属性"
|
|
790
847
|
],
|
|
791
|
-
"
|
|
792
|
-
"
|
|
848
|
+
"Policy OVAL content ID": [
|
|
849
|
+
"ポリシー OVAL コンテンツ ID"
|
|
793
850
|
],
|
|
794
|
-
"
|
|
795
|
-
"
|
|
851
|
+
"Policy SCAP content ID": [
|
|
852
|
+
"ポリシー SCAP コンテンツ ID"
|
|
796
853
|
],
|
|
797
|
-
"
|
|
798
|
-
"
|
|
854
|
+
"Policy SCAP content profile ID": [
|
|
855
|
+
"ポリシー SCAP コンテンツプロファイル ID"
|
|
799
856
|
],
|
|
800
|
-
"
|
|
801
|
-
"
|
|
857
|
+
"Policy assigned": [
|
|
858
|
+
"割り当て済みのポリシー"
|
|
802
859
|
],
|
|
803
|
-
"
|
|
804
|
-
"
|
|
860
|
+
"Policy description": [
|
|
861
|
+
"ポリシーの説明"
|
|
805
862
|
],
|
|
806
863
|
"Policy is missing": [
|
|
807
864
|
"ポリシーがありません"
|
|
808
865
|
],
|
|
809
|
-
"
|
|
810
|
-
"
|
|
811
|
-
],
|
|
812
|
-
"Changed": [
|
|
813
|
-
"変更済み"
|
|
814
|
-
],
|
|
815
|
-
"Hostname": [
|
|
816
|
-
"ホスト名"
|
|
817
|
-
],
|
|
818
|
-
"Changed?": [
|
|
819
|
-
"変更されましたか?"
|
|
820
|
-
],
|
|
821
|
-
"Yes": [
|
|
822
|
-
"はい"
|
|
823
|
-
],
|
|
824
|
-
"No": [
|
|
825
|
-
"いいえ"
|
|
826
|
-
],
|
|
827
|
-
"No ARF reports for this policy": [
|
|
828
|
-
"このポリシーの ARF レポートがありません"
|
|
866
|
+
"Policy name": [
|
|
867
|
+
"ポリシー名"
|
|
829
868
|
],
|
|
830
|
-
"
|
|
831
|
-
"
|
|
869
|
+
"Policy schedule cron line (only if period == \\\"custom\\\")": [
|
|
870
|
+
"ポリシースケジュール: cron 行 (period == \\\"custom\\\" の場合のみ)"
|
|
832
871
|
],
|
|
833
|
-
"
|
|
834
|
-
"
|
|
872
|
+
"Policy schedule day of month (only if period == \\\"monthly\\\")": [
|
|
873
|
+
"ポリシースケジュール: 月の日付 (period == \\\"monthly\\\" の場合のみ)"
|
|
835
874
|
],
|
|
836
|
-
"
|
|
837
|
-
"
|
|
875
|
+
"Policy schedule period (weekly, monthly, custom)": [
|
|
876
|
+
"ポリシーのスケジュール期間 (週次、月次、カスタム)"
|
|
838
877
|
],
|
|
839
|
-
"
|
|
840
|
-
"
|
|
878
|
+
"Policy schedule weekday (only if period == \\\"weekly\\\")": [
|
|
879
|
+
"ポリシースケジュール: 平日 (period == \\\"weekly\\\" の場合のみ)"
|
|
841
880
|
],
|
|
842
|
-
"
|
|
843
|
-
"
|
|
881
|
+
"Policy with id %s not found.": [
|
|
882
|
+
"id が %s のポリシーが見つかりません"
|
|
844
883
|
],
|
|
845
|
-
"
|
|
846
|
-
"
|
|
884
|
+
"Profile": [
|
|
885
|
+
""
|
|
847
886
|
],
|
|
848
|
-
"
|
|
849
|
-
"
|
|
887
|
+
"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.": [
|
|
888
|
+
"プロキシーは、スプールから Foreman へのレポートの送信に失敗しました。これは、レポート形式が破損していることを示しています。レポートは、後で検査できるようプロキシーの破損ファイルを保存するディレクトリーに移動しました。"
|
|
850
889
|
],
|
|
851
|
-
"
|
|
852
|
-
"
|
|
890
|
+
"Puppet class": [
|
|
891
|
+
"Puppet クラス"
|
|
853
892
|
],
|
|
854
|
-
"
|
|
855
|
-
"
|
|
893
|
+
"Rationale": [
|
|
894
|
+
"理由"
|
|
856
895
|
],
|
|
857
|
-
"
|
|
858
|
-
"
|
|
896
|
+
"Reboot the system(s)": [
|
|
897
|
+
""
|
|
859
898
|
],
|
|
860
|
-
"
|
|
861
|
-
"
|
|
899
|
+
"Red Hat %s default content": [
|
|
900
|
+
""
|
|
862
901
|
],
|
|
863
|
-
"
|
|
864
|
-
"
|
|
902
|
+
"Ref Id": [
|
|
903
|
+
"参照 ID"
|
|
865
904
|
],
|
|
866
|
-
"
|
|
867
|
-
"
|
|
905
|
+
"References": [
|
|
906
|
+
"リファレンス"
|
|
868
907
|
],
|
|
869
|
-
"
|
|
870
|
-
"
|
|
908
|
+
"Remediate %s rule": [
|
|
909
|
+
""
|
|
871
910
|
],
|
|
872
|
-
"
|
|
873
|
-
"
|
|
911
|
+
"Remediation": [
|
|
912
|
+
""
|
|
874
913
|
],
|
|
875
|
-
"
|
|
914
|
+
"Remediation might render the system non-functional.": [
|
|
876
915
|
""
|
|
877
916
|
],
|
|
878
|
-
"
|
|
917
|
+
"Remote action:": [
|
|
918
|
+
"リモートアクション:"
|
|
919
|
+
],
|
|
920
|
+
"Remote job": [
|
|
879
921
|
""
|
|
880
922
|
],
|
|
881
|
-
"
|
|
882
|
-
"
|
|
923
|
+
"Report Metrics": [
|
|
924
|
+
"レポートメトリックス"
|
|
883
925
|
],
|
|
884
|
-
"
|
|
885
|
-
"
|
|
926
|
+
"Report Status": [
|
|
927
|
+
"レポートのステータス"
|
|
886
928
|
],
|
|
887
|
-
"
|
|
888
|
-
"
|
|
929
|
+
"Reported At": [
|
|
930
|
+
"報告済み"
|
|
889
931
|
],
|
|
890
|
-
"
|
|
891
|
-
"
|
|
932
|
+
"Reported at %s": [
|
|
933
|
+
"レポート日時: %s"
|
|
892
934
|
],
|
|
893
|
-
"
|
|
894
|
-
"
|
|
935
|
+
"Reports": [
|
|
936
|
+
"レポート"
|
|
895
937
|
],
|
|
896
|
-
"
|
|
897
|
-
"
|
|
938
|
+
"Request the following permissions from administrator: %s.": [
|
|
939
|
+
""
|
|
898
940
|
],
|
|
899
|
-
"
|
|
900
|
-
"
|
|
941
|
+
"Request timed out. Please try increasing Settings -> proxy_request_timeout": [
|
|
942
|
+
"要求がタイムアウトしました。Settings -> proxy_request_timeout で値を増やしてみてください"
|
|
901
943
|
],
|
|
902
|
-
"
|
|
903
|
-
"%
|
|
944
|
+
"Required %{msg_name} %{class} was not found, please ensure it is imported first.": [
|
|
945
|
+
"必要とされる {msg_name}%{class} が見つかりませんでした。最初にインポートされていることを確認してください。"
|
|
904
946
|
],
|
|
905
|
-
"
|
|
906
|
-
"
|
|
947
|
+
"Requires %s Puppet class. This will assign the class to the hosts or selected hostgroups.": [
|
|
948
|
+
""
|
|
907
949
|
],
|
|
908
|
-
"
|
|
909
|
-
"
|
|
950
|
+
"Requires Ansible plugin, %s Ansible role and variables. This will assign the role to the hosts or selected hostgroups.": [
|
|
951
|
+
""
|
|
910
952
|
],
|
|
911
|
-
"
|
|
912
|
-
"
|
|
953
|
+
"Resource": [
|
|
954
|
+
"リソース"
|
|
913
955
|
],
|
|
914
|
-
"
|
|
915
|
-
"
|
|
956
|
+
"Result": [
|
|
957
|
+
"結果"
|
|
916
958
|
],
|
|
917
|
-
"
|
|
918
|
-
"
|
|
959
|
+
"Review hosts": [
|
|
960
|
+
""
|
|
919
961
|
],
|
|
920
|
-
"
|
|
921
|
-
"
|
|
962
|
+
"Review remediation": [
|
|
963
|
+
""
|
|
922
964
|
],
|
|
923
|
-
"
|
|
924
|
-
"
|
|
965
|
+
"Review the remediation snippet and apply it to the host manually.": [
|
|
966
|
+
""
|
|
925
967
|
],
|
|
926
|
-
"
|
|
927
|
-
"
|
|
968
|
+
"Review the remediation snippet that will be applied to selected host(s).": [
|
|
969
|
+
""
|
|
928
970
|
],
|
|
929
|
-
"
|
|
930
|
-
"
|
|
971
|
+
"Rule Results": [
|
|
972
|
+
"ルールの結果"
|
|
931
973
|
],
|
|
932
|
-
"
|
|
933
|
-
"
|
|
974
|
+
"Run": [
|
|
975
|
+
""
|
|
934
976
|
],
|
|
935
|
-
"
|
|
936
|
-
"
|
|
977
|
+
"Run OVAL scan": [
|
|
978
|
+
"OVAL スキャンの実行"
|
|
937
979
|
],
|
|
938
|
-
"
|
|
939
|
-
"
|
|
980
|
+
"Run OpenSCAP remediation with Ansible": [
|
|
981
|
+
""
|
|
940
982
|
],
|
|
941
|
-
"
|
|
942
|
-
"
|
|
983
|
+
"Run OpenSCAP remediation with Shell": [
|
|
984
|
+
""
|
|
943
985
|
],
|
|
944
|
-
"
|
|
945
|
-
"
|
|
986
|
+
"Run OpenSCAP scan": [
|
|
987
|
+
"OpenSCAP スキャンの実行"
|
|
946
988
|
],
|
|
947
|
-
"
|
|
948
|
-
"
|
|
989
|
+
"SCAP Content": [
|
|
990
|
+
"SCAP コンテンツ"
|
|
949
991
|
],
|
|
950
|
-
"
|
|
951
|
-
"
|
|
992
|
+
"SCAP Contents": [
|
|
993
|
+
"SCAP コンテンツ"
|
|
952
994
|
],
|
|
953
|
-
"
|
|
954
|
-
"
|
|
995
|
+
"SCAP DataStream file": [
|
|
996
|
+
"SCAP データストリームファイル"
|
|
955
997
|
],
|
|
956
|
-
"
|
|
957
|
-
"
|
|
998
|
+
"SCAP content": [
|
|
999
|
+
"SCAP のコンテンツ"
|
|
958
1000
|
],
|
|
959
|
-
"
|
|
960
|
-
"
|
|
1001
|
+
"SCAP content name": [
|
|
1002
|
+
"SCAP コンテンツ名"
|
|
961
1003
|
],
|
|
962
|
-
"
|
|
963
|
-
"
|
|
1004
|
+
"SCAP contents": [
|
|
1005
|
+
"SCAP コンテンツ"
|
|
964
1006
|
],
|
|
965
|
-
"
|
|
966
|
-
"
|
|
1007
|
+
"SCAP policies summary": [
|
|
1008
|
+
"SCAP ポリシーの概要"
|
|
967
1009
|
],
|
|
968
|
-
"
|
|
969
|
-
"
|
|
1010
|
+
"Scan All Hostgroups": [
|
|
1011
|
+
"すべてのホストグループのスキャン"
|
|
970
1012
|
],
|
|
971
|
-
"
|
|
972
|
-
"
|
|
1013
|
+
"Schedule": [
|
|
1014
|
+
"スケジュール"
|
|
973
1015
|
],
|
|
974
|
-
"
|
|
975
|
-
"
|
|
1016
|
+
"Select Action": [
|
|
1017
|
+
"アクションの選択"
|
|
976
1018
|
],
|
|
977
|
-
"
|
|
978
|
-
"
|
|
1019
|
+
"Select Compliance Policy": [
|
|
1020
|
+
"コンプライアンスポリシーの選択"
|
|
979
1021
|
],
|
|
980
|
-
"
|
|
981
|
-
"
|
|
1022
|
+
"Select OpenSCAP Proxy": [
|
|
1023
|
+
"OpenSCAP プロキシーの選択"
|
|
982
1024
|
],
|
|
983
|
-
"
|
|
984
|
-
"
|
|
1025
|
+
"Select all items in this page": [
|
|
1026
|
+
"このページのすべての項目を選択"
|
|
985
1027
|
],
|
|
986
|
-
"
|
|
1028
|
+
"Select remediation method": [
|
|
987
1029
|
""
|
|
988
1030
|
],
|
|
989
|
-
"
|
|
1031
|
+
"Select snippet": [
|
|
990
1032
|
""
|
|
991
1033
|
],
|
|
992
|
-
"
|
|
1034
|
+
"Severity": [
|
|
1035
|
+
"重要度"
|
|
1036
|
+
],
|
|
1037
|
+
"Show Guide": [
|
|
1038
|
+
"ガイドの表示"
|
|
1039
|
+
],
|
|
1040
|
+
"Show a Policy": [
|
|
1041
|
+
"ポリシーの表示"
|
|
1042
|
+
],
|
|
1043
|
+
"Show a Tailoring file": [
|
|
1044
|
+
"テーラリングファイルの表示"
|
|
1045
|
+
],
|
|
1046
|
+
"Show a policy's OVAL content": [
|
|
993
1047
|
""
|
|
994
1048
|
],
|
|
995
|
-
"
|
|
996
|
-
"
|
|
1049
|
+
"Show a policy's SCAP content": [
|
|
1050
|
+
"ポリシーの SCAP コンテンツの表示"
|
|
997
1051
|
],
|
|
998
|
-
"
|
|
999
|
-
"
|
|
1052
|
+
"Show a policy's Tailoring file": [
|
|
1053
|
+
"ポリシーのテーラリングファイルの表示"
|
|
1000
1054
|
],
|
|
1001
|
-
"
|
|
1002
|
-
"
|
|
1055
|
+
"Show an ARF report": [
|
|
1056
|
+
"ARF レポートの表示"
|
|
1003
1057
|
],
|
|
1004
|
-
"
|
|
1005
|
-
"
|
|
1058
|
+
"Show an OVAL Policy": [
|
|
1059
|
+
"OVAL ポリシーの表示"
|
|
1006
1060
|
],
|
|
1007
|
-
"
|
|
1008
|
-
"
|
|
1061
|
+
"Show an OVAL content": [
|
|
1062
|
+
"OVAL コンテンツの表示"
|
|
1009
1063
|
],
|
|
1010
|
-
"
|
|
1011
|
-
"
|
|
1064
|
+
"Show an SCAP content": [
|
|
1065
|
+
"SCAP コンテンツの表示"
|
|
1012
1066
|
],
|
|
1013
|
-
"
|
|
1014
|
-
"
|
|
1067
|
+
"Show config information for foreman_scap_client": [
|
|
1068
|
+
"foreman_scap_client の設定情報の表示"
|
|
1015
1069
|
],
|
|
1016
|
-
"
|
|
1017
|
-
"
|
|
1070
|
+
"Show log messages:": [
|
|
1071
|
+
"ログメッセージの表示:"
|
|
1018
1072
|
],
|
|
1019
|
-
"
|
|
1020
|
-
"
|
|
1073
|
+
"Smart Class Parameters": [
|
|
1074
|
+
"スマートクラスパラメーター"
|
|
1021
1075
|
],
|
|
1022
|
-
"
|
|
1023
|
-
"
|
|
1076
|
+
"Snippet": [
|
|
1077
|
+
""
|
|
1024
1078
|
],
|
|
1025
|
-
"
|
|
1026
|
-
"
|
|
1079
|
+
"Something went wrong while selecting compliance reports - %s": [
|
|
1080
|
+
"コンプライアンスレポートの選択中に問題が発生しました: %s"
|
|
1027
1081
|
],
|
|
1028
|
-
"
|
|
1029
|
-
"
|
|
1082
|
+
"Something went wrong while selecting hosts - %s": [
|
|
1083
|
+
"ホストの選択中に問題が発生しました: %s"
|
|
1030
1084
|
],
|
|
1031
1085
|
"Spool errors": [
|
|
1032
1086
|
"スプールエラー"
|
|
1033
1087
|
],
|
|
1034
|
-
"
|
|
1035
|
-
"
|
|
1088
|
+
"Status chart": [
|
|
1089
|
+
"状態チャート"
|
|
1036
1090
|
],
|
|
1037
|
-
"
|
|
1038
|
-
"
|
|
1091
|
+
"Status table": [
|
|
1092
|
+
"状態テーブル"
|
|
1039
1093
|
],
|
|
1040
|
-
"
|
|
1041
|
-
"
|
|
1094
|
+
"Submit": [
|
|
1095
|
+
"送信"
|
|
1042
1096
|
],
|
|
1043
|
-
"
|
|
1044
|
-
"
|
|
1097
|
+
"Successfully copied to clipboard!": [
|
|
1098
|
+
""
|
|
1045
1099
|
],
|
|
1046
|
-
"
|
|
1047
|
-
"
|
|
1100
|
+
"Successfully deleted %s compliance reports": [
|
|
1101
|
+
"%s コンプライアンスレポートが正常に削除されました"
|
|
1048
1102
|
],
|
|
1049
|
-
"
|
|
1050
|
-
"
|
|
1103
|
+
"Successfully deleted ARF report.": [
|
|
1104
|
+
"ARF レポートが正常に削除されました。"
|
|
1051
1105
|
],
|
|
1052
|
-
"
|
|
1053
|
-
"
|
|
1106
|
+
"Summary from %{time} ago to now": [
|
|
1107
|
+
"過去 %{time} から今までの概要"
|
|
1054
1108
|
],
|
|
1055
|
-
"
|
|
1056
|
-
"
|
|
1109
|
+
"Summary report for OpenScap from Foreman": [
|
|
1110
|
+
"Foreman からの OpenScap の概要レポート"
|
|
1057
1111
|
],
|
|
1058
|
-
"
|
|
1059
|
-
"
|
|
1112
|
+
"Summary report from Foreman server at %{foreman_url}": [
|
|
1113
|
+
"%{foreman_url} にある Foreman サーバーからの概要レポート"
|
|
1060
1114
|
],
|
|
1061
|
-
"
|
|
1062
|
-
"
|
|
1115
|
+
"Sync contents that have remote source URL": [
|
|
1116
|
+
"リモートソース URL を持つコンテンツの同期"
|
|
1063
1117
|
],
|
|
1064
|
-
"
|
|
1065
|
-
""
|
|
1118
|
+
"Table of CVEs for OVAL policy": [
|
|
1119
|
+
"OVAL ポリシーの CVE テーブル"
|
|
1066
1120
|
],
|
|
1067
|
-
"
|
|
1121
|
+
"Table of hostgroups for OVAL policy": [
|
|
1068
1122
|
""
|
|
1069
1123
|
],
|
|
1070
|
-
"
|
|
1071
|
-
""
|
|
1124
|
+
"Tailoring File": [
|
|
1125
|
+
"テーラリングファイル"
|
|
1072
1126
|
],
|
|
1073
|
-
"
|
|
1074
|
-
""
|
|
1127
|
+
"Tailoring Files": [
|
|
1128
|
+
"テーラリングファイル"
|
|
1075
1129
|
],
|
|
1076
|
-
"
|
|
1077
|
-
""
|
|
1130
|
+
"Tailoring file ID": [
|
|
1131
|
+
"テーラリングファイル ID"
|
|
1078
1132
|
],
|
|
1079
|
-
"
|
|
1080
|
-
""
|
|
1133
|
+
"Tailoring file name": [
|
|
1134
|
+
"テーラリングファイル名"
|
|
1081
1135
|
],
|
|
1082
|
-
"
|
|
1083
|
-
""
|
|
1136
|
+
"Tailoring file profile ID": [
|
|
1137
|
+
"テーラリングファイルのプロファイル ID"
|
|
1084
1138
|
],
|
|
1085
|
-
"%s
|
|
1139
|
+
"The %s proxy does not have Openscap feature enabled. Either set correct OpenSCAP Proxy or unset it.": [
|
|
1086
1140
|
""
|
|
1087
1141
|
],
|
|
1088
|
-
"
|
|
1089
|
-
"
|
|
1090
|
-
],
|
|
1091
|
-
"SCAP contents": [
|
|
1092
|
-
"SCAP コンテンツ"
|
|
1093
|
-
],
|
|
1094
|
-
"Reports": [
|
|
1095
|
-
"レポート"
|
|
1096
|
-
],
|
|
1097
|
-
"OVAL Contents": [
|
|
1098
|
-
"OVAL コンテンツ"
|
|
1142
|
+
"The Security Content Automation Protocol (SCAP), combines a number of open standards that are used to enumerate software flaws and\\n configuration issues related to security. ": [
|
|
1143
|
+
"Security Content Automation Protocol (SCAP) は、ソフトウェアの不具合およびセキュリティーに関連する設定の問題を列挙するために使用される\\n 数多くのオープンスタンダードの組み合わせです。 "
|
|
1099
1144
|
],
|
|
1100
|
-
"
|
|
1101
|
-
"
|
|
1145
|
+
"The following %{key_name} were missing for %{item_name}: %{key_names}. Make sure they are imported before proceeding.": [
|
|
1146
|
+
"以下の %{key_name} が %{item_name}: %{key_names} にありませんでした。続行前にインポートされていることを確認してください。"
|
|
1102
1147
|
],
|
|
1103
|
-
"
|
|
1104
|
-
"
|
|
1148
|
+
"The following Ansible Variables were not found: %{missing_vars}, please import them before running this action again.": [
|
|
1149
|
+
"次の Ansible 変数が見つかりませんでした: %{missing_vars}。このアクションを再度実行する前に、Ansible 変数をインポートしてください。"
|
|
1105
1150
|
],
|
|
1106
|
-
"
|
|
1107
|
-
"
|
|
1151
|
+
"The following Smart Proxies need to be updated to unlock the feature: %s. ": [
|
|
1152
|
+
"以下のスマートプロキシーを更新して機能のロックを解除する必要があります: %s "
|
|
1108
1153
|
],
|
|
1109
|
-
"
|
|
1110
|
-
"
|
|
1154
|
+
"The following proxies could not be reached: %s. Please make sure they are available so Foreman can check their versions.": [
|
|
1155
|
+
"以下のプロキシーに到達できませんでした: %s。Foreman がバージョンを確認できるように、プロキシーが利用可能であることを確認してください。"
|
|
1111
1156
|
],
|
|
1112
|
-
"
|
|
1113
|
-
"
|
|
1157
|
+
"The identifier of the host": [
|
|
1158
|
+
"ホストの ID"
|
|
1114
1159
|
],
|
|
1115
|
-
"
|
|
1116
|
-
"
|
|
1160
|
+
"The job has started on selected host(s), you can check the status on the job details page.": [
|
|
1161
|
+
""
|
|
1117
1162
|
],
|
|
1118
|
-
"
|
|
1163
|
+
"There are significant differences in deployment options.": [
|
|
1164
|
+
"デプロイメントオプションには大きな違いがあります。"
|
|
1165
|
+
],
|
|
1166
|
+
"There is no job to remediate with. Please remediate manually.": [
|
|
1119
1167
|
""
|
|
1120
1168
|
],
|
|
1121
|
-
"
|
|
1169
|
+
"There was a following error when deleting %(name)s: %(error)s": [
|
|
1122
1170
|
""
|
|
1123
1171
|
],
|
|
1124
|
-
"There
|
|
1172
|
+
"There was a following error when updating OVAL policy: %s": [
|
|
1125
1173
|
""
|
|
1126
1174
|
],
|
|
1127
|
-
"
|
|
1175
|
+
"There's no available report for this host": [
|
|
1128
1176
|
""
|
|
1129
1177
|
],
|
|
1130
|
-
"
|
|
1131
|
-
"
|
|
1178
|
+
"This feature is temporarily disabled. ": [
|
|
1179
|
+
"この機能は一時的に無効にされています。 "
|
|
1132
1180
|
],
|
|
1133
|
-
"
|
|
1181
|
+
"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.": [
|
|
1134
1182
|
""
|
|
1135
1183
|
],
|
|
1136
|
-
"
|
|
1137
|
-
""
|
|
1184
|
+
"This profile will be used to override the one from scap content": [
|
|
1185
|
+
"このプロファイルは scrap コンテンツからのものを上書きするために使用されます"
|
|
1138
1186
|
],
|
|
1139
|
-
"
|
|
1187
|
+
"Title": [
|
|
1140
1188
|
""
|
|
1141
1189
|
],
|
|
1142
|
-
"
|
|
1190
|
+
"To deploy foreman_scap_client, ansible roles run needs to be triggered manually. Manual run is also required after any change to this policy.": [
|
|
1143
1191
|
""
|
|
1144
1192
|
],
|
|
1145
|
-
"
|
|
1146
|
-
"
|
|
1193
|
+
"Total": [
|
|
1194
|
+
"合計"
|
|
1147
1195
|
],
|
|
1148
|
-
"
|
|
1149
|
-
""
|
|
1196
|
+
"Total hosts with policy: %s": [
|
|
1197
|
+
"ポリシーが割り当てられたホスト総数: %s"
|
|
1150
1198
|
],
|
|
1151
|
-
"
|
|
1152
|
-
""
|
|
1199
|
+
"Total hosts with reports where policy is no longer assigned.": [
|
|
1200
|
+
"ポリシーの割り当てが解除されたレポートが含まれるホストの総数。"
|
|
1153
1201
|
],
|
|
1154
|
-
"
|
|
1155
|
-
"
|
|
1202
|
+
"Total of one host": [
|
|
1203
|
+
"合計ホスト 1 台"
|
|
1156
1204
|
],
|
|
1157
|
-
"
|
|
1205
|
+
"Type a hostgroup name...": [
|
|
1158
1206
|
""
|
|
1159
1207
|
],
|
|
1208
|
+
"Type of the upload": [
|
|
1209
|
+
"アップロードの種類"
|
|
1210
|
+
],
|
|
1160
1211
|
"URL": [
|
|
1161
1212
|
""
|
|
1162
1213
|
],
|
|
1163
|
-
"
|
|
1164
|
-
""
|
|
1214
|
+
"URL of the OVAL content file": [
|
|
1215
|
+
"OVAL コンテンツファイルの URL"
|
|
1165
1216
|
],
|
|
1166
|
-
"
|
|
1167
|
-
"
|
|
1217
|
+
"Unable to get HTML version of requested report from Smart Proxy": [
|
|
1218
|
+
"要求されたレポートの HTML バージョンをスマートプロキシーから取得できません"
|
|
1168
1219
|
],
|
|
1169
|
-
"
|
|
1170
|
-
""
|
|
1220
|
+
"Unable to get XML version of requested report from Smart Proxy": [
|
|
1221
|
+
"要求されたレポートの XML バージョンをスマートプロキシーから取得できません"
|
|
1171
1222
|
],
|
|
1172
|
-
"
|
|
1173
|
-
""
|
|
1223
|
+
"Unassign Compliance Policy": [
|
|
1224
|
+
"コンプライアンスポリシーの割り当て解除"
|
|
1174
1225
|
],
|
|
1175
|
-
"
|
|
1176
|
-
""
|
|
1226
|
+
"Unknown Compliance status": [
|
|
1227
|
+
"不明なコンプライアンスステータス"
|
|
1177
1228
|
],
|
|
1178
|
-
"OVAL
|
|
1179
|
-
""
|
|
1229
|
+
"Unknown OVAL status": [
|
|
1230
|
+
"OVAL の不明なステータス"
|
|
1180
1231
|
],
|
|
1181
|
-
"
|
|
1232
|
+
"Unknown error when submitting data, please try again later.": [
|
|
1182
1233
|
""
|
|
1183
1234
|
],
|
|
1184
|
-
"
|
|
1235
|
+
"Unknown schedule": [
|
|
1185
1236
|
""
|
|
1186
1237
|
],
|
|
1187
|
-
"
|
|
1188
|
-
""
|
|
1238
|
+
"Update a Policy": [
|
|
1239
|
+
"ポリシーの更新"
|
|
1189
1240
|
],
|
|
1190
|
-
"
|
|
1191
|
-
""
|
|
1241
|
+
"Update a Tailoring file": [
|
|
1242
|
+
"テーラリングファイルの更新"
|
|
1192
1243
|
],
|
|
1193
|
-
"
|
|
1194
|
-
"OVAL
|
|
1244
|
+
"Update an OVAL Policy": [
|
|
1245
|
+
"OVAL ポリシーの更新"
|
|
1195
1246
|
],
|
|
1196
|
-
"
|
|
1197
|
-
""
|
|
1247
|
+
"Update an OVAL content": [
|
|
1248
|
+
"OVAL コンテンツの更新"
|
|
1198
1249
|
],
|
|
1199
|
-
"
|
|
1200
|
-
""
|
|
1250
|
+
"Update an SCAP content": [
|
|
1251
|
+
"SCAP コンテンツの更新"
|
|
1201
1252
|
],
|
|
1202
|
-
"
|
|
1203
|
-
""
|
|
1253
|
+
"Updated hosts: Assigned with OpenSCAP Proxy: %s": [
|
|
1254
|
+
"更新済みホスト: OpenSCAP プロキシーで割り当て済み: %s"
|
|
1204
1255
|
],
|
|
1205
|
-
"
|
|
1206
|
-
""
|
|
1256
|
+
"Updated hosts: Assigned with compliance policy: %s": [
|
|
1257
|
+
"更新済みホスト: コンプライアンスポリシーで割り当て済み: %s"
|
|
1207
1258
|
],
|
|
1208
|
-
"
|
|
1209
|
-
"
|
|
1259
|
+
"Updated hosts: Unassigned from compliance policy '%s'": [
|
|
1260
|
+
"更新済みホスト: コンプライアンスポリシー '%s' の割り当てなし"
|
|
1210
1261
|
],
|
|
1211
|
-
"
|
|
1212
|
-
""
|
|
1262
|
+
"Upload New SCAP Content": [
|
|
1263
|
+
"新規 SCAP コンテンツをアップロード"
|
|
1213
1264
|
],
|
|
1214
|
-
"
|
|
1215
|
-
""
|
|
1265
|
+
"Upload New Tailoring file": [
|
|
1266
|
+
"新規テーラリングファイルのアップロード"
|
|
1216
1267
|
],
|
|
1217
|
-
"
|
|
1218
|
-
""
|
|
1268
|
+
"Upload an ARF report": [
|
|
1269
|
+
"ARF レポートのアップロード"
|
|
1219
1270
|
],
|
|
1220
|
-
"
|
|
1221
|
-
""
|
|
1271
|
+
"Upload an OVAL report - a list of CVEs for given host": [
|
|
1272
|
+
"OVAL レポートのアップロード: 特定のホストの CVE の一覧"
|
|
1222
1273
|
],
|
|
1223
|
-
"
|
|
1224
|
-
""
|
|
1274
|
+
"Upload new SCAP content file": [
|
|
1275
|
+
"新規 SCAP コンテンツファイルをアップロード"
|
|
1225
1276
|
],
|
|
1226
|
-
"
|
|
1277
|
+
"Upload new Tailoring File": [
|
|
1278
|
+
"新規テーラリングファイルのアップロード"
|
|
1279
|
+
],
|
|
1280
|
+
"Upload scap contents in bulk": [
|
|
1281
|
+
"SCAP コンテンツをまとめてアップロード"
|
|
1282
|
+
],
|
|
1283
|
+
"View Report": [
|
|
1284
|
+
"レポートを表示"
|
|
1285
|
+
],
|
|
1286
|
+
"View full report": [
|
|
1287
|
+
"フルレポートを表示"
|
|
1288
|
+
],
|
|
1289
|
+
"View selected hosts": [
|
|
1227
1290
|
""
|
|
1228
1291
|
],
|
|
1229
|
-
"
|
|
1292
|
+
"Was %s configured successfully?": [
|
|
1293
|
+
"%s は正常に設定されましたか?"
|
|
1294
|
+
],
|
|
1295
|
+
"Was %{model_name} %{name} configured successfully?": [
|
|
1296
|
+
"%{model_name} %%{name} は正常に設定されましたか?"
|
|
1297
|
+
],
|
|
1298
|
+
"Weekly, on %s": [
|
|
1230
1299
|
""
|
|
1231
1300
|
],
|
|
1232
|
-
"
|
|
1233
|
-
"
|
|
1301
|
+
"XCCDF Profile": [
|
|
1302
|
+
"XCCDF プロファイル"
|
|
1234
1303
|
],
|
|
1235
|
-
"
|
|
1236
|
-
"
|
|
1304
|
+
"XCCDF Profile in Tailoring File": [
|
|
1305
|
+
"テーラリングファイルでの XCCDF プロファイル"
|
|
1237
1306
|
],
|
|
1238
|
-
"
|
|
1239
|
-
"
|
|
1307
|
+
"XML containing OVAL content": [
|
|
1308
|
+
"OVAL コンテンツを含む XML"
|
|
1240
1309
|
],
|
|
1241
|
-
"
|
|
1242
|
-
"
|
|
1310
|
+
"XML containing SCAP content": [
|
|
1311
|
+
"SCAP コンテンツを含む XML"
|
|
1243
1312
|
],
|
|
1244
|
-
"
|
|
1245
|
-
"
|
|
1313
|
+
"XML containing tailoring file": [
|
|
1314
|
+
"テーラリングファイルを含む XML"
|
|
1246
1315
|
],
|
|
1247
|
-
"
|
|
1248
|
-
""
|
|
1316
|
+
"Yes": [
|
|
1317
|
+
"はい"
|
|
1249
1318
|
],
|
|
1250
|
-
"
|
|
1319
|
+
"You are not authorized to view the page. ": [
|
|
1251
1320
|
""
|
|
1252
1321
|
],
|
|
1253
|
-
"
|
|
1322
|
+
"You can remediate by running a remote job or you can display a snippet for manual remediation.": [
|
|
1254
1323
|
""
|
|
1255
1324
|
],
|
|
1256
|
-
"
|
|
1257
|
-
"
|
|
1325
|
+
"You can specify custom cron line, e.g. \\\"0 3 * * *\\\", separate each of 5 values by space": [
|
|
1326
|
+
"カスタム cron 行を指定できます (たとえば、\\\"0 3 * * *\\\" のように 5 つの値をスペースで区切ります)"
|
|
1258
1327
|
],
|
|
1259
|
-
"
|
|
1260
|
-
""
|
|
1328
|
+
"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.": [
|
|
1329
|
+
"ARF レポートがないようです。ARF レポートは、指定のコンプライアンスポリシーを基に、特定のホストを 1 回スキャンしたときのサマリーです。"
|
|
1261
1330
|
],
|
|
1262
|
-
"
|
|
1331
|
+
"can't be blank": [
|
|
1263
1332
|
""
|
|
1264
1333
|
],
|
|
1265
|
-
"
|
|
1266
|
-
""
|
|
1334
|
+
"cannot assign to %s, all assigned policies must be deployed in the same way, check 'deploy by' for each assigned policy": [
|
|
1335
|
+
"%s に割り当てることができません。割り当てたポリシーはすべて同じ方法でデプロイする必要があります。割り当て済みのポリシーごとに「デプロイ方法 (deploy by)」を確認してください。"
|
|
1267
1336
|
],
|
|
1268
|
-
"
|
|
1337
|
+
"cause: ": [
|
|
1269
1338
|
""
|
|
1270
1339
|
],
|
|
1271
|
-
"
|
|
1272
|
-
""
|
|
1340
|
+
"documentation": [
|
|
1341
|
+
"ドキュメント"
|
|
1273
1342
|
],
|
|
1274
|
-
"
|
|
1275
|
-
""
|
|
1343
|
+
"does not come from selected tailoring file": [
|
|
1344
|
+
"選択したテーラリングファイルからのものではありません"
|
|
1276
1345
|
],
|
|
1277
|
-
"
|
|
1278
|
-
""
|
|
1346
|
+
"does not consist of 5 parts separated by space": [
|
|
1347
|
+
"スペースで区切られた 5 つの部分で構成されていません"
|
|
1279
1348
|
],
|
|
1280
|
-
"
|
|
1349
|
+
"does not have the selected SCAP content profile": [
|
|
1350
|
+
"選択した SCAP コンテンツプロファイルがありません"
|
|
1351
|
+
],
|
|
1352
|
+
"foreman_ansible plugin not found, please install it before running this action again.": [
|
|
1353
|
+
"foreman_ansible プラグインが見つかりません。このアクションを再度実行する前に、プラグインをインストールしてください。"
|
|
1354
|
+
],
|
|
1355
|
+
"hostgroups": [
|
|
1356
|
+
"ホストグループ"
|
|
1357
|
+
],
|
|
1358
|
+
"hosts": [
|
|
1359
|
+
"ホスト"
|
|
1360
|
+
],
|
|
1361
|
+
"invalid type %s": [
|
|
1362
|
+
"無効なタイプ %s"
|
|
1363
|
+
],
|
|
1364
|
+
"is not a valid cronline": [
|
|
1281
1365
|
""
|
|
1282
1366
|
],
|
|
1283
|
-
"
|
|
1284
|
-
"
|
|
1367
|
+
"is not a valid value": [
|
|
1368
|
+
"有効な値ではありません"
|
|
1285
1369
|
],
|
|
1286
|
-
"
|
|
1287
|
-
"
|
|
1370
|
+
"is not included in SCAP_RESULT": [
|
|
1371
|
+
"SCAP_RESULT に含まれていません"
|
|
1288
1372
|
],
|
|
1289
|
-
"
|
|
1290
|
-
"
|
|
1373
|
+
"items selected. Uncheck to Clear": [
|
|
1374
|
+
"項目が選択されています。クリアするにはチェックを解除してください"
|
|
1291
1375
|
],
|
|
1292
|
-
"
|
|
1293
|
-
"
|
|
1376
|
+
"must be between 1 and 31": [
|
|
1377
|
+
"1 から 31 の間でなければなりません"
|
|
1294
1378
|
],
|
|
1295
|
-
"
|
|
1296
|
-
"
|
|
1379
|
+
"must be present when tailoring file present": [
|
|
1380
|
+
"テーラリングファイルがある場合になければなりません"
|
|
1381
|
+
],
|
|
1382
|
+
"must be present when tailoring file profile present": [
|
|
1383
|
+
"テーラリングファイルのプロファイルがある場合に存在する必要があります"
|
|
1297
1384
|
],
|
|
1298
|
-
"
|
|
1299
|
-
"
|
|
1385
|
+
"must have Openscap feature": [
|
|
1386
|
+
"Openscap 機能がなければなりません"
|
|
1387
|
+
],
|
|
1388
|
+
"theforeman.foreman_scap_client Ansible Role not found, please import it before running this action again.": [
|
|
1389
|
+
"theforeman.foreman_scap_client Ansible ロールが見つかりません。このアクションを再度実行する前に、インポートしてください。"
|
|
1390
|
+
],
|
|
1391
|
+
"these Compliance reports": [
|
|
1392
|
+
"これらのコンプライアンスレポート"
|
|
1300
1393
|
]
|
|
1301
1394
|
}
|
|
1302
1395
|
}
|