foreman_openscap 0.7.1 → 0.7.2
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/controllers/api/v2/compliance/arf_reports_controller.rb +1 -1
- data/app/controllers/api/v2/compliance/policies_controller.rb +2 -2
- data/app/controllers/api/v2/compliance/scap_contents_controller.rb +1 -1
- data/app/controllers/api/v2/compliance/tailoring_files_controller.rb +1 -1
- data/app/controllers/arf_reports_controller.rb +9 -9
- data/app/controllers/concerns/foreman/controller/parameters/policy.rb +1 -1
- data/app/controllers/openscap_proxies_controller.rb +5 -5
- data/app/controllers/policies_controller.rb +16 -17
- data/app/controllers/policy_dashboard_controller.rb +2 -1
- data/app/controllers/scap_contents_controller.rb +2 -2
- data/app/controllers/tailoring_files_controller.rb +4 -4
- data/app/helpers/arf_report_dashboard_helper.rb +2 -3
- data/app/helpers/arf_reports_helper.rb +1 -1
- data/app/helpers/compliance_hosts_helper.rb +1 -2
- data/app/helpers/policies_helper.rb +4 -4
- data/app/helpers/policy_dashboard_helper.rb +2 -3
- data/app/lib/proxy_api/available_proxy.rb +2 -2
- data/app/lib/proxy_api/openscap.rb +1 -1
- data/app/mailers/foreman_openscap/policy_mailer.rb +1 -1
- data/app/models/concerns/foreman_openscap/compliance_status_scoped_search.rb +7 -8
- data/app/models/concerns/foreman_openscap/host_extensions.rb +44 -25
- data/app/models/concerns/foreman_openscap/log_extensions.rb +1 -1
- data/app/models/concerns/foreman_openscap/openscap_proxy_core_extensions.rb +3 -3
- data/app/models/foreman_openscap/arf_report.rb +34 -12
- data/app/models/foreman_openscap/policy.rb +19 -17
- data/app/models/foreman_openscap/scap_content.rb +4 -2
- data/app/services/foreman_openscap/arf_report_status_calculator.rb +1 -1
- data/app/services/foreman_openscap/host_report_dashboard/data.rb +2 -2
- data/app/services/foreman_openscap/policy_dashboard/data.rb +4 -3
- data/app/validators/foreman_openscap/data_stream_validator.rb +2 -2
- data/app/views/policy_dashboard/_policy_status_widget.html.erb +5 -5
- data/config/routes.rb +6 -6
- data/db/migrate/20141015115511_add_arf_report_unique_constraint.rb +1 -1
- data/db/migrate/20141113221054_create_scaptimony_scap_content_profiles.rb +1 -1
- data/db/migrate/20141116170632_remove_xccdf_profile_from_scaptimony_policies.rb +1 -1
- data/db/migrate/20141121120326_create_scaptimony_arf_report_breakdowns.rb +15 -15
- data/db/migrate/20141121164042_replace_arf_report_breakdown_view.rb +15 -15
- data/db/migrate/20141206211151_create_scaptimony_assets_policies.rb +1 -1
- data/db/migrate/20150115155947_add_scaptimony_scap_content_digest.rb +1 -1
- data/db/migrate/20150821100137_migrate_from_scaptimony.rb +1 -1
- data/db/migrate/20160830113437_remove_deleted_policy.rb +1 -1
- data/db/migrate/20160925213031_change_scap_widget_names.rb +8 -8
- data/db/migrate/20161223153249_add_permissions_to_arf_report.rb +4 -4
- data/db/seeds.d/75-job_templates.rb +6 -1
- data/db/seeds.d/openscap_feature.rb +1 -1
- data/lib/foreman_openscap/data_migration.rb +1 -2
- data/lib/foreman_openscap/engine.rb +33 -34
- data/lib/foreman_openscap/helper.rb +5 -7
- data/lib/foreman_openscap/message_cleaner.rb +32 -0
- data/lib/foreman_openscap/version.rb +1 -1
- data/lib/tasks/foreman_openscap_tasks.rake +12 -0
- data/locale/de/foreman_openscap.po +205 -43
- data/locale/en_GB/foreman_openscap.po +205 -43
- data/locale/es/foreman_openscap.po +205 -43
- data/locale/foreman_openscap.pot +418 -185
- data/locale/fr/foreman_openscap.po +205 -43
- data/locale/gl/foreman_openscap.po +205 -43
- data/locale/it/foreman_openscap.po +205 -43
- data/locale/ja/foreman_openscap.po +205 -43
- data/locale/ko/foreman_openscap.po +205 -43
- data/locale/pt_BR/foreman_openscap.po +205 -43
- data/locale/ru/foreman_openscap.po +205 -43
- data/locale/sv_SE/foreman_openscap.po +205 -43
- data/locale/zh_CN/foreman_openscap.po +205 -43
- data/locale/zh_TW/foreman_openscap.po +205 -43
- data/test/factories/arf_report_factory.rb +2 -2
- data/test/factories/asset_factory.rb +5 -0
- data/test/factories/compliance_host_factory.rb +4 -4
- data/test/factories/compliance_log_factory.rb +9 -4
- data/test/files/arf_report/arf_report.json +1 -0
- data/test/files/arf_report/arf_report_msg_desc_changed.json +1 -0
- data/test/files/arf_report/arf_report_msg_value_changed.json +1 -0
- data/test/functional/api/v2/compliance/arf_reports_controller_test.rb +111 -1
- data/test/functional/api/v2/compliance/policies_controller_test.rb +1 -1
- data/test/functional/api/v2/compliance/tailoring_files_controller_test.rb +4 -4
- data/test/test_plugin_helper.rb +4 -4
- data/test/unit/arf_report_test.rb +5 -5
- data/test/unit/concerns/host_extensions_test.rb +64 -4
- data/test/unit/message_cleaner_test.rb +31 -0
- data/test/unit/policy_mailer_test.rb +1 -2
- data/test/unit/scap_content_test.rb +3 -5
- data/test/unit/services/report_dashboard/data_test.rb +1 -1
- data/test/unit/services/tailoring_files_proxy_check_test.rb +4 -4
- metadata +12 -6
data/locale/foreman_openscap.pot
CHANGED
|
@@ -8,8 +8,8 @@ msgid ""
|
|
|
8
8
|
msgstr ""
|
|
9
9
|
"Project-Id-Version: foreman_openscap 1.0.0\n"
|
|
10
10
|
"Report-Msgid-Bugs-To: \n"
|
|
11
|
-
"POT-Creation-Date:
|
|
12
|
-
"PO-Revision-Date:
|
|
11
|
+
"POT-Creation-Date: 2017-04-21 11:37+0200\n"
|
|
12
|
+
"PO-Revision-Date: 2017-04-21 11:37+0200\n"
|
|
13
13
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
|
14
14
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
|
15
15
|
"Language: \n"
|
|
@@ -18,212 +18,309 @@ msgstr ""
|
|
|
18
18
|
"Content-Transfer-Encoding: 8bit\n"
|
|
19
19
|
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
|
|
20
20
|
|
|
21
|
-
#: ../app/controllers/api/v2/compliance/arf_reports_controller.rb:
|
|
21
|
+
#: ../app/controllers/api/v2/compliance/arf_reports_controller.rb:25
|
|
22
22
|
msgid "List ARF reports"
|
|
23
23
|
msgstr ""
|
|
24
24
|
|
|
25
|
-
#: ../app/controllers/api/v2/compliance/arf_reports_controller.rb:
|
|
25
|
+
#: ../app/controllers/api/v2/compliance/arf_reports_controller.rb:32
|
|
26
26
|
msgid "Show an ARF report"
|
|
27
27
|
msgstr ""
|
|
28
28
|
|
|
29
|
-
#: ../app/controllers/api/v2/compliance/arf_reports_controller.rb:
|
|
30
|
-
msgid "
|
|
29
|
+
#: ../app/controllers/api/v2/compliance/arf_reports_controller.rb:38
|
|
30
|
+
msgid "Delete an ARF Report"
|
|
31
31
|
msgstr ""
|
|
32
32
|
|
|
33
|
-
#: ../app/controllers/api/v2/compliance/arf_reports_controller.rb:
|
|
33
|
+
#: ../app/controllers/api/v2/compliance/arf_reports_controller.rb:45
|
|
34
34
|
msgid "Upload an ARF report"
|
|
35
35
|
msgstr ""
|
|
36
36
|
|
|
37
|
-
#: ../app/controllers/api/v2/compliance/
|
|
38
|
-
|
|
39
|
-
msgid "List SCAP contents"
|
|
37
|
+
#: ../app/controllers/api/v2/compliance/arf_reports_controller.rb:57
|
|
38
|
+
msgid "Download bzipped ARF report"
|
|
40
39
|
msgstr ""
|
|
41
40
|
|
|
42
|
-
#: ../app/controllers/api/v2/compliance/
|
|
43
|
-
|
|
44
|
-
msgid "Show an SCAP content"
|
|
41
|
+
#: ../app/controllers/api/v2/compliance/arf_reports_controller.rb:67
|
|
42
|
+
msgid "Download ARF report in HTML"
|
|
45
43
|
msgstr ""
|
|
46
44
|
|
|
47
|
-
#: ../app/controllers/api/v2/compliance/policies_controller.rb:
|
|
45
|
+
#: ../app/controllers/api/v2/compliance/policies_controller.rb:25
|
|
46
|
+
msgid "List Policies"
|
|
47
|
+
msgstr ""
|
|
48
|
+
|
|
49
|
+
#: ../app/controllers/api/v2/compliance/policies_controller.rb:32
|
|
50
|
+
msgid "Show a Policy"
|
|
51
|
+
msgstr ""
|
|
52
|
+
|
|
53
|
+
#: ../app/controllers/api/v2/compliance/policies_controller.rb:40
|
|
48
54
|
msgid "Policy name"
|
|
49
55
|
msgstr ""
|
|
50
56
|
|
|
51
|
-
#: ../app/controllers/api/v2/compliance/policies_controller.rb:
|
|
57
|
+
#: ../app/controllers/api/v2/compliance/policies_controller.rb:41
|
|
52
58
|
msgid "Policy description"
|
|
53
59
|
msgstr ""
|
|
54
60
|
|
|
55
|
-
#: ../app/controllers/api/v2/compliance/policies_controller.rb:
|
|
61
|
+
#: ../app/controllers/api/v2/compliance/policies_controller.rb:42
|
|
56
62
|
msgid "Policy SCAP content ID"
|
|
57
63
|
msgstr ""
|
|
58
64
|
|
|
59
|
-
#: ../app/controllers/api/v2/compliance/policies_controller.rb:
|
|
65
|
+
#: ../app/controllers/api/v2/compliance/policies_controller.rb:43
|
|
60
66
|
msgid "Policy SCAP content profile ID"
|
|
61
67
|
msgstr ""
|
|
62
68
|
|
|
63
|
-
#: ../app/controllers/api/v2/compliance/policies_controller.rb:
|
|
64
|
-
msgid "Policy schedule period"
|
|
69
|
+
#: ../app/controllers/api/v2/compliance/policies_controller.rb:44
|
|
70
|
+
msgid "Policy schedule period (weekly, monthly, custom)"
|
|
65
71
|
msgstr ""
|
|
66
72
|
|
|
67
|
-
#: ../app/controllers/api/v2/compliance/policies_controller.rb:
|
|
68
|
-
msgid "Policy schedule weekday"
|
|
73
|
+
#: ../app/controllers/api/v2/compliance/policies_controller.rb:45
|
|
74
|
+
msgid "Policy schedule weekday (only if period == \"weekly\")"
|
|
69
75
|
msgstr ""
|
|
70
76
|
|
|
71
|
-
#: ../app/controllers/api/v2/compliance/policies_controller.rb:
|
|
77
|
+
#: ../app/controllers/api/v2/compliance/policies_controller.rb:46
|
|
78
|
+
msgid "Policy schedule day of month (only if period == \"monthly\")"
|
|
79
|
+
msgstr ""
|
|
80
|
+
|
|
81
|
+
#: ../app/controllers/api/v2/compliance/policies_controller.rb:47
|
|
82
|
+
msgid "Policy schedule cron line (only if period == \"custom\")"
|
|
83
|
+
msgstr ""
|
|
84
|
+
|
|
85
|
+
#: ../app/controllers/api/v2/compliance/policies_controller.rb:48
|
|
72
86
|
msgid "Apply policy to host groups"
|
|
73
87
|
msgstr ""
|
|
74
88
|
|
|
75
|
-
#: ../app/controllers/api/v2/compliance/policies_controller.rb:
|
|
76
|
-
msgid "
|
|
89
|
+
#: ../app/controllers/api/v2/compliance/policies_controller.rb:49
|
|
90
|
+
msgid "Tailoring file ID"
|
|
91
|
+
msgstr ""
|
|
92
|
+
|
|
93
|
+
#: ../app/controllers/api/v2/compliance/policies_controller.rb:50
|
|
94
|
+
msgid "Tailoring file profile ID"
|
|
95
|
+
msgstr ""
|
|
96
|
+
|
|
97
|
+
#: ../app/controllers/api/v2/compliance/policies_controller.rb:55
|
|
98
|
+
msgid "Create a Policy"
|
|
77
99
|
msgstr ""
|
|
78
100
|
|
|
79
|
-
#: ../app/controllers/api/v2/compliance/policies_controller.rb:
|
|
80
|
-
msgid "Update a
|
|
101
|
+
#: ../app/controllers/api/v2/compliance/policies_controller.rb:63
|
|
102
|
+
msgid "Update a Policy"
|
|
81
103
|
msgstr ""
|
|
82
104
|
|
|
83
|
-
#: ../app/controllers/api/v2/compliance/policies_controller.rb:
|
|
84
|
-
msgid "
|
|
105
|
+
#: ../app/controllers/api/v2/compliance/policies_controller.rb:71
|
|
106
|
+
msgid "Delete a Policy"
|
|
85
107
|
msgstr ""
|
|
86
108
|
|
|
87
|
-
#: ../app/controllers/api/v2/compliance/policies_controller.rb:
|
|
109
|
+
#: ../app/controllers/api/v2/compliance/policies_controller.rb:78
|
|
88
110
|
msgid "Show a policy's SCAP content"
|
|
89
111
|
msgstr ""
|
|
90
112
|
|
|
113
|
+
#: ../app/controllers/api/v2/compliance/policies_controller.rb:88
|
|
114
|
+
msgid "Show a policy's Tailoring file"
|
|
115
|
+
msgstr ""
|
|
116
|
+
|
|
117
|
+
#: ../app/controllers/api/v2/compliance/scap_contents_controller.rb:15
|
|
118
|
+
msgid "List SCAP contents"
|
|
119
|
+
msgstr ""
|
|
120
|
+
|
|
121
|
+
#: ../app/controllers/api/v2/compliance/scap_contents_controller.rb:22
|
|
122
|
+
msgid "Show an SCAP content as XML"
|
|
123
|
+
msgstr ""
|
|
124
|
+
|
|
125
|
+
#: ../app/controllers/api/v2/compliance/scap_contents_controller.rb:31
|
|
126
|
+
msgid "Show an SCAP content"
|
|
127
|
+
msgstr ""
|
|
128
|
+
|
|
91
129
|
#: ../app/controllers/api/v2/compliance/scap_contents_controller.rb:38
|
|
92
130
|
msgid "SCAP content name"
|
|
93
131
|
msgstr ""
|
|
94
132
|
|
|
95
|
-
#: ../app/controllers/api/v2/compliance/scap_contents_controller.rb:
|
|
133
|
+
#: ../app/controllers/api/v2/compliance/scap_contents_controller.rb:39
|
|
134
|
+
msgid "XML containing SCAP content"
|
|
135
|
+
msgstr ""
|
|
136
|
+
|
|
137
|
+
#: ../app/controllers/api/v2/compliance/scap_contents_controller.rb:40
|
|
138
|
+
#: ../app/controllers/api/v2/compliance/tailoring_files_controller.rb:41
|
|
139
|
+
msgid "Original file name of the XML file"
|
|
140
|
+
msgstr ""
|
|
141
|
+
|
|
142
|
+
#: ../app/controllers/api/v2/compliance/scap_contents_controller.rb:45
|
|
96
143
|
msgid "Create SCAP content"
|
|
97
144
|
msgstr ""
|
|
98
145
|
|
|
99
|
-
#: ../app/controllers/api/v2/compliance/scap_contents_controller.rb:
|
|
146
|
+
#: ../app/controllers/api/v2/compliance/scap_contents_controller.rb:53
|
|
100
147
|
msgid "Update an SCAP content"
|
|
101
148
|
msgstr ""
|
|
102
149
|
|
|
103
|
-
#: ../app/controllers/api/v2/compliance/scap_contents_controller.rb:
|
|
150
|
+
#: ../app/controllers/api/v2/compliance/scap_contents_controller.rb:61
|
|
104
151
|
msgid "Deletes an SCAP content"
|
|
105
152
|
msgstr ""
|
|
106
153
|
|
|
107
|
-
#: ../app/controllers/
|
|
154
|
+
#: ../app/controllers/api/v2/compliance/tailoring_files_controller.rb:16
|
|
155
|
+
msgid "List Tailoring files"
|
|
156
|
+
msgstr ""
|
|
157
|
+
|
|
158
|
+
#: ../app/controllers/api/v2/compliance/tailoring_files_controller.rb:23
|
|
159
|
+
msgid "Show a Tailoring file as XML"
|
|
160
|
+
msgstr ""
|
|
161
|
+
|
|
162
|
+
#: ../app/controllers/api/v2/compliance/tailoring_files_controller.rb:32
|
|
163
|
+
msgid "Show a Tailoring file"
|
|
164
|
+
msgstr ""
|
|
165
|
+
|
|
166
|
+
#: ../app/controllers/api/v2/compliance/tailoring_files_controller.rb:39
|
|
167
|
+
msgid "Tailoring file name"
|
|
168
|
+
msgstr ""
|
|
169
|
+
|
|
170
|
+
#: ../app/controllers/api/v2/compliance/tailoring_files_controller.rb:40
|
|
171
|
+
msgid "XML containing tailoring file"
|
|
172
|
+
msgstr ""
|
|
173
|
+
|
|
174
|
+
#: ../app/controllers/api/v2/compliance/tailoring_files_controller.rb:46
|
|
175
|
+
msgid "Create a Tailoring file"
|
|
176
|
+
msgstr ""
|
|
177
|
+
|
|
178
|
+
#: ../app/controllers/api/v2/compliance/tailoring_files_controller.rb:54
|
|
179
|
+
msgid "Update a Tailoring file"
|
|
180
|
+
msgstr ""
|
|
181
|
+
|
|
182
|
+
#: ../app/controllers/api/v2/compliance/tailoring_files_controller.rb:62
|
|
183
|
+
msgid "Deletes a Tailoring file"
|
|
184
|
+
msgstr ""
|
|
185
|
+
|
|
186
|
+
#: ../app/controllers/arf_reports_controller.rb:37
|
|
108
187
|
msgid "Failed to downloaded ARF report as bzip: %s"
|
|
109
188
|
msgstr ""
|
|
110
189
|
|
|
111
|
-
#: ../app/controllers/arf_reports_controller.rb:
|
|
190
|
+
#: ../app/controllers/arf_reports_controller.rb:48
|
|
191
|
+
msgid "Failed to downloaded ARF report in HTML: %s"
|
|
192
|
+
msgstr ""
|
|
193
|
+
|
|
194
|
+
#: ../app/controllers/arf_reports_controller.rb:55
|
|
112
195
|
msgid "Successfully deleted ARF report."
|
|
113
196
|
msgstr ""
|
|
114
197
|
|
|
115
|
-
#: ../app/controllers/arf_reports_controller.rb:
|
|
198
|
+
#: ../app/controllers/arf_reports_controller.rb:57
|
|
116
199
|
msgid "Failed to delete ARF Report for host %{host_name} reported at %{reported_at}"
|
|
117
200
|
msgstr ""
|
|
118
201
|
|
|
119
|
-
#: ../app/controllers/arf_reports_controller.rb:
|
|
202
|
+
#: ../app/controllers/arf_reports_controller.rb:67
|
|
120
203
|
msgid "Failed to delete %s compliance reports"
|
|
121
204
|
msgstr ""
|
|
122
205
|
|
|
123
|
-
#: ../app/controllers/arf_reports_controller.rb:
|
|
206
|
+
#: ../app/controllers/arf_reports_controller.rb:70
|
|
124
207
|
msgid "Successfully deleted %s compliance reports"
|
|
125
208
|
msgstr ""
|
|
126
209
|
|
|
127
|
-
#: ../app/controllers/arf_reports_controller.rb:
|
|
210
|
+
#: ../app/controllers/arf_reports_controller.rb:85
|
|
128
211
|
msgid "No compliance reports were found."
|
|
129
212
|
msgstr ""
|
|
130
213
|
|
|
131
|
-
#: ../app/controllers/arf_reports_controller.rb:
|
|
214
|
+
#: ../app/controllers/arf_reports_controller.rb:89
|
|
132
215
|
msgid "No compliance reports selected"
|
|
133
216
|
msgstr ""
|
|
134
217
|
|
|
135
|
-
#: ../app/controllers/arf_reports_controller.rb:
|
|
218
|
+
#: ../app/controllers/arf_reports_controller.rb:94
|
|
136
219
|
msgid "Something went wrong while selecting compliance reports - %s"
|
|
137
220
|
msgstr ""
|
|
138
221
|
|
|
139
|
-
#: ../app/controllers/policies_controller.rb:
|
|
222
|
+
#: ../app/controllers/policies_controller.rb:84
|
|
140
223
|
msgid "Updated hosts: Assigned with compliance policy: %s"
|
|
141
224
|
msgstr ""
|
|
142
225
|
|
|
143
|
-
#: ../app/controllers/policies_controller.rb:
|
|
226
|
+
#: ../app/controllers/policies_controller.rb:88
|
|
144
227
|
msgid "No compliance policy selected."
|
|
145
228
|
msgstr ""
|
|
146
229
|
|
|
147
|
-
#: ../app/controllers/policies_controller.rb:
|
|
230
|
+
#: ../app/controllers/policies_controller.rb:99
|
|
148
231
|
msgid "Updated hosts: Unassigned from compliance policy '%s'"
|
|
149
232
|
msgstr ""
|
|
150
233
|
|
|
151
|
-
#: ../app/controllers/policies_controller.rb:
|
|
234
|
+
#: ../app/controllers/policies_controller.rb:102
|
|
152
235
|
msgid "No valid policy ID provided"
|
|
153
236
|
msgstr ""
|
|
154
237
|
|
|
155
|
-
#: ../app/controllers/policies_controller.rb:
|
|
238
|
+
#: ../app/controllers/policies_controller.rb:121
|
|
156
239
|
msgid "No hosts were found."
|
|
157
240
|
msgstr ""
|
|
158
241
|
|
|
159
|
-
#: ../app/controllers/policies_controller.rb:
|
|
242
|
+
#: ../app/controllers/policies_controller.rb:125
|
|
160
243
|
msgid "No hosts selected"
|
|
161
244
|
msgstr ""
|
|
162
245
|
|
|
163
|
-
#: ../app/controllers/policies_controller.rb:
|
|
246
|
+
#: ../app/controllers/policies_controller.rb:130
|
|
164
247
|
msgid "Something went wrong while selecting hosts - %s"
|
|
165
248
|
msgstr ""
|
|
166
249
|
|
|
167
250
|
#: ../app/helpers/arf_report_dashboard_helper.rb:10
|
|
251
|
+
#: ../app/helpers/compliance_dashboard_helper.rb:9
|
|
168
252
|
#: ../app/helpers/compliance_hosts_helper.rb:6
|
|
169
253
|
#: ../app/helpers/compliance_hosts_helper.rb:24
|
|
170
254
|
#: ../app/views/arf_reports/_list.html.erb:9
|
|
171
|
-
#: ../app/views/dashboard/_compliance_host_reports_widget.html.erb:13
|
|
172
255
|
#: ../app/views/foreman_openscap/policy_mailer/_hosts.erb:11
|
|
173
256
|
#: ../app/views/policy_dashboard/_policy_reports.html.erb:6
|
|
174
257
|
msgid "Failed"
|
|
175
258
|
msgstr ""
|
|
176
259
|
|
|
177
260
|
#: ../app/helpers/arf_report_dashboard_helper.rb:11
|
|
261
|
+
#: ../app/helpers/compliance_dashboard_helper.rb:7
|
|
178
262
|
#: ../app/helpers/compliance_hosts_helper.rb:5
|
|
179
263
|
#: ../app/helpers/compliance_hosts_helper.rb:23
|
|
180
264
|
#: ../app/views/arf_reports/_list.html.erb:8
|
|
181
|
-
#: ../app/views/dashboard/_compliance_host_reports_widget.html.erb:11
|
|
182
265
|
#: ../app/views/foreman_openscap/policy_mailer/_hosts.erb:8
|
|
183
266
|
#: ../app/views/policy_dashboard/_policy_reports.html.erb:5
|
|
184
267
|
msgid "Passed"
|
|
185
268
|
msgstr ""
|
|
186
269
|
|
|
187
270
|
#: ../app/helpers/arf_report_dashboard_helper.rb:12
|
|
271
|
+
#: ../app/helpers/compliance_dashboard_helper.rb:11
|
|
188
272
|
#: ../app/helpers/compliance_hosts_helper.rb:25
|
|
189
|
-
#: ../app/views/dashboard/_compliance_host_reports_widget.html.erb:15
|
|
190
273
|
msgid "Othered"
|
|
191
274
|
msgstr ""
|
|
192
275
|
|
|
193
276
|
#: ../app/helpers/arf_report_dashboard_helper.rb:16
|
|
194
277
|
#: ../app/helpers/compliance_hosts_helper.rb:11
|
|
195
|
-
#: ../app/views/dashboard/_compliance_reports_breakdown_widget.html.erb:1
|
|
196
278
|
msgid "Compliance reports breakdown"
|
|
197
279
|
msgstr ""
|
|
198
280
|
|
|
199
|
-
#: ../app/helpers/arf_reports_helper.rb:
|
|
281
|
+
#: ../app/helpers/arf_reports_helper.rb:10
|
|
200
282
|
msgid "Show log messages:"
|
|
201
283
|
msgstr ""
|
|
202
284
|
|
|
203
|
-
#: ../app/helpers/arf_reports_helper.rb:
|
|
204
|
-
msgid "
|
|
285
|
+
#: ../app/helpers/arf_reports_helper.rb:11
|
|
286
|
+
msgid "All messages"
|
|
205
287
|
msgstr ""
|
|
206
288
|
|
|
207
|
-
#: ../app/helpers/arf_reports_helper.rb:
|
|
208
|
-
msgid "
|
|
289
|
+
#: ../app/helpers/arf_reports_helper.rb:11
|
|
290
|
+
msgid "Failed and Othered"
|
|
209
291
|
msgstr ""
|
|
210
292
|
|
|
211
|
-
#: ../app/helpers/arf_reports_helper.rb:
|
|
293
|
+
#: ../app/helpers/arf_reports_helper.rb:11
|
|
212
294
|
msgid "Failed only"
|
|
213
295
|
msgstr ""
|
|
214
296
|
|
|
215
|
-
#: ../app/helpers/arf_reports_helper.rb:
|
|
297
|
+
#: ../app/helpers/arf_reports_helper.rb:44
|
|
216
298
|
msgid "Delete reports"
|
|
217
299
|
msgstr ""
|
|
218
300
|
|
|
219
|
-
#: ../app/helpers/arf_reports_helper.rb:
|
|
301
|
+
#: ../app/helpers/arf_reports_helper.rb:49
|
|
220
302
|
msgid "Select Action"
|
|
221
303
|
msgstr ""
|
|
222
304
|
|
|
223
|
-
#: ../app/helpers/arf_reports_helper.rb:
|
|
305
|
+
#: ../app/helpers/arf_reports_helper.rb:52
|
|
224
306
|
msgid "%s - The following compliance reports are about to be changed"
|
|
225
307
|
msgstr ""
|
|
226
308
|
|
|
309
|
+
#. TRANSLATORS: initial character of Passed
|
|
310
|
+
#: ../app/helpers/compliance_dashboard_helper.rb:7
|
|
311
|
+
msgid "Passed|P"
|
|
312
|
+
msgstr ""
|
|
313
|
+
|
|
314
|
+
#. TRANSLATORS: initial character of Failed
|
|
315
|
+
#: ../app/helpers/compliance_dashboard_helper.rb:9
|
|
316
|
+
msgid "Failed|F"
|
|
317
|
+
msgstr ""
|
|
318
|
+
|
|
319
|
+
#. TRANSLATORS: initial character of Othered which is an SCAP term
|
|
320
|
+
#: ../app/helpers/compliance_dashboard_helper.rb:11
|
|
321
|
+
msgid "Othered|O"
|
|
322
|
+
msgstr ""
|
|
323
|
+
|
|
227
324
|
#: ../app/helpers/compliance_hosts_helper.rb:7
|
|
228
325
|
#: ../app/views/arf_reports/_list.html.erb:10
|
|
229
326
|
#: ../app/views/foreman_openscap/policy_mailer/_hosts.erb:14
|
|
@@ -243,59 +340,87 @@ msgstr ""
|
|
|
243
340
|
msgid "Host is deleted"
|
|
244
341
|
msgstr ""
|
|
245
342
|
|
|
246
|
-
#: ../app/helpers/policies_helper.rb:
|
|
343
|
+
#: ../app/helpers/policies_helper.rb:20
|
|
247
344
|
msgid "Choose existing SCAP Content"
|
|
248
345
|
msgstr ""
|
|
249
346
|
|
|
250
|
-
#: ../app/helpers/policies_helper.rb:
|
|
347
|
+
#: ../app/helpers/policies_helper.rb:21 ../app/helpers/policies_helper.rb:26
|
|
251
348
|
#: ../app/views/policies/_form.html.erb:9
|
|
349
|
+
#: ../app/views/scap_contents/welcome.html.erb:1
|
|
350
|
+
#: ../app/views/scap_contents/welcome.html.erb:6
|
|
252
351
|
msgid "SCAP Content"
|
|
253
352
|
msgstr ""
|
|
254
353
|
|
|
255
|
-
#: ../app/helpers/policies_helper.rb:
|
|
354
|
+
#: ../app/helpers/policies_helper.rb:36 ../app/helpers/policies_helper.rb:43
|
|
256
355
|
msgid "XCCDF Profile"
|
|
257
356
|
msgstr ""
|
|
258
357
|
|
|
259
|
-
#: ../app/helpers/policies_helper.rb:
|
|
358
|
+
#: ../app/helpers/policies_helper.rb:42
|
|
260
359
|
msgid "Default XCCDF profile"
|
|
261
360
|
msgstr ""
|
|
262
361
|
|
|
263
|
-
#: ../app/helpers/policies_helper.rb:
|
|
264
|
-
|
|
362
|
+
#: ../app/helpers/policies_helper.rb:51
|
|
363
|
+
msgid "Choose Tailoring File"
|
|
364
|
+
msgstr ""
|
|
365
|
+
|
|
366
|
+
#: ../app/helpers/policies_helper.rb:52 ../app/views/policies/_list.html.erb:6
|
|
367
|
+
msgid "Tailoring File"
|
|
368
|
+
msgstr ""
|
|
369
|
+
|
|
370
|
+
#: ../app/helpers/policies_helper.rb:61
|
|
371
|
+
msgid "XCCDF Profile in Tailoring File"
|
|
372
|
+
msgstr ""
|
|
373
|
+
|
|
374
|
+
#: ../app/helpers/policies_helper.rb:62
|
|
375
|
+
msgid "This profile will be used to override the one from scap content"
|
|
376
|
+
msgstr ""
|
|
377
|
+
|
|
378
|
+
#: ../app/helpers/policies_helper.rb:73
|
|
379
|
+
#: ../app/views/arf_reports/_list.html.erb:49
|
|
265
380
|
msgid "Submit"
|
|
266
381
|
msgstr ""
|
|
267
382
|
|
|
268
|
-
#: ../app/helpers/policies_helper.rb:
|
|
269
|
-
#: ../app/views/arf_reports/_list.html.erb:
|
|
383
|
+
#: ../app/helpers/policies_helper.rb:78
|
|
384
|
+
#: ../app/views/arf_reports/_list.html.erb:48
|
|
270
385
|
msgid "Cancel"
|
|
271
386
|
msgstr ""
|
|
272
387
|
|
|
273
|
-
#: ../app/helpers/policy_dashboard_helper.rb:
|
|
388
|
+
#: ../app/helpers/policy_dashboard_helper.rb:11
|
|
274
389
|
msgid "Compliant hosts"
|
|
275
390
|
msgstr ""
|
|
276
391
|
|
|
277
|
-
#: ../app/helpers/policy_dashboard_helper.rb:
|
|
392
|
+
#: ../app/helpers/policy_dashboard_helper.rb:12
|
|
278
393
|
msgid "Incompliant hosts"
|
|
279
394
|
msgstr ""
|
|
280
395
|
|
|
281
|
-
#: ../app/helpers/policy_dashboard_helper.rb:
|
|
396
|
+
#: ../app/helpers/policy_dashboard_helper.rb:13
|
|
282
397
|
#: ../app/models/foreman_openscap/compliance_status.rb:20
|
|
283
398
|
msgid "Inconclusive"
|
|
284
399
|
msgstr ""
|
|
285
400
|
|
|
286
|
-
#: ../app/helpers/policy_dashboard_helper.rb:
|
|
401
|
+
#: ../app/helpers/policy_dashboard_helper.rb:14
|
|
287
402
|
msgid "Not audited"
|
|
288
403
|
msgstr ""
|
|
289
404
|
|
|
290
|
-
#: ../app/helpers/policy_dashboard_helper.rb:
|
|
405
|
+
#: ../app/helpers/policy_dashboard_helper.rb:18
|
|
291
406
|
msgid "Compliance Status"
|
|
292
407
|
msgstr ""
|
|
293
408
|
|
|
294
|
-
#: ../app/lib/proxy_api/openscap.rb:
|
|
409
|
+
#: ../app/lib/proxy_api/openscap.rb:21
|
|
410
|
+
msgid "Request timed out. Please try increasing Settings -> proxy_request_timeout"
|
|
411
|
+
msgstr ""
|
|
412
|
+
|
|
413
|
+
#: ../app/lib/proxy_api/openscap.rb:24
|
|
414
|
+
msgid ""
|
|
415
|
+
"Could not validate %s. Please make sure you have appropriate proxy version to "
|
|
416
|
+
"use this functionality"
|
|
417
|
+
msgstr ""
|
|
418
|
+
|
|
419
|
+
#: ../app/lib/proxy_api/openscap.rb:37
|
|
295
420
|
msgid "Unable to get HTML version of requested report from Smart Proxy"
|
|
296
421
|
msgstr ""
|
|
297
422
|
|
|
298
|
-
#: ../app/lib/proxy_api/openscap.rb:
|
|
423
|
+
#: ../app/lib/proxy_api/openscap.rb:46
|
|
299
424
|
msgid "Unable to get XML version of requested report from Smart Proxy"
|
|
300
425
|
msgstr ""
|
|
301
426
|
|
|
@@ -303,23 +428,31 @@ msgstr ""
|
|
|
303
428
|
msgid "SCAP policies summary"
|
|
304
429
|
msgstr ""
|
|
305
430
|
|
|
306
|
-
#: ../app/models/concerns/foreman_openscap/
|
|
431
|
+
#: ../app/models/concerns/foreman_openscap/log_extensions.rb:13
|
|
432
|
+
msgid "is not included in SCAP_RESULT"
|
|
433
|
+
msgstr ""
|
|
434
|
+
|
|
435
|
+
#: ../app/models/concerns/foreman_openscap/openscap_proxy_core_extensions.rb:66
|
|
436
|
+
msgid "must have Openscap feature"
|
|
437
|
+
msgstr ""
|
|
438
|
+
|
|
439
|
+
#: ../app/models/concerns/foreman_openscap/openscap_proxy_core_extensions.rb:71
|
|
307
440
|
msgid ""
|
|
308
|
-
"Puppet class 'foreman_scap_client' not found, make sure it is imported
|
|
441
|
+
"Puppet class 'foreman_scap_client' not found, make sure it is imported from Pu"
|
|
309
442
|
"ppet master"
|
|
310
443
|
msgstr ""
|
|
311
444
|
|
|
312
|
-
#: ../app/models/concerns/foreman_openscap/openscap_proxy_extensions.rb:
|
|
313
|
-
msgid "No OpenSCAP proxy found for %
|
|
445
|
+
#: ../app/models/concerns/foreman_openscap/openscap_proxy_extensions.rb:12
|
|
446
|
+
msgid "No OpenSCAP proxy found for %{class} with %{id}"
|
|
314
447
|
msgstr ""
|
|
315
448
|
|
|
316
|
-
#: ../app/models/foreman_openscap/arf_report.rb:
|
|
449
|
+
#: ../app/models/foreman_openscap/arf_report.rb:71
|
|
317
450
|
msgid "Unsupported report status format"
|
|
318
451
|
msgstr ""
|
|
319
452
|
|
|
320
453
|
#: ../app/models/foreman_openscap/compliance_status.rb:8
|
|
321
454
|
#: ../app/views/compliance_hosts/_compliance_status.erb:2
|
|
322
|
-
#: ../lib/foreman_openscap/engine.rb:
|
|
455
|
+
#: ../lib/foreman_openscap/engine.rb:126
|
|
323
456
|
msgid "Compliance"
|
|
324
457
|
msgstr ""
|
|
325
458
|
|
|
@@ -337,60 +470,83 @@ msgstr ""
|
|
|
337
470
|
msgid "Unknown Compliance status"
|
|
338
471
|
msgstr ""
|
|
339
472
|
|
|
340
|
-
#: ../app/models/foreman_openscap/policy.rb:
|
|
473
|
+
#: ../app/models/foreman_openscap/policy.rb:27
|
|
474
|
+
#: ../app/models/foreman_openscap/policy.rb:274
|
|
475
|
+
msgid "is not a valid value"
|
|
476
|
+
msgstr ""
|
|
477
|
+
|
|
478
|
+
#: ../app/models/foreman_openscap/policy.rb:50
|
|
341
479
|
msgid "Cannot generate HTML guide for %{scap_content}/%{profile}"
|
|
342
480
|
msgstr ""
|
|
343
481
|
|
|
344
|
-
#: ../app/models/foreman_openscap/policy.rb:
|
|
482
|
+
#: ../app/models/foreman_openscap/policy.rb:57
|
|
345
483
|
msgid "No valid OpenSCAP proxy server found."
|
|
346
484
|
msgstr ""
|
|
347
485
|
|
|
348
|
-
#: ../app/models/foreman_openscap/policy.rb:
|
|
486
|
+
#: ../app/models/foreman_openscap/policy.rb:243
|
|
349
487
|
msgid "Required Puppet class %{class} is not found, please ensure it imported first."
|
|
350
488
|
msgstr ""
|
|
351
489
|
|
|
352
|
-
#: ../app/models/foreman_openscap/policy.rb:
|
|
490
|
+
#: ../app/models/foreman_openscap/policy.rb:248
|
|
353
491
|
msgid "Puppet class %{class} does not have %{parameter} class parameter."
|
|
354
492
|
msgstr ""
|
|
355
493
|
|
|
356
|
-
#: ../app/models/foreman_openscap/policy.rb:
|
|
494
|
+
#: ../app/models/foreman_openscap/policy.rb:257
|
|
357
495
|
msgid "%{parameter} class parameter for class %{class} could not be configured."
|
|
358
496
|
msgstr ""
|
|
359
497
|
|
|
360
|
-
#: ../app/models/foreman_openscap/policy.rb:
|
|
361
|
-
msgid "
|
|
498
|
+
#: ../app/models/foreman_openscap/policy.rb:268
|
|
499
|
+
msgid "does not consist of 5 parts separated by space"
|
|
362
500
|
msgstr ""
|
|
363
501
|
|
|
364
|
-
#: ../app/models/foreman_openscap/policy.rb:
|
|
365
|
-
msgid "
|
|
502
|
+
#: ../app/models/foreman_openscap/policy.rb:280
|
|
503
|
+
msgid "must be between 1 and 31"
|
|
366
504
|
msgstr ""
|
|
367
505
|
|
|
368
|
-
#: ../app/models/foreman_openscap/policy.rb:
|
|
369
|
-
msgid "
|
|
506
|
+
#: ../app/models/foreman_openscap/policy.rb:285
|
|
507
|
+
msgid "must be present when tailoring file profile present"
|
|
370
508
|
msgstr ""
|
|
371
509
|
|
|
372
|
-
#: ../app/models/foreman_openscap/policy.rb:
|
|
373
|
-
msgid "
|
|
510
|
+
#: ../app/models/foreman_openscap/policy.rb:286
|
|
511
|
+
msgid "must be present when tailoring file present"
|
|
374
512
|
msgstr ""
|
|
375
513
|
|
|
376
|
-
#: ../app/models/foreman_openscap/
|
|
377
|
-
msgid "
|
|
514
|
+
#: ../app/models/foreman_openscap/policy.rb:291
|
|
515
|
+
msgid "does not come from selected tailoring file"
|
|
378
516
|
msgstr ""
|
|
379
517
|
|
|
380
|
-
#: ../app/
|
|
381
|
-
msgid "
|
|
518
|
+
#: ../app/services/foreman_openscap/arf_report_status_calculator.rb:31
|
|
519
|
+
msgid "invalid type %s"
|
|
382
520
|
msgstr ""
|
|
383
521
|
|
|
384
|
-
#: ../app/
|
|
385
|
-
msgid "
|
|
522
|
+
#: ../app/services/foreman_openscap/openscap_proxy_version_check.rb:40
|
|
523
|
+
msgid "This feature is temporarily disabled. "
|
|
386
524
|
msgstr ""
|
|
387
525
|
|
|
388
|
-
#: ../app/
|
|
389
|
-
msgid "
|
|
526
|
+
#: ../app/services/foreman_openscap/openscap_proxy_version_check.rb:41
|
|
527
|
+
msgid "The following Smart Proxies need to be updated to unlock the feature: %s. "
|
|
390
528
|
msgstr ""
|
|
391
529
|
|
|
392
|
-
#: ../app/services/foreman_openscap/
|
|
393
|
-
msgid "
|
|
530
|
+
#: ../app/services/foreman_openscap/openscap_proxy_version_check.rb:42
|
|
531
|
+
msgid ""
|
|
532
|
+
"The following proxies could not be reached: %s. Please make sure they are avai"
|
|
533
|
+
"lable so Foreman can check their versions."
|
|
534
|
+
msgstr ""
|
|
535
|
+
|
|
536
|
+
#: ../app/validators/foreman_openscap/data_stream_validator.rb:9
|
|
537
|
+
msgid "No proxy with OpenSCAP features"
|
|
538
|
+
msgstr ""
|
|
539
|
+
|
|
540
|
+
#: ../app/validators/foreman_openscap/data_stream_validator.rb:14
|
|
541
|
+
msgid "No available proxy to validate SCAP data stream file"
|
|
542
|
+
msgstr ""
|
|
543
|
+
|
|
544
|
+
#: ../app/validators/foreman_openscap/data_stream_validator.rb:26
|
|
545
|
+
msgid "No available proxy to validate. Returned with error: %s"
|
|
546
|
+
msgstr ""
|
|
547
|
+
|
|
548
|
+
#: ../app/validators/foreman_openscap/data_stream_validator.rb:33
|
|
549
|
+
msgid "Changed file does not include existing SCAP content profiles"
|
|
394
550
|
msgstr ""
|
|
395
551
|
|
|
396
552
|
#: ../app/views/arf_reports/_detailed_message.html.erb:3
|
|
@@ -422,17 +578,23 @@ msgstr ""
|
|
|
422
578
|
msgid "Reported At"
|
|
423
579
|
msgstr ""
|
|
424
580
|
|
|
425
|
-
#: ../app/views/arf_reports/_list.html.erb:
|
|
581
|
+
#: ../app/views/arf_reports/_list.html.erb:25
|
|
426
582
|
#: ../app/views/policy_dashboard/_policy_reports.html.erb:13
|
|
427
|
-
#: ../app/views/scap_contents/_list.html.erb:
|
|
583
|
+
#: ../app/views/scap_contents/_list.html.erb:13
|
|
584
|
+
#: ../app/views/smart_proxies/_openscap_spool.html.erb:4
|
|
585
|
+
#: ../app/views/tailoring_files/_list.html.erb:17
|
|
428
586
|
msgid "%s ago"
|
|
429
587
|
msgstr ""
|
|
430
588
|
|
|
431
|
-
#: ../app/views/arf_reports/_list.html.erb:
|
|
589
|
+
#: ../app/views/arf_reports/_list.html.erb:31
|
|
432
590
|
msgid "Delete compliance report for %s?"
|
|
433
591
|
msgstr ""
|
|
434
592
|
|
|
435
|
-
#: ../app/views/arf_reports/_list.html.erb:
|
|
593
|
+
#: ../app/views/arf_reports/_list.html.erb:32
|
|
594
|
+
msgid "Full Report"
|
|
595
|
+
msgstr ""
|
|
596
|
+
|
|
597
|
+
#: ../app/views/arf_reports/_list.html.erb:43
|
|
436
598
|
msgid "Please Confirm"
|
|
437
599
|
msgstr ""
|
|
438
600
|
|
|
@@ -473,7 +635,6 @@ msgid "Nothing to show"
|
|
|
473
635
|
msgstr ""
|
|
474
636
|
|
|
475
637
|
#: ../app/views/arf_reports/delete_multiple.html.erb:7
|
|
476
|
-
#: ../app/views/dashboard/_compliance_host_reports_widget.html.erb:8
|
|
477
638
|
#: ../app/views/policy_dashboard/_policy_reports.html.erb:3
|
|
478
639
|
msgid "Host"
|
|
479
640
|
msgstr ""
|
|
@@ -510,6 +671,10 @@ msgstr ""
|
|
|
510
671
|
msgid "Download XML in bzip"
|
|
511
672
|
msgstr ""
|
|
512
673
|
|
|
674
|
+
#: ../app/views/arf_reports/show.html.erb:16
|
|
675
|
+
msgid "Download HTML"
|
|
676
|
+
msgstr ""
|
|
677
|
+
|
|
513
678
|
#: ../app/views/arf_reports/show_html.html.erb:6
|
|
514
679
|
msgid "Loading..."
|
|
515
680
|
msgstr ""
|
|
@@ -518,8 +683,8 @@ msgstr ""
|
|
|
518
683
|
msgid "Host compliance details"
|
|
519
684
|
msgstr ""
|
|
520
685
|
|
|
521
|
-
#: ../app/views/compliance_hosts/_openscap_proxy.html.erb:
|
|
522
|
-
msgid "
|
|
686
|
+
#: ../app/views/compliance_hosts/_openscap_proxy.html.erb:3
|
|
687
|
+
msgid "Openscap Proxy"
|
|
523
688
|
msgstr ""
|
|
524
689
|
|
|
525
690
|
#: ../app/views/compliance_hosts/show.html.erb:3
|
|
@@ -545,31 +710,25 @@ msgid "No report for this policy"
|
|
|
545
710
|
msgstr ""
|
|
546
711
|
|
|
547
712
|
#: ../app/views/dashboard/_compliance_host_reports_widget.html.erb:1
|
|
548
|
-
|
|
713
|
+
#: ../lib/foreman_openscap/engine.rb:143
|
|
714
|
+
msgid "Latest Compliance Reports"
|
|
549
715
|
msgstr ""
|
|
550
716
|
|
|
551
717
|
#: ../app/views/dashboard/_compliance_host_reports_widget.html.erb:4
|
|
552
718
|
msgid "No reports available"
|
|
553
719
|
msgstr ""
|
|
554
720
|
|
|
555
|
-
#: ../app/views/dashboard/_compliance_host_reports_widget.html.erb:
|
|
556
|
-
msgid "
|
|
557
|
-
msgstr ""
|
|
558
|
-
|
|
559
|
-
#: ../app/views/dashboard/_compliance_host_reports_widget.html.erb:11
|
|
560
|
-
msgid "Passed|P"
|
|
721
|
+
#: ../app/views/dashboard/_compliance_host_reports_widget.html.erb:12
|
|
722
|
+
msgid "Host does not exist anymore"
|
|
561
723
|
msgstr ""
|
|
562
724
|
|
|
563
725
|
#: ../app/views/dashboard/_compliance_host_reports_widget.html.erb:13
|
|
564
|
-
msgid "
|
|
726
|
+
msgid "Policy is missing"
|
|
565
727
|
msgstr ""
|
|
566
728
|
|
|
567
|
-
#: ../app/views/dashboard/
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
|
|
571
|
-
#: ../app/views/dashboard/_compliance_host_reports_widget.html.erb:19
|
|
572
|
-
msgid "Host does not exist anymore"
|
|
729
|
+
#: ../app/views/dashboard/_compliance_reports_breakdown_widget.html.erb:1
|
|
730
|
+
#: ../lib/foreman_openscap/engine.rb:145
|
|
731
|
+
msgid "Compliance Reports Breakdown"
|
|
573
732
|
msgstr ""
|
|
574
733
|
|
|
575
734
|
#: ../app/views/foreman_openscap/policy_mailer/_dashboard.erb:9
|
|
@@ -585,11 +744,11 @@ msgid "Changed?"
|
|
|
585
744
|
msgstr ""
|
|
586
745
|
|
|
587
746
|
#: ../app/views/foreman_openscap/policy_mailer/_hosts.erb:36
|
|
588
|
-
msgid "
|
|
747
|
+
msgid "Yes"
|
|
589
748
|
msgstr ""
|
|
590
749
|
|
|
591
750
|
#: ../app/views/foreman_openscap/policy_mailer/_hosts.erb:36
|
|
592
|
-
msgid "
|
|
751
|
+
msgid "No"
|
|
593
752
|
msgstr ""
|
|
594
753
|
|
|
595
754
|
#: ../app/views/foreman_openscap/policy_mailer/_hosts.erb:40
|
|
@@ -632,11 +791,13 @@ msgstr ""
|
|
|
632
791
|
|
|
633
792
|
#: ../app/views/policies/_form.html.erb:12
|
|
634
793
|
#: ../app/views/scap_contents/_form.html.erb:11
|
|
794
|
+
#: ../app/views/tailoring_files/_form.html.erb:11
|
|
635
795
|
msgid "Locations"
|
|
636
796
|
msgstr ""
|
|
637
797
|
|
|
638
798
|
#: ../app/views/policies/_form.html.erb:15
|
|
639
799
|
#: ../app/views/scap_contents/_form.html.erb:14
|
|
800
|
+
#: ../app/views/tailoring_files/_form.html.erb:14
|
|
640
801
|
msgid "Organizations"
|
|
641
802
|
msgstr ""
|
|
642
803
|
|
|
@@ -644,39 +805,61 @@ msgstr ""
|
|
|
644
805
|
msgid "Host Groups"
|
|
645
806
|
msgstr ""
|
|
646
807
|
|
|
647
|
-
#: ../app/views/policies/_form.html.erb:
|
|
808
|
+
#: ../app/views/policies/_form.html.erb:41
|
|
648
809
|
#: ../app/views/policies/steps/_schedule_form.html.erb:6
|
|
649
810
|
msgid "Choose period"
|
|
650
811
|
msgstr ""
|
|
651
812
|
|
|
652
|
-
#: ../app/views/policies/_form.html.erb:
|
|
813
|
+
#: ../app/views/policies/_form.html.erb:43
|
|
653
814
|
#: ../app/views/policies/steps/_schedule_form.html.erb:8
|
|
654
815
|
msgid "Choose weekday"
|
|
655
816
|
msgstr ""
|
|
656
817
|
|
|
657
|
-
#: ../app/views/policies/_form.html.erb:
|
|
818
|
+
#: ../app/views/policies/_form.html.erb:44
|
|
658
819
|
#: ../app/views/policies/steps/_schedule_form.html.erb:9
|
|
659
820
|
msgid "Number of a day in month, note that not all months have same count of days"
|
|
660
821
|
msgstr ""
|
|
661
822
|
|
|
662
|
-
#: ../app/views/policies/_form.html.erb:
|
|
823
|
+
#: ../app/views/policies/_form.html.erb:45
|
|
663
824
|
#: ../app/views/policies/steps/_schedule_form.html.erb:10
|
|
664
825
|
msgid ""
|
|
665
826
|
"You can specify custom cron line, e.g. \"0 3 * * *\", separate each of 5 val"
|
|
666
827
|
"ues by space"
|
|
667
828
|
msgstr ""
|
|
668
829
|
|
|
669
|
-
#: ../app/views/policies/_list.html.erb:
|
|
830
|
+
#: ../app/views/policies/_list.html.erb:3
|
|
831
|
+
#: ../app/views/tailoring_files/_list.html.erb:3
|
|
832
|
+
msgid "Name"
|
|
833
|
+
msgstr ""
|
|
834
|
+
|
|
835
|
+
#: ../app/views/policies/_list.html.erb:4
|
|
836
|
+
msgid "Content"
|
|
837
|
+
msgstr ""
|
|
838
|
+
|
|
839
|
+
#: ../app/views/policies/_list.html.erb:5
|
|
840
|
+
msgid "Profile"
|
|
841
|
+
msgstr ""
|
|
842
|
+
|
|
843
|
+
#: ../app/views/policies/_list.html.erb:7
|
|
844
|
+
msgid "Effective Profile"
|
|
845
|
+
msgstr ""
|
|
846
|
+
|
|
847
|
+
#: ../app/views/policies/_list.html.erb:28
|
|
848
|
+
msgid "None"
|
|
849
|
+
msgstr ""
|
|
850
|
+
|
|
851
|
+
#: ../app/views/policies/_list.html.erb:36
|
|
670
852
|
msgid "Show Guide"
|
|
671
853
|
msgstr ""
|
|
672
854
|
|
|
673
|
-
#: ../app/views/policies/_list.html.erb:
|
|
674
|
-
#: ../app/views/scap_contents/_list.html.erb:
|
|
855
|
+
#: ../app/views/policies/_list.html.erb:37
|
|
856
|
+
#: ../app/views/scap_contents/_list.html.erb:17
|
|
857
|
+
#: ../app/views/tailoring_files/_list.html.erb:21
|
|
675
858
|
msgid "Edit"
|
|
676
859
|
msgstr ""
|
|
677
860
|
|
|
678
|
-
#: ../app/views/policies/_list.html.erb:
|
|
679
|
-
#: ../app/views/scap_contents/_list.html.erb:
|
|
861
|
+
#: ../app/views/policies/_list.html.erb:39
|
|
862
|
+
#: ../app/views/scap_contents/_list.html.erb:20
|
|
680
863
|
msgid "Delete compliance policy %s with all the reports?"
|
|
681
864
|
msgstr ""
|
|
682
865
|
|
|
@@ -695,6 +878,8 @@ msgid "Edit Compliance Policy"
|
|
|
695
878
|
msgstr ""
|
|
696
879
|
|
|
697
880
|
#: ../app/views/policies/index.html.erb:2
|
|
881
|
+
#: ../app/views/policies/welcome.html.erb:1
|
|
882
|
+
#: ../app/views/policies/welcome.html.erb:6
|
|
698
883
|
msgid "Compliance Policies"
|
|
699
884
|
msgstr ""
|
|
700
885
|
|
|
@@ -703,35 +888,30 @@ msgstr ""
|
|
|
703
888
|
msgid "Help"
|
|
704
889
|
msgstr ""
|
|
705
890
|
|
|
706
|
-
#: ../app/views/policies/steps/
|
|
707
|
-
msgid "
|
|
891
|
+
#: ../app/views/policies/steps/_schedule_form.html.erb:9
|
|
892
|
+
msgid "Choose day in month"
|
|
708
893
|
msgstr ""
|
|
709
894
|
|
|
710
|
-
#: ../app/views/policies/
|
|
711
|
-
msgid "
|
|
895
|
+
#: ../app/views/policies/steps/_step_form.html.erb:11
|
|
896
|
+
msgid "Next"
|
|
712
897
|
msgstr ""
|
|
713
898
|
|
|
714
|
-
#: ../app/views/policies/welcome.html.erb:
|
|
715
|
-
msgid "
|
|
899
|
+
#: ../app/views/policies/welcome.html.erb:7
|
|
900
|
+
msgid "In Foreman, a compliance policy checklist is defined via %s."
|
|
716
901
|
msgstr ""
|
|
717
902
|
|
|
718
|
-
#: ../app/views/policies/welcome.html.erb:
|
|
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."
|
|
903
|
+
#: ../app/views/policies/welcome.html.erb:7
|
|
904
|
+
msgid "SCAP content"
|
|
724
905
|
msgstr ""
|
|
725
906
|
|
|
726
|
-
#: ../app/views/policies/welcome.html.erb:
|
|
907
|
+
#: ../app/views/policies/welcome.html.erb:8
|
|
727
908
|
msgid ""
|
|
728
|
-
"
|
|
729
|
-
"
|
|
730
|
-
"o run."
|
|
909
|
+
"Once SCAP content is present, you can create a policy, assign select host grou"
|
|
910
|
+
"ps and schedule to run."
|
|
731
911
|
msgstr ""
|
|
732
912
|
|
|
733
|
-
#: ../app/views/policies/welcome.html.erb:
|
|
734
|
-
msgid "
|
|
913
|
+
#: ../app/views/policies/welcome.html.erb:12
|
|
914
|
+
msgid "New Policy"
|
|
735
915
|
msgstr ""
|
|
736
916
|
|
|
737
917
|
#: ../app/views/policy_dashboard/_policy_chart_widget.html.erb:2
|
|
@@ -787,6 +967,7 @@ msgid "Latest reports for policy: %s"
|
|
|
787
967
|
msgstr ""
|
|
788
968
|
|
|
789
969
|
#: ../app/views/scap_contents/_form.html.erb:9
|
|
970
|
+
#: ../app/views/tailoring_files/_form.html.erb:9
|
|
790
971
|
msgid "File Upload"
|
|
791
972
|
msgstr ""
|
|
792
973
|
|
|
@@ -794,7 +975,8 @@ msgstr ""
|
|
|
794
975
|
msgid "Upload SCAP DataStream file"
|
|
795
976
|
msgstr ""
|
|
796
977
|
|
|
797
|
-
#: ../app/views/scap_contents/_list.html.erb:
|
|
978
|
+
#: ../app/views/scap_contents/_list.html.erb:18
|
|
979
|
+
#: ../app/views/tailoring_files/_list.html.erb:24
|
|
798
980
|
msgid "Download"
|
|
799
981
|
msgstr ""
|
|
800
982
|
|
|
@@ -814,60 +996,111 @@ msgstr ""
|
|
|
814
996
|
msgid "Upload new SCAP content file"
|
|
815
997
|
msgstr ""
|
|
816
998
|
|
|
817
|
-
#: ../app/views/scap_contents/welcome.html.erb:
|
|
818
|
-
msgid "
|
|
999
|
+
#: ../app/views/scap_contents/welcome.html.erb:7
|
|
1000
|
+
msgid ""
|
|
1001
|
+
"The Security Content Automation Protocol (SCAP), combines a number of open sta"
|
|
1002
|
+
"ndards that are used to enumerate software flaws and\n"
|
|
1003
|
+
" configuration issues related to security. "
|
|
819
1004
|
msgstr ""
|
|
820
1005
|
|
|
821
|
-
#: ../app/views/scap_contents/welcome.html.erb:
|
|
822
|
-
msgid "
|
|
1006
|
+
#: ../app/views/scap_contents/welcome.html.erb:9
|
|
1007
|
+
msgid ""
|
|
1008
|
+
"In Foreman, scap_contents represent the SCAP security guides on your hosts, an"
|
|
1009
|
+
"d create SCAP profiles for you to assign to hosts / host groups\n"
|
|
1010
|
+
" via %s"
|
|
823
1011
|
msgstr ""
|
|
824
1012
|
|
|
825
|
-
#: ../app/views/scap_contents/welcome.html.erb:
|
|
1013
|
+
#: ../app/views/scap_contents/welcome.html.erb:14
|
|
1014
|
+
msgid "New SCAP Content"
|
|
1015
|
+
msgstr ""
|
|
1016
|
+
|
|
1017
|
+
#: ../app/views/smart_proxies/_openscap_spool.html.erb:7
|
|
1018
|
+
msgid "None found"
|
|
1019
|
+
msgstr ""
|
|
1020
|
+
|
|
1021
|
+
#: ../app/views/smart_proxies/plugins/_openscap.html.erb:7
|
|
826
1022
|
msgid ""
|
|
827
|
-
"
|
|
828
|
-
"
|
|
829
|
-
"
|
|
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. "
|
|
1023
|
+
"Proxy failed to send a report from spool to Foreman. This indicates a corrupte"
|
|
1024
|
+
"d report format. Report has been moved to directory for storing corrupted file"
|
|
1025
|
+
"s on proxy for later inspection."
|
|
834
1026
|
msgstr ""
|
|
835
1027
|
|
|
836
|
-
#: ../app/views/
|
|
837
|
-
msgid "
|
|
1028
|
+
#: ../app/views/smart_proxies/plugins/_openscap.html.erb:8
|
|
1029
|
+
msgid "Last spool error"
|
|
838
1030
|
msgstr ""
|
|
839
1031
|
|
|
840
|
-
#: ../app/views/
|
|
841
|
-
msgid "
|
|
1032
|
+
#: ../app/views/tailoring_files/_form.html.erb:20
|
|
1033
|
+
msgid "Upload DataStream Tailoring file"
|
|
842
1034
|
msgstr ""
|
|
843
1035
|
|
|
844
|
-
#: ../app/views/
|
|
1036
|
+
#: ../app/views/tailoring_files/_list.html.erb:4
|
|
1037
|
+
msgid "Filename"
|
|
1038
|
+
msgstr ""
|
|
1039
|
+
|
|
1040
|
+
#: ../app/views/tailoring_files/_list.html.erb:5
|
|
1041
|
+
msgid "Created"
|
|
1042
|
+
msgstr ""
|
|
1043
|
+
|
|
1044
|
+
#: ../app/views/tailoring_files/_list.html.erb:23
|
|
1045
|
+
msgid "Delete tailoring file %s?"
|
|
1046
|
+
msgstr ""
|
|
1047
|
+
|
|
1048
|
+
#: ../app/views/tailoring_files/edit.html.erb:1
|
|
1049
|
+
msgid "Edit Tailoring File"
|
|
1050
|
+
msgstr ""
|
|
1051
|
+
|
|
1052
|
+
#: ../app/views/tailoring_files/index.html.erb:1
|
|
1053
|
+
#: ../app/views/tailoring_files/welcome.html.erb:1
|
|
1054
|
+
#: ../app/views/tailoring_files/welcome.html.erb:6
|
|
1055
|
+
#: ../lib/foreman_openscap/engine.rb:136
|
|
1056
|
+
msgid "Tailoring Files"
|
|
1057
|
+
msgstr ""
|
|
1058
|
+
|
|
1059
|
+
#: ../app/views/tailoring_files/index.html.erb:2
|
|
1060
|
+
msgid "Upload New Tailoring file"
|
|
1061
|
+
msgstr ""
|
|
1062
|
+
|
|
1063
|
+
#: ../app/views/tailoring_files/new.html.erb:1
|
|
1064
|
+
msgid "Upload new Tailoring File"
|
|
1065
|
+
msgstr ""
|
|
1066
|
+
|
|
1067
|
+
#: ../app/views/tailoring_files/welcome.html.erb:7
|
|
845
1068
|
msgid ""
|
|
846
|
-
"
|
|
847
|
-
"
|
|
848
|
-
|
|
1069
|
+
"It may sometimes be required to adjust the security policy to your specific ne"
|
|
1070
|
+
"eds. "
|
|
1071
|
+
msgstr ""
|
|
1072
|
+
|
|
1073
|
+
#: ../app/views/tailoring_files/welcome.html.erb:8
|
|
1074
|
+
msgid ""
|
|
1075
|
+
"In Foreman, tailoring_files represent the custom modifications to default XCCD"
|
|
1076
|
+
"F profiles and they can be applied to hosts\n"
|
|
1077
|
+
" via %s"
|
|
849
1078
|
msgstr ""
|
|
850
1079
|
|
|
851
|
-
#: ../
|
|
1080
|
+
#: ../app/views/tailoring_files/welcome.html.erb:13
|
|
1081
|
+
msgid "New Tailoring File"
|
|
1082
|
+
msgstr ""
|
|
1083
|
+
|
|
1084
|
+
#: ../db/seeds.d/openscap_policy_notification.rb:1
|
|
1085
|
+
msgid "Openscap policy summary"
|
|
1086
|
+
msgstr ""
|
|
1087
|
+
|
|
1088
|
+
#: ../db/seeds.d/openscap_policy_notification.rb:5
|
|
852
1089
|
msgid "A summary of reports for OpenSCAP policies"
|
|
853
1090
|
msgstr ""
|
|
854
1091
|
|
|
855
|
-
#: ../lib/foreman_openscap/engine.rb:
|
|
1092
|
+
#: ../lib/foreman_openscap/engine.rb:127
|
|
856
1093
|
msgid "Policies"
|
|
857
1094
|
msgstr ""
|
|
858
1095
|
|
|
859
|
-
#: ../lib/foreman_openscap/engine.rb:
|
|
1096
|
+
#: ../lib/foreman_openscap/engine.rb:130
|
|
860
1097
|
msgid "SCAP contents"
|
|
861
1098
|
msgstr ""
|
|
862
1099
|
|
|
863
|
-
#: ../lib/foreman_openscap/engine.rb:
|
|
1100
|
+
#: ../lib/foreman_openscap/engine.rb:133
|
|
864
1101
|
msgid "Reports"
|
|
865
1102
|
msgstr ""
|
|
866
1103
|
|
|
867
|
-
#: ../lib/foreman_openscap/engine.rb:
|
|
868
|
-
msgid "OpenSCAP
|
|
869
|
-
msgstr ""
|
|
870
|
-
|
|
871
|
-
#: ../lib/foreman_openscap/engine.rb:117
|
|
872
|
-
msgid "OpenSCAP Reports breakdown widget"
|
|
1104
|
+
#: ../lib/foreman_openscap/engine.rb:162 ../lib/foreman_openscap/engine.rb:170
|
|
1105
|
+
msgid "Run OpenSCAP scan"
|
|
873
1106
|
msgstr ""
|