@xen-orchestra/web-core 0.26.1 → 0.28.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.
- package/lib/components/card/VtsCardRowKeyValue.vue +1 -0
- package/lib/components/cell-object/VtsCellObject.vue +1 -2
- package/lib/components/console/VtsActionsConsole.vue +3 -9
- package/lib/components/copy-button/VtsCopyButton.vue +1 -3
- package/lib/components/dropdown/DropdownTitle.vue +3 -3
- package/lib/components/icon/VtsIcon.vue +32 -76
- package/lib/components/input-wrapper/VtsInputWrapper.vue +2 -2
- package/lib/components/layout/VtsLayoutSidebar.vue +1 -2
- package/lib/components/menu/MenuItem.vue +4 -5
- package/lib/components/menu/MenuTrigger.vue +3 -3
- package/lib/components/object-icon/VtsObjectIcon.vue +2 -2
- package/lib/components/resources/VtsResource.vue +3 -3
- package/lib/components/select/VtsSelect.vue +4 -5
- package/lib/components/table/ColumnTitle.vue +11 -12
- package/lib/components/task/VtsQuickTaskButton.vue +1 -2
- package/lib/components/tree/VtsTreeLoadingItem.vue +3 -3
- package/lib/components/ui/alarm-item/UiAlarmItem.vue +1 -2
- package/lib/components/ui/alert/UiAlert.vue +14 -13
- package/lib/components/ui/button/UiButton.vue +4 -5
- package/lib/components/ui/button-icon/UiButtonIcon.vue +3 -3
- package/lib/components/ui/checkbox/UiCheckbox.vue +2 -9
- package/lib/components/ui/chip/ChipIcon.vue +3 -3
- package/lib/components/ui/chip/ChipRemoveIcon.vue +1 -2
- package/lib/components/ui/chip/UiChip.vue +2 -2
- package/lib/components/ui/circle-progress-bar/UiCircleProgressBar.vue +7 -4
- package/lib/components/ui/collapsible-list/UiCollapsibleList.vue +73 -0
- package/lib/components/ui/donut-chart/UiDonutChart.vue +30 -17
- package/lib/components/ui/dropdown/UiDropdown.vue +5 -7
- package/lib/components/ui/dropdown-button/UiDropdownButton.vue +4 -5
- package/lib/components/ui/head-bar/UiHeadBar.vue +6 -11
- package/lib/components/ui/info/UiInfo.vue +14 -20
- package/lib/components/ui/input/UiInput.vue +6 -7
- package/lib/components/ui/label/UiLabel.vue +3 -3
- package/lib/components/ui/legend/UiLegend.vue +3 -3
- package/lib/components/ui/legend-title/UiLegendTitle.vue +7 -3
- package/lib/components/ui/link/UiLink.vue +4 -5
- package/lib/components/ui/{quoteCode/UiQuoteCode.vue → log-entry-viewer/UiLogEntryViewer.vue} +58 -21
- package/lib/components/ui/object-link/UiObjectLink.vue +4 -4
- package/lib/components/ui/query-search-bar/UiQuerySearchBar.vue +3 -4
- package/lib/components/ui/quick-task-item/UiQuickTaskItem.vue +3 -4
- package/lib/components/ui/radio-button/UiRadioButton.vue +1 -2
- package/lib/components/ui/table-pagination/PaginationButton.vue +2 -25
- package/lib/components/ui/table-pagination/UiTablePagination.vue +56 -95
- package/lib/components/ui/tag/UiTag.vue +3 -3
- package/lib/components/ui/text-area/UiTextarea.vue +2 -2
- package/lib/components/ui/toaster/UiToaster.vue +15 -13
- package/lib/components/ui/tree-item-label/UiTreeItemLabel.vue +4 -5
- package/lib/composables/default-tab.composable.md +42 -0
- package/lib/composables/default-tab.composable.ts +26 -0
- package/lib/composables/link-component.composable.ts +3 -2
- package/lib/composables/pagination.composable.ts +5 -0
- package/lib/i18n.ts +4 -0
- package/lib/icons/fa-icons.ts +48 -2
- package/lib/icons/index.ts +4 -0
- package/lib/icons/legacy-icons.ts +10 -0
- package/lib/icons/object-icons.ts +1 -1
- package/lib/layouts/CoreLayout.vue +1 -2
- package/lib/locales/cs.json +29 -10
- package/lib/locales/de.json +70 -7
- package/lib/locales/en.json +25 -0
- package/lib/locales/es.json +3 -3
- package/lib/locales/fr.json +25 -0
- package/lib/locales/it.json +17 -5
- package/lib/locales/nl.json +28 -10
- package/lib/locales/pt_BR.json +67 -0
- package/lib/locales/sv.json +17 -0
- package/lib/packages/form-select/types.ts +3 -0
- package/lib/packages/form-select/use-form-option-controller.ts +5 -6
- package/lib/packages/form-select/use-form-select-controller.ts +1 -0
- package/lib/packages/form-select/use-form-select.ts +153 -109
- package/lib/packages/icon/DisplayIcon.vue +1 -0
- package/lib/packages/progress/README.md +62 -0
- package/lib/packages/progress/types.ts +19 -0
- package/lib/packages/progress/use-progress-group.ts +68 -0
- package/lib/packages/progress/use-progress.ts +22 -0
- package/lib/packages/remote-resource/README.md +115 -0
- package/lib/packages/remote-resource/define-remote-resource.ts +294 -0
- package/lib/packages/remote-resource/types.ts +28 -0
- package/lib/packages/threshold/README.md +30 -0
- package/lib/packages/threshold/type.ts +3 -0
- package/lib/packages/threshold/use-threshold.ts +19 -0
- package/lib/types/object-icon.type.ts +0 -40
- package/package.json +2 -2
- package/lib/components/icon/NewVtsIcon.vue +0 -49
- package/lib/components/ui/complex-icon/UiComplexIcon.vue +0 -45
- package/lib/components/ui/object-icon/UiObjectIcon.vue +0 -251
package/lib/locales/nl.json
CHANGED
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
"2nd-last": "2e laatste",
|
|
3
3
|
"3rd-last": "3e laatste",
|
|
4
4
|
"about": "Over",
|
|
5
|
+
"accept-self-signed-certificates": "Zelfondertekende certificaten accepteren",
|
|
5
6
|
"access-forum": "Open forum",
|
|
6
7
|
"access-xoa": "Open XOA",
|
|
7
8
|
"account-organization-more": "Account, organisatie & meer…",
|
|
@@ -13,7 +14,7 @@
|
|
|
13
14
|
"admin-password": "Beheerder wachtwoord",
|
|
14
15
|
"admin-password-confirm": "Bevestig beheerder wachtwoord",
|
|
15
16
|
"affinity-host": "Voorkeur host",
|
|
16
|
-
"alarm-type.cpu_usage": "CPU gebruik overschrijdt
|
|
17
|
+
"alarm-type.cpu_usage": "CPU gebruik overschrijdt @:n-percent",
|
|
17
18
|
"alarm-type.disk_usage": "Schijfgebruik overschrijdt @:n-percent",
|
|
18
19
|
"alarm-type.fs_usage": "Bestandssysteem gebruik overschrijdt @:n-percent",
|
|
19
20
|
"alarm-type.log_fs_usage": "Logbestandssysteem gebruik overschrijdt @:n-percent",
|
|
@@ -39,7 +40,7 @@
|
|
|
39
40
|
"backup": "Back-up",
|
|
40
41
|
"backup-issues": "Back-up problemen",
|
|
41
42
|
"backup-network": "Back-up netwerk",
|
|
42
|
-
"backup-repository": "Back-
|
|
43
|
+
"backup-repository": "Back-up opslag repository (lokaal, NFS, SMB)",
|
|
43
44
|
"backups": "Back-ups",
|
|
44
45
|
"backups.jobs": "Opdrachten",
|
|
45
46
|
"backups.jobs.at-least-one-skipped": "Ten minste één overgeslagen",
|
|
@@ -47,7 +48,7 @@
|
|
|
47
48
|
"backups.jobs.disabled": "Uitgeschakeld",
|
|
48
49
|
"backups.jobs.looks-like-issue": "Er lijkt een probleem te zijn",
|
|
49
50
|
"backups.jobs.running-good": "Loopt goed",
|
|
50
|
-
"backups.vms-protection": "VMs
|
|
51
|
+
"backups.vms-protection": "VMs bescherming",
|
|
51
52
|
"backups.vms-protection.no-job": "In geen enkele opdracht",
|
|
52
53
|
"backups.vms-protection.protected": "In minstens één opdracht & beschermd",
|
|
53
54
|
"backups.vms-protection.tooltip": "Een VM is beschermd als deze zich in een back-uptaak bevindt, met een ingeschakeld schema en als de laatste uitvoering is geslaagd",
|
|
@@ -79,7 +80,11 @@
|
|
|
79
80
|
"configuration": "Configuratie",
|
|
80
81
|
"confirm-cancel": "Weet je zeker dat je wilt annuleren?",
|
|
81
82
|
"confirm-delete": "Je staat op het punt om {0} te verwijderen",
|
|
83
|
+
"connect": "Verbind",
|
|
84
|
+
"connect-another-pool": "Verbind een andere pool",
|
|
85
|
+
"connect-pool": "Verbind pool",
|
|
82
86
|
"connected": "Verbonden",
|
|
87
|
+
"connected-to-ip": "Verbonden naar {ip}",
|
|
83
88
|
"connecting": "Verbinden",
|
|
84
89
|
"connection": "Verbinding",
|
|
85
90
|
"connection-failed": "Verbinding mislukt",
|
|
@@ -103,6 +108,7 @@
|
|
|
103
108
|
"core.group": "Groep",
|
|
104
109
|
"core.hide": "Verberg",
|
|
105
110
|
"core.open": "Open",
|
|
111
|
+
"core.open-in-new-tab": "Openen in nieuw tabblad",
|
|
106
112
|
"core.pagination.all": "Alles",
|
|
107
113
|
"core.pagination.show-by": "Toon door",
|
|
108
114
|
"core.query-search-bar.label": "Zoekmachine",
|
|
@@ -132,7 +138,7 @@
|
|
|
132
138
|
"cpu-usage": "Processorgebruik",
|
|
133
139
|
"cpu-weight": "CPU-gewicht",
|
|
134
140
|
"cpus": "CPU's",
|
|
135
|
-
"crash-dump-storage-repository": "Crashdump
|
|
141
|
+
"crash-dump-storage-repository": "Crashdump opslagrepository",
|
|
136
142
|
"create": "Aanmaken",
|
|
137
143
|
"created-on": "Gemaakt op",
|
|
138
144
|
"custom-config": "Aangepaste configuratie",
|
|
@@ -142,7 +148,7 @@
|
|
|
142
148
|
"dashboard": "Dashboard",
|
|
143
149
|
"default-behavior": "Standaard gedrag",
|
|
144
150
|
"default-locking-mode": "Standaard vergrendelingsmodus",
|
|
145
|
-
"default-storage-repository": "Standaard
|
|
151
|
+
"default-storage-repository": "Standaard opslagrepository",
|
|
146
152
|
"delete": "Verwijderen",
|
|
147
153
|
"delete-vms": "Verwijder 1 VM | Verwijder {n} VMs",
|
|
148
154
|
"deploy": "Uitrollen",
|
|
@@ -218,7 +224,7 @@
|
|
|
218
224
|
"gzip": "gzip",
|
|
219
225
|
"hardware": "Hardware",
|
|
220
226
|
"hardware-specifications": "Hardwarespecificaties",
|
|
221
|
-
"heartbeat-storage-repository": "Hartslag
|
|
227
|
+
"heartbeat-storage-repository": "Hartslag opslagrepository",
|
|
222
228
|
"here": "Hier",
|
|
223
229
|
"high-availability": "Hoge beschikbaarheid (HA)",
|
|
224
230
|
"host": "Host",
|
|
@@ -246,6 +252,7 @@
|
|
|
246
252
|
"ip-address": "IP-adres",
|
|
247
253
|
"ip-addresses": "IP-adressen",
|
|
248
254
|
"ip-mode": "IP-modus",
|
|
255
|
+
"ip-port-placeholder": "adres[:port]",
|
|
249
256
|
"is-primary-host": "{name} is primaire host",
|
|
250
257
|
"iscsi-iqn": "iSCSI IQN",
|
|
251
258
|
"iso-dvd": "ISO/DVD",
|
|
@@ -388,6 +395,7 @@
|
|
|
388
395
|
"on": "Aan",
|
|
389
396
|
"on-object": "op {object}",
|
|
390
397
|
"open-console-in-new-tab": "Open console in nieuw tabblad",
|
|
398
|
+
"options": "Opties",
|
|
391
399
|
"or": "Of",
|
|
392
400
|
"os-kernel": "OS-kernel",
|
|
393
401
|
"os-name": "OS-naam",
|
|
@@ -406,6 +414,12 @@
|
|
|
406
414
|
"pifs-status": "PIF's status",
|
|
407
415
|
"please-confirm": "Graag bevestigen",
|
|
408
416
|
"pool": "Pool",
|
|
417
|
+
"pool-connection-error-auth-failed": "Er is een fout opgetreden tijdens het verbinden met de pool. De gebruikersnaam of het wachtwoord lijkt onjuist te zijn.",
|
|
418
|
+
"pool-connection-error-duplicate": "Er is een fout opgetreden tijdens het verbinden met de pool. Deze pool lijkt al verbonden te zijn.",
|
|
419
|
+
"pool-connection-error-host-not-found": "Er is een fout opgetreden tijdens het verbinden met de pool. Het adres van deze pool lijkt niet te bestaan. Wijzig het IP-adres en probeer het opnieuw.",
|
|
420
|
+
"pool-connection-error-invalid-parameters": "Er is een fout opgetreden tijdens het verbinden met de pool. De opgegeven parameters lijken niet geldig te zijn. Controleer het IP-adres en de inloggegevens en probeer het opnieuw.",
|
|
421
|
+
"pool-connection-ip-info": "Geef het adres van de primaire host van de pool op waarmee je verbinding wilt maken.",
|
|
422
|
+
"pool-connection-success": "Je bent nu succesvol verbonden met de pool. Je kunt deze nu vinden in je boomstructuur en beginnen met het beheren van je hosts en VM's.",
|
|
409
423
|
"pool-cpu-usage": "Pool processor gebruik",
|
|
410
424
|
"pool-management": "Pool beheer",
|
|
411
425
|
"pool-ram-usage": "Pool geheugen gebruik",
|
|
@@ -449,8 +463,9 @@
|
|
|
449
463
|
"resource-management": "Beheer van middelen",
|
|
450
464
|
"resources-overview": "Bronnen overzicht",
|
|
451
465
|
"resume": "Hervatten",
|
|
466
|
+
"root-by-default": "Standaard “root”.",
|
|
452
467
|
"running-vm": "Draaiende VM | Draaiende VM's",
|
|
453
|
-
"s3-backup-repository": "S3-back-
|
|
468
|
+
"s3-backup-repository": "S3-back-up opslag repository",
|
|
454
469
|
"save": "Opslaan",
|
|
455
470
|
"scan-pifs": "Scan PIF's",
|
|
456
471
|
"scheduler-granularity": "Granulariteit van de planning",
|
|
@@ -497,8 +512,8 @@
|
|
|
497
512
|
"status": "Status",
|
|
498
513
|
"storage": "Opslag",
|
|
499
514
|
"storage-configuration": "Opslagconfiguratie",
|
|
500
|
-
"storage-repositories": "
|
|
501
|
-
"storage-repository": "
|
|
515
|
+
"storage-repositories": "Opslagrepositories",
|
|
516
|
+
"storage-repository": "Opslagrepository",
|
|
502
517
|
"storage-usage": "Opslaggebruik",
|
|
503
518
|
"success": "Succes",
|
|
504
519
|
"summary": "Overzicht",
|
|
@@ -536,15 +551,17 @@
|
|
|
536
551
|
"total-free": "Totaal vrij",
|
|
537
552
|
"total-free:": "Totaal vrij:",
|
|
538
553
|
"total-memory": "Totaal geheugen",
|
|
539
|
-
"total-storage-repository": "Totale
|
|
554
|
+
"total-storage-repository": "Totale opslagrepository",
|
|
540
555
|
"total-used": "Totaal gebruikt",
|
|
541
556
|
"total-used:": "Totaal gebruikt:",
|
|
557
|
+
"unable-to-connect-to": "Kan geen verbinding maken met {ip}",
|
|
542
558
|
"unable-to-connect-to-the-pool": "Kan geen verbinding maken met de pool",
|
|
543
559
|
"unknown": "Onbekend",
|
|
544
560
|
"unlocked": "Ontgrendeld",
|
|
545
561
|
"unreachable-hosts": "Onbereikbare hosts",
|
|
546
562
|
"unreachable-hosts-reload-page": "Gereed, herlaad de pagina",
|
|
547
563
|
"up-to-date": "Actueel",
|
|
564
|
+
"update": "Bijwerken",
|
|
548
565
|
"used": "Gebruikt",
|
|
549
566
|
"user-config": "Gebruikersconfiguratie",
|
|
550
567
|
"username": "Gebruikersnaam",
|
|
@@ -565,6 +582,7 @@
|
|
|
565
582
|
"virtualization-boot-settings": "Virtualisatie & opstartinstellingen",
|
|
566
583
|
"virtualization-mode": "Virtualisatiemodus",
|
|
567
584
|
"virtualization-type": "Virtualisatietype",
|
|
585
|
+
"visit-pool-dashboard": "Bezoek het pool-dashboard",
|
|
568
586
|
"vlan": "VLAN",
|
|
569
587
|
"vm": "VM",
|
|
570
588
|
"vm-description": "VM beschrijving",
|
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
{
|
|
2
|
+
"2nd-last": "Penultimo",
|
|
3
|
+
"3rd-last": "Antepenúltimo",
|
|
4
|
+
"about": "Sobre",
|
|
5
|
+
"access-forum": "Accesso ao fórum",
|
|
6
|
+
"access-xoa": "Accesso à XOA",
|
|
7
|
+
"account-organization-more": "Conta, organização e mais…",
|
|
8
|
+
"add": "Adicionar",
|
|
9
|
+
"add-filter": "Adicionar filtro",
|
|
10
|
+
"add-or": "+OU",
|
|
11
|
+
"add-sort": "Adicionar ordenação",
|
|
12
|
+
"admin-login": "Login do administrador",
|
|
13
|
+
"admin-password": "Senha do administrador",
|
|
14
|
+
"admin-password-confirm": "Confirmar senha do administrador",
|
|
15
|
+
"affinity-host": "Servidor preferencial",
|
|
16
|
+
"alarm-type.cpu_usage": "O uso da CPU excede @:n-percent",
|
|
17
|
+
"alarm-type.disk_usage": "O uso do Disco excede @:n-percent",
|
|
18
|
+
"alarm-type.fs_usage": "O uso de FS excede @:n-percent",
|
|
19
|
+
"alarm-type.log_fs_usage": "Log do FS excede @:n-percent",
|
|
20
|
+
"alarm-type.mem_usage": "Uso de memória excede @:n-percent",
|
|
21
|
+
"alarm-type.memory_free_kib": "Memória livre abaixo de @:n-percent",
|
|
22
|
+
"alarm-type.network_usage": "Uso de rede ultrapassa @:n-percent",
|
|
23
|
+
"alarm-type.physical_utilisation": "Uso físico ultrapassa @:n-percent",
|
|
24
|
+
"alarm-type.unknown": "Tipo de alarme desconhecido",
|
|
25
|
+
"alarms": "Alarmes",
|
|
26
|
+
"all-done": "Tudo pronto!",
|
|
27
|
+
"all-good": "Tudo certo!",
|
|
28
|
+
"allow-self-signed-ssl": "Pode ser necessário permitir certificados SSL autoassinados em seu navegador",
|
|
29
|
+
"api-error-details": "Detalhe de erros da API",
|
|
30
|
+
"appearance": "Aparência",
|
|
31
|
+
"ascending": "crescente",
|
|
32
|
+
"auto-generated": "Gerado automaticamente",
|
|
33
|
+
"auto-power": "Ligar automaticamente",
|
|
34
|
+
"available": "Disponível",
|
|
35
|
+
"backup": "Copia de segurança",
|
|
36
|
+
"backups": "Copias de segurança",
|
|
37
|
+
"backups.jobs.disabled": "Desativado",
|
|
38
|
+
"backups.jobs.looks-like-issue": "Parece que existe um problema",
|
|
39
|
+
"backups.jobs.running-good": "Tudo rodando bem",
|
|
40
|
+
"backups.vms-protection": "Proteção de máquinas virtuais",
|
|
41
|
+
"bios-default": "bios (por padrão)",
|
|
42
|
+
"bios-info": "informações de BIOS",
|
|
43
|
+
"bond": "Ligação",
|
|
44
|
+
"bytes.gi": "GiB",
|
|
45
|
+
"bytes.ki": "KiB",
|
|
46
|
+
"bytes.mi": "MiB",
|
|
47
|
+
"cancel": "Cancelar",
|
|
48
|
+
"change-state": "Trocar estado",
|
|
49
|
+
"check-errors": "Verificar os erros:",
|
|
50
|
+
"check-summing": "Soma de verificação TX",
|
|
51
|
+
"close": "Fechar",
|
|
52
|
+
"community": "Comunidade",
|
|
53
|
+
"community-name": "{name} comunidade",
|
|
54
|
+
"configuration": "Configurações",
|
|
55
|
+
"confirm-delete": "Confirmar {0}",
|
|
56
|
+
"connected": "Conectado",
|
|
57
|
+
"connecting": "Conectando",
|
|
58
|
+
"connection": "Conexão",
|
|
59
|
+
"connection-failed": "Conexão falhou",
|
|
60
|
+
"connections": "Conexões",
|
|
61
|
+
"console": "Console",
|
|
62
|
+
"console-actions": "Ações do console",
|
|
63
|
+
"copy": "Copiar",
|
|
64
|
+
"copy-all": "Copiar tudo",
|
|
65
|
+
"copy-host": "Copiar servidor",
|
|
66
|
+
"copy-info-json": "Copiar informação em JSON"
|
|
67
|
+
}
|
package/lib/locales/sv.json
CHANGED
|
@@ -75,6 +75,10 @@
|
|
|
75
75
|
"confirm-cancel": "Är du säker på att du vill avbryta?",
|
|
76
76
|
"confirm-delete": "Du kommer att radera {0}",
|
|
77
77
|
"connected": "Ansluten",
|
|
78
|
+
"connecting": "Ansluter",
|
|
79
|
+
"connection": "Anslutning",
|
|
80
|
+
"connection-failed": "Anslutning misslyckades",
|
|
81
|
+
"connections": "Anslutningar",
|
|
78
82
|
"console": "Konsol",
|
|
79
83
|
"console-actions": "Konsolverktyg",
|
|
80
84
|
"console-clipboard": "Konsolurklipp",
|
|
@@ -161,6 +165,7 @@
|
|
|
161
165
|
"enabled": "Aktiverad",
|
|
162
166
|
"end-of-life": "Slutdatum",
|
|
163
167
|
"eol": "EOL",
|
|
168
|
+
"error": "Fel",
|
|
164
169
|
"error-no-data": "Fel, kan inte samla data.",
|
|
165
170
|
"error-occurred": "Ett fel har uppstått",
|
|
166
171
|
"exit-fullscreen": "Stäng fullskärm",
|
|
@@ -193,6 +198,7 @@
|
|
|
193
198
|
"for-replication": "För replikering",
|
|
194
199
|
"force-reboot": "Tvinga omstart",
|
|
195
200
|
"force-shutdown": "Tvinga avstängning",
|
|
201
|
+
"forget": "Glöm",
|
|
196
202
|
"fullscreen": "Fullskärm",
|
|
197
203
|
"fullscreen-leave": "Lämna fullskärm",
|
|
198
204
|
"gateway": "Gateway",
|
|
@@ -225,6 +231,7 @@
|
|
|
225
231
|
"in-last-three-jobs": "I de senaste tre jobben",
|
|
226
232
|
"install-settings": "Installationsinställningar",
|
|
227
233
|
"interfaces": "Gränssnitt | Gränssnitt | Gränssnitten",
|
|
234
|
+
"interrupted": "Avbruten",
|
|
228
235
|
"invalid-field": "Felaktigt fält",
|
|
229
236
|
"ip-address": "IP-adress",
|
|
230
237
|
"ip-addresses": "IP-adresser",
|
|
@@ -353,6 +360,7 @@
|
|
|
353
360
|
"no-results": "Inga resultat",
|
|
354
361
|
"no-selected-vm-can-be-exported": "Inga markerade VMar kan exporteras",
|
|
355
362
|
"no-selected-vm-can-be-migrated": "Inga markerade VMar kan migreras",
|
|
363
|
+
"no-server-detected": "Ingen server hittades",
|
|
356
364
|
"no-tasks": "Inga uppgifter",
|
|
357
365
|
"no-vif-detected": "Ingen VIF hittades",
|
|
358
366
|
"none": "Inga",
|
|
@@ -401,11 +409,13 @@
|
|
|
401
409
|
"property": "Egenskap",
|
|
402
410
|
"protect-from-accidental-deletion": "Skydda från oönskad borttagning",
|
|
403
411
|
"protect-from-accidental-shutdown": "Skydda från oönskad nedstängning",
|
|
412
|
+
"proxy-url": "Proxy URL",
|
|
404
413
|
"pxe": "PXE",
|
|
405
414
|
"quick-info": "Snabbinfo",
|
|
406
415
|
"ram": "RAM",
|
|
407
416
|
"ram-provisioning": "RAM provisionering",
|
|
408
417
|
"ram-usage": "RAM-användning",
|
|
418
|
+
"read": "Läs",
|
|
409
419
|
"reboot": "Starta om",
|
|
410
420
|
"receive": "Ta emot",
|
|
411
421
|
"reformat": "Formatera om",
|
|
@@ -436,6 +446,7 @@
|
|
|
436
446
|
"select.network": "Välj ett nätverk",
|
|
437
447
|
"select.storage": "Välj lagring",
|
|
438
448
|
"selected-vms-in-execution": "Vissa av de markerade VMarna är igång",
|
|
449
|
+
"self-signed-certificates": "Självsignerade certifikat",
|
|
439
450
|
"send": "Skicka",
|
|
440
451
|
"send-ctrl-alt-del": "Skicka Ctrl+Alt+Del",
|
|
441
452
|
"send-us-feedback": "Skicka feedback",
|
|
@@ -509,6 +520,7 @@
|
|
|
509
520
|
"total-storage-repository": "Totalt lagringsutrymme",
|
|
510
521
|
"total-used": "Totalt använt",
|
|
511
522
|
"total-used:": "Totalt använt:",
|
|
523
|
+
"unable-to-connect-to-the-pool": "Kunde inte ansluta till poolen",
|
|
512
524
|
"unknown": "Okänt",
|
|
513
525
|
"unlocked": "Upplåst",
|
|
514
526
|
"unreachable-hosts": "Onåbara hostar",
|
|
@@ -516,6 +528,7 @@
|
|
|
516
528
|
"up-to-date": "Uppdaterad",
|
|
517
529
|
"used": "Använt",
|
|
518
530
|
"user-config": "Användarkonfiguration",
|
|
531
|
+
"username": "Användarnamn",
|
|
519
532
|
"uuid": "UUID",
|
|
520
533
|
"vcpus": "vCPUer",
|
|
521
534
|
"vcpus-assigned": "vCPUs tilldelade",
|
|
@@ -531,12 +544,15 @@
|
|
|
531
544
|
"virtual-tpm": "Virtuell TPM (VTPM)",
|
|
532
545
|
"virtualization-boot-settings": "Virtualisering & boot-inställningar",
|
|
533
546
|
"virtualization-mode": "Virtualiseringsläge",
|
|
547
|
+
"virtualization-type": "Virtualiseringstyp",
|
|
534
548
|
"vlan": "VLAN",
|
|
535
549
|
"vm": "VM",
|
|
536
550
|
"vm-description": "VM-beskrivning",
|
|
537
551
|
"vm-is-running": "VMen är startad",
|
|
538
552
|
"vm-limit-topology": "VM-begränsningstopologi",
|
|
539
553
|
"vm-management": "VM-hantering",
|
|
554
|
+
"vm-status.halted": "Stannade",
|
|
555
|
+
"vm-status.paused": "Pausad",
|
|
540
556
|
"vm.active": "Aktiv",
|
|
541
557
|
"vm.inactive": "Inaktiv",
|
|
542
558
|
"vms": "VMar",
|
|
@@ -549,6 +565,7 @@
|
|
|
549
565
|
"vms-status.suspended": "Suspenderad",
|
|
550
566
|
"vms-status.unknown": "Okänt",
|
|
551
567
|
"vms-status.unknown.tooltip": "Där XO har förlorat kontakten med poolen",
|
|
568
|
+
"write": "Skriver",
|
|
552
569
|
"xo-backups": "XO-backuper",
|
|
553
570
|
"xo-lite-under-construction": "XOLite är under uppbyggnad",
|
|
554
571
|
"xo-replications": "XO-replikeringar",
|
|
@@ -2,6 +2,8 @@ import type { CollectionItem, CollectionItemProperties } from '@core/packages/co
|
|
|
2
2
|
import type { KeyOfByValue } from '@core/types/utility.type.ts'
|
|
3
3
|
import type { ComputedRef, InjectionKey, Reactive, Ref, UnwrapRef } from 'vue'
|
|
4
4
|
|
|
5
|
+
export const EMPTY_OPTION = Symbol('EMPTY_OPTION')
|
|
6
|
+
|
|
5
7
|
export type FormSelectId<
|
|
6
8
|
TCustomProperties extends CollectionItemProperties = CollectionItemProperties,
|
|
7
9
|
TSource = unknown,
|
|
@@ -48,6 +50,7 @@ export type FormSelectController = Reactive<{
|
|
|
48
50
|
isDisabled: ComputedRef<boolean>
|
|
49
51
|
isMultiple: ComputedRef<boolean>
|
|
50
52
|
isNavigatingWithKeyboard: Ref<boolean>
|
|
53
|
+
isOpen: Ref<boolean>
|
|
51
54
|
closeDropdown(keepFocus: boolean): void
|
|
52
55
|
focusSearchOrTrigger(): void
|
|
53
56
|
}>
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { unrefElement, useEventListener
|
|
2
|
-
import { computed, inject, type MaybeRefOrGetter, ref, toValue } from 'vue'
|
|
1
|
+
import { unrefElement, useEventListener } from '@vueuse/core'
|
|
2
|
+
import { computed, inject, type MaybeRefOrGetter, ref, toValue, watchEffect } from 'vue'
|
|
3
3
|
import { type FormOption, IK_FORM_SELECT_CONTROLLER } from './types.ts'
|
|
4
4
|
|
|
5
5
|
export function useFormOptionController<TOption extends FormOption>(_option: MaybeRefOrGetter<TOption>) {
|
|
@@ -13,12 +13,11 @@ export function useFormOptionController<TOption extends FormOption>(_option: May
|
|
|
13
13
|
|
|
14
14
|
const elementRef = ref<HTMLDivElement>()
|
|
15
15
|
|
|
16
|
-
|
|
17
|
-
(
|
|
18
|
-
() => {
|
|
16
|
+
watchEffect(() => {
|
|
17
|
+
if (controller.isOpen && option.value.flags.active) {
|
|
19
18
|
unrefElement(elementRef)?.scrollIntoView({ block: 'nearest' })
|
|
20
19
|
}
|
|
21
|
-
)
|
|
20
|
+
})
|
|
22
21
|
|
|
23
22
|
useEventListener(elementRef, 'click', event => {
|
|
24
23
|
if (controller.isDisabled) {
|