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.
- checksums.yaml +4 -4
- data/app/controllers/api/v2/discovered_hosts_controller.rb +4 -7
- data/app/controllers/api/v2/discovery_rules_controller.rb +1 -0
- data/app/controllers/api/v2/fact_values_controller_extensions.rb +11 -0
- data/app/controllers/concerns/foreman/controller/discovered_extensions.rb +6 -3
- data/app/controllers/discovered_hosts_controller.rb +46 -11
- data/app/controllers/discovery_rules_controller.rb +1 -1
- data/app/helpers/discovered_hosts_helper.rb +33 -16
- data/app/models/concerns/discovery_taxonomy_extensions.rb +7 -0
- data/app/models/concerns/fact_value_extensions.rb +8 -0
- data/app/models/discovery_rule.rb +4 -6
- data/app/models/host/discovered.rb +29 -10
- data/app/models/host/managed_extensions.rb +2 -10
- data/app/models/setting/discovered.rb +22 -28
- data/app/services/foreman_discovery/host_converter.rb +19 -10
- data/app/views/api/v2/discovered_hosts/main.json.rabl +1 -1
- data/app/views/dashboard/_discovery_widget_host.html.erb +1 -1
- data/app/views/discovered_hosts/_discovered_host.html.erb +1 -1
- data/app/views/discovered_hosts/_discovered_hosts_list.html.erb +32 -1
- data/app/views/discovered_hosts/index.html.erb +2 -2
- data/app/views/discovered_hosts/show.html.erb +5 -5
- data/app/views/discovered_mailer/_discovered_host.html.erb +1 -1
- data/app/views/discovered_mailer/discovered_summary.text.erb +2 -2
- data/app/views/discovery_rules/_form.html.erb +2 -19
- data/app/views/discovery_rules/_template_inline.erb +10 -0
- data/app/views/discovery_rules/index.html.erb +1 -1
- data/app/views/foreman_discovery/debian_kexec.erb +34 -0
- data/app/views/foreman_discovery/redhat_kexec.erb +5 -4
- data/config/routes.rb +4 -0
- data/db/migrate/20141223142759_fill_discovery_attribute_sets_for_existing_hosts.rb +15 -1
- data/db/migrate/20160719124942_add_missing_view_permissions.rb +18 -0
- data/db/seeds.d/50_discovery_templates.rb +15 -13
- data/lib/discovery.rake +1 -0
- data/lib/foreman_discovery/engine.rb +24 -10
- data/lib/foreman_discovery/version.rb +1 -1
- data/locale/ca/LC_MESSAGES/foreman_discovery.mo +0 -0
- data/locale/ca/foreman_discovery.edit.po +274 -136
- data/locale/ca/foreman_discovery.po +396 -328
- data/locale/de/LC_MESSAGES/foreman_discovery.mo +0 -0
- data/locale/de/foreman_discovery.edit.po +309 -171
- data/locale/de/foreman_discovery.po +419 -361
- data/locale/en/LC_MESSAGES/foreman_discovery.mo +0 -0
- data/locale/en/foreman_discovery.edit.po +881 -0
- data/locale/en/foreman_discovery.po +665 -0
- data/locale/en_GB/LC_MESSAGES/foreman_discovery.mo +0 -0
- data/locale/en_GB/foreman_discovery.edit.po +279 -141
- data/locale/en_GB/foreman_discovery.po +446 -391
- data/locale/es/LC_MESSAGES/foreman_discovery.mo +0 -0
- data/locale/es/foreman_discovery.edit.po +277 -139
- data/locale/es/foreman_discovery.po +415 -362
- data/locale/foreman_discovery.pot +241 -135
- data/locale/fr/LC_MESSAGES/foreman_discovery.mo +0 -0
- data/locale/fr/foreman_discovery.edit.po +289 -151
- data/locale/fr/foreman_discovery.po +439 -411
- data/locale/gl/LC_MESSAGES/foreman_discovery.mo +0 -0
- data/locale/gl/foreman_discovery.edit.po +266 -128
- data/locale/gl/foreman_discovery.po +320 -246
- data/locale/it/LC_MESSAGES/foreman_discovery.mo +0 -0
- data/locale/it/foreman_discovery.edit.po +277 -139
- data/locale/it/foreman_discovery.po +407 -352
- data/locale/ja/LC_MESSAGES/foreman_discovery.mo +0 -0
- data/locale/ja/foreman_discovery.edit.po +279 -141
- data/locale/ja/foreman_discovery.po +411 -339
- data/locale/ko/LC_MESSAGES/foreman_discovery.mo +0 -0
- data/locale/ko/foreman_discovery.edit.po +277 -139
- data/locale/ko/foreman_discovery.po +411 -339
- data/locale/pt_BR/LC_MESSAGES/foreman_discovery.mo +0 -0
- data/locale/pt_BR/foreman_discovery.edit.po +282 -144
- data/locale/pt_BR/foreman_discovery.po +430 -394
- data/locale/ru/LC_MESSAGES/foreman_discovery.mo +0 -0
- data/locale/ru/foreman_discovery.edit.po +371 -232
- data/locale/ru/foreman_discovery.po +448 -385
- data/locale/sv_SE/LC_MESSAGES/foreman_discovery.mo +0 -0
- data/locale/sv_SE/foreman_discovery.edit.po +270 -132
- data/locale/sv_SE/foreman_discovery.po +336 -260
- data/locale/zh_CN/LC_MESSAGES/foreman_discovery.mo +0 -0
- data/locale/zh_CN/foreman_discovery.edit.po +279 -141
- data/locale/zh_CN/foreman_discovery.po +412 -336
- data/locale/zh_TW/LC_MESSAGES/foreman_discovery.mo +0 -0
- data/locale/zh_TW/foreman_discovery.edit.po +279 -141
- data/locale/zh_TW/foreman_discovery.po +412 -338
- data/test/functional/api/v2/discovered_hosts_controller_test.rb +30 -22
- data/test/functional/api/v2/discovery_rules_controller_test.rb +7 -0
- data/test/functional/api/v2/fact_value_extensions_test.rb +37 -0
- data/test/functional/discovered_hosts_controller_test.rb +89 -16
- data/test/functional/discovery_rules_controller_test.rb +1 -1
- data/test/test_helper_discovery.rb +1 -1
- data/test/unit/discovered_extensions_test.rb +65 -21
- data/test/unit/discovery_attribute_set_test.rb +4 -4
- data/test/unit/discovery_taxonomy_extensions_test.rb +31 -0
- data/test/unit/host_discovered_test.rb +110 -14
- metadata +121 -110
- data/app/helpers/concerns/foreman_discovery/settings_helper_extensions.rb +0 -34
@@ -1,5 +1,5 @@
|
|
1
1
|
# SOME DESCRIPTIVE TITLE.
|
2
|
-
# Copyright (C)
|
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:
|
12
|
-
"Report-Msgid-Bugs-To:
|
13
|
-
"PO-Revision-Date:
|
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 "
|
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 "
|
27
|
-
msgstr "
|
26
|
+
msgid "%s ago"
|
27
|
+
msgstr "%s sedan"
|
28
28
|
|
29
|
-
msgid "
|
29
|
+
msgid "%s discovered hosts were provisioned"
|
30
30
|
msgstr ""
|
31
31
|
|
32
|
-
msgid "
|
32
|
+
msgid "<b>Foreman</b> Discovered hosts summary"
|
33
33
|
msgstr ""
|
34
34
|
|
35
|
-
msgid "
|
35
|
+
msgid "A summary of discovered hosts"
|
36
36
|
msgstr ""
|
37
37
|
|
38
|
-
msgid "
|
39
|
-
msgstr ""
|
38
|
+
msgid "Assign Location"
|
39
|
+
msgstr "Tilldela Plats"
|
40
40
|
|
41
|
-
msgid "
|
41
|
+
msgid "Assign Organization"
|
42
|
+
msgstr "Tilldela Organisation"
|
43
|
+
|
44
|
+
msgid "Associated Hosts"
|
42
45
|
msgstr ""
|
43
46
|
|
44
|
-
msgid "Provision
|
47
|
+
msgid "Auto Provision"
|
45
48
|
msgstr ""
|
46
49
|
|
47
|
-
msgid "
|
50
|
+
msgid "Auto Provision All"
|
48
51
|
msgstr ""
|
49
52
|
|
50
|
-
msgid "
|
53
|
+
msgid "Auto provisioning"
|
51
54
|
msgstr ""
|
52
55
|
|
53
|
-
msgid "
|
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 "
|
62
|
+
msgid "Automatically reboot or kexec discovered host during provisioning"
|
62
63
|
msgstr ""
|
63
64
|
|
64
|
-
msgid "
|
65
|
+
msgid "Back"
|
65
66
|
msgstr ""
|
66
67
|
|
67
|
-
msgid ""
|
68
|
-
|
69
|
-
|
70
|
-
|
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 "
|
77
|
+
msgid "Clean all reported facts during provisioning (except discovery facts)"
|
74
78
|
msgstr ""
|
75
79
|
|
76
|
-
msgid "
|
80
|
+
msgid "Could not get facts from proxy %{url}: %{error}"
|
77
81
|
msgstr ""
|
78
82
|
|
79
|
-
msgid "
|
83
|
+
msgid "Create a discovered host for testing (use /facts to create new hosts)"
|
80
84
|
msgstr ""
|
81
85
|
|
82
|
-
msgid "
|
86
|
+
msgid "Create a discovery rule"
|
83
87
|
msgstr ""
|
84
88
|
|
85
|
-
msgid "
|
89
|
+
msgid "Create host"
|
86
90
|
msgstr ""
|
87
91
|
|
88
|
-
msgid "
|
92
|
+
msgid "Delete %s?"
|
93
|
+
msgstr "Radera %s?"
|
94
|
+
|
95
|
+
msgid "Delete a discovered host"
|
89
96
|
msgstr ""
|
90
97
|
|
91
|
-
msgid "
|
98
|
+
msgid "Delete a rule"
|
92
99
|
msgstr ""
|
93
100
|
|
94
|
-
msgid "
|
101
|
+
msgid "Delete hosts"
|
102
|
+
msgstr "Radera värdar"
|
103
|
+
|
104
|
+
msgid "Delete rule '%s'?"
|
95
105
|
msgstr ""
|
96
106
|
|
97
|
-
msgid "
|
107
|
+
msgid "Destroyed selected hosts"
|
108
|
+
msgstr "Förstör markerade värdar"
|
109
|
+
|
110
|
+
msgid "Disable"
|
98
111
|
msgstr ""
|
99
112
|
|
100
|
-
msgid "
|
113
|
+
msgid "Disable rule '%s'?"
|
101
114
|
msgstr ""
|
102
115
|
|
103
|
-
msgid "
|
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 "
|
131
|
+
msgid "Discovered hosts from Foreman server at %{foreman_url}"
|
110
132
|
msgstr ""
|
111
133
|
|
112
|
-
msgid "
|
134
|
+
msgid "Discovered hosts summary"
|
113
135
|
msgstr ""
|
114
136
|
|
115
|
-
msgid "
|
137
|
+
msgid "Discovery Rules"
|
116
138
|
msgstr ""
|
117
139
|
|
118
|
-
msgid "
|
140
|
+
msgid "Discovery location"
|
119
141
|
msgstr ""
|
120
142
|
|
121
|
-
msgid "
|
143
|
+
msgid "Discovery organization"
|
122
144
|
msgstr ""
|
123
145
|
|
124
|
-
msgid "
|
146
|
+
msgid "Discovery rules"
|
125
147
|
msgstr ""
|
126
148
|
|
127
|
-
msgid "
|
149
|
+
msgid "Discovery widget"
|
128
150
|
msgstr ""
|
129
151
|
|
130
|
-
msgid "
|
152
|
+
msgid "DiscoveryRule|Enabled"
|
131
153
|
msgstr ""
|
132
154
|
|
133
|
-
msgid "
|
155
|
+
msgid "DiscoveryRule|Name"
|
134
156
|
msgstr ""
|
135
157
|
|
136
|
-
msgid "
|
158
|
+
msgid "DiscoveryRule|Priority"
|
137
159
|
msgstr ""
|
138
160
|
|
139
|
-
msgid "
|
161
|
+
msgid "DiscoveryRule|Query"
|
140
162
|
msgstr ""
|
141
163
|
|
142
|
-
msgid "
|
164
|
+
msgid "Disk count"
|
143
165
|
msgstr ""
|
144
166
|
|
145
|
-
msgid "
|
167
|
+
msgid "Disks size"
|
146
168
|
msgstr ""
|
147
169
|
|
148
|
-
msgid "
|
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 "
|
173
|
+
msgid "Edit Discovery Rule"
|
152
174
|
msgstr ""
|
153
175
|
|
154
|
-
msgid "
|
176
|
+
msgid "Enable"
|
155
177
|
msgstr ""
|
156
178
|
|
157
|
-
msgid "
|
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 "
|
182
|
+
msgid "Errors during auto provisioning: %s"
|
167
183
|
msgstr ""
|
168
184
|
|
169
|
-
msgid "
|
185
|
+
msgid "Errors during reboot: %s"
|
170
186
|
msgstr ""
|
171
187
|
|
172
|
-
msgid "
|
188
|
+
msgid "Execute rules against a discovered host"
|
173
189
|
msgstr ""
|
174
190
|
|
175
|
-
msgid "
|
191
|
+
msgid "Execute rules against all currently discovered hosts"
|
176
192
|
msgstr ""
|
177
193
|
|
178
|
-
msgid "
|
194
|
+
msgid "Expand All"
|
179
195
|
msgstr ""
|
180
196
|
|
181
|
-
msgid "
|
182
|
-
msgstr "
|
197
|
+
msgid "Expected discovery_fact '%s' is missing, unable to detect primary interface and set hostname"
|
198
|
+
msgstr ""
|
183
199
|
|
184
|
-
msgid "
|
185
|
-
msgstr "
|
200
|
+
msgid "Extra facter columns to show in host lists (separate by comma)"
|
201
|
+
msgstr ""
|
186
202
|
|
187
|
-
msgid "
|
203
|
+
msgid "Fact columns"
|
188
204
|
msgstr ""
|
189
205
|
|
190
|
-
msgid "
|
206
|
+
msgid "Fact name to use for primary interface detection"
|
191
207
|
msgstr ""
|
192
208
|
|
193
|
-
msgid "
|
194
|
-
msgstr "
|
209
|
+
msgid "Facts could not be imported"
|
210
|
+
msgstr ""
|
195
211
|
|
196
|
-
msgid "
|
197
|
-
msgstr "
|
212
|
+
msgid "Facts refreshed for %s"
|
213
|
+
msgstr "Fakta uppdaterade för %s"
|
198
214
|
|
199
|
-
msgid "
|
200
|
-
msgstr "
|
215
|
+
msgid "Failed to auto provision host %s: %s"
|
216
|
+
msgstr ""
|
201
217
|
|
202
|
-
msgid "
|
218
|
+
msgid "Failed to reboot host %s"
|
203
219
|
msgstr ""
|
204
220
|
|
205
|
-
msgid "
|
221
|
+
msgid "Failed to reboot host %{hostname} with error %{error_message}"
|
206
222
|
msgstr ""
|
207
223
|
|
208
|
-
msgid "%s
|
209
|
-
msgstr "
|
224
|
+
msgid "Failed to reboot hosts with error %s"
|
225
|
+
msgstr ""
|
210
226
|
|
211
|
-
msgid "
|
212
|
-
msgstr "
|
227
|
+
msgid "Failed to refresh facts for %s"
|
228
|
+
msgstr "Misslyckades med att uppdatera fakta för %s"
|
213
229
|
|
214
|
-
msgid "
|
230
|
+
msgid "Failed to refresh facts for %{hostname} with error %{error_message}"
|
215
231
|
msgstr ""
|
216
232
|
|
217
|
-
msgid "
|
218
|
-
msgstr "
|
233
|
+
msgid "Foreman discovered hosts summary"
|
234
|
+
msgstr ""
|
219
235
|
|
220
|
-
msgid "
|
236
|
+
msgid "Hardware"
|
221
237
|
msgstr ""
|
222
238
|
|
223
|
-
msgid "
|
239
|
+
msgid "Hardware facts"
|
224
240
|
msgstr ""
|
225
241
|
|
226
|
-
msgid "
|
227
|
-
msgstr "
|
242
|
+
msgid "Highlighted facts"
|
243
|
+
msgstr ""
|
228
244
|
|
229
|
-
msgid "
|
245
|
+
msgid "Highlights"
|
230
246
|
msgstr ""
|
231
247
|
|
232
|
-
msgid "
|
233
|
-
msgstr "
|
248
|
+
msgid "Host"
|
249
|
+
msgstr "Värd"
|
234
250
|
|
235
|
-
msgid "
|
236
|
-
msgstr "
|
251
|
+
msgid "Host %{host} was provisioned with rule %{rule}"
|
252
|
+
msgstr ""
|
237
253
|
|
238
|
-
msgid "
|
239
|
-
msgstr "
|
254
|
+
msgid "Host group"
|
255
|
+
msgstr "Värdgrupp"
|
240
256
|
|
241
|
-
msgid "
|
242
|
-
|
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 "
|
245
|
-
|
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 "
|
248
|
-
msgstr "
|
267
|
+
msgid "Host of type %s can not be rebooted"
|
268
|
+
msgstr ""
|
249
269
|
|
250
|
-
msgid "
|
251
|
-
msgstr "
|
270
|
+
msgid "Hostname facts"
|
271
|
+
msgstr ""
|
252
272
|
|
253
|
-
msgid "
|
273
|
+
msgid "Hostname for provisioned hosts"
|
254
274
|
msgstr ""
|
255
275
|
|
256
|
-
msgid "
|
276
|
+
msgid "Hostname prefix"
|
257
277
|
msgstr ""
|
258
278
|
|
259
|
-
msgid "
|
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 "
|
282
|
+
msgid "Hosts limit"
|
263
283
|
msgstr ""
|
264
284
|
|
265
|
-
msgid "
|
285
|
+
msgid "Hosts/limit"
|
266
286
|
msgstr ""
|
267
287
|
|
268
|
-
msgid "
|
288
|
+
msgid "IP Address"
|
289
|
+
msgstr "IPadress"
|
290
|
+
|
291
|
+
msgid "IP address"
|
269
292
|
msgstr ""
|
270
293
|
|
271
|
-
msgid "
|
294
|
+
msgid "IPMI"
|
272
295
|
msgstr ""
|
273
296
|
|
274
|
-
msgid "
|
297
|
+
msgid "IPMI facts"
|
275
298
|
msgstr ""
|
276
299
|
|
277
|
-
msgid "
|
300
|
+
msgid "Identifier"
|
278
301
|
msgstr ""
|
279
302
|
|
280
|
-
msgid "
|
303
|
+
msgid "Image API processing error: %{msg} (HTTP/%{code}, body: %{body})"
|
281
304
|
msgstr ""
|
282
305
|
|
283
|
-
msgid "
|
306
|
+
msgid "Image API returned HTTP/%{code} with '%{body}"
|
284
307
|
msgstr ""
|
285
308
|
|
286
|
-
msgid "
|
309
|
+
msgid "In addition to @host attribute function rand for random integers is available. Examples:"
|
287
310
|
msgstr ""
|
288
311
|
|
289
|
-
msgid "
|
312
|
+
msgid "Interface fact"
|
290
313
|
msgstr ""
|
291
314
|
|
292
|
-
msgid "
|
315
|
+
msgid "Interfaces"
|
293
316
|
msgstr ""
|
294
317
|
|
295
|
-
msgid "
|
296
|
-
|
297
|
-
msgstr[0] ""
|
298
|
-
msgstr[1] ""
|
318
|
+
msgid "Invalid facts, must be a Hash"
|
319
|
+
msgstr ""
|
299
320
|
|
300
|
-
msgid "
|
301
|
-
|
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
|
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
|
-
"
|
315
|
-
|
330
|
+
msgid "Last facts upload"
|
331
|
+
msgstr "Sista faktauppladdning"
|
332
|
+
|
333
|
+
msgid "List all discovered hosts"
|
316
334
|
msgstr ""
|
317
335
|
|
318
|
-
msgid "
|
336
|
+
msgid "List all discovery rules"
|
319
337
|
msgstr ""
|
320
338
|
|
321
|
-
msgid "
|
339
|
+
msgid "List all fact values of a given discovered host"
|
322
340
|
msgstr ""
|
323
341
|
|
324
|
-
msgid "
|
342
|
+
msgid "List of facts to use for the hostname (separated by comma, first wins)"
|
325
343
|
msgstr ""
|
326
344
|
|
327
|
-
msgid "
|
345
|
+
msgid "Location"
|
346
|
+
msgstr "Lokation"
|
347
|
+
|
348
|
+
msgid "Locations"
|
328
349
|
msgstr ""
|
329
350
|
|
330
|
-
msgid "
|
351
|
+
msgid "Lock PXE"
|
331
352
|
msgstr ""
|
332
353
|
|
333
|
-
msgid "
|
354
|
+
msgid "Locked template name"
|
334
355
|
msgstr ""
|
335
356
|
|
336
|
-
msgid "
|
337
|
-
msgstr "
|
357
|
+
msgid "MAC address"
|
358
|
+
msgstr ""
|
338
359
|
|
339
|
-
msgid "
|
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 "
|
366
|
+
msgid "Memory"
|
367
|
+
msgstr "Minne"
|
368
|
+
|
369
|
+
msgid "Miscellaneous"
|
346
370
|
msgstr ""
|
347
371
|
|
348
|
-
msgid "
|
372
|
+
msgid "Model"
|
373
|
+
msgstr "Modell"
|
374
|
+
|
375
|
+
msgid "Must specify a user with email enabled"
|
349
376
|
msgstr ""
|
350
377
|
|
351
|
-
msgid "
|
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 "
|
390
|
+
msgid "New Discovery Rule"
|
360
391
|
msgstr ""
|
361
392
|
|
362
|
-
msgid "
|
393
|
+
msgid "New Rule"
|
363
394
|
msgstr ""
|
364
395
|
|
365
|
-
msgid "
|
396
|
+
msgid "New in the last 24 hours"
|
366
397
|
msgstr ""
|
367
398
|
|
368
|
-
msgid "
|
369
|
-
msgstr "
|
399
|
+
msgid "No discovered hosts available"
|
400
|
+
msgstr ""
|
370
401
|
|
371
|
-
msgid "
|
372
|
-
msgstr "
|
402
|
+
msgid "No discovered hosts for the selected period"
|
403
|
+
msgstr ""
|
373
404
|
|
374
|
-
msgid "
|
405
|
+
msgid "No discovered hosts to provision"
|
375
406
|
msgstr ""
|
376
407
|
|
377
|
-
msgid "
|
408
|
+
msgid "No discovered hosts to reboot"
|
378
409
|
msgstr ""
|
379
410
|
|
380
|
-
msgid "
|
411
|
+
msgid "No hostgroup associated with rule '%s'"
|
381
412
|
msgstr ""
|
382
413
|
|
383
|
-
msgid "
|
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 "
|
423
|
+
msgid "No rule found for host %s"
|
387
424
|
msgstr ""
|
388
425
|
|
389
|
-
msgid "
|
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 "
|
432
|
+
msgid "Organization"
|
433
|
+
msgstr "Organisation"
|
434
|
+
|
435
|
+
msgid "Organizations"
|
398
436
|
msgstr ""
|
399
437
|
|
400
|
-
msgid "
|
438
|
+
msgid "PXE template to be used when pinning a host to discovery"
|
401
439
|
msgstr ""
|
402
440
|
|
403
|
-
msgid "
|
441
|
+
msgid "Please Confirm"
|
442
|
+
msgstr "Var god, bekräfta"
|
443
|
+
|
444
|
+
msgid "Primary"
|
404
445
|
msgstr ""
|
405
446
|
|
406
|
-
msgid "
|
407
|
-
msgstr "
|
447
|
+
msgid "Provision"
|
448
|
+
msgstr "Provisionera"
|
408
449
|
|
409
|
-
msgid "
|
410
|
-
msgstr "
|
450
|
+
msgid "Provision a discovered host"
|
451
|
+
msgstr ""
|
411
452
|
|
412
|
-
msgid "
|
413
|
-
msgstr "
|
453
|
+
msgid "Quick create"
|
454
|
+
msgstr ""
|
414
455
|
|
415
|
-
msgid "
|
416
|
-
msgstr "
|
456
|
+
msgid "Reboot"
|
457
|
+
msgstr ""
|
417
458
|
|
418
|
-
msgid "
|
419
|
-
msgstr "
|
459
|
+
msgid "Reboot All"
|
460
|
+
msgstr ""
|
420
461
|
|
421
|
-
msgid "
|
422
|
-
msgstr "
|
462
|
+
msgid "Rebooting %s"
|
463
|
+
msgstr "Startar om %s"
|
423
464
|
|
424
|
-
msgid "
|
425
|
-
msgstr "
|
465
|
+
msgid "Rebooting a discovered host"
|
466
|
+
msgstr ""
|
426
467
|
|
427
|
-
msgid "
|
428
|
-
msgstr "
|
468
|
+
msgid "Rebooting all discovered hosts"
|
469
|
+
msgstr ""
|
429
470
|
|
430
|
-
msgid "
|
431
|
-
msgstr "
|
471
|
+
msgid "Rebooting host %s"
|
472
|
+
msgstr ""
|
432
473
|
|
433
|
-
msgid "
|
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 "
|
480
|
+
msgid "Regex to organize facts for hardware section"
|
437
481
|
msgstr ""
|
438
482
|
|
439
|
-
msgid "
|
440
|
-
msgstr "
|
483
|
+
msgid "Regex to organize facts for highlights section - e.g. ^(abc|cde)$"
|
484
|
+
msgstr ""
|
441
485
|
|
442
|
-
msgid "
|
443
|
-
msgstr "
|
486
|
+
msgid "Regex to organize facts for ipmi section"
|
487
|
+
msgstr ""
|
444
488
|
|
445
|
-
msgid "
|
446
|
-
msgstr "
|
489
|
+
msgid "Regex to organize facts for network section"
|
490
|
+
msgstr ""
|
447
491
|
|
448
|
-
msgid "
|
449
|
-
msgstr "
|
492
|
+
msgid "Regex to organize facts for software section"
|
493
|
+
msgstr ""
|
450
494
|
|
451
|
-
msgid "
|
452
|
-
msgstr "
|
495
|
+
msgid "Regex to organize facts for storage section"
|
496
|
+
msgstr ""
|
453
497
|
|
454
|
-
msgid "
|
455
|
-
msgstr "
|
498
|
+
msgid "Reloading kernel on %s"
|
499
|
+
msgstr ""
|
456
500
|
|
457
|
-
msgid "
|
458
|
-
msgstr "
|
501
|
+
msgid "Reported in the last 7 days"
|
502
|
+
msgstr ""
|
459
503
|
|
460
|
-
msgid "
|
461
|
-
msgstr "
|
504
|
+
msgid "Rule disabled"
|
505
|
+
msgstr ""
|
462
506
|
|
463
|
-
msgid "
|
507
|
+
msgid "Rule enabled"
|
464
508
|
msgstr ""
|
465
509
|
|
466
|
-
msgid "
|
510
|
+
msgid "Rule priority (lower integer means higher priority)"
|
467
511
|
msgstr ""
|
468
512
|
|
469
|
-
msgid "
|
470
|
-
msgstr "
|
513
|
+
msgid "Select Action"
|
514
|
+
msgstr "Välj Åtgärd"
|
471
515
|
|
472
|
-
msgid ""
|
473
|
-
"
|
474
|
-
|
475
|
-
|
516
|
+
msgid "Select all items in this page"
|
517
|
+
msgstr "Markera alla valbara på 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 "
|
484
|
-
msgstr "
|
528
|
+
msgid "Show a discovered host"
|
529
|
+
msgstr ""
|
485
530
|
|
486
|
-
msgid "
|
531
|
+
msgid "Show a discovery rule"
|
487
532
|
msgstr ""
|
488
533
|
|
489
|
-
msgid "
|
534
|
+
msgid "Software"
|
490
535
|
msgstr ""
|
491
536
|
|
492
|
-
msgid "
|
537
|
+
msgid "Software facts"
|
493
538
|
msgstr ""
|
494
539
|
|
495
|
-
msgid "
|
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 "
|
546
|
+
msgid "Storage"
|
499
547
|
msgstr ""
|
500
548
|
|
501
|
-
msgid "
|
549
|
+
msgid "Storage facts"
|
502
550
|
msgstr ""
|
503
551
|
|
504
|
-
msgid "
|
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 "
|
561
|
+
msgid "Summary from %{time} ago to %{now}"
|
508
562
|
msgstr ""
|
509
563
|
|
510
|
-
msgid "
|
564
|
+
msgid "Summary report for discovered hosts from Foreman"
|
511
565
|
msgstr ""
|
512
566
|
|
513
|
-
msgid "
|
567
|
+
msgid "Target host group for this rule with all properties set"
|
514
568
|
msgstr ""
|
515
569
|
|
516
|
-
msgid "
|
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 "
|
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 "
|
591
|
+
msgid "Unable to assign subnet, primary interface is missing IP address"
|
523
592
|
msgstr ""
|
524
593
|
|
525
|
-
msgid "
|
594
|
+
msgid "Unable to detect primary interface using MAC '%{mac}' specified by discovery_fact '%{fact}'"
|
526
595
|
msgstr ""
|
527
596
|
|
528
|
-
msgid "
|
529
|
-
msgstr "
|
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 "
|
609
|
+
msgid "Update a rule"
|
549
610
|
msgstr ""
|
550
611
|
|
551
|
-
msgid "
|
612
|
+
msgid "Upload facts for a host, creating the host if required"
|
552
613
|
msgstr ""
|
553
614
|
|
554
|
-
msgid "
|
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 "
|
621
|
+
msgid "can't contain white spaces."
|
558
622
|
msgstr ""
|
559
623
|
|
560
|
-
msgid "
|
624
|
+
msgid "defines a pattern to assign human-readable hostnames to the matching hosts"
|
561
625
|
msgstr ""
|
562
626
|
|
563
|
-
msgid "
|
627
|
+
msgid "enables to limit maximum amount of provisioned hosts per rule"
|
564
628
|
msgstr ""
|
565
629
|
|
566
|
-
msgid "
|
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 "
|
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 "
|
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 "
|
645
|
+
msgid "not required if it's a virtual machine"
|
576
646
|
msgstr ""
|
577
647
|
|
578
|
-
msgid "
|
579
|
-
msgstr "
|
648
|
+
msgid "not required if using a subnet with DHCP proxy"
|
649
|
+
msgstr ""
|
580
650
|
|
581
|
-
msgid "
|
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 "
|
657
|
+
msgid "puts the rules in order, low numbers go first. Must be greater then zero"
|
585
658
|
msgstr ""
|
586
659
|
|
587
|
-
msgid "
|
660
|
+
msgid "query to match discovered hosts for the particular rule"
|
588
661
|
msgstr ""
|
589
662
|
|
590
|
-
msgid "
|
663
|
+
msgid "represents rule name shown to the users"
|
591
664
|
msgstr ""
|
592
665
|
|
593
|
-
msgid "
|
666
|
+
msgid "required if value is not inherited from host group or default password in settings"
|
594
667
|
msgstr ""
|
595
668
|
|
596
|
-
msgid "
|
669
|
+
msgid "sort results"
|
670
|
+
msgstr "sortera resultat"
|
671
|
+
|
672
|
+
msgid "the hostgroup that is used to auto provision a host"
|
597
673
|
msgstr ""
|