foreman_openscap 7.1.1 → 8.0.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/assets/javascripts/foreman_openscap/locale/cs_CZ/foreman_openscap.js +517 -421
- data/app/assets/javascripts/foreman_openscap/locale/de/foreman_openscap.js +907 -814
- data/app/assets/javascripts/foreman_openscap/locale/en/foreman_openscap.js +517 -421
- data/app/assets/javascripts/foreman_openscap/locale/en_GB/foreman_openscap.js +549 -453
- data/app/assets/javascripts/foreman_openscap/locale/es/foreman_openscap.js +911 -818
- data/app/assets/javascripts/foreman_openscap/locale/fr/foreman_openscap.js +911 -818
- data/app/assets/javascripts/foreman_openscap/locale/gl/foreman_openscap.js +556 -460
- data/app/assets/javascripts/foreman_openscap/locale/it/foreman_openscap.js +601 -505
- data/app/assets/javascripts/foreman_openscap/locale/ja/foreman_openscap.js +909 -816
- data/app/assets/javascripts/foreman_openscap/locale/ka/foreman_openscap.js +96 -0
- data/app/assets/javascripts/foreman_openscap/locale/ko/foreman_openscap.js +704 -611
- data/app/assets/javascripts/foreman_openscap/locale/pt_BR/foreman_openscap.js +911 -818
- data/app/assets/javascripts/foreman_openscap/locale/ru/foreman_openscap.js +706 -613
- data/app/assets/javascripts/foreman_openscap/locale/sv_SE/foreman_openscap.js +556 -460
- data/app/assets/javascripts/foreman_openscap/locale/zh_CN/foreman_openscap.js +909 -816
- data/app/assets/javascripts/foreman_openscap/locale/zh_TW/foreman_openscap.js +704 -611
- data/app/assets/javascripts/foreman_openscap/reports.js +5 -0
- data/app/controllers/arf_reports_controller.rb +23 -2
- data/app/helpers/arf_reports_helper.rb +17 -4
- data/app/models/foreman_openscap/arf_report.rb +11 -2
- data/app/views/arf_reports/_output.html.erb +5 -1
- data/app/views/job_templates/run_openscap_remediation_-_ansible_default.erb +27 -0
- data/app/views/job_templates/run_openscap_remediation_-_script_default.erb +24 -0
- data/config/routes.rb +1 -0
- data/db/migrate/20230912122310_add_fixes_to_message.rb +5 -0
- data/lib/foreman_openscap/engine.rb +18 -2
- data/lib/foreman_openscap/version.rb +1 -1
- data/lib/tasks/foreman_openscap_tasks.rake +5 -16
- data/locale/cs_CZ/foreman_openscap.edit.po +145 -17
- data/locale/cs_CZ/foreman_openscap.po +96 -0
- data/locale/de/foreman_openscap.edit.po +248 -282
- data/locale/de/foreman_openscap.po +96 -0
- data/locale/en/foreman_openscap.edit.po +145 -17
- data/locale/en/foreman_openscap.po +96 -0
- data/locale/en_GB/foreman_openscap.edit.po +145 -17
- data/locale/en_GB/foreman_openscap.po +96 -0
- data/locale/es/foreman_openscap.edit.po +241 -279
- data/locale/es/foreman_openscap.po +96 -0
- data/locale/foreman_openscap.pot +164 -12
- data/locale/fr/foreman_openscap.edit.po +330 -363
- data/locale/fr/foreman_openscap.po +96 -0
- data/locale/gl/foreman_openscap.edit.po +145 -17
- data/locale/gl/foreman_openscap.po +96 -0
- data/locale/it/foreman_openscap.edit.po +145 -17
- data/locale/it/foreman_openscap.po +96 -0
- data/locale/ja/foreman_openscap.edit.po +314 -347
- data/locale/ja/foreman_openscap.po +96 -0
- data/locale/ka/foreman_openscap.edit.po +289 -328
- data/locale/ka/foreman_openscap.po +96 -0
- data/locale/ka/foreman_openscap.po.time_stamp +0 -0
- data/locale/ko/foreman_openscap.edit.po +146 -18
- data/locale/ko/foreman_openscap.po +96 -0
- data/locale/pt_BR/foreman_openscap.edit.po +247 -279
- data/locale/pt_BR/foreman_openscap.po +96 -0
- data/locale/ru/foreman_openscap.edit.po +146 -18
- data/locale/ru/foreman_openscap.po +96 -0
- data/locale/sv_SE/foreman_openscap.edit.po +145 -17
- data/locale/sv_SE/foreman_openscap.po +96 -0
- data/locale/zh_CN/foreman_openscap.edit.po +314 -347
- data/locale/zh_CN/foreman_openscap.po +96 -0
- data/locale/zh_TW/foreman_openscap.edit.po +146 -18
- data/locale/zh_TW/foreman_openscap.po +96 -0
- data/webpack/components/EmptyState.js +6 -2
- data/webpack/components/OpenscapRemediationWizard/OpenscapRemediationSelectors.js +16 -0
- data/webpack/components/OpenscapRemediationWizard/OpenscapRemediationWizardContext.js +4 -0
- data/webpack/components/OpenscapRemediationWizard/ViewSelectedHostsLink.js +38 -0
- data/webpack/components/OpenscapRemediationWizard/WizardHeader.js +43 -0
- data/webpack/components/OpenscapRemediationWizard/constants.js +14 -0
- data/webpack/components/OpenscapRemediationWizard/helpers.js +33 -0
- data/webpack/components/OpenscapRemediationWizard/index.js +160 -0
- data/webpack/components/OpenscapRemediationWizard/steps/Finish.js +131 -0
- data/webpack/components/OpenscapRemediationWizard/steps/ReviewHosts.js +217 -0
- data/webpack/components/OpenscapRemediationWizard/steps/ReviewRemediation.js +176 -0
- data/webpack/components/OpenscapRemediationWizard/steps/ReviewRemediation.scss +4 -0
- data/webpack/components/OpenscapRemediationWizard/steps/SnippetSelect.js +160 -0
- data/webpack/components/OpenscapRemediationWizard/steps/index.js +4 -0
- data/webpack/index.js +8 -3
- data/webpack/testHelper.js +6 -5
- metadata +20 -3
|
@@ -1,24 +1,24 @@
|
|
|
1
1
|
# SOME DESCRIPTIVE TITLE.
|
|
2
2
|
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
|
3
3
|
# This file is distributed under the same license as the foreman_openscap package.
|
|
4
|
-
#
|
|
4
|
+
#
|
|
5
5
|
# Translators:
|
|
6
6
|
# Baptiste Agasse <baptiste.agasse@gmail.com>, 2018-2019
|
|
7
7
|
# Claer <transiblu@claer.hammock.fr>, 2016
|
|
8
8
|
# Pierre-Emmanuel Dutang <dutangp@gmail.com>, 2016
|
|
9
9
|
msgid ""
|
|
10
10
|
msgstr ""
|
|
11
|
-
"Project-Id-Version:
|
|
11
|
+
"Project-Id-Version: Foreman\n"
|
|
12
12
|
"Report-Msgid-Bugs-To: \n"
|
|
13
|
-
"POT-Creation-Date: 2023-11-28 22:29+0100\n"
|
|
14
13
|
"PO-Revision-Date: 2016-04-14 07:48+0000\n"
|
|
15
14
|
"Last-Translator: Pierre-Emmanuel Dutang <dutangp@gmail.com>, 2016\n"
|
|
16
|
-
"Language-Team: French (http://
|
|
15
|
+
"Language-Team: French (http://www.transifex.com/foreman/foreman/language/fr/)\n"
|
|
17
16
|
"MIME-Version: 1.0\n"
|
|
18
17
|
"Content-Type: text/plain; charset=UTF-8\n"
|
|
19
18
|
"Content-Transfer-Encoding: 8bit\n"
|
|
20
19
|
"Language: fr\n"
|
|
21
|
-
"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n %
|
|
20
|
+
"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 100000"
|
|
21
|
+
"0 == 0 ? 1 : 2;\n"
|
|
22
22
|
|
|
23
23
|
#: ../app/controllers/api/v2/compliance/arf_reports_controller.rb:25
|
|
24
24
|
msgid "List ARF reports"
|
|
@@ -48,20 +48,17 @@ msgstr "Télécharger un rapport ARF dans HTML"
|
|
|
48
48
|
msgid "Policy with id %s not found."
|
|
49
49
|
msgstr "Stratégie ayant pour ID %s est introuvable."
|
|
50
50
|
|
|
51
|
-
#: ../app/controllers/api/v2/compliance/arf_reports_controller.rb:103
|
|
52
|
-
#: ../app/controllers/api/v2/compliance/oval_reports_controller.rb:32
|
|
51
|
+
#: ../app/controllers/api/v2/compliance/arf_reports_controller.rb:103 ../app/controllers/api/v2/compliance/oval_reports_controller.rb:32
|
|
53
52
|
msgid "Could not find host identified by: %s"
|
|
54
53
|
msgstr "Impossible de trouver l'hôte identifié par : %s"
|
|
55
54
|
|
|
56
55
|
#: ../app/controllers/api/v2/compliance/arf_reports_controller.rb:108
|
|
57
|
-
msgid ""
|
|
58
|
-
"Failed to upload Arf Report, OpenSCAP proxy name or url not found in params "
|
|
59
|
-
"when uploading for %s and host is missing openscap_proxy"
|
|
56
|
+
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"
|
|
60
57
|
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"
|
|
61
58
|
|
|
62
59
|
#: ../app/controllers/api/v2/compliance/arf_reports_controller.rb:120
|
|
63
60
|
msgid "No proxy found for %{name} or %{url}"
|
|
64
|
-
msgstr "Aucun proxy trouvé pour
|
|
61
|
+
msgstr "Aucun proxy trouvé pour %%{name} ou %%{url}"
|
|
65
62
|
|
|
66
63
|
#: ../app/controllers/api/v2/compliance/oval_contents_controller.rb:10
|
|
67
64
|
msgid "List OVAL contents"
|
|
@@ -177,7 +174,7 @@ msgstr "hôtes"
|
|
|
177
174
|
|
|
178
175
|
#: ../app/controllers/api/v2/compliance/oval_policies_controller.rb:78
|
|
179
176
|
msgid "Show a policy's OVAL content"
|
|
180
|
-
msgstr "
|
|
177
|
+
msgstr ""
|
|
181
178
|
|
|
182
179
|
#: ../app/controllers/api/v2/compliance/oval_policies_controller.rb:104
|
|
183
180
|
msgid "OVAL policy successfully configured with %s."
|
|
@@ -269,7 +266,7 @@ msgstr "Afficher le fichier de personnalisation d'une stratégie"
|
|
|
269
266
|
|
|
270
267
|
#: ../app/controllers/api/v2/compliance/policies_controller.rb:95
|
|
271
268
|
msgid "No Tailoring file assigned for policy with id %s"
|
|
272
|
-
msgstr "Aucun fichier de personnalisation attribué pour la stratégie avec l'Id
|
|
269
|
+
msgstr "Aucun fichier de personnalisation attribué pour la stratégie avec l'Id %s"
|
|
273
270
|
|
|
274
271
|
#: ../app/controllers/api/v2/compliance/scap_content_profiles_controller.rb:6
|
|
275
272
|
msgid "List SCAP content profiles"
|
|
@@ -293,10 +290,9 @@ msgstr "Nom du contenu SCAP"
|
|
|
293
290
|
|
|
294
291
|
#: ../app/controllers/api/v2/compliance/scap_contents_controller.rb:41
|
|
295
292
|
msgid "XML containing SCAP content"
|
|
296
|
-
msgstr "XML avec contenu SCAP"
|
|
293
|
+
msgstr "XML avec contenu SCAP "
|
|
297
294
|
|
|
298
|
-
#: ../app/controllers/api/v2/compliance/scap_contents_controller.rb:42
|
|
299
|
-
#: ../app/controllers/api/v2/compliance/tailoring_files_controller.rb:37
|
|
295
|
+
#: ../app/controllers/api/v2/compliance/scap_contents_controller.rb:42 ../app/controllers/api/v2/compliance/tailoring_files_controller.rb:37
|
|
300
296
|
msgid "Original file name of the XML file"
|
|
301
297
|
msgstr "Nom de fichier original du fichier XML"
|
|
302
298
|
|
|
@@ -329,10 +325,8 @@ msgid "Directory to upload when using \"directory\" upload type"
|
|
|
329
325
|
msgstr "Répertoire à télécharger lors de l'utilisation du type de téléchargement \"répertoire\""
|
|
330
326
|
|
|
331
327
|
#: ../app/controllers/api/v2/compliance/scap_contents_controller.rb:86
|
|
332
|
-
msgid ""
|
|
333
|
-
"
|
|
334
|
-
"%{expected}"
|
|
335
|
-
msgstr "Veuillez spécifier le type d'importation, reçu : %{received}, attendu : un %{expected}"
|
|
328
|
+
msgid "Please specify import type, received: %{received}, expected one of: %{expected}"
|
|
329
|
+
msgstr "Veuillez spécifier le type d'importation, reçu : %%{received}, attendu : un %%{expected}"
|
|
336
330
|
|
|
337
331
|
#: ../app/controllers/api/v2/compliance/tailoring_files_controller.rb:11
|
|
338
332
|
msgid "List Tailoring files"
|
|
@@ -379,9 +373,8 @@ msgid "Successfully deleted ARF report."
|
|
|
379
373
|
msgstr "Rapport ARF supprimé."
|
|
380
374
|
|
|
381
375
|
#: ../app/controllers/arf_reports_controller.rb:57
|
|
382
|
-
msgid ""
|
|
383
|
-
"
|
|
384
|
-
msgstr "Échec de la suppression du rapport ARF pour l'hôte %%{host_name} signalé à %%{reported_at}"
|
|
376
|
+
msgid "Failed to delete ARF Report for host %{host_name} reported at %{reported_at}"
|
|
377
|
+
msgstr "Échec de la suppression du rapport ARF pour l'hôte %%s signalé à %{reported_at}"
|
|
385
378
|
|
|
386
379
|
#: ../app/controllers/arf_reports_controller.rb:67
|
|
387
380
|
msgid "Failed to delete %s compliance reports"
|
|
@@ -391,15 +384,15 @@ msgstr "Impossible de supprimer les rapports de conformité %s"
|
|
|
391
384
|
msgid "Successfully deleted %s compliance reports"
|
|
392
385
|
msgstr "Rapports de conformité %s supprimés"
|
|
393
386
|
|
|
394
|
-
#: ../app/controllers/arf_reports_controller.rb:
|
|
387
|
+
#: ../app/controllers/arf_reports_controller.rb:106
|
|
395
388
|
msgid "No compliance reports were found."
|
|
396
|
-
msgstr "Aucun rapport de conformité
|
|
389
|
+
msgstr "Aucun rapport de conformité trouvé"
|
|
397
390
|
|
|
398
|
-
#: ../app/controllers/arf_reports_controller.rb:
|
|
391
|
+
#: ../app/controllers/arf_reports_controller.rb:110
|
|
399
392
|
msgid "No compliance reports selected"
|
|
400
393
|
msgstr "Aucun rapport de conformité sélectionné"
|
|
401
394
|
|
|
402
|
-
#: ../app/controllers/arf_reports_controller.rb:
|
|
395
|
+
#: ../app/controllers/arf_reports_controller.rb:115
|
|
403
396
|
msgid "Something went wrong while selecting compliance reports - %s"
|
|
404
397
|
msgstr "Quelque chose s'est mal passé lors de la sélection des rapports de conformité - %s"
|
|
405
398
|
|
|
@@ -412,10 +405,8 @@ msgid "The identifier of the host"
|
|
|
412
405
|
msgstr "Identifiant de l’hôte"
|
|
413
406
|
|
|
414
407
|
#: ../app/controllers/concerns/foreman_openscap/hosts_and_hostgroups_controller_extensions.rb:10
|
|
415
|
-
msgid ""
|
|
416
|
-
|
|
417
|
-
"OpenSCAP Proxy or unset it."
|
|
418
|
-
msgstr "Le proxy %s n’a pas la fonctionnalité Openscap activée. Corriger le proxy OpenSCAP correctement ou bien, désactiver."
|
|
408
|
+
msgid "The %s proxy does not have Openscap feature enabled. Either set correct OpenSCAP Proxy or unset it."
|
|
409
|
+
msgstr ""
|
|
419
410
|
|
|
420
411
|
#: ../app/controllers/concerns/foreman_openscap/hosts_controller_extensions.rb:26
|
|
421
412
|
msgid "Updated hosts: Assigned with OpenSCAP Proxy: %s"
|
|
@@ -443,7 +434,7 @@ msgstr "Aucun ID de stratégie fourni"
|
|
|
443
434
|
|
|
444
435
|
#: ../app/controllers/policies_controller.rb:129
|
|
445
436
|
msgid "No hosts were found with that id, name or query filter"
|
|
446
|
-
msgstr "
|
|
437
|
+
msgstr ""
|
|
447
438
|
|
|
448
439
|
#: ../app/controllers/policies_controller.rb:134
|
|
449
440
|
msgid "No hosts selected"
|
|
@@ -453,28 +444,15 @@ msgstr "Aucun hôte sélectionné"
|
|
|
453
444
|
msgid "Something went wrong while selecting hosts - %s"
|
|
454
445
|
msgstr "Une erreur s'est produite lors de la sélection des hôtes - %s"
|
|
455
446
|
|
|
456
|
-
#: ../app/helpers/arf_report_dashboard_helper.rb:16
|
|
457
|
-
#: ../app/helpers/compliance_dashboard_helper.rb:8
|
|
458
|
-
#: ../app/helpers/compliance_hosts_helper.rb:15
|
|
459
|
-
#: ../app/views/arf_reports/_list.html.erb:11
|
|
460
|
-
#: ../app/views/foreman_openscap/policy_mailer/_hosts.erb:11
|
|
461
|
-
#: ../app/views/policy_dashboard/_policy_reports.html.erb:10
|
|
447
|
+
#: ../app/helpers/arf_report_dashboard_helper.rb:16 ../app/helpers/compliance_dashboard_helper.rb:8 ../app/helpers/compliance_hosts_helper.rb:15 ../app/views/arf_reports/_list.html.erb:11 ../app/views/foreman_openscap/policy_mailer/_hosts.erb:11 ../app/views/policy_dashboard/_policy_reports.html.erb:10
|
|
462
448
|
msgid "Failed"
|
|
463
449
|
msgstr "Échec"
|
|
464
450
|
|
|
465
|
-
#: ../app/helpers/arf_report_dashboard_helper.rb:17
|
|
466
|
-
#: ../app/helpers/compliance_dashboard_helper.rb:6
|
|
467
|
-
#: ../app/helpers/compliance_hosts_helper.rb:14
|
|
468
|
-
#: ../app/views/arf_reports/_list.html.erb:10
|
|
469
|
-
#: ../app/views/foreman_openscap/policy_mailer/_hosts.erb:8
|
|
470
|
-
#: ../app/views/policy_dashboard/_policy_reports.html.erb:9
|
|
451
|
+
#: ../app/helpers/arf_report_dashboard_helper.rb:17 ../app/helpers/compliance_dashboard_helper.rb:6 ../app/helpers/compliance_hosts_helper.rb:14 ../app/views/arf_reports/_list.html.erb:10 ../app/views/foreman_openscap/policy_mailer/_hosts.erb:8 ../app/views/policy_dashboard/_policy_reports.html.erb:9
|
|
471
452
|
msgid "Passed"
|
|
472
453
|
msgstr "Succès"
|
|
473
454
|
|
|
474
|
-
#: ../app/helpers/arf_report_dashboard_helper.rb:18
|
|
475
|
-
#: ../app/views/arf_reports/_list.html.erb:12
|
|
476
|
-
#: ../app/views/foreman_openscap/policy_mailer/_hosts.erb:14
|
|
477
|
-
#: ../app/views/policy_dashboard/_policy_reports.html.erb:11
|
|
455
|
+
#: ../app/helpers/arf_report_dashboard_helper.rb:18 ../app/views/arf_reports/_list.html.erb:12 ../app/views/foreman_openscap/policy_mailer/_hosts.erb:14 ../app/views/policy_dashboard/_policy_reports.html.erb:11
|
|
478
456
|
msgid "Other"
|
|
479
457
|
msgstr "Autre"
|
|
480
458
|
|
|
@@ -502,10 +480,7 @@ msgstr "Échec ou Autre"
|
|
|
502
480
|
msgid "Failed only"
|
|
503
481
|
msgstr "Échec uniquement"
|
|
504
482
|
|
|
505
|
-
#: ../app/helpers/arf_reports_helper.rb:20
|
|
506
|
-
#: ../app/views/arf_reports/index.html.erb:1
|
|
507
|
-
#: ../app/views/arf_reports/welcome.html.erb:1
|
|
508
|
-
#: ../app/views/arf_reports/welcome.html.erb:7
|
|
483
|
+
#: ../app/helpers/arf_reports_helper.rb:20 ../app/views/arf_reports/index.html.erb:1 ../app/views/arf_reports/welcome.html.erb:1 ../app/views/arf_reports/welcome.html.erb:7
|
|
509
484
|
msgid "Compliance Reports"
|
|
510
485
|
msgstr "Rapports de conformité"
|
|
511
486
|
|
|
@@ -537,27 +512,27 @@ msgstr " pour la stratégie %s"
|
|
|
537
512
|
msgid " through %s"
|
|
538
513
|
msgstr " via %s"
|
|
539
514
|
|
|
540
|
-
#: ../app/helpers/arf_reports_helper.rb:
|
|
515
|
+
#: ../app/helpers/arf_reports_helper.rb:67
|
|
541
516
|
msgid "Hosts failing this rule"
|
|
542
517
|
msgstr "Hôtes échouant à cette règle"
|
|
543
518
|
|
|
544
|
-
#: ../app/helpers/arf_reports_helper.rb:
|
|
519
|
+
#: ../app/helpers/arf_reports_helper.rb:68
|
|
545
520
|
msgid "Hosts passing this rule"
|
|
546
521
|
msgstr "Hôtes passant cette règle"
|
|
547
522
|
|
|
548
|
-
#: ../app/helpers/arf_reports_helper.rb:
|
|
523
|
+
#: ../app/helpers/arf_reports_helper.rb:69
|
|
549
524
|
msgid "Hosts othering this rule"
|
|
550
525
|
msgstr "Hôtes modifiant cette règle"
|
|
551
526
|
|
|
552
|
-
#: ../app/helpers/
|
|
553
|
-
|
|
554
|
-
|
|
555
|
-
|
|
527
|
+
#: ../app/helpers/arf_reports_helper.rb:72
|
|
528
|
+
msgid "Remediation"
|
|
529
|
+
msgstr ""
|
|
530
|
+
|
|
531
|
+
#: ../app/helpers/compliance_dashboard_helper.rb:3 ../app/views/arf_reports/_list.html.erb:6 ../app/views/arf_reports/delete_multiple.html.erb:7 ../app/views/policy_dashboard/_policy_reports.html.erb:6
|
|
556
532
|
msgid "Host"
|
|
557
533
|
msgstr "Hôte"
|
|
558
534
|
|
|
559
|
-
#: ../app/helpers/compliance_dashboard_helper.rb:4
|
|
560
|
-
#: ../app/views/arf_reports/_list.html.erb:8
|
|
535
|
+
#: ../app/helpers/compliance_dashboard_helper.rb:4 ../app/views/arf_reports/_list.html.erb:8
|
|
561
536
|
msgid "Policy"
|
|
562
537
|
msgstr "Stratégie"
|
|
563
538
|
|
|
@@ -576,8 +551,7 @@ msgstr "Echec|E"
|
|
|
576
551
|
msgid "Othered|O"
|
|
577
552
|
msgstr "Autre|A"
|
|
578
553
|
|
|
579
|
-
#: ../app/helpers/compliance_dashboard_helper.rb:10
|
|
580
|
-
#: ../app/helpers/compliance_hosts_helper.rb:16
|
|
554
|
+
#: ../app/helpers/compliance_dashboard_helper.rb:10 ../app/helpers/compliance_hosts_helper.rb:16
|
|
581
555
|
msgid "Othered"
|
|
582
556
|
msgstr "Autre"
|
|
583
557
|
|
|
@@ -593,10 +567,7 @@ msgstr "Dés-attribuer une stratégie de conformité"
|
|
|
593
567
|
msgid "Change OpenSCAP Proxy"
|
|
594
568
|
msgstr "Modifier le proxy OpenSCAP"
|
|
595
569
|
|
|
596
|
-
#: ../app/helpers/compliance_hosts_helper.rb:37
|
|
597
|
-
#: ../app/models/foreman_openscap/compliance_status.rb:8
|
|
598
|
-
#: ../lib/foreman_openscap/engine.rb:159
|
|
599
|
-
#: ../webpack/components/HostExtentions/HostKebabItems.js:39
|
|
570
|
+
#: ../app/helpers/compliance_hosts_helper.rb:37 ../app/models/foreman_openscap/compliance_status.rb:8 ../lib/foreman_openscap/engine.rb:159 ../webpack/components/HostExtentions/HostKebabItems.js:39
|
|
600
571
|
msgid "Compliance"
|
|
601
572
|
msgstr "Conformité"
|
|
602
573
|
|
|
@@ -612,11 +583,7 @@ msgstr "L'hôte est supprimé"
|
|
|
612
583
|
msgid "Choose existing SCAP Content"
|
|
613
584
|
msgstr "Sélectionner un contenu SCAP existant"
|
|
614
585
|
|
|
615
|
-
#: ../app/helpers/policies_helper.rb:57 ../app/helpers/policies_helper.rb:63
|
|
616
|
-
#: ../app/models/foreman_openscap/policy.rb:11
|
|
617
|
-
#: ../app/views/policies/_form.html.erb:10
|
|
618
|
-
#: ../app/views/scap_contents/welcome.html.erb:1
|
|
619
|
-
#: ../app/views/scap_contents/welcome.html.erb:6
|
|
586
|
+
#: ../app/helpers/policies_helper.rb:57 ../app/helpers/policies_helper.rb:63 ../app/models/foreman_openscap/policy.rb:11 ../app/views/policies/_form.html.erb:10 ../app/views/scap_contents/welcome.html.erb:1 ../app/views/scap_contents/welcome.html.erb:6
|
|
620
587
|
msgid "SCAP Content"
|
|
621
588
|
msgstr "Contenu SCAP"
|
|
622
589
|
|
|
@@ -644,18 +611,11 @@ msgstr "Profil XCCDF dans le fichier de personnalisation"
|
|
|
644
611
|
msgid "This profile will be used to override the one from scap content"
|
|
645
612
|
msgstr "Ce profil sera utilisé pour remplacer celui du contenu scap"
|
|
646
613
|
|
|
647
|
-
#: ../app/helpers/policies_helper.rb:111
|
|
648
|
-
#: ../app/views/arf_reports/_list.html.erb:54
|
|
649
|
-
#: ../webpack/routes/OvalContents/OvalContentsNew/OvalContentsNew.js:116
|
|
650
|
-
#: ../webpack/routes/OvalPolicies/OvalPoliciesNew/NewOvalPolicyForm.js:97
|
|
614
|
+
#: ../app/helpers/policies_helper.rb:111 ../app/views/arf_reports/_list.html.erb:54 ../webpack/routes/OvalContents/OvalContentsNew/OvalContentsNew.js:116 ../webpack/routes/OvalPolicies/OvalPoliciesNew/NewOvalPolicyForm.js:97
|
|
651
615
|
msgid "Submit"
|
|
652
616
|
msgstr "Envoyer"
|
|
653
617
|
|
|
654
|
-
#: ../app/helpers/policies_helper.rb:115
|
|
655
|
-
#: ../app/views/arf_reports/_list.html.erb:53
|
|
656
|
-
#: ../webpack/components/ConfirmModal.js:27
|
|
657
|
-
#: ../webpack/routes/OvalContents/OvalContentsNew/OvalContentsNew.js:121
|
|
658
|
-
#: ../webpack/routes/OvalPolicies/OvalPoliciesNew/NewOvalPolicyForm.js:102
|
|
618
|
+
#: ../app/helpers/policies_helper.rb:115 ../app/views/arf_reports/_list.html.erb:53 ../webpack/components/ConfirmModal.js:27 ../webpack/routes/OvalContents/OvalContentsNew/OvalContentsNew.js:121 ../webpack/routes/OvalPolicies/OvalPoliciesNew/NewOvalPolicyForm.js:102
|
|
659
619
|
msgid "Cancel"
|
|
660
620
|
msgstr "Annuler"
|
|
661
621
|
|
|
@@ -667,8 +627,7 @@ msgstr "Hôtes conformes"
|
|
|
667
627
|
msgid "Incompliant hosts"
|
|
668
628
|
msgstr "Hôtes non conformes"
|
|
669
629
|
|
|
670
|
-
#: ../app/helpers/policy_dashboard_helper.rb:13
|
|
671
|
-
#: ../app/models/foreman_openscap/compliance_status.rb:24
|
|
630
|
+
#: ../app/helpers/policy_dashboard_helper.rb:13 ../app/models/foreman_openscap/compliance_status.rb:24
|
|
672
631
|
msgid "Inconclusive"
|
|
673
632
|
msgstr "Non conclusif"
|
|
674
633
|
|
|
@@ -681,9 +640,7 @@ msgid "Host is assigned to policy"
|
|
|
681
640
|
msgstr "L'hôte est affecté à la stratégie"
|
|
682
641
|
|
|
683
642
|
#: ../app/helpers/policy_dashboard_helper.rb:44
|
|
684
|
-
msgid ""
|
|
685
|
-
"Host is not assigned to policy but reports were found. You may want to "
|
|
686
|
-
"delete the reports or assign the policy again."
|
|
643
|
+
msgid "Host is not assigned to policy but reports were found. You may want to delete the reports or assign the policy again."
|
|
687
644
|
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."
|
|
688
645
|
|
|
689
646
|
#: ../app/helpers/policy_dashboard_helper.rb:52
|
|
@@ -695,19 +652,16 @@ msgid "Total hosts with reports where policy is no longer assigned."
|
|
|
695
652
|
msgstr "Total des hôtes avec des rapports où la stratégie n'est plus assignée."
|
|
696
653
|
|
|
697
654
|
#: ../app/lib/proxy_api/openscap.rb:21
|
|
698
|
-
msgid ""
|
|
699
|
-
"Request timed out. Please try increasing Settings -> proxy_request_timeout"
|
|
655
|
+
msgid "Request timed out. Please try increasing Settings -> proxy_request_timeout"
|
|
700
656
|
msgstr "Expiration du délai de requête. Veuillez augmenter les valeurs dans Paramètres -> proxy_request_timeout"
|
|
701
657
|
|
|
702
658
|
#: ../app/lib/proxy_api/openscap.rb:24
|
|
703
|
-
msgid ""
|
|
704
|
-
"Could not validate %s. Please make sure you have appropriate proxy version "
|
|
705
|
-
"to use this functionality"
|
|
659
|
+
msgid "Could not validate %s. Please make sure you have appropriate proxy version to use this functionality"
|
|
706
660
|
msgstr "Impossible de valider %s. Veuillez vérifier que vous disposez de la bonne version du proxy pour utiliser cette fonctionnalité"
|
|
707
661
|
|
|
708
662
|
#: ../app/lib/proxy_api/openscap.rb:27
|
|
709
663
|
msgid "Could not validate %{file_type}. Error %{error}"
|
|
710
|
-
msgstr "Impossible de valider
|
|
664
|
+
msgstr "Impossible de valider %{file_type}. Erreur %%{error}"
|
|
711
665
|
|
|
712
666
|
#: ../app/lib/proxy_api/openscap.rb:40
|
|
713
667
|
msgid "Unable to get HTML version of requested report from Smart Proxy"
|
|
@@ -731,15 +685,13 @@ msgstr "doit comporter la fonction Openscap"
|
|
|
731
685
|
|
|
732
686
|
#: ../app/models/concerns/foreman_openscap/openscap_proxy_extensions.rb:8
|
|
733
687
|
msgid "No OpenSCAP proxy found for %{class} with id %{id}"
|
|
734
|
-
msgstr "Aucun proxy OpenSCAP trouvé pour
|
|
688
|
+
msgstr "Aucun proxy OpenSCAP trouvé pour %%{class} avec id %%{id}"
|
|
735
689
|
|
|
736
690
|
#: ../app/models/concerns/foreman_openscap/policy_common.rb:15
|
|
737
691
|
msgid "does not consist of 5 parts separated by space"
|
|
738
692
|
msgstr "ne comprend pas 5 parties séparées par un espace"
|
|
739
693
|
|
|
740
|
-
#: ../app/models/concerns/foreman_openscap/policy_common.rb:21
|
|
741
|
-
#: ../app/models/foreman_openscap/oval_policy.rb:14
|
|
742
|
-
#: ../app/models/foreman_openscap/policy.rb:34
|
|
694
|
+
#: ../app/models/concerns/foreman_openscap/policy_common.rb:21 ../app/models/foreman_openscap/oval_policy.rb:14 ../app/models/foreman_openscap/policy.rb:34
|
|
743
695
|
msgid "is not a valid value"
|
|
744
696
|
msgstr "n'est pas une valeur valide"
|
|
745
697
|
|
|
@@ -747,13 +699,11 @@ msgstr "n'est pas une valeur valide"
|
|
|
747
699
|
msgid "must be between 1 and 31"
|
|
748
700
|
msgstr "doit être compris entre 1 et 31"
|
|
749
701
|
|
|
750
|
-
#: ../app/models/foreman_openscap/compliance_status.rb:22
|
|
751
|
-
#: ../app/views/foreman_openscap/policy_mailer/_dashboard.erb:13
|
|
702
|
+
#: ../app/models/foreman_openscap/compliance_status.rb:22 ../app/views/foreman_openscap/policy_mailer/_dashboard.erb:13
|
|
752
703
|
msgid "Compliant"
|
|
753
704
|
msgstr "Conforme"
|
|
754
705
|
|
|
755
|
-
#: ../app/models/foreman_openscap/compliance_status.rb:26
|
|
756
|
-
#: ../app/views/foreman_openscap/policy_mailer/_dashboard.erb:17
|
|
706
|
+
#: ../app/models/foreman_openscap/compliance_status.rb:26 ../app/views/foreman_openscap/policy_mailer/_dashboard.erb:17
|
|
757
707
|
msgid "Incompliant"
|
|
758
708
|
msgstr "Non conforme"
|
|
759
709
|
|
|
@@ -781,8 +731,7 @@ msgstr "%s vulnérabilités avec correctif disponible trouvées"
|
|
|
781
731
|
msgid "Unknown OVAL status"
|
|
782
732
|
msgstr "Statut OVAL inconnu"
|
|
783
733
|
|
|
784
|
-
#: ../app/models/foreman_openscap/policy.rb:11
|
|
785
|
-
#: ../app/views/policies/_form.html.erb:8
|
|
734
|
+
#: ../app/models/foreman_openscap/policy.rb:11 ../app/views/policies/_form.html.erb:8
|
|
786
735
|
msgid "Deployment Options"
|
|
787
736
|
msgstr "Options de déploiement"
|
|
788
737
|
|
|
@@ -790,29 +739,19 @@ msgstr "Options de déploiement"
|
|
|
790
739
|
msgid "Policy Attributes"
|
|
791
740
|
msgstr "Attributs de stratégies"
|
|
792
741
|
|
|
793
|
-
#: ../app/models/foreman_openscap/policy.rb:11
|
|
794
|
-
#: ../app/views/policies/_form.html.erb:11
|
|
795
|
-
#: ../webpack/routes/OvalPolicies/OvalPoliciesNew/NewOvalPolicyForm.js:67
|
|
742
|
+
#: ../app/models/foreman_openscap/policy.rb:11 ../app/views/policies/_form.html.erb:11 ../webpack/routes/OvalPolicies/OvalPoliciesNew/NewOvalPolicyForm.js:67
|
|
796
743
|
msgid "Schedule"
|
|
797
744
|
msgstr "Programmer"
|
|
798
745
|
|
|
799
|
-
#: ../app/models/foreman_openscap/policy.rb:11
|
|
800
|
-
#: ../app/views/policies/_form.html.erb:13
|
|
801
|
-
#: ../app/views/scap_contents/_form.html.erb:11
|
|
802
|
-
#: ../app/views/tailoring_files/_form.html.erb:11
|
|
746
|
+
#: ../app/models/foreman_openscap/policy.rb:11 ../app/views/policies/_form.html.erb:13 ../app/views/scap_contents/_form.html.erb:11 ../app/views/tailoring_files/_form.html.erb:11
|
|
803
747
|
msgid "Locations"
|
|
804
748
|
msgstr "Emplacements"
|
|
805
749
|
|
|
806
|
-
#: ../app/models/foreman_openscap/policy.rb:11
|
|
807
|
-
#: ../app/views/policies/_form.html.erb:16
|
|
808
|
-
#: ../app/views/scap_contents/_form.html.erb:14
|
|
809
|
-
#: ../app/views/tailoring_files/_form.html.erb:14
|
|
750
|
+
#: ../app/models/foreman_openscap/policy.rb:11 ../app/views/policies/_form.html.erb:16 ../app/views/scap_contents/_form.html.erb:14 ../app/views/tailoring_files/_form.html.erb:14
|
|
810
751
|
msgid "Organizations"
|
|
811
752
|
msgstr "Organisations"
|
|
812
753
|
|
|
813
|
-
#: ../app/models/foreman_openscap/policy.rb:11
|
|
814
|
-
#: ../webpack/routes/OvalPolicies/OvalPoliciesNew/HostgroupSelect.js:99
|
|
815
|
-
#: ../webpack/routes/OvalPolicies/OvalPoliciesShow/OvalPoliciesShow.js:65
|
|
754
|
+
#: ../app/models/foreman_openscap/policy.rb:11 ../webpack/routes/OvalPolicies/OvalPoliciesNew/HostgroupSelect.js:99 ../webpack/routes/OvalPolicies/OvalPoliciesShow/OvalPoliciesShow.js:65
|
|
816
755
|
msgid "Hostgroups"
|
|
817
756
|
msgstr "Groupes d'hôtes"
|
|
818
757
|
|
|
@@ -841,9 +780,7 @@ msgid "does not have the selected SCAP content profile"
|
|
|
841
780
|
msgstr "ne contient pas le profil de contenu SCAP sélectionné"
|
|
842
781
|
|
|
843
782
|
#: ../app/models/foreman_openscap/policy.rb:271
|
|
844
|
-
msgid ""
|
|
845
|
-
"cannot assign to %s, all assigned policies must be deployed in the same way,"
|
|
846
|
-
" check 'deploy by' for each assigned policy"
|
|
783
|
+
msgid "cannot assign to %s, all assigned policies must be deployed in the same way, check 'deploy by' for each assigned policy"
|
|
847
784
|
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"
|
|
848
785
|
|
|
849
786
|
#: ../app/services/foreman_openscap/arf_report_status_calculator.rb:30
|
|
@@ -851,21 +788,15 @@ msgid "invalid type %s"
|
|
|
851
788
|
msgstr "type %s invalide"
|
|
852
789
|
|
|
853
790
|
#: ../app/services/foreman_openscap/client_config/ansible.rb:23
|
|
854
|
-
msgid ""
|
|
855
|
-
|
|
856
|
-
" role to the hosts or selected hostgroups."
|
|
857
|
-
msgstr "Nécessite le plugin Ansible,%s Rôle et variables Ansible. Cela attribuera le rôle aux hôtes ou aux groupes d'hôtes sélectionnés."
|
|
791
|
+
msgid "Requires Ansible plugin, %s Ansible role and variables. This will assign the role to the hosts or selected hostgroups."
|
|
792
|
+
msgstr ""
|
|
858
793
|
|
|
859
794
|
#: ../app/services/foreman_openscap/client_config/ansible.rb:24
|
|
860
|
-
msgid ""
|
|
861
|
-
|
|
862
|
-
"manually. Manual run is also required after any change to this policy."
|
|
863
|
-
msgstr "Pour déployer foreman_scap_client, l'exécution des rôles ansible doit être déclenchée manuellement. Une exécution manuelle est également requise après toute modification de cette politique."
|
|
795
|
+
msgid "To deploy foreman_scap_client, ansible roles run needs to be triggered manually. Manual run is also required after any change to this policy."
|
|
796
|
+
msgstr ""
|
|
864
797
|
|
|
865
798
|
#: ../app/services/foreman_openscap/client_config/ansible.rb:34
|
|
866
|
-
msgid ""
|
|
867
|
-
"theforeman.foreman_scap_client Ansible Role not found, please import it "
|
|
868
|
-
"before running this action again."
|
|
799
|
+
msgid "theforeman.foreman_scap_client Ansible Role not found, please import it before running this action again."
|
|
869
800
|
msgstr "theforeman.foreman_scap_client Rôle Ansible non trouvé, veuillez l'importer avant d'exécuter à nouveau cette action."
|
|
870
801
|
|
|
871
802
|
#: ../app/services/foreman_openscap/client_config/ansible.rb:57
|
|
@@ -877,22 +808,16 @@ msgid "Ansible variables"
|
|
|
877
808
|
msgstr "Variables Ansible"
|
|
878
809
|
|
|
879
810
|
#: ../app/services/foreman_openscap/client_config/manual.rb:14
|
|
880
|
-
msgid ""
|
|
881
|
-
|
|
882
|
-
"policy still needs to be defined in order to link incoming ARF reports."
|
|
883
|
-
msgstr "Cela laisse la configuration de foreman_scap_client uniquement à l'utilisateur. La politique doit encore être définie afin de lier les rapports ARF entrants."
|
|
811
|
+
msgid "This leaves the setup of the foreman_scap_client solely on the user. The policy still needs to be defined in order to link incoming ARF reports."
|
|
812
|
+
msgstr ""
|
|
884
813
|
|
|
885
814
|
#: ../app/services/foreman_openscap/client_config/puppet.rb:17
|
|
886
|
-
msgid ""
|
|
887
|
-
|
|
888
|
-
"selected hostgroups."
|
|
889
|
-
msgstr "Requiert %s classe Puppet. Cela affectera la classe aux hôtes ou aux groupes d'hôtes sélectionnés."
|
|
815
|
+
msgid "Requires %s Puppet class. This will assign the class to the hosts or selected hostgroups."
|
|
816
|
+
msgstr ""
|
|
890
817
|
|
|
891
818
|
#: ../app/services/foreman_openscap/client_config/puppet.rb:18
|
|
892
|
-
msgid ""
|
|
893
|
-
|
|
894
|
-
"the policy."
|
|
895
|
-
msgstr "Chaque exécution de Puppet garantit que le foreman_scap_client est configuré conformément à la politique."
|
|
819
|
+
msgid "Every puppet run ensures the foreman_scap_client is configured according to the policy."
|
|
820
|
+
msgstr ""
|
|
896
821
|
|
|
897
822
|
#: ../app/services/foreman_openscap/client_config/puppet.rb:39
|
|
898
823
|
msgid "Puppet class"
|
|
@@ -903,42 +828,31 @@ msgid "Smart Class Parameters"
|
|
|
903
828
|
msgstr "Paramètres smart class"
|
|
904
829
|
|
|
905
830
|
#: ../app/services/foreman_openscap/lookup_key_overrider.rb:19
|
|
906
|
-
msgid ""
|
|
907
|
-
"
|
|
908
|
-
"available. Are you missing a plugin?"
|
|
909
|
-
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 ?"
|
|
831
|
+
msgid "%{type} was selected to deploy policy to clients, but %{type} is not available. Are you missing a plugin?"
|
|
832
|
+
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 ?"
|
|
910
833
|
|
|
911
834
|
#: ../app/services/foreman_openscap/lookup_key_overrider.rb:26
|
|
912
|
-
msgid ""
|
|
913
|
-
"
|
|
914
|
-
"first."
|
|
915
|
-
msgstr "%%{msg_name} %{class} requis non trouvé, veuillez vous assurer qu'il y a bien eu une importation pour commencer."
|
|
835
|
+
msgid "Required %{msg_name} %{class} was not found, please ensure it is imported first."
|
|
836
|
+
msgstr "%{msg_name} % %{class} requis non trouvé, veuillez vous assurer qu'il y a bien eu une importation pour commencer."
|
|
916
837
|
|
|
917
838
|
#: ../app/services/foreman_openscap/lookup_key_overrider.rb:34
|
|
918
|
-
msgid ""
|
|
919
|
-
"
|
|
920
|
-
"sure they are imported before proceeding."
|
|
921
|
-
msgstr "Les %%{key_name} suivants étaient manquants pour %%{item_name} : %%{key_names}. Assurez-vous qu'ils aient bien été importés avant de poursuivre."
|
|
839
|
+
msgid "The following %{key_name} were missing for %{item_name}: %{key_names}. Make sure they are imported before proceeding."
|
|
840
|
+
msgstr "Les %%s suivants étaient manquants pour %{class} : %{key_names}. Assurez-vous qu'ils aient bien été importés avant de poursuivre."
|
|
922
841
|
|
|
923
842
|
#: ../app/services/foreman_openscap/lookup_key_overrider.rb:56
|
|
924
|
-
msgid ""
|
|
925
|
-
"
|
|
926
|
-
"%{errors}"
|
|
927
|
-
msgstr "Echec de la sauvegarde lors de l'écrasement des paramètres pour %%{config_tool}, cause : %{errors}"
|
|
843
|
+
msgid "Failed to save when overriding parameters for %{config_tool}, cause: %{errors}"
|
|
844
|
+
msgstr "Echec de la sauvegarde lors de l'écrasement des paramètres pour %{config_tool}, cause : %%{errors}"
|
|
928
845
|
|
|
929
846
|
#: ../app/services/foreman_openscap/openscap_proxy_version_check.rb:39
|
|
930
847
|
msgid "This feature is temporarily disabled. "
|
|
931
848
|
msgstr "Cette fonction est temporairement désactivée."
|
|
932
849
|
|
|
933
850
|
#: ../app/services/foreman_openscap/openscap_proxy_version_check.rb:40
|
|
934
|
-
msgid ""
|
|
935
|
-
"
|
|
936
|
-
msgstr "Les smart proxies suivants doivent être mis à jour pour déverrouiller la fonction : %s."
|
|
851
|
+
msgid "The following Smart Proxies need to be updated to unlock the feature: %s. "
|
|
852
|
+
msgstr "Les smart proxies suivants doivent être mis à jour pour déverrouiller la fonction : %s "
|
|
937
853
|
|
|
938
854
|
#: ../app/services/foreman_openscap/openscap_proxy_version_check.rb:41
|
|
939
|
-
msgid ""
|
|
940
|
-
"The following proxies could not be reached: %s. Please make sure they are "
|
|
941
|
-
"available so Foreman can check their versions."
|
|
855
|
+
msgid "The following proxies could not be reached: %s. Please make sure they are available so Foreman can check their versions."
|
|
942
856
|
msgstr "Impossible d'atteindre les proxies suivants : %s. Veillez à ce qu'ils soient disponibles de sorte que Foreman puisse vérifier leur version."
|
|
943
857
|
|
|
944
858
|
#: ../app/services/foreman_openscap/oval/configure.rb:65
|
|
@@ -951,7 +865,7 @@ msgstr "Assignez openscap_proxy à %s avant de procéder."
|
|
|
951
865
|
|
|
952
866
|
#: ../app/services/foreman_openscap/oval/configure.rb:75
|
|
953
867
|
msgid "Was %{model_name} %{name} configured successfully?"
|
|
954
|
-
msgstr "Le
|
|
868
|
+
msgstr "Le %{model_name} %%{name} a-t-il été configuré avec succès ?"
|
|
955
869
|
|
|
956
870
|
#: ../app/services/foreman_openscap/oval/setup.rb:56
|
|
957
871
|
msgid "Could not update Ansible Variables with override: true"
|
|
@@ -962,9 +876,7 @@ msgid "Is foreman_ansible present?"
|
|
|
962
876
|
msgstr "Est-ce que foreman_ansible est présent ?"
|
|
963
877
|
|
|
964
878
|
#: ../app/services/foreman_openscap/oval/setup.rb:62
|
|
965
|
-
msgid ""
|
|
966
|
-
"foreman_ansible plugin not found, please install it before running this "
|
|
967
|
-
"action again."
|
|
879
|
+
msgid "foreman_ansible plugin not found, please install it before running this action again."
|
|
968
880
|
msgstr "le plugin foreman_ansible n'a pas été trouvé, veuillez l'installer avant d'exécuter à nouveau cette action."
|
|
969
881
|
|
|
970
882
|
#: ../app/services/foreman_openscap/oval/setup.rb:66
|
|
@@ -976,24 +888,20 @@ msgid "Are required variables for theforeman.foreman_scap_client present?"
|
|
|
976
888
|
msgstr "Les variables requises pour theforeman.foreman_scap_client sont-elles présentes ?"
|
|
977
889
|
|
|
978
890
|
#: ../app/services/foreman_openscap/oval/setup.rb:72
|
|
979
|
-
msgid ""
|
|
980
|
-
"
|
|
981
|
-
"import them before running this action again."
|
|
982
|
-
msgstr "Les variables Ansible suivantes n'ont pas été trouvées : %%{missing_vars}, veuillez les importer avant d'exécuter à nouveau cette action."
|
|
891
|
+
msgid "The following Ansible Variables were not found: %{missing_vars}, please import them before running this action again."
|
|
892
|
+
msgstr "Les variables Ansible suivantes n'ont pas été trouvées : %{missing_vars}, veuillez les importer avant d'exécuter à nouveau cette action."
|
|
983
893
|
|
|
984
|
-
#: ../app/services/foreman_openscap/oval/setup.rb:76
|
|
985
|
-
#: ../app/services/foreman_openscap/oval/setup.rb:81
|
|
986
|
-
#: ../app/services/foreman_openscap/oval/setup.rb:86
|
|
894
|
+
#: ../app/services/foreman_openscap/oval/setup.rb:76 ../app/services/foreman_openscap/oval/setup.rb:81 ../app/services/foreman_openscap/oval/setup.rb:86
|
|
987
895
|
msgid "Is %s param set to be overriden?"
|
|
988
|
-
msgstr "Le paramètre
|
|
896
|
+
msgstr "Le paramètre {missing_vars} est-il réglé pour être remplacé ?"
|
|
989
897
|
|
|
990
898
|
#: ../app/services/foreman_openscap/oval/sync_oval_contents.rb:8
|
|
991
899
|
msgid "cause: "
|
|
992
|
-
msgstr "
|
|
900
|
+
msgstr ""
|
|
993
901
|
|
|
994
902
|
#: ../app/services/foreman_openscap/oval/sync_oval_contents.rb:28
|
|
995
903
|
msgid "Failed to fetch content file from %s"
|
|
996
|
-
msgstr "
|
|
904
|
+
msgstr ""
|
|
997
905
|
|
|
998
906
|
#: ../app/validators/foreman_openscap/data_stream_validator.rb:9
|
|
999
907
|
msgid "No proxy with OpenSCAP feature was found."
|
|
@@ -1015,9 +923,7 @@ msgstr "Le fichier modifié n'inclut pas les profils de contenu SCAP existants"
|
|
|
1015
923
|
msgid "More details"
|
|
1016
924
|
msgstr "Plus de détails"
|
|
1017
925
|
|
|
1018
|
-
#: ../app/views/arf_reports/_detailed_message.html.erb:6
|
|
1019
|
-
#: ../webpack/routes/OvalPolicies/OvalPoliciesNew/NewOvalPolicyForm.js:62
|
|
1020
|
-
#: ../webpack/routes/OvalPolicies/OvalPoliciesShow/DetailsTab.js:57
|
|
926
|
+
#: ../app/views/arf_reports/_detailed_message.html.erb:6 ../webpack/routes/OvalPolicies/OvalPoliciesNew/NewOvalPolicyForm.js:62 ../webpack/routes/OvalPolicies/OvalPoliciesShow/DetailsTab.js:57
|
|
1021
927
|
msgid "Description"
|
|
1022
928
|
msgstr "Description"
|
|
1023
929
|
|
|
@@ -1037,8 +943,7 @@ msgstr "Sélectionner tous les éléments de cette page"
|
|
|
1037
943
|
msgid "items selected. Uncheck to Clear"
|
|
1038
944
|
msgstr "items sélectionnés. Décocher pour Effacer"
|
|
1039
945
|
|
|
1040
|
-
#: ../app/views/arf_reports/_list.html.erb:7
|
|
1041
|
-
#: ../app/views/arf_reports/delete_multiple.html.erb:10
|
|
946
|
+
#: ../app/views/arf_reports/_list.html.erb:7 ../app/views/arf_reports/delete_multiple.html.erb:10
|
|
1042
947
|
msgid "Reported At"
|
|
1043
948
|
msgstr "Rapporté à"
|
|
1044
949
|
|
|
@@ -1046,12 +951,7 @@ msgstr "Rapporté à"
|
|
|
1046
951
|
msgid "Openscap Proxy"
|
|
1047
952
|
msgstr "Proxy Openscap"
|
|
1048
953
|
|
|
1049
|
-
#: ../app/views/arf_reports/_list.html.erb:13
|
|
1050
|
-
#: ../app/views/arf_reports/_output.html.erb:16
|
|
1051
|
-
#: ../app/views/policies/_list.html.erb:8
|
|
1052
|
-
#: ../app/views/policy_dashboard/_policy_reports.html.erb:12
|
|
1053
|
-
#: ../app/views/scap_contents/_list.html.erb:6
|
|
1054
|
-
#: ../app/views/tailoring_files/_list.html.erb:6
|
|
954
|
+
#: ../app/views/arf_reports/_list.html.erb:13 ../app/views/arf_reports/_output.html.erb:16 ../app/views/policies/_list.html.erb:8 ../app/views/policy_dashboard/_policy_reports.html.erb:12 ../app/views/scap_contents/_list.html.erb:6 ../app/views/tailoring_files/_list.html.erb:6
|
|
1055
955
|
msgid "Actions"
|
|
1056
956
|
msgstr "Actions"
|
|
1057
957
|
|
|
@@ -1131,15 +1031,12 @@ msgstr "Télécharger le XML en bzip"
|
|
|
1131
1031
|
msgid "Download HTML"
|
|
1132
1032
|
msgstr "Télécharger HTML"
|
|
1133
1033
|
|
|
1134
|
-
#: ../app/views/arf_reports/show_html.html.erb:10
|
|
1135
|
-
#: ../webpack/routes/OvalPolicies/OvalPoliciesNew/HostgroupSelect.js:68
|
|
1034
|
+
#: ../app/views/arf_reports/show_html.html.erb:10 ../webpack/routes/OvalPolicies/OvalPoliciesNew/HostgroupSelect.js:68
|
|
1136
1035
|
msgid "Loading..."
|
|
1137
1036
|
msgstr "Chargement..."
|
|
1138
1037
|
|
|
1139
1038
|
#: ../app/views/arf_reports/welcome.html.erb:9
|
|
1140
|
-
msgid ""
|
|
1141
|
-
"You don't seem to have any ARF report. ARF report is a summary of a single "
|
|
1142
|
-
"scan occurrence on a particular host for a given Compliance Policy."
|
|
1039
|
+
msgid "You don't seem to have any ARF report. ARF report is a summary of a single scan occurrence on a particular host for a given Compliance Policy."
|
|
1143
1040
|
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."
|
|
1144
1041
|
|
|
1145
1042
|
#: ../app/views/arf_reports/welcome.html.erb:12
|
|
@@ -1169,8 +1066,7 @@ msgstr "%s rapports sur la durée"
|
|
|
1169
1066
|
msgid "No report for this policy"
|
|
1170
1067
|
msgstr "Aucun rapport pour cette stratégie"
|
|
1171
1068
|
|
|
1172
|
-
#: ../app/views/dashboard/_compliance_host_reports_widget.html.erb:1
|
|
1173
|
-
#: ../lib/foreman_openscap/engine.rb:183
|
|
1069
|
+
#: ../app/views/dashboard/_compliance_host_reports_widget.html.erb:1 ../lib/foreman_openscap/engine.rb:183
|
|
1174
1070
|
msgid "Latest Compliance Reports"
|
|
1175
1071
|
msgstr "Derniers rapports de conformité"
|
|
1176
1072
|
|
|
@@ -1184,10 +1080,9 @@ msgstr "L'hôte n'existe plus"
|
|
|
1184
1080
|
|
|
1185
1081
|
#: ../app/views/dashboard/_compliance_host_reports_widget.html.erb:13
|
|
1186
1082
|
msgid "Policy is missing"
|
|
1187
|
-
msgstr "La stratégie est
|
|
1083
|
+
msgstr "La stratégie est manquante"
|
|
1188
1084
|
|
|
1189
|
-
#: ../app/views/dashboard/_compliance_reports_breakdown_widget.html.erb:1
|
|
1190
|
-
#: ../lib/foreman_openscap/engine.rb:185
|
|
1085
|
+
#: ../app/views/dashboard/_compliance_reports_breakdown_widget.html.erb:1 ../lib/foreman_openscap/engine.rb:185
|
|
1191
1086
|
msgid "Compliance Reports Breakdown"
|
|
1192
1087
|
msgstr "Détails des rapports de conformité"
|
|
1193
1088
|
|
|
@@ -1203,13 +1098,11 @@ msgstr "Nom d'hôte"
|
|
|
1203
1098
|
msgid "Changed?"
|
|
1204
1099
|
msgstr "Modifié ?"
|
|
1205
1100
|
|
|
1206
|
-
#: ../app/views/foreman_openscap/policy_mailer/_hosts.erb:36
|
|
1207
|
-
#: ../webpack/routes/OvalPolicies/OvalPoliciesShow/CvesTable.js:35
|
|
1101
|
+
#: ../app/views/foreman_openscap/policy_mailer/_hosts.erb:36 ../webpack/routes/OvalPolicies/OvalPoliciesShow/CvesTable.js:35
|
|
1208
1102
|
msgid "Yes"
|
|
1209
1103
|
msgstr "Oui"
|
|
1210
1104
|
|
|
1211
|
-
#: ../app/views/foreman_openscap/policy_mailer/_hosts.erb:36
|
|
1212
|
-
#: ../webpack/routes/OvalPolicies/OvalPoliciesShow/CvesTable.js:35
|
|
1105
|
+
#: ../app/views/foreman_openscap/policy_mailer/_hosts.erb:36 ../webpack/routes/OvalPolicies/OvalPoliciesShow/CvesTable.js:35
|
|
1213
1106
|
msgid "No"
|
|
1214
1107
|
msgstr "Non"
|
|
1215
1108
|
|
|
@@ -1219,14 +1112,14 @@ msgstr "Aucun rapport ARF pour cette stratégie"
|
|
|
1219
1112
|
|
|
1220
1113
|
#: ../app/views/foreman_openscap/policy_mailer/_list.erb:8
|
|
1221
1114
|
msgid "None!"
|
|
1222
|
-
msgstr "Aucun
|
|
1115
|
+
msgstr "Aucun"
|
|
1223
1116
|
|
|
1224
1117
|
#: ../app/views/foreman_openscap/policy_mailer/_policy.erb:7
|
|
1225
1118
|
msgid "Total of one host"
|
|
1226
1119
|
msgid_plural "Total of %{hosts} hosts"
|
|
1227
1120
|
msgstr[0] "Total de un hôte"
|
|
1228
|
-
msgstr[1] "Total de
|
|
1229
|
-
msgstr[2] "Total de
|
|
1121
|
+
msgstr[1] "Total de %%{hosts} hôtes"
|
|
1122
|
+
msgstr[2] "Total de %%{hosts} hôtes"
|
|
1230
1123
|
|
|
1231
1124
|
#: ../app/views/foreman_openscap/policy_mailer/policy_summary.erb:6
|
|
1232
1125
|
msgid "Summary report for OpenScap from Foreman"
|
|
@@ -1238,11 +1131,11 @@ msgstr "<b>Foreman</b> OpenSCAP Récapitulatif"
|
|
|
1238
1131
|
|
|
1239
1132
|
#: ../app/views/foreman_openscap/policy_mailer/policy_summary.erb:10
|
|
1240
1133
|
msgid "Summary from %{time} ago to now"
|
|
1241
|
-
msgstr "Résumé de
|
|
1134
|
+
msgstr "Résumé de %%{time} à maintenant"
|
|
1242
1135
|
|
|
1243
1136
|
#: ../app/views/foreman_openscap/policy_mailer/policy_summary.erb:11
|
|
1244
1137
|
msgid "Summary report from Foreman server at %{foreman_url}"
|
|
1245
|
-
msgstr "Rapport récapitulatif de Foreman à
|
|
1138
|
+
msgstr "Rapport récapitulatif de Foreman à %{foreman_url}"
|
|
1246
1139
|
|
|
1247
1140
|
#: ../app/views/foreman_openscap/policy_mailer/policy_summary.erb:16
|
|
1248
1141
|
msgid "Policies with hosts:"
|
|
@@ -1260,48 +1153,33 @@ msgstr "Général"
|
|
|
1260
1153
|
msgid "Host Groups"
|
|
1261
1154
|
msgstr "Groupe d'Hôtes"
|
|
1262
1155
|
|
|
1263
|
-
#: ../app/views/policies/_form.html.erb:45
|
|
1264
|
-
#: ../app/views/policies/steps/_schedule_form.html.erb:6
|
|
1156
|
+
#: ../app/views/policies/_form.html.erb:45 ../app/views/policies/steps/_schedule_form.html.erb:6
|
|
1265
1157
|
msgid "Choose period"
|
|
1266
1158
|
msgstr "Sélectionner une période"
|
|
1267
1159
|
|
|
1268
|
-
#: ../app/views/policies/_form.html.erb:47
|
|
1269
|
-
#: ../app/views/policies/steps/_schedule_form.html.erb:9
|
|
1160
|
+
#: ../app/views/policies/_form.html.erb:47 ../app/views/policies/steps/_schedule_form.html.erb:9
|
|
1270
1161
|
msgid "Choose weekday"
|
|
1271
1162
|
msgstr "Sélectionner un jour de la semaine"
|
|
1272
1163
|
|
|
1273
|
-
#: ../app/views/policies/_form.html.erb:48
|
|
1274
|
-
|
|
1275
|
-
msgid ""
|
|
1276
|
-
"Number of a day in month, note that not all months have same count of days"
|
|
1164
|
+
#: ../app/views/policies/_form.html.erb:48 ../app/views/policies/steps/_schedule_form.html.erb:13
|
|
1165
|
+
msgid "Number of a day in month, note that not all months have same count of days"
|
|
1277
1166
|
msgstr "Nombre de jours dans un mois, notez que chaque mois n'a pas le même nombre de jours"
|
|
1278
1167
|
|
|
1279
|
-
#: ../app/views/policies/_form.html.erb:49
|
|
1280
|
-
|
|
1281
|
-
msgid ""
|
|
1282
|
-
"You can specify custom cron line, e.g. \"0 3 * * *\", separate each of 5"
|
|
1283
|
-
" values by space"
|
|
1168
|
+
#: ../app/views/policies/_form.html.erb:49 ../app/views/policies/steps/_schedule_form.html.erb:14
|
|
1169
|
+
msgid "You can specify custom cron line, e.g. \"0 3 * * *\", separate each of 5 values by space"
|
|
1284
1170
|
msgstr "Vous pouvez personnaliser votre ligne cron. \"0 3 * * *\", séparer chacune des 5 valeurs par un espace"
|
|
1285
1171
|
|
|
1286
|
-
#: ../app/views/policies/_list.html.erb:3
|
|
1287
|
-
#: ../app/views/tailoring_files/_list.html.erb:3
|
|
1288
|
-
#: ../webpack/routes/OvalContents/OvalContentsIndex/OvalContentsTable.js:19
|
|
1289
|
-
#: ../webpack/routes/OvalContents/OvalContentsNew/OvalContentsNew.js:57
|
|
1290
|
-
#: ../webpack/routes/OvalContents/OvalContentsShow/OvalContentsShow.js:48
|
|
1291
|
-
#: ../webpack/routes/OvalPolicies/OvalPoliciesIndex/OvalPoliciesTable.js:19
|
|
1292
|
-
#: ../webpack/routes/OvalPolicies/OvalPoliciesNew/NewOvalPolicyForm.js:56
|
|
1293
|
-
#: ../webpack/routes/OvalPolicies/OvalPoliciesShow/DetailsTab.js:31
|
|
1294
|
-
#: ../webpack/routes/OvalPolicies/OvalPoliciesShow/HostgroupsTable.js:9
|
|
1172
|
+
#: ../app/views/policies/_list.html.erb:3 ../app/views/tailoring_files/_list.html.erb:3 ../webpack/components/OpenscapRemediationWizard/steps/ReviewHosts.js:162 ../webpack/routes/OvalContents/OvalContentsIndex/OvalContentsTable.js:19 ../webpack/routes/OvalContents/OvalContentsNew/OvalContentsNew.js:57 ../webpack/routes/OvalContents/OvalContentsShow/OvalContentsShow.js:48 ../webpack/routes/OvalPolicies/OvalPoliciesIndex/OvalPoliciesTable.js:19 ../webpack/routes/OvalPolicies/OvalPoliciesNew/NewOvalPolicyForm.js:56 ../webpack/routes/OvalPolicies/OvalPoliciesShow/DetailsTab.js:31 ../webpack/routes/OvalPolicies/OvalPoliciesShow/HostgroupsTable.js:9
|
|
1295
1173
|
msgid "Name"
|
|
1296
1174
|
msgstr "Nom"
|
|
1297
1175
|
|
|
1298
1176
|
#: ../app/views/policies/_list.html.erb:4
|
|
1299
1177
|
msgid "Content"
|
|
1300
|
-
msgstr "
|
|
1178
|
+
msgstr ""
|
|
1301
1179
|
|
|
1302
1180
|
#: ../app/views/policies/_list.html.erb:5
|
|
1303
1181
|
msgid "Profile"
|
|
1304
|
-
msgstr "
|
|
1182
|
+
msgstr ""
|
|
1305
1183
|
|
|
1306
1184
|
#: ../app/views/policies/_list.html.erb:7
|
|
1307
1185
|
msgid "Effective Profile"
|
|
@@ -1323,31 +1201,25 @@ msgstr "Afficher le guide"
|
|
|
1323
1201
|
msgid "Delete compliance policy %s with all of its reports?"
|
|
1324
1202
|
msgstr "Souhaitez-vous supprimer la stratégie de conformité %s avec tous ses rapports ?"
|
|
1325
1203
|
|
|
1326
|
-
#: ../app/views/policies/create.html.erb:1
|
|
1327
|
-
#: ../app/views/policies/index.html.erb:5 ../app/views/policies/new.html.erb:1
|
|
1204
|
+
#: ../app/views/policies/create.html.erb:1 ../app/views/policies/index.html.erb:5 ../app/views/policies/new.html.erb:1
|
|
1328
1205
|
msgid "New Compliance Policy"
|
|
1329
1206
|
msgstr "Nouvelle stratégie de conformité"
|
|
1330
1207
|
|
|
1331
|
-
#: ../app/views/policies/disassociate_multiple_hosts.html.erb:4
|
|
1332
|
-
#: ../app/views/policies/select_multiple_hosts.html.erb:5
|
|
1208
|
+
#: ../app/views/policies/disassociate_multiple_hosts.html.erb:4 ../app/views/policies/select_multiple_hosts.html.erb:5
|
|
1333
1209
|
msgid "Select Compliance Policy"
|
|
1334
1210
|
msgstr "Sélectionner une stratégie de conformité"
|
|
1335
1211
|
|
|
1336
|
-
#: ../app/views/policies/edit.html.erb:1
|
|
1337
|
-
#: ../app/views/scap_contents/edit.html.erb:1
|
|
1338
|
-
#: ../app/views/tailoring_files/edit.html.erb:1
|
|
1212
|
+
#: ../app/views/policies/edit.html.erb:1 ../app/views/scap_contents/edit.html.erb:1 ../app/views/tailoring_files/edit.html.erb:1
|
|
1339
1213
|
msgid "Edit %s"
|
|
1340
1214
|
msgstr "Modifier %s"
|
|
1341
1215
|
|
|
1342
|
-
#: ../app/views/policies/index.html.erb:2
|
|
1343
|
-
#: ../app/views/policies/welcome.html.erb:1
|
|
1344
|
-
#: ../app/views/policies/welcome.html.erb:6
|
|
1216
|
+
#: ../app/views/policies/index.html.erb:2 ../app/views/policies/welcome.html.erb:1 ../app/views/policies/welcome.html.erb:6
|
|
1345
1217
|
msgid "Compliance Policies"
|
|
1346
1218
|
msgstr "Stratégies de conformité"
|
|
1347
1219
|
|
|
1348
1220
|
#: ../app/views/policies/show.html.erb:1
|
|
1349
1221
|
msgid "Details for Compliance Policy %s"
|
|
1350
|
-
msgstr "Détails de la stratégie de conformité
|
|
1222
|
+
msgstr "Détails de la stratégie de conformité {missing_vars}"
|
|
1351
1223
|
|
|
1352
1224
|
#: ../app/views/policies/steps/_deployment_options_form.html.erb:6
|
|
1353
1225
|
msgid "There are significant differences in deployment options."
|
|
@@ -1378,9 +1250,7 @@ msgid "SCAP content"
|
|
|
1378
1250
|
msgstr "Contenu SCAP"
|
|
1379
1251
|
|
|
1380
1252
|
#: ../app/views/policies/welcome.html.erb:8
|
|
1381
|
-
msgid ""
|
|
1382
|
-
"Once SCAP content is present, you can create a policy, assign select host "
|
|
1383
|
-
"groups and schedule to run."
|
|
1253
|
+
msgid "Once SCAP content is present, you can create a policy, assign select host groups and schedule to run."
|
|
1384
1254
|
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."
|
|
1385
1255
|
|
|
1386
1256
|
#: ../app/views/policies/welcome.html.erb:12
|
|
@@ -1443,8 +1313,7 @@ msgstr "Statut du diagramme"
|
|
|
1443
1313
|
msgid "Latest reports for policy: %s"
|
|
1444
1314
|
msgstr "Derniers rapports pour stratégie : %s"
|
|
1445
1315
|
|
|
1446
|
-
#: ../app/views/scap_contents/_form.html.erb:9
|
|
1447
|
-
#: ../app/views/tailoring_files/_form.html.erb:9
|
|
1316
|
+
#: ../app/views/scap_contents/_form.html.erb:9 ../app/views/tailoring_files/_form.html.erb:9
|
|
1448
1317
|
msgid "File Upload"
|
|
1449
1318
|
msgstr "Téléchargement du ficher"
|
|
1450
1319
|
|
|
@@ -1454,20 +1323,17 @@ msgstr "Fichier SCAP DataStream"
|
|
|
1454
1323
|
|
|
1455
1324
|
#: ../app/views/scap_contents/_list.html.erb:3
|
|
1456
1325
|
msgid "Title"
|
|
1457
|
-
msgstr "
|
|
1326
|
+
msgstr ""
|
|
1458
1327
|
|
|
1459
|
-
#: ../app/views/scap_contents/_list.html.erb:4
|
|
1460
|
-
#: ../app/views/tailoring_files/_list.html.erb:4
|
|
1328
|
+
#: ../app/views/scap_contents/_list.html.erb:4 ../app/views/tailoring_files/_list.html.erb:4
|
|
1461
1329
|
msgid "File name"
|
|
1462
|
-
msgstr "
|
|
1330
|
+
msgstr ""
|
|
1463
1331
|
|
|
1464
|
-
#: ../app/views/scap_contents/_list.html.erb:5
|
|
1465
|
-
#: ../app/views/tailoring_files/_list.html.erb:5
|
|
1332
|
+
#: ../app/views/scap_contents/_list.html.erb:5 ../app/views/tailoring_files/_list.html.erb:5
|
|
1466
1333
|
msgid "Created at"
|
|
1467
|
-
msgstr "
|
|
1334
|
+
msgstr ""
|
|
1468
1335
|
|
|
1469
|
-
#: ../app/views/scap_contents/_list.html.erb:17
|
|
1470
|
-
#: ../app/views/tailoring_files/_list.html.erb:23
|
|
1336
|
+
#: ../app/views/scap_contents/_list.html.erb:17 ../app/views/tailoring_files/_list.html.erb:23
|
|
1471
1337
|
msgid "Download"
|
|
1472
1338
|
msgstr "Télécharger"
|
|
1473
1339
|
|
|
@@ -1491,21 +1357,24 @@ msgstr "Télécharger Nouveau fichier de contenu SCAP"
|
|
|
1491
1357
|
msgid ""
|
|
1492
1358
|
"The Security Content Automation Protocol (SCAP), combines a number of open standards that are used to enumerate software flaws and\n"
|
|
1493
1359
|
" configuration issues related to security. "
|
|
1494
|
-
msgstr "
|
|
1360
|
+
msgstr ""
|
|
1361
|
+
"Le protocole SACP (Security Content Automation Protocol) combine un certain nombre de normes ouvertes permettant d'énumérer les défauts logiciels et les problèmes de\n"
|
|
1362
|
+
" configuration liés à la sécurité. "
|
|
1495
1363
|
|
|
1496
1364
|
#: ../app/views/scap_contents/welcome.html.erb:9
|
|
1497
1365
|
msgid ""
|
|
1498
1366
|
"In Foreman, scap_contents represent the SCAP security guides on your hosts, and create SCAP profiles for you to assign to hosts / host groups\n"
|
|
1499
1367
|
" via %s"
|
|
1500
|
-
msgstr "
|
|
1368
|
+
msgstr ""
|
|
1369
|
+
"Dans Foreman, scap_contents représente les guides de sécurité SCAP sur vos hôtes, et crée des profils SCAP que vous pouvez assigner aux hôtes / groupes d'hôtes\n"
|
|
1370
|
+
" via %s"
|
|
1501
1371
|
|
|
1502
1372
|
#: ../app/views/scap_contents/welcome.html.erb:14
|
|
1503
1373
|
msgid "New SCAP Content"
|
|
1504
1374
|
msgstr "Nouveau contenu SCAP"
|
|
1505
1375
|
|
|
1506
1376
|
#: ../app/views/smart_proxies/_openscap_spool.html.erb:4
|
|
1507
|
-
msgid ""
|
|
1508
|
-
"%s spool errors detected, inspect the appropriate file directly on proxy"
|
|
1377
|
+
msgid "%s spool errors detected, inspect the appropriate file directly on proxy"
|
|
1509
1378
|
msgstr "%s erreurs de spool détectées, inspectez le fichier approprié directement sur le proxy"
|
|
1510
1379
|
|
|
1511
1380
|
#: ../app/views/smart_proxies/_openscap_spool.html.erb:8
|
|
@@ -1517,10 +1386,7 @@ msgid "None found"
|
|
|
1517
1386
|
msgstr "Rien trouvé"
|
|
1518
1387
|
|
|
1519
1388
|
#: ../app/views/smart_proxies/plugins/_openscap.html.erb:6
|
|
1520
|
-
msgid ""
|
|
1521
|
-
"Proxy failed to send a report from spool to Foreman. This indicates a "
|
|
1522
|
-
"corrupted report format. Report has been moved to directory for storing "
|
|
1523
|
-
"corrupted files on proxy for later inspection."
|
|
1389
|
+
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."
|
|
1524
1390
|
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."
|
|
1525
1391
|
|
|
1526
1392
|
#: ../app/views/smart_proxies/plugins/_openscap.html.erb:7
|
|
@@ -1535,10 +1401,7 @@ msgstr "Fichier de personnalisation DataStream"
|
|
|
1535
1401
|
msgid "Delete tailoring file %s?"
|
|
1536
1402
|
msgstr "Souhaitez-vous supprimer le fichier de personnalisation %s ?"
|
|
1537
1403
|
|
|
1538
|
-
#: ../app/views/tailoring_files/index.html.erb:1
|
|
1539
|
-
#: ../app/views/tailoring_files/welcome.html.erb:1
|
|
1540
|
-
#: ../app/views/tailoring_files/welcome.html.erb:6
|
|
1541
|
-
#: ../lib/foreman_openscap/engine.rb:169
|
|
1404
|
+
#: ../app/views/tailoring_files/index.html.erb:1 ../app/views/tailoring_files/welcome.html.erb:1 ../app/views/tailoring_files/welcome.html.erb:6 ../lib/foreman_openscap/engine.rb:169
|
|
1542
1405
|
msgid "Tailoring Files"
|
|
1543
1406
|
msgstr "Fichiers de personnalisation"
|
|
1544
1407
|
|
|
@@ -1551,16 +1414,16 @@ msgid "Upload new Tailoring File"
|
|
|
1551
1414
|
msgstr "Télécharger un nouveau fichier de personnalisation"
|
|
1552
1415
|
|
|
1553
1416
|
#: ../app/views/tailoring_files/welcome.html.erb:7
|
|
1554
|
-
msgid ""
|
|
1555
|
-
"It may sometimes be required to adjust the security policy to your specific "
|
|
1556
|
-
"needs. "
|
|
1417
|
+
msgid "It may sometimes be required to adjust the security policy to your specific needs. "
|
|
1557
1418
|
msgstr "Il est parfois nécessaire d'ajuster la stratégie de sécurité en fonction de vos besoins spécifiques."
|
|
1558
1419
|
|
|
1559
1420
|
#: ../app/views/tailoring_files/welcome.html.erb:8
|
|
1560
1421
|
msgid ""
|
|
1561
1422
|
"In Foreman, tailoring_files represent the custom modifications to default XCCDF profiles and they can be applied to hosts\n"
|
|
1562
1423
|
" via %s"
|
|
1563
|
-
msgstr "
|
|
1424
|
+
msgstr ""
|
|
1425
|
+
"Dans Foreman, tailoring_files représente les modifications personnalisées apportées aux profils XCCDF par défaut et elles peuvent s'appliquer aux hôtes\n"
|
|
1426
|
+
" via %s"
|
|
1564
1427
|
|
|
1565
1428
|
#: ../app/views/tailoring_files/welcome.html.erb:13
|
|
1566
1429
|
msgid "New Tailoring File"
|
|
@@ -1575,38 +1438,36 @@ msgid "A summary of reports for OpenSCAP policies"
|
|
|
1575
1438
|
msgstr "Récapitulatif des rapports de stratégies OpenSCAP"
|
|
1576
1439
|
|
|
1577
1440
|
#: ../lib/foreman_openscap/bulk_upload.rb:20
|
|
1578
|
-
msgid ""
|
|
1579
|
-
|
|
1580
|
-
"server?"
|
|
1581
|
-
msgstr "Vous ne trouvez pas le RPM scap-security-guide, êtes-vous sûr qu'il est installé sur votre serveur ?"
|
|
1441
|
+
msgid "Can't find scap-security-guide RPM, are you sure it is installed on your server?"
|
|
1442
|
+
msgstr ""
|
|
1582
1443
|
|
|
1583
1444
|
#: ../lib/foreman_openscap/bulk_upload.rb:29
|
|
1584
1445
|
msgid "Expected an array of files to upload, got: %s."
|
|
1585
|
-
msgstr "
|
|
1446
|
+
msgstr ""
|
|
1586
1447
|
|
|
1587
1448
|
#: ../lib/foreman_openscap/bulk_upload.rb:35
|
|
1588
1449
|
msgid "%s is a directory, expecting file."
|
|
1589
|
-
msgstr "
|
|
1450
|
+
msgstr ""
|
|
1590
1451
|
|
|
1591
1452
|
#: ../lib/foreman_openscap/bulk_upload.rb:40
|
|
1592
1453
|
msgid "%s does not exist, skipping."
|
|
1593
|
-
msgstr "
|
|
1454
|
+
msgstr ""
|
|
1594
1455
|
|
|
1595
1456
|
#: ../lib/foreman_openscap/bulk_upload.rb:58
|
|
1596
1457
|
msgid "Failed saving %s:"
|
|
1597
|
-
msgstr "
|
|
1458
|
+
msgstr ""
|
|
1598
1459
|
|
|
1599
1460
|
#: ../lib/foreman_openscap/bulk_upload.rb:66
|
|
1600
1461
|
msgid "No such directory: %s. Please check the path you have provided."
|
|
1601
|
-
msgstr "
|
|
1462
|
+
msgstr ""
|
|
1602
1463
|
|
|
1603
1464
|
#: ../lib/foreman_openscap/bulk_upload.rb:88
|
|
1604
1465
|
msgid "Red Hat %s default content"
|
|
1605
|
-
msgstr "
|
|
1466
|
+
msgstr ""
|
|
1606
1467
|
|
|
1607
1468
|
#: ../lib/foreman_openscap/bulk_upload.rb:88
|
|
1608
1469
|
msgid "%s content"
|
|
1609
|
-
msgstr "
|
|
1470
|
+
msgstr ""
|
|
1610
1471
|
|
|
1611
1472
|
#: ../lib/foreman_openscap/engine.rb:160
|
|
1612
1473
|
msgid "Policies"
|
|
@@ -1620,21 +1481,16 @@ msgstr "Contenus SCAP"
|
|
|
1620
1481
|
msgid "Reports"
|
|
1621
1482
|
msgstr "Rapports"
|
|
1622
1483
|
|
|
1623
|
-
#: ../lib/foreman_openscap/engine.rb:172
|
|
1624
|
-
#: ../webpack/routes/OvalContents/OvalContentsIndex/OvalContentsIndex.js:33
|
|
1484
|
+
#: ../lib/foreman_openscap/engine.rb:172 ../webpack/routes/OvalContents/OvalContentsIndex/OvalContentsIndex.js:33
|
|
1625
1485
|
msgid "OVAL Contents"
|
|
1626
1486
|
msgstr "Contenus OVAL"
|
|
1627
1487
|
|
|
1628
|
-
#: ../lib/foreman_openscap/engine.rb:177
|
|
1629
|
-
#: ../webpack/routes/OvalPolicies/OvalPoliciesIndex/OvalPoliciesIndex.js:32
|
|
1488
|
+
#: ../lib/foreman_openscap/engine.rb:177 ../webpack/routes/OvalPolicies/OvalPoliciesIndex/OvalPoliciesIndex.js:32
|
|
1630
1489
|
msgid "OVAL Policies"
|
|
1631
1490
|
msgstr "Stratégies OVAL"
|
|
1632
1491
|
|
|
1633
1492
|
#: ../lib/foreman_openscap/engine.rb:199
|
|
1634
|
-
msgid ""
|
|
1635
|
-
"OpenSCAP Proxy to use for fetching SCAP content and uploading ARF reports. "
|
|
1636
|
-
"Leave blank and override appropriate parameters when using proxy load "
|
|
1637
|
-
"balancer."
|
|
1493
|
+
msgid "OpenSCAP Proxy to use for fetching SCAP content and uploading ARF reports. Leave blank and override appropriate parameters when using proxy load balancer."
|
|
1638
1494
|
msgstr "Proxy OpenSCAP à utiliser pour récupérer le contenu SCAP et télécharger les rapports ARF. Laissez ce champ vide et remplacez les paramètres appropriés lors de l'utilisation de l'équilibreur de charge proxy."
|
|
1639
1495
|
|
|
1640
1496
|
#: ../lib/foreman_openscap/engine.rb:203 ../lib/foreman_openscap/engine.rb:208
|
|
@@ -1645,84 +1501,201 @@ msgstr "Proxy OpenSCAP"
|
|
|
1645
1501
|
msgid "ID of OpenSCAP Proxy"
|
|
1646
1502
|
msgstr "ID du proxy OpenSCAP"
|
|
1647
1503
|
|
|
1648
|
-
#: ../lib/foreman_openscap/engine.rb:270 ../lib/foreman_openscap/engine.rb:
|
|
1504
|
+
#: ../lib/foreman_openscap/engine.rb:270 ../lib/foreman_openscap/engine.rb:293
|
|
1649
1505
|
msgid "Run OpenSCAP scan"
|
|
1650
1506
|
msgstr "Exécuter une analyse OpenSCAP"
|
|
1651
1507
|
|
|
1652
|
-
#: ../lib/foreman_openscap/engine.rb:275 ../lib/foreman_openscap/engine.rb:
|
|
1508
|
+
#: ../lib/foreman_openscap/engine.rb:275 ../lib/foreman_openscap/engine.rb:294
|
|
1653
1509
|
msgid "Run OVAL scan"
|
|
1654
1510
|
msgstr "Exécuter le scan OVAL"
|
|
1655
1511
|
|
|
1512
|
+
#: ../lib/foreman_openscap/engine.rb:279 ../lib/foreman_openscap/engine.rb:295
|
|
1513
|
+
msgid "Run OpenSCAP remediation with Ansible"
|
|
1514
|
+
msgstr ""
|
|
1515
|
+
|
|
1516
|
+
#: ../lib/foreman_openscap/engine.rb:284 ../lib/foreman_openscap/engine.rb:296
|
|
1517
|
+
msgid "Run OpenSCAP remediation with Shell"
|
|
1518
|
+
msgstr ""
|
|
1519
|
+
|
|
1656
1520
|
#: ../webpack/components/ConfirmModal.js:19
|
|
1657
1521
|
msgid "Confirm"
|
|
1658
|
-
msgstr "
|
|
1522
|
+
msgstr ""
|
|
1659
1523
|
|
|
1660
1524
|
#: ../webpack/components/EditableInput.js:78
|
|
1661
1525
|
msgid "None provided"
|
|
1662
|
-
msgstr "
|
|
1526
|
+
msgstr ""
|
|
1663
1527
|
|
|
1664
1528
|
#: ../webpack/components/HostExtentions/HostKebabItems.js:37
|
|
1665
1529
|
msgid "There's no available report for this host"
|
|
1666
|
-
msgstr "
|
|
1530
|
+
msgstr ""
|
|
1667
1531
|
|
|
1668
|
-
#: ../webpack/components/
|
|
1669
|
-
msgid "
|
|
1670
|
-
msgstr "
|
|
1532
|
+
#: ../webpack/components/OpenscapRemediationWizard/ViewSelectedHostsLink.js:27
|
|
1533
|
+
msgid "View selected hosts"
|
|
1534
|
+
msgstr ""
|
|
1535
|
+
|
|
1536
|
+
#: ../webpack/components/OpenscapRemediationWizard/index.js:69 ../webpack/components/OpenscapRemediationWizard/steps/ReviewHosts.js:174
|
|
1537
|
+
msgid "Review hosts"
|
|
1538
|
+
msgstr ""
|
|
1539
|
+
|
|
1540
|
+
#: ../webpack/components/OpenscapRemediationWizard/index.js:77 ../webpack/components/OpenscapRemediationWizard/steps/SnippetSelect.js:123
|
|
1541
|
+
msgid "Select snippet"
|
|
1542
|
+
msgstr ""
|
|
1543
|
+
|
|
1544
|
+
#: ../webpack/components/OpenscapRemediationWizard/index.js:85 ../webpack/components/OpenscapRemediationWizard/steps/ReviewRemediation.js:94
|
|
1545
|
+
msgid "Review remediation"
|
|
1546
|
+
msgstr ""
|
|
1547
|
+
|
|
1548
|
+
#: ../webpack/components/OpenscapRemediationWizard/index.js:89
|
|
1549
|
+
msgid "Run"
|
|
1550
|
+
msgstr ""
|
|
1551
|
+
|
|
1552
|
+
#: ../webpack/components/OpenscapRemediationWizard/index.js:93
|
|
1553
|
+
msgid "Done"
|
|
1554
|
+
msgstr ""
|
|
1555
|
+
|
|
1556
|
+
#: ../webpack/components/OpenscapRemediationWizard/index.js:127
|
|
1557
|
+
msgid "Remediate %s rule"
|
|
1558
|
+
msgstr ""
|
|
1671
1559
|
|
|
1672
|
-
#: ../webpack/components/
|
|
1560
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/Finish.js:84
|
|
1561
|
+
msgid "Job details"
|
|
1562
|
+
msgstr ""
|
|
1563
|
+
|
|
1564
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/Finish.js:87
|
|
1565
|
+
msgid "Close"
|
|
1566
|
+
msgstr ""
|
|
1567
|
+
|
|
1568
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/Finish.js:97 ../webpack/components/OpenscapRemediationWizard/steps/SnippetSelect.js:144 ../webpack/components/withLoading.js:12
|
|
1673
1569
|
msgid "Error!"
|
|
1674
|
-
msgstr "Erreur
|
|
1570
|
+
msgstr "Erreur"
|
|
1571
|
+
|
|
1572
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/Finish.js:105
|
|
1573
|
+
msgid "The job has started on selected host(s), you can check the status on the job details page."
|
|
1574
|
+
msgstr ""
|
|
1575
|
+
|
|
1576
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/ReviewHosts.js:167
|
|
1577
|
+
msgid "OS"
|
|
1578
|
+
msgstr ""
|
|
1579
|
+
|
|
1580
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/ReviewHosts.js:175
|
|
1581
|
+
msgid "By default, remediation is applied to the current host. Optionally, remediate any additional hosts that fail the rule."
|
|
1582
|
+
msgstr ""
|
|
1583
|
+
|
|
1584
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/ReviewRemediation.js:61
|
|
1585
|
+
msgid "Review the remediation snippet and apply it to the host manually."
|
|
1586
|
+
msgstr ""
|
|
1587
|
+
|
|
1588
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/ReviewRemediation.js:62
|
|
1589
|
+
msgid "Review the remediation snippet that will be applied to selected host(s)."
|
|
1590
|
+
msgstr ""
|
|
1591
|
+
|
|
1592
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/ReviewRemediation.js:67
|
|
1593
|
+
msgid "A reboot is required after applying remediation."
|
|
1594
|
+
msgstr ""
|
|
1595
|
+
|
|
1596
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/ReviewRemediation.js:68
|
|
1597
|
+
msgid "A reboot might be required after applying remediation."
|
|
1598
|
+
msgstr ""
|
|
1599
|
+
|
|
1600
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/ReviewRemediation.js:84
|
|
1601
|
+
msgid "Successfully copied to clipboard!"
|
|
1602
|
+
msgstr ""
|
|
1603
|
+
|
|
1604
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/ReviewRemediation.js:85
|
|
1605
|
+
msgid "Copy to clipboard"
|
|
1606
|
+
msgstr ""
|
|
1607
|
+
|
|
1608
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/ReviewRemediation.js:103
|
|
1609
|
+
msgid "Do not implement any of the recommended remedial actions or scripts without first testing them in a non-production environment."
|
|
1610
|
+
msgstr ""
|
|
1611
|
+
|
|
1612
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/ReviewRemediation.js:106
|
|
1613
|
+
msgid "Remediation might render the system non-functional."
|
|
1614
|
+
msgstr ""
|
|
1615
|
+
|
|
1616
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/ReviewRemediation.js:139
|
|
1617
|
+
msgid "Other hosts failing this rule"
|
|
1618
|
+
msgstr ""
|
|
1619
|
+
|
|
1620
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/ReviewRemediation.js:155
|
|
1621
|
+
msgid "Reboot the system(s)"
|
|
1622
|
+
msgstr ""
|
|
1623
|
+
|
|
1624
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/SnippetSelect.js:71
|
|
1625
|
+
msgid "Method"
|
|
1626
|
+
msgstr ""
|
|
1627
|
+
|
|
1628
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/SnippetSelect.js:77
|
|
1629
|
+
msgid "Remote job"
|
|
1630
|
+
msgstr ""
|
|
1631
|
+
|
|
1632
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/SnippetSelect.js:86
|
|
1633
|
+
msgid "Manual"
|
|
1634
|
+
msgstr ""
|
|
1635
|
+
|
|
1636
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/SnippetSelect.js:101
|
|
1637
|
+
msgid "There is no job to remediate with. Please remediate manually."
|
|
1638
|
+
msgstr ""
|
|
1639
|
+
|
|
1640
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/SnippetSelect.js:107
|
|
1641
|
+
msgid "Snippet"
|
|
1642
|
+
msgstr ""
|
|
1643
|
+
|
|
1644
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/SnippetSelect.js:150
|
|
1645
|
+
msgid "Select remediation method"
|
|
1646
|
+
msgstr ""
|
|
1647
|
+
|
|
1648
|
+
#: ../webpack/components/OpenscapRemediationWizard/steps/SnippetSelect.js:151
|
|
1649
|
+
msgid "You can remediate by running a remote job or you can display a snippet for manual remediation."
|
|
1650
|
+
msgstr ""
|
|
1651
|
+
|
|
1652
|
+
#: ../webpack/components/withDeleteModal.js:27
|
|
1653
|
+
msgid "Are you sure you want to delete %s?"
|
|
1654
|
+
msgstr ""
|
|
1675
1655
|
|
|
1676
1656
|
#: ../webpack/components/withLoading.js:64
|
|
1677
1657
|
msgid "Permission denied"
|
|
1678
|
-
msgstr "
|
|
1658
|
+
msgstr ""
|
|
1679
1659
|
|
|
1680
1660
|
#: ../webpack/helpers/mutationHelper.js:7
|
|
1681
1661
|
msgid "There was a following error when deleting %(name)s: %(error)s"
|
|
1682
|
-
msgstr "
|
|
1662
|
+
msgstr ""
|
|
1683
1663
|
|
|
1684
1664
|
#: ../webpack/helpers/permissionsHelper.js:34
|
|
1685
1665
|
msgid "You are not authorized to view the page. "
|
|
1686
|
-
msgstr "
|
|
1666
|
+
msgstr ""
|
|
1687
1667
|
|
|
1688
1668
|
#: ../webpack/helpers/permissionsHelper.js:37
|
|
1689
1669
|
msgid "Request the following permissions from administrator: %s."
|
|
1690
|
-
msgstr "
|
|
1670
|
+
msgstr ""
|
|
1691
1671
|
|
|
1692
1672
|
#: ../webpack/routes/OvalContents/OvalContentsIndex/OvalContentsIndex.js:40
|
|
1693
1673
|
msgid "No OVAL Contents found."
|
|
1694
1674
|
msgstr "Aucun contenu OVAL trouvé."
|
|
1695
1675
|
|
|
1696
|
-
#: ../webpack/routes/OvalContents/OvalContentsIndex/OvalContentsIndex.js:42
|
|
1697
|
-
#: ../webpack/routes/OvalContents/OvalContentsIndex/OvalContentsTable.js:42
|
|
1676
|
+
#: ../webpack/routes/OvalContents/OvalContentsIndex/OvalContentsIndex.js:42 ../webpack/routes/OvalContents/OvalContentsIndex/OvalContentsTable.js:42
|
|
1698
1677
|
msgid "Delete OVAL Content"
|
|
1699
|
-
msgstr "
|
|
1678
|
+
msgstr ""
|
|
1700
1679
|
|
|
1701
1680
|
#: ../webpack/routes/OvalContents/OvalContentsIndex/OvalContentsIndex.js:49
|
|
1702
1681
|
msgid "OVAL Content successfully deleted."
|
|
1703
|
-
msgstr "
|
|
1682
|
+
msgstr ""
|
|
1704
1683
|
|
|
1705
|
-
#: ../webpack/routes/OvalContents/OvalContentsIndex/OvalContentsIndex.js:51
|
|
1706
|
-
#: ../webpack/routes/OvalContents/OvalContentsShow/OvalContentsShow.js:39
|
|
1707
|
-
#: ../webpack/routes/OvalPolicies/OvalPoliciesIndex/OvalPoliciesTable.js:19
|
|
1708
|
-
#: ../webpack/routes/OvalPolicies/OvalPoliciesNew/NewOvalPolicyForm.js:74
|
|
1684
|
+
#: ../webpack/routes/OvalContents/OvalContentsIndex/OvalContentsIndex.js:51 ../webpack/routes/OvalContents/OvalContentsShow/OvalContentsShow.js:39 ../webpack/routes/OvalPolicies/OvalPoliciesIndex/OvalPoliciesTable.js:19 ../webpack/routes/OvalPolicies/OvalPoliciesNew/NewOvalPolicyForm.js:74
|
|
1709
1685
|
msgid "OVAL Content"
|
|
1710
1686
|
msgstr "Contenu OVAL"
|
|
1711
1687
|
|
|
1712
|
-
#: ../webpack/routes/OvalContents/OvalContentsIndex/OvalContentsIndex.js:56
|
|
1713
|
-
#: ../webpack/routes/OvalContents/OvalContentsIndex/OvalContentsTable.js:57
|
|
1688
|
+
#: ../webpack/routes/OvalContents/OvalContentsIndex/OvalContentsIndex.js:56 ../webpack/routes/OvalContents/OvalContentsIndex/OvalContentsTable.js:57
|
|
1714
1689
|
msgid "Create OVAL Content"
|
|
1715
|
-
msgstr "
|
|
1690
|
+
msgstr ""
|
|
1716
1691
|
|
|
1717
|
-
#: ../webpack/routes/OvalContents/OvalContentsIndex/OvalContentsTable.js:20
|
|
1718
|
-
#: ../webpack/routes/OvalContents/OvalContentsNew/OvalContentsNew.js:103
|
|
1719
|
-
#: ../webpack/routes/OvalContents/OvalContentsShow/OvalContentsShow.js:21
|
|
1692
|
+
#: ../webpack/routes/OvalContents/OvalContentsIndex/OvalContentsTable.js:20 ../webpack/routes/OvalContents/OvalContentsNew/OvalContentsNew.js:103 ../webpack/routes/OvalContents/OvalContentsShow/OvalContentsShow.js:21
|
|
1720
1693
|
msgid "URL"
|
|
1721
|
-
msgstr "
|
|
1694
|
+
msgstr ""
|
|
1722
1695
|
|
|
1723
1696
|
#: ../webpack/routes/OvalContents/OvalContentsIndex/OvalContentsTable.js:21
|
|
1724
1697
|
msgid "Original File Name"
|
|
1725
|
-
msgstr "
|
|
1698
|
+
msgstr ""
|
|
1726
1699
|
|
|
1727
1700
|
#: ../webpack/routes/OvalContents/OvalContentsIndex/OvalContentsTable.js:69
|
|
1728
1701
|
msgid "OVAL Contents table"
|
|
@@ -1730,59 +1703,55 @@ msgstr "OVAL Table des matières"
|
|
|
1730
1703
|
|
|
1731
1704
|
#: ../webpack/routes/OvalContents/OvalContentsNew/OvalContentsNew.js:39
|
|
1732
1705
|
msgid "New OVAL Content"
|
|
1733
|
-
msgstr "
|
|
1706
|
+
msgstr ""
|
|
1734
1707
|
|
|
1735
1708
|
#: ../webpack/routes/OvalContents/OvalContentsNew/OvalContentsNew.js:62
|
|
1736
1709
|
msgid "OVAL Content Source"
|
|
1737
|
-
msgstr "
|
|
1710
|
+
msgstr ""
|
|
1738
1711
|
|
|
1739
1712
|
#: ../webpack/routes/OvalContents/OvalContentsNew/OvalContentsNew.js:74
|
|
1740
1713
|
msgid "OVAL Content from URL"
|
|
1741
|
-
msgstr "
|
|
1714
|
+
msgstr ""
|
|
1742
1715
|
|
|
1743
1716
|
#: ../webpack/routes/OvalContents/OvalContentsNew/OvalContentsNew.js:88
|
|
1744
1717
|
msgid "OVAL Content from file"
|
|
1745
|
-
msgstr "
|
|
1718
|
+
msgstr ""
|
|
1746
1719
|
|
|
1747
|
-
#: ../webpack/routes/OvalContents/OvalContentsNew/OvalContentsNew.js:92
|
|
1748
|
-
#: ../webpack/routes/OvalContents/OvalContentsShow/OvalContentsShow.js:28
|
|
1720
|
+
#: ../webpack/routes/OvalContents/OvalContentsNew/OvalContentsNew.js:92 ../webpack/routes/OvalContents/OvalContentsShow/OvalContentsShow.js:28
|
|
1749
1721
|
msgid "File"
|
|
1750
|
-
msgstr "
|
|
1722
|
+
msgstr ""
|
|
1751
1723
|
|
|
1752
1724
|
#: ../webpack/routes/OvalContents/OvalContentsNew/OvalContentsNewHelper.js:38
|
|
1753
1725
|
msgid "OVAL Content %s successfully created"
|
|
1754
|
-
msgstr "
|
|
1726
|
+
msgstr ""
|
|
1755
1727
|
|
|
1756
1728
|
#: ../webpack/routes/OvalContents/OvalContentsNew/OvalContentsNewHelper.js:52
|
|
1757
1729
|
msgid "Unknown error when submitting data, please try again later."
|
|
1758
|
-
msgstr "
|
|
1730
|
+
msgstr ""
|
|
1759
1731
|
|
|
1760
|
-
#: ../webpack/routes/OvalContents/OvalContentsShow/index.js:26
|
|
1761
|
-
#: ../webpack/routes/OvalPolicies/OvalPoliciesNew/OvalPoliciesNew.js:22
|
|
1732
|
+
#: ../webpack/routes/OvalContents/OvalContentsShow/index.js:26 ../webpack/routes/OvalPolicies/OvalPoliciesNew/OvalPoliciesNew.js:22
|
|
1762
1733
|
msgid "No OVAL Content found"
|
|
1763
|
-
msgstr "
|
|
1734
|
+
msgstr ""
|
|
1764
1735
|
|
|
1765
1736
|
#: ../webpack/routes/OvalPolicies/OvalPoliciesIndex/OvalPoliciesIndex.js:39
|
|
1766
1737
|
msgid "No OVAL Policies found"
|
|
1767
1738
|
msgstr "Aucune stratégie OVAL trouvée"
|
|
1768
1739
|
|
|
1769
|
-
#: ../webpack/routes/OvalPolicies/OvalPoliciesIndex/OvalPoliciesIndex.js:41
|
|
1770
|
-
#: ../webpack/routes/OvalPolicies/OvalPoliciesIndex/OvalPoliciesTable.js:33
|
|
1740
|
+
#: ../webpack/routes/OvalPolicies/OvalPoliciesIndex/OvalPoliciesIndex.js:41 ../webpack/routes/OvalPolicies/OvalPoliciesIndex/OvalPoliciesTable.js:33
|
|
1771
1741
|
msgid "Delete OVAL Policy"
|
|
1772
|
-
msgstr "
|
|
1742
|
+
msgstr ""
|
|
1773
1743
|
|
|
1774
1744
|
#: ../webpack/routes/OvalPolicies/OvalPoliciesIndex/OvalPoliciesIndex.js:48
|
|
1775
1745
|
msgid "OVAL policy was successfully deleted."
|
|
1776
|
-
msgstr "
|
|
1746
|
+
msgstr ""
|
|
1777
1747
|
|
|
1778
1748
|
#: ../webpack/routes/OvalPolicies/OvalPoliciesIndex/OvalPoliciesIndex.js:50
|
|
1779
1749
|
msgid "OVAL policy"
|
|
1780
|
-
msgstr "
|
|
1750
|
+
msgstr ""
|
|
1781
1751
|
|
|
1782
|
-
#: ../webpack/routes/OvalPolicies/OvalPoliciesIndex/OvalPoliciesTable.js:48
|
|
1783
|
-
#: ../webpack/routes/OvalPolicies/OvalPoliciesNew/OvalPoliciesNew.js:17
|
|
1752
|
+
#: ../webpack/routes/OvalPolicies/OvalPoliciesIndex/OvalPoliciesTable.js:48 ../webpack/routes/OvalPolicies/OvalPoliciesNew/OvalPoliciesNew.js:17
|
|
1784
1753
|
msgid "Create OVAL Policy"
|
|
1785
|
-
msgstr "
|
|
1754
|
+
msgstr ""
|
|
1786
1755
|
|
|
1787
1756
|
#: ../webpack/routes/OvalPolicies/OvalPoliciesIndex/OvalPoliciesTable.js:60
|
|
1788
1757
|
msgid "OVAL Policies Table"
|
|
@@ -1790,33 +1759,31 @@ msgstr "Liste des stratégies OVAL"
|
|
|
1790
1759
|
|
|
1791
1760
|
#: ../webpack/routes/OvalPolicies/OvalPoliciesNew/HostgroupSelect.js:107
|
|
1792
1761
|
msgid "Type a hostgroup name..."
|
|
1793
|
-
msgstr "
|
|
1762
|
+
msgstr ""
|
|
1794
1763
|
|
|
1795
1764
|
#: ../webpack/routes/OvalPolicies/OvalPoliciesNew/NewOvalPolicyForm.js:76
|
|
1796
1765
|
msgid "Choose OVAL Content"
|
|
1797
|
-
msgstr "
|
|
1766
|
+
msgstr ""
|
|
1798
1767
|
|
|
1799
1768
|
#: ../webpack/routes/OvalPolicies/OvalPoliciesNew/NewOvalPolicyFormHelpers.js:8
|
|
1800
1769
|
msgid "can't be blank"
|
|
1801
|
-
msgstr "
|
|
1770
|
+
msgstr ""
|
|
1802
1771
|
|
|
1803
1772
|
#: ../webpack/routes/OvalPolicies/OvalPoliciesNew/NewOvalPolicyFormHelpers.js:15
|
|
1804
1773
|
msgid "is not a valid cronline"
|
|
1805
|
-
msgstr "
|
|
1774
|
+
msgstr ""
|
|
1806
1775
|
|
|
1807
1776
|
#: ../webpack/routes/OvalPolicies/OvalPoliciesNew/NewOvalPolicyFormHelpers.js:54
|
|
1808
1777
|
msgid "OVAL Policy succesfully created."
|
|
1809
|
-
msgstr "
|
|
1778
|
+
msgstr ""
|
|
1810
1779
|
|
|
1811
1780
|
#: ../webpack/routes/OvalPolicies/OvalPoliciesNew/NewOvalPolicyFormHelpers.js:86
|
|
1812
1781
|
msgid "Failed to create OVAL Policy: %s"
|
|
1813
|
-
msgstr "
|
|
1782
|
+
msgstr ""
|
|
1814
1783
|
|
|
1815
1784
|
#: ../webpack/routes/OvalPolicies/OvalPoliciesNew/OvalPoliciesNew.js:23
|
|
1816
|
-
msgid ""
|
|
1817
|
-
|
|
1818
|
-
"proceeding."
|
|
1819
|
-
msgstr "Le contenu OVAL est requis pour créer la stratégie OVAL. Veuillez en créer un avant de continuer."
|
|
1785
|
+
msgid "OVAL Content is required to create OVAL Policy. Please create one before proceeding."
|
|
1786
|
+
msgstr ""
|
|
1820
1787
|
|
|
1821
1788
|
#: ../webpack/routes/OvalPolicies/OvalPoliciesShow/CvesTab.js:38
|
|
1822
1789
|
msgid "No CVEs found."
|
|
@@ -1840,15 +1807,15 @@ msgstr "Tableau des CVEs pour la stratégie OVAL"
|
|
|
1840
1807
|
|
|
1841
1808
|
#: ../webpack/routes/OvalPolicies/OvalPoliciesShow/DetailsTab.js:47
|
|
1842
1809
|
msgid "Period"
|
|
1843
|
-
msgstr "
|
|
1810
|
+
msgstr ""
|
|
1844
1811
|
|
|
1845
1812
|
#: ../webpack/routes/OvalPolicies/OvalPoliciesShow/HostgroupsTab.js:38
|
|
1846
1813
|
msgid "No Hostgroups found."
|
|
1847
|
-
msgstr "
|
|
1814
|
+
msgstr ""
|
|
1848
1815
|
|
|
1849
1816
|
#: ../webpack/routes/OvalPolicies/OvalPoliciesShow/HostgroupsTable.js:26
|
|
1850
1817
|
msgid "Table of hostgroups for OVAL policy"
|
|
1851
|
-
msgstr "
|
|
1818
|
+
msgstr ""
|
|
1852
1819
|
|
|
1853
1820
|
#: ../webpack/routes/OvalPolicies/OvalPoliciesShow/OvalPoliciesShow.js:46
|
|
1854
1821
|
msgid "Scan All Hostgroups"
|
|
@@ -1856,35 +1823,35 @@ msgstr "Analyser tous les groupes d'hôtes"
|
|
|
1856
1823
|
|
|
1857
1824
|
#: ../webpack/routes/OvalPolicies/OvalPoliciesShow/OvalPoliciesShow.js:53
|
|
1858
1825
|
msgid "Details"
|
|
1859
|
-
msgstr "
|
|
1826
|
+
msgstr ""
|
|
1860
1827
|
|
|
1861
1828
|
#: ../webpack/routes/OvalPolicies/OvalPoliciesShow/OvalPoliciesShow.js:59
|
|
1862
1829
|
msgid "CVEs"
|
|
1863
|
-
msgstr "
|
|
1830
|
+
msgstr ""
|
|
1864
1831
|
|
|
1865
1832
|
#: ../webpack/routes/OvalPolicies/OvalPoliciesShow/OvalPoliciesShowHelper.js:9
|
|
1866
1833
|
msgid "Weekly, on %s"
|
|
1867
|
-
msgstr "
|
|
1834
|
+
msgstr ""
|
|
1868
1835
|
|
|
1869
1836
|
#: ../webpack/routes/OvalPolicies/OvalPoliciesShow/OvalPoliciesShowHelper.js:11
|
|
1870
1837
|
msgid "Monthly, day of month: %s"
|
|
1871
|
-
msgstr "
|
|
1838
|
+
msgstr ""
|
|
1872
1839
|
|
|
1873
1840
|
#: ../webpack/routes/OvalPolicies/OvalPoliciesShow/OvalPoliciesShowHelper.js:13
|
|
1874
1841
|
msgid "Custom cron: %s"
|
|
1875
|
-
msgstr "
|
|
1842
|
+
msgstr ""
|
|
1876
1843
|
|
|
1877
1844
|
#: ../webpack/routes/OvalPolicies/OvalPoliciesShow/OvalPoliciesShowHelper.js:15
|
|
1878
1845
|
msgid "Unknown schedule"
|
|
1879
|
-
msgstr "
|
|
1846
|
+
msgstr ""
|
|
1880
1847
|
|
|
1881
1848
|
#: ../webpack/routes/OvalPolicies/OvalPoliciesShow/OvalPoliciesShowHelper.js:77
|
|
1882
1849
|
msgid "OVAL policy was successfully updated."
|
|
1883
|
-
msgstr "
|
|
1850
|
+
msgstr ""
|
|
1884
1851
|
|
|
1885
1852
|
#: ../webpack/routes/OvalPolicies/OvalPoliciesShow/OvalPoliciesShowHelper.js:84
|
|
1886
1853
|
msgid "There was a following error when updating OVAL policy: %s"
|
|
1887
|
-
msgstr "
|
|
1854
|
+
msgstr ""
|
|
1888
1855
|
|
|
1889
1856
|
#: ../webpack/routes/OvalPolicies/OvalPoliciesShow/index.js:28
|
|
1890
1857
|
msgid "No OVAL Policy found"
|