foreman_openscap 4.2.0 → 4.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/app/controllers/api/v2/compliance/oval_contents_controller.rb +72 -0
- data/app/controllers/api/v2/compliance/oval_policies_controller.rb +111 -0
- data/app/controllers/api/v2/compliance/oval_reports_controller.rb +47 -0
- data/app/controllers/concerns/foreman/controller/parameters/oval_content.rb +22 -0
- data/app/controllers/concerns/foreman/controller/parameters/oval_policy.rb +22 -0
- data/app/controllers/concerns/foreman_openscap/hosts_controller_extensions.rb +1 -1
- data/app/graphql/types/cve.rb +17 -0
- data/app/graphql/types/oval_content.rb +17 -0
- data/app/graphql/types/oval_policy.rb +21 -0
- data/app/helpers/arf_reports_helper.rb +0 -14
- data/app/mailers/foreman_openscap/policy_mailer.rb +2 -2
- data/app/models/concerns/foreman_openscap/compliance_status_scoped_search.rb +1 -1
- data/app/models/concerns/foreman_openscap/data_stream_content.rb +0 -17
- data/app/models/concerns/foreman_openscap/host_extensions.rb +11 -11
- data/app/models/concerns/foreman_openscap/hostgroup_extensions.rb +3 -5
- data/app/models/concerns/foreman_openscap/inherited_policies.rb +11 -0
- data/app/models/concerns/foreman_openscap/oval_facet_host_extensions.rb +38 -0
- data/app/models/concerns/foreman_openscap/oval_facet_hostgroup_extensions.rb +15 -0
- data/app/models/concerns/foreman_openscap/policy_common.rb +75 -0
- data/app/models/concerns/foreman_openscap/scap_file_content.rb +24 -0
- data/app/models/foreman_openscap/cve.rb +23 -0
- data/app/models/foreman_openscap/host/oval_facet.rb +14 -0
- data/app/models/foreman_openscap/host_cve.rb +7 -0
- data/app/models/foreman_openscap/hostgroup/oval_facet.rb +14 -0
- data/app/models/foreman_openscap/hostgroup_oval_facet_oval_policy.rb +6 -0
- data/app/models/foreman_openscap/oval_content.rb +26 -0
- data/app/models/foreman_openscap/oval_facet_oval_policy.rb +6 -0
- data/app/models/foreman_openscap/oval_policy.rb +54 -0
- data/app/models/foreman_openscap/oval_status.rb +45 -0
- data/app/models/foreman_openscap/policy.rb +7 -69
- data/app/models/foreman_openscap/scap_content.rb +1 -0
- data/app/models/foreman_openscap/tailoring_file.rb +1 -0
- data/app/services/foreman_openscap/client_config/ansible.rb +39 -6
- data/app/services/foreman_openscap/client_config/base.rb +5 -1
- data/app/services/foreman_openscap/client_config/puppet.rb +2 -1
- data/app/services/foreman_openscap/config_name_service.rb +1 -1
- data/app/services/foreman_openscap/hostgroup_overrider.rb +2 -24
- data/app/services/foreman_openscap/hostgroup_overrider_common.rb +28 -0
- data/app/services/foreman_openscap/lookup_key_overrider.rb +30 -62
- data/app/services/foreman_openscap/lookup_key_overrides_common.rb +63 -0
- data/app/services/foreman_openscap/oval/check_collection.rb +45 -0
- data/app/services/foreman_openscap/oval/configure.rb +80 -0
- data/app/services/foreman_openscap/oval/cves.rb +41 -0
- data/app/services/foreman_openscap/oval/setup.rb +93 -0
- data/app/services/foreman_openscap/oval/setup_check.rb +55 -0
- data/app/services/foreman_openscap/oval/sync_oval_contents.rb +42 -0
- data/app/views/api/v2/compliance/oval_contents/base.json.rabl +6 -0
- data/app/views/api/v2/compliance/oval_contents/create.json.rabl +3 -0
- data/app/views/api/v2/compliance/oval_contents/index.json.rabl +3 -0
- data/app/views/api/v2/compliance/oval_contents/show.json.rabl +3 -0
- data/app/views/api/v2/compliance/oval_contents/sync.json.rabl +3 -0
- data/app/views/api/v2/compliance/oval_contents/sync_result.json.rabl +11 -0
- data/app/views/api/v2/compliance/oval_contents/update.json.rabl +3 -0
- data/app/views/api/v2/compliance/oval_policies/create.json.rabl +3 -0
- data/app/views/api/v2/compliance/oval_policies/index.json.rabl +3 -0
- data/app/views/api/v2/compliance/oval_policies/main.json.rabl +15 -0
- data/app/views/api/v2/compliance/oval_policies/show.json.rabl +3 -0
- data/app/views/api/v2/compliance/policies/base.json.rabl +2 -2
- data/app/views/api/v2/compliance/policies_common/_attrs.json.rabl +2 -0
- data/app/views/arf_reports/_output.html.erb +9 -1
- data/app/views/job_templates/run_oval_scans.erb +24 -0
- data/app/views/policies/steps/_deployment_options_form.html.erb +2 -2
- data/config/initializers/inflections.rb +12 -0
- data/config/routes.rb +19 -0
- data/db/migrate/20201019074925_create_oval_policy.rb +13 -0
- data/db/migrate/20201020113801_create_oval_facet.rb +14 -0
- data/db/migrate/20201021084109_create_hostgroup_oval_facet.rb +14 -0
- data/db/migrate/20201106080924_create_oval_content.rb +12 -0
- data/db/migrate/20201116110256_add_oval_content_to_oval_policy.rb +5 -0
- data/db/migrate/20201120080329_create_cves.rb +13 -0
- data/db/migrate/20201202110213_update_puppet_port_param_type.rb +2 -6
- data/db/migrate/20201217130800_add_has_errata_to_cve.rb +8 -0
- data/db/migrate/20201217161511_add_url_to_oval_content.rb +5 -0
- data/db/migrate/20210409095625_add_oval_policy_reference_to_cve.rb +7 -0
- data/lib/foreman_openscap/engine.rb +67 -9
- data/lib/foreman_openscap/version.rb +1 -1
- data/lib/tasks/foreman_openscap_tasks.rake +14 -9
- data/locale/de/LC_MESSAGES/foreman_openscap.mo +0 -0
- data/locale/de/foreman_openscap.edit.po +0 -0
- data/locale/de/foreman_openscap.po +215 -17
- data/locale/en_GB/LC_MESSAGES/foreman_openscap.mo +0 -0
- data/locale/en_GB/foreman_openscap.edit.po +0 -0
- data/locale/en_GB/foreman_openscap.po +213 -15
- data/locale/es/LC_MESSAGES/foreman_openscap.mo +0 -0
- data/locale/es/foreman_openscap.edit.po +0 -0
- data/locale/es/foreman_openscap.po +239 -41
- data/locale/foreman_openscap.pot +395 -112
- data/locale/fr/LC_MESSAGES/foreman_openscap.mo +0 -0
- data/locale/fr/foreman_openscap.edit.po +0 -0
- data/locale/fr/foreman_openscap.po +243 -45
- data/locale/gl/LC_MESSAGES/foreman_openscap.mo +0 -0
- data/locale/gl/foreman_openscap.edit.po +0 -0
- data/locale/gl/foreman_openscap.po +213 -15
- data/locale/it/LC_MESSAGES/foreman_openscap.mo +0 -0
- data/locale/it/foreman_openscap.edit.po +0 -0
- data/locale/it/foreman_openscap.po +213 -15
- data/locale/ja/LC_MESSAGES/foreman_openscap.mo +0 -0
- data/locale/ja/foreman_openscap.edit.po +0 -0
- data/locale/ja/foreman_openscap.po +262 -66
- data/locale/ko/LC_MESSAGES/foreman_openscap.mo +0 -0
- data/locale/ko/foreman_openscap.edit.po +0 -0
- data/locale/ko/foreman_openscap.po +214 -16
- data/locale/pt_BR/LC_MESSAGES/foreman_openscap.mo +0 -0
- data/locale/pt_BR/foreman_openscap.edit.po +0 -0
- data/locale/pt_BR/foreman_openscap.po +252 -54
- data/locale/ru/LC_MESSAGES/foreman_openscap.mo +0 -0
- data/locale/ru/foreman_openscap.edit.po +0 -0
- data/locale/ru/foreman_openscap.po +214 -16
- data/locale/sv_SE/LC_MESSAGES/foreman_openscap.mo +0 -0
- data/locale/sv_SE/foreman_openscap.edit.po +0 -0
- data/locale/sv_SE/foreman_openscap.po +213 -15
- data/locale/zh_CN/LC_MESSAGES/foreman_openscap.mo +0 -0
- data/locale/zh_CN/foreman_openscap.edit.po +0 -0
- data/locale/zh_CN/foreman_openscap.po +369 -169
- data/locale/zh_TW/LC_MESSAGES/foreman_openscap.mo +0 -0
- data/locale/zh_TW/foreman_openscap.edit.po +0 -0
- data/locale/zh_TW/foreman_openscap.po +214 -16
- data/test/factories/compliance_host_factory.rb +12 -0
- data/test/factories/oval_content_factory.rb +7 -0
- data/test/factories/oval_policy_factory.rb +9 -0
- data/test/files/oval_contents/ansible-2.9.oval.xml.bz2 +0 -0
- data/test/fixtures/cve_fixtures.rb +104 -0
- data/test/functional/api/v2/compliance/oval_contents_controller_test.rb +39 -0
- data/test/functional/api/v2/compliance/oval_policies_controller_test.rb +141 -0
- data/test/functional/api/v2/compliance/oval_reports_controller_test.rb +32 -0
- data/test/graphql/queries/oval_contents_query_test.rb +35 -0
- data/test/graphql/queries/oval_policies_query_test.rb +35 -0
- data/test/test_plugin_helper.rb +4 -0
- data/test/unit/oval_host_test.rb +45 -0
- data/test/unit/oval_policy_test.rb +133 -0
- data/test/unit/oval_status_test.rb +47 -0
- data/test/unit/services/oval/cves_test.rb +81 -0
- data/test/unit/services/oval/setup_test.rb +87 -0
- metadata +97 -3
|
Binary file
|
|
File without changes
|
|
@@ -10,8 +10,8 @@ msgid ""
|
|
|
10
10
|
msgstr ""
|
|
11
11
|
"Project-Id-Version: Foreman\n"
|
|
12
12
|
"Report-Msgid-Bugs-To: \n"
|
|
13
|
-
"PO-Revision-Date: 2020-
|
|
14
|
-
"Last-Translator:
|
|
13
|
+
"PO-Revision-Date: 2020-12-01 08:26+0000\n"
|
|
14
|
+
"Last-Translator: Amit Upadhye <aupadhye@redhat.com>\n"
|
|
15
15
|
"Language-Team: French (http://www.transifex.com/foreman/foreman/language/fr/)\n"
|
|
16
16
|
"MIME-Version: 1.0\n"
|
|
17
17
|
"Content-Type: text/plain; charset=UTF-8\n"
|
|
@@ -20,34 +20,37 @@ msgstr ""
|
|
|
20
20
|
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
|
21
21
|
|
|
22
22
|
msgid " for policy %s"
|
|
23
|
-
msgstr "pour la stratégie %s"
|
|
23
|
+
msgstr " pour la stratégie %s"
|
|
24
24
|
|
|
25
25
|
msgid " through %s"
|
|
26
|
-
msgstr "via %s"
|
|
26
|
+
msgstr " via %s"
|
|
27
27
|
|
|
28
28
|
msgid "%s - The following compliance reports are about to be changed"
|
|
29
29
|
msgstr "%s - Les rapports de conformité suivants sont sur le point d'être modifiés"
|
|
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 "Rapports de conformité %s par stratégie"
|
|
33
|
+
msgstr[0] "%s rapport de conformité par stratégie"
|
|
34
|
+
msgstr[1] "Rapports de conformité %s par stratégie"
|
|
38
35
|
|
|
39
36
|
msgid "%s latest report"
|
|
40
37
|
msgstr "%s derniers rapports"
|
|
41
38
|
|
|
42
39
|
msgid "%s reports over time"
|
|
43
|
-
msgstr "%s rapports sur la durée
|
|
40
|
+
msgstr "%s rapports sur la durée"
|
|
44
41
|
|
|
45
42
|
msgid "%s spool errors detected, inspect the appropriate file directly on proxy"
|
|
46
43
|
msgstr "%s erreurs de spool détectées, inspectez le fichier approprié directement sur le proxy"
|
|
47
44
|
|
|
48
|
-
msgid "%
|
|
45
|
+
msgid "%s vulnerabilities found"
|
|
49
46
|
msgstr ""
|
|
50
47
|
|
|
48
|
+
msgid "%s vulnerabilities with available patch found"
|
|
49
|
+
msgstr ""
|
|
50
|
+
|
|
51
|
+
msgid "%{type} was selected to deploy policy to clients, but %{type} is not available. Are you missing a plugin?"
|
|
52
|
+
msgstr "%{type} a été sélectionné pour déployer la stratégie auprès des clients, mais %{type} n'est pas disponible. Il vous manque un plugin ?"
|
|
53
|
+
|
|
51
54
|
msgid "<b>Foreman</b> OpenSCAP summary"
|
|
52
55
|
msgstr "<b>Foreman</b> récapitulatif OpenSCAP"
|
|
53
56
|
|
|
@@ -75,9 +78,27 @@ msgstr "Appliquer Groupes hôtes de la stratégie"
|
|
|
75
78
|
msgid "Apply policy to hosts"
|
|
76
79
|
msgstr "Appliquer la politique aux hôtes"
|
|
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 "Attribuer un stratégie de conformité"
|
|
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 "Précédent"
|
|
83
104
|
|
|
@@ -120,9 +141,6 @@ msgstr "Sélectionner un jour de la semaine"
|
|
|
120
141
|
msgid "Compliance"
|
|
121
142
|
msgstr "Conformité"
|
|
122
143
|
|
|
123
|
-
msgid "Compliance Hosts"
|
|
124
|
-
msgstr "Hôtes de conformité"
|
|
125
|
-
|
|
126
144
|
msgid "Compliance Policies"
|
|
127
145
|
msgstr "Stratégies de conformité"
|
|
128
146
|
|
|
@@ -148,13 +166,19 @@ msgid "Compliant with the policy"
|
|
|
148
166
|
msgstr "Conforme à la stratégie"
|
|
149
167
|
|
|
150
168
|
msgid "Could not find host identified by: %s"
|
|
169
|
+
msgstr "Impossible de trouver l'hôte identifié par : %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"
|
|
154
175
|
msgstr "Impossible de valider %s. Veuillez vérifier que vous disposez de la bonne version du proxy pour utiliser cette fonctionnalité"
|
|
155
176
|
|
|
156
177
|
msgid "Could not validate %{file_type}. Error %{error}"
|
|
157
|
-
msgstr "
|
|
178
|
+
msgstr "N'a pas pu valider le %. Erreur %{error}"
|
|
179
|
+
|
|
180
|
+
msgid "Create OVAL content"
|
|
181
|
+
msgstr ""
|
|
158
182
|
|
|
159
183
|
msgid "Create SCAP content"
|
|
160
184
|
msgstr "Créer un contenu SCAP"
|
|
@@ -165,6 +189,9 @@ msgstr "Créer une stratégie"
|
|
|
165
189
|
msgid "Create a Tailoring file"
|
|
166
190
|
msgstr "Créer un fichier de personnalisation"
|
|
167
191
|
|
|
192
|
+
msgid "Create an OVAL Policy"
|
|
193
|
+
msgstr ""
|
|
194
|
+
|
|
168
195
|
msgid "Dashboard"
|
|
169
196
|
msgstr "Tableau de bord"
|
|
170
197
|
|
|
@@ -186,6 +213,9 @@ msgstr "Supprimer une Stratégie"
|
|
|
186
213
|
msgid "Delete an ARF Report"
|
|
187
214
|
msgstr "Supprimer un rapport 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 "Souhaitez-vous supprimer la stratégie de conformité %s avec tous ses rapports ?"
|
|
191
221
|
|
|
@@ -196,7 +226,7 @@ msgid "Delete reports"
|
|
|
196
226
|
msgstr "Supprimer les rapports"
|
|
197
227
|
|
|
198
228
|
msgid "Delete scap content %s?"
|
|
199
|
-
msgstr ""
|
|
229
|
+
msgstr "Supprimer contenu scap %s ?"
|
|
200
230
|
|
|
201
231
|
msgid "Delete tailoring file %s?"
|
|
202
232
|
msgstr "Souhaitez-vous supprimer le fichier de personnalisation %s ?"
|
|
@@ -207,15 +237,24 @@ msgstr "Stratégie supprimée"
|
|
|
207
237
|
msgid "Deletes a Tailoring file"
|
|
208
238
|
msgstr "Supprime un fichier de personnalisation"
|
|
209
239
|
|
|
240
|
+
msgid "Deletes an OVAL content"
|
|
241
|
+
msgstr ""
|
|
242
|
+
|
|
210
243
|
msgid "Deletes an SCAP content"
|
|
211
244
|
msgstr "Supprime un contenu SCAP"
|
|
212
245
|
|
|
213
246
|
msgid "Deployment Options"
|
|
214
|
-
msgstr ""
|
|
247
|
+
msgstr "Options de déploiement"
|
|
215
248
|
|
|
216
249
|
msgid "Description"
|
|
217
250
|
msgstr "Description"
|
|
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 "Documentation"
|
|
221
260
|
|
|
@@ -240,18 +279,15 @@ msgstr "Télécharger un contenu SCAP au format XML"
|
|
|
240
279
|
msgid "Download bzipped ARF report"
|
|
241
280
|
msgstr "Télécharger un rapport ARF au format bzip"
|
|
242
281
|
|
|
243
|
-
msgid "Edit
|
|
244
|
-
msgstr "
|
|
245
|
-
|
|
246
|
-
msgid "Edit SCAP Content"
|
|
247
|
-
msgstr "Modifier le contenu SCAP"
|
|
248
|
-
|
|
249
|
-
msgid "Edit Tailoring File"
|
|
250
|
-
msgstr "Modifier un fichier de personnalisation"
|
|
282
|
+
msgid "Edit %s"
|
|
283
|
+
msgstr ""
|
|
251
284
|
|
|
252
285
|
msgid "Effective Profile"
|
|
253
286
|
msgstr "Profil effectif"
|
|
254
287
|
|
|
288
|
+
msgid "Error!"
|
|
289
|
+
msgstr ""
|
|
290
|
+
|
|
255
291
|
msgid "Failed"
|
|
256
292
|
msgstr "Échec"
|
|
257
293
|
|
|
@@ -277,7 +313,7 @@ msgid "Failed to fetch spool status from proxy"
|
|
|
277
313
|
msgstr "Impossible d'extraire le statut du spool du proxy"
|
|
278
314
|
|
|
279
315
|
msgid "Failed to save when overriding parameters for %{config_tool}, cause: %{errors}"
|
|
280
|
-
msgstr ""
|
|
316
|
+
msgstr "Echec de la sauvegarde lors de l'écrasement des paramètres pour %{config_tool}, cause : %{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 "Échec de chargement du rapport ARF, l'URL ou le nom de proxy OpenSCAP n'a pas été trouvé dans les paramètres lors du téléchargement pour %s et openscap_proxy manque sur l'hôte"
|
|
@@ -289,12 +325,18 @@ msgstr "Echec|E"
|
|
|
289
325
|
msgid "File Upload"
|
|
290
326
|
msgstr "Téléchargement du ficher"
|
|
291
327
|
|
|
328
|
+
msgid "File paths to upload when using \"files\" upload type"
|
|
329
|
+
msgstr ""
|
|
330
|
+
|
|
292
331
|
msgid "Full Report"
|
|
293
332
|
msgstr "Rapport complet"
|
|
294
333
|
|
|
295
334
|
msgid "General"
|
|
296
335
|
msgstr "Général"
|
|
297
336
|
|
|
337
|
+
msgid "Has Errata?"
|
|
338
|
+
msgstr ""
|
|
339
|
+
|
|
298
340
|
msgid "Host"
|
|
299
341
|
msgstr "Hôte"
|
|
300
342
|
|
|
@@ -314,13 +356,13 @@ msgid "Host does not exist anymore"
|
|
|
314
356
|
msgstr "L'hôte n'existe plus"
|
|
315
357
|
|
|
316
358
|
msgid "Host is assigned to policy"
|
|
317
|
-
msgstr ""
|
|
359
|
+
msgstr "L'hôte est affecté à la stratégie"
|
|
318
360
|
|
|
319
361
|
msgid "Host is deleted"
|
|
320
362
|
msgstr "L'hôte est supprimé"
|
|
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 "L'hôte n'est pas affecté à la stratégie mais des rapports ont été trouvés. Vous pouvez supprimer les rapports ou réattribuer la stratégie."
|
|
324
366
|
|
|
325
367
|
msgid "Hostgroups"
|
|
326
368
|
msgstr "Groupes d'hôtes"
|
|
@@ -331,11 +373,14 @@ msgstr "Nom d'hôte"
|
|
|
331
373
|
msgid "Hosts Breakdown"
|
|
332
374
|
msgstr "Détails des hôtes"
|
|
333
375
|
|
|
376
|
+
msgid "Hosts Count"
|
|
377
|
+
msgstr ""
|
|
378
|
+
|
|
334
379
|
msgid "Hosts failing this rule"
|
|
335
380
|
msgstr "Hôtes échouant à cette règle"
|
|
336
381
|
|
|
337
382
|
msgid "Hosts no longer assigned: %s"
|
|
338
|
-
msgstr ""
|
|
383
|
+
msgstr "Hôtes qui ne sont plus attribués : %s"
|
|
339
384
|
|
|
340
385
|
msgid "Hosts othering this rule"
|
|
341
386
|
msgstr "Hôtes modifiant cette règle"
|
|
@@ -344,7 +389,7 @@ msgid "Hosts passing this rule"
|
|
|
344
389
|
msgstr "Hôtes passant cette règle"
|
|
345
390
|
|
|
346
391
|
msgid "How the policy should be deployed"
|
|
347
|
-
msgstr ""
|
|
392
|
+
msgstr "Comment la stratégie doit-elle être déployée"
|
|
348
393
|
|
|
349
394
|
msgid "ID of OpenSCAP Proxy"
|
|
350
395
|
msgstr "ID du proxy OpenSCAP"
|
|
@@ -384,6 +429,15 @@ msgstr "Non conclusif"
|
|
|
384
429
|
msgid "Inconclusive results"
|
|
385
430
|
msgstr "Résultats peu probants"
|
|
386
431
|
|
|
432
|
+
msgid "Is %s param set to be overriden?"
|
|
433
|
+
msgstr ""
|
|
434
|
+
|
|
435
|
+
msgid "Is foreman_ansible present?"
|
|
436
|
+
msgstr ""
|
|
437
|
+
|
|
438
|
+
msgid "Is theforeman.foreman_scap_client present?"
|
|
439
|
+
msgstr ""
|
|
440
|
+
|
|
387
441
|
msgid "It may sometimes be required to adjust the security policy to your specific needs. "
|
|
388
442
|
msgstr "Il est parfois nécessaire d'ajuster la stratégie de sécurité en fonction de vos besoins spécifiques."
|
|
389
443
|
|
|
@@ -396,11 +450,17 @@ msgstr "Derniers rapports pour stratégie : %s"
|
|
|
396
450
|
msgid "List ARF reports"
|
|
397
451
|
msgstr "Afficher tous les rapports ARF"
|
|
398
452
|
|
|
453
|
+
msgid "List OVAL Policies"
|
|
454
|
+
msgstr ""
|
|
455
|
+
|
|
456
|
+
msgid "List OVAL contents"
|
|
457
|
+
msgstr ""
|
|
458
|
+
|
|
399
459
|
msgid "List Policies"
|
|
400
460
|
msgstr "Répertorier les stratégies"
|
|
401
461
|
|
|
402
462
|
msgid "List SCAP content profiles"
|
|
403
|
-
msgstr ""
|
|
463
|
+
msgstr "Lister les profils du contenu SCAP"
|
|
404
464
|
|
|
405
465
|
msgid "List SCAP contents"
|
|
406
466
|
msgstr "Lister le contenu SCAP"
|
|
@@ -420,6 +480,9 @@ msgstr "Message"
|
|
|
420
480
|
msgid "More details"
|
|
421
481
|
msgstr "Plus de détails"
|
|
422
482
|
|
|
483
|
+
msgid "Name"
|
|
484
|
+
msgstr ""
|
|
485
|
+
|
|
423
486
|
msgid "Never audited"
|
|
424
487
|
msgstr "Jamais audité"
|
|
425
488
|
|
|
@@ -444,6 +507,18 @@ msgstr "Non"
|
|
|
444
507
|
msgid "No ARF reports for this policy"
|
|
445
508
|
msgstr "Aucun rapport ARF pour cette stratégie"
|
|
446
509
|
|
|
510
|
+
msgid "No CVEs found."
|
|
511
|
+
msgstr ""
|
|
512
|
+
|
|
513
|
+
msgid "No OVAL Contents found."
|
|
514
|
+
msgstr ""
|
|
515
|
+
|
|
516
|
+
msgid "No OVAL Policies found"
|
|
517
|
+
msgstr ""
|
|
518
|
+
|
|
519
|
+
msgid "No OVAL Policy found"
|
|
520
|
+
msgstr ""
|
|
521
|
+
|
|
447
522
|
msgid "No OpenSCAP Proxy selected."
|
|
448
523
|
msgstr "Aucun proxy OpenSCAP n'a été sélectionné."
|
|
449
524
|
|
|
@@ -453,6 +528,9 @@ msgstr "Aucun proxy OpenSCAP trouvé pour %{class} avec l'ID %{id}"
|
|
|
453
528
|
msgid "No Tailoring file assigned for policy with id %s"
|
|
454
529
|
msgstr "Aucun fichier de personnalisation attribué pour la stratégie avec l'ID %s"
|
|
455
530
|
|
|
531
|
+
msgid "No Vulnerabilities found"
|
|
532
|
+
msgstr ""
|
|
533
|
+
|
|
456
534
|
msgid "No available proxy to validate. Returned with error: %s"
|
|
457
535
|
msgstr "Aucun proxy disponible pour valider. Erreur retournée : %s"
|
|
458
536
|
|
|
@@ -472,7 +550,7 @@ msgid "No hosts were found."
|
|
|
472
550
|
msgstr "Aucun hôte trouvé"
|
|
473
551
|
|
|
474
552
|
msgid "No proxy found for %{name} or %{url}"
|
|
475
|
-
msgstr "Aucun proxy trouvé
|
|
553
|
+
msgstr "Aucun proxy trouvé !"
|
|
476
554
|
|
|
477
555
|
msgid "No proxy found!"
|
|
478
556
|
msgstr "Aucun proxy trouvé !"
|
|
@@ -516,6 +594,48 @@ msgstr "Nombre d'évenements"
|
|
|
516
594
|
msgid "Number of a day in month, note that not all months have same count of days"
|
|
517
595
|
msgstr "Nombre de jours dans un mois, notez que chaque mois n'a pas le même nombre de jours"
|
|
518
596
|
|
|
597
|
+
msgid "OVAL Content"
|
|
598
|
+
msgstr ""
|
|
599
|
+
|
|
600
|
+
msgid "OVAL Contents"
|
|
601
|
+
msgstr ""
|
|
602
|
+
|
|
603
|
+
msgid "OVAL Contents table"
|
|
604
|
+
msgstr ""
|
|
605
|
+
|
|
606
|
+
msgid "OVAL Policies"
|
|
607
|
+
msgstr ""
|
|
608
|
+
|
|
609
|
+
msgid "OVAL Policies Table"
|
|
610
|
+
msgstr ""
|
|
611
|
+
|
|
612
|
+
msgid "OVAL Policy description"
|
|
613
|
+
msgstr ""
|
|
614
|
+
|
|
615
|
+
msgid "OVAL Policy name"
|
|
616
|
+
msgstr ""
|
|
617
|
+
|
|
618
|
+
msgid "OVAL Policy schedule cron line (only if period == \"custom\")"
|
|
619
|
+
msgstr ""
|
|
620
|
+
|
|
621
|
+
msgid "OVAL Policy schedule day of month (only if period == \"monthly\")"
|
|
622
|
+
msgstr ""
|
|
623
|
+
|
|
624
|
+
msgid "OVAL Policy schedule period (weekly, monthly, custom)"
|
|
625
|
+
msgstr ""
|
|
626
|
+
|
|
627
|
+
msgid "OVAL Policy schedule weekday (only if period == \"weekly\")"
|
|
628
|
+
msgstr ""
|
|
629
|
+
|
|
630
|
+
msgid "OVAL content name"
|
|
631
|
+
msgstr ""
|
|
632
|
+
|
|
633
|
+
msgid "OVAL policy successfully configured with %s."
|
|
634
|
+
msgstr ""
|
|
635
|
+
|
|
636
|
+
msgid "OVAL scan"
|
|
637
|
+
msgstr ""
|
|
638
|
+
|
|
519
639
|
msgid "Once SCAP content is present, you can create a policy, assign select host groups and schedule to run."
|
|
520
640
|
msgstr "Une fois que le contenu SCAP est présent, vous pouvez créer une stratégie, affecter des groupes d'hôtes sélectionnés et programmer une exécution."
|
|
521
641
|
|
|
@@ -531,6 +651,9 @@ msgstr "Proxy Openscap"
|
|
|
531
651
|
msgid "Organizations"
|
|
532
652
|
msgstr "Organisations"
|
|
533
653
|
|
|
654
|
+
msgid "Original file name of the OVAL content file"
|
|
655
|
+
msgstr ""
|
|
656
|
+
|
|
534
657
|
msgid "Original file name of the XML file"
|
|
535
658
|
msgstr "Nom de fichier original du fichier XML"
|
|
536
659
|
|
|
@@ -554,6 +677,12 @@ msgstr "Succés|S"
|
|
|
554
677
|
msgid "Please Confirm"
|
|
555
678
|
msgstr "Merci de confirmer"
|
|
556
679
|
|
|
680
|
+
msgid "Please make sure you understand them by reading our"
|
|
681
|
+
msgstr ""
|
|
682
|
+
|
|
683
|
+
msgid "Please specify import type, received: %{received}, expected one of: %{expected}"
|
|
684
|
+
msgstr ""
|
|
685
|
+
|
|
557
686
|
msgid "Policies"
|
|
558
687
|
msgstr "Comportements"
|
|
559
688
|
|
|
@@ -564,9 +693,12 @@ msgid "Policy"
|
|
|
564
693
|
msgstr "Stratégie"
|
|
565
694
|
|
|
566
695
|
msgid "Policy %s"
|
|
567
|
-
msgstr "Stratégie
|
|
696
|
+
msgstr "Stratégie"
|
|
568
697
|
|
|
569
698
|
msgid "Policy Attributes"
|
|
699
|
+
msgstr "Attributs de stratégies"
|
|
700
|
+
|
|
701
|
+
msgid "Policy OVAL content ID"
|
|
570
702
|
msgstr ""
|
|
571
703
|
|
|
572
704
|
msgid "Policy SCAP content ID"
|
|
@@ -576,7 +708,7 @@ msgid "Policy SCAP content profile ID"
|
|
|
576
708
|
msgstr "ID du profil de contenu SCAP de la stratégie"
|
|
577
709
|
|
|
578
710
|
msgid "Policy assigned"
|
|
579
|
-
msgstr ""
|
|
711
|
+
msgstr "Stratégie assignée"
|
|
580
712
|
|
|
581
713
|
msgid "Policy description"
|
|
582
714
|
msgstr "Description de la stratégie"
|
|
@@ -600,7 +732,7 @@ msgid "Policy schedule weekday (only if period == \"weekly\")"
|
|
|
600
732
|
msgstr "Programmation hebdomadaire de la stratégie (uniquement si période = hebdomadaire)"
|
|
601
733
|
|
|
602
734
|
msgid "Policy with id %s not found."
|
|
603
|
-
msgstr ""
|
|
735
|
+
msgstr "Stratégie avec l'ID %s introuvable."
|
|
604
736
|
|
|
605
737
|
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."
|
|
606
738
|
msgstr "Le proxy n'a pas réussi à envoyer un rapport du spool à Foreman. Cela indique que le format du rapport est endommagé. Le rapport a été déplacé dans le répertoire pour stocker les fichiers endommagés sur le proxy en vue d'une inspection ultérieure."
|
|
@@ -611,6 +743,9 @@ msgstr "Classe Puppet"
|
|
|
611
743
|
msgid "Rationale"
|
|
612
744
|
msgstr "Rationale"
|
|
613
745
|
|
|
746
|
+
msgid "Ref Id"
|
|
747
|
+
msgstr ""
|
|
748
|
+
|
|
614
749
|
msgid "References"
|
|
615
750
|
msgstr "Références"
|
|
616
751
|
|
|
@@ -627,7 +762,7 @@ msgid "Reported At"
|
|
|
627
762
|
msgstr "Rapporté à"
|
|
628
763
|
|
|
629
764
|
msgid "Reported at %s"
|
|
630
|
-
msgstr "Rapporté
|
|
765
|
+
msgstr "Rapporté le"
|
|
631
766
|
|
|
632
767
|
msgid "Reports"
|
|
633
768
|
msgstr "Rapports"
|
|
@@ -636,7 +771,7 @@ msgid "Request timed out. Please try increasing Settings -> proxy_request_timeou
|
|
|
636
771
|
msgstr "Expiration du délai de requête. Veuillez augmenter les valeurs dans Paramètres -> proxy_request_timeout"
|
|
637
772
|
|
|
638
773
|
msgid "Required %{msg_name} %{class} was not found, please ensure it is imported first."
|
|
639
|
-
msgstr ""
|
|
774
|
+
msgstr "%{msg_name} %{classe} requis non trouvé, veuillez vous assurer qu'il y a bien eu une importation pour commencer."
|
|
640
775
|
|
|
641
776
|
msgid "Resource"
|
|
642
777
|
msgstr "Ressource"
|
|
@@ -645,6 +780,9 @@ msgid "Result"
|
|
|
645
780
|
msgstr "Résultat"
|
|
646
781
|
|
|
647
782
|
msgid "Rule Results"
|
|
783
|
+
msgstr "Résultats de règle"
|
|
784
|
+
|
|
785
|
+
msgid "Run OVAL scan"
|
|
648
786
|
msgstr ""
|
|
649
787
|
|
|
650
788
|
msgid "Run OpenSCAP scan"
|
|
@@ -671,8 +809,8 @@ msgstr "Contenus SCAP"
|
|
|
671
809
|
msgid "SCAP policies summary"
|
|
672
810
|
msgstr "Récapitulatif des stratégies SCAP"
|
|
673
811
|
|
|
674
|
-
msgid "
|
|
675
|
-
msgstr "
|
|
812
|
+
msgid "Scan All Hostgroups"
|
|
813
|
+
msgstr ""
|
|
676
814
|
|
|
677
815
|
msgid "Schedule"
|
|
678
816
|
msgstr "Programmer"
|
|
@@ -710,11 +848,17 @@ msgstr "Afficher le fichier de personnalisation d'une stratégie"
|
|
|
710
848
|
msgid "Show an ARF report"
|
|
711
849
|
msgstr "Afficher un rapport ARF"
|
|
712
850
|
|
|
851
|
+
msgid "Show an OVAL Policy"
|
|
852
|
+
msgstr ""
|
|
853
|
+
|
|
854
|
+
msgid "Show an OVAL content"
|
|
855
|
+
msgstr ""
|
|
856
|
+
|
|
713
857
|
msgid "Show an SCAP content"
|
|
714
858
|
msgstr "Afficher un élément de contenu SCAP"
|
|
715
859
|
|
|
716
860
|
msgid "Show config information for foreman_scap_client"
|
|
717
|
-
msgstr ""
|
|
861
|
+
msgstr "Afficher les informations de configuration pour foreman_scap_client"
|
|
718
862
|
|
|
719
863
|
msgid "Show log messages:"
|
|
720
864
|
msgstr "Afficher les messages de log:"
|
|
@@ -755,6 +899,12 @@ msgstr "Rapport de synthèse pour OpenScap depuis Foreman"
|
|
|
755
899
|
msgid "Summary report from Foreman server at %{foreman_url}"
|
|
756
900
|
msgstr "Rapport récapitulatif de Foreman à %{foreman_url}"
|
|
757
901
|
|
|
902
|
+
msgid "Sync contents that have remote source URL"
|
|
903
|
+
msgstr ""
|
|
904
|
+
|
|
905
|
+
msgid "Table of CVEs for OVAL policy"
|
|
906
|
+
msgstr ""
|
|
907
|
+
|
|
758
908
|
msgid "Tailoring File"
|
|
759
909
|
msgstr "Fichier de personnalisation"
|
|
760
910
|
|
|
@@ -778,15 +928,21 @@ msgstr ""
|
|
|
778
928
|
" configuration liés à la sécurité. "
|
|
779
929
|
|
|
780
930
|
msgid "The following %{key_name} were missing for %{item_name}: %{key_names}. Make sure they are imported before proceeding."
|
|
931
|
+
msgstr "Les %{nom_clé} suivants étaient manquants pour %{nom_article} : %{nom_de_la_clé}. Assurez-vous qu'ils aient bien été importés avant de poursuivre."
|
|
932
|
+
|
|
933
|
+
msgid "The following Ansible Variables were not found: %{missing_vars}, please import them before running this action again."
|
|
781
934
|
msgstr ""
|
|
782
935
|
|
|
783
936
|
msgid "The following Smart Proxies need to be updated to unlock the feature: %s. "
|
|
784
|
-
msgstr "Les smart proxies suivants doivent être mis à jour pour déverrouiller la fonction : %s"
|
|
937
|
+
msgstr "Les smart proxies suivants doivent être mis à jour pour déverrouiller la fonction : %s "
|
|
785
938
|
|
|
786
939
|
msgid "The following proxies could not be reached: %s. Please make sure they are available so Foreman can check their versions."
|
|
787
940
|
msgstr "Impossible d'atteindre les proxies suivants : %s. Veillez à ce qu'ils soient disponibles de sorte que Foreman puisse vérifier leur version."
|
|
788
941
|
|
|
789
942
|
msgid "The identifier of the host"
|
|
943
|
+
msgstr "Identifiant de l’hôte"
|
|
944
|
+
|
|
945
|
+
msgid "There are significant differences in deployment options."
|
|
790
946
|
msgstr ""
|
|
791
947
|
|
|
792
948
|
msgid "This feature is temporarily disabled. "
|
|
@@ -799,16 +955,22 @@ msgid "Total"
|
|
|
799
955
|
msgstr "Total"
|
|
800
956
|
|
|
801
957
|
msgid "Total hosts with policy: %s"
|
|
802
|
-
msgstr ""
|
|
958
|
+
msgstr "Total des hôtes ayant pour stratégie : %s"
|
|
803
959
|
|
|
804
960
|
msgid "Total hosts with reports where policy is no longer assigned."
|
|
805
|
-
msgstr ""
|
|
961
|
+
msgstr "Total des hôtes avec des rapports où la stratégie n'est plus assignée."
|
|
806
962
|
|
|
807
963
|
msgid "Total of one host"
|
|
808
964
|
msgid_plural "Total of %{hosts} hosts"
|
|
809
965
|
msgstr[0] "Total de un hôte"
|
|
810
966
|
msgstr[1] "Total de %{hosts} hôtes"
|
|
811
967
|
|
|
968
|
+
msgid "Type of the upload"
|
|
969
|
+
msgstr ""
|
|
970
|
+
|
|
971
|
+
msgid "URL of the OVAL content file"
|
|
972
|
+
msgstr ""
|
|
973
|
+
|
|
812
974
|
msgid "Unable to get HTML version of requested report from Smart Proxy"
|
|
813
975
|
msgstr "N'a as pu trouver la version HTML du rapport demandé au proxy Smart"
|
|
814
976
|
|
|
@@ -821,12 +983,21 @@ msgstr "Dés-attribuer une stratégie de conformité"
|
|
|
821
983
|
msgid "Unknown Compliance status"
|
|
822
984
|
msgstr "Statut de conformité inconnu"
|
|
823
985
|
|
|
986
|
+
msgid "Unknown OVAL status"
|
|
987
|
+
msgstr ""
|
|
988
|
+
|
|
824
989
|
msgid "Update a Policy"
|
|
825
990
|
msgstr "Mettre à jour une stratégie"
|
|
826
991
|
|
|
827
992
|
msgid "Update a Tailoring file"
|
|
828
993
|
msgstr "Mettre à jour un fichier de personnalisation"
|
|
829
994
|
|
|
995
|
+
msgid "Update an OVAL Policy"
|
|
996
|
+
msgstr ""
|
|
997
|
+
|
|
998
|
+
msgid "Update an OVAL content"
|
|
999
|
+
msgstr ""
|
|
1000
|
+
|
|
830
1001
|
msgid "Update an SCAP content"
|
|
831
1002
|
msgstr "Mettre à jour un contenu SCAP"
|
|
832
1003
|
|
|
@@ -848,24 +1019,39 @@ msgstr "Télécharger un nouveau fichier de personnalisation"
|
|
|
848
1019
|
msgid "Upload an ARF report"
|
|
849
1020
|
msgstr "Télécharger un rapport Arf"
|
|
850
1021
|
|
|
1022
|
+
msgid "Upload an OVAL report - a list of CVEs for given host"
|
|
1023
|
+
msgstr ""
|
|
1024
|
+
|
|
851
1025
|
msgid "Upload new SCAP content file"
|
|
852
1026
|
msgstr "Télécharger Nouveau fichier de contenu SCAP"
|
|
853
1027
|
|
|
854
1028
|
msgid "Upload new Tailoring File"
|
|
855
1029
|
msgstr "Télécharger un nouveau fichier de personnalisation"
|
|
856
1030
|
|
|
1031
|
+
msgid "Upload scap contents in bulk"
|
|
1032
|
+
msgstr ""
|
|
1033
|
+
|
|
857
1034
|
msgid "View Report"
|
|
858
1035
|
msgstr "Afficher le rapport"
|
|
859
1036
|
|
|
860
1037
|
msgid "View full report"
|
|
861
1038
|
msgstr "Voir le rapport complet"
|
|
862
1039
|
|
|
1040
|
+
msgid "Was %s configured successfully?"
|
|
1041
|
+
msgstr ""
|
|
1042
|
+
|
|
1043
|
+
msgid "Was %{model_name} %{name} configured successfully?"
|
|
1044
|
+
msgstr ""
|
|
1045
|
+
|
|
863
1046
|
msgid "XCCDF Profile"
|
|
864
1047
|
msgstr "Profil XCCDF"
|
|
865
1048
|
|
|
866
1049
|
msgid "XCCDF Profile in Tailoring File"
|
|
867
1050
|
msgstr "Profil XCCDF dans le fichier de personnalisation"
|
|
868
1051
|
|
|
1052
|
+
msgid "XML containing OVAL content"
|
|
1053
|
+
msgstr ""
|
|
1054
|
+
|
|
869
1055
|
msgid "XML containing SCAP content"
|
|
870
1056
|
msgstr "XML avec contenu SCAP "
|
|
871
1057
|
|
|
@@ -882,10 +1068,10 @@ msgid "You don't seem to have any ARF report. ARF report is a summary of a singl
|
|
|
882
1068
|
msgstr "Vous ne semblez avoir aucun rapport ARF. Le rapport ARF est le résumé d'une occurrence d'analyse unique sur un hôte particulier pour une politique de conformité donnée."
|
|
883
1069
|
|
|
884
1070
|
msgid "cannot assign to %s, all assigned policies must be deployed in the same way, check 'deploy by' for each assigned policy"
|
|
885
|
-
msgstr ""
|
|
1071
|
+
msgstr "ne peut pas attribuer de %s, toutes les stratégies attribuées doivent être déployées de la même manière, cochez \"déployer par\" pour chaque stratégie attribuée"
|
|
886
1072
|
|
|
887
1073
|
msgid "documentation"
|
|
888
|
-
msgstr ""
|
|
1074
|
+
msgstr "documentation"
|
|
889
1075
|
|
|
890
1076
|
msgid "does not come from selected tailoring file"
|
|
891
1077
|
msgstr "ne vient pas du fichier de personnalisation sélectionné"
|
|
@@ -896,6 +1082,15 @@ msgstr "ne comprend pas 5 parties séparées par un espace"
|
|
|
896
1082
|
msgid "does not have the selected SCAP content profile"
|
|
897
1083
|
msgstr "ne contient pas le profil de contenu SCAP sélectionné"
|
|
898
1084
|
|
|
1085
|
+
msgid "foreman_ansible plugin not found, please install it before running this action again."
|
|
1086
|
+
msgstr ""
|
|
1087
|
+
|
|
1088
|
+
msgid "hostgroups"
|
|
1089
|
+
msgstr ""
|
|
1090
|
+
|
|
1091
|
+
msgid "hosts"
|
|
1092
|
+
msgstr ""
|
|
1093
|
+
|
|
899
1094
|
msgid "invalid type %s"
|
|
900
1095
|
msgstr "type %s invalide"
|
|
901
1096
|
|
|
@@ -920,5 +1115,8 @@ msgstr "doit être présent lorsque le profil du fichier de personnalisation est
|
|
|
920
1115
|
msgid "must have Openscap feature"
|
|
921
1116
|
msgstr "doit comporter la fonction Openscap"
|
|
922
1117
|
|
|
1118
|
+
msgid "theforeman.foreman_scap_client Ansible Role not found, please import it before running this action again."
|
|
1119
|
+
msgstr ""
|
|
1120
|
+
|
|
923
1121
|
msgid "these Compliance reports"
|
|
924
1122
|
msgstr "ces rapports de conformité"
|