foreman_discovery 5.0.1 → 5.0.2

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 502993f89f5431e289e5efb8461e7cc0ebaacd8e
4
- data.tar.gz: de1e98597a4aa81d8a79c47eb92e16d839217306
3
+ metadata.gz: a15855ae2fea53392d85bbf74e58ad95a03e2f31
4
+ data.tar.gz: 4618507b72076897b1c03405964c7a544fa1a199
5
5
  SHA512:
6
- metadata.gz: 8cc594acebdc231572f3b2057a04e3317506ac454c5befd1c51aad5d81efb19e343cc37cc6a3ed77eac8e30388486e3e782afe812a7094fccc978c054cebea0c
7
- data.tar.gz: 1d1cb83f0c3ada7a3c43c8f150db2e0e143cb4abbca4c783c5f48c7dc06faa7c2301b4615681bec8b56dd88b3c73a7b82b3f768810241f566bc2d9f6ebea95f8
6
+ metadata.gz: 87adf7fa08550375f25e021ed9fe6749acf5d4ef09aad6370b9630e34ac5066cd9fb0009a7a0cbae071da765da542f30e6ea13e641195f42130adacd9edffffa
7
+ data.tar.gz: e03789da0d07c002a7098816e5b02875d55fdf7019cfcdfbab0076b13d2b9fa3b9feefbf657b92d539ec2690a49064bda090d6bac0c3e504fbf69666c7eaa62c
@@ -185,15 +185,15 @@ class DiscoveredHostsController < ::ApplicationController
185
185
  private
186
186
 
187
187
  def init_regex_and_categories
188
- hightlights = Setting[:discovery_facts_highlights].empty? ? /^(productname|memorysize|manufacturer|architecture|macaddress$|processorcount|physicalprocessorcount|discovery_subnet|discovery_boot|ipaddress$)/ : Regexp.new(eval(Setting[:discovery_facts_highlights]))
189
- storage = Setting[:discovery_facts_storage].empty? ? /^blockdevice/ : Regexp.new(eval(Setting[:discovery_facts_storage]))
190
- hardware = Setting[:discovery_facts_hardware].empty? ? /^(hardw|manufacturer|memo|process)/ : Regexp.new(eval(Setting[:discovery_facts__hardware]))
191
- network = Setting[:discovery_facts_network].empty? ? /^(ipaddress|interfaces|dhcp|fqdn|hostname|link|mtu|net|macaddress|wol|port|speed)/ : Regexp.new(eval(Setting[:discovery_facts_network]))
192
- software = Setting[:discovery_facts_software].empty? ? /^(bios|os|discovery)/ : Regexp.new(eval(Setting[:discovery_facts_software]))
193
- ipmi = Setting[:discovery_facts_ipmi].empty? ? /^ipmi/ : Regexp.new(eval(Setting[:discovery_facts_ipmi]))
188
+ hightlights = Setting[:discovery_facts_highlights].empty? ? /^(productname|memorysize|manufacturer|architecture|macaddress$|processorcount|physicalprocessorcount|discovery_subnet|discovery_boot|ipaddress$)/ : Regexp.new(Setting[:discovery_facts_highlights])
189
+ storage = Setting[:discovery_facts_storage].empty? ? /^blockdevice/ : Regexp.new(Setting[:discovery_facts_storage])
190
+ hardware = Setting[:discovery_facts_hardware].empty? ? /^(hardw|manufacturer|memo|process)/ : Regexp.new(Setting[:discovery_facts__hardware])
191
+ network = Setting[:discovery_facts_network].empty? ? /^(ipaddress|interfaces|dhcp|fqdn|hostname|link|mtu|net|macaddress|wol|port|speed)/ : Regexp.new(Setting[:discovery_facts_network])
192
+ software = Setting[:discovery_facts_software].empty? ? /^(bios|os|discovery)/ : Regexp.new(Setting[:discovery_facts_software])
193
+ ipmi = Setting[:discovery_facts_ipmi].empty? ? /^ipmi/ : Regexp.new(Setting[:discovery_facts_ipmi])
194
194
  @regex_array = [hightlights, storage, hardware, network, software, ipmi, false]
195
195
  @categories = Array.new(7) { Hash.new }
196
- @categories_names = [:Hightlights, :Storage, :Hardware, :Network, :Software, :IPMI, :Misceleneous]
196
+ @categories_names = [N_("Highlights"), N_("Storage"), N_("Hardware"), N_("Network"), N_("Software"), N_("IPMI"), N_("Miscellaneous")]
197
197
  end
198
198
 
199
199
  def assign_fact_to_category(key, value )
@@ -52,7 +52,7 @@ class Setting::Discovered < ::Setting
52
52
 
53
53
  Setting.transaction do
54
54
  [
55
- self.set('discovery_facts_highlights', N_("Regex to organize facts for highlights section"), ""),
55
+ self.set('discovery_facts_highlights', N_("Regex to organize facts for highlights section - e.g. ^(abc|cde)$"), ""),
56
56
  self.set('discovery_facts_storage', N_("Regex to organize facts for storage section"), ""),
57
57
  self.set('discovery_facts_software', N_("Regex to organize facts for software section"), ""),
58
58
  self.set('discovery_facts_hardware', N_("Regex to organize facts for hardware section"), ""),
@@ -5,7 +5,7 @@
5
5
  <div class="row">
6
6
  <div class="col-md-6">
7
7
  <div class="panel panel-default">
8
- <div class="panel-heading" ><strong> <%= @categories_names[0] %></strong> </div>
8
+ <div class="panel-heading" ><strong> <%= _(@categories_names[0]) %></strong> </div>
9
9
  <table class="table table-bordered table-condensed table-fixed">
10
10
  <% @categories[0].sort.each do |keys, val| %>
11
11
  <tr class="">
@@ -21,7 +21,7 @@
21
21
  <h4 class="panel-title">
22
22
  <a role="button" class="expendable-link" data-toggle="collapse" data-parent="#accordion" href="#interfaces-panel" aria-expanded="true" onclick="$(this).find(':first-child').toggleClass('glyphicon glyphicon-minus-sign glyphicon glyphicon-plus-sign')">
23
23
  <span class="glyphicon glyphicon-minus-sign" aria-hidden="true"></span>
24
- Interfaces
24
+ <%= _("Interfaces") %>
25
25
  </a>
26
26
  </h4>
27
27
  </div>
@@ -56,7 +56,7 @@
56
56
  <h4 class="panel-title">
57
57
  <a role="button" class="expendable-link" data-toggle="collapse" data-parent="#accordion" href="#<%= @categories_names[index].to_s + "panel" %>" aria-expanded="true" onclick="$(this).find(':first-child').toggleClass('glyphicon glyphicon-minus-sign glyphicon glyphicon-plus-sign')">
58
58
  <span class="glyphicon glyphicon<%= (@categories_names[index].to_s.include?("Storage")? "-minus-sign":"-plus-sign")%>" aria-hidden="true"></span>
59
- <%= @categories_names[index] %>
59
+ <%= _(@categories_names[index]) %>
60
60
  </a>
61
61
  </h4>
62
62
  </div>
@@ -1,3 +1,3 @@
1
1
  module ForemanDiscovery
2
- VERSION = "5.0.1"
2
+ VERSION = "5.0.2"
3
3
  end
@@ -1,17 +1,17 @@
1
1
  # SOME DESCRIPTIVE TITLE.
2
- # Copyright (C) 2015 Foreman developers
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
- # Robert Antoni Buj i Gelonch <rbuj@fedoraproject.org>, 2015
6
+ # Robert Antoni Buj i Gelonch <rbuj@fedoraproject.org>, 2015-2016
7
7
  msgid ""
8
8
  msgstr ""
9
9
  "Project-Id-Version: Foreman\n"
10
- "Report-Msgid-Bugs-To: foreman-dev@googlegroups.com\n"
11
- "PO-Revision-Date: 2015-12-11 09:29+0000\n"
12
- "Last-Translator: Robert Antoni Buj i Gelonch <rbuj@fedoraproject.org>\n"
13
- "Language-Team: Catalan (http://www.transifex.com/foreman/foreman/language/ca/)"
14
- "\n"
10
+ "Report-Msgid-Bugs-To: \n"
11
+ "POT-Creation-Date: 2016-02-25 10:58+0100\n"
12
+ "PO-Revision-Date: 2016-02-25 10:06+0000\n"
13
+ "Last-Translator: Lukáš Zapletal\n"
14
+ "Language-Team: Catalan (http://www.transifex.com/foreman/foreman/language/ca/)\n"
15
15
  "MIME-Version: 1.0\n"
16
16
  "Content-Type: text/plain; charset=UTF-8\n"
17
17
  "Content-Transfer-Encoding: 8bit\n"
@@ -22,19 +22,23 @@ msgstr ""
22
22
  msgid "List all discovered hosts"
23
23
  msgstr "Llista tots els amfitrions descoberts"
24
24
 
25
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:16 ../app/controllers/api/v2/discovery_rules_controller.rb:14
25
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:16
26
+ #: ../app/controllers/api/v2/discovery_rules_controller.rb:14
26
27
  msgid "filter results"
27
28
  msgstr "filtra els resultats"
28
29
 
29
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:17 ../app/controllers/api/v2/discovery_rules_controller.rb:15
30
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:17
31
+ #: ../app/controllers/api/v2/discovery_rules_controller.rb:15
30
32
  msgid "sort results"
31
33
  msgstr "ordena els resultats"
32
34
 
33
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:18 ../app/controllers/api/v2/discovery_rules_controller.rb:16
35
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:18
36
+ #: ../app/controllers/api/v2/discovery_rules_controller.rb:16
34
37
  msgid "paginate results"
35
38
  msgstr "pagina els resultats"
36
39
 
37
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:19 ../app/controllers/api/v2/discovery_rules_controller.rb:17
40
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:19
41
+ #: ../app/controllers/api/v2/discovery_rules_controller.rb:17
38
42
  msgid "number of entries per request"
39
43
  msgstr "Nombre d'entrades per petició"
40
44
 
@@ -48,7 +52,7 @@ msgstr "Crea un amfitrió descobert per a provar-ho (utilitzeu /facts per crear
48
52
 
49
53
  #: ../app/controllers/api/v2/discovered_hosts_controller.rb:47
50
54
  msgid "Provision a discovered host"
51
- msgstr ""
55
+ msgstr "Aprovisiona un amfitrió descobert"
52
56
 
53
57
  #: ../app/controllers/api/v2/discovered_hosts_controller.rb:52
54
58
  msgid "not required if using a subnet with DHCP proxy"
@@ -59,11 +63,14 @@ msgid "not required if it's a virtual machine"
59
63
  msgstr ""
60
64
 
61
65
  #: ../app/controllers/api/v2/discovered_hosts_controller.rb:73
62
- msgid "UUID to track orchestration tasks status, GET /api/orchestration/:UUID/tasks"
66
+ msgid ""
67
+ "UUID to track orchestration tasks status, GET /api/orchestration/:UUID/tasks"
63
68
  msgstr ""
64
69
 
65
70
  #: ../app/controllers/api/v2/discovered_hosts_controller.rb:75
66
- msgid "required if value is not inherited from host group or default password in settings"
71
+ msgid ""
72
+ "required if value is not inherited from host group or default password in "
73
+ "settings"
67
74
  msgstr ""
68
75
 
69
76
  #: ../app/controllers/api/v2/discovered_hosts_controller.rb:85
@@ -75,36 +82,43 @@ msgid "Upload facts for a host, creating the host if required"
75
82
  msgstr "Puja els objectes d'interès per a un amfitrió, creant el nou amfitrió si fos necessari"
76
83
 
77
84
  #: ../app/controllers/api/v2/discovered_hosts_controller.rb:93
78
- 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)"
85
+ msgid ""
86
+ "hash containing facts for the host with minimum set of facts: "
87
+ "discovery_bootif, macaddress_eth0, ipaddress, ipaddress_eth0, interfaces: "
88
+ "eth0 (example in case primary interface is named eth0)"
79
89
  msgstr ""
80
90
 
81
91
  #: ../app/controllers/api/v2/discovered_hosts_controller.rb:112
82
92
  msgid "Execute rules against a discovered host"
83
93
  msgstr ""
84
94
 
85
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:118 ../app/controllers/discovered_hosts_controller.rb:147
95
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:118
96
+ #: ../app/controllers/discovered_hosts_controller.rb:147
86
97
  msgid "Host %{host} was provisioned with rule %{rule}"
87
- msgstr ""
98
+ msgstr "L'amfitrió %{host} va ser aprovisionat amb la regla %{rule}"
88
99
 
89
100
  #: ../app/controllers/api/v2/discovered_hosts_controller.rb:121
90
101
  msgid "Unable to provision %{host}: %{errors}"
91
- msgstr ""
102
+ msgstr "No es pot aprovisionar a %{host}: %{errors}"
92
103
 
93
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:127 ../app/controllers/discovered_hosts_controller.rb:154
104
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:127
105
+ #: ../app/controllers/discovered_hosts_controller.rb:154
94
106
  msgid "No rule found for host %s"
95
- msgstr ""
107
+ msgstr "No s'ha trobat cap regla per a l'amfitrió %s"
96
108
 
97
109
  #: ../app/controllers/api/v2/discovered_hosts_controller.rb:134
98
110
  msgid "Execute rules against all currently discovered hosts"
99
- msgstr ""
111
+ msgstr "Executa les regles contra tots els amfitrions detectats actualment"
100
112
 
101
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:138 ../app/controllers/discovered_hosts_controller.rb:160
113
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:138
114
+ #: ../app/controllers/discovered_hosts_controller.rb:160
102
115
  msgid "Errors during auto provisioning: %s"
103
- msgstr ""
116
+ msgstr "Erros durant l'auto aprovisionament: %s"
104
117
 
105
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:141 ../app/controllers/discovered_hosts_controller.rb:163
118
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:141
119
+ #: ../app/controllers/discovered_hosts_controller.rb:163
106
120
  msgid "No discovered hosts to provision"
107
- msgstr ""
121
+ msgstr "Sense amfitrions descoberts per aprovisionar"
108
122
 
109
123
  #: ../app/controllers/api/v2/discovered_hosts_controller.rb:163
110
124
  msgid "%s discovered hosts were provisioned"
@@ -122,9 +136,10 @@ msgstr "S'està reiniciant un amfitrió descobert"
122
136
  msgid "Rebooting all discovered hosts"
123
137
  msgstr "S'estan reiniciant tots els amfitrions descoberts"
124
138
 
125
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:203 ../app/controllers/discovered_hosts_controller.rb:105
139
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:203
140
+ #: ../app/controllers/discovered_hosts_controller.rb:105
126
141
  msgid "Discovered hosts are rebooting now"
127
- msgstr ""
142
+ msgstr "Ara s'estan reiniciant els amfitrions descoberts"
128
143
 
129
144
  #: ../app/controllers/api/v2/discovery_rules_controller.rb:13
130
145
  msgid "List all discovery rules"
@@ -136,7 +151,7 @@ msgstr "Mostra una regla de descobriment"
136
151
 
137
152
  #: ../app/controllers/api/v2/discovery_rules_controller.rb:31
138
153
  msgid "represents rule name shown to the users"
139
- msgstr ""
154
+ msgstr "representa el nom de la regla que es mostra als usuaris"
140
155
 
141
156
  #: ../app/controllers/api/v2/discovery_rules_controller.rb:32
142
157
  msgid "query to match discovered hosts for the particular rule"
@@ -144,18 +159,20 @@ msgstr ""
144
159
 
145
160
  #: ../app/controllers/api/v2/discovery_rules_controller.rb:33
146
161
  msgid "the hostgroup that is used to auto provision a host"
147
- msgstr ""
162
+ msgstr "el grup d'amfitrions que s'utilitza per a l'auto aprovisionament d'un amfitrió"
148
163
 
149
164
  #: ../app/controllers/api/v2/discovery_rules_controller.rb:34
150
- msgid "defines a pattern to assign human-readable hostnames to the matching hosts"
165
+ msgid ""
166
+ "defines a pattern to assign human-readable hostnames to the matching hosts"
151
167
  msgstr ""
152
168
 
153
169
  #: ../app/controllers/api/v2/discovery_rules_controller.rb:35
154
170
  msgid "enables to limit maximum amount of provisioned hosts per rule"
155
- msgstr ""
171
+ msgstr "permet la limitació del nombre total màxim dels amfitrions aprovisionats per cada regla"
156
172
 
157
173
  #: ../app/controllers/api/v2/discovery_rules_controller.rb:36
158
- msgid "puts the rules in order, low numbers go first. Must be greater then zero"
174
+ msgid ""
175
+ "puts the rules in order, low numbers go first. Must be greater then zero"
159
176
  msgstr ""
160
177
 
161
178
  #: ../app/controllers/api/v2/discovery_rules_controller.rb:37
@@ -184,7 +201,7 @@ msgstr ""
184
201
 
185
202
  #: ../app/controllers/concerns/foreman/controller/discovered_extensions.rb:63
186
203
  msgid "Errors during reboot: %s"
187
- msgstr ""
204
+ msgstr "Errors durant el reinici: %s"
188
205
 
189
206
  #: ../app/controllers/concerns/foreman/controller/discovered_extensions.rb:81
190
207
  msgid "No discovered hosts to reboot"
@@ -212,7 +229,7 @@ msgstr "S'està reiniciant l'amfitrió %s"
212
229
 
213
230
  #: ../app/controllers/discovered_hosts_controller.rb:91
214
231
  msgid "Failed to reboot host %s"
215
- msgstr ""
232
+ msgstr "No s'ha pogut reiniciar l'amfitrió %s."
216
233
 
217
234
  #: ../app/controllers/discovered_hosts_controller.rb:94
218
235
  msgid "Failed to reboot host %{hostname} with error %{error_message}"
@@ -232,15 +249,15 @@ msgstr ""
232
249
 
233
250
  #: ../app/controllers/discovered_hosts_controller.rb:151
234
251
  msgid "Failed to auto provision host %s: %s"
235
- msgstr ""
252
+ msgstr "No s'ha pogut auto aprovisionar l'amfitrió %s: %s"
236
253
 
237
254
  #: ../app/controllers/discovered_hosts_controller.rb:179
238
255
  msgid "Discovered hosts are provisioning now"
239
- msgstr ""
256
+ msgstr "Els amfitrions descoberts ara tenen aprovisionament"
240
257
 
241
258
  #: ../app/controllers/discovered_hosts_controller.rb:267
242
259
  msgid "No hosts were found with that id or name"
243
- msgstr ""
260
+ msgstr "No s'ha trobat cap amfitrió amb aquest id. o nom"
244
261
 
245
262
  #: ../app/controllers/discovered_hosts_controller.rb:271
246
263
  msgid "No hosts selected"
@@ -248,47 +265,52 @@ msgstr "Cap amfitrió seleccionat"
248
265
 
249
266
  #: ../app/controllers/discovered_hosts_controller.rb:277
250
267
  msgid "Something went wrong while selecting hosts - %s"
251
- msgstr ""
268
+ msgstr "Alguna cosa va anar malament mentre se seleccionaven els amfitrions - %s"
252
269
 
253
270
  #: ../app/controllers/discovery_rules_controller.rb:66
254
271
  msgid "Rule disabled"
255
- msgstr ""
272
+ msgstr "Regla inhabilitada"
256
273
 
257
274
  #: ../app/controllers/discovery_rules_controller.rb:66
258
275
  msgid "Rule enabled"
259
- msgstr ""
276
+ msgstr "Regla habilitada"
260
277
 
261
278
  #: ../app/helpers/discovered_hosts_helper.rb:11
262
279
  msgid "%s ago"
263
280
  msgstr "fa %s"
264
281
 
265
- #: ../app/helpers/discovered_hosts_helper.rb:15 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:42
282
+ #: ../app/helpers/discovered_hosts_helper.rb:15
283
+ #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:42
266
284
  msgid "Provision"
267
- msgstr ""
285
+ msgstr "Aprovisiona"
268
286
 
269
- #: ../app/helpers/discovered_hosts_helper.rb:16 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:43
287
+ #: ../app/helpers/discovered_hosts_helper.rb:16
288
+ #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:43
270
289
  msgid "Auto Provision"
271
- msgstr ""
290
+ msgstr "Auto aprovisiona"
272
291
 
273
- #: ../app/helpers/discovered_hosts_helper.rb:17 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:44
292
+ #: ../app/helpers/discovered_hosts_helper.rb:17
293
+ #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:44
274
294
  msgid "Refresh facts"
275
295
  msgstr "Refresca els objectes d'interès"
276
296
 
277
- #: ../app/helpers/discovered_hosts_helper.rb:18 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:45
297
+ #: ../app/helpers/discovered_hosts_helper.rb:18
298
+ #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:45
278
299
  msgid "Reboot"
279
300
  msgstr "Reinicia"
280
301
 
281
302
  #: ../app/helpers/discovered_hosts_helper.rb:21
282
303
  msgid "Back"
283
- msgstr ""
304
+ msgstr "Enrere"
284
305
 
285
- #: ../app/helpers/discovered_hosts_helper.rb:23 ../app/helpers/discovered_hosts_helper.rb:46
306
+ #: ../app/helpers/discovered_hosts_helper.rb:23
307
+ #: ../app/helpers/discovered_hosts_helper.rb:46
286
308
  msgid "Select Action"
287
309
  msgstr "Selecciona l'acció"
288
310
 
289
311
  #: ../app/helpers/discovered_hosts_helper.rb:30
290
312
  msgid "Expand All"
291
- msgstr ""
313
+ msgstr "Expandeix-ho tot"
292
314
 
293
315
  #: ../app/helpers/discovered_hosts_helper.rb:35
294
316
  msgid "Delete"
@@ -368,21 +390,24 @@ msgstr ""
368
390
 
369
391
  #: ../app/models/discovery_rule.rb:11
370
392
  msgid "can't contain white spaces."
371
- msgstr ""
393
+ msgstr "no pot contenir espais en blanc."
372
394
 
373
395
  #: ../app/models/discovery_rule.rb:13
374
396
  msgid "must start with a letter or ERB."
375
- msgstr ""
397
+ msgstr "ha de començar amb una lletra o ERB."
376
398
 
377
399
  #: ../app/models/discovery_rule.rb:49
378
- msgid "Host group organization %s must also be associated to the discovery rule"
379
- msgid_plural "Host group organizations %s must also be associated to the discovery rule"
400
+ msgid ""
401
+ "Host group organization %s must also be associated to the discovery rule"
402
+ msgid_plural ""
403
+ "Host group organizations %s must also be associated to the discovery rule"
380
404
  msgstr[0] ""
381
405
  msgstr[1] ""
382
406
 
383
407
  #: ../app/models/discovery_rule.rb:55
384
408
  msgid "Host group location %s must also be associated to the discovery rule"
385
- msgid_plural "Host group locations %s must also be associated to the discovery rule"
409
+ msgid_plural ""
410
+ "Host group locations %s must also be associated to the discovery rule"
386
411
  msgstr[0] ""
387
412
  msgstr[1] ""
388
413
 
@@ -391,11 +416,15 @@ msgid "Invalid facts, must be a Hash"
391
416
  msgstr "Objectes d'interès no vàlids, han de tenir un Hash"
392
417
 
393
418
  #: ../app/models/host/discovered.rb:39
394
- msgid "Expected discovery_fact '%s' is missing, unable to detect primary interface and set hostname"
419
+ msgid ""
420
+ "Expected discovery_fact '%s' is missing, unable to detect primary interface "
421
+ "and set hostname"
395
422
  msgstr ""
396
423
 
397
424
  #: ../app/models/host/discovered.rb:46
398
- msgid "Invalid facts: hash does not contain a valid value for any of the facts in the discovery_hostname setting: %s"
425
+ msgid ""
426
+ "Invalid facts: hash does not contain a valid value for any of the facts in "
427
+ "the discovery_hostname setting: %s"
399
428
  msgstr ""
400
429
 
401
430
  #: ../app/models/host/discovered.rb:107
@@ -408,11 +437,11 @@ msgstr "No s'han pogut obtenir els objectes d'interès del servidor intermediari
408
437
 
409
438
  #: ../app/models/host/discovered.rb:165
410
439
  msgid "Unable to reboot %{name} via %{url}: %{msg}"
411
- msgstr ""
440
+ msgstr "No es pot reiniciar %{name} a través de %{url}: %{msg}"
412
441
 
413
442
  #: ../app/models/host/discovered.rb:173
414
443
  msgid "Unable to perform kexec on %{name} via %{url}: %{msg}"
415
- msgstr ""
444
+ msgstr "No es pot realitzar kexec a %{name} a través de %{url}: %{msg}"
416
445
 
417
446
  #: ../app/models/host/discovered.rb:192
418
447
  msgid "Invalid hostname: Could not normalize the hostname"
@@ -447,12 +476,14 @@ msgid "List of facts to use for the hostname (separated by comma, first wins)"
447
476
  msgstr ""
448
477
 
449
478
  #: ../app/models/setting/discovered.rb:21
450
- msgid "Automatically provision newly discovered hosts, according to the provisioning rules"
479
+ msgid ""
480
+ "Automatically provision newly discovered hosts, according to the "
481
+ "provisioning rules"
451
482
  msgstr ""
452
483
 
453
484
  #: ../app/models/setting/discovered.rb:22
454
485
  msgid "Automatically reboot discovered host during provisioning"
455
- msgstr ""
486
+ msgstr "Reinicia automàticament els amfitrions descoberts durant l'aprovisionament"
456
487
 
457
488
  #: ../app/models/setting/discovered.rb:28
458
489
  msgid "The default prefix to use for the host name, must start with a letter"
@@ -472,30 +503,32 @@ msgstr ""
472
503
 
473
504
  #: ../app/models/setting/discovered.rb:55
474
505
  msgid "Regex to organize facts for highlights section"
475
- msgstr ""
506
+ msgstr "Expressió regular per a organitzar els objectes d'interès per a la secció d'aspectes destacats"
476
507
 
477
508
  #: ../app/models/setting/discovered.rb:56
478
509
  msgid "Regex to organize facts for storage section"
479
- msgstr ""
510
+ msgstr "Expressió regular per a organitzar els objectes d'interès per a la secció d'emmagatzematge"
480
511
 
481
512
  #: ../app/models/setting/discovered.rb:57
482
513
  msgid "Regex to organize facts for software section"
483
- msgstr ""
514
+ msgstr "Expressió regular per a organitzar els objectes d'interès per a la secció de programari"
484
515
 
485
516
  #: ../app/models/setting/discovered.rb:58
486
517
  msgid "Regex to organize facts for hardware section"
487
- msgstr ""
518
+ msgstr "Expressió regular per a organitzar els objectes d'interès per a la secció de programari"
488
519
 
489
520
  #: ../app/models/setting/discovered.rb:59
490
521
  msgid "Regex to organize facts for network section"
491
- msgstr ""
522
+ msgstr "Expressió regular per a organitzar els objectes d'interès per a la secció de xarxa"
492
523
 
493
524
  #: ../app/models/setting/discovered.rb:60
494
525
  msgid "Regex to organize facts for ipmi section"
495
- msgstr ""
526
+ msgstr "Expressió regular per a organitzar els objectes d'interès per a la secció ipmi"
496
527
 
497
528
  #: ../app/services/foreman_discovery/fact_parser.rb:9
498
- msgid "Unable to detect primary interface using MAC '%{mac}' specified by discovery_fact '%{fact}'"
529
+ msgid ""
530
+ "Unable to detect primary interface using MAC '%{mac}' specified by "
531
+ "discovery_fact '%{fact}'"
499
532
  msgstr ""
500
533
 
501
534
  #: ../app/services/foreman_discovery/node_api/node_resource.rb:75
@@ -514,19 +547,30 @@ msgstr ""
514
547
  msgid "Host"
515
548
  msgstr "Amfitrió"
516
549
 
517
- #: ../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
550
+ #: ../app/views/dashboard/_discovery_widget_host_list.html.erb:4
551
+ #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:7
552
+ #: ../app/views/discovered_hosts/_selected_hosts.html.erb:8
553
+ #: ../app/views/discovered_mailer/discovered_summary.html.erb:18
554
+ #: ../app/views/discovered_mailer/discovered_summary.text.erb:10
518
555
  msgid "Model"
519
556
  msgstr "Model"
520
557
 
521
- #: ../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
558
+ #: ../app/views/dashboard/_discovery_widget_host_list.html.erb:5
559
+ #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:9
560
+ #: ../app/views/discovered_mailer/discovered_summary.html.erb:20
561
+ #: ../app/views/discovered_mailer/discovered_summary.text.erb:12
522
562
  msgid "CPUs"
523
563
  msgstr "Les CPU"
524
564
 
525
- #: ../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
565
+ #: ../app/views/dashboard/_discovery_widget_host_list.html.erb:6
566
+ #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:10
567
+ #: ../app/views/discovered_mailer/discovered_summary.html.erb:21
568
+ #: ../app/views/discovered_mailer/discovered_summary.text.erb:13
526
569
  msgid "Memory"
527
570
  msgstr "Memòria"
528
571
 
529
- #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:2 ../lib/foreman_discovery/engine.rb:136
572
+ #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:2
573
+ #: ../lib/foreman_discovery/engine.rb:136
530
574
  msgid "Discovered hosts"
531
575
  msgstr "Amfitrions descoberts"
532
576
 
@@ -538,27 +582,38 @@ msgstr "ítems seleccionats. Desmarca per netejar"
538
582
  msgid "Select all items in this page"
539
583
  msgstr "Selecciona tots els ítems en aquesta pàgina"
540
584
 
541
- #: ../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
585
+ #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:6
586
+ #: ../app/views/discovered_hosts/_selected_hosts.html.erb:7
587
+ #: ../app/views/discovered_mailer/discovered_summary.html.erb:17
588
+ #: ../app/views/discovered_mailer/discovered_summary.text.erb:9
542
589
  msgid "Name"
543
590
  msgstr "Nom"
544
591
 
545
- #: ../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
592
+ #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:8
593
+ #: ../app/views/discovered_mailer/discovered_summary.html.erb:19
594
+ #: ../app/views/discovered_mailer/discovered_summary.text.erb:11
546
595
  msgid "IP Address"
547
596
  msgstr "Adreça IP"
548
597
 
549
- #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:11 ../app/views/discovered_mailer/discovered_summary.html.erb:22 ../app/views/discovered_mailer/discovered_summary.text.erb:14
598
+ #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:11
599
+ #: ../app/views/discovered_mailer/discovered_summary.html.erb:22
600
+ #: ../app/views/discovered_mailer/discovered_summary.text.erb:14
550
601
  msgid "Disk count"
551
602
  msgstr "Nombre de discs"
552
603
 
553
- #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:12 ../app/views/discovered_mailer/discovered_summary.html.erb:23 ../app/views/discovered_mailer/discovered_summary.text.erb:15
604
+ #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:12
605
+ #: ../app/views/discovered_mailer/discovered_summary.html.erb:23
606
+ #: ../app/views/discovered_mailer/discovered_summary.text.erb:15
554
607
  msgid "Disks size"
555
608
  msgstr "Mida de disc"
556
609
 
557
- #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:17 ../app/views/discovered_hosts/_selected_hosts.html.erb:10
610
+ #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:17
611
+ #: ../app/views/discovered_hosts/_selected_hosts.html.erb:10
558
612
  msgid "Location"
559
613
  msgstr "Ubicació"
560
614
 
561
- #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:20 ../app/views/discovered_hosts/_selected_hosts.html.erb:13
615
+ #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:20
616
+ #: ../app/views/discovered_hosts/_selected_hosts.html.erb:13
562
617
  msgid "Organization"
563
618
  msgstr "Organització"
564
619
 
@@ -592,14 +647,16 @@ msgstr "Reinicia-ho tot"
592
647
 
593
648
  #: ../app/views/discovered_hosts/index.html.erb:3
594
649
  msgid "Auto Provision All"
595
- msgstr ""
650
+ msgstr "Auto aprovisiona-ho tot"
596
651
 
597
652
  #: ../app/views/discovered_hosts/multiple_destroy.html.erb:4
598
653
  msgid "Warning"
599
654
  msgstr "Advertència"
600
655
 
601
656
  #: ../app/views/discovered_hosts/multiple_destroy.html.erb:5
602
- msgid "This might take a while, as all hosts, facts and reports will be destroyed as well"
657
+ msgid ""
658
+ "This might take a while, as all hosts, facts and reports will be destroyed "
659
+ "as well"
603
660
  msgstr ""
604
661
 
605
662
  #: ../app/views/discovered_hosts/select_multiple_location.html.erb:5
@@ -616,15 +673,15 @@ msgstr "Amfitrions descoberts: %s"
616
673
 
617
674
  #: ../app/views/discovered_hosts/show.html.erb:32
618
675
  msgid "Identifier"
619
- msgstr ""
676
+ msgstr "Identificador"
620
677
 
621
678
  #: ../app/views/discovered_hosts/show.html.erb:33
622
679
  msgid "MAC address"
623
- msgstr ""
680
+ msgstr "Adreça MAC"
624
681
 
625
682
  #: ../app/views/discovered_hosts/show.html.erb:34
626
683
  msgid "IP address"
627
- msgstr ""
684
+ msgstr "Adreça IP"
628
685
 
629
686
  #: ../app/views/discovered_mailer/discovered_summary.html.erb:6
630
687
  msgid "Summary report for discovered hosts from Foreman"
@@ -634,11 +691,13 @@ msgstr ""
634
691
  msgid "<b>Foreman</b> Discovered hosts summary"
635
692
  msgstr ""
636
693
 
637
- #: ../app/views/discovered_mailer/discovered_summary.html.erb:10 ../app/views/discovered_mailer/discovered_summary.text.erb:5
694
+ #: ../app/views/discovered_mailer/discovered_summary.html.erb:10
695
+ #: ../app/views/discovered_mailer/discovered_summary.text.erb:5
638
696
  msgid "Summary from %{time} ago to %{now}"
639
697
  msgstr ""
640
698
 
641
- #: ../app/views/discovered_mailer/discovered_summary.html.erb:11 ../app/views/discovered_mailer/discovered_summary.text.erb:3
699
+ #: ../app/views/discovered_mailer/discovered_summary.html.erb:11
700
+ #: ../app/views/discovered_mailer/discovered_summary.text.erb:3
642
701
  msgid "Discovered hosts from Foreman server at %{foreman_url}"
643
702
  msgstr ""
644
703
 
@@ -675,15 +734,23 @@ msgid "Template"
675
734
  msgstr "Plantilla"
676
735
 
677
736
  #: ../app/views/discovery_rules/_form.html.erb:26
678
- msgid "Specify target hostname template pattern in the same syntax as in Provisioning Templates (ERB)."
737
+ msgid ""
738
+ "Specify target hostname template pattern in the same syntax as in "
739
+ "Provisioning Templates (ERB)."
679
740
  msgstr ""
680
741
 
681
742
  #: ../app/views/discovery_rules/_form.html.erb:29
682
- msgid "Domain will be appended automatically. A hostname based on MAC address will be used when left blank. In addition to @host attribute function rand for random integers is available. Examples:"
743
+ msgid ""
744
+ "Domain will be appended automatically. A hostname based on MAC address will "
745
+ "be used when left blank. In addition to @host attribute function rand for "
746
+ "random integers is available. Examples:"
683
747
  msgstr ""
684
748
 
685
749
  #: ../app/views/discovery_rules/_form.html.erb:42
686
- msgid "When creating hostname patterns, make sure the resulting host names are unique. Hostnames must not start with numbers. A good approach is to use unique information provided by facter (MAC address, BIOS or serial ID)."
750
+ msgid ""
751
+ "When creating hostname patterns, make sure the resulting host names are "
752
+ "unique. Hostnames must not start with numbers. A good approach is to use "
753
+ "unique information provided by facter (MAC address, BIOS or serial ID)."
687
754
  msgstr ""
688
755
 
689
756
  #: ../app/views/discovery_rules/_form.html.erb:43
@@ -692,11 +759,11 @@ msgstr "Nom d'amfitrió per als amfitrions aprovisionats"
692
759
 
693
760
  #: ../app/views/discovery_rules/_form.html.erb:44
694
761
  msgid "Hosts limit"
695
- msgstr ""
762
+ msgstr "Límit d'amfitrions"
696
763
 
697
764
  #: ../app/views/discovery_rules/_form.html.erb:44
698
765
  msgid "Maximum hosts provisioned with this rule (0 = unlimited)"
699
- msgstr ""
766
+ msgstr "Nombre màxim d'amfitrions aprovisionats amb aquesta regla (0 = il·limitat)"
700
767
 
701
768
  #: ../app/views/discovery_rules/_form.html.erb:45
702
769
  msgid "Rule priority (lower integer means higher priority)"
@@ -748,33 +815,8 @@ msgstr ""
748
815
 
749
816
  #: ../lib/foreman_discovery/engine.rb:141
750
817
  msgid "Discovery rules"
751
- msgstr ""
818
+ msgstr "Regles de descobriment"
752
819
 
753
820
  #: ../lib/foreman_discovery/engine.rb:146
754
821
  msgid "Discovery widget"
755
- msgstr ""
756
-
757
- #~ msgid "Disable rule?"
758
- #~ msgstr "Voleu inhabilitar la regla?"
759
-
760
- #~ msgid "Enable rule?"
761
- #~ msgstr "Voleu habilitar la regla?"
762
-
763
- #~ msgid "Fact"
764
- #~ msgstr "Objecte d'interès"
765
-
766
- #~ msgid "Fact name to use for primary interface detection and hostname"
767
- #~ msgstr ""
768
- #~ "Nom de l'objecte d'interès per utilitzar-ho per a la detecció de la interfície"
769
- #~ " primària i el nom d'amfitrió"
770
-
771
- #~ msgid "Facts discovered on this host"
772
- #~ msgstr "Els objectes d'interès que s'han descobert en aquest amfitrió"
773
-
774
- #~ msgid "Incompatible version of puppet fact parser"
775
- #~ msgstr ""
776
- #~ "Versió incompatible de l'analitzador sintàctic de l'objecte d'interès de puppe"
777
- #~ "t"
778
-
779
- #~ msgid "Value"
780
- #~ msgstr "Valor"
822
+ msgstr "Estri de descobriment"