foreman_discovery 16.0.0 → 16.3.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (86) hide show
  1. checksums.yaml +4 -4
  2. data/app/controllers/api/v2/discovered_hosts_controller.rb +24 -11
  3. data/app/controllers/api/v2/discovery_rules_controller.rb +1 -1
  4. data/app/controllers/discovered_hosts_controller.rb +5 -3
  5. data/app/controllers/discovery_rules_controller.rb +1 -1
  6. data/app/models/discovery_rule.rb +1 -1
  7. data/app/models/host/discovered.rb +52 -34
  8. data/app/models/host/managed_extensions.rb +2 -2
  9. data/app/models/setting/discovered.rb +3 -1
  10. data/app/services/foreman_discovery/host_converter.rb +15 -7
  11. data/app/services/foreman_discovery/host_fact_importer.rb +10 -0
  12. data/app/services/foreman_discovery/import_hooks/subnet_and_taxonomy.rb +2 -0
  13. data/app/services/foreman_discovery/node_api/node_resource.rb +1 -0
  14. data/app/views/api/v2/discovery_rules/create.json.rabl +3 -0
  15. data/app/views/discovered_hosts/_discovered_host_modal.html.erb +0 -2
  16. data/app/views/discovered_hosts/welcome.html.erb +15 -9
  17. data/app/views/discovery_rules/index.html.erb +1 -1
  18. data/app/views/foreman_discovery/debian_kexec.erb +3 -2
  19. data/app/views/foreman_discovery/redhat_kexec.erb +2 -1
  20. data/db/migrate/20150512150432_remove_old_discovery_reader_permissions.rb +1 -1
  21. data/db/migrate/20151023144501_regenerate_red_hat_kexec.rb +1 -1
  22. data/db/migrate/20180412124505_add_priority_score_to_discovery_rules.rb +1 -1
  23. data/extra/discover-host +14 -8
  24. data/lib/foreman_discovery/engine.rb +5 -4
  25. data/lib/foreman_discovery/version.rb +1 -1
  26. data/locale/ca/LC_MESSAGES/foreman_discovery.mo +0 -0
  27. data/locale/ca/foreman_discovery.edit.po +195 -252
  28. data/locale/ca/foreman_discovery.po +40 -17
  29. data/locale/de/LC_MESSAGES/foreman_discovery.mo +0 -0
  30. data/locale/de/foreman_discovery.edit.po +201 -257
  31. data/locale/de/foreman_discovery.po +46 -23
  32. data/locale/en/LC_MESSAGES/foreman_discovery.mo +0 -0
  33. data/locale/en/foreman_discovery.edit.po +141 -111
  34. data/locale/en/foreman_discovery.po +36 -13
  35. data/locale/en_GB/LC_MESSAGES/foreman_discovery.mo +0 -0
  36. data/locale/en_GB/foreman_discovery.edit.po +205 -254
  37. data/locale/en_GB/foreman_discovery.po +42 -19
  38. data/locale/es/LC_MESSAGES/foreman_discovery.mo +0 -0
  39. data/locale/es/foreman_discovery.edit.po +209 -258
  40. data/locale/es/foreman_discovery.po +46 -23
  41. data/locale/foreman_discovery.pot +150 -117
  42. data/locale/fr/LC_MESSAGES/foreman_discovery.mo +0 -0
  43. data/locale/fr/foreman_discovery.edit.po +203 -255
  44. data/locale/fr/foreman_discovery.po +44 -21
  45. data/locale/gl/LC_MESSAGES/foreman_discovery.mo +0 -0
  46. data/locale/gl/foreman_discovery.edit.po +190 -250
  47. data/locale/gl/foreman_discovery.po +38 -15
  48. data/locale/it/LC_MESSAGES/foreman_discovery.mo +0 -0
  49. data/locale/it/foreman_discovery.edit.po +193 -253
  50. data/locale/it/foreman_discovery.po +41 -18
  51. data/locale/ja/LC_MESSAGES/foreman_discovery.mo +0 -0
  52. data/locale/ja/foreman_discovery.edit.po +207 -256
  53. data/locale/ja/foreman_discovery.po +44 -21
  54. data/locale/ko/LC_MESSAGES/foreman_discovery.mo +0 -0
  55. data/locale/ko/foreman_discovery.edit.po +196 -255
  56. data/locale/ko/foreman_discovery.po +44 -21
  57. data/locale/pt_BR/LC_MESSAGES/foreman_discovery.mo +0 -0
  58. data/locale/pt_BR/foreman_discovery.edit.po +205 -256
  59. data/locale/pt_BR/foreman_discovery.po +44 -21
  60. data/locale/ru/LC_MESSAGES/foreman_discovery.mo +0 -0
  61. data/locale/ru/foreman_discovery.edit.po +199 -257
  62. data/locale/ru/foreman_discovery.po +44 -21
  63. data/locale/sv_SE/LC_MESSAGES/foreman_discovery.mo +0 -0
  64. data/locale/sv_SE/foreman_discovery.edit.po +190 -250
  65. data/locale/sv_SE/foreman_discovery.po +38 -15
  66. data/locale/zh_CN/LC_MESSAGES/foreman_discovery.mo +0 -0
  67. data/locale/zh_CN/foreman_discovery.edit.po +207 -256
  68. data/locale/zh_CN/foreman_discovery.po +44 -21
  69. data/locale/zh_TW/LC_MESSAGES/foreman_discovery.mo +0 -0
  70. data/locale/zh_TW/foreman_discovery.edit.po +196 -254
  71. data/locale/zh_TW/foreman_discovery.po +42 -19
  72. data/package.json +39 -0
  73. data/test/facts/only-ipv6.json +205 -0
  74. data/test/facts/skylake-ipv6.json +223 -0
  75. data/test/functional/api/v2/settings_controller_test.rb +2 -2
  76. data/test/functional/discovered_hosts_controller_test.rb +16 -7
  77. data/test/functional/discovery_rules_controller_test.rb +1 -1
  78. data/test/unit/discovered_extensions_test.rb +6 -1
  79. data/test/unit/host_discovered_test.rb +0 -16
  80. data/test/unit/managed_extensions_test.rb +1 -0
  81. data/webpack/index.js +18 -0
  82. data/webpack/src/ForemanDiscovery/DiscoveredHosts/Components/EmptyState/EmptyState.js +28 -0
  83. data/webpack/src/ForemanDiscovery/DiscoveredHosts/Components/EmptyState/index.js +1 -0
  84. data/webpack/src/ForemanDiscovery/DiscoveredHosts/index.js +6 -0
  85. data/webpack/src/reducers.js +7 -0
  86. metadata +42 -28
@@ -1,18 +1,17 @@
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
  # Baptiste Agasse <baptiste.agasse@gmail.com>, 2018-2019
7
7
  # Claer <transiblu@claer.hammock.fr>, 2013-2016
8
8
  # Pierre-Emmanuel Dutang <dutangp@gmail.com>, 2014,2016-2017
9
9
  msgid ""
10
10
  msgstr ""
11
- "Project-Id-Version: foreman_discovery 15.1.0\n"
11
+ "Project-Id-Version: foreman_discovery 16.2.0\n"
12
12
  "Report-Msgid-Bugs-To: \n"
13
- "POT-Creation-Date: 2019-10-22 11:55+0200\n"
14
- "PO-Revision-Date: 2019-10-22 20:43+0000\n"
15
- "Last-Translator: Baptiste Agasse <baptiste.agasse@gmail.com>\n"
13
+ "PO-Revision-Date: 2020-05-26 17:21+0000\n"
14
+ "Last-Translator: Transifex Bot <>\n"
16
15
  "Language-Team: French (http://www.transifex.com/foreman/foreman/language/fr/)\n"
17
16
  "MIME-Version: 1.0\n"
18
17
  "Content-Type: text/plain; charset=UTF-8\n"
@@ -24,23 +23,19 @@ msgstr ""
24
23
  msgid "List all discovered hosts"
25
24
  msgstr "Afficher tous les hôtes détectés"
26
25
 
27
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:17
28
- #: ../app/controllers/api/v2/discovery_rules_controller.rb:15
26
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:17 ../app/controllers/api/v2/discovery_rules_controller.rb:15
29
27
  msgid "filter results"
30
28
  msgstr "filtrer les résultats"
31
29
 
32
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:18
33
- #: ../app/controllers/api/v2/discovery_rules_controller.rb:16
30
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:18 ../app/controllers/api/v2/discovery_rules_controller.rb:16
34
31
  msgid "sort results"
35
32
  msgstr "trier les résultats"
36
33
 
37
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:19
38
- #: ../app/controllers/api/v2/discovery_rules_controller.rb:17
34
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:19 ../app/controllers/api/v2/discovery_rules_controller.rb:17
39
35
  msgid "paginate results"
40
36
  msgstr "paginer les résultats"
41
37
 
42
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:20
43
- #: ../app/controllers/api/v2/discovery_rules_controller.rb:18
38
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:20 ../app/controllers/api/v2/discovery_rules_controller.rb:18
44
39
  msgid "number of entries per request"
45
40
  msgstr "nombre d'entrées par requête"
46
41
 
@@ -48,8 +43,7 @@ msgstr "nombre d'entrées par requête"
48
43
  msgid "Show a discovered host"
49
44
  msgstr "Afficher un hôte détecté"
50
45
 
51
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:37
52
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:79
46
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:37 ../app/controllers/api/v2/discovered_hosts_controller.rb:85
53
47
  msgid "DHCP filename option (Grub2 or PXELinux by default)"
54
48
  msgstr "Option nom de fichier DHCP (Grub2 ou PXELinux par défaut)"
55
49
 
@@ -61,6 +55,10 @@ msgstr "Créer un hôte détecté pour le test (utiliser /facts pour créer des
61
55
  msgid "Provision a discovered host"
62
56
  msgstr "Provisionner un hôte détecté"
63
57
 
58
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:54 ../app/controllers/api/v2/discovered_hosts_controller.rb:57 ../app/controllers/api/v2/discovered_hosts_controller.rb:58 ../app/controllers/api/v2/discovered_hosts_controller.rb:61 ../app/controllers/api/v2/discovered_hosts_controller.rb:64
59
+ msgid "required if host is managed and value is not inherited from host group"
60
+ msgstr ""
61
+
64
62
  #: ../app/controllers/api/v2/discovered_hosts_controller.rb:55
65
63
  msgid "not required if using a subnet with DHCP proxy"
66
64
  msgstr "n'est pas requis s'il s'agit d'un sous-réseau avec un proxy DHCP"
@@ -69,82 +67,99 @@ msgstr "n'est pas requis s'il s'agit d'un sous-réseau avec un proxy DHCP"
69
67
  msgid "not required if it's a virtual machine"
70
68
  msgstr "non requis s'il s'agit d'une machine virtuelle"
71
69
 
72
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:76
73
- msgid ""
74
- "UUID to track orchestration tasks status, GET /api/orchestration/:UUID/tasks"
70
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:62
71
+ msgid "required if not imaged based provisioning and host is managed and value is not inherited from host group"
72
+ msgstr ""
73
+
74
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:63
75
+ msgid "required if host is managed and custom partition has not been defined"
76
+ msgstr ""
77
+
78
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:69
79
+ msgid "Host's owner type"
80
+ msgstr ""
81
+
82
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:72
83
+ msgid "Host's parameters (array or indexed hash)"
84
+ msgstr ""
85
+
86
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:73
87
+ msgid "Name of the parameter"
88
+ msgstr ""
89
+
90
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:74
91
+ msgid "Parameter value"
92
+ msgstr ""
93
+
94
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:75
95
+ msgid "Type of value"
96
+ msgstr ""
97
+
98
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:82
99
+ msgid "UUID to track orchestration tasks status, GET /api/orchestration/:UUID/tasks"
75
100
  msgstr "UUID pour surveiller l'état des tâches d'orchestration : GET /api/orchestration/:UUID/tasks"
76
101
 
77
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:78
78
- msgid ""
79
- "required if value is not inherited from host group or default password in "
80
- "settings"
102
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:84
103
+ msgid "required if value is not inherited from host group or default password in settings"
81
104
  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"
82
105
 
83
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:89
106
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:95
84
107
  msgid "Delete a discovered host"
85
108
  msgstr "Supprimer un hôte détecté"
86
109
 
87
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:96
110
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:102
88
111
  msgid "Upload facts for a host, creating the host if required"
89
112
  msgstr "Télécharger les faits d'un hôte, création de l'hôte si besoin"
90
113
 
91
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:97
92
- msgid ""
93
- "hash containing facts for the host with minimum set of facts: "
94
- "discovery_bootif, macaddress_eth0, ipaddress, ipaddress_eth0, interfaces: "
95
- "eth0 (example in case primary interface is named eth0)"
114
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:103
115
+ 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)"
96
116
  msgstr "hachage contenant les facts de l'hôte avec un ensemble minimal de facts : discovery_bootif, macaddress_eth0, ipaddress, ipaddress_eth0, interfaces: eth0 (exemple si l'interface principale s'appelle eth0)"
97
117
 
98
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:116
118
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:129
99
119
  msgid "Execute rules against a discovered host"
100
120
  msgstr "Exécuter les règles sur un hôte détecté"
101
121
 
102
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:122
103
- #: ../app/controllers/discovered_hosts_controller.rb:160
122
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:135 ../app/controllers/discovered_hosts_controller.rb:160
104
123
  msgid "Host %{host} was provisioned with rule %{rule}"
105
124
  msgstr "L'hôte %{host} a été provisionné avec la règle %{rule}"
106
125
 
107
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:125
126
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:138
108
127
  msgid "Unable to provision %{host}: %{errors}"
109
128
  msgstr "Impossible de provisionner %{host} : %{errors}"
110
129
 
111
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:131
112
- #: ../app/controllers/discovered_hosts_controller.rb:167
130
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:144 ../app/controllers/discovered_hosts_controller.rb:167
113
131
  msgid "No rule found for host %s"
114
132
  msgstr "Aucune règle trouvée pour %s"
115
133
 
116
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:138
134
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:151
117
135
  msgid "Execute rules against all currently discovered hosts"
118
136
  msgstr "Exécuter les règles sur tous les hôtes actuellement détectés"
119
137
 
120
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:142
121
- #: ../app/controllers/discovered_hosts_controller.rb:173
138
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:155 ../app/controllers/discovered_hosts_controller.rb:173
122
139
  msgid "Errors during auto provisioning: %s"
123
140
  msgstr "Erreurs lors du provisioning automatique : %s"
124
141
 
125
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:145
126
- #: ../app/controllers/discovered_hosts_controller.rb:176
142
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:158 ../app/controllers/discovered_hosts_controller.rb:176
127
143
  msgid "No discovered hosts to provision"
128
144
  msgstr "Aucun hôte détecté à provisionner"
129
145
 
130
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:167
146
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:180
131
147
  msgid "%s discovered hosts were provisioned"
132
148
  msgstr "%s hôtes détectés ont été provisionnés"
133
149
 
134
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:178
150
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:191
135
151
  msgid "Refreshing the facts of a discovered host"
136
152
  msgstr "Actualisation des facts d'un hôte détecté"
137
153
 
138
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:187
154
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:200
139
155
  msgid "Rebooting a discovered host"
140
156
  msgstr "Redémarrage d'un hôte détecté"
141
157
 
142
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:196
158
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:209
143
159
  msgid "Rebooting all discovered hosts"
144
160
  msgstr "Redémarrage de tous les hôtes détectés"
145
161
 
146
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:207
147
- #: ../app/controllers/discovered_hosts_controller.rb:129
162
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:220 ../app/controllers/discovered_hosts_controller.rb:129
148
163
  msgid "Discovered hosts are rebooting now"
149
164
  msgstr "Les hôtes détectés sont redémarrés maintenant"
150
165
 
@@ -169,8 +184,7 @@ msgid "the hostgroup that is used to auto provision a host"
169
184
  msgstr "groupe d'hôtes utilisé pour provisionner automatiquement un hôte"
170
185
 
171
186
  #: ../app/controllers/api/v2/discovery_rules_controller.rb:35
172
- msgid ""
173
- "defines a pattern to assign human-readable hostnames to the matching hosts"
187
+ msgid "defines a pattern to assign human-readable hostnames to the matching hosts"
174
188
  msgstr "définit un modèle pour attribuer les noms d'hôte lisibles par l'homme aux hôtes correspondants"
175
189
 
176
190
  #: ../app/controllers/api/v2/discovery_rules_controller.rb:36
@@ -178,8 +192,7 @@ msgid "enables to limit maximum amount of provisioned hosts per rule"
178
192
  msgstr "permet de limiter le nombre maximal d'hôtes provisionnés par règle"
179
193
 
180
194
  #: ../app/controllers/api/v2/discovery_rules_controller.rb:37
181
- msgid ""
182
- "puts the rules in order, low numbers go first. Must be greater then zero"
195
+ msgid "puts the rules in order, low numbers go first. Must be greater then zero"
183
196
  msgstr "range les règles par ordre croissant. Doit être supérieur à zéro"
184
197
 
185
198
  #: ../app/controllers/api/v2/discovery_rules_controller.rb:38
@@ -278,43 +291,43 @@ msgstr "Échec du provisioning automatique de l'hôte %s: %s"
278
291
  msgid "Discovered hosts are provisioning now"
279
292
  msgstr "Les hôtes détectés sont maintenant provisionnés"
280
293
 
281
- #: ../app/controllers/discovered_hosts_controller.rb:224
294
+ #: ../app/controllers/discovered_hosts_controller.rb:226
282
295
  msgid "Highlights"
283
296
  msgstr "Surlignages"
284
297
 
285
- #: ../app/controllers/discovered_hosts_controller.rb:224
298
+ #: ../app/controllers/discovered_hosts_controller.rb:226
286
299
  msgid "Storage"
287
300
  msgstr "Stockage"
288
301
 
289
- #: ../app/controllers/discovered_hosts_controller.rb:224
302
+ #: ../app/controllers/discovered_hosts_controller.rb:226
290
303
  msgid "Hardware"
291
304
  msgstr "Matériel"
292
305
 
293
- #: ../app/controllers/discovered_hosts_controller.rb:224
306
+ #: ../app/controllers/discovered_hosts_controller.rb:226
294
307
  msgid "Network"
295
308
  msgstr "Réseau"
296
309
 
297
- #: ../app/controllers/discovered_hosts_controller.rb:224
310
+ #: ../app/controllers/discovered_hosts_controller.rb:226
298
311
  msgid "Software"
299
312
  msgstr "Logiciel"
300
313
 
301
- #: ../app/controllers/discovered_hosts_controller.rb:224
314
+ #: ../app/controllers/discovered_hosts_controller.rb:226
302
315
  msgid "IPMI"
303
316
  msgstr "IPMI "
304
317
 
305
- #: ../app/controllers/discovered_hosts_controller.rb:224
318
+ #: ../app/controllers/discovered_hosts_controller.rb:226
306
319
  msgid "Miscellaneous"
307
320
  msgstr "Divers"
308
321
 
309
- #: ../app/controllers/discovered_hosts_controller.rb:302
322
+ #: ../app/controllers/discovered_hosts_controller.rb:304
310
323
  msgid "No hosts were found with that id or name"
311
324
  msgstr "Aucun Hôte trouvé avec cet id ou ce nom"
312
325
 
313
- #: ../app/controllers/discovered_hosts_controller.rb:306
326
+ #: ../app/controllers/discovered_hosts_controller.rb:308
314
327
  msgid "No hosts selected"
315
328
  msgstr "Aucun hôte sélectionné"
316
329
 
317
- #: ../app/controllers/discovered_hosts_controller.rb:312
330
+ #: ../app/controllers/discovered_hosts_controller.rb:314
318
331
  msgid "Something went wrong while selecting hosts - %s"
319
332
  msgstr "Quelque chose s'est mal passé lors de la sélection des hôtes - %s"
320
333
 
@@ -330,21 +343,15 @@ msgstr "Règle désactivée"
330
343
  msgid "%s ago"
331
344
  msgstr "Il y a %s"
332
345
 
333
- #: ../app/helpers/discovered_hosts_helper.rb:14
334
- #: ../app/helpers/discovered_hosts_helper.rb:29
335
- #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:37
346
+ #: ../app/helpers/discovered_hosts_helper.rb:14 ../app/helpers/discovered_hosts_helper.rb:29 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:37
336
347
  msgid "Auto Provision"
337
348
  msgstr "Provisionner automatiquement"
338
349
 
339
- #: ../app/helpers/discovered_hosts_helper.rb:15
340
- #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:38
350
+ #: ../app/helpers/discovered_hosts_helper.rb:15 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:38
341
351
  msgid "Refresh facts"
342
352
  msgstr "Rafraichir les facts"
343
353
 
344
- #: ../app/helpers/discovered_hosts_helper.rb:16
345
- #: ../app/helpers/discovered_hosts_helper.rb:30
346
- #: ../app/models/setting/discovered.rb:22
347
- #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:39
354
+ #: ../app/helpers/discovered_hosts_helper.rb:16 ../app/helpers/discovered_hosts_helper.rb:30 ../app/models/setting/discovered.rb:24 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:39
348
355
  msgid "Reboot"
349
356
  msgstr "Redémarrer"
350
357
 
@@ -352,13 +359,11 @@ msgstr "Redémarrer"
352
359
  msgid "Back"
353
360
  msgstr "Retour"
354
361
 
355
- #: ../app/helpers/discovered_hosts_helper.rb:21
356
- #: ../app/helpers/discovered_hosts_helper.rb:35
362
+ #: ../app/helpers/discovered_hosts_helper.rb:21 ../app/helpers/discovered_hosts_helper.rb:35
357
363
  msgid "Select Action"
358
364
  msgstr "Choisir l'action"
359
365
 
360
- #: ../app/helpers/discovered_hosts_helper.rb:23
361
- #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:40
366
+ #: ../app/helpers/discovered_hosts_helper.rb:23 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:40
362
367
  msgid "Delete %s?"
363
368
  msgstr "Supprimer %s ?"
364
369
 
@@ -378,8 +383,7 @@ msgstr "Supprimer"
378
383
  msgid "%s - The following hosts are about to be changed"
379
384
  msgstr "%s - les hôtes suivants vont être changés"
380
385
 
381
- #: ../app/helpers/discovered_hosts_helper.rb:46
382
- #: ../app/views/dashboard/_discovery_widget_host.html.erb:2
386
+ #: ../app/helpers/discovered_hosts_helper.rb:46 ../app/views/dashboard/_discovery_widget_host.html.erb:2
383
387
  msgid "N/A"
384
388
  msgstr "N/A"
385
389
 
@@ -399,12 +403,7 @@ msgstr "Signalé au cours des 7 derniers jours"
399
403
  msgid "Provision"
400
404
  msgstr "Provisionner"
401
405
 
402
- #: ../app/helpers/discovery_rules_helper.rb:26
403
- #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:1
404
- #: ../app/views/discovered_hosts/welcome.html.erb:1
405
- #: ../app/views/discovered_hosts/welcome.html.erb:6
406
- #: ../lib/foreman_discovery/engine.rb:158
407
- #: ../lib/foreman_discovery/engine.rb:173
406
+ #: ../app/helpers/discovery_rules_helper.rb:26 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:1 ../app/views/discovered_hosts/welcome.html.erb:8 ../lib/foreman_discovery/engine.rb:159 ../lib/foreman_discovery/engine.rb:174
408
407
  msgid "Discovered Hosts"
409
408
  msgstr "Hôtes détectés"
410
409
 
@@ -453,17 +452,14 @@ msgid "must be present."
453
452
  msgstr "doit être présent."
454
453
 
455
454
  #: ../app/models/discovery_rule.rb:52
456
- msgid ""
457
- "Host group organization %s must also be associated to the discovery rule"
458
- msgid_plural ""
459
- "Host group organizations %s must also be associated to the discovery rule"
455
+ msgid "Host group organization %s must also be associated to the discovery rule"
456
+ msgid_plural "Host group organizations %s must also be associated to the discovery rule"
460
457
  msgstr[0] "L'organisation %s du groupe d'hôtes doit aussi être associée à la règle de découverte"
461
458
  msgstr[1] "Les organisations %s du groupe d'hôtes doivent aussi être associées à la règle de découverte"
462
459
 
463
460
  #: ../app/models/discovery_rule.rb:56
464
461
  msgid "Host group location %s must also be associated to the discovery rule"
465
- msgid_plural ""
466
- "Host group locations %s must also be associated to the discovery rule"
462
+ msgid_plural "Host group locations %s must also be associated to the discovery rule"
467
463
  msgstr[0] "L'emplacement %s du groupe d'hôtes doit aussi être associé à la règle de découverte"
468
464
  msgstr[1] "Les emplacements %s du groupe d'hôtes doivent aussi être associés à la règle de découverte"
469
465
 
@@ -479,39 +475,39 @@ msgstr "Nom aléatoire"
479
475
  msgid "MAC-based name"
480
476
  msgstr "Nom basé MAC"
481
477
 
482
- #: ../app/models/host/discovered.rb:51
478
+ #: ../app/models/host/discovered.rb:55
483
479
  msgid "Invalid facts, must be a Hash"
484
480
  msgstr "Facts non valides, doit être un hachage"
485
481
 
486
- #: ../app/models/host/discovered.rb:56
487
- msgid ""
488
- "Expected discovery_fact '%s' is missing, unable to detect primary interface "
489
- "and set hostname"
482
+ #: ../app/models/host/discovered.rb:60
483
+ msgid "Expected discovery_fact '%s' is missing, unable to detect primary interface and set hostname"
490
484
  msgstr "discovery_fact '%s' attendu manquant. Impossible de détecter l'interface principale et de définir le nom d'hôte"
491
485
 
492
- #: ../app/models/host/discovered.rb:69
493
- msgid ""
494
- "Invalid facts: hash does not contain a valid value for any of the facts in "
495
- "the discovery_hostname setting: %s"
486
+ #: ../app/models/host/discovered.rb:73
487
+ msgid "Invalid facts: hash does not contain a valid value for any of the facts in the discovery_hostname setting: %s"
496
488
  msgstr "Facts non valides : le hachage ne contient pas de valeur valide pour les facts du paramètre discovery_hostname : %s"
497
489
 
498
- #: ../app/models/host/discovered.rb:95
490
+ #: ../app/models/host/discovered.rb:100
499
491
  msgid "Facts could not be imported"
500
492
  msgstr "Impossible d'importer les facts"
501
493
 
502
- #: ../app/models/host/discovered.rb:150
494
+ #: ../app/models/host/discovered.rb:146
503
495
  msgid "Could not get facts from proxy %{url}: %{error}"
504
496
  msgstr "Impossible d'obtenir les facts du proxy %{url} : %{error}"
505
497
 
506
- #: ../app/models/host/discovered.rb:158
507
- msgid "Unable to reboot %{name} via %{url}: %{msg}"
508
- msgstr "Impossible de redémarrer %{name} via %{url} : %{msg}"
498
+ #: ../app/models/host/discovered.rb:160
499
+ msgid "Unable to perform reboot on %{name} (%{url}): %{msg}"
500
+ msgstr ""
501
+
502
+ #: ../app/models/host/discovered.rb:164 ../app/models/host/discovered.rb:183
503
+ msgid "Unable to perform %{action} on %{ips}"
504
+ msgstr ""
509
505
 
510
- #: ../app/models/host/discovered.rb:166
511
- msgid "Unable to perform kexec on %{name} via %{url}: %{msg}"
512
- msgstr "Impossible d'exécuter kexec sur %{name} via %{url} : %{msg}"
506
+ #: ../app/models/host/discovered.rb:179
507
+ msgid "Unable to perform kexec on %{name} (%{url}): %{msg}"
508
+ msgstr ""
513
509
 
514
- #: ../app/models/host/discovered.rb:185
510
+ #: ../app/models/host/discovered.rb:203
515
511
  msgid "Invalid hostname: Could not normalize the hostname"
516
512
  msgstr "Nom d'hôte non valide. Impossible de normaliser le nom d'hôte"
517
513
 
@@ -539,191 +535,183 @@ msgstr "URL kexec RAM d'initialisation non valide : '%s'"
539
535
  msgid "Rebuild DNS for %s"
540
536
  msgstr "Reconstruire DNS pour %s"
541
537
 
542
- #: ../app/models/setting/discovered.rb:15
538
+ #: ../app/models/setting/discovered.rb:17
543
539
  msgid "The default location to place discovered hosts in"
544
540
  msgstr "Attribution de la localisation par défaut pour les hôtes détectés"
545
541
 
546
- #: ../app/models/setting/discovered.rb:15
542
+ #: ../app/models/setting/discovered.rb:17
547
543
  msgid "Discovery location"
548
544
  msgstr "Emplacement de détection"
549
545
 
550
- #: ../app/models/setting/discovered.rb:16
546
+ #: ../app/models/setting/discovered.rb:18
551
547
  msgid "The default organization to place discovered hosts in"
552
548
  msgstr "Attribution de l'organisation par défaut pour les hôtes détectés"
553
549
 
554
- #: ../app/models/setting/discovered.rb:16
550
+ #: ../app/models/setting/discovered.rb:18
555
551
  msgid "Discovery organization"
556
552
  msgstr "Organisation de détection"
557
553
 
558
- #: ../app/models/setting/discovered.rb:17
554
+ #: ../app/models/setting/discovered.rb:19
559
555
  msgid "Fact name to use for primary interface detection"
560
556
  msgstr "Nom de fact à utiliser pour la détection de l'interface principale"
561
557
 
562
- #: ../app/models/setting/discovered.rb:17
558
+ #: ../app/models/setting/discovered.rb:19
563
559
  msgid "Interface fact"
564
560
  msgstr "Fact d'interface"
565
561
 
566
- #: ../app/models/setting/discovered.rb:18
567
- msgid ""
568
- "Automatic bond interface (if another interface is detected on the same VLAN "
569
- "via LLDP)"
562
+ #: ../app/models/setting/discovered.rb:20
563
+ msgid "Automatic bond interface (if another interface is detected on the same VLAN via LLDP)"
570
564
  msgstr "Interface de liaison automatique (si une autre interface est détectée sur le même VLAN via LLDP)"
571
565
 
572
- #: ../app/models/setting/discovered.rb:18
566
+ #: ../app/models/setting/discovered.rb:20
573
567
  msgid "Create bond interfaces"
574
568
  msgstr "Créer des interfaces de liaison"
575
569
 
576
- #: ../app/models/setting/discovered.rb:19
570
+ #: ../app/models/setting/discovered.rb:21
577
571
  msgid "Clean all reported facts during provisioning (except discovery facts)"
578
572
  msgstr "Nettoyer tous les facts signalés pendant le provisioning (sauf les facts de détection)"
579
573
 
580
- #: ../app/models/setting/discovered.rb:19
574
+ #: ../app/models/setting/discovered.rb:21
581
575
  msgid "Clean all facts"
582
576
  msgstr "Nettoyer tous les facts"
583
577
 
584
- #: ../app/models/setting/discovered.rb:20
578
+ #: ../app/models/setting/discovered.rb:22
585
579
  msgid "List of facts to use for the hostname (separated by comma, first wins)"
586
580
  msgstr "Liste des facts à utiliser pour le nom d'hôte (séparés par une virgule, le premier l'emporte)"
587
581
 
588
- #: ../app/models/setting/discovered.rb:20
582
+ #: ../app/models/setting/discovered.rb:22
589
583
  msgid "Hostname facts"
590
584
  msgstr "Facts du nom d'hôte"
591
585
 
592
- #: ../app/models/setting/discovered.rb:21
593
- msgid ""
594
- "Automatically provision newly discovered hosts, according to the "
595
- "provisioning rules"
586
+ #: ../app/models/setting/discovered.rb:23
587
+ msgid "Automatically provision newly discovered hosts, according to the provisioning rules"
596
588
  msgstr "Provisionner automatiquement les hôtes récemment détectés conformément aux règles de provisioning"
597
589
 
598
- #: ../app/models/setting/discovered.rb:21
590
+ #: ../app/models/setting/discovered.rb:23
599
591
  msgid "Auto provisioning"
600
592
  msgstr "Provisioning automatique"
601
593
 
602
- #: ../app/models/setting/discovered.rb:22
594
+ #: ../app/models/setting/discovered.rb:24
603
595
  msgid "Automatically reboot or kexec discovered host during provisioning"
604
596
  msgstr "Redémarrer automatiquement ou effectuer un kexec sur l'hôte détecté pendant le provisioning"
605
597
 
606
- #: ../app/models/setting/discovered.rb:23
598
+ #: ../app/models/setting/discovered.rb:25
607
599
  msgid "The default prefix to use for the host name, must start with a letter"
608
600
  msgstr "Préfixe par défaut à utiliser pour le nom d'hôte, doit commencer par une lettre"
609
601
 
610
- #: ../app/models/setting/discovered.rb:23
602
+ #: ../app/models/setting/discovered.rb:25
611
603
  msgid "Hostname prefix"
612
604
  msgstr "Préfixe du nom d'hôte"
613
605
 
614
- #: ../app/models/setting/discovered.rb:24
606
+ #: ../app/models/setting/discovered.rb:26
615
607
  msgid "Extra facter columns to show in host lists (separate by comma)"
616
608
  msgstr "Colonnes facter supplémentaires pour un affichage sous forme de listes d'hôtes (séparés par une virgule)"
617
609
 
618
- #: ../app/models/setting/discovered.rb:24
610
+ #: ../app/models/setting/discovered.rb:26
619
611
  msgid "Fact columns"
620
612
  msgstr "Colonnes fact"
621
613
 
622
- #: ../app/models/setting/discovered.rb:25
614
+ #: ../app/models/setting/discovered.rb:27
623
615
  msgid "Regex to organize facts for highlights section - e.g. ^(abc|cde)$"
624
616
  msgstr "Expression régulière pour organiser les facts pour la section surlignages, par ex. ^(abc|cde)$"
625
617
 
626
- #: ../app/models/setting/discovered.rb:25
618
+ #: ../app/models/setting/discovered.rb:27
627
619
  msgid "Highlighted facts"
628
620
  msgstr "Facts surlignés"
629
621
 
630
- #: ../app/models/setting/discovered.rb:26
622
+ #: ../app/models/setting/discovered.rb:28
631
623
  msgid "Regex to organize facts for storage section"
632
624
  msgstr "Expression régulière pour organiser les facts pour la section stockage"
633
625
 
634
- #: ../app/models/setting/discovered.rb:26
626
+ #: ../app/models/setting/discovered.rb:28
635
627
  msgid "Storage facts"
636
628
  msgstr "Facts de stockage"
637
629
 
638
- #: ../app/models/setting/discovered.rb:27
630
+ #: ../app/models/setting/discovered.rb:29
639
631
  msgid "Regex to organize facts for software section"
640
632
  msgstr "Expression régulière pour organiser les facts pour la section logiciel"
641
633
 
642
- #: ../app/models/setting/discovered.rb:27
634
+ #: ../app/models/setting/discovered.rb:29
643
635
  msgid "Software facts"
644
636
  msgstr "Facts logiciels"
645
637
 
646
- #: ../app/models/setting/discovered.rb:28
638
+ #: ../app/models/setting/discovered.rb:30
647
639
  msgid "Regex to organize facts for hardware section"
648
640
  msgstr "Expression régulière pour organiser les facts pour la section matériel"
649
641
 
650
- #: ../app/models/setting/discovered.rb:28
642
+ #: ../app/models/setting/discovered.rb:30
651
643
  msgid "Hardware facts"
652
644
  msgstr "Facts matériels"
653
645
 
654
- #: ../app/models/setting/discovered.rb:29
646
+ #: ../app/models/setting/discovered.rb:31
655
647
  msgid "Regex to organize facts for network section"
656
648
  msgstr "Expression régulière pour organiser les facts pour la section réseau"
657
649
 
658
- #: ../app/models/setting/discovered.rb:29
650
+ #: ../app/models/setting/discovered.rb:31
659
651
  msgid "Network facts"
660
652
  msgstr "Facts réseau"
661
653
 
662
- #: ../app/models/setting/discovered.rb:30
654
+ #: ../app/models/setting/discovered.rb:32
663
655
  msgid "Regex to organize facts for ipmi section"
664
656
  msgstr "Expression régulière pour organiser les facts pour la section ipmi"
665
657
 
666
- #: ../app/models/setting/discovered.rb:30
658
+ #: ../app/models/setting/discovered.rb:32
667
659
  msgid "IPMI facts"
668
660
  msgstr "Facts IPMI"
669
661
 
670
- #: ../app/models/setting/discovered.rb:31
671
- msgid ""
672
- "Automatically generate PXE configuration to pin a newly discovered host to "
673
- "discovery"
662
+ #: ../app/models/setting/discovered.rb:33
663
+ msgid "Automatically generate PXE configuration to pin a newly discovered host to discovery"
674
664
  msgstr "Générer automatiquement la configuration PXE pour épingler un hôte récemment détecté"
675
665
 
676
- #: ../app/models/setting/discovered.rb:31
666
+ #: ../app/models/setting/discovered.rb:33
677
667
  msgid "Lock PXE"
678
668
  msgstr "Verrouiller PXE"
679
669
 
680
- #: ../app/models/setting/discovered.rb:32
670
+ #: ../app/models/setting/discovered.rb:34
681
671
  msgid "PXELinux template to be used when pinning a host to discovery"
682
672
  msgstr "Modèle PXELinux à utiliser lors de l'épinglage d'un hôte pour la détection"
683
673
 
684
- #: ../app/models/setting/discovered.rb:32
674
+ #: ../app/models/setting/discovered.rb:34
685
675
  msgid "Locked PXELinux template name"
686
676
  msgstr "Nom de modèle PXELinux verrouillé"
687
677
 
688
- #: ../app/models/setting/discovered.rb:33
678
+ #: ../app/models/setting/discovered.rb:35
689
679
  msgid "PXEGrub template to be used when pinning a host to discovery"
690
680
  msgstr "Modèle PXEGrub à utiliser lors de l'épinglage d'un hôte pour la détection"
691
681
 
692
- #: ../app/models/setting/discovered.rb:33
682
+ #: ../app/models/setting/discovered.rb:35
693
683
  msgid "Locked PXEGrub template name"
694
684
  msgstr "Nom de modèle PXEGrub verrouillé"
695
685
 
696
- #: ../app/models/setting/discovered.rb:34
686
+ #: ../app/models/setting/discovered.rb:36
697
687
  msgid "PXEGrub2 template to be used when pinning a host to discovery"
698
688
  msgstr "Modèle PXEGrub2 à utiliser lors de l'épinglage d'un hôte pour la détection"
699
689
 
700
- #: ../app/models/setting/discovered.rb:34
690
+ #: ../app/models/setting/discovered.rb:36
701
691
  msgid "Locked PXEGrub2 template name"
702
692
  msgstr "Nom de modèle PXEGrub2 verrouillé"
703
693
 
704
- #: ../app/models/setting/discovered.rb:35
694
+ #: ../app/models/setting/discovered.rb:37
705
695
  msgid "Force DNS entries creation when provisioning discovered host"
706
696
  msgstr "Forcer la création des entrées DNS lors du provisioning de l'hôte détecté"
707
697
 
708
- #: ../app/models/setting/discovered.rb:35
698
+ #: ../app/models/setting/discovered.rb:37
709
699
  msgid "Force DNS"
710
700
  msgstr "Forcer DNS"
711
701
 
712
- #: ../app/models/setting/discovered.rb:36
713
- msgid ""
714
- "Do not allow to discover existing managed host matching MAC of a "
715
- "provisioning NIC (errors out early)"
702
+ #: ../app/models/setting/discovered.rb:38
703
+ msgid "Do not allow to discover existing managed host matching MAC of a provisioning NIC (errors out early)"
716
704
  msgstr "Ne pas autoriser la découverte du MAC correspondant à un hôte géré existant d'une carte réseau de provisionnement (erreurs survenues tôt)"
717
705
 
718
- #: ../app/models/setting/discovered.rb:36
706
+ #: ../app/models/setting/discovered.rb:38
719
707
  msgid "Error on existing NIC"
720
708
  msgstr "Erreur sur une carte réseau existante"
721
709
 
722
- #: ../app/models/setting/discovered.rb:37
710
+ #: ../app/models/setting/discovered.rb:39
723
711
  msgid "Discovery hostname naming pattern"
724
712
  msgstr "Modèle de nommage du nom d'hôte de découverte"
725
713
 
726
- #: ../app/models/setting/discovered.rb:37
714
+ #: ../app/models/setting/discovered.rb:39
727
715
  msgid "Type of name generator"
728
716
  msgstr "Générateur type de nom"
729
717
 
@@ -736,23 +724,27 @@ msgid "Discovered host '%{host}' has all NICs filtered out, filter: %{filter}"
736
724
  msgstr "L'hôte découvert '%{host}' a eu toutes ces interfaces réseau filtrés, filtre: %{filter}"
737
725
 
738
726
  #: ../app/services/foreman_discovery/fact_parser.rb:12
739
- msgid ""
740
- "Unable to find primary NIC with %{mac} specified via '%{fact}', NIC filter: "
741
- "%{filter}"
727
+ msgid "Unable to find primary NIC with %{mac} specified via '%{fact}', NIC filter: %{filter}"
742
728
  msgstr "Impossible de trouver une carte réseau primaire avec %{mac} spécifié via '%{fact}', Filtre de carte réseau: %{filter}"
743
729
 
744
- #: ../app/services/foreman_discovery/host_converter.rb:39
730
+ #: ../app/services/foreman_discovery/host_converter.rb:47
745
731
  msgid "IPAM must be configured for subnet '%s'"
746
732
  msgstr ""
747
733
 
748
- #: ../app/services/foreman_discovery/node_api/node_resource.rb:75
734
+ #: ../app/services/foreman_discovery/node_api/node_resource.rb:76
749
735
  msgid "Image API returned HTTP/%{code} with '%{body}"
750
736
  msgstr "L'API d'image a retourné HTTP/%{code} avec '%{body}"
751
737
 
752
- #: ../app/services/foreman_discovery/node_api/node_resource.rb:78
738
+ #: ../app/services/foreman_discovery/node_api/node_resource.rb:79
753
739
  msgid "Image API processing error: %{msg} (HTTP/%{code}, body: %{body})"
754
740
  msgstr "Erreur de traitement de l'API d'image : %{msg} (HTTP/%{code}, body: %{body})"
755
741
 
742
+ #: ../app/views/dashboard/_discovery_widget.html.erb:5
743
+ msgid "Discovered Host"
744
+ msgid_plural "Discovered Hosts"
745
+ msgstr[0] ""
746
+ msgstr[1] ""
747
+
756
748
  #: ../app/views/dashboard/_discovery_widget.html.erb:9
757
749
  msgid "No discovered hosts available"
758
750
  msgstr "Aucun hôte détecté disponible"
@@ -761,33 +753,23 @@ msgstr "Aucun hôte détecté disponible"
761
753
  msgid "Host"
762
754
  msgstr "Hôte"
763
755
 
764
- #: ../app/views/dashboard/_discovery_widget_host_list.html.erb:4
765
- #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:6
766
- #: ../app/views/discovered_hosts/_selected_hosts.html.erb:8
767
- #: ../app/views/discovered_mailer/discovered_summary.html.erb:18
768
- #: ../app/views/discovered_mailer/discovered_summary.text.erb:10
756
+ #: ../app/views/dashboard/_discovery_widget_host_list.html.erb:4 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:6 ../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
769
757
  msgid "Model"
770
758
  msgstr "Modèle"
771
759
 
772
- #: ../app/views/dashboard/_discovery_widget_host_list.html.erb:5
773
- #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:8
774
- #: ../app/views/discovered_mailer/discovered_summary.html.erb:20
775
- #: ../app/views/discovered_mailer/discovered_summary.text.erb:12
760
+ #: ../app/views/dashboard/_discovery_widget_host_list.html.erb:5 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:8 ../app/views/discovered_mailer/discovered_summary.html.erb:20 ../app/views/discovered_mailer/discovered_summary.text.erb:12
776
761
  msgid "CPUs"
777
762
  msgstr "Processeurs"
778
763
 
779
- #: ../app/views/dashboard/_discovery_widget_host_list.html.erb:6
780
- #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:9
781
- #: ../app/views/discovered_mailer/discovered_summary.html.erb:21
782
- #: ../app/views/discovered_mailer/discovered_summary.text.erb:13
764
+ #: ../app/views/dashboard/_discovery_widget_host_list.html.erb:6 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:9 ../app/views/discovered_mailer/discovered_summary.html.erb:21 ../app/views/discovered_mailer/discovered_summary.text.erb:13
783
765
  msgid "Memory"
784
766
  msgstr "Mémoire"
785
767
 
786
- #: ../app/views/discovered_hosts/_discovered_host_modal.html.erb:25
768
+ #: ../app/views/discovered_hosts/_discovered_host_modal.html.erb:23
787
769
  msgid "Customize Host"
788
770
  msgstr "Personnaliser l'hôte"
789
771
 
790
- #: ../app/views/discovered_hosts/_discovered_host_modal.html.erb:26
772
+ #: ../app/views/discovered_hosts/_discovered_host_modal.html.erb:24
791
773
  msgid "Create Host"
792
774
  msgstr "Créer un hôte"
793
775
 
@@ -799,16 +781,11 @@ msgstr "Sélectionner tous les éléments de cette page"
799
781
  msgid "items selected. Uncheck to Clear"
800
782
  msgstr "items sélectionnés. Décocher pour Effacer"
801
783
 
802
- #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:5
803
- #: ../app/views/discovered_hosts/_selected_hosts.html.erb:7
804
- #: ../app/views/discovered_mailer/discovered_summary.html.erb:17
805
- #: ../app/views/discovered_mailer/discovered_summary.text.erb:9
784
+ #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:5 ../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
806
785
  msgid "Name"
807
786
  msgstr "Nom"
808
787
 
809
- #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:7
810
- #: ../app/views/discovered_mailer/discovered_summary.html.erb:19
811
- #: ../app/views/discovered_mailer/discovered_summary.text.erb:11
788
+ #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:7 ../app/views/discovered_mailer/discovered_summary.html.erb:19 ../app/views/discovered_mailer/discovered_summary.text.erb:11
812
789
  msgid "IP Address"
813
790
  msgstr "Adresse IP"
814
791
 
@@ -820,13 +797,11 @@ msgstr "Nombre de disques"
820
797
  msgid "Disks Size"
821
798
  msgstr "Taille des disques"
822
799
 
823
- #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:15
824
- #: ../app/views/discovered_hosts/_selected_hosts.html.erb:9
800
+ #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:15 ../app/views/discovered_hosts/_selected_hosts.html.erb:9
825
801
  msgid "Location"
826
802
  msgstr "Localisation"
827
803
 
828
- #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:16
829
- #: ../app/views/discovered_hosts/_selected_hosts.html.erb:10
804
+ #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:16 ../app/views/discovered_hosts/_selected_hosts.html.erb:10
830
805
  msgid "Organization"
831
806
  msgstr "Organisation"
832
807
 
@@ -838,8 +813,7 @@ msgstr "Sous-Réseau"
838
813
  msgid "Last Facts Upload"
839
814
  msgstr "Derniers facts téléchargés"
840
815
 
841
- #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:19
842
- #: ../app/views/discovery_rules/index.html.erb:12
816
+ #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:19 ../app/views/discovery_rules/index.html.erb:12
843
817
  msgid "Actions"
844
818
  msgstr "Actions"
845
819
 
@@ -860,9 +834,7 @@ msgid "Provision %s"
860
834
  msgstr "Provisionner %s"
861
835
 
862
836
  #: ../app/views/discovered_hosts/multiple_destroy.html.erb:3
863
- msgid ""
864
- "This might take a while, as all hosts, facts and reports will be destroyed "
865
- "as well"
837
+ msgid "This might take a while, as all hosts, facts and reports will be destroyed as well"
866
838
  msgstr "Cette action peut prendre un certain temps, pour tous les hôtes, les rapports et facts vont aussi être supprimés"
867
839
 
868
840
  #: ../app/views/discovered_hosts/select_multiple_location.html.erb:5
@@ -901,20 +873,6 @@ msgstr "Adresse IP"
901
873
  msgid "Collapse All"
902
874
  msgstr "Tout réduire"
903
875
 
904
- #: ../app/views/discovered_hosts/welcome.html.erb:7
905
- msgid "No discovered hosts found in this context."
906
- msgstr "Aucun hôte détecté trouvé dans ce contexte."
907
-
908
- #: ../app/views/discovered_hosts/welcome.html.erb:8
909
- msgid ""
910
- "This page shows discovered bare-metal or virtual nodes waiting to be "
911
- "provisioned."
912
- msgstr "Cette page montre les nœuds nus ou virtuels en attente de mise en service."
913
-
914
- #: ../app/views/discovered_hosts/welcome.html.erb:9
915
- msgid "Learn more about this in the documentation."
916
- msgstr "Approfondissez ce sujet dans la documentation."
917
-
918
876
  #: ../app/views/discovered_mailer/discovered_summary.html.erb:6
919
877
  msgid "Summary report for discovered hosts from Foreman"
920
878
  msgstr "Rapport de synthèse des hôtes détectés depuis Foreman"
@@ -923,23 +881,19 @@ msgstr "Rapport de synthèse des hôtes détectés depuis Foreman"
923
881
  msgid "<b>Foreman</b> Discovered hosts summary"
924
882
  msgstr "<b>Foreman</b> Synthèse des hôtes détectés"
925
883
 
926
- #: ../app/views/discovered_mailer/discovered_summary.html.erb:10
927
- #: ../app/views/discovered_mailer/discovered_summary.text.erb:5
884
+ #: ../app/views/discovered_mailer/discovered_summary.html.erb:10 ../app/views/discovered_mailer/discovered_summary.text.erb:5
928
885
  msgid "Summary from %{time} ago to %{now}"
929
886
  msgstr "Synthèse de %{time} à %{now}"
930
887
 
931
- #: ../app/views/discovered_mailer/discovered_summary.html.erb:11
932
- #: ../app/views/discovered_mailer/discovered_summary.text.erb:3
888
+ #: ../app/views/discovered_mailer/discovered_summary.html.erb:11 ../app/views/discovered_mailer/discovered_summary.text.erb:3
933
889
  msgid "Discovered hosts from Foreman server at %{foreman_url}"
934
890
  msgstr "Hôtes détectés depuis le serveur Foreman à l'adresse %{foreman_url}"
935
891
 
936
- #: ../app/views/discovered_mailer/discovered_summary.html.erb:22
937
- #: ../app/views/discovered_mailer/discovered_summary.text.erb:14
892
+ #: ../app/views/discovered_mailer/discovered_summary.html.erb:22 ../app/views/discovered_mailer/discovered_summary.text.erb:14
938
893
  msgid "Disk count"
939
894
  msgstr "Nombre de disques"
940
895
 
941
- #: ../app/views/discovered_mailer/discovered_summary.html.erb:23
942
- #: ../app/views/discovered_mailer/discovered_summary.text.erb:15
896
+ #: ../app/views/discovered_mailer/discovered_summary.html.erb:23 ../app/views/discovered_mailer/discovered_summary.text.erb:15
943
897
  msgid "Disks size"
944
898
  msgstr "Taille des disques"
945
899
 
@@ -988,41 +942,30 @@ msgid "Rule priority (lower integer means higher priority)"
988
942
  msgstr "Priorité des règles (plus le nombre est petit, plus la priorité est élevée)"
989
943
 
990
944
  #: ../app/views/discovery_rules/_template_inline.erb:2
991
- msgid ""
992
- "Specify target hostname template pattern in the same syntax as in "
993
- "Provisioning Templates (ERB)."
945
+ msgid "Specify target hostname template pattern in the same syntax as in Provisioning Templates (ERB)."
994
946
  msgstr "Spécifiez le modèle de nom d'hôte cible dans la même syntaxe que celle des modèles de provisioning (ERB)."
995
947
 
996
948
  #: ../app/views/discovery_rules/_template_inline.erb:4
997
- msgid ""
998
- "Domain will be appended automatically. A hostname based on MAC address will "
999
- "be used when left blank."
949
+ msgid "Domain will be appended automatically. A hostname based on MAC address will be used when left blank."
1000
950
  msgstr "Le domaine sera ajouté automatiquement. Un nom d'hôte basé sur une adresse MAC sera utilisé si le champ est vide."
1001
951
 
1002
952
  #: ../app/views/discovery_rules/_template_inline.erb:5
1003
- msgid ""
1004
- "In addition to @host attribute function rand for random integers is "
1005
- "available. Examples:"
953
+ msgid "In addition to @host attribute function rand for random integers is available. Examples:"
1006
954
  msgstr "En plus de la fonction d'attribut @host, la fonction ALEA pour les entiers aléatoires est disponible. Exemples :"
1007
955
 
1008
956
  #: ../app/views/discovery_rules/_template_inline.erb:8
1009
- msgid ""
1010
- "When creating hostname patterns, make sure the resulting host names are "
1011
- "unique."
957
+ msgid "When creating hostname patterns, make sure the resulting host names are unique."
1012
958
  msgstr "Lors de la création de modèles de nom d'hôte, veillez à ce que les noms d'hôte soient uniques."
1013
959
 
1014
960
  #: ../app/views/discovery_rules/_template_inline.erb:9
1015
- msgid ""
1016
- "Hostnames must not start with numbers. A good approach is to use unique "
1017
- "information provided by facter (MAC address, BIOS or serial ID)."
961
+ msgid "Hostnames must not start with numbers. A good approach is to use unique information provided by facter (MAC address, BIOS or serial ID)."
1018
962
  msgstr "Les noms d'hôte ne doivent pas commencer par des nombres. Une bonne méthode consiste à utiliser des informations uniques fournies par facter (adresse MAC, BIOS ou ID de série)."
1019
963
 
1020
964
  #: ../app/views/discovery_rules/edit.html.erb:1
1021
965
  msgid "Edit %s"
1022
966
  msgstr "Modifier %s"
1023
967
 
1024
- #: ../app/views/discovery_rules/index.html.erb:1
1025
- #: ../lib/foreman_discovery/engine.rb:163
968
+ #: ../app/views/discovery_rules/index.html.erb:1 ../lib/foreman_discovery/engine.rb:164
1026
969
  msgid "Discovery Rules"
1027
970
  msgstr "Règles de détection"
1028
971
 
@@ -1078,38 +1021,43 @@ msgstr "Un ou plusieurs hôtes ont été détectés"
1078
1021
  msgid "Details"
1079
1022
  msgstr "Détails"
1080
1023
 
1081
- #: ../lib/foreman_discovery/engine.rb:179
1024
+ #: ../lib/foreman_discovery/engine.rb:180
1082
1025
  msgid "Discovery Kexec template"
1083
1026
  msgstr "Modèle Kexec de détection"
1084
1027
 
1085
- #: ../lib/foreman_discovery/engine.rb:188
1028
+ #: ../lib/foreman_discovery/engine.rb:189
1086
1029
  msgid "Discovery Proxy"
1087
1030
  msgstr "Proxy de détection"
1088
1031
 
1089
- #: ../lib/foreman_discovery/engine.rb:189
1090
- msgid ""
1091
- "Discovery Proxy to use within this subnet for managing connection to "
1092
- "discovered hosts"
1032
+ #: ../lib/foreman_discovery/engine.rb:190
1033
+ msgid "Discovery Proxy to use within this subnet for managing connection to discovered hosts"
1093
1034
  msgstr "Proxy de détection à utiliser à l'intérieur de ce sous-réseau pour gérer la connexion aux hôtes détectés"
1094
1035
 
1095
- #: ../lib/foreman_discovery/engine.rb:190
1096
- msgid ""
1097
- "ID of Discovery Proxy to use within this subnet for managing connection to "
1098
- "discovered hosts"
1036
+ #: ../lib/foreman_discovery/engine.rb:191
1037
+ msgid "ID of Discovery Proxy to use within this subnet for managing connection to discovered hosts"
1099
1038
  msgstr "ID du proxy de détection à utiliser à l'intérieur de ce sous-réseau pour gérer la connexion aux hôtes détectés"
1100
1039
 
1101
1040
  #: action_names.rb:2
1102
- msgid "Import Puppet classes"
1103
- msgstr "Importer des classes Puppet"
1041
+ msgid "Remote action:"
1042
+ msgstr ""
1104
1043
 
1105
1044
  #: action_names.rb:3
1106
- msgid "Import facts"
1107
- msgstr "Importer des faits"
1045
+ msgid "Import Puppet classes"
1046
+ msgstr ""
1108
1047
 
1109
1048
  #: action_names.rb:4
1110
1049
  msgid "Action with sub plans"
1111
- msgstr "Action avec sous-plans"
1050
+ msgstr ""
1112
1051
 
1113
1052
  #: action_names.rb:5
1114
- msgid "Remote action:"
1115
- msgstr "Action distante :"
1053
+ msgid "Import facts"
1054
+ msgstr ""
1055
+
1056
+ #~ msgid "Learn more about this in the documentation."
1057
+ #~ msgstr "Approfondissez ce sujet dans la documentation."
1058
+ #~ msgid "No discovered hosts found in this context."
1059
+ #~ msgstr "Aucun hôte détecté trouvé dans ce contexte."
1060
+ #~ msgid ""
1061
+ #~ "This page shows discovered bare-metal or virtual nodes waiting to be provision"
1062
+ #~ "ed."
1063
+ #~ msgstr "Cette page montre les nœuds nus ou virtuels en attente de mise en service."