foreman_discovery 5.0.0 → 5.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.
Files changed (81) hide show
  1. checksums.yaml +4 -4
  2. data/app/controllers/api/v2/discovered_hosts_controller.rb +41 -51
  3. data/app/controllers/concerns/foreman/controller/discovered_extensions.rb +20 -23
  4. data/app/controllers/discovered_hosts_controller.rb +50 -46
  5. data/app/helpers/concerns/foreman_discovery/settings_helper_extensions.rb +34 -0
  6. data/app/helpers/discovery_rules_helper.rb +5 -6
  7. data/app/mailers/discovered_mailer.rb +19 -0
  8. data/app/models/discovery_rule.rb +3 -3
  9. data/app/models/host/discovered.rb +33 -11
  10. data/app/models/host/managed_extensions.rb +10 -0
  11. data/app/models/hostgroup_extensions.rb +1 -1
  12. data/app/models/setting/discovered.rb +17 -11
  13. data/app/services/foreman_discovery/fact_parser.rb +16 -0
  14. data/app/services/foreman_discovery/host_converter.rb +0 -4
  15. data/app/services/foreman_discovery/node_api/power.rb +3 -3
  16. data/app/views/discovered_hosts/_discovered_host.html.erb +4 -2
  17. data/app/views/discovered_hosts/_discovered_hosts_list.html.erb +1 -1
  18. data/app/views/discovered_mailer/_discovered_host.html.erb +10 -0
  19. data/app/views/discovered_mailer/discovered_summary.html.erb +35 -0
  20. data/app/views/discovered_mailer/discovered_summary.text.erb +24 -0
  21. data/config/routes.rb +3 -3
  22. data/db/seeds.d/70_discovery_mail_notification.rb +9 -0
  23. data/lib/foreman_discovery/engine.rb +12 -9
  24. data/lib/foreman_discovery/version.rb +1 -1
  25. data/locale/ca/LC_MESSAGES/foreman_discovery.mo +0 -0
  26. data/locale/ca/foreman_discovery.edit.po +780 -0
  27. data/locale/ca/foreman_discovery.po +358 -261
  28. data/locale/de/LC_MESSAGES/foreman_discovery.mo +0 -0
  29. data/locale/de/foreman_discovery.edit.po +774 -0
  30. data/locale/de/foreman_discovery.po +418 -311
  31. data/locale/en_GB/LC_MESSAGES/foreman_discovery.mo +0 -0
  32. data/locale/en_GB/foreman_discovery.edit.po +779 -0
  33. data/locale/en_GB/foreman_discovery.po +423 -313
  34. data/locale/es/LC_MESSAGES/foreman_discovery.mo +0 -0
  35. data/locale/es/foreman_discovery.edit.po +781 -0
  36. data/locale/es/foreman_discovery.po +425 -313
  37. data/locale/foreman_discovery.pot +496 -159
  38. data/locale/fr/LC_MESSAGES/foreman_discovery.mo +0 -0
  39. data/locale/fr/foreman_discovery.edit.po +778 -0
  40. data/locale/fr/foreman_discovery.po +458 -322
  41. data/locale/gl/LC_MESSAGES/foreman_discovery.mo +0 -0
  42. data/locale/gl/foreman_discovery.edit.po +757 -0
  43. data/locale/gl/foreman_discovery.po +306 -215
  44. data/locale/it/LC_MESSAGES/foreman_discovery.mo +0 -0
  45. data/locale/it/foreman_discovery.edit.po +771 -0
  46. data/locale/it/foreman_discovery.po +411 -301
  47. data/locale/ja/LC_MESSAGES/foreman_discovery.mo +0 -0
  48. data/locale/ja/foreman_discovery.edit.po +770 -0
  49. data/locale/ja/foreman_discovery.po +395 -300
  50. data/locale/ko/LC_MESSAGES/foreman_discovery.mo +0 -0
  51. data/locale/ko/foreman_discovery.edit.po +768 -0
  52. data/locale/ko/foreman_discovery.po +393 -299
  53. data/locale/pt_BR/LC_MESSAGES/foreman_discovery.mo +0 -0
  54. data/locale/pt_BR/foreman_discovery.edit.po +780 -0
  55. data/locale/pt_BR/foreman_discovery.po +438 -309
  56. data/locale/ru/LC_MESSAGES/foreman_discovery.mo +0 -0
  57. data/locale/ru/foreman_discovery.edit.po +775 -0
  58. data/locale/ru/foreman_discovery.po +413 -308
  59. data/locale/sv_SE/LC_MESSAGES/foreman_discovery.mo +0 -0
  60. data/locale/sv_SE/foreman_discovery.edit.po +766 -0
  61. data/locale/sv_SE/foreman_discovery.po +321 -232
  62. data/locale/zh_CN/LC_MESSAGES/foreman_discovery.mo +0 -0
  63. data/locale/zh_CN/foreman_discovery.edit.po +769 -0
  64. data/locale/zh_CN/foreman_discovery.po +393 -302
  65. data/locale/zh_TW/LC_MESSAGES/foreman_discovery.mo +0 -0
  66. data/locale/zh_TW/foreman_discovery.edit.po +769 -0
  67. data/locale/zh_TW/foreman_discovery.po +395 -302
  68. data/test/functional/api/v2/discovered_hosts_controller_test.rb +8 -0
  69. data/test/functional/api/v2/discovery_rules_controller_test.rb +9 -0
  70. data/test/functional/discovered_hosts_controller_test.rb +26 -17
  71. data/test/functional/discovery_rules_controller_test.rb +9 -8
  72. data/test/test_helper.rb +0 -4
  73. data/test/test_helper_discovery.rb +24 -0
  74. data/test/unit/discovered_extensions_test.rb +31 -0
  75. data/test/unit/discovered_mailer_test.rb +44 -0
  76. data/test/unit/discovery_attribute_set_test.rb +12 -0
  77. data/test/unit/discovery_rule_test.rb +20 -0
  78. data/test/unit/{puppet_fact_parser_extensions_test.rb → fact_parser_test.rb} +3 -16
  79. data/test/unit/host_discovered_test.rb +56 -11
  80. metadata +29 -5
  81. data/app/lib/puppet_fact_parser_extensions.rb +0 -29
@@ -1,505 +1,596 @@
1
1
  # SOME DESCRIPTIVE TITLE.
2
2
  # Copyright (C) 2015 Foreman developers
3
3
  # This file is distributed under the same license as the foreman_discovery package.
4
- #
4
+ #
5
5
  # Translators:
6
6
  msgid ""
7
7
  msgstr ""
8
- "Project-Id-Version: foreman_discovery 4.1.1\n"
8
+ "Project-Id-Version: Foreman\n"
9
9
  "Report-Msgid-Bugs-To: foreman-dev@googlegroups.com\n"
10
- "POT-Creation-Date: 2015-10-15 09:33+0200\n"
11
10
  "PO-Revision-Date: 2015-10-15 09:16+0000\n"
12
11
  "Last-Translator: Lukáš Zapletal\n"
13
- "Language-Team: Galician (http://www.transifex.com/foreman/foreman/language/gl/)\n"
12
+ "Language-Team: Galician (http://www.transifex.com/foreman/foreman/language/gl/"
13
+ ")\n"
14
14
  "MIME-Version: 1.0\n"
15
15
  "Content-Type: text/plain; charset=UTF-8\n"
16
16
  "Content-Transfer-Encoding: 8bit\n"
17
17
  "Language: gl\n"
18
18
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
19
19
 
20
- msgid "%s - The following hosts are about to be changed"
21
- msgstr "%s - Os seguintes equipos están a piques de ser modificados"
20
+ msgid "List all discovered hosts"
21
+ msgstr ""
22
22
 
23
- msgid "%s ago"
24
- msgstr "Fai %s"
23
+ msgid "filter results"
24
+ msgstr ""
25
25
 
26
- msgid "%s discovered hosts were provisioned"
26
+ msgid "sort results"
27
27
  msgstr ""
28
28
 
29
- msgid "Are you sure?"
30
- msgstr "¿Estás seguro?"
29
+ msgid "paginate results"
30
+ msgstr ""
31
31
 
32
- msgid "Assign Location"
33
- msgstr "Asignar Lugar"
32
+ msgid "number of entries per request"
33
+ msgstr ""
34
34
 
35
- msgid "Assign Organization"
36
- msgstr "Asignar Organización"
35
+ msgid "Show a discovered host"
36
+ msgstr ""
37
37
 
38
- msgid "Auto Provision"
38
+ msgid "Create a discovered host for testing (use /facts to create new hosts)"
39
39
  msgstr ""
40
40
 
41
- msgid "Auto Provision All"
41
+ msgid "Provision a discovered host"
42
42
  msgstr ""
43
43
 
44
- msgid ""
45
- "Automatically provision newly discovered hosts, according to the "
46
- "provisioning rules"
44
+ msgid "not required if using a subnet with DHCP proxy"
47
45
  msgstr ""
48
46
 
49
- msgid "Automatically reboot discovered host during provisioning"
47
+ msgid "not required if it's a virtual machine"
50
48
  msgstr ""
51
49
 
52
- msgid "CPUs"
53
- msgstr "Procesadores"
50
+ msgid "UUID to track orchestration tasks status, GET /api/orchestration/:UUID/tasks"
51
+ msgstr ""
54
52
 
55
- msgid "Cancel"
56
- msgstr "Cancelar"
53
+ msgid ""
54
+ "required if value is not inherited from host group or default password in sett"
55
+ "ings"
56
+ msgstr ""
57
57
 
58
- msgid "Could not get facts from proxy %{url}: %{error}"
58
+ msgid "Delete a discovered host"
59
59
  msgstr ""
60
60
 
61
- msgid "Create a discovered host for testing (use /facts to create new hosts)"
61
+ msgid "Upload facts for a host, creating the host if required"
62
62
  msgstr ""
63
63
 
64
- msgid "Create a discovery rule"
64
+ msgid ""
65
+ "hash containing facts for the host with minimum set of facts: discovery_bootif"
66
+ ", macaddress_eth0, ipaddress, ipaddress_eth0, interfaces: eth0 (example in cas"
67
+ "e primary interface is named eth0)"
65
68
  msgstr ""
66
69
 
67
- msgid "Delete"
68
- msgstr "Borrar"
70
+ msgid "Execute rules against a discovered host"
71
+ msgstr ""
69
72
 
70
- msgid "Delete %s?"
71
- msgstr "¿Borrar %s?"
73
+ msgid "Host %{host} was provisioned with rule %{rule}"
74
+ msgstr ""
72
75
 
73
- msgid "Delete a discovered host"
76
+ msgid "Unable to provision %{host}: %{errors}"
74
77
  msgstr ""
75
78
 
76
- msgid "Delete a rule"
79
+ msgid "No rule found for host %s"
77
80
  msgstr ""
78
81
 
79
- msgid "Delete hosts"
82
+ msgid "Execute rules against all currently discovered hosts"
80
83
  msgstr ""
81
84
 
82
- msgid "Destroyed selected hosts"
83
- msgstr "Eliminados equipos seleccionados"
85
+ msgid "Errors during auto provisioning: %s"
86
+ msgstr ""
84
87
 
85
- msgid "Disable"
88
+ msgid "No discovered hosts to provision"
86
89
  msgstr ""
87
90
 
88
- msgid "Disable rule?"
91
+ msgid "%s discovered hosts were provisioned"
89
92
  msgstr ""
90
93
 
91
- msgid "Discovered host: %s"
94
+ msgid "Refreshing the facts of a discovered host"
92
95
  msgstr ""
93
96
 
94
- msgid "Discovered hosts"
97
+ msgid "Rebooting a discovered host"
95
98
  msgstr ""
96
99
 
97
- msgid "Discovered hosts are provisioning now"
100
+ msgid "Rebooting all discovered hosts"
98
101
  msgstr ""
99
102
 
100
103
  msgid "Discovered hosts are rebooting now"
101
104
  msgstr ""
102
105
 
103
- msgid "Discovery Rules"
106
+ msgid "List all discovery rules"
104
107
  msgstr ""
105
108
 
106
- msgid "DiscoveryRule|Enabled"
109
+ msgid "Show a discovery rule"
107
110
  msgstr ""
108
111
 
109
- msgid "DiscoveryRule|Name"
112
+ msgid "represents rule name shown to the users"
110
113
  msgstr ""
111
114
 
112
- msgid "DiscoveryRule|Priority"
115
+ msgid "query to match discovered hosts for the particular rule"
113
116
  msgstr ""
114
117
 
115
- msgid "DiscoveryRule|Query"
118
+ msgid "the hostgroup that is used to auto provision a host"
116
119
  msgstr ""
117
120
 
118
- msgid "Disk count"
121
+ msgid "defines a pattern to assign human-readable hostnames to the matching hosts"
119
122
  msgstr ""
120
123
 
121
- msgid "Disks size"
124
+ msgid "enables to limit maximum amount of provisioned hosts per rule"
122
125
  msgstr ""
123
126
 
124
- msgid ""
125
- "Domain will be appended automatically. A hostname based on MAC address will "
126
- "be used when left blank. In addition to @host attribute function rand for "
127
- "random integers is available. Examples:"
127
+ msgid "puts the rules in order, low numbers go first. Must be greater then zero"
128
128
  msgstr ""
129
129
 
130
- msgid "Edit Discovery Rule"
130
+ msgid "flag is used for temporary shutdown of rules"
131
131
  msgstr ""
132
132
 
133
- msgid "Enable"
133
+ msgid "Create a discovery rule"
134
134
  msgstr ""
135
135
 
136
- msgid "Enable rule?"
136
+ msgid "Update a rule"
137
137
  msgstr ""
138
138
 
139
- msgid "Errors during auto provisioning: %s"
139
+ msgid "Delete a rule"
140
+ msgstr ""
141
+
142
+ msgid "Unable to find a discovery rule, no host provided (check permissions)"
143
+ msgstr ""
144
+
145
+ msgid "No hostgroup associated with rule '%s'"
140
146
  msgstr ""
141
147
 
142
148
  msgid "Errors during reboot: %s"
143
149
  msgstr ""
144
150
 
145
- msgid "Execute rules against a discovered host"
151
+ msgid "No discovered hosts to reboot"
146
152
  msgstr ""
147
153
 
148
- msgid "Execute rules against all currently discovered hosts"
154
+ msgid "Facts refreshed for %s"
149
155
  msgstr ""
150
156
 
151
- msgid ""
152
- "Expected discovery_fact '%s' is missing, unable to detect primary interface "
153
- "and set hostname"
157
+ msgid "Failed to refresh facts for %s"
154
158
  msgstr ""
155
159
 
156
- msgid "Extra facter columns to show in host lists (separate by comma)"
160
+ msgid "Failed to refresh facts for %{hostname} with error %{error_message}"
157
161
  msgstr ""
158
162
 
159
- msgid "Fact"
163
+ msgid "Host of type %s can not be rebooted"
160
164
  msgstr ""
161
165
 
162
- msgid "Fact name to use for primary interface detection and hostname"
166
+ msgid "Rebooting host %s"
163
167
  msgstr ""
164
168
 
165
- msgid "Facts discovered on this host"
169
+ msgid "Failed to reboot host %s"
166
170
  msgstr ""
167
171
 
168
- msgid "Facts refreshed for %s"
172
+ msgid "Failed to reboot host %{hostname} with error %{error_message}"
169
173
  msgstr ""
170
174
 
175
+ msgid "Failed to reboot hosts with error %s"
176
+ msgstr ""
177
+
178
+ msgid "Destroyed selected hosts"
179
+ msgstr "Eliminados equipos seleccionados"
180
+
181
+ msgid "The following hosts were not deleted: %s"
182
+ msgstr "Os seguintes equipos non foron eliminados: %s"
183
+
171
184
  msgid "Failed to auto provision host %s: %s"
172
185
  msgstr ""
173
186
 
174
- msgid "Failed to reboot host %s"
187
+ msgid "Discovered hosts are provisioning now"
175
188
  msgstr ""
176
189
 
177
- msgid "Failed to reboot host %{hostname} with error %{error_message}"
190
+ msgid "No hosts were found with that id or name"
191
+ msgstr "Non se atopou ningún equipos con ese id ou nome"
192
+
193
+ msgid "No hosts selected"
194
+ msgstr "Ningún equipo seleccionado"
195
+
196
+ msgid "Something went wrong while selecting hosts - %s"
197
+ msgstr "Algo fallou ao seleccionar equipos - %s"
198
+
199
+ msgid "Rule disabled"
178
200
  msgstr ""
179
201
 
180
- msgid "Failed to refresh facts for %s"
202
+ msgid "Rule enabled"
181
203
  msgstr ""
182
204
 
183
- msgid "Host"
184
- msgstr "Equipo"
205
+ msgid "%s ago"
206
+ msgstr "Fai %s"
185
207
 
186
- msgid "Host %{host} was provisioned with rule %{rule}"
208
+ msgid "Provision"
209
+ msgstr "Aprovisionamento"
210
+
211
+ msgid "Auto Provision"
187
212
  msgstr ""
188
213
 
189
- msgid "Host group"
190
- msgstr "Grupo de Equipos"
214
+ msgid "Refresh facts"
215
+ msgstr ""
191
216
 
192
- msgid "Host group location %s must also be associated to the discovery rule"
193
- msgid_plural ""
194
- "Host group locations %s must also be associated to the discovery rule"
195
- msgstr[0] ""
196
- msgstr[1] ""
217
+ msgid "Reboot"
218
+ msgstr ""
197
219
 
198
- msgid ""
199
- "Host group organization %s must also be associated to the discovery rule"
200
- msgid_plural ""
201
- "Host group organizations %s must also be associated to the discovery rule"
202
- msgstr[0] ""
203
- msgstr[1] ""
220
+ msgid "Back"
221
+ msgstr ""
204
222
 
205
- msgid "Host of type %s can not be rebooted"
223
+ msgid "Select Action"
224
+ msgstr "Selecciona unha Acción"
225
+
226
+ msgid "Expand All"
206
227
  msgstr ""
207
228
 
208
- msgid "Hostname for provisioned hosts"
229
+ msgid "Delete"
230
+ msgstr "Borrar"
231
+
232
+ msgid "Are you sure?"
233
+ msgstr "¿Estás seguro?"
234
+
235
+ msgid "Delete hosts"
209
236
  msgstr ""
210
237
 
211
- msgid "Hosts limit"
238
+ msgid "Assign Organization"
239
+ msgstr "Asignar Organización"
240
+
241
+ msgid "Assign Location"
242
+ msgstr "Asignar Lugar"
243
+
244
+ msgid "%s - The following hosts are about to be changed"
245
+ msgstr "%s - Os seguintes equipos están a piques de ser modificados"
246
+
247
+ msgid "N/A"
248
+ msgstr "N/A"
249
+
250
+ msgid "New in the last 24 hours"
212
251
  msgstr ""
213
252
 
214
- msgid "Hosts/limit"
253
+ msgid "Not reported in more than 7 days"
215
254
  msgstr ""
216
255
 
217
- msgid "IP Address"
218
- msgstr "Dirección IP"
256
+ msgid "Reported in the last 7 days"
257
+ msgstr ""
219
258
 
220
- msgid "Image API processing error: %{msg} (HTTP/%{code}, body: %{body})"
259
+ msgid "Discovered Hosts"
221
260
  msgstr ""
222
261
 
223
- msgid "Image API returned HTTP/%{code} with '%{body}"
262
+ msgid "Associated Hosts"
224
263
  msgstr ""
225
264
 
226
- msgid "Incompatible version of puppet fact parser"
265
+ msgid "Disable rule '%s'?"
227
266
  msgstr ""
228
267
 
229
- msgid "Invalid facts, must be a Hash"
268
+ msgid "Disable"
230
269
  msgstr ""
231
270
 
232
- msgid "Last facts upload"
271
+ msgid "Enable"
233
272
  msgstr ""
234
273
 
235
- msgid "List all discovered hosts"
274
+ msgid "Enable rule '%s'?"
236
275
  msgstr ""
237
276
 
238
- msgid "List all discovery rules"
277
+ msgid "Delete rule '%s'?"
239
278
  msgstr ""
240
279
 
241
- msgid "Location"
242
- msgstr "Lugares"
280
+ msgid "Must specify a user with email enabled"
281
+ msgstr ""
243
282
 
244
- msgid "Locations"
283
+ msgid "Discovered hosts summary"
245
284
  msgstr ""
246
285
 
247
- msgid "Maximum hosts provisioned with this rule (0 = unlimited)"
286
+ msgid "can't contain white spaces."
248
287
  msgstr ""
249
288
 
250
- msgid "Memory"
251
- msgstr "Memoria"
289
+ msgid "must start with a letter or ERB."
290
+ msgstr ""
252
291
 
253
- msgid "Model"
254
- msgstr "Modelo"
292
+ msgid "Host group organization %s must also be associated to the discovery rule"
293
+ msgid_plural "Host group organizations %s must also be associated to the discovery rule"
294
+ msgstr[0] ""
295
+ msgstr[1] ""
255
296
 
256
- msgid "N/A"
257
- msgstr "N/A"
297
+ msgid "Host group location %s must also be associated to the discovery rule"
298
+ msgid_plural "Host group locations %s must also be associated to the discovery rule"
299
+ msgstr[0] ""
300
+ msgstr[1] ""
258
301
 
259
- msgid "Name"
260
- msgstr "Nome"
302
+ msgid "Invalid facts, must be a Hash"
303
+ msgstr ""
261
304
 
262
- msgid "New Discovery Rule"
305
+ msgid ""
306
+ "Expected discovery_fact '%s' is missing, unable to detect primary interface an"
307
+ "d set hostname"
263
308
  msgstr ""
264
309
 
265
- msgid "New Rule"
310
+ msgid ""
311
+ "Invalid facts: hash does not contain a valid value for any of the facts in the"
312
+ " discovery_hostname setting: %s"
266
313
  msgstr ""
267
314
 
268
- msgid "New in the last 24 hours"
315
+ msgid "Unable to assign subnet, primary interface is missing IP address"
269
316
  msgstr ""
270
317
 
271
- msgid "No discovered hosts available"
318
+ msgid "Could not get facts from proxy %{url}: %{error}"
272
319
  msgstr ""
273
320
 
274
- msgid "No discovered hosts to provision"
321
+ msgid "Unable to reboot %{name} via %{url}: %{msg}"
275
322
  msgstr ""
276
323
 
277
- msgid "No discovered hosts to reboot"
324
+ msgid "Unable to perform kexec on %{name} via %{url}: %{msg}"
278
325
  msgstr ""
279
326
 
280
- msgid "No hosts selected"
281
- msgstr "Ningún equipo seleccionado"
327
+ msgid "Invalid hostname: Could not normalize the hostname"
328
+ msgstr ""
282
329
 
283
- msgid "No hosts were found with that id or name"
284
- msgstr "Non se atopou ningún equipos con ese id ou nome"
330
+ msgid "Reloading kernel on %s"
331
+ msgstr ""
285
332
 
286
- msgid "No rule found for host %s"
333
+ msgid "Rebooting %s"
287
334
  msgstr ""
288
335
 
289
- msgid "Not reported in more than 7 days"
336
+ msgid "Operating system not set for host/hostgroup"
290
337
  msgstr ""
291
338
 
292
- msgid "Organization"
293
- msgstr "Organización"
339
+ msgid "Medium not set for host/hostgroup"
340
+ msgstr ""
294
341
 
295
- msgid "Organizations"
342
+ msgid "Kexec template not associated with operating system"
296
343
  msgstr ""
297
344
 
298
- msgid "Please Confirm"
299
- msgstr "Confirme, por favor"
345
+ msgid "Fact name to use for primary interface detection"
346
+ msgstr ""
300
347
 
301
- msgid "Primary"
348
+ msgid "List of facts to use for the hostname (separated by comma, first wins)"
302
349
  msgstr ""
303
350
 
304
- msgid "Provision"
305
- msgstr "Aprovisionamento"
351
+ msgid ""
352
+ "Automatically provision newly discovered hosts, according to the provisioning "
353
+ "rules"
354
+ msgstr ""
306
355
 
307
- msgid "Provision a discovered host"
356
+ msgid "Automatically reboot discovered host during provisioning"
308
357
  msgstr ""
309
358
 
310
- msgid "Reboot"
359
+ msgid "The default prefix to use for the host name, must start with a letter"
311
360
  msgstr ""
312
361
 
313
- msgid "Reboot All"
362
+ msgid "Extra facter columns to show in host lists (separate by comma)"
314
363
  msgstr ""
315
364
 
316
- msgid "Rebooting %s"
365
+ msgid "The default location to place discovered hosts in"
317
366
  msgstr ""
318
367
 
319
- msgid "Rebooting a discovered host"
368
+ msgid "The default organization to place discovered hosts in"
320
369
  msgstr ""
321
370
 
322
- msgid "Rebooting all discovered hosts"
371
+ msgid "Regex to organize facts for highlights section"
323
372
  msgstr ""
324
373
 
325
- msgid "Rebooting host %s"
374
+ msgid "Regex to organize facts for storage section"
326
375
  msgstr ""
327
376
 
328
- msgid "Refresh facts"
377
+ msgid "Regex to organize facts for software section"
329
378
  msgstr ""
330
379
 
331
- msgid "Refreshing the facts of a discovered host"
380
+ msgid "Regex to organize facts for hardware section"
332
381
  msgstr ""
333
382
 
334
- msgid "Reloading kernel on %s"
383
+ msgid "Regex to organize facts for network section"
335
384
  msgstr ""
336
385
 
337
- msgid "Reported in the last 7 days"
386
+ msgid "Regex to organize facts for ipmi section"
338
387
  msgstr ""
339
388
 
340
- msgid "Rule disabled"
389
+ msgid ""
390
+ "Unable to detect primary interface using MAC '%{mac}' specified by discovery_f"
391
+ "act '%{fact}'"
341
392
  msgstr ""
342
393
 
343
- msgid "Rule enabled"
394
+ msgid "Image API returned HTTP/%{code} with '%{body}"
344
395
  msgstr ""
345
396
 
346
- msgid "Rule priority (lower integer means higher priority)"
397
+ msgid "Image API processing error: %{msg} (HTTP/%{code}, body: %{body})"
347
398
  msgstr ""
348
399
 
349
- msgid "Select Action"
350
- msgstr "Selecciona unha Acción"
400
+ msgid "No discovered hosts available"
401
+ msgstr ""
402
+
403
+ msgid "Host"
404
+ msgstr "Equipo"
405
+
406
+ msgid "Model"
407
+ msgstr "Modelo"
408
+
409
+ msgid "CPUs"
410
+ msgstr "Procesadores"
411
+
412
+ msgid "Memory"
413
+ msgstr "Memoria"
414
+
415
+ msgid "Discovered hosts"
416
+ msgstr ""
417
+
418
+ msgid "items selected. Uncheck to Clear"
419
+ msgstr "obxetos seleccionados. Desactivar para limpar"
351
420
 
352
421
  msgid "Select all items in this page"
353
422
  msgstr "Seleccionar tódolos obxetos desta páxina"
354
423
 
355
- msgid "Select location"
356
- msgstr ""
424
+ msgid "Name"
425
+ msgstr "Nome"
357
426
 
358
- msgid "Select organization"
359
- msgstr ""
427
+ msgid "IP Address"
428
+ msgstr "Dirección IP"
360
429
 
361
- msgid "Show a discovered host"
430
+ msgid "Disk count"
362
431
  msgstr ""
363
432
 
364
- msgid "Show a discovery rule"
433
+ msgid "Disks size"
365
434
  msgstr ""
366
435
 
367
- msgid "Something went wrong while selecting hosts - %s"
368
- msgstr "Algo fallou ao seleccionar equipos - %s"
436
+ msgid "Location"
437
+ msgstr "Lugares"
369
438
 
370
- msgid ""
371
- "Specify target hostname template pattern in the same syntax as in "
372
- "Provisioning Templates (ERB)."
439
+ msgid "Organization"
440
+ msgstr "Organización"
441
+
442
+ msgid "Subnet"
443
+ msgstr "Subrede"
444
+
445
+ msgid "Last facts upload"
373
446
  msgstr ""
374
447
 
448
+ msgid "Delete %s?"
449
+ msgstr "¿Borrar %s?"
450
+
451
+ msgid "Please Confirm"
452
+ msgstr "Confirme, por favor"
453
+
454
+ msgid "Cancel"
455
+ msgstr "Cancelar"
456
+
375
457
  msgid "Submit"
376
458
  msgstr "Introducir"
377
459
 
378
- msgid "Subnet"
379
- msgstr "Subrede"
460
+ msgid "Reboot All"
461
+ msgstr ""
380
462
 
381
- msgid "Target host group for this rule with all properties set"
463
+ msgid "Auto Provision All"
382
464
  msgstr ""
383
465
 
384
- msgid "Template"
466
+ msgid "Warning"
467
+ msgstr "Aviso"
468
+
469
+ msgid ""
470
+ "This might take a while, as all hosts, facts and reports will be destroyed as "
471
+ "well"
385
472
  msgstr ""
473
+ "Esta acción pode tardar un anaco, xa que se eliminarán tódolos equipos, datos "
474
+ "e informes."
386
475
 
387
- msgid "The default location to place discovered hosts in"
476
+ msgid "Select location"
388
477
  msgstr ""
389
478
 
390
- msgid "The default organization to place discovered hosts in"
479
+ msgid "Select organization"
391
480
  msgstr ""
392
481
 
393
- msgid "The default prefix to use for the host name, must start with a letter"
482
+ msgid "Discovered host: %s"
394
483
  msgstr ""
395
484
 
396
- msgid "The following hosts were not deleted: %s"
397
- msgstr "Os seguintes equipos non foron eliminados: %s"
485
+ msgid "Identifier"
486
+ msgstr ""
398
487
 
399
- msgid ""
400
- "This might take a while, as all hosts, facts and reports will be destroyed "
401
- "as well"
402
- msgstr "Esta acción pode tardar un anaco, xa que se eliminarán tódolos equipos, datos e informes."
488
+ msgid "MAC address"
489
+ msgstr ""
403
490
 
404
- msgid ""
405
- "UUID to track orchestration tasks status, GET /api/orchestration/:UUID/tasks"
491
+ msgid "IP address"
406
492
  msgstr ""
407
493
 
408
- msgid "Unable to assign subnet, primary interface is missing IP address"
494
+ msgid "Summary report for discovered hosts from Foreman"
409
495
  msgstr ""
410
496
 
411
- msgid ""
412
- "Unable to detect primary interface using MAC '%{mac}' specified by "
413
- "discovery_fact '%{fact}'"
497
+ msgid "<b>Foreman</b> Discovered hosts summary"
414
498
  msgstr ""
415
499
 
416
- msgid "Unable to find a discovery rule, no host provided (check permissions)"
500
+ msgid "Summary from %{time} ago to %{now}"
417
501
  msgstr ""
418
502
 
419
- msgid "Unable to perform kexec on %{name} via %{url}: %{msg}"
503
+ msgid "Discovered hosts from Foreman server at %{foreman_url}"
420
504
  msgstr ""
421
505
 
422
- msgid "Unable to provision %{host}: %{errors}"
506
+ msgid "No discovered hosts for the selected period"
423
507
  msgstr ""
424
508
 
425
- msgid "Unable to reboot %{name} via %{url}: %{msg}"
509
+ msgid "Foreman discovered hosts summary"
426
510
  msgstr ""
427
511
 
428
- msgid "Update a rule"
512
+ msgid "No new discovered hosts for this period"
429
513
  msgstr ""
430
514
 
431
- msgid "Upload facts for a host, creating the host if required"
515
+ msgid "Primary"
432
516
  msgstr ""
433
517
 
434
- msgid "Value"
435
- msgstr "Valor"
518
+ msgid "Locations"
519
+ msgstr ""
436
520
 
437
- msgid "Warning"
438
- msgstr "Aviso"
521
+ msgid "Organizations"
522
+ msgstr ""
523
+
524
+ msgid "Target host group for this rule with all properties set"
525
+ msgstr ""
526
+
527
+ msgid "Template"
528
+ msgstr ""
439
529
 
440
530
  msgid ""
441
- "When creating hostname patterns, make sure the resulting host names are "
442
- "unique. Hostnames must not start with numbers. A good approach is to use "
443
- "unique information provided by facter (MAC address, BIOS or serial ID)."
531
+ "Specify target hostname template pattern in the same syntax as in Provisioning"
532
+ " Templates (ERB)."
444
533
  msgstr ""
445
534
 
446
- msgid "can't contain white spaces."
535
+ msgid ""
536
+ "Domain will be appended automatically. A hostname based on MAC address will be"
537
+ " used when left blank. In addition to @host attribute function rand for random"
538
+ " integers is available. Examples:"
447
539
  msgstr ""
448
540
 
449
541
  msgid ""
450
- "defines a pattern to assign human-readable hostnames to the matching hosts"
542
+ "When creating hostname patterns, make sure the resulting host names are unique"
543
+ ". Hostnames must not start with numbers. A good approach is to use unique info"
544
+ "rmation provided by facter (MAC address, BIOS or serial ID)."
451
545
  msgstr ""
452
546
 
453
- msgid "enables to limit maximum amount of provisioned hosts per rule"
547
+ msgid "Hostname for provisioned hosts"
454
548
  msgstr ""
455
549
 
456
- msgid "filter results"
550
+ msgid "Hosts limit"
457
551
  msgstr ""
458
552
 
459
- msgid "flag is used for temporary shutdown of rules"
553
+ msgid "Maximum hosts provisioned with this rule (0 = unlimited)"
460
554
  msgstr ""
461
555
 
462
- msgid ""
463
- "hash containing facts for the host with minimum set of facts: "
464
- "discovery_bootif, macaddress_eth0, ipaddress, ipaddress_eth0, interfaces: "
465
- "eth0 (example in case primary interface is named eth0)"
556
+ msgid "Rule priority (lower integer means higher priority)"
466
557
  msgstr ""
467
558
 
468
- msgid "items selected. Uncheck to Clear"
469
- msgstr "obxetos seleccionados. Desactivar para limpar"
559
+ msgid "Edit Discovery Rule"
560
+ msgstr ""
470
561
 
471
- msgid "must start with a letter or ERB."
562
+ msgid "Discovery Rules"
472
563
  msgstr ""
473
564
 
474
- msgid "not required if it's a virtual machine"
565
+ msgid "New Rule"
475
566
  msgstr ""
476
567
 
477
- msgid "not required if using a subnet with DHCP proxy"
568
+ msgid "DiscoveryRule|Name"
478
569
  msgstr ""
479
570
 
480
- msgid "number of entries per request"
571
+ msgid "DiscoveryRule|Priority"
481
572
  msgstr ""
482
573
 
483
- msgid "paginate results"
574
+ msgid "DiscoveryRule|Query"
484
575
  msgstr ""
485
576
 
486
- msgid ""
487
- "puts the rules in order, low numbers go first. Must be greater then zero"
577
+ msgid "Host group"
578
+ msgstr "Grupo de Equipos"
579
+
580
+ msgid "Hosts/limit"
488
581
  msgstr ""
489
582
 
490
- msgid "query to match discovered hosts for the particular rule"
583
+ msgid "DiscoveryRule|Enabled"
491
584
  msgstr ""
492
585
 
493
- msgid "represents rule name shown to the users"
586
+ msgid "New Discovery Rule"
494
587
  msgstr ""
495
588
 
496
- msgid ""
497
- "required if value is not inherited from host group or default password in "
498
- "settings"
589
+ msgid "A summary of discovered hosts"
499
590
  msgstr ""
500
591
 
501
- msgid "sort results"
592
+ msgid "Discovery rules"
502
593
  msgstr ""
503
594
 
504
- msgid "the hostgroup that is used to auto provision a host"
595
+ msgid "Discovery widget"
505
596
  msgstr ""