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