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