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
@@ -8,8 +8,8 @@ msgid ""
8
8
  msgstr ""
9
9
  "Project-Id-Version: Foreman\n"
10
10
  "Report-Msgid-Bugs-To: \n"
11
- "PO-Revision-Date: 2020-03-02 20:59+0000\n"
12
- "Last-Translator: Bryan Kearney <bryan.kearney@gmail.com>\n"
11
+ "PO-Revision-Date: 2020-09-03 07:45+0000\n"
12
+ "Last-Translator: Amit Upadhye <aupadhye@redhat.com>\n"
13
13
  "Language-Team: Portuguese (Brazil) (http://www.transifex.com/foreman/foreman/l"
14
14
  "anguage/pt_BR/)\n"
15
15
  "MIME-Version: 1.0\n"
@@ -29,11 +29,8 @@ msgstr "%s - Os relatórios de conformidade a seguir serão alterados em breve"
29
29
 
30
30
  msgid "%s compliance report by policy"
31
31
  msgid_plural "%s compliance reports by policy"
32
- msgstr[0] ""
33
- msgstr[1] ""
34
-
35
- msgid "%s compliance reports by policy"
36
- msgstr "%s relatórios de conformidade por política"
32
+ msgstr[0] "%s relatório de conformidade por política"
33
+ msgstr[1] "%s relatórios de conformidade por política"
37
34
 
38
35
  msgid "%s latest report"
39
36
  msgstr "relatório mais recente %s "
@@ -44,9 +41,15 @@ msgstr "relatórios %s ao longo do tempo "
44
41
  msgid "%s spool errors detected, inspect the appropriate file directly on proxy"
45
42
  msgstr "%s erros de spool detectados. Inspecione o arquivo apropriado diretamente no proxy"
46
43
 
47
- msgid "%{type} was selected to deploy policy to clients, but %{type} is not available. Are you missing a plugin?"
44
+ msgid "%s vulnerabilities found"
45
+ msgstr ""
46
+
47
+ msgid "%s vulnerabilities with available patch found"
48
48
  msgstr ""
49
49
 
50
+ msgid "%{type} was selected to deploy policy to clients, but %{type} is not available. Are you missing a plugin?"
51
+ msgstr "%{type} foi selecionado para implantar a política para os clientes, mas %{type} não está disponível. Está faltando um plugin?"
52
+
50
53
  msgid "<b>Foreman</b> OpenSCAP summary"
51
54
  msgstr "Resumo do OpenSCAP do <b>Foreman</b>"
52
55
 
@@ -54,7 +57,7 @@ msgid "A summary of reports for OpenSCAP policies"
54
57
  msgstr "Um resumo de relatórios para políticas OpenSCAP"
55
58
 
56
59
  msgid "Action with sub plans"
57
- msgstr "Ação com subplanos"
60
+ msgstr "Ação com subplanos "
58
61
 
59
62
  msgid "Actions"
60
63
  msgstr "Ações"
@@ -63,10 +66,10 @@ msgid "All messages"
63
66
  msgstr "Todas as mensagens"
64
67
 
65
68
  msgid "Ansible role"
66
- msgstr ""
69
+ msgstr "Função do Ansible"
67
70
 
68
71
  msgid "Ansible variables"
69
- msgstr ""
72
+ msgstr "Variáveis do Ansible"
70
73
 
71
74
  msgid "Apply policy to host groups"
72
75
  msgstr "Aplicar política a grupos de hosts"
@@ -74,11 +77,29 @@ msgstr "Aplicar política a grupos de hosts"
74
77
  msgid "Apply policy to hosts"
75
78
  msgstr "Aplicar política aos hosts"
76
79
 
80
+ msgid "Are required variables for theforeman.foreman_scap_client present?"
81
+ msgstr ""
82
+
83
+ msgid "Array of host IDs"
84
+ msgstr ""
85
+
86
+ msgid "Array of hostgroup IDs"
87
+ msgstr ""
88
+
77
89
  msgid "Assign Compliance Policy"
78
90
  msgstr "Atribuir Política de Conformidade"
79
91
 
92
+ msgid "Assign hostgroups to an OVAL Policy"
93
+ msgstr ""
94
+
95
+ msgid "Assign hosts to an OVAL Policy"
96
+ msgstr ""
97
+
98
+ msgid "Assign openscap_proxy to %s before proceeding."
99
+ msgstr ""
100
+
80
101
  msgid "Back"
81
- msgstr "Voltar"
102
+ msgstr "Retornar"
82
103
 
83
104
  msgid "Cancel"
84
105
  msgstr "Cancelar"
@@ -119,9 +140,6 @@ msgstr "Selecionar dia útil"
119
140
  msgid "Compliance"
120
141
  msgstr "Conformidade"
121
142
 
122
- msgid "Compliance Hosts"
123
- msgstr "Hosts de conformidade"
124
-
125
143
  msgid "Compliance Policies"
126
144
  msgstr "Políticas de Conformidade"
127
145
 
@@ -147,6 +165,9 @@ msgid "Compliant with the policy"
147
165
  msgstr "Compatível com a política"
148
166
 
149
167
  msgid "Could not find host identified by: %s"
168
+ msgstr "Não foi possível encontrar o host identificado por: %s"
169
+
170
+ msgid "Could not update Ansible Variables with override: true"
150
171
  msgstr ""
151
172
 
152
173
  msgid "Could not validate %s. Please make sure you have appropriate proxy version to use this functionality"
@@ -155,6 +176,9 @@ msgstr "Não foi possível validar %s. Certifique-se de que você tem a versão
155
176
  msgid "Could not validate %{file_type}. Error %{error}"
156
177
  msgstr "Não foi possível validar %{file_type}. Erro %{error}"
157
178
 
179
+ msgid "Create OVAL content"
180
+ msgstr ""
181
+
158
182
  msgid "Create SCAP content"
159
183
  msgstr "Criar conteúdo SCAP"
160
184
 
@@ -164,6 +188,9 @@ msgstr "Criar uma política"
164
188
  msgid "Create a Tailoring file"
165
189
  msgstr "Criar um arquivo de personalização"
166
190
 
191
+ msgid "Create an OVAL Policy"
192
+ msgstr ""
193
+
167
194
  msgid "Dashboard"
168
195
  msgstr "Painel"
169
196
 
@@ -185,6 +212,9 @@ msgstr "Excluir uma política"
185
212
  msgid "Delete an ARF Report"
186
213
  msgstr "Excluir um relatório ARF"
187
214
 
215
+ msgid "Delete an OVAL Policy"
216
+ msgstr ""
217
+
188
218
  msgid "Delete compliance policy %s with all of its reports?"
189
219
  msgstr "Excluir política de conformidade %s com todos os relatórios?"
190
220
 
@@ -195,7 +225,7 @@ msgid "Delete reports"
195
225
  msgstr "Remover relatórios"
196
226
 
197
227
  msgid "Delete scap content %s?"
198
- msgstr ""
228
+ msgstr "Excluir conteúdo scap %s?"
199
229
 
200
230
  msgid "Delete tailoring file %s?"
201
231
  msgstr "Excluir arquivo de personalização %s?"
@@ -206,15 +236,24 @@ msgstr "Política excluída"
206
236
  msgid "Deletes a Tailoring file"
207
237
  msgstr "Exclui um arquivo de personalização"
208
238
 
239
+ msgid "Deletes an OVAL content"
240
+ msgstr ""
241
+
209
242
  msgid "Deletes an SCAP content"
210
243
  msgstr "Remove um conteúdo SCAP"
211
244
 
212
245
  msgid "Deployment Options"
213
- msgstr ""
246
+ msgstr "Opções de implantação"
214
247
 
215
248
  msgid "Description"
216
249
  msgstr "Descrição"
217
250
 
251
+ msgid "Details for Compliance Policy %s"
252
+ msgstr ""
253
+
254
+ msgid "Directory to upload when using \"directory\" upload type"
255
+ msgstr ""
256
+
218
257
  msgid "Documentation"
219
258
  msgstr "Documentação"
220
259
 
@@ -239,20 +278,17 @@ msgstr "Fazer download de um conteúdo SCAP como XML"
239
278
  msgid "Download bzipped ARF report"
240
279
  msgstr "Fazer download do relatório ARF compactado com bzip2 "
241
280
 
242
- msgid "Edit Compliance Policy"
243
- msgstr "Editar Política de Conformidade"
244
-
245
- msgid "Edit SCAP Content"
246
- msgstr "Exibir Conteúdo SCAP"
247
-
248
- msgid "Edit Tailoring File"
249
- msgstr "Editar arquivo de personalização"
281
+ msgid "Edit %s"
282
+ msgstr ""
250
283
 
251
284
  msgid "Effective Profile"
252
285
  msgstr "Perfil efetivo"
253
286
 
287
+ msgid "Error!"
288
+ msgstr ""
289
+
254
290
  msgid "Failed"
255
- msgstr "Reprovado(s)"
291
+ msgstr "Falhou"
256
292
 
257
293
  msgid "Failed and Othered"
258
294
  msgstr "Reprovado(s) e Outros"
@@ -276,7 +312,7 @@ msgid "Failed to fetch spool status from proxy"
276
312
  msgstr "Falha ao buscar o status do spool no proxy"
277
313
 
278
314
  msgid "Failed to save when overriding parameters for %{config_tool}, cause: %{errors}"
279
- msgstr ""
315
+ msgstr "Falha ao salvar durante a substituição dos parâmetros para %{config_tool}, causa: %{errors}"
280
316
 
281
317
  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"
282
318
  msgstr "Falha ao carregar relatório ARF. O nome do proxy OpenSCAP ou URL não foi encontrado nos parâmetros ao fazer upload para %s e o host não tem openscap_proxy"
@@ -288,14 +324,20 @@ msgstr "Reprovado|R"
288
324
  msgid "File Upload"
289
325
  msgstr "Carregamento de Arquivo"
290
326
 
327
+ msgid "File paths to upload when using \"files\" upload type"
328
+ msgstr ""
329
+
291
330
  msgid "Full Report"
292
331
  msgstr "Relatório completo"
293
332
 
294
333
  msgid "General"
295
334
  msgstr "Geral"
296
335
 
336
+ msgid "Has Errata?"
337
+ msgstr ""
338
+
297
339
  msgid "Host"
298
- msgstr "Servidor"
340
+ msgstr "Máquina"
299
341
 
300
342
  msgid "Host Breakdown Chart"
301
343
  msgstr "Gráfico de Detalhamento de Host"
@@ -313,28 +355,31 @@ msgid "Host does not exist anymore"
313
355
  msgstr "Host não existe mais "
314
356
 
315
357
  msgid "Host is assigned to policy"
316
- msgstr ""
358
+ msgstr "Host atribuído a política"
317
359
 
318
360
  msgid "Host is deleted"
319
361
  msgstr "Host removido"
320
362
 
321
363
  msgid "Host is not assigned to policy but reports were found. You may want to delete the reports or assign the policy again."
322
- msgstr ""
364
+ msgstr "O host não está atribuído à política, mas foram encontrados relatórios. Talvez seja necessário excluir os relatórios ou atribuir à política novamente."
323
365
 
324
366
  msgid "Hostgroups"
325
- msgstr "Hostgroups"
367
+ msgstr "Grupos de hosts"
326
368
 
327
369
  msgid "Hostname"
328
- msgstr "Nome de máquina"
370
+ msgstr "Nome da máquina"
329
371
 
330
372
  msgid "Hosts Breakdown"
331
373
  msgstr "Detalhamento dos Hosts"
332
374
 
375
+ msgid "Hosts Count"
376
+ msgstr ""
377
+
333
378
  msgid "Hosts failing this rule"
334
379
  msgstr "Hosts causando falhas nesta regra"
335
380
 
336
381
  msgid "Hosts no longer assigned: %s"
337
- msgstr ""
382
+ msgstr "Hosts não mais atribuídos: %s"
338
383
 
339
384
  msgid "Hosts othering this rule"
340
385
  msgstr "Hosts diferenciando esta regra"
@@ -343,7 +388,7 @@ msgid "Hosts passing this rule"
343
388
  msgstr "Hosts transmitindo esta regra"
344
389
 
345
390
  msgid "How the policy should be deployed"
346
- msgstr ""
391
+ msgstr "Como a política deve ser implantada"
347
392
 
348
393
  msgid "ID of OpenSCAP Proxy"
349
394
  msgstr "ID do proxy OpenSCAP"
@@ -383,6 +428,15 @@ msgstr "Inconclusivo"
383
428
  msgid "Inconclusive results"
384
429
  msgstr "Resultados inconclusivos"
385
430
 
431
+ msgid "Is %s param set to be overriden?"
432
+ msgstr ""
433
+
434
+ msgid "Is foreman_ansible present?"
435
+ msgstr ""
436
+
437
+ msgid "Is theforeman.foreman_scap_client present?"
438
+ msgstr ""
439
+
386
440
  msgid "It may sometimes be required to adjust the security policy to your specific needs. "
387
441
  msgstr "Algumas vezes, poderá ser necessário ajustar a política de segurança para suas necessidades específicas."
388
442
 
@@ -395,11 +449,17 @@ msgstr "Relatórios mais recentes para a política: %s"
395
449
  msgid "List ARF reports"
396
450
  msgstr "Listar relatórios ARF"
397
451
 
452
+ msgid "List OVAL Policies"
453
+ msgstr ""
454
+
455
+ msgid "List OVAL contents"
456
+ msgstr ""
457
+
398
458
  msgid "List Policies"
399
459
  msgstr "Listar políticas"
400
460
 
401
461
  msgid "List SCAP content profiles"
402
- msgstr ""
462
+ msgstr "Listar perfis de conteúdo SCAP"
403
463
 
404
464
  msgid "List SCAP contents"
405
465
  msgstr "Listar conteúdos SCAP"
@@ -419,6 +479,9 @@ msgstr "Mensagem"
419
479
  msgid "More details"
420
480
  msgstr "Mais detalhes"
421
481
 
482
+ msgid "Name"
483
+ msgstr ""
484
+
422
485
  msgid "Never audited"
423
486
  msgstr "Nunca auditado"
424
487
 
@@ -435,14 +498,26 @@ msgid "New Tailoring File"
435
498
  msgstr "Novo arquivo de personalização"
436
499
 
437
500
  msgid "Next"
438
- msgstr "Próxima"
501
+ msgstr "Próximo"
439
502
 
440
503
  msgid "No"
441
- msgstr "Não "
504
+ msgstr "Não"
442
505
 
443
506
  msgid "No ARF reports for this policy"
444
507
  msgstr "Nenhum relatório Arf para esta política"
445
508
 
509
+ msgid "No CVEs found."
510
+ msgstr ""
511
+
512
+ msgid "No OVAL Contents found."
513
+ msgstr ""
514
+
515
+ msgid "No OVAL Policies found"
516
+ msgstr ""
517
+
518
+ msgid "No OVAL Policy found"
519
+ msgstr ""
520
+
446
521
  msgid "No OpenSCAP Proxy selected."
447
522
  msgstr "Nenhum proxy OpenSCAP selecionado."
448
523
 
@@ -452,6 +527,9 @@ msgstr "Nenhum proxy OpenSCAP encontrado para %{class} com ID %{id}"
452
527
  msgid "No Tailoring file assigned for policy with id %s"
453
528
  msgstr "Nenhum arquivo de personalização atribuído à política com ID %s"
454
529
 
530
+ msgid "No Vulnerabilities found"
531
+ msgstr ""
532
+
455
533
  msgid "No available proxy to validate. Returned with error: %s"
456
534
  msgstr "Nenhum proxy disponível para validação. Retorno com erro: %s"
457
535
 
@@ -492,7 +570,7 @@ msgid "No valid policy ID provided"
492
570
  msgstr "Não foi fornecida uma ID de política válida"
493
571
 
494
572
  msgid "None"
495
- msgstr "Nenhum(a)"
573
+ msgstr "Nenhum"
496
574
 
497
575
  msgid "None found"
498
576
  msgstr "Nenhum(a) localizado(a)"
@@ -515,6 +593,48 @@ msgstr "Número de Eventos"
515
593
  msgid "Number of a day in month, note that not all months have same count of days"
516
594
  msgstr "Número de dias no mês, observe que nem todos os meses possuem o mesmo número de dias"
517
595
 
596
+ msgid "OVAL Content"
597
+ msgstr ""
598
+
599
+ msgid "OVAL Contents"
600
+ msgstr ""
601
+
602
+ msgid "OVAL Contents table"
603
+ msgstr ""
604
+
605
+ msgid "OVAL Policies"
606
+ msgstr ""
607
+
608
+ msgid "OVAL Policies Table"
609
+ msgstr ""
610
+
611
+ msgid "OVAL Policy description"
612
+ msgstr ""
613
+
614
+ msgid "OVAL Policy name"
615
+ msgstr ""
616
+
617
+ msgid "OVAL Policy schedule cron line (only if period == \"custom\")"
618
+ msgstr ""
619
+
620
+ msgid "OVAL Policy schedule day of month (only if period == \"monthly\")"
621
+ msgstr ""
622
+
623
+ msgid "OVAL Policy schedule period (weekly, monthly, custom)"
624
+ msgstr ""
625
+
626
+ msgid "OVAL Policy schedule weekday (only if period == \"weekly\")"
627
+ msgstr ""
628
+
629
+ msgid "OVAL content name"
630
+ msgstr ""
631
+
632
+ msgid "OVAL policy successfully configured with %s."
633
+ msgstr ""
634
+
635
+ msgid "OVAL scan"
636
+ msgstr ""
637
+
518
638
  msgid "Once SCAP content is present, you can create a policy, assign select host groups and schedule to run."
519
639
  msgstr "Quando o conteúdo SCAP estiver presente, você poderá criar uma política, atribuir grupos de host específicos e agendar a execução"
520
640
 
@@ -530,6 +650,9 @@ msgstr "Proxy OpenSCAP"
530
650
  msgid "Organizations"
531
651
  msgstr "Organizações"
532
652
 
653
+ msgid "Original file name of the OVAL content file"
654
+ msgstr ""
655
+
533
656
  msgid "Original file name of the XML file"
534
657
  msgstr "Nome do arquivo original do arquivo XML"
535
658
 
@@ -553,6 +676,12 @@ msgstr "Aprovado|A"
553
676
  msgid "Please Confirm"
554
677
  msgstr "Por favor confirme"
555
678
 
679
+ msgid "Please make sure you understand them by reading our"
680
+ msgstr ""
681
+
682
+ msgid "Please specify import type, received: %{received}, expected one of: %{expected}"
683
+ msgstr ""
684
+
556
685
  msgid "Policies"
557
686
  msgstr "Políticas"
558
687
 
@@ -566,6 +695,9 @@ msgid "Policy %s"
566
695
  msgstr "Política %s"
567
696
 
568
697
  msgid "Policy Attributes"
698
+ msgstr "Atributos de política"
699
+
700
+ msgid "Policy OVAL content ID"
569
701
  msgstr ""
570
702
 
571
703
  msgid "Policy SCAP content ID"
@@ -575,7 +707,7 @@ msgid "Policy SCAP content profile ID"
575
707
  msgstr "ID de perfil de conteúdo SCAP de política"
576
708
 
577
709
  msgid "Policy assigned"
578
- msgstr ""
710
+ msgstr "Política atribuída"
579
711
 
580
712
  msgid "Policy description"
581
713
  msgstr "Descrição da política"
@@ -599,19 +731,22 @@ msgid "Policy schedule weekday (only if period == \"weekly\")"
599
731
  msgstr "Dia da semana de agendamento da política (apenas se o período for == \"semanalmente\")"
600
732
 
601
733
  msgid "Policy with id %s not found."
602
- msgstr ""
734
+ msgstr "Política com id %s não encontrada."
603
735
 
604
736
  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."
605
737
  msgstr "Falha do proxy ao enviar um relatório do spoll ao Foreman. Isso indica um formato de relatório corrompido. O relatório foi movido para o diretório de armazenamento de arquivos corrompidos no proxy para inspeção posterior."
606
738
 
607
739
  msgid "Puppet class"
608
- msgstr "Classe Puppet"
740
+ msgstr "Classe de puppet"
609
741
 
610
742
  msgid "Rationale"
611
743
  msgstr "Base lógica"
612
744
 
745
+ msgid "Ref Id"
746
+ msgstr ""
747
+
613
748
  msgid "References"
614
- msgstr "Referência"
749
+ msgstr "Referências"
615
750
 
616
751
  msgid "Remote action:"
617
752
  msgstr "Ação remota:"
@@ -635,7 +770,7 @@ msgid "Request timed out. Please try increasing Settings -> proxy_request_timeou
635
770
  msgstr "Solicitação expirou. Tente aumentar as configurações -> proxy_request_timeout"
636
771
 
637
772
  msgid "Required %{msg_name} %{class} was not found, please ensure it is imported first."
638
- msgstr ""
773
+ msgstr "%{msg_name} %{class} necessária não foi encontrada, certifique-se de que ele seja importado primeiro."
639
774
 
640
775
  msgid "Resource"
641
776
  msgstr "Recurso"
@@ -644,6 +779,9 @@ msgid "Result"
644
779
  msgstr "Resultado"
645
780
 
646
781
  msgid "Rule Results"
782
+ msgstr "Resultados de regras"
783
+
784
+ msgid "Run OVAL scan"
647
785
  msgstr ""
648
786
 
649
787
  msgid "Run OpenSCAP scan"
@@ -670,11 +808,11 @@ msgstr "Conteúdos SCAP"
670
808
  msgid "SCAP policies summary"
671
809
  msgstr "Resumo de políticas SCAP"
672
810
 
673
- msgid "Scap Contents"
674
- msgstr "Conteúdos SCAP"
811
+ msgid "Scan All Hostgroups"
812
+ msgstr ""
675
813
 
676
814
  msgid "Schedule"
677
- msgstr "Cronograma"
815
+ msgstr "Agendamento"
678
816
 
679
817
  msgid "Select Action"
680
818
  msgstr "Selecionar Ação"
@@ -709,11 +847,17 @@ msgstr "Exibir o arquivo de personalização da política"
709
847
  msgid "Show an ARF report"
710
848
  msgstr "Mostrar um relatório ARF"
711
849
 
850
+ msgid "Show an OVAL Policy"
851
+ msgstr ""
852
+
853
+ msgid "Show an OVAL content"
854
+ msgstr ""
855
+
712
856
  msgid "Show an SCAP content"
713
857
  msgstr "Exibir um conteúdo SCAP"
714
858
 
715
859
  msgid "Show config information for foreman_scap_client"
716
- msgstr ""
860
+ msgstr "Exibir informações de configuração de foreman_scap_client"
717
861
 
718
862
  msgid "Show log messages:"
719
863
  msgstr "Exibir mensagens de logs:"
@@ -754,6 +898,12 @@ msgstr "Relatório de resumo para OpenScap do Foreman"
754
898
  msgid "Summary report from Foreman server at %{foreman_url}"
755
899
  msgstr "Relatório de resumo do servidor Foreman em %{foreman_url}"
756
900
 
901
+ msgid "Sync contents that have remote source URL"
902
+ msgstr ""
903
+
904
+ msgid "Table of CVEs for OVAL policy"
905
+ msgstr ""
906
+
757
907
  msgid "Tailoring File"
758
908
  msgstr "Arquivo de personalização"
759
909
 
@@ -777,6 +927,9 @@ msgstr ""
777
927
  " problemas de configuração relacionados a segurança. "
778
928
 
779
929
  msgid "The following %{key_name} were missing for %{item_name}: %{key_names}. Make sure they are imported before proceeding."
930
+ msgstr "Os seguintes %{key_name} estavam ausentes para %{item_name}: %{key_names}:. Certifique-se de que eles sejam importados antes de prosseguir."
931
+
932
+ msgid "The following Ansible Variables were not found: %{missing_vars}, please import them before running this action again."
780
933
  msgstr ""
781
934
 
782
935
  msgid "The following Smart Proxies need to be updated to unlock the feature: %s. "
@@ -786,6 +939,9 @@ msgid "The following proxies could not be reached: %s. Please make sure they are
786
939
  msgstr "Não foi possível alcançar os proxies a seguir: %s. Certifique-se de que eles estejam disponíveis para que o Foreman possa verificar suas versões."
787
940
 
788
941
  msgid "The identifier of the host"
942
+ msgstr "O identificador do host"
943
+
944
+ msgid "There are significant differences in deployment options."
789
945
  msgstr ""
790
946
 
791
947
  msgid "This feature is temporarily disabled. "
@@ -798,15 +954,21 @@ msgid "Total"
798
954
  msgstr "Total"
799
955
 
800
956
  msgid "Total hosts with policy: %s"
801
- msgstr ""
957
+ msgstr "Total de hosts com política: %s"
802
958
 
803
959
  msgid "Total hosts with reports where policy is no longer assigned."
804
- msgstr ""
960
+ msgstr "Total de hosts com relatórios onde a política não está mais atribuída."
805
961
 
806
962
  msgid "Total of one host"
807
963
  msgid_plural "Total of %{hosts} hosts"
808
- msgstr[0] ""
809
- msgstr[1] ""
964
+ msgstr[0] "Total de um host"
965
+ msgstr[1] "Total de %{hosts} hosts"
966
+
967
+ msgid "Type of the upload"
968
+ msgstr ""
969
+
970
+ msgid "URL of the OVAL content file"
971
+ msgstr ""
810
972
 
811
973
  msgid "Unable to get HTML version of requested report from Smart Proxy"
812
974
  msgstr "Não foi possível obter a versão HTML do relatório solicitado a partir de Smart Proxy"
@@ -820,12 +982,21 @@ msgstr "Cancelar Atribuição da Política de Conformidade"
820
982
  msgid "Unknown Compliance status"
821
983
  msgstr "Status de conformidade desconhecido"
822
984
 
985
+ msgid "Unknown OVAL status"
986
+ msgstr ""
987
+
823
988
  msgid "Update a Policy"
824
989
  msgstr "Atualizar uma política"
825
990
 
826
991
  msgid "Update a Tailoring file"
827
992
  msgstr "Atualizar um arquivo de personalização"
828
993
 
994
+ msgid "Update an OVAL Policy"
995
+ msgstr ""
996
+
997
+ msgid "Update an OVAL content"
998
+ msgstr ""
999
+
829
1000
  msgid "Update an SCAP content"
830
1001
  msgstr "Atualizar um conteúdo SCAP"
831
1002
 
@@ -847,24 +1018,39 @@ msgstr "Atualizar novo arquivo de personalização"
847
1018
  msgid "Upload an ARF report"
848
1019
  msgstr "Carregar um relatório Arf"
849
1020
 
1021
+ msgid "Upload an OVAL report - a list of CVEs for given host"
1022
+ msgstr ""
1023
+
850
1024
  msgid "Upload new SCAP content file"
851
1025
  msgstr "Carregar novo arquivo de conteúdo SCAP"
852
1026
 
853
1027
  msgid "Upload new Tailoring File"
854
1028
  msgstr "Atualizar novo arquivo de personalização"
855
1029
 
1030
+ msgid "Upload scap contents in bulk"
1031
+ msgstr ""
1032
+
856
1033
  msgid "View Report"
857
- msgstr "Visualizar Relatório "
1034
+ msgstr "Visualizar relatório"
858
1035
 
859
1036
  msgid "View full report"
860
1037
  msgstr "Visualizar relatório completo"
861
1038
 
1039
+ msgid "Was %s configured successfully?"
1040
+ msgstr ""
1041
+
1042
+ msgid "Was %{model_name} %{name} configured successfully?"
1043
+ msgstr ""
1044
+
862
1045
  msgid "XCCDF Profile"
863
1046
  msgstr "O Perfil do XCCDF"
864
1047
 
865
1048
  msgid "XCCDF Profile in Tailoring File"
866
1049
  msgstr "Perfil XCCDF no arquivo de personalização"
867
1050
 
1051
+ msgid "XML containing OVAL content"
1052
+ msgstr ""
1053
+
868
1054
  msgid "XML containing SCAP content"
869
1055
  msgstr "XML contendo conteúdo SCAP"
870
1056
 
@@ -881,10 +1067,10 @@ msgid "You don't seem to have any ARF report. ARF report is a summary of a singl
881
1067
  msgstr "Parece que você não tem um relatório ARF. O relatório ARF é um resumo de uma única ocorrência de verificação em um host em específico para uma determinada política de conformidade."
882
1068
 
883
1069
  msgid "cannot assign to %s, all assigned policies must be deployed in the same way, check 'deploy by' for each assigned policy"
884
- msgstr ""
1070
+ msgstr "não pode atribuir a %s, todas as políticas atribuídas devem ser implantadas da mesma forma, verifique 'implantar por' para cada política atribuída"
885
1071
 
886
1072
  msgid "documentation"
887
- msgstr ""
1073
+ msgstr "documentação"
888
1074
 
889
1075
  msgid "does not come from selected tailoring file"
890
1076
  msgstr "não vem do arquivo de personalização selecionado"
@@ -895,6 +1081,15 @@ msgstr "não consiste em cinco partes separadas por espaço"
895
1081
  msgid "does not have the selected SCAP content profile"
896
1082
  msgstr "não tem o perfil de conteúdo SCAP selecionado"
897
1083
 
1084
+ msgid "foreman_ansible plugin not found, please install it before running this action again."
1085
+ msgstr ""
1086
+
1087
+ msgid "hostgroups"
1088
+ msgstr ""
1089
+
1090
+ msgid "hosts"
1091
+ msgstr ""
1092
+
898
1093
  msgid "invalid type %s"
899
1094
  msgstr "tipo %s inválido"
900
1095
 
@@ -919,5 +1114,8 @@ msgstr "deve estar presente quando o perfil do arquivo de personalização está
919
1114
  msgid "must have Openscap feature"
920
1115
  msgstr "deve ter o recurso Openscap"
921
1116
 
1117
+ msgid "theforeman.foreman_scap_client Ansible Role not found, please import it before running this action again."
1118
+ msgstr ""
1119
+
922
1120
  msgid "these Compliance reports"
923
1121
  msgstr "esses relatórios de conformidade"