foreman_discovery 16.3.5 → 17.0.2
Sign up to get free protection for your applications and to get access to all the features.
- 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 +1 -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/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 +103 -70
- 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 +109 -76
- 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 +98 -66
- 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 +107 -74
- 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 +109 -76
- 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 +151 -118
- 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 +101 -68
- 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 +107 -74
- 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 +136 -103
- 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 +107 -74
- 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 +109 -76
- 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 +112 -79
- 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 +101 -68
- 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 +153 -120
- 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 +107 -74
- data/locale/zh_TW/foreman_discovery.po +43 -16
- data/package.json +6 -6
- 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 +32 -10
@@ -11,10 +11,11 @@
|
|
11
11
|
# Sergio Ocón-Cárdenas <sergio.ocon@redhat.com>, 2014
|
12
12
|
msgid ""
|
13
13
|
msgstr ""
|
14
|
-
"Project-Id-Version: foreman_discovery
|
14
|
+
"Project-Id-Version: foreman_discovery 17.1.0\n"
|
15
15
|
"Report-Msgid-Bugs-To: \n"
|
16
|
-
"
|
17
|
-
"
|
16
|
+
"POT-Creation-Date: 2021-09-20 17:25+0200\n"
|
17
|
+
"PO-Revision-Date: 2021-05-03 08:29+0000\n"
|
18
|
+
"Last-Translator: Lukáš Zapletal\n"
|
18
19
|
"Language-Team: Spanish (http://www.transifex.com/foreman/foreman/language/es/)"
|
19
20
|
"\n"
|
20
21
|
"MIME-Version: 1.0\n"
|
@@ -119,51 +120,51 @@ msgstr "Subir eventos para un host, si es necesario cree el host."
|
|
119
120
|
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)"
|
120
121
|
msgstr "hash que contiene eventos correspondientes al host con un conjunto mínimo de eventos: discovery_bootif, macaddress_eth0, ipaddress, ipaddress_eth0, interfaces: eth0 (ejemplo en caso de que la interfaz principal se denomine eth0)"
|
121
122
|
|
122
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:
|
123
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:130
|
123
124
|
msgid "Execute rules against a discovered host"
|
124
125
|
msgstr "Ejecutar reglas en función de un host detectado"
|
125
126
|
|
126
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:
|
127
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:136 ../app/controllers/discovered_hosts_controller.rb:160
|
127
128
|
msgid "Host %{host} was provisioned with rule %{rule}"
|
128
129
|
msgstr "El host %{host} se aprovisionó con la regla %{rule}"
|
129
130
|
|
130
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:
|
131
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:139
|
131
132
|
msgid "Unable to provision %{host}: %{errors}"
|
132
133
|
msgstr "No es posible aprovisionar %{host}: %{errors}"
|
133
134
|
|
134
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:
|
135
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:145 ../app/controllers/discovered_hosts_controller.rb:167
|
135
136
|
msgid "No rule found for host %s"
|
136
137
|
msgstr "No se halló una regla para el host %s"
|
137
138
|
|
138
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:
|
139
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:152
|
139
140
|
msgid "Execute rules against all currently discovered hosts"
|
140
141
|
msgstr "Ejecutar reglas contra todos los hosts detectados actualmente"
|
141
142
|
|
142
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:
|
143
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:156 ../app/controllers/discovered_hosts_controller.rb:173
|
143
144
|
msgid "Errors during auto provisioning: %s"
|
144
145
|
msgstr "Errores durante el autoaprovisionamiento: %s"
|
145
146
|
|
146
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:
|
147
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:159 ../app/controllers/discovered_hosts_controller.rb:176
|
147
148
|
msgid "No discovered hosts to provision"
|
148
149
|
msgstr "No hay hosts detectados para aprovisionar"
|
149
150
|
|
150
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:
|
151
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:181
|
151
152
|
msgid "%s discovered hosts were provisioned"
|
152
153
|
msgstr "Se aprovisionaron %s hosts detectados"
|
153
154
|
|
154
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:
|
155
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:192
|
155
156
|
msgid "Refreshing the facts of a discovered host"
|
156
157
|
msgstr "Actualizando los eventos de un host detectado"
|
157
158
|
|
158
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:
|
159
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:201
|
159
160
|
msgid "Rebooting a discovered host"
|
160
161
|
msgstr "Reiniciando un host detectado"
|
161
162
|
|
162
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:
|
163
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:210
|
163
164
|
msgid "Rebooting all discovered hosts"
|
164
165
|
msgstr "Reiniciando todos los hosts detectados"
|
165
166
|
|
166
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:
|
167
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:221 ../app/controllers/discovered_hosts_controller.rb:129
|
167
168
|
msgid "Discovered hosts are rebooting now"
|
168
169
|
msgstr "Se están reiniciando ahora los hosts detectados"
|
169
170
|
|
@@ -295,58 +296,34 @@ msgstr "Ocurrió un error al autoaprovisionar el host %s: %s"
|
|
295
296
|
msgid "Discovered hosts are provisioning now"
|
296
297
|
msgstr "Los hosts detectados se están aprovisionando ahora"
|
297
298
|
|
298
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
299
|
-
msgid "
|
300
|
-
msgstr "
|
301
|
-
|
302
|
-
#: ../app/controllers/discovered_hosts_controller.rb:226
|
303
|
-
msgid "Storage"
|
304
|
-
msgstr "Almacenamiento"
|
305
|
-
|
306
|
-
#: ../app/controllers/discovered_hosts_controller.rb:226
|
307
|
-
msgid "Hardware"
|
308
|
-
msgstr "Hardware"
|
309
|
-
|
310
|
-
#: ../app/controllers/discovered_hosts_controller.rb:226
|
311
|
-
msgid "Network"
|
312
|
-
msgstr "Red"
|
313
|
-
|
314
|
-
#: ../app/controllers/discovered_hosts_controller.rb:226
|
315
|
-
msgid "Software"
|
316
|
-
msgstr "Software"
|
317
|
-
|
318
|
-
#: ../app/controllers/discovered_hosts_controller.rb:226
|
319
|
-
msgid "IPMI"
|
320
|
-
msgstr "IPMI"
|
299
|
+
#: ../app/controllers/discovered_hosts_controller.rb:277
|
300
|
+
msgid "Discovered host reported from unknown subnet, communication will not be proxied."
|
301
|
+
msgstr ""
|
321
302
|
|
322
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
323
|
-
msgid "
|
324
|
-
msgstr "
|
303
|
+
#: ../app/controllers/discovered_hosts_controller.rb:282
|
304
|
+
msgid "Discovered hosts reported from unknown subnet are %s, communication will not be proxied."
|
305
|
+
msgstr ""
|
325
306
|
|
326
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
307
|
+
#: ../app/controllers/discovered_hosts_controller.rb:296
|
327
308
|
msgid "No hosts were found with that id or name"
|
328
309
|
msgstr "No se han encontrado equipos con ese id o nombre"
|
329
310
|
|
330
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
311
|
+
#: ../app/controllers/discovered_hosts_controller.rb:300
|
331
312
|
msgid "No hosts selected"
|
332
313
|
msgstr "Ningún host seleccionado"
|
333
314
|
|
334
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
315
|
+
#: ../app/controllers/discovered_hosts_controller.rb:306
|
335
316
|
msgid "Something went wrong while selecting hosts - %s"
|
336
317
|
msgstr "Algo ha fallado al seleccionar hosts - %s"
|
337
318
|
|
338
|
-
#: ../app/controllers/discovery_rules_controller.rb:
|
319
|
+
#: ../app/controllers/discovery_rules_controller.rb:79
|
339
320
|
msgid "Rule enabled"
|
340
321
|
msgstr "Regla habilitada"
|
341
322
|
|
342
|
-
#: ../app/controllers/discovery_rules_controller.rb:
|
323
|
+
#: ../app/controllers/discovery_rules_controller.rb:79
|
343
324
|
msgid "Rule disabled"
|
344
325
|
msgstr "Regla deshabilitada"
|
345
326
|
|
346
|
-
#: ../app/helpers/discovered_hosts_helper.rb:10
|
347
|
-
msgid "%s ago"
|
348
|
-
msgstr "Hace %s"
|
349
|
-
|
350
327
|
#: ../app/helpers/discovered_hosts_helper.rb:14 ../app/helpers/discovered_hosts_helper.rb:29 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:40
|
351
328
|
msgid "Auto Provision"
|
352
329
|
msgstr "Autoaprovisionamiento"
|
@@ -432,6 +409,10 @@ msgid "Enable rule '%s'?"
|
|
432
409
|
msgstr "¿Habilitar regla '%s'?"
|
433
410
|
|
434
411
|
#: ../app/helpers/discovery_rules_helper.rb:33
|
412
|
+
msgid "Clone"
|
413
|
+
msgstr "Clonar"
|
414
|
+
|
415
|
+
#: ../app/helpers/discovery_rules_helper.rb:34
|
435
416
|
msgid "Delete rule '%s'?"
|
436
417
|
msgstr "¿Eliminar regla '%s'?"
|
437
418
|
|
@@ -455,13 +436,13 @@ msgstr "debe comenzar con una letra o ERB."
|
|
455
436
|
msgid "must be present."
|
456
437
|
msgstr "debe estar presente."
|
457
438
|
|
458
|
-
#: ../app/models/discovery_rule.rb:
|
439
|
+
#: ../app/models/discovery_rule.rb:57
|
459
440
|
msgid "Host group organization %s must also be associated to the discovery rule"
|
460
441
|
msgid_plural "Host group organizations %s must also be associated to the discovery rule"
|
461
442
|
msgstr[0] "La organización del grupo de host %s debe estar asociada también con la regla de detección"
|
462
443
|
msgstr[1] "Las organizaciones del grupo de host %s deben estar asociadas también con la regla de detección"
|
463
444
|
|
464
|
-
#: ../app/models/discovery_rule.rb:
|
445
|
+
#: ../app/models/discovery_rule.rb:61
|
465
446
|
msgid "Host group location %s must also be associated to the discovery rule"
|
466
447
|
msgid_plural "Host group locations %s must also be associated to the discovery rule"
|
467
448
|
msgstr[0] "La ubicación del grupo de host %s debe estar asociada también con la regla de detección"
|
@@ -495,23 +476,23 @@ msgstr "Eventos inválidos: el hash no contiene un valor válido para ninguno de
|
|
495
476
|
msgid "Facts could not be imported"
|
496
477
|
msgstr "No se pudieron importar los eventos"
|
497
478
|
|
498
|
-
#: ../app/models/host/discovered.rb:
|
479
|
+
#: ../app/models/host/discovered.rb:155
|
499
480
|
msgid "Could not get facts from proxy %{url}: %{error}"
|
500
481
|
msgstr "No pudieron obtenerse los eventos del proxy %{url}: %{error}"
|
501
482
|
|
502
|
-
#: ../app/models/host/discovered.rb:
|
483
|
+
#: ../app/models/host/discovered.rb:173
|
503
484
|
msgid "Unable to perform reboot on %{name} (%{url}): %{msg}"
|
504
485
|
msgstr "No se puede realizar el reinicio en %{name} (%{url}): %{msg}"
|
505
486
|
|
506
|
-
#: ../app/models/host/discovered.rb:
|
487
|
+
#: ../app/models/host/discovered.rb:177 ../app/models/host/discovered.rb:200
|
507
488
|
msgid "Unable to perform %{action} on %{ips}"
|
508
489
|
msgstr ""
|
509
490
|
|
510
|
-
#: ../app/models/host/discovered.rb:
|
491
|
+
#: ../app/models/host/discovered.rb:196
|
511
492
|
msgid "Unable to perform kexec on %{name} (%{url}): %{msg}"
|
512
493
|
msgstr "No es posible ejecutar kexec en %{name} (%{url}): %{msg}"
|
513
494
|
|
514
|
-
#: ../app/models/host/discovered.rb:
|
495
|
+
#: ../app/models/host/discovered.rb:220
|
515
496
|
msgid "Invalid hostname: Could not normalize the hostname"
|
516
497
|
msgstr "Nombre de host inválido: no es posible normalizar el nombre de host"
|
517
498
|
|
@@ -719,6 +700,14 @@ msgstr "Detección de patrón de definición de nombre de host"
|
|
719
700
|
msgid "Type of name generator"
|
720
701
|
msgstr "Tipo de generador de nombre"
|
721
702
|
|
703
|
+
#: ../app/models/setting/discovered.rb:40
|
704
|
+
msgid "Prefer IPv6 to IPv4 when calling discovered nodes"
|
705
|
+
msgstr ""
|
706
|
+
|
707
|
+
#: ../app/models/setting/discovered.rb:40
|
708
|
+
msgid "Prefer IPv6"
|
709
|
+
msgstr ""
|
710
|
+
|
722
711
|
#: ../app/services/foreman_discovery/fact_parser.rb:4
|
723
712
|
msgid "Discovery fact parser does not work with non-discovery host '%{host}'"
|
724
713
|
msgstr "El analizador de hechos de detección no funciona con el host de no detección '%{host}'"
|
@@ -731,6 +720,34 @@ msgstr "El host detectado '%{host}' tiene todas las NIC filtradas, filtro: %{fil
|
|
731
720
|
msgid "Unable to find primary NIC with %{mac} specified via '%{fact}', NIC filter: %{filter}"
|
732
721
|
msgstr "No se puede encontrar la NIC principal con %{mac} especificada mediante '%{fact}', filtro de NIC: %{filter}"
|
733
722
|
|
723
|
+
#: ../app/services/foreman_discovery/fact_to_category_resolver.rb:7
|
724
|
+
msgid "Highlights"
|
725
|
+
msgstr "Aspectos destacados"
|
726
|
+
|
727
|
+
#: ../app/services/foreman_discovery/fact_to_category_resolver.rb:8
|
728
|
+
msgid "Storage"
|
729
|
+
msgstr "Almacenamiento"
|
730
|
+
|
731
|
+
#: ../app/services/foreman_discovery/fact_to_category_resolver.rb:9
|
732
|
+
msgid "Hardware"
|
733
|
+
msgstr "Hardware"
|
734
|
+
|
735
|
+
#: ../app/services/foreman_discovery/fact_to_category_resolver.rb:10
|
736
|
+
msgid "Network"
|
737
|
+
msgstr "Red"
|
738
|
+
|
739
|
+
#: ../app/services/foreman_discovery/fact_to_category_resolver.rb:11
|
740
|
+
msgid "Software"
|
741
|
+
msgstr "Software"
|
742
|
+
|
743
|
+
#: ../app/services/foreman_discovery/fact_to_category_resolver.rb:12
|
744
|
+
msgid "IPMI"
|
745
|
+
msgstr "IPMI"
|
746
|
+
|
747
|
+
#: ../app/services/foreman_discovery/fact_to_category_resolver.rb:13
|
748
|
+
msgid "Miscellaneous"
|
749
|
+
msgstr "Misceláneo"
|
750
|
+
|
734
751
|
#: ../app/services/foreman_discovery/host_converter.rb:47
|
735
752
|
msgid "IPAM must be configured for subnet '%s'"
|
736
753
|
msgstr "El IPAM debe ser configurado para la subred '%s'"
|
@@ -743,6 +760,10 @@ msgstr "La API de la imagen arrojó HTTP/%{code} with '%{body}"
|
|
743
760
|
msgid "Image API processing error: %{msg} (HTTP/%{code}, body: %{body})"
|
744
761
|
msgstr "Error de procesamiento de la API de la imagen: %{msg} (HTTP/%{code}, body: %{body})"
|
745
762
|
|
763
|
+
#: ../app/services/foreman_discovery/ui_notifications/new_host.rb:22
|
764
|
+
msgid "Host %s has been dicovered"
|
765
|
+
msgstr ""
|
766
|
+
|
746
767
|
#: ../app/views/dashboard/_discovery_widget.html.erb:5
|
747
768
|
msgid "Discovered Host"
|
748
769
|
msgid_plural "Discovered Hosts"
|
@@ -801,11 +822,11 @@ msgstr "Conteo de discos"
|
|
801
822
|
msgid "Disks Size"
|
802
823
|
msgstr "Tamaño de los discos"
|
803
824
|
|
804
|
-
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:16 ../app/views/discovered_hosts/_selected_hosts.html.erb:9
|
825
|
+
#: ../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
|
805
826
|
msgid "Location"
|
806
827
|
msgstr "Ubicación"
|
807
828
|
|
808
|
-
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:17 ../app/views/discovered_hosts/_selected_hosts.html.erb:10
|
829
|
+
#: ../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
|
809
830
|
msgid "Organization"
|
810
831
|
msgstr "Organización"
|
811
832
|
|
@@ -817,7 +838,7 @@ msgstr "Subred"
|
|
817
838
|
msgid "Last Facts Upload"
|
818
839
|
msgstr "Última carga de datos"
|
819
840
|
|
820
|
-
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:20 ../app/views/discovery_rules/index.html.erb:
|
841
|
+
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:20 ../app/views/discovery_rules/index.html.erb:14
|
821
842
|
msgid "Actions"
|
822
843
|
msgstr "Acciones"
|
823
844
|
|
@@ -965,6 +986,10 @@ msgstr "Al crear patrones de nombres de host, asegúrese de que los nombres de h
|
|
965
986
|
msgid "Hostnames must not start with numbers. A good approach is to use unique information provided by facter (MAC address, BIOS or serial ID)."
|
966
987
|
msgstr "Los nombres de hosts no deben comenzar con números. Una buena estrategia consiste en utilizar la información particular aprovisionada por el suministrador de eventos (dirección MAC, BIOS o ID de serie)."
|
967
988
|
|
989
|
+
#: ../app/views/discovery_rules/clone.erb:1
|
990
|
+
msgid "Clone %s"
|
991
|
+
msgstr "Clonar %s"
|
992
|
+
|
968
993
|
#: ../app/views/discovery_rules/edit.html.erb:1
|
969
994
|
msgid "Edit %s"
|
970
995
|
msgstr "Editar %s"
|
@@ -997,7 +1022,7 @@ msgstr "Grupo de Equipo"
|
|
997
1022
|
msgid "Hosts/Limit"
|
998
1023
|
msgstr "Hosts/Límite"
|
999
1024
|
|
1000
|
-
#: ../app/views/discovery_rules/index.html.erb:
|
1025
|
+
#: ../app/views/discovery_rules/index.html.erb:13
|
1001
1026
|
msgid "DiscoveryRule|Enabled"
|
1002
1027
|
msgstr "Regla de detección|Habilitada"
|
1003
1028
|
|
@@ -1018,8 +1043,8 @@ msgid "A summary of discovered hosts"
|
|
1018
1043
|
msgstr "Resumen de los hosts detectados"
|
1019
1044
|
|
1020
1045
|
#: ../db/seeds.d/80_discovery_ui_notification.rb:4
|
1021
|
-
msgid "
|
1022
|
-
msgstr "
|
1046
|
+
msgid "New hosts"
|
1047
|
+
msgstr ""
|
1023
1048
|
|
1024
1049
|
#: ../db/seeds.d/80_discovery_ui_notification.rb:6
|
1025
1050
|
msgid "One or more hosts have been discovered"
|
@@ -1029,19 +1054,27 @@ msgstr "Se detectaron uno o más hosts"
|
|
1029
1054
|
msgid "Details"
|
1030
1055
|
msgstr "Detalles"
|
1031
1056
|
|
1032
|
-
#: ../
|
1057
|
+
#: ../db/seeds.d/80_discovery_ui_notification.rb:18
|
1058
|
+
msgid "Hosts"
|
1059
|
+
msgstr "Hosts"
|
1060
|
+
|
1061
|
+
#: ../db/seeds.d/80_discovery_ui_notification.rb:20
|
1062
|
+
msgid "Error message goes here"
|
1063
|
+
msgstr ""
|
1064
|
+
|
1065
|
+
#: ../lib/foreman_discovery/engine.rb:176
|
1033
1066
|
msgid "Discovery Kexec template"
|
1034
1067
|
msgstr "Plantilla Kexec de detección"
|
1035
1068
|
|
1036
|
-
#: ../lib/foreman_discovery/engine.rb:
|
1069
|
+
#: ../lib/foreman_discovery/engine.rb:185
|
1037
1070
|
msgid "Discovery Proxy"
|
1038
1071
|
msgstr "Proxy de detección"
|
1039
1072
|
|
1040
|
-
#: ../lib/foreman_discovery/engine.rb:
|
1073
|
+
#: ../lib/foreman_discovery/engine.rb:186
|
1041
1074
|
msgid "Discovery Proxy to use within this subnet for managing connection to discovered hosts"
|
1042
1075
|
msgstr "Proxy de detección para usar en esta subred para administrar la conexión con los hosts detectados"
|
1043
1076
|
|
1044
|
-
#: ../lib/foreman_discovery/engine.rb:
|
1077
|
+
#: ../lib/foreman_discovery/engine.rb:187
|
1045
1078
|
msgid "ID of Discovery Proxy to use within this subnet for managing connection to discovered hosts"
|
1046
1079
|
msgstr "ID del proxy de detección para usar en esta subred para administrar la conexión con los hosts detectados"
|
1047
1080
|
|
@@ -1051,20 +1084,20 @@ msgstr ""
|
|
1051
1084
|
|
1052
1085
|
#: ../webpack/__mocks__/foremanReact/components/common/EmptyState/EmptyStatePattern.js:34
|
1053
1086
|
msgid "documentation"
|
1054
|
-
msgstr ""
|
1087
|
+
msgstr "documentación"
|
1055
1088
|
|
1056
1089
|
#: action_names.rb:2
|
1057
|
-
msgid "
|
1058
|
-
msgstr "Acción
|
1090
|
+
msgid "Remote action:"
|
1091
|
+
msgstr "Acción remota:"
|
1059
1092
|
|
1060
1093
|
#: action_names.rb:3
|
1061
|
-
msgid "Import facts"
|
1062
|
-
msgstr "Importar datos"
|
1063
|
-
|
1064
|
-
#: action_names.rb:4
|
1065
1094
|
msgid "Import Puppet classes"
|
1066
1095
|
msgstr "Importar clases Puppet"
|
1067
1096
|
|
1097
|
+
#: action_names.rb:4
|
1098
|
+
msgid "Import facts"
|
1099
|
+
msgstr "Importar datos"
|
1100
|
+
|
1068
1101
|
#: action_names.rb:5
|
1069
|
-
msgid "
|
1070
|
-
msgstr "Acción
|
1102
|
+
msgid "Action with sub plans"
|
1103
|
+
msgstr "Acción con subplanes"
|