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 个 spool 错误,在代理上直接检查相关的文件"
|
|
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
|
+
"是否存在 forforeman.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
|
+
"选择 Tailoring 文件"
|
|
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
|
+
"数据流 Tailoring 文件"
|
|
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
|
-
"
|
|
287
|
+
"Delete tailoring file %s?": [
|
|
288
|
+
"删除 tailoring 文件 %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
|
+
"当使用 “directory” 上载类型时要上传的目录"
|
|
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
|
+
"将一个 Tailoring 文件下载为 XML"
|
|
340
340
|
],
|
|
341
|
-
"
|
|
342
|
-
"
|
|
341
|
+
"Download an SCAP content as XML": [
|
|
342
|
+
"将 SCAP 内容下载为 XML"
|
|
343
343
|
],
|
|
344
|
-
"
|
|
345
|
-
"
|
|
344
|
+
"Download bzipped ARF report": [
|
|
345
|
+
"下载压缩 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
|
"失败和其他"
|
|
@@ -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
|
+
"无法删除主机 %{host_name} 在 %{reported_at} 报告的 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
|
+
"无法以 HTML 格式下载 ARF 报告:%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
|
+
"从代理获取 spool 状态失败"
|
|
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 Report 失败,在为 %s 上传时没有在参数中找到 OpenSCAP 代理名或 url,主机缺少 openscap_proxy"
|
|
406
400
|
],
|
|
407
401
|
"Failed|F": [
|
|
408
402
|
"Failed|F"
|
|
409
403
|
],
|
|
410
|
-
"
|
|
411
|
-
"
|
|
412
|
-
],
|
|
413
|
-
"Othered": [
|
|
414
|
-
"其它"
|
|
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
|
+
"当使用 “files” 上传类型时要上传的文件路径"
|
|
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 安全指南,并创建 SCAP 配置文件,供您通过\\n %s 分配到主机/主机组"
|
|
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 配置文件的自定义更改,它们可通过\\n %s 应用于主机"
|
|
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 参数?"
|
|
478
511
|
],
|
|
479
|
-
"
|
|
480
|
-
"
|
|
512
|
+
"Is foreman_ansible present?": [
|
|
513
|
+
"foreman_ansible 存在吗?"
|
|
481
514
|
],
|
|
482
|
-
"
|
|
483
|
-
"
|
|
515
|
+
"Is theforeman.foreman_scap_client present?": [
|
|
516
|
+
"是否存在 foreman.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
|
+
"列出 Tailoring 文件"
|
|
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 行(只在时段为 \\\"custom\\\" 时适用)"
|
|
745
|
+
],
|
|
746
|
+
"OVAL Policy schedule day of month (only if period == \\\"monthly\\\")": [
|
|
747
|
+
"OVAL 每月的策略调度日(只在时段为 \\\"monthly\\\" 时适用)"
|
|
748
|
+
],
|
|
749
|
+
"OVAL Policy schedule period (weekly, monthly, custom)": [
|
|
750
|
+
"OVAL 策略调度时段(每周、每月、自定义)"
|
|
751
|
+
],
|
|
752
|
+
"OVAL Policy schedule weekday (only if period == \\\"weekly\\\")": [
|
|
753
|
+
"OVAL 策略调度工作日(只在时段为 \\\"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
|
+
"其它"
|
|
751
808
|
],
|
|
752
|
-
"
|
|
753
|
-
"
|
|
809
|
+
"Othered|O": [
|
|
810
|
+
"Othered|O"
|
|
754
811
|
],
|
|
755
|
-
"
|
|
756
|
-
"
|
|
812
|
+
"Passed": [
|
|
813
|
+
"通过"
|
|
757
814
|
],
|
|
758
|
-
"
|
|
759
|
-
"
|
|
815
|
+
"Passed|P": [
|
|
816
|
+
"Passed|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},预期为%%{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 行(只在时段为 \\\"custom\\\" 时适用)"
|
|
832
871
|
],
|
|
833
|
-
"
|
|
834
|
-
"
|
|
872
|
+
"Policy schedule day of month (only if period == \\\"monthly\\\")": [
|
|
873
|
+
"每月的策略调度日(只在时段为 \\\"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
|
+
"策略调度工作日(只在时段为 \\\"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
|
+
"代理服务器未能从 spool 发送报告至 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
|
+
"显示策略的 Tailoring 文件"
|
|
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
|
"Spool 错误"
|
|
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 服务器的摘要报告,于 %{foreman_url}"
|
|
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
|
+
"Tailoring 文件"
|
|
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
|
+
"安全内容自动化协议(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
|
+
"%{item_name} 缺少以下 %{key_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},请再次导入它们,然后再运行此操作。"
|
|
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
|
+
"这个配置文件将用于覆盖 scap 内容中的配置文件"
|
|
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
|
+
"总共一个主机"
|
|
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
|
-
"
|
|
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 报告是针对给定的合规策略对特定主机执行单次扫描的摘要。"
|
|
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
|
}
|