foreman_openscap 4.1.3 → 4.3.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (193) hide show
  1. checksums.yaml +4 -4
  2. data/app/assets/stylesheets/foreman_openscap/policy.css +5 -0
  3. data/app/controllers/api/v2/compliance/oval_contents_controller.rb +72 -0
  4. data/app/controllers/api/v2/compliance/oval_policies_controller.rb +111 -0
  5. data/app/controllers/api/v2/compliance/oval_reports_controller.rb +47 -0
  6. data/app/controllers/concerns/foreman/controller/parameters/oval_content.rb +22 -0
  7. data/app/controllers/concerns/foreman/controller/parameters/oval_policy.rb +22 -0
  8. data/app/controllers/concerns/foreman_openscap/hosts_controller_extensions.rb +1 -1
  9. data/app/graphql/types/cve.rb +17 -0
  10. data/app/graphql/types/oval_content.rb +17 -0
  11. data/app/graphql/types/oval_policy.rb +21 -0
  12. data/app/helpers/arf_reports_helper.rb +7 -24
  13. data/app/helpers/policies_helper.rb +4 -17
  14. data/app/mailers/foreman_openscap/policy_mailer.rb +2 -2
  15. data/app/models/concerns/foreman_openscap/compliance_status_scoped_search.rb +1 -1
  16. data/app/models/concerns/foreman_openscap/data_stream_content.rb +0 -17
  17. data/app/models/concerns/foreman_openscap/host_extensions.rb +11 -11
  18. data/app/models/concerns/foreman_openscap/hostgroup_extensions.rb +3 -5
  19. data/app/models/concerns/foreman_openscap/inherited_policies.rb +11 -0
  20. data/app/models/concerns/foreman_openscap/oval_facet_host_extensions.rb +38 -0
  21. data/app/models/concerns/foreman_openscap/oval_facet_hostgroup_extensions.rb +15 -0
  22. data/app/models/concerns/foreman_openscap/policy_common.rb +75 -0
  23. data/app/models/concerns/foreman_openscap/scap_file_content.rb +24 -0
  24. data/app/models/foreman_openscap/arf_report.rb +2 -2
  25. data/app/models/foreman_openscap/cve.rb +23 -0
  26. data/app/models/foreman_openscap/host/oval_facet.rb +14 -0
  27. data/app/models/foreman_openscap/host_cve.rb +7 -0
  28. data/app/models/foreman_openscap/hostgroup/oval_facet.rb +14 -0
  29. data/app/models/foreman_openscap/hostgroup_oval_facet_oval_policy.rb +6 -0
  30. data/app/models/foreman_openscap/oval_content.rb +26 -0
  31. data/app/models/foreman_openscap/oval_facet_oval_policy.rb +6 -0
  32. data/app/models/foreman_openscap/oval_policy.rb +54 -0
  33. data/app/models/foreman_openscap/oval_status.rb +45 -0
  34. data/app/models/foreman_openscap/policy.rb +10 -73
  35. data/app/models/foreman_openscap/scap_content.rb +1 -0
  36. data/app/models/foreman_openscap/tailoring_file.rb +1 -0
  37. data/app/services/foreman_openscap/client_config/ansible.rb +39 -6
  38. data/app/services/foreman_openscap/client_config/base.rb +5 -1
  39. data/app/services/foreman_openscap/client_config/puppet.rb +2 -1
  40. data/app/services/foreman_openscap/config_name_service.rb +1 -1
  41. data/app/services/foreman_openscap/hostgroup_overrider.rb +2 -24
  42. data/app/services/foreman_openscap/hostgroup_overrider_common.rb +28 -0
  43. data/app/services/foreman_openscap/lookup_key_overrider.rb +30 -62
  44. data/app/services/foreman_openscap/lookup_key_overrides_common.rb +63 -0
  45. data/app/services/foreman_openscap/oval/check_collection.rb +45 -0
  46. data/app/services/foreman_openscap/oval/configure.rb +80 -0
  47. data/app/services/foreman_openscap/oval/cves.rb +41 -0
  48. data/app/services/foreman_openscap/oval/setup.rb +93 -0
  49. data/app/services/foreman_openscap/oval/setup_check.rb +55 -0
  50. data/app/services/foreman_openscap/oval/sync_oval_contents.rb +42 -0
  51. data/app/views/api/v2/compliance/oval_contents/base.json.rabl +6 -0
  52. data/app/views/api/v2/compliance/oval_contents/create.json.rabl +3 -0
  53. data/app/views/api/v2/compliance/oval_contents/destroy.json.rabl +3 -0
  54. data/app/views/api/v2/compliance/oval_contents/index.json.rabl +3 -0
  55. data/app/views/api/v2/compliance/oval_contents/show.json.rabl +3 -0
  56. data/app/views/api/v2/compliance/oval_contents/sync.json.rabl +3 -0
  57. data/app/views/api/v2/compliance/oval_contents/sync_result.json.rabl +11 -0
  58. data/app/views/api/v2/compliance/oval_contents/update.json.rabl +3 -0
  59. data/app/views/api/v2/compliance/oval_policies/create.json.rabl +3 -0
  60. data/app/views/api/v2/compliance/oval_policies/index.json.rabl +3 -0
  61. data/app/views/api/v2/compliance/oval_policies/main.json.rabl +15 -0
  62. data/app/views/api/v2/compliance/oval_policies/show.json.rabl +3 -0
  63. data/app/views/api/v2/compliance/policies/base.json.rabl +2 -2
  64. data/app/views/api/v2/compliance/policies_common/_attrs.json.rabl +2 -0
  65. data/app/views/arf_reports/_output.html.erb +9 -1
  66. data/app/views/arf_reports/show.html.erb +1 -1
  67. data/app/views/arf_reports/show_html.html.erb +1 -0
  68. data/app/views/compliance_hosts/show.html.erb +1 -8
  69. data/app/views/job_templates/run_oval_scans.erb +24 -0
  70. data/app/views/policies/edit.html.erb +3 -2
  71. data/app/views/policies/show.html.erb +3 -1
  72. data/app/views/policies/steps/_deployment_options_form.html.erb +2 -2
  73. data/app/views/scap_contents/edit.html.erb +2 -12
  74. data/app/views/tailoring_files/edit.html.erb +2 -10
  75. data/config/initializers/inflections.rb +12 -0
  76. data/config/routes.rb +19 -0
  77. data/db/migrate/20201019074925_create_oval_policy.rb +13 -0
  78. data/db/migrate/20201020113801_create_oval_facet.rb +14 -0
  79. data/db/migrate/20201021084109_create_hostgroup_oval_facet.rb +14 -0
  80. data/db/migrate/20201106080924_create_oval_content.rb +12 -0
  81. data/db/migrate/20201116110256_add_oval_content_to_oval_policy.rb +5 -0
  82. data/db/migrate/20201120080329_create_cves.rb +13 -0
  83. data/db/migrate/20201217130800_add_has_errata_to_cve.rb +8 -0
  84. data/db/migrate/20201217161511_add_url_to_oval_content.rb +5 -0
  85. data/db/migrate/20210409095625_add_oval_policy_reference_to_cve.rb +7 -0
  86. data/db/seeds.d/75-job_templates.rb +3 -2
  87. data/lib/foreman_openscap/bulk_upload.rb +2 -2
  88. data/lib/foreman_openscap/engine.rb +67 -9
  89. data/lib/foreman_openscap/version.rb +1 -1
  90. data/lib/tasks/foreman_openscap_tasks.rake +14 -9
  91. data/locale/de/LC_MESSAGES/foreman_openscap.mo +0 -0
  92. data/locale/de/foreman_openscap.edit.po +0 -0
  93. data/locale/de/foreman_openscap.po +215 -17
  94. data/locale/en_GB/LC_MESSAGES/foreman_openscap.mo +0 -0
  95. data/locale/en_GB/foreman_openscap.edit.po +0 -0
  96. data/locale/en_GB/foreman_openscap.po +213 -15
  97. data/locale/es/LC_MESSAGES/foreman_openscap.mo +0 -0
  98. data/locale/es/foreman_openscap.edit.po +0 -0
  99. data/locale/es/foreman_openscap.po +239 -41
  100. data/locale/foreman_openscap.pot +395 -112
  101. data/locale/fr/LC_MESSAGES/foreman_openscap.mo +0 -0
  102. data/locale/fr/foreman_openscap.edit.po +0 -0
  103. data/locale/fr/foreman_openscap.po +243 -45
  104. data/locale/gl/LC_MESSAGES/foreman_openscap.mo +0 -0
  105. data/locale/gl/foreman_openscap.edit.po +0 -0
  106. data/locale/gl/foreman_openscap.po +213 -15
  107. data/locale/it/LC_MESSAGES/foreman_openscap.mo +0 -0
  108. data/locale/it/foreman_openscap.edit.po +0 -0
  109. data/locale/it/foreman_openscap.po +213 -15
  110. data/locale/ja/LC_MESSAGES/foreman_openscap.mo +0 -0
  111. data/locale/ja/foreman_openscap.edit.po +0 -0
  112. data/locale/ja/foreman_openscap.po +262 -66
  113. data/locale/ko/LC_MESSAGES/foreman_openscap.mo +0 -0
  114. data/locale/ko/foreman_openscap.edit.po +0 -0
  115. data/locale/ko/foreman_openscap.po +214 -16
  116. data/locale/pt_BR/LC_MESSAGES/foreman_openscap.mo +0 -0
  117. data/locale/pt_BR/foreman_openscap.edit.po +0 -0
  118. data/locale/pt_BR/foreman_openscap.po +252 -54
  119. data/locale/ru/LC_MESSAGES/foreman_openscap.mo +0 -0
  120. data/locale/ru/foreman_openscap.edit.po +0 -0
  121. data/locale/ru/foreman_openscap.po +214 -16
  122. data/locale/sv_SE/LC_MESSAGES/foreman_openscap.mo +0 -0
  123. data/locale/sv_SE/foreman_openscap.edit.po +0 -0
  124. data/locale/sv_SE/foreman_openscap.po +213 -15
  125. data/locale/zh_CN/LC_MESSAGES/foreman_openscap.mo +0 -0
  126. data/locale/zh_CN/foreman_openscap.edit.po +0 -0
  127. data/locale/zh_CN/foreman_openscap.po +369 -169
  128. data/locale/zh_TW/LC_MESSAGES/foreman_openscap.mo +0 -0
  129. data/locale/zh_TW/foreman_openscap.edit.po +0 -0
  130. data/locale/zh_TW/foreman_openscap.po +214 -16
  131. data/package.json +48 -0
  132. data/test/factories/compliance_host_factory.rb +12 -0
  133. data/test/factories/oval_content_factory.rb +7 -0
  134. data/test/factories/oval_policy_factory.rb +9 -0
  135. data/test/files/oval_contents/ansible-2.9.oval.xml.bz2 +0 -0
  136. data/test/fixtures/cve_fixtures.rb +104 -0
  137. data/test/functional/api/v2/compliance/oval_contents_controller_test.rb +39 -0
  138. data/test/functional/api/v2/compliance/oval_policies_controller_test.rb +141 -0
  139. data/test/functional/api/v2/compliance/oval_reports_controller_test.rb +32 -0
  140. data/test/graphql/queries/oval_contents_query_test.rb +35 -0
  141. data/test/graphql/queries/oval_policies_query_test.rb +35 -0
  142. data/test/test_plugin_helper.rb +4 -0
  143. data/test/unit/oval_host_test.rb +45 -0
  144. data/test/unit/oval_policy_test.rb +133 -0
  145. data/test/unit/oval_status_test.rb +47 -0
  146. data/test/unit/services/oval/cves_test.rb +81 -0
  147. data/test/unit/services/oval/setup_test.rb +87 -0
  148. data/webpack/components/EmptyState.js +67 -0
  149. data/webpack/components/IndexLayout.js +35 -0
  150. data/webpack/components/IndexLayout.scss +3 -0
  151. data/webpack/components/IndexTable/IndexTableHelper.js +9 -0
  152. data/webpack/components/IndexTable/index.js +65 -0
  153. data/webpack/components/RuleSeverity/RuleSeverity.scss +3 -0
  154. data/webpack/components/RuleSeverity/RuleSeverity.test.js +13 -0
  155. data/webpack/components/RuleSeverity/__snapshots__/RuleSeverity.test.js.snap +41 -0
  156. data/webpack/components/RuleSeverity/i_severity-critical.svg +61 -0
  157. data/webpack/components/RuleSeverity/i_severity-high.svg +61 -0
  158. data/webpack/components/RuleSeverity/i_severity-low.svg +62 -0
  159. data/webpack/components/RuleSeverity/i_severity-med.svg +62 -0
  160. data/webpack/components/RuleSeverity/i_unknown.svg +33 -0
  161. data/webpack/components/RuleSeverity/index.js +33 -0
  162. data/webpack/components/withLoading.js +68 -0
  163. data/webpack/global_index.js +5 -0
  164. data/webpack/graphql/queries/cves.gql +18 -0
  165. data/webpack/graphql/queries/ovalContents.gql +11 -0
  166. data/webpack/graphql/queries/ovalPolicies.gql +12 -0
  167. data/webpack/graphql/queries/ovalPolicy.gql +21 -0
  168. data/webpack/helpers/commonHelper.js +1 -0
  169. data/webpack/helpers/globalIdHelper.js +13 -0
  170. data/webpack/helpers/pageParamsHelper.js +31 -0
  171. data/webpack/helpers/pathsHelper.js +22 -0
  172. data/webpack/helpers/tableHelper.js +9 -0
  173. data/webpack/index.js +8 -0
  174. data/webpack/routes/OvalContents/OvalContentsIndex/OvalContentsIndex.js +45 -0
  175. data/webpack/routes/OvalContents/OvalContentsIndex/OvalContentsTable.js +38 -0
  176. data/webpack/routes/OvalContents/OvalContentsIndex/__tests__/OvalContentsIndex.fixtures.js +106 -0
  177. data/webpack/routes/OvalContents/OvalContentsIndex/__tests__/OvalContentsIndex.test.js +75 -0
  178. data/webpack/routes/OvalContents/OvalContentsIndex/index.js +7 -0
  179. data/webpack/routes/OvalPolicies/OvalPoliciesIndex/OvalPoliciesIndex.js +46 -0
  180. data/webpack/routes/OvalPolicies/OvalPoliciesIndex/OvalPoliciesTable.js +44 -0
  181. data/webpack/routes/OvalPolicies/OvalPoliciesIndex/__tests__/OvalPoliciesIndex.fixtures.js +61 -0
  182. data/webpack/routes/OvalPolicies/OvalPoliciesIndex/__tests__/OvalPoliciesIndex.test.js +78 -0
  183. data/webpack/routes/OvalPolicies/OvalPoliciesIndex/index.js +7 -0
  184. data/webpack/routes/OvalPolicies/OvalPoliciesShow/CvesTab.js +48 -0
  185. data/webpack/routes/OvalPolicies/OvalPoliciesShow/CvesTable.js +63 -0
  186. data/webpack/routes/OvalPolicies/OvalPoliciesShow/OvalPoliciesShow.js +78 -0
  187. data/webpack/routes/OvalPolicies/OvalPoliciesShow/OvalPoliciesShowHelper.js +39 -0
  188. data/webpack/routes/OvalPolicies/OvalPoliciesShow/__tests__/OvalPoliciesShow.fixtures.js +78 -0
  189. data/webpack/routes/OvalPolicies/OvalPoliciesShow/__tests__/OvalPoliciesShow.test.js +112 -0
  190. data/webpack/routes/OvalPolicies/OvalPoliciesShow/index.js +35 -0
  191. data/webpack/routes/routes.js +28 -0
  192. data/webpack/testHelper.js +64 -0
  193. metadata +144 -3
File without changes
@@ -9,8 +9,8 @@ msgid ""
9
9
  msgstr ""
10
10
  "Project-Id-Version: Foreman\n"
11
11
  "Report-Msgid-Bugs-To: \n"
12
- "PO-Revision-Date: 2020-03-02 20:59+0000\n"
13
- "Last-Translator: Bryan Kearney <bryan.kearney@gmail.com>\n"
12
+ "PO-Revision-Date: 2020-09-03 07:45+0000\n"
13
+ "Last-Translator: Amit Upadhye <aupadhye@redhat.com>\n"
14
14
  "Language-Team: Spanish (http://www.transifex.com/foreman/foreman/language/es/)"
15
15
  "\n"
16
16
  "MIME-Version: 1.0\n"
@@ -30,11 +30,8 @@ msgstr "%s: Los siguientes informes de cumplimiento están por modificarse."
30
30
 
31
31
  msgid "%s compliance report by policy"
32
32
  msgid_plural "%s compliance reports by policy"
33
- msgstr[0] ""
34
- msgstr[1] ""
35
-
36
- msgid "%s compliance reports by policy"
37
- msgstr "Informes de cumplimiento %s por política"
33
+ msgstr[0] "%s informe de cumplimiento por política"
34
+ msgstr[1] "Informes de cumplimiento %s por política"
38
35
 
39
36
  msgid "%s latest report"
40
37
  msgstr "%s último informe"
@@ -45,9 +42,15 @@ msgstr "%s informes conforme avanza el tiempo"
45
42
  msgid "%s spool errors detected, inspect the appropriate file directly on proxy"
46
43
  msgstr "Se detectaron errores de cola de espera %s. Inspeccione el archivo adecuado directamente en el proxy"
47
44
 
48
- msgid "%{type} was selected to deploy policy to clients, but %{type} is not available. Are you missing a plugin?"
45
+ msgid "%s vulnerabilities found"
46
+ msgstr ""
47
+
48
+ msgid "%s vulnerabilities with available patch found"
49
49
  msgstr ""
50
50
 
51
+ msgid "%{type} was selected to deploy policy to clients, but %{type} is not available. Are you missing a plugin?"
52
+ msgstr "Se seleccionó %{type} para implementar la política para los clientes, pero %{type} no está disponible. ¿Le falta un complemento?"
53
+
51
54
  msgid "<b>Foreman</b> OpenSCAP summary"
52
55
  msgstr "Resumen de OpenSCAP de <b>Foreman</b>"
53
56
 
@@ -64,10 +67,10 @@ msgid "All messages"
64
67
  msgstr "Todos los mensajes"
65
68
 
66
69
  msgid "Ansible role"
67
- msgstr ""
70
+ msgstr "Rol Ansible"
68
71
 
69
72
  msgid "Ansible variables"
70
- msgstr ""
73
+ msgstr "Variables de Ansible"
71
74
 
72
75
  msgid "Apply policy to host groups"
73
76
  msgstr "Aplicar política a grupos de hosts"
@@ -75,9 +78,27 @@ msgstr "Aplicar política a grupos de hosts"
75
78
  msgid "Apply policy to hosts"
76
79
  msgstr "Aplicar política a los hosts"
77
80
 
81
+ msgid "Are required variables for theforeman.foreman_scap_client present?"
82
+ msgstr ""
83
+
84
+ msgid "Array of host IDs"
85
+ msgstr ""
86
+
87
+ msgid "Array of hostgroup IDs"
88
+ msgstr ""
89
+
78
90
  msgid "Assign Compliance Policy"
79
91
  msgstr "Asignar política de cumplimiento"
80
92
 
93
+ msgid "Assign hostgroups to an OVAL Policy"
94
+ msgstr ""
95
+
96
+ msgid "Assign hosts to an OVAL Policy"
97
+ msgstr ""
98
+
99
+ msgid "Assign openscap_proxy to %s before proceeding."
100
+ msgstr ""
101
+
81
102
  msgid "Back"
82
103
  msgstr "Atrás"
83
104
 
@@ -120,9 +141,6 @@ msgstr "Elegir día de la semana"
120
141
  msgid "Compliance"
121
142
  msgstr "Cumplimiento"
122
143
 
123
- msgid "Compliance Hosts"
124
- msgstr "Hosts de cumplimiento"
125
-
126
144
  msgid "Compliance Policies"
127
145
  msgstr "Políticas de cumplimiento"
128
146
 
@@ -148,6 +166,9 @@ msgid "Compliant with the policy"
148
166
  msgstr "En conformidad con la política"
149
167
 
150
168
  msgid "Could not find host identified by: %s"
169
+ msgstr "No se pudo encontrar el host identificado por: %s"
170
+
171
+ msgid "Could not update Ansible Variables with override: true"
151
172
  msgstr ""
152
173
 
153
174
  msgid "Could not validate %s. Please make sure you have appropriate proxy version to use this functionality"
@@ -156,6 +177,9 @@ msgstr "No pudo validarse %s. Asegúrese de contar con la versión de proxy corr
156
177
  msgid "Could not validate %{file_type}. Error %{error}"
157
178
  msgstr "No se pudo validar %{file_type}. Error %{error}"
158
179
 
180
+ msgid "Create OVAL content"
181
+ msgstr ""
182
+
159
183
  msgid "Create SCAP content"
160
184
  msgstr "Crear contenido de SCAP"
161
185
 
@@ -165,6 +189,9 @@ msgstr "Crear una política"
165
189
  msgid "Create a Tailoring file"
166
190
  msgstr "Crear un archivo de personalización"
167
191
 
192
+ msgid "Create an OVAL Policy"
193
+ msgstr ""
194
+
168
195
  msgid "Dashboard"
169
196
  msgstr "Tablero de mandos"
170
197
 
@@ -186,6 +213,9 @@ msgstr "Eliminar una política"
186
213
  msgid "Delete an ARF Report"
187
214
  msgstr "Eliminar un informe ARF"
188
215
 
216
+ msgid "Delete an OVAL Policy"
217
+ msgstr ""
218
+
189
219
  msgid "Delete compliance policy %s with all of its reports?"
190
220
  msgstr "¿Eliminar política de cumplimiento %s junto con todos sus informes?"
191
221
 
@@ -196,7 +226,7 @@ msgid "Delete reports"
196
226
  msgstr "Eliminar informes"
197
227
 
198
228
  msgid "Delete scap content %s?"
199
- msgstr ""
229
+ msgstr "¿Crear contenido de scap %s?"
200
230
 
201
231
  msgid "Delete tailoring file %s?"
202
232
  msgstr "¿Eliminar archivo de personalización %s?"
@@ -207,15 +237,24 @@ msgstr "Política eliminada"
207
237
  msgid "Deletes a Tailoring file"
208
238
  msgstr "Elimina un archivo de personalización"
209
239
 
240
+ msgid "Deletes an OVAL content"
241
+ msgstr ""
242
+
210
243
  msgid "Deletes an SCAP content"
211
244
  msgstr "Elimina el contenido de SCAP"
212
245
 
213
246
  msgid "Deployment Options"
214
- msgstr ""
247
+ msgstr "Opciones de implementación"
215
248
 
216
249
  msgid "Description"
217
250
  msgstr "Descripción"
218
251
 
252
+ msgid "Details for Compliance Policy %s"
253
+ msgstr ""
254
+
255
+ msgid "Directory to upload when using \"directory\" upload type"
256
+ msgstr ""
257
+
219
258
  msgid "Documentation"
220
259
  msgstr "Documentación"
221
260
 
@@ -240,18 +279,15 @@ msgstr "Descargar un contenido SCAP como XML"
240
279
  msgid "Download bzipped ARF report"
241
280
  msgstr "Descargar un informe ARF bzipped"
242
281
 
243
- msgid "Edit Compliance Policy"
244
- msgstr "Editar política de cumplimiento"
245
-
246
- msgid "Edit SCAP Content"
247
- msgstr "Editar contenido de SCAP"
248
-
249
- msgid "Edit Tailoring File"
250
- msgstr "Editar archivo de personalización"
282
+ msgid "Edit %s"
283
+ msgstr ""
251
284
 
252
285
  msgid "Effective Profile"
253
286
  msgstr "Perfil efectivo"
254
287
 
288
+ msgid "Error!"
289
+ msgstr ""
290
+
255
291
  msgid "Failed"
256
292
  msgstr "Errores"
257
293
 
@@ -277,7 +313,7 @@ msgid "Failed to fetch spool status from proxy"
277
313
  msgstr "Error al buscar el estado de cola de espera del proxy"
278
314
 
279
315
  msgid "Failed to save when overriding parameters for %{config_tool}, cause: %{errors}"
280
- msgstr ""
316
+ msgstr "Ocurrió un error al guardar mientras se anulaban los parámetros de %{config_tool}, causa: %{errors}"
281
317
 
282
318
  msgid "Failed to upload Arf Report, OpenSCAP proxy name or url not found in params when uploading for %s and host is missing openscap_proxy"
283
319
  msgstr "Ocurrió un error al cargar el informe Arf. No se encontró el nombre del proxy OpenSCAP o la URL en los parámetros cuando se cargó para %s, y el host no tiene openscap_proxy"
@@ -289,12 +325,18 @@ msgstr "F"
289
325
  msgid "File Upload"
290
326
  msgstr "Carga del archivo"
291
327
 
328
+ msgid "File paths to upload when using \"files\" upload type"
329
+ msgstr ""
330
+
292
331
  msgid "Full Report"
293
332
  msgstr "Informe completo"
294
333
 
295
334
  msgid "General"
296
335
  msgstr "General"
297
336
 
337
+ msgid "Has Errata?"
338
+ msgstr ""
339
+
298
340
  msgid "Host"
299
341
  msgstr "host"
300
342
 
@@ -314,13 +356,13 @@ msgid "Host does not exist anymore"
314
356
  msgstr "El host ya no existe."
315
357
 
316
358
  msgid "Host is assigned to policy"
317
- msgstr ""
359
+ msgstr "El host está asignado a la política"
318
360
 
319
361
  msgid "Host is deleted"
320
362
  msgstr "Se eliminó el host."
321
363
 
322
364
  msgid "Host is not assigned to policy but reports were found. You may want to delete the reports or assign the policy again."
323
- msgstr ""
365
+ msgstr "El host no está asignado a la política, pero se encontraron informes. Es posible que desee eliminar los informes o volver a asignar la política."
324
366
 
325
367
  msgid "Hostgroups"
326
368
  msgstr "Grupos de hosts"
@@ -331,11 +373,14 @@ msgstr "Nombre de host"
331
373
  msgid "Hosts Breakdown"
332
374
  msgstr "Descomposición de hosts"
333
375
 
376
+ msgid "Hosts Count"
377
+ msgstr ""
378
+
334
379
  msgid "Hosts failing this rule"
335
380
  msgstr "Hosts que fallan en esta regla"
336
381
 
337
382
  msgid "Hosts no longer assigned: %s"
338
- msgstr ""
383
+ msgstr "Huéspedes ya no asignados: %s"
339
384
 
340
385
  msgid "Hosts othering this rule"
341
386
  msgstr "Hosts que consideran esta regla"
@@ -344,7 +389,7 @@ msgid "Hosts passing this rule"
344
389
  msgstr "Hosts que envían esta regla"
345
390
 
346
391
  msgid "How the policy should be deployed"
347
- msgstr ""
392
+ msgstr "Cómo se debe implementar la política"
348
393
 
349
394
  msgid "ID of OpenSCAP Proxy"
350
395
  msgstr "ID del proxy OpenSCAP"
@@ -380,6 +425,15 @@ msgstr "Inconcluso"
380
425
  msgid "Inconclusive results"
381
426
  msgstr "Resultados inconclusos"
382
427
 
428
+ msgid "Is %s param set to be overriden?"
429
+ msgstr ""
430
+
431
+ msgid "Is foreman_ansible present?"
432
+ msgstr ""
433
+
434
+ msgid "Is theforeman.foreman_scap_client present?"
435
+ msgstr ""
436
+
383
437
  msgid "It may sometimes be required to adjust the security policy to your specific needs. "
384
438
  msgstr "A veces, puede ser necesario ajustar la política de seguridad en función de sus necesidades específicas."
385
439
 
@@ -392,11 +446,17 @@ msgstr "Últimos informes para la política: %s"
392
446
  msgid "List ARF reports"
393
447
  msgstr "Enumerar los informes ARF"
394
448
 
449
+ msgid "List OVAL Policies"
450
+ msgstr ""
451
+
452
+ msgid "List OVAL contents"
453
+ msgstr ""
454
+
395
455
  msgid "List Policies"
396
456
  msgstr "Enumerar políticas"
397
457
 
398
458
  msgid "List SCAP content profiles"
399
- msgstr ""
459
+ msgstr "Listar perfiles de contenido de SCAP"
400
460
 
401
461
  msgid "List SCAP contents"
402
462
  msgstr "Listar contenidos de SCAP"
@@ -416,6 +476,9 @@ msgstr "Mensaje"
416
476
  msgid "More details"
417
477
  msgstr "Más información"
418
478
 
479
+ msgid "Name"
480
+ msgstr ""
481
+
419
482
  msgid "Never audited"
420
483
  msgstr "No auditados"
421
484
 
@@ -440,6 +503,18 @@ msgstr "No"
440
503
  msgid "No ARF reports for this policy"
441
504
  msgstr "No hay informes ARF para esta política."
442
505
 
506
+ msgid "No CVEs found."
507
+ msgstr ""
508
+
509
+ msgid "No OVAL Contents found."
510
+ msgstr ""
511
+
512
+ msgid "No OVAL Policies found"
513
+ msgstr ""
514
+
515
+ msgid "No OVAL Policy found"
516
+ msgstr ""
517
+
443
518
  msgid "No OpenSCAP Proxy selected."
444
519
  msgstr "No se seleccionó un proxy OpenSCAP."
445
520
 
@@ -449,6 +524,9 @@ msgstr "No se halló el proxy OpenSCAP para %{class} con el id %{id}"
449
524
  msgid "No Tailoring file assigned for policy with id %s"
450
525
  msgstr "No hay archivo de personalización asignado para la política con el id %s"
451
526
 
527
+ msgid "No Vulnerabilities found"
528
+ msgstr ""
529
+
452
530
  msgid "No available proxy to validate. Returned with error: %s"
453
531
  msgstr "No hay un proxy disponible para validar. Devolvió el error: %s."
454
532
 
@@ -512,6 +590,48 @@ msgstr "Número de eventos"
512
590
  msgid "Number of a day in month, note that not all months have same count of days"
513
591
  msgstr "Cantidad de días en el mes, tenga en cuenta que no todos los meses tienen la misma cantidad de días"
514
592
 
593
+ msgid "OVAL Content"
594
+ msgstr ""
595
+
596
+ msgid "OVAL Contents"
597
+ msgstr ""
598
+
599
+ msgid "OVAL Contents table"
600
+ msgstr ""
601
+
602
+ msgid "OVAL Policies"
603
+ msgstr ""
604
+
605
+ msgid "OVAL Policies Table"
606
+ msgstr ""
607
+
608
+ msgid "OVAL Policy description"
609
+ msgstr ""
610
+
611
+ msgid "OVAL Policy name"
612
+ msgstr ""
613
+
614
+ msgid "OVAL Policy schedule cron line (only if period == \"custom\")"
615
+ msgstr ""
616
+
617
+ msgid "OVAL Policy schedule day of month (only if period == \"monthly\")"
618
+ msgstr ""
619
+
620
+ msgid "OVAL Policy schedule period (weekly, monthly, custom)"
621
+ msgstr ""
622
+
623
+ msgid "OVAL Policy schedule weekday (only if period == \"weekly\")"
624
+ msgstr ""
625
+
626
+ msgid "OVAL content name"
627
+ msgstr ""
628
+
629
+ msgid "OVAL policy successfully configured with %s."
630
+ msgstr ""
631
+
632
+ msgid "OVAL scan"
633
+ msgstr ""
634
+
515
635
  msgid "Once SCAP content is present, you can create a policy, assign select host groups and schedule to run."
516
636
  msgstr "Una vez que el contenido SCAP esté presente, puede crear una política, asignar grupos de host seleccionados y programar su ejecución."
517
637
 
@@ -527,6 +647,9 @@ msgstr "Proxy Openscap"
527
647
  msgid "Organizations"
528
648
  msgstr "Organizaciones"
529
649
 
650
+ msgid "Original file name of the OVAL content file"
651
+ msgstr ""
652
+
530
653
  msgid "Original file name of the XML file"
531
654
  msgstr "Nombre de archivo original del archivo XML"
532
655
 
@@ -550,6 +673,12 @@ msgstr "Leído|P"
550
673
  msgid "Please Confirm"
551
674
  msgstr "Confirmar"
552
675
 
676
+ msgid "Please make sure you understand them by reading our"
677
+ msgstr ""
678
+
679
+ msgid "Please specify import type, received: %{received}, expected one of: %{expected}"
680
+ msgstr ""
681
+
553
682
  msgid "Policies"
554
683
  msgstr "Políticas"
555
684
 
@@ -563,6 +692,9 @@ msgid "Policy %s"
563
692
  msgstr "Política %s"
564
693
 
565
694
  msgid "Policy Attributes"
695
+ msgstr "Atributos de política"
696
+
697
+ msgid "Policy OVAL content ID"
566
698
  msgstr ""
567
699
 
568
700
  msgid "Policy SCAP content ID"
@@ -572,7 +704,7 @@ msgid "Policy SCAP content profile ID"
572
704
  msgstr "ID de perfil de contenido de política de SCAP"
573
705
 
574
706
  msgid "Policy assigned"
575
- msgstr ""
707
+ msgstr "Política asignada"
576
708
 
577
709
  msgid "Policy description"
578
710
  msgstr "Descripción de la política"
@@ -596,7 +728,7 @@ msgid "Policy schedule weekday (only if period == \"weekly\")"
596
728
  msgstr "Programación de la política, día de la semana (solo si el periodo es == \"semanal\")"
597
729
 
598
730
  msgid "Policy with id %s not found."
599
- msgstr ""
731
+ msgstr "No se encontró la política con el ID %s."
600
732
 
601
733
  msgid "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."
602
734
  msgstr "El proxy no logró enviar un informe desde la cola de espera a Foreman. Esto indica un formato de informe corrupto. El informe se movió al directorio para almacenar los archivos corruptos en el proxy para una inspección posterior."
@@ -607,6 +739,9 @@ msgstr "Clase Puppet"
607
739
  msgid "Rationale"
608
740
  msgstr "Fundamento"
609
741
 
742
+ msgid "Ref Id"
743
+ msgstr ""
744
+
610
745
  msgid "References"
611
746
  msgstr "Referencias"
612
747
 
@@ -632,7 +767,7 @@ msgid "Request timed out. Please try increasing Settings -> proxy_request_timeou
632
767
  msgstr "Expiró el tiempo de conexión. Pruebe incrementarlo en Configuración->proxy_request_timeout"
633
768
 
634
769
  msgid "Required %{msg_name} %{class} was not found, please ensure it is imported first."
635
- msgstr ""
770
+ msgstr "No se encontró el %{msg_name} %{class} requerido, asegúrese de que se importe primero."
636
771
 
637
772
  msgid "Resource"
638
773
  msgstr "Recurso"
@@ -641,6 +776,9 @@ msgid "Result"
641
776
  msgstr "Resultado:"
642
777
 
643
778
  msgid "Rule Results"
779
+ msgstr "Resultados de regla"
780
+
781
+ msgid "Run OVAL scan"
644
782
  msgstr ""
645
783
 
646
784
  msgid "Run OpenSCAP scan"
@@ -667,8 +805,8 @@ msgstr "Contenidos de SCAP"
667
805
  msgid "SCAP policies summary"
668
806
  msgstr "Resumen de políticas de SCAP"
669
807
 
670
- msgid "Scap Contents"
671
- msgstr "Contenido de SCAP"
808
+ msgid "Scan All Hostgroups"
809
+ msgstr ""
672
810
 
673
811
  msgid "Schedule"
674
812
  msgstr "Programa"
@@ -706,11 +844,17 @@ msgstr "Mostrar el archivo de personalización de una política"
706
844
  msgid "Show an ARF report"
707
845
  msgstr "Mostrar un informe ARF"
708
846
 
847
+ msgid "Show an OVAL Policy"
848
+ msgstr ""
849
+
850
+ msgid "Show an OVAL content"
851
+ msgstr ""
852
+
709
853
  msgid "Show an SCAP content"
710
854
  msgstr "Mostrar un contenido de SCAP"
711
855
 
712
856
  msgid "Show config information for foreman_scap_client"
713
- msgstr ""
857
+ msgstr "Mostrar información de configuración para foreman_scap_client"
714
858
 
715
859
  msgid "Show log messages:"
716
860
  msgstr "Mostrar registro de mensajes:"
@@ -751,6 +895,12 @@ msgstr "Informe de resumen para OpenScap de Foreman"
751
895
  msgid "Summary report from Foreman server at %{foreman_url}"
752
896
  msgstr "Informe resumen del servidor Foreman en %{foreman_url}"
753
897
 
898
+ msgid "Sync contents that have remote source URL"
899
+ msgstr ""
900
+
901
+ msgid "Table of CVEs for OVAL policy"
902
+ msgstr ""
903
+
754
904
  msgid "Tailoring File"
755
905
  msgstr "Personalizando archivo"
756
906
 
@@ -772,6 +922,9 @@ msgid ""
772
922
  msgstr "En el Protocolo de Automatización del Contenido de Seguridad (SCAP, por sus siglas en inglés) se combinan una serie de estándares abiertos que se utilizan para enumerar las fallas en el software y problemas de configuración relacionados con la seguridad."
773
923
 
774
924
  msgid "The following %{key_name} were missing for %{item_name}: %{key_names}. Make sure they are imported before proceeding."
925
+ msgstr "Faltaba el siguiente %{key_name} para %{item_name}: %{key_names}. Asegúrese de que se importen antes de proceder."
926
+
927
+ msgid "The following Ansible Variables were not found: %{missing_vars}, please import them before running this action again."
775
928
  msgstr ""
776
929
 
777
930
  msgid "The following Smart Proxies need to be updated to unlock the feature: %s. "
@@ -781,6 +934,9 @@ msgid "The following proxies could not be reached: %s. Please make sure they are
781
934
  msgstr "No se pudieron alcanzar los siguientes proxies: %s. Asegúrese de que estén disponibles para que Foreman pueda verificar sus versiones."
782
935
 
783
936
  msgid "The identifier of the host"
937
+ msgstr "El identificador del host"
938
+
939
+ msgid "There are significant differences in deployment options."
784
940
  msgstr ""
785
941
 
786
942
  msgid "This feature is temporarily disabled. "
@@ -793,15 +949,21 @@ msgid "Total"
793
949
  msgstr "Total"
794
950
 
795
951
  msgid "Total hosts with policy: %s"
796
- msgstr ""
952
+ msgstr "Total de hosts con política: %s"
797
953
 
798
954
  msgid "Total hosts with reports where policy is no longer assigned."
799
- msgstr ""
955
+ msgstr "Total de hosts con informes en los que la política ya no está asignada."
800
956
 
801
957
  msgid "Total of one host"
802
958
  msgid_plural "Total of %{hosts} hosts"
803
- msgstr[0] ""
804
- msgstr[1] ""
959
+ msgstr[0] "Total de un host"
960
+ msgstr[1] "Total de %{hosts} hosts"
961
+
962
+ msgid "Type of the upload"
963
+ msgstr ""
964
+
965
+ msgid "URL of the OVAL content file"
966
+ msgstr ""
805
967
 
806
968
  msgid "Unable to get HTML version of requested report from Smart Proxy"
807
969
  msgstr "No se pudo obtener la versión HTML del informe solicitado del proxy inteligente"
@@ -815,12 +977,21 @@ msgstr "Eliminar asignación de política de cumplimiento"
815
977
  msgid "Unknown Compliance status"
816
978
  msgstr "Estado de cumplimiento desconocido"
817
979
 
980
+ msgid "Unknown OVAL status"
981
+ msgstr ""
982
+
818
983
  msgid "Update a Policy"
819
984
  msgstr "Actualizar una política"
820
985
 
821
986
  msgid "Update a Tailoring file"
822
987
  msgstr "Actualizar un archivo de personalización"
823
988
 
989
+ msgid "Update an OVAL Policy"
990
+ msgstr ""
991
+
992
+ msgid "Update an OVAL content"
993
+ msgstr ""
994
+
824
995
  msgid "Update an SCAP content"
825
996
  msgstr "Actualizar el contenido de SCAP"
826
997
 
@@ -842,24 +1013,39 @@ msgstr "Subir nuevo archivo de personalización"
842
1013
  msgid "Upload an ARF report"
843
1014
  msgstr "Cargar un informe ARF"
844
1015
 
1016
+ msgid "Upload an OVAL report - a list of CVEs for given host"
1017
+ msgstr ""
1018
+
845
1019
  msgid "Upload new SCAP content file"
846
1020
  msgstr "Cargar nuevo archivo de contenido de SCAP"
847
1021
 
848
1022
  msgid "Upload new Tailoring File"
849
1023
  msgstr "Subir nuevo archivo de personalización"
850
1024
 
1025
+ msgid "Upload scap contents in bulk"
1026
+ msgstr ""
1027
+
851
1028
  msgid "View Report"
852
1029
  msgstr "Ver informe"
853
1030
 
854
1031
  msgid "View full report"
855
1032
  msgstr "Ver el informe completo"
856
1033
 
1034
+ msgid "Was %s configured successfully?"
1035
+ msgstr ""
1036
+
1037
+ msgid "Was %{model_name} %{name} configured successfully?"
1038
+ msgstr ""
1039
+
857
1040
  msgid "XCCDF Profile"
858
1041
  msgstr "Perfil XCCDF"
859
1042
 
860
1043
  msgid "XCCDF Profile in Tailoring File"
861
1044
  msgstr "Perfil XCCDF en el archivo de personalización"
862
1045
 
1046
+ msgid "XML containing OVAL content"
1047
+ msgstr ""
1048
+
863
1049
  msgid "XML containing SCAP content"
864
1050
  msgstr "XML que contiene contenido SCAP"
865
1051
 
@@ -876,10 +1062,10 @@ msgid "You don't seem to have any ARF report. ARF report is a summary of a singl
876
1062
  msgstr "Al parecer no posee ningún informe ARF. El informe ARF es un resumen de una ocurrencia única de escaneo relacionada con un host en particular para una política de cumplimiento determinada."
877
1063
 
878
1064
  msgid "cannot assign to %s, all assigned policies must be deployed in the same way, check 'deploy by' for each assigned policy"
879
- msgstr ""
1065
+ msgstr "no se puede asignar a %s, todas las políticas asignadas deben implementarse de la misma manera, compruebe \"desplegar mediante\" para cada política asignada"
880
1066
 
881
1067
  msgid "documentation"
882
- msgstr ""
1068
+ msgstr "documentación"
883
1069
 
884
1070
  msgid "does not come from selected tailoring file"
885
1071
  msgstr "no proviene del archivo de personalización seleccionado"
@@ -890,6 +1076,15 @@ msgstr "no está compuesta por 5 partes separadas por espacios"
890
1076
  msgid "does not have the selected SCAP content profile"
891
1077
  msgstr "no posee el perfil del contenido SCAP seleccionado"
892
1078
 
1079
+ msgid "foreman_ansible plugin not found, please install it before running this action again."
1080
+ msgstr ""
1081
+
1082
+ msgid "hostgroups"
1083
+ msgstr ""
1084
+
1085
+ msgid "hosts"
1086
+ msgstr ""
1087
+
893
1088
  msgid "invalid type %s"
894
1089
  msgstr "Tipo %s no válido"
895
1090
 
@@ -914,5 +1109,8 @@ msgstr "debe estar presente cuando el perfil del archivo de personalización est
914
1109
  msgid "must have Openscap feature"
915
1110
  msgstr "debe contar con la funcionalidad Openscap"
916
1111
 
1112
+ msgid "theforeman.foreman_scap_client Ansible Role not found, please import it before running this action again."
1113
+ msgstr ""
1114
+
917
1115
  msgid "these Compliance reports"
918
1116
  msgstr "estos informes de cumplimiento"