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,508 +1,597 @@
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
- # Dominic Cleal <dcleal@redhat.com>, 2014
6
+ # Dominic Cleal <dominic@cleal.org>, 2014
7
7
  # johnny.westerlund <johnny.westerlund@gmail.com>, 2014
8
8
  # johnny.westerlund <johnny.westerlund@gmail.com>, 2014
9
9
  msgid ""
10
10
  msgstr ""
11
- "Project-Id-Version: foreman_discovery 4.1.1\n"
11
+ "Project-Id-Version: Foreman\n"
12
12
  "Report-Msgid-Bugs-To: foreman-dev@googlegroups.com\n"
13
- "POT-Creation-Date: 2015-10-15 09:33+0200\n"
14
13
  "PO-Revision-Date: 2015-10-15 09:16+0000\n"
15
14
  "Last-Translator: Lukáš Zapletal\n"
16
- "Language-Team: Swedish (Sweden) (http://www.transifex.com/foreman/foreman/language/sv_SE/)\n"
15
+ "Language-Team: Swedish (Sweden) (http://www.transifex.com/foreman/foreman/lang"
16
+ "uage/sv_SE/)\n"
17
17
  "MIME-Version: 1.0\n"
18
18
  "Content-Type: text/plain; charset=UTF-8\n"
19
19
  "Content-Transfer-Encoding: 8bit\n"
20
20
  "Language: sv_SE\n"
21
21
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
22
22
 
23
- msgid "%s - The following hosts are about to be changed"
24
- msgstr "%s - Följande värdar kommer att ändras"
23
+ msgid "List all discovered hosts"
24
+ msgstr ""
25
25
 
26
- msgid "%s ago"
27
- msgstr "%s sedan"
26
+ msgid "filter results"
27
+ msgstr "filtrera resultat"
28
28
 
29
- msgid "%s discovered hosts were provisioned"
29
+ msgid "sort results"
30
30
  msgstr ""
31
31
 
32
- msgid "Are you sure?"
33
- msgstr "Är du säker?"
32
+ msgid "paginate results"
33
+ msgstr ""
34
34
 
35
- msgid "Assign Location"
36
- msgstr "Tilldela Plats"
35
+ msgid "number of entries per request"
36
+ msgstr ""
37
37
 
38
- msgid "Assign Organization"
39
- msgstr "Tilldela Organisation"
38
+ msgid "Show a discovered host"
39
+ msgstr ""
40
40
 
41
- msgid "Auto Provision"
41
+ msgid "Create a discovered host for testing (use /facts to create new hosts)"
42
42
  msgstr ""
43
43
 
44
- msgid "Auto Provision All"
44
+ msgid "Provision a discovered host"
45
45
  msgstr ""
46
46
 
47
- msgid ""
48
- "Automatically provision newly discovered hosts, according to the "
49
- "provisioning rules"
47
+ msgid "not required if using a subnet with DHCP proxy"
50
48
  msgstr ""
51
49
 
52
- msgid "Automatically reboot discovered host during provisioning"
50
+ msgid "not required if it's a virtual machine"
53
51
  msgstr ""
54
52
 
55
- msgid "CPUs"
56
- msgstr "CPUer"
53
+ msgid "UUID to track orchestration tasks status, GET /api/orchestration/:UUID/tasks"
54
+ msgstr ""
57
55
 
58
- msgid "Cancel"
59
- msgstr "Avbryt"
56
+ msgid ""
57
+ "required if value is not inherited from host group or default password in sett"
58
+ "ings"
59
+ msgstr ""
60
60
 
61
- msgid "Could not get facts from proxy %{url}: %{error}"
61
+ msgid "Delete a discovered host"
62
62
  msgstr ""
63
63
 
64
- msgid "Create a discovered host for testing (use /facts to create new hosts)"
64
+ msgid "Upload facts for a host, creating the host if required"
65
65
  msgstr ""
66
66
 
67
- msgid "Create a discovery rule"
67
+ msgid ""
68
+ "hash containing facts for the host with minimum set of facts: discovery_bootif"
69
+ ", macaddress_eth0, ipaddress, ipaddress_eth0, interfaces: eth0 (example in cas"
70
+ "e primary interface is named eth0)"
68
71
  msgstr ""
69
72
 
70
- msgid "Delete"
71
- msgstr "Radera"
73
+ msgid "Execute rules against a discovered host"
74
+ msgstr ""
72
75
 
73
- msgid "Delete %s?"
74
- msgstr "Radera %s?"
76
+ msgid "Host %{host} was provisioned with rule %{rule}"
77
+ msgstr ""
75
78
 
76
- msgid "Delete a discovered host"
79
+ msgid "Unable to provision %{host}: %{errors}"
77
80
  msgstr ""
78
81
 
79
- msgid "Delete a rule"
82
+ msgid "No rule found for host %s"
80
83
  msgstr ""
81
84
 
82
- msgid "Delete hosts"
83
- msgstr "Radera värdar"
85
+ msgid "Execute rules against all currently discovered hosts"
86
+ msgstr ""
84
87
 
85
- msgid "Destroyed selected hosts"
86
- msgstr "Förstör markerade värdar"
88
+ msgid "Errors during auto provisioning: %s"
89
+ msgstr ""
87
90
 
88
- msgid "Disable"
91
+ msgid "No discovered hosts to provision"
89
92
  msgstr ""
90
93
 
91
- msgid "Disable rule?"
94
+ msgid "%s discovered hosts were provisioned"
92
95
  msgstr ""
93
96
 
94
- msgid "Discovered host: %s"
95
- msgstr "Hittade värdar: %s"
97
+ msgid "Refreshing the facts of a discovered host"
98
+ msgstr ""
96
99
 
97
- msgid "Discovered hosts"
98
- msgstr "Hittade värdar"
100
+ msgid "Rebooting a discovered host"
101
+ msgstr ""
99
102
 
100
- msgid "Discovered hosts are provisioning now"
103
+ msgid "Rebooting all discovered hosts"
101
104
  msgstr ""
102
105
 
103
106
  msgid "Discovered hosts are rebooting now"
104
107
  msgstr ""
105
108
 
106
- msgid "Discovery Rules"
109
+ msgid "List all discovery rules"
107
110
  msgstr ""
108
111
 
109
- msgid "DiscoveryRule|Enabled"
112
+ msgid "Show a discovery rule"
110
113
  msgstr ""
111
114
 
112
- msgid "DiscoveryRule|Name"
115
+ msgid "represents rule name shown to the users"
113
116
  msgstr ""
114
117
 
115
- msgid "DiscoveryRule|Priority"
118
+ msgid "query to match discovered hosts for the particular rule"
116
119
  msgstr ""
117
120
 
118
- msgid "DiscoveryRule|Query"
121
+ msgid "the hostgroup that is used to auto provision a host"
119
122
  msgstr ""
120
123
 
121
- msgid "Disk count"
124
+ msgid "defines a pattern to assign human-readable hostnames to the matching hosts"
122
125
  msgstr ""
123
126
 
124
- msgid "Disks size"
127
+ msgid "enables to limit maximum amount of provisioned hosts per rule"
125
128
  msgstr ""
126
129
 
127
- msgid ""
128
- "Domain will be appended automatically. A hostname based on MAC address will "
129
- "be used when left blank. In addition to @host attribute function rand for "
130
- "random integers is available. Examples:"
130
+ msgid "puts the rules in order, low numbers go first. Must be greater then zero"
131
131
  msgstr ""
132
132
 
133
- msgid "Edit Discovery Rule"
133
+ msgid "flag is used for temporary shutdown of rules"
134
134
  msgstr ""
135
135
 
136
- msgid "Enable"
136
+ msgid "Create a discovery rule"
137
137
  msgstr ""
138
138
 
139
- msgid "Enable rule?"
139
+ msgid "Update a rule"
140
140
  msgstr ""
141
141
 
142
- msgid "Errors during auto provisioning: %s"
142
+ msgid "Delete a rule"
143
+ msgstr ""
144
+
145
+ msgid "Unable to find a discovery rule, no host provided (check permissions)"
146
+ msgstr ""
147
+
148
+ msgid "No hostgroup associated with rule '%s'"
143
149
  msgstr ""
144
150
 
145
151
  msgid "Errors during reboot: %s"
146
152
  msgstr ""
147
153
 
148
- msgid "Execute rules against a discovered host"
154
+ msgid "No discovered hosts to reboot"
149
155
  msgstr ""
150
156
 
151
- msgid "Execute rules against all currently discovered hosts"
157
+ msgid "Facts refreshed for %s"
158
+ msgstr "Fakta uppdaterade för %s"
159
+
160
+ msgid "Failed to refresh facts for %s"
161
+ msgstr "Misslyckades med att uppdatera fakta för %s"
162
+
163
+ msgid "Failed to refresh facts for %{hostname} with error %{error_message}"
152
164
  msgstr ""
153
165
 
154
- msgid ""
155
- "Expected discovery_fact '%s' is missing, unable to detect primary interface "
156
- "and set hostname"
166
+ msgid "Host of type %s can not be rebooted"
157
167
  msgstr ""
158
168
 
159
- msgid "Extra facter columns to show in host lists (separate by comma)"
169
+ msgid "Rebooting host %s"
170
+ msgstr ""
171
+
172
+ msgid "Failed to reboot host %s"
160
173
  msgstr ""
161
174
 
162
- msgid "Fact"
163
- msgstr "Fakta"
175
+ msgid "Failed to reboot host %{hostname} with error %{error_message}"
176
+ msgstr ""
164
177
 
165
- msgid "Fact name to use for primary interface detection and hostname"
178
+ msgid "Failed to reboot hosts with error %s"
166
179
  msgstr ""
167
180
 
168
- msgid "Facts discovered on this host"
169
- msgstr "Fakta hittade för denna värd"
181
+ msgid "Destroyed selected hosts"
182
+ msgstr "Förstör markerade värdar"
170
183
 
171
- msgid "Facts refreshed for %s"
172
- msgstr "Fakta uppdaterade för %s"
184
+ msgid "The following hosts were not deleted: %s"
185
+ msgstr "Följande värdar raderades inte: %s"
173
186
 
174
187
  msgid "Failed to auto provision host %s: %s"
175
188
  msgstr ""
176
189
 
177
- msgid "Failed to reboot host %s"
190
+ msgid "Discovered hosts are provisioning now"
178
191
  msgstr ""
179
192
 
180
- msgid "Failed to reboot host %{hostname} with error %{error_message}"
181
- msgstr ""
193
+ msgid "No hosts were found with that id or name"
194
+ msgstr "Inga värdar med det idt eller namnet hittades"
182
195
 
183
- msgid "Failed to refresh facts for %s"
184
- msgstr "Misslyckades med att uppdatera fakta för %s"
196
+ msgid "No hosts selected"
197
+ msgstr "Inga värdar markerade"
185
198
 
186
- msgid "Host"
187
- msgstr "Värd"
199
+ msgid "Something went wrong while selecting hosts - %s"
200
+ msgstr "Något blev fel vid markering av värdar - %s"
188
201
 
189
- msgid "Host %{host} was provisioned with rule %{rule}"
202
+ msgid "Rule disabled"
190
203
  msgstr ""
191
204
 
192
- msgid "Host group"
193
- msgstr "Värdgrupp"
205
+ msgid "Rule enabled"
206
+ msgstr ""
194
207
 
195
- msgid "Host group location %s must also be associated to the discovery rule"
196
- msgid_plural ""
197
- "Host group locations %s must also be associated to the discovery rule"
198
- msgstr[0] ""
199
- msgstr[1] ""
208
+ msgid "%s ago"
209
+ msgstr "%s sedan"
200
210
 
201
- msgid ""
202
- "Host group organization %s must also be associated to the discovery rule"
203
- msgid_plural ""
204
- "Host group organizations %s must also be associated to the discovery rule"
205
- msgstr[0] ""
206
- msgstr[1] ""
211
+ msgid "Provision"
212
+ msgstr "Provisionera"
207
213
 
208
- msgid "Host of type %s can not be rebooted"
214
+ msgid "Auto Provision"
209
215
  msgstr ""
210
216
 
211
- msgid "Hostname for provisioned hosts"
217
+ msgid "Refresh facts"
218
+ msgstr "Uppdatera fakta"
219
+
220
+ msgid "Reboot"
212
221
  msgstr ""
213
222
 
214
- msgid "Hosts limit"
223
+ msgid "Back"
215
224
  msgstr ""
216
225
 
217
- msgid "Hosts/limit"
226
+ msgid "Select Action"
227
+ msgstr "Välj Åtgärd"
228
+
229
+ msgid "Expand All"
218
230
  msgstr ""
219
231
 
220
- msgid "IP Address"
221
- msgstr "IPadress"
232
+ msgid "Delete"
233
+ msgstr "Radera"
222
234
 
223
- msgid "Image API processing error: %{msg} (HTTP/%{code}, body: %{body})"
235
+ msgid "Are you sure?"
236
+ msgstr "Är du säker?"
237
+
238
+ msgid "Delete hosts"
239
+ msgstr "Radera värdar"
240
+
241
+ msgid "Assign Organization"
242
+ msgstr "Tilldela Organisation"
243
+
244
+ msgid "Assign Location"
245
+ msgstr "Tilldela Plats"
246
+
247
+ msgid "%s - The following hosts are about to be changed"
248
+ msgstr "%s - Följande värdar kommer att ändras"
249
+
250
+ msgid "N/A"
251
+ msgstr "N/A"
252
+
253
+ msgid "New in the last 24 hours"
224
254
  msgstr ""
225
255
 
226
- msgid "Image API returned HTTP/%{code} with '%{body}"
256
+ msgid "Not reported in more than 7 days"
227
257
  msgstr ""
228
258
 
229
- msgid "Incompatible version of puppet fact parser"
259
+ msgid "Reported in the last 7 days"
230
260
  msgstr ""
231
261
 
232
- msgid "Invalid facts, must be a Hash"
262
+ msgid "Discovered Hosts"
233
263
  msgstr ""
234
264
 
235
- msgid "Last facts upload"
236
- msgstr "Sista faktauppladdning"
265
+ msgid "Associated Hosts"
266
+ msgstr ""
237
267
 
238
- msgid "List all discovered hosts"
268
+ msgid "Disable rule '%s'?"
239
269
  msgstr ""
240
270
 
241
- msgid "List all discovery rules"
271
+ msgid "Disable"
242
272
  msgstr ""
243
273
 
244
- msgid "Location"
245
- msgstr "Lokation"
274
+ msgid "Enable"
275
+ msgstr ""
246
276
 
247
- msgid "Locations"
277
+ msgid "Enable rule '%s'?"
248
278
  msgstr ""
249
279
 
250
- msgid "Maximum hosts provisioned with this rule (0 = unlimited)"
280
+ msgid "Delete rule '%s'?"
251
281
  msgstr ""
252
282
 
253
- msgid "Memory"
254
- msgstr "Minne"
283
+ msgid "Must specify a user with email enabled"
284
+ msgstr ""
255
285
 
256
- msgid "Model"
257
- msgstr "Modell"
286
+ msgid "Discovered hosts summary"
287
+ msgstr ""
258
288
 
259
- msgid "N/A"
260
- msgstr "N/A"
289
+ msgid "can't contain white spaces."
290
+ msgstr ""
261
291
 
262
- msgid "Name"
263
- msgstr "Namn"
292
+ msgid "must start with a letter or ERB."
293
+ msgstr ""
264
294
 
265
- msgid "New Discovery Rule"
295
+ msgid "Host group organization %s must also be associated to the discovery rule"
296
+ msgid_plural "Host group organizations %s must also be associated to the discovery rule"
297
+ msgstr[0] ""
298
+ msgstr[1] ""
299
+
300
+ msgid "Host group location %s must also be associated to the discovery rule"
301
+ msgid_plural "Host group locations %s must also be associated to the discovery rule"
302
+ msgstr[0] ""
303
+ msgstr[1] ""
304
+
305
+ msgid "Invalid facts, must be a Hash"
266
306
  msgstr ""
267
307
 
268
- msgid "New Rule"
308
+ msgid ""
309
+ "Expected discovery_fact '%s' is missing, unable to detect primary interface an"
310
+ "d set hostname"
269
311
  msgstr ""
270
312
 
271
- msgid "New in the last 24 hours"
313
+ msgid ""
314
+ "Invalid facts: hash does not contain a valid value for any of the facts in the"
315
+ " discovery_hostname setting: %s"
272
316
  msgstr ""
273
317
 
274
- msgid "No discovered hosts available"
318
+ msgid "Unable to assign subnet, primary interface is missing IP address"
275
319
  msgstr ""
276
320
 
277
- msgid "No discovered hosts to provision"
321
+ msgid "Could not get facts from proxy %{url}: %{error}"
278
322
  msgstr ""
279
323
 
280
- msgid "No discovered hosts to reboot"
324
+ msgid "Unable to reboot %{name} via %{url}: %{msg}"
281
325
  msgstr ""
282
326
 
283
- msgid "No hosts selected"
284
- msgstr "Inga värdar markerade"
327
+ msgid "Unable to perform kexec on %{name} via %{url}: %{msg}"
328
+ msgstr ""
285
329
 
286
- msgid "No hosts were found with that id or name"
287
- msgstr "Inga värdar med det idt eller namnet hittades"
330
+ msgid "Invalid hostname: Could not normalize the hostname"
331
+ msgstr ""
288
332
 
289
- msgid "No rule found for host %s"
333
+ msgid "Reloading kernel on %s"
290
334
  msgstr ""
291
335
 
292
- msgid "Not reported in more than 7 days"
336
+ msgid "Rebooting %s"
337
+ msgstr "Startar om %s"
338
+
339
+ msgid "Operating system not set for host/hostgroup"
293
340
  msgstr ""
294
341
 
295
- msgid "Organization"
296
- msgstr "Organisation"
342
+ msgid "Medium not set for host/hostgroup"
343
+ msgstr ""
297
344
 
298
- msgid "Organizations"
345
+ msgid "Kexec template not associated with operating system"
299
346
  msgstr ""
300
347
 
301
- msgid "Please Confirm"
302
- msgstr "Var god, bekräfta"
348
+ msgid "Fact name to use for primary interface detection"
349
+ msgstr ""
303
350
 
304
- msgid "Primary"
351
+ msgid "List of facts to use for the hostname (separated by comma, first wins)"
305
352
  msgstr ""
306
353
 
307
- msgid "Provision"
308
- msgstr "Provisionera"
354
+ msgid ""
355
+ "Automatically provision newly discovered hosts, according to the provisioning "
356
+ "rules"
357
+ msgstr ""
309
358
 
310
- msgid "Provision a discovered host"
359
+ msgid "Automatically reboot discovered host during provisioning"
311
360
  msgstr ""
312
361
 
313
- msgid "Reboot"
362
+ msgid "The default prefix to use for the host name, must start with a letter"
314
363
  msgstr ""
315
364
 
316
- msgid "Reboot All"
365
+ msgid "Extra facter columns to show in host lists (separate by comma)"
317
366
  msgstr ""
318
367
 
319
- msgid "Rebooting %s"
320
- msgstr "Startar om %s"
368
+ msgid "The default location to place discovered hosts in"
369
+ msgstr "Standardplatsen att placera värdar i"
321
370
 
322
- msgid "Rebooting a discovered host"
371
+ msgid "The default organization to place discovered hosts in"
372
+ msgstr "Standardorganisationen att placera hittade värdar i"
373
+
374
+ msgid "Regex to organize facts for highlights section"
323
375
  msgstr ""
324
376
 
325
- msgid "Rebooting all discovered hosts"
377
+ msgid "Regex to organize facts for storage section"
326
378
  msgstr ""
327
379
 
328
- msgid "Rebooting host %s"
380
+ msgid "Regex to organize facts for software section"
329
381
  msgstr ""
330
382
 
331
- msgid "Refresh facts"
332
- msgstr "Uppdatera fakta"
383
+ msgid "Regex to organize facts for hardware section"
384
+ msgstr ""
333
385
 
334
- msgid "Refreshing the facts of a discovered host"
386
+ msgid "Regex to organize facts for network section"
335
387
  msgstr ""
336
388
 
337
- msgid "Reloading kernel on %s"
389
+ msgid "Regex to organize facts for ipmi section"
338
390
  msgstr ""
339
391
 
340
- msgid "Reported in the last 7 days"
392
+ msgid ""
393
+ "Unable to detect primary interface using MAC '%{mac}' specified by discovery_f"
394
+ "act '%{fact}'"
341
395
  msgstr ""
342
396
 
343
- msgid "Rule disabled"
397
+ msgid "Image API returned HTTP/%{code} with '%{body}"
344
398
  msgstr ""
345
399
 
346
- msgid "Rule enabled"
400
+ msgid "Image API processing error: %{msg} (HTTP/%{code}, body: %{body})"
347
401
  msgstr ""
348
402
 
349
- msgid "Rule priority (lower integer means higher priority)"
403
+ msgid "No discovered hosts available"
350
404
  msgstr ""
351
405
 
352
- msgid "Select Action"
353
- msgstr "Välj Åtgärd"
406
+ msgid "Host"
407
+ msgstr "Värd"
408
+
409
+ msgid "Model"
410
+ msgstr "Modell"
411
+
412
+ msgid "CPUs"
413
+ msgstr "CPUer"
414
+
415
+ msgid "Memory"
416
+ msgstr "Minne"
417
+
418
+ msgid "Discovered hosts"
419
+ msgstr "Hittade värdar"
420
+
421
+ msgid "items selected. Uncheck to Clear"
422
+ msgstr "poster markerade. Avmarkera för att rensa"
354
423
 
355
424
  msgid "Select all items in this page"
356
425
  msgstr "Markera alla valbara på denna sida"
357
426
 
358
- msgid "Select location"
359
- msgstr "Välj lokation"
427
+ msgid "Name"
428
+ msgstr "Namn"
360
429
 
361
- msgid "Select organization"
362
- msgstr "Välj organisation"
430
+ msgid "IP Address"
431
+ msgstr "IPadress"
363
432
 
364
- msgid "Show a discovered host"
433
+ msgid "Disk count"
365
434
  msgstr ""
366
435
 
367
- msgid "Show a discovery rule"
436
+ msgid "Disks size"
368
437
  msgstr ""
369
438
 
370
- msgid "Something went wrong while selecting hosts - %s"
371
- msgstr "Något blev fel vid markering av värdar - %s"
372
-
373
- msgid ""
374
- "Specify target hostname template pattern in the same syntax as in "
375
- "Provisioning Templates (ERB)."
376
- msgstr ""
439
+ msgid "Location"
440
+ msgstr "Lokation"
377
441
 
378
- msgid "Submit"
379
- msgstr "Sänd"
442
+ msgid "Organization"
443
+ msgstr "Organisation"
380
444
 
381
445
  msgid "Subnet"
382
446
  msgstr "Subnät"
383
447
 
384
- msgid "Target host group for this rule with all properties set"
385
- msgstr ""
448
+ msgid "Last facts upload"
449
+ msgstr "Sista faktauppladdning"
386
450
 
387
- msgid "Template"
388
- msgstr "Mall"
451
+ msgid "Delete %s?"
452
+ msgstr "Radera %s?"
389
453
 
390
- msgid "The default location to place discovered hosts in"
391
- msgstr "Standardplatsen att placera värdar i"
454
+ msgid "Please Confirm"
455
+ msgstr "Var god, bekräfta"
392
456
 
393
- msgid "The default organization to place discovered hosts in"
394
- msgstr "Standardorganisationen att placera hittade värdar i"
457
+ msgid "Cancel"
458
+ msgstr "Avbryt"
395
459
 
396
- msgid "The default prefix to use for the host name, must start with a letter"
460
+ msgid "Submit"
461
+ msgstr "Sänd"
462
+
463
+ msgid "Reboot All"
397
464
  msgstr ""
398
465
 
399
- msgid "The following hosts were not deleted: %s"
400
- msgstr "Följande värdar raderades inte: %s"
466
+ msgid "Auto Provision All"
467
+ msgstr ""
468
+
469
+ msgid "Warning"
470
+ msgstr "Varning"
401
471
 
402
472
  msgid ""
403
- "This might take a while, as all hosts, facts and reports will be destroyed "
404
- "as well"
473
+ "This might take a while, as all hosts, facts and reports will be destroyed as "
474
+ "well"
405
475
  msgstr "Detta kan dröja då alla värdar, fakta och rapporter också kommer bli förstörda"
406
476
 
407
- msgid ""
408
- "UUID to track orchestration tasks status, GET /api/orchestration/:UUID/tasks"
477
+ msgid "Select location"
478
+ msgstr "Välj lokation"
479
+
480
+ msgid "Select organization"
481
+ msgstr "Välj organisation"
482
+
483
+ msgid "Discovered host: %s"
484
+ msgstr "Hittade värdar: %s"
485
+
486
+ msgid "Identifier"
409
487
  msgstr ""
410
488
 
411
- msgid "Unable to assign subnet, primary interface is missing IP address"
489
+ msgid "MAC address"
412
490
  msgstr ""
413
491
 
414
- msgid ""
415
- "Unable to detect primary interface using MAC '%{mac}' specified by "
416
- "discovery_fact '%{fact}'"
492
+ msgid "IP address"
417
493
  msgstr ""
418
494
 
419
- msgid "Unable to find a discovery rule, no host provided (check permissions)"
495
+ msgid "Summary report for discovered hosts from Foreman"
420
496
  msgstr ""
421
497
 
422
- msgid "Unable to perform kexec on %{name} via %{url}: %{msg}"
498
+ msgid "<b>Foreman</b> Discovered hosts summary"
423
499
  msgstr ""
424
500
 
425
- msgid "Unable to provision %{host}: %{errors}"
501
+ msgid "Summary from %{time} ago to %{now}"
426
502
  msgstr ""
427
503
 
428
- msgid "Unable to reboot %{name} via %{url}: %{msg}"
504
+ msgid "Discovered hosts from Foreman server at %{foreman_url}"
429
505
  msgstr ""
430
506
 
431
- msgid "Update a rule"
507
+ msgid "No discovered hosts for the selected period"
432
508
  msgstr ""
433
509
 
434
- msgid "Upload facts for a host, creating the host if required"
510
+ msgid "Foreman discovered hosts summary"
435
511
  msgstr ""
436
512
 
437
- msgid "Value"
438
- msgstr "Värde"
513
+ msgid "No new discovered hosts for this period"
514
+ msgstr ""
439
515
 
440
- msgid "Warning"
441
- msgstr "Varning"
516
+ msgid "Primary"
517
+ msgstr ""
518
+
519
+ msgid "Locations"
520
+ msgstr ""
521
+
522
+ msgid "Organizations"
523
+ msgstr ""
524
+
525
+ msgid "Target host group for this rule with all properties set"
526
+ msgstr ""
527
+
528
+ msgid "Template"
529
+ msgstr "Mall"
442
530
 
443
531
  msgid ""
444
- "When creating hostname patterns, make sure the resulting host names are "
445
- "unique. Hostnames must not start with numbers. A good approach is to use "
446
- "unique information provided by facter (MAC address, BIOS or serial ID)."
532
+ "Specify target hostname template pattern in the same syntax as in Provisioning"
533
+ " Templates (ERB)."
447
534
  msgstr ""
448
535
 
449
- msgid "can't contain white spaces."
536
+ msgid ""
537
+ "Domain will be appended automatically. A hostname based on MAC address will be"
538
+ " used when left blank. In addition to @host attribute function rand for random"
539
+ " integers is available. Examples:"
450
540
  msgstr ""
451
541
 
452
542
  msgid ""
453
- "defines a pattern to assign human-readable hostnames to the matching hosts"
543
+ "When creating hostname patterns, make sure the resulting host names are unique"
544
+ ". Hostnames must not start with numbers. A good approach is to use unique info"
545
+ "rmation provided by facter (MAC address, BIOS or serial ID)."
454
546
  msgstr ""
455
547
 
456
- msgid "enables to limit maximum amount of provisioned hosts per rule"
548
+ msgid "Hostname for provisioned hosts"
457
549
  msgstr ""
458
550
 
459
- msgid "filter results"
460
- msgstr "filtrera resultat"
551
+ msgid "Hosts limit"
552
+ msgstr ""
461
553
 
462
- msgid "flag is used for temporary shutdown of rules"
554
+ msgid "Maximum hosts provisioned with this rule (0 = unlimited)"
463
555
  msgstr ""
464
556
 
465
- msgid ""
466
- "hash containing facts for the host with minimum set of facts: "
467
- "discovery_bootif, macaddress_eth0, ipaddress, ipaddress_eth0, interfaces: "
468
- "eth0 (example in case primary interface is named eth0)"
557
+ msgid "Rule priority (lower integer means higher priority)"
469
558
  msgstr ""
470
559
 
471
- msgid "items selected. Uncheck to Clear"
472
- msgstr "poster markerade. Avmarkera för att rensa"
560
+ msgid "Edit Discovery Rule"
561
+ msgstr ""
473
562
 
474
- msgid "must start with a letter or ERB."
563
+ msgid "Discovery Rules"
475
564
  msgstr ""
476
565
 
477
- msgid "not required if it's a virtual machine"
566
+ msgid "New Rule"
478
567
  msgstr ""
479
568
 
480
- msgid "not required if using a subnet with DHCP proxy"
569
+ msgid "DiscoveryRule|Name"
481
570
  msgstr ""
482
571
 
483
- msgid "number of entries per request"
572
+ msgid "DiscoveryRule|Priority"
484
573
  msgstr ""
485
574
 
486
- msgid "paginate results"
575
+ msgid "DiscoveryRule|Query"
487
576
  msgstr ""
488
577
 
489
- msgid ""
490
- "puts the rules in order, low numbers go first. Must be greater then zero"
578
+ msgid "Host group"
579
+ msgstr "Värdgrupp"
580
+
581
+ msgid "Hosts/limit"
491
582
  msgstr ""
492
583
 
493
- msgid "query to match discovered hosts for the particular rule"
584
+ msgid "DiscoveryRule|Enabled"
494
585
  msgstr ""
495
586
 
496
- msgid "represents rule name shown to the users"
587
+ msgid "New Discovery Rule"
497
588
  msgstr ""
498
589
 
499
- msgid ""
500
- "required if value is not inherited from host group or default password in "
501
- "settings"
590
+ msgid "A summary of discovered hosts"
502
591
  msgstr ""
503
592
 
504
- msgid "sort results"
593
+ msgid "Discovery rules"
505
594
  msgstr ""
506
595
 
507
- msgid "the hostgroup that is used to auto provision a host"
596
+ msgid "Discovery widget"
508
597
  msgstr ""