foreman_discovery 16.3.1 → 17.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/app/controllers/api/v2/discovered_hosts_controller.rb +1 -0
- data/app/controllers/discovered_hosts_controller.rb +24 -35
- data/app/controllers/discovery_rules_controller.rb +12 -1
- data/app/helpers/discovered_hosts_helper.rb +6 -1
- data/app/helpers/discovery_rules_helper.rb +1 -0
- data/app/models/discovery_rule.rb +10 -5
- data/app/services/foreman_discovery/fact_to_category_resolver.rb +106 -0
- data/app/services/foreman_discovery/ui_notifications/failed_discovery.rb +34 -0
- data/app/services/foreman_discovery/ui_notifications/new_host.rb +2 -1
- data/app/views/discovered_hosts/_discovered_hosts_list.html.erb +44 -40
- data/app/views/discovered_hosts/welcome.html.erb +1 -2
- data/app/views/discovery_rules/clone.erb +3 -0
- data/app/views/discovery_rules/index.html.erb +4 -0
- data/app/views/discovery_rules/welcome.html.erb +15 -0
- data/app/views/foreman_discovery/debian_kexec.erb +1 -1
- data/app/views/foreman_discovery/redhat_kexec.erb +1 -1
- data/config/routes.rb +2 -0
- data/db/seeds.d/80_discovery_ui_notification.rb +11 -5
- data/lib/foreman_discovery/engine.rb +3 -7
- data/lib/foreman_discovery/version.rb +1 -1
- data/locale/ca/LC_MESSAGES/foreman_discovery.mo +0 -0
- data/locale/ca/foreman_discovery.edit.po +136 -98
- data/locale/ca/foreman_discovery.po +36 -9
- data/locale/de/LC_MESSAGES/foreman_discovery.mo +0 -0
- data/locale/de/foreman_discovery.edit.po +148 -112
- data/locale/de/foreman_discovery.po +45 -18
- data/locale/en/LC_MESSAGES/foreman_discovery.mo +0 -0
- data/locale/en/foreman_discovery.edit.po +127 -91
- data/locale/en/foreman_discovery.po +31 -4
- data/locale/en_GB/LC_MESSAGES/foreman_discovery.mo +0 -0
- data/locale/en_GB/foreman_discovery.edit.po +139 -109
- data/locale/en_GB/foreman_discovery.po +36 -9
- data/locale/es/LC_MESSAGES/foreman_discovery.mo +0 -0
- data/locale/es/foreman_discovery.edit.po +172 -140
- data/locale/es/foreman_discovery.po +70 -41
- data/locale/foreman_discovery.pot +142 -97
- data/locale/fr/LC_MESSAGES/foreman_discovery.mo +0 -0
- data/locale/fr/foreman_discovery.edit.po +179 -147
- data/locale/fr/foreman_discovery.po +76 -49
- data/locale/gl/LC_MESSAGES/foreman_discovery.mo +0 -0
- data/locale/gl/foreman_discovery.edit.po +133 -92
- data/locale/gl/foreman_discovery.po +32 -5
- data/locale/it/LC_MESSAGES/foreman_discovery.mo +0 -0
- data/locale/it/foreman_discovery.edit.po +147 -106
- data/locale/it/foreman_discovery.po +44 -17
- data/locale/ja/LC_MESSAGES/foreman_discovery.mo +0 -0
- data/locale/ja/foreman_discovery.edit.po +182 -152
- data/locale/ja/foreman_discovery.po +79 -54
- data/locale/ko/LC_MESSAGES/foreman_discovery.mo +0 -0
- data/locale/ko/foreman_discovery.edit.po +146 -105
- data/locale/ko/foreman_discovery.po +43 -16
- data/locale/pt_BR/LC_MESSAGES/foreman_discovery.mo +0 -0
- data/locale/pt_BR/foreman_discovery.edit.po +171 -136
- data/locale/pt_BR/foreman_discovery.po +69 -39
- data/locale/ru/LC_MESSAGES/foreman_discovery.mo +0 -0
- data/locale/ru/foreman_discovery.edit.po +147 -106
- data/locale/ru/foreman_discovery.po +43 -16
- data/locale/sv_SE/LC_MESSAGES/foreman_discovery.mo +0 -0
- data/locale/sv_SE/foreman_discovery.edit.po +135 -94
- data/locale/sv_SE/foreman_discovery.po +34 -7
- data/locale/zh_CN/LC_MESSAGES/foreman_discovery.mo +0 -0
- data/locale/zh_CN/foreman_discovery.edit.po +217 -188
- data/locale/zh_CN/foreman_discovery.po +114 -90
- data/locale/zh_TW/LC_MESSAGES/foreman_discovery.mo +0 -0
- data/locale/zh_TW/foreman_discovery.edit.po +146 -105
- data/locale/zh_TW/foreman_discovery.po +43 -16
- data/package.json +7 -7
- data/test/functional/api/v2/discovered_hosts_controller_test.rb +9 -0
- data/test/functional/discovery_rules_controller_test.rb +6 -1
- data/test/integration/discovered_hosts_test.rb +53 -5
- data/test/test_helper_discovery.rb +5 -0
- data/test/unit/discovery_rule_test.rb +24 -2
- data/test/unit/fact_to_category_resolver_test.rb +41 -0
- data/test/unit/ui_notifications/destroy_host_test.rb +2 -9
- data/test/unit/ui_notifications/new_host_test.rb +3 -3
- data/webpack/__mocks__/foremanReact/common/I18n.js +3 -0
- data/webpack/__mocks__/foremanReact/common/helpers.js +1 -0
- data/webpack/__mocks__/foremanReact/common/index.js +5 -0
- data/webpack/__mocks__/foremanReact/components/common/EmptyState/DefaultEmptyState.js +69 -0
- data/webpack/__mocks__/foremanReact/components/common/EmptyState/EmptyStatePattern.js +77 -0
- data/webpack/__mocks__/foremanReact/components/common/EmptyState/EmptyStatePropTypes.js +29 -0
- data/webpack/__mocks__/foremanReact/components/common/EmptyState/index.js +5 -0
- data/webpack/index.js +9 -8
- data/webpack/src/ForemanDiscovery/DiscoveredHosts/Components/EmptyState/EmptyState.js +7 -7
- data/webpack/src/ForemanDiscovery/DiscoveredHosts/Components/EmptyState/__test__/EmptyState.test.js +12 -0
- data/webpack/src/ForemanDiscovery/DiscoveredHosts/Components/EmptyState/__test__/__snapshots__/EmptyState.test.js.snap +16 -0
- data/webpack/src/ForemanDiscovery/DiscoveredHosts/Components/EmptyState/index.js +1 -1
- data/webpack/src/ForemanDiscovery/DiscoveredHosts/index.js +3 -3
- data/webpack/src/ForemanDiscovery/DiscoveryRules/Components/EmptyState/EmptyState.js +34 -0
- data/webpack/src/ForemanDiscovery/DiscoveryRules/Components/EmptyState/index.js +1 -0
- data/webpack/src/ForemanDiscovery/DiscoveryRules/Components/__test__/EmptyState.test.js +19 -0
- data/webpack/src/ForemanDiscovery/DiscoveryRules/Components/__test__/__snapshots__/EmptyState.test.js.snap +22 -0
- data/webpack/src/ForemanDiscovery/DiscoveryRules/index.js +6 -0
- data/webpack/src/reducers.js +0 -2
- metadata +39 -17
@@ -10,9 +10,9 @@
|
|
10
10
|
# Lukáš Zapletal, 2015
|
11
11
|
msgid ""
|
12
12
|
msgstr ""
|
13
|
-
"Project-Id-Version: foreman_discovery 16.
|
13
|
+
"Project-Id-Version: foreman_discovery 16.3.4\n"
|
14
14
|
"Report-Msgid-Bugs-To: \n"
|
15
|
-
"PO-Revision-Date:
|
15
|
+
"PO-Revision-Date: 2021-01-25 08:35+0000\n"
|
16
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"
|
@@ -25,9 +25,6 @@ msgstr ""
|
|
25
25
|
msgid "%s - The following hosts are about to be changed"
|
26
26
|
msgstr "%s - The following hosts are about to be changed"
|
27
27
|
|
28
|
-
msgid "%s ago"
|
29
|
-
msgstr "%s ago"
|
30
|
-
|
31
28
|
msgid "%s discovered hosts were provisioned"
|
32
29
|
msgstr "%s discovered hosts were provisioned"
|
33
30
|
|
@@ -38,7 +35,7 @@ msgid "A summary of discovered hosts"
|
|
38
35
|
msgstr "A summary of discovered hosts"
|
39
36
|
|
40
37
|
msgid "Action with sub plans"
|
41
|
-
msgstr ""
|
38
|
+
msgstr "Action with sub plans"
|
42
39
|
|
43
40
|
msgid "Actions"
|
44
41
|
msgstr "Actions"
|
@@ -85,6 +82,12 @@ msgstr "Clean all facts"
|
|
85
82
|
msgid "Clean all reported facts during provisioning (except discovery facts)"
|
86
83
|
msgstr "Clean all reported facts during provisioning (except discovery facts)"
|
87
84
|
|
85
|
+
msgid "Clone"
|
86
|
+
msgstr ""
|
87
|
+
|
88
|
+
msgid "Clone %s"
|
89
|
+
msgstr ""
|
90
|
+
|
88
91
|
msgid "Collapse All"
|
89
92
|
msgstr "Collapse All"
|
90
93
|
|
@@ -150,9 +153,15 @@ msgstr[1] ""
|
|
150
153
|
msgid "Discovered Hosts"
|
151
154
|
msgstr "Discovered Hosts"
|
152
155
|
|
156
|
+
msgid "Discovered Rules"
|
157
|
+
msgstr ""
|
158
|
+
|
153
159
|
msgid "Discovered host '%{host}' has all NICs filtered out, filter: %{filter}"
|
154
160
|
msgstr "Discovered host '%{host}' has all NICs filtered out, filter: %{filter}"
|
155
161
|
|
162
|
+
msgid "Discovered host reported from unknown subnet, communication will not be proxied."
|
163
|
+
msgstr ""
|
164
|
+
|
156
165
|
msgid "Discovered host: %s"
|
157
166
|
msgstr "Discovered host: %s"
|
158
167
|
|
@@ -165,6 +174,9 @@ msgstr "Discovered hosts are rebooting now"
|
|
165
174
|
msgid "Discovered hosts from Foreman server at %{foreman_url}"
|
166
175
|
msgstr "Discovered hosts from Foreman server at %{foreman_url}"
|
167
176
|
|
177
|
+
msgid "Discovered hosts reported from unknown subnet are %s, communication will not be proxied."
|
178
|
+
msgstr ""
|
179
|
+
|
168
180
|
msgid "Discovered hosts summary"
|
169
181
|
msgstr "Discovered hosts summary"
|
170
182
|
|
@@ -231,6 +243,9 @@ msgstr "Enable"
|
|
231
243
|
msgid "Enable rule '%s'?"
|
232
244
|
msgstr "Enable rule '%s'?"
|
233
245
|
|
246
|
+
msgid "Error message goes here"
|
247
|
+
msgstr ""
|
248
|
+
|
234
249
|
msgid "Error on existing NIC"
|
235
250
|
msgstr "Error on existing NIC"
|
236
251
|
|
@@ -285,6 +300,9 @@ msgstr "Failed to refresh facts for %s"
|
|
285
300
|
msgid "Failed to refresh facts for %{hostname} with error %{error_message}"
|
286
301
|
msgstr "Failed to refresh facts for %{hostname} with error %{error_message}"
|
287
302
|
|
303
|
+
msgid "For more information please see "
|
304
|
+
msgstr ""
|
305
|
+
|
288
306
|
msgid "Force DNS"
|
289
307
|
msgstr "Force DNS"
|
290
308
|
|
@@ -309,6 +327,9 @@ msgstr "Highlights"
|
|
309
327
|
msgid "Host"
|
310
328
|
msgstr "Host"
|
311
329
|
|
330
|
+
msgid "Host %s has been dicovered"
|
331
|
+
msgstr ""
|
332
|
+
|
312
333
|
msgid "Host %{host} was provisioned with rule %{rule}"
|
313
334
|
msgstr "Host %{host} was provisioned with rule %{rule}"
|
314
335
|
|
@@ -383,10 +404,10 @@ msgid "Image API returned HTTP/%{code} with '%{body}"
|
|
383
404
|
msgstr "Image API returned HTTP/%{code} with '%{body}"
|
384
405
|
|
385
406
|
msgid "Import Puppet classes"
|
386
|
-
msgstr ""
|
407
|
+
msgstr "Import Puppet classes"
|
387
408
|
|
388
409
|
msgid "Import facts"
|
389
|
-
msgstr ""
|
410
|
+
msgstr "Import facts"
|
390
411
|
|
391
412
|
msgid "In addition to @host attribute function rand for random integers is available. Examples:"
|
392
413
|
msgstr "In addition to @host attribute function rand for random integers is available. Examples:"
|
@@ -487,6 +508,9 @@ msgstr "Network facts"
|
|
487
508
|
msgid "New Discovery Rule"
|
488
509
|
msgstr "New Discovery Rule"
|
489
510
|
|
511
|
+
msgid "New hosts"
|
512
|
+
msgstr ""
|
513
|
+
|
490
514
|
msgid "New in the last 24 hours"
|
491
515
|
msgstr "New in the last 24 hours"
|
492
516
|
|
@@ -605,7 +629,7 @@ msgid "Reloading kernel on %s"
|
|
605
629
|
msgstr "Reloading kernel on %s"
|
606
630
|
|
607
631
|
msgid "Remote action:"
|
608
|
-
msgstr ""
|
632
|
+
msgstr "Remote action:"
|
609
633
|
|
610
634
|
msgid "Reported in the last 7 days"
|
611
635
|
msgstr "Reported in the last 7 days"
|
@@ -733,6 +757,9 @@ msgstr "can't contain white spaces."
|
|
733
757
|
msgid "defines a pattern to assign human-readable hostnames to the matching hosts"
|
734
758
|
msgstr "defines a pattern to assign human-readable hostnames to the matching hosts"
|
735
759
|
|
760
|
+
msgid "documentation"
|
761
|
+
msgstr ""
|
762
|
+
|
736
763
|
msgid "enables to limit maximum amount of provisioned hosts per rule"
|
737
764
|
msgstr "enables to limit maximum amount of provisioned hosts per rule"
|
738
765
|
|
Binary file
|
@@ -4,15 +4,18 @@
|
|
4
4
|
#
|
5
5
|
# Translators:
|
6
6
|
# elobato <elobatocs@gmail.com>, 2015
|
7
|
+
# elobato <elobatocs@gmail.com>, 2015
|
7
8
|
# francis <hackgo@gmail.com>, 2013-2014
|
9
|
+
# Sergio Ocón-Cárdenas <sergio.ocon@redhat.com>, 2014
|
8
10
|
# Sergio Ocón-Cárdenas <sergio.ocon@redhat.com>, 2014-2015
|
9
11
|
# Sergio Ocón-Cárdenas <sergio.ocon@redhat.com>, 2014
|
10
12
|
msgid ""
|
11
13
|
msgstr ""
|
12
|
-
"Project-Id-Version: foreman_discovery 16.
|
14
|
+
"Project-Id-Version: foreman_discovery 16.3.4\n"
|
13
15
|
"Report-Msgid-Bugs-To: \n"
|
14
|
-
"
|
15
|
-
"
|
16
|
+
"POT-Creation-Date: 2021-05-03 08:46+0200\n"
|
17
|
+
"PO-Revision-Date: 2021-01-25 08:35+0000\n"
|
18
|
+
"Last-Translator: Amit Upadhye <aupadhye@redhat.com>\n"
|
16
19
|
"Language-Team: Spanish (http://www.transifex.com/foreman/foreman/language/es/)"
|
17
20
|
"\n"
|
18
21
|
"MIME-Version: 1.0\n"
|
@@ -59,7 +62,7 @@ msgstr "Aprovisionar un host detectado"
|
|
59
62
|
|
60
63
|
#: ../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
64
|
msgid "required if host is managed and value is not inherited from host group"
|
62
|
-
msgstr ""
|
65
|
+
msgstr "obligatorio si los hosts están administrados y el valor no se ha heredado de un grupo de hosts"
|
63
66
|
|
64
67
|
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:55
|
65
68
|
msgid "not required if using a subnet with DHCP proxy"
|
@@ -71,31 +74,31 @@ msgstr "no es necesario si no se trata de una máquina virtual"
|
|
71
74
|
|
72
75
|
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:62
|
73
76
|
msgid "required if not imaged based provisioning and host is managed and value is not inherited from host group"
|
74
|
-
msgstr ""
|
77
|
+
msgstr "obligatorio si el aprovisionamiento no se basa en imágenes, el host está administrado y el valor no se hereda de un grupo de hosts"
|
75
78
|
|
76
79
|
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:63
|
77
80
|
msgid "required if host is managed and custom partition has not been defined"
|
78
|
-
msgstr ""
|
81
|
+
msgstr "obligatorio si el host está administrado y no se han definido particiones personalizadas"
|
79
82
|
|
80
83
|
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:69
|
81
84
|
msgid "Host's owner type"
|
82
|
-
msgstr ""
|
85
|
+
msgstr "Tipo de propietario de host"
|
83
86
|
|
84
87
|
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:72
|
85
88
|
msgid "Host's parameters (array or indexed hash)"
|
86
|
-
msgstr ""
|
89
|
+
msgstr "Parámetros del host (array o hash indexado)"
|
87
90
|
|
88
91
|
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:73
|
89
92
|
msgid "Name of the parameter"
|
90
|
-
msgstr ""
|
93
|
+
msgstr "Nombre del parámetro"
|
91
94
|
|
92
95
|
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:74
|
93
96
|
msgid "Parameter value"
|
94
|
-
msgstr ""
|
97
|
+
msgstr "Valor del parámetro"
|
95
98
|
|
96
99
|
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:75
|
97
100
|
msgid "Type of value"
|
98
|
-
msgstr ""
|
101
|
+
msgstr "Tipo de valor"
|
99
102
|
|
100
103
|
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:82
|
101
104
|
msgid "UUID to track orchestration tasks status, GET /api/orchestration/:UUID/tasks"
|
@@ -117,51 +120,51 @@ msgstr "Subir eventos para un host, si es necesario cree el host."
|
|
117
120
|
msgid "hash containing facts for the host with minimum set of facts: discovery_bootif, macaddress_eth0, ipaddress, ipaddress_eth0, interfaces: eth0 (example in case primary interface is named eth0)"
|
118
121
|
msgstr "hash que contiene eventos correspondientes al host con un conjunto mínimo de eventos: discovery_bootif, macaddress_eth0, ipaddress, ipaddress_eth0, interfaces: eth0 (ejemplo en caso de que la interfaz principal se denomine eth0)"
|
119
122
|
|
120
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:
|
123
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:130
|
121
124
|
msgid "Execute rules against a discovered host"
|
122
125
|
msgstr "Ejecutar reglas en función de un host detectado"
|
123
126
|
|
124
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:
|
127
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:136 ../app/controllers/discovered_hosts_controller.rb:157
|
125
128
|
msgid "Host %{host} was provisioned with rule %{rule}"
|
126
129
|
msgstr "El host %{host} se aprovisionó con la regla %{rule}"
|
127
130
|
|
128
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:
|
131
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:139
|
129
132
|
msgid "Unable to provision %{host}: %{errors}"
|
130
133
|
msgstr "No es posible aprovisionar %{host}: %{errors}"
|
131
134
|
|
132
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:
|
135
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:145 ../app/controllers/discovered_hosts_controller.rb:164
|
133
136
|
msgid "No rule found for host %s"
|
134
137
|
msgstr "No se halló una regla para el host %s"
|
135
138
|
|
136
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:
|
139
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:152
|
137
140
|
msgid "Execute rules against all currently discovered hosts"
|
138
141
|
msgstr "Ejecutar reglas contra todos los hosts detectados actualmente"
|
139
142
|
|
140
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:
|
143
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:156 ../app/controllers/discovered_hosts_controller.rb:170
|
141
144
|
msgid "Errors during auto provisioning: %s"
|
142
145
|
msgstr "Errores durante el autoaprovisionamiento: %s"
|
143
146
|
|
144
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:
|
147
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:159 ../app/controllers/discovered_hosts_controller.rb:173
|
145
148
|
msgid "No discovered hosts to provision"
|
146
149
|
msgstr "No hay hosts detectados para aprovisionar"
|
147
150
|
|
148
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:
|
151
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:181
|
149
152
|
msgid "%s discovered hosts were provisioned"
|
150
153
|
msgstr "Se aprovisionaron %s hosts detectados"
|
151
154
|
|
152
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:
|
155
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:192
|
153
156
|
msgid "Refreshing the facts of a discovered host"
|
154
157
|
msgstr "Actualizando los eventos de un host detectado"
|
155
158
|
|
156
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:
|
159
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:201
|
157
160
|
msgid "Rebooting a discovered host"
|
158
161
|
msgstr "Reiniciando un host detectado"
|
159
162
|
|
160
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:
|
163
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:210
|
161
164
|
msgid "Rebooting all discovered hosts"
|
162
165
|
msgstr "Reiniciando todos los hosts detectados"
|
163
166
|
|
164
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:
|
167
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:221 ../app/controllers/discovered_hosts_controller.rb:126
|
165
168
|
msgid "Discovered hosts are rebooting now"
|
166
169
|
msgstr "Se están reiniciando ahora los hosts detectados"
|
167
170
|
|
@@ -241,119 +244,95 @@ msgstr "Errores durante el reinicio: %s"
|
|
241
244
|
msgid "No discovered hosts to reboot"
|
242
245
|
msgstr "No se detectaron hosts para reiniciar"
|
243
246
|
|
244
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
247
|
+
#: ../app/controllers/discovered_hosts_controller.rb:60
|
245
248
|
msgid "Successfully provisioned %s"
|
246
249
|
msgstr "Se aprovisionó correctamente %s"
|
247
250
|
|
248
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
251
|
+
#: ../app/controllers/discovered_hosts_controller.rb:94
|
249
252
|
msgid "Facts refreshed for %s"
|
250
253
|
msgstr "Datos actualizados para %s"
|
251
254
|
|
252
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
255
|
+
#: ../app/controllers/discovered_hosts_controller.rb:96
|
253
256
|
msgid "Failed to refresh facts for %s"
|
254
257
|
msgstr "Fallo al refrescar datos para %s"
|
255
258
|
|
256
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
259
|
+
#: ../app/controllers/discovered_hosts_controller.rb:99
|
257
260
|
msgid "Failed to refresh facts for %{hostname} with error %{error_message}"
|
258
261
|
msgstr "Ocurrió un error al actualizar los eventos de %{hostname} con el error %{error_message}"
|
259
262
|
|
260
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
263
|
+
#: ../app/controllers/discovered_hosts_controller.rb:106
|
261
264
|
msgid "Host of type %s can not be rebooted"
|
262
265
|
msgstr "No es posible reiniciar el tipo de host %s"
|
263
266
|
|
264
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
267
|
+
#: ../app/controllers/discovered_hosts_controller.rb:110
|
265
268
|
msgid "Rebooting host %s"
|
266
269
|
msgstr "Reiniciando el host %s"
|
267
270
|
|
268
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
271
|
+
#: ../app/controllers/discovered_hosts_controller.rb:112
|
269
272
|
msgid "Failed to reboot host %s"
|
270
273
|
msgstr "Ocurrió un error al reiniciar el host %s"
|
271
274
|
|
272
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
275
|
+
#: ../app/controllers/discovered_hosts_controller.rb:115
|
273
276
|
msgid "Failed to reboot host %{hostname} with error %{error_message}"
|
274
277
|
msgstr "Ocurrió un error al reiniciar el host %{hostname} con el error %{error_message}"
|
275
278
|
|
276
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
279
|
+
#: ../app/controllers/discovered_hosts_controller.rb:129
|
277
280
|
msgid "Failed to reboot hosts with error %s"
|
278
281
|
msgstr "Ocurrió un error al reiniciar los hosts con el error %s"
|
279
282
|
|
280
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
283
|
+
#: ../app/controllers/discovered_hosts_controller.rb:147
|
281
284
|
msgid "Destroyed selected hosts"
|
282
285
|
msgstr "Eliminados equipos seleccionados"
|
283
286
|
|
284
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
287
|
+
#: ../app/controllers/discovered_hosts_controller.rb:149
|
285
288
|
msgid "The following hosts were not deleted: %s"
|
286
289
|
msgstr "Los siguientes equipos no han sido eliminados: %s"
|
287
290
|
|
288
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
291
|
+
#: ../app/controllers/discovered_hosts_controller.rb:161
|
289
292
|
msgid "Failed to auto provision host %s: %s"
|
290
293
|
msgstr "Ocurrió un error al autoaprovisionar el host %s: %s"
|
291
294
|
|
292
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
295
|
+
#: ../app/controllers/discovered_hosts_controller.rb:189
|
293
296
|
msgid "Discovered hosts are provisioning now"
|
294
297
|
msgstr "Los hosts detectados se están aprovisionando ahora"
|
295
298
|
|
296
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
297
|
-
msgid "
|
298
|
-
msgstr "
|
299
|
-
|
300
|
-
#: ../app/controllers/discovered_hosts_controller.rb:226
|
301
|
-
msgid "Storage"
|
302
|
-
msgstr "Almacenamiento"
|
303
|
-
|
304
|
-
#: ../app/controllers/discovered_hosts_controller.rb:226
|
305
|
-
msgid "Hardware"
|
306
|
-
msgstr "Hardware"
|
307
|
-
|
308
|
-
#: ../app/controllers/discovered_hosts_controller.rb:226
|
309
|
-
msgid "Network"
|
310
|
-
msgstr "Red"
|
311
|
-
|
312
|
-
#: ../app/controllers/discovered_hosts_controller.rb:226
|
313
|
-
msgid "Software"
|
314
|
-
msgstr "Software"
|
315
|
-
|
316
|
-
#: ../app/controllers/discovered_hosts_controller.rb:226
|
317
|
-
msgid "IPMI"
|
318
|
-
msgstr "IPMI"
|
299
|
+
#: ../app/controllers/discovered_hosts_controller.rb:270
|
300
|
+
msgid "Discovered host reported from unknown subnet, communication will not be proxied."
|
301
|
+
msgstr ""
|
319
302
|
|
320
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
321
|
-
msgid "
|
322
|
-
msgstr "
|
303
|
+
#: ../app/controllers/discovered_hosts_controller.rb:275
|
304
|
+
msgid "Discovered hosts reported from unknown subnet are %s, communication will not be proxied."
|
305
|
+
msgstr ""
|
323
306
|
|
324
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
307
|
+
#: ../app/controllers/discovered_hosts_controller.rb:289
|
325
308
|
msgid "No hosts were found with that id or name"
|
326
309
|
msgstr "No se han encontrado equipos con ese id o nombre"
|
327
310
|
|
328
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
311
|
+
#: ../app/controllers/discovered_hosts_controller.rb:293
|
329
312
|
msgid "No hosts selected"
|
330
|
-
msgstr "Ningún
|
313
|
+
msgstr "Ningún host seleccionado"
|
331
314
|
|
332
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
315
|
+
#: ../app/controllers/discovered_hosts_controller.rb:299
|
333
316
|
msgid "Something went wrong while selecting hosts - %s"
|
334
|
-
msgstr "Algo ha fallado al seleccionar
|
317
|
+
msgstr "Algo ha fallado al seleccionar hosts - %s"
|
335
318
|
|
336
|
-
#: ../app/controllers/discovery_rules_controller.rb:
|
319
|
+
#: ../app/controllers/discovery_rules_controller.rb:79
|
337
320
|
msgid "Rule enabled"
|
338
321
|
msgstr "Regla habilitada"
|
339
322
|
|
340
|
-
#: ../app/controllers/discovery_rules_controller.rb:
|
323
|
+
#: ../app/controllers/discovery_rules_controller.rb:79
|
341
324
|
msgid "Rule disabled"
|
342
325
|
msgstr "Regla deshabilitada"
|
343
326
|
|
344
|
-
#: ../app/helpers/discovered_hosts_helper.rb:
|
345
|
-
msgid "%s ago"
|
346
|
-
msgstr "Hace %s"
|
347
|
-
|
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
|
327
|
+
#: ../app/helpers/discovered_hosts_helper.rb:14 ../app/helpers/discovered_hosts_helper.rb:29 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:40
|
349
328
|
msgid "Auto Provision"
|
350
329
|
msgstr "Autoaprovisionamiento"
|
351
330
|
|
352
|
-
#: ../app/helpers/discovered_hosts_helper.rb:15 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:
|
331
|
+
#: ../app/helpers/discovered_hosts_helper.rb:15 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:41
|
353
332
|
msgid "Refresh facts"
|
354
333
|
msgstr "Refrescar datos"
|
355
334
|
|
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:
|
335
|
+
#: ../app/helpers/discovered_hosts_helper.rb:16 ../app/helpers/discovered_hosts_helper.rb:30 ../app/models/setting/discovered.rb:24 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:42
|
357
336
|
msgid "Reboot"
|
358
337
|
msgstr "Reiniciar"
|
359
338
|
|
@@ -365,7 +344,7 @@ msgstr "Atrás"
|
|
365
344
|
msgid "Select Action"
|
366
345
|
msgstr "Seleccionar una acción"
|
367
346
|
|
368
|
-
#: ../app/helpers/discovered_hosts_helper.rb:23 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:
|
347
|
+
#: ../app/helpers/discovered_hosts_helper.rb:23 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:43
|
369
348
|
msgid "Delete %s?"
|
370
349
|
msgstr "¿Borrar %s?"
|
371
350
|
|
@@ -387,7 +366,7 @@ msgstr "%s - Los siguientes equipos están a punto de ser modificados"
|
|
387
366
|
|
388
367
|
#: ../app/helpers/discovered_hosts_helper.rb:46 ../app/views/dashboard/_discovery_widget_host.html.erb:2
|
389
368
|
msgid "N/A"
|
390
|
-
msgstr "N/
|
369
|
+
msgstr "N/C"
|
391
370
|
|
392
371
|
#: ../app/helpers/discovered_hosts_helper.rb:58
|
393
372
|
msgid "New in the last 24 hours"
|
@@ -403,7 +382,7 @@ msgstr "Informado en los últimos 7 días"
|
|
403
382
|
|
404
383
|
#: ../app/helpers/discovered_hosts_helper.rb:90
|
405
384
|
msgid "Provision"
|
406
|
-
msgstr "
|
385
|
+
msgstr "Aprovisionar"
|
407
386
|
|
408
387
|
#: ../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
388
|
msgid "Discovered Hosts"
|
@@ -415,7 +394,7 @@ msgstr "Hosts asociados"
|
|
415
394
|
|
416
395
|
#: ../app/helpers/discovery_rules_helper.rb:29
|
417
396
|
msgid "Disable"
|
418
|
-
msgstr "
|
397
|
+
msgstr "Deshabilitar"
|
419
398
|
|
420
399
|
#: ../app/helpers/discovery_rules_helper.rb:29
|
421
400
|
msgid "Disable rule '%s'?"
|
@@ -423,13 +402,17 @@ msgstr "¿Deshabilitar regla '%s'?"
|
|
423
402
|
|
424
403
|
#: ../app/helpers/discovery_rules_helper.rb:31
|
425
404
|
msgid "Enable"
|
426
|
-
msgstr "
|
405
|
+
msgstr "Habilitar"
|
427
406
|
|
428
407
|
#: ../app/helpers/discovery_rules_helper.rb:31
|
429
408
|
msgid "Enable rule '%s'?"
|
430
409
|
msgstr "¿Habilitar regla '%s'?"
|
431
410
|
|
432
411
|
#: ../app/helpers/discovery_rules_helper.rb:33
|
412
|
+
msgid "Clone"
|
413
|
+
msgstr ""
|
414
|
+
|
415
|
+
#: ../app/helpers/discovery_rules_helper.rb:34
|
433
416
|
msgid "Delete rule '%s'?"
|
434
417
|
msgstr "¿Eliminar regla '%s'?"
|
435
418
|
|
@@ -453,17 +436,17 @@ msgstr "debe comenzar con una letra o ERB."
|
|
453
436
|
msgid "must be present."
|
454
437
|
msgstr "debe estar presente."
|
455
438
|
|
456
|
-
#: ../app/models/discovery_rule.rb:
|
439
|
+
#: ../app/models/discovery_rule.rb:57
|
457
440
|
msgid "Host group organization %s must also be associated to the discovery rule"
|
458
441
|
msgid_plural "Host group organizations %s must also be associated to the discovery rule"
|
459
|
-
msgstr[0] ""
|
460
|
-
msgstr[1] ""
|
442
|
+
msgstr[0] "La organización del grupo de host %s debe estar asociada también con la regla de detección"
|
443
|
+
msgstr[1] "Las organizaciones del grupo de host %s deben estar asociadas también con la regla de detección"
|
461
444
|
|
462
|
-
#: ../app/models/discovery_rule.rb:
|
445
|
+
#: ../app/models/discovery_rule.rb:61
|
463
446
|
msgid "Host group location %s must also be associated to the discovery rule"
|
464
447
|
msgid_plural "Host group locations %s must also be associated to the discovery rule"
|
465
|
-
msgstr[0] ""
|
466
|
-
msgstr[1] ""
|
448
|
+
msgstr[0] "La ubicación del grupo de host %s debe estar asociada también con la regla de detección"
|
449
|
+
msgstr[1] "Las ubicaciones del grupo de host %s deben estar asociadas también con la regla de detección"
|
467
450
|
|
468
451
|
#: ../app/models/host/discovered.rb:40
|
469
452
|
msgid "Fact + prefix"
|
@@ -499,7 +482,7 @@ msgstr "No pudieron obtenerse los eventos del proxy %{url}: %{error}"
|
|
499
482
|
|
500
483
|
#: ../app/models/host/discovered.rb:160
|
501
484
|
msgid "Unable to perform reboot on %{name} (%{url}): %{msg}"
|
502
|
-
msgstr ""
|
485
|
+
msgstr "No se puede realizar el reinicio en %{name} (%{url}): %{msg}"
|
503
486
|
|
504
487
|
#: ../app/models/host/discovered.rb:164 ../app/models/host/discovered.rb:183
|
505
488
|
msgid "Unable to perform %{action} on %{ips}"
|
@@ -507,7 +490,7 @@ msgstr ""
|
|
507
490
|
|
508
491
|
#: ../app/models/host/discovered.rb:179
|
509
492
|
msgid "Unable to perform kexec on %{name} (%{url}): %{msg}"
|
510
|
-
msgstr ""
|
493
|
+
msgstr "No es posible ejecutar kexec en %{name} (%{url}): %{msg}"
|
511
494
|
|
512
495
|
#: ../app/models/host/discovered.rb:203
|
513
496
|
msgid "Invalid hostname: Could not normalize the hostname"
|
@@ -729,9 +712,37 @@ msgstr "El host detectado '%{host}' tiene todas las NIC filtradas, filtro: %{fil
|
|
729
712
|
msgid "Unable to find primary NIC with %{mac} specified via '%{fact}', NIC filter: %{filter}"
|
730
713
|
msgstr "No se puede encontrar la NIC principal con %{mac} especificada mediante '%{fact}', filtro de NIC: %{filter}"
|
731
714
|
|
715
|
+
#: ../app/services/foreman_discovery/fact_to_category_resolver.rb:7
|
716
|
+
msgid "Highlights"
|
717
|
+
msgstr "Aspectos destacados"
|
718
|
+
|
719
|
+
#: ../app/services/foreman_discovery/fact_to_category_resolver.rb:8
|
720
|
+
msgid "Storage"
|
721
|
+
msgstr "Almacenamiento"
|
722
|
+
|
723
|
+
#: ../app/services/foreman_discovery/fact_to_category_resolver.rb:9
|
724
|
+
msgid "Hardware"
|
725
|
+
msgstr "Hardware"
|
726
|
+
|
727
|
+
#: ../app/services/foreman_discovery/fact_to_category_resolver.rb:10
|
728
|
+
msgid "Network"
|
729
|
+
msgstr "Red"
|
730
|
+
|
731
|
+
#: ../app/services/foreman_discovery/fact_to_category_resolver.rb:11
|
732
|
+
msgid "Software"
|
733
|
+
msgstr "Software"
|
734
|
+
|
735
|
+
#: ../app/services/foreman_discovery/fact_to_category_resolver.rb:12
|
736
|
+
msgid "IPMI"
|
737
|
+
msgstr "IPMI"
|
738
|
+
|
739
|
+
#: ../app/services/foreman_discovery/fact_to_category_resolver.rb:13
|
740
|
+
msgid "Miscellaneous"
|
741
|
+
msgstr "Misceláneo"
|
742
|
+
|
732
743
|
#: ../app/services/foreman_discovery/host_converter.rb:47
|
733
744
|
msgid "IPAM must be configured for subnet '%s'"
|
734
|
-
msgstr ""
|
745
|
+
msgstr "El IPAM debe ser configurado para la subred '%s'"
|
735
746
|
|
736
747
|
#: ../app/services/foreman_discovery/node_api/node_resource.rb:76
|
737
748
|
msgid "Image API returned HTTP/%{code} with '%{body}"
|
@@ -741,11 +752,15 @@ msgstr "La API de la imagen arrojó HTTP/%{code} with '%{body}"
|
|
741
752
|
msgid "Image API processing error: %{msg} (HTTP/%{code}, body: %{body})"
|
742
753
|
msgstr "Error de procesamiento de la API de la imagen: %{msg} (HTTP/%{code}, body: %{body})"
|
743
754
|
|
755
|
+
#: ../app/services/foreman_discovery/ui_notifications/new_host.rb:22
|
756
|
+
msgid "Host %s has been dicovered"
|
757
|
+
msgstr ""
|
758
|
+
|
744
759
|
#: ../app/views/dashboard/_discovery_widget.html.erb:5
|
745
760
|
msgid "Discovered Host"
|
746
761
|
msgid_plural "Discovered Hosts"
|
747
|
-
msgstr[0] ""
|
748
|
-
msgstr[1] ""
|
762
|
+
msgstr[0] "Host detectado"
|
763
|
+
msgstr[1] "Hosts detectados"
|
749
764
|
|
750
765
|
#: ../app/views/dashboard/_discovery_widget.html.erb:9
|
751
766
|
msgid "No discovered hosts available"
|
@@ -753,17 +768,17 @@ msgstr "No hay hosts detectados disponibles"
|
|
753
768
|
|
754
769
|
#: ../app/views/dashboard/_discovery_widget_host_list.html.erb:3
|
755
770
|
msgid "Host"
|
756
|
-
msgstr "
|
771
|
+
msgstr "host"
|
757
772
|
|
758
|
-
#: ../app/views/dashboard/_discovery_widget_host_list.html.erb:4 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:
|
773
|
+
#: ../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
|
759
774
|
msgid "Model"
|
760
|
-
msgstr "
|
775
|
+
msgstr "Modelado"
|
761
776
|
|
762
|
-
#: ../app/views/dashboard/_discovery_widget_host_list.html.erb:5 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:
|
777
|
+
#: ../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
|
763
778
|
msgid "CPUs"
|
764
779
|
msgstr "CPU"
|
765
780
|
|
766
|
-
#: ../app/views/dashboard/_discovery_widget_host_list.html.erb:6 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:
|
781
|
+
#: ../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
|
767
782
|
msgid "Memory"
|
768
783
|
msgstr "Memoria"
|
769
784
|
|
@@ -775,61 +790,61 @@ msgstr "Personalizar host"
|
|
775
790
|
msgid "Create Host"
|
776
791
|
msgstr "Crear host"
|
777
792
|
|
778
|
-
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:
|
793
|
+
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:5
|
779
794
|
msgid "Select all items in this page"
|
780
795
|
msgstr "Seleccionar todos los objetos de esta página"
|
781
796
|
|
782
|
-
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:
|
797
|
+
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:5
|
783
798
|
msgid "items selected. Uncheck to Clear"
|
784
799
|
msgstr "objetos seleccionados. Desactivar para limpiar"
|
785
800
|
|
786
|
-
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:
|
801
|
+
#: ../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
|
787
802
|
msgid "Name"
|
788
803
|
msgstr "Nombre"
|
789
804
|
|
790
|
-
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:
|
805
|
+
#: ../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
|
791
806
|
msgid "IP Address"
|
792
807
|
msgstr "Dirección IP"
|
793
808
|
|
794
|
-
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:
|
809
|
+
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:11
|
795
810
|
msgid "Disk Count"
|
796
811
|
msgstr "Conteo de discos"
|
797
812
|
|
798
|
-
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:
|
813
|
+
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:12
|
799
814
|
msgid "Disks Size"
|
800
815
|
msgstr "Tamaño de los discos"
|
801
816
|
|
802
|
-
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:
|
817
|
+
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:16 ../app/views/discovered_hosts/_selected_hosts.html.erb:9 ../app/views/discovery_rules/index.html.erb:11
|
803
818
|
msgid "Location"
|
804
|
-
msgstr "
|
819
|
+
msgstr "Ubicación"
|
805
820
|
|
806
|
-
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:
|
821
|
+
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:17 ../app/views/discovered_hosts/_selected_hosts.html.erb:10 ../app/views/discovery_rules/index.html.erb:12
|
807
822
|
msgid "Organization"
|
808
823
|
msgstr "Organización"
|
809
824
|
|
810
|
-
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:
|
825
|
+
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:18
|
811
826
|
msgid "Subnet"
|
812
827
|
msgstr "Subred"
|
813
828
|
|
814
|
-
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:
|
829
|
+
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:19
|
815
830
|
msgid "Last Facts Upload"
|
816
831
|
msgstr "Última carga de datos"
|
817
832
|
|
818
|
-
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:
|
833
|
+
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:20 ../app/views/discovery_rules/index.html.erb:14
|
819
834
|
msgid "Actions"
|
820
835
|
msgstr "Acciones"
|
821
836
|
|
822
|
-
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:
|
837
|
+
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:55
|
823
838
|
msgid "Please Confirm"
|
824
|
-
msgstr "
|
839
|
+
msgstr "Confirmar"
|
825
840
|
|
826
|
-
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:
|
841
|
+
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:61
|
827
842
|
msgid "Cancel"
|
828
843
|
msgstr "Cancelar"
|
829
844
|
|
830
|
-
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:
|
845
|
+
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:62
|
831
846
|
msgid "Submit"
|
832
|
-
msgstr "
|
847
|
+
msgstr "Enviar"
|
833
848
|
|
834
849
|
#: ../app/views/discovered_hosts/edit.html.erb:1
|
835
850
|
msgid "Provision %s"
|
@@ -873,7 +888,7 @@ msgstr "Dirección IP"
|
|
873
888
|
|
874
889
|
#: ../app/views/discovered_hosts/show.html.erb:66
|
875
890
|
msgid "Collapse All"
|
876
|
-
msgstr "
|
891
|
+
msgstr "Contraer todo"
|
877
892
|
|
878
893
|
#: ../app/views/discovered_mailer/discovered_summary.html.erb:6
|
879
894
|
msgid "Summary report for discovered hosts from Foreman"
|
@@ -963,6 +978,10 @@ msgstr "Al crear patrones de nombres de host, asegúrese de que los nombres de h
|
|
963
978
|
msgid "Hostnames must not start with numbers. A good approach is to use unique information provided by facter (MAC address, BIOS or serial ID)."
|
964
979
|
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)."
|
965
980
|
|
981
|
+
#: ../app/views/discovery_rules/clone.erb:1
|
982
|
+
msgid "Clone %s"
|
983
|
+
msgstr ""
|
984
|
+
|
966
985
|
#: ../app/views/discovery_rules/edit.html.erb:1
|
967
986
|
msgid "Edit %s"
|
968
987
|
msgstr "Editar %s"
|
@@ -971,7 +990,7 @@ msgstr "Editar %s"
|
|
971
990
|
msgid "Discovery Rules"
|
972
991
|
msgstr "Reglas de detección"
|
973
992
|
|
974
|
-
#: ../app/views/discovery_rules/index.html.erb:2
|
993
|
+
#: ../app/views/discovery_rules/index.html.erb:2 ../webpack/src/ForemanDiscovery/DiscoveryRules/Components/EmptyState/EmptyState.js:9
|
975
994
|
msgid "Create Rule"
|
976
995
|
msgstr "Crear regla"
|
977
996
|
|
@@ -995,7 +1014,7 @@ msgstr "Grupo de Equipo"
|
|
995
1014
|
msgid "Hosts/Limit"
|
996
1015
|
msgstr "Hosts/Límite"
|
997
1016
|
|
998
|
-
#: ../app/views/discovery_rules/index.html.erb:
|
1017
|
+
#: ../app/views/discovery_rules/index.html.erb:13
|
999
1018
|
msgid "DiscoveryRule|Enabled"
|
1000
1019
|
msgstr "Regla de detección|Habilitada"
|
1001
1020
|
|
@@ -1003,6 +1022,10 @@ msgstr "Regla de detección|Habilitada"
|
|
1003
1022
|
msgid "New Discovery Rule"
|
1004
1023
|
msgstr "Nueva regla de detección"
|
1005
1024
|
|
1025
|
+
#: ../app/views/discovery_rules/welcome.html.erb:8
|
1026
|
+
msgid "Discovered Rules"
|
1027
|
+
msgstr ""
|
1028
|
+
|
1006
1029
|
#: ../db/seeds.d/50_discovery_templates.rb:5
|
1007
1030
|
msgid "Command line options for kexec during PXE-less provisioning."
|
1008
1031
|
msgstr "Opciones de la línea de comandos para kexec durante el aprovisionamiento sin PXE."
|
@@ -1012,8 +1035,8 @@ msgid "A summary of discovered hosts"
|
|
1012
1035
|
msgstr "Resumen de los hosts detectados"
|
1013
1036
|
|
1014
1037
|
#: ../db/seeds.d/80_discovery_ui_notification.rb:4
|
1015
|
-
msgid "
|
1016
|
-
msgstr "
|
1038
|
+
msgid "New hosts"
|
1039
|
+
msgstr ""
|
1017
1040
|
|
1018
1041
|
#: ../db/seeds.d/80_discovery_ui_notification.rb:6
|
1019
1042
|
msgid "One or more hosts have been discovered"
|
@@ -1021,47 +1044,56 @@ msgstr "Se detectaron uno o más hosts"
|
|
1021
1044
|
|
1022
1045
|
#: ../db/seeds.d/80_discovery_ui_notification.rb:13
|
1023
1046
|
msgid "Details"
|
1024
|
-
msgstr "
|
1047
|
+
msgstr "Detalles"
|
1025
1048
|
|
1026
|
-
#: ../
|
1049
|
+
#: ../db/seeds.d/80_discovery_ui_notification.rb:18
|
1050
|
+
msgid "Hosts"
|
1051
|
+
msgstr "Hosts"
|
1052
|
+
|
1053
|
+
#: ../db/seeds.d/80_discovery_ui_notification.rb:20
|
1054
|
+
msgid "Error message goes here"
|
1055
|
+
msgstr ""
|
1056
|
+
|
1057
|
+
#: ../lib/foreman_discovery/engine.rb:176
|
1027
1058
|
msgid "Discovery Kexec template"
|
1028
1059
|
msgstr "Plantilla Kexec de detección"
|
1029
1060
|
|
1030
|
-
#: ../lib/foreman_discovery/engine.rb:
|
1061
|
+
#: ../lib/foreman_discovery/engine.rb:185
|
1031
1062
|
msgid "Discovery Proxy"
|
1032
1063
|
msgstr "Proxy de detección"
|
1033
1064
|
|
1034
|
-
#: ../lib/foreman_discovery/engine.rb:
|
1065
|
+
#: ../lib/foreman_discovery/engine.rb:186
|
1035
1066
|
msgid "Discovery Proxy to use within this subnet for managing connection to discovered hosts"
|
1036
1067
|
msgstr "Proxy de detección para usar en esta subred para administrar la conexión con los hosts detectados"
|
1037
1068
|
|
1038
|
-
#: ../lib/foreman_discovery/engine.rb:
|
1069
|
+
#: ../lib/foreman_discovery/engine.rb:187
|
1039
1070
|
msgid "ID of Discovery Proxy to use within this subnet for managing connection to discovered hosts"
|
1040
1071
|
msgstr "ID del proxy de detección para usar en esta subred para administrar la conexión con los hosts detectados"
|
1041
1072
|
|
1073
|
+
#: ../webpack/__mocks__/foremanReact/components/common/EmptyState/EmptyStatePattern.js:33
|
1074
|
+
msgid "For more information please see "
|
1075
|
+
msgstr ""
|
1076
|
+
|
1077
|
+
#: ../webpack/__mocks__/foremanReact/components/common/EmptyState/EmptyStatePattern.js:34
|
1078
|
+
msgid "documentation"
|
1079
|
+
msgstr "documentación"
|
1080
|
+
|
1042
1081
|
#: action_names.rb:2
|
1043
1082
|
msgid "Remote action:"
|
1044
|
-
msgstr ""
|
1083
|
+
msgstr "Acción remota:"
|
1045
1084
|
|
1046
1085
|
#: action_names.rb:3
|
1047
1086
|
msgid "Import Puppet classes"
|
1048
|
-
msgstr ""
|
1087
|
+
msgstr "Importar clases Puppet"
|
1049
1088
|
|
1050
1089
|
#: action_names.rb:4
|
1051
|
-
msgid "
|
1052
|
-
msgstr ""
|
1090
|
+
msgid "Import facts"
|
1091
|
+
msgstr "Importar datos"
|
1053
1092
|
|
1054
1093
|
#: action_names.rb:5
|
1055
|
-
msgid "
|
1056
|
-
msgstr ""
|
1094
|
+
msgid "Action with sub plans"
|
1095
|
+
msgstr "Acción con subplanes"
|
1057
1096
|
|
1058
|
-
|
1059
|
-
#~
|
1060
|
-
#~
|
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."
|
1097
|
+
#: ../app/helpers/discovered_hosts_helper.rb:10
|
1098
|
+
#~ msgid "%s ago"
|
1099
|
+
#~ msgstr "Hace %s"
|