foreman_discovery 16.0.0 → 16.3.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (86) hide show
  1. checksums.yaml +4 -4
  2. data/app/controllers/api/v2/discovered_hosts_controller.rb +24 -11
  3. data/app/controllers/api/v2/discovery_rules_controller.rb +1 -1
  4. data/app/controllers/discovered_hosts_controller.rb +5 -3
  5. data/app/controllers/discovery_rules_controller.rb +1 -1
  6. data/app/models/discovery_rule.rb +1 -1
  7. data/app/models/host/discovered.rb +52 -34
  8. data/app/models/host/managed_extensions.rb +2 -2
  9. data/app/models/setting/discovered.rb +3 -1
  10. data/app/services/foreman_discovery/host_converter.rb +15 -7
  11. data/app/services/foreman_discovery/host_fact_importer.rb +10 -0
  12. data/app/services/foreman_discovery/import_hooks/subnet_and_taxonomy.rb +2 -0
  13. data/app/services/foreman_discovery/node_api/node_resource.rb +1 -0
  14. data/app/views/api/v2/discovery_rules/create.json.rabl +3 -0
  15. data/app/views/discovered_hosts/_discovered_host_modal.html.erb +0 -2
  16. data/app/views/discovered_hosts/welcome.html.erb +15 -9
  17. data/app/views/discovery_rules/index.html.erb +1 -1
  18. data/app/views/foreman_discovery/debian_kexec.erb +3 -2
  19. data/app/views/foreman_discovery/redhat_kexec.erb +2 -1
  20. data/db/migrate/20150512150432_remove_old_discovery_reader_permissions.rb +1 -1
  21. data/db/migrate/20151023144501_regenerate_red_hat_kexec.rb +1 -1
  22. data/db/migrate/20180412124505_add_priority_score_to_discovery_rules.rb +1 -1
  23. data/extra/discover-host +14 -8
  24. data/lib/foreman_discovery/engine.rb +5 -4
  25. data/lib/foreman_discovery/version.rb +1 -1
  26. data/locale/ca/LC_MESSAGES/foreman_discovery.mo +0 -0
  27. data/locale/ca/foreman_discovery.edit.po +195 -252
  28. data/locale/ca/foreman_discovery.po +40 -17
  29. data/locale/de/LC_MESSAGES/foreman_discovery.mo +0 -0
  30. data/locale/de/foreman_discovery.edit.po +201 -257
  31. data/locale/de/foreman_discovery.po +46 -23
  32. data/locale/en/LC_MESSAGES/foreman_discovery.mo +0 -0
  33. data/locale/en/foreman_discovery.edit.po +141 -111
  34. data/locale/en/foreman_discovery.po +36 -13
  35. data/locale/en_GB/LC_MESSAGES/foreman_discovery.mo +0 -0
  36. data/locale/en_GB/foreman_discovery.edit.po +205 -254
  37. data/locale/en_GB/foreman_discovery.po +42 -19
  38. data/locale/es/LC_MESSAGES/foreman_discovery.mo +0 -0
  39. data/locale/es/foreman_discovery.edit.po +209 -258
  40. data/locale/es/foreman_discovery.po +46 -23
  41. data/locale/foreman_discovery.pot +150 -117
  42. data/locale/fr/LC_MESSAGES/foreman_discovery.mo +0 -0
  43. data/locale/fr/foreman_discovery.edit.po +203 -255
  44. data/locale/fr/foreman_discovery.po +44 -21
  45. data/locale/gl/LC_MESSAGES/foreman_discovery.mo +0 -0
  46. data/locale/gl/foreman_discovery.edit.po +190 -250
  47. data/locale/gl/foreman_discovery.po +38 -15
  48. data/locale/it/LC_MESSAGES/foreman_discovery.mo +0 -0
  49. data/locale/it/foreman_discovery.edit.po +193 -253
  50. data/locale/it/foreman_discovery.po +41 -18
  51. data/locale/ja/LC_MESSAGES/foreman_discovery.mo +0 -0
  52. data/locale/ja/foreman_discovery.edit.po +207 -256
  53. data/locale/ja/foreman_discovery.po +44 -21
  54. data/locale/ko/LC_MESSAGES/foreman_discovery.mo +0 -0
  55. data/locale/ko/foreman_discovery.edit.po +196 -255
  56. data/locale/ko/foreman_discovery.po +44 -21
  57. data/locale/pt_BR/LC_MESSAGES/foreman_discovery.mo +0 -0
  58. data/locale/pt_BR/foreman_discovery.edit.po +205 -256
  59. data/locale/pt_BR/foreman_discovery.po +44 -21
  60. data/locale/ru/LC_MESSAGES/foreman_discovery.mo +0 -0
  61. data/locale/ru/foreman_discovery.edit.po +199 -257
  62. data/locale/ru/foreman_discovery.po +44 -21
  63. data/locale/sv_SE/LC_MESSAGES/foreman_discovery.mo +0 -0
  64. data/locale/sv_SE/foreman_discovery.edit.po +190 -250
  65. data/locale/sv_SE/foreman_discovery.po +38 -15
  66. data/locale/zh_CN/LC_MESSAGES/foreman_discovery.mo +0 -0
  67. data/locale/zh_CN/foreman_discovery.edit.po +207 -256
  68. data/locale/zh_CN/foreman_discovery.po +44 -21
  69. data/locale/zh_TW/LC_MESSAGES/foreman_discovery.mo +0 -0
  70. data/locale/zh_TW/foreman_discovery.edit.po +196 -254
  71. data/locale/zh_TW/foreman_discovery.po +42 -19
  72. data/package.json +39 -0
  73. data/test/facts/only-ipv6.json +205 -0
  74. data/test/facts/skylake-ipv6.json +223 -0
  75. data/test/functional/api/v2/settings_controller_test.rb +2 -2
  76. data/test/functional/discovered_hosts_controller_test.rb +16 -7
  77. data/test/functional/discovery_rules_controller_test.rb +1 -1
  78. data/test/unit/discovered_extensions_test.rb +6 -1
  79. data/test/unit/host_discovered_test.rb +0 -16
  80. data/test/unit/managed_extensions_test.rb +1 -0
  81. data/webpack/index.js +18 -0
  82. data/webpack/src/ForemanDiscovery/DiscoveredHosts/Components/EmptyState/EmptyState.js +28 -0
  83. data/webpack/src/ForemanDiscovery/DiscoveredHosts/Components/EmptyState/index.js +1 -0
  84. data/webpack/src/ForemanDiscovery/DiscoveredHosts/index.js +6 -0
  85. data/webpack/src/reducers.js +7 -0
  86. metadata +42 -28
@@ -3,17 +3,17 @@
3
3
  # This file is distributed under the same license as the foreman_discovery package.
4
4
  #
5
5
  # Translators:
6
- # Andi Chandler <andi@gowling.com>, 2015-2018
6
+ # Andi Chandler <andi@gowling.com>, 2015-2019
7
7
  # 0868a4d1af5275b3f70b0a6dac4c99a4, 2013-2015
8
8
  # 0868a4d1af5275b3f70b0a6dac4c99a4, 2016
9
9
  # Lukáš Zapletal, 2015
10
10
  # Lukáš Zapletal, 2015
11
11
  msgid ""
12
12
  msgstr ""
13
- "Project-Id-Version: foreman_discovery 15.1.0\n"
13
+ "Project-Id-Version: foreman_discovery 16.2.0\n"
14
14
  "Report-Msgid-Bugs-To: \n"
15
- "PO-Revision-Date: 2019-10-22 20:43+0000\n"
16
- "Last-Translator: Lukáš Zapletal\n"
15
+ "PO-Revision-Date: 2020-05-26 17:21+0000\n"
16
+ "Last-Translator: Transifex Bot <>\n"
17
17
  "Language-Team: English (United Kingdom) (http://www.transifex.com/foreman/fore"
18
18
  "man/language/en_GB/)\n"
19
19
  "MIME-Version: 1.0\n"
@@ -142,6 +142,11 @@ msgstr "Disable"
142
142
  msgid "Disable rule '%s'?"
143
143
  msgstr "Disable rule '%s'?"
144
144
 
145
+ msgid "Discovered Host"
146
+ msgid_plural "Discovered Hosts"
147
+ msgstr[0] ""
148
+ msgstr[1] ""
149
+
145
150
  msgid "Discovered Hosts"
146
151
  msgstr "Discovered Hosts"
147
152
 
@@ -323,6 +328,12 @@ msgstr[1] "Host group organisations %s must also be associated to the discovery
323
328
  msgid "Host of type %s can not be rebooted"
324
329
  msgstr "Host of type %s can not be rebooted"
325
330
 
331
+ msgid "Host's owner type"
332
+ msgstr ""
333
+
334
+ msgid "Host's parameters (array or indexed hash)"
335
+ msgstr ""
336
+
326
337
  msgid "Hostname facts"
327
338
  msgstr "Hostname facts"
328
339
 
@@ -354,7 +365,7 @@ msgid "IP address"
354
365
  msgstr "IP address"
355
366
 
356
367
  msgid "IPAM must be configured for subnet '%s'"
357
- msgstr ""
368
+ msgstr "IPAM must be configured for subnet '%s'"
358
369
 
359
370
  msgid "IPMI"
360
371
  msgstr "IPMI"
@@ -410,9 +421,6 @@ msgstr "Kexec template not associated with operating system"
410
421
  msgid "Last Facts Upload"
411
422
  msgstr "Last Facts Upload"
412
423
 
413
- msgid "Learn more about this in the documentation."
414
- msgstr "Learn more about this in the documentation."
415
-
416
424
  msgid "List all discovered hosts"
417
425
  msgstr "List all discovered hosts"
418
426
 
@@ -467,6 +475,9 @@ msgstr "N/A"
467
475
  msgid "Name"
468
476
  msgstr "Name"
469
477
 
478
+ msgid "Name of the parameter"
479
+ msgstr ""
480
+
470
481
  msgid "Network"
471
482
  msgstr "Network"
472
483
 
@@ -485,9 +496,6 @@ msgstr "No discovered hosts available"
485
496
  msgid "No discovered hosts for the selected period"
486
497
  msgstr "No discovered hosts for the selected period"
487
498
 
488
- msgid "No discovered hosts found in this context."
489
- msgstr "No discovered hosts found in this context."
490
-
491
499
  msgid "No discovered hosts to provision"
492
500
  msgstr "No discovered hosts to provision"
493
501
 
@@ -530,6 +538,9 @@ msgstr "PXEGrub2 template to be used when pinning a host to discovery"
530
538
  msgid "PXELinux template to be used when pinning a host to discovery"
531
539
  msgstr "PXELinux template to be used when pinning a host to discovery"
532
540
 
541
+ msgid "Parameter value"
542
+ msgstr ""
543
+
533
544
  msgid "Please Confirm"
534
545
  msgstr "Please Confirm"
535
546
 
@@ -677,15 +688,15 @@ msgstr "The following hosts were not deleted: %s"
677
688
  msgid "This might take a while, as all hosts, facts and reports will be destroyed as well"
678
689
  msgstr "This might take a while, as all hosts, facts and reports will be destroyed as well"
679
690
 
680
- msgid "This page shows discovered bare-metal or virtual nodes waiting to be provisioned."
681
- msgstr "This page shows discovered bare-metal or virtual nodes waiting to be provisioned."
682
-
683
691
  msgid "Type"
684
692
  msgstr "Type"
685
693
 
686
694
  msgid "Type of name generator"
687
695
  msgstr "Type of name generator"
688
696
 
697
+ msgid "Type of value"
698
+ msgstr ""
699
+
689
700
  msgid "UUID to track orchestration tasks status, GET /api/orchestration/:UUID/tasks"
690
701
  msgstr "UUID to track orchestration tasks status, GET /api/orchestration/:UUID/tasks"
691
702
 
@@ -695,15 +706,18 @@ msgstr "Unable to find a discovery rule, no host provided (check permissions)"
695
706
  msgid "Unable to find primary NIC with %{mac} specified via '%{fact}', NIC filter: %{filter}"
696
707
  msgstr "Unable to find primary NIC with %{mac} specified via '%{fact}', NIC filter: %{filter}"
697
708
 
698
- msgid "Unable to perform kexec on %{name} via %{url}: %{msg}"
699
- msgstr "Unable to perform kexec on %{name} via %{url}: %{msg}"
709
+ msgid "Unable to perform %{action} on %{ips}"
710
+ msgstr ""
711
+
712
+ msgid "Unable to perform kexec on %{name} (%{url}): %{msg}"
713
+ msgstr ""
714
+
715
+ msgid "Unable to perform reboot on %{name} (%{url}): %{msg}"
716
+ msgstr ""
700
717
 
701
718
  msgid "Unable to provision %{host}: %{errors}"
702
719
  msgstr "Unable to provision %{host}: %{errors}"
703
720
 
704
- msgid "Unable to reboot %{name} via %{url}: %{msg}"
705
- msgstr "Unable to reboot %{name} via %{url}: %{msg}"
706
-
707
721
  msgid "Update a rule"
708
722
  msgstr "Update a rule"
709
723
 
@@ -767,6 +781,15 @@ msgstr "query to match discovered hosts for the particular rule"
767
781
  msgid "represents rule name shown to the users"
768
782
  msgstr "represents rule name shown to the users"
769
783
 
784
+ msgid "required if host is managed and custom partition has not been defined"
785
+ msgstr ""
786
+
787
+ msgid "required if host is managed and value is not inherited from host group"
788
+ msgstr ""
789
+
790
+ msgid "required if not imaged based provisioning and host is managed and value is not inherited from host group"
791
+ msgstr ""
792
+
770
793
  msgid "required if value is not inherited from host group or default password in settings"
771
794
  msgstr "required if value is not inherited from host group or default password in settings"
772
795
 
@@ -1,20 +1,20 @@
1
1
  # SOME DESCRIPTIVE TITLE.
2
2
  # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
3
3
  # This file is distributed under the same license as the foreman_discovery package.
4
- #
4
+ #
5
5
  # Translators:
6
6
  # elobato <elobatocs@gmail.com>, 2015
7
7
  # francis <hackgo@gmail.com>, 2013-2014
8
- # Sergio Ocón <sergio.ocon@redhat.com>, 2014-2015
9
- # Sergio Ocón <sergio.ocon@redhat.com>, 2014
8
+ # Sergio Ocón-Cárdenas <sergio.ocon@redhat.com>, 2014-2015
9
+ # Sergio Ocón-Cárdenas <sergio.ocon@redhat.com>, 2014
10
10
  msgid ""
11
11
  msgstr ""
12
- "Project-Id-Version: foreman_discovery 15.1.0\n"
12
+ "Project-Id-Version: foreman_discovery 16.2.0\n"
13
13
  "Report-Msgid-Bugs-To: \n"
14
- "POT-Creation-Date: 2019-10-22 11:55+0200\n"
15
- "PO-Revision-Date: 2019-10-22 20:43+0000\n"
16
- "Last-Translator: Bryan Kearney <bryan.kearney@gmail.com>\n"
17
- "Language-Team: Spanish (http://www.transifex.com/foreman/foreman/language/es/)\n"
14
+ "PO-Revision-Date: 2020-05-26 17:21+0000\n"
15
+ "Last-Translator: Transifex Bot <>\n"
16
+ "Language-Team: Spanish (http://www.transifex.com/foreman/foreman/language/es/)"
17
+ "\n"
18
18
  "MIME-Version: 1.0\n"
19
19
  "Content-Type: text/plain; charset=UTF-8\n"
20
20
  "Content-Transfer-Encoding: 8bit\n"
@@ -25,23 +25,19 @@ msgstr ""
25
25
  msgid "List all discovered hosts"
26
26
  msgstr "Confeccionar una lista de los hosts detectados"
27
27
 
28
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:17
29
- #: ../app/controllers/api/v2/discovery_rules_controller.rb:15
28
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:17 ../app/controllers/api/v2/discovery_rules_controller.rb:15
30
29
  msgid "filter results"
31
30
  msgstr "filtrar resultados"
32
31
 
33
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:18
34
- #: ../app/controllers/api/v2/discovery_rules_controller.rb:16
32
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:18 ../app/controllers/api/v2/discovery_rules_controller.rb:16
35
33
  msgid "sort results"
36
34
  msgstr "organizar resultados"
37
35
 
38
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:19
39
- #: ../app/controllers/api/v2/discovery_rules_controller.rb:17
36
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:19 ../app/controllers/api/v2/discovery_rules_controller.rb:17
40
37
  msgid "paginate results"
41
38
  msgstr "paginar resultados"
42
39
 
43
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:20
44
- #: ../app/controllers/api/v2/discovery_rules_controller.rb:18
40
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:20 ../app/controllers/api/v2/discovery_rules_controller.rb:18
45
41
  msgid "number of entries per request"
46
42
  msgstr "número de entradas por solicitud"
47
43
 
@@ -49,8 +45,7 @@ msgstr "número de entradas por solicitud"
49
45
  msgid "Show a discovered host"
50
46
  msgstr "Mostrar un host detectado"
51
47
 
52
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:37
53
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:79
48
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:37 ../app/controllers/api/v2/discovered_hosts_controller.rb:85
54
49
  msgid "DHCP filename option (Grub2 or PXELinux by default)"
55
50
  msgstr "Opción de nombre de archivo DHCP (Grub2 o PXELinux en forma predeterminada)"
56
51
 
@@ -62,6 +57,10 @@ msgstr "Crear un host detectado para utilizar en pruebas (utilizar/hechos para c
62
57
  msgid "Provision a discovered host"
63
58
  msgstr "Aprovisionar un host detectado"
64
59
 
60
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:54 ../app/controllers/api/v2/discovered_hosts_controller.rb:57 ../app/controllers/api/v2/discovered_hosts_controller.rb:58 ../app/controllers/api/v2/discovered_hosts_controller.rb:61 ../app/controllers/api/v2/discovered_hosts_controller.rb:64
61
+ msgid "required if host is managed and value is not inherited from host group"
62
+ msgstr ""
63
+
65
64
  #: ../app/controllers/api/v2/discovered_hosts_controller.rb:55
66
65
  msgid "not required if using a subnet with DHCP proxy"
67
66
  msgstr "no es necesario si se usa una subred con un proxy DHCP"
@@ -70,82 +69,99 @@ msgstr "no es necesario si se usa una subred con un proxy DHCP"
70
69
  msgid "not required if it's a virtual machine"
71
70
  msgstr "no es necesario si no se trata de una máquina virtual"
72
71
 
73
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:76
74
- msgid ""
75
- "UUID to track orchestration tasks status, GET /api/orchestration/:UUID/tasks"
72
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:62
73
+ msgid "required if not imaged based provisioning and host is managed and value is not inherited from host group"
74
+ msgstr ""
75
+
76
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:63
77
+ msgid "required if host is managed and custom partition has not been defined"
78
+ msgstr ""
79
+
80
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:69
81
+ msgid "Host's owner type"
82
+ msgstr ""
83
+
84
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:72
85
+ msgid "Host's parameters (array or indexed hash)"
86
+ msgstr ""
87
+
88
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:73
89
+ msgid "Name of the parameter"
90
+ msgstr ""
91
+
92
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:74
93
+ msgid "Parameter value"
94
+ msgstr ""
95
+
96
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:75
97
+ msgid "Type of value"
98
+ msgstr ""
99
+
100
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:82
101
+ msgid "UUID to track orchestration tasks status, GET /api/orchestration/:UUID/tasks"
76
102
  msgstr "UUID para seguir el estado de la tarea de orquestación, GET /api/orchestration/:UUID/tasks"
77
103
 
78
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:78
79
- msgid ""
80
- "required if value is not inherited from host group or default password in "
81
- "settings"
104
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:84
105
+ msgid "required if value is not inherited from host group or default password in settings"
82
106
  msgstr "es necesario si el valor no se hereda del grupo del host o de la contraseña predeterminada en las configuraciones"
83
107
 
84
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:89
108
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:95
85
109
  msgid "Delete a discovered host"
86
110
  msgstr "Eliminar un host detectado"
87
111
 
88
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:96
112
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:102
89
113
  msgid "Upload facts for a host, creating the host if required"
90
114
  msgstr "Subir eventos para un host, si es necesario cree el host."
91
115
 
92
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:97
93
- msgid ""
94
- "hash containing facts for the host with minimum set of facts: "
95
- "discovery_bootif, macaddress_eth0, ipaddress, ipaddress_eth0, interfaces: "
96
- "eth0 (example in case primary interface is named eth0)"
116
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:103
117
+ 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)"
97
118
  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)"
98
119
 
99
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:116
120
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:129
100
121
  msgid "Execute rules against a discovered host"
101
122
  msgstr "Ejecutar reglas en función de un host detectado"
102
123
 
103
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:122
104
- #: ../app/controllers/discovered_hosts_controller.rb:160
124
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:135 ../app/controllers/discovered_hosts_controller.rb:160
105
125
  msgid "Host %{host} was provisioned with rule %{rule}"
106
126
  msgstr "El host %{host} se aprovisionó con la regla %{rule}"
107
127
 
108
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:125
128
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:138
109
129
  msgid "Unable to provision %{host}: %{errors}"
110
130
  msgstr "No es posible aprovisionar %{host}: %{errors}"
111
131
 
112
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:131
113
- #: ../app/controllers/discovered_hosts_controller.rb:167
132
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:144 ../app/controllers/discovered_hosts_controller.rb:167
114
133
  msgid "No rule found for host %s"
115
134
  msgstr "No se halló una regla para el host %s"
116
135
 
117
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:138
136
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:151
118
137
  msgid "Execute rules against all currently discovered hosts"
119
138
  msgstr "Ejecutar reglas contra todos los hosts detectados actualmente"
120
139
 
121
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:142
122
- #: ../app/controllers/discovered_hosts_controller.rb:173
140
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:155 ../app/controllers/discovered_hosts_controller.rb:173
123
141
  msgid "Errors during auto provisioning: %s"
124
142
  msgstr "Errores durante el autoaprovisionamiento: %s"
125
143
 
126
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:145
127
- #: ../app/controllers/discovered_hosts_controller.rb:176
144
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:158 ../app/controllers/discovered_hosts_controller.rb:176
128
145
  msgid "No discovered hosts to provision"
129
146
  msgstr "No hay hosts detectados para aprovisionar"
130
147
 
131
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:167
148
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:180
132
149
  msgid "%s discovered hosts were provisioned"
133
150
  msgstr "Se aprovisionaron %s hosts detectados"
134
151
 
135
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:178
152
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:191
136
153
  msgid "Refreshing the facts of a discovered host"
137
154
  msgstr "Actualizando los eventos de un host detectado"
138
155
 
139
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:187
156
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:200
140
157
  msgid "Rebooting a discovered host"
141
158
  msgstr "Reiniciando un host detectado"
142
159
 
143
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:196
160
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:209
144
161
  msgid "Rebooting all discovered hosts"
145
162
  msgstr "Reiniciando todos los hosts detectados"
146
163
 
147
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:207
148
- #: ../app/controllers/discovered_hosts_controller.rb:129
164
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:220 ../app/controllers/discovered_hosts_controller.rb:129
149
165
  msgid "Discovered hosts are rebooting now"
150
166
  msgstr "Se están reiniciando ahora los hosts detectados"
151
167
 
@@ -170,8 +186,7 @@ msgid "the hostgroup that is used to auto provision a host"
170
186
  msgstr "grupo de host utilizado para autoaprovisionar un host"
171
187
 
172
188
  #: ../app/controllers/api/v2/discovery_rules_controller.rb:35
173
- msgid ""
174
- "defines a pattern to assign human-readable hostnames to the matching hosts"
189
+ msgid "defines a pattern to assign human-readable hostnames to the matching hosts"
175
190
  msgstr "define un patrón para asignarles a los hosts coincidentes nombres de hosts aptos para la lectura humana"
176
191
 
177
192
  #: ../app/controllers/api/v2/discovery_rules_controller.rb:36
@@ -179,8 +194,7 @@ msgid "enables to limit maximum amount of provisioned hosts per rule"
179
194
  msgstr "se habilita para limitar la cantidad máxima de hosts aprovisionados por regla"
180
195
 
181
196
  #: ../app/controllers/api/v2/discovery_rules_controller.rb:37
182
- msgid ""
183
- "puts the rules in order, low numbers go first. Must be greater then zero"
197
+ msgid "puts the rules in order, low numbers go first. Must be greater then zero"
184
198
  msgstr "pone las reglas en orden, los números más bajos van en primer lugar. Deben ser superiores a cero"
185
199
 
186
200
  #: ../app/controllers/api/v2/discovery_rules_controller.rb:38
@@ -279,43 +293,43 @@ msgstr "Ocurrió un error al autoaprovisionar el host %s: %s"
279
293
  msgid "Discovered hosts are provisioning now"
280
294
  msgstr "Los hosts detectados se están aprovisionando ahora"
281
295
 
282
- #: ../app/controllers/discovered_hosts_controller.rb:224
296
+ #: ../app/controllers/discovered_hosts_controller.rb:226
283
297
  msgid "Highlights"
284
298
  msgstr "Aspectos destacados"
285
299
 
286
- #: ../app/controllers/discovered_hosts_controller.rb:224
300
+ #: ../app/controllers/discovered_hosts_controller.rb:226
287
301
  msgid "Storage"
288
302
  msgstr "Almacenamiento"
289
303
 
290
- #: ../app/controllers/discovered_hosts_controller.rb:224
304
+ #: ../app/controllers/discovered_hosts_controller.rb:226
291
305
  msgid "Hardware"
292
306
  msgstr "Hardware"
293
307
 
294
- #: ../app/controllers/discovered_hosts_controller.rb:224
308
+ #: ../app/controllers/discovered_hosts_controller.rb:226
295
309
  msgid "Network"
296
310
  msgstr "Red"
297
311
 
298
- #: ../app/controllers/discovered_hosts_controller.rb:224
312
+ #: ../app/controllers/discovered_hosts_controller.rb:226
299
313
  msgid "Software"
300
314
  msgstr "Software"
301
315
 
302
- #: ../app/controllers/discovered_hosts_controller.rb:224
316
+ #: ../app/controllers/discovered_hosts_controller.rb:226
303
317
  msgid "IPMI"
304
318
  msgstr "IPMI"
305
319
 
306
- #: ../app/controllers/discovered_hosts_controller.rb:224
320
+ #: ../app/controllers/discovered_hosts_controller.rb:226
307
321
  msgid "Miscellaneous"
308
322
  msgstr "Miscelánea"
309
323
 
310
- #: ../app/controllers/discovered_hosts_controller.rb:302
324
+ #: ../app/controllers/discovered_hosts_controller.rb:304
311
325
  msgid "No hosts were found with that id or name"
312
326
  msgstr "No se han encontrado equipos con ese id o nombre"
313
327
 
314
- #: ../app/controllers/discovered_hosts_controller.rb:306
328
+ #: ../app/controllers/discovered_hosts_controller.rb:308
315
329
  msgid "No hosts selected"
316
330
  msgstr "Ningún equipo seleccionado"
317
331
 
318
- #: ../app/controllers/discovered_hosts_controller.rb:312
332
+ #: ../app/controllers/discovered_hosts_controller.rb:314
319
333
  msgid "Something went wrong while selecting hosts - %s"
320
334
  msgstr "Algo ha fallado al seleccionar equipos - %s"
321
335
 
@@ -331,21 +345,15 @@ msgstr "Regla deshabilitada"
331
345
  msgid "%s ago"
332
346
  msgstr "Hace %s"
333
347
 
334
- #: ../app/helpers/discovered_hosts_helper.rb:14
335
- #: ../app/helpers/discovered_hosts_helper.rb:29
336
- #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:37
348
+ #: ../app/helpers/discovered_hosts_helper.rb:14 ../app/helpers/discovered_hosts_helper.rb:29 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:37
337
349
  msgid "Auto Provision"
338
350
  msgstr "Autoaprovisionamiento"
339
351
 
340
- #: ../app/helpers/discovered_hosts_helper.rb:15
341
- #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:38
352
+ #: ../app/helpers/discovered_hosts_helper.rb:15 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:38
342
353
  msgid "Refresh facts"
343
354
  msgstr "Refrescar datos"
344
355
 
345
- #: ../app/helpers/discovered_hosts_helper.rb:16
346
- #: ../app/helpers/discovered_hosts_helper.rb:30
347
- #: ../app/models/setting/discovered.rb:22
348
- #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:39
356
+ #: ../app/helpers/discovered_hosts_helper.rb:16 ../app/helpers/discovered_hosts_helper.rb:30 ../app/models/setting/discovered.rb:24 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:39
349
357
  msgid "Reboot"
350
358
  msgstr "Reiniciar"
351
359
 
@@ -353,13 +361,11 @@ msgstr "Reiniciar"
353
361
  msgid "Back"
354
362
  msgstr "Atrás"
355
363
 
356
- #: ../app/helpers/discovered_hosts_helper.rb:21
357
- #: ../app/helpers/discovered_hosts_helper.rb:35
364
+ #: ../app/helpers/discovered_hosts_helper.rb:21 ../app/helpers/discovered_hosts_helper.rb:35
358
365
  msgid "Select Action"
359
366
  msgstr "Seleccionar una acción"
360
367
 
361
- #: ../app/helpers/discovered_hosts_helper.rb:23
362
- #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:40
368
+ #: ../app/helpers/discovered_hosts_helper.rb:23 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:40
363
369
  msgid "Delete %s?"
364
370
  msgstr "¿Borrar %s?"
365
371
 
@@ -379,8 +385,7 @@ msgstr "Borrar"
379
385
  msgid "%s - The following hosts are about to be changed"
380
386
  msgstr "%s - Los siguientes equipos están a punto de ser modificados"
381
387
 
382
- #: ../app/helpers/discovered_hosts_helper.rb:46
383
- #: ../app/views/dashboard/_discovery_widget_host.html.erb:2
388
+ #: ../app/helpers/discovered_hosts_helper.rb:46 ../app/views/dashboard/_discovery_widget_host.html.erb:2
384
389
  msgid "N/A"
385
390
  msgstr "N/A"
386
391
 
@@ -400,12 +405,7 @@ msgstr "Informado en los últimos 7 días"
400
405
  msgid "Provision"
401
406
  msgstr "Aprovisionamiento"
402
407
 
403
- #: ../app/helpers/discovery_rules_helper.rb:26
404
- #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:1
405
- #: ../app/views/discovered_hosts/welcome.html.erb:1
406
- #: ../app/views/discovered_hosts/welcome.html.erb:6
407
- #: ../lib/foreman_discovery/engine.rb:158
408
- #: ../lib/foreman_discovery/engine.rb:173
408
+ #: ../app/helpers/discovery_rules_helper.rb:26 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:1 ../app/views/discovered_hosts/welcome.html.erb:8 ../lib/foreman_discovery/engine.rb:159 ../lib/foreman_discovery/engine.rb:174
409
409
  msgid "Discovered Hosts"
410
410
  msgstr "Hosts detectados"
411
411
 
@@ -454,17 +454,14 @@ msgid "must be present."
454
454
  msgstr "debe estar presente."
455
455
 
456
456
  #: ../app/models/discovery_rule.rb:52
457
- msgid ""
458
- "Host group organization %s must also be associated to the discovery rule"
459
- msgid_plural ""
460
- "Host group organizations %s must also be associated to the discovery rule"
457
+ msgid "Host group organization %s must also be associated to the discovery rule"
458
+ msgid_plural "Host group organizations %s must also be associated to the discovery rule"
461
459
  msgstr[0] ""
462
460
  msgstr[1] ""
463
461
 
464
462
  #: ../app/models/discovery_rule.rb:56
465
463
  msgid "Host group location %s must also be associated to the discovery rule"
466
- msgid_plural ""
467
- "Host group locations %s must also be associated to the discovery rule"
464
+ msgid_plural "Host group locations %s must also be associated to the discovery rule"
468
465
  msgstr[0] ""
469
466
  msgstr[1] ""
470
467
 
@@ -480,39 +477,39 @@ msgstr "Nombre aleatorio"
480
477
  msgid "MAC-based name"
481
478
  msgstr "Nombre basado en MAC"
482
479
 
483
- #: ../app/models/host/discovered.rb:51
480
+ #: ../app/models/host/discovered.rb:55
484
481
  msgid "Invalid facts, must be a Hash"
485
482
  msgstr "Eventos inválidos. Debe ser un hash"
486
483
 
487
- #: ../app/models/host/discovered.rb:56
488
- msgid ""
489
- "Expected discovery_fact '%s' is missing, unable to detect primary interface "
490
- "and set hostname"
484
+ #: ../app/models/host/discovered.rb:60
485
+ msgid "Expected discovery_fact '%s' is missing, unable to detect primary interface and set hostname"
491
486
  msgstr "Falta el discovery_fact '%s' esperado. No es posible detectar la interfaz principal y definir el nombre de host"
492
487
 
493
- #: ../app/models/host/discovered.rb:69
494
- msgid ""
495
- "Invalid facts: hash does not contain a valid value for any of the facts in "
496
- "the discovery_hostname setting: %s"
488
+ #: ../app/models/host/discovered.rb:73
489
+ msgid "Invalid facts: hash does not contain a valid value for any of the facts in the discovery_hostname setting: %s"
497
490
  msgstr "Eventos inválidos: el hash no contiene un valor válido para ninguno de los eventos en la configuración de discovery_hostname: %s"
498
491
 
499
- #: ../app/models/host/discovered.rb:95
492
+ #: ../app/models/host/discovered.rb:100
500
493
  msgid "Facts could not be imported"
501
494
  msgstr "No se pudieron importar los eventos"
502
495
 
503
- #: ../app/models/host/discovered.rb:150
496
+ #: ../app/models/host/discovered.rb:146
504
497
  msgid "Could not get facts from proxy %{url}: %{error}"
505
498
  msgstr "No pudieron obtenerse los eventos del proxy %{url}: %{error}"
506
499
 
507
- #: ../app/models/host/discovered.rb:158
508
- msgid "Unable to reboot %{name} via %{url}: %{msg}"
509
- msgstr "No es posible reiniciar %{name} a través de %{url}: %{msg}"
500
+ #: ../app/models/host/discovered.rb:160
501
+ msgid "Unable to perform reboot on %{name} (%{url}): %{msg}"
502
+ msgstr ""
503
+
504
+ #: ../app/models/host/discovered.rb:164 ../app/models/host/discovered.rb:183
505
+ msgid "Unable to perform %{action} on %{ips}"
506
+ msgstr ""
510
507
 
511
- #: ../app/models/host/discovered.rb:166
512
- msgid "Unable to perform kexec on %{name} via %{url}: %{msg}"
513
- msgstr "No es posible ejecutar kexec en %{name} a través de %{url}: %{msg}"
508
+ #: ../app/models/host/discovered.rb:179
509
+ msgid "Unable to perform kexec on %{name} (%{url}): %{msg}"
510
+ msgstr ""
514
511
 
515
- #: ../app/models/host/discovered.rb:185
512
+ #: ../app/models/host/discovered.rb:203
516
513
  msgid "Invalid hostname: Could not normalize the hostname"
517
514
  msgstr "Nombre de host inválido: no es posible normalizar el nombre de host"
518
515
 
@@ -540,191 +537,183 @@ msgstr "La URL del kexec Init RAM no es válida: '%s'"
540
537
  msgid "Rebuild DNS for %s"
541
538
  msgstr "Reconstruir DNS para %s"
542
539
 
543
- #: ../app/models/setting/discovered.rb:15
540
+ #: ../app/models/setting/discovered.rb:17
544
541
  msgid "The default location to place discovered hosts in"
545
542
  msgstr "La ubicación predeterminada para colocar hosts descubiertos "
546
543
 
547
- #: ../app/models/setting/discovered.rb:15
544
+ #: ../app/models/setting/discovered.rb:17
548
545
  msgid "Discovery location"
549
546
  msgstr "Ubicación de la detección"
550
547
 
551
- #: ../app/models/setting/discovered.rb:16
548
+ #: ../app/models/setting/discovered.rb:18
552
549
  msgid "The default organization to place discovered hosts in"
553
550
  msgstr "La ubicación predeterminada para colocar organizaciones descubiertas "
554
551
 
555
- #: ../app/models/setting/discovered.rb:16
552
+ #: ../app/models/setting/discovered.rb:18
556
553
  msgid "Discovery organization"
557
554
  msgstr "Organización de detección"
558
555
 
559
- #: ../app/models/setting/discovered.rb:17
556
+ #: ../app/models/setting/discovered.rb:19
560
557
  msgid "Fact name to use for primary interface detection"
561
558
  msgstr "Nombre de evento que debe utilizarse para la detección de la interfaz principal"
562
559
 
563
- #: ../app/models/setting/discovered.rb:17
560
+ #: ../app/models/setting/discovered.rb:19
564
561
  msgid "Interface fact"
565
562
  msgstr "Evento de interfaz"
566
563
 
567
- #: ../app/models/setting/discovered.rb:18
568
- msgid ""
569
- "Automatic bond interface (if another interface is detected on the same VLAN "
570
- "via LLDP)"
564
+ #: ../app/models/setting/discovered.rb:20
565
+ msgid "Automatic bond interface (if another interface is detected on the same VLAN via LLDP)"
571
566
  msgstr "Interfaz de asociación aleatoria (si se detecta otra interfaz en la misma VLAN mediante LLDP)"
572
567
 
573
- #: ../app/models/setting/discovered.rb:18
568
+ #: ../app/models/setting/discovered.rb:20
574
569
  msgid "Create bond interfaces"
575
570
  msgstr "Crear interfaces de asociación"
576
571
 
577
- #: ../app/models/setting/discovered.rb:19
572
+ #: ../app/models/setting/discovered.rb:21
578
573
  msgid "Clean all reported facts during provisioning (except discovery facts)"
579
574
  msgstr "Eliminar todos los eventos informados durante el aprovisionamiento (excepto los eventos de detección)"
580
575
 
581
- #: ../app/models/setting/discovered.rb:19
576
+ #: ../app/models/setting/discovered.rb:21
582
577
  msgid "Clean all facts"
583
578
  msgstr "Eliminar todos los eventos"
584
579
 
585
- #: ../app/models/setting/discovered.rb:20
580
+ #: ../app/models/setting/discovered.rb:22
586
581
  msgid "List of facts to use for the hostname (separated by comma, first wins)"
587
582
  msgstr "Mostrar los eventos que deben utilizarse para el nombre de host (separados por comas, los primeros son los más importantes)"
588
583
 
589
- #: ../app/models/setting/discovered.rb:20
584
+ #: ../app/models/setting/discovered.rb:22
590
585
  msgid "Hostname facts"
591
586
  msgstr "Eventos del nombre de host"
592
587
 
593
- #: ../app/models/setting/discovered.rb:21
594
- msgid ""
595
- "Automatically provision newly discovered hosts, according to the "
596
- "provisioning rules"
588
+ #: ../app/models/setting/discovered.rb:23
589
+ msgid "Automatically provision newly discovered hosts, according to the provisioning rules"
597
590
  msgstr "Aprovisionar automáticamente los hosts recientemente detectados, de acuerdo con las reglas de aprovisionamiento"
598
591
 
599
- #: ../app/models/setting/discovered.rb:21
592
+ #: ../app/models/setting/discovered.rb:23
600
593
  msgid "Auto provisioning"
601
594
  msgstr "Autoaprovisionamiento"
602
595
 
603
- #: ../app/models/setting/discovered.rb:22
596
+ #: ../app/models/setting/discovered.rb:24
604
597
  msgid "Automatically reboot or kexec discovered host during provisioning"
605
598
  msgstr "Reiniciar en forma automática o host kexec detectado durante el aprovisionamiento"
606
599
 
607
- #: ../app/models/setting/discovered.rb:23
600
+ #: ../app/models/setting/discovered.rb:25
608
601
  msgid "The default prefix to use for the host name, must start with a letter"
609
602
  msgstr "Prefijo predeterminado que debe utilizarse para el nombre de host. Debe comenzar con una letra"
610
603
 
611
- #: ../app/models/setting/discovered.rb:23
604
+ #: ../app/models/setting/discovered.rb:25
612
605
  msgid "Hostname prefix"
613
606
  msgstr "Prefijo del nombre de host"
614
607
 
615
- #: ../app/models/setting/discovered.rb:24
608
+ #: ../app/models/setting/discovered.rb:26
616
609
  msgid "Extra facter columns to show in host lists (separate by comma)"
617
610
  msgstr "Columnas de eventos adicionales para mostrar en las listas de hosts (separados por comas)"
618
611
 
619
- #: ../app/models/setting/discovered.rb:24
612
+ #: ../app/models/setting/discovered.rb:26
620
613
  msgid "Fact columns"
621
614
  msgstr "Columnas de eventos"
622
615
 
623
- #: ../app/models/setting/discovered.rb:25
616
+ #: ../app/models/setting/discovered.rb:27
624
617
  msgid "Regex to organize facts for highlights section - e.g. ^(abc|cde)$"
625
618
  msgstr "Regex para organizar los eventos para la sección de aspectos destacados, por ejemplo, ^(abc|cde)$"
626
619
 
627
- #: ../app/models/setting/discovered.rb:25
620
+ #: ../app/models/setting/discovered.rb:27
628
621
  msgid "Highlighted facts"
629
622
  msgstr "Eventos destacados"
630
623
 
631
- #: ../app/models/setting/discovered.rb:26
624
+ #: ../app/models/setting/discovered.rb:28
632
625
  msgid "Regex to organize facts for storage section"
633
626
  msgstr "Regex para organizar eventos para la sección de almacenamiento"
634
627
 
635
- #: ../app/models/setting/discovered.rb:26
628
+ #: ../app/models/setting/discovered.rb:28
636
629
  msgid "Storage facts"
637
630
  msgstr "Eventos de almacenamiento"
638
631
 
639
- #: ../app/models/setting/discovered.rb:27
632
+ #: ../app/models/setting/discovered.rb:29
640
633
  msgid "Regex to organize facts for software section"
641
634
  msgstr "Regex para organizar eventos para la sección de software"
642
635
 
643
- #: ../app/models/setting/discovered.rb:27
636
+ #: ../app/models/setting/discovered.rb:29
644
637
  msgid "Software facts"
645
638
  msgstr "Eventos de software"
646
639
 
647
- #: ../app/models/setting/discovered.rb:28
640
+ #: ../app/models/setting/discovered.rb:30
648
641
  msgid "Regex to organize facts for hardware section"
649
642
  msgstr "Regex para organizar eventos para sección de hardware"
650
643
 
651
- #: ../app/models/setting/discovered.rb:28
644
+ #: ../app/models/setting/discovered.rb:30
652
645
  msgid "Hardware facts"
653
646
  msgstr "Eventos de hardware"
654
647
 
655
- #: ../app/models/setting/discovered.rb:29
648
+ #: ../app/models/setting/discovered.rb:31
656
649
  msgid "Regex to organize facts for network section"
657
650
  msgstr "Regex para organizar los eventos para la sección de redes"
658
651
 
659
- #: ../app/models/setting/discovered.rb:29
652
+ #: ../app/models/setting/discovered.rb:31
660
653
  msgid "Network facts"
661
654
  msgstr "Eventos de red"
662
655
 
663
- #: ../app/models/setting/discovered.rb:30
656
+ #: ../app/models/setting/discovered.rb:32
664
657
  msgid "Regex to organize facts for ipmi section"
665
658
  msgstr "Regex para organizar eventos para la sección ipmi"
666
659
 
667
- #: ../app/models/setting/discovered.rb:30
660
+ #: ../app/models/setting/discovered.rb:32
668
661
  msgid "IPMI facts"
669
662
  msgstr "Eventos IPMI"
670
663
 
671
- #: ../app/models/setting/discovered.rb:31
672
- msgid ""
673
- "Automatically generate PXE configuration to pin a newly discovered host to "
674
- "discovery"
664
+ #: ../app/models/setting/discovered.rb:33
665
+ msgid "Automatically generate PXE configuration to pin a newly discovered host to discovery"
675
666
  msgstr "Generar configuración PXE en forma automática para adjuntar un host descubierto recientemente a la detección"
676
667
 
677
- #: ../app/models/setting/discovered.rb:31
668
+ #: ../app/models/setting/discovered.rb:33
678
669
  msgid "Lock PXE"
679
670
  msgstr "Bloquear PXE"
680
671
 
681
- #: ../app/models/setting/discovered.rb:32
672
+ #: ../app/models/setting/discovered.rb:34
682
673
  msgid "PXELinux template to be used when pinning a host to discovery"
683
674
  msgstr "Debe utilizarse la plantilla PXELinux para adjuntar un host a la detección"
684
675
 
685
- #: ../app/models/setting/discovered.rb:32
676
+ #: ../app/models/setting/discovered.rb:34
686
677
  msgid "Locked PXELinux template name"
687
678
  msgstr "Nombre de plantilla PXELinux bloqueada"
688
679
 
689
- #: ../app/models/setting/discovered.rb:33
680
+ #: ../app/models/setting/discovered.rb:35
690
681
  msgid "PXEGrub template to be used when pinning a host to discovery"
691
682
  msgstr "Plantilla PXEGrub que debe utilizarse para adjuntar un host a la detección"
692
683
 
693
- #: ../app/models/setting/discovered.rb:33
684
+ #: ../app/models/setting/discovered.rb:35
694
685
  msgid "Locked PXEGrub template name"
695
686
  msgstr "Nombre de plantilla PXEGrub bloqueado"
696
687
 
697
- #: ../app/models/setting/discovered.rb:34
688
+ #: ../app/models/setting/discovered.rb:36
698
689
  msgid "PXEGrub2 template to be used when pinning a host to discovery"
699
690
  msgstr "Plantilla PXEGrub2 que debe utilizarse al adjuntar un host a la detección"
700
691
 
701
- #: ../app/models/setting/discovered.rb:34
692
+ #: ../app/models/setting/discovered.rb:36
702
693
  msgid "Locked PXEGrub2 template name"
703
694
  msgstr "Nombre de plantilla PXEGrub2 bloqueado"
704
695
 
705
- #: ../app/models/setting/discovered.rb:35
696
+ #: ../app/models/setting/discovered.rb:37
706
697
  msgid "Force DNS entries creation when provisioning discovered host"
707
698
  msgstr "Forzar la creación de entradas DNS al aprovisionar host detectado"
708
699
 
709
- #: ../app/models/setting/discovered.rb:35
700
+ #: ../app/models/setting/discovered.rb:37
710
701
  msgid "Force DNS"
711
702
  msgstr "Forzar DNS"
712
703
 
713
- #: ../app/models/setting/discovered.rb:36
714
- msgid ""
715
- "Do not allow to discover existing managed host matching MAC of a "
716
- "provisioning NIC (errors out early)"
704
+ #: ../app/models/setting/discovered.rb:38
705
+ msgid "Do not allow to discover existing managed host matching MAC of a provisioning NIC (errors out early)"
717
706
  msgstr "No permitir detectar host administrados existentes que coincidan con la MAC de una NIC de aprovisionamiento (se produce un error temprano)"
718
707
 
719
- #: ../app/models/setting/discovered.rb:36
708
+ #: ../app/models/setting/discovered.rb:38
720
709
  msgid "Error on existing NIC"
721
710
  msgstr "Error en la NIC existente"
722
711
 
723
- #: ../app/models/setting/discovered.rb:37
712
+ #: ../app/models/setting/discovered.rb:39
724
713
  msgid "Discovery hostname naming pattern"
725
714
  msgstr "Detección de patrón de definición de nombre de host"
726
715
 
727
- #: ../app/models/setting/discovered.rb:37
716
+ #: ../app/models/setting/discovered.rb:39
728
717
  msgid "Type of name generator"
729
718
  msgstr "Tipo de generador de nombre"
730
719
 
@@ -737,23 +726,27 @@ msgid "Discovered host '%{host}' has all NICs filtered out, filter: %{filter}"
737
726
  msgstr "El host detectado '%{host}' tiene todas las NIC filtradas, filtro: %{filter}"
738
727
 
739
728
  #: ../app/services/foreman_discovery/fact_parser.rb:12
740
- msgid ""
741
- "Unable to find primary NIC with %{mac} specified via '%{fact}', NIC filter: "
742
- "%{filter}"
729
+ msgid "Unable to find primary NIC with %{mac} specified via '%{fact}', NIC filter: %{filter}"
743
730
  msgstr "No se puede encontrar la NIC principal con %{mac} especificada mediante '%{fact}', filtro de NIC: %{filter}"
744
731
 
745
- #: ../app/services/foreman_discovery/host_converter.rb:39
732
+ #: ../app/services/foreman_discovery/host_converter.rb:47
746
733
  msgid "IPAM must be configured for subnet '%s'"
747
734
  msgstr ""
748
735
 
749
- #: ../app/services/foreman_discovery/node_api/node_resource.rb:75
736
+ #: ../app/services/foreman_discovery/node_api/node_resource.rb:76
750
737
  msgid "Image API returned HTTP/%{code} with '%{body}"
751
738
  msgstr "La API de la imagen arrojó HTTP/%{code} with '%{body}"
752
739
 
753
- #: ../app/services/foreman_discovery/node_api/node_resource.rb:78
740
+ #: ../app/services/foreman_discovery/node_api/node_resource.rb:79
754
741
  msgid "Image API processing error: %{msg} (HTTP/%{code}, body: %{body})"
755
742
  msgstr "Error de procesamiento de la API de la imagen: %{msg} (HTTP/%{code}, body: %{body})"
756
743
 
744
+ #: ../app/views/dashboard/_discovery_widget.html.erb:5
745
+ msgid "Discovered Host"
746
+ msgid_plural "Discovered Hosts"
747
+ msgstr[0] ""
748
+ msgstr[1] ""
749
+
757
750
  #: ../app/views/dashboard/_discovery_widget.html.erb:9
758
751
  msgid "No discovered hosts available"
759
752
  msgstr "No hay hosts detectados disponibles"
@@ -762,33 +755,23 @@ msgstr "No hay hosts detectados disponibles"
762
755
  msgid "Host"
763
756
  msgstr "Host"
764
757
 
765
- #: ../app/views/dashboard/_discovery_widget_host_list.html.erb:4
766
- #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:6
767
- #: ../app/views/discovered_hosts/_selected_hosts.html.erb:8
768
- #: ../app/views/discovered_mailer/discovered_summary.html.erb:18
769
- #: ../app/views/discovered_mailer/discovered_summary.text.erb:10
758
+ #: ../app/views/dashboard/_discovery_widget_host_list.html.erb:4 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:6 ../app/views/discovered_hosts/_selected_hosts.html.erb:8 ../app/views/discovered_mailer/discovered_summary.html.erb:18 ../app/views/discovered_mailer/discovered_summary.text.erb:10
770
759
  msgid "Model"
771
760
  msgstr "Modelo"
772
761
 
773
- #: ../app/views/dashboard/_discovery_widget_host_list.html.erb:5
774
- #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:8
775
- #: ../app/views/discovered_mailer/discovered_summary.html.erb:20
776
- #: ../app/views/discovered_mailer/discovered_summary.text.erb:12
762
+ #: ../app/views/dashboard/_discovery_widget_host_list.html.erb:5 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:8 ../app/views/discovered_mailer/discovered_summary.html.erb:20 ../app/views/discovered_mailer/discovered_summary.text.erb:12
777
763
  msgid "CPUs"
778
764
  msgstr "CPU"
779
765
 
780
- #: ../app/views/dashboard/_discovery_widget_host_list.html.erb:6
781
- #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:9
782
- #: ../app/views/discovered_mailer/discovered_summary.html.erb:21
783
- #: ../app/views/discovered_mailer/discovered_summary.text.erb:13
766
+ #: ../app/views/dashboard/_discovery_widget_host_list.html.erb:6 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:9 ../app/views/discovered_mailer/discovered_summary.html.erb:21 ../app/views/discovered_mailer/discovered_summary.text.erb:13
784
767
  msgid "Memory"
785
768
  msgstr "Memoria"
786
769
 
787
- #: ../app/views/discovered_hosts/_discovered_host_modal.html.erb:25
770
+ #: ../app/views/discovered_hosts/_discovered_host_modal.html.erb:23
788
771
  msgid "Customize Host"
789
772
  msgstr "Personalizar host"
790
773
 
791
- #: ../app/views/discovered_hosts/_discovered_host_modal.html.erb:26
774
+ #: ../app/views/discovered_hosts/_discovered_host_modal.html.erb:24
792
775
  msgid "Create Host"
793
776
  msgstr "Crear host"
794
777
 
@@ -800,16 +783,11 @@ msgstr "Seleccionar todos los objetos de esta página"
800
783
  msgid "items selected. Uncheck to Clear"
801
784
  msgstr "objetos seleccionados. Desactivar para limpiar"
802
785
 
803
- #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:5
804
- #: ../app/views/discovered_hosts/_selected_hosts.html.erb:7
805
- #: ../app/views/discovered_mailer/discovered_summary.html.erb:17
806
- #: ../app/views/discovered_mailer/discovered_summary.text.erb:9
786
+ #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:5 ../app/views/discovered_hosts/_selected_hosts.html.erb:7 ../app/views/discovered_mailer/discovered_summary.html.erb:17 ../app/views/discovered_mailer/discovered_summary.text.erb:9
807
787
  msgid "Name"
808
788
  msgstr "Nombre"
809
789
 
810
- #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:7
811
- #: ../app/views/discovered_mailer/discovered_summary.html.erb:19
812
- #: ../app/views/discovered_mailer/discovered_summary.text.erb:11
790
+ #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:7 ../app/views/discovered_mailer/discovered_summary.html.erb:19 ../app/views/discovered_mailer/discovered_summary.text.erb:11
813
791
  msgid "IP Address"
814
792
  msgstr "Dirección IP"
815
793
 
@@ -821,13 +799,11 @@ msgstr "Conteo de discos"
821
799
  msgid "Disks Size"
822
800
  msgstr "Tamaño de los discos"
823
801
 
824
- #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:15
825
- #: ../app/views/discovered_hosts/_selected_hosts.html.erb:9
802
+ #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:15 ../app/views/discovered_hosts/_selected_hosts.html.erb:9
826
803
  msgid "Location"
827
804
  msgstr "Lugares"
828
805
 
829
- #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:16
830
- #: ../app/views/discovered_hosts/_selected_hosts.html.erb:10
806
+ #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:16 ../app/views/discovered_hosts/_selected_hosts.html.erb:10
831
807
  msgid "Organization"
832
808
  msgstr "Organización"
833
809
 
@@ -839,8 +815,7 @@ msgstr "Subred"
839
815
  msgid "Last Facts Upload"
840
816
  msgstr "Última carga de datos"
841
817
 
842
- #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:19
843
- #: ../app/views/discovery_rules/index.html.erb:12
818
+ #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:19 ../app/views/discovery_rules/index.html.erb:12
844
819
  msgid "Actions"
845
820
  msgstr "Acciones"
846
821
 
@@ -861,9 +836,7 @@ msgid "Provision %s"
861
836
  msgstr "Aprovisionar %s"
862
837
 
863
838
  #: ../app/views/discovered_hosts/multiple_destroy.html.erb:3
864
- msgid ""
865
- "This might take a while, as all hosts, facts and reports will be destroyed "
866
- "as well"
839
+ msgid "This might take a while, as all hosts, facts and reports will be destroyed as well"
867
840
  msgstr "Esta acción puede tardar un rato, ya que se eliminarán todos los equipos, datos e informes."
868
841
 
869
842
  #: ../app/views/discovered_hosts/select_multiple_location.html.erb:5
@@ -902,20 +875,6 @@ msgstr "Dirección IP"
902
875
  msgid "Collapse All"
903
876
  msgstr "Colapsó todo"
904
877
 
905
- #: ../app/views/discovered_hosts/welcome.html.erb:7
906
- msgid "No discovered hosts found in this context."
907
- msgstr "No se encontraron hosts detectados en este contexto."
908
-
909
- #: ../app/views/discovered_hosts/welcome.html.erb:8
910
- msgid ""
911
- "This page shows discovered bare-metal or virtual nodes waiting to be "
912
- "provisioned."
913
- msgstr "Esta página muestra los nodos sin sistema operativo o virtuales detectados cuyo aprovisionamiento está pendiente."
914
-
915
- #: ../app/views/discovered_hosts/welcome.html.erb:9
916
- msgid "Learn more about this in the documentation."
917
- msgstr "Consulte la documentación para obtener más información."
918
-
919
878
  #: ../app/views/discovered_mailer/discovered_summary.html.erb:6
920
879
  msgid "Summary report for discovered hosts from Foreman"
921
880
  msgstr "Informe de resumen de los hosts detectados de Foreman"
@@ -924,23 +883,19 @@ msgstr "Informe de resumen de los hosts detectados de Foreman"
924
883
  msgid "<b>Foreman</b> Discovered hosts summary"
925
884
  msgstr "<b>Foreman</b> Resumen de hosts detectados"
926
885
 
927
- #: ../app/views/discovered_mailer/discovered_summary.html.erb:10
928
- #: ../app/views/discovered_mailer/discovered_summary.text.erb:5
886
+ #: ../app/views/discovered_mailer/discovered_summary.html.erb:10 ../app/views/discovered_mailer/discovered_summary.text.erb:5
929
887
  msgid "Summary from %{time} ago to %{now}"
930
888
  msgstr "Resumen desde %{time} hasta el %{now}"
931
889
 
932
- #: ../app/views/discovered_mailer/discovered_summary.html.erb:11
933
- #: ../app/views/discovered_mailer/discovered_summary.text.erb:3
890
+ #: ../app/views/discovered_mailer/discovered_summary.html.erb:11 ../app/views/discovered_mailer/discovered_summary.text.erb:3
934
891
  msgid "Discovered hosts from Foreman server at %{foreman_url}"
935
892
  msgstr "Hosts detectados desde el servidor de Foreman en %{foreman_url}"
936
893
 
937
- #: ../app/views/discovered_mailer/discovered_summary.html.erb:22
938
- #: ../app/views/discovered_mailer/discovered_summary.text.erb:14
894
+ #: ../app/views/discovered_mailer/discovered_summary.html.erb:22 ../app/views/discovered_mailer/discovered_summary.text.erb:14
939
895
  msgid "Disk count"
940
896
  msgstr "Número de discos"
941
897
 
942
- #: ../app/views/discovered_mailer/discovered_summary.html.erb:23
943
- #: ../app/views/discovered_mailer/discovered_summary.text.erb:15
898
+ #: ../app/views/discovered_mailer/discovered_summary.html.erb:23 ../app/views/discovered_mailer/discovered_summary.text.erb:15
944
899
  msgid "Disks size"
945
900
  msgstr "Tamaño de discos"
946
901
 
@@ -989,41 +944,30 @@ msgid "Rule priority (lower integer means higher priority)"
989
944
  msgstr "Prioridad de la regla (el número entero más bajo significa una mayor prioridad)"
990
945
 
991
946
  #: ../app/views/discovery_rules/_template_inline.erb:2
992
- msgid ""
993
- "Specify target hostname template pattern in the same syntax as in "
994
- "Provisioning Templates (ERB)."
947
+ msgid "Specify target hostname template pattern in the same syntax as in Provisioning Templates (ERB)."
995
948
  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)."
996
949
 
997
950
  #: ../app/views/discovery_rules/_template_inline.erb:4
998
- msgid ""
999
- "Domain will be appended automatically. A hostname based on MAC address will "
1000
- "be used when left blank."
951
+ msgid "Domain will be appended automatically. A hostname based on MAC address will be used when left blank."
1001
952
  msgstr "El dominio se agregará en forma automática. Se utilizará un nombre de host basado en la dirección MAC cuando quede en blanco."
1002
953
 
1003
954
  #: ../app/views/discovery_rules/_template_inline.erb:5
1004
- msgid ""
1005
- "In addition to @host attribute function rand for random integers is "
1006
- "available. Examples:"
955
+ msgid "In addition to @host attribute function rand for random integers is available. Examples:"
1007
956
  msgstr "Además del atributo @host, la función aleatoria para los números enteros aleatorizados se encuentra disponible. Ejemplos:"
1008
957
 
1009
958
  #: ../app/views/discovery_rules/_template_inline.erb:8
1010
- msgid ""
1011
- "When creating hostname patterns, make sure the resulting host names are "
1012
- "unique."
959
+ msgid "When creating hostname patterns, make sure the resulting host names are unique."
1013
960
  msgstr "Al crear patrones de nombres de host, asegúrese de que los nombres de host resultantes sean únicos."
1014
961
 
1015
962
  #: ../app/views/discovery_rules/_template_inline.erb:9
1016
- msgid ""
1017
- "Hostnames must not start with numbers. A good approach is to use unique "
1018
- "information provided by facter (MAC address, BIOS or serial ID)."
963
+ msgid "Hostnames must not start with numbers. A good approach is to use unique information provided by facter (MAC address, BIOS or serial ID)."
1019
964
  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)."
1020
965
 
1021
966
  #: ../app/views/discovery_rules/edit.html.erb:1
1022
967
  msgid "Edit %s"
1023
968
  msgstr "Editar %s"
1024
969
 
1025
- #: ../app/views/discovery_rules/index.html.erb:1
1026
- #: ../lib/foreman_discovery/engine.rb:163
970
+ #: ../app/views/discovery_rules/index.html.erb:1 ../lib/foreman_discovery/engine.rb:164
1027
971
  msgid "Discovery Rules"
1028
972
  msgstr "Reglas de detección"
1029
973
 
@@ -1079,38 +1023,45 @@ msgstr "Se detectaron uno o más hosts"
1079
1023
  msgid "Details"
1080
1024
  msgstr "Información"
1081
1025
 
1082
- #: ../lib/foreman_discovery/engine.rb:179
1026
+ #: ../lib/foreman_discovery/engine.rb:180
1083
1027
  msgid "Discovery Kexec template"
1084
1028
  msgstr "Plantilla Kexec de detección"
1085
1029
 
1086
- #: ../lib/foreman_discovery/engine.rb:188
1030
+ #: ../lib/foreman_discovery/engine.rb:189
1087
1031
  msgid "Discovery Proxy"
1088
1032
  msgstr "Proxy de detección"
1089
1033
 
1090
- #: ../lib/foreman_discovery/engine.rb:189
1091
- msgid ""
1092
- "Discovery Proxy to use within this subnet for managing connection to "
1093
- "discovered hosts"
1034
+ #: ../lib/foreman_discovery/engine.rb:190
1035
+ msgid "Discovery Proxy to use within this subnet for managing connection to discovered hosts"
1094
1036
  msgstr "Proxy de detección para usar en esta subred para administrar la conexión con los hosts detectados"
1095
1037
 
1096
- #: ../lib/foreman_discovery/engine.rb:190
1097
- msgid ""
1098
- "ID of Discovery Proxy to use within this subnet for managing connection to "
1099
- "discovered hosts"
1038
+ #: ../lib/foreman_discovery/engine.rb:191
1039
+ msgid "ID of Discovery Proxy to use within this subnet for managing connection to discovered hosts"
1100
1040
  msgstr "ID del proxy de detección para usar en esta subred para administrar la conexión con los hosts detectados"
1101
1041
 
1102
1042
  #: action_names.rb:2
1103
- msgid "Import Puppet classes"
1104
- msgstr "Importar clases Puppet"
1043
+ msgid "Remote action:"
1044
+ msgstr ""
1105
1045
 
1106
1046
  #: action_names.rb:3
1107
- msgid "Import facts"
1108
- msgstr "Importar datos"
1047
+ msgid "Import Puppet classes"
1048
+ msgstr ""
1109
1049
 
1110
1050
  #: action_names.rb:4
1111
1051
  msgid "Action with sub plans"
1112
- msgstr "Acción con subplanes"
1052
+ msgstr ""
1113
1053
 
1114
1054
  #: action_names.rb:5
1115
- msgid "Remote action:"
1116
- msgstr "Acción remota:"
1055
+ msgid "Import facts"
1056
+ msgstr ""
1057
+
1058
+ #~ msgid "Learn more about this in the documentation."
1059
+ #~ msgstr "Consulte la documentación para obtener más información."
1060
+ #~ msgid "No discovered hosts found in this context."
1061
+ #~ msgstr "No se encontraron hosts detectados en este contexto."
1062
+ #~ msgid ""
1063
+ #~ "This page shows discovered bare-metal or virtual nodes waiting to be provision"
1064
+ #~ "ed."
1065
+ #~ msgstr ""
1066
+ #~ "Esta página muestra los nodos sin sistema operativo o virtuales detectados cuy"
1067
+ #~ "o aprovisionamiento está pendiente."