foreman_discovery 15.0.1 → 16.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (80) hide show
  1. checksums.yaml +4 -4
  2. data/app/controllers/api/v2/discovery_rules_controller.rb +1 -1
  3. data/app/controllers/concerns/foreman/controller/discovered_extensions.rb +4 -0
  4. data/app/controllers/discovered_hosts_controller.rb +1 -0
  5. data/app/controllers/discovery_rules_controller.rb +1 -1
  6. data/app/models/discovery_rule.rb +1 -1
  7. data/app/models/host/discovered.rb +37 -15
  8. data/app/models/host/managed_extensions.rb +1 -1
  9. data/app/models/setting/discovered.rb +26 -33
  10. data/app/services/foreman_discovery/fact_parser.rb +1 -1
  11. data/app/services/foreman_discovery/host_converter.rb +30 -2
  12. data/app/services/foreman_discovery/import_hooks/subnet_and_taxonomy.rb +6 -14
  13. data/app/services/foreman_discovery/subnet_suggestion.rb +26 -0
  14. data/app/views/discovered_hosts/_discovered_host_modal.html.erb +19 -17
  15. data/app/views/foreman_discovery/debian_kexec.erb +1 -1
  16. data/config/routes.rb +2 -0
  17. data/db/migrate/20150512150432_remove_old_discovery_reader_permissions.rb +1 -1
  18. data/db/migrate/20151023144501_regenerate_red_hat_kexec.rb +1 -1
  19. data/db/migrate/20180412124505_add_priority_score_to_discovery_rules.rb +1 -1
  20. data/extra/discover-host +21 -7
  21. data/lib/foreman_discovery/engine.rb +4 -4
  22. data/lib/foreman_discovery/version.rb +1 -1
  23. data/locale/ca/LC_MESSAGES/foreman_discovery.mo +0 -0
  24. data/locale/ca/foreman_discovery.edit.po +238 -139
  25. data/locale/ca/foreman_discovery.po +28 -8
  26. data/locale/de/LC_MESSAGES/foreman_discovery.mo +0 -0
  27. data/locale/de/foreman_discovery.edit.po +240 -140
  28. data/locale/de/foreman_discovery.po +31 -11
  29. data/locale/en/LC_MESSAGES/foreman_discovery.mo +0 -0
  30. data/locale/en/foreman_discovery.edit.po +109 -83
  31. data/locale/en/foreman_discovery.po +24 -4
  32. data/locale/en_GB/LC_MESSAGES/foreman_discovery.mo +0 -0
  33. data/locale/en_GB/foreman_discovery.edit.po +241 -142
  34. data/locale/en_GB/foreman_discovery.po +31 -11
  35. data/locale/es/LC_MESSAGES/foreman_discovery.mo +0 -0
  36. data/locale/es/foreman_discovery.edit.po +240 -141
  37. data/locale/es/foreman_discovery.po +30 -10
  38. data/locale/foreman_discovery.pot +110 -84
  39. data/locale/fr/LC_MESSAGES/foreman_discovery.mo +0 -0
  40. data/locale/fr/foreman_discovery.edit.po +237 -137
  41. data/locale/fr/foreman_discovery.po +28 -8
  42. data/locale/gl/LC_MESSAGES/foreman_discovery.mo +0 -0
  43. data/locale/gl/foreman_discovery.edit.po +236 -137
  44. data/locale/gl/foreman_discovery.po +26 -6
  45. data/locale/it/LC_MESSAGES/foreman_discovery.mo +0 -0
  46. data/locale/it/foreman_discovery.edit.po +236 -137
  47. data/locale/it/foreman_discovery.po +26 -6
  48. data/locale/ja/LC_MESSAGES/foreman_discovery.mo +0 -0
  49. data/locale/ja/foreman_discovery.edit.po +238 -142
  50. data/locale/ja/foreman_discovery.po +29 -9
  51. data/locale/ko/LC_MESSAGES/foreman_discovery.mo +0 -0
  52. data/locale/ko/foreman_discovery.edit.po +236 -139
  53. data/locale/ko/foreman_discovery.po +28 -8
  54. data/locale/pt_BR/LC_MESSAGES/foreman_discovery.mo +0 -0
  55. data/locale/pt_BR/foreman_discovery.edit.po +239 -140
  56. data/locale/pt_BR/foreman_discovery.po +29 -9
  57. data/locale/ru/LC_MESSAGES/foreman_discovery.mo +0 -0
  58. data/locale/ru/foreman_discovery.edit.po +242 -143
  59. data/locale/ru/foreman_discovery.po +29 -9
  60. data/locale/sv_SE/LC_MESSAGES/foreman_discovery.mo +0 -0
  61. data/locale/sv_SE/foreman_discovery.edit.po +237 -138
  62. data/locale/sv_SE/foreman_discovery.po +27 -7
  63. data/locale/zh_CN/LC_MESSAGES/foreman_discovery.mo +0 -0
  64. data/locale/zh_CN/foreman_discovery.edit.po +237 -141
  65. data/locale/zh_CN/foreman_discovery.po +28 -8
  66. data/locale/zh_TW/LC_MESSAGES/foreman_discovery.mo +0 -0
  67. data/locale/zh_TW/foreman_discovery.edit.po +235 -139
  68. data/locale/zh_TW/foreman_discovery.po +26 -6
  69. data/test/facts/bond0-eth0-eth1-active-passive.json +128 -0
  70. data/test/facts/facts_with_lldp_bond_candidate.json +2 -9
  71. data/test/functional/api/v2/discovered_hosts_controller_test.rb +1 -0
  72. data/test/functional/discovered_hosts_controller_test.rb +4 -4
  73. data/test/integration/discovered_hosts_test.rb +6 -11
  74. data/test/test_helper_discovery.rb +12 -0
  75. data/test/unit/discovered_extensions_test.rb +53 -0
  76. data/test/unit/discovery_attribute_set_test.rb +13 -10
  77. data/test/unit/discovery_rule_test.rb +1 -0
  78. data/test/unit/host_discovered_test.rb +32 -13
  79. data/test/unit/managed_extensions_test.rb +1 -0
  80. metadata +8 -2
@@ -43,12 +43,12 @@ module ForemanDiscovery
43
43
 
44
44
  initializer 'foreman_discovery.register_plugin', :before => :finisher_hook do |app|
45
45
  Foreman::Plugin.register :foreman_discovery do
46
- requires_foreman '>= 1.22.0'
46
+ requires_foreman '>= 1.24.0'
47
47
 
48
48
  # discovered hosts permissions
49
49
  security_block :discovery do
50
50
  permission :view_discovered_hosts, {
51
- :discovered_hosts => [:index, :show, :auto_complete_search],
51
+ :discovered_hosts => [:index, :show, :auto_complete_search, :welcome],
52
52
  :"api/v2/discovered_hosts" => [:index, :show]
53
53
  }, :resource_type => 'Host'
54
54
  permission :submit_discovered_hosts, {
@@ -148,8 +148,8 @@ module ForemanDiscovery
148
148
  :edit_discovery_rules,
149
149
  :destroy_discovery_rules,
150
150
  ]
151
- role "Discovery Reader", READER
152
- role "Discovery Manager", MANAGER
151
+ role "Discovery Reader", READER, "Role granting permissions to view discovered hosts"
152
+ role "Discovery Manager", MANAGER, "Role granting permissions to perform provisioning of discovered hosts"
153
153
 
154
154
  add_all_permissions_to_default_roles
155
155
 
@@ -1,3 +1,3 @@
1
1
  module ForemanDiscovery
2
- VERSION = "15.0.1"
2
+ VERSION = "16.1.0"
3
3
  end
@@ -1,19 +1,18 @@
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
  # Robert Antoni Buj Gelonch <rbuj@fedoraproject.org>, 2017
7
7
  # Robert Antoni Buj Gelonch <rbuj@fedoraproject.org>, 2015-2016
8
8
  msgid ""
9
9
  msgstr ""
10
- "Project-Id-Version: foreman_discovery 15.0.0\n"
10
+ "Project-Id-Version: foreman_discovery 16.0.1\n"
11
11
  "Report-Msgid-Bugs-To: \n"
12
- "POT-Creation-Date: 2019-07-23 17:13+0200\n"
13
- "PO-Revision-Date: 2019-04-18 19:36+0000\n"
14
- "Last-Translator: Lukáš Zapletal\n"
15
- "Language-Team: Catalan (http://www.transifex.com/foreman/foreman/language/ca/)"
16
- "\n"
12
+ "POT-Creation-Date: 2020-05-11 14:58+0530\n"
13
+ "PO-Revision-Date: 2020-05-26 17:21+0000\n"
14
+ "Last-Translator: Transifex Bot <>\n"
15
+ "Language-Team: Catalan (http://www.transifex.com/foreman/foreman/language/ca/)\n"
17
16
  "MIME-Version: 1.0\n"
18
17
  "Content-Type: text/plain; charset=UTF-8\n"
19
18
  "Content-Transfer-Encoding: 8bit\n"
@@ -24,19 +23,23 @@ msgstr ""
24
23
  msgid "List all discovered hosts"
25
24
  msgstr "Llista tots els amfitrions descoberts"
26
25
 
27
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:17 ../app/controllers/api/v2/discovery_rules_controller.rb:15
26
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:17
27
+ #: ../app/controllers/api/v2/discovery_rules_controller.rb:15
28
28
  msgid "filter results"
29
29
  msgstr "filtra els resultats"
30
30
 
31
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:18 ../app/controllers/api/v2/discovery_rules_controller.rb:16
31
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:18
32
+ #: ../app/controllers/api/v2/discovery_rules_controller.rb:16
32
33
  msgid "sort results"
33
34
  msgstr "ordena els resultats"
34
35
 
35
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:19 ../app/controllers/api/v2/discovery_rules_controller.rb:17
36
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:19
37
+ #: ../app/controllers/api/v2/discovery_rules_controller.rb:17
36
38
  msgid "paginate results"
37
39
  msgstr "pagina els resultats"
38
40
 
39
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:20 ../app/controllers/api/v2/discovery_rules_controller.rb:18
41
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:20
42
+ #: ../app/controllers/api/v2/discovery_rules_controller.rb:18
40
43
  msgid "number of entries per request"
41
44
  msgstr "Nombre d'entrades per petició"
42
45
 
@@ -44,7 +47,8 @@ msgstr "Nombre d'entrades per petició"
44
47
  msgid "Show a discovered host"
45
48
  msgstr "Mostra un amfitrió descobert"
46
49
 
47
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:37 ../app/controllers/api/v2/discovered_hosts_controller.rb:79
50
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:37
51
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:79
48
52
  msgid "DHCP filename option (Grub2 or PXELinux by default)"
49
53
  msgstr ""
50
54
 
@@ -65,11 +69,14 @@ msgid "not required if it's a virtual machine"
65
69
  msgstr ""
66
70
 
67
71
  #: ../app/controllers/api/v2/discovered_hosts_controller.rb:76
68
- msgid "UUID to track orchestration tasks status, GET /api/orchestration/:UUID/tasks"
72
+ msgid ""
73
+ "UUID to track orchestration tasks status, GET /api/orchestration/:UUID/tasks"
69
74
  msgstr ""
70
75
 
71
76
  #: ../app/controllers/api/v2/discovered_hosts_controller.rb:78
72
- msgid "required if value is not inherited from host group or default password in settings"
77
+ msgid ""
78
+ "required if value is not inherited from host group or default password in "
79
+ "settings"
73
80
  msgstr ""
74
81
 
75
82
  #: ../app/controllers/api/v2/discovered_hosts_controller.rb:89
@@ -81,14 +88,18 @@ msgid "Upload facts for a host, creating the host if required"
81
88
  msgstr "Puja els objectes d'interès per a un amfitrió, creant el nou amfitrió si fos necessari"
82
89
 
83
90
  #: ../app/controllers/api/v2/discovered_hosts_controller.rb:97
84
- 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)"
91
+ msgid ""
92
+ "hash containing facts for the host with minimum set of facts: "
93
+ "discovery_bootif, macaddress_eth0, ipaddress, ipaddress_eth0, interfaces: "
94
+ "eth0 (example in case primary interface is named eth0)"
85
95
  msgstr ""
86
96
 
87
97
  #: ../app/controllers/api/v2/discovered_hosts_controller.rb:116
88
98
  msgid "Execute rules against a discovered host"
89
99
  msgstr ""
90
100
 
91
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:122 ../app/controllers/discovered_hosts_controller.rb:159
101
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:122
102
+ #: ../app/controllers/discovered_hosts_controller.rb:160
92
103
  msgid "Host %{host} was provisioned with rule %{rule}"
93
104
  msgstr "L'amfitrió %{host} va ser aprovisionat amb la regla %{rule}"
94
105
 
@@ -96,7 +107,8 @@ msgstr "L'amfitrió %{host} va ser aprovisionat amb la regla %{rule}"
96
107
  msgid "Unable to provision %{host}: %{errors}"
97
108
  msgstr "No es pot aprovisionar a %{host}: %{errors}"
98
109
 
99
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:131 ../app/controllers/discovered_hosts_controller.rb:166
110
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:131
111
+ #: ../app/controllers/discovered_hosts_controller.rb:167
100
112
  msgid "No rule found for host %s"
101
113
  msgstr "No s'ha trobat cap regla per a l'amfitrió %s"
102
114
 
@@ -104,11 +116,13 @@ msgstr "No s'ha trobat cap regla per a l'amfitrió %s"
104
116
  msgid "Execute rules against all currently discovered hosts"
105
117
  msgstr "Executa les regles contra tots els amfitrions detectats actualment"
106
118
 
107
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:142 ../app/controllers/discovered_hosts_controller.rb:172
119
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:142
120
+ #: ../app/controllers/discovered_hosts_controller.rb:173
108
121
  msgid "Errors during auto provisioning: %s"
109
122
  msgstr "Erros durant l'auto aprovisionament: %s"
110
123
 
111
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:145 ../app/controllers/discovered_hosts_controller.rb:175
124
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:145
125
+ #: ../app/controllers/discovered_hosts_controller.rb:176
112
126
  msgid "No discovered hosts to provision"
113
127
  msgstr "Sense amfitrions descoberts per aprovisionar"
114
128
 
@@ -128,7 +142,8 @@ msgstr "S'està reiniciant un amfitrió descobert"
128
142
  msgid "Rebooting all discovered hosts"
129
143
  msgstr "S'estan reiniciant tots els amfitrions descoberts"
130
144
 
131
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:207 ../app/controllers/discovered_hosts_controller.rb:128
145
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:207
146
+ #: ../app/controllers/discovered_hosts_controller.rb:129
132
147
  msgid "Discovered hosts are rebooting now"
133
148
  msgstr "Ara s'estan reiniciant els amfitrions descoberts"
134
149
 
@@ -153,7 +168,8 @@ msgid "the hostgroup that is used to auto provision a host"
153
168
  msgstr "el grup d'amfitrions que s'utilitza per a l'auto aprovisionament d'un amfitrió"
154
169
 
155
170
  #: ../app/controllers/api/v2/discovery_rules_controller.rb:35
156
- msgid "defines a pattern to assign human-readable hostnames to the matching hosts"
171
+ msgid ""
172
+ "defines a pattern to assign human-readable hostnames to the matching hosts"
157
173
  msgstr ""
158
174
 
159
175
  #: ../app/controllers/api/v2/discovery_rules_controller.rb:36
@@ -161,7 +177,8 @@ msgid "enables to limit maximum amount of provisioned hosts per rule"
161
177
  msgstr "permet la limitació del nombre total màxim dels amfitrions aprovisionats per cada regla"
162
178
 
163
179
  #: ../app/controllers/api/v2/discovery_rules_controller.rb:37
164
- msgid "puts the rules in order, low numbers go first. Must be greater then zero"
180
+ msgid ""
181
+ "puts the rules in order, low numbers go first. Must be greater then zero"
165
182
  msgstr ""
166
183
 
167
184
  #: ../app/controllers/api/v2/discovery_rules_controller.rb:38
@@ -200,11 +217,11 @@ msgstr ""
200
217
  msgid "No hostgroup associated with rule '%s'"
201
218
  msgstr ""
202
219
 
203
- #: ../app/controllers/concerns/foreman/controller/discovered_extensions.rb:69
220
+ #: ../app/controllers/concerns/foreman/controller/discovered_extensions.rb:73
204
221
  msgid "Errors during reboot: %s"
205
222
  msgstr "Errors durant el reinici: %s"
206
223
 
207
- #: ../app/controllers/concerns/foreman/controller/discovered_extensions.rb:87
224
+ #: ../app/controllers/concerns/foreman/controller/discovered_extensions.rb:91
208
225
  msgid "No discovered hosts to reboot"
209
226
  msgstr ""
210
227
 
@@ -212,91 +229,91 @@ msgstr ""
212
229
  msgid "Successfully provisioned %s"
213
230
  msgstr ""
214
231
 
215
- #: ../app/controllers/discovered_hosts_controller.rb:96
232
+ #: ../app/controllers/discovered_hosts_controller.rb:97
216
233
  msgid "Facts refreshed for %s"
217
234
  msgstr "Els objectes d'interès que s'han refrescat per a %s"
218
235
 
219
- #: ../app/controllers/discovered_hosts_controller.rb:98
236
+ #: ../app/controllers/discovered_hosts_controller.rb:99
220
237
  msgid "Failed to refresh facts for %s"
221
238
  msgstr "No s'ha pogut refrescar els objectes d'interès per a %s"
222
239
 
223
- #: ../app/controllers/discovered_hosts_controller.rb:101
240
+ #: ../app/controllers/discovered_hosts_controller.rb:102
224
241
  msgid "Failed to refresh facts for %{hostname} with error %{error_message}"
225
242
  msgstr ""
226
243
 
227
- #: ../app/controllers/discovered_hosts_controller.rb:108
244
+ #: ../app/controllers/discovered_hosts_controller.rb:109
228
245
  msgid "Host of type %s can not be rebooted"
229
246
  msgstr ""
230
247
 
231
- #: ../app/controllers/discovered_hosts_controller.rb:112
248
+ #: ../app/controllers/discovered_hosts_controller.rb:113
232
249
  msgid "Rebooting host %s"
233
250
  msgstr "S'està reiniciant l'amfitrió %s"
234
251
 
235
- #: ../app/controllers/discovered_hosts_controller.rb:114
252
+ #: ../app/controllers/discovered_hosts_controller.rb:115
236
253
  msgid "Failed to reboot host %s"
237
254
  msgstr "No s'ha pogut reiniciar l'amfitrió %s."
238
255
 
239
- #: ../app/controllers/discovered_hosts_controller.rb:117
256
+ #: ../app/controllers/discovered_hosts_controller.rb:118
240
257
  msgid "Failed to reboot host %{hostname} with error %{error_message}"
241
258
  msgstr ""
242
259
 
243
- #: ../app/controllers/discovered_hosts_controller.rb:131
260
+ #: ../app/controllers/discovered_hosts_controller.rb:132
244
261
  msgid "Failed to reboot hosts with error %s"
245
262
  msgstr ""
246
263
 
247
- #: ../app/controllers/discovered_hosts_controller.rb:149
264
+ #: ../app/controllers/discovered_hosts_controller.rb:150
248
265
  msgid "Destroyed selected hosts"
249
266
  msgstr "S'han destruït els amfitrions seleccionats"
250
267
 
251
- #: ../app/controllers/discovered_hosts_controller.rb:151
268
+ #: ../app/controllers/discovered_hosts_controller.rb:152
252
269
  msgid "The following hosts were not deleted: %s"
253
270
  msgstr ""
254
271
 
255
- #: ../app/controllers/discovered_hosts_controller.rb:163
272
+ #: ../app/controllers/discovered_hosts_controller.rb:164
256
273
  msgid "Failed to auto provision host %s: %s"
257
274
  msgstr "No s'ha pogut auto aprovisionar l'amfitrió %s: %s"
258
275
 
259
- #: ../app/controllers/discovered_hosts_controller.rb:191
276
+ #: ../app/controllers/discovered_hosts_controller.rb:192
260
277
  msgid "Discovered hosts are provisioning now"
261
278
  msgstr "Els amfitrions descoberts ara tenen aprovisionament"
262
279
 
263
- #: ../app/controllers/discovered_hosts_controller.rb:223
280
+ #: ../app/controllers/discovered_hosts_controller.rb:224
264
281
  msgid "Highlights"
265
282
  msgstr ""
266
283
 
267
- #: ../app/controllers/discovered_hosts_controller.rb:223
284
+ #: ../app/controllers/discovered_hosts_controller.rb:224
268
285
  msgid "Storage"
269
286
  msgstr ""
270
287
 
271
- #: ../app/controllers/discovered_hosts_controller.rb:223
288
+ #: ../app/controllers/discovered_hosts_controller.rb:224
272
289
  msgid "Hardware"
273
290
  msgstr ""
274
291
 
275
- #: ../app/controllers/discovered_hosts_controller.rb:223
292
+ #: ../app/controllers/discovered_hosts_controller.rb:224
276
293
  msgid "Network"
277
294
  msgstr ""
278
295
 
279
- #: ../app/controllers/discovered_hosts_controller.rb:223
296
+ #: ../app/controllers/discovered_hosts_controller.rb:224
280
297
  msgid "Software"
281
298
  msgstr ""
282
299
 
283
- #: ../app/controllers/discovered_hosts_controller.rb:223
300
+ #: ../app/controllers/discovered_hosts_controller.rb:224
284
301
  msgid "IPMI"
285
302
  msgstr ""
286
303
 
287
- #: ../app/controllers/discovered_hosts_controller.rb:223
304
+ #: ../app/controllers/discovered_hosts_controller.rb:224
288
305
  msgid "Miscellaneous"
289
306
  msgstr ""
290
307
 
291
- #: ../app/controllers/discovered_hosts_controller.rb:301
308
+ #: ../app/controllers/discovered_hosts_controller.rb:302
292
309
  msgid "No hosts were found with that id or name"
293
310
  msgstr "No s'ha trobat cap amfitrió amb aquest ID o nom"
294
311
 
295
- #: ../app/controllers/discovered_hosts_controller.rb:305
312
+ #: ../app/controllers/discovered_hosts_controller.rb:306
296
313
  msgid "No hosts selected"
297
314
  msgstr "Cap amfitrió seleccionat"
298
315
 
299
- #: ../app/controllers/discovered_hosts_controller.rb:311
316
+ #: ../app/controllers/discovered_hosts_controller.rb:312
300
317
  msgid "Something went wrong while selecting hosts - %s"
301
318
  msgstr "Alguna cosa va anar malament mentre se seleccionaven els amfitrions - %s"
302
319
 
@@ -312,15 +329,21 @@ msgstr "Regla inhabilitada"
312
329
  msgid "%s ago"
313
330
  msgstr "fa %s"
314
331
 
315
- #: ../app/helpers/discovered_hosts_helper.rb:14 ../app/helpers/discovered_hosts_helper.rb:29 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:37
332
+ #: ../app/helpers/discovered_hosts_helper.rb:14
333
+ #: ../app/helpers/discovered_hosts_helper.rb:29
334
+ #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:37
316
335
  msgid "Auto Provision"
317
336
  msgstr "Auto aprovisiona"
318
337
 
319
- #: ../app/helpers/discovered_hosts_helper.rb:15 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:38
338
+ #: ../app/helpers/discovered_hosts_helper.rb:15
339
+ #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:38
320
340
  msgid "Refresh facts"
321
341
  msgstr "Refresca els objectes d'interès"
322
342
 
323
- #: ../app/helpers/discovered_hosts_helper.rb:16 ../app/helpers/discovered_hosts_helper.rb:30 ../app/models/setting/discovered.rb:26 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:39
343
+ #: ../app/helpers/discovered_hosts_helper.rb:16
344
+ #: ../app/helpers/discovered_hosts_helper.rb:30
345
+ #: ../app/models/setting/discovered.rb:22
346
+ #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:39
324
347
  msgid "Reboot"
325
348
  msgstr "Reinicia"
326
349
 
@@ -328,11 +351,13 @@ msgstr "Reinicia"
328
351
  msgid "Back"
329
352
  msgstr "Enrere"
330
353
 
331
- #: ../app/helpers/discovered_hosts_helper.rb:21 ../app/helpers/discovered_hosts_helper.rb:35
354
+ #: ../app/helpers/discovered_hosts_helper.rb:21
355
+ #: ../app/helpers/discovered_hosts_helper.rb:35
332
356
  msgid "Select Action"
333
357
  msgstr "Selecciona l'acció"
334
358
 
335
- #: ../app/helpers/discovered_hosts_helper.rb:23 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:40
359
+ #: ../app/helpers/discovered_hosts_helper.rb:23
360
+ #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:40
336
361
  msgid "Delete %s?"
337
362
  msgstr "Voleu suprimir %s?"
338
363
 
@@ -352,7 +377,8 @@ msgstr "Suprimeix"
352
377
  msgid "%s - The following hosts are about to be changed"
353
378
  msgstr "%s - Els següents amfitrions estan a punt de ser canviats"
354
379
 
355
- #: ../app/helpers/discovered_hosts_helper.rb:46 ../app/views/dashboard/_discovery_widget_host.html.erb:2
380
+ #: ../app/helpers/discovered_hosts_helper.rb:46
381
+ #: ../app/views/dashboard/_discovery_widget_host.html.erb:2
356
382
  msgid "N/A"
357
383
  msgstr "N/D"
358
384
 
@@ -372,7 +398,12 @@ msgstr "Es va informar en els últims 7 dies"
372
398
  msgid "Provision"
373
399
  msgstr "Aprovisiona"
374
400
 
375
- #: ../app/helpers/discovery_rules_helper.rb:26 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:1 ../app/views/discovered_hosts/welcome.html.erb:1 ../app/views/discovered_hosts/welcome.html.erb:6 ../lib/foreman_discovery/engine.rb:158 ../lib/foreman_discovery/engine.rb:173
401
+ #: ../app/helpers/discovery_rules_helper.rb:26
402
+ #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:1
403
+ #: ../app/views/discovered_hosts/welcome.html.erb:1
404
+ #: ../app/views/discovered_hosts/welcome.html.erb:6
405
+ #: ../lib/foreman_discovery/engine.rb:158
406
+ #: ../lib/foreman_discovery/engine.rb:173
376
407
  msgid "Discovered Hosts"
377
408
  msgstr ""
378
409
 
@@ -421,14 +452,17 @@ msgid "must be present."
421
452
  msgstr ""
422
453
 
423
454
  #: ../app/models/discovery_rule.rb:52
424
- msgid "Host group organization %s must also be associated to the discovery rule"
425
- msgid_plural "Host group organizations %s must also be associated to the discovery rule"
455
+ msgid ""
456
+ "Host group organization %s must also be associated to the discovery rule"
457
+ msgid_plural ""
458
+ "Host group organizations %s must also be associated to the discovery rule"
426
459
  msgstr[0] ""
427
460
  msgstr[1] ""
428
461
 
429
462
  #: ../app/models/discovery_rule.rb:56
430
463
  msgid "Host group location %s must also be associated to the discovery rule"
431
- msgid_plural "Host group locations %s must also be associated to the discovery rule"
464
+ msgid_plural ""
465
+ "Host group locations %s must also be associated to the discovery rule"
432
466
  msgstr[0] ""
433
467
  msgstr[1] ""
434
468
 
@@ -449,11 +483,15 @@ msgid "Invalid facts, must be a Hash"
449
483
  msgstr "Objectes d'interès no vàlids, han de tenir un Hash"
450
484
 
451
485
  #: ../app/models/host/discovered.rb:56
452
- msgid "Expected discovery_fact '%s' is missing, unable to detect primary interface and set hostname"
486
+ msgid ""
487
+ "Expected discovery_fact '%s' is missing, unable to detect primary interface "
488
+ "and set hostname"
453
489
  msgstr ""
454
490
 
455
491
  #: ../app/models/host/discovered.rb:69
456
- msgid "Invalid facts: hash does not contain a valid value for any of the facts in the discovery_hostname setting: %s"
492
+ msgid ""
493
+ "Invalid facts: hash does not contain a valid value for any of the facts in "
494
+ "the discovery_hostname setting: %s"
457
495
  msgstr ""
458
496
 
459
497
  #: ../app/models/host/discovered.rb:95
@@ -464,15 +502,15 @@ msgstr ""
464
502
  msgid "Could not get facts from proxy %{url}: %{error}"
465
503
  msgstr "No s'han pogut obtenir els objectes d'interès del servidor intermediari %{url}: %{error}"
466
504
 
467
- #: ../app/models/host/discovered.rb:158
468
- msgid "Unable to reboot %{name} via %{url}: %{msg}"
469
- msgstr "No es pot reiniciar %{name} a través de %{url}: %{msg}"
505
+ #: ../app/models/host/discovered.rb:162
506
+ msgid "Unable to perform reboot on %{name} (%{url}): %{msg}"
507
+ msgstr ""
470
508
 
471
- #: ../app/models/host/discovered.rb:166
472
- msgid "Unable to perform kexec on %{name} via %{url}: %{msg}"
473
- msgstr "No es pot realitzar kexec a %{name} a través de %{url}: %{msg}"
509
+ #: ../app/models/host/discovered.rb:181
510
+ msgid "Unable to perform kexec on %{name} (%{url}): %{msg}"
511
+ msgstr ""
474
512
 
475
- #: ../app/models/host/discovered.rb:185
513
+ #: ../app/models/host/discovered.rb:207
476
514
  msgid "Invalid hostname: Could not normalize the hostname"
477
515
  msgstr ""
478
516
 
@@ -500,183 +538,191 @@ msgstr ""
500
538
  msgid "Rebuild DNS for %s"
501
539
  msgstr ""
502
540
 
503
- #: ../app/models/setting/discovered.rb:19
541
+ #: ../app/models/setting/discovered.rb:15
504
542
  msgid "The default location to place discovered hosts in"
505
543
  msgstr ""
506
544
 
507
- #: ../app/models/setting/discovered.rb:19
545
+ #: ../app/models/setting/discovered.rb:15
508
546
  msgid "Discovery location"
509
547
  msgstr ""
510
548
 
511
- #: ../app/models/setting/discovered.rb:20
549
+ #: ../app/models/setting/discovered.rb:16
512
550
  msgid "The default organization to place discovered hosts in"
513
551
  msgstr ""
514
552
 
515
- #: ../app/models/setting/discovered.rb:20
553
+ #: ../app/models/setting/discovered.rb:16
516
554
  msgid "Discovery organization"
517
555
  msgstr ""
518
556
 
519
- #: ../app/models/setting/discovered.rb:21
557
+ #: ../app/models/setting/discovered.rb:17
520
558
  msgid "Fact name to use for primary interface detection"
521
559
  msgstr ""
522
560
 
523
- #: ../app/models/setting/discovered.rb:21
561
+ #: ../app/models/setting/discovered.rb:17
524
562
  msgid "Interface fact"
525
563
  msgstr ""
526
564
 
527
- #: ../app/models/setting/discovered.rb:22
528
- msgid "Automatic bond interface (if another interface is detected on the same VLAN via LLDP)"
565
+ #: ../app/models/setting/discovered.rb:18
566
+ msgid ""
567
+ "Automatic bond interface (if another interface is detected on the same VLAN "
568
+ "via LLDP)"
529
569
  msgstr ""
530
570
 
531
- #: ../app/models/setting/discovered.rb:22
571
+ #: ../app/models/setting/discovered.rb:18
532
572
  msgid "Create bond interfaces"
533
573
  msgstr ""
534
574
 
535
- #: ../app/models/setting/discovered.rb:23
575
+ #: ../app/models/setting/discovered.rb:19
536
576
  msgid "Clean all reported facts during provisioning (except discovery facts)"
537
577
  msgstr ""
538
578
 
539
- #: ../app/models/setting/discovered.rb:23
579
+ #: ../app/models/setting/discovered.rb:19
540
580
  msgid "Clean all facts"
541
581
  msgstr ""
542
582
 
543
- #: ../app/models/setting/discovered.rb:24
583
+ #: ../app/models/setting/discovered.rb:20
544
584
  msgid "List of facts to use for the hostname (separated by comma, first wins)"
545
585
  msgstr ""
546
586
 
547
- #: ../app/models/setting/discovered.rb:24
587
+ #: ../app/models/setting/discovered.rb:20
548
588
  msgid "Hostname facts"
549
589
  msgstr ""
550
590
 
551
- #: ../app/models/setting/discovered.rb:25
552
- msgid "Automatically provision newly discovered hosts, according to the provisioning rules"
591
+ #: ../app/models/setting/discovered.rb:21
592
+ msgid ""
593
+ "Automatically provision newly discovered hosts, according to the "
594
+ "provisioning rules"
553
595
  msgstr ""
554
596
 
555
- #: ../app/models/setting/discovered.rb:25
597
+ #: ../app/models/setting/discovered.rb:21
556
598
  msgid "Auto provisioning"
557
599
  msgstr ""
558
600
 
559
- #: ../app/models/setting/discovered.rb:26
601
+ #: ../app/models/setting/discovered.rb:22
560
602
  msgid "Automatically reboot or kexec discovered host during provisioning"
561
603
  msgstr ""
562
604
 
563
- #: ../app/models/setting/discovered.rb:27
605
+ #: ../app/models/setting/discovered.rb:23
564
606
  msgid "The default prefix to use for the host name, must start with a letter"
565
607
  msgstr ""
566
608
 
567
- #: ../app/models/setting/discovered.rb:27
609
+ #: ../app/models/setting/discovered.rb:23
568
610
  msgid "Hostname prefix"
569
611
  msgstr ""
570
612
 
571
- #: ../app/models/setting/discovered.rb:28
613
+ #: ../app/models/setting/discovered.rb:24
572
614
  msgid "Extra facter columns to show in host lists (separate by comma)"
573
615
  msgstr ""
574
616
 
575
- #: ../app/models/setting/discovered.rb:28
617
+ #: ../app/models/setting/discovered.rb:24
576
618
  msgid "Fact columns"
577
619
  msgstr ""
578
620
 
579
- #: ../app/models/setting/discovered.rb:29
621
+ #: ../app/models/setting/discovered.rb:25
580
622
  msgid "Regex to organize facts for highlights section - e.g. ^(abc|cde)$"
581
623
  msgstr ""
582
624
 
583
- #: ../app/models/setting/discovered.rb:29
625
+ #: ../app/models/setting/discovered.rb:25
584
626
  msgid "Highlighted facts"
585
627
  msgstr ""
586
628
 
587
- #: ../app/models/setting/discovered.rb:30
629
+ #: ../app/models/setting/discovered.rb:26
588
630
  msgid "Regex to organize facts for storage section"
589
631
  msgstr "Expressió regular per a organitzar els objectes d'interès per a la secció d'emmagatzematge"
590
632
 
591
- #: ../app/models/setting/discovered.rb:30
633
+ #: ../app/models/setting/discovered.rb:26
592
634
  msgid "Storage facts"
593
635
  msgstr ""
594
636
 
595
- #: ../app/models/setting/discovered.rb:31
637
+ #: ../app/models/setting/discovered.rb:27
596
638
  msgid "Regex to organize facts for software section"
597
639
  msgstr "Expressió regular per a organitzar els objectes d'interès per a la secció de programari"
598
640
 
599
- #: ../app/models/setting/discovered.rb:31
641
+ #: ../app/models/setting/discovered.rb:27
600
642
  msgid "Software facts"
601
643
  msgstr ""
602
644
 
603
- #: ../app/models/setting/discovered.rb:32
645
+ #: ../app/models/setting/discovered.rb:28
604
646
  msgid "Regex to organize facts for hardware section"
605
647
  msgstr "Expressió regular per a organitzar els objectes d'interès per a la secció de programari"
606
648
 
607
- #: ../app/models/setting/discovered.rb:32
649
+ #: ../app/models/setting/discovered.rb:28
608
650
  msgid "Hardware facts"
609
651
  msgstr ""
610
652
 
611
- #: ../app/models/setting/discovered.rb:33
653
+ #: ../app/models/setting/discovered.rb:29
612
654
  msgid "Regex to organize facts for network section"
613
655
  msgstr "Expressió regular per a organitzar els objectes d'interès per a la secció de xarxa"
614
656
 
615
- #: ../app/models/setting/discovered.rb:33
657
+ #: ../app/models/setting/discovered.rb:29
616
658
  msgid "Network facts"
617
659
  msgstr ""
618
660
 
619
- #: ../app/models/setting/discovered.rb:34
661
+ #: ../app/models/setting/discovered.rb:30
620
662
  msgid "Regex to organize facts for ipmi section"
621
663
  msgstr "Expressió regular per a organitzar els objectes d'interès per a la secció ipmi"
622
664
 
623
- #: ../app/models/setting/discovered.rb:34
665
+ #: ../app/models/setting/discovered.rb:30
624
666
  msgid "IPMI facts"
625
667
  msgstr ""
626
668
 
627
- #: ../app/models/setting/discovered.rb:35
628
- msgid "Automatically generate PXE configuration to pin a newly discovered host to discovery"
669
+ #: ../app/models/setting/discovered.rb:31
670
+ msgid ""
671
+ "Automatically generate PXE configuration to pin a newly discovered host to "
672
+ "discovery"
629
673
  msgstr ""
630
674
 
631
- #: ../app/models/setting/discovered.rb:35
675
+ #: ../app/models/setting/discovered.rb:31
632
676
  msgid "Lock PXE"
633
677
  msgstr ""
634
678
 
635
- #: ../app/models/setting/discovered.rb:36
679
+ #: ../app/models/setting/discovered.rb:32
636
680
  msgid "PXELinux template to be used when pinning a host to discovery"
637
681
  msgstr ""
638
682
 
639
- #: ../app/models/setting/discovered.rb:36
683
+ #: ../app/models/setting/discovered.rb:32
640
684
  msgid "Locked PXELinux template name"
641
685
  msgstr ""
642
686
 
643
- #: ../app/models/setting/discovered.rb:37
687
+ #: ../app/models/setting/discovered.rb:33
644
688
  msgid "PXEGrub template to be used when pinning a host to discovery"
645
689
  msgstr ""
646
690
 
647
- #: ../app/models/setting/discovered.rb:37
691
+ #: ../app/models/setting/discovered.rb:33
648
692
  msgid "Locked PXEGrub template name"
649
693
  msgstr ""
650
694
 
651
- #: ../app/models/setting/discovered.rb:38
695
+ #: ../app/models/setting/discovered.rb:34
652
696
  msgid "PXEGrub2 template to be used when pinning a host to discovery"
653
697
  msgstr ""
654
698
 
655
- #: ../app/models/setting/discovered.rb:38
699
+ #: ../app/models/setting/discovered.rb:34
656
700
  msgid "Locked PXEGrub2 template name"
657
701
  msgstr ""
658
702
 
659
- #: ../app/models/setting/discovered.rb:39
703
+ #: ../app/models/setting/discovered.rb:35
660
704
  msgid "Force DNS entries creation when provisioning discovered host"
661
705
  msgstr ""
662
706
 
663
- #: ../app/models/setting/discovered.rb:39
707
+ #: ../app/models/setting/discovered.rb:35
664
708
  msgid "Force DNS"
665
709
  msgstr ""
666
710
 
667
- #: ../app/models/setting/discovered.rb:40
668
- msgid "Do not allow to discover existing managed host matching MAC of a provisioning NIC (errors out early)"
711
+ #: ../app/models/setting/discovered.rb:36
712
+ msgid ""
713
+ "Do not allow to discover existing managed host matching MAC of a "
714
+ "provisioning NIC (errors out early)"
669
715
  msgstr ""
670
716
 
671
- #: ../app/models/setting/discovered.rb:40
717
+ #: ../app/models/setting/discovered.rb:36
672
718
  msgid "Error on existing NIC"
673
719
  msgstr ""
674
720
 
675
- #: ../app/models/setting/discovered.rb:41
721
+ #: ../app/models/setting/discovered.rb:37
676
722
  msgid "Discovery hostname naming pattern"
677
723
  msgstr ""
678
724
 
679
- #: ../app/models/setting/discovered.rb:41
725
+ #: ../app/models/setting/discovered.rb:37
680
726
  msgid "Type of name generator"
681
727
  msgstr ""
682
728
 
@@ -689,7 +735,13 @@ msgid "Discovered host '%{host}' has all NICs filtered out, filter: %{filter}"
689
735
  msgstr ""
690
736
 
691
737
  #: ../app/services/foreman_discovery/fact_parser.rb:12
692
- msgid "Unable to find primary NIC with %{mac} specified via '%{fact}', NIC filter: %{filter}"
738
+ msgid ""
739
+ "Unable to find primary NIC with %{mac} specified via '%{fact}', NIC filter: "
740
+ "%{filter}"
741
+ msgstr ""
742
+
743
+ #: ../app/services/foreman_discovery/host_converter.rb:39
744
+ msgid "IPAM must be configured for subnet '%s'"
693
745
  msgstr ""
694
746
 
695
747
  #: ../app/services/foreman_discovery/node_api/node_resource.rb:75
@@ -700,6 +752,12 @@ msgstr ""
700
752
  msgid "Image API processing error: %{msg} (HTTP/%{code}, body: %{body})"
701
753
  msgstr ""
702
754
 
755
+ #: ../app/views/dashboard/_discovery_widget.html.erb:5
756
+ msgid "Discovered Host"
757
+ msgid_plural "Discovered Hosts"
758
+ msgstr[0] ""
759
+ msgstr[1] ""
760
+
703
761
  #: ../app/views/dashboard/_discovery_widget.html.erb:9
704
762
  msgid "No discovered hosts available"
705
763
  msgstr ""
@@ -708,23 +766,33 @@ msgstr ""
708
766
  msgid "Host"
709
767
  msgstr "Amfitrió"
710
768
 
711
- #: ../app/views/dashboard/_discovery_widget_host_list.html.erb:4 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:6 ../app/views/discovered_hosts/_selected_hosts.html.erb:8 ../app/views/discovered_mailer/discovered_summary.html.erb:18 ../app/views/discovered_mailer/discovered_summary.text.erb:10
769
+ #: ../app/views/dashboard/_discovery_widget_host_list.html.erb:4
770
+ #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:6
771
+ #: ../app/views/discovered_hosts/_selected_hosts.html.erb:8
772
+ #: ../app/views/discovered_mailer/discovered_summary.html.erb:18
773
+ #: ../app/views/discovered_mailer/discovered_summary.text.erb:10
712
774
  msgid "Model"
713
775
  msgstr "Model"
714
776
 
715
- #: ../app/views/dashboard/_discovery_widget_host_list.html.erb:5 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:8 ../app/views/discovered_mailer/discovered_summary.html.erb:20 ../app/views/discovered_mailer/discovered_summary.text.erb:12
777
+ #: ../app/views/dashboard/_discovery_widget_host_list.html.erb:5
778
+ #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:8
779
+ #: ../app/views/discovered_mailer/discovered_summary.html.erb:20
780
+ #: ../app/views/discovered_mailer/discovered_summary.text.erb:12
716
781
  msgid "CPUs"
717
782
  msgstr "Les CPU"
718
783
 
719
- #: ../app/views/dashboard/_discovery_widget_host_list.html.erb:6 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:9 ../app/views/discovered_mailer/discovered_summary.html.erb:21 ../app/views/discovered_mailer/discovered_summary.text.erb:13
784
+ #: ../app/views/dashboard/_discovery_widget_host_list.html.erb:6
785
+ #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:9
786
+ #: ../app/views/discovered_mailer/discovered_summary.html.erb:21
787
+ #: ../app/views/discovered_mailer/discovered_summary.text.erb:13
720
788
  msgid "Memory"
721
789
  msgstr "Memòria"
722
790
 
723
- #: ../app/views/discovered_hosts/_discovered_host_modal.html.erb:23
791
+ #: ../app/views/discovered_hosts/_discovered_host_modal.html.erb:25
724
792
  msgid "Customize Host"
725
793
  msgstr ""
726
794
 
727
- #: ../app/views/discovered_hosts/_discovered_host_modal.html.erb:24
795
+ #: ../app/views/discovered_hosts/_discovered_host_modal.html.erb:26
728
796
  msgid "Create Host"
729
797
  msgstr "Crea un amfitrió"
730
798
 
@@ -736,11 +804,16 @@ msgstr "Selecciona tots els ítems en aquesta pàgina"
736
804
  msgid "items selected. Uncheck to Clear"
737
805
  msgstr "ítems seleccionats. Desmarca per netejar"
738
806
 
739
- #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:5 ../app/views/discovered_hosts/_selected_hosts.html.erb:7 ../app/views/discovered_mailer/discovered_summary.html.erb:17 ../app/views/discovered_mailer/discovered_summary.text.erb:9
807
+ #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:5
808
+ #: ../app/views/discovered_hosts/_selected_hosts.html.erb:7
809
+ #: ../app/views/discovered_mailer/discovered_summary.html.erb:17
810
+ #: ../app/views/discovered_mailer/discovered_summary.text.erb:9
740
811
  msgid "Name"
741
812
  msgstr "Nom"
742
813
 
743
- #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:7 ../app/views/discovered_mailer/discovered_summary.html.erb:19 ../app/views/discovered_mailer/discovered_summary.text.erb:11
814
+ #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:7
815
+ #: ../app/views/discovered_mailer/discovered_summary.html.erb:19
816
+ #: ../app/views/discovered_mailer/discovered_summary.text.erb:11
744
817
  msgid "IP Address"
745
818
  msgstr "Adreça IP"
746
819
 
@@ -752,11 +825,13 @@ msgstr ""
752
825
  msgid "Disks Size"
753
826
  msgstr ""
754
827
 
755
- #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:15 ../app/views/discovered_hosts/_selected_hosts.html.erb:9
828
+ #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:15
829
+ #: ../app/views/discovered_hosts/_selected_hosts.html.erb:9
756
830
  msgid "Location"
757
831
  msgstr "Ubicació"
758
832
 
759
- #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:16 ../app/views/discovered_hosts/_selected_hosts.html.erb:10
833
+ #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:16
834
+ #: ../app/views/discovered_hosts/_selected_hosts.html.erb:10
760
835
  msgid "Organization"
761
836
  msgstr "Organització"
762
837
 
@@ -768,7 +843,8 @@ msgstr "Subxarxa"
768
843
  msgid "Last Facts Upload"
769
844
  msgstr ""
770
845
 
771
- #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:19 ../app/views/discovery_rules/index.html.erb:12
846
+ #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:19
847
+ #: ../app/views/discovery_rules/index.html.erb:12
772
848
  msgid "Actions"
773
849
  msgstr "Accions"
774
850
 
@@ -789,7 +865,9 @@ msgid "Provision %s"
789
865
  msgstr ""
790
866
 
791
867
  #: ../app/views/discovered_hosts/multiple_destroy.html.erb:3
792
- msgid "This might take a while, as all hosts, facts and reports will be destroyed as well"
868
+ msgid ""
869
+ "This might take a while, as all hosts, facts and reports will be destroyed "
870
+ "as well"
793
871
  msgstr ""
794
872
 
795
873
  #: ../app/views/discovered_hosts/select_multiple_location.html.erb:5
@@ -833,7 +911,9 @@ msgid "No discovered hosts found in this context."
833
911
  msgstr ""
834
912
 
835
913
  #: ../app/views/discovered_hosts/welcome.html.erb:8
836
- msgid "This page shows discovered bare-metal or virtual nodes waiting to be provisioned."
914
+ msgid ""
915
+ "This page shows discovered bare-metal or virtual nodes waiting to be "
916
+ "provisioned."
837
917
  msgstr ""
838
918
 
839
919
  #: ../app/views/discovered_hosts/welcome.html.erb:9
@@ -848,19 +928,23 @@ msgstr ""
848
928
  msgid "<b>Foreman</b> Discovered hosts summary"
849
929
  msgstr ""
850
930
 
851
- #: ../app/views/discovered_mailer/discovered_summary.html.erb:10 ../app/views/discovered_mailer/discovered_summary.text.erb:5
931
+ #: ../app/views/discovered_mailer/discovered_summary.html.erb:10
932
+ #: ../app/views/discovered_mailer/discovered_summary.text.erb:5
852
933
  msgid "Summary from %{time} ago to %{now}"
853
934
  msgstr ""
854
935
 
855
- #: ../app/views/discovered_mailer/discovered_summary.html.erb:11 ../app/views/discovered_mailer/discovered_summary.text.erb:3
936
+ #: ../app/views/discovered_mailer/discovered_summary.html.erb:11
937
+ #: ../app/views/discovered_mailer/discovered_summary.text.erb:3
856
938
  msgid "Discovered hosts from Foreman server at %{foreman_url}"
857
939
  msgstr ""
858
940
 
859
- #: ../app/views/discovered_mailer/discovered_summary.html.erb:22 ../app/views/discovered_mailer/discovered_summary.text.erb:14
941
+ #: ../app/views/discovered_mailer/discovered_summary.html.erb:22
942
+ #: ../app/views/discovered_mailer/discovered_summary.text.erb:14
860
943
  msgid "Disk count"
861
944
  msgstr "Nombre de discs"
862
945
 
863
- #: ../app/views/discovered_mailer/discovered_summary.html.erb:23 ../app/views/discovered_mailer/discovered_summary.text.erb:15
946
+ #: ../app/views/discovered_mailer/discovered_summary.html.erb:23
947
+ #: ../app/views/discovered_mailer/discovered_summary.text.erb:15
864
948
  msgid "Disks size"
865
949
  msgstr "Mida de disc"
866
950
 
@@ -909,30 +993,41 @@ msgid "Rule priority (lower integer means higher priority)"
909
993
  msgstr ""
910
994
 
911
995
  #: ../app/views/discovery_rules/_template_inline.erb:2
912
- msgid "Specify target hostname template pattern in the same syntax as in Provisioning Templates (ERB)."
996
+ msgid ""
997
+ "Specify target hostname template pattern in the same syntax as in "
998
+ "Provisioning Templates (ERB)."
913
999
  msgstr ""
914
1000
 
915
1001
  #: ../app/views/discovery_rules/_template_inline.erb:4
916
- msgid "Domain will be appended automatically. A hostname based on MAC address will be used when left blank."
1002
+ msgid ""
1003
+ "Domain will be appended automatically. A hostname based on MAC address will "
1004
+ "be used when left blank."
917
1005
  msgstr ""
918
1006
 
919
1007
  #: ../app/views/discovery_rules/_template_inline.erb:5
920
- msgid "In addition to @host attribute function rand for random integers is available. Examples:"
1008
+ msgid ""
1009
+ "In addition to @host attribute function rand for random integers is "
1010
+ "available. Examples:"
921
1011
  msgstr ""
922
1012
 
923
1013
  #: ../app/views/discovery_rules/_template_inline.erb:8
924
- msgid "When creating hostname patterns, make sure the resulting host names are unique."
1014
+ msgid ""
1015
+ "When creating hostname patterns, make sure the resulting host names are "
1016
+ "unique."
925
1017
  msgstr ""
926
1018
 
927
1019
  #: ../app/views/discovery_rules/_template_inline.erb:9
928
- msgid "Hostnames must not start with numbers. A good approach is to use unique information provided by facter (MAC address, BIOS or serial ID)."
1020
+ msgid ""
1021
+ "Hostnames must not start with numbers. A good approach is to use unique "
1022
+ "information provided by facter (MAC address, BIOS or serial ID)."
929
1023
  msgstr ""
930
1024
 
931
1025
  #: ../app/views/discovery_rules/edit.html.erb:1
932
1026
  msgid "Edit %s"
933
1027
  msgstr "Edita %s"
934
1028
 
935
- #: ../app/views/discovery_rules/index.html.erb:1 ../lib/foreman_discovery/engine.rb:163
1029
+ #: ../app/views/discovery_rules/index.html.erb:1
1030
+ #: ../lib/foreman_discovery/engine.rb:163
936
1031
  msgid "Discovery Rules"
937
1032
  msgstr "Regles de descobriment"
938
1033
 
@@ -997,9 +1092,13 @@ msgid "Discovery Proxy"
997
1092
  msgstr ""
998
1093
 
999
1094
  #: ../lib/foreman_discovery/engine.rb:189
1000
- msgid "Discovery Proxy to use within this subnet for managing connection to discovered hosts"
1095
+ msgid ""
1096
+ "Discovery Proxy to use within this subnet for managing connection to "
1097
+ "discovered hosts"
1001
1098
  msgstr ""
1002
1099
 
1003
1100
  #: ../lib/foreman_discovery/engine.rb:190
1004
- msgid "ID of Discovery Proxy to use within this subnet for managing connection to discovered hosts"
1101
+ msgid ""
1102
+ "ID of Discovery Proxy to use within this subnet for managing connection to "
1103
+ "discovered hosts"
1005
1104
  msgstr ""