@xen-orchestra/web-core 0.54.0 → 0.56.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/button-group/VtsButtonGroup.vue +11 -1
- package/lib/components/card-object-title/VtsCardObjectTitle.vue +36 -0
- package/lib/components/code-snippet/VtsCodeSnippet.vue +11 -5
- package/lib/components/drawer/VtsDrawer.vue +89 -0
- package/lib/components/drawer/VtsDrawerButton.vue +22 -0
- package/lib/components/drawer/VtsDrawerCancelButton.vue +33 -0
- package/lib/components/drawer/VtsDrawerConfirmButton.vue +32 -0
- package/lib/components/drawer/VtsDrawerList.vue +34 -0
- package/lib/components/icon/VtsIcon.vue +3 -1
- package/lib/components/layout/VtsContentSidePanel.vue +41 -0
- package/lib/components/layout/VtsLayoutSidebar.vue +5 -2
- package/lib/components/menu/VtsActionsMenu.vue +37 -3
- package/lib/components/modal/VtsModalButton.vue +0 -1
- package/lib/components/operation-card/VtsOperationCard.vue +2 -1
- package/lib/components/panel/VtsPanel.vue +80 -0
- package/lib/components/panel/VtsSidePanel.vue +140 -0
- package/lib/components/query-builder/VtsQueryBuilderModal.vue +0 -1
- package/lib/components/select/VtsSelect.vue +1 -0
- package/lib/components/state-hero/VtsStateHero.vue +26 -24
- package/lib/components/table/VtsTable.vue +2 -1
- package/lib/components/table/cells/VtsActionCell.vue +7 -0
- package/lib/components/table/cells/VtsHeaderCell.vue +1 -17
- package/lib/components/table/cells/VtsLinkCell.vue +3 -1
- package/lib/components/table/cells/VtsTagCell.vue +4 -2
- package/lib/components/tree/VtsTreeItem.vue +9 -3
- package/lib/components/tree/VtsTreeList.vue +6 -3
- package/lib/components/tree/VtsTreeLoadingItem.vue +3 -3
- package/lib/components/ui/drawer/UiDrawer.vue +123 -0
- package/lib/components/ui/head-bar/UiHeadBar.vue +1 -1
- package/lib/components/ui/input/UiInput.vue +3 -1
- package/lib/components/ui/link/UiLink.vue +3 -1
- package/lib/components/ui/modal/UiModal.vue +10 -18
- package/lib/components/ui/panel/UiPanel.vue +7 -24
- package/lib/components/ui/tree-item-label/UiTreeItemLabel.vue +1 -1
- package/lib/composables/default-tab.composable.ts +4 -0
- package/lib/composables/table-state.composable.ts +1 -1
- package/lib/icons/action-icons.ts +20 -2
- package/lib/icons/custom-icons.ts +16 -0
- package/lib/icons/object-icons.ts +33 -18
- package/lib/locales/cs.json +110 -11
- package/lib/locales/da.json +1 -3
- package/lib/locales/de.json +1 -12
- package/lib/locales/en.json +76 -12
- package/lib/locales/es.json +15 -6
- package/lib/locales/fa.json +0 -1
- package/lib/locales/fr.json +76 -12
- package/lib/locales/it.json +0 -1
- package/lib/locales/ko.json +0 -2
- package/lib/locales/nb-NO.json +18 -20
- package/lib/locales/nl.json +0 -11
- package/lib/locales/pt-BR.json +0 -4
- package/lib/locales/pt.json +0 -4
- package/lib/locales/ru.json +0 -1
- package/lib/locales/sk.json +110 -11
- package/lib/locales/sv.json +2 -13
- package/lib/locales/uk.json +0 -1
- package/lib/locales/zh-Hans.json +79 -16
- package/lib/packages/drawer/DrawerProvider.vue +17 -0
- package/lib/packages/drawer/README.md +189 -0
- package/lib/packages/drawer/create-drawer-opener.ts +119 -0
- package/lib/packages/drawer/drawer.store.ts +22 -0
- package/lib/packages/drawer/types.ts +93 -0
- package/lib/packages/drawer/use-drawer.ts +53 -0
- package/lib/packages/modal/create-modal-opener.ts +12 -10
- package/lib/packages/remote-resource/define-remote-resource.ts +64 -29
- package/lib/packages/tree/types.ts +6 -0
- package/lib/packages/tree/use-tree.ts +38 -37
- package/lib/stores/panel.store.ts +56 -5
- package/lib/tables/column-definitions/action-column.ts +22 -10
- package/lib/tables/column-definitions/address-column.ts +1 -1
- package/lib/tables/column-definitions/button-column.ts +1 -1
- package/lib/tables/column-definitions/button-icon-column.ts +1 -1
- package/lib/tables/column-definitions/collapsed-list-column.ts +1 -1
- package/lib/tables/column-definitions/date-column.ts +1 -1
- package/lib/tables/column-definitions/double-link-column.ts +1 -1
- package/lib/tables/column-definitions/info-column.ts +1 -1
- package/lib/tables/column-definitions/input-column.ts +1 -5
- package/lib/tables/column-definitions/link-column.ts +1 -1
- package/lib/tables/column-definitions/link-or-text-column.ts +1 -1
- package/lib/tables/column-definitions/literal-column.ts +1 -1
- package/lib/tables/column-definitions/number-column.ts +1 -1
- package/lib/tables/column-definitions/percent-column.ts +1 -1
- package/lib/tables/column-definitions/progress-bar-column.ts +1 -1
- package/lib/tables/column-definitions/select-column.ts +1 -1
- package/lib/tables/column-definitions/status-column.ts +2 -2
- package/lib/tables/column-definitions/tag-column.ts +3 -2
- package/lib/tables/column-definitions/text-column.ts +1 -1
- package/lib/tables/column-definitions/truncated-text-column.ts +1 -1
- package/lib/tables/column-sets/backup-job-schedule-columns.ts +2 -2
- package/lib/tables/column-sets/backup-log-columns.ts +1 -1
- package/lib/tables/column-sets/new-vm-network-columns.ts +0 -2
- package/lib/tables/column-sets/new-vm-sr-columns.ts +0 -1
- package/lib/tables/column-sets/server-columns.ts +1 -1
- package/lib/tables/column-sets/snapshot-columns.ts +1 -1
- package/lib/tables/column-sets/sr-columns.ts +2 -2
- package/lib/tables/column-sets/traffic-rules-columns.ts +5 -7
- package/lib/tables/column-sets/vif-network-columns.ts +24 -0
- package/lib/tables/column-sets/vm-columns.ts +2 -3
- package/lib/tables/helpers/render-head-cell.ts +2 -4
- package/lib/tables/types.ts +0 -2
- package/lib/types/connection.ts +14 -0
- package/lib/types/state-hero.type.ts +19 -0
- package/lib/types/storage-repository.type.ts +14 -0
- package/lib/types/vue-virtual-scroller.d.ts +8 -2
- package/lib/utils/injection-keys.util.ts +1 -1
- package/lib/utils/sr.utils.ts +34 -0
- package/package.json +4 -4
package/lib/locales/en.json
CHANGED
|
@@ -22,7 +22,10 @@
|
|
|
22
22
|
"action:close": "Close",
|
|
23
23
|
"action:connect": "Connect",
|
|
24
24
|
"action:connect-another-pool": "Connect another pool",
|
|
25
|
+
"action:connect-n": "Connect {n}",
|
|
26
|
+
"action:connect-n-srs": "Connect 1 SR | Connect {n} SRs",
|
|
25
27
|
"action:connect-n-vbds": "Connect 1 VBD | Connect {n} VBDs",
|
|
28
|
+
"action:connect-n-vdis": "Connect 1 VDI | Connect {n} VDIs",
|
|
26
29
|
"action:connect-n-vifs": "Connect 1 VIF | Connect {n} VIFs",
|
|
27
30
|
"action:connect-pool": "Connect pool",
|
|
28
31
|
"action:copy": "Copy",
|
|
@@ -41,15 +44,20 @@
|
|
|
41
44
|
"action:delete-group": "Delete group",
|
|
42
45
|
"action:delete-n-networks": "Delete 1 network | Delete {n} networks",
|
|
43
46
|
"action:delete-n-snapshots": "Delete 1 snapshot | Delete {n} snapshots",
|
|
44
|
-
"action:delete-n-
|
|
47
|
+
"action:delete-n-srs": "Delete 1 SR | Delete {n} SRs",
|
|
48
|
+
"action:delete-n-traffic-rules": "Delete 1 traffic rule | Delete {n} traffic rules",
|
|
45
49
|
"action:delete-n-vdis": "Delete 1 VDI | Delete {n} VDIs",
|
|
46
50
|
"action:delete-n-vifs": "Delete 1 VIF | Delete {n} VIFs",
|
|
47
51
|
"action:delete-n-vms": "Delete 1 VM | Delete {n} VMs",
|
|
48
|
-
"action:delete-vbd": "Delete VBD",
|
|
49
52
|
"action:deploy": "Deploy",
|
|
50
53
|
"action:deploy-xoa": "Deploy XOA",
|
|
54
|
+
"action:detach-n-vdis": "Detach 1 VDI | Detach {n} VDIs",
|
|
55
|
+
"action:detach-vdi": "Detach VDI",
|
|
51
56
|
"action:disconnect": "Disconnect",
|
|
57
|
+
"action:disconnect-n": "Disconnect {n}",
|
|
58
|
+
"action:disconnect-n-srs": "Disconnect 1 SR | Disconnect {n} SRs",
|
|
52
59
|
"action:disconnect-n-vbds": "Disconnect 1 VBD | Disconnect {n} VBDs",
|
|
60
|
+
"action:disconnect-n-vdis": "Disconnect 1 VDI | Disconnect {n} VDIs",
|
|
53
61
|
"action:disconnect-n-vifs": "Disconnect 1 VIF | Disconnect {n} VIFs",
|
|
54
62
|
"action:download-bugtools-archive": "Download bugtools archive",
|
|
55
63
|
"action:duplicate": "Duplicate",
|
|
@@ -57,23 +65,29 @@
|
|
|
57
65
|
"action:edit-config": "Edit config",
|
|
58
66
|
"action:enable-light-mode": "Enable light mode",
|
|
59
67
|
"action:export": "Export",
|
|
68
|
+
"action:export-content": "Export content",
|
|
60
69
|
"action:export-n-vms": "Export 1 VM | Export {n} VMs",
|
|
61
70
|
"action:export-n-vms-manually": "Export 1 VM manually | Export {n} VMs manually",
|
|
62
71
|
"action:export-table-to": "Export table to {type}",
|
|
72
|
+
"action:export-vdi": "Export a VDI",
|
|
63
73
|
"action:export-vm": "Export VM | Export VMs",
|
|
64
74
|
"action:filter": "Filter",
|
|
75
|
+
"action:force-migrate-on-sr": "Force migrate on SR",
|
|
65
76
|
"action:force-reboot": "Force reboot",
|
|
66
77
|
"action:force-shutdown": "Force shutdown",
|
|
67
78
|
"action:forget": "Forget",
|
|
68
79
|
"action:go-back": "Go back",
|
|
69
80
|
"action:group": "Group",
|
|
70
81
|
"action:hide": "Hide",
|
|
82
|
+
"action:import": "Import",
|
|
83
|
+
"action:import-export": "Import/Export",
|
|
71
84
|
"action:install-app": "Install {name}",
|
|
72
85
|
"action:install-guest-tools": "Install guest tools",
|
|
73
86
|
"action:load-now": "Load now",
|
|
74
87
|
"action:log-out": "Log out",
|
|
75
88
|
"action:migrate": "Migrate",
|
|
76
89
|
"action:migrate-n-vms": "Migrate 1 VM | Migrate {n} VMs",
|
|
90
|
+
"action:migrate-vdi-on-sr": "Migrate on SR",
|
|
77
91
|
"action:move-filters-to-parent-group": "Move filters to parent group",
|
|
78
92
|
"action:open": "Open",
|
|
79
93
|
"action:open-app": "@:action:open {name}",
|
|
@@ -123,6 +137,7 @@
|
|
|
123
137
|
"admin-login": "Admin login",
|
|
124
138
|
"admin-password": "Admin password",
|
|
125
139
|
"admin-password-confirm": "Confirm admin password",
|
|
140
|
+
"administration": "Administration",
|
|
126
141
|
"affinity-host": "Affinity host",
|
|
127
142
|
"alarm": "Alarm",
|
|
128
143
|
"alarm-type:cpu_usage": "CPU usage exceeds @:n-percent",
|
|
@@ -197,7 +212,6 @@
|
|
|
197
212
|
"backups:vms-protection:active-protected": "In at least 1 active job & protected",
|
|
198
213
|
"backups:vms-protection:active-unprotected": "In at least 1 active job but unprotected",
|
|
199
214
|
"backups:vms-protection:no-active-job": "In no active job",
|
|
200
|
-
"backups:vms-protection:no-job": "In no job",
|
|
201
215
|
"backups:vms-protection:protected": "In at least 1 job & protected",
|
|
202
216
|
"backups:vms-protection:tooltip": "A VM is protected if it's in a backup job, with an enabled schedule, and the last run succeeded",
|
|
203
217
|
"backups:vms-protection:unprotected": "In at least 1 job but unprotected",
|
|
@@ -298,6 +312,8 @@
|
|
|
298
312
|
"deploy-xoa-status:waiting": "Waiting for XOA to respond…",
|
|
299
313
|
"descending": "descending",
|
|
300
314
|
"description": "Description",
|
|
315
|
+
"destination-sr": "Destination SR",
|
|
316
|
+
"destination-sr-mandatory": "Destination SR is mandatory.",
|
|
301
317
|
"device": "Device",
|
|
302
318
|
"device-config": "Device config",
|
|
303
319
|
"dhcp": "DHCP",
|
|
@@ -319,6 +335,7 @@
|
|
|
319
335
|
"disk-space": "Disk space",
|
|
320
336
|
"dns": "DNS",
|
|
321
337
|
"do-you-have-needs": "You have needs and/or expectations? Let us know",
|
|
338
|
+
"do-you-really-want-to-leave-this-page?": "Some changes are still being deployed. Do you really want to leave this page?",
|
|
322
339
|
"documentation": "Documentation",
|
|
323
340
|
"documentation-name": "{name} documentation",
|
|
324
341
|
"done": "Done",
|
|
@@ -358,6 +375,7 @@
|
|
|
358
375
|
"form:warning:out-of-range": "Should be between {min} and {max}",
|
|
359
376
|
"format": "Format",
|
|
360
377
|
"free-space": "Free space",
|
|
378
|
+
"free-space-on-sr": "Free space on SR",
|
|
361
379
|
"from-vm": "From VM",
|
|
362
380
|
"fullscreen": "Fullscreen",
|
|
363
381
|
"gateway": "Gateway",
|
|
@@ -366,6 +384,7 @@
|
|
|
366
384
|
"gpu": "GPU",
|
|
367
385
|
"gpus": "GPUs",
|
|
368
386
|
"graphics-display": "Graphics & Display",
|
|
387
|
+
"groups": "Groups",
|
|
369
388
|
"guest-tools": "Guest tools",
|
|
370
389
|
"hardware": "Hardware",
|
|
371
390
|
"hardware-specifications": "Hardware specifications",
|
|
@@ -444,9 +463,19 @@
|
|
|
444
463
|
"job:create:in-progress": "Create in progress…",
|
|
445
464
|
"job:delete:in-progress": "Delete in progress…",
|
|
446
465
|
"job:disconnect:in-progress": "Disconnect in progress…",
|
|
466
|
+
"job:export:in-progress": "Export in progress…",
|
|
467
|
+
"job:migrate:in-progress": "Migrate in progess…",
|
|
447
468
|
"job:network-delete:has-n-physical-pif-connected": "The network has one physical PIF connected | The network has {n} physical PIFs connected",
|
|
448
469
|
"job:network-delete:has-n-vif-attached": "The network has one VIF attached | The network has {n} VIFs attached",
|
|
470
|
+
"job:pbd-plug:missing-pbd": "No PBDs to connect",
|
|
471
|
+
"job:pbd-plug:pbd-connected": "One or several PBDs are already connected",
|
|
472
|
+
"job:pbd-unplug:missing-pbd": "No PBDs to disconnect",
|
|
473
|
+
"job:pbd-unplug:pbd-disconnected": "One or several PBDs are already disconnected",
|
|
449
474
|
"job:snapshot-delete:missing-snapshot": "No snapshots to delete",
|
|
475
|
+
"job:sr-connect:missing-sr": "No SRs to connect",
|
|
476
|
+
"job:sr-delete:missing-sr": "No SRs to delete",
|
|
477
|
+
"job:sr-disconnect:missing-sr": "No SRs to disconnect",
|
|
478
|
+
"job:traffic-rule-delete:missing-rule": "No traffic rule selected",
|
|
450
479
|
"job:vbd-connect:missing-vbd": "No VBDs to connect",
|
|
451
480
|
"job:vbd-connect:vbd-already-connected": "VBD is already connected",
|
|
452
481
|
"job:vbd-delete:missing-vbd": "No VBDs to delete",
|
|
@@ -455,6 +484,12 @@
|
|
|
455
484
|
"job:vbd-disconnect:vbd-disconnected": "VBD is disconnected",
|
|
456
485
|
"job:vdi-delete:missing-vdi": "No VDIs to delete",
|
|
457
486
|
"job:vdi-delete:vbd-attached": "Cannot delete a VDI with VBD attached",
|
|
487
|
+
"job:vdi-detach:in-progress": "Detach in progress…",
|
|
488
|
+
"job:vdi-export:format-required": "VDI format export is required",
|
|
489
|
+
"job:vdi-export:missing-vdi": "No vdi to export",
|
|
490
|
+
"job:vdi-migrate:in-progress": "Migrate in progress…",
|
|
491
|
+
"job:vdi-migrate:missing-sr": "Destination SR is required",
|
|
492
|
+
"job:vdi-migrate:missing-vdi": "No VDI selected",
|
|
458
493
|
"job:vif-connect:missing-vif": "No VIFs to connect",
|
|
459
494
|
"job:vif-connect:vif-already-connected": "VIF is already connected",
|
|
460
495
|
"job:vif-delete:blocked-operation": "VIF deletion is blocked",
|
|
@@ -528,6 +563,7 @@
|
|
|
528
563
|
"last-run-number": "Last run #{n}",
|
|
529
564
|
"last-snapshot": "Last snapshot",
|
|
530
565
|
"last-week": "Last week",
|
|
566
|
+
"ldap-auth-providers": "LDAP/Auth providers",
|
|
531
567
|
"learn-more": "Learn more",
|
|
532
568
|
"leave-page-safely": "You can safely leave this page.",
|
|
533
569
|
"lets-go!": "Let's go!",
|
|
@@ -555,15 +591,14 @@
|
|
|
555
591
|
"manual": "Manual",
|
|
556
592
|
"manufacturer-info": "Manufacturer info",
|
|
557
593
|
"master": "Primary host",
|
|
558
|
-
"maximum-cpu-limit": "Maximum CPU limit",
|
|
559
594
|
"maximum-dynamic-memory": "Maximum dynamic memory",
|
|
560
595
|
"maximum-static-memory": "Maximum static memory",
|
|
596
|
+
"maximum-vcpu": "Maximum vCPUs",
|
|
561
597
|
"memory": "Memory",
|
|
562
598
|
"memory-usage": "Memory usage",
|
|
563
599
|
"merge-backups-synchronously": "Merge backups synchronously",
|
|
564
600
|
"message": "Message",
|
|
565
601
|
"migration-compression": "Migration compression",
|
|
566
|
-
"minimum-cpu-limit": "Minimum CPU limit",
|
|
567
602
|
"minimum-dynamic-memory": "Minimum dynamic memory",
|
|
568
603
|
"minimum-static-memory": "Minimum static memory",
|
|
569
604
|
"missing-patches": "Missing patches",
|
|
@@ -588,7 +623,6 @@
|
|
|
588
623
|
"multi-creation": "Multi creation",
|
|
589
624
|
"multi-pathing": "Multi-pathing",
|
|
590
625
|
"n-bonded-networks": "1 bonded network | {n} bonded networks",
|
|
591
|
-
"n-cpus": "1 CPU | {n} CPUs",
|
|
592
626
|
"n-gb": "{n} GB",
|
|
593
627
|
"n-gb-left": "{n} GB left",
|
|
594
628
|
"n-gb-required": "{n} GB required",
|
|
@@ -600,8 +634,11 @@
|
|
|
600
634
|
"n-percent": "{n}%",
|
|
601
635
|
"n-selected-of": "{count} selected of {total} objects",
|
|
602
636
|
"n-snapshots": "1 snapshot | {n} snapshots",
|
|
637
|
+
"n-srs": "1 SR | {n} SRs",
|
|
603
638
|
"n-subtasks": "1 subtask | {n} subtasks",
|
|
639
|
+
"n-traffic-rules": "1 traffic rule | {n} traffic rules",
|
|
604
640
|
"n-vbds": "1 VBD | {n} VBDs",
|
|
641
|
+
"n-vcpus": "1 vCPU | {n} vCPUs",
|
|
605
642
|
"n-vdis": "1 VDI | {n} VDIs",
|
|
606
643
|
"n-vifs": "1 VIF | {n} VIFs",
|
|
607
644
|
"n-vms": "1 VM | {n} VMs",
|
|
@@ -823,6 +860,7 @@
|
|
|
823
860
|
"read": "Read",
|
|
824
861
|
"read-only": "Read-only",
|
|
825
862
|
"reboot-blocked": "Reboot Blocked",
|
|
863
|
+
"reboot-vm-internal-shutdown": "Reboot VM on internal shutdown",
|
|
826
864
|
"receive": "Receive",
|
|
827
865
|
"relative-time:day": "1 day | {n} days",
|
|
828
866
|
"relative-time:future": "In {str}",
|
|
@@ -847,6 +885,7 @@
|
|
|
847
885
|
"resources-overview": "Resources overview",
|
|
848
886
|
"rest-api": "REST API",
|
|
849
887
|
"retry": "Retry",
|
|
888
|
+
"roles": "Roles",
|
|
850
889
|
"root-by-default": "\"root\" by default.",
|
|
851
890
|
"rule-type": "Rule type",
|
|
852
891
|
"run": "Run",
|
|
@@ -862,8 +901,9 @@
|
|
|
862
901
|
"see-details": "See details",
|
|
863
902
|
"select-compression": "Select a compression",
|
|
864
903
|
"select-destination-host": "Select a destination host",
|
|
904
|
+
"select-format": "Select format",
|
|
865
905
|
"select-host": "Select host",
|
|
866
|
-
"select-to-see-details": "
|
|
906
|
+
"select-to-see-details": "Click on {icon} to see details",
|
|
867
907
|
"selected-vms-in-execution": "Some selected VMs are running",
|
|
868
908
|
"self-signed-certificates": "Self-signed certificates",
|
|
869
909
|
"send-us-feedback": "Send us feedback",
|
|
@@ -882,6 +922,7 @@
|
|
|
882
922
|
"snapshot-mode": "Snapshot mode",
|
|
883
923
|
"snapshot-revert-snapshot-before": "Take a snapshot of the VM before reverting",
|
|
884
924
|
"snapshot-revert-warning": "This will restore the VM to the selected snapshot state. Any changes made since then (data, configuration, and disk state) will be lost. This action cannot be undone.",
|
|
925
|
+
"snapshot-vdis": "Snapshot VDIs",
|
|
885
926
|
"snapshots": "Snapshots",
|
|
886
927
|
"sockets-with-cores-per-socket": "{nSockets} sockets × {nCores} cores/socket",
|
|
887
928
|
"software": "Software",
|
|
@@ -892,6 +933,17 @@
|
|
|
892
933
|
"speed": "Speed",
|
|
893
934
|
"speed-limit": "Speed limit",
|
|
894
935
|
"sr": "SR",
|
|
936
|
+
"sr-connect-info-host": "The SR will be connected to this host. | The selected SRs will be connected to this host.",
|
|
937
|
+
"sr-connect-info-pool-local": "The SR will be connected to its host. | Each SR will be connected to its own host.",
|
|
938
|
+
"sr-connect-info-pool-mixed": "Local SRs will be connected to their respective hosts. Shared SRs will be connected to all hosts in this pool.",
|
|
939
|
+
"sr-connect-info-pool-shared": "The SR will be connected to {hostsCount} hosts in this pool. | Each shared SR will be connected to all hosts in this pool.",
|
|
940
|
+
"sr-connect-title": "You are about to connect 1 SR | You are about to connect {n} SRs",
|
|
941
|
+
"sr-delete-info": "This action will permanently delete the storage repository and all data stored on it. This cannot be undone. | All selected storage repositories and the data they contain will be permanently deleted. This action is irreversible—proceed with caution.",
|
|
942
|
+
"sr-disconnect-info-host": "The SR will be disconnected from this host. | The selected SRs will be disconnected from this host.",
|
|
943
|
+
"sr-disconnect-info-pool-local": "The SR will be disconnected from its host. | Each SR will be disconnected from its own host.",
|
|
944
|
+
"sr-disconnect-info-pool-mixed": "Local SRs will be disconnected from their respective hosts. Shared SRs will be disconnected from all hosts in this pool.",
|
|
945
|
+
"sr-disconnect-info-pool-shared": "The SR will be disconnected from {hostsCount} hosts in this pool. | Each shared SR will be disconnected from all hosts in this pool.",
|
|
946
|
+
"sr-disconnect-title": "You are about to disconnect 1 SR | You are about to disconnect {n} SRs",
|
|
895
947
|
"ssh-account": "SSH account",
|
|
896
948
|
"ssh-key": "SSH key",
|
|
897
949
|
"ssh-login": "SSH login",
|
|
@@ -985,11 +1037,15 @@
|
|
|
985
1037
|
"total-used": "Total used",
|
|
986
1038
|
"total-used:": "Total used:",
|
|
987
1039
|
"traffic-rule": "Traffic rule",
|
|
1040
|
+
"traffic-rule-delete-warning": "This action is irreversible. The selected traffic rule will be permanently deleted.",
|
|
988
1041
|
"traffic-rules": "Traffic rules",
|
|
1042
|
+
"traffic-rules:format-warning": "Configuration error: Traffic rules are not in the expected format. Please {check-doc} on how to migrate them.",
|
|
1043
|
+
"traffic-rules:format-warning:check-doc": "check the latest documentation",
|
|
989
1044
|
"traffic-rules:info-message": "Traffic rules order is being implemented. Behaviour may be hazardous.",
|
|
990
1045
|
"traffic-rules:no-traffic-rules-detected": "No traffic rules detected",
|
|
991
1046
|
"transfer-size": "Transfer size",
|
|
992
1047
|
"translation-tool": "Translation tool",
|
|
1048
|
+
"treeview": "Treeview",
|
|
993
1049
|
"trigger": "Trigger",
|
|
994
1050
|
"type": "Type",
|
|
995
1051
|
"unable-to-attach-vdi": "Unable to attach VDI",
|
|
@@ -1002,6 +1058,7 @@
|
|
|
1002
1058
|
"unable-to-create-new-traffic-rule": "Unable to create new traffic rule",
|
|
1003
1059
|
"unable-to-create-new-vdi": "Unable to create new VDI",
|
|
1004
1060
|
"unable-to-delete-network": "Unable to delete network",
|
|
1061
|
+
"unable-to-migrate-vdi": "Unable to migrate VDI on SR",
|
|
1005
1062
|
"unknown": "Unknown",
|
|
1006
1063
|
"unlocked": "Unlocked",
|
|
1007
1064
|
"unnamed": "Unnamed",
|
|
@@ -1016,21 +1073,28 @@
|
|
|
1016
1073
|
"used-space": "Used space",
|
|
1017
1074
|
"used-space-on-sr": "Used space on SR",
|
|
1018
1075
|
"user-config": "User config",
|
|
1076
|
+
"user-management": "User management",
|
|
1019
1077
|
"username": "Username",
|
|
1078
|
+
"users": "Users",
|
|
1020
1079
|
"uuid": "UUID",
|
|
1021
|
-
"vbd-connect-title": "You are about to connect 1 VBD | You are about to connect {n} VBDs",
|
|
1022
|
-
"vbd-delete-info": "This will detach the selected VDI from the VM. The disk will not be deleted and can be reattached later.",
|
|
1023
|
-
"vbd-delete-title": "You are about to delete 1 VBD | You are about to delete {n} VBDs",
|
|
1024
|
-
"vbd-disconnect-info": "The VM will no longer have access to the VDI. The disk remains attached and you can reconnect later.",
|
|
1025
|
-
"vbd-disconnect-title": "You are about to disconnect 1 VBD | You are about to disconnect {n} VBDs",
|
|
1026
1080
|
"vcpu": "vCPU",
|
|
1081
|
+
"vcpu-at-startup": "vCPU at startup",
|
|
1027
1082
|
"vcpus": "vCPUs",
|
|
1028
1083
|
"vcpus-assigned": "vCPUs assigned",
|
|
1029
1084
|
"vdi": "VDI",
|
|
1085
|
+
"vdi-connect-title": "You are about to connect 1 VDI | You are about to connect {n} VDIs",
|
|
1030
1086
|
"vdi-delete-warning": "This will permanently delete the selected VDI and all data stored on it. This action cannot be undone.",
|
|
1031
1087
|
"vdi-description": "VDI description",
|
|
1088
|
+
"vdi-detach-info": "This will detach the selected VDI from the VM. The disk will not be deleted and can be reattached later.",
|
|
1089
|
+
"vdi-detach-title": "You are about to detach 1 VDI | You are about to detach {n} VDIs",
|
|
1090
|
+
"vdi-disconnect-info": "The VM will no longer have access to the VDI. The disk remains attached and you can reconnect later.",
|
|
1091
|
+
"vdi-disconnect-title": "You are about to disconnect 1 VDI | You are about to disconnect {n} VDIs",
|
|
1032
1092
|
"vdi-in-use": "VDI in use",
|
|
1033
1093
|
"vdi-name": "VDI name",
|
|
1094
|
+
"vdi-not-attached-to-vm": "No VM attached",
|
|
1095
|
+
"vdi-on-different-sr-warning": "This SR is local to a host that doesn't hold the VM's other disks. The VM won't be able to start until all its disks are on the same host or on shared storage.",
|
|
1096
|
+
"vdi-snapshot-source": "VDI source",
|
|
1097
|
+
"vdi-snpashot-time": "Snapshot date",
|
|
1034
1098
|
"vdi-throughput": "VDI throughput",
|
|
1035
1099
|
"vdis": "VDIs",
|
|
1036
1100
|
"version": "Version",
|
package/lib/locales/es.json
CHANGED
|
@@ -16,12 +16,16 @@
|
|
|
16
16
|
"action:add-sort": "Agregar orden",
|
|
17
17
|
"action:add-vifs-in-xo-5": "Agregar VIF en XO-5",
|
|
18
18
|
"action:attach": "Adjuntar",
|
|
19
|
+
"action:attach-vdi": "@:attach-vdi",
|
|
19
20
|
"action:boot-vm": "Arrancar VM",
|
|
20
21
|
"action:change-state": "Cambiar estado",
|
|
21
22
|
"action:close": "Cerrar",
|
|
22
23
|
"action:connect": "Conectar",
|
|
23
24
|
"action:connect-another-pool": "Conectar a otro pool",
|
|
25
|
+
"action:connect-n": "Conectar {n}",
|
|
26
|
+
"action:connect-n-srs": "Conectar 1 SR | Conectar {n} SRs",
|
|
24
27
|
"action:connect-n-vbds": "Conectar 1 VBD | Conectar {n} VBDs",
|
|
28
|
+
"action:connect-n-vdis": "Conectar 1 VDI | Conectar {n} VDIs",
|
|
25
29
|
"action:connect-n-vifs": "Conectar 1 VIF | Conectar {n} VIFs",
|
|
26
30
|
"action:connect-pool": "Conectar pool",
|
|
27
31
|
"action:copy": "Copiar",
|
|
@@ -30,22 +34,29 @@
|
|
|
30
34
|
"action:copy-id": "Copiar ID",
|
|
31
35
|
"action:copy-info-json": "Copiar información en JSON",
|
|
32
36
|
"action:create": "Crear",
|
|
37
|
+
"action:create-bonded-network": "Crear red enlazada",
|
|
33
38
|
"action:create-internal-network": "Crear red interna",
|
|
34
39
|
"action:create-network": "Crear red",
|
|
40
|
+
"action:create-traffic-rule": "Crear regla de tráfico",
|
|
41
|
+
"action:create-vdi": "Crear VDI",
|
|
35
42
|
"action:delete": "Eliminar",
|
|
36
43
|
"action:delete-filter": "Borrar filtro",
|
|
37
44
|
"action:delete-group": "Borrar grupo",
|
|
38
45
|
"action:delete-n-networks": "Eliminar 1 red | Eliminar {n} redes",
|
|
39
46
|
"action:delete-n-snapshots": "Eliminar 1 instantánea | Eliminar {n} instantáneas",
|
|
40
|
-
"action:delete-n-
|
|
47
|
+
"action:delete-n-srs": "Eliminar 1 SR | Eliminar {n} SRs",
|
|
41
48
|
"action:delete-n-vdis": "Eliminar 1 VDI | Eliminar {n} VDIs",
|
|
42
49
|
"action:delete-n-vifs": "Eliminar 1 VIF | Eliminar {n} VIFs",
|
|
43
50
|
"action:delete-n-vms": "Eliminar 1 VM | Eliminar {n} VMs",
|
|
44
|
-
"action:delete-vbd": "Eliminar VBD",
|
|
45
51
|
"action:deploy": "Desplegar",
|
|
46
52
|
"action:deploy-xoa": "Desplegar XOA",
|
|
53
|
+
"action:detach-n-vdis": "Desconectar 1 VDI | Desconectar {n} VDIs",
|
|
54
|
+
"action:detach-vdi": "Desconectar VDI",
|
|
47
55
|
"action:disconnect": "Desconectar",
|
|
56
|
+
"action:disconnect-n": "Desconectar {n}",
|
|
57
|
+
"action:disconnect-n-srs": "Desconectar 1 SR | Desconectar {n} SRs",
|
|
48
58
|
"action:disconnect-n-vbds": "Desconectar 1 VBD | Desconectar {n} VBDs",
|
|
59
|
+
"action:disconnect-n-vdis": "Desconectar 1 VDI | Desconectar {n} VDIs",
|
|
49
60
|
"action:disconnect-n-vifs": "Desconectar 1 VIF | Desconectar {n} VIFs",
|
|
50
61
|
"action:download-bugtools-archive": "Descargar el archivo de bugtools",
|
|
51
62
|
"action:duplicate": "Duplicar",
|
|
@@ -82,6 +93,8 @@
|
|
|
82
93
|
"action:reboot": "Reiniciar",
|
|
83
94
|
"action:reformat": "Reformatear",
|
|
84
95
|
"action:resume": "Reanudar",
|
|
96
|
+
"action:revert-to-snapshot": "Revertir a la instantánea",
|
|
97
|
+
"action:revert-vm-here": "Revertir la VM aquí",
|
|
85
98
|
"action:save": "Guardar",
|
|
86
99
|
"action:search": "Buscar",
|
|
87
100
|
"action:search-treeview": "Buscar en vista de árbol",
|
|
@@ -190,7 +203,6 @@
|
|
|
190
203
|
"backups:vms-protection:active-protected": "Activo en al menos 1 tarea pero sin proteger",
|
|
191
204
|
"backups:vms-protection:active-unprotected": "Activo en al menos 1 tarea pero no está protegido",
|
|
192
205
|
"backups:vms-protection:no-active-job": "En ninguna tarea activa",
|
|
193
|
-
"backups:vms-protection:no-job": "No listada en ninguna tarea",
|
|
194
206
|
"backups:vms-protection:protected": "Listada en al menos una tarea y protegida",
|
|
195
207
|
"backups:vms-protection:tooltip": "Una máquina virtual está protegida si está en una tarea de copia de seguridad, con un horario activado, y la última ejecución tuvo éxito",
|
|
196
208
|
"backups:vms-protection:unprotected": "En al menos una tarea pero no está protegida",
|
|
@@ -487,7 +499,6 @@
|
|
|
487
499
|
"manual": "Manual",
|
|
488
500
|
"manufacturer-info": "Información del fabricante",
|
|
489
501
|
"master": "Servidor principal",
|
|
490
|
-
"maximum-cpu-limit": "Límite máximo de CPU",
|
|
491
502
|
"maximum-dynamic-memory": "Máxima memoria dinámica",
|
|
492
503
|
"maximum-static-memory": "Máxima memoria estática",
|
|
493
504
|
"memory": "Memoria",
|
|
@@ -495,7 +506,6 @@
|
|
|
495
506
|
"merge-backups-synchronously": "Fusionar copias de seguridad de forma sincrónica",
|
|
496
507
|
"message": "Mensaje",
|
|
497
508
|
"migration-compression": "Compresión de la migración",
|
|
498
|
-
"minimum-cpu-limit": "Límite mínimo de CPU",
|
|
499
509
|
"minimum-dynamic-memory": "Mínima memoria dinámica",
|
|
500
510
|
"minimum-static-memory": "Mínima memoria estática",
|
|
501
511
|
"missing-patches": "Parches faltantes",
|
|
@@ -518,7 +528,6 @@
|
|
|
518
528
|
"mtu": "MTU",
|
|
519
529
|
"multi-creation": "Creación múltiple",
|
|
520
530
|
"multi-pathing": "Múltiples rutas",
|
|
521
|
-
"n-cpus": "1 CPU | {n} CPUs",
|
|
522
531
|
"n-gb": "{n} GB",
|
|
523
532
|
"n-gb-left": "{n} GB libres",
|
|
524
533
|
"n-gb-required": "{n} GB requeridos",
|
package/lib/locales/fa.json
CHANGED
|
@@ -100,7 +100,6 @@
|
|
|
100
100
|
"backups:jobs:disabled": "غیرفعال شده",
|
|
101
101
|
"backups:jobs:running-good": "به خوبی کار میکند",
|
|
102
102
|
"backups:vms-protection": "محافظت از ماشینهای مجازی",
|
|
103
|
-
"backups:vms-protection:no-job": "در هیچ کاری",
|
|
104
103
|
"backups:vms-protection:protected": "در حداقل ۱ کار و حفاظت شده",
|
|
105
104
|
"backups:vms-protection:tooltip": "یک ماشین مجازی در صورت وجود در یک کار پشتیبانگیری، با زمانبندی فعال و اجرای موفق آخرین عملیات، محافظت شده محسوب میشود",
|
|
106
105
|
"backups:vms-protection:unprotected": "در حداقل ۱ کار و حفاظت نشده",
|