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
@@ -8,10 +8,10 @@
|
|
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
|
-
"PO-Revision-Date:
|
14
|
-
"Last-Translator:
|
13
|
+
"PO-Revision-Date: 2021-01-25 08:35+0000\n"
|
14
|
+
"Last-Translator: Amit Upadhye <aupadhye@redhat.com>\n"
|
15
15
|
"Language-Team: French (http://www.transifex.com/foreman/foreman/language/fr/)\n"
|
16
16
|
"MIME-Version: 1.0\n"
|
17
17
|
"Content-Type: text/plain; charset=UTF-8\n"
|
@@ -22,20 +22,17 @@ msgstr ""
|
|
22
22
|
msgid "%s - The following hosts are about to be changed"
|
23
23
|
msgstr "%s - les hôtes suivants vont être changés"
|
24
24
|
|
25
|
-
msgid "%s ago"
|
26
|
-
msgstr "Il y a %s"
|
27
|
-
|
28
25
|
msgid "%s discovered hosts were provisioned"
|
29
26
|
msgstr "%s hôtes détectés ont été provisionnés"
|
30
27
|
|
31
28
|
msgid "<b>Foreman</b> Discovered hosts summary"
|
32
|
-
msgstr "
|
29
|
+
msgstr "Synthèse des hôtes détectés Foreman"
|
33
30
|
|
34
31
|
msgid "A summary of discovered hosts"
|
35
32
|
msgstr "Synthèse des hôtes détectés"
|
36
33
|
|
37
34
|
msgid "Action with sub plans"
|
38
|
-
msgstr ""
|
35
|
+
msgstr "Action avec sous-plans"
|
39
36
|
|
40
37
|
msgid "Actions"
|
41
38
|
msgstr "Actions"
|
@@ -68,7 +65,7 @@ msgid "Automatically reboot or kexec discovered host during provisioning"
|
|
68
65
|
msgstr "Redémarrer automatiquement ou effectuer un kexec sur l'hôte détecté pendant le provisioning"
|
69
66
|
|
70
67
|
msgid "Back"
|
71
|
-
msgstr "
|
68
|
+
msgstr "Précédent"
|
72
69
|
|
73
70
|
msgid "CPUs"
|
74
71
|
msgstr "Processeurs"
|
@@ -82,8 +79,14 @@ msgstr "Nettoyer tous les facts"
|
|
82
79
|
msgid "Clean all reported facts during provisioning (except discovery facts)"
|
83
80
|
msgstr "Nettoyer tous les facts signalés pendant le provisioning (sauf les facts de détection)"
|
84
81
|
|
82
|
+
msgid "Clone"
|
83
|
+
msgstr ""
|
84
|
+
|
85
|
+
msgid "Clone %s"
|
86
|
+
msgstr ""
|
87
|
+
|
85
88
|
msgid "Collapse All"
|
86
|
-
msgstr "
|
89
|
+
msgstr "Réduire tout"
|
87
90
|
|
88
91
|
msgid "Command line options for kexec during PXE-less provisioning."
|
89
92
|
msgstr "Options de ligne de commande pour kexec lors du provisoning sans PXE."
|
@@ -116,7 +119,7 @@ msgid "Delete"
|
|
116
119
|
msgstr "Supprimer"
|
117
120
|
|
118
121
|
msgid "Delete %s?"
|
119
|
-
msgstr "Supprimer
|
122
|
+
msgstr "Supprimer"
|
120
123
|
|
121
124
|
msgid "Delete a discovered host"
|
122
125
|
msgstr "Supprimer un hôte détecté"
|
@@ -141,17 +144,23 @@ msgstr "Désactiver la règle '%s' ?"
|
|
141
144
|
|
142
145
|
msgid "Discovered Host"
|
143
146
|
msgid_plural "Discovered Hosts"
|
144
|
-
msgstr[0] ""
|
145
|
-
msgstr[1] ""
|
147
|
+
msgstr[0] "Hôtes détectés"
|
148
|
+
msgstr[1] "Hôtes détectés"
|
146
149
|
|
147
150
|
msgid "Discovered Hosts"
|
148
151
|
msgstr "Hôtes détectés"
|
149
152
|
|
153
|
+
msgid "Discovered Rules"
|
154
|
+
msgstr ""
|
155
|
+
|
150
156
|
msgid "Discovered host '%{host}' has all NICs filtered out, filter: %{filter}"
|
151
157
|
msgstr "L'hôte découvert '%{host}' a eu toutes ces interfaces réseau filtrés, filtre: %{filter}"
|
152
158
|
|
159
|
+
msgid "Discovered host reported from unknown subnet, communication will not be proxied."
|
160
|
+
msgstr ""
|
161
|
+
|
153
162
|
msgid "Discovered host: %s"
|
154
|
-
msgstr "Hôtes détectés
|
163
|
+
msgstr "Hôtes détectés"
|
155
164
|
|
156
165
|
msgid "Discovered hosts are provisioning now"
|
157
166
|
msgstr "Les hôtes détectés sont maintenant provisionnés"
|
@@ -162,6 +171,9 @@ msgstr "Les hôtes détectés sont redémarrés maintenant"
|
|
162
171
|
msgid "Discovered hosts from Foreman server at %{foreman_url}"
|
163
172
|
msgstr "Hôtes détectés depuis le serveur Foreman à l'adresse %{foreman_url}"
|
164
173
|
|
174
|
+
msgid "Discovered hosts reported from unknown subnet are %s, communication will not be proxied."
|
175
|
+
msgstr ""
|
176
|
+
|
165
177
|
msgid "Discovered hosts summary"
|
166
178
|
msgstr "Synthèse des hôtes détectés"
|
167
179
|
|
@@ -220,7 +232,7 @@ msgid "Domain will be appended automatically. A hostname based on MAC address wi
|
|
220
232
|
msgstr "Le domaine sera ajouté automatiquement. Un nom d'hôte basé sur une adresse MAC sera utilisé si le champ est vide."
|
221
233
|
|
222
234
|
msgid "Edit %s"
|
223
|
-
msgstr "Modifier
|
235
|
+
msgstr "Modifier"
|
224
236
|
|
225
237
|
msgid "Enable"
|
226
238
|
msgstr "Activer"
|
@@ -228,6 +240,9 @@ msgstr "Activer"
|
|
228
240
|
msgid "Enable rule '%s'?"
|
229
241
|
msgstr "Activer la règle '%s' ?"
|
230
242
|
|
243
|
+
msgid "Error message goes here"
|
244
|
+
msgstr ""
|
245
|
+
|
231
246
|
msgid "Error on existing NIC"
|
232
247
|
msgstr "Erreur sur une carte réseau existante"
|
233
248
|
|
@@ -271,7 +286,7 @@ msgid "Failed to reboot host %s"
|
|
271
286
|
msgstr "Échec du redémarrage de l'hôte %s"
|
272
287
|
|
273
288
|
msgid "Failed to reboot host %{hostname} with error %{error_message}"
|
274
|
-
msgstr "Échec du redémarrage
|
289
|
+
msgstr "Échec du redémarrage des hôtes avec l'erreur %s"
|
275
290
|
|
276
291
|
msgid "Failed to reboot hosts with error %s"
|
277
292
|
msgstr "Échec du redémarrage des hôtes avec l'erreur %s"
|
@@ -280,7 +295,10 @@ msgid "Failed to refresh facts for %s"
|
|
280
295
|
msgstr "Échec de rafraichissement des facts pour %s"
|
281
296
|
|
282
297
|
msgid "Failed to refresh facts for %{hostname} with error %{error_message}"
|
283
|
-
msgstr "Échec de
|
298
|
+
msgstr "Échec de rafraichissement des facts pour %s"
|
299
|
+
|
300
|
+
msgid "For more information please see "
|
301
|
+
msgstr "Pour plus d'informations, voir "
|
284
302
|
|
285
303
|
msgid "Force DNS"
|
286
304
|
msgstr "Forcer DNS"
|
@@ -306,6 +324,9 @@ msgstr "Surlignages"
|
|
306
324
|
msgid "Host"
|
307
325
|
msgstr "Hôte"
|
308
326
|
|
327
|
+
msgid "Host %s has been dicovered"
|
328
|
+
msgstr ""
|
329
|
+
|
309
330
|
msgid "Host %{host} was provisioned with rule %{rule}"
|
310
331
|
msgstr "L'hôte %{host} a été provisionné avec la règle %{rule}"
|
311
332
|
|
@@ -314,22 +335,22 @@ msgstr "Groupe d'hôtes"
|
|
314
335
|
|
315
336
|
msgid "Host group location %s must also be associated to the discovery rule"
|
316
337
|
msgid_plural "Host group locations %s must also be associated to the discovery rule"
|
317
|
-
msgstr[0] "L'emplacement
|
318
|
-
msgstr[1] "
|
338
|
+
msgstr[0] "L'emplacement du groupe d'hôtes %s doit également être associé à la règle de détection"
|
339
|
+
msgstr[1] "L'emplacement du groupe d'hôtes %s doit également être associé à la règle de détection"
|
319
340
|
|
320
341
|
msgid "Host group organization %s must also be associated to the discovery rule"
|
321
342
|
msgid_plural "Host group organizations %s must also be associated to the discovery rule"
|
322
|
-
msgstr[0] "L'organisation
|
323
|
-
msgstr[1] "
|
343
|
+
msgstr[0] "L'organisation du groupe d'hôtes %s doit également être associée à la règle de détection"
|
344
|
+
msgstr[1] "L'organisation du groupe d'hôtes %s doit également être associée à la règle de détection"
|
324
345
|
|
325
346
|
msgid "Host of type %s can not be rebooted"
|
326
347
|
msgstr "Impossible de redémarrer l'hôte de type %s"
|
327
348
|
|
328
349
|
msgid "Host's owner type"
|
329
|
-
msgstr ""
|
350
|
+
msgstr "Type de propriétaire de l'hôte"
|
330
351
|
|
331
352
|
msgid "Host's parameters (array or indexed hash)"
|
332
|
-
msgstr ""
|
353
|
+
msgstr "Paramètres de l'hôte (tableau ou hachage indexé)"
|
333
354
|
|
334
355
|
msgid "Hostname facts"
|
335
356
|
msgstr "Facts du nom d'hôte"
|
@@ -362,7 +383,7 @@ msgid "IP address"
|
|
362
383
|
msgstr "Adresse IP"
|
363
384
|
|
364
385
|
msgid "IPAM must be configured for subnet '%s'"
|
365
|
-
msgstr ""
|
386
|
+
msgstr "L'IPAM doit être configuré pour le sous-réseau \"%s\""
|
366
387
|
|
367
388
|
msgid "IPMI"
|
368
389
|
msgstr "IPMI "
|
@@ -371,19 +392,19 @@ msgid "IPMI facts"
|
|
371
392
|
msgstr "Facts IPMI"
|
372
393
|
|
373
394
|
msgid "Identifier"
|
374
|
-
msgstr "
|
395
|
+
msgstr "Identificateur"
|
375
396
|
|
376
397
|
msgid "Image API processing error: %{msg} (HTTP/%{code}, body: %{body})"
|
377
|
-
msgstr "Erreur de traitement de l'API d'image :
|
398
|
+
msgstr "Erreur de traitement de l'API d'image : (HTTP/, corps : )"
|
378
399
|
|
379
400
|
msgid "Image API returned HTTP/%{code} with '%{body}"
|
380
401
|
msgstr "L'API d'image a retourné HTTP/%{code} avec '%{body}"
|
381
402
|
|
382
403
|
msgid "Import Puppet classes"
|
383
|
-
msgstr ""
|
404
|
+
msgstr "Importer des classes Puppet"
|
384
405
|
|
385
406
|
msgid "Import facts"
|
386
|
-
msgstr ""
|
407
|
+
msgstr "Importer des faits"
|
387
408
|
|
388
409
|
msgid "In addition to @host attribute function rand for random integers is available. Examples:"
|
389
410
|
msgstr "En plus de la fonction d'attribut @host, la fonction ALEA pour les entiers aléatoires est disponible. Exemples :"
|
@@ -431,7 +452,7 @@ msgid "List of facts to use for the hostname (separated by comma, first wins)"
|
|
431
452
|
msgstr "Liste des facts à utiliser pour le nom d'hôte (séparés par une virgule, le premier l'emporte)"
|
432
453
|
|
433
454
|
msgid "Location"
|
434
|
-
msgstr "
|
455
|
+
msgstr "Emplacement"
|
435
456
|
|
436
457
|
msgid "Locations"
|
437
458
|
msgstr "Emplacements"
|
@@ -464,16 +485,16 @@ msgid "Miscellaneous"
|
|
464
485
|
msgstr "Divers"
|
465
486
|
|
466
487
|
msgid "Model"
|
467
|
-
msgstr "
|
488
|
+
msgstr "Modéliser"
|
468
489
|
|
469
490
|
msgid "N/A"
|
470
|
-
msgstr "
|
491
|
+
msgstr "Sans objet"
|
471
492
|
|
472
493
|
msgid "Name"
|
473
494
|
msgstr "Nom"
|
474
495
|
|
475
496
|
msgid "Name of the parameter"
|
476
|
-
msgstr ""
|
497
|
+
msgstr "Nom du paramêtre"
|
477
498
|
|
478
499
|
msgid "Network"
|
479
500
|
msgstr "Réseau"
|
@@ -484,6 +505,9 @@ msgstr "Facts réseau"
|
|
484
505
|
msgid "New Discovery Rule"
|
485
506
|
msgstr "Nouvelle règle de détection"
|
486
507
|
|
508
|
+
msgid "New hosts"
|
509
|
+
msgstr ""
|
510
|
+
|
487
511
|
msgid "New in the last 24 hours"
|
488
512
|
msgstr "Nouveau au cours des dernières 24 heures"
|
489
513
|
|
@@ -536,7 +560,7 @@ msgid "PXELinux template to be used when pinning a host to discovery"
|
|
536
560
|
msgstr "Modèle PXELinux à utiliser lors de l'épinglage d'un hôte pour la détection"
|
537
561
|
|
538
562
|
msgid "Parameter value"
|
539
|
-
msgstr ""
|
563
|
+
msgstr "Valeur du paramètre"
|
540
564
|
|
541
565
|
msgid "Please Confirm"
|
542
566
|
msgstr "Merci de confirmer"
|
@@ -545,10 +569,10 @@ msgid "Primary"
|
|
545
569
|
msgstr "Primaire"
|
546
570
|
|
547
571
|
msgid "Provision"
|
548
|
-
msgstr "
|
572
|
+
msgstr "Mettre en service"
|
549
573
|
|
550
574
|
msgid "Provision %s"
|
551
|
-
msgstr "
|
575
|
+
msgstr "Mettre en service"
|
552
576
|
|
553
577
|
msgid "Provision a discovered host"
|
554
578
|
msgstr "Provisionner un hôte détecté"
|
@@ -569,7 +593,7 @@ msgid "Rebooting all discovered hosts"
|
|
569
593
|
msgstr "Redémarrage de tous les hôtes détectés"
|
570
594
|
|
571
595
|
msgid "Rebooting host %s"
|
572
|
-
msgstr "Redémarrage
|
596
|
+
msgstr "Redémarrage des l'hôtes"
|
573
597
|
|
574
598
|
msgid "Rebuild DNS for %s"
|
575
599
|
msgstr "Reconstruire DNS pour %s"
|
@@ -602,7 +626,7 @@ msgid "Reloading kernel on %s"
|
|
602
626
|
msgstr "Rechargement du noyau sur %s"
|
603
627
|
|
604
628
|
msgid "Remote action:"
|
605
|
-
msgstr ""
|
629
|
+
msgstr "Action distante :"
|
606
630
|
|
607
631
|
msgid "Reported in the last 7 days"
|
608
632
|
msgstr "Signalé au cours des 7 derniers jours"
|
@@ -641,7 +665,7 @@ msgid "Software facts"
|
|
641
665
|
msgstr "Facts logiciels"
|
642
666
|
|
643
667
|
msgid "Something went wrong while selecting hosts - %s"
|
644
|
-
msgstr "
|
668
|
+
msgstr "Une erreur s'est produite lors de la sélection des hôtes - %s"
|
645
669
|
|
646
670
|
msgid "Specify target hostname template pattern in the same syntax as in Provisioning Templates (ERB)."
|
647
671
|
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)."
|
@@ -653,16 +677,16 @@ msgid "Storage facts"
|
|
653
677
|
msgstr "Facts de stockage"
|
654
678
|
|
655
679
|
msgid "Submit"
|
656
|
-
msgstr "
|
680
|
+
msgstr "Envoyer"
|
657
681
|
|
658
682
|
msgid "Subnet"
|
659
|
-
msgstr "Sous-
|
683
|
+
msgstr "Sous-réseau"
|
660
684
|
|
661
685
|
msgid "Successfully provisioned %s"
|
662
686
|
msgstr "Provisioning réussi de %s"
|
663
687
|
|
664
688
|
msgid "Summary from %{time} ago to %{now}"
|
665
|
-
msgstr "
|
689
|
+
msgstr "Résumé d'il y a un an à %{now}"
|
666
690
|
|
667
691
|
msgid "Summary report for discovered hosts from Foreman"
|
668
692
|
msgstr "Rapport de synthèse des hôtes détectés depuis Foreman"
|
@@ -692,7 +716,7 @@ msgid "Type of name generator"
|
|
692
716
|
msgstr "Générateur type de nom"
|
693
717
|
|
694
718
|
msgid "Type of value"
|
695
|
-
msgstr ""
|
719
|
+
msgstr "Type de valeur"
|
696
720
|
|
697
721
|
msgid "UUID to track orchestration tasks status, GET /api/orchestration/:UUID/tasks"
|
698
722
|
msgstr "UUID pour surveiller l'état des tâches d'orchestration : GET /api/orchestration/:UUID/tasks"
|
@@ -704,13 +728,13 @@ msgid "Unable to find primary NIC with %{mac} specified via '%{fact}', NIC filte
|
|
704
728
|
msgstr "Impossible de trouver une carte réseau primaire avec %{mac} spécifié via '%{fact}', Filtre de carte réseau: %{filter}"
|
705
729
|
|
706
730
|
msgid "Unable to perform %{action} on %{ips}"
|
707
|
-
msgstr ""
|
731
|
+
msgstr "Impossible d'exécuter sur %{ips}"
|
708
732
|
|
709
733
|
msgid "Unable to perform kexec on %{name} (%{url}): %{msg}"
|
710
|
-
msgstr ""
|
734
|
+
msgstr "Impossible d'exécuter kexec sur %{name} (%{url}) : %{msg}"
|
711
735
|
|
712
736
|
msgid "Unable to perform reboot on %{name} (%{url}): %{msg}"
|
713
|
-
msgstr ""
|
737
|
+
msgstr "Impossible d'effectuer un redémarrage sur %{name} (%{url}) : %{msg}"
|
714
738
|
|
715
739
|
msgid "Unable to provision %{host}: %{errors}"
|
716
740
|
msgstr "Impossible de provisionner %{host} : %{errors}"
|
@@ -719,7 +743,7 @@ msgid "Update a rule"
|
|
719
743
|
msgstr "Mettre à jour une règle"
|
720
744
|
|
721
745
|
msgid "Upload facts for a host, creating the host if required"
|
722
|
-
msgstr "
|
746
|
+
msgstr "Télécharge les facts d'un hôte, créé l'hôte si besoin"
|
723
747
|
|
724
748
|
msgid "When creating hostname patterns, make sure the resulting host names are unique."
|
725
749
|
msgstr "Lors de la création de modèles de nom d'hôte, veillez à ce que les noms d'hôte soient uniques."
|
@@ -730,6 +754,9 @@ msgstr "ne peut pas contenir des espaces blancs."
|
|
730
754
|
msgid "defines a pattern to assign human-readable hostnames to the matching hosts"
|
731
755
|
msgstr "définit un modèle pour attribuer les noms d'hôte lisibles par l'homme aux hôtes correspondants"
|
732
756
|
|
757
|
+
msgid "documentation"
|
758
|
+
msgstr "documentation"
|
759
|
+
|
733
760
|
msgid "enables to limit maximum amount of provisioned hosts per rule"
|
734
761
|
msgstr "permet de limiter le nombre maximal d'hôtes provisionnés par règle"
|
735
762
|
|
@@ -779,13 +806,13 @@ msgid "represents rule name shown to the users"
|
|
779
806
|
msgstr "représente le nom de règle affiché aux utilisateurs"
|
780
807
|
|
781
808
|
msgid "required if host is managed and custom partition has not been defined"
|
782
|
-
msgstr ""
|
809
|
+
msgstr "requis si l'hôte est géré et possède une partition spécifique qui n'a pas été définie"
|
783
810
|
|
784
811
|
msgid "required if host is managed and value is not inherited from host group"
|
785
|
-
msgstr ""
|
812
|
+
msgstr "requis si l'hôte est géré et la valeur n'est pas héritée d'un groupe d'hôtes"
|
786
813
|
|
787
814
|
msgid "required if not imaged based provisioning and host is managed and value is not inherited from host group"
|
788
|
-
msgstr ""
|
815
|
+
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"
|
789
816
|
|
790
817
|
msgid "required if value is not inherited from host group or default password in settings"
|
791
818
|
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"
|
Binary file
|
@@ -5,9 +5,10 @@
|
|
5
5
|
# Translators:
|
6
6
|
msgid ""
|
7
7
|
msgstr ""
|
8
|
-
"Project-Id-Version: foreman_discovery 16.
|
8
|
+
"Project-Id-Version: foreman_discovery 16.3.4\n"
|
9
9
|
"Report-Msgid-Bugs-To: \n"
|
10
|
-
"
|
10
|
+
"POT-Creation-Date: 2021-05-03 08:46+0200\n"
|
11
|
+
"PO-Revision-Date: 2021-01-25 08:35+0000\n"
|
11
12
|
"Last-Translator: Transifex Bot <>\n"
|
12
13
|
"Language-Team: Galician (http://www.transifex.com/foreman/foreman/language/gl/"
|
13
14
|
")\n"
|
@@ -113,51 +114,51 @@ msgstr ""
|
|
113
114
|
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)"
|
114
115
|
msgstr ""
|
115
116
|
|
116
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:
|
117
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:130
|
117
118
|
msgid "Execute rules against a discovered host"
|
118
119
|
msgstr ""
|
119
120
|
|
120
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:
|
121
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:136 ../app/controllers/discovered_hosts_controller.rb:157
|
121
122
|
msgid "Host %{host} was provisioned with rule %{rule}"
|
122
123
|
msgstr ""
|
123
124
|
|
124
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:
|
125
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:139
|
125
126
|
msgid "Unable to provision %{host}: %{errors}"
|
126
127
|
msgstr ""
|
127
128
|
|
128
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:
|
129
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:145 ../app/controllers/discovered_hosts_controller.rb:164
|
129
130
|
msgid "No rule found for host %s"
|
130
131
|
msgstr ""
|
131
132
|
|
132
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:
|
133
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:152
|
133
134
|
msgid "Execute rules against all currently discovered hosts"
|
134
135
|
msgstr ""
|
135
136
|
|
136
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:
|
137
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:156 ../app/controllers/discovered_hosts_controller.rb:170
|
137
138
|
msgid "Errors during auto provisioning: %s"
|
138
139
|
msgstr ""
|
139
140
|
|
140
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:
|
141
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:159 ../app/controllers/discovered_hosts_controller.rb:173
|
141
142
|
msgid "No discovered hosts to provision"
|
142
143
|
msgstr ""
|
143
144
|
|
144
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:
|
145
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:181
|
145
146
|
msgid "%s discovered hosts were provisioned"
|
146
147
|
msgstr ""
|
147
148
|
|
148
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:
|
149
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:192
|
149
150
|
msgid "Refreshing the facts of a discovered host"
|
150
151
|
msgstr ""
|
151
152
|
|
152
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:
|
153
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:201
|
153
154
|
msgid "Rebooting a discovered host"
|
154
155
|
msgstr ""
|
155
156
|
|
156
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:
|
157
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:210
|
157
158
|
msgid "Rebooting all discovered hosts"
|
158
159
|
msgstr ""
|
159
160
|
|
160
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:
|
161
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:221 ../app/controllers/discovered_hosts_controller.rb:126
|
161
162
|
msgid "Discovered hosts are rebooting now"
|
162
163
|
msgstr ""
|
163
164
|
|
@@ -237,119 +238,95 @@ msgstr ""
|
|
237
238
|
msgid "No discovered hosts to reboot"
|
238
239
|
msgstr ""
|
239
240
|
|
240
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
241
|
+
#: ../app/controllers/discovered_hosts_controller.rb:60
|
241
242
|
msgid "Successfully provisioned %s"
|
242
243
|
msgstr ""
|
243
244
|
|
244
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
245
|
+
#: ../app/controllers/discovered_hosts_controller.rb:94
|
245
246
|
msgid "Facts refreshed for %s"
|
246
247
|
msgstr ""
|
247
248
|
|
248
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
249
|
+
#: ../app/controllers/discovered_hosts_controller.rb:96
|
249
250
|
msgid "Failed to refresh facts for %s"
|
250
251
|
msgstr ""
|
251
252
|
|
252
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
253
|
+
#: ../app/controllers/discovered_hosts_controller.rb:99
|
253
254
|
msgid "Failed to refresh facts for %{hostname} with error %{error_message}"
|
254
255
|
msgstr ""
|
255
256
|
|
256
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
257
|
+
#: ../app/controllers/discovered_hosts_controller.rb:106
|
257
258
|
msgid "Host of type %s can not be rebooted"
|
258
259
|
msgstr ""
|
259
260
|
|
260
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
261
|
+
#: ../app/controllers/discovered_hosts_controller.rb:110
|
261
262
|
msgid "Rebooting host %s"
|
262
263
|
msgstr ""
|
263
264
|
|
264
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
265
|
+
#: ../app/controllers/discovered_hosts_controller.rb:112
|
265
266
|
msgid "Failed to reboot host %s"
|
266
267
|
msgstr ""
|
267
268
|
|
268
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
269
|
+
#: ../app/controllers/discovered_hosts_controller.rb:115
|
269
270
|
msgid "Failed to reboot host %{hostname} with error %{error_message}"
|
270
271
|
msgstr ""
|
271
272
|
|
272
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
273
|
+
#: ../app/controllers/discovered_hosts_controller.rb:129
|
273
274
|
msgid "Failed to reboot hosts with error %s"
|
274
275
|
msgstr ""
|
275
276
|
|
276
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
277
|
+
#: ../app/controllers/discovered_hosts_controller.rb:147
|
277
278
|
msgid "Destroyed selected hosts"
|
278
279
|
msgstr "Eliminados equipos seleccionados"
|
279
280
|
|
280
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
281
|
+
#: ../app/controllers/discovered_hosts_controller.rb:149
|
281
282
|
msgid "The following hosts were not deleted: %s"
|
282
283
|
msgstr "Os seguintes equipos non foron eliminados: %s"
|
283
284
|
|
284
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
285
|
+
#: ../app/controllers/discovered_hosts_controller.rb:161
|
285
286
|
msgid "Failed to auto provision host %s: %s"
|
286
287
|
msgstr ""
|
287
288
|
|
288
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
289
|
+
#: ../app/controllers/discovered_hosts_controller.rb:189
|
289
290
|
msgid "Discovered hosts are provisioning now"
|
290
291
|
msgstr ""
|
291
292
|
|
292
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
293
|
-
msgid "
|
294
|
-
msgstr ""
|
295
|
-
|
296
|
-
#: ../app/controllers/discovered_hosts_controller.rb:226
|
297
|
-
msgid "Storage"
|
298
|
-
msgstr ""
|
299
|
-
|
300
|
-
#: ../app/controllers/discovered_hosts_controller.rb:226
|
301
|
-
msgid "Hardware"
|
302
|
-
msgstr ""
|
303
|
-
|
304
|
-
#: ../app/controllers/discovered_hosts_controller.rb:226
|
305
|
-
msgid "Network"
|
306
|
-
msgstr ""
|
307
|
-
|
308
|
-
#: ../app/controllers/discovered_hosts_controller.rb:226
|
309
|
-
msgid "Software"
|
310
|
-
msgstr ""
|
311
|
-
|
312
|
-
#: ../app/controllers/discovered_hosts_controller.rb:226
|
313
|
-
msgid "IPMI"
|
293
|
+
#: ../app/controllers/discovered_hosts_controller.rb:270
|
294
|
+
msgid "Discovered host reported from unknown subnet, communication will not be proxied."
|
314
295
|
msgstr ""
|
315
296
|
|
316
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
317
|
-
msgid "
|
297
|
+
#: ../app/controllers/discovered_hosts_controller.rb:275
|
298
|
+
msgid "Discovered hosts reported from unknown subnet are %s, communication will not be proxied."
|
318
299
|
msgstr ""
|
319
300
|
|
320
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
301
|
+
#: ../app/controllers/discovered_hosts_controller.rb:289
|
321
302
|
msgid "No hosts were found with that id or name"
|
322
303
|
msgstr "Non se atopou ningún equipos con ese id ou nome"
|
323
304
|
|
324
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
305
|
+
#: ../app/controllers/discovered_hosts_controller.rb:293
|
325
306
|
msgid "No hosts selected"
|
326
307
|
msgstr "Ningún equipo seleccionado"
|
327
308
|
|
328
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
309
|
+
#: ../app/controllers/discovered_hosts_controller.rb:299
|
329
310
|
msgid "Something went wrong while selecting hosts - %s"
|
330
311
|
msgstr "Algo fallou ao seleccionar equipos - %s"
|
331
312
|
|
332
|
-
#: ../app/controllers/discovery_rules_controller.rb:
|
313
|
+
#: ../app/controllers/discovery_rules_controller.rb:79
|
333
314
|
msgid "Rule enabled"
|
334
315
|
msgstr ""
|
335
316
|
|
336
|
-
#: ../app/controllers/discovery_rules_controller.rb:
|
317
|
+
#: ../app/controllers/discovery_rules_controller.rb:79
|
337
318
|
msgid "Rule disabled"
|
338
319
|
msgstr ""
|
339
320
|
|
340
|
-
#: ../app/helpers/discovered_hosts_helper.rb:
|
341
|
-
msgid "%s ago"
|
342
|
-
msgstr "Fai %s"
|
343
|
-
|
344
|
-
#: ../app/helpers/discovered_hosts_helper.rb:14 ../app/helpers/discovered_hosts_helper.rb:29 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:37
|
321
|
+
#: ../app/helpers/discovered_hosts_helper.rb:14 ../app/helpers/discovered_hosts_helper.rb:29 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:40
|
345
322
|
msgid "Auto Provision"
|
346
323
|
msgstr ""
|
347
324
|
|
348
|
-
#: ../app/helpers/discovered_hosts_helper.rb:15 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:
|
325
|
+
#: ../app/helpers/discovered_hosts_helper.rb:15 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:41
|
349
326
|
msgid "Refresh facts"
|
350
327
|
msgstr ""
|
351
328
|
|
352
|
-
#: ../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:
|
329
|
+
#: ../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
|
353
330
|
msgid "Reboot"
|
354
331
|
msgstr ""
|
355
332
|
|
@@ -361,7 +338,7 @@ msgstr ""
|
|
361
338
|
msgid "Select Action"
|
362
339
|
msgstr "Selecciona unha Acción"
|
363
340
|
|
364
|
-
#: ../app/helpers/discovered_hosts_helper.rb:23 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:
|
341
|
+
#: ../app/helpers/discovered_hosts_helper.rb:23 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:43
|
365
342
|
msgid "Delete %s?"
|
366
343
|
msgstr "¿Borrar %s?"
|
367
344
|
|
@@ -426,6 +403,10 @@ msgid "Enable rule '%s'?"
|
|
426
403
|
msgstr ""
|
427
404
|
|
428
405
|
#: ../app/helpers/discovery_rules_helper.rb:33
|
406
|
+
msgid "Clone"
|
407
|
+
msgstr ""
|
408
|
+
|
409
|
+
#: ../app/helpers/discovery_rules_helper.rb:34
|
429
410
|
msgid "Delete rule '%s'?"
|
430
411
|
msgstr ""
|
431
412
|
|
@@ -449,13 +430,13 @@ msgstr ""
|
|
449
430
|
msgid "must be present."
|
450
431
|
msgstr ""
|
451
432
|
|
452
|
-
#: ../app/models/discovery_rule.rb:
|
433
|
+
#: ../app/models/discovery_rule.rb:57
|
453
434
|
msgid "Host group organization %s must also be associated to the discovery rule"
|
454
435
|
msgid_plural "Host group organizations %s must also be associated to the discovery rule"
|
455
436
|
msgstr[0] ""
|
456
437
|
msgstr[1] ""
|
457
438
|
|
458
|
-
#: ../app/models/discovery_rule.rb:
|
439
|
+
#: ../app/models/discovery_rule.rb:61
|
459
440
|
msgid "Host group location %s must also be associated to the discovery rule"
|
460
441
|
msgid_plural "Host group locations %s must also be associated to the discovery rule"
|
461
442
|
msgstr[0] ""
|
@@ -725,6 +706,34 @@ msgstr ""
|
|
725
706
|
msgid "Unable to find primary NIC with %{mac} specified via '%{fact}', NIC filter: %{filter}"
|
726
707
|
msgstr ""
|
727
708
|
|
709
|
+
#: ../app/services/foreman_discovery/fact_to_category_resolver.rb:7
|
710
|
+
msgid "Highlights"
|
711
|
+
msgstr ""
|
712
|
+
|
713
|
+
#: ../app/services/foreman_discovery/fact_to_category_resolver.rb:8
|
714
|
+
msgid "Storage"
|
715
|
+
msgstr ""
|
716
|
+
|
717
|
+
#: ../app/services/foreman_discovery/fact_to_category_resolver.rb:9
|
718
|
+
msgid "Hardware"
|
719
|
+
msgstr ""
|
720
|
+
|
721
|
+
#: ../app/services/foreman_discovery/fact_to_category_resolver.rb:10
|
722
|
+
msgid "Network"
|
723
|
+
msgstr ""
|
724
|
+
|
725
|
+
#: ../app/services/foreman_discovery/fact_to_category_resolver.rb:11
|
726
|
+
msgid "Software"
|
727
|
+
msgstr ""
|
728
|
+
|
729
|
+
#: ../app/services/foreman_discovery/fact_to_category_resolver.rb:12
|
730
|
+
msgid "IPMI"
|
731
|
+
msgstr ""
|
732
|
+
|
733
|
+
#: ../app/services/foreman_discovery/fact_to_category_resolver.rb:13
|
734
|
+
msgid "Miscellaneous"
|
735
|
+
msgstr ""
|
736
|
+
|
728
737
|
#: ../app/services/foreman_discovery/host_converter.rb:47
|
729
738
|
msgid "IPAM must be configured for subnet '%s'"
|
730
739
|
msgstr ""
|
@@ -737,6 +746,10 @@ msgstr ""
|
|
737
746
|
msgid "Image API processing error: %{msg} (HTTP/%{code}, body: %{body})"
|
738
747
|
msgstr ""
|
739
748
|
|
749
|
+
#: ../app/services/foreman_discovery/ui_notifications/new_host.rb:22
|
750
|
+
msgid "Host %s has been dicovered"
|
751
|
+
msgstr ""
|
752
|
+
|
740
753
|
#: ../app/views/dashboard/_discovery_widget.html.erb:5
|
741
754
|
msgid "Discovered Host"
|
742
755
|
msgid_plural "Discovered Hosts"
|
@@ -751,15 +764,15 @@ msgstr ""
|
|
751
764
|
msgid "Host"
|
752
765
|
msgstr "Equipo"
|
753
766
|
|
754
|
-
#: ../app/views/dashboard/_discovery_widget_host_list.html.erb:4 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:
|
767
|
+
#: ../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
|
755
768
|
msgid "Model"
|
756
769
|
msgstr "Modelo"
|
757
770
|
|
758
|
-
#: ../app/views/dashboard/_discovery_widget_host_list.html.erb:5 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:
|
771
|
+
#: ../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
|
759
772
|
msgid "CPUs"
|
760
773
|
msgstr "Procesadores"
|
761
774
|
|
762
|
-
#: ../app/views/dashboard/_discovery_widget_host_list.html.erb:6 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:
|
775
|
+
#: ../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
|
763
776
|
msgid "Memory"
|
764
777
|
msgstr "Memoria"
|
765
778
|
|
@@ -771,59 +784,59 @@ msgstr ""
|
|
771
784
|
msgid "Create Host"
|
772
785
|
msgstr ""
|
773
786
|
|
774
|
-
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:
|
787
|
+
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:5
|
775
788
|
msgid "Select all items in this page"
|
776
789
|
msgstr "Seleccionar tódolos obxetos desta páxina"
|
777
790
|
|
778
|
-
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:
|
791
|
+
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:5
|
779
792
|
msgid "items selected. Uncheck to Clear"
|
780
793
|
msgstr "obxetos seleccionados. Desactivar para limpar"
|
781
794
|
|
782
|
-
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:
|
795
|
+
#: ../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
|
783
796
|
msgid "Name"
|
784
797
|
msgstr "Nome"
|
785
798
|
|
786
|
-
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:
|
799
|
+
#: ../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
|
787
800
|
msgid "IP Address"
|
788
801
|
msgstr "Dirección IP"
|
789
802
|
|
790
|
-
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:
|
803
|
+
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:11
|
791
804
|
msgid "Disk Count"
|
792
805
|
msgstr ""
|
793
806
|
|
794
|
-
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:
|
807
|
+
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:12
|
795
808
|
msgid "Disks Size"
|
796
809
|
msgstr ""
|
797
810
|
|
798
|
-
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:
|
811
|
+
#: ../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
|
799
812
|
msgid "Location"
|
800
813
|
msgstr "Lugares"
|
801
814
|
|
802
|
-
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:
|
815
|
+
#: ../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
|
803
816
|
msgid "Organization"
|
804
817
|
msgstr "Organización"
|
805
818
|
|
806
|
-
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:
|
819
|
+
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:18
|
807
820
|
msgid "Subnet"
|
808
821
|
msgstr "Subrede"
|
809
822
|
|
810
|
-
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:
|
823
|
+
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:19
|
811
824
|
msgid "Last Facts Upload"
|
812
825
|
msgstr ""
|
813
826
|
|
814
|
-
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:
|
827
|
+
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:20 ../app/views/discovery_rules/index.html.erb:14
|
815
828
|
msgid "Actions"
|
816
829
|
msgstr "Accións"
|
817
830
|
|
818
|
-
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:
|
831
|
+
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:55
|
819
832
|
msgid "Please Confirm"
|
820
833
|
msgstr "Confirme, por favor"
|
821
834
|
|
822
|
-
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:
|
835
|
+
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:61
|
823
836
|
msgid "Cancel"
|
824
837
|
msgstr "Cancelar"
|
825
838
|
|
826
|
-
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:
|
839
|
+
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:62
|
827
840
|
msgid "Submit"
|
828
841
|
msgstr "Introducir"
|
829
842
|
|
@@ -959,6 +972,10 @@ msgstr ""
|
|
959
972
|
msgid "Hostnames must not start with numbers. A good approach is to use unique information provided by facter (MAC address, BIOS or serial ID)."
|
960
973
|
msgstr ""
|
961
974
|
|
975
|
+
#: ../app/views/discovery_rules/clone.erb:1
|
976
|
+
msgid "Clone %s"
|
977
|
+
msgstr ""
|
978
|
+
|
962
979
|
#: ../app/views/discovery_rules/edit.html.erb:1
|
963
980
|
msgid "Edit %s"
|
964
981
|
msgstr "Editar %s"
|
@@ -967,7 +984,7 @@ msgstr "Editar %s"
|
|
967
984
|
msgid "Discovery Rules"
|
968
985
|
msgstr ""
|
969
986
|
|
970
|
-
#: ../app/views/discovery_rules/index.html.erb:2
|
987
|
+
#: ../app/views/discovery_rules/index.html.erb:2 ../webpack/src/ForemanDiscovery/DiscoveryRules/Components/EmptyState/EmptyState.js:9
|
971
988
|
msgid "Create Rule"
|
972
989
|
msgstr ""
|
973
990
|
|
@@ -991,7 +1008,7 @@ msgstr ""
|
|
991
1008
|
msgid "Hosts/Limit"
|
992
1009
|
msgstr ""
|
993
1010
|
|
994
|
-
#: ../app/views/discovery_rules/index.html.erb:
|
1011
|
+
#: ../app/views/discovery_rules/index.html.erb:13
|
995
1012
|
msgid "DiscoveryRule|Enabled"
|
996
1013
|
msgstr ""
|
997
1014
|
|
@@ -999,6 +1016,10 @@ msgstr ""
|
|
999
1016
|
msgid "New Discovery Rule"
|
1000
1017
|
msgstr ""
|
1001
1018
|
|
1019
|
+
#: ../app/views/discovery_rules/welcome.html.erb:8
|
1020
|
+
msgid "Discovered Rules"
|
1021
|
+
msgstr ""
|
1022
|
+
|
1002
1023
|
#: ../db/seeds.d/50_discovery_templates.rb:5
|
1003
1024
|
msgid "Command line options for kexec during PXE-less provisioning."
|
1004
1025
|
msgstr ""
|
@@ -1008,7 +1029,7 @@ msgid "A summary of discovered hosts"
|
|
1008
1029
|
msgstr ""
|
1009
1030
|
|
1010
1031
|
#: ../db/seeds.d/80_discovery_ui_notification.rb:4
|
1011
|
-
msgid "
|
1032
|
+
msgid "New hosts"
|
1012
1033
|
msgstr ""
|
1013
1034
|
|
1014
1035
|
#: ../db/seeds.d/80_discovery_ui_notification.rb:6
|
@@ -1019,22 +1040,38 @@ msgstr ""
|
|
1019
1040
|
msgid "Details"
|
1020
1041
|
msgstr ""
|
1021
1042
|
|
1022
|
-
#: ../
|
1043
|
+
#: ../db/seeds.d/80_discovery_ui_notification.rb:18
|
1044
|
+
msgid "Hosts"
|
1045
|
+
msgstr ""
|
1046
|
+
|
1047
|
+
#: ../db/seeds.d/80_discovery_ui_notification.rb:20
|
1048
|
+
msgid "Error message goes here"
|
1049
|
+
msgstr ""
|
1050
|
+
|
1051
|
+
#: ../lib/foreman_discovery/engine.rb:176
|
1023
1052
|
msgid "Discovery Kexec template"
|
1024
1053
|
msgstr ""
|
1025
1054
|
|
1026
|
-
#: ../lib/foreman_discovery/engine.rb:
|
1055
|
+
#: ../lib/foreman_discovery/engine.rb:185
|
1027
1056
|
msgid "Discovery Proxy"
|
1028
1057
|
msgstr ""
|
1029
1058
|
|
1030
|
-
#: ../lib/foreman_discovery/engine.rb:
|
1059
|
+
#: ../lib/foreman_discovery/engine.rb:186
|
1031
1060
|
msgid "Discovery Proxy to use within this subnet for managing connection to discovered hosts"
|
1032
1061
|
msgstr ""
|
1033
1062
|
|
1034
|
-
#: ../lib/foreman_discovery/engine.rb:
|
1063
|
+
#: ../lib/foreman_discovery/engine.rb:187
|
1035
1064
|
msgid "ID of Discovery Proxy to use within this subnet for managing connection to discovered hosts"
|
1036
1065
|
msgstr ""
|
1037
1066
|
|
1067
|
+
#: ../webpack/__mocks__/foremanReact/components/common/EmptyState/EmptyStatePattern.js:33
|
1068
|
+
msgid "For more information please see "
|
1069
|
+
msgstr ""
|
1070
|
+
|
1071
|
+
#: ../webpack/__mocks__/foremanReact/components/common/EmptyState/EmptyStatePattern.js:34
|
1072
|
+
msgid "documentation"
|
1073
|
+
msgstr ""
|
1074
|
+
|
1038
1075
|
#: action_names.rb:2
|
1039
1076
|
msgid "Remote action:"
|
1040
1077
|
msgstr ""
|
@@ -1044,9 +1081,13 @@ msgid "Import Puppet classes"
|
|
1044
1081
|
msgstr ""
|
1045
1082
|
|
1046
1083
|
#: action_names.rb:4
|
1047
|
-
msgid "
|
1084
|
+
msgid "Import facts"
|
1048
1085
|
msgstr ""
|
1049
1086
|
|
1050
1087
|
#: action_names.rb:5
|
1051
|
-
msgid "
|
1088
|
+
msgid "Action with sub plans"
|
1052
1089
|
msgstr ""
|
1090
|
+
|
1091
|
+
#: ../app/helpers/discovered_hosts_helper.rb:10
|
1092
|
+
#~ msgid "%s ago"
|
1093
|
+
#~ msgstr "Fai %s"
|