foreman_discovery 11.0.0 → 12.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (90) hide show
  1. checksums.yaml +5 -5
  2. data/app/controllers/api/v2/discovered_hosts_controller.rb +1 -2
  3. data/app/controllers/concerns/foreman/controller/discovered_extensions.rb +1 -1
  4. data/app/controllers/discovered_hosts_controller.rb +21 -11
  5. data/app/controllers/foreman_discovery/concerns/hosts_controller_extensions.rb +1 -1
  6. data/app/helpers/discovered_hosts_helper.rb +9 -11
  7. data/app/models/discovery_rule.rb +3 -0
  8. data/app/models/host/discovered.rb +59 -19
  9. data/app/models/setting/discovered.rb +1 -0
  10. data/app/services/foreman_discovery/fact_parser.rb +6 -2
  11. data/app/services/foreman_discovery/ui_notifications/new_host.rb +3 -1
  12. data/app/views/dashboard/_discovery_widget_host_list.html.erb +1 -1
  13. data/app/views/discovered_hosts/_discovered_hosts_list.html.erb +2 -3
  14. data/app/views/discovered_hosts/_selected_hosts.html.erb +1 -1
  15. data/app/views/discovered_hosts/index.html.erb +0 -2
  16. data/app/views/discovered_hosts/multiple_auto_provision.html.erb +4 -0
  17. data/app/views/discovered_hosts/multiple_reboot.html.erb +4 -0
  18. data/app/views/discovered_hosts/show.html.erb +27 -15
  19. data/app/views/discovery_rules/_form.html.erb +9 -3
  20. data/app/views/discovery_rules/edit.html.erb +1 -1
  21. data/app/views/discovery_rules/index.html.erb +2 -2
  22. data/app/views/foreman_discovery/debian_kexec.erb +1 -1
  23. data/app/views/foreman_discovery/redhat_kexec.erb +1 -1
  24. data/config/as_deprecation_whitelist.yaml +395 -0
  25. data/config/routes.rb +7 -5
  26. data/db/migrate/20171222120314_add_constraints_on_discovery_rules_hostgroups.rb +10 -0
  27. data/db/migrate/20180412124505_add_priority_score_to_discovery_rules.rb +24 -0
  28. data/extra/discover-host +7 -5
  29. data/extra/discovery/simple-bond.json +167 -0
  30. data/lib/foreman_discovery/engine.rb +9 -3
  31. data/lib/foreman_discovery/version.rb +1 -1
  32. data/locale/ca/LC_MESSAGES/foreman_discovery.mo +0 -0
  33. data/locale/ca/foreman_discovery.edit.po +148 -221
  34. data/locale/ca/foreman_discovery.po +25 -19
  35. data/locale/de/LC_MESSAGES/foreman_discovery.mo +0 -0
  36. data/locale/de/foreman_discovery.edit.po +147 -221
  37. data/locale/de/foreman_discovery.po +26 -20
  38. data/locale/en/foreman_discovery.edit.po +106 -98
  39. data/locale/en/foreman_discovery.po +24 -18
  40. data/locale/en_GB/LC_MESSAGES/foreman_discovery.mo +0 -0
  41. data/locale/en_GB/foreman_discovery.edit.po +149 -222
  42. data/locale/en_GB/foreman_discovery.po +26 -20
  43. data/locale/es/LC_MESSAGES/foreman_discovery.mo +0 -0
  44. data/locale/es/foreman_discovery.edit.po +149 -222
  45. data/locale/es/foreman_discovery.po +26 -20
  46. data/locale/foreman_discovery.pot +115 -103
  47. data/locale/fr/LC_MESSAGES/foreman_discovery.mo +0 -0
  48. data/locale/fr/foreman_discovery.edit.po +147 -221
  49. data/locale/fr/foreman_discovery.po +26 -20
  50. data/locale/gl/foreman_discovery.edit.po +147 -220
  51. data/locale/gl/foreman_discovery.po +24 -18
  52. data/locale/it/LC_MESSAGES/foreman_discovery.mo +0 -0
  53. data/locale/it/foreman_discovery.edit.po +148 -221
  54. data/locale/it/foreman_discovery.po +25 -19
  55. data/locale/ja/LC_MESSAGES/foreman_discovery.mo +0 -0
  56. data/locale/ja/foreman_discovery.edit.po +149 -222
  57. data/locale/ja/foreman_discovery.po +26 -20
  58. data/locale/ko/LC_MESSAGES/foreman_discovery.mo +0 -0
  59. data/locale/ko/foreman_discovery.edit.po +149 -221
  60. data/locale/ko/foreman_discovery.po +26 -20
  61. data/locale/pt_BR/LC_MESSAGES/foreman_discovery.mo +0 -0
  62. data/locale/pt_BR/foreman_discovery.edit.po +149 -222
  63. data/locale/pt_BR/foreman_discovery.po +26 -20
  64. data/locale/ru/LC_MESSAGES/foreman_discovery.mo +0 -0
  65. data/locale/ru/foreman_discovery.edit.po +152 -223
  66. data/locale/ru/foreman_discovery.po +26 -20
  67. data/locale/sv_SE/LC_MESSAGES/foreman_discovery.mo +0 -0
  68. data/locale/sv_SE/foreman_discovery.edit.po +147 -220
  69. data/locale/sv_SE/foreman_discovery.po +24 -18
  70. data/locale/zh_CN/LC_MESSAGES/foreman_discovery.mo +0 -0
  71. data/locale/zh_CN/foreman_discovery.edit.po +155 -224
  72. data/locale/zh_CN/foreman_discovery.po +26 -20
  73. data/locale/zh_TW/LC_MESSAGES/foreman_discovery.mo +0 -0
  74. data/locale/zh_TW/foreman_discovery.edit.po +151 -222
  75. data/locale/zh_TW/foreman_discovery.po +26 -20
  76. data/test/functional/api/v2/discovered_hosts_controller_test.rb +2 -0
  77. data/test/functional/api/v2/discovery_rules_controller_test.rb +96 -9
  78. data/test/functional/api/v2/settings_controller_test.rb +22 -0
  79. data/test/functional/discovered_hosts_controller_test.rb +20 -21
  80. data/test/functional/discovery_rules_controller_test.rb +5 -4
  81. data/test/integration/discovered_hosts_test.rb +20 -10
  82. data/test/models/setting_test.rb +11 -0
  83. data/test/test_helper_discovery.rb +1 -0
  84. data/test/unit/discovered_extensions_test.rb +2 -13
  85. data/test/unit/discovery_rule_test.rb +87 -1
  86. data/test/unit/fact_parser_test.rb +2 -2
  87. data/test/unit/host_discovered_test.rb +60 -28
  88. data/test/unit/ui_notifications/destroy_host_test.rb +14 -4
  89. data/test/unit/ui_notifications/new_host_test.rb +8 -1
  90. metadata +22 -4
@@ -49,9 +49,6 @@ msgstr "Associated Hosts"
49
49
  msgid "Auto Provision"
50
50
  msgstr "Auto Provision"
51
51
 
52
- msgid "Auto Provision All"
53
- msgstr "Auto Provision All"
54
-
55
52
  msgid "Auto provisioning"
56
53
  msgstr "Auto provisioning"
57
54
 
@@ -79,6 +76,9 @@ msgstr "Clean all facts"
79
76
  msgid "Clean all reported facts during provisioning (except discovery facts)"
80
77
  msgstr "Clean all reported facts during provisioning (except discovery facts)"
81
78
 
79
+ msgid "Collapse All"
80
+ msgstr ""
81
+
82
82
  msgid "Could not get facts from proxy %{url}: %{error}"
83
83
  msgstr "Could not get facts from proxy %{url}: %{error}"
84
84
 
@@ -100,6 +100,9 @@ msgstr "Customise Host"
100
100
  msgid "DHCP filename option (Grub2 or PXELinux by default)"
101
101
  msgstr "DHCP filename option (Grub2 or PXELinux by default)"
102
102
 
103
+ msgid "Delete"
104
+ msgstr ""
105
+
103
106
  msgid "Delete %s?"
104
107
  msgstr "Delete %s?"
105
108
 
@@ -109,9 +112,6 @@ msgstr "Delete a discovered host"
109
112
  msgid "Delete a rule"
110
113
  msgstr "Delete a rule"
111
114
 
112
- msgid "Delete hosts"
113
- msgstr "Delete hosts"
114
-
115
115
  msgid "Delete rule '%s'?"
116
116
  msgstr "Delete rule '%s'?"
117
117
 
@@ -130,6 +130,9 @@ msgstr "Disable rule '%s'?"
130
130
  msgid "Discovered Hosts"
131
131
  msgstr "Discovered Hosts"
132
132
 
133
+ msgid "Discovered host '%{host}' has all NICs filtered out, filter: %{filter}"
134
+ msgstr ""
135
+
133
136
  msgid "Discovered host: %s"
134
137
  msgstr "Discovered host: %s"
135
138
 
@@ -160,6 +163,9 @@ msgstr "Discovery Proxy to use within this subnet for managing connection to dis
160
163
  msgid "Discovery Rules"
161
164
  msgstr "Discovery Rules"
162
165
 
166
+ msgid "Discovery fact parser does not work with non-discovery host '%{host}'"
167
+ msgstr ""
168
+
163
169
  msgid "Discovery location"
164
170
  msgstr "Discovery location"
165
171
 
@@ -193,11 +199,14 @@ msgstr "Disks Size"
193
199
  msgid "Disks size"
194
200
  msgstr "Disks size"
195
201
 
202
+ msgid "Do not allow to discover existing managed host matching MAC of a provisioning NIC (errors out early)"
203
+ msgstr ""
204
+
196
205
  msgid "Domain will be appended automatically. A hostname based on MAC address will be used when left blank."
197
206
  msgstr "Domain will be appended automatically. A hostname based on MAC address will be used when left blank."
198
207
 
199
- msgid "Edit Discovery Rule"
200
- msgstr "Edit Discovery Rule"
208
+ msgid "Edit %s"
209
+ msgstr ""
201
210
 
202
211
  msgid "Enable"
203
212
  msgstr "Enable"
@@ -205,6 +214,9 @@ msgstr "Enable"
205
214
  msgid "Enable rule '%s'?"
206
215
  msgstr "Enable rule '%s'?"
207
216
 
217
+ msgid "Error on existing NIC"
218
+ msgstr ""
219
+
208
220
  msgid "Errors during auto provisioning: %s"
209
221
  msgstr "Errors during auto provisioning: %s"
210
222
 
@@ -217,9 +229,6 @@ msgstr "Execute rules against a discovered host"
217
229
  msgid "Execute rules against all currently discovered hosts"
218
230
  msgstr "Execute rules against all currently discovered hosts"
219
231
 
220
- msgid "Expand All"
221
- msgstr "Expand All"
222
-
223
232
  msgid "Expected discovery_fact '%s' is missing, unable to detect primary interface and set hostname"
224
233
  msgstr "Expected discovery_fact '%s' is missing, unable to detect primary interface and set hostname"
225
234
 
@@ -512,9 +521,6 @@ msgstr "Provision a discovered host"
512
521
  msgid "Reboot"
513
522
  msgstr "Reboot"
514
523
 
515
- msgid "Reboot All"
516
- msgstr "Reboot All"
517
-
518
524
  msgid "Rebooting %s"
519
525
  msgstr "Rebooting %s"
520
526
 
@@ -647,15 +653,12 @@ msgstr "Type"
647
653
  msgid "UUID to track orchestration tasks status, GET /api/orchestration/:UUID/tasks"
648
654
  msgstr "UUID to track orchestration tasks status, GET /api/orchestration/:UUID/tasks"
649
655
 
650
- msgid "Unable to assign subnet, primary interface is missing IP address"
651
- msgstr "Unable to assign subnet, primary interface is missing IP address"
652
-
653
- msgid "Unable to detect primary interface using MAC '%{mac}' specified by discovery_fact '%{fact}'"
654
- msgstr "Unable to detect primary interface using MAC '%{mac}' specified by discovery_fact '%{fact}'"
655
-
656
656
  msgid "Unable to find a discovery rule, no host provided (check permissions)"
657
657
  msgstr "Unable to find a discovery rule, no host provided (check permissions)"
658
658
 
659
+ msgid "Unable to find primary NIC with %{mac} specified via '%{fact}', NIC filter: %{filter}"
660
+ msgstr ""
661
+
659
662
  msgid "Unable to perform kexec on %{name} via %{url}: %{msg}"
660
663
  msgstr "Unable to perform kexec on %{name} via %{url}: %{msg}"
661
664
 
@@ -698,6 +701,9 @@ msgstr "items selected. Uncheck to Clear"
698
701
  msgid "location ID for provisioned hosts"
699
702
  msgstr "location ID for provisioned hosts"
700
703
 
704
+ msgid "must be present."
705
+ msgstr ""
706
+
701
707
  msgid "must start with a letter or ERB."
702
708
  msgstr "must start with a letter or ERB."
703
709
 
@@ -1,7 +1,7 @@
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
@@ -11,10 +11,10 @@ msgid ""
11
11
  msgstr ""
12
12
  "Project-Id-Version: foreman_discovery 10.0.0\n"
13
13
  "Report-Msgid-Bugs-To: \n"
14
- "POT-Creation-Date: 2017-12-11 10:28+0100\n"
15
14
  "PO-Revision-Date: 2018-01-05 19:26+0000\n"
16
15
  "Last-Translator: Bryan Kearney <bryan.kearney@gmail.com>\n"
17
- "Language-Team: Spanish (http://www.transifex.com/foreman/foreman/language/es/)\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:79
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
 
@@ -71,14 +66,11 @@ msgid "not required if it's a virtual machine"
71
66
  msgstr "no es necesario si no se trata de una máquina virtual"
72
67
 
73
68
  #: ../app/controllers/api/v2/discovered_hosts_controller.rb:76
74
- msgid ""
75
- "UUID to track orchestration tasks status, GET /api/orchestration/:UUID/tasks"
69
+ msgid "UUID to track orchestration tasks status, GET /api/orchestration/:UUID/tasks"
76
70
  msgstr "UUID para seguir el estado de la tarea de orquestación, GET /api/orchestration/:UUID/tasks"
77
71
 
78
72
  #: ../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"
73
+ msgid "required if value is not inherited from host group or default password in settings"
82
74
  msgstr "es necesario si el valor no se hereda del grupo del host o de la contraseña predeterminada en las configuraciones"
83
75
 
84
76
  #: ../app/controllers/api/v2/discovered_hosts_controller.rb:89
@@ -90,62 +82,54 @@ msgid "Upload facts for a host, creating the host if required"
90
82
  msgstr "Subir eventos para un host, si es necesario cree el host."
91
83
 
92
84
  #: ../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)"
85
+ 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
86
  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
87
 
99
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:117
88
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:116
100
89
  msgid "Execute rules against a discovered host"
101
90
  msgstr "Ejecutar reglas en función de un host detectado"
102
91
 
103
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:123
104
- #: ../app/controllers/discovered_hosts_controller.rb:150
92
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:122 ../app/controllers/discovered_hosts_controller.rb:159
105
93
  msgid "Host %{host} was provisioned with rule %{rule}"
106
94
  msgstr "El host %{host} se aprovisionó con la regla %{rule}"
107
95
 
108
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:126
96
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:125
109
97
  msgid "Unable to provision %{host}: %{errors}"
110
98
  msgstr "No es posible aprovisionar %{host}: %{errors}"
111
99
 
112
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:132
113
- #: ../app/controllers/discovered_hosts_controller.rb:157
100
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:131 ../app/controllers/discovered_hosts_controller.rb:166
114
101
  msgid "No rule found for host %s"
115
102
  msgstr "No se halló una regla para el host %s"
116
103
 
117
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:139
104
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:138
118
105
  msgid "Execute rules against all currently discovered hosts"
119
106
  msgstr "Ejecutar reglas contra todos los hosts detectados actualmente"
120
107
 
121
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:143
122
- #: ../app/controllers/discovered_hosts_controller.rb:163
108
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:142 ../app/controllers/discovered_hosts_controller.rb:172
123
109
  msgid "Errors during auto provisioning: %s"
124
110
  msgstr "Errores durante el autoaprovisionamiento: %s"
125
111
 
126
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:146
127
- #: ../app/controllers/discovered_hosts_controller.rb:166
112
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:145 ../app/controllers/discovered_hosts_controller.rb:175
128
113
  msgid "No discovered hosts to provision"
129
114
  msgstr "No hay hosts detectados para aprovisionar"
130
115
 
131
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:168
116
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:167
132
117
  msgid "%s discovered hosts were provisioned"
133
118
  msgstr "Se aprovisionaron %s hosts detectados"
134
119
 
135
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:179
120
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:178
136
121
  msgid "Refreshing the facts of a discovered host"
137
122
  msgstr "Actualizando los eventos de un host detectado"
138
123
 
139
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:188
124
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:187
140
125
  msgid "Rebooting a discovered host"
141
126
  msgstr "Reiniciando un host detectado"
142
127
 
143
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:197
128
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:196
144
129
  msgid "Rebooting all discovered hosts"
145
130
  msgstr "Reiniciando todos los hosts detectados"
146
131
 
147
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:208
148
- #: ../app/controllers/discovered_hosts_controller.rb:125
132
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:207 ../app/controllers/discovered_hosts_controller.rb:128
149
133
  msgid "Discovered hosts are rebooting now"
150
134
  msgstr "Se están reiniciando ahora los hosts detectados"
151
135
 
@@ -170,8 +154,7 @@ msgid "the hostgroup that is used to auto provision a host"
170
154
  msgstr "grupo de host utilizado para autoaprovisionar un host"
171
155
 
172
156
  #: ../app/controllers/api/v2/discovery_rules_controller.rb:35
173
- msgid ""
174
- "defines a pattern to assign human-readable hostnames to the matching hosts"
157
+ msgid "defines a pattern to assign human-readable hostnames to the matching hosts"
175
158
  msgstr "define un patrón para asignarles a los hosts coincidentes nombres de hosts aptos para la lectura humana"
176
159
 
177
160
  #: ../app/controllers/api/v2/discovery_rules_controller.rb:36
@@ -179,8 +162,7 @@ msgid "enables to limit maximum amount of provisioned hosts per rule"
179
162
  msgstr "se habilita para limitar la cantidad máxima de hosts aprovisionados por regla"
180
163
 
181
164
  #: ../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"
165
+ msgid "puts the rules in order, low numbers go first. Must be greater then zero"
184
166
  msgstr "pone las reglas en orden, los números más bajos van en primer lugar. Deben ser superiores a cero"
185
167
 
186
168
  #: ../app/controllers/api/v2/discovery_rules_controller.rb:38
@@ -227,95 +209,95 @@ msgstr "Errores durante el reinicio: %s"
227
209
  msgid "No discovered hosts to reboot"
228
210
  msgstr "No se detectaron hosts para reiniciar"
229
211
 
230
- #: ../app/controllers/discovered_hosts_controller.rb:61
212
+ #: ../app/controllers/discovered_hosts_controller.rb:63
231
213
  msgid "Successfully provisioned %s"
232
214
  msgstr "Se aprovisionó correctamente %s"
233
215
 
234
- #: ../app/controllers/discovered_hosts_controller.rb:93
216
+ #: ../app/controllers/discovered_hosts_controller.rb:96
235
217
  msgid "Facts refreshed for %s"
236
218
  msgstr "Datos actualizados para %s"
237
219
 
238
- #: ../app/controllers/discovered_hosts_controller.rb:95
220
+ #: ../app/controllers/discovered_hosts_controller.rb:98
239
221
  msgid "Failed to refresh facts for %s"
240
222
  msgstr "Fallo al refrescar datos para %s"
241
223
 
242
- #: ../app/controllers/discovered_hosts_controller.rb:98
224
+ #: ../app/controllers/discovered_hosts_controller.rb:101
243
225
  msgid "Failed to refresh facts for %{hostname} with error %{error_message}"
244
226
  msgstr "Ocurrió un error al actualizar los eventos de %{hostname} con el error %{error_message}"
245
227
 
246
- #: ../app/controllers/discovered_hosts_controller.rb:105
228
+ #: ../app/controllers/discovered_hosts_controller.rb:108
247
229
  msgid "Host of type %s can not be rebooted"
248
230
  msgstr "No es posible reiniciar el tipo de host %s"
249
231
 
250
- #: ../app/controllers/discovered_hosts_controller.rb:109
232
+ #: ../app/controllers/discovered_hosts_controller.rb:112
251
233
  msgid "Rebooting host %s"
252
234
  msgstr "Reiniciando el host %s"
253
235
 
254
- #: ../app/controllers/discovered_hosts_controller.rb:111
236
+ #: ../app/controllers/discovered_hosts_controller.rb:114
255
237
  msgid "Failed to reboot host %s"
256
238
  msgstr "Ocurrió un error al reiniciar el host %s"
257
239
 
258
- #: ../app/controllers/discovered_hosts_controller.rb:114
240
+ #: ../app/controllers/discovered_hosts_controller.rb:117
259
241
  msgid "Failed to reboot host %{hostname} with error %{error_message}"
260
242
  msgstr "Ocurrió un error al reiniciar el host %{hostname} con el error %{error_message}"
261
243
 
262
- #: ../app/controllers/discovered_hosts_controller.rb:128
244
+ #: ../app/controllers/discovered_hosts_controller.rb:131
263
245
  msgid "Failed to reboot hosts with error %s"
264
246
  msgstr "Ocurrió un error al reiniciar los hosts con el error %s"
265
247
 
266
- #: ../app/controllers/discovered_hosts_controller.rb:140
248
+ #: ../app/controllers/discovered_hosts_controller.rb:149
267
249
  msgid "Destroyed selected hosts"
268
250
  msgstr "Eliminados equipos seleccionados"
269
251
 
270
- #: ../app/controllers/discovered_hosts_controller.rb:142
252
+ #: ../app/controllers/discovered_hosts_controller.rb:151
271
253
  msgid "The following hosts were not deleted: %s"
272
254
  msgstr "Los siguientes equipos no han sido eliminados: %s"
273
255
 
274
- #: ../app/controllers/discovered_hosts_controller.rb:154
256
+ #: ../app/controllers/discovered_hosts_controller.rb:163
275
257
  msgid "Failed to auto provision host %s: %s"
276
258
  msgstr "Ocurrió un error al autoaprovisionar el host %s: %s"
277
259
 
278
- #: ../app/controllers/discovered_hosts_controller.rb:182
260
+ #: ../app/controllers/discovered_hosts_controller.rb:191
279
261
  msgid "Discovered hosts are provisioning now"
280
262
  msgstr "Los hosts detectados se están aprovisionando ahora"
281
263
 
282
- #: ../app/controllers/discovered_hosts_controller.rb:214
264
+ #: ../app/controllers/discovered_hosts_controller.rb:223
283
265
  msgid "Highlights"
284
266
  msgstr "Aspectos destacados"
285
267
 
286
- #: ../app/controllers/discovered_hosts_controller.rb:214
268
+ #: ../app/controllers/discovered_hosts_controller.rb:223
287
269
  msgid "Storage"
288
270
  msgstr "Almacenamiento"
289
271
 
290
- #: ../app/controllers/discovered_hosts_controller.rb:214
272
+ #: ../app/controllers/discovered_hosts_controller.rb:223
291
273
  msgid "Hardware"
292
274
  msgstr "Hardware"
293
275
 
294
- #: ../app/controllers/discovered_hosts_controller.rb:214
276
+ #: ../app/controllers/discovered_hosts_controller.rb:223
295
277
  msgid "Network"
296
278
  msgstr "Red"
297
279
 
298
- #: ../app/controllers/discovered_hosts_controller.rb:214
280
+ #: ../app/controllers/discovered_hosts_controller.rb:223
299
281
  msgid "Software"
300
282
  msgstr "Software"
301
283
 
302
- #: ../app/controllers/discovered_hosts_controller.rb:214
284
+ #: ../app/controllers/discovered_hosts_controller.rb:223
303
285
  msgid "IPMI"
304
286
  msgstr "IPMI"
305
287
 
306
- #: ../app/controllers/discovered_hosts_controller.rb:214
288
+ #: ../app/controllers/discovered_hosts_controller.rb:223
307
289
  msgid "Miscellaneous"
308
290
  msgstr "Miscelánea"
309
291
 
310
- #: ../app/controllers/discovered_hosts_controller.rb:291
292
+ #: ../app/controllers/discovered_hosts_controller.rb:301
311
293
  msgid "No hosts were found with that id or name"
312
294
  msgstr "No se han encontrado equipos con ese id o nombre"
313
295
 
314
- #: ../app/controllers/discovered_hosts_controller.rb:295
296
+ #: ../app/controllers/discovered_hosts_controller.rb:305
315
297
  msgid "No hosts selected"
316
298
  msgstr "Ningún equipo seleccionado"
317
299
 
318
- #: ../app/controllers/discovered_hosts_controller.rb:301
300
+ #: ../app/controllers/discovered_hosts_controller.rb:311
319
301
  msgid "Something went wrong while selecting hosts - %s"
320
302
  msgstr "Algo ha fallado al seleccionar equipos - %s"
321
303
 
@@ -331,19 +313,15 @@ msgstr "Regla deshabilitada"
331
313
  msgid "%s ago"
332
314
  msgstr "Hace %s"
333
315
 
334
- #: ../app/helpers/discovered_hosts_helper.rb:14
335
- #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:46
316
+ #: ../app/helpers/discovered_hosts_helper.rb:14 ../app/helpers/discovered_hosts_helper.rb:29 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:46
336
317
  msgid "Auto Provision"
337
318
  msgstr "Autoaprovisionamiento"
338
319
 
339
- #: ../app/helpers/discovered_hosts_helper.rb:15
340
- #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:47
320
+ #: ../app/helpers/discovered_hosts_helper.rb:15 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:47
341
321
  msgid "Refresh facts"
342
322
  msgstr "Refrescar datos"
343
323
 
344
- #: ../app/helpers/discovered_hosts_helper.rb:16
345
- #: ../app/models/setting/discovered.rb:23
346
- #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:48
324
+ #: ../app/helpers/discovered_hosts_helper.rb:16 ../app/helpers/discovered_hosts_helper.rb:30 ../app/models/setting/discovered.rb:23 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:48
347
325
  msgid "Reboot"
348
326
  msgstr "Reiniciar"
349
327
 
@@ -351,62 +329,51 @@ msgstr "Reiniciar"
351
329
  msgid "Back"
352
330
  msgstr "Atrás"
353
331
 
354
- #: ../app/helpers/discovered_hosts_helper.rb:21
355
- #: ../app/helpers/discovered_hosts_helper.rb:37
332
+ #: ../app/helpers/discovered_hosts_helper.rb:21 ../app/helpers/discovered_hosts_helper.rb:35
356
333
  msgid "Select Action"
357
334
  msgstr "Seleccionar una acción"
358
335
 
359
- #: ../app/helpers/discovered_hosts_helper.rb:23
360
- msgid "Expand All"
361
- msgstr "Expandir todo"
362
-
363
- #: ../app/helpers/discovered_hosts_helper.rb:27
364
- #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:49
336
+ #: ../app/helpers/discovered_hosts_helper.rb:23 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:49
365
337
  msgid "Delete %s?"
366
338
  msgstr "¿Borrar %s?"
367
339
 
368
- #: ../app/helpers/discovered_hosts_helper.rb:33
369
- msgid "Delete hosts"
370
- msgstr "Borrar Equipos"
371
-
372
- #: ../app/helpers/discovered_hosts_helper.rb:34
340
+ #: ../app/helpers/discovered_hosts_helper.rb:31
373
341
  msgid "Assign Organization"
374
342
  msgstr "Asignar Organización"
375
343
 
376
- #: ../app/helpers/discovered_hosts_helper.rb:35
344
+ #: ../app/helpers/discovered_hosts_helper.rb:32
377
345
  msgid "Assign Location"
378
346
  msgstr "Asignar Lugar"
379
347
 
380
- #: ../app/helpers/discovered_hosts_helper.rb:39
348
+ #: ../app/helpers/discovered_hosts_helper.rb:33
349
+ msgid "Delete"
350
+ msgstr ""
351
+
352
+ #: ../app/helpers/discovered_hosts_helper.rb:37
381
353
  msgid "%s - The following hosts are about to be changed"
382
354
  msgstr "%s - Los siguientes equipos están a punto de ser modificados"
383
355
 
384
- #: ../app/helpers/discovered_hosts_helper.rb:48
385
- #: ../app/views/dashboard/_discovery_widget_host.html.erb:2
356
+ #: ../app/helpers/discovered_hosts_helper.rb:46 ../app/views/dashboard/_discovery_widget_host.html.erb:2
386
357
  msgid "N/A"
387
358
  msgstr "N/A"
388
359
 
389
- #: ../app/helpers/discovered_hosts_helper.rb:60
360
+ #: ../app/helpers/discovered_hosts_helper.rb:58
390
361
  msgid "New in the last 24 hours"
391
362
  msgstr "Nuevo en las últimas 24 horas"
392
363
 
393
- #: ../app/helpers/discovered_hosts_helper.rb:64
364
+ #: ../app/helpers/discovered_hosts_helper.rb:62
394
365
  msgid "Not reported in more than 7 days"
395
366
  msgstr "No se informó en más de 7 días"
396
367
 
397
- #: ../app/helpers/discovered_hosts_helper.rb:68
368
+ #: ../app/helpers/discovered_hosts_helper.rb:66
398
369
  msgid "Reported in the last 7 days"
399
370
  msgstr "Informado en los últimos 7 días"
400
371
 
401
- #: ../app/helpers/discovered_hosts_helper.rb:92
372
+ #: ../app/helpers/discovered_hosts_helper.rb:90
402
373
  msgid "Provision"
403
374
  msgstr "Aprovisionamiento"
404
375
 
405
- #: ../app/helpers/discovery_rules_helper.rb:26
406
- #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:2
407
- #: ../app/views/discovered_hosts/welcome.html.erb:1
408
- #: ../app/views/discovered_hosts/welcome.html.erb:6
409
- #: ../lib/foreman_discovery/engine.rb:166
376
+ #: ../app/helpers/discovery_rules_helper.rb:26 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:2 ../app/views/discovered_hosts/welcome.html.erb:1 ../app/views/discovered_hosts/welcome.html.erb:6 ../lib/foreman_discovery/engine.rb:173
410
377
  msgid "Discovered Hosts"
411
378
  msgstr "Hosts detectados"
412
379
 
@@ -442,66 +409,59 @@ msgstr "Debe especificar un usuario con el correo-e habilitado"
442
409
  msgid "Discovered hosts summary"
443
410
  msgstr "Resumen de hosts detectados"
444
411
 
445
- #: ../app/models/discovery_rule.rb:9
412
+ #: ../app/models/discovery_rule.rb:10
446
413
  msgid "can't contain white spaces."
447
414
  msgstr "no puede incluir espacios en blanco."
448
415
 
449
- #: ../app/models/discovery_rule.rb:11
416
+ #: ../app/models/discovery_rule.rb:12
450
417
  msgid "must start with a letter or ERB."
451
418
  msgstr "debe comenzar con una letra o ERB."
452
419
 
453
- #: ../app/models/discovery_rule.rb:45
454
- msgid ""
455
- "Host group organization %s must also be associated to the discovery rule"
456
- msgid_plural ""
457
- "Host group organizations %s must also be associated to the discovery rule"
420
+ #: ../app/models/discovery_rule.rb:15
421
+ msgid "must be present."
422
+ msgstr ""
423
+
424
+ #: ../app/models/discovery_rule.rb:48
425
+ msgid "Host group organization %s must also be associated to the discovery rule"
426
+ msgid_plural "Host group organizations %s must also be associated to the discovery rule"
458
427
  msgstr[0] "La organización del grupo de host %s debe estar asociada también con la regla de detección"
459
428
  msgstr[1] "Las organizaciones del grupo de host %s deben estar asociadas también con la regla de detección"
460
429
 
461
- #: ../app/models/discovery_rule.rb:51
430
+ #: ../app/models/discovery_rule.rb:54
462
431
  msgid "Host group location %s must also be associated to the discovery rule"
463
- msgid_plural ""
464
- "Host group locations %s must also be associated to the discovery rule"
432
+ msgid_plural "Host group locations %s must also be associated to the discovery rule"
465
433
  msgstr[0] "La ubicación del grupo de host %s debe estar asociada también con la regla de detección"
466
434
  msgstr[1] "Las ubicaciones del grupo de host %s deben estar asociadas también con la regla de detección"
467
435
 
468
- #: ../app/models/host/discovered.rb:37
436
+ #: ../app/models/host/discovered.rb:51
469
437
  msgid "Invalid facts, must be a Hash"
470
438
  msgstr "Eventos inválidos. Debe ser un hash"
471
439
 
472
- #: ../app/models/host/discovered.rb:42
473
- msgid ""
474
- "Expected discovery_fact '%s' is missing, unable to detect primary interface "
475
- "and set hostname"
440
+ #: ../app/models/host/discovered.rb:56
441
+ msgid "Expected discovery_fact '%s' is missing, unable to detect primary interface and set hostname"
476
442
  msgstr "Falta el discovery_fact '%s' esperado. No es posible detectar la interfaz principal y definir el nombre de host"
477
443
 
478
- #: ../app/models/host/discovered.rb:49
479
- msgid ""
480
- "Invalid facts: hash does not contain a valid value for any of the facts in "
481
- "the discovery_hostname setting: %s"
444
+ #: ../app/models/host/discovered.rb:63
445
+ msgid "Invalid facts: hash does not contain a valid value for any of the facts in the discovery_hostname setting: %s"
482
446
  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"
483
447
 
484
- #: ../app/models/host/discovered.rb:66
448
+ #: ../app/models/host/discovered.rb:89
485
449
  msgid "Facts could not be imported"
486
450
  msgstr "No se pudieron importar los eventos"
487
451
 
488
- #: ../app/models/host/discovered.rb:133
489
- msgid "Unable to assign subnet, primary interface is missing IP address"
490
- msgstr "No es posible asignar una subred. Falta la dirección IP de la interfaz principal"
491
-
492
- #: ../app/models/host/discovered.rb:190
452
+ #: ../app/models/host/discovered.rb:212
493
453
  msgid "Could not get facts from proxy %{url}: %{error}"
494
454
  msgstr "No pudieron obtenerse los eventos del proxy %{url}: %{error}"
495
455
 
496
- #: ../app/models/host/discovered.rb:198
456
+ #: ../app/models/host/discovered.rb:220
497
457
  msgid "Unable to reboot %{name} via %{url}: %{msg}"
498
458
  msgstr "No es posible reiniciar %{name} a través de %{url}: %{msg}"
499
459
 
500
- #: ../app/models/host/discovered.rb:206
460
+ #: ../app/models/host/discovered.rb:228
501
461
  msgid "Unable to perform kexec on %{name} via %{url}: %{msg}"
502
462
  msgstr "No es posible ejecutar kexec en %{name} a través de %{url}: %{msg}"
503
463
 
504
- #: ../app/models/host/discovered.rb:225
464
+ #: ../app/models/host/discovered.rb:247
505
465
  msgid "Invalid hostname: Could not normalize the hostname"
506
466
  msgstr "Nombre de host inválido: no es posible normalizar el nombre de host"
507
467
 
@@ -554,9 +514,7 @@ msgid "Hostname facts"
554
514
  msgstr "Eventos del nombre de host"
555
515
 
556
516
  #: ../app/models/setting/discovered.rb:22
557
- msgid ""
558
- "Automatically provision newly discovered hosts, according to the "
559
- "provisioning rules"
517
+ msgid "Automatically provision newly discovered hosts, according to the provisioning rules"
560
518
  msgstr "Aprovisionar automáticamente los hosts recientemente detectados, de acuerdo con las reglas de aprovisionamiento"
561
519
 
562
520
  #: ../app/models/setting/discovered.rb:22
@@ -632,9 +590,7 @@ msgid "IPMI facts"
632
590
  msgstr "Eventos IPMI"
633
591
 
634
592
  #: ../app/models/setting/discovered.rb:32
635
- msgid ""
636
- "Automatically generate PXE configuration to pin a newly discovered host to "
637
- "discovery"
593
+ msgid "Automatically generate PXE configuration to pin a newly discovered host to discovery"
638
594
  msgstr "Generar configuración PXE en forma automática para adjuntar un host descubierto recientemente a la detección"
639
595
 
640
596
  #: ../app/models/setting/discovered.rb:32
@@ -673,27 +629,41 @@ msgstr "Forzar la creación de entradas DNS al aprovisionar host detectado"
673
629
  msgid "Force DNS"
674
630
  msgstr "Forzar DNS"
675
631
 
676
- #: ../app/models/setting/discovered.rb:43
632
+ #: ../app/models/setting/discovered.rb:37
633
+ msgid "Do not allow to discover existing managed host matching MAC of a provisioning NIC (errors out early)"
634
+ msgstr ""
635
+
636
+ #: ../app/models/setting/discovered.rb:37
637
+ msgid "Error on existing NIC"
638
+ msgstr ""
639
+
640
+ #: ../app/models/setting/discovered.rb:44
677
641
  msgid "The default location to place discovered hosts in"
678
642
  msgstr "La ubicación predeterminada para colocar hosts descubiertos "
679
643
 
680
- #: ../app/models/setting/discovered.rb:43
644
+ #: ../app/models/setting/discovered.rb:44
681
645
  msgid "Discovery location"
682
646
  msgstr "Ubicación de la detección"
683
647
 
684
- #: ../app/models/setting/discovered.rb:51
648
+ #: ../app/models/setting/discovered.rb:52
685
649
  msgid "The default organization to place discovered hosts in"
686
650
  msgstr "La ubicación predeterminada para colocar organizaciones descubiertas "
687
651
 
688
- #: ../app/models/setting/discovered.rb:51
652
+ #: ../app/models/setting/discovered.rb:52
689
653
  msgid "Discovery organization"
690
654
  msgstr "Organización de detección"
691
655
 
692
- #: ../app/services/foreman_discovery/fact_parser.rb:9
693
- msgid ""
694
- "Unable to detect primary interface using MAC '%{mac}' specified by "
695
- "discovery_fact '%{fact}'"
696
- msgstr "No es posible detectar la interfaz primaria mediante el uso de MAC '%{mac}' especificado por discovery_fact '%{fact}'"
656
+ #: ../app/services/foreman_discovery/fact_parser.rb:4
657
+ msgid "Discovery fact parser does not work with non-discovery host '%{host}'"
658
+ msgstr ""
659
+
660
+ #: ../app/services/foreman_discovery/fact_parser.rb:6
661
+ msgid "Discovered host '%{host}' has all NICs filtered out, filter: %{filter}"
662
+ msgstr ""
663
+
664
+ #: ../app/services/foreman_discovery/fact_parser.rb:12
665
+ msgid "Unable to find primary NIC with %{mac} specified via '%{fact}', NIC filter: %{filter}"
666
+ msgstr ""
697
667
 
698
668
  #: ../app/services/foreman_discovery/node_api/node_resource.rb:75
699
669
  msgid "Image API returned HTTP/%{code} with '%{body}"
@@ -711,25 +681,15 @@ msgstr "No hay hosts detectados disponibles"
711
681
  msgid "Host"
712
682
  msgstr "Host"
713
683
 
714
- #: ../app/views/dashboard/_discovery_widget_host_list.html.erb:4
715
- #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:7
716
- #: ../app/views/discovered_hosts/_selected_hosts.html.erb:8
717
- #: ../app/views/discovered_mailer/discovered_summary.html.erb:18
718
- #: ../app/views/discovered_mailer/discovered_summary.text.erb:10
684
+ #: ../app/views/dashboard/_discovery_widget_host_list.html.erb:4 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:7 ../app/views/discovered_hosts/_selected_hosts.html.erb:8 ../app/views/discovered_mailer/discovered_summary.html.erb:18 ../app/views/discovered_mailer/discovered_summary.text.erb:10
719
685
  msgid "Model"
720
686
  msgstr "Modelo"
721
687
 
722
- #: ../app/views/dashboard/_discovery_widget_host_list.html.erb:5
723
- #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:9
724
- #: ../app/views/discovered_mailer/discovered_summary.html.erb:20
725
- #: ../app/views/discovered_mailer/discovered_summary.text.erb:12
688
+ #: ../app/views/dashboard/_discovery_widget_host_list.html.erb:5 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:9 ../app/views/discovered_mailer/discovered_summary.html.erb:20 ../app/views/discovered_mailer/discovered_summary.text.erb:12
726
689
  msgid "CPUs"
727
690
  msgstr "CPU"
728
691
 
729
- #: ../app/views/dashboard/_discovery_widget_host_list.html.erb:6
730
- #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:10
731
- #: ../app/views/discovered_mailer/discovered_summary.html.erb:21
732
- #: ../app/views/discovered_mailer/discovered_summary.text.erb:13
692
+ #: ../app/views/dashboard/_discovery_widget_host_list.html.erb:6 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:10 ../app/views/discovered_mailer/discovered_summary.html.erb:21 ../app/views/discovered_mailer/discovered_summary.text.erb:13
733
693
  msgid "Memory"
734
694
  msgstr "Memoria"
735
695
 
@@ -749,16 +709,11 @@ msgstr "Seleccionar todos los objetos de esta página"
749
709
  msgid "items selected. Uncheck to Clear"
750
710
  msgstr "objetos seleccionados. Desactivar para limpiar"
751
711
 
752
- #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:6
753
- #: ../app/views/discovered_hosts/_selected_hosts.html.erb:7
754
- #: ../app/views/discovered_mailer/discovered_summary.html.erb:17
755
- #: ../app/views/discovered_mailer/discovered_summary.text.erb:9
712
+ #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:6 ../app/views/discovered_hosts/_selected_hosts.html.erb:7 ../app/views/discovered_mailer/discovered_summary.html.erb:17 ../app/views/discovered_mailer/discovered_summary.text.erb:9
756
713
  msgid "Name"
757
714
  msgstr "Nombre"
758
715
 
759
- #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:8
760
- #: ../app/views/discovered_mailer/discovered_summary.html.erb:19
761
- #: ../app/views/discovered_mailer/discovered_summary.text.erb:11
716
+ #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:8 ../app/views/discovered_mailer/discovered_summary.html.erb:19 ../app/views/discovered_mailer/discovered_summary.text.erb:11
762
717
  msgid "IP Address"
763
718
  msgstr "Dirección IP"
764
719
 
@@ -770,13 +725,11 @@ msgstr "Conteo de discos"
770
725
  msgid "Disks Size"
771
726
  msgstr "Tamaño de los discos"
772
727
 
773
- #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:17
774
- #: ../app/views/discovered_hosts/_selected_hosts.html.erb:10
728
+ #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:17 ../app/views/discovered_hosts/_selected_hosts.html.erb:10
775
729
  msgid "Location"
776
730
  msgstr "Lugares"
777
731
 
778
- #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:20
779
- #: ../app/views/discovered_hosts/_selected_hosts.html.erb:13
732
+ #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:20 ../app/views/discovered_hosts/_selected_hosts.html.erb:13
780
733
  msgid "Organization"
781
734
  msgstr "Organización"
782
735
 
@@ -804,18 +757,8 @@ msgstr "Introducir"
804
757
  msgid "Provision %s"
805
758
  msgstr "Aprovisionar %s"
806
759
 
807
- #: ../app/views/discovered_hosts/index.html.erb:2
808
- msgid "Reboot All"
809
- msgstr "Reiniciar todo"
810
-
811
- #: ../app/views/discovered_hosts/index.html.erb:3
812
- msgid "Auto Provision All"
813
- msgstr "Autoaprovisionar todo"
814
-
815
760
  #: ../app/views/discovered_hosts/multiple_destroy.html.erb:3
816
- msgid ""
817
- "This might take a while, as all hosts, facts and reports will be destroyed "
818
- "as well"
761
+ msgid "This might take a while, as all hosts, facts and reports will be destroyed as well"
819
762
  msgstr "Esta acción puede tardar un rato, ya que se eliminarán todos los equipos, datos e informes."
820
763
 
821
764
  #: ../app/views/discovered_hosts/select_multiple_location.html.erb:5
@@ -830,34 +773,36 @@ msgstr "Seleccionar organización"
830
773
  msgid "Discovered host: %s"
831
774
  msgstr "Equipo descubierto: %s"
832
775
 
833
- #: ../app/views/discovered_hosts/show.html.erb:34
776
+ #: ../app/views/discovered_hosts/show.html.erb:37
834
777
  msgid "Interfaces"
835
778
  msgstr "Interfaces"
836
779
 
837
- #: ../app/views/discovered_hosts/show.html.erb:41
780
+ #: ../app/views/discovered_hosts/show.html.erb:44
838
781
  msgid "Type"
839
782
  msgstr "Tipo"
840
783
 
841
- #: ../app/views/discovered_hosts/show.html.erb:42
784
+ #: ../app/views/discovered_hosts/show.html.erb:45
842
785
  msgid "Identifier"
843
786
  msgstr "Identificador"
844
787
 
845
- #: ../app/views/discovered_hosts/show.html.erb:43
788
+ #: ../app/views/discovered_hosts/show.html.erb:46
846
789
  msgid "MAC address"
847
790
  msgstr "Dirección MAC"
848
791
 
849
- #: ../app/views/discovered_hosts/show.html.erb:44
792
+ #: ../app/views/discovered_hosts/show.html.erb:47
850
793
  msgid "IP address"
851
794
  msgstr "Dirección IP"
852
795
 
796
+ #: ../app/views/discovered_hosts/show.html.erb:66
797
+ msgid "Collapse All"
798
+ msgstr ""
799
+
853
800
  #: ../app/views/discovered_hosts/welcome.html.erb:7
854
801
  msgid "No discovered hosts found in this context."
855
802
  msgstr ""
856
803
 
857
804
  #: ../app/views/discovered_hosts/welcome.html.erb:8
858
- msgid ""
859
- "This page shows discovered bare-metal or virtual nodes waiting to be "
860
- "provisioned."
805
+ msgid "This page shows discovered bare-metal or virtual nodes waiting to be provisioned."
861
806
  msgstr ""
862
807
 
863
808
  #: ../app/views/discovered_hosts/welcome.html.erb:9
@@ -872,23 +817,19 @@ msgstr "Informe de resumen de los hosts detectados de Foreman"
872
817
  msgid "<b>Foreman</b> Discovered hosts summary"
873
818
  msgstr "<b>Foreman</b> Resumen de hosts detectados"
874
819
 
875
- #: ../app/views/discovered_mailer/discovered_summary.html.erb:10
876
- #: ../app/views/discovered_mailer/discovered_summary.text.erb:5
820
+ #: ../app/views/discovered_mailer/discovered_summary.html.erb:10 ../app/views/discovered_mailer/discovered_summary.text.erb:5
877
821
  msgid "Summary from %{time} ago to %{now}"
878
822
  msgstr "Resumen desde %{time} hasta el %{now}"
879
823
 
880
- #: ../app/views/discovered_mailer/discovered_summary.html.erb:11
881
- #: ../app/views/discovered_mailer/discovered_summary.text.erb:3
824
+ #: ../app/views/discovered_mailer/discovered_summary.html.erb:11 ../app/views/discovered_mailer/discovered_summary.text.erb:3
882
825
  msgid "Discovered hosts from Foreman server at %{foreman_url}"
883
826
  msgstr "Hosts detectados desde el servidor de Foreman en %{foreman_url}"
884
827
 
885
- #: ../app/views/discovered_mailer/discovered_summary.html.erb:22
886
- #: ../app/views/discovered_mailer/discovered_summary.text.erb:14
828
+ #: ../app/views/discovered_mailer/discovered_summary.html.erb:22 ../app/views/discovered_mailer/discovered_summary.text.erb:14
887
829
  msgid "Disk count"
888
830
  msgstr "Número de discos"
889
831
 
890
- #: ../app/views/discovered_mailer/discovered_summary.html.erb:23
891
- #: ../app/views/discovered_mailer/discovered_summary.text.erb:15
832
+ #: ../app/views/discovered_mailer/discovered_summary.html.erb:23 ../app/views/discovered_mailer/discovered_summary.text.erb:15
892
833
  msgid "Disks size"
893
834
  msgstr "Tamaño de discos"
894
835
 
@@ -937,38 +878,28 @@ msgid "Rule priority (lower integer means higher priority)"
937
878
  msgstr "Prioridad de la regla (el número entero más bajo significa una mayor prioridad)"
938
879
 
939
880
  #: ../app/views/discovery_rules/_template_inline.erb:2
940
- msgid ""
941
- "Specify target hostname template pattern in the same syntax as in "
942
- "Provisioning Templates (ERB)."
881
+ msgid "Specify target hostname template pattern in the same syntax as in Provisioning Templates (ERB)."
943
882
  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)."
944
883
 
945
884
  #: ../app/views/discovery_rules/_template_inline.erb:4
946
- msgid ""
947
- "Domain will be appended automatically. A hostname based on MAC address will "
948
- "be used when left blank."
885
+ msgid "Domain will be appended automatically. A hostname based on MAC address will be used when left blank."
949
886
  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."
950
887
 
951
888
  #: ../app/views/discovery_rules/_template_inline.erb:5
952
- msgid ""
953
- "In addition to @host attribute function rand for random integers is "
954
- "available. Examples:"
889
+ msgid "In addition to @host attribute function rand for random integers is available. Examples:"
955
890
  msgstr "Además del atributo @host, la función aleatoria para los números enteros aleatorizados se encuentra disponible. Ejemplos:"
956
891
 
957
892
  #: ../app/views/discovery_rules/_template_inline.erb:8
958
- msgid ""
959
- "When creating hostname patterns, make sure the resulting host names are "
960
- "unique."
893
+ msgid "When creating hostname patterns, make sure the resulting host names are unique."
961
894
  msgstr "Al crear patrones de nombres de host, asegúrese de que los nombres de host resultantes sean únicos."
962
895
 
963
896
  #: ../app/views/discovery_rules/_template_inline.erb:9
964
- msgid ""
965
- "Hostnames must not start with numbers. A good approach is to use unique "
966
- "information provided by facter (MAC address, BIOS or serial ID)."
897
+ msgid "Hostnames must not start with numbers. A good approach is to use unique information provided by facter (MAC address, BIOS or serial ID)."
967
898
  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)."
968
899
 
969
900
  #: ../app/views/discovery_rules/edit.html.erb:1
970
- msgid "Edit Discovery Rule"
971
- msgstr "Editar regla de detección"
901
+ msgid "Edit %s"
902
+ msgstr ""
972
903
 
973
904
  #: ../app/views/discovery_rules/index.html.erb:1
974
905
  msgid "Discovery Rules"
@@ -1022,30 +953,26 @@ msgstr "Se detectaron uno o más hosts"
1022
953
  msgid "Details"
1023
954
  msgstr "Información"
1024
955
 
1025
- #: ../lib/foreman_discovery/engine.rb:151
956
+ #: ../lib/foreman_discovery/engine.rb:158
1026
957
  msgid "Discovered hosts"
1027
958
  msgstr "Equipos descubiertos"
1028
959
 
1029
- #: ../lib/foreman_discovery/engine.rb:156
960
+ #: ../lib/foreman_discovery/engine.rb:163
1030
961
  msgid "Discovery rules"
1031
962
  msgstr "Reglas de detección"
1032
963
 
1033
- #: ../lib/foreman_discovery/engine.rb:172
964
+ #: ../lib/foreman_discovery/engine.rb:179
1034
965
  msgid "Discovery Kexec template"
1035
966
  msgstr "Plantilla Kexec de detección"
1036
967
 
1037
- #: ../lib/foreman_discovery/engine.rb:181
968
+ #: ../lib/foreman_discovery/engine.rb:188
1038
969
  msgid "Discovery Proxy"
1039
970
  msgstr "Proxy de detección"
1040
971
 
1041
- #: ../lib/foreman_discovery/engine.rb:182
1042
- msgid ""
1043
- "Discovery Proxy to use within this subnet for managing connection to "
1044
- "discovered hosts"
972
+ #: ../lib/foreman_discovery/engine.rb:189
973
+ msgid "Discovery Proxy to use within this subnet for managing connection to discovered hosts"
1045
974
  msgstr "Proxy de detección para usar en esta subred para administrar la conexión con los hosts detectados"
1046
975
 
1047
- #: ../lib/foreman_discovery/engine.rb:183
1048
- msgid ""
1049
- "ID of Discovery Proxy to use within this subnet for managing connection to "
1050
- "discovered hosts"
976
+ #: ../lib/foreman_discovery/engine.rb:190
977
+ msgid "ID of Discovery Proxy to use within this subnet for managing connection to discovered hosts"
1051
978
  msgstr "ID del proxy de detección para usar en esta subred para administrar la conexión con los hosts detectados"