foreman_discovery 16.3.1 → 17.0.1
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 +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
@@ -4,15 +4,17 @@
|
|
4
4
|
#
|
5
5
|
# Translators:
|
6
6
|
# elobato <elobatocs@gmail.com>, 2015
|
7
|
+
# elobato <elobatocs@gmail.com>, 2015
|
7
8
|
# francis <hackgo@gmail.com>, 2013-2014
|
9
|
+
# Sergio Ocón-Cárdenas <sergio.ocon@redhat.com>, 2014
|
8
10
|
# Sergio Ocón-Cárdenas <sergio.ocon@redhat.com>, 2014-2015
|
9
11
|
# Sergio Ocón-Cárdenas <sergio.ocon@redhat.com>, 2014
|
10
12
|
msgid ""
|
11
13
|
msgstr ""
|
12
|
-
"Project-Id-Version: foreman_discovery 16.
|
14
|
+
"Project-Id-Version: foreman_discovery 16.3.4\n"
|
13
15
|
"Report-Msgid-Bugs-To: \n"
|
14
|
-
"PO-Revision-Date:
|
15
|
-
"Last-Translator:
|
16
|
+
"PO-Revision-Date: 2021-01-25 08:35+0000\n"
|
17
|
+
"Last-Translator: Amit Upadhye <aupadhye@redhat.com>\n"
|
16
18
|
"Language-Team: Spanish (http://www.transifex.com/foreman/foreman/language/es/)"
|
17
19
|
"\n"
|
18
20
|
"MIME-Version: 1.0\n"
|
@@ -24,9 +26,6 @@ msgstr ""
|
|
24
26
|
msgid "%s - The following hosts are about to be changed"
|
25
27
|
msgstr "%s - Los siguientes equipos están a punto de ser modificados"
|
26
28
|
|
27
|
-
msgid "%s ago"
|
28
|
-
msgstr "Hace %s"
|
29
|
-
|
30
29
|
msgid "%s discovered hosts were provisioned"
|
31
30
|
msgstr "Se aprovisionaron %s hosts detectados"
|
32
31
|
|
@@ -37,7 +36,7 @@ msgid "A summary of discovered hosts"
|
|
37
36
|
msgstr "Resumen de los hosts detectados"
|
38
37
|
|
39
38
|
msgid "Action with sub plans"
|
40
|
-
msgstr ""
|
39
|
+
msgstr "Acción con subplanes"
|
41
40
|
|
42
41
|
msgid "Actions"
|
43
42
|
msgstr "Acciones"
|
@@ -84,8 +83,14 @@ msgstr "Eliminar todos los eventos"
|
|
84
83
|
msgid "Clean all reported facts during provisioning (except discovery facts)"
|
85
84
|
msgstr "Eliminar todos los eventos informados durante el aprovisionamiento (excepto los eventos de detección)"
|
86
85
|
|
86
|
+
msgid "Clone"
|
87
|
+
msgstr ""
|
88
|
+
|
89
|
+
msgid "Clone %s"
|
90
|
+
msgstr ""
|
91
|
+
|
87
92
|
msgid "Collapse All"
|
88
|
-
msgstr "
|
93
|
+
msgstr "Contraer todo"
|
89
94
|
|
90
95
|
msgid "Command line options for kexec during PXE-less provisioning."
|
91
96
|
msgstr "Opciones de la línea de comandos para kexec durante el aprovisionamiento sin PXE."
|
@@ -133,25 +138,31 @@ msgid "Destroyed selected hosts"
|
|
133
138
|
msgstr "Eliminados equipos seleccionados"
|
134
139
|
|
135
140
|
msgid "Details"
|
136
|
-
msgstr "
|
141
|
+
msgstr "Detalles"
|
137
142
|
|
138
143
|
msgid "Disable"
|
139
|
-
msgstr "
|
144
|
+
msgstr "Deshabilitar"
|
140
145
|
|
141
146
|
msgid "Disable rule '%s'?"
|
142
147
|
msgstr "¿Deshabilitar regla '%s'?"
|
143
148
|
|
144
149
|
msgid "Discovered Host"
|
145
150
|
msgid_plural "Discovered Hosts"
|
146
|
-
msgstr[0] ""
|
147
|
-
msgstr[1] ""
|
151
|
+
msgstr[0] "Host detectado"
|
152
|
+
msgstr[1] "Hosts detectados"
|
148
153
|
|
149
154
|
msgid "Discovered Hosts"
|
150
155
|
msgstr "Hosts detectados"
|
151
156
|
|
157
|
+
msgid "Discovered Rules"
|
158
|
+
msgstr ""
|
159
|
+
|
152
160
|
msgid "Discovered host '%{host}' has all NICs filtered out, filter: %{filter}"
|
153
161
|
msgstr "El host detectado '%{host}' tiene todas las NIC filtradas, filtro: %{filter}"
|
154
162
|
|
163
|
+
msgid "Discovered host reported from unknown subnet, communication will not be proxied."
|
164
|
+
msgstr ""
|
165
|
+
|
155
166
|
msgid "Discovered host: %s"
|
156
167
|
msgstr "Equipo descubierto: %s"
|
157
168
|
|
@@ -164,6 +175,9 @@ msgstr "Se están reiniciando ahora los hosts detectados"
|
|
164
175
|
msgid "Discovered hosts from Foreman server at %{foreman_url}"
|
165
176
|
msgstr "Hosts detectados desde el servidor de Foreman en %{foreman_url}"
|
166
177
|
|
178
|
+
msgid "Discovered hosts reported from unknown subnet are %s, communication will not be proxied."
|
179
|
+
msgstr ""
|
180
|
+
|
167
181
|
msgid "Discovered hosts summary"
|
168
182
|
msgstr "Resumen de hosts detectados"
|
169
183
|
|
@@ -225,11 +239,14 @@ msgid "Edit %s"
|
|
225
239
|
msgstr "Editar %s"
|
226
240
|
|
227
241
|
msgid "Enable"
|
228
|
-
msgstr "
|
242
|
+
msgstr "Habilitar"
|
229
243
|
|
230
244
|
msgid "Enable rule '%s'?"
|
231
245
|
msgstr "¿Habilitar regla '%s'?"
|
232
246
|
|
247
|
+
msgid "Error message goes here"
|
248
|
+
msgstr ""
|
249
|
+
|
233
250
|
msgid "Error on existing NIC"
|
234
251
|
msgstr "Error en la NIC existente"
|
235
252
|
|
@@ -284,6 +301,9 @@ msgstr "Fallo al refrescar datos para %s"
|
|
284
301
|
msgid "Failed to refresh facts for %{hostname} with error %{error_message}"
|
285
302
|
msgstr "Ocurrió un error al actualizar los eventos de %{hostname} con el error %{error_message}"
|
286
303
|
|
304
|
+
msgid "For more information please see "
|
305
|
+
msgstr ""
|
306
|
+
|
287
307
|
msgid "Force DNS"
|
288
308
|
msgstr "Forzar DNS"
|
289
309
|
|
@@ -306,7 +326,10 @@ msgid "Highlights"
|
|
306
326
|
msgstr "Aspectos destacados"
|
307
327
|
|
308
328
|
msgid "Host"
|
309
|
-
msgstr "
|
329
|
+
msgstr "host"
|
330
|
+
|
331
|
+
msgid "Host %s has been dicovered"
|
332
|
+
msgstr ""
|
310
333
|
|
311
334
|
msgid "Host %{host} was provisioned with rule %{rule}"
|
312
335
|
msgstr "El host %{host} se aprovisionó con la regla %{rule}"
|
@@ -316,22 +339,22 @@ msgstr "Grupo de Equipo"
|
|
316
339
|
|
317
340
|
msgid "Host group location %s must also be associated to the discovery rule"
|
318
341
|
msgid_plural "Host group locations %s must also be associated to the discovery rule"
|
319
|
-
msgstr[0] ""
|
320
|
-
msgstr[1] ""
|
342
|
+
msgstr[0] "La ubicación del grupo de host %s debe estar asociada también con la regla de detección"
|
343
|
+
msgstr[1] "Las ubicaciones del grupo de host %s deben estar asociadas también con la regla de detección"
|
321
344
|
|
322
345
|
msgid "Host group organization %s must also be associated to the discovery rule"
|
323
346
|
msgid_plural "Host group organizations %s must also be associated to the discovery rule"
|
324
|
-
msgstr[0] ""
|
325
|
-
msgstr[1] ""
|
347
|
+
msgstr[0] "La organización del grupo de host %s debe estar asociada también con la regla de detección"
|
348
|
+
msgstr[1] "Las organizaciones del grupo de host %s deben estar asociadas también con la regla de detección"
|
326
349
|
|
327
350
|
msgid "Host of type %s can not be rebooted"
|
328
351
|
msgstr "No es posible reiniciar el tipo de host %s"
|
329
352
|
|
330
353
|
msgid "Host's owner type"
|
331
|
-
msgstr ""
|
354
|
+
msgstr "Tipo de propietario de host"
|
332
355
|
|
333
356
|
msgid "Host's parameters (array or indexed hash)"
|
334
|
-
msgstr ""
|
357
|
+
msgstr "Parámetros del host (array o hash indexado)"
|
335
358
|
|
336
359
|
msgid "Hostname facts"
|
337
360
|
msgstr "Eventos del nombre de host"
|
@@ -364,7 +387,7 @@ msgid "IP address"
|
|
364
387
|
msgstr "Dirección IP"
|
365
388
|
|
366
389
|
msgid "IPAM must be configured for subnet '%s'"
|
367
|
-
msgstr ""
|
390
|
+
msgstr "El IPAM debe ser configurado para la subred '%s'"
|
368
391
|
|
369
392
|
msgid "IPMI"
|
370
393
|
msgstr "IPMI"
|
@@ -382,10 +405,10 @@ msgid "Image API returned HTTP/%{code} with '%{body}"
|
|
382
405
|
msgstr "La API de la imagen arrojó HTTP/%{code} with '%{body}"
|
383
406
|
|
384
407
|
msgid "Import Puppet classes"
|
385
|
-
msgstr ""
|
408
|
+
msgstr "Importar clases Puppet"
|
386
409
|
|
387
410
|
msgid "Import facts"
|
388
|
-
msgstr ""
|
411
|
+
msgstr "Importar datos"
|
389
412
|
|
390
413
|
msgid "In addition to @host attribute function rand for random integers is available. Examples:"
|
391
414
|
msgstr "Además del atributo @host, la función aleatoria para los números enteros aleatorizados se encuentra disponible. Ejemplos:"
|
@@ -433,7 +456,7 @@ msgid "List of facts to use for the hostname (separated by comma, first wins)"
|
|
433
456
|
msgstr "Mostrar los eventos que deben utilizarse para el nombre de host (separados por comas, los primeros son los más importantes)"
|
434
457
|
|
435
458
|
msgid "Location"
|
436
|
-
msgstr "
|
459
|
+
msgstr "Ubicación"
|
437
460
|
|
438
461
|
msgid "Locations"
|
439
462
|
msgstr "Ubicaciones"
|
@@ -463,19 +486,19 @@ msgid "Memory"
|
|
463
486
|
msgstr "Memoria"
|
464
487
|
|
465
488
|
msgid "Miscellaneous"
|
466
|
-
msgstr "
|
489
|
+
msgstr "Misceláneo"
|
467
490
|
|
468
491
|
msgid "Model"
|
469
|
-
msgstr "
|
492
|
+
msgstr "Modelado"
|
470
493
|
|
471
494
|
msgid "N/A"
|
472
|
-
msgstr "N/
|
495
|
+
msgstr "N/C"
|
473
496
|
|
474
497
|
msgid "Name"
|
475
498
|
msgstr "Nombre"
|
476
499
|
|
477
500
|
msgid "Name of the parameter"
|
478
|
-
msgstr ""
|
501
|
+
msgstr "Nombre del parámetro"
|
479
502
|
|
480
503
|
msgid "Network"
|
481
504
|
msgstr "Red"
|
@@ -486,6 +509,9 @@ msgstr "Eventos de red"
|
|
486
509
|
msgid "New Discovery Rule"
|
487
510
|
msgstr "Nueva regla de detección"
|
488
511
|
|
512
|
+
msgid "New hosts"
|
513
|
+
msgstr ""
|
514
|
+
|
489
515
|
msgid "New in the last 24 hours"
|
490
516
|
msgstr "Nuevo en las últimas 24 horas"
|
491
517
|
|
@@ -505,7 +531,7 @@ msgid "No hostgroup associated with rule '%s'"
|
|
505
531
|
msgstr "No hay grupo de host asociado con la regla '%s'"
|
506
532
|
|
507
533
|
msgid "No hosts selected"
|
508
|
-
msgstr "Ningún
|
534
|
+
msgstr "Ningún host seleccionado"
|
509
535
|
|
510
536
|
msgid "No hosts were found with that id or name"
|
511
537
|
msgstr "No se han encontrado equipos con ese id o nombre"
|
@@ -538,16 +564,16 @@ msgid "PXELinux template to be used when pinning a host to discovery"
|
|
538
564
|
msgstr "Debe utilizarse la plantilla PXELinux para adjuntar un host a la detección"
|
539
565
|
|
540
566
|
msgid "Parameter value"
|
541
|
-
msgstr ""
|
567
|
+
msgstr "Valor del parámetro"
|
542
568
|
|
543
569
|
msgid "Please Confirm"
|
544
|
-
msgstr "
|
570
|
+
msgstr "Confirmar"
|
545
571
|
|
546
572
|
msgid "Primary"
|
547
573
|
msgstr "Primario"
|
548
574
|
|
549
575
|
msgid "Provision"
|
550
|
-
msgstr "
|
576
|
+
msgstr "Aprovisionar"
|
551
577
|
|
552
578
|
msgid "Provision %s"
|
553
579
|
msgstr "Aprovisionar %s"
|
@@ -604,7 +630,7 @@ msgid "Reloading kernel on %s"
|
|
604
630
|
msgstr "Recargando el kernel en %s"
|
605
631
|
|
606
632
|
msgid "Remote action:"
|
607
|
-
msgstr ""
|
633
|
+
msgstr "Acción remota:"
|
608
634
|
|
609
635
|
msgid "Reported in the last 7 days"
|
610
636
|
msgstr "Informado en los últimos 7 días"
|
@@ -643,7 +669,7 @@ msgid "Software facts"
|
|
643
669
|
msgstr "Eventos de software"
|
644
670
|
|
645
671
|
msgid "Something went wrong while selecting hosts - %s"
|
646
|
-
msgstr "Algo ha fallado al seleccionar
|
672
|
+
msgstr "Algo ha fallado al seleccionar hosts - %s"
|
647
673
|
|
648
674
|
msgid "Specify target hostname template pattern in the same syntax as in Provisioning Templates (ERB)."
|
649
675
|
msgstr "Especificar el patrón de la plantilla del nombre de host de destino con la misma sintaxis que en las Plantillas de aprovisionamiento (ERB)."
|
@@ -655,7 +681,7 @@ msgid "Storage facts"
|
|
655
681
|
msgstr "Eventos de almacenamiento"
|
656
682
|
|
657
683
|
msgid "Submit"
|
658
|
-
msgstr "
|
684
|
+
msgstr "Enviar"
|
659
685
|
|
660
686
|
msgid "Subnet"
|
661
687
|
msgstr "Subred"
|
@@ -694,7 +720,7 @@ msgid "Type of name generator"
|
|
694
720
|
msgstr "Tipo de generador de nombre"
|
695
721
|
|
696
722
|
msgid "Type of value"
|
697
|
-
msgstr ""
|
723
|
+
msgstr "Tipo de valor"
|
698
724
|
|
699
725
|
msgid "UUID to track orchestration tasks status, GET /api/orchestration/:UUID/tasks"
|
700
726
|
msgstr "UUID para seguir el estado de la tarea de orquestación, GET /api/orchestration/:UUID/tasks"
|
@@ -709,10 +735,10 @@ msgid "Unable to perform %{action} on %{ips}"
|
|
709
735
|
msgstr ""
|
710
736
|
|
711
737
|
msgid "Unable to perform kexec on %{name} (%{url}): %{msg}"
|
712
|
-
msgstr ""
|
738
|
+
msgstr "No es posible ejecutar kexec en %{name} (%{url}): %{msg}"
|
713
739
|
|
714
740
|
msgid "Unable to perform reboot on %{name} (%{url}): %{msg}"
|
715
|
-
msgstr ""
|
741
|
+
msgstr "No se puede realizar el reinicio en %{name} (%{url}): %{msg}"
|
716
742
|
|
717
743
|
msgid "Unable to provision %{host}: %{errors}"
|
718
744
|
msgstr "No es posible aprovisionar %{host}: %{errors}"
|
@@ -732,6 +758,9 @@ msgstr "no puede incluir espacios en blanco."
|
|
732
758
|
msgid "defines a pattern to assign human-readable hostnames to the matching hosts"
|
733
759
|
msgstr "define un patrón para asignarles a los hosts coincidentes nombres de hosts aptos para la lectura humana"
|
734
760
|
|
761
|
+
msgid "documentation"
|
762
|
+
msgstr "documentación"
|
763
|
+
|
735
764
|
msgid "enables to limit maximum amount of provisioned hosts per rule"
|
736
765
|
msgstr "se habilita para limitar la cantidad máxima de hosts aprovisionados por regla"
|
737
766
|
|
@@ -781,13 +810,13 @@ msgid "represents rule name shown to the users"
|
|
781
810
|
msgstr "representa el nombre de la regla que se les muestra a los usuarios"
|
782
811
|
|
783
812
|
msgid "required if host is managed and custom partition has not been defined"
|
784
|
-
msgstr ""
|
813
|
+
msgstr "obligatorio si el host está administrado y no se han definido particiones personalizadas"
|
785
814
|
|
786
815
|
msgid "required if host is managed and value is not inherited from host group"
|
787
|
-
msgstr ""
|
816
|
+
msgstr "obligatorio si los hosts están administrados y el valor no se ha heredado de un grupo de hosts"
|
788
817
|
|
789
818
|
msgid "required if not imaged based provisioning and host is managed and value is not inherited from host group"
|
790
|
-
msgstr ""
|
819
|
+
msgstr "obligatorio si el aprovisionamiento no se basa en imágenes, el host está administrado y el valor no se hereda de un grupo de hosts"
|
791
820
|
|
792
821
|
msgid "required if value is not inherited from host group or default password in settings"
|
793
822
|
msgstr "es necesario si el valor no se hereda del grupo del host o de la contraseña predeterminada en las configuraciones"
|
@@ -8,8 +8,8 @@ msgid ""
|
|
8
8
|
msgstr ""
|
9
9
|
"Project-Id-Version: foreman_discovery 1.0.0\n"
|
10
10
|
"Report-Msgid-Bugs-To: \n"
|
11
|
-
"POT-Creation-Date:
|
12
|
-
"PO-Revision-Date:
|
11
|
+
"POT-Creation-Date: 2021-05-03 08:46+0200\n"
|
12
|
+
"PO-Revision-Date: 2021-05-03 08:46+0200\n"
|
13
13
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
14
14
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
15
15
|
"Language: \n"
|
@@ -130,56 +130,56 @@ msgid ""
|
|
130
130
|
"e primary interface is named eth0)"
|
131
131
|
msgstr ""
|
132
132
|
|
133
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:
|
133
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:130
|
134
134
|
msgid "Execute rules against a discovered host"
|
135
135
|
msgstr ""
|
136
136
|
|
137
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:
|
138
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
137
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:136
|
138
|
+
#: ../app/controllers/discovered_hosts_controller.rb:157
|
139
139
|
msgid "Host %{host} was provisioned with rule %{rule}"
|
140
140
|
msgstr ""
|
141
141
|
|
142
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:
|
142
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:139
|
143
143
|
msgid "Unable to provision %{host}: %{errors}"
|
144
144
|
msgstr ""
|
145
145
|
|
146
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:
|
147
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
146
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:145
|
147
|
+
#: ../app/controllers/discovered_hosts_controller.rb:164
|
148
148
|
msgid "No rule found for host %s"
|
149
149
|
msgstr ""
|
150
150
|
|
151
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:
|
151
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:152
|
152
152
|
msgid "Execute rules against all currently discovered hosts"
|
153
153
|
msgstr ""
|
154
154
|
|
155
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:
|
156
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
155
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:156
|
156
|
+
#: ../app/controllers/discovered_hosts_controller.rb:170
|
157
157
|
msgid "Errors during auto provisioning: %s"
|
158
158
|
msgstr ""
|
159
159
|
|
160
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:
|
161
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
160
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:159
|
161
|
+
#: ../app/controllers/discovered_hosts_controller.rb:173
|
162
162
|
msgid "No discovered hosts to provision"
|
163
163
|
msgstr ""
|
164
164
|
|
165
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:
|
165
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:181
|
166
166
|
msgid "%s discovered hosts were provisioned"
|
167
167
|
msgstr ""
|
168
168
|
|
169
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:
|
169
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:192
|
170
170
|
msgid "Refreshing the facts of a discovered host"
|
171
171
|
msgstr ""
|
172
172
|
|
173
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:
|
173
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:201
|
174
174
|
msgid "Rebooting a discovered host"
|
175
175
|
msgstr ""
|
176
176
|
|
177
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:
|
177
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:210
|
178
178
|
msgid "Rebooting all discovered hosts"
|
179
179
|
msgstr ""
|
180
180
|
|
181
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:
|
182
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
181
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:221
|
182
|
+
#: ../app/controllers/discovered_hosts_controller.rb:126
|
183
183
|
msgid "Discovered hosts are rebooting now"
|
184
184
|
msgstr ""
|
185
185
|
|
@@ -259,125 +259,105 @@ msgstr ""
|
|
259
259
|
msgid "No discovered hosts to reboot"
|
260
260
|
msgstr ""
|
261
261
|
|
262
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
262
|
+
#: ../app/controllers/discovered_hosts_controller.rb:60
|
263
263
|
msgid "Successfully provisioned %s"
|
264
264
|
msgstr ""
|
265
265
|
|
266
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
266
|
+
#: ../app/controllers/discovered_hosts_controller.rb:94
|
267
267
|
msgid "Facts refreshed for %s"
|
268
268
|
msgstr ""
|
269
269
|
|
270
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
270
|
+
#: ../app/controllers/discovered_hosts_controller.rb:96
|
271
271
|
msgid "Failed to refresh facts for %s"
|
272
272
|
msgstr ""
|
273
273
|
|
274
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
274
|
+
#: ../app/controllers/discovered_hosts_controller.rb:99
|
275
275
|
msgid "Failed to refresh facts for %{hostname} with error %{error_message}"
|
276
276
|
msgstr ""
|
277
277
|
|
278
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
278
|
+
#: ../app/controllers/discovered_hosts_controller.rb:106
|
279
279
|
msgid "Host of type %s can not be rebooted"
|
280
280
|
msgstr ""
|
281
281
|
|
282
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
282
|
+
#: ../app/controllers/discovered_hosts_controller.rb:110
|
283
283
|
msgid "Rebooting host %s"
|
284
284
|
msgstr ""
|
285
285
|
|
286
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
286
|
+
#: ../app/controllers/discovered_hosts_controller.rb:112
|
287
287
|
msgid "Failed to reboot host %s"
|
288
288
|
msgstr ""
|
289
289
|
|
290
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
290
|
+
#: ../app/controllers/discovered_hosts_controller.rb:115
|
291
291
|
msgid "Failed to reboot host %{hostname} with error %{error_message}"
|
292
292
|
msgstr ""
|
293
293
|
|
294
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
294
|
+
#: ../app/controllers/discovered_hosts_controller.rb:129
|
295
295
|
msgid "Failed to reboot hosts with error %s"
|
296
296
|
msgstr ""
|
297
297
|
|
298
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
298
|
+
#: ../app/controllers/discovered_hosts_controller.rb:147
|
299
299
|
msgid "Destroyed selected hosts"
|
300
300
|
msgstr ""
|
301
301
|
|
302
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
302
|
+
#: ../app/controllers/discovered_hosts_controller.rb:149
|
303
303
|
msgid "The following hosts were not deleted: %s"
|
304
304
|
msgstr ""
|
305
305
|
|
306
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
306
|
+
#: ../app/controllers/discovered_hosts_controller.rb:161
|
307
307
|
msgid "Failed to auto provision host %s: %s"
|
308
308
|
msgstr ""
|
309
309
|
|
310
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
310
|
+
#: ../app/controllers/discovered_hosts_controller.rb:189
|
311
311
|
msgid "Discovered hosts are provisioning now"
|
312
312
|
msgstr ""
|
313
313
|
|
314
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
315
|
-
msgid "
|
316
|
-
|
317
|
-
|
318
|
-
#: ../app/controllers/discovered_hosts_controller.rb:226
|
319
|
-
msgid "Storage"
|
320
|
-
msgstr ""
|
321
|
-
|
322
|
-
#: ../app/controllers/discovered_hosts_controller.rb:226
|
323
|
-
msgid "Hardware"
|
324
|
-
msgstr ""
|
325
|
-
|
326
|
-
#: ../app/controllers/discovered_hosts_controller.rb:226
|
327
|
-
msgid "Network"
|
328
|
-
msgstr ""
|
329
|
-
|
330
|
-
#: ../app/controllers/discovered_hosts_controller.rb:226
|
331
|
-
msgid "Software"
|
332
|
-
msgstr ""
|
333
|
-
|
334
|
-
#: ../app/controllers/discovered_hosts_controller.rb:226
|
335
|
-
msgid "IPMI"
|
314
|
+
#: ../app/controllers/discovered_hosts_controller.rb:270
|
315
|
+
msgid ""
|
316
|
+
"Discovered host reported from unknown subnet, communication will not be proxie"
|
317
|
+
"d."
|
336
318
|
msgstr ""
|
337
319
|
|
338
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
339
|
-
msgid "
|
320
|
+
#: ../app/controllers/discovered_hosts_controller.rb:275
|
321
|
+
msgid ""
|
322
|
+
"Discovered hosts reported from unknown subnet are %s, communication will not b"
|
323
|
+
"e proxied."
|
340
324
|
msgstr ""
|
341
325
|
|
342
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
326
|
+
#: ../app/controllers/discovered_hosts_controller.rb:289
|
343
327
|
msgid "No hosts were found with that id or name"
|
344
328
|
msgstr ""
|
345
329
|
|
346
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
330
|
+
#: ../app/controllers/discovered_hosts_controller.rb:293
|
347
331
|
msgid "No hosts selected"
|
348
332
|
msgstr ""
|
349
333
|
|
350
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
334
|
+
#: ../app/controllers/discovered_hosts_controller.rb:299
|
351
335
|
msgid "Something went wrong while selecting hosts - %s"
|
352
336
|
msgstr ""
|
353
337
|
|
354
|
-
#: ../app/controllers/discovery_rules_controller.rb:
|
338
|
+
#: ../app/controllers/discovery_rules_controller.rb:79
|
355
339
|
msgid "Rule enabled"
|
356
340
|
msgstr ""
|
357
341
|
|
358
|
-
#: ../app/controllers/discovery_rules_controller.rb:
|
342
|
+
#: ../app/controllers/discovery_rules_controller.rb:79
|
359
343
|
msgid "Rule disabled"
|
360
344
|
msgstr ""
|
361
345
|
|
362
|
-
#: ../app/helpers/discovered_hosts_helper.rb:10
|
363
|
-
msgid "%s ago"
|
364
|
-
msgstr ""
|
365
|
-
|
366
346
|
#: ../app/helpers/discovered_hosts_helper.rb:14
|
367
347
|
#: ../app/helpers/discovered_hosts_helper.rb:29
|
368
|
-
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:
|
348
|
+
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:40
|
369
349
|
msgid "Auto Provision"
|
370
350
|
msgstr ""
|
371
351
|
|
372
352
|
#: ../app/helpers/discovered_hosts_helper.rb:15
|
373
|
-
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:
|
353
|
+
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:41
|
374
354
|
msgid "Refresh facts"
|
375
355
|
msgstr ""
|
376
356
|
|
377
357
|
#: ../app/helpers/discovered_hosts_helper.rb:16
|
378
358
|
#: ../app/helpers/discovered_hosts_helper.rb:30
|
379
359
|
#: ../app/models/setting/discovered.rb:24
|
380
|
-
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:
|
360
|
+
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:42
|
381
361
|
msgid "Reboot"
|
382
362
|
msgstr ""
|
383
363
|
|
@@ -391,7 +371,7 @@ msgid "Select Action"
|
|
391
371
|
msgstr ""
|
392
372
|
|
393
373
|
#: ../app/helpers/discovered_hosts_helper.rb:23
|
394
|
-
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:
|
374
|
+
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:43
|
395
375
|
msgid "Delete %s?"
|
396
376
|
msgstr ""
|
397
377
|
|
@@ -461,6 +441,10 @@ msgid "Enable rule '%s'?"
|
|
461
441
|
msgstr ""
|
462
442
|
|
463
443
|
#: ../app/helpers/discovery_rules_helper.rb:33
|
444
|
+
msgid "Clone"
|
445
|
+
msgstr ""
|
446
|
+
|
447
|
+
#: ../app/helpers/discovery_rules_helper.rb:34
|
464
448
|
msgid "Delete rule '%s'?"
|
465
449
|
msgstr ""
|
466
450
|
|
@@ -484,13 +468,13 @@ msgstr ""
|
|
484
468
|
msgid "must be present."
|
485
469
|
msgstr ""
|
486
470
|
|
487
|
-
#: ../app/models/discovery_rule.rb:
|
471
|
+
#: ../app/models/discovery_rule.rb:57
|
488
472
|
msgid "Host group organization %s must also be associated to the discovery rule"
|
489
473
|
msgid_plural "Host group organizations %s must also be associated to the discovery rule"
|
490
474
|
msgstr[0] ""
|
491
475
|
msgstr[1] ""
|
492
476
|
|
493
|
-
#: ../app/models/discovery_rule.rb:
|
477
|
+
#: ../app/models/discovery_rule.rb:61
|
494
478
|
msgid "Host group location %s must also be associated to the discovery rule"
|
495
479
|
msgid_plural "Host group locations %s must also be associated to the discovery rule"
|
496
480
|
msgstr[0] ""
|
@@ -774,6 +758,34 @@ msgid ""
|
|
774
758
|
"filter}"
|
775
759
|
msgstr ""
|
776
760
|
|
761
|
+
#: ../app/services/foreman_discovery/fact_to_category_resolver.rb:7
|
762
|
+
msgid "Highlights"
|
763
|
+
msgstr ""
|
764
|
+
|
765
|
+
#: ../app/services/foreman_discovery/fact_to_category_resolver.rb:8
|
766
|
+
msgid "Storage"
|
767
|
+
msgstr ""
|
768
|
+
|
769
|
+
#: ../app/services/foreman_discovery/fact_to_category_resolver.rb:9
|
770
|
+
msgid "Hardware"
|
771
|
+
msgstr ""
|
772
|
+
|
773
|
+
#: ../app/services/foreman_discovery/fact_to_category_resolver.rb:10
|
774
|
+
msgid "Network"
|
775
|
+
msgstr ""
|
776
|
+
|
777
|
+
#: ../app/services/foreman_discovery/fact_to_category_resolver.rb:11
|
778
|
+
msgid "Software"
|
779
|
+
msgstr ""
|
780
|
+
|
781
|
+
#: ../app/services/foreman_discovery/fact_to_category_resolver.rb:12
|
782
|
+
msgid "IPMI"
|
783
|
+
msgstr ""
|
784
|
+
|
785
|
+
#: ../app/services/foreman_discovery/fact_to_category_resolver.rb:13
|
786
|
+
msgid "Miscellaneous"
|
787
|
+
msgstr ""
|
788
|
+
|
777
789
|
#: ../app/services/foreman_discovery/host_converter.rb:47
|
778
790
|
msgid "IPAM must be configured for subnet '%s'"
|
779
791
|
msgstr ""
|
@@ -786,6 +798,10 @@ msgstr ""
|
|
786
798
|
msgid "Image API processing error: %{msg} (HTTP/%{code}, body: %{body})"
|
787
799
|
msgstr ""
|
788
800
|
|
801
|
+
#: ../app/services/foreman_discovery/ui_notifications/new_host.rb:22
|
802
|
+
msgid "Host %s has been dicovered"
|
803
|
+
msgstr ""
|
804
|
+
|
789
805
|
#: ../app/views/dashboard/_discovery_widget.html.erb:5
|
790
806
|
msgid "Discovered Host"
|
791
807
|
msgid_plural "Discovered Hosts"
|
@@ -801,7 +817,7 @@ msgid "Host"
|
|
801
817
|
msgstr ""
|
802
818
|
|
803
819
|
#: ../app/views/dashboard/_discovery_widget_host_list.html.erb:4
|
804
|
-
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:
|
820
|
+
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:7
|
805
821
|
#: ../app/views/discovered_hosts/_selected_hosts.html.erb:8
|
806
822
|
#: ../app/views/discovered_mailer/discovered_summary.html.erb:18
|
807
823
|
#: ../app/views/discovered_mailer/discovered_summary.text.erb:10
|
@@ -809,14 +825,14 @@ msgid "Model"
|
|
809
825
|
msgstr ""
|
810
826
|
|
811
827
|
#: ../app/views/dashboard/_discovery_widget_host_list.html.erb:5
|
812
|
-
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:
|
828
|
+
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:9
|
813
829
|
#: ../app/views/discovered_mailer/discovered_summary.html.erb:20
|
814
830
|
#: ../app/views/discovered_mailer/discovered_summary.text.erb:12
|
815
831
|
msgid "CPUs"
|
816
832
|
msgstr ""
|
817
833
|
|
818
834
|
#: ../app/views/dashboard/_discovery_widget_host_list.html.erb:6
|
819
|
-
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:
|
835
|
+
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:10
|
820
836
|
#: ../app/views/discovered_mailer/discovered_summary.html.erb:21
|
821
837
|
#: ../app/views/discovered_mailer/discovered_summary.text.erb:13
|
822
838
|
msgid "Memory"
|
@@ -830,67 +846,69 @@ msgstr ""
|
|
830
846
|
msgid "Create Host"
|
831
847
|
msgstr ""
|
832
848
|
|
833
|
-
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:
|
849
|
+
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:5
|
834
850
|
msgid "Select all items in this page"
|
835
851
|
msgstr ""
|
836
852
|
|
837
|
-
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:
|
853
|
+
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:5
|
838
854
|
msgid "items selected. Uncheck to Clear"
|
839
855
|
msgstr ""
|
840
856
|
|
841
|
-
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:
|
857
|
+
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:6
|
842
858
|
#: ../app/views/discovered_hosts/_selected_hosts.html.erb:7
|
843
859
|
#: ../app/views/discovered_mailer/discovered_summary.html.erb:17
|
844
860
|
#: ../app/views/discovered_mailer/discovered_summary.text.erb:9
|
845
861
|
msgid "Name"
|
846
862
|
msgstr ""
|
847
863
|
|
848
|
-
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:
|
864
|
+
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:8
|
849
865
|
#: ../app/views/discovered_mailer/discovered_summary.html.erb:19
|
850
866
|
#: ../app/views/discovered_mailer/discovered_summary.text.erb:11
|
851
867
|
msgid "IP Address"
|
852
868
|
msgstr ""
|
853
869
|
|
854
|
-
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:
|
870
|
+
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:11
|
855
871
|
msgid "Disk Count"
|
856
872
|
msgstr ""
|
857
873
|
|
858
|
-
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:
|
874
|
+
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:12
|
859
875
|
msgid "Disks Size"
|
860
876
|
msgstr ""
|
861
877
|
|
862
|
-
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:
|
878
|
+
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:16
|
863
879
|
#: ../app/views/discovered_hosts/_selected_hosts.html.erb:9
|
880
|
+
#: ../app/views/discovery_rules/index.html.erb:11
|
864
881
|
msgid "Location"
|
865
882
|
msgstr ""
|
866
883
|
|
867
|
-
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:
|
884
|
+
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:17
|
868
885
|
#: ../app/views/discovered_hosts/_selected_hosts.html.erb:10
|
886
|
+
#: ../app/views/discovery_rules/index.html.erb:12
|
869
887
|
msgid "Organization"
|
870
888
|
msgstr ""
|
871
889
|
|
872
|
-
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:
|
890
|
+
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:18
|
873
891
|
msgid "Subnet"
|
874
892
|
msgstr ""
|
875
893
|
|
876
|
-
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:
|
894
|
+
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:19
|
877
895
|
msgid "Last Facts Upload"
|
878
896
|
msgstr ""
|
879
897
|
|
880
|
-
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:
|
881
|
-
#: ../app/views/discovery_rules/index.html.erb:
|
898
|
+
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:20
|
899
|
+
#: ../app/views/discovery_rules/index.html.erb:14
|
882
900
|
msgid "Actions"
|
883
901
|
msgstr ""
|
884
902
|
|
885
|
-
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:
|
903
|
+
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:55
|
886
904
|
msgid "Please Confirm"
|
887
905
|
msgstr ""
|
888
906
|
|
889
|
-
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:
|
907
|
+
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:61
|
890
908
|
msgid "Cancel"
|
891
909
|
msgstr ""
|
892
910
|
|
893
|
-
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:
|
911
|
+
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:62
|
894
912
|
msgid "Submit"
|
895
913
|
msgstr ""
|
896
914
|
|
@@ -1042,6 +1060,10 @@ msgid ""
|
|
1042
1060
|
"ation provided by facter (MAC address, BIOS or serial ID)."
|
1043
1061
|
msgstr ""
|
1044
1062
|
|
1063
|
+
#: ../app/views/discovery_rules/clone.erb:1
|
1064
|
+
msgid "Clone %s"
|
1065
|
+
msgstr ""
|
1066
|
+
|
1045
1067
|
#: ../app/views/discovery_rules/edit.html.erb:1
|
1046
1068
|
msgid "Edit %s"
|
1047
1069
|
msgstr ""
|
@@ -1052,6 +1074,7 @@ msgid "Discovery Rules"
|
|
1052
1074
|
msgstr ""
|
1053
1075
|
|
1054
1076
|
#: ../app/views/discovery_rules/index.html.erb:2
|
1077
|
+
#: ../webpack/src/ForemanDiscovery/DiscoveryRules/Components/EmptyState/EmptyState.js:9
|
1055
1078
|
msgid "Create Rule"
|
1056
1079
|
msgstr ""
|
1057
1080
|
|
@@ -1075,7 +1098,7 @@ msgstr ""
|
|
1075
1098
|
msgid "Hosts/Limit"
|
1076
1099
|
msgstr ""
|
1077
1100
|
|
1078
|
-
#: ../app/views/discovery_rules/index.html.erb:
|
1101
|
+
#: ../app/views/discovery_rules/index.html.erb:13
|
1079
1102
|
msgid "DiscoveryRule|Enabled"
|
1080
1103
|
msgstr ""
|
1081
1104
|
|
@@ -1083,6 +1106,10 @@ msgstr ""
|
|
1083
1106
|
msgid "New Discovery Rule"
|
1084
1107
|
msgstr ""
|
1085
1108
|
|
1109
|
+
#: ../app/views/discovery_rules/welcome.html.erb:8
|
1110
|
+
msgid "Discovered Rules"
|
1111
|
+
msgstr ""
|
1112
|
+
|
1086
1113
|
#: ../db/seeds.d/50_discovery_templates.rb:5
|
1087
1114
|
msgid "Command line options for kexec during PXE-less provisioning."
|
1088
1115
|
msgstr ""
|
@@ -1092,7 +1119,7 @@ msgid "A summary of discovered hosts"
|
|
1092
1119
|
msgstr ""
|
1093
1120
|
|
1094
1121
|
#: ../db/seeds.d/80_discovery_ui_notification.rb:4
|
1095
|
-
msgid "
|
1122
|
+
msgid "New hosts"
|
1096
1123
|
msgstr ""
|
1097
1124
|
|
1098
1125
|
#: ../db/seeds.d/80_discovery_ui_notification.rb:6
|
@@ -1103,26 +1130,44 @@ msgstr ""
|
|
1103
1130
|
msgid "Details"
|
1104
1131
|
msgstr ""
|
1105
1132
|
|
1106
|
-
#: ../
|
1133
|
+
#: ../db/seeds.d/80_discovery_ui_notification.rb:18
|
1134
|
+
msgid "Hosts"
|
1135
|
+
msgstr ""
|
1136
|
+
|
1137
|
+
#: ../db/seeds.d/80_discovery_ui_notification.rb:20
|
1138
|
+
msgid "Error message goes here"
|
1139
|
+
msgstr ""
|
1140
|
+
|
1141
|
+
#: ../lib/foreman_discovery/engine.rb:176
|
1107
1142
|
msgid "Discovery Kexec template"
|
1108
1143
|
msgstr ""
|
1109
1144
|
|
1110
|
-
#: ../lib/foreman_discovery/engine.rb:
|
1145
|
+
#: ../lib/foreman_discovery/engine.rb:185
|
1111
1146
|
msgid "Discovery Proxy"
|
1112
1147
|
msgstr ""
|
1113
1148
|
|
1114
|
-
#: ../lib/foreman_discovery/engine.rb:
|
1149
|
+
#: ../lib/foreman_discovery/engine.rb:186
|
1115
1150
|
msgid ""
|
1116
1151
|
"Discovery Proxy to use within this subnet for managing connection to discovere"
|
1117
1152
|
"d hosts"
|
1118
1153
|
msgstr ""
|
1119
1154
|
|
1120
|
-
#: ../lib/foreman_discovery/engine.rb:
|
1155
|
+
#: ../lib/foreman_discovery/engine.rb:187
|
1121
1156
|
msgid ""
|
1122
1157
|
"ID of Discovery Proxy to use within this subnet for managing connection to dis"
|
1123
1158
|
"covered hosts"
|
1124
1159
|
msgstr ""
|
1125
1160
|
|
1161
|
+
#:
|
1162
|
+
#: ../webpack/__mocks__/foremanReact/components/common/EmptyState/EmptyStatePattern.js:33
|
1163
|
+
msgid "For more information please see "
|
1164
|
+
msgstr ""
|
1165
|
+
|
1166
|
+
#:
|
1167
|
+
#: ../webpack/__mocks__/foremanReact/components/common/EmptyState/EmptyStatePattern.js:34
|
1168
|
+
msgid "documentation"
|
1169
|
+
msgstr ""
|
1170
|
+
|
1126
1171
|
#: action_names.rb:2
|
1127
1172
|
msgid "Remote action:"
|
1128
1173
|
msgstr ""
|
@@ -1132,9 +1177,9 @@ msgid "Import Puppet classes"
|
|
1132
1177
|
msgstr ""
|
1133
1178
|
|
1134
1179
|
#: action_names.rb:4
|
1135
|
-
msgid "
|
1180
|
+
msgid "Import facts"
|
1136
1181
|
msgstr ""
|
1137
1182
|
|
1138
1183
|
#: action_names.rb:5
|
1139
|
-
msgid "
|
1184
|
+
msgid "Action with sub plans"
|
1140
1185
|
msgstr ""
|