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
|
@@ -17,344 +17,352 @@
|
|
|
17
17
|
"domain": "foreman_openscap",
|
|
18
18
|
"plural_forms": "nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
|
|
19
19
|
},
|
|
20
|
-
"
|
|
21
|
-
"
|
|
22
|
-
],
|
|
23
|
-
"Show an ARF report": [
|
|
24
|
-
"Afficher un rapport ARF"
|
|
25
|
-
],
|
|
26
|
-
"Delete an ARF Report": [
|
|
27
|
-
"Supprimer un rapport ARF"
|
|
28
|
-
],
|
|
29
|
-
"Upload an ARF report": [
|
|
30
|
-
"Télécharger un rapport Arf"
|
|
20
|
+
" for policy %s": [
|
|
21
|
+
" pour la stratégie %s"
|
|
31
22
|
],
|
|
32
|
-
"
|
|
33
|
-
"
|
|
23
|
+
" through %s": [
|
|
24
|
+
" via %s"
|
|
34
25
|
],
|
|
35
|
-
"
|
|
36
|
-
"
|
|
26
|
+
"%s - The following compliance reports are about to be changed": [
|
|
27
|
+
"%s - Les rapports de conformité suivants sont sur le point d'être modifiés"
|
|
37
28
|
],
|
|
38
|
-
"
|
|
39
|
-
"
|
|
29
|
+
"%s compliance report by policy": [
|
|
30
|
+
"Rapport de conformité %s par stratégie",
|
|
31
|
+
"Rapports de conformité %s par stratégie",
|
|
32
|
+
"Rapports de conformité %s par stratégie"
|
|
40
33
|
],
|
|
41
|
-
"
|
|
42
|
-
"
|
|
34
|
+
"%s content": [
|
|
35
|
+
""
|
|
43
36
|
],
|
|
44
|
-
"
|
|
45
|
-
"
|
|
37
|
+
"%s does not exist, skipping.": [
|
|
38
|
+
""
|
|
46
39
|
],
|
|
47
|
-
"
|
|
48
|
-
"
|
|
40
|
+
"%s is a directory, expecting file.": [
|
|
41
|
+
""
|
|
49
42
|
],
|
|
50
|
-
"
|
|
51
|
-
"
|
|
43
|
+
"%s latest report": [
|
|
44
|
+
"%s derniers rapports"
|
|
52
45
|
],
|
|
53
|
-
"
|
|
54
|
-
"
|
|
46
|
+
"%s reports over time": [
|
|
47
|
+
"%s rapports sur la durée"
|
|
55
48
|
],
|
|
56
|
-
"
|
|
57
|
-
"
|
|
49
|
+
"%s spool errors detected, inspect the appropriate file directly on proxy": [
|
|
50
|
+
"%s erreurs de spool détectées, inspectez le fichier approprié directement sur le proxy"
|
|
58
51
|
],
|
|
59
|
-
"
|
|
60
|
-
"
|
|
52
|
+
"%s vulnerabilities found": [
|
|
53
|
+
"%s vulnérabilités trouvées"
|
|
61
54
|
],
|
|
62
|
-
"
|
|
63
|
-
"
|
|
55
|
+
"%s vulnerabilities with available patch found": [
|
|
56
|
+
"%s vulnérabilités avec correctif disponible trouvées"
|
|
64
57
|
],
|
|
65
|
-
"
|
|
66
|
-
"
|
|
58
|
+
"%{type} was selected to deploy policy to clients, but %{type} is not available. Are you missing a plugin?": [
|
|
59
|
+
"%%{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 ?"
|
|
67
60
|
],
|
|
68
|
-
"
|
|
69
|
-
"
|
|
61
|
+
"<b>Foreman</b> OpenSCAP summary": [
|
|
62
|
+
"<b>Foreman</b> OpenSCAP Récapitulatif"
|
|
70
63
|
],
|
|
71
|
-
"
|
|
72
|
-
"
|
|
64
|
+
"A reboot is required after applying remediation.": [
|
|
65
|
+
""
|
|
73
66
|
],
|
|
74
|
-
"
|
|
75
|
-
"
|
|
67
|
+
"A reboot might be required after applying remediation.": [
|
|
68
|
+
""
|
|
76
69
|
],
|
|
77
|
-
"
|
|
78
|
-
"
|
|
70
|
+
"A summary of reports for OpenSCAP policies": [
|
|
71
|
+
"Récapitulatif des rapports de stratégies OpenSCAP"
|
|
79
72
|
],
|
|
80
|
-
"
|
|
81
|
-
"
|
|
73
|
+
"Action with sub plans": [
|
|
74
|
+
"Action avec sous-plans"
|
|
82
75
|
],
|
|
83
|
-
"
|
|
84
|
-
"
|
|
76
|
+
"Actions": [
|
|
77
|
+
"Actions"
|
|
85
78
|
],
|
|
86
|
-
"
|
|
87
|
-
"
|
|
79
|
+
"All messages": [
|
|
80
|
+
"Tous les messages"
|
|
88
81
|
],
|
|
89
|
-
"
|
|
90
|
-
"
|
|
82
|
+
"Ansible role": [
|
|
83
|
+
"Rôle Ansible"
|
|
91
84
|
],
|
|
92
|
-
"
|
|
93
|
-
"
|
|
85
|
+
"Ansible variables": [
|
|
86
|
+
"Variables Ansible"
|
|
94
87
|
],
|
|
95
|
-
"
|
|
96
|
-
"
|
|
88
|
+
"Apply policy to host groups": [
|
|
89
|
+
"Appliquer Groupes hôtes de la stratégie"
|
|
97
90
|
],
|
|
98
|
-
"
|
|
99
|
-
"
|
|
91
|
+
"Apply policy to hosts": [
|
|
92
|
+
"Appliquer la politique aux hôtes"
|
|
100
93
|
],
|
|
101
|
-
"
|
|
102
|
-
"
|
|
94
|
+
"Are required variables for theforeman.foreman_scap_client present?": [
|
|
95
|
+
"Les variables requises pour theforeman.foreman_scap_client sont-elles présentes ?"
|
|
103
96
|
],
|
|
104
|
-
"
|
|
105
|
-
"
|
|
97
|
+
"Are you sure you want to delete %s?": [
|
|
98
|
+
""
|
|
106
99
|
],
|
|
107
|
-
"
|
|
108
|
-
"
|
|
100
|
+
"Array of host IDs": [
|
|
101
|
+
"Ensemble d'ids d'hôtes"
|
|
109
102
|
],
|
|
110
|
-
"
|
|
111
|
-
"
|
|
103
|
+
"Array of hostgroup IDs": [
|
|
104
|
+
"Tableau d'identifiants de groupes d'hôtes"
|
|
112
105
|
],
|
|
113
|
-
"
|
|
114
|
-
"
|
|
106
|
+
"Assign Compliance Policy": [
|
|
107
|
+
"Attribuer un stratégie de conformité"
|
|
115
108
|
],
|
|
116
109
|
"Assign hostgroups to an OVAL Policy": [
|
|
117
110
|
"Assigner des groupes d'hôtes à une stratégie OVAL"
|
|
118
111
|
],
|
|
119
|
-
"Array of hostgroup IDs": [
|
|
120
|
-
"Tableau d'identifiants de groupes d'hôtes"
|
|
121
|
-
],
|
|
122
|
-
"hostgroups": [
|
|
123
|
-
"Groupes d'hôtes"
|
|
124
|
-
],
|
|
125
112
|
"Assign hosts to an OVAL Policy": [
|
|
126
113
|
"Assigner des hôtes à une stratégie OVAL"
|
|
127
114
|
],
|
|
128
|
-
"
|
|
129
|
-
"
|
|
115
|
+
"Assign openscap_proxy to %s before proceeding.": [
|
|
116
|
+
"Assignez openscap_proxy à %s avant de procéder."
|
|
130
117
|
],
|
|
131
|
-
"
|
|
132
|
-
"
|
|
118
|
+
"Back": [
|
|
119
|
+
"Précédent"
|
|
133
120
|
],
|
|
134
|
-
"
|
|
121
|
+
"By default, remediation is applied to the current host. Optionally, remediate any additional hosts that fail the rule.": [
|
|
135
122
|
""
|
|
136
123
|
],
|
|
137
|
-
"
|
|
138
|
-
"
|
|
124
|
+
"CVEs": [
|
|
125
|
+
""
|
|
139
126
|
],
|
|
140
|
-
"
|
|
141
|
-
"
|
|
127
|
+
"Can't find scap-security-guide RPM, are you sure it is installed on your server?": [
|
|
128
|
+
""
|
|
142
129
|
],
|
|
143
|
-
"
|
|
144
|
-
"
|
|
130
|
+
"Cancel": [
|
|
131
|
+
"Annuler"
|
|
145
132
|
],
|
|
146
|
-
"
|
|
147
|
-
"
|
|
133
|
+
"Cannot generate HTML guide, no valid OpenSCAP proxy server found.": [
|
|
134
|
+
"Impossible de générer le guide HTML, aucun serveur proxy OpenSCAP valide trouvé."
|
|
148
135
|
],
|
|
149
|
-
"
|
|
150
|
-
"
|
|
136
|
+
"Cannot generate HTML guide, scap content is missing.": [
|
|
137
|
+
"Impossible de générer le guide HTML, le contenu scap est manquant."
|
|
151
138
|
],
|
|
152
|
-
"
|
|
153
|
-
"
|
|
139
|
+
"Change OpenSCAP Proxy": [
|
|
140
|
+
"Modifier le proxy OpenSCAP"
|
|
154
141
|
],
|
|
155
|
-
"
|
|
156
|
-
"
|
|
142
|
+
"Changed": [
|
|
143
|
+
"Modifié"
|
|
157
144
|
],
|
|
158
|
-
"
|
|
159
|
-
"
|
|
145
|
+
"Changed file does not include existing SCAP content profiles": [
|
|
146
|
+
"Le fichier modifié n'inclut pas les profils de contenu SCAP existants"
|
|
160
147
|
],
|
|
161
|
-
"
|
|
162
|
-
"
|
|
148
|
+
"Changed?": [
|
|
149
|
+
"Modifié ?"
|
|
163
150
|
],
|
|
164
|
-
"
|
|
165
|
-
"
|
|
151
|
+
"Choose OVAL Content": [
|
|
152
|
+
""
|
|
166
153
|
],
|
|
167
|
-
"
|
|
168
|
-
"
|
|
154
|
+
"Choose Tailoring File": [
|
|
155
|
+
"Choisir un fichier de personnalisation"
|
|
169
156
|
],
|
|
170
|
-
"
|
|
171
|
-
"
|
|
157
|
+
"Choose day in month": [
|
|
158
|
+
"Choisir un jour du mois"
|
|
172
159
|
],
|
|
173
|
-
"
|
|
174
|
-
"
|
|
160
|
+
"Choose existing SCAP Content": [
|
|
161
|
+
"Sélectionner un contenu SCAP existant"
|
|
175
162
|
],
|
|
176
|
-
"
|
|
177
|
-
"
|
|
163
|
+
"Choose period": [
|
|
164
|
+
"Sélectionner une période"
|
|
178
165
|
],
|
|
179
|
-
"
|
|
180
|
-
"
|
|
166
|
+
"Choose weekday": [
|
|
167
|
+
"Sélectionner un jour de la semaine"
|
|
181
168
|
],
|
|
182
|
-
"
|
|
183
|
-
"
|
|
169
|
+
"Close": [
|
|
170
|
+
""
|
|
184
171
|
],
|
|
185
|
-
"
|
|
186
|
-
"
|
|
172
|
+
"Compliance": [
|
|
173
|
+
"Conformité"
|
|
187
174
|
],
|
|
188
|
-
"
|
|
189
|
-
"
|
|
175
|
+
"Compliance Policies": [
|
|
176
|
+
"Stratégies de conformité"
|
|
190
177
|
],
|
|
191
|
-
"
|
|
192
|
-
"
|
|
178
|
+
"Compliance Reports": [
|
|
179
|
+
"Rapports de conformité"
|
|
193
180
|
],
|
|
194
|
-
"
|
|
195
|
-
"
|
|
181
|
+
"Compliance Reports Breakdown": [
|
|
182
|
+
"Détails des rapports de conformité"
|
|
196
183
|
],
|
|
197
|
-
"
|
|
198
|
-
"
|
|
184
|
+
"Compliance policy summary": [
|
|
185
|
+
"Synthèse de la stratégie de conformité"
|
|
199
186
|
],
|
|
200
|
-
"
|
|
201
|
-
"
|
|
187
|
+
"Compliance policy: %s": [
|
|
188
|
+
"Stratégie de conformité : %s"
|
|
202
189
|
],
|
|
203
|
-
"
|
|
204
|
-
"
|
|
190
|
+
"Compliant": [
|
|
191
|
+
"Conforme"
|
|
205
192
|
],
|
|
206
|
-
"
|
|
207
|
-
"
|
|
193
|
+
"Compliant hosts": [
|
|
194
|
+
"Hôtes conformes"
|
|
208
195
|
],
|
|
209
|
-
"
|
|
210
|
-
"
|
|
196
|
+
"Compliant with the policy": [
|
|
197
|
+
"Conforme à la stratégie"
|
|
211
198
|
],
|
|
212
|
-
"
|
|
213
|
-
"
|
|
199
|
+
"Confirm": [
|
|
200
|
+
""
|
|
214
201
|
],
|
|
215
|
-
"
|
|
216
|
-
"
|
|
202
|
+
"Content": [
|
|
203
|
+
""
|
|
217
204
|
],
|
|
218
|
-
"
|
|
219
|
-
"
|
|
205
|
+
"Copy to clipboard": [
|
|
206
|
+
""
|
|
220
207
|
],
|
|
221
|
-
"
|
|
222
|
-
"
|
|
208
|
+
"Could not find host identified by: %s": [
|
|
209
|
+
"Impossible de trouver l'hôte identifié par : %s"
|
|
223
210
|
],
|
|
224
|
-
"
|
|
225
|
-
"
|
|
211
|
+
"Could not update Ansible Variables with override: true": [
|
|
212
|
+
"Impossible de mettre à jour les variables Ansible en remplaçant par : true"
|
|
213
|
+
],
|
|
214
|
+
"Could not validate %s. Please make sure you have appropriate proxy version to use this functionality": [
|
|
215
|
+
"Impossible de valider %s. Veuillez vérifier que vous disposez de la bonne version du proxy pour utiliser cette fonctionnalité"
|
|
216
|
+
],
|
|
217
|
+
"Could not validate %{file_type}. Error %{error}": [
|
|
218
|
+
"Impossible de valider %{file_type}. Erreur %%{error}"
|
|
219
|
+
],
|
|
220
|
+
"Create OVAL Content": [
|
|
221
|
+
""
|
|
222
|
+
],
|
|
223
|
+
"Create OVAL Policy": [
|
|
224
|
+
""
|
|
225
|
+
],
|
|
226
|
+
"Create OVAL content": [
|
|
227
|
+
"Créer du contenu OVAL"
|
|
226
228
|
],
|
|
227
229
|
"Create SCAP content": [
|
|
228
230
|
"Créer un contenu SCAP"
|
|
229
231
|
],
|
|
230
|
-
"
|
|
231
|
-
"
|
|
232
|
+
"Create a Policy": [
|
|
233
|
+
"Créer une stratégie"
|
|
232
234
|
],
|
|
233
|
-
"
|
|
234
|
-
"
|
|
235
|
+
"Create a Tailoring file": [
|
|
236
|
+
"Créer un fichier de personnalisation"
|
|
235
237
|
],
|
|
236
|
-
"
|
|
237
|
-
"
|
|
238
|
+
"Create an OVAL Policy": [
|
|
239
|
+
"Créer une stratégie OVAL"
|
|
238
240
|
],
|
|
239
|
-
"
|
|
240
|
-
"
|
|
241
|
+
"Created at": [
|
|
242
|
+
""
|
|
241
243
|
],
|
|
242
|
-
"
|
|
243
|
-
"
|
|
244
|
+
"Custom cron: %s": [
|
|
245
|
+
""
|
|
244
246
|
],
|
|
245
|
-
"
|
|
246
|
-
"
|
|
247
|
+
"Dashboard": [
|
|
248
|
+
"Tableau de bord"
|
|
247
249
|
],
|
|
248
|
-
"
|
|
249
|
-
"
|
|
250
|
+
"DataStream Tailoring file": [
|
|
251
|
+
"Fichier de personnalisation DataStream"
|
|
250
252
|
],
|
|
251
|
-
"
|
|
252
|
-
"
|
|
253
|
+
"Date": [
|
|
254
|
+
"Date"
|
|
253
255
|
],
|
|
254
|
-
"
|
|
255
|
-
"
|
|
256
|
+
"Default XCCDF profile": [
|
|
257
|
+
"Profil XCCDF par défaut"
|
|
256
258
|
],
|
|
257
|
-
"
|
|
258
|
-
"
|
|
259
|
+
"Delete": [
|
|
260
|
+
"Supprimer"
|
|
259
261
|
],
|
|
260
|
-
"
|
|
261
|
-
"
|
|
262
|
+
"Delete OVAL Content": [
|
|
263
|
+
""
|
|
262
264
|
],
|
|
263
|
-
"
|
|
264
|
-
"
|
|
265
|
+
"Delete OVAL Policy": [
|
|
266
|
+
""
|
|
265
267
|
],
|
|
266
|
-
"
|
|
267
|
-
"
|
|
268
|
+
"Delete a Policy": [
|
|
269
|
+
"Supprimer une Stratégie"
|
|
268
270
|
],
|
|
269
|
-
"
|
|
270
|
-
"
|
|
271
|
+
"Delete an ARF Report": [
|
|
272
|
+
"Supprimer un rapport ARF"
|
|
271
273
|
],
|
|
272
|
-
"
|
|
273
|
-
"
|
|
274
|
+
"Delete an OVAL Policy": [
|
|
275
|
+
"Supprimer une stratégie OVAL"
|
|
274
276
|
],
|
|
275
|
-
"
|
|
276
|
-
"
|
|
277
|
+
"Delete compliance policy %s with all of its reports?": [
|
|
278
|
+
"Souhaitez-vous supprimer la stratégie de conformité %s avec tous ses rapports ?"
|
|
277
279
|
],
|
|
278
|
-
"
|
|
279
|
-
"
|
|
280
|
+
"Delete compliance report for %s?": [
|
|
281
|
+
"Supprimer les rapports de conformité pour %s ?"
|
|
280
282
|
],
|
|
281
|
-
"
|
|
282
|
-
"
|
|
283
|
+
"Delete reports": [
|
|
284
|
+
"Supprimer les rapports"
|
|
283
285
|
],
|
|
284
|
-
"
|
|
285
|
-
"
|
|
286
|
+
"Delete scap content %s?": [
|
|
287
|
+
"Supprimer contenu scap %s ?"
|
|
286
288
|
],
|
|
287
|
-
"
|
|
288
|
-
"
|
|
289
|
+
"Delete tailoring file %s?": [
|
|
290
|
+
"Souhaitez-vous supprimer le fichier de personnalisation %s ?"
|
|
289
291
|
],
|
|
290
|
-
"
|
|
291
|
-
"
|
|
292
|
+
"Deleted policy": [
|
|
293
|
+
"Stratégie supprimée"
|
|
292
294
|
],
|
|
293
|
-
"
|
|
294
|
-
"
|
|
295
|
+
"Deletes a Tailoring file": [
|
|
296
|
+
"Supprime un fichier de personnalisation"
|
|
295
297
|
],
|
|
296
|
-
"
|
|
297
|
-
"
|
|
298
|
+
"Deletes an OVAL content": [
|
|
299
|
+
"Supprime un contenu OVAL"
|
|
298
300
|
],
|
|
299
|
-
"
|
|
300
|
-
"
|
|
301
|
+
"Deletes an SCAP content": [
|
|
302
|
+
"Supprime un contenu SCAP"
|
|
301
303
|
],
|
|
302
|
-
"
|
|
303
|
-
"
|
|
304
|
+
"Deployment Options": [
|
|
305
|
+
"Options de déploiement"
|
|
304
306
|
],
|
|
305
|
-
"
|
|
306
|
-
"
|
|
307
|
+
"Description": [
|
|
308
|
+
"Description"
|
|
307
309
|
],
|
|
308
|
-
"
|
|
310
|
+
"Details": [
|
|
309
311
|
""
|
|
310
312
|
],
|
|
311
|
-
"
|
|
312
|
-
"
|
|
313
|
+
"Details for Compliance Policy %s": [
|
|
314
|
+
"Détails de la stratégie de conformité {missing_vars}"
|
|
313
315
|
],
|
|
314
|
-
"
|
|
315
|
-
"
|
|
316
|
+
"Directory to upload when using \\\"directory\\\" upload type": [
|
|
317
|
+
"Répertoire à télécharger lors de l'utilisation du type de téléchargement \\\"répertoire\\\""
|
|
316
318
|
],
|
|
317
|
-
"
|
|
318
|
-
"
|
|
319
|
+
"Do not implement any of the recommended remedial actions or scripts without first testing them in a non-production environment.": [
|
|
320
|
+
""
|
|
319
321
|
],
|
|
320
|
-
"
|
|
321
|
-
"
|
|
322
|
+
"Documentation": [
|
|
323
|
+
"Documentation"
|
|
322
324
|
],
|
|
323
|
-
"
|
|
324
|
-
"
|
|
325
|
+
"Done": [
|
|
326
|
+
""
|
|
325
327
|
],
|
|
326
|
-
"
|
|
327
|
-
"
|
|
328
|
+
"Download": [
|
|
329
|
+
"Télécharger"
|
|
328
330
|
],
|
|
329
|
-
"
|
|
330
|
-
""
|
|
331
|
+
"Download ARF report in HTML": [
|
|
332
|
+
"Télécharger un rapport ARF dans HTML"
|
|
331
333
|
],
|
|
332
|
-
"
|
|
333
|
-
"
|
|
334
|
+
"Download HTML": [
|
|
335
|
+
"Télécharger HTML"
|
|
334
336
|
],
|
|
335
|
-
"
|
|
336
|
-
"
|
|
337
|
+
"Download XML in bzip": [
|
|
338
|
+
"Télécharger le XML en bzip"
|
|
337
339
|
],
|
|
338
|
-
"
|
|
339
|
-
"
|
|
340
|
+
"Download a Tailoring file as XML": [
|
|
341
|
+
"Télécharger un fichier de personnalisation au format XML"
|
|
340
342
|
],
|
|
341
|
-
"
|
|
342
|
-
"
|
|
343
|
+
"Download an SCAP content as XML": [
|
|
344
|
+
"Télécharger un contenu SCAP au format XML"
|
|
343
345
|
],
|
|
344
|
-
"
|
|
345
|
-
"
|
|
346
|
+
"Download bzipped ARF report": [
|
|
347
|
+
"Télécharger un rapport ARF au format bzip"
|
|
346
348
|
],
|
|
347
|
-
"
|
|
348
|
-
"
|
|
349
|
+
"Edit %s": [
|
|
350
|
+
"Modifier %s"
|
|
349
351
|
],
|
|
350
|
-
"
|
|
351
|
-
"
|
|
352
|
+
"Effective Profile": [
|
|
353
|
+
"Profil effectif"
|
|
352
354
|
],
|
|
353
|
-
"
|
|
354
|
-
"
|
|
355
|
+
"Error!": [
|
|
356
|
+
"Erreur"
|
|
355
357
|
],
|
|
356
|
-
"
|
|
357
|
-
"
|
|
358
|
+
"Every puppet run ensures the foreman_scap_client is configured according to the policy.": [
|
|
359
|
+
""
|
|
360
|
+
],
|
|
361
|
+
"Expected an array of files to upload, got: %s.": [
|
|
362
|
+
""
|
|
363
|
+
],
|
|
364
|
+
"Failed": [
|
|
365
|
+
"Échec"
|
|
358
366
|
],
|
|
359
367
|
"Failed and Othered": [
|
|
360
368
|
"Échec ou Autre"
|
|
@@ -362,107 +370,134 @@
|
|
|
362
370
|
"Failed only": [
|
|
363
371
|
"Échec uniquement"
|
|
364
372
|
],
|
|
365
|
-
"
|
|
366
|
-
"
|
|
367
|
-
],
|
|
368
|
-
"Delete reports": [
|
|
369
|
-
"Supprimer les rapports"
|
|
370
|
-
],
|
|
371
|
-
"Select Action": [
|
|
372
|
-
"Choisir l'action"
|
|
373
|
-
],
|
|
374
|
-
"%s - The following compliance reports are about to be changed": [
|
|
375
|
-
"%s - Les rapports de conformité suivants sont sur le point d'être modifiés"
|
|
376
|
-
],
|
|
377
|
-
"No proxy found!": [
|
|
378
|
-
"Aucun proxy trouvé !"
|
|
373
|
+
"Failed saving %s:": [
|
|
374
|
+
""
|
|
379
375
|
],
|
|
380
|
-
"
|
|
381
|
-
"
|
|
376
|
+
"Failed to create OVAL Policy: %s": [
|
|
377
|
+
""
|
|
382
378
|
],
|
|
383
|
-
"
|
|
384
|
-
"
|
|
379
|
+
"Failed to delete %s compliance reports": [
|
|
380
|
+
"Impossible de supprimer les rapports de conformité %s"
|
|
385
381
|
],
|
|
386
|
-
"
|
|
387
|
-
"
|
|
382
|
+
"Failed to delete ARF Report for host %{host_name} reported at %{reported_at}": [
|
|
383
|
+
"Échec de la suppression du rapport ARF pour l'hôte %%s signalé à %{reported_at}"
|
|
388
384
|
],
|
|
389
|
-
"
|
|
390
|
-
"
|
|
385
|
+
"Failed to downloaded ARF report as bzip: %s": [
|
|
386
|
+
"N'a pas pu télécharger le rapport ARF sous format bzip : %s"
|
|
391
387
|
],
|
|
392
|
-
"
|
|
393
|
-
"
|
|
388
|
+
"Failed to downloaded ARF report in HTML: %s": [
|
|
389
|
+
"Échec du téléchargement du rapport ARF dans HTML : %s"
|
|
394
390
|
],
|
|
395
|
-
"
|
|
396
|
-
"
|
|
391
|
+
"Failed to fetch content file from %s": [
|
|
392
|
+
""
|
|
397
393
|
],
|
|
398
|
-
"
|
|
399
|
-
"
|
|
394
|
+
"Failed to fetch spool status from proxy": [
|
|
395
|
+
"Impossible d'extraire le statut du spool du proxy"
|
|
400
396
|
],
|
|
401
|
-
"
|
|
402
|
-
"
|
|
397
|
+
"Failed to save when overriding parameters for %{config_tool}, cause: %{errors}": [
|
|
398
|
+
"Echec de la sauvegarde lors de l'écrasement des paramètres pour %{config_tool}, cause : %%{errors}"
|
|
403
399
|
],
|
|
404
|
-
"
|
|
405
|
-
"
|
|
400
|
+
"Failed to upload Arf Report, OpenSCAP proxy name or url not found in params when uploading for %s and host is missing openscap_proxy": [
|
|
401
|
+
"É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"
|
|
406
402
|
],
|
|
407
403
|
"Failed|F": [
|
|
408
404
|
"Echec|E"
|
|
409
405
|
],
|
|
410
|
-
"
|
|
411
|
-
"
|
|
406
|
+
"File": [
|
|
407
|
+
""
|
|
412
408
|
],
|
|
413
|
-
"
|
|
414
|
-
"
|
|
409
|
+
"File Upload": [
|
|
410
|
+
"Téléchargement du ficher"
|
|
415
411
|
],
|
|
416
|
-
"
|
|
417
|
-
"
|
|
412
|
+
"File name": [
|
|
413
|
+
""
|
|
418
414
|
],
|
|
419
|
-
"
|
|
420
|
-
"
|
|
415
|
+
"File paths to upload when using \\\"files\\\" upload type": [
|
|
416
|
+
"Chemins d'accès aux fichiers à télécharger lors de l'utilisation du type de téléchargement \\\"files\\\""
|
|
421
417
|
],
|
|
422
|
-
"
|
|
423
|
-
"
|
|
418
|
+
"Full Report": [
|
|
419
|
+
"Rapport complet"
|
|
424
420
|
],
|
|
425
|
-
"
|
|
426
|
-
"
|
|
421
|
+
"General": [
|
|
422
|
+
"Général"
|
|
423
|
+
],
|
|
424
|
+
"Has Errata?": [
|
|
425
|
+
"Il y a des errata ?"
|
|
426
|
+
],
|
|
427
|
+
"Host": [
|
|
428
|
+
"Hôte"
|
|
429
|
+
],
|
|
430
|
+
"Host Breakdown Chart": [
|
|
431
|
+
"Diagramme des divers hôtes"
|
|
432
|
+
],
|
|
433
|
+
"Host Groups": [
|
|
434
|
+
"Groupe d'Hôtes"
|
|
427
435
|
],
|
|
428
436
|
"Host compliance details": [
|
|
429
437
|
"Détails de conformité de l'hôte"
|
|
430
438
|
],
|
|
439
|
+
"Host details": [
|
|
440
|
+
"Détails de l'Hôte"
|
|
441
|
+
],
|
|
442
|
+
"Host does not exist anymore": [
|
|
443
|
+
"L'hôte n'existe plus"
|
|
444
|
+
],
|
|
445
|
+
"Host is assigned to policy": [
|
|
446
|
+
"L'hôte est affecté à la stratégie"
|
|
447
|
+
],
|
|
431
448
|
"Host is deleted": [
|
|
432
449
|
"L'hôte est supprimé"
|
|
433
450
|
],
|
|
434
|
-
"
|
|
435
|
-
"
|
|
451
|
+
"Host is not assigned to policy but reports were found. You may want to delete the reports or assign the policy again.": [
|
|
452
|
+
"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."
|
|
436
453
|
],
|
|
437
|
-
"
|
|
438
|
-
"
|
|
454
|
+
"Hostgroups": [
|
|
455
|
+
"Groupes d'hôtes"
|
|
439
456
|
],
|
|
440
|
-
"
|
|
441
|
-
"
|
|
457
|
+
"Hostname": [
|
|
458
|
+
"Nom d'hôte"
|
|
442
459
|
],
|
|
443
|
-
"
|
|
444
|
-
"
|
|
460
|
+
"Hosts Breakdown": [
|
|
461
|
+
"Détails des hôtes"
|
|
445
462
|
],
|
|
446
|
-
"
|
|
447
|
-
"
|
|
463
|
+
"Hosts Count": [
|
|
464
|
+
"Nombre d'hôtes"
|
|
448
465
|
],
|
|
449
|
-
"
|
|
450
|
-
"
|
|
466
|
+
"Hosts failing this rule": [
|
|
467
|
+
"Hôtes échouant à cette règle"
|
|
451
468
|
],
|
|
452
|
-
"
|
|
453
|
-
"
|
|
469
|
+
"Hosts no longer assigned: %s": [
|
|
470
|
+
"Hôtes qui ne sont plus attribués : %s"
|
|
454
471
|
],
|
|
455
|
-
"
|
|
456
|
-
"
|
|
472
|
+
"Hosts othering this rule": [
|
|
473
|
+
"Hôtes modifiant cette règle"
|
|
457
474
|
],
|
|
458
|
-
"
|
|
459
|
-
"
|
|
475
|
+
"Hosts passing this rule": [
|
|
476
|
+
"Hôtes passant cette règle"
|
|
460
477
|
],
|
|
461
|
-
"
|
|
462
|
-
"
|
|
478
|
+
"How the policy should be deployed": [
|
|
479
|
+
"Comment la stratégie doit-elle être déployée"
|
|
463
480
|
],
|
|
464
|
-
"
|
|
465
|
-
"
|
|
481
|
+
"ID of OpenSCAP Proxy": [
|
|
482
|
+
"ID du proxy OpenSCAP"
|
|
483
|
+
],
|
|
484
|
+
"Import Puppet classes": [
|
|
485
|
+
"Importer des classes Puppet"
|
|
486
|
+
],
|
|
487
|
+
"Import facts": [
|
|
488
|
+
"Importer des faits"
|
|
489
|
+
],
|
|
490
|
+
"In Foreman, a compliance policy checklist is defined via %s.": [
|
|
491
|
+
"Dans Foreman, une liste de stratégies de conformité est définie via %s."
|
|
492
|
+
],
|
|
493
|
+
"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 via %s": [
|
|
494
|
+
"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 via %s"
|
|
495
|
+
],
|
|
496
|
+
"In Foreman, tailoring_files represent the custom modifications to default XCCDF profiles and they can be applied to hosts\\n via %s": [
|
|
497
|
+
"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 via %s"
|
|
498
|
+
],
|
|
499
|
+
"Incompliant": [
|
|
500
|
+
"Non conforme"
|
|
466
501
|
],
|
|
467
502
|
"Incompliant hosts": [
|
|
468
503
|
"Hôtes non conformes"
|
|
@@ -470,837 +505,895 @@
|
|
|
470
505
|
"Inconclusive": [
|
|
471
506
|
"Non conclusif"
|
|
472
507
|
],
|
|
473
|
-
"
|
|
474
|
-
"
|
|
508
|
+
"Inconclusive results": [
|
|
509
|
+
"Résultats peu probants"
|
|
475
510
|
],
|
|
476
|
-
"
|
|
477
|
-
"
|
|
511
|
+
"Is %s param set to be overriden?": [
|
|
512
|
+
"Le paramètre {missing_vars} est-il réglé pour être remplacé ?"
|
|
478
513
|
],
|
|
479
|
-
"
|
|
480
|
-
"
|
|
514
|
+
"Is foreman_ansible present?": [
|
|
515
|
+
"Est-ce que foreman_ansible est présent ?"
|
|
481
516
|
],
|
|
482
|
-
"
|
|
483
|
-
"
|
|
517
|
+
"Is theforeman.foreman_scap_client present?": [
|
|
518
|
+
"Est-ce que theforeman.foreman_scap_client est présent ?"
|
|
484
519
|
],
|
|
485
|
-
"
|
|
486
|
-
"
|
|
520
|
+
"It may sometimes be required to adjust the security policy to your specific needs. ": [
|
|
521
|
+
"Il est parfois nécessaire d'ajuster la stratégie de sécurité en fonction de vos besoins spécifiques."
|
|
487
522
|
],
|
|
488
|
-
"
|
|
489
|
-
"
|
|
523
|
+
"Job details": [
|
|
524
|
+
""
|
|
490
525
|
],
|
|
491
|
-
"
|
|
492
|
-
"
|
|
526
|
+
"Latest Compliance Reports": [
|
|
527
|
+
"Derniers rapports de conformité"
|
|
493
528
|
],
|
|
494
|
-
"
|
|
495
|
-
"
|
|
529
|
+
"Latest reports for policy: %s": [
|
|
530
|
+
"Derniers rapports pour stratégie : %s"
|
|
496
531
|
],
|
|
497
|
-
"
|
|
498
|
-
"
|
|
532
|
+
"List ARF reports": [
|
|
533
|
+
"Afficher tous les rapports ARF"
|
|
499
534
|
],
|
|
500
|
-
"
|
|
501
|
-
"
|
|
535
|
+
"List OVAL Policies": [
|
|
536
|
+
"Liste des stratégies OVAL"
|
|
502
537
|
],
|
|
503
|
-
"
|
|
504
|
-
"
|
|
538
|
+
"List OVAL contents": [
|
|
539
|
+
"Liste des contenus OVAL"
|
|
505
540
|
],
|
|
506
|
-
"
|
|
507
|
-
"
|
|
541
|
+
"List Policies": [
|
|
542
|
+
"Répertorier les stratégies"
|
|
508
543
|
],
|
|
509
|
-
"
|
|
510
|
-
"
|
|
544
|
+
"List SCAP content profiles": [
|
|
545
|
+
"Lister les profils du contenu SCAP"
|
|
511
546
|
],
|
|
512
|
-
"
|
|
513
|
-
"
|
|
547
|
+
"List SCAP contents": [
|
|
548
|
+
"Lister le contenu SCAP"
|
|
514
549
|
],
|
|
515
|
-
"
|
|
516
|
-
"
|
|
550
|
+
"List Tailoring files": [
|
|
551
|
+
"Répertorier les fichiers de personnalisation"
|
|
517
552
|
],
|
|
518
|
-
"
|
|
519
|
-
"
|
|
553
|
+
"Loading...": [
|
|
554
|
+
"Chargement..."
|
|
520
555
|
],
|
|
521
|
-
"
|
|
522
|
-
"
|
|
556
|
+
"Locations": [
|
|
557
|
+
"Emplacements"
|
|
523
558
|
],
|
|
524
|
-
"
|
|
525
|
-
"
|
|
559
|
+
"Manual": [
|
|
560
|
+
""
|
|
526
561
|
],
|
|
527
|
-
"
|
|
528
|
-
"
|
|
562
|
+
"Message": [
|
|
563
|
+
"Message"
|
|
529
564
|
],
|
|
530
|
-
"
|
|
531
|
-
"
|
|
565
|
+
"Method": [
|
|
566
|
+
""
|
|
532
567
|
],
|
|
533
|
-
"
|
|
534
|
-
"
|
|
568
|
+
"Monthly, day of month: %s": [
|
|
569
|
+
""
|
|
535
570
|
],
|
|
536
|
-
"
|
|
537
|
-
"
|
|
571
|
+
"More details": [
|
|
572
|
+
"Plus de détails"
|
|
538
573
|
],
|
|
539
|
-
"
|
|
540
|
-
"
|
|
574
|
+
"Name": [
|
|
575
|
+
"Nom"
|
|
541
576
|
],
|
|
542
|
-
"
|
|
543
|
-
"
|
|
577
|
+
"Never audited": [
|
|
578
|
+
"Jamais audité"
|
|
544
579
|
],
|
|
545
|
-
"
|
|
546
|
-
"
|
|
580
|
+
"New Compliance Policy": [
|
|
581
|
+
"Nouvelle stratégie de conformité"
|
|
547
582
|
],
|
|
548
|
-
"
|
|
549
|
-
"
|
|
583
|
+
"New OVAL Content": [
|
|
584
|
+
""
|
|
550
585
|
],
|
|
551
|
-
"Policy
|
|
552
|
-
"
|
|
586
|
+
"New Policy": [
|
|
587
|
+
"Nouvelle stratégie"
|
|
553
588
|
],
|
|
554
|
-
"
|
|
555
|
-
"
|
|
589
|
+
"New SCAP Content": [
|
|
590
|
+
"Nouveau contenu SCAP"
|
|
556
591
|
],
|
|
557
|
-
"
|
|
558
|
-
"
|
|
592
|
+
"New Tailoring File": [
|
|
593
|
+
"Nouveau fichier de personnalisation"
|
|
559
594
|
],
|
|
560
|
-
"
|
|
561
|
-
"
|
|
595
|
+
"Next": [
|
|
596
|
+
"Suivant"
|
|
562
597
|
],
|
|
563
|
-
"
|
|
564
|
-
"
|
|
598
|
+
"No": [
|
|
599
|
+
"Non"
|
|
565
600
|
],
|
|
566
|
-
"
|
|
567
|
-
"
|
|
601
|
+
"No ARF reports for this policy": [
|
|
602
|
+
"Aucun rapport ARF pour cette stratégie"
|
|
568
603
|
],
|
|
569
|
-
"
|
|
570
|
-
"
|
|
604
|
+
"No CVEs found.": [
|
|
605
|
+
"Aucun CVE n'a été trouvé."
|
|
571
606
|
],
|
|
572
|
-
"
|
|
573
|
-
"
|
|
607
|
+
"No Hostgroups found.": [
|
|
608
|
+
""
|
|
574
609
|
],
|
|
575
|
-
"
|
|
576
|
-
"
|
|
610
|
+
"No OVAL Content found": [
|
|
611
|
+
""
|
|
577
612
|
],
|
|
578
|
-
"
|
|
579
|
-
"
|
|
613
|
+
"No OVAL Contents found.": [
|
|
614
|
+
"Aucun contenu OVAL trouvé."
|
|
580
615
|
],
|
|
581
|
-
"
|
|
582
|
-
"
|
|
616
|
+
"No OVAL Policies found": [
|
|
617
|
+
"Aucune stratégie OVAL trouvée"
|
|
583
618
|
],
|
|
584
|
-
"
|
|
585
|
-
"
|
|
619
|
+
"No OVAL Policy found": [
|
|
620
|
+
"Aucune politique OVAL trouvée"
|
|
586
621
|
],
|
|
587
|
-
"
|
|
588
|
-
"
|
|
622
|
+
"No OpenSCAP Proxy selected.": [
|
|
623
|
+
"Aucun proxy OpenSCAP n'a été sélectionné."
|
|
589
624
|
],
|
|
590
|
-
"
|
|
591
|
-
""
|
|
625
|
+
"No OpenSCAP proxy found for %{class} with id %{id}": [
|
|
626
|
+
"Aucun proxy OpenSCAP trouvé pour %%{class} avec id %%{id}"
|
|
592
627
|
],
|
|
593
|
-
"
|
|
594
|
-
""
|
|
628
|
+
"No Tailoring file assigned for policy with id %s": [
|
|
629
|
+
"Aucun fichier de personnalisation attribué pour la stratégie avec l'Id %s"
|
|
595
630
|
],
|
|
596
|
-
"
|
|
597
|
-
"
|
|
631
|
+
"No Vulnerabilities found": [
|
|
632
|
+
"Aucune vulnérabilité trouvée"
|
|
598
633
|
],
|
|
599
|
-
"
|
|
600
|
-
"
|
|
634
|
+
"No available proxy to validate. Returned with error: %s": [
|
|
635
|
+
"Aucun proxy disponible pour valider. Erreur retournée : %s"
|
|
601
636
|
],
|
|
602
|
-
"
|
|
603
|
-
"
|
|
637
|
+
"No compliance policy selected.": [
|
|
638
|
+
"Aucune stratégie de conformité sélectionnée."
|
|
604
639
|
],
|
|
605
|
-
"
|
|
606
|
-
""
|
|
640
|
+
"No compliance reports selected": [
|
|
641
|
+
"Aucun rapport de conformité sélectionné"
|
|
607
642
|
],
|
|
608
|
-
"
|
|
609
|
-
""
|
|
643
|
+
"No compliance reports were found.": [
|
|
644
|
+
"Aucun rapport de conformité trouvé"
|
|
610
645
|
],
|
|
611
|
-
"
|
|
646
|
+
"No hosts selected": [
|
|
647
|
+
"Aucun hôte sélectionné"
|
|
648
|
+
],
|
|
649
|
+
"No hosts were found with that id, name or query filter": [
|
|
612
650
|
""
|
|
613
651
|
],
|
|
614
|
-
"
|
|
615
|
-
"
|
|
652
|
+
"No proxy found for %{name} or %{url}": [
|
|
653
|
+
"Aucun proxy trouvé pour %%{name} ou %%{url}"
|
|
616
654
|
],
|
|
617
|
-
"
|
|
618
|
-
"
|
|
655
|
+
"No proxy found!": [
|
|
656
|
+
"Aucun proxy trouvé !"
|
|
619
657
|
],
|
|
620
|
-
"
|
|
621
|
-
"
|
|
658
|
+
"No proxy with OpenSCAP feature is running.": [
|
|
659
|
+
"Aucun proxy avec la fonction OpenSCAP n'est exécuté."
|
|
622
660
|
],
|
|
623
|
-
"
|
|
624
|
-
"
|
|
661
|
+
"No proxy with OpenSCAP feature was found.": [
|
|
662
|
+
"Aucun proxy avec la fonction OpenSCAP trouvé."
|
|
625
663
|
],
|
|
626
|
-
"
|
|
627
|
-
"
|
|
664
|
+
"No report for this policy": [
|
|
665
|
+
"Aucun rapport pour cette stratégie"
|
|
628
666
|
],
|
|
629
|
-
"
|
|
630
|
-
"
|
|
667
|
+
"No reports available": [
|
|
668
|
+
"Aucuns rapports disponibles"
|
|
631
669
|
],
|
|
632
|
-
"
|
|
633
|
-
"
|
|
670
|
+
"No such directory: %s. Please check the path you have provided.": [
|
|
671
|
+
""
|
|
634
672
|
],
|
|
635
|
-
"
|
|
636
|
-
"
|
|
673
|
+
"No valid policy ID provided": [
|
|
674
|
+
"Aucun ID de stratégie fourni"
|
|
637
675
|
],
|
|
638
|
-
"
|
|
639
|
-
"
|
|
676
|
+
"None": [
|
|
677
|
+
"Aucun(e)"
|
|
640
678
|
],
|
|
641
|
-
"
|
|
642
|
-
"
|
|
679
|
+
"None found": [
|
|
680
|
+
"Rien trouvé"
|
|
643
681
|
],
|
|
644
|
-
"
|
|
645
|
-
"
|
|
682
|
+
"None provided": [
|
|
683
|
+
""
|
|
646
684
|
],
|
|
647
|
-
"
|
|
648
|
-
"
|
|
685
|
+
"None!": [
|
|
686
|
+
"Aucun"
|
|
649
687
|
],
|
|
650
|
-
"
|
|
651
|
-
"
|
|
688
|
+
"Not audited": [
|
|
689
|
+
"Non audité"
|
|
652
690
|
],
|
|
653
|
-
"
|
|
654
|
-
"
|
|
691
|
+
"Not compliant with the policy": [
|
|
692
|
+
"Non conforme à la stratégie"
|
|
655
693
|
],
|
|
656
|
-
"
|
|
657
|
-
"
|
|
694
|
+
"Nothing to show": [
|
|
695
|
+
"Rien à afficher"
|
|
658
696
|
],
|
|
659
|
-
"
|
|
660
|
-
"
|
|
697
|
+
"Number of Events": [
|
|
698
|
+
"Nombre d’évènements"
|
|
661
699
|
],
|
|
662
|
-
"
|
|
663
|
-
"
|
|
700
|
+
"Number of a day in month, note that not all months have same count of days": [
|
|
701
|
+
"Nombre de jours dans un mois, notez que chaque mois n'a pas le même nombre de jours"
|
|
664
702
|
],
|
|
665
|
-
"
|
|
666
|
-
"
|
|
703
|
+
"OS": [
|
|
704
|
+
""
|
|
667
705
|
],
|
|
668
|
-
"
|
|
669
|
-
"
|
|
706
|
+
"OVAL Content": [
|
|
707
|
+
"Contenu OVAL"
|
|
670
708
|
],
|
|
671
|
-
"
|
|
709
|
+
"OVAL Content %s successfully created": [
|
|
672
710
|
""
|
|
673
711
|
],
|
|
674
|
-
"
|
|
712
|
+
"OVAL Content Source": [
|
|
675
713
|
""
|
|
676
714
|
],
|
|
677
|
-
"
|
|
678
|
-
"
|
|
715
|
+
"OVAL Content from URL": [
|
|
716
|
+
""
|
|
679
717
|
],
|
|
680
|
-
"
|
|
681
|
-
"
|
|
718
|
+
"OVAL Content from file": [
|
|
719
|
+
""
|
|
682
720
|
],
|
|
683
|
-
"
|
|
684
|
-
"
|
|
721
|
+
"OVAL Content is required to create OVAL Policy. Please create one before proceeding.": [
|
|
722
|
+
""
|
|
685
723
|
],
|
|
686
|
-
"
|
|
687
|
-
"
|
|
724
|
+
"OVAL Content successfully deleted.": [
|
|
725
|
+
""
|
|
688
726
|
],
|
|
689
|
-
"
|
|
690
|
-
"
|
|
727
|
+
"OVAL Contents": [
|
|
728
|
+
"Contenus OVAL"
|
|
691
729
|
],
|
|
692
|
-
"
|
|
693
|
-
"
|
|
730
|
+
"OVAL Contents table": [
|
|
731
|
+
"OVAL Table des matières"
|
|
694
732
|
],
|
|
695
|
-
"
|
|
696
|
-
"
|
|
733
|
+
"OVAL Policies": [
|
|
734
|
+
"Stratégies OVAL"
|
|
697
735
|
],
|
|
698
|
-
"
|
|
699
|
-
"
|
|
736
|
+
"OVAL Policies Table": [
|
|
737
|
+
"Liste des stratégies OVAL"
|
|
700
738
|
],
|
|
701
|
-
"
|
|
702
|
-
"
|
|
739
|
+
"OVAL Policy description": [
|
|
740
|
+
"Description de la stratégie OVAL"
|
|
741
|
+
],
|
|
742
|
+
"OVAL Policy name": [
|
|
743
|
+
"Nom de la stratégie OVAL"
|
|
744
|
+
],
|
|
745
|
+
"OVAL Policy schedule cron line (only if period == \\\"custom\\\")": [
|
|
746
|
+
"Ligne cron de programmation de la stratégie OVAL (uniquement si période = personnalisée)"
|
|
747
|
+
],
|
|
748
|
+
"OVAL Policy schedule day of month (only if period == \\\"monthly\\\")": [
|
|
749
|
+
"Jour de programmation mensuelle de la stratégie OVAL (uniquement si période = mensuelle)"
|
|
750
|
+
],
|
|
751
|
+
"OVAL Policy schedule period (weekly, monthly, custom)": [
|
|
752
|
+
"Période de programmation de la stratégie OVAL (hebdomadaire, mensuelle, personnalisée)"
|
|
753
|
+
],
|
|
754
|
+
"OVAL Policy schedule weekday (only if period == \\\"weekly\\\")": [
|
|
755
|
+
"Programmation hebdomadaire de la stratégie OVAL (uniquement si période = hebdomadaire)"
|
|
756
|
+
],
|
|
757
|
+
"OVAL Policy succesfully created.": [
|
|
758
|
+
""
|
|
759
|
+
],
|
|
760
|
+
"OVAL content name": [
|
|
761
|
+
"Nom du contenu OVAL"
|
|
703
762
|
],
|
|
704
|
-
"
|
|
705
|
-
"
|
|
763
|
+
"OVAL policy": [
|
|
764
|
+
""
|
|
706
765
|
],
|
|
707
|
-
"
|
|
708
|
-
"
|
|
766
|
+
"OVAL policy successfully configured with %s.": [
|
|
767
|
+
"Stratégie OVAL configurée avec succès avec %s."
|
|
709
768
|
],
|
|
710
|
-
"
|
|
711
|
-
"
|
|
769
|
+
"OVAL policy was successfully deleted.": [
|
|
770
|
+
""
|
|
712
771
|
],
|
|
713
|
-
"
|
|
714
|
-
"
|
|
772
|
+
"OVAL policy was successfully updated.": [
|
|
773
|
+
""
|
|
715
774
|
],
|
|
716
|
-
"
|
|
717
|
-
"
|
|
775
|
+
"OVAL scan": [
|
|
776
|
+
"Scanner OVAL"
|
|
718
777
|
],
|
|
719
|
-
"
|
|
720
|
-
"
|
|
778
|
+
"Once SCAP content is present, you can create a policy, assign select host groups and schedule to run.": [
|
|
779
|
+
"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."
|
|
721
780
|
],
|
|
722
|
-
"
|
|
723
|
-
"
|
|
781
|
+
"OpenSCAP Proxy": [
|
|
782
|
+
"Proxy OpenSCAP"
|
|
724
783
|
],
|
|
725
|
-
"
|
|
726
|
-
"
|
|
784
|
+
"OpenSCAP Proxy to use for fetching SCAP content and uploading ARF reports. Leave blank and override appropriate parameters when using proxy load balancer.": [
|
|
785
|
+
"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."
|
|
727
786
|
],
|
|
728
|
-
"
|
|
729
|
-
"
|
|
787
|
+
"Openscap Proxy": [
|
|
788
|
+
"Proxy Openscap"
|
|
730
789
|
],
|
|
731
|
-
"
|
|
732
|
-
"
|
|
790
|
+
"Organizations": [
|
|
791
|
+
"Organisations"
|
|
733
792
|
],
|
|
734
|
-
"
|
|
735
|
-
"
|
|
793
|
+
"Original File Name": [
|
|
794
|
+
""
|
|
736
795
|
],
|
|
737
|
-
"
|
|
738
|
-
"
|
|
796
|
+
"Original file name of the OVAL content file": [
|
|
797
|
+
"Nom de fichier original du fichier OVAL"
|
|
739
798
|
],
|
|
740
|
-
"
|
|
741
|
-
"
|
|
799
|
+
"Original file name of the XML file": [
|
|
800
|
+
"Nom de fichier original du fichier XML"
|
|
742
801
|
],
|
|
743
|
-
"
|
|
744
|
-
"
|
|
802
|
+
"Other": [
|
|
803
|
+
"Autre"
|
|
745
804
|
],
|
|
746
|
-
"
|
|
747
|
-
"
|
|
805
|
+
"Other hosts failing this rule": [
|
|
806
|
+
""
|
|
748
807
|
],
|
|
749
|
-
"
|
|
750
|
-
"
|
|
808
|
+
"Othered": [
|
|
809
|
+
"Autre"
|
|
751
810
|
],
|
|
752
|
-
"
|
|
753
|
-
"
|
|
811
|
+
"Othered|O": [
|
|
812
|
+
"Autre|A"
|
|
754
813
|
],
|
|
755
|
-
"
|
|
756
|
-
"
|
|
814
|
+
"Passed": [
|
|
815
|
+
"Succès"
|
|
757
816
|
],
|
|
758
|
-
"
|
|
759
|
-
"
|
|
817
|
+
"Passed|P": [
|
|
818
|
+
"Succés|S"
|
|
760
819
|
],
|
|
761
|
-
"
|
|
762
|
-
"
|
|
820
|
+
"Period": [
|
|
821
|
+
""
|
|
763
822
|
],
|
|
764
|
-
"
|
|
765
|
-
"
|
|
823
|
+
"Permission denied": [
|
|
824
|
+
""
|
|
766
825
|
],
|
|
767
|
-
"
|
|
768
|
-
"
|
|
826
|
+
"Please Confirm": [
|
|
827
|
+
"Merci de confirmer"
|
|
769
828
|
],
|
|
770
|
-
"
|
|
771
|
-
"
|
|
829
|
+
"Please make sure you understand them by reading our": [
|
|
830
|
+
"Assurez-vous de les comprendre en lisant notre"
|
|
772
831
|
],
|
|
773
|
-
"
|
|
774
|
-
"
|
|
832
|
+
"Please specify import type, received: %{received}, expected one of: %{expected}": [
|
|
833
|
+
"Veuillez spécifier le type d'importation, reçu : %%{received}, attendu : un %%{expected}"
|
|
775
834
|
],
|
|
776
|
-
"
|
|
777
|
-
"
|
|
835
|
+
"Policies": [
|
|
836
|
+
"Comportements"
|
|
778
837
|
],
|
|
779
|
-
"
|
|
780
|
-
"
|
|
838
|
+
"Policies with hosts:": [
|
|
839
|
+
"Stratégies avec hôtes :"
|
|
781
840
|
],
|
|
782
|
-
"
|
|
783
|
-
"
|
|
784
|
-
"Rapports de conformité %s par stratégie",
|
|
785
|
-
"Rapports de conformité %s par stratégie"
|
|
841
|
+
"Policy": [
|
|
842
|
+
"Stratégie"
|
|
786
843
|
],
|
|
787
844
|
"Policy %s": [
|
|
788
845
|
"Stratégie %s"
|
|
789
846
|
],
|
|
790
|
-
"
|
|
791
|
-
"
|
|
847
|
+
"Policy Attributes": [
|
|
848
|
+
"Attributs de stratégies"
|
|
792
849
|
],
|
|
793
|
-
"
|
|
794
|
-
"
|
|
850
|
+
"Policy OVAL content ID": [
|
|
851
|
+
"ID du contenu de la stratégie OVAL"
|
|
795
852
|
],
|
|
796
|
-
"
|
|
797
|
-
"
|
|
853
|
+
"Policy SCAP content ID": [
|
|
854
|
+
"ID du contenu SCAP de la stratégie"
|
|
798
855
|
],
|
|
799
|
-
"
|
|
800
|
-
"
|
|
856
|
+
"Policy SCAP content profile ID": [
|
|
857
|
+
"ID du profil de contenu SCAP de la stratégie"
|
|
801
858
|
],
|
|
802
|
-
"
|
|
803
|
-
"
|
|
859
|
+
"Policy assigned": [
|
|
860
|
+
"Stratégie assignée"
|
|
804
861
|
],
|
|
805
|
-
"
|
|
806
|
-
"
|
|
862
|
+
"Policy description": [
|
|
863
|
+
"Description de la stratégie"
|
|
807
864
|
],
|
|
808
865
|
"Policy is missing": [
|
|
809
866
|
"La stratégie est manquante"
|
|
810
867
|
],
|
|
811
|
-
"
|
|
812
|
-
"
|
|
813
|
-
],
|
|
814
|
-
"Changed": [
|
|
815
|
-
"Modifié"
|
|
816
|
-
],
|
|
817
|
-
"Hostname": [
|
|
818
|
-
"Nom d'hôte"
|
|
819
|
-
],
|
|
820
|
-
"Changed?": [
|
|
821
|
-
"Modifié ?"
|
|
822
|
-
],
|
|
823
|
-
"Yes": [
|
|
824
|
-
"Oui"
|
|
825
|
-
],
|
|
826
|
-
"No": [
|
|
827
|
-
"Non"
|
|
828
|
-
],
|
|
829
|
-
"No ARF reports for this policy": [
|
|
830
|
-
"Aucun rapport ARF pour cette stratégie"
|
|
868
|
+
"Policy name": [
|
|
869
|
+
"Nom de la stratégie"
|
|
831
870
|
],
|
|
832
|
-
"
|
|
833
|
-
"
|
|
871
|
+
"Policy schedule cron line (only if period == \\\"custom\\\")": [
|
|
872
|
+
"Ligne cron de programmation de la stratégie (uniquement si période = personnalisée)"
|
|
834
873
|
],
|
|
835
|
-
"
|
|
836
|
-
"
|
|
837
|
-
"Total de %%{hosts} hôtes",
|
|
838
|
-
"Total de %%{hosts} hôtes"
|
|
874
|
+
"Policy schedule day of month (only if period == \\\"monthly\\\")": [
|
|
875
|
+
"Jour de programmation mensuelle de la stratégie (uniquement si période = mensuelle)"
|
|
839
876
|
],
|
|
840
|
-
"
|
|
841
|
-
"
|
|
877
|
+
"Policy schedule period (weekly, monthly, custom)": [
|
|
878
|
+
"Période de programmation de la stratégie (hebdomadaire, mensuelle, personnalisée)"
|
|
842
879
|
],
|
|
843
|
-
"
|
|
844
|
-
"
|
|
880
|
+
"Policy schedule weekday (only if period == \\\"weekly\\\")": [
|
|
881
|
+
"Programmation hebdomadaire de la stratégie (uniquement si période = hebdomadaire)"
|
|
845
882
|
],
|
|
846
|
-
"
|
|
847
|
-
"
|
|
883
|
+
"Policy with id %s not found.": [
|
|
884
|
+
"Stratégie ayant pour ID %s est introuvable."
|
|
848
885
|
],
|
|
849
|
-
"
|
|
850
|
-
"
|
|
886
|
+
"Profile": [
|
|
887
|
+
""
|
|
851
888
|
],
|
|
852
|
-
"
|
|
853
|
-
"
|
|
889
|
+
"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.": [
|
|
890
|
+
"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."
|
|
854
891
|
],
|
|
855
|
-
"
|
|
856
|
-
"
|
|
892
|
+
"Puppet class": [
|
|
893
|
+
"Classe Puppet"
|
|
857
894
|
],
|
|
858
|
-
"
|
|
859
|
-
"
|
|
895
|
+
"Rationale": [
|
|
896
|
+
"Rationale"
|
|
860
897
|
],
|
|
861
|
-
"
|
|
862
|
-
"
|
|
898
|
+
"Reboot the system(s)": [
|
|
899
|
+
""
|
|
863
900
|
],
|
|
864
|
-
"
|
|
865
|
-
"
|
|
901
|
+
"Red Hat %s default content": [
|
|
902
|
+
""
|
|
866
903
|
],
|
|
867
|
-
"
|
|
868
|
-
"
|
|
904
|
+
"Ref Id": [
|
|
905
|
+
"Réf Id"
|
|
869
906
|
],
|
|
870
|
-
"
|
|
871
|
-
"
|
|
907
|
+
"References": [
|
|
908
|
+
"Références"
|
|
872
909
|
],
|
|
873
|
-
"
|
|
874
|
-
"
|
|
910
|
+
"Remediate %s rule": [
|
|
911
|
+
""
|
|
875
912
|
],
|
|
876
|
-
"
|
|
877
|
-
"
|
|
913
|
+
"Remediation": [
|
|
914
|
+
""
|
|
878
915
|
],
|
|
879
|
-
"
|
|
916
|
+
"Remediation might render the system non-functional.": [
|
|
880
917
|
""
|
|
881
918
|
],
|
|
882
|
-
"
|
|
919
|
+
"Remote action:": [
|
|
920
|
+
"Action distante :"
|
|
921
|
+
],
|
|
922
|
+
"Remote job": [
|
|
883
923
|
""
|
|
884
924
|
],
|
|
885
|
-
"
|
|
886
|
-
"
|
|
925
|
+
"Report Metrics": [
|
|
926
|
+
"Métriques du rapport"
|
|
887
927
|
],
|
|
888
|
-
"
|
|
889
|
-
"
|
|
928
|
+
"Report Status": [
|
|
929
|
+
"Statut du rapport"
|
|
890
930
|
],
|
|
891
|
-
"
|
|
892
|
-
"
|
|
931
|
+
"Reported At": [
|
|
932
|
+
"Rapporté à"
|
|
893
933
|
],
|
|
894
|
-
"
|
|
895
|
-
"
|
|
934
|
+
"Reported at %s": [
|
|
935
|
+
"Rapporté le %s"
|
|
896
936
|
],
|
|
897
|
-
"
|
|
898
|
-
"
|
|
937
|
+
"Reports": [
|
|
938
|
+
"Rapports"
|
|
899
939
|
],
|
|
900
|
-
"
|
|
901
|
-
"
|
|
940
|
+
"Request the following permissions from administrator: %s.": [
|
|
941
|
+
""
|
|
902
942
|
],
|
|
903
|
-
"
|
|
904
|
-
"
|
|
943
|
+
"Request timed out. Please try increasing Settings -> proxy_request_timeout": [
|
|
944
|
+
"Expiration du délai de requête. Veuillez augmenter les valeurs dans Paramètres -> proxy_request_timeout"
|
|
905
945
|
],
|
|
906
|
-
"
|
|
907
|
-
"
|
|
946
|
+
"Required %{msg_name} %{class} was not found, please ensure it is imported first.": [
|
|
947
|
+
"%{msg_name} % %{class} requis non trouvé, veuillez vous assurer qu'il y a bien eu une importation pour commencer."
|
|
908
948
|
],
|
|
909
|
-
"
|
|
910
|
-
"
|
|
949
|
+
"Requires %s Puppet class. This will assign the class to the hosts or selected hostgroups.": [
|
|
950
|
+
""
|
|
911
951
|
],
|
|
912
|
-
"
|
|
913
|
-
"
|
|
952
|
+
"Requires Ansible plugin, %s Ansible role and variables. This will assign the role to the hosts or selected hostgroups.": [
|
|
953
|
+
""
|
|
914
954
|
],
|
|
915
|
-
"
|
|
916
|
-
"
|
|
955
|
+
"Resource": [
|
|
956
|
+
"Ressource"
|
|
917
957
|
],
|
|
918
|
-
"
|
|
919
|
-
"
|
|
958
|
+
"Result": [
|
|
959
|
+
"Résultat"
|
|
920
960
|
],
|
|
921
|
-
"
|
|
922
|
-
"
|
|
961
|
+
"Review hosts": [
|
|
962
|
+
""
|
|
923
963
|
],
|
|
924
|
-
"
|
|
925
|
-
"
|
|
964
|
+
"Review remediation": [
|
|
965
|
+
""
|
|
926
966
|
],
|
|
927
|
-
"
|
|
928
|
-
"
|
|
967
|
+
"Review the remediation snippet and apply it to the host manually.": [
|
|
968
|
+
""
|
|
929
969
|
],
|
|
930
|
-
"
|
|
931
|
-
"
|
|
970
|
+
"Review the remediation snippet that will be applied to selected host(s).": [
|
|
971
|
+
""
|
|
932
972
|
],
|
|
933
|
-
"
|
|
934
|
-
"
|
|
973
|
+
"Rule Results": [
|
|
974
|
+
"Résultats de règle"
|
|
935
975
|
],
|
|
936
|
-
"
|
|
937
|
-
"
|
|
976
|
+
"Run": [
|
|
977
|
+
""
|
|
938
978
|
],
|
|
939
|
-
"
|
|
940
|
-
"
|
|
979
|
+
"Run OVAL scan": [
|
|
980
|
+
"Exécuter le scan OVAL"
|
|
941
981
|
],
|
|
942
|
-
"
|
|
943
|
-
"
|
|
982
|
+
"Run OpenSCAP remediation with Ansible": [
|
|
983
|
+
""
|
|
944
984
|
],
|
|
945
|
-
"
|
|
946
|
-
"
|
|
985
|
+
"Run OpenSCAP remediation with Shell": [
|
|
986
|
+
""
|
|
947
987
|
],
|
|
948
|
-
"
|
|
949
|
-
"
|
|
988
|
+
"Run OpenSCAP scan": [
|
|
989
|
+
"Exécuter une analyse OpenSCAP"
|
|
950
990
|
],
|
|
951
|
-
"
|
|
952
|
-
"
|
|
991
|
+
"SCAP Content": [
|
|
992
|
+
"Contenu SCAP"
|
|
953
993
|
],
|
|
954
|
-
"
|
|
955
|
-
"
|
|
994
|
+
"SCAP Contents": [
|
|
995
|
+
"Contenus SCAP"
|
|
956
996
|
],
|
|
957
|
-
"
|
|
958
|
-
"
|
|
997
|
+
"SCAP DataStream file": [
|
|
998
|
+
"Fichier SCAP DataStream"
|
|
959
999
|
],
|
|
960
|
-
"
|
|
961
|
-
"
|
|
1000
|
+
"SCAP content": [
|
|
1001
|
+
"Contenu SCAP"
|
|
962
1002
|
],
|
|
963
|
-
"
|
|
964
|
-
"
|
|
1003
|
+
"SCAP content name": [
|
|
1004
|
+
"Nom du contenu SCAP"
|
|
965
1005
|
],
|
|
966
|
-
"
|
|
967
|
-
"
|
|
1006
|
+
"SCAP contents": [
|
|
1007
|
+
"Contenus SCAP"
|
|
968
1008
|
],
|
|
969
|
-
"
|
|
970
|
-
"
|
|
1009
|
+
"SCAP policies summary": [
|
|
1010
|
+
"Récapitulatif des stratégies SCAP"
|
|
971
1011
|
],
|
|
972
|
-
"
|
|
973
|
-
"
|
|
1012
|
+
"Scan All Hostgroups": [
|
|
1013
|
+
"Analyser tous les groupes d'hôtes"
|
|
974
1014
|
],
|
|
975
|
-
"
|
|
976
|
-
"
|
|
1015
|
+
"Schedule": [
|
|
1016
|
+
"Programmer"
|
|
977
1017
|
],
|
|
978
|
-
"
|
|
979
|
-
"
|
|
1018
|
+
"Select Action": [
|
|
1019
|
+
"Choisir l'action"
|
|
980
1020
|
],
|
|
981
|
-
"
|
|
982
|
-
"
|
|
1021
|
+
"Select Compliance Policy": [
|
|
1022
|
+
"Sélectionner une stratégie de conformité"
|
|
983
1023
|
],
|
|
984
|
-
"
|
|
985
|
-
"
|
|
1024
|
+
"Select OpenSCAP Proxy": [
|
|
1025
|
+
"Sélectionner le proxy OpenSCAP"
|
|
986
1026
|
],
|
|
987
|
-
"
|
|
988
|
-
"
|
|
1027
|
+
"Select all items in this page": [
|
|
1028
|
+
"Sélectionner tous les éléments de cette page"
|
|
989
1029
|
],
|
|
990
|
-
"
|
|
1030
|
+
"Select remediation method": [
|
|
991
1031
|
""
|
|
992
1032
|
],
|
|
993
|
-
"
|
|
1033
|
+
"Select snippet": [
|
|
994
1034
|
""
|
|
995
1035
|
],
|
|
996
|
-
"
|
|
1036
|
+
"Severity": [
|
|
1037
|
+
"Sévérité"
|
|
1038
|
+
],
|
|
1039
|
+
"Show Guide": [
|
|
1040
|
+
"Afficher le guide"
|
|
1041
|
+
],
|
|
1042
|
+
"Show a Policy": [
|
|
1043
|
+
"Afficher une stratégie"
|
|
1044
|
+
],
|
|
1045
|
+
"Show a Tailoring file": [
|
|
1046
|
+
"Afficher un fichier de personnalisation"
|
|
1047
|
+
],
|
|
1048
|
+
"Show a policy's OVAL content": [
|
|
997
1049
|
""
|
|
998
1050
|
],
|
|
999
|
-
"
|
|
1000
|
-
"
|
|
1051
|
+
"Show a policy's SCAP content": [
|
|
1052
|
+
"Afficher le contenu SCAP d'une stratégie"
|
|
1001
1053
|
],
|
|
1002
|
-
"
|
|
1003
|
-
"
|
|
1054
|
+
"Show a policy's Tailoring file": [
|
|
1055
|
+
"Afficher le fichier de personnalisation d'une stratégie"
|
|
1004
1056
|
],
|
|
1005
|
-
"
|
|
1006
|
-
"
|
|
1057
|
+
"Show an ARF report": [
|
|
1058
|
+
"Afficher un rapport ARF"
|
|
1007
1059
|
],
|
|
1008
|
-
"
|
|
1009
|
-
"
|
|
1060
|
+
"Show an OVAL Policy": [
|
|
1061
|
+
"Afficher une stratégie OVAL"
|
|
1010
1062
|
],
|
|
1011
|
-
"
|
|
1012
|
-
"
|
|
1063
|
+
"Show an OVAL content": [
|
|
1064
|
+
"Montrer un contenu OVAL"
|
|
1013
1065
|
],
|
|
1014
|
-
"
|
|
1015
|
-
"
|
|
1066
|
+
"Show an SCAP content": [
|
|
1067
|
+
"Afficher un élément de contenu SCAP"
|
|
1016
1068
|
],
|
|
1017
|
-
"
|
|
1018
|
-
"
|
|
1069
|
+
"Show config information for foreman_scap_client": [
|
|
1070
|
+
"Afficher les informations de configuration pour foreman_scap_client"
|
|
1019
1071
|
],
|
|
1020
|
-
"
|
|
1021
|
-
"
|
|
1072
|
+
"Show log messages:": [
|
|
1073
|
+
"Afficher les messages de log:"
|
|
1022
1074
|
],
|
|
1023
|
-
"
|
|
1024
|
-
"
|
|
1075
|
+
"Smart Class Parameters": [
|
|
1076
|
+
"Paramètres smart class"
|
|
1025
1077
|
],
|
|
1026
|
-
"
|
|
1027
|
-
"
|
|
1078
|
+
"Snippet": [
|
|
1079
|
+
""
|
|
1028
1080
|
],
|
|
1029
|
-
"
|
|
1030
|
-
"
|
|
1081
|
+
"Something went wrong while selecting compliance reports - %s": [
|
|
1082
|
+
"Quelque chose s'est mal passé lors de la sélection des rapports de conformité - %s"
|
|
1031
1083
|
],
|
|
1032
|
-
"
|
|
1033
|
-
"
|
|
1084
|
+
"Something went wrong while selecting hosts - %s": [
|
|
1085
|
+
"Une erreur s'est produite lors de la sélection des hôtes - %s"
|
|
1034
1086
|
],
|
|
1035
1087
|
"Spool errors": [
|
|
1036
1088
|
"Erreurs du spool"
|
|
1037
1089
|
],
|
|
1038
|
-
"
|
|
1039
|
-
"
|
|
1090
|
+
"Status chart": [
|
|
1091
|
+
"Statut du diagramme"
|
|
1040
1092
|
],
|
|
1041
|
-
"
|
|
1042
|
-
"
|
|
1093
|
+
"Status table": [
|
|
1094
|
+
"Statut de la table"
|
|
1043
1095
|
],
|
|
1044
|
-
"
|
|
1045
|
-
"
|
|
1096
|
+
"Submit": [
|
|
1097
|
+
"Envoyer"
|
|
1046
1098
|
],
|
|
1047
|
-
"
|
|
1048
|
-
"
|
|
1099
|
+
"Successfully copied to clipboard!": [
|
|
1100
|
+
""
|
|
1049
1101
|
],
|
|
1050
|
-
"
|
|
1051
|
-
"
|
|
1102
|
+
"Successfully deleted %s compliance reports": [
|
|
1103
|
+
"Rapports de conformité %s supprimés"
|
|
1052
1104
|
],
|
|
1053
|
-
"
|
|
1054
|
-
"
|
|
1105
|
+
"Successfully deleted ARF report.": [
|
|
1106
|
+
"Rapport ARF supprimé."
|
|
1055
1107
|
],
|
|
1056
|
-
"
|
|
1057
|
-
"
|
|
1108
|
+
"Summary from %{time} ago to now": [
|
|
1109
|
+
"Résumé de %%{time} à maintenant"
|
|
1058
1110
|
],
|
|
1059
|
-
"
|
|
1060
|
-
"
|
|
1111
|
+
"Summary report for OpenScap from Foreman": [
|
|
1112
|
+
"Rapport de synthèse pour OpenScap depuis Foreman"
|
|
1061
1113
|
],
|
|
1062
|
-
"
|
|
1063
|
-
"
|
|
1114
|
+
"Summary report from Foreman server at %{foreman_url}": [
|
|
1115
|
+
"Rapport récapitulatif de Foreman à %{foreman_url}"
|
|
1064
1116
|
],
|
|
1065
|
-
"
|
|
1066
|
-
"
|
|
1117
|
+
"Sync contents that have remote source URL": [
|
|
1118
|
+
"Synchroniser les contenus qui ont une URL source distante"
|
|
1067
1119
|
],
|
|
1068
|
-
"
|
|
1069
|
-
""
|
|
1120
|
+
"Table of CVEs for OVAL policy": [
|
|
1121
|
+
"Tableau des CVEs pour la stratégie OVAL"
|
|
1070
1122
|
],
|
|
1071
|
-
"
|
|
1123
|
+
"Table of hostgroups for OVAL policy": [
|
|
1072
1124
|
""
|
|
1073
1125
|
],
|
|
1074
|
-
"
|
|
1075
|
-
""
|
|
1126
|
+
"Tailoring File": [
|
|
1127
|
+
"Fichier de personnalisation"
|
|
1076
1128
|
],
|
|
1077
|
-
"
|
|
1078
|
-
""
|
|
1129
|
+
"Tailoring Files": [
|
|
1130
|
+
"Fichiers de personnalisation"
|
|
1079
1131
|
],
|
|
1080
|
-
"
|
|
1081
|
-
""
|
|
1132
|
+
"Tailoring file ID": [
|
|
1133
|
+
"ID du fichier de personnalisation"
|
|
1082
1134
|
],
|
|
1083
|
-
"
|
|
1084
|
-
""
|
|
1135
|
+
"Tailoring file name": [
|
|
1136
|
+
"Nom du fichier de personnalisation"
|
|
1085
1137
|
],
|
|
1086
|
-
"
|
|
1087
|
-
""
|
|
1138
|
+
"Tailoring file profile ID": [
|
|
1139
|
+
"ID du profil de fichier de personnalisation"
|
|
1088
1140
|
],
|
|
1089
|
-
"%s
|
|
1141
|
+
"The %s proxy does not have Openscap feature enabled. Either set correct OpenSCAP Proxy or unset it.": [
|
|
1090
1142
|
""
|
|
1091
1143
|
],
|
|
1092
|
-
"
|
|
1093
|
-
"
|
|
1094
|
-
],
|
|
1095
|
-
"SCAP contents": [
|
|
1096
|
-
"Contenus SCAP"
|
|
1097
|
-
],
|
|
1098
|
-
"Reports": [
|
|
1099
|
-
"Rapports"
|
|
1144
|
+
"The Security Content Automation Protocol (SCAP), combines a number of open standards that are used to enumerate software flaws and\\n configuration issues related to security. ": [
|
|
1145
|
+
"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 configuration liés à la sécurité. "
|
|
1100
1146
|
],
|
|
1101
|
-
"
|
|
1102
|
-
"
|
|
1147
|
+
"The following %{key_name} were missing for %{item_name}: %{key_names}. Make sure they are imported before proceeding.": [
|
|
1148
|
+
"Les %%s suivants étaient manquants pour %{class} : %{key_names}. Assurez-vous qu'ils aient bien été importés avant de poursuivre."
|
|
1103
1149
|
],
|
|
1104
|
-
"
|
|
1105
|
-
"
|
|
1150
|
+
"The following Ansible Variables were not found: %{missing_vars}, please import them before running this action again.": [
|
|
1151
|
+
"Les variables Ansible suivantes n'ont pas été trouvées : %{missing_vars}, veuillez les importer avant d'exécuter à nouveau cette action."
|
|
1106
1152
|
],
|
|
1107
|
-
"
|
|
1108
|
-
"
|
|
1153
|
+
"The following Smart Proxies need to be updated to unlock the feature: %s. ": [
|
|
1154
|
+
"Les smart proxies suivants doivent être mis à jour pour déverrouiller la fonction : %s "
|
|
1109
1155
|
],
|
|
1110
|
-
"
|
|
1111
|
-
"
|
|
1156
|
+
"The following proxies could not be reached: %s. Please make sure they are available so Foreman can check their versions.": [
|
|
1157
|
+
"Impossible d'atteindre les proxies suivants : %s. Veillez à ce qu'ils soient disponibles de sorte que Foreman puisse vérifier leur version."
|
|
1112
1158
|
],
|
|
1113
|
-
"
|
|
1114
|
-
"
|
|
1159
|
+
"The identifier of the host": [
|
|
1160
|
+
"Identifiant de l’hôte"
|
|
1115
1161
|
],
|
|
1116
|
-
"
|
|
1117
|
-
"
|
|
1162
|
+
"The job has started on selected host(s), you can check the status on the job details page.": [
|
|
1163
|
+
""
|
|
1118
1164
|
],
|
|
1119
|
-
"
|
|
1120
|
-
"
|
|
1165
|
+
"There are significant differences in deployment options.": [
|
|
1166
|
+
"Il existe des différences importantes dans les options de déploiement."
|
|
1121
1167
|
],
|
|
1122
|
-
"
|
|
1168
|
+
"There is no job to remediate with. Please remediate manually.": [
|
|
1123
1169
|
""
|
|
1124
1170
|
],
|
|
1125
|
-
"
|
|
1171
|
+
"There was a following error when deleting %(name)s: %(error)s": [
|
|
1126
1172
|
""
|
|
1127
1173
|
],
|
|
1128
|
-
"There
|
|
1174
|
+
"There was a following error when updating OVAL policy: %s": [
|
|
1129
1175
|
""
|
|
1130
1176
|
],
|
|
1131
|
-
"
|
|
1177
|
+
"There's no available report for this host": [
|
|
1132
1178
|
""
|
|
1133
1179
|
],
|
|
1134
|
-
"
|
|
1135
|
-
"
|
|
1180
|
+
"This feature is temporarily disabled. ": [
|
|
1181
|
+
"Cette fonction est temporairement désactivée."
|
|
1136
1182
|
],
|
|
1137
|
-
"
|
|
1183
|
+
"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.": [
|
|
1138
1184
|
""
|
|
1139
1185
|
],
|
|
1140
|
-
"
|
|
1141
|
-
""
|
|
1186
|
+
"This profile will be used to override the one from scap content": [
|
|
1187
|
+
"Ce profil sera utilisé pour remplacer celui du contenu scap"
|
|
1142
1188
|
],
|
|
1143
|
-
"
|
|
1189
|
+
"Title": [
|
|
1144
1190
|
""
|
|
1145
1191
|
],
|
|
1146
|
-
"
|
|
1192
|
+
"To deploy foreman_scap_client, ansible roles run needs to be triggered manually. Manual run is also required after any change to this policy.": [
|
|
1147
1193
|
""
|
|
1148
1194
|
],
|
|
1149
|
-
"
|
|
1150
|
-
"
|
|
1195
|
+
"Total": [
|
|
1196
|
+
"Total"
|
|
1151
1197
|
],
|
|
1152
|
-
"
|
|
1153
|
-
""
|
|
1198
|
+
"Total hosts with policy: %s": [
|
|
1199
|
+
"Total des hôtes ayant pour stratégie : %s"
|
|
1154
1200
|
],
|
|
1155
|
-
"
|
|
1156
|
-
""
|
|
1201
|
+
"Total hosts with reports where policy is no longer assigned.": [
|
|
1202
|
+
"Total des hôtes avec des rapports où la stratégie n'est plus assignée."
|
|
1157
1203
|
],
|
|
1158
|
-
"
|
|
1159
|
-
"
|
|
1204
|
+
"Total of one host": [
|
|
1205
|
+
"Total de un hôte",
|
|
1206
|
+
"Total de %%{hosts} hôtes",
|
|
1207
|
+
"Total de %%{hosts} hôtes"
|
|
1160
1208
|
],
|
|
1161
|
-
"
|
|
1209
|
+
"Type a hostgroup name...": [
|
|
1162
1210
|
""
|
|
1163
1211
|
],
|
|
1212
|
+
"Type of the upload": [
|
|
1213
|
+
"Type de téléchargement"
|
|
1214
|
+
],
|
|
1164
1215
|
"URL": [
|
|
1165
1216
|
""
|
|
1166
1217
|
],
|
|
1167
|
-
"
|
|
1168
|
-
""
|
|
1218
|
+
"URL of the OVAL content file": [
|
|
1219
|
+
"URL du fichier de contenu OVAL"
|
|
1169
1220
|
],
|
|
1170
|
-
"
|
|
1171
|
-
"
|
|
1221
|
+
"Unable to get HTML version of requested report from Smart Proxy": [
|
|
1222
|
+
"N'a as pu trouver la version HTML du rapport demandé au proxy Smart"
|
|
1172
1223
|
],
|
|
1173
|
-
"
|
|
1174
|
-
""
|
|
1224
|
+
"Unable to get XML version of requested report from Smart Proxy": [
|
|
1225
|
+
"N'a pas pu trouver la version XML du rapport demandé au proxy Smart"
|
|
1175
1226
|
],
|
|
1176
|
-
"
|
|
1177
|
-
""
|
|
1227
|
+
"Unassign Compliance Policy": [
|
|
1228
|
+
"Dés-attribuer une stratégie de conformité"
|
|
1178
1229
|
],
|
|
1179
|
-
"
|
|
1180
|
-
""
|
|
1230
|
+
"Unknown Compliance status": [
|
|
1231
|
+
"Statut de conformité inconnu"
|
|
1181
1232
|
],
|
|
1182
|
-
"OVAL
|
|
1183
|
-
""
|
|
1233
|
+
"Unknown OVAL status": [
|
|
1234
|
+
"Statut OVAL inconnu"
|
|
1184
1235
|
],
|
|
1185
|
-
"
|
|
1236
|
+
"Unknown error when submitting data, please try again later.": [
|
|
1186
1237
|
""
|
|
1187
1238
|
],
|
|
1188
|
-
"
|
|
1239
|
+
"Unknown schedule": [
|
|
1189
1240
|
""
|
|
1190
1241
|
],
|
|
1191
|
-
"
|
|
1192
|
-
""
|
|
1242
|
+
"Update a Policy": [
|
|
1243
|
+
"Mettre à jour une stratégie"
|
|
1193
1244
|
],
|
|
1194
|
-
"
|
|
1195
|
-
""
|
|
1245
|
+
"Update a Tailoring file": [
|
|
1246
|
+
"Mettre à jour un fichier de personnalisation"
|
|
1196
1247
|
],
|
|
1197
|
-
"
|
|
1198
|
-
"
|
|
1248
|
+
"Update an OVAL Policy": [
|
|
1249
|
+
"Mise à jour d'une stratégie OVAL"
|
|
1199
1250
|
],
|
|
1200
|
-
"
|
|
1201
|
-
""
|
|
1251
|
+
"Update an OVAL content": [
|
|
1252
|
+
"Mise à jour d'un contenu OVAL"
|
|
1202
1253
|
],
|
|
1203
|
-
"
|
|
1204
|
-
""
|
|
1254
|
+
"Update an SCAP content": [
|
|
1255
|
+
"Mettre à jour un contenu SCAP"
|
|
1205
1256
|
],
|
|
1206
|
-
"
|
|
1207
|
-
""
|
|
1257
|
+
"Updated hosts: Assigned with OpenSCAP Proxy: %s": [
|
|
1258
|
+
"Hôtes mis à jour : attribué avec le proxy OpenSCAP : %s"
|
|
1208
1259
|
],
|
|
1209
|
-
"
|
|
1210
|
-
""
|
|
1260
|
+
"Updated hosts: Assigned with compliance policy: %s": [
|
|
1261
|
+
"Hôtes mis à jour : stratégie de conformité %s attribuée"
|
|
1211
1262
|
],
|
|
1212
|
-
"
|
|
1213
|
-
"
|
|
1263
|
+
"Updated hosts: Unassigned from compliance policy '%s'": [
|
|
1264
|
+
"Hôtes mis à jour : stratégie de conformité '%s' dés-attribuée"
|
|
1214
1265
|
],
|
|
1215
|
-
"
|
|
1216
|
-
""
|
|
1266
|
+
"Upload New SCAP Content": [
|
|
1267
|
+
"Télécharger Nouveau contenu SCAP"
|
|
1217
1268
|
],
|
|
1218
|
-
"
|
|
1219
|
-
""
|
|
1269
|
+
"Upload New Tailoring file": [
|
|
1270
|
+
"Télécharger un nouveau fichier de personnalisation"
|
|
1220
1271
|
],
|
|
1221
|
-
"
|
|
1222
|
-
""
|
|
1272
|
+
"Upload an ARF report": [
|
|
1273
|
+
"Télécharger un rapport Arf"
|
|
1223
1274
|
],
|
|
1224
|
-
"
|
|
1225
|
-
""
|
|
1275
|
+
"Upload an OVAL report - a list of CVEs for given host": [
|
|
1276
|
+
"Télécharger un rapport OVAL - une liste de CVEs pour un hôte donné"
|
|
1226
1277
|
],
|
|
1227
|
-
"
|
|
1228
|
-
""
|
|
1278
|
+
"Upload new SCAP content file": [
|
|
1279
|
+
"Télécharger Nouveau fichier de contenu SCAP"
|
|
1229
1280
|
],
|
|
1230
|
-
"
|
|
1281
|
+
"Upload new Tailoring File": [
|
|
1282
|
+
"Télécharger un nouveau fichier de personnalisation"
|
|
1283
|
+
],
|
|
1284
|
+
"Upload scap contents in bulk": [
|
|
1285
|
+
"Télécharger le contenu scap en masse"
|
|
1286
|
+
],
|
|
1287
|
+
"View Report": [
|
|
1288
|
+
"Afficher le rapport"
|
|
1289
|
+
],
|
|
1290
|
+
"View full report": [
|
|
1291
|
+
"Voir le rapport complet"
|
|
1292
|
+
],
|
|
1293
|
+
"View selected hosts": [
|
|
1231
1294
|
""
|
|
1232
1295
|
],
|
|
1233
|
-
"
|
|
1296
|
+
"Was %s configured successfully?": [
|
|
1297
|
+
"%s a-t-il été configuré avec succès ?"
|
|
1298
|
+
],
|
|
1299
|
+
"Was %{model_name} %{name} configured successfully?": [
|
|
1300
|
+
"Le %{model_name} %%{name} a-t-il été configuré avec succès ?"
|
|
1301
|
+
],
|
|
1302
|
+
"Weekly, on %s": [
|
|
1234
1303
|
""
|
|
1235
1304
|
],
|
|
1236
|
-
"
|
|
1237
|
-
"
|
|
1305
|
+
"XCCDF Profile": [
|
|
1306
|
+
"Profil XCCDF"
|
|
1238
1307
|
],
|
|
1239
|
-
"
|
|
1240
|
-
"
|
|
1308
|
+
"XCCDF Profile in Tailoring File": [
|
|
1309
|
+
"Profil XCCDF dans le fichier de personnalisation"
|
|
1241
1310
|
],
|
|
1242
|
-
"
|
|
1243
|
-
"
|
|
1311
|
+
"XML containing OVAL content": [
|
|
1312
|
+
"XML avec contenu OVAL"
|
|
1244
1313
|
],
|
|
1245
|
-
"
|
|
1246
|
-
"
|
|
1314
|
+
"XML containing SCAP content": [
|
|
1315
|
+
"XML avec contenu SCAP "
|
|
1247
1316
|
],
|
|
1248
|
-
"
|
|
1249
|
-
"
|
|
1317
|
+
"XML containing tailoring file": [
|
|
1318
|
+
"XML contenant le fichier de personnalisation"
|
|
1250
1319
|
],
|
|
1251
|
-
"
|
|
1252
|
-
""
|
|
1320
|
+
"Yes": [
|
|
1321
|
+
"Oui"
|
|
1253
1322
|
],
|
|
1254
|
-
"
|
|
1323
|
+
"You are not authorized to view the page. ": [
|
|
1255
1324
|
""
|
|
1256
1325
|
],
|
|
1257
|
-
"
|
|
1326
|
+
"You can remediate by running a remote job or you can display a snippet for manual remediation.": [
|
|
1258
1327
|
""
|
|
1259
1328
|
],
|
|
1260
|
-
"
|
|
1261
|
-
"
|
|
1329
|
+
"You can specify custom cron line, e.g. \\\"0 3 * * *\\\", separate each of 5 values by space": [
|
|
1330
|
+
"Vous pouvez personnaliser votre ligne cron. \\\"0 3 * * *\\\", séparer chacune des 5 valeurs par un espace"
|
|
1262
1331
|
],
|
|
1263
|
-
"
|
|
1264
|
-
""
|
|
1332
|
+
"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.": [
|
|
1333
|
+
"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."
|
|
1265
1334
|
],
|
|
1266
|
-
"
|
|
1335
|
+
"can't be blank": [
|
|
1267
1336
|
""
|
|
1268
1337
|
],
|
|
1269
|
-
"
|
|
1270
|
-
""
|
|
1338
|
+
"cannot assign to %s, all assigned policies must be deployed in the same way, check 'deploy by' for each assigned policy": [
|
|
1339
|
+
"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"
|
|
1271
1340
|
],
|
|
1272
|
-
"
|
|
1341
|
+
"cause: ": [
|
|
1273
1342
|
""
|
|
1274
1343
|
],
|
|
1275
|
-
"
|
|
1276
|
-
""
|
|
1344
|
+
"documentation": [
|
|
1345
|
+
"documentation"
|
|
1277
1346
|
],
|
|
1278
|
-
"
|
|
1279
|
-
""
|
|
1347
|
+
"does not come from selected tailoring file": [
|
|
1348
|
+
"ne vient pas du fichier de personnalisation sélectionné"
|
|
1280
1349
|
],
|
|
1281
|
-
"
|
|
1282
|
-
""
|
|
1350
|
+
"does not consist of 5 parts separated by space": [
|
|
1351
|
+
"ne comprend pas 5 parties séparées par un espace"
|
|
1283
1352
|
],
|
|
1284
|
-
"
|
|
1353
|
+
"does not have the selected SCAP content profile": [
|
|
1354
|
+
"ne contient pas le profil de contenu SCAP sélectionné"
|
|
1355
|
+
],
|
|
1356
|
+
"foreman_ansible plugin not found, please install it before running this action again.": [
|
|
1357
|
+
"le plugin foreman_ansible n'a pas été trouvé, veuillez l'installer avant d'exécuter à nouveau cette action."
|
|
1358
|
+
],
|
|
1359
|
+
"hostgroups": [
|
|
1360
|
+
"Groupes d'hôtes"
|
|
1361
|
+
],
|
|
1362
|
+
"hosts": [
|
|
1363
|
+
"hôtes"
|
|
1364
|
+
],
|
|
1365
|
+
"invalid type %s": [
|
|
1366
|
+
"type %s invalide"
|
|
1367
|
+
],
|
|
1368
|
+
"is not a valid cronline": [
|
|
1285
1369
|
""
|
|
1286
1370
|
],
|
|
1287
|
-
"
|
|
1288
|
-
"
|
|
1371
|
+
"is not a valid value": [
|
|
1372
|
+
"n'est pas une valeur valide"
|
|
1289
1373
|
],
|
|
1290
|
-
"
|
|
1291
|
-
"
|
|
1374
|
+
"is not included in SCAP_RESULT": [
|
|
1375
|
+
"n'est pas inclus dans SCAP_RESULT"
|
|
1292
1376
|
],
|
|
1293
|
-
"
|
|
1294
|
-
"
|
|
1377
|
+
"items selected. Uncheck to Clear": [
|
|
1378
|
+
"items sélectionnés. Décocher pour Effacer"
|
|
1295
1379
|
],
|
|
1296
|
-
"
|
|
1297
|
-
"
|
|
1380
|
+
"must be between 1 and 31": [
|
|
1381
|
+
"doit être compris entre 1 et 31"
|
|
1298
1382
|
],
|
|
1299
|
-
"
|
|
1300
|
-
"
|
|
1383
|
+
"must be present when tailoring file present": [
|
|
1384
|
+
"doit être présent lorsque le fichier de personnalisation est présent"
|
|
1385
|
+
],
|
|
1386
|
+
"must be present when tailoring file profile present": [
|
|
1387
|
+
"doit être présent lorsque le profil du fichier de personnalisation est présent"
|
|
1301
1388
|
],
|
|
1302
|
-
"
|
|
1303
|
-
"
|
|
1389
|
+
"must have Openscap feature": [
|
|
1390
|
+
"doit comporter la fonction Openscap"
|
|
1391
|
+
],
|
|
1392
|
+
"theforeman.foreman_scap_client Ansible Role not found, please import it before running this action again.": [
|
|
1393
|
+
"theforeman.foreman_scap_client Rôle Ansible non trouvé, veuillez l'importer avant d'exécuter à nouveau cette action."
|
|
1394
|
+
],
|
|
1395
|
+
"these Compliance reports": [
|
|
1396
|
+
"ces rapports de conformité"
|
|
1304
1397
|
]
|
|
1305
1398
|
}
|
|
1306
1399
|
}
|