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