bfg-common 1.6.74 → 1.6.75
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/assets/localization/local_be.json +272 -11
- package/assets/localization/local_en.json +291 -29
- package/assets/localization/local_hy.json +274 -13
- package/assets/localization/local_kk.json +272 -11
- package/assets/localization/local_ru.json +286 -25
- package/assets/localization/local_zh.json +273 -12
- package/assets/scss/common/global.scss +11 -0
- package/assets/scss/common/normalize.scss +3 -0
- package/assets/scss/common/theme.scss +2 -2
- package/components/atoms/stack/StackBlock.vue +1 -1
- package/components/atoms/table/dataGrid/DataGridColumnSwitch.vue +2 -2
- package/components/atoms/tooltip/TooltipError.vue +3 -0
- package/components/common/adapterManager/AdapterManagerNew.vue +86 -0
- package/components/common/adapterManager/addAdapterModal/AddAdapterModalNew.vue +1 -1
- package/components/common/adapterManager/addAdapterWarningModal/AddAdapterWarningModalNew.vue +0 -1
- package/components/common/adapterManager/ui/actions/bar/Bar.vue +2 -0
- package/components/common/adapterManager/ui/actions/bar/BarNew.vue +3 -2
- package/components/common/adapterManager/ui/table/adapters/AdaptersNew.vue +1 -0
- package/components/common/certificate/CertificateInfo.vue +7 -1
- package/components/common/configure/physicalAdapters/PhysicalAdapters.vue +6 -0
- package/components/common/configure/physicalAdapters/PhysicalAdaptersNew.vue +219 -192
- package/components/common/configure/physicalAdapters/PhysicalAdaptersOld.vue +6 -4
- package/components/common/configure/physicalAdapters/buttons/Buttons.vue +1 -0
- package/components/common/configure/physicalAdapters/modals/edit/Edit.vue +26 -1
- package/components/common/configure/physicalAdapters/modals/edit/EditNew.vue +30 -1
- package/components/common/configure/physicalAdapters/modals/edit/lib/models/interfaces.ts +5 -0
- package/components/common/configure/physicalAdapters/modals/edit/lib/validations/validations.ts +19 -0
- package/components/common/configure/physicalAdapters/tableView/TableViewNew.vue +12 -1
- package/components/common/configure/physicalAdapters/tableView/lib/config/physicalAdaptersTableConfigNew.ts +21 -21
- package/components/common/configure/physicalAdapters/tableView/lib/config/settings.ts +12 -5
- package/components/common/configure/physicalAdapters/tableView/lib/models/interfaces.ts +4 -1
- package/components/common/diagramMain/Diagram.vue +169 -85
- package/components/common/diagramMain/DiagramMain.vue +40 -10
- package/components/common/diagramMain/header/Header.vue +49 -0
- package/components/common/diagramMain/header/HeaderNew.vue +155 -0
- package/components/common/diagramMain/{Header.vue → header/HeaderOld.vue} +78 -67
- package/components/common/diagramMain/modals/Modals.vue +4 -0
- package/components/common/diagramMain/modals/UnsavedChangesModal.vue +32 -0
- package/components/common/diagramMain/modals/editSettings/EditSettings.vue +104 -102
- package/components/common/diagramMain/modals/editSettings/EditSettingsNew.vue +285 -0
- package/components/common/diagramMain/modals/editSettings/EditSettingsOld.vue +254 -0
- package/components/common/diagramMain/modals/editSettings/confirmTeamingSettingsModal/ConfirmTeamingSettingsModal.vue +31 -0
- package/components/common/diagramMain/modals/editSettings/confirmTeamingSettingsModal/ConfirmTeamingSettingsModalNew.vue +82 -0
- package/components/common/diagramMain/modals/editSettings/{ConfirmTeamingSettingsModal.vue → confirmTeamingSettingsModal/ConfirmTeamingSettingsModalOld.vue} +2 -5
- package/components/common/diagramMain/modals/editSettings/lib/config/config.ts +15 -0
- package/components/common/diagramMain/modals/editSettings/lib/models/interfaces.ts +6 -0
- package/components/common/diagramMain/modals/editSettings/lib/utils/utils.ts +177 -0
- package/components/common/diagramMain/modals/editSettings/modal/EditSettingsModal.vue +137 -0
- package/components/common/diagramMain/modals/editSettings/modal/EditSettingsModalNew.vue +91 -0
- package/components/common/diagramMain/modals/editSettings/{EditSettingsModal.vue → modal/EditSettingsModalOld.vue} +12 -51
- package/components/common/diagramMain/modals/editSettings/tabs/networkProperties/NetworkProperties.vue +158 -0
- package/components/common/diagramMain/modals/editSettings/tabs/networkProperties/NetworkPropertiesNew.vue +262 -0
- package/components/common/diagramMain/modals/editSettings/tabs/{NetworkProperties.vue → networkProperties/NetworkPropertiesOld.vue} +12 -113
- package/components/common/diagramMain/modals/editSettings/tabs/port/ipvFourSettings/IpvFourSettings.vue +192 -0
- package/components/common/diagramMain/modals/editSettings/tabs/port/ipvFourSettings/IpvFourSettingsNew.vue +388 -0
- package/components/common/diagramMain/modals/editSettings/tabs/port/{IpvFourSettings.vue → ipvFourSettings/IpvFourSettingsOld.vue} +11 -152
- package/components/common/diagramMain/modals/editSettings/tabs/port/portProperties/PortProperties.vue +139 -0
- package/components/common/diagramMain/modals/editSettings/tabs/port/portProperties/PortPropertiesNew.vue +286 -0
- package/components/common/diagramMain/modals/editSettings/tabs/port/{PortProperties.vue → portProperties/PortPropertiesOld.vue} +12 -103
- package/components/common/diagramMain/modals/editSettings/tabs/security/Security.vue +209 -0
- package/components/common/diagramMain/modals/editSettings/tabs/security/SecurityNew.vue +233 -0
- package/components/common/diagramMain/modals/editSettings/tabs/{Security.vue → security/SecurityOld.vue} +25 -48
- package/components/common/diagramMain/modals/editSettings/tabs/switchProperties/SwitchProperties.vue +128 -0
- package/components/common/diagramMain/modals/editSettings/tabs/switchProperties/SwitchPropertiesNew.vue +235 -0
- package/components/common/diagramMain/modals/editSettings/tabs/{SwitchProperties.vue → switchProperties/SwitchPropertiesOld.vue} +12 -89
- package/components/common/diagramMain/modals/editSettings/tabs/teamingFailover/TeamingFailover.vue +99 -0
- package/components/common/diagramMain/modals/editSettings/tabs/teamingFailover/TeamingFailoverNew.vue +319 -0
- package/components/common/diagramMain/modals/editSettings/tabs/{TeamingFailover.vue → teamingFailover/TeamingFailoverOld.vue} +11 -48
- package/components/common/diagramMain/modals/editSettings/tabs/trafficShaping/TrafficShaping.vue +173 -0
- package/components/common/diagramMain/modals/editSettings/tabs/trafficShaping/TrafficShapingNew.vue +348 -0
- package/components/common/diagramMain/modals/editSettings/tabs/{TrafficShaping.vue → trafficShaping/TrafficShapingOld.vue} +12 -134
- package/components/common/diagramMain/modals/lib/config/diagramConfig.ts +43 -2
- package/components/common/diagramMain/modals/lib/config/index.ts +2 -1
- package/components/common/diagramMain/modals/lib/config/vmKernelAdapter.ts +1 -1
- package/components/common/diagramMain/modals/lib/utils/index.ts +34 -4
- package/components/common/diagramMain/modals/migrateVmkernelAdapter/MigrateVmkernelAdapter.vue +2 -2
- package/components/common/diagramMain/modals/migrateVmkernelAdapter/validations/common.ts +1 -1
- package/components/common/diagramMain/skeleton/Header.vue +31 -0
- package/components/common/diagramMain/skeleton/Switch.vue +75 -0
- package/components/common/layout/theHeader/ThemeSwitch.vue +1 -1
- package/components/common/layout/theHeader/modals/reconnect/New.vue +38 -30
- package/components/common/layout/theHeader/userMenu/modals/changePassword/New.vue +8 -9
- package/components/common/layout/theHeader/userMenu/modals/preferences/New.vue +4 -0
- package/components/common/layout/theHeader/userMenu/modals/preferences/Old.vue +9 -2
- package/components/common/layout/theHeader/userMenu/modals/preferences/changeLanguage/ChangeLanguage.vue +11 -7
- package/components/common/layout/theHeader/userMenu/modals/preferences/defaultConsole/DefaultConsole.vue +7 -1
- package/components/common/layout/theHeader/userMenu/modals/preferences/defaultConsole/lib/config/consoleOptions.ts +8 -5
- package/components/common/layout/theHeader/userMenu/modals/preferences/timeFormat/TimeFormat.vue +9 -5
- package/components/common/layout/theHeader/userMenu/modals/preferences/timeFormat/lib/config/formatOptions.ts +1 -1
- package/components/common/layout/theHeader/userMenu/modals/preferences/view/Old.vue +5 -9
- package/components/common/layout/theHeader/userMenu/modals/preferences/view/View.vue +9 -6
- package/components/common/mainNavigationPanel/MainNavigationPanelNew.vue +3 -1
- package/components/common/modals/Rename.vue +3 -1
- package/components/common/noDataProvided/NoDataProvidedNew.vue +1 -1
- package/components/common/pages/backups/modals/createBackup/datastores/tableView/new/lib/config/table.ts +4 -4
- package/components/common/pages/backups/modals/createBackup/datastores/tableView/old/lib/config/table.ts +4 -4
- package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/ChartOptionsModal.vue +184 -253
- package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/actions/ActionsNew.vue +1 -1
- package/components/common/pages/scheduledTasks/table/lib/models/enums.ts +9 -0
- package/components/common/pages/scheduledTasks/table/new/New.vue +12 -10
- package/components/common/pages/tasks/Tasks.vue +4 -1
- package/components/common/pages/tasks/table/Table.vue +25 -23
- package/components/common/readyToComplete/New.vue +1 -0
- package/components/common/split/vertical/New.vue +42 -8
- package/components/common/split/vertical/Old.vue +31 -2
- package/components/common/split/vertical/Vertical.vue +4 -0
- package/components/common/tools/Actions.vue +7 -3
- package/components/common/tools/lib/models/interfaces.ts +1 -0
- package/components/common/vm/actions/add/New.vue +21 -6
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/cdDvdDrive/media/Media.vue +14 -1
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/cdDvdDrive/media/New.vue +5 -0
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/cdDvdDrive/media/Old.vue +1 -0
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/cpu/New.vue +1 -0
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/reservation/New.vue +2 -0
- package/components/common/vm/actions/common/select/options/New.vue +14 -12
- package/components/common/vm/actions/common/select/options/Old.vue +16 -15
- package/components/common/vm/actions/common/select/storage/new/lib/config/table.ts +13 -15
- package/components/common/vm/actions/confirm/Confirm.vue +3 -0
- package/components/common/vm/actions/rename/Old.vue +1 -0
- package/components/common/vm/snapshots/DetailView.vue +6 -6
- package/components/common/wizards/datastore/add/New.vue +6 -0
- package/components/common/wizards/datastore/add/lib/config/steps.ts +1 -1
- package/components/common/wizards/datastore/add/steps/nameAndDevice/NameAndDeviceNew.vue +1 -1
- package/components/common/wizards/datastore/add/steps/nameAndDevice/advancedOptions/New.vue +1 -1
- package/components/common/wizards/network/add/Add.vue +13 -2
- package/components/common/wizards/network/add/AddNew.vue +22 -26
- package/components/common/wizards/network/add/lib/config/initialData.ts +6 -4
- package/components/common/wizards/network/add/lib/config/steps.ts +1 -1
- package/components/common/wizards/network/add/lib/models/interfaces.ts +1 -0
- package/components/common/wizards/network/add/lib/utils/utils.ts +1 -1
- package/components/common/wizards/network/add/steps/connectionSettings/ConnectionSettingsOld.vue +5 -1
- package/components/common/wizards/network/add/steps/ipFourSettings/IpFourSettingsNew.vue +2 -8
- package/components/common/wizards/network/add/steps/ipFourSettings/IpFourSettingsOld.vue +3 -0
- package/components/common/wizards/network/add/steps/portProperties/PortPropertiesNew.vue +2 -8
- package/components/common/wizards/network/add/steps/portProperties/PortPropertiesOld.vue +6 -2
- package/components/common/wizards/network/add/steps/selectTargetDevice/SelectTargetDeviceNew.vue +10 -3
- package/components/common/wizards/network/add/steps/selectTargetDevice/SelectTargetDeviceOld.vue +4 -0
- package/components/common/wizards/network/add/steps/selectTargetDevice/modals/new/SelectNetwork.vue +5 -1
- package/components/common/wizards/network/add/validations/common.ts +1 -1
- package/components/common/wizards/vm/migrate/New.vue +13 -3
- package/components/common/wizards/vm/migrate/lib/config/constructDataReady.ts +5 -0
- package/components/common/wizards/vm/migrate/lib/config/steps.ts +3 -2
- package/components/common/wizards/vm/migrate/steps/computeResource/New.vue +2 -1
- package/components/common/wizards/vm/migrate/steps/computeResource/tableView/new/New.vue +40 -21
- package/components/common/wizards/vm/migrate/steps/computeResource/tableView/new/lib/config/clusterTable.ts +340 -0
- package/components/common/wizards/vm/migrate/steps/computeResource/tableView/new/lib/config/hostTable.ts +44 -14
- package/components/common/wizards/vm/migrate/steps/computeResource/tableView/new/lib/models/enums.ts +4 -0
- package/components/common/wizards/vm/migrate/steps/priority/New.vue +7 -2
- package/components/common/wizards/vm/migrate/steps/selectStorage/New.vue +22 -7
- package/components/common/wizards/vm/migrate/steps/selectStorage/configure/batch/New.vue +6 -0
- package/components/common/wizards/vm/migrate/steps/selectStorage/configure/batch/table/new/New.vue +4 -1
- package/components/common/wizards/vm/migrate/steps/selectStorage/configure/batch/table/new/lib/config/datastoreTable.ts +12 -16
- package/components/common/wizards/vm/migrate/steps/selectStorage/configure/disk/table/new/New.vue +10 -5
- package/components/common/wizards/vm/migrate/steps/selectStorage/configure/disk/table/new/lib/config/diskTable.ts +16 -11
- package/components/common/wizards/vm/migrate/steps/selectStorage/configure/disk/table/old/lib/config/diskTable.ts +7 -1
- package/components/common/wizards/vm/migrate/steps/selectStorage/selectedPerDisk/New.vue +17 -10
- package/components/common/wizards/vm/migrate/steps/type/TypeNew.vue +1 -0
- package/components/common/wizards/vm/migrate/vmOrigin/New.vue +35 -15
- package/lib/models/store/tasks/enums.ts +3 -0
- package/lib/models/store/tasks/types.ts +7 -6
- package/package.json +2 -2
- package/plugins/directives.ts +3 -5
- package/public/spice-console/application/agent.js +18 -17
- package/store/tasks/actions.ts +26 -8
- package/store/tasks/mappers/recentTasks.ts +1 -0
|
@@ -42,8 +42,8 @@
|
|
|
42
42
|
"accessible": "Accessible",
|
|
43
43
|
"active-backup": "Use explicit failover order",
|
|
44
44
|
"activePolicy": "Active policy",
|
|
45
|
-
"actualSpeedDuplex": "Actual
|
|
46
|
-
"actualSpeed": "Actual
|
|
45
|
+
"actualSpeedDuplex": "Actual Speed, Duplex",
|
|
46
|
+
"actualSpeed": "Actual Speed",
|
|
47
47
|
"adapter": "Adapter",
|
|
48
48
|
"adapterStatus": "Adapter Status",
|
|
49
49
|
"adapterType": "Adapter Type",
|
|
@@ -141,7 +141,7 @@
|
|
|
141
141
|
"availableStorage": "Available Storage",
|
|
142
142
|
"average": "Average",
|
|
143
143
|
"averageBandwidth": "Average Bandwidth",
|
|
144
|
-
"averageBandwidthKbit": "Average
|
|
144
|
+
"averageBandwidthKbit": "Average Bandwidth (kbit/s)",
|
|
145
145
|
"averageBigInvalidError": "The average bandwidth must not be greater than 9007199254740991.",
|
|
146
146
|
"averageInvalidError": "The average bandwidth must be a positive integer number.",
|
|
147
147
|
"back": "back",
|
|
@@ -172,7 +172,7 @@
|
|
|
172
172
|
"burstSize": "Burst Size",
|
|
173
173
|
"burstSizeBigInvalidError": "The burst size must not be greater than 9007199254740991.",
|
|
174
174
|
"burstSizeInvalidError": "The burst size must be a positive integer number.",
|
|
175
|
-
"burstSizeKb": "Burst
|
|
175
|
+
"burstSizeKb": "Burst Size (KB)",
|
|
176
176
|
"bus": "Bus",
|
|
177
177
|
"busLocation": "Bus Location",
|
|
178
178
|
"cache": "Cache",
|
|
@@ -258,8 +258,8 @@
|
|
|
258
258
|
"configurationNotWorkingNormally": "Configuration is not working normally.",
|
|
259
259
|
"configureActiveDirectory": "Configure Active Directory over LADP/LDAPS connection to allow searching for users and groups.",
|
|
260
260
|
"configureContentLibrary": "Configure content library",
|
|
261
|
-
"configuredSpeedDuplex": "Configured
|
|
262
|
-
"configuredSpeed": "Configured
|
|
261
|
+
"configuredSpeedDuplex": "Configured Speed, Duplex",
|
|
262
|
+
"configuredSpeed": "Configured Speed",
|
|
263
263
|
"configuredType": "Configured Type",
|
|
264
264
|
"configureMainIdentityProvider": "Configure Main Identity Provider",
|
|
265
265
|
"configureSettings": "Configure settings",
|
|
@@ -331,7 +331,8 @@
|
|
|
331
331
|
"creationDate": "Creation date",
|
|
332
332
|
"currentDisplayLimited": "Current settings limit the display to no more than {0} entries.",
|
|
333
333
|
"currentEvcMode": "Current EVC Mode",
|
|
334
|
-
"
|
|
334
|
+
"current_evc_mode": "Current CPU Mode",
|
|
335
|
+
"currentPassword": "Current Password",
|
|
335
336
|
"currentSettings": "Current settings",
|
|
336
337
|
"custom": "Custom",
|
|
337
338
|
"customAttributes": "Custom Attributes",
|
|
@@ -371,6 +372,7 @@
|
|
|
371
372
|
"deleteClusterText": "Deleting a cluster also removes all the cluster's hosts and virtual machines from the inventory. If the cluster has been enabled with Workload Management, it will also remove namespaces and all the Kubernetes workloads.",
|
|
372
373
|
"deleteClusterText2": "Are you sure you want to delete the cluster “{0}”? This action will also remove all its hosts and virtual machines from the inventory. If Workload Management is enabled, all namespaces and Kubernetes workloads will also be removed.",
|
|
373
374
|
"deleteCustomAttribute": "Delete Custom Attribute",
|
|
375
|
+
"deleteCustomAttributes": "Delete Custom Attributes",
|
|
374
376
|
"deleteDatacenter": "Delete Datacenter",
|
|
375
377
|
"deleteDatacenterText": "Deleting a datacenter also deletes all the datacenter's alarms and removes all the datacenter's hosts and virtual machines from the inventory. Delete this datacenter?",
|
|
376
378
|
"deleteDatastore": "Delete Datastore",
|
|
@@ -583,11 +585,12 @@
|
|
|
583
585
|
"exposeHardwareAssistedVirtualizationGuestOs": "Expose hardware assisted virtualization to the guest OS",
|
|
584
586
|
"extent": "Extent 0",
|
|
585
587
|
"failback": "Failback",
|
|
586
|
-
"failoverOrder": "Failover
|
|
588
|
+
"failoverOrder": "Failover Order",
|
|
587
589
|
"fallbackNtpServers": "Fallback NTP servers",
|
|
588
590
|
"faultDomain": "Fault Domain",
|
|
589
591
|
"faults": "Faults",
|
|
590
592
|
"faultTolerance": "Fault Tolerance",
|
|
593
|
+
"fault_tolerance": "Fault Tolerance",
|
|
591
594
|
"faultToleranceLogging": "Fault Tolerance logging",
|
|
592
595
|
"february": "February",
|
|
593
596
|
"feedbackHelp": "Feedback Help",
|
|
@@ -745,6 +748,7 @@
|
|
|
745
748
|
"init": "Initialization",
|
|
746
749
|
"inputContainsInvalidCharacters": "The input contains invalid characters",
|
|
747
750
|
"inputDevices": "Input Devices",
|
|
751
|
+
"input_devices": "Input Devices",
|
|
748
752
|
"installDate": "Install Date",
|
|
749
753
|
"installed": "Installed",
|
|
750
754
|
"installedOn": "Installed on",
|
|
@@ -1085,14 +1089,14 @@
|
|
|
1085
1089
|
"notInstalled": "not installed",
|
|
1086
1090
|
"notRunning": "Not running",
|
|
1087
1091
|
"notScheduled": "Not scheduled",
|
|
1088
|
-
"notSupported": "Not
|
|
1092
|
+
"notSupported": "Not Supported",
|
|
1089
1093
|
"november": "November",
|
|
1090
1094
|
"noVmKernelNetworkAdapterSelectedForMigration": "No VMkernel network adapter selected for migration. Select a VMkernel network adapter from the list to proceed.",
|
|
1091
1095
|
"nsx": "NSX",
|
|
1092
1096
|
"nsxPortGroupId": "NSX Port Group ID",
|
|
1093
1097
|
"nTPServers": "NTP Servers",
|
|
1094
1098
|
"numberDisplays": "Number of Displays",
|
|
1095
|
-
"numberOfPorts": "Number of
|
|
1099
|
+
"numberOfPorts": "Number of Ports",
|
|
1096
1100
|
"numericCharacters": "numeric characters",
|
|
1097
1101
|
"nvidiaGridGpuProfile": "NVIDIA GRID vGPU Profile",
|
|
1098
1102
|
"nvmEOverRDMA": "NVMe over RDMA",
|
|
@@ -1159,7 +1163,7 @@
|
|
|
1159
1163
|
"pCIDevices": "PCI Devices",
|
|
1160
1164
|
"pCIPassthrough": "PCI passthrough",
|
|
1161
1165
|
"peakBandwidth": "Peak Bandwidth",
|
|
1162
|
-
"peakBandwidthKbit": "Peak
|
|
1166
|
+
"peakBandwidthKbit": "Peak Bandwidth (kbit/s)",
|
|
1163
1167
|
"peakBigInvalidError": "The peak bandwidth must not be greater than 9007199254740991.",
|
|
1164
1168
|
"peakInvalidError": "The peak bandwidth must be a positive integer number.",
|
|
1165
1169
|
"perenniallyReserved": "Perennially Reserved",
|
|
@@ -1172,6 +1176,7 @@
|
|
|
1172
1176
|
"persistent": "Persistent",
|
|
1173
1177
|
"persistentMemory": "Persistent Memory",
|
|
1174
1178
|
"physicalAdapters": "Physical Adapters",
|
|
1179
|
+
"physical_adapters": "Physical Adapters",
|
|
1175
1180
|
"physicalCpus": "physical CPUs",
|
|
1176
1181
|
"physicalLocation": "Physical Location",
|
|
1177
1182
|
"physicalNetworkAdapter": "Physical Network Adapter",
|
|
@@ -1535,6 +1540,7 @@
|
|
|
1535
1540
|
"sunday": "Sunday",
|
|
1536
1541
|
"support": "Support",
|
|
1537
1542
|
"supportedEvcModes": "Supported EVC Modes",
|
|
1543
|
+
"supported_evc_modes": "Supported CPU Modes",
|
|
1538
1544
|
"suspend": "Suspend",
|
|
1539
1545
|
"suspended": "Suspended",
|
|
1540
1546
|
"suspending": "Suspending",
|
|
@@ -1565,7 +1571,7 @@
|
|
|
1565
1571
|
"tcpConfiguration": "TCP/IP configuration",
|
|
1566
1572
|
"tcpIpStack": "TCP/IP Stack",
|
|
1567
1573
|
"tcpPorts": "TCP ports",
|
|
1568
|
-
"teamingAndFailover": "Teaming and
|
|
1574
|
+
"teamingAndFailover": "Teaming and Failover",
|
|
1569
1575
|
"technicalSupport": "Technical support",
|
|
1570
1576
|
"technology": "Technology",
|
|
1571
1577
|
"tellUsWhatYouEnjoyedSo": "Tell us what you enjoyed so that we can keep up the good work",
|
|
@@ -1617,7 +1623,7 @@
|
|
|
1617
1623
|
"totalVideoMemory": "Total video memory",
|
|
1618
1624
|
"totalVideoMemoryMustBetween": "Total video memory must be between {0} and {1}.",
|
|
1619
1625
|
"tpm": "TPM",
|
|
1620
|
-
"trafficShaping": "Traffic
|
|
1626
|
+
"trafficShaping": "Traffic Shaping",
|
|
1621
1627
|
"transport": "Transport",
|
|
1622
1628
|
"triggeredAlarms": "Triggered Alarms",
|
|
1623
1629
|
"tuesday": "Tuesday",
|
|
@@ -1717,6 +1723,7 @@
|
|
|
1717
1723
|
"virtualFlash": "Virtual Flash",
|
|
1718
1724
|
"virtualFlashHostSwapCache": "Virtual Flash Host Swap Cache",
|
|
1719
1725
|
"virtualFlashResource": "Virtual Flash Resource",
|
|
1726
|
+
"virtual_flash_resourcevirtual_flash_resource": "Virtual Flash Resource",
|
|
1720
1727
|
"virtualFlashResourceManagement": "Virtual Flash Resource Management",
|
|
1721
1728
|
"virtualFunctions": "Virtual Functions",
|
|
1722
1729
|
"virtualFunctionsMustBe": "Virtual functions must be between 1 and 16.",
|
|
@@ -1776,8 +1783,9 @@
|
|
|
1776
1783
|
"vmTemplates": "VM Templates",
|
|
1777
1784
|
"inodeVmTemplates": "InodeVm Templates",
|
|
1778
1785
|
"vmVersion": "VM version",
|
|
1786
|
+
"vm_version": "VM version",
|
|
1779
1787
|
"vMwareSharedVirtualGraphics": "{trademark} shared virtual graphics",
|
|
1780
|
-
"vSAN": "
|
|
1788
|
+
"vSAN": "SAN",
|
|
1781
1789
|
"vSphere_DRS": "Procurator DRS",
|
|
1782
1790
|
"vSphere_HA": "Procurator HA",
|
|
1783
1791
|
"vSphereBackupNFC": "NFC Procurator Backup",
|
|
@@ -1917,7 +1925,7 @@
|
|
|
1917
1925
|
"diskFormat": "Disk Format",
|
|
1918
1926
|
"replicationGroup": "Replication Group",
|
|
1919
1927
|
"allSelectedObjects": "All Selected Objects",
|
|
1920
|
-
"selectVirtualDiskFormat": "
|
|
1928
|
+
"selectVirtualDiskFormat": "Virtual disk format",
|
|
1921
1929
|
"migrateCompleteStepDesc": "Verify that the information is correct and click Finish to start the migration.",
|
|
1922
1930
|
"migrationType": "Migration Type",
|
|
1923
1931
|
"changeComputeResourceOriginalStorage": "Change compute resource. Leave VM on the original storage",
|
|
@@ -2372,6 +2380,7 @@
|
|
|
2372
2380
|
"allActive": "All active",
|
|
2373
2381
|
"text": "Text",
|
|
2374
2382
|
"vApp": "vApp",
|
|
2383
|
+
"vapp": "Apps",
|
|
2375
2384
|
"contentLibrary": "Content Library",
|
|
2376
2385
|
"libraryItem": "Library Item",
|
|
2377
2386
|
"removeTagDialog": "Are you sure you want to remove tag “{tagName}” from “{selectedItemName}”?",
|
|
@@ -2415,6 +2424,7 @@
|
|
|
2415
2424
|
"rowsPerPage": "Rows per page",
|
|
2416
2425
|
"unsavedChanges": "Unsaved Changes!",
|
|
2417
2426
|
"unsavedChangesDescription": "Are you sure you want to leave this page? Unsaved changes will be lost.",
|
|
2427
|
+
"unsavedChangesModalDescription": "Are you sure you want to close this window? Unsaved changes will be lost.",
|
|
2418
2428
|
"leave": "Leave",
|
|
2419
2429
|
"export": "Export",
|
|
2420
2430
|
"allRowsCount": "All rows ({0})",
|
|
@@ -2460,6 +2470,7 @@
|
|
|
2460
2470
|
"incompleteProcess": "Incomplete Process!",
|
|
2461
2471
|
"incompleteProcessMessage": "Are you sure you want to leave this page? Your progress will be lost, and you’ll need to start over.",
|
|
2462
2472
|
"notAvailable": "Not Available",
|
|
2473
|
+
"not_available": "Not Available",
|
|
2463
2474
|
"strict": "Strict",
|
|
2464
2475
|
"incorrectOrMissingValuesBelow": "There are incorrect or missing values below",
|
|
2465
2476
|
"vmtVersioningDesc": "Versioning information is only available for templates in a Published or Local Content Library. To add a template to an existing content library, select a VM and select \"Clone as Template to Library\".",
|
|
@@ -2583,9 +2594,9 @@
|
|
|
2583
2594
|
"backupStorageDirectory": "Backup Storage Directory",
|
|
2584
2595
|
"sphereServerSettings": "Sphere Server Settings",
|
|
2585
2596
|
"database": "Database",
|
|
2586
|
-
"eventCleanup": "Event
|
|
2587
|
-
"eventRetentionDays": "Event
|
|
2588
|
-
"editSphereGeneralSettings": "Edit Sphere
|
|
2597
|
+
"eventCleanup": "Event Cleanup",
|
|
2598
|
+
"eventRetentionDays": "Event Retention (Days)",
|
|
2599
|
+
"editSphereGeneralSettings": "Edit Sphere General Settings",
|
|
2589
2600
|
"eventRetentionDaysDecreaseAlertText": "Decreasing the retention days will not trigger an immediate cleanup. Events will be removed during the next scheduled cleanup (every 24 hours).",
|
|
2590
2601
|
"enterDatabaseSettingsDesc": "Enter database settings. Use tasks and events retention settings to limit the growth of the database.",
|
|
2591
2602
|
"lettersLengthError": "Enter no more than {0} letters.",
|
|
@@ -2614,7 +2625,48 @@
|
|
|
2614
2625
|
"weekSat": "Sat",
|
|
2615
2626
|
"weekSun": "Sun",
|
|
2616
2627
|
"raidConfiguration": "Raid Configuration",
|
|
2617
|
-
"enterValidNumber": "Enter a valid number."
|
|
2628
|
+
"enterValidNumber": "Enter a valid number.",
|
|
2629
|
+
"virtualmachines": "Virtual Machines",
|
|
2630
|
+
"total_vmotion_migrations": "Total VM migrations",
|
|
2631
|
+
"ip_addresses": "IP addresses",
|
|
2632
|
+
"url": "URL",
|
|
2633
|
+
"backup_count": "Backups count",
|
|
2634
|
+
"last_backup": "Last backup",
|
|
2635
|
+
"resource_pools": "Resource Pools",
|
|
2636
|
+
"cluster_service_health": "Cluster Service Health",
|
|
2637
|
+
"healthy": "Healthy",
|
|
2638
|
+
"evc_mode": "VM Compatibility",
|
|
2639
|
+
"cpu_cores": "CPU Cores",
|
|
2640
|
+
"cores_per_socket": "Cores per Socket",
|
|
2641
|
+
"datastore_clusters": "Datastore Clusters",
|
|
2642
|
+
"sphere_ha_state": "Sphere HA State",
|
|
2643
|
+
"ft_logging_nic": "FT Logging NIC",
|
|
2644
|
+
"not_configured": "Not configured",
|
|
2645
|
+
"vmotion_nic": "Migration Adapter",
|
|
2646
|
+
"evc_not_supported": "EVC not supported",
|
|
2647
|
+
"memory_hot_add": "Memory Hot Add",
|
|
2648
|
+
"vmci_device": "VMCI Device",
|
|
2649
|
+
"controllers": "Controllers",
|
|
2650
|
+
"scsi_adapters": "SCSI Adapters",
|
|
2651
|
+
"canceled": "Canceled",
|
|
2652
|
+
"retrying": "Retrying",
|
|
2653
|
+
"timeFormatDesc1": "Select time format",
|
|
2654
|
+
"languageDesc1": "Select display language",
|
|
2655
|
+
"remoteConsoleVmrc1": "Remote Console (VMRC)",
|
|
2656
|
+
"viewDesc1": "Select interface and visual preferences",
|
|
2657
|
+
"thisLdapConnectionNotSecured": "This LDAP connection is not secured. To secure this LDAP connection, upload an SSL certificate.",
|
|
2658
|
+
"ha": "HA",
|
|
2659
|
+
"not_configurable": "Not configurable",
|
|
2660
|
+
"no_label": "No label",
|
|
2661
|
+
"valid": "Valid",
|
|
2662
|
+
"empty_address": "Empty address",
|
|
2663
|
+
"empty_credentials": "Empty credentials",
|
|
2664
|
+
"connection_failed": "Connection failed",
|
|
2665
|
+
"noStorageSelected": "No storage selected",
|
|
2666
|
+
"noActiveAdaptersAssigned": "No Active Adapters Assigned",
|
|
2667
|
+
"noActiveAdaptersAssignedMessage1": "No active adapters are assigned in Teaming and Failover settings.",
|
|
2668
|
+
"noActiveAdaptersAssignedMessage2": "Click Save to proceed without resolving this issue, or Cancel to review your changes.",
|
|
2669
|
+
"action": "Action"
|
|
2618
2670
|
},
|
|
2619
2671
|
"auth": {
|
|
2620
2672
|
"welcomeTo": "Welcome to",
|
|
@@ -2644,7 +2696,8 @@
|
|
|
2644
2696
|
"recentTask": "Recent Tasks",
|
|
2645
2697
|
"taskName": "Task Name",
|
|
2646
2698
|
"moreTasks": "More Tasks",
|
|
2647
|
-
"vmUpdateSteps": "VM Update Steps"
|
|
2699
|
+
"vmUpdateSteps": "VM Update Steps",
|
|
2700
|
+
"waitingTime": "Waiting Time"
|
|
2648
2701
|
},
|
|
2649
2702
|
"layout": {
|
|
2650
2703
|
"alarms": "Alarms",
|
|
@@ -2882,7 +2935,11 @@
|
|
|
2882
2935
|
"moreOneDestinationSelected": "More than one destination selected.",
|
|
2883
2936
|
"selectedDestinationDifferentNetwork": "The selected destination is on a different network.",
|
|
2884
2937
|
"numberOfVirtualFunctions": "Number of virtual functions",
|
|
2885
|
-
"noSelectedAdaptersMessage": "Please make sure to select a physical network adapter to view its details."
|
|
2938
|
+
"noSelectedAdaptersMessage": "Please make sure to select a physical network adapter to view its details.",
|
|
2939
|
+
"vfNotNegativeMessage": "The number of virtual functions is invalid. Enter a number between 1 and 63.",
|
|
2940
|
+
"vfRequiredMessage": "Specify the number of virtual functions!",
|
|
2941
|
+
"noVirtualSwitchesTitle": "No virtual switches",
|
|
2942
|
+
"noVirtualSwitchesMessage": "Virtual switches will appear here once added."
|
|
2886
2943
|
},
|
|
2887
2944
|
"vmOverrides": {
|
|
2888
2945
|
"vmOverrides": "VM Overrides",
|
|
@@ -2974,7 +3031,28 @@
|
|
|
2974
3031
|
"fieldNotContainSpecialCharacters": "The field must not contain special characters",
|
|
2975
3032
|
"noObjectsFound": "No objects found",
|
|
2976
3033
|
"cpuS": "CPU(s)",
|
|
2977
|
-
"vmAutomation": "VM Automation"
|
|
3034
|
+
"vmAutomation": "VM Automation",
|
|
3035
|
+
"connect": "Connection",
|
|
3036
|
+
"image_profile": "Image Profile",
|
|
3037
|
+
"shares": "Shares",
|
|
3038
|
+
"reservation": "Reservation",
|
|
3039
|
+
"limit": "Limit",
|
|
3040
|
+
"capacity": "Capacity",
|
|
3041
|
+
"adapter_type": "Adapter Type",
|
|
3042
|
+
"mac_address": "MAC Address",
|
|
3043
|
+
"video_card": "Video Card",
|
|
3044
|
+
"total_video_memory": "Total Video Memory",
|
|
3045
|
+
"number_of_displays": "Number of Displays",
|
|
3046
|
+
"other_hardware": "Other Hardware",
|
|
3047
|
+
"template": "Templates",
|
|
3048
|
+
"drive_cdrom": "Drive CD-ROM",
|
|
3049
|
+
"drive_disk": "Drive Disk",
|
|
3050
|
+
"network_adapter": "Network Adapter",
|
|
3051
|
+
"week": "week",
|
|
3052
|
+
"days": "days",
|
|
3053
|
+
"hours": "hours",
|
|
3054
|
+
"minutes": "minutes",
|
|
3055
|
+
"datacenter": "Datacenter"
|
|
2978
3056
|
},
|
|
2979
3057
|
"contextMenu": {
|
|
2980
3058
|
"actionsMenuPower": "Power",
|
|
@@ -3453,12 +3531,12 @@
|
|
|
3453
3531
|
"consolidateSnapshots": "Consolidate Snapshots"
|
|
3454
3532
|
},
|
|
3455
3533
|
"importVms": {
|
|
3456
|
-
"selectSourceTooltipDesc": "
|
|
3534
|
+
"selectSourceTooltipDesc": "VMware user credentials must have Administrator privileges. Credentials for ESXi and vCenter Server are supported",
|
|
3457
3535
|
"selectNetworksSubtitle": "Select adapter types and networks in Procurator for the virtual machine migration.",
|
|
3458
3536
|
"reviewImportVmDetails": "Review the details before importing the VM."
|
|
3459
3537
|
},
|
|
3460
3538
|
"migrateVm": {
|
|
3461
|
-
"migrationStrategy": "Migration
|
|
3539
|
+
"migrationStrategy": "Migration Strategy",
|
|
3462
3540
|
"liveMigration": "Live Migration (No Downtime)",
|
|
3463
3541
|
"ramSuspendMigration": "RAM Suspend Migration",
|
|
3464
3542
|
"offlineMigration": "Offline Migration",
|
|
@@ -3466,7 +3544,8 @@
|
|
|
3466
3544
|
"ramSuspendMigrationDesc": "The VM is suspended, its RAM contents are saved and transferred to a new host. It is then resumed, continuing execution from the exact previous state.",
|
|
3467
3545
|
"offlineMigrationDesc": "The VM is completely powered off, then its state and data are transferred to a new host. The service remains unavailable during the transfer.",
|
|
3468
3546
|
"strategyMigrationErrorDesc": "Operation cannot be performed: the virtual machine is in an unsupported state. Allowed states are “Powered Off” (PowerOff) or “Powered On” (PowerOn). Please set the VM to one of these states and try again.",
|
|
3469
|
-
"changeComputeResourceStorageVirtualMachine": "Change the compute resource or storage of the virtual machine."
|
|
3547
|
+
"changeComputeResourceStorageVirtualMachine": "Change the compute resource or storage of the virtual machine.",
|
|
3548
|
+
"reviewDetailsBeforeVmMigrated": "Review the details before the virtual machine is migrated."
|
|
3470
3549
|
},
|
|
3471
3550
|
"storageAdapters": {
|
|
3472
3551
|
"none": "None",
|
|
@@ -3808,7 +3887,182 @@
|
|
|
3808
3887
|
"noPrivilegesAdded": "No privileges added. Please add some to view.",
|
|
3809
3888
|
"pleaseMakeSureSelectRoleViewDetails": "Please make sure to select a role to view its details.",
|
|
3810
3889
|
"noRolesCreatedYet": "No roles created yet. Please add a new role to get started.",
|
|
3811
|
-
"deleteRoleDesc": "Are you sure you want to delete the role “{0}”? This action cannot be undone."
|
|
3890
|
+
"deleteRoleDesc": "Are you sure you want to delete the role “{0}”? This action cannot be undone.",
|
|
3891
|
+
"showBackup": "Show Backup",
|
|
3892
|
+
"no_access": "No Access",
|
|
3893
|
+
"restrict_access": "Restrict Access",
|
|
3894
|
+
"read_only": "Read Only",
|
|
3895
|
+
"read_only_access": "Read Only Access",
|
|
3896
|
+
"administrator": "Administrator",
|
|
3897
|
+
"full_access_rights": "Full Access Rights",
|
|
3898
|
+
"rbac": "RBAC",
|
|
3899
|
+
"tasks": "Tasks",
|
|
3900
|
+
"event_console": "Event Console",
|
|
3901
|
+
"identity_providers": "Identity Providers",
|
|
3902
|
+
"metadata": "Metadata",
|
|
3903
|
+
"show_backups": "Show Backups",
|
|
3904
|
+
"show_events": "Show Events",
|
|
3905
|
+
"show_identity_providers": "Show Identity Providers",
|
|
3906
|
+
"show_cluster": "Show Cluster",
|
|
3907
|
+
"show_templates": "Show Templates",
|
|
3908
|
+
"show_network": "Show Network",
|
|
3909
|
+
"show_buckets": "Show Buckets",
|
|
3910
|
+
"show_rbac": "Show RBAC",
|
|
3911
|
+
"show_zone": "Show Zone",
|
|
3912
|
+
"show_ghydra": "Show Ghydra",
|
|
3913
|
+
"show_datacenter": "Show Datacenter",
|
|
3914
|
+
"show_tasks": "Show Tasks",
|
|
3915
|
+
"show_vm": "Show Vm",
|
|
3916
|
+
"show_snapshots": "Show Snapshots",
|
|
3917
|
+
"show_scheduled_task": "Show Scheduled Task",
|
|
3918
|
+
"show_datastore": "Show Datastore",
|
|
3919
|
+
"show_datastore_files": "Show Datastore Files",
|
|
3920
|
+
"show_host": "Show Host",
|
|
3921
|
+
"upload_file": "Upload File",
|
|
3922
|
+
"rename_item": "Rename Item",
|
|
3923
|
+
"delete_item": "Delete Item",
|
|
3924
|
+
"enter_maintenance_mode": "Enter Maintenance Mode",
|
|
3925
|
+
"move_datastore": "Move Datastore",
|
|
3926
|
+
"create_datastore": "Create Datastore",
|
|
3927
|
+
"remove_datastore": "Remove Datastore",
|
|
3928
|
+
"new_folder": "New Folder",
|
|
3929
|
+
"make_empty_file": "Make Empty File",
|
|
3930
|
+
"copy_item": "Copy Item",
|
|
3931
|
+
"move_item": "Move Item",
|
|
3932
|
+
"exit_maintenance_mode": "Exit Maintenance Mode",
|
|
3933
|
+
"erase_storage_devices": "Erase Storage Devices",
|
|
3934
|
+
"create_iscsi_adapter": "Create iSCSI Adapter",
|
|
3935
|
+
"connect_host_console": "Connect Host Console",
|
|
3936
|
+
"remove_host": "Remove Host",
|
|
3937
|
+
"move_host": "Move Host",
|
|
3938
|
+
"update_storage_devices": "Update Storage Devices",
|
|
3939
|
+
"update_iscsi_adapter": "Update iSCSI Adapter",
|
|
3940
|
+
"delete_iscsi_adapter": "Delete iSCSI Adapter",
|
|
3941
|
+
"update_storage_adapters": "Update Storage Adapters",
|
|
3942
|
+
"power_on_vm": "Power On Vm",
|
|
3943
|
+
"reset_vm": "Reset Vm",
|
|
3944
|
+
"delete_snapshot": "Delete Snapshot",
|
|
3945
|
+
"migrate_host": "Migrate Host",
|
|
3946
|
+
"create_vm": "Create Vm",
|
|
3947
|
+
"hard_stop_vm": "Hard Stop Vm",
|
|
3948
|
+
"clone_vm": "Clone Vm",
|
|
3949
|
+
"restore_backup": "Restore Backup",
|
|
3950
|
+
"power_off_vm": "Power Off Vm",
|
|
3951
|
+
"restart_guest": "Restart Guest",
|
|
3952
|
+
"unmount_guest_tools": "Unmount Guest Tools",
|
|
3953
|
+
"update_scheduled_task": "Update Scheduled Task",
|
|
3954
|
+
"create_backup": "Create Backup",
|
|
3955
|
+
"delete_backup": "Delete Backup",
|
|
3956
|
+
"register_vm": "Register Vm",
|
|
3957
|
+
"delete_all_snapshots": "Delete All Snapshots",
|
|
3958
|
+
"remove_from_disk": "Remove From Disk",
|
|
3959
|
+
"rename_vm": "Rename Vm",
|
|
3960
|
+
"convert_vm_to_template": "Convert Vm To Template",
|
|
3961
|
+
"delete_backups": "Delete Backups",
|
|
3962
|
+
"mount_guest_tools": "Mount Guest Tools",
|
|
3963
|
+
"revert_snapshot": "Revert Snapshot",
|
|
3964
|
+
"move_vm": "Move Vm",
|
|
3965
|
+
"migrate_datastore": "Migrate Datastore",
|
|
3966
|
+
"migrate_combined": "Migrate Combined",
|
|
3967
|
+
"import_esxi": "Import ESXi",
|
|
3968
|
+
"resume_vm": "Resume Vm",
|
|
3969
|
+
"delete_scheduled_task": "Delete Scheduled Task",
|
|
3970
|
+
"update_vm": "Update Vm",
|
|
3971
|
+
"shutdown_guest": "Shutdown Guest",
|
|
3972
|
+
"update_snapshot": "Update Snapshot",
|
|
3973
|
+
"remove_from_inventory": "Remove From Inventory",
|
|
3974
|
+
"connect_vm_console": "Connect Vm Console",
|
|
3975
|
+
"take_snapshot": "Take Snapshot",
|
|
3976
|
+
"suspend_vm": "Suspend Vm",
|
|
3977
|
+
"create_scheduled_task": "Create Scheduled Task",
|
|
3978
|
+
"show_notebook": "Show Notebook",
|
|
3979
|
+
"update_notebook": "Update Notebook",
|
|
3980
|
+
"show_custom_attributes": "Show Custom Attributes",
|
|
3981
|
+
"create_custom_attribute": "Create Custom Attribute",
|
|
3982
|
+
"update_custom_attribute": "Update Custom Attribute",
|
|
3983
|
+
"delete_custom_attribute": "Delete Custom Attribute",
|
|
3984
|
+
"update_retention_settings": "Update Retention Settings",
|
|
3985
|
+
"remove_identity_provider": "Remove Identity Provider",
|
|
3986
|
+
"set_default_identity_provider": "Set Default Identity Provider",
|
|
3987
|
+
"update_user": "Update User",
|
|
3988
|
+
"kick_user": "Kick User",
|
|
3989
|
+
"confirm_two_factor_setup": "Confirm Two-Factor Setup",
|
|
3990
|
+
"reset_user_two_factor": "Reset User Two-Factor",
|
|
3991
|
+
"create_identity_provider": "Create Identity Provider",
|
|
3992
|
+
"block_user": "Block User",
|
|
3993
|
+
"revoke_user_tokens": "Revoke User Tokens",
|
|
3994
|
+
"remove_user": "Remove User",
|
|
3995
|
+
"unblock_user": "Unblock User",
|
|
3996
|
+
"view_blocked_users": "View Blocked Users",
|
|
3997
|
+
"update_security_policies": "Update Security Policies",
|
|
3998
|
+
"create_user": "Create User",
|
|
3999
|
+
"kick_user_session": "Kick User Session",
|
|
4000
|
+
"change_user_password": "Change User Password",
|
|
4001
|
+
"disable_two_factor": "Disable Two-Factor",
|
|
4002
|
+
"create_group": "Create Group",
|
|
4003
|
+
"remove_role": "Remove Role",
|
|
4004
|
+
"update_group": "Update Group",
|
|
4005
|
+
"create_role": "Create Role",
|
|
4006
|
+
"create_global_permission": "Create Global Permission",
|
|
4007
|
+
"remove_global_permission": "Remove Global Permission",
|
|
4008
|
+
"update_object_permission": "Update Object Permission",
|
|
4009
|
+
"clone_role": "Clone Role",
|
|
4010
|
+
"update_global_permission": "Update Global Permission",
|
|
4011
|
+
"create_object_permission": "Create Object Permission",
|
|
4012
|
+
"remove_object_permission": "Remove Object Permission",
|
|
4013
|
+
"remove_group": "Remove Group",
|
|
4014
|
+
"remove_group_member": "Remove Group Member",
|
|
4015
|
+
"update_role": "Update Role",
|
|
4016
|
+
"remove_ghydra_member": "Remove Ghydra Member",
|
|
4017
|
+
"rename_folder": "Rename Folder",
|
|
4018
|
+
"move_folder": "Move Folder",
|
|
4019
|
+
"add_ghydra_member": "Add Ghydra Member",
|
|
4020
|
+
"change_ghydra_leader": "Change Ghydra Leader",
|
|
4021
|
+
"set_ghydra_standalone": "Set Ghydra Standalone",
|
|
4022
|
+
"create_zone": "Create Zone",
|
|
4023
|
+
"rename_zone": "Rename Zone",
|
|
4024
|
+
"remove_zone": "Remove Zone",
|
|
4025
|
+
"delete_folder": "Delete Folder",
|
|
4026
|
+
"init_ghydra": "Init Ghydra",
|
|
4027
|
+
|
|
4028
|
+
"create_cluster": "Create Cluster",
|
|
4029
|
+
"remove_cluster": "Remove Cluster",
|
|
4030
|
+
"rename_cluster": "Rename Cluster",
|
|
4031
|
+
"add_hosts_to_cluster": "Add Hosts To Cluster",
|
|
4032
|
+
"update_drs_settings": "Update DRS Settings",
|
|
4033
|
+
"schedule_update_drs": "Schedule Update DRS",
|
|
4034
|
+
"move_cluster": "Move Cluster",
|
|
4035
|
+
"update_ha_settings": "Update HA Settings",
|
|
4036
|
+
"delete_template_from_inventory": "Delete Template From Inventory",
|
|
4037
|
+
"delete_template_from_disk": "Delete Template From Disk",
|
|
4038
|
+
"rename_template": "Rename Template",
|
|
4039
|
+
"move_template": "Move Template",
|
|
4040
|
+
"deploy_vm_from_template": "Deploy Vm From Template",
|
|
4041
|
+
"convert_template_to_vm": "Convert Template To Vm",
|
|
4042
|
+
"create_switch": "Create Switch",
|
|
4043
|
+
"update_info_sysx": "Update Info Sysx",
|
|
4044
|
+
"remove_port_group": "Remove Port Group",
|
|
4045
|
+
"update_sysx": "Update Sysx",
|
|
4046
|
+
"move_network": "Move Network",
|
|
4047
|
+
"create_port_group": "Create Port Group",
|
|
4048
|
+
"create_sysx": "Create Sysx",
|
|
4049
|
+
"remove_switch": "Remove Switch",
|
|
4050
|
+
"remove_sysx": "Remove Sysx",
|
|
4051
|
+
"update_port_group": "Update Port Group",
|
|
4052
|
+
"update_switch": "Update Switch",
|
|
4053
|
+
"create_datacenter": "Create Datacenter",
|
|
4054
|
+
"rename_datacenter": "Rename Datacenter",
|
|
4055
|
+
"move_datacenter": "Move Datacenter",
|
|
4056
|
+
"remove_datacenter": "Remove Datacenter",
|
|
4057
|
+
"add_host_to_datacenter": "Add Host To Datacenter",
|
|
4058
|
+
"move_backup_storage": "Move Backup Storage",
|
|
4059
|
+
"create_backup_storage": "Create Backup Storage",
|
|
4060
|
+
"delete_backup_storage": "Delete Backup Storage",
|
|
4061
|
+
"backup_enter_maintenance_mode": "Backup Enter Maintenance Mode",
|
|
4062
|
+
"backup_exit_maintenance_mode": "Backup Exit Maintenance Mode",
|
|
4063
|
+
"datacenters": "Datacenters",
|
|
4064
|
+
"backup": "Backup",
|
|
4065
|
+
"templates": "Templates"
|
|
3812
4066
|
},
|
|
3813
4067
|
"backup": {
|
|
3814
4068
|
"selectName": "Select a Name",
|
|
@@ -3902,7 +4156,7 @@
|
|
|
3902
4156
|
"notAvailable": "not available",
|
|
3903
4157
|
"available": "available",
|
|
3904
4158
|
"sphereHaIs": "Sphere HA is {0}",
|
|
3905
|
-
"runtimeInformationSphereHa": "Runtime information for
|
|
4159
|
+
"runtimeInformationSphereHa": "Runtime information for Sphere HA is reported under",
|
|
3906
4160
|
"sphereHaMonitoring": "Sphere HA Monitoring",
|
|
3907
4161
|
"proactiveHaIs": "Proactive HA is {0}",
|
|
3908
4162
|
"failureConditionsAndResponses": "Failure conditions and responses",
|
|
@@ -4057,6 +4311,10 @@
|
|
|
4057
4311
|
"selectedItems": "Selected items",
|
|
4058
4312
|
"deleting": "Deleting...",
|
|
4059
4313
|
"folders": "Folders",
|
|
4314
|
+
"cancelUploadDescription": "Are you sure you want to cancel the upload for the file “{0}”? Your progress will be lost.",
|
|
4315
|
+
"incorrectFileSelected": "Incorrect File Selected",
|
|
4316
|
+
"incorrectFileSelectedDescription": "The selected file does not match the original. Please re-select the same file to continue the upload.",
|
|
4317
|
+
"reSelect": "Re-select",
|
|
4060
4318
|
"nameContainsInvalidCharacters": "Folder name must be between 1 and 64 characters and cannot contain spaces, '/', '@', '#', control characters, or be '.' / '..'"
|
|
4061
4319
|
},
|
|
4062
4320
|
"myPreferences": {
|
|
@@ -4196,9 +4454,13 @@
|
|
|
4196
4454
|
"logs": {
|
|
4197
4455
|
"logs": "Logs",
|
|
4198
4456
|
"log": "Log",
|
|
4199
|
-
"
|
|
4457
|
+
"size": "Size",
|
|
4200
4458
|
"entries": "{0} / {1} entries",
|
|
4201
4459
|
"filteredBy": "Filtered by:",
|
|
4202
|
-
"noEntriesMatch": "No log entries match your filters"
|
|
4460
|
+
"noEntriesMatch": "No log entries match your filters",
|
|
4461
|
+
"loading": "Loading…",
|
|
4462
|
+
"more": "More",
|
|
4463
|
+
"generate": "Generate",
|
|
4464
|
+
"archiveDownloaded": "Archive is being downloaded"
|
|
4203
4465
|
}
|
|
4204
4466
|
}
|