foreman_fog_proxmox 0.20.1 → 0.22.0

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 (64) hide show
  1. checksums.yaml +4 -4
  2. data/app/assets/javascripts/foreman_fog_proxmox/locale/cs_CZ/foreman_fog_proxmox.js +646 -0
  3. data/app/assets/javascripts/foreman_fog_proxmox/locale/de/foreman_fog_proxmox.js +644 -0
  4. data/app/assets/javascripts/foreman_fog_proxmox/locale/de_DE/foreman_fog_proxmox.js +644 -0
  5. data/app/assets/javascripts/foreman_fog_proxmox/locale/en/foreman_fog_proxmox.js +644 -0
  6. data/app/assets/javascripts/foreman_fog_proxmox/locale/fr/foreman_fog_proxmox.js +644 -0
  7. data/app/assets/javascripts/foreman_fog_proxmox/locale/ja/foreman_fog_proxmox.js +643 -0
  8. data/app/assets/javascripts/foreman_fog_proxmox/locale/ka/foreman_fog_proxmox.js +644 -0
  9. data/app/assets/javascripts/foreman_fog_proxmox/locale/pt_BR/foreman_fog_proxmox.js +644 -0
  10. data/app/assets/javascripts/foreman_fog_proxmox/locale/zh_CN/foreman_fog_proxmox.js +643 -0
  11. data/app/assets/javascripts/foreman_fog_proxmox/proxmox_vm_container.js +36 -1
  12. data/app/controllers/foreman_fog_proxmox/compute_resources_controller.rb +34 -0
  13. data/app/helpers/proxmox_form_helper.rb +69 -0
  14. data/app/helpers/proxmox_vm_attrs_helper.rb +11 -3
  15. data/app/helpers/proxmox_vm_interfaces_helper.rb +21 -4
  16. data/app/helpers/proxmox_vm_volumes_helper.rb +29 -3
  17. data/app/models/concerns/host_ext/proxmox/interfaces.rb +1 -2
  18. data/app/models/foreman_fog_proxmox/proxmox_compute_attributes.rb +5 -1
  19. data/app/models/foreman_fog_proxmox/proxmox_vm_new.rb +6 -6
  20. data/app/models/foreman_fog_proxmox/proxmox_vm_queries.rb +1 -1
  21. data/app/models/foreman_fog_proxmox/proxmox_volumes.rb +16 -6
  22. data/app/views/compute_resources_vms/form/proxmox/_add_vm_type_to_nic_provider_specific_form.html.erb +5 -6
  23. data/app/views/compute_resources_vms/form/proxmox/container/_network.html.erb +12 -10
  24. data/app/views/compute_resources_vms/form/proxmox/server/_network.html.erb +1 -2
  25. data/lib/foreman_fog_proxmox/engine.rb +2 -0
  26. data/lib/foreman_fog_proxmox/version.rb +1 -1
  27. data/locale/Makefile +19 -6
  28. data/locale/cs_CZ/LC_MESSAGES/foreman_fog_proxmox.mo +0 -0
  29. data/locale/cs_CZ/foreman_fog_proxmox.po +648 -0
  30. data/locale/de/LC_MESSAGES/foreman_fog_proxmox.mo +0 -0
  31. data/locale/de/foreman_fog_proxmox.po +657 -0
  32. data/locale/de_DE/LC_MESSAGES/foreman_fog_proxmox.mo +0 -0
  33. data/locale/de_DE/foreman_fog_proxmox.po +646 -0
  34. data/locale/en/LC_MESSAGES/foreman_fog_proxmox.mo +0 -0
  35. data/locale/en/foreman_fog_proxmox.po +139 -1
  36. data/locale/foreman_fog_proxmox.pot +367 -94
  37. data/locale/fr/LC_MESSAGES/foreman_fog_proxmox.mo +0 -0
  38. data/locale/fr/foreman_fog_proxmox.po +140 -2
  39. data/locale/ja/LC_MESSAGES/foreman_fog_proxmox.mo +0 -0
  40. data/locale/ja/foreman_fog_proxmox.po +649 -0
  41. data/locale/ka/LC_MESSAGES/foreman_fog_proxmox.mo +0 -0
  42. data/locale/ka/foreman_fog_proxmox.po +643 -0
  43. data/locale/pt_BR/LC_MESSAGES/foreman_fog_proxmox.mo +0 -0
  44. data/locale/pt_BR/foreman_fog_proxmox.po +651 -0
  45. data/locale/zh_CN/LC_MESSAGES/foreman_fog_proxmox.mo +0 -0
  46. data/locale/zh_CN/foreman_fog_proxmox.po +647 -0
  47. data/test/unit/foreman_fog_proxmox/helpers/proxmox_container_helper_test.rb +2 -2
  48. data/test/unit/foreman_fog_proxmox/helpers/proxmox_server_helper_test.rb +4 -4
  49. data/test/unit/foreman_fog_proxmox/helpers/proxmox_vm_volumes_helper_test.rb +8 -0
  50. data/test/unit/foreman_fog_proxmox/proxmox_compute_attributes_test.rb +2 -2
  51. data/test/unit/foreman_fog_proxmox/proxmox_interfaces_test.rb +1 -1
  52. data/test/unit/foreman_fog_proxmox/proxmox_vm_new_test.rb +44 -0
  53. data/test/unit/foreman_fog_proxmox/proxmox_vm_queries_test.rb +67 -0
  54. data/webpack/components/ProxmoxComputeSelectors.js +5 -0
  55. data/webpack/components/ProxmoxContainer/MountPoint.js +10 -0
  56. data/webpack/components/ProxmoxContainer/ProxmoxContainerNetwork.js +5 -1
  57. data/webpack/components/ProxmoxContainer/ProxmoxContainerOptions.js +13 -1
  58. data/webpack/components/ProxmoxContainer/ProxmoxContainerStorage.js +4 -0
  59. data/webpack/components/ProxmoxContainer/components/NetworkInterface.js +9 -2
  60. data/webpack/components/ProxmoxServer/ProxmoxServerStorage.js +185 -46
  61. data/webpack/components/ProxmoxServer/components/EFIDisk.js +31 -4
  62. data/webpack/components/ProxmoxServer/components/HardDisk.js +86 -17
  63. data/webpack/components/ProxmoxVmType.js +84 -1
  64. metadata +27 -8
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 0baa00593f5bf94e6d28c221945a2b45f5b0eadca86eb9d20f2fa5b10a71854a
4
- data.tar.gz: ebb96f23da19fed2aff08ec0d8032e7accfb28a9c5340b56a6f3499daf5cd1f0
3
+ metadata.gz: 5ea8c8bfb4c244c6b8de14bc2119c03bd737d44d3ebfac7f57ee6b4b836bffe4
4
+ data.tar.gz: 8588badabb959ac81107d258a4c05e3c06ccb7c109c94ddfe91281dd3507bdea
5
5
  SHA512:
6
- metadata.gz: 6757191fa08b55c6c21a14235d54e023017de5516a3e375b7786f03da988af5572b0a07ff3c2fb9a95151e6b68495d5fe4c668c9bb99a1599791c1407a5c6090
7
- data.tar.gz: 9bc7404067c5b9f03b0e3c0d609191b0b00d97b64041475bc1071df903d3fb980312c6ebc2fd6db1783028635de98f71e544fe778fbdfd7f108be1a44c4b8701
6
+ metadata.gz: 360e58e7b7efc5cc25dbc6fd473fb869c44329527aa1bdb96b0f98c3049928ae5ee5246632c83f900aa245d9fb3d023b3f4c58e405e12898e75da110f9057936
7
+ data.tar.gz: 8bcd614b6e3ff837e2e3524c1da9ec54d43ef93869034208634208d8cee66c418db38030ac2bf62829aa3ac1d17f8c3954b6d37f920428a557887181650b2139
@@ -0,0 +1,646 @@
1
+ locales['foreman_fog_proxmox'] = locales['foreman_fog_proxmox'] || {}; locales['foreman_fog_proxmox']['cs_CZ'] = {
2
+ "domain": "foreman_fog_proxmox",
3
+ "locale_data": {
4
+ "foreman_fog_proxmox": {
5
+ "": {
6
+ "Project-Id-Version": "foreman_fog_proxmox 1.0.0",
7
+ "Report-Msgid-Bugs-To": "",
8
+ "PO-Revision-Date": "2020-03-08 09:47+0000",
9
+ "Last-Translator": "Pavel Borecki <pavel.borecki@gmail.com>, 2022",
10
+ "Language-Team": "Czech (Czech Republic) (https://app.transifex.com/foreman/teams/114/cs_CZ/)",
11
+ "MIME-Version": "1.0",
12
+ "Content-Type": "text/plain; charset=UTF-8",
13
+ "Content-Transfer-Encoding": "8bit",
14
+ "Language": "cs_CZ",
15
+ "Plural-Forms": "nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;",
16
+ "lang": "cs_CZ",
17
+ "domain": "foreman_fog_proxmox",
18
+ "plural_forms": "nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;"
19
+ },
20
+ "%(name)s (free: %(free)s, used: %(used)s, total: %(total)s)": [
21
+ ""
22
+ ],
23
+ "%<s>s console is not supported at this time": [
24
+ "%<s>s v tuto chvíli není podporována"
25
+ ],
26
+ "%<vm>s is now %<vm_state>s": [
27
+ ""
28
+ ],
29
+ "Access ticket fields": [
30
+ ""
31
+ ],
32
+ "Activate AES instruction set for HW accelaration.": [
33
+ ""
34
+ ],
35
+ "Add CD-ROM": [
36
+ ""
37
+ ],
38
+ "Add Cloud-init": [
39
+ ""
40
+ ],
41
+ "Add Efi Disk": [
42
+ ""
43
+ ],
44
+ "Add Hard Disk": [
45
+ ""
46
+ ],
47
+ "Add HardDisk": [
48
+ ""
49
+ ],
50
+ "Add Interface": [
51
+ ""
52
+ ],
53
+ "Add Mount Point": [
54
+ ""
55
+ ],
56
+ "Add MountPoint": [
57
+ ""
58
+ ],
59
+ "Add Volume": [
60
+ "Přidat svazek"
61
+ ],
62
+ "Advanced": [
63
+ "Pokročilé"
64
+ ],
65
+ "Advanced Options": [
66
+ ""
67
+ ],
68
+ "Allow guest OS to use 1GB size pages, if host HW supports it": [
69
+ ""
70
+ ],
71
+ "Allows improved Spectre mitigation with AMD CPUs": [
72
+ ""
73
+ ],
74
+ "Allows improved Spectre mitigation with Intel CPUs": [
75
+ ""
76
+ ],
77
+ "Architecture": [
78
+ "Architektura"
79
+ ],
80
+ "Associate VM": [
81
+ ""
82
+ ],
83
+ "Associate VM to a Foreman host": [
84
+ "Přiřadit virt. stroj k Foreman hostiteli"
85
+ ],
86
+ "Authentication method": [
87
+ ""
88
+ ],
89
+ "Average load (x100)": [
90
+ "Průměrné vytížení (x100)"
91
+ ],
92
+ "BIOS": [
93
+ "BIOS"
94
+ ],
95
+ "Basis for \\\\\\\"Speculative Store Bypass\\\\\\\" protection for AMD models": [
96
+ ""
97
+ ],
98
+ "Boot device order": [
99
+ "Pořadí zavádění ze zařízení"
100
+ ],
101
+ "Bridge": [
102
+ "Most"
103
+ ],
104
+ "CD-ROM": [
105
+ "Jednotka optických disků"
106
+ ],
107
+ "CIDR IPv4": [
108
+ ""
109
+ ],
110
+ "CIDR IPv6": [
111
+ ""
112
+ ],
113
+ "CPU": [
114
+ "Procesor"
115
+ ],
116
+ "CPU Flags": [
117
+ ""
118
+ ],
119
+ "CPU limit": [
120
+ "Omezení procesorů"
121
+ ],
122
+ "CPU units": [
123
+ "Jednotek procesorů"
124
+ ],
125
+ "CPUs": [
126
+ "Procesory"
127
+ ],
128
+ "Cache": [
129
+ "Mezipaměť"
130
+ ],
131
+ "Card": [
132
+ "Karta"
133
+ ],
134
+ "Change the password": [
135
+ "Změnit heslo"
136
+ ],
137
+ "Click Test connection button before changing it": [
138
+ ""
139
+ ],
140
+ "Click Test connection button to check token": [
141
+ ""
142
+ ],
143
+ "Cloud-init": [
144
+ ""
145
+ ],
146
+ "Cluster nodes": [
147
+ "Uzly klastru"
148
+ ],
149
+ "Common fields": [
150
+ ""
151
+ ],
152
+ "Confirm": [
153
+ ""
154
+ ],
155
+ "Console": [
156
+ "Konzola"
157
+ ],
158
+ "Controller": [
159
+ "Řadič"
160
+ ],
161
+ "Cores": [
162
+ "Jádra"
163
+ ],
164
+ "Create image?": [
165
+ "Vytvořit obraz?"
166
+ ],
167
+ "DHCP IPv4": [
168
+ "DHCP IPv4"
169
+ ],
170
+ "DHCP IPv6": [
171
+ "DHCP IPv6"
172
+ ],
173
+ "DNS": [
174
+ "DNS"
175
+ ],
176
+ "DNS domain": [
177
+ ""
178
+ ],
179
+ "DNS server": [
180
+ "DNS server"
181
+ ],
182
+ "DNS servers": [
183
+ ""
184
+ ],
185
+ "Description": [
186
+ "Popis"
187
+ ],
188
+ "Device": [
189
+ "Zařízení"
190
+ ],
191
+ "Device value is set automatically.": [
192
+ ""
193
+ ],
194
+ "Disconnect": [
195
+ "Odpojit"
196
+ ],
197
+ "Does this image support user data input (e.g. via cloud-init)?": [
198
+ "Podporuje tento obraz zadání uživatelských dat (např. prostřednictvím cloud-init)?"
199
+ ],
200
+ "EFI Disk": [
201
+ ""
202
+ ],
203
+ "EFI Storage": [
204
+ ""
205
+ ],
206
+ "Enable NUMA": [
207
+ "Zapnout NUMA"
208
+ ],
209
+ "Enable/disable KVM hardware virtualization": [
210
+ "Vyp/zap hardware virtualizaci KVM "
211
+ ],
212
+ "Error - %<message>s": [
213
+ ""
214
+ ],
215
+ "Error: Duplicate ID found.": [
216
+ ""
217
+ ],
218
+ "Error: Duplicate Name found.": [
219
+ ""
220
+ ],
221
+ "Extended": [
222
+ "Rozšířeno"
223
+ ],
224
+ "Extra CPU Flags": [
225
+ ""
226
+ ],
227
+ "Failed fetching images ISO please try again.": [
228
+ ""
229
+ ],
230
+ "Failed fetching templates please try again.": [
231
+ ""
232
+ ],
233
+ "Failed retrieving proxmox server vm by vmid=%<vmid>s": [
234
+ "Nepodařilo se získat virt. stroj na proxmox serveru podle vmid=%<vmid>s"
235
+ ],
236
+ "Failed to acquire IP addresses from compute resource for %<name>s": [
237
+ ""
238
+ ],
239
+ "Failed to load Proxmox metadata. Please check your compute resource connection.": [
240
+ ""
241
+ ],
242
+ "Failed to set console: %s": [
243
+ "Nepodařilo se nastavit konzoli: %s"
244
+ ],
245
+ "Failed to undo update compute %<compute_resource>s instance %<name>s: %<e>s": [
246
+ "Nepodařilo se vzít zpět výpočetní %<compute_resource>s instance %<name>s: %<e>s"
247
+ ],
248
+ "Failed to update a compute %<compute_resource>s instance %<name>s: %<e>s": [
249
+ "Nepodařilo se aktualizovat výpočetní %<compute_resource>s instance %<name>s: %<e>s"
250
+ ],
251
+ "Fetching images ISO...": [
252
+ ""
253
+ ],
254
+ "Fetching templates...": [
255
+ ""
256
+ ],
257
+ "Firewall": [
258
+ "Brána firewall"
259
+ ],
260
+ "Foreman Fog Proxmox widget": [
261
+ "Ovládací prvek Foreman Fog Proxmox"
262
+ ],
263
+ "ForemanFogProxmox plugin adds Proxmox VE compute resource to Foreman using fog-proxmox gem.": [
264
+ "Zásuvný modul ForemanFogProxmox do Foreman jako výpočetní prostředek Proxmox VE (využívá fog-proxmox rubby gem)."
265
+ ],
266
+ "Gateway IPv4": [
267
+ "Brána IPv4"
268
+ ],
269
+ "Gateway IPv6": [
270
+ "Brána IPv6"
271
+ ],
272
+ "General": [
273
+ "Obecné"
274
+ ],
275
+ "Hard Disk %(hddId)s": [
276
+ ""
277
+ ],
278
+ "Hard disk": [
279
+ "Pevný disk"
280
+ ],
281
+ "Hardware": [
282
+ ""
283
+ ],
284
+ "Host": [
285
+ "Stroj"
286
+ ],
287
+ "Hostname": [
288
+ "Název stroje"
289
+ ],
290
+ "Identifier": [
291
+ "Identifikátor"
292
+ ],
293
+ "Image": [
294
+ "Obraz"
295
+ ],
296
+ "Image ISO": [
297
+ "ISO obraz"
298
+ ],
299
+ "Image VMID": [
300
+ "Identif. virtuálního stroje daného obrazu"
301
+ ],
302
+ "Import as managed Host": [
303
+ "Importovat jako spravovaný stroj"
304
+ ],
305
+ "Import as unmanaged Host": [
306
+ "Importovat jako nespravovaný stroj"
307
+ ],
308
+ "Improve performance for nested virtualization. Only supported on Intel CPUs.": [
309
+ ""
310
+ ],
311
+ "Improve performance in overcommitted Windows guests. May lead to guest bluescreens on old CPUs.": [
312
+ ""
313
+ ],
314
+ "Improves Spectre mitigation performance with AMD CPUs, best used with \\\\\\\"virt-ssbd\\\\\\\"": [
315
+ ""
316
+ ],
317
+ "KVM": [
318
+ "KVM"
319
+ ],
320
+ "Main option": [
321
+ "Hlavní volba",
322
+ "Hlavní volby",
323
+ "Hlavních voleb",
324
+ "Hlavní volby"
325
+ ],
326
+ "Media": [
327
+ "Médium"
328
+ ],
329
+ "Meltdown fix cost reduction on Westmere, Sandy-, and IvyBridge Intel CPUs": [
330
+ ""
331
+ ],
332
+ "Memory": [
333
+ "Operační paměť"
334
+ ],
335
+ "Memory (MB)": [
336
+ "Paměť (MB)"
337
+ ],
338
+ "Minimum Memory (MB)": [
339
+ ""
340
+ ],
341
+ "Minimum memory (MB)": [
342
+ ""
343
+ ],
344
+ "Mount Point %(mp)s": [
345
+ ""
346
+ ],
347
+ "Mount point": [
348
+ "Přípojný bod"
349
+ ],
350
+ "Multiqueue": [
351
+ ""
352
+ ],
353
+ "Name": [
354
+ "Název"
355
+ ],
356
+ "Network Interfaces": [
357
+ ""
358
+ ],
359
+ "Nic": [
360
+ "Síť. rozhraní"
361
+ ],
362
+ "Nic %(nicId)s": [
363
+ ""
364
+ ],
365
+ "No host found to associate this VM with": [
366
+ "Nenalezen žádný hostitel ke kterému přiřadit tento virt. stroj"
367
+ ],
368
+ "Node": [
369
+ "Uzel"
370
+ ],
371
+ "None": [
372
+ "Žádné"
373
+ ],
374
+ "Notifies guest OS that host is not vulnerable for Spectre on AMD CPUs": [
375
+ ""
376
+ ],
377
+ "OS Template": [
378
+ "Šablona operačního systému"
379
+ ],
380
+ "OS Type": [
381
+ ""
382
+ ],
383
+ "OS type": [
384
+ "Typ operačního systému"
385
+ ],
386
+ "Operating System": [
387
+ "Operační systém"
388
+ ],
389
+ "Operating system family %<type>s is not consistent with %<ostype>s": [
390
+ "Generace operačního systému %<type>s není konzistentní s %<ostype>s"
391
+ ],
392
+ "Optionally provide a CA, or a correctly ordered CA chain. If left blank, disable ssl_verify_peer.": [
393
+ "Volitelně zadejte cer. autoritu, nebo správně řazený řetězec cert. autirt. Pokud nebude vyplněno, vypněte ssl_verify_peer."
394
+ ],
395
+ "Order your devices, e.g. order=net0;ide2;scsi0. Default empty (any)": [
396
+ ""
397
+ ],
398
+ "Password": [
399
+ "Heslo"
400
+ ],
401
+ "Password to authenticate with - used for SSH finish step.": [
402
+ "Heslo které použít pro ověření se – použito pro krok dokončení po SSH."
403
+ ],
404
+ "Path": [
405
+ "Popis umístění"
406
+ ],
407
+ "Path cannot be empty": [
408
+ ""
409
+ ],
410
+ "Physical": [
411
+ "Fyzický"
412
+ ],
413
+ "Pool": [
414
+ "Fond"
415
+ ],
416
+ "Power": [
417
+ "Napájení"
418
+ ],
419
+ "Pre-Enrolled Keys": [
420
+ ""
421
+ ],
422
+ "Protection for \\\\\\\"Speculative Store Bypass\\\\\\\" for Intel models": [
423
+ ""
424
+ ],
425
+ "Proxmox Node Statistics: %s": [
426
+ "Statistiky Proxmox uzlu: %s"
427
+ ],
428
+ "Proxmox version %<version>s is not semver suitable": [
429
+ "Verze proxmox %<version>s není vhodná pro semver"
430
+ ],
431
+ "Qemu Agent": [
432
+ "Qemu agent"
433
+ ],
434
+ "Rate limit": [
435
+ "Limit rychlosti"
436
+ ],
437
+ "Reached maximum number of devices for controller %(value)s. Please select another controller.": [
438
+ ""
439
+ ],
440
+ "Required to let the guest OS know if MDS is mitigated correctly": [
441
+ ""
442
+ ],
443
+ "Reset": [
444
+ ""
445
+ ],
446
+ "Root Password": [
447
+ ""
448
+ ],
449
+ "Root password": [
450
+ "Heslo správce (root)"
451
+ ],
452
+ "Rootfs": [
453
+ "Kořen. souborový systém"
454
+ ],
455
+ "SCSI Controller": [
456
+ "SCSI řadič"
457
+ ],
458
+ "SSH public key": [
459
+ ""
460
+ ],
461
+ "SSL fields": [
462
+ ""
463
+ ],
464
+ "SSL verify peer": [
465
+ "SSL ověřit protějšek"
466
+ ],
467
+ "Search Domain": [
468
+ ""
469
+ ],
470
+ "Search domain": [
471
+ "Hledat v doménách"
472
+ ],
473
+ "Shares (MB)": [
474
+ ""
475
+ ],
476
+ "Size (GB)": [
477
+ "Velikost (GB)"
478
+ ],
479
+ "Sockets": [
480
+ "Patice"
481
+ ],
482
+ "Start after creation?": [
483
+ "Spustit po vytvoření?"
484
+ ],
485
+ "Start at boot": [
486
+ "Spustit při zavádění systému"
487
+ ],
488
+ "Storage": [
489
+ "Úložiště"
490
+ ],
491
+ "Swap (MB)": [
492
+ ""
493
+ ],
494
+ "Template Storage": [
495
+ ""
496
+ ],
497
+ "Template storage": [
498
+ "Úložiště šablon"
499
+ ],
500
+ "The EFI Disk requires OVMF BIOS. Please switch the BIOS type to OVMF.": [
501
+ ""
502
+ ],
503
+ "The user that is used to ssh into the instance, normally cloud-user, ubuntu, root etc": [
504
+ "Uživatelský účet, kterým navázat ssh spojení s instancí (obyčejně cloud-user, ubuntu, root, atd.)"
505
+ ],
506
+ "Time": [
507
+ "Čas"
508
+ ],
509
+ "Type": [
510
+ "Typ"
511
+ ],
512
+ "Type %<type>s, node %<node>s, %<cpus>s CPUs and %<memory>s MB memory": [
513
+ ""
514
+ ],
515
+ "URL": [
516
+ "URL adresa"
517
+ ],
518
+ "Unable to shrink %<id>s size. Proxmox allows only increasing size.": [
519
+ "Velikost %<id>s nelze zmenšit. Proxmox umožňuje pouze zvětšování."
520
+ ],
521
+ "Unable to store X509 certificates": [
522
+ "Nepodařilo se uložit x509 certifikáty"
523
+ ],
524
+ "Uptime": [
525
+ "Doba chodu"
526
+ ],
527
+ "User": [
528
+ "Uživatel"
529
+ ],
530
+ "User token expires": [
531
+ ""
532
+ ],
533
+ "User token fields": [
534
+ ""
535
+ ],
536
+ "User token id": [
537
+ ""
538
+ ],
539
+ "User token value": [
540
+ ""
541
+ ],
542
+ "VCPUs": [
543
+ "Virt. procesory"
544
+ ],
545
+ "VGA": [
546
+ "grafika"
547
+ ],
548
+ "VLAN Tag": [
549
+ ""
550
+ ],
551
+ "VLAN tag": [
552
+ "VLAN štítek"
553
+ ],
554
+ "VM ID": [
555
+ "Identif. virtuálního stroje"
556
+ ],
557
+ "VM already associated with a host": [
558
+ "Virt. stroj už je přiřazený k hostiteli"
559
+ ],
560
+ "VM associated to host %s": [
561
+ "Vírt. stro přiřazen k hostiteli %s"
562
+ ],
563
+ "Version": [
564
+ "Verze"
565
+ ],
566
+ "X509 Certification Authorities": [
567
+ "X509 certifikační autority"
568
+ ],
569
+ "add new cd-rom": [
570
+ ""
571
+ ],
572
+ "add new cloud-init": [
573
+ ""
574
+ ],
575
+ "add new hard disk": [
576
+ ""
577
+ ],
578
+ "add new mount point": [
579
+ ""
580
+ ],
581
+ "add new storage volume": [
582
+ "přidat nový svazek úložiště"
583
+ ],
584
+ "e.g. /path/to/": [
585
+ "např. /popis/umisteni/"
586
+ ],
587
+ "e.g. https://127.0.0.1:8006/api2/json": [
588
+ "např. https://127.0.0.1:8006/api2/json"
589
+ ],
590
+ "e.g. root@pam": [
591
+ "např. root@pam"
592
+ ],
593
+ "eth[n] with n integer >= 0, e.g. eth0": [
594
+ ""
595
+ ],
596
+ "failed to %<action>s %<vm>s": [
597
+ ""
598
+ ],
599
+ "failed to save %<name>s": [
600
+ ""
601
+ ],
602
+ "integer within [0..128]": [
603
+ ""
604
+ ],
605
+ "integer within [0..32]": [
606
+ ""
607
+ ],
608
+ "invalid vmid=%<vmid>s": [
609
+ "neplatný vmid=%<vmid>s"
610
+ ],
611
+ "net[n] with n integer >= 0, e.g. net0": [
612
+ ""
613
+ ],
614
+ "new_typed_vm(%<type>s) with vm_typed_instance_defaults: vm_h=%<vm_h>s": [
615
+ ""
616
+ ],
617
+ "parse_efidisk(): args=%<args>s": [
618
+ ""
619
+ ],
620
+ "parse_hard_disk_volume(): args=%<args>s": [
621
+ ""
622
+ ],
623
+ "remove CDROM": [
624
+ ""
625
+ ],
626
+ "remove Cloud-init": [
627
+ ""
628
+ ],
629
+ "remove Hard disk": [
630
+ ""
631
+ ],
632
+ "remove mount point": [
633
+ ""
634
+ ],
635
+ "remove network interface": [
636
+ "odebrat síťové rozhraní"
637
+ ],
638
+ "remove storage volume": [
639
+ "odebrat svazek úložiště"
640
+ ],
641
+ "vmid of template vm.": [
642
+ "identif. virtuálního stroje šablony virt. stroje."
643
+ ]
644
+ }
645
+ }
646
+ };