foreman_openscap 0.5.4 → 0.6.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 +7 -7
- data/README.md +14 -0
- data/app/assets/javascripts/foreman_openscap/policy_edit.js +1 -1
- data/app/controllers/api/v2/compliance/policies_controller.rb +12 -9
- data/app/controllers/api/v2/compliance/scap_contents_controller.rb +4 -2
- data/app/controllers/concerns/foreman/controller/parameters/policy.rb +12 -0
- data/app/controllers/concerns/foreman/controller/parameters/policy_api.rb +21 -0
- data/app/controllers/concerns/foreman/controller/parameters/scap_content.rb +15 -0
- data/app/controllers/policies_controller.rb +7 -3
- data/app/controllers/scap_contents_controller.rb +4 -2
- data/app/helpers/{dashboard_helper.rb → compliance_dashboard_helper.rb} +2 -2
- data/app/helpers/policy_dashboard_helper.rb +9 -4
- data/app/models/concerns/foreman_openscap/host_extensions.rb +3 -5
- data/app/models/concerns/foreman_openscap/hostgroup_extensions.rb +1 -1
- data/app/models/concerns/foreman_openscap/log_extensions.rb +0 -1
- data/app/models/concerns/foreman_openscap/openscap_proxy_core_extensions.rb +1 -1
- data/app/models/concerns/foreman_openscap/openscap_proxy_extensions.rb +1 -2
- data/app/models/foreman_openscap/arf_report.rb +6 -4
- data/app/models/foreman_openscap/compliance_status.rb +3 -1
- data/app/models/foreman_openscap/policy.rb +62 -33
- data/app/models/foreman_openscap/scap_content.rb +1 -3
- data/app/views/arf_reports/_list.html.erb +1 -1
- data/app/views/arf_reports/show.html.erb +4 -4
- data/app/views/compliance_hosts/show.html.erb +1 -1
- data/app/views/dashboard/_compliance_host_reports_widget.html.erb +6 -6
- data/app/views/policies/index.html.erb +2 -2
- data/app/views/policies/steps/_schedule_form.html.erb +1 -1
- data/app/views/policies/steps/_step_form.html.erb +1 -0
- data/app/views/policies/welcome.html.erb +1 -1
- data/app/views/policy_dashboard/index.html.erb +2 -2
- data/app/views/scap_contents/index.html.erb +2 -2
- data/app/views/scap_contents/welcome.html.erb +1 -1
- data/db/migrate/20160830113437_remove_deleted_policy.rb +10 -0
- data/db/seeds.d/openscap_policy_notification.rb +2 -0
- data/lib/foreman_openscap/data_migration.rb +1 -1
- data/lib/foreman_openscap/engine.rb +11 -1
- data/lib/foreman_openscap/helper.rb +4 -8
- data/lib/foreman_openscap/version.rb +1 -1
- data/locale/Makefile +60 -0
- data/locale/de/LC_MESSAGES/foreman_openscap.mo +0 -0
- data/locale/de/foreman_openscap.po +616 -0
- data/locale/en_GB/LC_MESSAGES/foreman_openscap.mo +0 -0
- data/locale/en_GB/foreman_openscap.po +616 -0
- data/locale/es/LC_MESSAGES/foreman_openscap.mo +0 -0
- data/locale/es/foreman_openscap.po +616 -0
- data/locale/foreman_openscap.pot +873 -0
- data/locale/fr/LC_MESSAGES/foreman_openscap.mo +0 -0
- data/locale/fr/foreman_openscap.po +616 -0
- data/locale/gl/LC_MESSAGES/foreman_openscap.mo +0 -0
- data/locale/gl/foreman_openscap.po +616 -0
- data/locale/it/LC_MESSAGES/foreman_openscap.mo +0 -0
- data/locale/it/foreman_openscap.po +616 -0
- data/locale/ja/LC_MESSAGES/foreman_openscap.mo +0 -0
- data/locale/ja/foreman_openscap.po +616 -0
- data/locale/ko/LC_MESSAGES/foreman_openscap.mo +0 -0
- data/locale/ko/foreman_openscap.po +616 -0
- data/locale/pt_BR/LC_MESSAGES/foreman_openscap.mo +0 -0
- data/locale/pt_BR/foreman_openscap.po +616 -0
- data/locale/ru/LC_MESSAGES/foreman_openscap.mo +0 -0
- data/locale/ru/foreman_openscap.po +617 -0
- data/locale/sv_SE/LC_MESSAGES/foreman_openscap.mo +0 -0
- data/locale/sv_SE/foreman_openscap.po +616 -0
- data/locale/zanata.xml +29 -0
- data/locale/zh_CN/LC_MESSAGES/foreman_openscap.mo +0 -0
- data/locale/zh_CN/foreman_openscap.po +616 -0
- data/locale/zh_TW/LC_MESSAGES/foreman_openscap.mo +0 -0
- data/locale/zh_TW/foreman_openscap.po +616 -0
- data/test/factories/policy_factory.rb +2 -2
- data/test/functional/api/v2/compliance/policies_controller_test.rb +7 -3
- data/test/test_plugin_helper.rb +35 -37
- data/test/unit/concerns/openscap_proxy_extenstions_test.rb +21 -0
- data/test/unit/openscap_host_test.rb +3 -1
- data/test/unit/policy_test.rb +125 -0
- data/test/unit/scap_content_test.rb +5 -0
- metadata +231 -198
|
@@ -0,0 +1,873 @@
|
|
|
1
|
+
# SOME DESCRIPTIVE TITLE.
|
|
2
|
+
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
|
3
|
+
# This file is distributed under the same license as the foreman_openscap package.
|
|
4
|
+
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
|
5
|
+
#
|
|
6
|
+
#, fuzzy
|
|
7
|
+
msgid ""
|
|
8
|
+
msgstr ""
|
|
9
|
+
"Project-Id-Version: foreman_openscap 1.0.0\n"
|
|
10
|
+
"Report-Msgid-Bugs-To: \n"
|
|
11
|
+
"POT-Creation-Date: 2016-03-18 13:13-0400\n"
|
|
12
|
+
"PO-Revision-Date: 2016-03-18 13:13-0400\n"
|
|
13
|
+
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
|
14
|
+
"Language-Team: LANGUAGE <LL@li.org>\n"
|
|
15
|
+
"Language: \n"
|
|
16
|
+
"MIME-Version: 1.0\n"
|
|
17
|
+
"Content-Type: text/plain; charset=UTF-8\n"
|
|
18
|
+
"Content-Transfer-Encoding: 8bit\n"
|
|
19
|
+
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
|
|
20
|
+
|
|
21
|
+
#: ../app/controllers/api/v2/compliance/arf_reports_controller.rb:39
|
|
22
|
+
msgid "List ARF reports"
|
|
23
|
+
msgstr ""
|
|
24
|
+
|
|
25
|
+
#: ../app/controllers/api/v2/compliance/arf_reports_controller.rb:46
|
|
26
|
+
msgid "Show an ARF report"
|
|
27
|
+
msgstr ""
|
|
28
|
+
|
|
29
|
+
#: ../app/controllers/api/v2/compliance/arf_reports_controller.rb:52
|
|
30
|
+
msgid "Deletes an ARF Report"
|
|
31
|
+
msgstr ""
|
|
32
|
+
|
|
33
|
+
#: ../app/controllers/api/v2/compliance/arf_reports_controller.rb:59
|
|
34
|
+
msgid "Upload an ARF report"
|
|
35
|
+
msgstr ""
|
|
36
|
+
|
|
37
|
+
#: ../app/controllers/api/v2/compliance/policies_controller.rb:30
|
|
38
|
+
#: ../app/controllers/api/v2/compliance/scap_contents_controller.rb:20
|
|
39
|
+
msgid "List SCAP contents"
|
|
40
|
+
msgstr ""
|
|
41
|
+
|
|
42
|
+
#: ../app/controllers/api/v2/compliance/policies_controller.rb:37
|
|
43
|
+
#: ../app/controllers/api/v2/compliance/scap_contents_controller.rb:27
|
|
44
|
+
msgid "Show an SCAP content"
|
|
45
|
+
msgstr ""
|
|
46
|
+
|
|
47
|
+
#: ../app/controllers/api/v2/compliance/policies_controller.rb:45
|
|
48
|
+
msgid "Policy name"
|
|
49
|
+
msgstr ""
|
|
50
|
+
|
|
51
|
+
#: ../app/controllers/api/v2/compliance/policies_controller.rb:46
|
|
52
|
+
msgid "Policy description"
|
|
53
|
+
msgstr ""
|
|
54
|
+
|
|
55
|
+
#: ../app/controllers/api/v2/compliance/policies_controller.rb:47
|
|
56
|
+
msgid "Policy SCAP content ID"
|
|
57
|
+
msgstr ""
|
|
58
|
+
|
|
59
|
+
#: ../app/controllers/api/v2/compliance/policies_controller.rb:48
|
|
60
|
+
msgid "Policy SCAP content profile ID"
|
|
61
|
+
msgstr ""
|
|
62
|
+
|
|
63
|
+
#: ../app/controllers/api/v2/compliance/policies_controller.rb:49
|
|
64
|
+
msgid "Policy schedule period"
|
|
65
|
+
msgstr ""
|
|
66
|
+
|
|
67
|
+
#: ../app/controllers/api/v2/compliance/policies_controller.rb:50
|
|
68
|
+
msgid "Policy schedule weekday"
|
|
69
|
+
msgstr ""
|
|
70
|
+
|
|
71
|
+
#: ../app/controllers/api/v2/compliance/policies_controller.rb:51
|
|
72
|
+
msgid "Apply policy to host groups"
|
|
73
|
+
msgstr ""
|
|
74
|
+
|
|
75
|
+
#: ../app/controllers/api/v2/compliance/policies_controller.rb:56
|
|
76
|
+
msgid "Create a policy"
|
|
77
|
+
msgstr ""
|
|
78
|
+
|
|
79
|
+
#: ../app/controllers/api/v2/compliance/policies_controller.rb:64
|
|
80
|
+
msgid "Update a policy"
|
|
81
|
+
msgstr ""
|
|
82
|
+
|
|
83
|
+
#: ../app/controllers/api/v2/compliance/policies_controller.rb:72
|
|
84
|
+
msgid "Deletes a policy"
|
|
85
|
+
msgstr ""
|
|
86
|
+
|
|
87
|
+
#: ../app/controllers/api/v2/compliance/policies_controller.rb:79
|
|
88
|
+
msgid "Show a policy's SCAP content"
|
|
89
|
+
msgstr ""
|
|
90
|
+
|
|
91
|
+
#: ../app/controllers/api/v2/compliance/scap_contents_controller.rb:38
|
|
92
|
+
msgid "SCAP content name"
|
|
93
|
+
msgstr ""
|
|
94
|
+
|
|
95
|
+
#: ../app/controllers/api/v2/compliance/scap_contents_controller.rb:44
|
|
96
|
+
msgid "Create SCAP content"
|
|
97
|
+
msgstr ""
|
|
98
|
+
|
|
99
|
+
#: ../app/controllers/api/v2/compliance/scap_contents_controller.rb:52
|
|
100
|
+
msgid "Update an SCAP content"
|
|
101
|
+
msgstr ""
|
|
102
|
+
|
|
103
|
+
#: ../app/controllers/api/v2/compliance/scap_contents_controller.rb:60
|
|
104
|
+
msgid "Deletes an SCAP content"
|
|
105
|
+
msgstr ""
|
|
106
|
+
|
|
107
|
+
#: ../app/controllers/arf_reports_controller.rb:36
|
|
108
|
+
msgid "Failed to downloaded ARF report as bzip: %s"
|
|
109
|
+
msgstr ""
|
|
110
|
+
|
|
111
|
+
#: ../app/controllers/arf_reports_controller.rb:43
|
|
112
|
+
msgid "Successfully deleted ARF report."
|
|
113
|
+
msgstr ""
|
|
114
|
+
|
|
115
|
+
#: ../app/controllers/arf_reports_controller.rb:45
|
|
116
|
+
msgid "Failed to delete ARF Report for host %{host_name} reported at %{reported_at}"
|
|
117
|
+
msgstr ""
|
|
118
|
+
|
|
119
|
+
#: ../app/controllers/arf_reports_controller.rb:55
|
|
120
|
+
msgid "Failed to delete %s compliance reports"
|
|
121
|
+
msgstr ""
|
|
122
|
+
|
|
123
|
+
#: ../app/controllers/arf_reports_controller.rb:58
|
|
124
|
+
msgid "Successfully deleted %s compliance reports"
|
|
125
|
+
msgstr ""
|
|
126
|
+
|
|
127
|
+
#: ../app/controllers/arf_reports_controller.rb:73
|
|
128
|
+
msgid "No compliance reports were found."
|
|
129
|
+
msgstr ""
|
|
130
|
+
|
|
131
|
+
#: ../app/controllers/arf_reports_controller.rb:77
|
|
132
|
+
msgid "No compliance reports selected"
|
|
133
|
+
msgstr ""
|
|
134
|
+
|
|
135
|
+
#: ../app/controllers/arf_reports_controller.rb:82
|
|
136
|
+
msgid "Something went wrong while selecting compliance reports - %s"
|
|
137
|
+
msgstr ""
|
|
138
|
+
|
|
139
|
+
#: ../app/controllers/policies_controller.rb:77
|
|
140
|
+
msgid "Updated hosts: Assigned with compliance policy: %s"
|
|
141
|
+
msgstr ""
|
|
142
|
+
|
|
143
|
+
#: ../app/controllers/policies_controller.rb:81
|
|
144
|
+
msgid "No compliance policy selected."
|
|
145
|
+
msgstr ""
|
|
146
|
+
|
|
147
|
+
#: ../app/controllers/policies_controller.rb:92
|
|
148
|
+
msgid "Updated hosts: Unassigned from compliance policy '%s'"
|
|
149
|
+
msgstr ""
|
|
150
|
+
|
|
151
|
+
#: ../app/controllers/policies_controller.rb:95
|
|
152
|
+
msgid "No valid policy ID provided"
|
|
153
|
+
msgstr ""
|
|
154
|
+
|
|
155
|
+
#: ../app/controllers/policies_controller.rb:120
|
|
156
|
+
msgid "No hosts were found."
|
|
157
|
+
msgstr ""
|
|
158
|
+
|
|
159
|
+
#: ../app/controllers/policies_controller.rb:124
|
|
160
|
+
msgid "No hosts selected"
|
|
161
|
+
msgstr ""
|
|
162
|
+
|
|
163
|
+
#: ../app/controllers/policies_controller.rb:129
|
|
164
|
+
msgid "Something went wrong while selecting hosts - %s"
|
|
165
|
+
msgstr ""
|
|
166
|
+
|
|
167
|
+
#: ../app/helpers/arf_report_dashboard_helper.rb:10
|
|
168
|
+
#: ../app/helpers/compliance_hosts_helper.rb:6
|
|
169
|
+
#: ../app/helpers/compliance_hosts_helper.rb:24
|
|
170
|
+
#: ../app/views/arf_reports/_list.html.erb:9
|
|
171
|
+
#: ../app/views/dashboard/_compliance_host_reports_widget.html.erb:13
|
|
172
|
+
#: ../app/views/foreman_openscap/policy_mailer/_hosts.erb:11
|
|
173
|
+
#: ../app/views/policy_dashboard/_policy_reports.html.erb:6
|
|
174
|
+
msgid "Failed"
|
|
175
|
+
msgstr ""
|
|
176
|
+
|
|
177
|
+
#: ../app/helpers/arf_report_dashboard_helper.rb:11
|
|
178
|
+
#: ../app/helpers/compliance_hosts_helper.rb:5
|
|
179
|
+
#: ../app/helpers/compliance_hosts_helper.rb:23
|
|
180
|
+
#: ../app/views/arf_reports/_list.html.erb:8
|
|
181
|
+
#: ../app/views/dashboard/_compliance_host_reports_widget.html.erb:11
|
|
182
|
+
#: ../app/views/foreman_openscap/policy_mailer/_hosts.erb:8
|
|
183
|
+
#: ../app/views/policy_dashboard/_policy_reports.html.erb:5
|
|
184
|
+
msgid "Passed"
|
|
185
|
+
msgstr ""
|
|
186
|
+
|
|
187
|
+
#: ../app/helpers/arf_report_dashboard_helper.rb:12
|
|
188
|
+
#: ../app/helpers/compliance_hosts_helper.rb:25
|
|
189
|
+
#: ../app/views/dashboard/_compliance_host_reports_widget.html.erb:15
|
|
190
|
+
msgid "Othered"
|
|
191
|
+
msgstr ""
|
|
192
|
+
|
|
193
|
+
#: ../app/helpers/arf_report_dashboard_helper.rb:16
|
|
194
|
+
#: ../app/helpers/compliance_hosts_helper.rb:11
|
|
195
|
+
#: ../app/views/dashboard/_compliance_reports_breakdown_widget.html.erb:1
|
|
196
|
+
msgid "Compliance reports breakdown"
|
|
197
|
+
msgstr ""
|
|
198
|
+
|
|
199
|
+
#: ../app/helpers/arf_reports_helper.rb:20
|
|
200
|
+
msgid "Show log messages:"
|
|
201
|
+
msgstr ""
|
|
202
|
+
|
|
203
|
+
#: ../app/helpers/arf_reports_helper.rb:21
|
|
204
|
+
msgid "Failed and Othered"
|
|
205
|
+
msgstr ""
|
|
206
|
+
|
|
207
|
+
#: ../app/helpers/arf_reports_helper.rb:21
|
|
208
|
+
msgid "All messages"
|
|
209
|
+
msgstr ""
|
|
210
|
+
|
|
211
|
+
#: ../app/helpers/arf_reports_helper.rb:21
|
|
212
|
+
msgid "Failed only"
|
|
213
|
+
msgstr ""
|
|
214
|
+
|
|
215
|
+
#: ../app/helpers/arf_reports_helper.rb:54
|
|
216
|
+
msgid "Delete reports"
|
|
217
|
+
msgstr ""
|
|
218
|
+
|
|
219
|
+
#: ../app/helpers/arf_reports_helper.rb:59
|
|
220
|
+
msgid "Select Action"
|
|
221
|
+
msgstr ""
|
|
222
|
+
|
|
223
|
+
#: ../app/helpers/arf_reports_helper.rb:62
|
|
224
|
+
msgid "%s - The following compliance reports are about to be changed"
|
|
225
|
+
msgstr ""
|
|
226
|
+
|
|
227
|
+
#: ../app/helpers/compliance_hosts_helper.rb:7
|
|
228
|
+
#: ../app/views/arf_reports/_list.html.erb:10
|
|
229
|
+
#: ../app/views/foreman_openscap/policy_mailer/_hosts.erb:14
|
|
230
|
+
#: ../app/views/policy_dashboard/_policy_reports.html.erb:7
|
|
231
|
+
msgid "Other"
|
|
232
|
+
msgstr ""
|
|
233
|
+
|
|
234
|
+
#: ../app/helpers/concerns/foreman_openscap/hosts_helper_extensions.rb:11
|
|
235
|
+
msgid "Assign Compliance Policy"
|
|
236
|
+
msgstr ""
|
|
237
|
+
|
|
238
|
+
#: ../app/helpers/concerns/foreman_openscap/hosts_helper_extensions.rb:12
|
|
239
|
+
msgid "Unassign Compliance Policy"
|
|
240
|
+
msgstr ""
|
|
241
|
+
|
|
242
|
+
#: ../app/helpers/concerns/foreman_openscap/hosts_helper_extensions.rb:16
|
|
243
|
+
msgid "Host is deleted"
|
|
244
|
+
msgstr ""
|
|
245
|
+
|
|
246
|
+
#: ../app/helpers/policies_helper.rb:12
|
|
247
|
+
msgid "Choose existing SCAP Content"
|
|
248
|
+
msgstr ""
|
|
249
|
+
|
|
250
|
+
#: ../app/helpers/policies_helper.rb:13 ../app/helpers/policies_helper.rb:18
|
|
251
|
+
#: ../app/views/policies/_form.html.erb:9
|
|
252
|
+
msgid "SCAP Content"
|
|
253
|
+
msgstr ""
|
|
254
|
+
|
|
255
|
+
#: ../app/helpers/policies_helper.rb:28 ../app/helpers/policies_helper.rb:35
|
|
256
|
+
msgid "XCCDF Profile"
|
|
257
|
+
msgstr ""
|
|
258
|
+
|
|
259
|
+
#: ../app/helpers/policies_helper.rb:34
|
|
260
|
+
msgid "Default XCCDF profile"
|
|
261
|
+
msgstr ""
|
|
262
|
+
|
|
263
|
+
#: ../app/helpers/policies_helper.rb:45
|
|
264
|
+
#: ../app/views/arf_reports/_list.html.erb:42
|
|
265
|
+
msgid "Submit"
|
|
266
|
+
msgstr ""
|
|
267
|
+
|
|
268
|
+
#: ../app/helpers/policies_helper.rb:50
|
|
269
|
+
#: ../app/views/arf_reports/_list.html.erb:41
|
|
270
|
+
msgid "Cancel"
|
|
271
|
+
msgstr ""
|
|
272
|
+
|
|
273
|
+
#: ../app/helpers/policy_dashboard_helper.rb:25
|
|
274
|
+
msgid "Compliant hosts"
|
|
275
|
+
msgstr ""
|
|
276
|
+
|
|
277
|
+
#: ../app/helpers/policy_dashboard_helper.rb:26
|
|
278
|
+
msgid "Incompliant hosts"
|
|
279
|
+
msgstr ""
|
|
280
|
+
|
|
281
|
+
#: ../app/helpers/policy_dashboard_helper.rb:27
|
|
282
|
+
#: ../app/models/foreman_openscap/compliance_status.rb:20
|
|
283
|
+
msgid "Inconclusive"
|
|
284
|
+
msgstr ""
|
|
285
|
+
|
|
286
|
+
#: ../app/helpers/policy_dashboard_helper.rb:28
|
|
287
|
+
msgid "Not audited"
|
|
288
|
+
msgstr ""
|
|
289
|
+
|
|
290
|
+
#: ../app/helpers/policy_dashboard_helper.rb:32
|
|
291
|
+
msgid "Compliance Status"
|
|
292
|
+
msgstr ""
|
|
293
|
+
|
|
294
|
+
#: ../app/lib/proxy_api/openscap.rb:27
|
|
295
|
+
msgid "Unable to get HTML version of requested report from Smart Proxy"
|
|
296
|
+
msgstr ""
|
|
297
|
+
|
|
298
|
+
#: ../app/lib/proxy_api/openscap.rb:36
|
|
299
|
+
msgid "Unable to get XML version of requested report from Smart Proxy"
|
|
300
|
+
msgstr ""
|
|
301
|
+
|
|
302
|
+
#: ../app/mailers/foreman_openscap/policy_mailer.rb:18
|
|
303
|
+
msgid "SCAP policies summary"
|
|
304
|
+
msgstr ""
|
|
305
|
+
|
|
306
|
+
#: ../app/models/concerns/foreman_openscap/openscap_proxy_core_extensions.rb:13
|
|
307
|
+
msgid ""
|
|
308
|
+
"Puppet class 'foreman_scap_client' not found, make sure it is imported form Pu"
|
|
309
|
+
"ppet master"
|
|
310
|
+
msgstr ""
|
|
311
|
+
|
|
312
|
+
#: ../app/models/concerns/foreman_openscap/openscap_proxy_extensions.rb:13
|
|
313
|
+
msgid "No OpenSCAP proxy found for %s"
|
|
314
|
+
msgstr ""
|
|
315
|
+
|
|
316
|
+
#: ../app/models/foreman_openscap/arf_report.rb:73
|
|
317
|
+
msgid "Unsupported report status format"
|
|
318
|
+
msgstr ""
|
|
319
|
+
|
|
320
|
+
#: ../app/models/foreman_openscap/compliance_status.rb:8
|
|
321
|
+
#: ../app/views/compliance_hosts/_compliance_status.erb:2
|
|
322
|
+
#: ../lib/foreman_openscap/engine.rb:102
|
|
323
|
+
msgid "Compliance"
|
|
324
|
+
msgstr ""
|
|
325
|
+
|
|
326
|
+
#: ../app/models/foreman_openscap/compliance_status.rb:18
|
|
327
|
+
#: ../app/views/foreman_openscap/policy_mailer/_dashboard.erb:13
|
|
328
|
+
msgid "Compliant"
|
|
329
|
+
msgstr ""
|
|
330
|
+
|
|
331
|
+
#: ../app/models/foreman_openscap/compliance_status.rb:22
|
|
332
|
+
#: ../app/views/foreman_openscap/policy_mailer/_dashboard.erb:17
|
|
333
|
+
msgid "Incompliant"
|
|
334
|
+
msgstr ""
|
|
335
|
+
|
|
336
|
+
#: ../app/models/foreman_openscap/compliance_status.rb:24
|
|
337
|
+
msgid "Unknown Compliance status"
|
|
338
|
+
msgstr ""
|
|
339
|
+
|
|
340
|
+
#: ../app/models/foreman_openscap/policy.rb:51
|
|
341
|
+
msgid "Cannot generate HTML guide for %{scap_content}/%{profile}"
|
|
342
|
+
msgstr ""
|
|
343
|
+
|
|
344
|
+
#: ../app/models/foreman_openscap/policy.rb:58
|
|
345
|
+
msgid "No valid OpenSCAP proxy server found."
|
|
346
|
+
msgstr ""
|
|
347
|
+
|
|
348
|
+
#: ../app/models/foreman_openscap/policy.rb:204
|
|
349
|
+
msgid "Required Puppet class %{class} is not found, please ensure it imported first."
|
|
350
|
+
msgstr ""
|
|
351
|
+
|
|
352
|
+
#: ../app/models/foreman_openscap/policy.rb:209
|
|
353
|
+
msgid "Puppet class %{class} does not have %{parameter} class parameter."
|
|
354
|
+
msgstr ""
|
|
355
|
+
|
|
356
|
+
#: ../app/models/foreman_openscap/policy.rb:218
|
|
357
|
+
msgid "%{parameter} class parameter for class %{class} could not be configured."
|
|
358
|
+
msgstr ""
|
|
359
|
+
|
|
360
|
+
#: ../app/models/foreman_openscap/policy.rb:231
|
|
361
|
+
msgid "Cron line does not consist of 5 parts separated by space"
|
|
362
|
+
msgstr ""
|
|
363
|
+
|
|
364
|
+
#: ../app/models/foreman_openscap/policy.rb:240
|
|
365
|
+
msgid "You must fill weekday"
|
|
366
|
+
msgstr ""
|
|
367
|
+
|
|
368
|
+
#: ../app/models/foreman_openscap/policy.rb:241
|
|
369
|
+
msgid "You must fill day of month"
|
|
370
|
+
msgstr ""
|
|
371
|
+
|
|
372
|
+
#: ../app/models/foreman_openscap/policy.rb:242
|
|
373
|
+
msgid "You must fill cron line"
|
|
374
|
+
msgstr ""
|
|
375
|
+
|
|
376
|
+
#: ../app/models/foreman_openscap/scap_content.rb:9
|
|
377
|
+
msgid "No Proxy with OpenSCAP features"
|
|
378
|
+
msgstr ""
|
|
379
|
+
|
|
380
|
+
#: ../app/models/foreman_openscap/scap_content.rb:14
|
|
381
|
+
msgid "No Available Proxy to validate SCAP content"
|
|
382
|
+
msgstr ""
|
|
383
|
+
|
|
384
|
+
#: ../app/models/foreman_openscap/scap_content.rb:26
|
|
385
|
+
msgid "No available proxy to validate. Returned with error: %s"
|
|
386
|
+
msgstr ""
|
|
387
|
+
|
|
388
|
+
#: ../app/models/foreman_openscap/scap_content.rb:32
|
|
389
|
+
msgid "Changed file does not include existing SCAP content profiles"
|
|
390
|
+
msgstr ""
|
|
391
|
+
|
|
392
|
+
#: ../app/services/foreman_openscap/arf_report_status_calculator.rb:31
|
|
393
|
+
msgid "invalid type %s"
|
|
394
|
+
msgstr ""
|
|
395
|
+
|
|
396
|
+
#: ../app/views/arf_reports/_detailed_message.html.erb:3
|
|
397
|
+
msgid "More details"
|
|
398
|
+
msgstr ""
|
|
399
|
+
|
|
400
|
+
#: ../app/views/arf_reports/_detailed_message.html.erb:6
|
|
401
|
+
msgid "Description"
|
|
402
|
+
msgstr ""
|
|
403
|
+
|
|
404
|
+
#: ../app/views/arf_reports/_detailed_message.html.erb:7
|
|
405
|
+
msgid "Rationale"
|
|
406
|
+
msgstr ""
|
|
407
|
+
|
|
408
|
+
#: ../app/views/arf_reports/_detailed_message.html.erb:8
|
|
409
|
+
msgid "References"
|
|
410
|
+
msgstr ""
|
|
411
|
+
|
|
412
|
+
#: ../app/views/arf_reports/_list.html.erb:5
|
|
413
|
+
msgid "Select all items in this page"
|
|
414
|
+
msgstr ""
|
|
415
|
+
|
|
416
|
+
#: ../app/views/arf_reports/_list.html.erb:5
|
|
417
|
+
msgid "items selected. Uncheck to Clear"
|
|
418
|
+
msgstr ""
|
|
419
|
+
|
|
420
|
+
#: ../app/views/arf_reports/_list.html.erb:7
|
|
421
|
+
#: ../app/views/arf_reports/delete_multiple.html.erb:10
|
|
422
|
+
msgid "Reported At"
|
|
423
|
+
msgstr ""
|
|
424
|
+
|
|
425
|
+
#: ../app/views/arf_reports/_list.html.erb:19
|
|
426
|
+
#: ../app/views/policy_dashboard/_policy_reports.html.erb:13
|
|
427
|
+
#: ../app/views/scap_contents/_list.html.erb:17
|
|
428
|
+
msgid "%s ago"
|
|
429
|
+
msgstr ""
|
|
430
|
+
|
|
431
|
+
#: ../app/views/arf_reports/_list.html.erb:25
|
|
432
|
+
msgid "Delete compliance report for %s?"
|
|
433
|
+
msgstr ""
|
|
434
|
+
|
|
435
|
+
#: ../app/views/arf_reports/_list.html.erb:36
|
|
436
|
+
msgid "Please Confirm"
|
|
437
|
+
msgstr ""
|
|
438
|
+
|
|
439
|
+
#: ../app/views/arf_reports/_metrics.html.erb:4
|
|
440
|
+
msgid "Report Metrics"
|
|
441
|
+
msgstr ""
|
|
442
|
+
|
|
443
|
+
#: ../app/views/arf_reports/_metrics.html.erb:12
|
|
444
|
+
msgid "Report Status"
|
|
445
|
+
msgstr ""
|
|
446
|
+
|
|
447
|
+
#: ../app/views/arf_reports/_metrics.html.erb:13
|
|
448
|
+
msgid "Number of Events"
|
|
449
|
+
msgstr ""
|
|
450
|
+
|
|
451
|
+
#: ../app/views/arf_reports/_metrics.html.erb:32
|
|
452
|
+
msgid "Total"
|
|
453
|
+
msgstr ""
|
|
454
|
+
|
|
455
|
+
#: ../app/views/arf_reports/_output.html.erb:4
|
|
456
|
+
msgid "Severity"
|
|
457
|
+
msgstr ""
|
|
458
|
+
|
|
459
|
+
#: ../app/views/arf_reports/_output.html.erb:5
|
|
460
|
+
msgid "Message"
|
|
461
|
+
msgstr ""
|
|
462
|
+
|
|
463
|
+
#: ../app/views/arf_reports/_output.html.erb:6
|
|
464
|
+
msgid "Resource"
|
|
465
|
+
msgstr ""
|
|
466
|
+
|
|
467
|
+
#: ../app/views/arf_reports/_output.html.erb:7
|
|
468
|
+
msgid "Result"
|
|
469
|
+
msgstr ""
|
|
470
|
+
|
|
471
|
+
#: ../app/views/arf_reports/_output.html.erb:23
|
|
472
|
+
msgid "Nothing to show"
|
|
473
|
+
msgstr ""
|
|
474
|
+
|
|
475
|
+
#: ../app/views/arf_reports/delete_multiple.html.erb:7
|
|
476
|
+
#: ../app/views/dashboard/_compliance_host_reports_widget.html.erb:8
|
|
477
|
+
#: ../app/views/policy_dashboard/_policy_reports.html.erb:3
|
|
478
|
+
msgid "Host"
|
|
479
|
+
msgstr ""
|
|
480
|
+
|
|
481
|
+
#: ../app/views/arf_reports/delete_multiple.html.erb:27
|
|
482
|
+
msgid "Delete"
|
|
483
|
+
msgstr ""
|
|
484
|
+
|
|
485
|
+
#: ../app/views/arf_reports/delete_multiple.html.erb:28
|
|
486
|
+
msgid "these Complianace reports"
|
|
487
|
+
msgstr ""
|
|
488
|
+
|
|
489
|
+
#: ../app/views/arf_reports/index.html.erb:1
|
|
490
|
+
msgid "Compliance Reports"
|
|
491
|
+
msgstr ""
|
|
492
|
+
|
|
493
|
+
#: ../app/views/arf_reports/show.html.erb:4
|
|
494
|
+
msgid "Reported at %s"
|
|
495
|
+
msgstr ""
|
|
496
|
+
|
|
497
|
+
#: ../app/views/arf_reports/show.html.erb:11
|
|
498
|
+
msgid "Back"
|
|
499
|
+
msgstr ""
|
|
500
|
+
|
|
501
|
+
#: ../app/views/arf_reports/show.html.erb:13
|
|
502
|
+
msgid "Host details"
|
|
503
|
+
msgstr ""
|
|
504
|
+
|
|
505
|
+
#: ../app/views/arf_reports/show.html.erb:14
|
|
506
|
+
msgid "View full report"
|
|
507
|
+
msgstr ""
|
|
508
|
+
|
|
509
|
+
#: ../app/views/arf_reports/show.html.erb:15
|
|
510
|
+
msgid "Download XML in bzip"
|
|
511
|
+
msgstr ""
|
|
512
|
+
|
|
513
|
+
#: ../app/views/arf_reports/show_html.html.erb:6
|
|
514
|
+
msgid "Loading..."
|
|
515
|
+
msgstr ""
|
|
516
|
+
|
|
517
|
+
#: ../app/views/compliance_hosts/_compliance_status.erb:4
|
|
518
|
+
msgid "Host compliance details"
|
|
519
|
+
msgstr ""
|
|
520
|
+
|
|
521
|
+
#: ../app/views/compliance_hosts/_openscap_proxy.html.erb:5
|
|
522
|
+
msgid "OpenSCAP Proxy"
|
|
523
|
+
msgstr ""
|
|
524
|
+
|
|
525
|
+
#: ../app/views/compliance_hosts/show.html.erb:3
|
|
526
|
+
msgid "%s compliance report by policy"
|
|
527
|
+
msgid_plural "%s compliance reports by policy"
|
|
528
|
+
msgstr[0] ""
|
|
529
|
+
msgstr[1] ""
|
|
530
|
+
|
|
531
|
+
#: ../app/views/compliance_hosts/show.html.erb:5
|
|
532
|
+
msgid "Policy %s"
|
|
533
|
+
msgstr ""
|
|
534
|
+
|
|
535
|
+
#: ../app/views/compliance_hosts/show.html.erb:11
|
|
536
|
+
msgid "%s latest report"
|
|
537
|
+
msgstr ""
|
|
538
|
+
|
|
539
|
+
#: ../app/views/compliance_hosts/show.html.erb:19
|
|
540
|
+
msgid "%s reports over time"
|
|
541
|
+
msgstr ""
|
|
542
|
+
|
|
543
|
+
#: ../app/views/compliance_hosts/show.html.erb:25
|
|
544
|
+
msgid "No report for this policy"
|
|
545
|
+
msgstr ""
|
|
546
|
+
|
|
547
|
+
#: ../app/views/dashboard/_compliance_host_reports_widget.html.erb:1
|
|
548
|
+
msgid "Latest compliance reports"
|
|
549
|
+
msgstr ""
|
|
550
|
+
|
|
551
|
+
#: ../app/views/dashboard/_compliance_host_reports_widget.html.erb:4
|
|
552
|
+
msgid "No reports available"
|
|
553
|
+
msgstr ""
|
|
554
|
+
|
|
555
|
+
#: ../app/views/dashboard/_compliance_host_reports_widget.html.erb:9
|
|
556
|
+
msgid "Policy"
|
|
557
|
+
msgstr ""
|
|
558
|
+
|
|
559
|
+
#: ../app/views/dashboard/_compliance_host_reports_widget.html.erb:11
|
|
560
|
+
msgid "Passed|P"
|
|
561
|
+
msgstr ""
|
|
562
|
+
|
|
563
|
+
#: ../app/views/dashboard/_compliance_host_reports_widget.html.erb:13
|
|
564
|
+
msgid "Failed|F"
|
|
565
|
+
msgstr ""
|
|
566
|
+
|
|
567
|
+
#: ../app/views/dashboard/_compliance_host_reports_widget.html.erb:15
|
|
568
|
+
msgid "Othered|O"
|
|
569
|
+
msgstr ""
|
|
570
|
+
|
|
571
|
+
#: ../app/views/dashboard/_compliance_host_reports_widget.html.erb:19
|
|
572
|
+
msgid "Host does not exist anymore"
|
|
573
|
+
msgstr ""
|
|
574
|
+
|
|
575
|
+
#: ../app/views/foreman_openscap/policy_mailer/_dashboard.erb:9
|
|
576
|
+
msgid "Changed"
|
|
577
|
+
msgstr ""
|
|
578
|
+
|
|
579
|
+
#: ../app/views/foreman_openscap/policy_mailer/_hosts.erb:5
|
|
580
|
+
msgid "Hostname"
|
|
581
|
+
msgstr ""
|
|
582
|
+
|
|
583
|
+
#: ../app/views/foreman_openscap/policy_mailer/_hosts.erb:17
|
|
584
|
+
msgid "Changed?"
|
|
585
|
+
msgstr ""
|
|
586
|
+
|
|
587
|
+
#: ../app/views/foreman_openscap/policy_mailer/_hosts.erb:36
|
|
588
|
+
msgid "No"
|
|
589
|
+
msgstr ""
|
|
590
|
+
|
|
591
|
+
#: ../app/views/foreman_openscap/policy_mailer/_hosts.erb:36
|
|
592
|
+
msgid "Yes"
|
|
593
|
+
msgstr ""
|
|
594
|
+
|
|
595
|
+
#: ../app/views/foreman_openscap/policy_mailer/_hosts.erb:40
|
|
596
|
+
msgid "No ARF reports for this policy"
|
|
597
|
+
msgstr ""
|
|
598
|
+
|
|
599
|
+
#: ../app/views/foreman_openscap/policy_mailer/_list.erb:8
|
|
600
|
+
msgid "None!"
|
|
601
|
+
msgstr ""
|
|
602
|
+
|
|
603
|
+
#: ../app/views/foreman_openscap/policy_mailer/_policy.erb:7
|
|
604
|
+
msgid "Total of one host"
|
|
605
|
+
msgid_plural "Total of %{hosts} hosts"
|
|
606
|
+
msgstr[0] ""
|
|
607
|
+
msgstr[1] ""
|
|
608
|
+
|
|
609
|
+
#: ../app/views/foreman_openscap/policy_mailer/policy_summary.erb:9
|
|
610
|
+
msgid "<b>Foreman</b> OpenSCAP summary"
|
|
611
|
+
msgstr ""
|
|
612
|
+
|
|
613
|
+
#: ../app/views/foreman_openscap/policy_mailer/policy_summary.erb:10
|
|
614
|
+
msgid "Summary from %{time} ago to now"
|
|
615
|
+
msgstr ""
|
|
616
|
+
|
|
617
|
+
#: ../app/views/foreman_openscap/policy_mailer/policy_summary.erb:11
|
|
618
|
+
msgid "Summary report from Foreman server at %{foreman_url}"
|
|
619
|
+
msgstr ""
|
|
620
|
+
|
|
621
|
+
#: ../app/views/foreman_openscap/policy_mailer/policy_summary.erb:16
|
|
622
|
+
msgid "Policies with hosts:"
|
|
623
|
+
msgstr ""
|
|
624
|
+
|
|
625
|
+
#: ../app/views/policies/_form.html.erb:8
|
|
626
|
+
msgid "General"
|
|
627
|
+
msgstr ""
|
|
628
|
+
|
|
629
|
+
#: ../app/views/policies/_form.html.erb:10
|
|
630
|
+
msgid "Schedule"
|
|
631
|
+
msgstr ""
|
|
632
|
+
|
|
633
|
+
#: ../app/views/policies/_form.html.erb:12
|
|
634
|
+
#: ../app/views/scap_contents/_form.html.erb:11
|
|
635
|
+
msgid "Locations"
|
|
636
|
+
msgstr ""
|
|
637
|
+
|
|
638
|
+
#: ../app/views/policies/_form.html.erb:15
|
|
639
|
+
#: ../app/views/scap_contents/_form.html.erb:14
|
|
640
|
+
msgid "Organizations"
|
|
641
|
+
msgstr ""
|
|
642
|
+
|
|
643
|
+
#: ../app/views/policies/_form.html.erb:17
|
|
644
|
+
msgid "Host Groups"
|
|
645
|
+
msgstr ""
|
|
646
|
+
|
|
647
|
+
#: ../app/views/policies/_form.html.erb:32
|
|
648
|
+
#: ../app/views/policies/steps/_schedule_form.html.erb:6
|
|
649
|
+
msgid "Choose period"
|
|
650
|
+
msgstr ""
|
|
651
|
+
|
|
652
|
+
#: ../app/views/policies/_form.html.erb:34
|
|
653
|
+
#: ../app/views/policies/steps/_schedule_form.html.erb:8
|
|
654
|
+
msgid "Choose weekday"
|
|
655
|
+
msgstr ""
|
|
656
|
+
|
|
657
|
+
#: ../app/views/policies/_form.html.erb:35
|
|
658
|
+
#: ../app/views/policies/steps/_schedule_form.html.erb:9
|
|
659
|
+
msgid "Number of a day in month, note that not all months have same count of days"
|
|
660
|
+
msgstr ""
|
|
661
|
+
|
|
662
|
+
#: ../app/views/policies/_form.html.erb:36
|
|
663
|
+
#: ../app/views/policies/steps/_schedule_form.html.erb:10
|
|
664
|
+
msgid ""
|
|
665
|
+
"You can specify custom cron line, e.g. \"0 3 * * *\", separate each of 5 val"
|
|
666
|
+
"ues by space"
|
|
667
|
+
msgstr ""
|
|
668
|
+
|
|
669
|
+
#: ../app/views/policies/_list.html.erb:24
|
|
670
|
+
msgid "Show Guide"
|
|
671
|
+
msgstr ""
|
|
672
|
+
|
|
673
|
+
#: ../app/views/policies/_list.html.erb:25
|
|
674
|
+
#: ../app/views/scap_contents/_list.html.erb:21
|
|
675
|
+
msgid "Edit"
|
|
676
|
+
msgstr ""
|
|
677
|
+
|
|
678
|
+
#: ../app/views/policies/_list.html.erb:27
|
|
679
|
+
#: ../app/views/scap_contents/_list.html.erb:24
|
|
680
|
+
msgid "Delete compliance policy %s with all the reports?"
|
|
681
|
+
msgstr ""
|
|
682
|
+
|
|
683
|
+
#: ../app/views/policies/create.html.erb:1
|
|
684
|
+
#: ../app/views/policies/index.html.erb:5 ../app/views/policies/new.html.erb:1
|
|
685
|
+
msgid "New Compliance Policy"
|
|
686
|
+
msgstr ""
|
|
687
|
+
|
|
688
|
+
#: ../app/views/policies/disassociate_multiple_hosts.html.erb:4
|
|
689
|
+
#: ../app/views/policies/select_multiple_hosts.html.erb:5
|
|
690
|
+
msgid "Select Compliance Policy"
|
|
691
|
+
msgstr ""
|
|
692
|
+
|
|
693
|
+
#: ../app/views/policies/edit.html.erb:1
|
|
694
|
+
msgid "Edit Compliance Policy"
|
|
695
|
+
msgstr ""
|
|
696
|
+
|
|
697
|
+
#: ../app/views/policies/index.html.erb:2
|
|
698
|
+
msgid "Compliance Policies"
|
|
699
|
+
msgstr ""
|
|
700
|
+
|
|
701
|
+
#: ../app/views/policies/index.html.erb:6
|
|
702
|
+
#: ../app/views/scap_contents/index.html.erb:4
|
|
703
|
+
msgid "Help"
|
|
704
|
+
msgstr ""
|
|
705
|
+
|
|
706
|
+
#: ../app/views/policies/steps/_step_form.html.erb:10
|
|
707
|
+
msgid "Next"
|
|
708
|
+
msgstr ""
|
|
709
|
+
|
|
710
|
+
#: ../app/views/policies/welcome.html.erb:1
|
|
711
|
+
msgid "New Compliance policy"
|
|
712
|
+
msgstr ""
|
|
713
|
+
|
|
714
|
+
#: ../app/views/policies/welcome.html.erb:3
|
|
715
|
+
msgid "Compliance policy configuration"
|
|
716
|
+
msgstr ""
|
|
717
|
+
|
|
718
|
+
#: ../app/views/policies/welcome.html.erb:6
|
|
719
|
+
msgid ""
|
|
720
|
+
"A compliance policy is defined by security professionals who specify desired s"
|
|
721
|
+
"ettings (often in the form of a checklist) that are to be used in the computin"
|
|
722
|
+
"g environment. Compliance audit is a process of figuring out whether a given o"
|
|
723
|
+
"bject follows all the rules written out in a compliance policy."
|
|
724
|
+
msgstr ""
|
|
725
|
+
|
|
726
|
+
#: ../app/views/policies/welcome.html.erb:12
|
|
727
|
+
msgid ""
|
|
728
|
+
"In Foreman, a compliance policy checklist is defined via %s, once SCAP content"
|
|
729
|
+
" is present, you can create a policy, assign select host groups and schedule t"
|
|
730
|
+
"o run."
|
|
731
|
+
msgstr ""
|
|
732
|
+
|
|
733
|
+
#: ../app/views/policies/welcome.html.erb:13
|
|
734
|
+
msgid "SCAP content"
|
|
735
|
+
msgstr ""
|
|
736
|
+
|
|
737
|
+
#: ../app/views/policy_dashboard/_policy_chart_widget.html.erb:2
|
|
738
|
+
msgid "Host Breakdown Chart"
|
|
739
|
+
msgstr ""
|
|
740
|
+
|
|
741
|
+
#: ../app/views/policy_dashboard/_policy_reports.html.erb:4
|
|
742
|
+
msgid "Date"
|
|
743
|
+
msgstr ""
|
|
744
|
+
|
|
745
|
+
#: ../app/views/policy_dashboard/_policy_reports.html.erb:19
|
|
746
|
+
msgid "View Report"
|
|
747
|
+
msgstr ""
|
|
748
|
+
|
|
749
|
+
#: ../app/views/policy_dashboard/_policy_status_widget.html.erb:2
|
|
750
|
+
msgid "Hosts Breakdown"
|
|
751
|
+
msgstr ""
|
|
752
|
+
|
|
753
|
+
#: ../app/views/policy_dashboard/_policy_status_widget.html.erb:4
|
|
754
|
+
msgid "Compliant with the policy"
|
|
755
|
+
msgstr ""
|
|
756
|
+
|
|
757
|
+
#: ../app/views/policy_dashboard/_policy_status_widget.html.erb:5
|
|
758
|
+
msgid "Not compliant with the policy"
|
|
759
|
+
msgstr ""
|
|
760
|
+
|
|
761
|
+
#: ../app/views/policy_dashboard/_policy_status_widget.html.erb:6
|
|
762
|
+
msgid "Inconclusive results"
|
|
763
|
+
msgstr ""
|
|
764
|
+
|
|
765
|
+
#: ../app/views/policy_dashboard/_policy_status_widget.html.erb:7
|
|
766
|
+
msgid "Never audited"
|
|
767
|
+
msgstr ""
|
|
768
|
+
|
|
769
|
+
#: ../app/views/policy_dashboard/_policy_status_widget.html.erb:9
|
|
770
|
+
msgid "Total hosts: %s"
|
|
771
|
+
msgstr ""
|
|
772
|
+
|
|
773
|
+
#: ../app/views/policy_dashboard/index.html.erb:3
|
|
774
|
+
msgid "Compliance policy: %s"
|
|
775
|
+
msgstr ""
|
|
776
|
+
|
|
777
|
+
#: ../app/views/policy_dashboard/index.html.erb:7
|
|
778
|
+
msgid "Status table"
|
|
779
|
+
msgstr ""
|
|
780
|
+
|
|
781
|
+
#: ../app/views/policy_dashboard/index.html.erb:8
|
|
782
|
+
msgid "Status chart"
|
|
783
|
+
msgstr ""
|
|
784
|
+
|
|
785
|
+
#: ../app/views/policy_dashboard/index.html.erb:20
|
|
786
|
+
msgid "Latest reports for policy: %s"
|
|
787
|
+
msgstr ""
|
|
788
|
+
|
|
789
|
+
#: ../app/views/scap_contents/_form.html.erb:9
|
|
790
|
+
msgid "File Upload"
|
|
791
|
+
msgstr ""
|
|
792
|
+
|
|
793
|
+
#: ../app/views/scap_contents/_form.html.erb:20
|
|
794
|
+
msgid "Upload SCAP DataStream file"
|
|
795
|
+
msgstr ""
|
|
796
|
+
|
|
797
|
+
#: ../app/views/scap_contents/_list.html.erb:22
|
|
798
|
+
msgid "Download"
|
|
799
|
+
msgstr ""
|
|
800
|
+
|
|
801
|
+
#: ../app/views/scap_contents/edit.html.erb:1
|
|
802
|
+
msgid "Edit SCAP Content"
|
|
803
|
+
msgstr ""
|
|
804
|
+
|
|
805
|
+
#: ../app/views/scap_contents/index.html.erb:1
|
|
806
|
+
msgid "SCAP Contents"
|
|
807
|
+
msgstr ""
|
|
808
|
+
|
|
809
|
+
#: ../app/views/scap_contents/index.html.erb:3
|
|
810
|
+
msgid "Upload New SCAP Content"
|
|
811
|
+
msgstr ""
|
|
812
|
+
|
|
813
|
+
#: ../app/views/scap_contents/new.html.erb:1
|
|
814
|
+
msgid "Upload new SCAP content file"
|
|
815
|
+
msgstr ""
|
|
816
|
+
|
|
817
|
+
#: ../app/views/scap_contents/welcome.html.erb:1
|
|
818
|
+
msgid "New SCAP content"
|
|
819
|
+
msgstr ""
|
|
820
|
+
|
|
821
|
+
#: ../app/views/scap_contents/welcome.html.erb:3
|
|
822
|
+
msgid "SCAP content configuration"
|
|
823
|
+
msgstr ""
|
|
824
|
+
|
|
825
|
+
#: ../app/views/scap_contents/welcome.html.erb:6
|
|
826
|
+
msgid ""
|
|
827
|
+
"The Security Content Automation Protocol (SCAP), combines a number of open sta"
|
|
828
|
+
"ndards that are used to enumerate software flaws and\n"
|
|
829
|
+
" configuration issues related to security. They measure systems to find"
|
|
830
|
+
" vulnerabilities and offer methods to score those findings in order\n"
|
|
831
|
+
" to evaluate the possible impact. It is a method for using those open s"
|
|
832
|
+
"tandards for automated vulnerability management, measurement,\n"
|
|
833
|
+
" and policy compliance evaluation. "
|
|
834
|
+
msgstr ""
|
|
835
|
+
|
|
836
|
+
#: ../app/views/scap_contents/welcome.html.erb:9
|
|
837
|
+
msgid "Source: Wikipedia %s"
|
|
838
|
+
msgstr ""
|
|
839
|
+
|
|
840
|
+
#: ../app/views/scap_contents/welcome.html.erb:9
|
|
841
|
+
msgid "read more"
|
|
842
|
+
msgstr ""
|
|
843
|
+
|
|
844
|
+
#: ../app/views/scap_contents/welcome.html.erb:12
|
|
845
|
+
msgid ""
|
|
846
|
+
"In Foreman, scap_contents represent the SCAP security guides on your hosts, an"
|
|
847
|
+
"d create SCAP profiles for you to assign to hosts / host groups\n"
|
|
848
|
+
" via %s"
|
|
849
|
+
msgstr ""
|
|
850
|
+
|
|
851
|
+
#: ../db/seeds.d/openscap_policy_notification.rb:3
|
|
852
|
+
msgid "A summary of reports for OpenSCAP policies"
|
|
853
|
+
msgstr ""
|
|
854
|
+
|
|
855
|
+
#: ../lib/foreman_openscap/engine.rb:103
|
|
856
|
+
msgid "Policies"
|
|
857
|
+
msgstr ""
|
|
858
|
+
|
|
859
|
+
#: ../lib/foreman_openscap/engine.rb:106
|
|
860
|
+
msgid "SCAP contents"
|
|
861
|
+
msgstr ""
|
|
862
|
+
|
|
863
|
+
#: ../lib/foreman_openscap/engine.rb:109
|
|
864
|
+
msgid "Reports"
|
|
865
|
+
msgstr ""
|
|
866
|
+
|
|
867
|
+
#: ../lib/foreman_openscap/engine.rb:115
|
|
868
|
+
msgid "OpenSCAP Host reports widget"
|
|
869
|
+
msgstr ""
|
|
870
|
+
|
|
871
|
+
#: ../lib/foreman_openscap/engine.rb:117
|
|
872
|
+
msgid "OpenSCAP Reports breakdown widget"
|
|
873
|
+
msgstr ""
|