foreman_discovery 16.3.1 → 17.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/app/controllers/api/v2/discovered_hosts_controller.rb +1 -0
- data/app/controllers/discovered_hosts_controller.rb +24 -35
- data/app/controllers/discovery_rules_controller.rb +12 -1
- data/app/helpers/discovered_hosts_helper.rb +6 -1
- data/app/helpers/discovery_rules_helper.rb +1 -0
- data/app/models/discovery_rule.rb +10 -5
- data/app/services/foreman_discovery/fact_to_category_resolver.rb +106 -0
- data/app/services/foreman_discovery/ui_notifications/failed_discovery.rb +34 -0
- data/app/services/foreman_discovery/ui_notifications/new_host.rb +2 -1
- data/app/views/discovered_hosts/_discovered_hosts_list.html.erb +44 -40
- data/app/views/discovered_hosts/welcome.html.erb +1 -2
- data/app/views/discovery_rules/clone.erb +3 -0
- data/app/views/discovery_rules/index.html.erb +4 -0
- data/app/views/discovery_rules/welcome.html.erb +15 -0
- data/app/views/foreman_discovery/debian_kexec.erb +1 -1
- data/app/views/foreman_discovery/redhat_kexec.erb +1 -1
- data/config/routes.rb +2 -0
- data/db/seeds.d/80_discovery_ui_notification.rb +11 -5
- data/lib/foreman_discovery/engine.rb +3 -7
- 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 +136 -98
- data/locale/ca/foreman_discovery.po +36 -9
- data/locale/de/LC_MESSAGES/foreman_discovery.mo +0 -0
- data/locale/de/foreman_discovery.edit.po +148 -112
- data/locale/de/foreman_discovery.po +45 -18
- data/locale/en/LC_MESSAGES/foreman_discovery.mo +0 -0
- data/locale/en/foreman_discovery.edit.po +127 -91
- data/locale/en/foreman_discovery.po +31 -4
- data/locale/en_GB/LC_MESSAGES/foreman_discovery.mo +0 -0
- data/locale/en_GB/foreman_discovery.edit.po +139 -109
- data/locale/en_GB/foreman_discovery.po +36 -9
- data/locale/es/LC_MESSAGES/foreman_discovery.mo +0 -0
- data/locale/es/foreman_discovery.edit.po +172 -140
- data/locale/es/foreman_discovery.po +70 -41
- data/locale/foreman_discovery.pot +142 -97
- data/locale/fr/LC_MESSAGES/foreman_discovery.mo +0 -0
- data/locale/fr/foreman_discovery.edit.po +179 -147
- data/locale/fr/foreman_discovery.po +76 -49
- data/locale/gl/LC_MESSAGES/foreman_discovery.mo +0 -0
- data/locale/gl/foreman_discovery.edit.po +133 -92
- data/locale/gl/foreman_discovery.po +32 -5
- data/locale/it/LC_MESSAGES/foreman_discovery.mo +0 -0
- data/locale/it/foreman_discovery.edit.po +147 -106
- data/locale/it/foreman_discovery.po +44 -17
- data/locale/ja/LC_MESSAGES/foreman_discovery.mo +0 -0
- data/locale/ja/foreman_discovery.edit.po +182 -152
- data/locale/ja/foreman_discovery.po +79 -54
- data/locale/ko/LC_MESSAGES/foreman_discovery.mo +0 -0
- data/locale/ko/foreman_discovery.edit.po +146 -105
- data/locale/ko/foreman_discovery.po +43 -16
- data/locale/pt_BR/LC_MESSAGES/foreman_discovery.mo +0 -0
- data/locale/pt_BR/foreman_discovery.edit.po +171 -136
- data/locale/pt_BR/foreman_discovery.po +69 -39
- data/locale/ru/LC_MESSAGES/foreman_discovery.mo +0 -0
- data/locale/ru/foreman_discovery.edit.po +147 -106
- data/locale/ru/foreman_discovery.po +43 -16
- data/locale/sv_SE/LC_MESSAGES/foreman_discovery.mo +0 -0
- data/locale/sv_SE/foreman_discovery.edit.po +135 -94
- data/locale/sv_SE/foreman_discovery.po +34 -7
- data/locale/zh_CN/LC_MESSAGES/foreman_discovery.mo +0 -0
- data/locale/zh_CN/foreman_discovery.edit.po +217 -188
- data/locale/zh_CN/foreman_discovery.po +114 -90
- data/locale/zh_TW/LC_MESSAGES/foreman_discovery.mo +0 -0
- data/locale/zh_TW/foreman_discovery.edit.po +146 -105
- data/locale/zh_TW/foreman_discovery.po +43 -16
- data/package.json +7 -7
- data/test/functional/api/v2/discovered_hosts_controller_test.rb +9 -0
- data/test/functional/discovery_rules_controller_test.rb +6 -1
- data/test/integration/discovered_hosts_test.rb +53 -5
- data/test/test_helper_discovery.rb +5 -0
- data/test/unit/discovery_rule_test.rb +24 -2
- data/test/unit/fact_to_category_resolver_test.rb +41 -0
- data/test/unit/ui_notifications/destroy_host_test.rb +2 -9
- data/test/unit/ui_notifications/new_host_test.rb +3 -3
- data/webpack/__mocks__/foremanReact/common/I18n.js +3 -0
- data/webpack/__mocks__/foremanReact/common/helpers.js +1 -0
- data/webpack/__mocks__/foremanReact/common/index.js +5 -0
- data/webpack/__mocks__/foremanReact/components/common/EmptyState/DefaultEmptyState.js +69 -0
- data/webpack/__mocks__/foremanReact/components/common/EmptyState/EmptyStatePattern.js +77 -0
- data/webpack/__mocks__/foremanReact/components/common/EmptyState/EmptyStatePropTypes.js +29 -0
- data/webpack/__mocks__/foremanReact/components/common/EmptyState/index.js +5 -0
- data/webpack/index.js +9 -8
- data/webpack/src/ForemanDiscovery/DiscoveredHosts/Components/EmptyState/EmptyState.js +7 -7
- data/webpack/src/ForemanDiscovery/DiscoveredHosts/Components/EmptyState/__test__/EmptyState.test.js +12 -0
- data/webpack/src/ForemanDiscovery/DiscoveredHosts/Components/EmptyState/__test__/__snapshots__/EmptyState.test.js.snap +16 -0
- data/webpack/src/ForemanDiscovery/DiscoveredHosts/Components/EmptyState/index.js +1 -1
- data/webpack/src/ForemanDiscovery/DiscoveredHosts/index.js +3 -3
- data/webpack/src/ForemanDiscovery/DiscoveryRules/Components/EmptyState/EmptyState.js +34 -0
- data/webpack/src/ForemanDiscovery/DiscoveryRules/Components/EmptyState/index.js +1 -0
- data/webpack/src/ForemanDiscovery/DiscoveryRules/Components/__test__/EmptyState.test.js +19 -0
- data/webpack/src/ForemanDiscovery/DiscoveryRules/Components/__test__/__snapshots__/EmptyState.test.js.snap +22 -0
- data/webpack/src/ForemanDiscovery/DiscoveryRules/index.js +6 -0
- data/webpack/src/reducers.js +0 -2
- metadata +39 -17
Binary file
|
@@ -8,10 +8,11 @@
|
|
8
8
|
# Pierre-Emmanuel Dutang <dutangp@gmail.com>, 2014,2016-2017
|
9
9
|
msgid ""
|
10
10
|
msgstr ""
|
11
|
-
"Project-Id-Version: foreman_discovery 16.
|
11
|
+
"Project-Id-Version: foreman_discovery 16.3.4\n"
|
12
12
|
"Report-Msgid-Bugs-To: \n"
|
13
|
-
"
|
14
|
-
"
|
13
|
+
"POT-Creation-Date: 2021-05-03 08:46+0200\n"
|
14
|
+
"PO-Revision-Date: 2021-01-25 08:35+0000\n"
|
15
|
+
"Last-Translator: Amit Upadhye <aupadhye@redhat.com>\n"
|
15
16
|
"Language-Team: French (http://www.transifex.com/foreman/foreman/language/fr/)\n"
|
16
17
|
"MIME-Version: 1.0\n"
|
17
18
|
"Content-Type: text/plain; charset=UTF-8\n"
|
@@ -57,7 +58,7 @@ msgstr "Provisionner un hôte détecté"
|
|
57
58
|
|
58
59
|
#: ../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
60
|
msgid "required if host is managed and value is not inherited from host group"
|
60
|
-
msgstr ""
|
61
|
+
msgstr "requis si l'hôte est géré et la valeur n'est pas héritée d'un groupe d'hôtes"
|
61
62
|
|
62
63
|
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:55
|
63
64
|
msgid "not required if using a subnet with DHCP proxy"
|
@@ -69,31 +70,31 @@ msgstr "non requis s'il s'agit d'une machine virtuelle"
|
|
69
70
|
|
70
71
|
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:62
|
71
72
|
msgid "required if not imaged based provisioning and host is managed and value is not inherited from host group"
|
72
|
-
msgstr ""
|
73
|
+
msgstr "requis si le provisioning n'est pas basé sur une image , que l'hôte est géré et que la valeur n'est pas héritée d'un groupe d'hôtes"
|
73
74
|
|
74
75
|
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:63
|
75
76
|
msgid "required if host is managed and custom partition has not been defined"
|
76
|
-
msgstr ""
|
77
|
+
msgstr "requis si l'hôte est géré et possède une partition spécifique qui n'a pas été définie"
|
77
78
|
|
78
79
|
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:69
|
79
80
|
msgid "Host's owner type"
|
80
|
-
msgstr ""
|
81
|
+
msgstr "Type de propriétaire de l'hôte"
|
81
82
|
|
82
83
|
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:72
|
83
84
|
msgid "Host's parameters (array or indexed hash)"
|
84
|
-
msgstr ""
|
85
|
+
msgstr "Paramètres de l'hôte (tableau ou hachage indexé)"
|
85
86
|
|
86
87
|
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:73
|
87
88
|
msgid "Name of the parameter"
|
88
|
-
msgstr ""
|
89
|
+
msgstr "Nom du paramêtre"
|
89
90
|
|
90
91
|
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:74
|
91
92
|
msgid "Parameter value"
|
92
|
-
msgstr ""
|
93
|
+
msgstr "Valeur du paramètre"
|
93
94
|
|
94
95
|
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:75
|
95
96
|
msgid "Type of value"
|
96
|
-
msgstr ""
|
97
|
+
msgstr "Type de valeur"
|
97
98
|
|
98
99
|
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:82
|
99
100
|
msgid "UUID to track orchestration tasks status, GET /api/orchestration/:UUID/tasks"
|
@@ -109,57 +110,57 @@ msgstr "Supprimer un hôte détecté"
|
|
109
110
|
|
110
111
|
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:102
|
111
112
|
msgid "Upload facts for a host, creating the host if required"
|
112
|
-
msgstr "
|
113
|
+
msgstr "Télécharge les facts d'un hôte, créé l'hôte si besoin"
|
113
114
|
|
114
115
|
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:103
|
115
116
|
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)"
|
116
117
|
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)"
|
117
118
|
|
118
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:
|
119
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:130
|
119
120
|
msgid "Execute rules against a discovered host"
|
120
121
|
msgstr "Exécuter les règles sur un hôte détecté"
|
121
122
|
|
122
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:
|
123
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:136 ../app/controllers/discovered_hosts_controller.rb:157
|
123
124
|
msgid "Host %{host} was provisioned with rule %{rule}"
|
124
125
|
msgstr "L'hôte %{host} a été provisionné avec la règle %{rule}"
|
125
126
|
|
126
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:
|
127
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:139
|
127
128
|
msgid "Unable to provision %{host}: %{errors}"
|
128
129
|
msgstr "Impossible de provisionner %{host} : %{errors}"
|
129
130
|
|
130
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:
|
131
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:145 ../app/controllers/discovered_hosts_controller.rb:164
|
131
132
|
msgid "No rule found for host %s"
|
132
133
|
msgstr "Aucune règle trouvée pour %s"
|
133
134
|
|
134
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:
|
135
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:152
|
135
136
|
msgid "Execute rules against all currently discovered hosts"
|
136
137
|
msgstr "Exécuter les règles sur tous les hôtes actuellement détectés"
|
137
138
|
|
138
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:
|
139
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:156 ../app/controllers/discovered_hosts_controller.rb:170
|
139
140
|
msgid "Errors during auto provisioning: %s"
|
140
141
|
msgstr "Erreurs lors du provisioning automatique : %s"
|
141
142
|
|
142
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:
|
143
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:159 ../app/controllers/discovered_hosts_controller.rb:173
|
143
144
|
msgid "No discovered hosts to provision"
|
144
145
|
msgstr "Aucun hôte détecté à provisionner"
|
145
146
|
|
146
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:
|
147
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:181
|
147
148
|
msgid "%s discovered hosts were provisioned"
|
148
149
|
msgstr "%s hôtes détectés ont été provisionnés"
|
149
150
|
|
150
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:
|
151
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:192
|
151
152
|
msgid "Refreshing the facts of a discovered host"
|
152
153
|
msgstr "Actualisation des facts d'un hôte détecté"
|
153
154
|
|
154
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:
|
155
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:201
|
155
156
|
msgid "Rebooting a discovered host"
|
156
157
|
msgstr "Redémarrage d'un hôte détecté"
|
157
158
|
|
158
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:
|
159
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:210
|
159
160
|
msgid "Rebooting all discovered hosts"
|
160
161
|
msgstr "Redémarrage de tous les hôtes détectés"
|
161
162
|
|
162
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:
|
163
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:221 ../app/controllers/discovered_hosts_controller.rb:126
|
163
164
|
msgid "Discovered hosts are rebooting now"
|
164
165
|
msgstr "Les hôtes détectés sont redémarrés maintenant"
|
165
166
|
|
@@ -239,133 +240,109 @@ msgstr "Erreurs lors du redémarrage : %s"
|
|
239
240
|
msgid "No discovered hosts to reboot"
|
240
241
|
msgstr "Aucun hôte détecté pour le redémarrage"
|
241
242
|
|
242
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
243
|
+
#: ../app/controllers/discovered_hosts_controller.rb:60
|
243
244
|
msgid "Successfully provisioned %s"
|
244
245
|
msgstr "Provisioning réussi de %s"
|
245
246
|
|
246
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
247
|
+
#: ../app/controllers/discovered_hosts_controller.rb:94
|
247
248
|
msgid "Facts refreshed for %s"
|
248
249
|
msgstr "Facts rafraichis pour %s"
|
249
250
|
|
250
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
251
|
+
#: ../app/controllers/discovered_hosts_controller.rb:96
|
251
252
|
msgid "Failed to refresh facts for %s"
|
252
253
|
msgstr "Échec de rafraichissement des facts pour %s"
|
253
254
|
|
254
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
255
|
+
#: ../app/controllers/discovered_hosts_controller.rb:99
|
255
256
|
msgid "Failed to refresh facts for %{hostname} with error %{error_message}"
|
256
|
-
msgstr "Échec de
|
257
|
+
msgstr "Échec de rafraichissement des facts pour %s"
|
257
258
|
|
258
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
259
|
+
#: ../app/controllers/discovered_hosts_controller.rb:106
|
259
260
|
msgid "Host of type %s can not be rebooted"
|
260
261
|
msgstr "Impossible de redémarrer l'hôte de type %s"
|
261
262
|
|
262
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
263
|
+
#: ../app/controllers/discovered_hosts_controller.rb:110
|
263
264
|
msgid "Rebooting host %s"
|
264
|
-
msgstr "Redémarrage
|
265
|
+
msgstr "Redémarrage des l'hôtes"
|
265
266
|
|
266
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
267
|
+
#: ../app/controllers/discovered_hosts_controller.rb:112
|
267
268
|
msgid "Failed to reboot host %s"
|
268
269
|
msgstr "Échec du redémarrage de l'hôte %s"
|
269
270
|
|
270
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
271
|
+
#: ../app/controllers/discovered_hosts_controller.rb:115
|
271
272
|
msgid "Failed to reboot host %{hostname} with error %{error_message}"
|
272
|
-
msgstr "Échec du redémarrage
|
273
|
+
msgstr "Échec du redémarrage des hôtes avec l'erreur %s"
|
273
274
|
|
274
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
275
|
+
#: ../app/controllers/discovered_hosts_controller.rb:129
|
275
276
|
msgid "Failed to reboot hosts with error %s"
|
276
277
|
msgstr "Échec du redémarrage des hôtes avec l'erreur %s"
|
277
278
|
|
278
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
279
|
+
#: ../app/controllers/discovered_hosts_controller.rb:147
|
279
280
|
msgid "Destroyed selected hosts"
|
280
281
|
msgstr "Hôtes sélectionnés détruits"
|
281
282
|
|
282
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
283
|
+
#: ../app/controllers/discovered_hosts_controller.rb:149
|
283
284
|
msgid "The following hosts were not deleted: %s"
|
284
285
|
msgstr "Les hôtes suivants n'ont pas été supprimés : %s"
|
285
286
|
|
286
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
287
|
+
#: ../app/controllers/discovered_hosts_controller.rb:161
|
287
288
|
msgid "Failed to auto provision host %s: %s"
|
288
289
|
msgstr "Échec du provisioning automatique de l'hôte %s: %s"
|
289
290
|
|
290
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
291
|
+
#: ../app/controllers/discovered_hosts_controller.rb:189
|
291
292
|
msgid "Discovered hosts are provisioning now"
|
292
293
|
msgstr "Les hôtes détectés sont maintenant provisionnés"
|
293
294
|
|
294
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
295
|
-
msgid "
|
296
|
-
msgstr "
|
297
|
-
|
298
|
-
#: ../app/controllers/discovered_hosts_controller.rb:226
|
299
|
-
msgid "Storage"
|
300
|
-
msgstr "Stockage"
|
301
|
-
|
302
|
-
#: ../app/controllers/discovered_hosts_controller.rb:226
|
303
|
-
msgid "Hardware"
|
304
|
-
msgstr "Matériel"
|
305
|
-
|
306
|
-
#: ../app/controllers/discovered_hosts_controller.rb:226
|
307
|
-
msgid "Network"
|
308
|
-
msgstr "Réseau"
|
309
|
-
|
310
|
-
#: ../app/controllers/discovered_hosts_controller.rb:226
|
311
|
-
msgid "Software"
|
312
|
-
msgstr "Logiciel"
|
313
|
-
|
314
|
-
#: ../app/controllers/discovered_hosts_controller.rb:226
|
315
|
-
msgid "IPMI"
|
316
|
-
msgstr "IPMI "
|
295
|
+
#: ../app/controllers/discovered_hosts_controller.rb:270
|
296
|
+
msgid "Discovered host reported from unknown subnet, communication will not be proxied."
|
297
|
+
msgstr ""
|
317
298
|
|
318
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
319
|
-
msgid "
|
320
|
-
msgstr "
|
299
|
+
#: ../app/controllers/discovered_hosts_controller.rb:275
|
300
|
+
msgid "Discovered hosts reported from unknown subnet are %s, communication will not be proxied."
|
301
|
+
msgstr ""
|
321
302
|
|
322
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
303
|
+
#: ../app/controllers/discovered_hosts_controller.rb:289
|
323
304
|
msgid "No hosts were found with that id or name"
|
324
305
|
msgstr "Aucun Hôte trouvé avec cet id ou ce nom"
|
325
306
|
|
326
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
307
|
+
#: ../app/controllers/discovered_hosts_controller.rb:293
|
327
308
|
msgid "No hosts selected"
|
328
309
|
msgstr "Aucun hôte sélectionné"
|
329
310
|
|
330
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
311
|
+
#: ../app/controllers/discovered_hosts_controller.rb:299
|
331
312
|
msgid "Something went wrong while selecting hosts - %s"
|
332
|
-
msgstr "
|
313
|
+
msgstr "Une erreur s'est produite lors de la sélection des hôtes - %s"
|
333
314
|
|
334
|
-
#: ../app/controllers/discovery_rules_controller.rb:
|
315
|
+
#: ../app/controllers/discovery_rules_controller.rb:79
|
335
316
|
msgid "Rule enabled"
|
336
317
|
msgstr "Règle activée"
|
337
318
|
|
338
|
-
#: ../app/controllers/discovery_rules_controller.rb:
|
319
|
+
#: ../app/controllers/discovery_rules_controller.rb:79
|
339
320
|
msgid "Rule disabled"
|
340
321
|
msgstr "Règle désactivée"
|
341
322
|
|
342
|
-
#: ../app/helpers/discovered_hosts_helper.rb:
|
343
|
-
msgid "%s ago"
|
344
|
-
msgstr "Il y a %s"
|
345
|
-
|
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
|
323
|
+
#: ../app/helpers/discovered_hosts_helper.rb:14 ../app/helpers/discovered_hosts_helper.rb:29 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:40
|
347
324
|
msgid "Auto Provision"
|
348
325
|
msgstr "Provisionner automatiquement"
|
349
326
|
|
350
|
-
#: ../app/helpers/discovered_hosts_helper.rb:15 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:
|
327
|
+
#: ../app/helpers/discovered_hosts_helper.rb:15 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:41
|
351
328
|
msgid "Refresh facts"
|
352
329
|
msgstr "Rafraichir les facts"
|
353
330
|
|
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:
|
331
|
+
#: ../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:42
|
355
332
|
msgid "Reboot"
|
356
333
|
msgstr "Redémarrer"
|
357
334
|
|
358
335
|
#: ../app/helpers/discovered_hosts_helper.rb:19
|
359
336
|
msgid "Back"
|
360
|
-
msgstr "
|
337
|
+
msgstr "Précédent"
|
361
338
|
|
362
339
|
#: ../app/helpers/discovered_hosts_helper.rb:21 ../app/helpers/discovered_hosts_helper.rb:35
|
363
340
|
msgid "Select Action"
|
364
341
|
msgstr "Choisir l'action"
|
365
342
|
|
366
|
-
#: ../app/helpers/discovered_hosts_helper.rb:23 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:
|
343
|
+
#: ../app/helpers/discovered_hosts_helper.rb:23 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:43
|
367
344
|
msgid "Delete %s?"
|
368
|
-
msgstr "Supprimer
|
345
|
+
msgstr "Supprimer"
|
369
346
|
|
370
347
|
#: ../app/helpers/discovered_hosts_helper.rb:31
|
371
348
|
msgid "Assign Organization"
|
@@ -385,7 +362,7 @@ msgstr "%s - les hôtes suivants vont être changés"
|
|
385
362
|
|
386
363
|
#: ../app/helpers/discovered_hosts_helper.rb:46 ../app/views/dashboard/_discovery_widget_host.html.erb:2
|
387
364
|
msgid "N/A"
|
388
|
-
msgstr "
|
365
|
+
msgstr "Sans objet"
|
389
366
|
|
390
367
|
#: ../app/helpers/discovered_hosts_helper.rb:58
|
391
368
|
msgid "New in the last 24 hours"
|
@@ -401,7 +378,7 @@ msgstr "Signalé au cours des 7 derniers jours"
|
|
401
378
|
|
402
379
|
#: ../app/helpers/discovered_hosts_helper.rb:90
|
403
380
|
msgid "Provision"
|
404
|
-
msgstr "
|
381
|
+
msgstr "Mettre en service"
|
405
382
|
|
406
383
|
#: ../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
|
407
384
|
msgid "Discovered Hosts"
|
@@ -428,6 +405,10 @@ msgid "Enable rule '%s'?"
|
|
428
405
|
msgstr "Activer la règle '%s' ?"
|
429
406
|
|
430
407
|
#: ../app/helpers/discovery_rules_helper.rb:33
|
408
|
+
msgid "Clone"
|
409
|
+
msgstr ""
|
410
|
+
|
411
|
+
#: ../app/helpers/discovery_rules_helper.rb:34
|
431
412
|
msgid "Delete rule '%s'?"
|
432
413
|
msgstr "Supprimer la règle '%s' ?"
|
433
414
|
|
@@ -451,17 +432,17 @@ msgstr "doit commencer par une lettre ou par ERB."
|
|
451
432
|
msgid "must be present."
|
452
433
|
msgstr "doit être présent."
|
453
434
|
|
454
|
-
#: ../app/models/discovery_rule.rb:
|
435
|
+
#: ../app/models/discovery_rule.rb:57
|
455
436
|
msgid "Host group organization %s must also be associated to the discovery rule"
|
456
437
|
msgid_plural "Host group organizations %s must also be associated to the discovery rule"
|
457
|
-
msgstr[0] "L'organisation
|
458
|
-
msgstr[1] "
|
438
|
+
msgstr[0] "L'organisation du groupe d'hôtes %s doit également être associée à la règle de détection"
|
439
|
+
msgstr[1] "L'organisation du groupe d'hôtes %s doit également être associée à la règle de détection"
|
459
440
|
|
460
|
-
#: ../app/models/discovery_rule.rb:
|
441
|
+
#: ../app/models/discovery_rule.rb:61
|
461
442
|
msgid "Host group location %s must also be associated to the discovery rule"
|
462
443
|
msgid_plural "Host group locations %s must also be associated to the discovery rule"
|
463
|
-
msgstr[0] "L'emplacement
|
464
|
-
msgstr[1] "
|
444
|
+
msgstr[0] "L'emplacement du groupe d'hôtes %s doit également être associé à la règle de détection"
|
445
|
+
msgstr[1] "L'emplacement du groupe d'hôtes %s doit également être associé à la règle de détection"
|
465
446
|
|
466
447
|
#: ../app/models/host/discovered.rb:40
|
467
448
|
msgid "Fact + prefix"
|
@@ -497,15 +478,15 @@ msgstr "Impossible d'obtenir les facts du proxy %{url} : %{error}"
|
|
497
478
|
|
498
479
|
#: ../app/models/host/discovered.rb:160
|
499
480
|
msgid "Unable to perform reboot on %{name} (%{url}): %{msg}"
|
500
|
-
msgstr ""
|
481
|
+
msgstr "Impossible d'effectuer un redémarrage sur %{name} (%{url}) : %{msg}"
|
501
482
|
|
502
483
|
#: ../app/models/host/discovered.rb:164 ../app/models/host/discovered.rb:183
|
503
484
|
msgid "Unable to perform %{action} on %{ips}"
|
504
|
-
msgstr ""
|
485
|
+
msgstr "Impossible d'exécuter sur %{ips}"
|
505
486
|
|
506
487
|
#: ../app/models/host/discovered.rb:179
|
507
488
|
msgid "Unable to perform kexec on %{name} (%{url}): %{msg}"
|
508
|
-
msgstr ""
|
489
|
+
msgstr "Impossible d'exécuter kexec sur %{name} (%{url}) : %{msg}"
|
509
490
|
|
510
491
|
#: ../app/models/host/discovered.rb:203
|
511
492
|
msgid "Invalid hostname: Could not normalize the hostname"
|
@@ -727,9 +708,37 @@ msgstr "L'hôte découvert '%{host}' a eu toutes ces interfaces réseau filtrés
|
|
727
708
|
msgid "Unable to find primary NIC with %{mac} specified via '%{fact}', NIC filter: %{filter}"
|
728
709
|
msgstr "Impossible de trouver une carte réseau primaire avec %{mac} spécifié via '%{fact}', Filtre de carte réseau: %{filter}"
|
729
710
|
|
711
|
+
#: ../app/services/foreman_discovery/fact_to_category_resolver.rb:7
|
712
|
+
msgid "Highlights"
|
713
|
+
msgstr "Surlignages"
|
714
|
+
|
715
|
+
#: ../app/services/foreman_discovery/fact_to_category_resolver.rb:8
|
716
|
+
msgid "Storage"
|
717
|
+
msgstr "Stockage"
|
718
|
+
|
719
|
+
#: ../app/services/foreman_discovery/fact_to_category_resolver.rb:9
|
720
|
+
msgid "Hardware"
|
721
|
+
msgstr "Matériel"
|
722
|
+
|
723
|
+
#: ../app/services/foreman_discovery/fact_to_category_resolver.rb:10
|
724
|
+
msgid "Network"
|
725
|
+
msgstr "Réseau"
|
726
|
+
|
727
|
+
#: ../app/services/foreman_discovery/fact_to_category_resolver.rb:11
|
728
|
+
msgid "Software"
|
729
|
+
msgstr "Logiciel"
|
730
|
+
|
731
|
+
#: ../app/services/foreman_discovery/fact_to_category_resolver.rb:12
|
732
|
+
msgid "IPMI"
|
733
|
+
msgstr "IPMI "
|
734
|
+
|
735
|
+
#: ../app/services/foreman_discovery/fact_to_category_resolver.rb:13
|
736
|
+
msgid "Miscellaneous"
|
737
|
+
msgstr "Divers"
|
738
|
+
|
730
739
|
#: ../app/services/foreman_discovery/host_converter.rb:47
|
731
740
|
msgid "IPAM must be configured for subnet '%s'"
|
732
|
-
msgstr ""
|
741
|
+
msgstr "L'IPAM doit être configuré pour le sous-réseau \"%s\""
|
733
742
|
|
734
743
|
#: ../app/services/foreman_discovery/node_api/node_resource.rb:76
|
735
744
|
msgid "Image API returned HTTP/%{code} with '%{body}"
|
@@ -737,13 +746,17 @@ msgstr "L'API d'image a retourné HTTP/%{code} avec '%{body}"
|
|
737
746
|
|
738
747
|
#: ../app/services/foreman_discovery/node_api/node_resource.rb:79
|
739
748
|
msgid "Image API processing error: %{msg} (HTTP/%{code}, body: %{body})"
|
740
|
-
msgstr "Erreur de traitement de l'API d'image :
|
749
|
+
msgstr "Erreur de traitement de l'API d'image : (HTTP/, corps : )"
|
750
|
+
|
751
|
+
#: ../app/services/foreman_discovery/ui_notifications/new_host.rb:22
|
752
|
+
msgid "Host %s has been dicovered"
|
753
|
+
msgstr ""
|
741
754
|
|
742
755
|
#: ../app/views/dashboard/_discovery_widget.html.erb:5
|
743
756
|
msgid "Discovered Host"
|
744
757
|
msgid_plural "Discovered Hosts"
|
745
|
-
msgstr[0] ""
|
746
|
-
msgstr[1] ""
|
758
|
+
msgstr[0] "Hôtes détectés"
|
759
|
+
msgstr[1] "Hôtes détectés"
|
747
760
|
|
748
761
|
#: ../app/views/dashboard/_discovery_widget.html.erb:9
|
749
762
|
msgid "No discovered hosts available"
|
@@ -753,15 +766,15 @@ msgstr "Aucun hôte détecté disponible"
|
|
753
766
|
msgid "Host"
|
754
767
|
msgstr "Hôte"
|
755
768
|
|
756
|
-
#: ../app/views/dashboard/_discovery_widget_host_list.html.erb:4 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:
|
769
|
+
#: ../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
|
757
770
|
msgid "Model"
|
758
|
-
msgstr "
|
771
|
+
msgstr "Modéliser"
|
759
772
|
|
760
|
-
#: ../app/views/dashboard/_discovery_widget_host_list.html.erb:5 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:
|
773
|
+
#: ../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
|
761
774
|
msgid "CPUs"
|
762
775
|
msgstr "Processeurs"
|
763
776
|
|
764
|
-
#: ../app/views/dashboard/_discovery_widget_host_list.html.erb:6 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:
|
777
|
+
#: ../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
|
765
778
|
msgid "Memory"
|
766
779
|
msgstr "Mémoire"
|
767
780
|
|
@@ -773,65 +786,65 @@ msgstr "Personnaliser l'hôte"
|
|
773
786
|
msgid "Create Host"
|
774
787
|
msgstr "Créer un hôte"
|
775
788
|
|
776
|
-
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:
|
789
|
+
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:5
|
777
790
|
msgid "Select all items in this page"
|
778
791
|
msgstr "Sélectionner tous les éléments de cette page"
|
779
792
|
|
780
|
-
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:
|
793
|
+
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:5
|
781
794
|
msgid "items selected. Uncheck to Clear"
|
782
795
|
msgstr "items sélectionnés. Décocher pour Effacer"
|
783
796
|
|
784
|
-
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:
|
797
|
+
#: ../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
|
785
798
|
msgid "Name"
|
786
799
|
msgstr "Nom"
|
787
800
|
|
788
|
-
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:
|
801
|
+
#: ../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
|
789
802
|
msgid "IP Address"
|
790
803
|
msgstr "Adresse IP"
|
791
804
|
|
792
|
-
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:
|
805
|
+
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:11
|
793
806
|
msgid "Disk Count"
|
794
807
|
msgstr "Nombre de disques"
|
795
808
|
|
796
|
-
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:
|
809
|
+
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:12
|
797
810
|
msgid "Disks Size"
|
798
811
|
msgstr "Taille des disques"
|
799
812
|
|
800
|
-
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:
|
813
|
+
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:16 ../app/views/discovered_hosts/_selected_hosts.html.erb:9 ../app/views/discovery_rules/index.html.erb:11
|
801
814
|
msgid "Location"
|
802
|
-
msgstr "
|
815
|
+
msgstr "Emplacement"
|
803
816
|
|
804
|
-
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:
|
817
|
+
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:17 ../app/views/discovered_hosts/_selected_hosts.html.erb:10 ../app/views/discovery_rules/index.html.erb:12
|
805
818
|
msgid "Organization"
|
806
819
|
msgstr "Organisation"
|
807
820
|
|
808
|
-
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:
|
821
|
+
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:18
|
809
822
|
msgid "Subnet"
|
810
|
-
msgstr "Sous-
|
823
|
+
msgstr "Sous-réseau"
|
811
824
|
|
812
|
-
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:
|
825
|
+
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:19
|
813
826
|
msgid "Last Facts Upload"
|
814
827
|
msgstr "Derniers facts téléchargés"
|
815
828
|
|
816
|
-
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:
|
829
|
+
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:20 ../app/views/discovery_rules/index.html.erb:14
|
817
830
|
msgid "Actions"
|
818
831
|
msgstr "Actions"
|
819
832
|
|
820
|
-
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:
|
833
|
+
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:55
|
821
834
|
msgid "Please Confirm"
|
822
835
|
msgstr "Merci de confirmer"
|
823
836
|
|
824
|
-
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:
|
837
|
+
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:61
|
825
838
|
msgid "Cancel"
|
826
839
|
msgstr "Annuler"
|
827
840
|
|
828
|
-
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:
|
841
|
+
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:62
|
829
842
|
msgid "Submit"
|
830
|
-
msgstr "
|
843
|
+
msgstr "Envoyer"
|
831
844
|
|
832
845
|
#: ../app/views/discovered_hosts/edit.html.erb:1
|
833
846
|
msgid "Provision %s"
|
834
|
-
msgstr "
|
847
|
+
msgstr "Mettre en service"
|
835
848
|
|
836
849
|
#: ../app/views/discovered_hosts/multiple_destroy.html.erb:3
|
837
850
|
msgid "This might take a while, as all hosts, facts and reports will be destroyed as well"
|
@@ -847,7 +860,7 @@ msgstr "Choisir une organisation"
|
|
847
860
|
|
848
861
|
#: ../app/views/discovered_hosts/show.html.erb:1
|
849
862
|
msgid "Discovered host: %s"
|
850
|
-
msgstr "Hôtes détectés
|
863
|
+
msgstr "Hôtes détectés"
|
851
864
|
|
852
865
|
#: ../app/views/discovered_hosts/show.html.erb:37
|
853
866
|
msgid "Interfaces"
|
@@ -859,7 +872,7 @@ msgstr "Type"
|
|
859
872
|
|
860
873
|
#: ../app/views/discovered_hosts/show.html.erb:45
|
861
874
|
msgid "Identifier"
|
862
|
-
msgstr "
|
875
|
+
msgstr "Identificateur"
|
863
876
|
|
864
877
|
#: ../app/views/discovered_hosts/show.html.erb:46
|
865
878
|
msgid "MAC address"
|
@@ -871,7 +884,7 @@ msgstr "Adresse IP"
|
|
871
884
|
|
872
885
|
#: ../app/views/discovered_hosts/show.html.erb:66
|
873
886
|
msgid "Collapse All"
|
874
|
-
msgstr "
|
887
|
+
msgstr "Réduire tout"
|
875
888
|
|
876
889
|
#: ../app/views/discovered_mailer/discovered_summary.html.erb:6
|
877
890
|
msgid "Summary report for discovered hosts from Foreman"
|
@@ -879,11 +892,11 @@ msgstr "Rapport de synthèse des hôtes détectés depuis Foreman"
|
|
879
892
|
|
880
893
|
#: ../app/views/discovered_mailer/discovered_summary.html.erb:9
|
881
894
|
msgid "<b>Foreman</b> Discovered hosts summary"
|
882
|
-
msgstr "
|
895
|
+
msgstr "Synthèse des hôtes détectés Foreman"
|
883
896
|
|
884
897
|
#: ../app/views/discovered_mailer/discovered_summary.html.erb:10 ../app/views/discovered_mailer/discovered_summary.text.erb:5
|
885
898
|
msgid "Summary from %{time} ago to %{now}"
|
886
|
-
msgstr "
|
899
|
+
msgstr "Résumé d'il y a un an à %{now}"
|
887
900
|
|
888
901
|
#: ../app/views/discovered_mailer/discovered_summary.html.erb:11 ../app/views/discovered_mailer/discovered_summary.text.erb:3
|
889
902
|
msgid "Discovered hosts from Foreman server at %{foreman_url}"
|
@@ -961,15 +974,19 @@ msgstr "Lors de la création de modèles de nom d'hôte, veillez à ce que les n
|
|
961
974
|
msgid "Hostnames must not start with numbers. A good approach is to use unique information provided by facter (MAC address, BIOS or serial ID)."
|
962
975
|
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)."
|
963
976
|
|
977
|
+
#: ../app/views/discovery_rules/clone.erb:1
|
978
|
+
msgid "Clone %s"
|
979
|
+
msgstr ""
|
980
|
+
|
964
981
|
#: ../app/views/discovery_rules/edit.html.erb:1
|
965
982
|
msgid "Edit %s"
|
966
|
-
msgstr "Modifier
|
983
|
+
msgstr "Modifier"
|
967
984
|
|
968
985
|
#: ../app/views/discovery_rules/index.html.erb:1 ../lib/foreman_discovery/engine.rb:164
|
969
986
|
msgid "Discovery Rules"
|
970
987
|
msgstr "Règles de détection"
|
971
988
|
|
972
|
-
#: ../app/views/discovery_rules/index.html.erb:2
|
989
|
+
#: ../app/views/discovery_rules/index.html.erb:2 ../webpack/src/ForemanDiscovery/DiscoveryRules/Components/EmptyState/EmptyState.js:9
|
973
990
|
msgid "Create Rule"
|
974
991
|
msgstr "Créer une règle"
|
975
992
|
|
@@ -993,7 +1010,7 @@ msgstr "Groupe d'hôtes"
|
|
993
1010
|
msgid "Hosts/Limit"
|
994
1011
|
msgstr "Hôtes/Limite"
|
995
1012
|
|
996
|
-
#: ../app/views/discovery_rules/index.html.erb:
|
1013
|
+
#: ../app/views/discovery_rules/index.html.erb:13
|
997
1014
|
msgid "DiscoveryRule|Enabled"
|
998
1015
|
msgstr "Activé"
|
999
1016
|
|
@@ -1001,6 +1018,10 @@ msgstr "Activé"
|
|
1001
1018
|
msgid "New Discovery Rule"
|
1002
1019
|
msgstr "Nouvelle règle de détection"
|
1003
1020
|
|
1021
|
+
#: ../app/views/discovery_rules/welcome.html.erb:8
|
1022
|
+
msgid "Discovered Rules"
|
1023
|
+
msgstr ""
|
1024
|
+
|
1004
1025
|
#: ../db/seeds.d/50_discovery_templates.rb:5
|
1005
1026
|
msgid "Command line options for kexec during PXE-less provisioning."
|
1006
1027
|
msgstr "Options de ligne de commande pour kexec lors du provisoning sans PXE."
|
@@ -1010,8 +1031,8 @@ msgid "A summary of discovered hosts"
|
|
1010
1031
|
msgstr "Synthèse des hôtes détectés"
|
1011
1032
|
|
1012
1033
|
#: ../db/seeds.d/80_discovery_ui_notification.rb:4
|
1013
|
-
msgid "
|
1014
|
-
msgstr "
|
1034
|
+
msgid "New hosts"
|
1035
|
+
msgstr ""
|
1015
1036
|
|
1016
1037
|
#: ../db/seeds.d/80_discovery_ui_notification.rb:6
|
1017
1038
|
msgid "One or more hosts have been discovered"
|
@@ -1021,43 +1042,54 @@ msgstr "Un ou plusieurs hôtes ont été détectés"
|
|
1021
1042
|
msgid "Details"
|
1022
1043
|
msgstr "Détails"
|
1023
1044
|
|
1024
|
-
#: ../
|
1045
|
+
#: ../db/seeds.d/80_discovery_ui_notification.rb:18
|
1046
|
+
msgid "Hosts"
|
1047
|
+
msgstr "Hôtes"
|
1048
|
+
|
1049
|
+
#: ../db/seeds.d/80_discovery_ui_notification.rb:20
|
1050
|
+
msgid "Error message goes here"
|
1051
|
+
msgstr ""
|
1052
|
+
|
1053
|
+
#: ../lib/foreman_discovery/engine.rb:176
|
1025
1054
|
msgid "Discovery Kexec template"
|
1026
1055
|
msgstr "Modèle Kexec de détection"
|
1027
1056
|
|
1028
|
-
#: ../lib/foreman_discovery/engine.rb:
|
1057
|
+
#: ../lib/foreman_discovery/engine.rb:185
|
1029
1058
|
msgid "Discovery Proxy"
|
1030
1059
|
msgstr "Proxy de détection"
|
1031
1060
|
|
1032
|
-
#: ../lib/foreman_discovery/engine.rb:
|
1061
|
+
#: ../lib/foreman_discovery/engine.rb:186
|
1033
1062
|
msgid "Discovery Proxy to use within this subnet for managing connection to discovered hosts"
|
1034
1063
|
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"
|
1035
1064
|
|
1036
|
-
#: ../lib/foreman_discovery/engine.rb:
|
1065
|
+
#: ../lib/foreman_discovery/engine.rb:187
|
1037
1066
|
msgid "ID of Discovery Proxy to use within this subnet for managing connection to discovered hosts"
|
1038
1067
|
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"
|
1039
1068
|
|
1069
|
+
#: ../webpack/__mocks__/foremanReact/components/common/EmptyState/EmptyStatePattern.js:33
|
1070
|
+
msgid "For more information please see "
|
1071
|
+
msgstr "Pour plus d'informations, voir "
|
1072
|
+
|
1073
|
+
#: ../webpack/__mocks__/foremanReact/components/common/EmptyState/EmptyStatePattern.js:34
|
1074
|
+
msgid "documentation"
|
1075
|
+
msgstr "documentation"
|
1076
|
+
|
1040
1077
|
#: action_names.rb:2
|
1041
1078
|
msgid "Remote action:"
|
1042
|
-
msgstr ""
|
1079
|
+
msgstr "Action distante :"
|
1043
1080
|
|
1044
1081
|
#: action_names.rb:3
|
1045
1082
|
msgid "Import Puppet classes"
|
1046
|
-
msgstr ""
|
1083
|
+
msgstr "Importer des classes Puppet"
|
1047
1084
|
|
1048
1085
|
#: action_names.rb:4
|
1049
|
-
msgid "
|
1050
|
-
msgstr ""
|
1086
|
+
msgid "Import facts"
|
1087
|
+
msgstr "Importer des faits"
|
1051
1088
|
|
1052
1089
|
#: action_names.rb:5
|
1053
|
-
msgid "
|
1054
|
-
msgstr ""
|
1090
|
+
msgid "Action with sub plans"
|
1091
|
+
msgstr "Action avec sous-plans"
|
1055
1092
|
|
1056
|
-
|
1057
|
-
#~
|
1058
|
-
#~
|
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."
|
1093
|
+
#: ../app/helpers/discovered_hosts_helper.rb:10
|
1094
|
+
#~ msgid "%s ago"
|
1095
|
+
#~ msgstr "Il y a %s"
|