@xen-orchestra/web-core 0.55.0 → 0.57.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/assets/css/base.pcss +5 -0
- 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 +5 -1
- package/lib/components/drawer/VtsDrawerButton.vue +4 -3
- package/lib/components/drawer/VtsDrawerConfirmButton.vue +4 -2
- package/lib/components/icon/VtsIcon.vue +3 -1
- package/lib/components/input-wrapper/VtsInputWrapper.vue +2 -2
- package/lib/components/layout/VtsContentSidePanel.vue +41 -0
- package/lib/components/layout/VtsLayoutSidebar.vue +116 -43
- package/lib/components/menu/MenuItem.vue +9 -1
- package/lib/components/menu/MenuList.vue +4 -2
- package/lib/components/menu/VtsActionsMenu.vue +48 -14
- package/lib/components/modal/VtsActionModal.vue +44 -9
- package/lib/components/modal/VtsBlockedModal.vue +1 -1
- package/lib/components/modal/VtsDeleteModal.vue +1 -1
- package/lib/components/operation-card/VtsOperationCard.vue +2 -1
- package/lib/components/overlay/VtsOverlayButton.vue +35 -0
- package/lib/components/overlay/VtsOverlayCancelButton.vue +16 -0
- package/lib/components/overlay/VtsOverlayConfirmButton.vue +25 -0
- package/lib/components/overlay/VtsOverlayList.vue +82 -0
- package/lib/components/panel/VtsPanel.vue +80 -0
- package/lib/components/panel/VtsSidePanel.vue +140 -0
- package/lib/components/progress-bar/VtsProgressBar.vue +5 -3
- package/lib/components/select/VtsSelect.vue +1 -3
- package/lib/components/space-card/VtsSpaceCard.vue +1 -1
- package/lib/components/state-hero/VtsStateHero.vue +9 -17
- package/lib/components/table/VtsTable.vue +2 -1
- package/lib/components/table/cells/VtsActionCell.vue +7 -0
- package/lib/components/table/cells/VtsLinkCell.vue +3 -1
- package/lib/components/table/cells/VtsProgressBarCell.vue +1 -1
- package/lib/components/table/cells/VtsUserNameCell.vue +29 -0
- package/lib/components/task/VtsQuickTaskButton.vue +1 -1
- package/lib/components/task/VtsQuickTaskList.vue +1 -1
- package/lib/components/tree/VtsTreeItem.vue +13 -7
- package/lib/components/tree/VtsTreeList.vue +6 -3
- package/lib/components/tree/VtsTreeLoadingItem.vue +3 -3
- package/lib/components/ui/head-bar/UiHeadBar.vue +2 -2
- package/lib/components/ui/input/UiInput.vue +56 -10
- package/lib/components/ui/link/UiLink.vue +3 -1
- package/lib/components/ui/panel/UiPanel.vue +7 -24
- package/lib/components/ui/query-search-bar/UiQuerySearchBar.vue +1 -15
- package/lib/components/ui/quick-task-item/UiQuickTaskItem.vue +1 -1
- package/lib/components/ui/quick-task-panel/UiQuickTaskPanel.vue +1 -1
- package/lib/components/ui/task-item/UiTaskItem.vue +14 -6
- package/lib/components/ui/task-list/UiTaskList.vue +1 -1
- package/lib/components/ui/text-area/UiTextarea.vue +12 -14
- package/lib/components/ui/tree-item-label/UiTreeItemLabel.vue +1 -1
- package/lib/components/vif-connection-toggle-modal/VtsVifConnectionToggleModal.vue +43 -0
- package/lib/composables/table/multi-select.composable.md +33 -0
- package/lib/composables/table-state.composable.ts +1 -1
- package/lib/icons/action-icons.ts +14 -0
- package/lib/layouts/CoreLayout.vue +74 -62
- package/lib/locales/cs.json +56 -1
- package/lib/locales/de.json +3 -2
- package/lib/locales/en.json +85 -4
- package/lib/locales/es.json +11 -1
- package/lib/locales/fa.json +0 -1
- package/lib/locales/fr.json +85 -4
- package/lib/locales/it.json +0 -1
- package/lib/locales/ko.json +2 -0
- package/lib/locales/nl.json +2 -1
- package/lib/locales/pt-BR.json +0 -1
- package/lib/locales/pt.json +0 -1
- package/lib/locales/ru.json +0 -1
- package/lib/locales/sk.json +56 -1
- package/lib/locales/sv.json +3 -2
- package/lib/locales/uk.json +0 -1
- package/lib/locales/zh-Hans.json +79 -4
- package/lib/packages/form-validation/custom-rules/ip-addresses.rule.ts +15 -0
- package/lib/packages/form-validation/custom-rules/ip.regex.ts +26 -0
- package/lib/packages/form-validation/custom-rules/ipv4-or-cidr.rule.ts +2 -3
- package/lib/packages/form-validation/index.ts +2 -0
- package/lib/packages/hide-permanently/README.md +60 -0
- package/lib/packages/hide-permanently/types.ts +3 -0
- package/lib/packages/hide-permanently/use-hide-permanently.ts +15 -0
- package/lib/packages/overlay/OverlayComponent.vue +18 -0
- package/lib/packages/overlay/README.md +285 -0
- package/lib/packages/overlay/create-event-handler.ts +80 -0
- package/lib/packages/overlay/injection-keys.ts +3 -0
- package/lib/packages/overlay/is-thenable.ts +3 -0
- package/lib/packages/overlay/symbols.ts +5 -0
- package/lib/packages/overlay/types.ts +94 -0
- package/lib/packages/overlay/use-overlay-escape.ts +34 -0
- package/lib/packages/overlay/use-overlay-store.ts +33 -0
- package/lib/packages/overlay/use-overlay-trigger.ts +33 -0
- package/lib/packages/overlay/use-overlay.ts +99 -0
- package/lib/packages/progress/use-progress.ts +12 -2
- package/lib/packages/remote-resource/define-remote-resource.ts +64 -29
- package/lib/packages/sidebar/index.ts +2 -0
- package/lib/packages/sidebar/sidebar.store.ts +55 -0
- package/lib/packages/sidebar/types.ts +21 -0
- package/lib/packages/sidebar/use-sidebar-resize.ts +47 -0
- package/lib/packages/sidebar/use-sidebar-responsive-expand.ts +19 -0
- 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 +21 -9
- package/lib/tables/column-definitions/user-name-column.ts +10 -0
- package/lib/tables/column-sets/server-columns.ts +2 -2
- package/lib/tables/column-sets/user-columns.ts +16 -0
- package/lib/tables/column-sets/vm-columns.ts +2 -3
- package/lib/types/object.type.ts +9 -1
- package/lib/types/state-hero.type.ts +19 -0
- package/lib/types/task.type.ts +5 -12
- package/lib/types/vue-virtual-scroller.d.ts +8 -2
- package/lib/utils/injection-keys.util.ts +4 -2
- package/lib/utils/ip-address.utils.ts +7 -0
- package/lib/utils/sr.utils.ts +4 -0
- package/package.json +2 -1
- package/lib/stores/sidebar.store.ts +0 -79
package/lib/locales/en.json
CHANGED
|
@@ -32,13 +32,14 @@
|
|
|
32
32
|
"action:copy-all": "Copy all",
|
|
33
33
|
"action:copy-host": "Copy host",
|
|
34
34
|
"action:copy-id": "Copy ID",
|
|
35
|
-
"action:copy-info-json": "Copy
|
|
35
|
+
"action:copy-info-json": "Copy object info in JSON",
|
|
36
36
|
"action:create": "Create",
|
|
37
37
|
"action:create-bonded-network": "Create bonded network",
|
|
38
38
|
"action:create-internal-network": "Create internal network",
|
|
39
39
|
"action:create-network": "Create network",
|
|
40
40
|
"action:create-traffic-rule": "Create traffic rule",
|
|
41
41
|
"action:create-vdi": "Create VDI",
|
|
42
|
+
"action:create-vif": "Create VIF",
|
|
42
43
|
"action:delete": "Delete",
|
|
43
44
|
"action:delete-filter": "Delete filter",
|
|
44
45
|
"action:delete-group": "Delete group",
|
|
@@ -53,35 +54,45 @@
|
|
|
53
54
|
"action:deploy-xoa": "Deploy XOA",
|
|
54
55
|
"action:detach-n-vdis": "Detach 1 VDI | Detach {n} VDIs",
|
|
55
56
|
"action:detach-vdi": "Detach VDI",
|
|
57
|
+
"action:disable-host": "Disable host",
|
|
56
58
|
"action:disconnect": "Disconnect",
|
|
57
59
|
"action:disconnect-n": "Disconnect {n}",
|
|
58
60
|
"action:disconnect-n-srs": "Disconnect 1 SR | Disconnect {n} SRs",
|
|
59
61
|
"action:disconnect-n-vbds": "Disconnect 1 VBD | Disconnect {n} VBDs",
|
|
60
62
|
"action:disconnect-n-vdis": "Disconnect 1 VDI | Disconnect {n} VDIs",
|
|
61
63
|
"action:disconnect-n-vifs": "Disconnect 1 VIF | Disconnect {n} VIFs",
|
|
64
|
+
"action:disconnect-pool": "Disconnect pool",
|
|
62
65
|
"action:download-bugtools-archive": "Download bugtools archive",
|
|
63
66
|
"action:duplicate": "Duplicate",
|
|
67
|
+
"action:duplicate-n-vms": "Duplicate 1 VM | Duplicate {n} VMs",
|
|
64
68
|
"action:edit": "Edit",
|
|
65
69
|
"action:edit-config": "Edit config",
|
|
70
|
+
"action:enable-host": "Enable host",
|
|
66
71
|
"action:enable-light-mode": "Enable light mode",
|
|
67
72
|
"action:export": "Export",
|
|
73
|
+
"action:export-content": "Export content",
|
|
68
74
|
"action:export-n-vms": "Export 1 VM | Export {n} VMs",
|
|
69
75
|
"action:export-n-vms-manually": "Export 1 VM manually | Export {n} VMs manually",
|
|
70
76
|
"action:export-table-to": "Export table to {type}",
|
|
77
|
+
"action:export-vdi": "Export a VDI",
|
|
71
78
|
"action:export-vm": "Export VM | Export VMs",
|
|
72
79
|
"action:filter": "Filter",
|
|
80
|
+
"action:force-migrate-on-sr": "Force migrate on SR",
|
|
73
81
|
"action:force-reboot": "Force reboot",
|
|
74
82
|
"action:force-shutdown": "Force shutdown",
|
|
75
83
|
"action:forget": "Forget",
|
|
76
84
|
"action:go-back": "Go back",
|
|
77
85
|
"action:group": "Group",
|
|
78
86
|
"action:hide": "Hide",
|
|
87
|
+
"action:import": "Import",
|
|
88
|
+
"action:import-export": "Import/Export",
|
|
79
89
|
"action:install-app": "Install {name}",
|
|
80
90
|
"action:install-guest-tools": "Install guest tools",
|
|
81
91
|
"action:load-now": "Load now",
|
|
82
92
|
"action:log-out": "Log out",
|
|
83
93
|
"action:migrate": "Migrate",
|
|
84
94
|
"action:migrate-n-vms": "Migrate 1 VM | Migrate {n} VMs",
|
|
95
|
+
"action:migrate-vdi-on-sr": "Migrate on SR",
|
|
85
96
|
"action:move-filters-to-parent-group": "Move filters to parent group",
|
|
86
97
|
"action:open": "Open",
|
|
87
98
|
"action:open-app": "@:action:open {name}",
|
|
@@ -145,6 +156,7 @@
|
|
|
145
156
|
"alarm-type:sr_io_throughput_total_per_host": "SR IO throughput total per host exceeds @:n-percent",
|
|
146
157
|
"alarm-type:unknown": "Unknown alarm type",
|
|
147
158
|
"alarms": "Alarms",
|
|
159
|
+
"alert-user-roles": "A user can be assigned roles directly or through groups. Roles inherited from a group cannot be removed at the user level. To revoke them, update the group's roles or remove the user from the group. You can always add individual roles on top of inherited ones.",
|
|
148
160
|
"all": "All",
|
|
149
161
|
"all-done!": "All done!",
|
|
150
162
|
"all-good!": "All good!",
|
|
@@ -152,6 +164,8 @@
|
|
|
152
164
|
"allocated-space": "Allocated space",
|
|
153
165
|
"allow": "Allow",
|
|
154
166
|
"allow-self-signed-ssl": "You may need to allow self-signed SSL certificates in your browser",
|
|
167
|
+
"allowed-ips": "Allowed IPs",
|
|
168
|
+
"allowed-ips-example": "For example: 192.168.0.1; 2001:db8::1",
|
|
155
169
|
"and": "And",
|
|
156
170
|
"any-property": "Any property",
|
|
157
171
|
"api-error-details": "API Error details",
|
|
@@ -206,7 +220,6 @@
|
|
|
206
220
|
"backups:vms-protection:active-protected": "In at least 1 active job & protected",
|
|
207
221
|
"backups:vms-protection:active-unprotected": "In at least 1 active job but unprotected",
|
|
208
222
|
"backups:vms-protection:no-active-job": "In no active job",
|
|
209
|
-
"backups:vms-protection:no-job": "In no job",
|
|
210
223
|
"backups:vms-protection:protected": "In at least 1 job & protected",
|
|
211
224
|
"backups:vms-protection:tooltip": "A VM is protected if it's in a backup job, with an enabled schedule, and the last run succeeded",
|
|
212
225
|
"backups:vms-protection:unprotected": "In at least 1 job but unprotected",
|
|
@@ -221,6 +234,7 @@
|
|
|
221
234
|
"build-number": "Build number",
|
|
222
235
|
"by": "By",
|
|
223
236
|
"bytes:gi": "GiB",
|
|
237
|
+
"bytes:kbs": "kB/s",
|
|
224
238
|
"bytes:ki": "KiB",
|
|
225
239
|
"bytes:mi": "MiB",
|
|
226
240
|
"cancel": "Cancel",
|
|
@@ -241,12 +255,14 @@
|
|
|
241
255
|
"community": "Community",
|
|
242
256
|
"community-name": "{name} community",
|
|
243
257
|
"compression": "Compression",
|
|
258
|
+
"compression-not-available": "Compression is not available for SRs from the same pool.",
|
|
244
259
|
"concurrency": "Concurrency",
|
|
245
260
|
"configuration": "Configuration",
|
|
246
261
|
"configure-for-protected": "To ensure your VMs protection, consider configuring a {backup-job}",
|
|
247
262
|
"configure-in-xo-5": "Configure in XO 5",
|
|
248
263
|
"confirm-cancel?": "Are you sure you want to cancel?",
|
|
249
264
|
"confirm-delete": "You're about to delete {0}",
|
|
265
|
+
"confirm-disconnect": "You're about to disconnect {0}",
|
|
250
266
|
"confirm-vm-revert": "Confirm VM revert",
|
|
251
267
|
"connect": "Connect",
|
|
252
268
|
"connected": "Connected",
|
|
@@ -283,6 +299,7 @@
|
|
|
283
299
|
"creating-new-network": "Creating new network",
|
|
284
300
|
"creating-new-traffic-rule": "Creating new traffic rule",
|
|
285
301
|
"creating-new-vdi": "Creating new VDI",
|
|
302
|
+
"creating-new-vif": "Creating new VIF",
|
|
286
303
|
"creation-date": "Creation date",
|
|
287
304
|
"cron-pattern": "Cron pattern",
|
|
288
305
|
"current": "Current",
|
|
@@ -307,6 +324,8 @@
|
|
|
307
324
|
"deploy-xoa-status:waiting": "Waiting for XOA to respond…",
|
|
308
325
|
"descending": "descending",
|
|
309
326
|
"description": "Description",
|
|
327
|
+
"destination-sr": "Destination SR",
|
|
328
|
+
"destination-sr-mandatory": "Destination SR is mandatory.",
|
|
310
329
|
"device": "Device",
|
|
311
330
|
"device-config": "Device config",
|
|
312
331
|
"dhcp": "DHCP",
|
|
@@ -333,7 +352,11 @@
|
|
|
333
352
|
"documentation-name": "{name} documentation",
|
|
334
353
|
"done": "Done",
|
|
335
354
|
"drop": "Drop",
|
|
355
|
+
"duplicate-vm:error-message": "An error occurred while duplicating the VM. Please review your configuration settings (name, storage repository, compression) and try again.",
|
|
356
|
+
"duplicating-vm": "Duplicating VM",
|
|
357
|
+
"duplication-method": "Duplication method",
|
|
336
358
|
"duration": "Duration",
|
|
359
|
+
"email": "Email",
|
|
337
360
|
"empty": "Empty",
|
|
338
361
|
"enabled": "Enabled",
|
|
339
362
|
"end-date": "End date",
|
|
@@ -353,6 +376,7 @@
|
|
|
353
376
|
"failed": "Failed",
|
|
354
377
|
"failure": "Failure",
|
|
355
378
|
"fast-clone": "Fast clone",
|
|
379
|
+
"fast-clone-available": "Fast clone is available only for halted VMs.",
|
|
356
380
|
"fetching-fresh-data": "Fetching fresh data",
|
|
357
381
|
"field:exceeds-max-characters": "Field value must be {max} characters or less.",
|
|
358
382
|
"file": "File",
|
|
@@ -370,6 +394,7 @@
|
|
|
370
394
|
"free-space": "Free space",
|
|
371
395
|
"free-space-on-sr": "Free space on SR",
|
|
372
396
|
"from-vm": "From VM",
|
|
397
|
+
"full-copy": "Full copy",
|
|
373
398
|
"fullscreen": "Fullscreen",
|
|
374
399
|
"gateway": "Gateway",
|
|
375
400
|
"general": "General",
|
|
@@ -379,6 +404,7 @@
|
|
|
379
404
|
"graphics-display": "Graphics & Display",
|
|
380
405
|
"groups": "Groups",
|
|
381
406
|
"guest-tools": "Guest tools",
|
|
407
|
+
"gzip": "GZIP",
|
|
382
408
|
"hardware": "Hardware",
|
|
383
409
|
"hardware-specifications": "Hardware specifications",
|
|
384
410
|
"heartbeat-storage-repository": "Heartbeat storage repository",
|
|
@@ -413,6 +439,9 @@
|
|
|
413
439
|
"interfaces": "Interfaces",
|
|
414
440
|
"interrupted": "Interrupted",
|
|
415
441
|
"invalid-field": "Invalid field",
|
|
442
|
+
"invalid-ip-addresses": "One or more invalid IP addresses",
|
|
443
|
+
"invalid-mac-address": "Invalid MAC address",
|
|
444
|
+
"invalid-rate-limit": "Rate limit cannot be negative",
|
|
416
445
|
"ip-address": "IP address",
|
|
417
446
|
"ip-address-info": "You can apply a rule to a single IP address or a subnet in CIDR format. Examples: 192.168.1.10, or 10.20.0.0/16",
|
|
418
447
|
"ip-address-invalid": "IP address format is invalid.",
|
|
@@ -455,13 +484,23 @@
|
|
|
455
484
|
"job:connect:in-progress": "Connect in progress…",
|
|
456
485
|
"job:create:in-progress": "Create in progress…",
|
|
457
486
|
"job:delete:in-progress": "Delete in progress…",
|
|
487
|
+
"job:disable:in-progress": "Disable in progress…",
|
|
458
488
|
"job:disconnect:in-progress": "Disconnect in progress…",
|
|
489
|
+
"job:enable:in-progress": "Enable in progress…",
|
|
490
|
+
"job:export:in-progress": "Export in progress…",
|
|
491
|
+
"job:host-disable:bad-power-state": "Host is not running",
|
|
492
|
+
"job:host-disable:missing-host": "Host is missing",
|
|
493
|
+
"job:host-enable:missing-host": "Host is missing",
|
|
494
|
+
"job:migrate:in-progress": "Migrate in progess…",
|
|
459
495
|
"job:network-delete:has-n-physical-pif-connected": "The network has one physical PIF connected | The network has {n} physical PIFs connected",
|
|
460
496
|
"job:network-delete:has-n-vif-attached": "The network has one VIF attached | The network has {n} VIFs attached",
|
|
461
497
|
"job:pbd-plug:missing-pbd": "No PBDs to connect",
|
|
462
498
|
"job:pbd-plug:pbd-connected": "One or several PBDs are already connected",
|
|
463
499
|
"job:pbd-unplug:missing-pbd": "No PBDs to disconnect",
|
|
464
500
|
"job:pbd-unplug:pbd-disconnected": "One or several PBDs are already disconnected",
|
|
501
|
+
"job:server-connect:missing-server": "No servers to connect",
|
|
502
|
+
"job:server-disconnect:missing-server": "No servers to disconnect",
|
|
503
|
+
"job:server-disconnect:server-disconnected": "One or several servers are already disconnected",
|
|
465
504
|
"job:snapshot-delete:missing-snapshot": "No snapshots to delete",
|
|
466
505
|
"job:sr-connect:missing-sr": "No SRs to connect",
|
|
467
506
|
"job:sr-delete:missing-sr": "No SRs to delete",
|
|
@@ -475,6 +514,12 @@
|
|
|
475
514
|
"job:vbd-disconnect:vbd-disconnected": "VBD is disconnected",
|
|
476
515
|
"job:vdi-delete:missing-vdi": "No VDIs to delete",
|
|
477
516
|
"job:vdi-delete:vbd-attached": "Cannot delete a VDI with VBD attached",
|
|
517
|
+
"job:vdi-detach:in-progress": "Detach in progress…",
|
|
518
|
+
"job:vdi-export:format-required": "VDI format export is required",
|
|
519
|
+
"job:vdi-export:missing-vdi": "No vdi to export",
|
|
520
|
+
"job:vdi-migrate:in-progress": "Migrate in progress…",
|
|
521
|
+
"job:vdi-migrate:missing-sr": "Destination SR is required",
|
|
522
|
+
"job:vdi-migrate:missing-vdi": "No VDI selected",
|
|
478
523
|
"job:vif-connect:missing-vif": "No VIFs to connect",
|
|
479
524
|
"job:vif-connect:vif-already-connected": "VIF is already connected",
|
|
480
525
|
"job:vif-delete:blocked-operation": "VIF deletion is blocked",
|
|
@@ -541,6 +586,7 @@
|
|
|
541
586
|
"language": "Language",
|
|
542
587
|
"language-preferences": "Language preferences",
|
|
543
588
|
"last": "Last",
|
|
589
|
+
"last-login": "Last login",
|
|
544
590
|
"last-n-backup-archives": "Last backup archive | Last {n} backup archives",
|
|
545
591
|
"last-n-backup-runs": "Last backup run | Last {n} backup runs",
|
|
546
592
|
"last-n-runs": "Last run | Last {n} runs",
|
|
@@ -592,10 +638,15 @@
|
|
|
592
638
|
"modal:action:vm-force-shutdown": "@:action:force-shutdown VM",
|
|
593
639
|
"modal:action:vm-reboot": "@:action:reboot VM",
|
|
594
640
|
"modal:action:vm-shutdown": "@:action:shutdown VM",
|
|
641
|
+
"modal:confirm-host-disable": "Are you sure you want to disable {host}?",
|
|
642
|
+
"modal:confirm-host-enable": "Are you sure you want to enable {host}?",
|
|
595
643
|
"modal:confirm-vm-force-reboot": "Confirm VM force reboot",
|
|
596
644
|
"modal:confirm-vm-force-shutdown": "Confirm VM force shutdown",
|
|
597
645
|
"modal:confirm-vm-reboot": "Confirm VM reboot",
|
|
598
646
|
"modal:confirm-vm-shutdown": "Confirm VM shutdown",
|
|
647
|
+
"modal:host-disable-message": "The host will be marked unavailable for starting or receiving new VMs. Already-running VMs are not affected.",
|
|
648
|
+
"modal:host-enable-message": "The host becomes available again for starting or receiving VMs.",
|
|
649
|
+
"modal:pool-disconnect-message": "The pool will no longer be manageable from XO. You can reconnect it later.",
|
|
599
650
|
"modal:vm-force-reboot-message": "This will immediately reboot the virtual machine without a clean shutdown. Data loss may occur and ongoing processes will be interrupted.",
|
|
600
651
|
"modal:vm-force-shutdown-message": "This will immediately power off the virtual machine without a clean shutdown. Data loss may occur and ongoing processes will be interrupted.",
|
|
601
652
|
"modal:vm-reboot-message": "Restarts the virtual machine gracefully by shutting it down and starting it again. Running processes will be closed properly.",
|
|
@@ -658,9 +709,18 @@
|
|
|
658
709
|
"new-vdi:add": "Add new VDI",
|
|
659
710
|
"new-vdi:error-message": "An error occurred while creating the VDI. Please review your configuration settings (name, storage repository, allocated space) and try again.",
|
|
660
711
|
"new-vif": "New VIF",
|
|
712
|
+
"new-vif:add": "Add new VIF",
|
|
713
|
+
"new-vif:error-message": "An error occurred while creating the VIF. Please review your configuration settings and try again.",
|
|
661
714
|
"new-vm": "New VM",
|
|
662
715
|
"new-vm:add": "Add a new VM",
|
|
663
716
|
"new-vm:description": "VM description",
|
|
717
|
+
"new-vm:ha-best-effort": "Best-effort",
|
|
718
|
+
"new-vm:ha-best-effort-description": "If the host fails, HA tries to restart the VM on another host, but only after all \"Restart\" VMs. Not guaranteed.",
|
|
719
|
+
"new-vm:ha-disabled": "Disabled",
|
|
720
|
+
"new-vm:ha-disabled-description": "HA never restarts this VM automatically.",
|
|
721
|
+
"new-vm:ha-pool-disabled": "HA is disabled on this pool. The value is saved but only takes effect once HA is enabled.",
|
|
722
|
+
"new-vm:ha-restart": "Restart",
|
|
723
|
+
"new-vm:ha-restart-description": "If the VM or its host fails, HA restarts it on another host. Guaranteed as long as the pool is not overcommitted.",
|
|
664
724
|
"new-vm:install-source": "Installation source",
|
|
665
725
|
"new-vm:name": "VM name",
|
|
666
726
|
"new-vm:network-config": "Network configuration is only compatible with {noCloudLink}.",
|
|
@@ -685,6 +745,7 @@
|
|
|
685
745
|
"no-custom-field-detected": "No custom fields detected",
|
|
686
746
|
"no-data": "No data",
|
|
687
747
|
"no-data-to-calculate": "No data to calculate",
|
|
748
|
+
"no-group-attached": "No group attached",
|
|
688
749
|
"no-host-attached": "No hosts attached",
|
|
689
750
|
"no-host-detected": "No hosts detected",
|
|
690
751
|
"no-job-vm": "This VM isn’t part of any running job.",
|
|
@@ -694,6 +755,7 @@
|
|
|
694
755
|
"no-pools-detected": "No pools detected",
|
|
695
756
|
"no-replicated-vm": "This VM isn’t being replicated. Configure a replication job to enable it.",
|
|
696
757
|
"no-result": "No results",
|
|
758
|
+
"no-role-applied": "No role applied",
|
|
697
759
|
"no-schedule-available": "No schedules available",
|
|
698
760
|
"no-selected-vm-can-be-exported": "No selected VM can be exported",
|
|
699
761
|
"no-selected-vm-can-be-migrated": "No selected VM can be migrated",
|
|
@@ -702,6 +764,7 @@
|
|
|
702
764
|
"no-storage-repository-detected": "No storage repositories detected",
|
|
703
765
|
"no-task": "No tasks",
|
|
704
766
|
"no-task-detected": "No tasks detected",
|
|
767
|
+
"no-user-detected": "No users detected",
|
|
705
768
|
"no-vdi-attached": "No VDIs attached",
|
|
706
769
|
"no-vdi-detected": "No VDIs detected",
|
|
707
770
|
"no-vif-detected": "No VIFs detected",
|
|
@@ -726,6 +789,7 @@
|
|
|
726
789
|
"operation:clean-reboot": "Rebooting",
|
|
727
790
|
"operation:clean-shutdown": "Shutting down",
|
|
728
791
|
"operation:destroy": "Deleting",
|
|
792
|
+
"operation:duplicate": "Duplicating",
|
|
729
793
|
"operation:force-reboot": "Force rebooting",
|
|
730
794
|
"operation:force-shutdown": "Force shutting down",
|
|
731
795
|
"operation:pause": "Pausing",
|
|
@@ -742,6 +806,7 @@
|
|
|
742
806
|
"other": "Other",
|
|
743
807
|
"other-properties": "Other properties",
|
|
744
808
|
"other-settings": "Other settings",
|
|
809
|
+
"ova": "OVA",
|
|
745
810
|
"page-not-found": "This page is not to be found…",
|
|
746
811
|
"page-please-wait": "Hold tight, astronaut! The page is getting ready to take off.{newline}We're just aligning the thrusters and calibrating the systems. It won't be long now, stay tuned!",
|
|
747
812
|
"pagination:all": "@:all",
|
|
@@ -804,6 +869,7 @@
|
|
|
804
869
|
"protocol": "Protocol",
|
|
805
870
|
"protocol:port": "@:{'protocol'}:@:{'port'}",
|
|
806
871
|
"provider-solutions": "{provider} solutions",
|
|
872
|
+
"providers": "Providers",
|
|
807
873
|
"provisioning": "Provisioning",
|
|
808
874
|
"proxy": "Proxy",
|
|
809
875
|
"proxy-url": "Proxy URL",
|
|
@@ -871,6 +937,7 @@
|
|
|
871
937
|
"rest-api": "REST API",
|
|
872
938
|
"retry": "Retry",
|
|
873
939
|
"roles": "Roles",
|
|
940
|
+
"roles-applied": "Roles applied",
|
|
874
941
|
"root-by-default": "\"root\" by default.",
|
|
875
942
|
"rule-type": "Rule type",
|
|
876
943
|
"run": "Run",
|
|
@@ -886,8 +953,9 @@
|
|
|
886
953
|
"see-details": "See details",
|
|
887
954
|
"select-compression": "Select a compression",
|
|
888
955
|
"select-destination-host": "Select a destination host",
|
|
956
|
+
"select-format": "Select format",
|
|
889
957
|
"select-host": "Select host",
|
|
890
|
-
"select-to-see-details": "
|
|
958
|
+
"select-to-see-details": "Click on {icon} to see details",
|
|
891
959
|
"selected-vms-in-execution": "Some selected VMs are running",
|
|
892
960
|
"self-signed-certificates": "Self-signed certificates",
|
|
893
961
|
"send-us-feedback": "Send us feedback",
|
|
@@ -928,6 +996,7 @@
|
|
|
928
996
|
"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.",
|
|
929
997
|
"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.",
|
|
930
998
|
"sr-disconnect-title": "You are about to disconnect 1 SR | You are about to disconnect {n} SRs",
|
|
999
|
+
"sr-required": "Storage repository is required.",
|
|
931
1000
|
"ssh-account": "SSH account",
|
|
932
1001
|
"ssh-key": "SSH key",
|
|
933
1002
|
"ssh-login": "SSH login",
|
|
@@ -1023,6 +1092,8 @@
|
|
|
1023
1092
|
"traffic-rule": "Traffic rule",
|
|
1024
1093
|
"traffic-rule-delete-warning": "This action is irreversible. The selected traffic rule will be permanently deleted.",
|
|
1025
1094
|
"traffic-rules": "Traffic rules",
|
|
1095
|
+
"traffic-rules:format-warning": "Configuration error: Traffic rules are not in the expected format. Please {check-doc} on how to migrate them.",
|
|
1096
|
+
"traffic-rules:format-warning:check-doc": "check the latest documentation",
|
|
1026
1097
|
"traffic-rules:info-message": "Traffic rules order is being implemented. Behaviour may be hazardous.",
|
|
1027
1098
|
"traffic-rules:no-traffic-rules-detected": "No traffic rules detected",
|
|
1028
1099
|
"transfer-size": "Transfer size",
|
|
@@ -1039,7 +1110,10 @@
|
|
|
1039
1110
|
"unable-to-create-new-network": "Unable to create new network",
|
|
1040
1111
|
"unable-to-create-new-traffic-rule": "Unable to create new traffic rule",
|
|
1041
1112
|
"unable-to-create-new-vdi": "Unable to create new VDI",
|
|
1113
|
+
"unable-to-create-new-vif": "Unable to create new VIF",
|
|
1042
1114
|
"unable-to-delete-network": "Unable to delete network",
|
|
1115
|
+
"unable-to-duplicate-vm": "Unable to duplicate VM",
|
|
1116
|
+
"unable-to-migrate-vdi": "Unable to migrate VDI on SR",
|
|
1043
1117
|
"unknown": "Unknown",
|
|
1044
1118
|
"unlocked": "Unlocked",
|
|
1045
1119
|
"unnamed": "Unnamed",
|
|
@@ -1053,6 +1127,7 @@
|
|
|
1053
1127
|
"used-for-backup": "Used for backup",
|
|
1054
1128
|
"used-space": "Used space",
|
|
1055
1129
|
"used-space-on-sr": "Used space on SR",
|
|
1130
|
+
"user": "User",
|
|
1056
1131
|
"user-config": "User config",
|
|
1057
1132
|
"user-management": "User management",
|
|
1058
1133
|
"username": "Username",
|
|
@@ -1073,6 +1148,7 @@
|
|
|
1073
1148
|
"vdi-in-use": "VDI in use",
|
|
1074
1149
|
"vdi-name": "VDI name",
|
|
1075
1150
|
"vdi-not-attached-to-vm": "No VM attached",
|
|
1151
|
+
"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.",
|
|
1076
1152
|
"vdi-snapshot-source": "VDI source",
|
|
1077
1153
|
"vdi-snpashot-time": "Snapshot date",
|
|
1078
1154
|
"vdi-throughput": "VDI throughput",
|
|
@@ -1103,6 +1179,8 @@
|
|
|
1103
1179
|
"vm-is-running": "The VM is running",
|
|
1104
1180
|
"vm-limit-topology": "VM limit topology",
|
|
1105
1181
|
"vm-management": "VM management",
|
|
1182
|
+
"vm-name": "VM name",
|
|
1183
|
+
"vm-name-required": "VM name is required.",
|
|
1106
1184
|
"vm-not-running": "VM not running",
|
|
1107
1185
|
"vm-off": "This virtual machine is powered off.",
|
|
1108
1186
|
"vm-protected-deletion": "This VM is currently protected against deletion.",
|
|
@@ -1154,8 +1232,11 @@
|
|
|
1154
1232
|
"xoa-deploy-retry": "Try again to deploy XOA",
|
|
1155
1233
|
"xoa-deploy-successful!": "XOA deployment successful!",
|
|
1156
1234
|
"xoa-ip": "XOA IP address",
|
|
1235
|
+
"xoa-manager": "XOA manager",
|
|
1157
1236
|
"xoa-password-confirm-different": "XOA password confirmation is different",
|
|
1158
1237
|
"xoa-ssh-account": "XOA SSH account",
|
|
1159
1238
|
"xoa-ssh-password-confirm-different": "SSH password confirmation is different",
|
|
1160
|
-
"
|
|
1239
|
+
"xva": "XVA",
|
|
1240
|
+
"you-are-currently-on": "You are currently on: {0}",
|
|
1241
|
+
"zstd": "ZSTD"
|
|
1161
1242
|
}
|
package/lib/locales/es.json
CHANGED
|
@@ -22,6 +22,10 @@
|
|
|
22
22
|
"action:close": "Cerrar",
|
|
23
23
|
"action:connect": "Conectar",
|
|
24
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",
|
|
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",
|
|
@@ -40,12 +44,19 @@
|
|
|
40
44
|
"action:delete-group": "Borrar grupo",
|
|
41
45
|
"action:delete-n-networks": "Eliminar 1 red | Eliminar {n} redes",
|
|
42
46
|
"action:delete-n-snapshots": "Eliminar 1 instantánea | Eliminar {n} instantáneas",
|
|
47
|
+
"action:delete-n-srs": "Eliminar 1 SR | Eliminar {n} SRs",
|
|
43
48
|
"action:delete-n-vdis": "Eliminar 1 VDI | Eliminar {n} VDIs",
|
|
44
49
|
"action:delete-n-vifs": "Eliminar 1 VIF | Eliminar {n} VIFs",
|
|
45
50
|
"action:delete-n-vms": "Eliminar 1 VM | Eliminar {n} VMs",
|
|
46
51
|
"action:deploy": "Desplegar",
|
|
47
52
|
"action:deploy-xoa": "Desplegar XOA",
|
|
53
|
+
"action:detach-n-vdis": "Desconectar 1 VDI | Desconectar {n} VDIs",
|
|
54
|
+
"action:detach-vdi": "Desconectar VDI",
|
|
48
55
|
"action:disconnect": "Desconectar",
|
|
56
|
+
"action:disconnect-n": "Desconectar {n}",
|
|
57
|
+
"action:disconnect-n-srs": "Desconectar 1 SR | Desconectar {n} SRs",
|
|
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",
|
|
@@ -192,7 +203,6 @@
|
|
|
192
203
|
"backups:vms-protection:active-protected": "Activo en al menos 1 tarea pero sin proteger",
|
|
193
204
|
"backups:vms-protection:active-unprotected": "Activo en al menos 1 tarea pero no está protegido",
|
|
194
205
|
"backups:vms-protection:no-active-job": "En ninguna tarea activa",
|
|
195
|
-
"backups:vms-protection:no-job": "No listada en ninguna tarea",
|
|
196
206
|
"backups:vms-protection:protected": "Listada en al menos una tarea y protegida",
|
|
197
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",
|
|
198
208
|
"backups:vms-protection:unprotected": "En al menos una tarea pero no está protegida",
|
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": "در حداقل ۱ کار و حفاظت نشده",
|