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=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);"
|
|
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
|
+
"Узлы, соответствующие нормам SCAP"
|
|
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
|
-
"
|
|
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
|
-
"У"
|
|
406
|
-
],
|
|
407
402
|
"Failed|F": [
|
|
408
403
|
"Н"
|
|
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
|
-
"Узлы, соответствующие нормам SCAP"
|
|
466
|
-
],
|
|
467
|
-
"Incompliant hosts": [
|
|
468
|
-
"Узлы, не соответствующие нормам SCAP"
|
|
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
|
+
"Узлы, не соответствующие нормам SCAP"
|
|
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
|
-
"
|
|
570
|
+
"More details": [
|
|
571
|
+
"Подробности"
|
|
572
|
+
],
|
|
573
|
+
"Name": [
|
|
574
|
+
"Имя"
|
|
575
|
+
],
|
|
576
|
+
"Never audited": [
|
|
577
|
+
"Никогда не проверялись"
|
|
578
|
+
],
|
|
579
|
+
"New Compliance Policy": [
|
|
580
|
+
"Новая политика"
|
|
581
|
+
],
|
|
582
|
+
"New OVAL Content": [
|
|
573
583
|
""
|
|
574
584
|
],
|
|
575
|
-
"
|
|
585
|
+
"New Policy": [
|
|
576
586
|
""
|
|
577
587
|
],
|
|
578
|
-
"
|
|
588
|
+
"New SCAP Content": [
|
|
579
589
|
""
|
|
580
590
|
],
|
|
581
|
-
"
|
|
591
|
+
"New Tailoring File": [
|
|
582
592
|
""
|
|
583
593
|
],
|
|
584
|
-
"
|
|
594
|
+
"Next": [
|
|
595
|
+
"Далее"
|
|
596
|
+
],
|
|
597
|
+
"No": [
|
|
598
|
+
"Нет"
|
|
599
|
+
],
|
|
600
|
+
"No ARF reports for this policy": [
|
|
601
|
+
"Нет отчетов ARF для этой политики"
|
|
602
|
+
],
|
|
603
|
+
"No CVEs found.": [
|
|
585
604
|
""
|
|
586
605
|
],
|
|
587
|
-
"
|
|
588
|
-
"
|
|
606
|
+
"No Hostgroups found.": [
|
|
607
|
+
""
|
|
589
608
|
],
|
|
590
|
-
"
|
|
609
|
+
"No OVAL Content found": [
|
|
591
610
|
""
|
|
592
611
|
],
|
|
593
|
-
"
|
|
612
|
+
"No OVAL Contents found.": [
|
|
594
613
|
""
|
|
595
614
|
],
|
|
596
|
-
"
|
|
615
|
+
"No OVAL Policies found": [
|
|
597
616
|
""
|
|
598
617
|
],
|
|
599
|
-
"
|
|
618
|
+
"No OVAL Policy found": [
|
|
600
619
|
""
|
|
601
620
|
],
|
|
602
|
-
"
|
|
621
|
+
"No OpenSCAP Proxy selected.": [
|
|
603
622
|
""
|
|
604
623
|
],
|
|
605
|
-
"
|
|
624
|
+
"No OpenSCAP proxy found for %{class} with id %{id}": [
|
|
606
625
|
""
|
|
607
626
|
],
|
|
608
|
-
"
|
|
627
|
+
"No Tailoring file assigned for policy with id %s": [
|
|
609
628
|
""
|
|
610
629
|
],
|
|
611
|
-
"
|
|
630
|
+
"No Vulnerabilities found": [
|
|
612
631
|
""
|
|
613
632
|
],
|
|
614
|
-
"
|
|
615
|
-
"
|
|
633
|
+
"No available proxy to validate. Returned with error: %s": [
|
|
634
|
+
"Нет доступных прокси для проведения проверки. Ошибка: %s"
|
|
616
635
|
],
|
|
617
|
-
"
|
|
618
|
-
"
|
|
636
|
+
"No compliance policy selected.": [
|
|
637
|
+
"Политика соответствий не выбрана."
|
|
619
638
|
],
|
|
620
|
-
"
|
|
639
|
+
"No compliance reports selected": [
|
|
621
640
|
""
|
|
622
641
|
],
|
|
623
|
-
"
|
|
642
|
+
"No compliance reports were found.": [
|
|
624
643
|
""
|
|
625
644
|
],
|
|
626
|
-
"
|
|
627
|
-
""
|
|
645
|
+
"No hosts selected": [
|
|
646
|
+
"Не выбран узел"
|
|
628
647
|
],
|
|
629
|
-
"
|
|
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
|
+
"Прокси OpenSCAP"
|
|
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
|
+
"Д"
|
|
763
812
|
],
|
|
764
|
-
"
|
|
765
|
-
"
|
|
813
|
+
"Passed": [
|
|
814
|
+
"Успешно"
|
|
766
815
|
],
|
|
767
|
-
"
|
|
768
|
-
"
|
|
816
|
+
"Passed|P": [
|
|
817
|
+
"У"
|
|
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
|
-
"
|
|
920
|
-
"
|
|
984
|
+
"Run OpenSCAP remediation with Shell": [
|
|
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": [
|
|
1075
|
+
"Параметры Смарт-класса"
|
|
1076
|
+
],
|
|
1077
|
+
"Snippet": [
|
|
995
1078
|
""
|
|
996
1079
|
],
|
|
997
|
-
"
|
|
998
|
-
"
|
|
1080
|
+
"Something went wrong while selecting compliance reports - %s": [
|
|
1081
|
+
"Произошли ошибки при выборе отчетов: %s"
|
|
999
1082
|
],
|
|
1000
|
-
"
|
|
1083
|
+
"Something went wrong while selecting hosts - %s": [
|
|
1084
|
+
"Произошли ошибки при выборе узлов: %s"
|
|
1085
|
+
],
|
|
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
|
-
"
|
|
1176
|
+
"There's no available report for this host": [
|
|
1177
|
+
""
|
|
1092
1178
|
],
|
|
1093
|
-
"
|
|
1094
|
-
"
|
|
1179
|
+
"This feature is temporarily disabled. ": [
|
|
1180
|
+
""
|
|
1095
1181
|
],
|
|
1096
|
-
"
|
|
1097
|
-
"
|
|
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.": [
|
|
1183
|
+
""
|
|
1098
1184
|
],
|
|
1099
|
-
"
|
|
1185
|
+
"This profile will be used to override the one from scap content": [
|
|
1100
1186
|
""
|
|
1101
1187
|
],
|
|
1102
|
-
"
|
|
1188
|
+
"Title": [
|
|
1103
1189
|
""
|
|
1104
1190
|
],
|
|
1105
|
-
"
|
|
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.": [
|
|
1106
1192
|
""
|
|
1107
1193
|
],
|
|
1108
|
-
"
|
|
1109
|
-
"
|
|
1194
|
+
"Total": [
|
|
1195
|
+
"Всего"
|
|
1110
1196
|
],
|
|
1111
|
-
"
|
|
1197
|
+
"Total hosts with policy: %s": [
|
|
1112
1198
|
""
|
|
1113
1199
|
],
|
|
1114
|
-
"
|
|
1200
|
+
"Total hosts with reports where policy is no longer assigned.": [
|
|
1115
1201
|
""
|
|
1116
1202
|
],
|
|
1117
|
-
"
|
|
1203
|
+
"Total of one host": [
|
|
1204
|
+
"",
|
|
1118
1205
|
""
|
|
1119
1206
|
],
|
|
1120
|
-
"
|
|
1207
|
+
"Type a hostgroup name...": [
|
|
1121
1208
|
""
|
|
1122
1209
|
],
|
|
1123
|
-
"
|
|
1210
|
+
"Type of the upload": [
|
|
1124
1211
|
""
|
|
1125
1212
|
],
|
|
1126
|
-
"
|
|
1213
|
+
"URL": [
|
|
1127
1214
|
""
|
|
1128
1215
|
],
|
|
1129
|
-
"
|
|
1216
|
+
"URL of the OVAL content file": [
|
|
1130
1217
|
""
|
|
1131
1218
|
],
|
|
1132
|
-
"
|
|
1219
|
+
"Unable to get HTML version of requested report from Smart Proxy": [
|
|
1133
1220
|
""
|
|
1134
1221
|
],
|
|
1135
|
-
"
|
|
1222
|
+
"Unable to get XML version of requested report from Smart Proxy": [
|
|
1136
1223
|
""
|
|
1137
1224
|
],
|
|
1138
|
-
"
|
|
1139
|
-
""
|
|
1225
|
+
"Unassign Compliance Policy": [
|
|
1226
|
+
"Отменить политику"
|
|
1140
1227
|
],
|
|
1141
|
-
"
|
|
1142
|
-
""
|
|
1228
|
+
"Unknown Compliance status": [
|
|
1229
|
+
"Неизвестный статус"
|
|
1143
1230
|
],
|
|
1144
|
-
"
|
|
1231
|
+
"Unknown OVAL status": [
|
|
1145
1232
|
""
|
|
1146
1233
|
],
|
|
1147
|
-
"
|
|
1234
|
+
"Unknown error when submitting data, please try again later.": [
|
|
1148
1235
|
""
|
|
1149
1236
|
],
|
|
1150
|
-
"
|
|
1237
|
+
"Unknown schedule": [
|
|
1151
1238
|
""
|
|
1152
1239
|
],
|
|
1153
|
-
"
|
|
1240
|
+
"Update a Policy": [
|
|
1154
1241
|
""
|
|
1155
1242
|
],
|
|
1156
|
-
"
|
|
1243
|
+
"Update a Tailoring file": [
|
|
1157
1244
|
""
|
|
1158
1245
|
],
|
|
1159
|
-
"
|
|
1246
|
+
"Update an OVAL Policy": [
|
|
1160
1247
|
""
|
|
1161
1248
|
],
|
|
1162
|
-
"
|
|
1249
|
+
"Update an OVAL content": [
|
|
1163
1250
|
""
|
|
1164
1251
|
],
|
|
1165
|
-
"
|
|
1166
|
-
""
|
|
1252
|
+
"Update an SCAP content": [
|
|
1253
|
+
"Обновить описание SCAP"
|
|
1167
1254
|
],
|
|
1168
|
-
"
|
|
1255
|
+
"Updated hosts: Assigned with OpenSCAP Proxy: %s": [
|
|
1169
1256
|
""
|
|
1170
1257
|
],
|
|
1171
|
-
"
|
|
1258
|
+
"Updated hosts: Assigned with compliance policy: %s": [
|
|
1172
1259
|
""
|
|
1173
1260
|
],
|
|
1174
|
-
"
|
|
1175
|
-
""
|
|
1261
|
+
"Updated hosts: Unassigned from compliance policy '%s'": [
|
|
1262
|
+
"Узлы больше не регламентируются политикой «%s»"
|
|
1176
1263
|
],
|
|
1177
|
-
"
|
|
1178
|
-
""
|
|
1264
|
+
"Upload New SCAP Content": [
|
|
1265
|
+
"Добавить описание SCAP"
|
|
1179
1266
|
],
|
|
1180
|
-
"
|
|
1267
|
+
"Upload New Tailoring file": [
|
|
1181
1268
|
""
|
|
1182
1269
|
],
|
|
1183
|
-
"
|
|
1184
|
-
""
|
|
1270
|
+
"Upload an ARF report": [
|
|
1271
|
+
"Выгрузить отчет ARF"
|
|
1185
1272
|
],
|
|
1186
|
-
"OVAL
|
|
1273
|
+
"Upload an OVAL report - a list of CVEs for given host": [
|
|
1187
1274
|
""
|
|
1188
1275
|
],
|
|
1189
|
-
"
|
|
1190
|
-
""
|
|
1276
|
+
"Upload new SCAP content file": [
|
|
1277
|
+
"Добавление файла описания SCAP"
|
|
1191
1278
|
],
|
|
1192
|
-
"
|
|
1279
|
+
"Upload new Tailoring File": [
|
|
1193
1280
|
""
|
|
1194
1281
|
],
|
|
1195
|
-
"
|
|
1282
|
+
"Upload scap contents in bulk": [
|
|
1196
1283
|
""
|
|
1197
1284
|
],
|
|
1198
|
-
"
|
|
1199
|
-
""
|
|
1285
|
+
"View Report": [
|
|
1286
|
+
"Показать отчет"
|
|
1200
1287
|
],
|
|
1201
|
-
"
|
|
1202
|
-
""
|
|
1288
|
+
"View full report": [
|
|
1289
|
+
"Показать полный отчет"
|
|
1203
1290
|
],
|
|
1204
|
-
"
|
|
1291
|
+
"View selected hosts": [
|
|
1205
1292
|
""
|
|
1206
1293
|
],
|
|
1207
|
-
"
|
|
1294
|
+
"Was %s configured successfully?": [
|
|
1208
1295
|
""
|
|
1209
1296
|
],
|
|
1210
|
-
"
|
|
1297
|
+
"Was %{model_name} %{name} configured successfully?": [
|
|
1211
1298
|
""
|
|
1212
1299
|
],
|
|
1213
|
-
"
|
|
1300
|
+
"Weekly, on %s": [
|
|
1214
1301
|
""
|
|
1215
1302
|
],
|
|
1216
|
-
"
|
|
1217
|
-
""
|
|
1303
|
+
"XCCDF Profile": [
|
|
1304
|
+
"Профиль XCCDF"
|
|
1218
1305
|
],
|
|
1219
|
-
"
|
|
1306
|
+
"XCCDF Profile in Tailoring File": [
|
|
1220
1307
|
""
|
|
1221
1308
|
],
|
|
1222
|
-
"
|
|
1309
|
+
"XML containing OVAL content": [
|
|
1223
1310
|
""
|
|
1224
1311
|
],
|
|
1225
|
-
"
|
|
1312
|
+
"XML containing SCAP content": [
|
|
1226
1313
|
""
|
|
1227
1314
|
],
|
|
1228
|
-
"
|
|
1315
|
+
"XML containing tailoring file": [
|
|
1229
1316
|
""
|
|
1230
1317
|
],
|
|
1231
|
-
"
|
|
1232
|
-
""
|
|
1318
|
+
"Yes": [
|
|
1319
|
+
"Да"
|
|
1233
1320
|
],
|
|
1234
|
-
"
|
|
1321
|
+
"You are not authorized to view the page. ": [
|
|
1235
1322
|
""
|
|
1236
1323
|
],
|
|
1237
|
-
"
|
|
1324
|
+
"You can remediate by running a remote job or you can display a snippet for manual remediation.": [
|
|
1238
1325
|
""
|
|
1239
1326
|
],
|
|
1240
|
-
"
|
|
1241
|
-
""
|
|
1327
|
+
"You can specify custom cron line, e.g. \\\"0 3 * * *\\\", separate each of 5 values by space": [
|
|
1328
|
+
"Вы можете изменить расписание по своему усмотрению. Строка cron должна состоять из пяти значений, разделенных пробелами, например: «0 3 * * *»"
|
|
1242
1329
|
],
|
|
1243
|
-
"
|
|
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.": [
|
|
1244
1331
|
""
|
|
1245
1332
|
],
|
|
1246
|
-
"
|
|
1333
|
+
"can't be blank": [
|
|
1247
1334
|
""
|
|
1248
1335
|
],
|
|
1249
|
-
"
|
|
1336
|
+
"cannot assign to %s, all assigned policies must be deployed in the same way, check 'deploy by' for each assigned policy": [
|
|
1250
1337
|
""
|
|
1251
1338
|
],
|
|
1252
|
-
"
|
|
1339
|
+
"cause: ": [
|
|
1253
1340
|
""
|
|
1254
1341
|
],
|
|
1255
|
-
"
|
|
1256
|
-
""
|
|
1342
|
+
"documentation": [
|
|
1343
|
+
"документация"
|
|
1257
1344
|
],
|
|
1258
|
-
"
|
|
1345
|
+
"does not come from selected tailoring file": [
|
|
1259
1346
|
""
|
|
1260
1347
|
],
|
|
1261
|
-
"
|
|
1348
|
+
"does not consist of 5 parts separated by space": [
|
|
1262
1349
|
""
|
|
1263
1350
|
],
|
|
1264
|
-
"
|
|
1351
|
+
"does not have the selected SCAP content profile": [
|
|
1265
1352
|
""
|
|
1266
1353
|
],
|
|
1267
|
-
"
|
|
1354
|
+
"foreman_ansible plugin not found, please install it before running this action again.": [
|
|
1268
1355
|
""
|
|
1269
1356
|
],
|
|
1270
|
-
"
|
|
1357
|
+
"hostgroups": [
|
|
1271
1358
|
""
|
|
1272
1359
|
],
|
|
1273
|
-
"
|
|
1274
|
-
""
|
|
1360
|
+
"hosts": [
|
|
1361
|
+
"узлу(ам)"
|
|
1275
1362
|
],
|
|
1276
|
-
"
|
|
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
|
}
|