foreman_discovery 11.0.0 → 12.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/app/controllers/api/v2/discovered_hosts_controller.rb +1 -2
- data/app/controllers/concerns/foreman/controller/discovered_extensions.rb +1 -1
- data/app/controllers/discovered_hosts_controller.rb +21 -11
- data/app/controllers/foreman_discovery/concerns/hosts_controller_extensions.rb +1 -1
- data/app/helpers/discovered_hosts_helper.rb +9 -11
- data/app/models/discovery_rule.rb +3 -0
- data/app/models/host/discovered.rb +59 -19
- data/app/models/setting/discovered.rb +1 -0
- data/app/services/foreman_discovery/fact_parser.rb +6 -2
- data/app/services/foreman_discovery/ui_notifications/new_host.rb +3 -1
- data/app/views/dashboard/_discovery_widget_host_list.html.erb +1 -1
- data/app/views/discovered_hosts/_discovered_hosts_list.html.erb +2 -3
- data/app/views/discovered_hosts/_selected_hosts.html.erb +1 -1
- data/app/views/discovered_hosts/index.html.erb +0 -2
- data/app/views/discovered_hosts/multiple_auto_provision.html.erb +4 -0
- data/app/views/discovered_hosts/multiple_reboot.html.erb +4 -0
- data/app/views/discovered_hosts/show.html.erb +27 -15
- data/app/views/discovery_rules/_form.html.erb +9 -3
- data/app/views/discovery_rules/edit.html.erb +1 -1
- data/app/views/discovery_rules/index.html.erb +2 -2
- data/app/views/foreman_discovery/debian_kexec.erb +1 -1
- data/app/views/foreman_discovery/redhat_kexec.erb +1 -1
- data/config/as_deprecation_whitelist.yaml +395 -0
- data/config/routes.rb +7 -5
- data/db/migrate/20171222120314_add_constraints_on_discovery_rules_hostgroups.rb +10 -0
- data/db/migrate/20180412124505_add_priority_score_to_discovery_rules.rb +24 -0
- data/extra/discover-host +7 -5
- data/extra/discovery/simple-bond.json +167 -0
- data/lib/foreman_discovery/engine.rb +9 -3
- data/lib/foreman_discovery/version.rb +1 -1
- data/locale/ca/LC_MESSAGES/foreman_discovery.mo +0 -0
- data/locale/ca/foreman_discovery.edit.po +148 -221
- data/locale/ca/foreman_discovery.po +25 -19
- data/locale/de/LC_MESSAGES/foreman_discovery.mo +0 -0
- data/locale/de/foreman_discovery.edit.po +147 -221
- data/locale/de/foreman_discovery.po +26 -20
- data/locale/en/foreman_discovery.edit.po +106 -98
- data/locale/en/foreman_discovery.po +24 -18
- data/locale/en_GB/LC_MESSAGES/foreman_discovery.mo +0 -0
- data/locale/en_GB/foreman_discovery.edit.po +149 -222
- data/locale/en_GB/foreman_discovery.po +26 -20
- data/locale/es/LC_MESSAGES/foreman_discovery.mo +0 -0
- data/locale/es/foreman_discovery.edit.po +149 -222
- data/locale/es/foreman_discovery.po +26 -20
- data/locale/foreman_discovery.pot +115 -103
- data/locale/fr/LC_MESSAGES/foreman_discovery.mo +0 -0
- data/locale/fr/foreman_discovery.edit.po +147 -221
- data/locale/fr/foreman_discovery.po +26 -20
- data/locale/gl/foreman_discovery.edit.po +147 -220
- data/locale/gl/foreman_discovery.po +24 -18
- data/locale/it/LC_MESSAGES/foreman_discovery.mo +0 -0
- data/locale/it/foreman_discovery.edit.po +148 -221
- data/locale/it/foreman_discovery.po +25 -19
- data/locale/ja/LC_MESSAGES/foreman_discovery.mo +0 -0
- data/locale/ja/foreman_discovery.edit.po +149 -222
- data/locale/ja/foreman_discovery.po +26 -20
- data/locale/ko/LC_MESSAGES/foreman_discovery.mo +0 -0
- data/locale/ko/foreman_discovery.edit.po +149 -221
- data/locale/ko/foreman_discovery.po +26 -20
- data/locale/pt_BR/LC_MESSAGES/foreman_discovery.mo +0 -0
- data/locale/pt_BR/foreman_discovery.edit.po +149 -222
- data/locale/pt_BR/foreman_discovery.po +26 -20
- data/locale/ru/LC_MESSAGES/foreman_discovery.mo +0 -0
- data/locale/ru/foreman_discovery.edit.po +152 -223
- data/locale/ru/foreman_discovery.po +26 -20
- data/locale/sv_SE/LC_MESSAGES/foreman_discovery.mo +0 -0
- data/locale/sv_SE/foreman_discovery.edit.po +147 -220
- data/locale/sv_SE/foreman_discovery.po +24 -18
- data/locale/zh_CN/LC_MESSAGES/foreman_discovery.mo +0 -0
- data/locale/zh_CN/foreman_discovery.edit.po +155 -224
- data/locale/zh_CN/foreman_discovery.po +26 -20
- data/locale/zh_TW/LC_MESSAGES/foreman_discovery.mo +0 -0
- data/locale/zh_TW/foreman_discovery.edit.po +151 -222
- data/locale/zh_TW/foreman_discovery.po +26 -20
- data/test/functional/api/v2/discovered_hosts_controller_test.rb +2 -0
- data/test/functional/api/v2/discovery_rules_controller_test.rb +96 -9
- data/test/functional/api/v2/settings_controller_test.rb +22 -0
- data/test/functional/discovered_hosts_controller_test.rb +20 -21
- data/test/functional/discovery_rules_controller_test.rb +5 -4
- data/test/integration/discovered_hosts_test.rb +20 -10
- data/test/models/setting_test.rb +11 -0
- data/test/test_helper_discovery.rb +1 -0
- data/test/unit/discovered_extensions_test.rb +2 -13
- data/test/unit/discovery_rule_test.rb +87 -1
- data/test/unit/fact_parser_test.rb +2 -2
- data/test/unit/host_discovered_test.rb +60 -28
- data/test/unit/ui_notifications/destroy_host_test.rb +14 -4
- data/test/unit/ui_notifications/new_host_test.rb +8 -1
- metadata +22 -4
Binary file
|
@@ -1,7 +1,7 @@
|
|
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_discovery package.
|
4
|
-
#
|
4
|
+
#
|
5
5
|
# Translators:
|
6
6
|
# Claer <transiblu@claer.hammock.fr>, 2013-2016
|
7
7
|
# Pierre-Emmanuel Dutang <dutangp@gmail.com>, 2014,2016-2017
|
@@ -9,7 +9,6 @@ msgid ""
|
|
9
9
|
msgstr ""
|
10
10
|
"Project-Id-Version: foreman_discovery 10.0.0\n"
|
11
11
|
"Report-Msgid-Bugs-To: \n"
|
12
|
-
"POT-Creation-Date: 2017-12-11 10:28+0100\n"
|
13
12
|
"PO-Revision-Date: 2018-01-04 17:08+0000\n"
|
14
13
|
"Last-Translator: Bryan Kearney <bryan.kearney@gmail.com>\n"
|
15
14
|
"Language-Team: French (http://www.transifex.com/foreman/foreman/language/fr/)\n"
|
@@ -23,23 +22,19 @@ msgstr ""
|
|
23
22
|
msgid "List all discovered hosts"
|
24
23
|
msgstr "Lister tous les hôtes détectés"
|
25
24
|
|
26
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:17
|
27
|
-
#: ../app/controllers/api/v2/discovery_rules_controller.rb:15
|
25
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:17 ../app/controllers/api/v2/discovery_rules_controller.rb:15
|
28
26
|
msgid "filter results"
|
29
27
|
msgstr "filtrer les résultats"
|
30
28
|
|
31
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:18
|
32
|
-
#: ../app/controllers/api/v2/discovery_rules_controller.rb:16
|
29
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:18 ../app/controllers/api/v2/discovery_rules_controller.rb:16
|
33
30
|
msgid "sort results"
|
34
31
|
msgstr "trier les resultats"
|
35
32
|
|
36
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:19
|
37
|
-
#: ../app/controllers/api/v2/discovery_rules_controller.rb:17
|
33
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:19 ../app/controllers/api/v2/discovery_rules_controller.rb:17
|
38
34
|
msgid "paginate results"
|
39
35
|
msgstr "paginer les resultats"
|
40
36
|
|
41
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:20
|
42
|
-
#: ../app/controllers/api/v2/discovery_rules_controller.rb:18
|
37
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:20 ../app/controllers/api/v2/discovery_rules_controller.rb:18
|
43
38
|
msgid "number of entries per request"
|
44
39
|
msgstr "nombre de résultats par requête"
|
45
40
|
|
@@ -47,8 +42,7 @@ msgstr "nombre de résultats par requête"
|
|
47
42
|
msgid "Show a discovered host"
|
48
43
|
msgstr "Afficher un hôte détecté"
|
49
44
|
|
50
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:37
|
51
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:79
|
45
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:37 ../app/controllers/api/v2/discovered_hosts_controller.rb:79
|
52
46
|
msgid "DHCP filename option (Grub2 or PXELinux by default)"
|
53
47
|
msgstr "Option nom de fichier DHCP (Grub2 ou PXELinux par défaut)"
|
54
48
|
|
@@ -69,14 +63,11 @@ msgid "not required if it's a virtual machine"
|
|
69
63
|
msgstr "n'est pas requis s'il s'agit d'une machine virtuelle"
|
70
64
|
|
71
65
|
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:76
|
72
|
-
msgid ""
|
73
|
-
"UUID to track orchestration tasks status, GET /api/orchestration/:UUID/tasks"
|
66
|
+
msgid "UUID to track orchestration tasks status, GET /api/orchestration/:UUID/tasks"
|
74
67
|
msgstr "UUID pour surveiller l'état des tâches d'orchestration : GET /api/orchestration/:UUID/tasks"
|
75
68
|
|
76
69
|
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:78
|
77
|
-
msgid ""
|
78
|
-
"required if value is not inherited from host group or default password in "
|
79
|
-
"settings"
|
70
|
+
msgid "required if value is not inherited from host group or default password in settings"
|
80
71
|
msgstr "requis si la valeur n'est pas héritée d'un groupe d'hôtes ou du mot de passe par défaut défini dans les paramètres généraux"
|
81
72
|
|
82
73
|
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:89
|
@@ -88,62 +79,54 @@ msgid "Upload facts for a host, creating the host if required"
|
|
88
79
|
msgstr "Télécharge les facts d'un hôte, créé l'hôte si besoin"
|
89
80
|
|
90
81
|
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:97
|
91
|
-
msgid ""
|
92
|
-
"hash containing facts for the host with minimum set of facts: "
|
93
|
-
"discovery_bootif, macaddress_eth0, ipaddress, ipaddress_eth0, interfaces: "
|
94
|
-
"eth0 (example in case primary interface is named eth0)"
|
82
|
+
msgid "hash containing facts for the host with minimum set of facts: discovery_bootif, macaddress_eth0, ipaddress, ipaddress_eth0, interfaces: eth0 (example in case primary interface is named eth0)"
|
95
83
|
msgstr "hash contenant a minima les facts suivants pour l'hôte : discovery_bootif, macaddress_eth0, ipaddress, ipaddress_eth0, interfaces: eth0 (exemple dans le cas d'une interface primaire nommée eth0)"
|
96
84
|
|
97
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:
|
85
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:116
|
98
86
|
msgid "Execute rules against a discovered host"
|
99
87
|
msgstr "Appliquer les règles à un hôte détecté"
|
100
88
|
|
101
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:
|
102
|
-
#: ../app/controllers/discovered_hosts_controller.rb:150
|
89
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:122 ../app/controllers/discovered_hosts_controller.rb:159
|
103
90
|
msgid "Host %{host} was provisioned with rule %{rule}"
|
104
91
|
msgstr "L'hôte %{host} a été provisionné avec la règle %{rule}"
|
105
92
|
|
106
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:
|
93
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:125
|
107
94
|
msgid "Unable to provision %{host}: %{errors}"
|
108
95
|
msgstr "Impossible d'installer %{host}: %{errors}"
|
109
96
|
|
110
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:
|
111
|
-
#: ../app/controllers/discovered_hosts_controller.rb:157
|
97
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:131 ../app/controllers/discovered_hosts_controller.rb:166
|
112
98
|
msgid "No rule found for host %s"
|
113
99
|
msgstr "Aucune règle trouvée pour l'hôte %s"
|
114
100
|
|
115
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:
|
101
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:138
|
116
102
|
msgid "Execute rules against all currently discovered hosts"
|
117
103
|
msgstr "Appliquer les règles à tous les hôtes détectés"
|
118
104
|
|
119
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:
|
120
|
-
#: ../app/controllers/discovered_hosts_controller.rb:163
|
105
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:142 ../app/controllers/discovered_hosts_controller.rb:172
|
121
106
|
msgid "Errors during auto provisioning: %s"
|
122
107
|
msgstr "Erreurs lors de l'auto-provisioning : %s"
|
123
108
|
|
124
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:
|
125
|
-
#: ../app/controllers/discovered_hosts_controller.rb:166
|
109
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:145 ../app/controllers/discovered_hosts_controller.rb:175
|
126
110
|
msgid "No discovered hosts to provision"
|
127
111
|
msgstr "Aucun hôte détecté à provisionner"
|
128
112
|
|
129
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:
|
113
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:167
|
130
114
|
msgid "%s discovered hosts were provisioned"
|
131
115
|
msgstr "%s hôtes détectés ont été déployés"
|
132
116
|
|
133
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:
|
117
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:178
|
134
118
|
msgid "Refreshing the facts of a discovered host"
|
135
119
|
msgstr "Actualiser les facts d'un hôte détecté"
|
136
120
|
|
137
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:
|
121
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:187
|
138
122
|
msgid "Rebooting a discovered host"
|
139
123
|
msgstr "Redémarrer un hôte détecté"
|
140
124
|
|
141
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:
|
125
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:196
|
142
126
|
msgid "Rebooting all discovered hosts"
|
143
127
|
msgstr "Redémarrer tous les hôtes détectés"
|
144
128
|
|
145
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:
|
146
|
-
#: ../app/controllers/discovered_hosts_controller.rb:125
|
129
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:207 ../app/controllers/discovered_hosts_controller.rb:128
|
147
130
|
msgid "Discovered hosts are rebooting now"
|
148
131
|
msgstr "Les hôtes détectés sont en train de redémarrer"
|
149
132
|
|
@@ -168,8 +151,7 @@ msgid "the hostgroup that is used to auto provision a host"
|
|
168
151
|
msgstr "le groupe d'hôtes qui est utilisé pour l'auto provisioning d'un hôte"
|
169
152
|
|
170
153
|
#: ../app/controllers/api/v2/discovery_rules_controller.rb:35
|
171
|
-
msgid ""
|
172
|
-
"defines a pattern to assign human-readable hostnames to the matching hosts"
|
154
|
+
msgid "defines a pattern to assign human-readable hostnames to the matching hosts"
|
173
155
|
msgstr "défini un modèle pour assigner des noms d'hôtes humainement lisibles aux hôtes qui correspondent"
|
174
156
|
|
175
157
|
#: ../app/controllers/api/v2/discovery_rules_controller.rb:36
|
@@ -177,8 +159,7 @@ msgid "enables to limit maximum amount of provisioned hosts per rule"
|
|
177
159
|
msgstr "active la limite maximale d'hôtes qui peuvent être provisionnés par règle"
|
178
160
|
|
179
161
|
#: ../app/controllers/api/v2/discovery_rules_controller.rb:37
|
180
|
-
msgid ""
|
181
|
-
"puts the rules in order, low numbers go first. Must be greater then zero"
|
162
|
+
msgid "puts the rules in order, low numbers go first. Must be greater then zero"
|
182
163
|
msgstr "positionne les règles dans l'ordre, les numéros les plus faibles en premier. Doit être supérieur à zéro"
|
183
164
|
|
184
165
|
#: ../app/controllers/api/v2/discovery_rules_controller.rb:38
|
@@ -225,95 +206,95 @@ msgstr "Erreurs pendant le redémarrage : %s"
|
|
225
206
|
msgid "No discovered hosts to reboot"
|
226
207
|
msgstr "Aucun hôte détecté à redémarrer"
|
227
208
|
|
228
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
209
|
+
#: ../app/controllers/discovered_hosts_controller.rb:63
|
229
210
|
msgid "Successfully provisioned %s"
|
230
211
|
msgstr "Succès du provisioning pour %s"
|
231
212
|
|
232
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
213
|
+
#: ../app/controllers/discovered_hosts_controller.rb:96
|
233
214
|
msgid "Facts refreshed for %s"
|
234
215
|
msgstr "Facts actualisés pour %s"
|
235
216
|
|
236
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
217
|
+
#: ../app/controllers/discovered_hosts_controller.rb:98
|
237
218
|
msgid "Failed to refresh facts for %s"
|
238
219
|
msgstr "Échec d'actualisation des facts pour %s"
|
239
220
|
|
240
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
221
|
+
#: ../app/controllers/discovered_hosts_controller.rb:101
|
241
222
|
msgid "Failed to refresh facts for %{hostname} with error %{error_message}"
|
242
223
|
msgstr "Échec d'actualisation des facts pour %{hostname} avec l'erreur %{error_message}"
|
243
224
|
|
244
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
225
|
+
#: ../app/controllers/discovered_hosts_controller.rb:108
|
245
226
|
msgid "Host of type %s can not be rebooted"
|
246
227
|
msgstr "L'hôte de type %s ne peut pas redémarrer"
|
247
228
|
|
248
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
229
|
+
#: ../app/controllers/discovered_hosts_controller.rb:112
|
249
230
|
msgid "Rebooting host %s"
|
250
231
|
msgstr "Redémarrage de l'hôte %s"
|
251
232
|
|
252
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
233
|
+
#: ../app/controllers/discovered_hosts_controller.rb:114
|
253
234
|
msgid "Failed to reboot host %s"
|
254
235
|
msgstr "Échec de redémarrage de l'hôte : %s"
|
255
236
|
|
256
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
237
|
+
#: ../app/controllers/discovered_hosts_controller.rb:117
|
257
238
|
msgid "Failed to reboot host %{hostname} with error %{error_message}"
|
258
239
|
msgstr "Échec de redémarrage de l'hôte %{hostname} avec l'erreur %{error_message}"
|
259
240
|
|
260
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
241
|
+
#: ../app/controllers/discovered_hosts_controller.rb:131
|
261
242
|
msgid "Failed to reboot hosts with error %s"
|
262
243
|
msgstr "Échec de redémarrage des hôtes avec l'erreur %s"
|
263
244
|
|
264
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
245
|
+
#: ../app/controllers/discovered_hosts_controller.rb:149
|
265
246
|
msgid "Destroyed selected hosts"
|
266
247
|
msgstr "Hôtes sélectionnés détruits"
|
267
248
|
|
268
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
249
|
+
#: ../app/controllers/discovered_hosts_controller.rb:151
|
269
250
|
msgid "The following hosts were not deleted: %s"
|
270
251
|
msgstr "Les hôtes suivants n'ont pas été supprimés : %s"
|
271
252
|
|
272
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
253
|
+
#: ../app/controllers/discovered_hosts_controller.rb:163
|
273
254
|
msgid "Failed to auto provision host %s: %s"
|
274
255
|
msgstr "Échec de l'auto-provisioning de l'hôte %s : %s"
|
275
256
|
|
276
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
257
|
+
#: ../app/controllers/discovered_hosts_controller.rb:191
|
277
258
|
msgid "Discovered hosts are provisioning now"
|
278
259
|
msgstr "Les hôtes détectés sont actuellement en provisioning"
|
279
260
|
|
280
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
261
|
+
#: ../app/controllers/discovered_hosts_controller.rb:223
|
281
262
|
msgid "Highlights"
|
282
263
|
msgstr "Highlights"
|
283
264
|
|
284
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
265
|
+
#: ../app/controllers/discovered_hosts_controller.rb:223
|
285
266
|
msgid "Storage"
|
286
267
|
msgstr "Stockage"
|
287
268
|
|
288
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
269
|
+
#: ../app/controllers/discovered_hosts_controller.rb:223
|
289
270
|
msgid "Hardware"
|
290
271
|
msgstr "Matériel"
|
291
272
|
|
292
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
273
|
+
#: ../app/controllers/discovered_hosts_controller.rb:223
|
293
274
|
msgid "Network"
|
294
275
|
msgstr "Réseau"
|
295
276
|
|
296
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
277
|
+
#: ../app/controllers/discovered_hosts_controller.rb:223
|
297
278
|
msgid "Software"
|
298
279
|
msgstr "Logiciel"
|
299
280
|
|
300
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
281
|
+
#: ../app/controllers/discovered_hosts_controller.rb:223
|
301
282
|
msgid "IPMI"
|
302
283
|
msgstr "IPMI"
|
303
284
|
|
304
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
285
|
+
#: ../app/controllers/discovered_hosts_controller.rb:223
|
305
286
|
msgid "Miscellaneous"
|
306
287
|
msgstr "Divers"
|
307
288
|
|
308
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
289
|
+
#: ../app/controllers/discovered_hosts_controller.rb:301
|
309
290
|
msgid "No hosts were found with that id or name"
|
310
291
|
msgstr "Aucun Hôte trouvé avec cet id ou ce nom"
|
311
292
|
|
312
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
293
|
+
#: ../app/controllers/discovered_hosts_controller.rb:305
|
313
294
|
msgid "No hosts selected"
|
314
295
|
msgstr "Aucun hôte sélectionné"
|
315
296
|
|
316
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
297
|
+
#: ../app/controllers/discovered_hosts_controller.rb:311
|
317
298
|
msgid "Something went wrong while selecting hosts - %s"
|
318
299
|
msgstr "Une erreur s'est produite lors de la sélection des hôtes - %s"
|
319
300
|
|
@@ -329,19 +310,15 @@ msgstr "Règle désactivée"
|
|
329
310
|
msgid "%s ago"
|
330
311
|
msgstr "Il y a %s"
|
331
312
|
|
332
|
-
#: ../app/helpers/discovered_hosts_helper.rb:14
|
333
|
-
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:46
|
313
|
+
#: ../app/helpers/discovered_hosts_helper.rb:14 ../app/helpers/discovered_hosts_helper.rb:29 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:46
|
334
314
|
msgid "Auto Provision"
|
335
315
|
msgstr "Provisionner automatiquement"
|
336
316
|
|
337
|
-
#: ../app/helpers/discovered_hosts_helper.rb:15
|
338
|
-
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:47
|
317
|
+
#: ../app/helpers/discovered_hosts_helper.rb:15 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:47
|
339
318
|
msgid "Refresh facts"
|
340
319
|
msgstr "Actualiser les facts"
|
341
320
|
|
342
|
-
#: ../app/helpers/discovered_hosts_helper.rb:16
|
343
|
-
#: ../app/models/setting/discovered.rb:23
|
344
|
-
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:48
|
321
|
+
#: ../app/helpers/discovered_hosts_helper.rb:16 ../app/helpers/discovered_hosts_helper.rb:30 ../app/models/setting/discovered.rb:23 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:48
|
345
322
|
msgid "Reboot"
|
346
323
|
msgstr "Redémarrer"
|
347
324
|
|
@@ -349,62 +326,51 @@ msgstr "Redémarrer"
|
|
349
326
|
msgid "Back"
|
350
327
|
msgstr "Retour"
|
351
328
|
|
352
|
-
#: ../app/helpers/discovered_hosts_helper.rb:21
|
353
|
-
#: ../app/helpers/discovered_hosts_helper.rb:37
|
329
|
+
#: ../app/helpers/discovered_hosts_helper.rb:21 ../app/helpers/discovered_hosts_helper.rb:35
|
354
330
|
msgid "Select Action"
|
355
331
|
msgstr "Choisir l'action"
|
356
332
|
|
357
|
-
#: ../app/helpers/discovered_hosts_helper.rb:23
|
358
|
-
msgid "Expand All"
|
359
|
-
msgstr "Tout étendre"
|
360
|
-
|
361
|
-
#: ../app/helpers/discovered_hosts_helper.rb:27
|
362
|
-
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:49
|
333
|
+
#: ../app/helpers/discovered_hosts_helper.rb:23 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:49
|
363
334
|
msgid "Delete %s?"
|
364
335
|
msgstr "Supprimer %s ?"
|
365
336
|
|
366
|
-
#: ../app/helpers/discovered_hosts_helper.rb:
|
367
|
-
msgid "Delete hosts"
|
368
|
-
msgstr "Supprimer ces Hôtes"
|
369
|
-
|
370
|
-
#: ../app/helpers/discovered_hosts_helper.rb:34
|
337
|
+
#: ../app/helpers/discovered_hosts_helper.rb:31
|
371
338
|
msgid "Assign Organization"
|
372
339
|
msgstr "Assigner une Organisation"
|
373
340
|
|
374
|
-
#: ../app/helpers/discovered_hosts_helper.rb:
|
341
|
+
#: ../app/helpers/discovered_hosts_helper.rb:32
|
375
342
|
msgid "Assign Location"
|
376
343
|
msgstr "Attribuer un emplacement"
|
377
344
|
|
378
|
-
#: ../app/helpers/discovered_hosts_helper.rb:
|
345
|
+
#: ../app/helpers/discovered_hosts_helper.rb:33
|
346
|
+
msgid "Delete"
|
347
|
+
msgstr ""
|
348
|
+
|
349
|
+
#: ../app/helpers/discovered_hosts_helper.rb:37
|
379
350
|
msgid "%s - The following hosts are about to be changed"
|
380
351
|
msgstr "%s - les hôtes suivants vont être changés"
|
381
352
|
|
382
|
-
#: ../app/helpers/discovered_hosts_helper.rb:
|
383
|
-
#: ../app/views/dashboard/_discovery_widget_host.html.erb:2
|
353
|
+
#: ../app/helpers/discovered_hosts_helper.rb:46 ../app/views/dashboard/_discovery_widget_host.html.erb:2
|
384
354
|
msgid "N/A"
|
385
355
|
msgstr "N/A"
|
386
356
|
|
387
|
-
#: ../app/helpers/discovered_hosts_helper.rb:
|
357
|
+
#: ../app/helpers/discovered_hosts_helper.rb:58
|
388
358
|
msgid "New in the last 24 hours"
|
389
359
|
msgstr "Nouveautés ces dernières 24 heures"
|
390
360
|
|
391
|
-
#: ../app/helpers/discovered_hosts_helper.rb:
|
361
|
+
#: ../app/helpers/discovered_hosts_helper.rb:62
|
392
362
|
msgid "Not reported in more than 7 days"
|
393
363
|
msgstr "Aucun rapport reçu depuis au moins 7 jours"
|
394
364
|
|
395
|
-
#: ../app/helpers/discovered_hosts_helper.rb:
|
365
|
+
#: ../app/helpers/discovered_hosts_helper.rb:66
|
396
366
|
msgid "Reported in the last 7 days"
|
397
367
|
msgstr "Rapports reçus dans les 7 derniers jours"
|
398
368
|
|
399
|
-
#: ../app/helpers/discovered_hosts_helper.rb:
|
369
|
+
#: ../app/helpers/discovered_hosts_helper.rb:90
|
400
370
|
msgid "Provision"
|
401
371
|
msgstr "Provisionner"
|
402
372
|
|
403
|
-
#: ../app/helpers/discovery_rules_helper.rb:26
|
404
|
-
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:2
|
405
|
-
#: ../app/views/discovered_hosts/welcome.html.erb:1
|
406
|
-
#: ../app/views/discovered_hosts/welcome.html.erb:6
|
407
|
-
#: ../lib/foreman_discovery/engine.rb:166
|
373
|
+
#: ../app/helpers/discovery_rules_helper.rb:26 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:2 ../app/views/discovered_hosts/welcome.html.erb:1 ../app/views/discovered_hosts/welcome.html.erb:6 ../lib/foreman_discovery/engine.rb:173
|
408
374
|
msgid "Discovered Hosts"
|
409
375
|
msgstr "Hôtes détectés"
|
410
376
|
|
@@ -440,66 +406,59 @@ msgstr "Vous devez spécifier un utilisateur avec l'option mail active"
|
|
440
406
|
msgid "Discovered hosts summary"
|
441
407
|
msgstr "Synthèse des hôtes détectés"
|
442
408
|
|
443
|
-
#: ../app/models/discovery_rule.rb:
|
409
|
+
#: ../app/models/discovery_rule.rb:10
|
444
410
|
msgid "can't contain white spaces."
|
445
411
|
msgstr "ne peut pas contenir d'espaces."
|
446
412
|
|
447
|
-
#: ../app/models/discovery_rule.rb:
|
413
|
+
#: ../app/models/discovery_rule.rb:12
|
448
414
|
msgid "must start with a letter or ERB."
|
449
415
|
msgstr "doit commencer par une lettre ou ERB."
|
450
416
|
|
451
|
-
#: ../app/models/discovery_rule.rb:
|
452
|
-
msgid ""
|
453
|
-
|
454
|
-
|
455
|
-
|
417
|
+
#: ../app/models/discovery_rule.rb:15
|
418
|
+
msgid "must be present."
|
419
|
+
msgstr ""
|
420
|
+
|
421
|
+
#: ../app/models/discovery_rule.rb:48
|
422
|
+
msgid "Host group organization %s must also be associated to the discovery rule"
|
423
|
+
msgid_plural "Host group organizations %s must also be associated to the discovery rule"
|
456
424
|
msgstr[0] "L'organisation %s du groupe d'hôtes doivent aussi être associés à la règle de détection"
|
457
425
|
msgstr[1] "Les organisations %s du groupe d'hôtes doivent aussi être associés à la règle de détection"
|
458
426
|
|
459
|
-
#: ../app/models/discovery_rule.rb:
|
427
|
+
#: ../app/models/discovery_rule.rb:54
|
460
428
|
msgid "Host group location %s must also be associated to the discovery rule"
|
461
|
-
msgid_plural ""
|
462
|
-
"Host group locations %s must also be associated to the discovery rule"
|
429
|
+
msgid_plural "Host group locations %s must also be associated to the discovery rule"
|
463
430
|
msgstr[0] "L'emplacement %s du groupe d'hôtes doivent aussi être associés à la règle de détection"
|
464
431
|
msgstr[1] "Les emplacements %s du groupe d'hôtes doivent aussi être associés à la règle de détection"
|
465
432
|
|
466
|
-
#: ../app/models/host/discovered.rb:
|
433
|
+
#: ../app/models/host/discovered.rb:51
|
467
434
|
msgid "Invalid facts, must be a Hash"
|
468
435
|
msgstr "Facts non valides, doit être un hash"
|
469
436
|
|
470
|
-
#: ../app/models/host/discovered.rb:
|
471
|
-
msgid ""
|
472
|
-
"Expected discovery_fact '%s' is missing, unable to detect primary interface "
|
473
|
-
"and set hostname"
|
437
|
+
#: ../app/models/host/discovered.rb:56
|
438
|
+
msgid "Expected discovery_fact '%s' is missing, unable to detect primary interface and set hostname"
|
474
439
|
msgstr "Le discovery_fact '%s' attendu est manquant, il n'est pas possible de détecter l'interface primaire ni de positionner le nom d'hôte"
|
475
440
|
|
476
|
-
#: ../app/models/host/discovered.rb:
|
477
|
-
msgid ""
|
478
|
-
"Invalid facts: hash does not contain a valid value for any of the facts in "
|
479
|
-
"the discovery_hostname setting: %s"
|
441
|
+
#: ../app/models/host/discovered.rb:63
|
442
|
+
msgid "Invalid facts: hash does not contain a valid value for any of the facts in the discovery_hostname setting: %s"
|
480
443
|
msgstr "Facts invalides : le hash ne contient de valeur valide pour aucun des facts du paramètre discovery_hostname : %s"
|
481
444
|
|
482
|
-
#: ../app/models/host/discovered.rb:
|
445
|
+
#: ../app/models/host/discovered.rb:89
|
483
446
|
msgid "Facts could not be imported"
|
484
447
|
msgstr "Impossible d'importer les facts"
|
485
448
|
|
486
|
-
#: ../app/models/host/discovered.rb:
|
487
|
-
msgid "Unable to assign subnet, primary interface is missing IP address"
|
488
|
-
msgstr "Impossible d'assigner le sous-réseau, l'interface primaire n'a pas d'adresse IP"
|
489
|
-
|
490
|
-
#: ../app/models/host/discovered.rb:190
|
449
|
+
#: ../app/models/host/discovered.rb:212
|
491
450
|
msgid "Could not get facts from proxy %{url}: %{error}"
|
492
451
|
msgstr "Impossible de récupérer les facts depuis le proxy %{url} : %{error}"
|
493
452
|
|
494
|
-
#: ../app/models/host/discovered.rb:
|
453
|
+
#: ../app/models/host/discovered.rb:220
|
495
454
|
msgid "Unable to reboot %{name} via %{url}: %{msg}"
|
496
455
|
msgstr "Impossible de redémarrer %{name} via %{url}: %{msg}"
|
497
456
|
|
498
|
-
#: ../app/models/host/discovered.rb:
|
457
|
+
#: ../app/models/host/discovered.rb:228
|
499
458
|
msgid "Unable to perform kexec on %{name} via %{url}: %{msg}"
|
500
459
|
msgstr "Impossible de lancer kexec sur %{name} via %{url}: %{msg}"
|
501
460
|
|
502
|
-
#: ../app/models/host/discovered.rb:
|
461
|
+
#: ../app/models/host/discovered.rb:247
|
503
462
|
msgid "Invalid hostname: Could not normalize the hostname"
|
504
463
|
msgstr "Nom d'hôte invalide : impossible de normaliser le nom de l'hôte"
|
505
464
|
|
@@ -552,9 +511,7 @@ msgid "Hostname facts"
|
|
552
511
|
msgstr "Facts de l'hôte"
|
553
512
|
|
554
513
|
#: ../app/models/setting/discovered.rb:22
|
555
|
-
msgid ""
|
556
|
-
"Automatically provision newly discovered hosts, according to the "
|
557
|
-
"provisioning rules"
|
514
|
+
msgid "Automatically provision newly discovered hosts, according to the provisioning rules"
|
558
515
|
msgstr "Provisioning automatique des hôtes détectés récemment, selon les règles de provisioning"
|
559
516
|
|
560
517
|
#: ../app/models/setting/discovered.rb:22
|
@@ -630,9 +587,7 @@ msgid "IPMI facts"
|
|
630
587
|
msgstr "Facts IPMI"
|
631
588
|
|
632
589
|
#: ../app/models/setting/discovered.rb:32
|
633
|
-
msgid ""
|
634
|
-
"Automatically generate PXE configuration to pin a newly discovered host to "
|
635
|
-
"discovery"
|
590
|
+
msgid "Automatically generate PXE configuration to pin a newly discovered host to discovery"
|
636
591
|
msgstr "Générer automatiquement la configuration PXE d'un nouvel hôte détecté pour qu'il reste en mode détecté"
|
637
592
|
|
638
593
|
#: ../app/models/setting/discovered.rb:32
|
@@ -671,27 +626,41 @@ msgstr "Forcer la création des entrées DNS lors de la découvert d'hôtes"
|
|
671
626
|
msgid "Force DNS"
|
672
627
|
msgstr "Focer le DNS"
|
673
628
|
|
674
|
-
#: ../app/models/setting/discovered.rb:
|
629
|
+
#: ../app/models/setting/discovered.rb:37
|
630
|
+
msgid "Do not allow to discover existing managed host matching MAC of a provisioning NIC (errors out early)"
|
631
|
+
msgstr ""
|
632
|
+
|
633
|
+
#: ../app/models/setting/discovered.rb:37
|
634
|
+
msgid "Error on existing NIC"
|
635
|
+
msgstr ""
|
636
|
+
|
637
|
+
#: ../app/models/setting/discovered.rb:44
|
675
638
|
msgid "The default location to place discovered hosts in"
|
676
639
|
msgstr "Emplacement par défaut sur lequel placer les hôtes détectés"
|
677
640
|
|
678
|
-
#: ../app/models/setting/discovered.rb:
|
641
|
+
#: ../app/models/setting/discovered.rb:44
|
679
642
|
msgid "Discovery location"
|
680
643
|
msgstr "Emplacement des hôtes détectés"
|
681
644
|
|
682
|
-
#: ../app/models/setting/discovered.rb:
|
645
|
+
#: ../app/models/setting/discovered.rb:52
|
683
646
|
msgid "The default organization to place discovered hosts in"
|
684
647
|
msgstr "Organisation par défaut sur laquelle placer les hôtes détectés"
|
685
648
|
|
686
|
-
#: ../app/models/setting/discovered.rb:
|
649
|
+
#: ../app/models/setting/discovered.rb:52
|
687
650
|
msgid "Discovery organization"
|
688
651
|
msgstr "Organisation des hôtes détectés"
|
689
652
|
|
690
|
-
#: ../app/services/foreman_discovery/fact_parser.rb:
|
691
|
-
msgid ""
|
692
|
-
|
693
|
-
|
694
|
-
|
653
|
+
#: ../app/services/foreman_discovery/fact_parser.rb:4
|
654
|
+
msgid "Discovery fact parser does not work with non-discovery host '%{host}'"
|
655
|
+
msgstr ""
|
656
|
+
|
657
|
+
#: ../app/services/foreman_discovery/fact_parser.rb:6
|
658
|
+
msgid "Discovered host '%{host}' has all NICs filtered out, filter: %{filter}"
|
659
|
+
msgstr ""
|
660
|
+
|
661
|
+
#: ../app/services/foreman_discovery/fact_parser.rb:12
|
662
|
+
msgid "Unable to find primary NIC with %{mac} specified via '%{fact}', NIC filter: %{filter}"
|
663
|
+
msgstr ""
|
695
664
|
|
696
665
|
#: ../app/services/foreman_discovery/node_api/node_resource.rb:75
|
697
666
|
msgid "Image API returned HTTP/%{code} with '%{body}"
|
@@ -709,25 +678,15 @@ msgstr "Aucun hôte détecté disponible"
|
|
709
678
|
msgid "Host"
|
710
679
|
msgstr "Hôte"
|
711
680
|
|
712
|
-
#: ../app/views/dashboard/_discovery_widget_host_list.html.erb:4
|
713
|
-
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:7
|
714
|
-
#: ../app/views/discovered_hosts/_selected_hosts.html.erb:8
|
715
|
-
#: ../app/views/discovered_mailer/discovered_summary.html.erb:18
|
716
|
-
#: ../app/views/discovered_mailer/discovered_summary.text.erb:10
|
681
|
+
#: ../app/views/dashboard/_discovery_widget_host_list.html.erb:4 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:7 ../app/views/discovered_hosts/_selected_hosts.html.erb:8 ../app/views/discovered_mailer/discovered_summary.html.erb:18 ../app/views/discovered_mailer/discovered_summary.text.erb:10
|
717
682
|
msgid "Model"
|
718
683
|
msgstr "Modèle"
|
719
684
|
|
720
|
-
#: ../app/views/dashboard/_discovery_widget_host_list.html.erb:5
|
721
|
-
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:9
|
722
|
-
#: ../app/views/discovered_mailer/discovered_summary.html.erb:20
|
723
|
-
#: ../app/views/discovered_mailer/discovered_summary.text.erb:12
|
685
|
+
#: ../app/views/dashboard/_discovery_widget_host_list.html.erb:5 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:9 ../app/views/discovered_mailer/discovered_summary.html.erb:20 ../app/views/discovered_mailer/discovered_summary.text.erb:12
|
724
686
|
msgid "CPUs"
|
725
687
|
msgstr "CPU"
|
726
688
|
|
727
|
-
#: ../app/views/dashboard/_discovery_widget_host_list.html.erb:6
|
728
|
-
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:10
|
729
|
-
#: ../app/views/discovered_mailer/discovered_summary.html.erb:21
|
730
|
-
#: ../app/views/discovered_mailer/discovered_summary.text.erb:13
|
689
|
+
#: ../app/views/dashboard/_discovery_widget_host_list.html.erb:6 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:10 ../app/views/discovered_mailer/discovered_summary.html.erb:21 ../app/views/discovered_mailer/discovered_summary.text.erb:13
|
731
690
|
msgid "Memory"
|
732
691
|
msgstr "Mémoire"
|
733
692
|
|
@@ -747,16 +706,11 @@ msgstr "Sélectionner tous les éléments de cette page"
|
|
747
706
|
msgid "items selected. Uncheck to Clear"
|
748
707
|
msgstr "items sélectionnés. Décocher pour Effacer"
|
749
708
|
|
750
|
-
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:6
|
751
|
-
#: ../app/views/discovered_hosts/_selected_hosts.html.erb:7
|
752
|
-
#: ../app/views/discovered_mailer/discovered_summary.html.erb:17
|
753
|
-
#: ../app/views/discovered_mailer/discovered_summary.text.erb:9
|
709
|
+
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:6 ../app/views/discovered_hosts/_selected_hosts.html.erb:7 ../app/views/discovered_mailer/discovered_summary.html.erb:17 ../app/views/discovered_mailer/discovered_summary.text.erb:9
|
754
710
|
msgid "Name"
|
755
711
|
msgstr "Nom"
|
756
712
|
|
757
|
-
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:8
|
758
|
-
#: ../app/views/discovered_mailer/discovered_summary.html.erb:19
|
759
|
-
#: ../app/views/discovered_mailer/discovered_summary.text.erb:11
|
713
|
+
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:8 ../app/views/discovered_mailer/discovered_summary.html.erb:19 ../app/views/discovered_mailer/discovered_summary.text.erb:11
|
760
714
|
msgid "IP Address"
|
761
715
|
msgstr "Adresses IP"
|
762
716
|
|
@@ -768,13 +722,11 @@ msgstr "Nombre de disques"
|
|
768
722
|
msgid "Disks Size"
|
769
723
|
msgstr "Taille des disques"
|
770
724
|
|
771
|
-
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:17
|
772
|
-
#: ../app/views/discovered_hosts/_selected_hosts.html.erb:10
|
725
|
+
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:17 ../app/views/discovered_hosts/_selected_hosts.html.erb:10
|
773
726
|
msgid "Location"
|
774
727
|
msgstr "Emplacement"
|
775
728
|
|
776
|
-
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:20
|
777
|
-
#: ../app/views/discovered_hosts/_selected_hosts.html.erb:13
|
729
|
+
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:20 ../app/views/discovered_hosts/_selected_hosts.html.erb:13
|
778
730
|
msgid "Organization"
|
779
731
|
msgstr "Organisation"
|
780
732
|
|
@@ -802,18 +754,8 @@ msgstr "Valider"
|
|
802
754
|
msgid "Provision %s"
|
803
755
|
msgstr "Provisionner %s"
|
804
756
|
|
805
|
-
#: ../app/views/discovered_hosts/index.html.erb:2
|
806
|
-
msgid "Reboot All"
|
807
|
-
msgstr "Tout redémarrer"
|
808
|
-
|
809
|
-
#: ../app/views/discovered_hosts/index.html.erb:3
|
810
|
-
msgid "Auto Provision All"
|
811
|
-
msgstr "Tout provisionner automatiquement"
|
812
|
-
|
813
757
|
#: ../app/views/discovered_hosts/multiple_destroy.html.erb:3
|
814
|
-
msgid ""
|
815
|
-
"This might take a while, as all hosts, facts and reports will be destroyed "
|
816
|
-
"as well"
|
758
|
+
msgid "This might take a while, as all hosts, facts and reports will be destroyed as well"
|
817
759
|
msgstr "Cette action peut prendre un certain temps, car tous les hôtes, rapports et facts vont également être supprimés."
|
818
760
|
|
819
761
|
#: ../app/views/discovered_hosts/select_multiple_location.html.erb:5
|
@@ -828,34 +770,36 @@ msgstr "Sélectionner une organisation"
|
|
828
770
|
msgid "Discovered host: %s"
|
829
771
|
msgstr "Hôtes détectés : %s"
|
830
772
|
|
831
|
-
#: ../app/views/discovered_hosts/show.html.erb:
|
773
|
+
#: ../app/views/discovered_hosts/show.html.erb:37
|
832
774
|
msgid "Interfaces"
|
833
775
|
msgstr "Interfaces"
|
834
776
|
|
835
|
-
#: ../app/views/discovered_hosts/show.html.erb:
|
777
|
+
#: ../app/views/discovered_hosts/show.html.erb:44
|
836
778
|
msgid "Type"
|
837
779
|
msgstr "Type"
|
838
780
|
|
839
|
-
#: ../app/views/discovered_hosts/show.html.erb:
|
781
|
+
#: ../app/views/discovered_hosts/show.html.erb:45
|
840
782
|
msgid "Identifier"
|
841
783
|
msgstr "Identifiant"
|
842
784
|
|
843
|
-
#: ../app/views/discovered_hosts/show.html.erb:
|
785
|
+
#: ../app/views/discovered_hosts/show.html.erb:46
|
844
786
|
msgid "MAC address"
|
845
787
|
msgstr "Adresse MAC"
|
846
788
|
|
847
|
-
#: ../app/views/discovered_hosts/show.html.erb:
|
789
|
+
#: ../app/views/discovered_hosts/show.html.erb:47
|
848
790
|
msgid "IP address"
|
849
791
|
msgstr "Adresses IP"
|
850
792
|
|
793
|
+
#: ../app/views/discovered_hosts/show.html.erb:66
|
794
|
+
msgid "Collapse All"
|
795
|
+
msgstr ""
|
796
|
+
|
851
797
|
#: ../app/views/discovered_hosts/welcome.html.erb:7
|
852
798
|
msgid "No discovered hosts found in this context."
|
853
799
|
msgstr ""
|
854
800
|
|
855
801
|
#: ../app/views/discovered_hosts/welcome.html.erb:8
|
856
|
-
msgid ""
|
857
|
-
"This page shows discovered bare-metal or virtual nodes waiting to be "
|
858
|
-
"provisioned."
|
802
|
+
msgid "This page shows discovered bare-metal or virtual nodes waiting to be provisioned."
|
859
803
|
msgstr ""
|
860
804
|
|
861
805
|
#: ../app/views/discovered_hosts/welcome.html.erb:9
|
@@ -870,23 +814,19 @@ msgstr "Rapport de synthèse des hôtes détectés depuis Foreman"
|
|
870
814
|
msgid "<b>Foreman</b> Discovered hosts summary"
|
871
815
|
msgstr "<b>Foreman</b> Rapport des hôtes détectés"
|
872
816
|
|
873
|
-
#: ../app/views/discovered_mailer/discovered_summary.html.erb:10
|
874
|
-
#: ../app/views/discovered_mailer/discovered_summary.text.erb:5
|
817
|
+
#: ../app/views/discovered_mailer/discovered_summary.html.erb:10 ../app/views/discovered_mailer/discovered_summary.text.erb:5
|
875
818
|
msgid "Summary from %{time} ago to %{now}"
|
876
819
|
msgstr "Rapport depuis il y a %{time} à %{now}"
|
877
820
|
|
878
|
-
#: ../app/views/discovered_mailer/discovered_summary.html.erb:11
|
879
|
-
#: ../app/views/discovered_mailer/discovered_summary.text.erb:3
|
821
|
+
#: ../app/views/discovered_mailer/discovered_summary.html.erb:11 ../app/views/discovered_mailer/discovered_summary.text.erb:3
|
880
822
|
msgid "Discovered hosts from Foreman server at %{foreman_url}"
|
881
823
|
msgstr "Hôtes détectés depuis le serveur Foreman en %{foreman_url}"
|
882
824
|
|
883
|
-
#: ../app/views/discovered_mailer/discovered_summary.html.erb:22
|
884
|
-
#: ../app/views/discovered_mailer/discovered_summary.text.erb:14
|
825
|
+
#: ../app/views/discovered_mailer/discovered_summary.html.erb:22 ../app/views/discovered_mailer/discovered_summary.text.erb:14
|
885
826
|
msgid "Disk count"
|
886
827
|
msgstr "Nombre de disques"
|
887
828
|
|
888
|
-
#: ../app/views/discovered_mailer/discovered_summary.html.erb:23
|
889
|
-
#: ../app/views/discovered_mailer/discovered_summary.text.erb:15
|
829
|
+
#: ../app/views/discovered_mailer/discovered_summary.html.erb:23 ../app/views/discovered_mailer/discovered_summary.text.erb:15
|
890
830
|
msgid "Disks size"
|
891
831
|
msgstr "Taille des disques"
|
892
832
|
|
@@ -935,38 +875,28 @@ msgid "Rule priority (lower integer means higher priority)"
|
|
935
875
|
msgstr "Priorité de la règle (plus les entiers sont petits et plus la priorité est importante)"
|
936
876
|
|
937
877
|
#: ../app/views/discovery_rules/_template_inline.erb:2
|
938
|
-
msgid ""
|
939
|
-
"Specify target hostname template pattern in the same syntax as in "
|
940
|
-
"Provisioning Templates (ERB)."
|
878
|
+
msgid "Specify target hostname template pattern in the same syntax as in Provisioning Templates (ERB)."
|
941
879
|
msgstr "Indiquez le modèle du nom d'hôte cible dans la même syntaxe que dans les Modèles de provisioning (ERB)."
|
942
880
|
|
943
881
|
#: ../app/views/discovery_rules/_template_inline.erb:4
|
944
|
-
msgid ""
|
945
|
-
"Domain will be appended automatically. A hostname based on MAC address will "
|
946
|
-
"be used when left blank."
|
882
|
+
msgid "Domain will be appended automatically. A hostname based on MAC address will be used when left blank."
|
947
883
|
msgstr "Le domaine sera ajouté automatiquement. Un nom d'hôte basé sur une adresse MAC sera utilisé si le champ est laissé vide. "
|
948
884
|
|
949
885
|
#: ../app/views/discovery_rules/_template_inline.erb:5
|
950
|
-
msgid ""
|
951
|
-
"In addition to @host attribute function rand for random integers is "
|
952
|
-
"available. Examples:"
|
886
|
+
msgid "In addition to @host attribute function rand for random integers is available. Examples:"
|
953
887
|
msgstr "Outre l'attribut @host, la fonction « rand » pour des nombres entiers aléatoires est disponible. Ex. :"
|
954
888
|
|
955
889
|
#: ../app/views/discovery_rules/_template_inline.erb:8
|
956
|
-
msgid ""
|
957
|
-
"When creating hostname patterns, make sure the resulting host names are "
|
958
|
-
"unique."
|
890
|
+
msgid "When creating hostname patterns, make sure the resulting host names are unique."
|
959
891
|
msgstr "Lors de la création de modèles de noms d'hôtes, veuillez vous assurer que les noms d'hôtes générés sont uniques."
|
960
892
|
|
961
893
|
#: ../app/views/discovery_rules/_template_inline.erb:9
|
962
|
-
msgid ""
|
963
|
-
"Hostnames must not start with numbers. A good approach is to use unique "
|
964
|
-
"information provided by facter (MAC address, BIOS or serial ID)."
|
894
|
+
msgid "Hostnames must not start with numbers. A good approach is to use unique information provided by facter (MAC address, BIOS or serial ID)."
|
965
895
|
msgstr "Les noms d'hôtes ne peuvent pas commencer par un chiffre. Il est conseillé d'utiliser des informations uniques fournies par facter (adresse MAC, BIOS ou numéro de série)."
|
966
896
|
|
967
897
|
#: ../app/views/discovery_rules/edit.html.erb:1
|
968
|
-
msgid "Edit
|
969
|
-
msgstr "
|
898
|
+
msgid "Edit %s"
|
899
|
+
msgstr ""
|
970
900
|
|
971
901
|
#: ../app/views/discovery_rules/index.html.erb:1
|
972
902
|
msgid "Discovery Rules"
|
@@ -1020,30 +950,26 @@ msgstr "Un ou plusieurs hôtes ont été détectés"
|
|
1020
950
|
msgid "Details"
|
1021
951
|
msgstr "Détails"
|
1022
952
|
|
1023
|
-
#: ../lib/foreman_discovery/engine.rb:
|
953
|
+
#: ../lib/foreman_discovery/engine.rb:158
|
1024
954
|
msgid "Discovered hosts"
|
1025
955
|
msgstr "Hôtes détectés"
|
1026
956
|
|
1027
|
-
#: ../lib/foreman_discovery/engine.rb:
|
957
|
+
#: ../lib/foreman_discovery/engine.rb:163
|
1028
958
|
msgid "Discovery rules"
|
1029
959
|
msgstr "Règles de détection"
|
1030
960
|
|
1031
|
-
#: ../lib/foreman_discovery/engine.rb:
|
961
|
+
#: ../lib/foreman_discovery/engine.rb:179
|
1032
962
|
msgid "Discovery Kexec template"
|
1033
963
|
msgstr "Modèle Kexec de détection"
|
1034
964
|
|
1035
|
-
#: ../lib/foreman_discovery/engine.rb:
|
965
|
+
#: ../lib/foreman_discovery/engine.rb:188
|
1036
966
|
msgid "Discovery Proxy"
|
1037
967
|
msgstr "Proxy de dévouverte"
|
1038
968
|
|
1039
|
-
#: ../lib/foreman_discovery/engine.rb:
|
1040
|
-
msgid ""
|
1041
|
-
"Discovery Proxy to use within this subnet for managing connection to "
|
1042
|
-
"discovered hosts"
|
969
|
+
#: ../lib/foreman_discovery/engine.rb:189
|
970
|
+
msgid "Discovery Proxy to use within this subnet for managing connection to discovered hosts"
|
1043
971
|
msgstr "Proxy de découverte à utilisé à l'interieur de ce sous-reseaux pour gérer les connexion des hôtes découverts."
|
1044
972
|
|
1045
|
-
#: ../lib/foreman_discovery/engine.rb:
|
1046
|
-
msgid ""
|
1047
|
-
"ID of Discovery Proxy to use within this subnet for managing connection to "
|
1048
|
-
"discovered hosts"
|
973
|
+
#: ../lib/foreman_discovery/engine.rb:190
|
974
|
+
msgid "ID of Discovery Proxy to use within this subnet for managing connection to discovered hosts"
|
1049
975
|
msgstr "ID du proxy de découverte à utiliser à l'interieur de ce sous-reseaux pour gérer les connexion des hôtes découverts."
|