foreman_discovery 5.0.2 → 6.0.0

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