@xen-orchestra/web-core 0.19.0 → 0.20.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 (56) hide show
  1. package/lib/assets/all-done.svg +62 -0
  2. package/lib/assets/all-good.svg +113 -0
  3. package/lib/assets/error.svg +57 -372
  4. package/lib/assets/no-data.svg +190 -65
  5. package/lib/assets/not-found.svg +446 -126
  6. package/lib/assets/offline.svg +118 -0
  7. package/lib/assets/under-construction.svg +245 -193
  8. package/lib/assets/zoom.svg +85 -0
  9. package/lib/components/backdrop/VtsBackdrop.vue +1 -1
  10. package/lib/components/column/VtsColumn.vue +21 -0
  11. package/lib/components/columns/VtsColumns.vue +38 -0
  12. package/lib/components/copy-button/VtsCopyButton.vue +29 -0
  13. package/lib/components/enabled-state/VtsEnabledState.vue +23 -0
  14. package/lib/components/layout/VtsLayoutSidebar.vue +1 -1
  15. package/lib/components/quick-info-column/VtsQuickInfoColumn.vue +1 -1
  16. package/lib/components/quick-info-row/VtsQuickInfoRow.vue +26 -7
  17. package/lib/components/relative-time/VtsRelativeTime.vue +18 -0
  18. package/lib/components/select/VtsOption.vue +24 -0
  19. package/lib/components/select/VtsSelect.vue +96 -0
  20. package/lib/components/state-hero/VtsAllDoneHero.vue +13 -0
  21. package/lib/components/state-hero/VtsAllGoodHero.vue +13 -0
  22. package/lib/components/state-hero/VtsLoadingHero.vue +45 -4
  23. package/lib/components/state-hero/VtsOfflineHero.vue +13 -0
  24. package/lib/components/state-hero/VtsStateHero.vue +10 -1
  25. package/lib/components/tree/VtsTreeItem.vue +11 -1
  26. package/lib/components/ui/card-numbers/UiCardNumbers.vue +15 -36
  27. package/lib/components/ui/dropdown/UiDropdownList.vue +10 -2
  28. package/lib/components/ui/head-bar/UiHeadBar.vue +2 -2
  29. package/lib/composables/relative-time.composable.ts +1 -1
  30. package/lib/locales/cs.json +74 -8
  31. package/lib/locales/de.json +4 -0
  32. package/lib/locales/en.json +67 -1
  33. package/lib/locales/es.json +8 -5
  34. package/lib/locales/fa.json +0 -1
  35. package/lib/locales/fr.json +69 -3
  36. package/lib/locales/nl.json +50 -9
  37. package/lib/locales/ru.json +27 -0
  38. package/lib/locales/sv.json +77 -13
  39. package/lib/packages/collection/README.md +38 -33
  40. package/lib/packages/collection/create-collection.ts +27 -13
  41. package/lib/packages/collection/create-item.ts +39 -0
  42. package/lib/packages/collection/guess-item-id.ts +26 -0
  43. package/lib/packages/collection/index.ts +0 -3
  44. package/lib/packages/collection/types.ts +46 -18
  45. package/lib/packages/collection/use-collection.ts +39 -7
  46. package/lib/packages/collection/use-flag-registry.ts +22 -5
  47. package/lib/packages/form-select/README.md +96 -0
  48. package/lib/packages/form-select/index.ts +2 -0
  49. package/lib/packages/form-select/types.ts +75 -0
  50. package/lib/packages/form-select/use-form-option-controller.ts +50 -0
  51. package/lib/packages/form-select/use-form-select-controller.ts +205 -0
  52. package/lib/packages/form-select/use-form-select-keyboard-navigation.ts +157 -0
  53. package/lib/packages/form-select/use-form-select.ts +193 -0
  54. package/lib/stores/sidebar.store.ts +14 -1
  55. package/package.json +1 -1
  56. package/lib/packages/collection/build-item.ts +0 -45
@@ -23,6 +23,7 @@
23
23
  "alarm-type.unknown": "Unknown alarm type",
24
24
  "alarms": "Alarms",
25
25
  "all-good": "All good!",
26
+ "all-done": "All done!",
26
27
  "allow-self-signed-ssl": "You may need to allow self-signed SSL certificates in your browser",
27
28
  "appearance": "Appearance",
28
29
  "ascending": "ascending",
@@ -47,7 +48,9 @@
47
48
  "backups.vms-protection.protected": "In at least 1 job & protected",
48
49
  "backups.vms-protection.tooltip": "A VM is protected if it's in a backup job, with an enabled schedule, and the last run succeeded",
49
50
  "backups.vms-protection.unprotected": "In at least 1 job but unprotected",
51
+ "best-effort": "best effort",
50
52
  "bios-default": "bios (default)",
53
+ "bios-info": "BIOS info",
51
54
  "bond": "Bond",
52
55
  "bond-devices": "Bond devices",
53
56
  "bond-status": "Bond status",
@@ -55,6 +58,7 @@
55
58
  "boot-firmware-bios": "The template already contains the BIOS strings",
56
59
  "boot-firmware-uefi": "The boot firmware is UEFI",
57
60
  "boot-vm": "Boot VM",
61
+ "build-number": "Build number",
58
62
  "bytes.gi": "GiB",
59
63
  "bytes.ki": "KiB",
60
64
  "bytes.mi": "MiB",
@@ -76,10 +80,12 @@
76
80
  "console-actions": "Console actions",
77
81
  "console-clipboard": "Console clipboard",
78
82
  "console-unavailable": "Console unavailable",
83
+ "control-domain-memory": "Control domain memory",
79
84
  "copy": "Copy",
80
85
  "copy-all": "Copy all",
81
86
  "copy-host": "Copy host",
82
87
  "copy-info-json": "Copy information into JSON",
88
+ "core-socket": "Core (socket)",
83
89
  "core.character-limit": "{count}/{max} character | {count}/{max} characters",
84
90
  "core.close": "Close",
85
91
  "core.copied": "Copied",
@@ -110,15 +116,21 @@
110
116
  "core.sort.descending": "Sort descending",
111
117
  "core.textarea.exceeds-max-characters": "Field value must be {max} characters or less.",
112
118
  "cores-with-sockets": "Cores (sockets)",
119
+ "cpu-cap": "CPU cap",
120
+ "cpu-mask": "CPU mask",
121
+ "cpu-model": "CPU model",
113
122
  "cpu-provisioning": "CPU provisioning",
114
123
  "cpu-provisioning-warning": "The number of vCPUs allocated exceeds the number of physical CPUs available. System performance could be affected",
115
124
  "cpu-usage": "CPU usage",
125
+ "cpu-weight": "CPU weight",
126
+ "cpus": "CPUs",
116
127
  "create": "Create",
117
128
  "custom-config": "Custom config",
118
129
  "dark-mode.auto": "Auto dark mode",
119
130
  "dark-mode.disable": "Disable dark mode",
120
131
  "dark-mode.enable": "Enable dark mode",
121
132
  "dashboard": "Dashboard",
133
+ "default-behavior": "Default behavior",
122
134
  "default-locking-mode": "Default locking mode",
123
135
  "delete": "Delete",
124
136
  "delete-vms": "Delete 1 VM | Delete {n} VMs",
@@ -153,6 +165,7 @@
153
165
  "error-no-data": "Error, can't collect data.",
154
166
  "error-occurred": "An error has occurred",
155
167
  "exit-fullscreen": "Exit fullscreen",
168
+ "expiration-date": "Expiration date",
156
169
  "export": "Export",
157
170
  "export-n-vms": "Export 1 VM | Export {n} VMs",
158
171
  "export-n-vms-manually": "Export 1 VM manually | Export {n} VMs manually",
@@ -184,10 +197,15 @@
184
197
  "fullscreen": "Fullscreen",
185
198
  "fullscreen-leave": "Leave fullscreen",
186
199
  "gateway": "Gateway",
200
+ "general-information": "General information",
187
201
  "go-back": "Go back",
202
+ "gpus": "GPUs",
203
+ "graphics-display": "Graphics & Display",
188
204
  "gzip": "gzip",
189
205
  "hardware": "Hardware",
206
+ "hardware-specifications": "Hardware specifications",
190
207
  "here": "Here",
208
+ "high-availability": "High availability (HA)",
191
209
  "host": "Host",
192
210
  "host-description": "Host description",
193
211
  "host-internal-networks": "Host internal networks",
@@ -203,6 +221,7 @@
203
221
  "hosts-status.running": "Running",
204
222
  "hosts-status.unknown": "Unknown",
205
223
  "hosts-status.unknown.tooltip": "Hosts metrics are unavailable",
224
+ "hyper-threading": "Hyper threading (SMT)",
206
225
  "id": "Id",
207
226
  "in-last-three-jobs": "In their last three jobs",
208
227
  "install-settings": "Install settings",
@@ -212,6 +231,7 @@
212
231
  "ip-addresses": "IP addresses",
213
232
  "ip-mode": "IP mode",
214
233
  "is-primary-host": "{name} is primary host",
234
+ "iscsi-iqn": "iSCSI IQN",
215
235
  "iso-dvd": "ISO/DVD",
216
236
  "job.vm-copy.bad-power-state": "VM must be halted",
217
237
  "job.vm-copy.in-progress": "Copy in progress…",
@@ -262,6 +282,9 @@
262
282
  "language": "Language",
263
283
  "last-week": "Last week",
264
284
  "learn-more": "Learn more",
285
+ "license-socket": "License socket",
286
+ "license-type": "License type",
287
+ "licensing": "Licensing",
265
288
  "load-average": "Load average",
266
289
  "load-now": "Load now",
267
290
  "loading-hosts": "Loading hosts…",
@@ -273,16 +296,26 @@
273
296
  "login-only-on-master": "Login is only possible on the master host",
274
297
  "mac-address": "MAC address",
275
298
  "mac-addresses": "MAC addresses",
299
+ "manage-citrix-pv-drivers-via-windows-update": "Manage citrix PV drivers via Windows Update",
276
300
  "management": "Management",
301
+ "management-agent-version": "Management agent version",
302
+ "manufacturer-info": "Manufacturer info",
277
303
  "master": "Primary host",
304
+ "maximum-cpu-limit": "Maximum CPU limit",
305
+ "maximum-dynamic-memory": "Maximum dynamic memory",
306
+ "maximum-static-memory": "Maximum static memory",
278
307
  "memory": "Memory",
279
308
  "memory-usage": "Memory usage",
280
309
  "migrate": "Migrate",
281
310
  "migrate-n-vms": "Migrate 1 VM | Migrate {n} VMs",
311
+ "minimum-cpu-limit": "Minimum CPU limit",
312
+ "minimum-dynamic-memory": "Minimum dynamic memory",
313
+ "minimum-static-memory": "Minimum static memory",
282
314
  "missing-patches": "Missing patches",
283
315
  "more-actions": "More actions",
284
316
  "mtu": "MTU",
285
317
  "multi-creation": "Multi creation",
318
+ "multi-pathing": "Multi-pathing",
286
319
  "n-gb-left": "{n} GB left",
287
320
  "n-gb-required": "{n} GB required",
288
321
  "n-hosts": "1 host | {n} hosts",
@@ -290,6 +323,7 @@
290
323
  "n-missing": "{n} missing",
291
324
  "n-vms": "1 VM | {n} VMs",
292
325
  "name": "Name",
326
+ "nested-virtualization": "Nested virtualization",
293
327
  "netmask": "Netmask",
294
328
  "network": "Network",
295
329
  "network-block-device": "Network block device",
@@ -298,6 +332,7 @@
298
332
  "network-information": "Network information",
299
333
  "network-throughput": "Network throughput",
300
334
  "network-upload": "Upload",
335
+ "networking": "Networking",
301
336
  "networks": "Networks",
302
337
  "new": "New",
303
338
  "new-features-are-coming": "New features are coming soon!",
@@ -308,6 +343,7 @@
308
343
  "new-vm.name": "VM name",
309
344
  "news": "News",
310
345
  "news-name": "{name} news",
346
+ "nic-type": "NIC type",
311
347
  "no-alarm-triggered": "No alarm triggered",
312
348
  "no-config": "No configuration",
313
349
  "no-data": "No data",
@@ -321,14 +357,18 @@
321
357
  "no-vif-detected": "No VIF detected",
322
358
  "none": "None",
323
359
  "not-found": "Not found",
360
+ "not-yet-available": "Information is not yet available",
324
361
  "object": "Object",
325
362
  "object-not-found": "Object {id} can't be found…",
326
363
  "off": "Off",
364
+ "offline": "Offline",
327
365
  "ok": "OK",
328
366
  "on": "On",
329
367
  "on-object": "on {object}",
330
368
  "open-console-in-new-tab": "Open console in new tab",
331
369
  "or": "Or",
370
+ "os-kernel": "OS kernel",
371
+ "os-name": "OS name",
332
372
  "other": "Other",
333
373
  "page-not-found": "This page is not to be found…",
334
374
  "partially-connected": "Partially connected",
@@ -343,6 +383,7 @@
343
383
  "pifs": "PIFs",
344
384
  "pifs-status": "PIFs status",
345
385
  "please-confirm": "Please confirm",
386
+ "pool": "Pool",
346
387
  "pool-cpu-usage": "Pool CPU Usage",
347
388
  "pool-ram-usage": "Pool RAM Usage",
348
389
  "pools": "Pools",
@@ -353,14 +394,19 @@
353
394
  "pools-status.unreachable": "Unreachable",
354
395
  "pools-status.unreachable.tooltip": "Configured servers that can not be reached",
355
396
  "power-on-host-for-console": "Power on your host to access its console",
397
+ "power-on-mode": "Power on mode",
356
398
  "power-on-vm-for-console": "Power on your VM to access its console",
357
399
  "power-state": "Power state",
400
+ "primary-host": "Primary host",
358
401
  "professional-support": "Professional support",
359
402
  "properties": "Properties",
360
403
  "property": "Property",
404
+ "protect-from-accidental-deletion": "Protect from accidental deletion",
405
+ "protect-from-accidental-shutdown": "Protect from accidental shutdown",
361
406
  "pxe": "PXE",
362
407
  "quick-info": "Quick info",
363
408
  "ram": "RAM",
409
+ "ram-provisioning": "RAM provisioning",
364
410
  "ram-usage": "RAM usage",
365
411
  "reboot": "Reboot",
366
412
  "receive": "Receive",
@@ -374,12 +420,16 @@
374
420
  "relative-time.past": "{str} ago",
375
421
  "relative-time.second": "1 second | {n} seconds",
376
422
  "relative-time.year": "1 year | {n} years",
423
+ "remote-syslog": "Remote syslog",
424
+ "resource-management": "Resource management",
377
425
  "resources-overview": "Resources overview",
378
426
  "resume": "Resume",
379
427
  "running-vm": "Running VM | Running VMs",
380
428
  "s3-backup-repository": "S3 backup repository",
381
429
  "save": "Save",
382
430
  "scan-pifs": "Scan PIFs",
431
+ "scheduler-granularity": "Scheduler granularity",
432
+ "secure-boot": "Secure boot",
383
433
  "see-all": "See all",
384
434
  "select-compression": "Select a compression",
385
435
  "select-destination-host": "Select a destination host",
@@ -398,6 +448,7 @@
398
448
  "size": "Size",
399
449
  "snapshot": "Snapshot",
400
450
  "sockets-with-cores-per-socket": "{nSockets} sockets × {nCores} cores/socket",
451
+ "software-tooling": "Software & tooling",
401
452
  "sort-by": "Sort by",
402
453
  "speed": "Speed",
403
454
  "sr": "SR",
@@ -409,6 +460,7 @@
409
460
  "stacked-cpu-usage": "Stacked CPU usage",
410
461
  "stacked-ram-usage": "Stacked RAM usage",
411
462
  "start": "Start",
463
+ "start-delay": "Start delay",
412
464
  "start-on-host": "Start on specific host",
413
465
  "started": "Started",
414
466
  "state": "State",
@@ -417,14 +469,17 @@
417
469
  "stats": "Stats",
418
470
  "status": "Status",
419
471
  "storage": "Storage",
472
+ "storage-configuration": "Storage configuration",
420
473
  "storage-repositories": "Storage repositories",
421
474
  "storage-repository": "Storage repository",
422
475
  "storage-usage": "Storage usage",
423
476
  "summary": "Summary",
424
477
  "support": "Support",
425
478
  "suspend": "Suspend",
479
+ "suspend-storage-repository": "Suspend storage repository",
426
480
  "switch-theme": "Switch theme",
427
481
  "system": "System",
482
+ "system-disks-health": "System disks health",
428
483
  "table-actions": "Table actions",
429
484
  "tags": "Tags",
430
485
  "task.estimated-end": "Estimated end",
@@ -442,10 +497,13 @@
442
497
  "theme-auto": "Auto",
443
498
  "theme-dark": "Dark",
444
499
  "theme-light": "Light",
500
+ "this-host": "This host",
445
501
  "this-vm-cant-be-migrated": "This VM can't be migrated",
502
+ "toolstack-uptime": "Toolstack uptime",
446
503
  "top-#": "Top {n}",
447
504
  "topology": "Topology",
448
505
  "total": "Total",
506
+ "total-assigned": "Total assigned",
449
507
  "total-cpus": "Total CPUs",
450
508
  "total-free": "Total free",
451
509
  "total-free:": "Total free:",
@@ -462,20 +520,28 @@
462
520
  "user-config": "User config",
463
521
  "uuid": "UUID",
464
522
  "vcpus": "vCPU | vCPU | vCPUs",
523
+ "vcpus-assigned": "vCPUs assigned",
465
524
  "vcpus-used": "vCPUs used",
466
525
  "vdis": "VDI | VDI | VDIs",
467
526
  "version": "Version",
527
+ "vga": "VGA",
528
+ "video-ram": "Video RAM",
468
529
  "vif": "VIF",
469
530
  "vif-device": "VIF #{device}",
470
531
  "vif-status": "VIF status",
471
532
  "vifs": "VIFs",
533
+ "viridian": "Viridian",
534
+ "virtual-tpm": "Virtual TPM (VTPM)",
535
+ "virtualization-boot-settings": "Virtualization & boot settings",
536
+ "virtualization-mode": "Virtualization mode",
472
537
  "vlan": "VLAN",
473
538
  "vm": "VM",
474
539
  "vm-description": "VM description",
475
540
  "vm-is-running": "The VM is running",
541
+ "vm-limit-topology": "VM limit topology",
542
+ "vm-management": "VM management",
476
543
  "vm.active": "Active",
477
544
  "vm.inactive": "Inactive",
478
- "vmSocketsWithCoresPerSocket": "{nSockets} sockets × {nCores} cores/socket",
479
545
  "vms": "VM | VMs",
480
546
  "vms-status": "VMs status",
481
547
  "vms-status.halted": "Halted",
@@ -26,8 +26,8 @@
26
26
  "allow-self-signed-ssl": "Es posible que tendrá que permitir certificados SSL autofirmados dentro de su navegador",
27
27
  "appearance": "Aparencia",
28
28
  "ascending": "ascendente",
29
- "auto-generated": "Generado automaticamente",
30
- "auto-power": "Arranque automático",
29
+ "auto-generated": "Generado automáticamente",
30
+ "auto-power": "Auto arranque",
31
31
  "available": "Disponible",
32
32
  "available-properties-for-advanced-filter": "Propriedades disponibles para filtros avanzados:",
33
33
  "back-pool-dashboard": "Regresa al panel de estado del conjunto de servidores",
@@ -209,7 +209,7 @@
209
209
  "interfaces": "Interfaz | Interfaz | Interfaces",
210
210
  "invalid-field": "Campo inválido",
211
211
  "ip-address": "Dirección IP",
212
- "ip-addresses": "Dirección IP",
212
+ "ip-addresses": "Direcciones IP",
213
213
  "ip-mode": "modo IP",
214
214
  "is-primary-host": "{name} es el servidor principal",
215
215
  "iso-dvd": "ISO/DVD",
@@ -361,7 +361,8 @@
361
361
  "pxe": "PXE",
362
362
  "quick-info": "Informaciones rápidas",
363
363
  "ram": "RAM",
364
- "ram-usage": "Uso RAM",
364
+ "ram-provisioning": "Aprovisionamiento de RAM",
365
+ "ram-usage": "Uso de RAM",
365
366
  "reboot": "Reiniciar",
366
367
  "receive": "Recibir",
367
368
  "reformat": "Reformatear",
@@ -442,10 +443,12 @@
442
443
  "theme-auto": "Auto",
443
444
  "theme-dark": "Oscuro",
444
445
  "theme-light": "Claro",
446
+ "this-host": "Este servidor",
445
447
  "this-vm-cant-be-migrated": "Esta máquina virtual no se puede migrar",
446
448
  "top-#": "{n} principales",
447
449
  "topology": "Topologia",
448
450
  "total": "Total",
451
+ "total-assigned": "Total asignado",
449
452
  "total-cpus": "CPUs Totales",
450
453
  "total-free": "Total libre",
451
454
  "total-free:": "Total libre :",
@@ -462,6 +465,7 @@
462
465
  "user-config": "Configuración de usuario",
463
466
  "uuid": "UUID",
464
467
  "vcpus": "vCPU|vCPU|vCPUs",
468
+ "vcpus-assigned": "vCPUs asignados",
465
469
  "vcpus-used": "vCPUs usados",
466
470
  "vdis": "VDI|VDI|VDIs",
467
471
  "version": "Versión",
@@ -475,7 +479,6 @@
475
479
  "vm-is-running": "La máquina virtual está en marcha",
476
480
  "vm.active": "Activo | Activo | Activos",
477
481
  "vm.inactive": "No activo | No activo | No activos",
478
- "vmSocketsWithCoresPerSocket": "{nSockets} sockets x {nCores} cores/socket",
479
482
  "vms": "VM | VMs",
480
483
  "vms-status": "Estatus máquinas virtuales",
481
484
  "vms-status.halted": "Detenido",
@@ -475,7 +475,6 @@
475
475
  "vm-is-running": "ماشین مجازی در حال اجراست",
476
476
  "vm.active": "فعال",
477
477
  "vm.inactive": "غیرفعال",
478
- "vmSocketsWithCoresPerSocket": "{nSockets} سوکت × {nCores} هسته/سوکت",
479
478
  "vms": "ماشین مجازی | ماشین های مجازی",
480
479
  "vms-status": "وضعیت ماشین‌های مجازی",
481
480
  "vms-status.halted": "معلق شده",