bfg-common 1.6.95 → 1.6.97
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/.idea/inspectionProfiles/Project_Default.xml +3 -1
- package/assets/img/icons/icons-sprite-dark-5.svg +15 -2
- package/assets/img/icons/icons-sprite-light-5.svg +18 -5
- package/assets/localization/local_be.json +667 -51
- package/assets/localization/local_en.json +690 -73
- package/assets/localization/local_hy.json +670 -54
- package/assets/localization/local_kk.json +668 -52
- package/assets/localization/local_ru.json +704 -88
- package/assets/localization/local_zh.json +667 -51
- package/assets/scss/clarity/local_ar.json +12 -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/dropdown/dropdown/Dropdown.vue +10 -8
- package/components/atoms/dropdown/dropdown/lib/models/interfaces.ts +1 -0
- package/components/atoms/list/dragDropList/DragDropList.vue +14 -10
- package/components/atoms/stack/StackBlock.vue +1 -1
- package/components/atoms/table/dataGrid/DataGrid.vue +4 -0
- package/components/atoms/table/dataGrid/DataGridColumnSwitch.vue +2 -2
- package/components/atoms/tooltip/TooltipError.vue +3 -0
- package/components/common/adapterManager/AdapterManagerNew.vue +128 -6
- package/components/common/adapterManager/addAdapterModal/AddAdapterModalNew.vue +64 -31
- package/components/common/adapterManager/addAdapterWarningModal/AddAdapterWarningModalNew.vue +3 -4
- 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/actions/moveDownAdapterButton/MoveDownAdapterButtonNew.vue +1 -0
- package/components/common/adapterManager/ui/actions/moveUpAdapterButton/MoveUpAdapterButtonNew.vue +1 -0
- package/components/common/adapterManager/ui/noSelectedAdapter/NoSelectedAdapterNew.vue +10 -4
- package/components/common/adapterManager/ui/secondTitle/SecondTitleNew.vue +16 -1
- package/components/common/adapterManager/ui/table/TableNew.vue +3 -2
- package/components/common/adapterManager/ui/table/adapters/AdaptersNew.vue +70 -36
- package/components/common/adapterManager/ui/table/header/HeaderNew.vue +5 -1
- package/components/common/certificate/Certificate.vue +16 -6
- package/components/common/certificate/Info/Info.vue +61 -0
- package/components/common/certificate/{CertificateInfo.vue → Info/Old.vue} +6 -28
- package/components/common/certificate/Info/new/New.vue +285 -0
- package/components/common/certificate/Info/new/lib/config/index.ts +59 -0
- package/components/common/certificate/Info/new/lib/models/interfaces.ts +3 -0
- package/components/common/certificate/Info/new/lib/utils/index.ts +10 -0
- package/components/common/certificate/Old.vue +27 -0
- package/components/common/certificate/new/New.vue +30 -0
- package/components/common/certificate/new/Skeleton.vue +155 -0
- package/components/common/certificate/tools/New.vue +48 -0
- package/components/common/certificate/tools/Old.vue +39 -0
- package/components/common/certificate/{Tools.vue → tools/Tools.vue} +18 -23
- package/components/common/certificate/tools/lib/config/tabsPannel.ts +20 -0
- package/components/common/configure/physicalAdapters/PhysicalAdapters.vue +190 -0
- package/components/common/configure/physicalAdapters/PhysicalAdaptersNew.vue +392 -0
- package/components/common/configure/physicalAdapters/PhysicalAdaptersOld.vue +307 -0
- package/components/common/configure/physicalAdapters/buttons/Buttons.vue +106 -0
- package/components/common/configure/physicalAdapters/emptyBlock/EmptyBlock.vue +17 -0
- package/components/common/configure/physicalAdapters/emptyBlock/EmptyBlockNew.vue +37 -0
- package/components/common/configure/physicalAdapters/emptyBlock/EmptyBlockOld.vue +26 -0
- package/components/common/configure/physicalAdapters/modals/edit/Edit.vue +124 -0
- package/components/common/configure/physicalAdapters/modals/edit/EditNew.vue +232 -0
- package/components/common/configure/physicalAdapters/modals/edit/EditOld.vue +170 -0
- package/components/common/configure/physicalAdapters/modals/edit/lib/config/config.ts +59 -0
- package/components/common/configure/physicalAdapters/modals/edit/lib/models/interfaces.ts +17 -0
- package/components/common/configure/physicalAdapters/modals/edit/lib/validations/validations.ts +19 -0
- package/components/common/configure/physicalAdapters/tableView/TableView.vue +43 -0
- package/components/common/configure/physicalAdapters/tableView/TableViewNew.vue +345 -0
- package/components/common/configure/physicalAdapters/tableView/TableViewOld.vue +334 -0
- package/components/common/configure/physicalAdapters/tableView/lib/config/physicalAdaptersTableConfig.ts +177 -0
- package/components/common/configure/physicalAdapters/tableView/lib/config/physicalAdaptersTableConfigNew.ts +191 -0
- package/components/common/configure/physicalAdapters/tableView/lib/config/settings.ts +129 -0
- package/components/common/configure/physicalAdapters/tableView/lib/config/tableKeys.ts +14 -0
- package/components/common/configure/physicalAdapters/tableView/lib/models/interfaces.ts +33 -0
- package/components/common/configure/physicalAdapters/tableView/lib/models/types.ts +11 -0
- package/components/common/configure/physicalAdapters/tableView/mappers/mappers.ts +43 -0
- package/components/common/context/recursion/RecursionNew.vue +1 -2
- package/components/common/context/recursion/RecursionOld.vue +2 -2
- 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 +5 -5
- 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 -110
- 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/adapterModal.ts +9 -9
- 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/networkModal.ts +15 -15
- package/components/common/diagramMain/modals/lib/config/portModal.ts +12 -12
- package/components/common/diagramMain/modals/lib/config/vCenterModal.ts +2 -2
- 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/managePhysicalAdapters/ManagePhysicalAdapters.vue +164 -0
- package/components/common/diagramMain/modals/managePhysicalAdapters/ManagePhysicalAdaptersNew.vue +306 -0
- package/components/common/diagramMain/modals/{ManagePhysicalAdaptersModal.vue → managePhysicalAdapters/ManagePhysicalAdaptersOld.vue} +33 -119
- package/components/common/diagramMain/modals/migrateVmkernelAdapter/MigrateVmkernelAdapter.vue +2 -2
- package/components/common/diagramMain/modals/migrateVmkernelAdapter/steps/ConnectionSettings.vue +3 -2
- package/components/common/diagramMain/modals/migrateVmkernelAdapter/validations/common.ts +8 -3
- package/components/common/diagramMain/modals/migrateVmkernelAdapter/validations/connectionSettings.ts +2 -2
- package/components/common/diagramMain/modals/remove/RemoveModalNew.vue +67 -16
- package/components/common/diagramMain/modals/viewSettings/info/InfoNew.vue +17 -0
- package/components/common/diagramMain/modals/viewSettings/viewSettings/ViewSettings.vue +3 -0
- package/components/common/diagramMain/modals/viewSettings/viewSettings/ViewSettingsNew.vue +66 -20
- package/components/common/diagramMain/modals/viewSettings/viewSettingsModal/ViewSettingsModalNew.vue +8 -0
- package/components/common/diagramMain/skeleton/Header.vue +31 -0
- package/components/common/diagramMain/skeleton/Switch.vue +75 -0
- package/components/common/layout/theHeader/Old.vue +1 -5
- 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/ChangePassword.vue +16 -10
- package/components/common/layout/theHeader/userMenu/modals/changePassword/New.vue +8 -9
- package/components/common/layout/theHeader/userMenu/modals/preferences/New.vue +7 -0
- package/components/common/layout/theHeader/userMenu/modals/preferences/Old.vue +10 -2
- package/components/common/layout/theHeader/userMenu/modals/preferences/changeLanguage/ChangeLanguage.vue +12 -8
- 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/security/Security.vue +48 -28
- 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/New.vue +20 -8
- package/components/common/layout/theHeader/userMenu/modals/preferences/view/Old.vue +11 -11
- package/components/common/layout/theHeader/userMenu/modals/preferences/view/View.vue +12 -6
- package/components/common/mainNavigationPanel/MainNavigationPanelNew.vue +3 -1
- package/components/common/modals/Rename.vue +3 -1
- package/components/common/modals/newFolder/new/Location.vue +21 -1
- package/components/common/monitor/advanced/Advanced.vue +8 -5
- package/components/common/monitor/advanced/AdvancedNew.vue +4 -2
- package/components/common/monitor/advanced/AdvancedOld.vue +8 -3
- package/components/common/monitor/advanced/table/lib/models/interfaces.ts +1 -0
- package/components/common/monitor/advanced/table/lib/models/types.ts +1 -4
- package/components/common/monitor/advanced/table/tableNew/TableNew.vue +1 -0
- package/components/common/monitor/advanced/table/tableNew/lib/config/options.ts +8 -38
- package/components/common/monitor/advanced/table/tableNew/lib/utils/constructBody.ts +5 -7
- package/components/common/monitor/advanced/table/tableOld/lib/config/performanceDatatable.ts +27 -31
- package/components/common/monitor/advanced/tools/Tools.vue +17 -13
- package/components/common/monitor/advanced/tools/ToolsNew.vue +4 -2
- package/components/common/monitor/advanced/tools/ToolsOld.vue +4 -2
- package/components/common/monitor/advanced/tools/chartOptionsModal/ChartOptionsModal.vue +38 -18
- package/components/common/monitor/advanced/tools/chartOptionsModal/ChartOptionsModalNew.vue +99 -80
- package/components/common/monitor/advanced/tools/chartOptionsModal/ChartOptionsModalOld.vue +9 -2
- package/components/common/monitor/advanced/tools/chartOptionsModal/actions/ActionsOld.vue +1 -1
- package/components/common/monitor/advanced/tools/chartOptionsModal/actions/lib/utils/optionsActions.ts +2 -2
- package/components/common/monitor/advanced/tools/chartOptionsModal/counters/Counters.vue +13 -3
- package/components/common/monitor/advanced/tools/chartOptionsModal/counters/CountersNew.vue +22 -4
- package/components/common/monitor/advanced/tools/chartOptionsModal/counters/CountersOld.vue +9 -2
- package/components/common/monitor/advanced/tools/chartOptionsModal/counters/table/Table.vue +7 -3
- package/components/common/monitor/advanced/tools/chartOptionsModal/counters/table/lib/config/utils.ts +1901 -493
- package/components/common/monitor/advanced/tools/chartOptionsModal/counters/table/lib/models/interfaces.ts +5 -0
- package/components/common/monitor/advanced/tools/chartOptionsModal/counters/table/tableNew/TableNew.vue +9 -0
- package/components/common/monitor/advanced/tools/chartOptionsModal/counters/table/tableOld/lib/config/tableConfig.ts +4 -4
- package/components/common/monitor/advanced/tools/chartOptionsModal/counters/timespan/Timespan.vue +3 -3
- package/components/common/monitor/advanced/tools/chartOptionsModal/counters/timespan/TimespanNew.vue +14 -2
- package/components/common/monitor/advanced/tools/chartOptionsModal/counters/timespan/TimespanOld.vue +2 -2
- package/components/common/monitor/advanced/tools/chartOptionsModal/counters/timespan/object/Object.vue +22 -21
- package/components/common/monitor/advanced/tools/chartOptionsModal/lib/config/index.ts +2 -0
- package/components/common/monitor/advanced/tools/chartOptionsModal/lib/utils/checkSubmit.ts +11 -4
- package/components/common/monitor/advanced/tools/chartOptionsModal/metrics/MetricsNew.vue +2 -0
- package/components/common/monitor/advanced/tools/chartOptionsModal/metrics/lib/config/optionsMetrics.ts +34 -1
- package/components/common/monitor/advanced/tools/lib/config/advancedToolbar.ts +80 -11
- package/components/common/monitor/lib/utils/local_be.json +714 -0
- package/components/common/monitor/lib/utils/local_en.json +714 -0
- package/components/common/monitor/lib/utils/local_hy.json +714 -0
- package/components/common/monitor/lib/utils/local_kk.json +714 -0
- package/components/common/monitor/lib/utils/local_ru.json +714 -0
- package/components/common/monitor/lib/utils/local_zh.json +714 -0
- package/components/common/monitor/lib/utils/localization.ts +43 -0
- package/components/common/monitor/overview/filters/lib/config/filterOptions.ts +3 -1
- package/components/common/monitor/utilization/Old.vue +120 -0
- package/components/common/monitor/utilization/Utilization.vue +65 -0
- package/components/common/monitor/utilization/infoBlock/InfoBlock.vue +146 -0
- package/components/common/monitor/utilization/infoBlock/New.vue +185 -0
- package/components/common/monitor/utilization/infoBlock/Old.vue +190 -0
- package/components/common/monitor/utilization/infoBlock/progressBar/New.vue +64 -0
- package/components/common/monitor/utilization/infoBlock/progressBar/Old.vue +65 -0
- package/components/common/monitor/utilization/infoBlock/progressBar/ProgressBar.vue +84 -0
- package/components/common/monitor/utilization/infoBlock/progressBar/lib/models/interfaces.ts +10 -0
- package/components/common/monitor/utilization/lib/models/interfaces.ts +27 -0
- package/components/common/monitor/utilization/lib/models/types.ts +1 -0
- package/components/common/monitor/utilization/lib/utils/index.ts +112 -0
- package/components/common/monitor/utilization/new/New.vue +195 -0
- package/components/common/monitor/utilization/new/Portlet.vue +42 -0
- package/components/common/monitor/utilization/new/Skeleton.vue +120 -0
- package/components/common/monitor/utilization/new/lib/utils/newPortlet.ts +7 -0
- package/components/common/noDataProvided/NoDataProvided.vue +17 -0
- package/components/common/noDataProvided/NoDataProvidedNew.vue +66 -0
- package/components/common/noDataProvided/NoDataProvidedOld.vue +18 -0
- package/components/common/pages/auth/TheFooter.vue +9 -0
- package/components/common/pages/backups/lib/models/interfaces.ts +1 -0
- package/components/common/pages/backups/modals/Modals.vue +1 -0
- package/components/common/pages/backups/modals/createBackup/New.vue +4 -0
- package/components/common/pages/backups/modals/createBackup/Old.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/backups/modals/createBackup/disks/tableView/new/TableView.vue +0 -1
- package/components/common/pages/backups/modals/createBackup/disks/tableView/new/lib/config/table.ts +1 -1
- package/components/common/pages/backups/modals/createBackup/general/General.vue +1 -0
- package/components/common/pages/backups/modals/createBackup/general/GeneralNew.vue +1 -1
- package/components/common/pages/backups/modals/createBackup/general/GeneralOld.vue +59 -9
- package/components/common/pages/backups/modals/lib/config/restore.ts +1 -0
- package/components/common/pages/backups/modals/lib/models/interfaces.ts +1 -0
- package/components/common/pages/backups/modals/restore/New.vue +40 -35
- package/components/common/pages/backups/modals/restore/Restore.vue +4 -5
- package/components/common/pages/backups/modals/restore/disks/tableView/new/Table.vue +6 -1
- package/components/common/pages/backups/modals/restore/disks/tableView/new/lib/config/table.ts +1 -0
- package/components/common/pages/backups/modals/restore/lib/config/steps.ts +1 -1
- package/components/common/pages/backups/modals/restore/name/NameNew.vue +3 -0
- package/components/common/pages/backups/modals/restore/networks/table/new/Table.vue +7 -0
- package/components/common/pages/hardwareHealth/HardwareHealth.vue +69 -148
- package/components/common/pages/hardwareHealth/HardwareHealthNew.vue +252 -0
- package/components/common/pages/hardwareHealth/HardwareHealthOld.vue +192 -0
- package/components/common/pages/hardwareHealth/historyTestimony/Graph.vue +204 -251
- package/components/common/pages/hardwareHealth/historyTestimony/GraphNew.vue +211 -0
- package/components/common/pages/hardwareHealth/historyTestimony/GraphOld.vue +212 -0
- package/components/common/pages/hardwareHealth/historyTestimony/tools/Tools.vue +96 -248
- package/components/common/pages/hardwareHealth/historyTestimony/tools/ToolsNew.vue +227 -0
- package/components/common/pages/hardwareHealth/historyTestimony/tools/ToolsOld.vue +289 -0
- package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/ChartOptionsModal.vue +110 -112
- package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/ChartOptionsModalNew.vue +173 -0
- package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/ChartOptionsModalOld.vue +168 -0
- package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/NotificationNew.vue +22 -0
- package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/actions/Actions.vue +34 -55
- package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/actions/ActionsNew.vue +145 -0
- package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/actions/ActionsOld.vue +81 -0
- package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/actions/{SaveOptionsModal.vue → saveOptionsModal/SaveOptionsModal.vue} +2 -2
- package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/counters/Counters.vue +70 -49
- package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/counters/CountersNew.vue +108 -0
- package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/counters/CountersOld.vue +93 -0
- package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/counters/table/Table.vue +25 -78
- package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/counters/table/lib/models/interfaces.ts +13 -0
- package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/counters/table/tableNew/TableNew.vue +58 -0
- package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/counters/table/tableNew/lib/config/options.ts +19 -0
- package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/counters/table/tableNew/lib/config/tableData.ts +73 -0
- package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/counters/table/tableNew/lib/utils/constructTable.ts +31 -0
- package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/counters/table/tableOld/TableOld.vue +103 -0
- package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/counters/table/{lib → tableOld/lib}/config/tableConfig.ts +3 -1
- package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/counters/timespan/Timespan.vue +50 -33
- package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/counters/timespan/TimespanNew.vue +177 -0
- package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/counters/timespan/TimespanOld.vue +65 -0
- package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/metrics/Metrics.vue +15 -9
- package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/metrics/MetricsNew.vue +121 -0
- package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/metrics/MetricsOld.vue +22 -0
- package/components/common/pages/hardwareHealth/historyTestimony/tools/lib/config/toolbar.ts +68 -5
- package/components/common/pages/hardwareHealth/indicators/Indicators.vue +96 -0
- package/components/common/pages/hardwareHealth/indicators/lib/models/interfaces.ts +5 -0
- package/components/common/pages/hardwareHealth/lib/config/status.ts +14 -0
- package/components/common/pages/hardwareHealth/lib/config/tabsPannel.ts +38 -0
- package/components/common/pages/hardwareHealth/lib/models/enums.ts +1 -1
- package/components/common/pages/hardwareHealth/tableView/new/New.vue +230 -0
- package/components/common/pages/hardwareHealth/tableView/new/lib/config/alertWarningTable.ts +99 -0
- package/components/common/pages/hardwareHealth/tableView/new/lib/config/historyTestimonyTable.ts +126 -0
- package/components/common/pages/hardwareHealth/tableView/new/lib/config/sensorTable.ts +164 -0
- package/components/common/pages/hardwareHealth/tableView/new/lib/config/storageSensorsTable.ts +88 -0
- package/components/common/pages/hardwareHealth/tableView/new/lib/config/systemLogTable.ts +74 -0
- package/components/common/pages/hardwareHealth/tableView/{TableView.vue → old/Old.vue} +16 -7
- package/components/common/pages/hardwareHealth/tableView/{lib → old/lib}/config/alertWarningTable.ts +2 -2
- package/components/common/pages/hardwareHealth/tableView/{lib → old/lib}/config/historyTestimonyTable.ts +2 -2
- package/components/common/pages/hardwareHealth/tableView/{lib → old/lib}/config/sensorTable.ts +2 -2
- package/components/common/pages/hardwareHealth/tableView/{lib → old/lib}/config/storageSensorTable.ts +2 -2
- package/components/common/pages/hardwareHealth/tableView/{lib → old/lib}/config/systemLogTable.ts +2 -2
- package/components/common/pages/hardwareHealth/tableView/{lib → old/lib}/config/tableKeys.ts +1 -1
- package/components/common/pages/hardwareHealth/tableView/{modal → old/modal}/SensorWarning.vue +3 -0
- package/components/common/pages/hardwareHealth/tooltip/Tooltip.vue +73 -0
- package/components/common/pages/licensing/listView/lib/config/list.ts +1 -1
- package/components/common/pages/scheduledTasks/lib/models/interfaces.ts +6 -0
- package/components/common/pages/scheduledTasks/modals/common/frequency/Frequency.vue +51 -42
- package/components/common/pages/scheduledTasks/modals/common/frequency/afterStartup/AfterStartup.vue +20 -48
- package/components/common/pages/scheduledTasks/modals/common/frequency/afterStartup/New.vue +73 -0
- package/components/common/pages/scheduledTasks/modals/common/frequency/afterStartup/Old.vue +65 -0
- package/components/common/pages/scheduledTasks/modals/common/frequency/end/End.vue +18 -69
- package/components/common/pages/scheduledTasks/modals/common/frequency/end/New.vue +104 -0
- package/components/common/pages/scheduledTasks/modals/common/frequency/end/Old.vue +112 -0
- package/components/common/pages/scheduledTasks/modals/common/frequency/interval/Interval.vue +22 -53
- package/components/common/pages/scheduledTasks/modals/common/frequency/interval/New.vue +79 -0
- package/components/common/pages/scheduledTasks/modals/common/frequency/interval/Old.vue +68 -0
- package/components/common/pages/scheduledTasks/modals/common/frequency/lib/utils.ts +1 -1
- package/components/common/pages/scheduledTasks/modals/common/frequency/on/New.vue +170 -0
- package/components/common/pages/scheduledTasks/modals/common/frequency/on/Old.vue +234 -0
- package/components/common/pages/scheduledTasks/modals/common/frequency/on/On.vue +30 -168
- package/components/common/pages/scheduledTasks/modals/common/frequency/on/lib/config/options.ts +17 -0
- package/components/common/pages/scheduledTasks/modals/common/frequency/on/selectWeek/New.vue +66 -0
- package/components/common/pages/scheduledTasks/modals/common/frequency/on/selectWeek/Old.vue +44 -0
- package/components/common/pages/scheduledTasks/modals/common/frequency/on/selectWeek/SelectWeek.vue +17 -28
- package/components/common/pages/scheduledTasks/modals/common/frequency/on/selectWeek/lib/config/weekOptions.ts +20 -50
- package/components/common/pages/scheduledTasks/modals/common/frequency/startOn/New.vue +83 -0
- package/components/common/pages/scheduledTasks/modals/common/frequency/startOn/Old.vue +77 -0
- package/components/common/pages/scheduledTasks/modals/common/frequency/startOn/StartOn.vue +20 -51
- package/components/common/pages/scheduledTasks/modals/common/taskForm/New.vue +338 -0
- package/components/common/pages/scheduledTasks/modals/common/{newTaskForm/NewTaskForm.vue → taskForm/Old.vue} +12 -69
- package/components/common/pages/scheduledTasks/modals/common/taskForm/TaskForm.vue +129 -0
- package/components/common/pages/scheduledTasks/table/Table.vue +27 -81
- package/components/common/pages/scheduledTasks/table/expandDetails/ExpandDetails.vue +2 -2
- package/components/common/pages/scheduledTasks/table/expandDetails/New.vue +47 -17
- package/components/common/pages/scheduledTasks/table/expandDetails/Old.vue +4 -9
- package/components/common/pages/scheduledTasks/table/expandDetails/historyRun/HistoryRun.vue +16 -54
- package/components/common/pages/scheduledTasks/table/expandDetails/historyRun/new/New.vue +146 -0
- package/components/common/pages/scheduledTasks/table/expandDetails/historyRun/new/lib/config/historyRunsTable.ts +161 -0
- package/components/common/pages/scheduledTasks/table/expandDetails/historyRun/old/Old.vue +68 -0
- package/components/common/pages/scheduledTasks/table/expandDetails/historyRun/{lib → old/lib}/config/historyRunsTable.ts +4 -4
- package/components/common/pages/scheduledTasks/table/expandDetails/historyRun/{lib → old/lib}/config/tableKeys.ts +1 -1
- package/components/common/pages/scheduledTasks/table/expandDetails/lib/config/expandDetails.ts +7 -5
- package/components/common/pages/scheduledTasks/table/expandDetails/lib/models/interfaces.ts +8 -0
- package/components/common/pages/scheduledTasks/table/lib/models/enums.ts +13 -0
- package/components/common/pages/scheduledTasks/table/new/New.vue +318 -0
- package/components/common/pages/scheduledTasks/table/new/lib/config/scheduledTasksTable.ts +192 -0
- package/components/common/pages/scheduledTasks/table/new/lib/models/enums.ts +14 -0
- package/components/common/pages/scheduledTasks/table/old/Old.vue +93 -0
- package/components/common/pages/scheduledTasks/table/{lib → old/lib}/config/scheduledTasksTable.ts +13 -9
- package/components/common/pages/scheduledTasks/table/{lib → old/lib}/config/tableKeys.ts +1 -1
- package/components/common/pages/shortcuts/Shortcuts.vue +1 -1
- package/components/common/pages/shortcuts/category/CategoryNew.vue +1 -0
- package/components/common/pages/shortcuts/category/CategoryOld.vue +1 -0
- package/components/common/pages/shortcuts/lib/models/interfaces.ts +2 -0
- 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/spiceConsole/SpiceConsole.vue +38 -0
- package/components/common/spiceConsole/keyboard/Keyboard.vue +5 -2
- package/components/common/split/horizontal/New.vue +6 -3
- package/components/common/split/horizontal/Old.vue +1 -1
- 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 +8 -3
- package/components/common/tools/lib/models/interfaces.ts +2 -0
- package/components/common/tooltip/Help.vue +28 -28
- package/components/common/vm/actions/add/New.vue +21 -6
- package/components/common/vm/actions/clone/Clone.vue +78 -68
- package/components/common/vm/actions/clone/lib/config/steps.ts +8 -8
- package/components/common/vm/actions/clone/new/New.vue +71 -36
- package/components/common/vm/actions/clone/new/SkeletonName.vue +22 -0
- package/components/common/vm/actions/clone/old/Old.vue +10 -4
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/VirtualHardware.vue +6 -3
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/cdDvdDrive/CdDvdDrive.vue +4 -0
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/cdDvdDrive/New.vue +2 -1
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/cdDvdDrive/Old.vue +6 -3
- 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/Cpu.vue +30 -9
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/cpu/New.vue +7 -2
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/cpu/Old.vue +6 -2
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/cpu/coresPerSocket/CoresPerSocket.vue +29 -7
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/cpu/shares/Shares.vue +2 -1
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/limit/Limit.vue +3 -2
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/limit/lib/config/options.ts +6 -3
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/memory/Memory.vue +12 -0
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/memory/New.vue +6 -1
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/memory/Old.vue +6 -2
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/newHardDisk/NewHardDisk.vue +6 -4
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/reservation/New.vue +2 -0
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/reservation/Reservation.vue +9 -12
- package/components/common/vm/actions/common/customizeHardware/vmoptions/bootOptions/order/Order.vue +11 -3
- package/components/common/vm/actions/common/select/createType/lib/config/items.ts +1 -1
- package/components/common/vm/actions/common/select/options/New.vue +56 -48
- package/components/common/vm/actions/common/select/options/Old.vue +42 -24
- package/components/common/vm/actions/common/select/options/Options.vue +33 -2
- package/components/common/vm/actions/common/select/storage/Old.vue +0 -1
- package/components/common/vm/actions/common/select/storage/Storage.vue +2 -3
- package/components/common/vm/actions/common/select/storage/new/New.vue +13 -10
- 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/consolidate/New.vue +1 -1
- package/components/common/vm/actions/consolidate/Old.vue +2 -2
- package/components/common/vm/actions/editSettings/EditSettings.vue +20 -1
- package/components/common/vm/actions/register/New.vue +55 -27
- package/components/common/vm/actions/register/lib/config/steps.ts +1 -1
- package/components/common/vm/actions/rename/New.vue +11 -1
- package/components/common/vm/actions/rename/Old.vue +1 -0
- package/components/common/vm/actions/rename/Rename.vue +6 -0
- package/components/common/vm/snapshots/DetailView.vue +6 -6
- package/components/common/vm/snapshots/lib/models/types.ts +1 -0
- package/components/common/vm/snapshots/modals/confirm/New.vue +3 -2
- package/components/common/vm/snapshots/modals/confirm/Old.vue +3 -3
- package/components/common/vm/snapshots/modals/confirm/lib/models/enums.ts +2 -0
- package/components/common/vm/snapshots/modals/lib/config/modalTexts.ts +1 -0
- package/components/common/wizards/common/steps/name/New.vue +56 -35
- 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/_vmfsVersion/lib/config/versionOptions.ts +2 -2
- package/components/common/wizards/datastore/add/steps/nameAndDevice/NameAndDeviceNew.vue +60 -42
- package/components/common/wizards/datastore/add/steps/nameAndDevice/advancedOptions/AdvancedOptions.vue +7 -1
- package/components/common/wizards/datastore/add/steps/nameAndDevice/advancedOptions/New.vue +53 -76
- package/components/common/wizards/datastore/add/steps/nameAndDevice/advancedOptions/Old.vue +13 -61
- package/components/common/wizards/datastore/add/steps/nameAndDevice/advancedOptions/lib/config/raidOptions.ts +35 -0
- package/components/common/wizards/network/add/Add.vue +99 -109
- package/components/common/wizards/network/add/AddNew.vue +50 -21
- package/components/common/wizards/network/add/AddOld.vue +2 -2
- package/components/common/wizards/network/add/lib/config/config.ts +1 -1
- package/components/common/wizards/network/add/lib/config/initialData.ts +23 -9
- package/components/common/wizards/network/add/lib/config/selectSwitch.ts +5 -4
- package/components/common/wizards/network/add/lib/config/steps.ts +4 -2
- package/components/common/wizards/network/add/lib/models/interfaces.ts +1 -0
- package/components/common/wizards/network/add/lib/utils/utils.ts +8 -3
- package/components/common/wizards/network/add/mappers/mappers.ts +12 -5
- package/components/common/wizards/network/add/steps/connectionSettings/ConnectionSettings.vue +19 -13
- package/components/common/wizards/network/add/steps/connectionSettings/ConnectionSettingsNew.vue +10 -2
- package/components/common/wizards/network/add/steps/connectionSettings/ConnectionSettingsOld.vue +11 -4
- package/components/common/wizards/network/add/steps/createStandardSwitch/CreateStandardSwitch.vue +8 -26
- package/components/common/wizards/network/add/steps/ipFourSettings/IpFourSettings.vue +25 -16
- package/components/common/wizards/network/add/steps/ipFourSettings/IpFourSettingsNew.vue +84 -17
- package/components/common/wizards/network/add/steps/ipFourSettings/IpFourSettingsOld.vue +3 -0
- package/components/common/wizards/network/add/steps/portProperties/PortProperties.vue +13 -9
- package/components/common/wizards/network/add/steps/portProperties/PortPropertiesNew.vue +29 -5
- package/components/common/wizards/network/add/steps/portProperties/PortPropertiesOld.vue +8 -3
- package/components/common/wizards/network/add/steps/readyComplete/ReadyComplete.vue +8 -6
- package/components/common/wizards/network/add/steps/readyComplete/ReadyCompleteNew.vue +16 -7
- package/components/common/wizards/network/add/steps/selectConnectionType/SelectConnectionType.vue +7 -8
- package/components/common/wizards/network/add/steps/selectConnectionType/SelectConnectionTypeNew.vue +4 -0
- package/components/common/wizards/network/add/steps/selectTargetDevice/SelectTargetDevice.vue +11 -12
- package/components/common/wizards/network/add/steps/selectTargetDevice/SelectTargetDeviceNew.vue +89 -19
- package/components/common/wizards/network/add/steps/selectTargetDevice/SelectTargetDeviceOld.vue +4 -0
- package/components/common/wizards/network/add/steps/selectTargetDevice/modals/SelectNetwork.vue +8 -9
- package/components/common/wizards/network/add/steps/selectTargetDevice/modals/SelectStandardSwitch.vue +8 -9
- package/components/common/wizards/network/add/steps/selectTargetDevice/modals/SelectSwitch.vue +9 -10
- package/components/common/wizards/network/add/steps/selectTargetDevice/modals/new/SelectNetwork.vue +21 -0
- package/components/common/wizards/network/add/steps/selectTargetDevice/modals/new/SelectStandardSwitch.vue +18 -1
- package/components/common/wizards/network/add/steps/selectTargetDevice/modals/new/SelectSwitch.vue +18 -1
- package/components/common/wizards/network/add/validations/common.ts +8 -3
- package/components/common/wizards/network/add/validations/connectionSettings.ts +2 -2
- package/components/common/wizards/network/add/validations/networkValidation.ts +2 -2
- package/components/common/wizards/network/add/validations/portProperties.ts +2 -2
- package/components/common/wizards/vm/migrate/New.vue +15 -4
- package/components/common/wizards/vm/migrate/Old.vue +1 -1
- 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/ComputeResource.vue +30 -9
- package/components/common/wizards/vm/migrate/steps/computeResource/New.vue +2 -2
- package/components/common/wizards/vm/migrate/steps/computeResource/Old.vue +0 -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/composables/useLocalStorage.ts +1 -1
- package/lib/models/interfaces.ts +3 -0
- package/lib/models/store/tasks/enums.ts +3 -0
- package/lib/models/store/tasks/types.ts +7 -6
- package/lib/utils/validation.ts +3 -2
- package/package.json +3 -3
- package/plugins/directives.ts +3 -5
- package/public/spice-console/application/WorkerProcess.js +411 -303
- package/public/spice-console/application/agent.js +18 -17
- package/public/spice-console/application/application.js +7 -6
- package/public/spice-console/lib/graphic.js +55 -11
- package/public/spice-console/process/mainprocess.js +10 -2
- package/public/spice-console/run.js +19 -8
- package/public/spice-console-minify/WorkerProcess.min.js +1 -1
- package/public/spice-console-minify/run.min.js +1 -1
- package/store/tasks/actions.ts +26 -8
- package/store/tasks/mappers/recentTasks.ts +1 -0
- package/components/common/certificate/lib/config/tabsPannel.ts +0 -22
- package/components/common/pages/scheduledTasks/table/lib/config/schedulerStatus.ts +0 -4
- package/components/common/pages/scheduledTasks/table/lib/models/interfaces.ts +0 -11
- /package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/{Notification.vue → NotificationOld.vue} +0 -0
- /package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/counters/table/{lib → tableOld/lib}/models/types.ts +0 -0
- /package/components/common/pages/hardwareHealth/tableView/{lib → old/lib}/models/interfaces.ts +0 -0
- /package/components/common/pages/hardwareHealth/tableView/{lib → old/lib}/models/types.ts +0 -0
- /package/components/common/pages/scheduledTasks/modals/common/{newTaskForm → taskForm}/lib/models/interfaces.ts +0 -0
- /package/components/common/pages/scheduledTasks/modals/common/{newTaskForm → taskForm}/lib/utils.ts +0 -0
- /package/components/common/pages/scheduledTasks/table/expandDetails/historyRun/{lib → old/lib}/models/types.ts +0 -0
- /package/components/common/pages/scheduledTasks/table/{lib → old/lib}/models/types.ts +0 -0
|
@@ -270,7 +270,7 @@
|
|
|
270
270
|
"confirm": "确认",
|
|
271
271
|
"confirmDeletion": "确认删除",
|
|
272
272
|
"confirmDeletionDatastoreBodyFirst": "此操作将永久删除与数据存储上的虚拟机关联的所有文件。",
|
|
273
|
-
"confirmDeletionDatastoreBodySecond": "强制安装的
|
|
273
|
+
"confirmDeletionDatastoreBodySecond": "强制安装的 STORMFS 数据存储将从清单中删除,但不会删除其中的数据。",
|
|
274
274
|
"confirmDeletionDatastoreBodyThird": "删除选定的数据存储?",
|
|
275
275
|
"confirmDeletionDatastoreTitle": "确认删除数据存储",
|
|
276
276
|
"confirmDeletionInput": "要确认,请在下面的框中输入 \"{title}\"",
|
|
@@ -309,6 +309,7 @@
|
|
|
309
309
|
"convertTemplateVirtualMachine": "将模板转换为虚拟机",
|
|
310
310
|
"copyPaste": "复制粘贴",
|
|
311
311
|
"copyTo": "复制到",
|
|
312
|
+
"copyTo2": "复制到",
|
|
312
313
|
"copyUrl": "复制网址",
|
|
313
314
|
"coresPerSocket": "每个插座的核心数",
|
|
314
315
|
"counters": "柜台",
|
|
@@ -330,6 +331,7 @@
|
|
|
330
331
|
"creationDate": "创建日期",
|
|
331
332
|
"currentDisplayLimited": "当前设置限制显示不超过 {0} 条记录。",
|
|
332
333
|
"currentEvcMode": "当前 EVC 模式",
|
|
334
|
+
"current_evc_mode": "当前 CPU 模式",
|
|
333
335
|
"currentPassword": "当前密码",
|
|
334
336
|
"currentSettings": "当前设置",
|
|
335
337
|
"custom": "风俗",
|
|
@@ -370,6 +372,7 @@
|
|
|
370
372
|
"deleteClusterText": "删除数据处理集群还会从注册表中删除所有节点和数据处理虚拟机。",
|
|
371
373
|
"deleteClusterText2": "您确定要删除集群“{0}”吗?此操作还将从清单中删除其所有主机和虚拟机。如果启用了 Workload Management,还会删除所有 Kubernetes 命名空间和工作负载。",
|
|
372
374
|
"deleteCustomAttribute": "删除自定义属性",
|
|
375
|
+
"deleteCustomAttributes": "删除自定义属性",
|
|
373
376
|
"deleteDatacenter": "删除数据中心",
|
|
374
377
|
"deleteDatacenterText": "卸载数据中心还会删除所有数据中心警报,并从注册表中删除所有主机和数据中心虚拟机。",
|
|
375
378
|
"deleteDatastore": "删除数据存储",
|
|
@@ -587,6 +590,7 @@
|
|
|
587
590
|
"faultDomain": "故障域",
|
|
588
591
|
"faults": "故障",
|
|
589
592
|
"faultTolerance": "容错",
|
|
593
|
+
"fault_tolerance": "容错",
|
|
590
594
|
"faultToleranceLogging": "容错记录",
|
|
591
595
|
"february": "二月",
|
|
592
596
|
"feedbackHelp": "反饋幫助》",
|
|
@@ -743,6 +747,7 @@
|
|
|
743
747
|
"init": "初始化",
|
|
744
748
|
"inputContainsInvalidCharacters": "输入包含无效字符",
|
|
745
749
|
"inputDevices": "输入设备",
|
|
750
|
+
"input_devices": "输入设备",
|
|
746
751
|
"installDate": "安装日期",
|
|
747
752
|
"installed": "已安装",
|
|
748
753
|
"installedOn": "安裝於",
|
|
@@ -845,7 +850,7 @@
|
|
|
845
850
|
"localContentLibrary": "本地内容库",
|
|
846
851
|
"localDesc": "在主机文件系统上创建本地存储",
|
|
847
852
|
"localLibrariesCanBePublishedDesc": "本地图书馆可以对外发布。订阅的库来自其他已发布的库。",
|
|
848
|
-
"localVmfs": "本地 (
|
|
853
|
+
"localVmfs": "本地 (STORMFS)",
|
|
849
854
|
"lockdownMode": "锁定模式",
|
|
850
855
|
"lockdownNormal": "主机只能通过本地控制台或 {productName} 服务器访问",
|
|
851
856
|
"lockdownStrict": "该主机只能通过 {productName} 访问。 直接控制台 UI 服务器已停止",
|
|
@@ -966,6 +971,7 @@
|
|
|
966
971
|
"moveDown": "下移",
|
|
967
972
|
"moveFolder": "移到文件夹",
|
|
968
973
|
"moveTo": "搬去",
|
|
974
|
+
"moveTo2": "搬去",
|
|
969
975
|
"moveToWithDots": "搬去...",
|
|
970
976
|
"moveUp": "上升",
|
|
971
977
|
"ms": "多发性硬化症",
|
|
@@ -1057,8 +1063,11 @@
|
|
|
1057
1063
|
"noCertificatesAdded": "未添加证书。",
|
|
1058
1064
|
"noConfigurableDeviceIsSelected": "未选择可配置设备。",
|
|
1059
1065
|
"noDataProvided": "没有提供资料",
|
|
1066
|
+
"noDataProvidedMessage": "目前没有要显示的数据。",
|
|
1060
1067
|
"noDhcpEnabledVmKernelNetAdapters": "没有启用DHCP的VMkernel网络适配器。",
|
|
1061
1068
|
"noFreeNetworkAdaptersAddSwitch": "没有免费的网络适配器可以添加到交换机上。",
|
|
1069
|
+
"noAdaptersTitle": "无需添加免费网络适配器",
|
|
1070
|
+
"noAdaptersMessage": "目前没有可添加到此交换机的免费物理网络适配器。",
|
|
1062
1071
|
"noItemsDisplay": "没有要显示的项目",
|
|
1063
1072
|
"noItemSelected": "没有选择项目",
|
|
1064
1073
|
"none": "没有什么",
|
|
@@ -1166,6 +1175,7 @@
|
|
|
1166
1175
|
"persistent": "执着的",
|
|
1167
1176
|
"persistentMemory": "持久内存",
|
|
1168
1177
|
"physicalAdapters": "物理适配器",
|
|
1178
|
+
"physical_adapters": "物理适配器",
|
|
1169
1179
|
"physicalCpus": "物理处理器",
|
|
1170
1180
|
"physicalLocation": "物理位置",
|
|
1171
1181
|
"physicalNetworkAdapter": "物理网络适配器",
|
|
@@ -1335,10 +1345,10 @@
|
|
|
1335
1345
|
"save": "节省",
|
|
1336
1346
|
"scanForNewStorage": "扫描新的存储设备",
|
|
1337
1347
|
"scanForNewStorageDesc": "重新扫描所有主机总线适配器以查找新的存储设备。",
|
|
1338
|
-
"scanForNewVmsVolumes": "扫描新的
|
|
1339
|
-
"scanForNewVmsVolumesDesc": "重新扫描所有已知存储设备以查找自上次扫描以来添加的新
|
|
1348
|
+
"scanForNewVmsVolumes": "扫描新的 STORMFS 卷",
|
|
1349
|
+
"scanForNewVmsVolumesDesc": "重新扫描所有已知存储设备以查找自上次扫描以来添加的新 STORMFS 卷。",
|
|
1340
1350
|
"scheduledTasks": "计划任务",
|
|
1341
|
-
"schedulingAffinity": "
|
|
1351
|
+
"schedulingAffinity": "物理处理器亲和性",
|
|
1342
1352
|
"schedulingAffinityHelpDescription1": "选择此虚拟机的物理处理器映射。",
|
|
1343
1353
|
"schedulingAffinityHelpDescription2": "使用“-”表示范围,使用“,”分隔值。",
|
|
1344
1354
|
"schedulingAffinityHelpDescription3": "清除该行以删除关联设置。",
|
|
@@ -1529,6 +1539,7 @@
|
|
|
1529
1539
|
"sunday": "星期日",
|
|
1530
1540
|
"support": "支持",
|
|
1531
1541
|
"supportedEvcModes": "支持的 EVC 模式",
|
|
1542
|
+
"supported_evc_modes": "支持的 CPU 模式",
|
|
1532
1543
|
"suspend": "暂停",
|
|
1533
1544
|
"suspended": "暂停",
|
|
1534
1545
|
"suspending": "暂停",
|
|
@@ -1711,6 +1722,7 @@
|
|
|
1711
1722
|
"virtualFlash": "虚拟闪存",
|
|
1712
1723
|
"virtualFlashHostSwapCache": "虚拟闪存主机交换缓存",
|
|
1713
1724
|
"virtualFlashResource": "虚拟闪存资源",
|
|
1725
|
+
"virtual_flash_resource": "虚拟闪存资源",
|
|
1714
1726
|
"virtualFlashResourceManagement": "虚拟闪存资源管理",
|
|
1715
1727
|
"virtualFunctions": "虚函数",
|
|
1716
1728
|
"virtualFunctionsMustBe": "虚函数必须在 1 到 16 之间。",
|
|
@@ -1738,13 +1750,13 @@
|
|
|
1738
1750
|
"vMCustomizationSpecifications": "VM 定制规格",
|
|
1739
1751
|
"vmDrsScore": "VM DRS 分数",
|
|
1740
1752
|
"vmFolders": "VM组",
|
|
1741
|
-
"vmfs": "
|
|
1742
|
-
"vmfsDesc": "在磁盘/LUN 上创建
|
|
1743
|
-
"vmfsDetails": "
|
|
1753
|
+
"vmfs": "STORMFS",
|
|
1754
|
+
"vmfsDesc": "在磁盘/LUN 上创建 STORMFS 数据存储。",
|
|
1755
|
+
"vmfsDetails": "STORMFS 详细信息",
|
|
1744
1756
|
"vmfsVersion": "虚拟机文件系统版本",
|
|
1745
|
-
"vmfsVersionDesc": "指定数据存储的
|
|
1746
|
-
"vmfsVersionDesc1": "
|
|
1747
|
-
"vmfsVersionDesc2": "
|
|
1757
|
+
"vmfsVersionDesc": "指定数据存储的 STORMFS 版本。",
|
|
1758
|
+
"vmfsVersionDesc1": "STORMFS 6 支持高级格式 (512e) 和自动空间回收支持。",
|
|
1759
|
+
"vmfsVersionDesc2": "STORMFS 5 支持 2 TB LUN。",
|
|
1748
1760
|
"vmHardware": "虚拟机硬件",
|
|
1749
1761
|
"vMIsSuccessfullyStarted": "虛擬機已成功啟動,部署名稱:",
|
|
1750
1762
|
"vMkernelAdapters": "VMkernel 适配器",
|
|
@@ -1770,8 +1782,9 @@
|
|
|
1770
1782
|
"vmTemplates": "虚拟机模板",
|
|
1771
1783
|
"inodeVmTemplates": "InodeVm模板",
|
|
1772
1784
|
"vmVersion": "虚拟机版本",
|
|
1785
|
+
"vm_version": "虚拟机版本",
|
|
1773
1786
|
"vMwareSharedVirtualGraphics": "{trademark} 共享虚拟图形",
|
|
1774
|
-
"vSAN": "
|
|
1787
|
+
"vSAN": "SAN",
|
|
1775
1788
|
"vSphere_DRS": "Procurator DRS",
|
|
1776
1789
|
"vSphere_HA": "Procurator HA",
|
|
1777
1790
|
"vSphereBackupNFC": "Procurator 备份 NFC",
|
|
@@ -1911,7 +1924,7 @@
|
|
|
1911
1924
|
"diskFormat": "磁盘格式",
|
|
1912
1925
|
"replicationGroup": "复制组",
|
|
1913
1926
|
"allSelectedObjects": "所有选定的对象",
|
|
1914
|
-
"selectVirtualDiskFormat": "
|
|
1927
|
+
"selectVirtualDiskFormat": "虚拟磁盘格式",
|
|
1915
1928
|
"migrateCompleteStepDesc": "验证信息是否正确,然后单击“完成”开始迁移。",
|
|
1916
1929
|
"migrationType": "迁移类型",
|
|
1917
1930
|
"changeComputeResourceOriginalStorage": "更改计算资源。",
|
|
@@ -2177,7 +2190,8 @@
|
|
|
2177
2190
|
"zabbix": "Zabbix",
|
|
2178
2191
|
"loginZabbixAccount": "登录Zabbix服务器",
|
|
2179
2192
|
"newView": "新观点",
|
|
2180
|
-
"
|
|
2193
|
+
"newInterface": "新接口",
|
|
2194
|
+
"viewDesc": "选择 {trademark} Client 的界面和视觉偏好。",
|
|
2181
2195
|
"emptyNameValidationDescription": "名称不能为空",
|
|
2182
2196
|
"kindValidationDescription": "记录类型无效",
|
|
2183
2197
|
"alert": "警报",
|
|
@@ -2217,7 +2231,8 @@
|
|
|
2217
2231
|
"sambaDesc": "通过网络共享Samba共享的Samba数据存储。",
|
|
2218
2232
|
"sambaHelpDesc": "Samba Storage使用SMBCIFS协议,提供跨平台访问,灵活的权利以及与Active Directory的集成。",
|
|
2219
2233
|
"deviceType": "设备类型",
|
|
2220
|
-
"selectDisksInvolvedBackup": "
|
|
2234
|
+
"selectDisksInvolvedBackup": "选择备份涉及的磁盘。",
|
|
2235
|
+
"selectDisksInvolvedBackupNotRequired": "选择要复制的备份磁盘。如果不需要复制,可以跳过此步骤。",
|
|
2221
2236
|
"dateTime": "日期/时间",
|
|
2222
2237
|
"eventTypeDescription": "事件类型描述",
|
|
2223
2238
|
"possibleCauses": "可能的原因",
|
|
@@ -2283,7 +2298,7 @@
|
|
|
2283
2298
|
"lastRunResult": "上次运行结果",
|
|
2284
2299
|
"nextRun": "下次运行",
|
|
2285
2300
|
"removeScheduledTask": "删除计划任务",
|
|
2286
|
-
"removeScheduledTaskDesc": "
|
|
2301
|
+
"removeScheduledTaskDesc": "您确定要删除此计划任务吗?\\n虚拟机“{vmName}”的计划任务“{taskName}”将被永久删除,并且其所有未来的执行都将被取消。",
|
|
2287
2302
|
"neverShowThisMessageAgain": "不再显示此消息",
|
|
2288
2303
|
"scheduleNewTasks": "安排新任务",
|
|
2289
2304
|
"scheduleTaskEdit": "计划任务编辑",
|
|
@@ -2362,6 +2377,7 @@
|
|
|
2362
2377
|
"allActive": "全部活动",
|
|
2363
2378
|
"text": "文本",
|
|
2364
2379
|
"vApp": "vApp",
|
|
2380
|
+
"vapp": "应用",
|
|
2365
2381
|
"contentLibrary": "内容库",
|
|
2366
2382
|
"libraryItem": "图书馆项目",
|
|
2367
2383
|
"removeTagDialog": "您确定要从 “{selectedItemName}” 中删除标记 “{tagName}” 吗?",
|
|
@@ -2385,12 +2401,13 @@
|
|
|
2385
2401
|
"viewObject": "查看对象",
|
|
2386
2402
|
"eventDetails": "活动详情",
|
|
2387
2403
|
"noResultsFound": "未找到结果",
|
|
2388
|
-
"confirmNetworkRemoval": "
|
|
2389
|
-
"confirmPortRemoval": "
|
|
2390
|
-
"confirmSwitchRemoval": "
|
|
2391
|
-
"confirmNetworkRemovalMessage": "您确定要从虚拟交换机\"{switchName}\"
|
|
2392
|
-
"
|
|
2393
|
-
"
|
|
2404
|
+
"confirmNetworkRemoval": "删除端口组",
|
|
2405
|
+
"confirmPortRemoval": "删除VMkernel适配器",
|
|
2406
|
+
"confirmSwitchRemoval": "拆下标准开关",
|
|
2407
|
+
"confirmNetworkRemovalMessage": "您确定要从虚拟交换机\"{switchName}\"中删除端口组\"{networkName}\"吗?",
|
|
2408
|
+
"confirmPortRemovalMessage1": "删除VMkernel适配器会使使用它的所有服务不可用。",
|
|
2409
|
+
"confirmPortRemovalMessage2": "您确定要从虚拟交换机\"{switchName}\"中删除VMkernel适配器\"{portName}\"吗?",
|
|
2410
|
+
"confirmSwitchRemovalMessage": "您确定要从主机\"{hostName}\"中删除交换机\"{switchName}\"吗?",
|
|
2394
2411
|
"dnsDomainNameIsInvalid": "DNS域名无效",
|
|
2395
2412
|
"fieldCannotContainSpaces": "该字段不能仅包含空格",
|
|
2396
2413
|
"fieldMustBeBetweenCharacters": "该字段的长度必须介于 到 个字符之间",
|
|
@@ -2401,9 +2418,11 @@
|
|
|
2401
2418
|
"deleteNotesMessage": "您确定要从 \"{name}\" 中删除注释吗?",
|
|
2402
2419
|
"passwordContainsInvalidCharacters": "密码包含无效字符",
|
|
2403
2420
|
"fieldInvalidCharacters": "该字段必须包含3到64个字符,并且只能包括拉丁字母,数字和符号'_',',','。",
|
|
2421
|
+
"errorInvalidCharacters": "文件名不符合要求。请仅使用拉丁字母、数字和字符 \"_\"、\"-\"、\".\"(3 到 64 个字符)。",
|
|
2404
2422
|
"rowsPerPage": "每页行",
|
|
2405
2423
|
"unsavedChanges": "未保存的更改!",
|
|
2406
2424
|
"unsavedChangesDescription": "您确定要离开此页面吗?未保存的更改将丢失。",
|
|
2425
|
+
"unsavedChangesModalDescription": "你确定要关闭这扇窗户吗? 未保存的更改将丢失。",
|
|
2407
2426
|
"leave": "离开",
|
|
2408
2427
|
"export": "出口",
|
|
2409
2428
|
"allRowsCount": "所有行({0})",
|
|
@@ -2449,6 +2468,7 @@
|
|
|
2449
2468
|
"incompleteProcess": "不完整的过程!",
|
|
2450
2469
|
"incompleteProcessMessage": "你确定要离开这一页吗? 你的进步将丢失,你需要重新开始。",
|
|
2451
2470
|
"notAvailable": "暂时没有",
|
|
2471
|
+
"not_available": "暂时没有",
|
|
2452
2472
|
"strict": "严格的",
|
|
2453
2473
|
"incorrectOrMissingValuesBelow": "下面有不正确或丢失的值",
|
|
2454
2474
|
"vmtVersioningDesc": "版本信息仅适用于已发布或本地内容库中的模板。要将模板添加到现有内容库,请选择虚拟机,然后选择“将模板克隆到库”。",
|
|
@@ -2585,7 +2605,66 @@
|
|
|
2585
2605
|
"datastoreExistsTheSelectedLocation": "所选位置已存在同名的数据存储。请输入新名称。",
|
|
2586
2606
|
"deleteConfirmation": "删除确认",
|
|
2587
2607
|
"deleteItem": "删除项目",
|
|
2588
|
-
"deleteItems": "删除项目"
|
|
2608
|
+
"deleteItems": "删除项目",
|
|
2609
|
+
"existingNetworkMessage": "具有此名称的网络已经存在。",
|
|
2610
|
+
"addNetworkingReadyCompleteSubtitle": "在应用更改之前,请查看详细信息。",
|
|
2611
|
+
"systemEvents": "系统事件",
|
|
2612
|
+
"noComputeResourceSelected": "未选择计算资源",
|
|
2613
|
+
"noItemsSelected": "没有选择项目",
|
|
2614
|
+
"reconnectToServer": "重新连接到服务器",
|
|
2615
|
+
"connecting": "连接",
|
|
2616
|
+
"reconnecting": "重新连接",
|
|
2617
|
+
"combinationIncorrect": "用户名和密码组合不正确。",
|
|
2618
|
+
"weekMon": "周一",
|
|
2619
|
+
"weekTue": "周二",
|
|
2620
|
+
"weekWed": "周三",
|
|
2621
|
+
"weekThu": "周四",
|
|
2622
|
+
"weekFri": "周五",
|
|
2623
|
+
"weekSat": "周六",
|
|
2624
|
+
"weekSun": "周日",
|
|
2625
|
+
"raidConfiguration": "Raid 配置",
|
|
2626
|
+
"enterValidNumber": "请输入有效数字。",
|
|
2627
|
+
"virtualmachines": "虚拟机",
|
|
2628
|
+
"total_vmotion_migrations": "虚拟机迁移总数",
|
|
2629
|
+
"ip_addresses": "IP 地址",
|
|
2630
|
+
"url": "URL",
|
|
2631
|
+
"backup_count": "备份计数",
|
|
2632
|
+
"last_backup": "上次备份",
|
|
2633
|
+
"resource_pools": "资源池",
|
|
2634
|
+
"cluster_service_health": "集群服务状态",
|
|
2635
|
+
"healthy": "健康",
|
|
2636
|
+
"evc_mode": "虚拟机兼容性",
|
|
2637
|
+
"cpu_cores": "处理器核心",
|
|
2638
|
+
"cores_per_socket": "每个插座的核心数",
|
|
2639
|
+
"datastore_clusters": "数据存储集群",
|
|
2640
|
+
"sphere_ha_state": "Sphere HA 状态",
|
|
2641
|
+
"ft_logging_nic": "FT 日志记录网卡",
|
|
2642
|
+
"not_configured": "未配置",
|
|
2643
|
+
"vmotion_nic": "迁移适配器",
|
|
2644
|
+
"evc_not_supported": "不支持 EVC",
|
|
2645
|
+
"memory_hot_add": "热添加内存",
|
|
2646
|
+
"vmci_device": "VMCI 设备",
|
|
2647
|
+
"controllers": "控制器",
|
|
2648
|
+
"scsi_adapters": "SCSI 适配器",
|
|
2649
|
+
"canceled": "已取消",
|
|
2650
|
+
"retrying": "正在重试",
|
|
2651
|
+
"timeFormatDesc1": "选择时间格式",
|
|
2652
|
+
"languageDesc1": "选择显示语言",
|
|
2653
|
+
"remoteConsoleVmrc1": "远程控制台(VMRC)",
|
|
2654
|
+
"viewDesc1": "选择界面和视觉偏好设置",
|
|
2655
|
+
"thisLdapConnectionNotSecured": "此 LDAP 连接未受保护。要保护该连接,请上传 SSL 证书。",
|
|
2656
|
+
"ha": "HA",
|
|
2657
|
+
"not_configurable": "不可配置",
|
|
2658
|
+
"no_label": "无标签",
|
|
2659
|
+
"valid": "有效",
|
|
2660
|
+
"empty_address": "主机地址为空",
|
|
2661
|
+
"empty_credentials": "用户名或密码为空",
|
|
2662
|
+
"connection_failed": "连接/认证错误",
|
|
2663
|
+
"noStorageSelected": "未选择存储",
|
|
2664
|
+
"noActiveAdaptersAssigned": "未分配活动适配器",
|
|
2665
|
+
"noActiveAdaptersAssignedMessage1": "在分组和故障转移设置中未分配任何活动适配器。",
|
|
2666
|
+
"noActiveAdaptersAssignedMessage2": "单击\"保存\"以继续而不解决此问题,或单击\"取消\"以查看您的更改。",
|
|
2667
|
+
"action": "操作"
|
|
2589
2668
|
},
|
|
2590
2669
|
"auth": {
|
|
2591
2670
|
"welcomeTo": "欢迎来到",
|
|
@@ -2615,7 +2694,8 @@
|
|
|
2615
2694
|
"recentTask": "最近的任务",
|
|
2616
2695
|
"taskName": "任务名称",
|
|
2617
2696
|
"moreTasks": "附加任务",
|
|
2618
|
-
"vmUpdateSteps": "虚拟机更新步骤"
|
|
2697
|
+
"vmUpdateSteps": "虚拟机更新步骤",
|
|
2698
|
+
"waitingTime": "等待时间"
|
|
2619
2699
|
},
|
|
2620
2700
|
"layout": {
|
|
2621
2701
|
"alarms": "闹钟",
|
|
@@ -2735,7 +2815,20 @@
|
|
|
2735
2815
|
"actionsSameInfoDesc": "由于严重程度相同,操作与警报规则 1 相同",
|
|
2736
2816
|
"systemStack": "系统堆栈",
|
|
2737
2817
|
"localSubnet": "本地子网",
|
|
2738
|
-
"renewCertificateConfirm": "
|
|
2818
|
+
"renewCertificateConfirm": "续订证书",
|
|
2819
|
+
"elapsed": "已过",
|
|
2820
|
+
"expiring": "已过去",
|
|
2821
|
+
"expiringSoon": "即将过期",
|
|
2822
|
+
"certificateExpiration": "到期前还剩 {0} 天",
|
|
2823
|
+
"locality": "地点",
|
|
2824
|
+
"serialNumber": "序列号",
|
|
2825
|
+
"commonName": "通用名称",
|
|
2826
|
+
"organizationalUnit": "组织单位",
|
|
2827
|
+
"organization": "组织",
|
|
2828
|
+
"state": "州",
|
|
2829
|
+
"country": "国家",
|
|
2830
|
+
"validPeriod": "有效期",
|
|
2831
|
+
"certificateActiveDates": "证书有效日期",
|
|
2739
2832
|
"renewCertificateConfirmDesc": "您确定要为主机“{0}”更新证书吗?",
|
|
2740
2833
|
"refreshCACertificatesConfirm": "刷新 CA 证书确认",
|
|
2741
2834
|
"refreshCACertificatesConfirmDesc": "您确定要刷新主机“{0}”上的 CA 证书吗?",
|
|
@@ -2845,13 +2938,22 @@
|
|
|
2845
2938
|
"existsSessionName": "具有此名称的会话已存在。 输入唯一的会话名称。",
|
|
2846
2939
|
"removePortMirroringSession": "删除端口镜像会话{name}?",
|
|
2847
2940
|
"editPortMirroringSession": "编辑端口镜像会话",
|
|
2848
|
-
"reno": "
|
|
2941
|
+
"reno": "Reno",
|
|
2849
2942
|
"cubic": "CUBIC",
|
|
2850
2943
|
"thereAreNoSelectedSources": "没有选定的来源。",
|
|
2851
2944
|
"selectedSourcesDifferentNetworks": "所选的源位于不同的网络上。",
|
|
2852
2945
|
"thereAreNoSelectedDestinations": "没有选定的目的地。",
|
|
2853
2946
|
"moreOneDestinationSelected": "选择的一个以上的目的地。",
|
|
2854
|
-
"selectedDestinationDifferentNetwork": "所选目标位于不同的网络上。"
|
|
2947
|
+
"selectedDestinationDifferentNetwork": "所选目标位于不同的网络上。",
|
|
2948
|
+
"numberOfVirtualFunctions": "虚拟函数数",
|
|
2949
|
+
"noSelectedAdaptersMessage": "请确保选择物理网络适配器以查看其详细信息。",
|
|
2950
|
+
"vfNotNegativeMessage": "虚函数的数量无效。 输入1到63之间的数字。",
|
|
2951
|
+
"vfRequiredMessage": "指定虚拟函数的数量!",
|
|
2952
|
+
"noVirtualSwitchesTitle": "没有虚拟交换机",
|
|
2953
|
+
"noVirtualSwitchesMessage": "虚拟交换机将出现在这里一旦添加。",
|
|
2954
|
+
"versionRaw": "原始版本",
|
|
2955
|
+
"configSupported": "支持配置",
|
|
2956
|
+
"configApplied": "配置已应用"
|
|
2855
2957
|
},
|
|
2856
2958
|
"vmOverrides": {
|
|
2857
2959
|
"vmOverrides": "虚拟机覆盖设置",
|
|
@@ -2943,7 +3045,28 @@
|
|
|
2943
3045
|
"fieldNotContainSpecialCharacters": "该字段不能包含特殊字符",
|
|
2944
3046
|
"noObjectsFound": "没有找到物件",
|
|
2945
3047
|
"cpuS": "CPU(s)",
|
|
2946
|
-
"vmAutomation": "VM自动化"
|
|
3048
|
+
"vmAutomation": "VM自动化",
|
|
3049
|
+
"connect": "连接",
|
|
3050
|
+
"image_profile": "图片简介",
|
|
3051
|
+
"shares": "份额",
|
|
3052
|
+
"reservation": "预订",
|
|
3053
|
+
"limit": "限制",
|
|
3054
|
+
"capacity": "容量",
|
|
3055
|
+
"adapter_type": "适配器类型",
|
|
3056
|
+
"mac_address": "MAC 地址",
|
|
3057
|
+
"video_card": "显卡",
|
|
3058
|
+
"total_video_memory": "总视频内存",
|
|
3059
|
+
"number_of_displays": "显示器数量",
|
|
3060
|
+
"other_hardware": "其他硬件",
|
|
3061
|
+
"template": "模板",
|
|
3062
|
+
"drive_cdrom": "CD-ROM 驱动器",
|
|
3063
|
+
"drive_disk": "磁盘驱动器",
|
|
3064
|
+
"network_adapter": "网络适配器",
|
|
3065
|
+
"week": "周",
|
|
3066
|
+
"days": "天",
|
|
3067
|
+
"hours": "小时",
|
|
3068
|
+
"minutes": "分钟",
|
|
3069
|
+
"datacenter": "数据中心"
|
|
2947
3070
|
},
|
|
2948
3071
|
"contextMenu": {
|
|
2949
3072
|
"actionsMenuPower": "力量",
|
|
@@ -3229,6 +3352,8 @@
|
|
|
3229
3352
|
"dateTimeIsoFormat": "日期和时间为ISO 8601格式。",
|
|
3230
3353
|
"deleteConfirmationChartOption": "删除确认",
|
|
3231
3354
|
"deleteConfirmationChartOptionDesc": "您确定要从“默认”中删除图表选项“{0}”吗?",
|
|
3355
|
+
"deleteChartOption": "删除图表选项",
|
|
3356
|
+
"deleteChartOptionDesc": "您确定要从“{1}”中删除图表选项“{0}”吗?",
|
|
3232
3357
|
"from": "从",
|
|
3233
3358
|
"memoryUsage": "内存使用情况",
|
|
3234
3359
|
"memoryFree": "可用内存",
|
|
@@ -3289,7 +3414,243 @@
|
|
|
3289
3414
|
"pagesPerSecond": "每秒页面数",
|
|
3290
3415
|
"kilobytes": "KB",
|
|
3291
3416
|
"faultsPerSecond": "每秒故障数",
|
|
3292
|
-
"memory": "记忆"
|
|
3417
|
+
"memory": "记忆",
|
|
3418
|
+
"readThroughput": "读取吞吐量",
|
|
3419
|
+
"readOperationLatency": "读取操作延迟",
|
|
3420
|
+
"numberOfReadRequests": "读取请求数",
|
|
3421
|
+
"readCommandsIssued": "已发出的读取命令",
|
|
3422
|
+
"readCommandsLatency": "读取命令延迟",
|
|
3423
|
+
"writeThroughput": "写入吞吐量",
|
|
3424
|
+
"writeOperationLatency": "写入操作延迟",
|
|
3425
|
+
"numberOfWriteRequests": "写入请求数",
|
|
3426
|
+
"kbs": "千字节/秒",
|
|
3427
|
+
"ms": "毫秒",
|
|
3428
|
+
"item": "个",
|
|
3429
|
+
"avgCommandsSec": "平均命令/秒",
|
|
3430
|
+
"itemSec": "个/秒",
|
|
3431
|
+
"avgReadReqSec": "平均读取请求/秒",
|
|
3432
|
+
"avgWriteReqSec": "平均写入请求/秒",
|
|
3433
|
+
"readOpsSec": "读取操作/秒",
|
|
3434
|
+
"opsSec": "操作/秒",
|
|
3435
|
+
"readThroughput2": "读取吞吐量",
|
|
3436
|
+
"bS": "字节/秒",
|
|
3437
|
+
"readRetransSec": "读取重传/秒",
|
|
3438
|
+
"readTimeoutsSec": "读取超时/秒",
|
|
3439
|
+
"avgReadExecTime": "平均读取执行时间",
|
|
3440
|
+
"avgReadRtt": "平均读取 RTT",
|
|
3441
|
+
"writeOpsSec": "写入操作/秒",
|
|
3442
|
+
"writeThroughput2": "写入吞吐量",
|
|
3443
|
+
"writeRetransSec": "写入重传/秒",
|
|
3444
|
+
"writeTimeoutsSec": "写入超时/秒",
|
|
3445
|
+
"avgWriteExecTime": "平均写入执行时间",
|
|
3446
|
+
"avgWriteRtt": "平均写入 RTT",
|
|
3447
|
+
"getAttributesSec": "获取属性/秒",
|
|
3448
|
+
"lookupOpsSec": "查找操作/秒",
|
|
3449
|
+
"accessCheckSec": "访问检查/秒",
|
|
3450
|
+
"totalOpsSec": "总操作数/秒",
|
|
3451
|
+
"totalThroughput": "总吞吐量",
|
|
3452
|
+
"totalRetransSec": "总重传数/秒",
|
|
3453
|
+
"totalTimeoutsSec": "总超时数/秒",
|
|
3454
|
+
"avgTotalExecTime": "平均总执行时间",
|
|
3455
|
+
"avgTotalRtt": "平均总 RTT",
|
|
3456
|
+
"rpcCallsSec": "RPC 调用/秒",
|
|
3457
|
+
"rpcRetransSec": "RPC 重传/秒",
|
|
3458
|
+
"rpcAuthRefreshSec": "RPC 身份验证刷新/秒",
|
|
3459
|
+
"nullOpsSec": "NULL 次操作/秒",
|
|
3460
|
+
"compoundOpsSec": "COMPOUND 次操作/秒",
|
|
3461
|
+
"openOpsSec": "OPEN 次操作/秒",
|
|
3462
|
+
"openConfirmSec": "OPEN_CONFIRM/秒",
|
|
3463
|
+
"openNoattrSec": "OPEN_NOATTR/秒",
|
|
3464
|
+
"openDowngradeSec": "OPEN_DOWNGRADE/秒",
|
|
3465
|
+
"closeOpsSec": "CLOSE 次操作/秒",
|
|
3466
|
+
"setattrOpsSec": "SETATTR 次操作/秒",
|
|
3467
|
+
"fsinfoOpsSec": "FSINFO 次操作/秒",
|
|
3468
|
+
"renewOpsSec": "RENEW 次操作/秒",
|
|
3469
|
+
"setclientidSec": "SETCLIENTID/秒",
|
|
3470
|
+
"setclientidConfirmSec": "SETCLIENTID_CONFIRM/秒",
|
|
3471
|
+
"lockOpsSec": "LOCK 次操作/秒",
|
|
3472
|
+
"locktOpsSec": "LOCKT 次操作/秒",
|
|
3473
|
+
"lockuOpsSec": "LOCKU 次操作/秒",
|
|
3474
|
+
"accessOpsSec": "ACCESS 次操作/秒",
|
|
3475
|
+
"getattrOpsSec": "GETATTR 次操作/秒",
|
|
3476
|
+
"lookupRootSec": "LOOKUP_ROOT/秒",
|
|
3477
|
+
"readOpsSec2": "READ 次操作/秒",
|
|
3478
|
+
"readdirOpsSec": "READDIR 次操作/秒",
|
|
3479
|
+
"readlinkSec": "READLINK/秒",
|
|
3480
|
+
"removeOpsSec": "REMOVE 次操作/秒",
|
|
3481
|
+
"renameOpsSec": "RENAME 次操作/秒",
|
|
3482
|
+
"linkOpsSec": "LINK 次操作/秒",
|
|
3483
|
+
"symlinkSec": "SYMLINK/秒",
|
|
3484
|
+
"createopsSec": "CREATE 次操作/秒",
|
|
3485
|
+
"pathconfSec": "PATHCONF/秒",
|
|
3486
|
+
"statfsSec": "STATFS/秒",
|
|
3487
|
+
"writeOpsSec2": "WRITE 次操作/秒",
|
|
3488
|
+
"commitSec": "COMMIT/秒",
|
|
3489
|
+
"delegreturnSec": "DELEGRETURN/秒",
|
|
3490
|
+
"getfhSec": "GETFH/秒",
|
|
3491
|
+
"secinfoSec": "SECINFO/秒",
|
|
3492
|
+
"restorefhSec": "RESTOREFH/秒",
|
|
3493
|
+
"savefhSec": "SAVEFH/秒",
|
|
3494
|
+
"chooseSettings": "选择设置",
|
|
3495
|
+
"deleteOptionSettings": "删除设置",
|
|
3496
|
+
"totalIOSpeed": "总 I/O 速度",
|
|
3497
|
+
"custom": "自定义",
|
|
3498
|
+
"chartColor": "图表颜色",
|
|
3499
|
+
"metricName": "指标名称",
|
|
3500
|
+
"metricDescription": "指标说明",
|
|
3501
|
+
"unitOfMeasurement": "计量单位",
|
|
3502
|
+
"cpuUsage": "CPU 使用率",
|
|
3503
|
+
"vCpus": "虚拟 CPU",
|
|
3504
|
+
"cpuUsed": "已用 CPU",
|
|
3505
|
+
"coresPerSocket": "每个插槽的核心数",
|
|
3506
|
+
"totalCpuTime": "总 CPU 时间",
|
|
3507
|
+
"provisionedMhz2": "已分配 MHz",
|
|
3508
|
+
"cpuLimit": "CPU 限制",
|
|
3509
|
+
"userTime": "用户时间",
|
|
3510
|
+
"systemTime": "系统时间",
|
|
3511
|
+
"childrenUserTime": "子进程用户时间",
|
|
3512
|
+
"childrenSystemTime": "子进程系统时间",
|
|
3513
|
+
"coStopTime": "协同停止时间",
|
|
3514
|
+
"throttledTime": "限流时间",
|
|
3515
|
+
"cpuLatency": "CPU 延迟",
|
|
3516
|
+
"swapWait": "交换等待时间",
|
|
3517
|
+
"hypervisorOverlap": "Hypervisor 重叠",
|
|
3518
|
+
"cpuDemand2": "CPU 需求",
|
|
3519
|
+
"cpuEntitlement": "CPU 权益",
|
|
3520
|
+
"numaNode": "NUMA 节点",
|
|
3521
|
+
"ticks": "标记",
|
|
3522
|
+
"affinityViolations": "亲和性违反",
|
|
3523
|
+
"chartOptionsVmCpuDescription1": "时间间隔内的 CPU 使用率百分比",
|
|
3524
|
+
"chartOptionsVmCpuDescription2": "以兆赫为单位的 CPU 使用量",
|
|
3525
|
+
"chartOptionsVmCpuDescription3": "当前分配的虚拟 CPU 数量",
|
|
3526
|
+
"chartOptionsVmCpuDescription4": "每个插槽的 CPU 核心数",
|
|
3527
|
+
"chartOptionsVmCpuDescription5": "虚拟机进程消耗的总 CPU 时间",
|
|
3528
|
+
"chartOptionsVmCpuDescription6": "分配给虚拟机的已配置 MHz",
|
|
3529
|
+
"chartOptionsVmCpuDescription7": "以 MHz 为单位的 CPU 限制(资源限制)",
|
|
3530
|
+
"chartOptionsVmCpuDescription8": "在用户空间花费的 CPU 时间",
|
|
3531
|
+
"chartOptionsVmCpuDescription9": "在内核空间花费的 CPU 时间",
|
|
3532
|
+
"chartOptionsVmCpuDescription10": "子进程在用户空间的 CPU 时间",
|
|
3533
|
+
"chartOptionsVmCpuDescription11": "子进程在内核空间的 CPU 时间",
|
|
3534
|
+
"chartOptionsVmCpuDescription12": "协同停止时间 — 由于 SMP 同步开销导致 vCPU 停止",
|
|
3535
|
+
"chartOptionsVmCpuDescription13": "受 MHz 上限限制的 CPU 时间(cgroup/资源限制)",
|
|
3536
|
+
"chartOptionsVmCpuDescription14": "调度延迟 — vCPU 在调度程序运行队列中的等待时间 (/proc/schedstat)",
|
|
3537
|
+
"chartOptionsVmCpuDescription15": "由于交换 I/O 操作导致的 CPU 等待时间",
|
|
3538
|
+
"chartOptionsVmCpuDescription16": "虚拟机管理程序为虚拟机提供服务所消耗的 CPU 时间(系统时间代理)",
|
|
3539
|
+
"chartOptionsVmCpuDescription17": "当前 CPU 需求(以 MHz 为单位)(实际资源消耗)",
|
|
3540
|
+
"chartOptionsVmCpuDescription18": "CPU 权益 — 虚拟机有权使用的 MHz(限制或比例份额)",
|
|
3541
|
+
"chartOptionsVmCpuDescription19": "虚拟机进程当前正在运行的 NUMA 节点",
|
|
3542
|
+
"chartOptionsVmCpuDescription20": "虚拟机在其允许的亲和性集合之外的 CPU 上运行的次数",
|
|
3543
|
+
"virtualMemory": "虚拟内存",
|
|
3544
|
+
"physicalMemoryRss": "物理内存 (RSS)",
|
|
3545
|
+
"sharedPages2": "共享页",
|
|
3546
|
+
"codeSegment": "代码段",
|
|
3547
|
+
"sharedLibraries": "共享库",
|
|
3548
|
+
"dataStack2": "数据 + 堆栈",
|
|
3549
|
+
"dirtyPages2": "脏页",
|
|
3550
|
+
"balloonCurrent": "当前气球",
|
|
3551
|
+
"balloonMax": "最大气球",
|
|
3552
|
+
"balloonRss": "气球 RSS",
|
|
3553
|
+
"vmSwap": "虚拟机交换",
|
|
3554
|
+
"peakVirtualMemory": "峰值虚拟内存",
|
|
3555
|
+
"peakPhysicalMemory": "峰值物理内存",
|
|
3556
|
+
"memoryConsumed": "已消耗内存",
|
|
3557
|
+
"memoryOverhead": "内存开销",
|
|
3558
|
+
"memoryGranted": "已授予内存",
|
|
3559
|
+
"activeMemory": "活动内存",
|
|
3560
|
+
"activeWriteMemory": "活动写入内存",
|
|
3561
|
+
"compressedMemory": "压缩内存",
|
|
3562
|
+
"compressionRate": "压缩率",
|
|
3563
|
+
"memorySwapped": "已交换内存",
|
|
3564
|
+
"swapInRate": "换入速率",
|
|
3565
|
+
"swapOutRate": "换出速率",
|
|
3566
|
+
"memoryLatency": "内存延迟",
|
|
3567
|
+
"memoryEntitlement": "内存权益",
|
|
3568
|
+
"numaLocalRatio": "NUMA 本地性比率",
|
|
3569
|
+
"chartOptionsVmMemoryDescription1": "虚拟机进程的总虚拟内存大小",
|
|
3570
|
+
"chartOptionsVmMemoryDescription2": "常驻集大小 — 实际使用的物理内存",
|
|
3571
|
+
"chartOptionsVmMemoryDescription3": "共享内存页(共享库,mmap)",
|
|
3572
|
+
"chartOptionsVmMemoryDescription4": "代码段大小(可执行代码页)",
|
|
3573
|
+
"chartOptionsVmMemoryDescription5": "共享库内存大小",
|
|
3574
|
+
"chartOptionsVmMemoryDescription6": "数据 + 堆栈段大小",
|
|
3575
|
+
"chartOptionsVmMemoryDescription7": "内存中已修改但尚未写入磁盘的页面",
|
|
3576
|
+
"chartOptionsVmMemoryDescription8": "当前气球设备大小 — 通过气球从客户机回收的内存",
|
|
3577
|
+
"chartOptionsVmMemoryDescription9": "最大气球大小 — 气球膨胀的上限",
|
|
3578
|
+
"chartOptionsVmMemoryDescription10": "气球 RSS — 气球设备使用的物理内存",
|
|
3579
|
+
"chartOptionsVmMemoryDescription11": "虚拟机进程使用的交换空间(来自 /proc/status 的 VmSwap)",
|
|
3580
|
+
"chartOptionsVmMemoryDescription12": "虚拟机进程的峰值虚拟内存大小 (VmPeak)",
|
|
3581
|
+
"chartOptionsVmMemoryDescription13": "RSS 的高水位线 (VmHWM) — 使用的峰值物理内存",
|
|
3582
|
+
"chartOptionsVmMemoryDescription14": "虚拟机消耗的内存 (RSS) — 实际物理内存使用量",
|
|
3583
|
+
"chartOptionsVmMemoryDescription15": "内存开销 (VmSize - RSS) — 没有物理内存支持的虚拟内存",
|
|
3584
|
+
"chartOptionsVmMemoryDescription16": "通过气球设备授予客户机的内存 (BalloonCurrent)",
|
|
3585
|
+
"chartOptionsVmMemoryDescription17": "活动物理内存 (RSS) — 当前正在使用的页面",
|
|
3586
|
+
"chartOptionsVmMemoryDescription18": "活动写入内存 — 脏匿名页 (RssAnon)",
|
|
3587
|
+
"chartOptionsVmMemoryDescription19": "虚拟机使用的 zswap/zram 中的压缩内存",
|
|
3588
|
+
"chartOptionsVmMemoryDescription20": "内存压缩率 (VmSwap / BalloonMaximum × 100)",
|
|
3589
|
+
"chartOptionsVmMemoryDescription21": "虚拟机进程使用的交换内存",
|
|
3590
|
+
"chartOptionsVmMemoryDescription22": "换入速率 — 每个采集周期从 /proc/[pid]/io 读取的字节数",
|
|
3591
|
+
"chartOptionsVmMemoryDescription23": "换出速率 — 每个采集周期从 /proc/[pid]/io 写入的字节数",
|
|
3592
|
+
"chartOptionsVmMemoryDescription24": "内存访问延迟指示器(主要页面错误作为代理)",
|
|
3593
|
+
"chartOptionsVmMemoryDescription25": "内存权益 — BalloonMaximum,虚拟机可以使用的最大内存",
|
|
3594
|
+
"chartOptionsVmMemoryDescription26": "NUMA 本地内存分配与总量的比率",
|
|
3595
|
+
"chartOptionsVmMemoryDescription27": "虚拟机进程使用的底层交换空间 (VmSwap)",
|
|
3596
|
+
"diskRead": "磁盘读取",
|
|
3597
|
+
"diskWrite": "磁盘写入",
|
|
3598
|
+
"readOperations": "读取操作数",
|
|
3599
|
+
"writeOperations": "写入操作数",
|
|
3600
|
+
"maxDiskLatency": "最大磁盘延迟",
|
|
3601
|
+
"readIOPS": "读取 IOPS",
|
|
3602
|
+
"writeIOPS": "写入 IOPS",
|
|
3603
|
+
"queueDepth": "队列深度",
|
|
3604
|
+
"pendingReads": "待处理读取",
|
|
3605
|
+
"pendingWrites": "待处理写入",
|
|
3606
|
+
"readLatency2": "读取延迟",
|
|
3607
|
+
"writeLatency2": "写入延迟",
|
|
3608
|
+
"smallSeeks": "小范围寻道",
|
|
3609
|
+
"mediumSeeks": "中等范围寻道",
|
|
3610
|
+
"largeSeeks": "大范围寻道",
|
|
3611
|
+
"chartOptionsVmDiskDescription1": "磁盘读取吞吐量 — 每秒读取字节数",
|
|
3612
|
+
"chartOptionsVmDiskDescription2": "磁盘写入吞吐量 — 每秒写入字节数",
|
|
3613
|
+
"chartOptionsVmDiskDescription3": "时间间隔内的读取操作数",
|
|
3614
|
+
"chartOptionsVmDiskDescription4": "时间间隔内的写入操作数",
|
|
3615
|
+
"chartOptionsVmDiskDescription5": "平均读/写延迟的最大值",
|
|
3616
|
+
"chartOptionsVmDiskDescription6": "读取 IOPS — 来自 /proc/[pid]/io 的系统调用读取操作",
|
|
3617
|
+
"chartOptionsVmDiskDescription7": "写入 IOPS — 来自 /proc/[pid]/io 的系统调用写入操作",
|
|
3618
|
+
"chartOptionsVmDiskDescription8": "近似 I/O 队列深度(Little 定律:IOPS × 延迟)",
|
|
3619
|
+
"chartOptionsVmDiskDescription9": "未完成的读取 I/O — 待处理的读取(字节/操作/4096)",
|
|
3620
|
+
"chartOptionsVmDiskDescription10": "未完成的写入 I/O — 待处理的写入(字节/操作/4096)",
|
|
3621
|
+
"chartOptionsVmDiskDescription11": "读取负载 — 每次 I/O 操作的平均读取延迟",
|
|
3622
|
+
"chartOptionsVmDiskDescription12": "写入负载 — 每次 I/O 操作的平均写入延迟",
|
|
3623
|
+
"chartOptionsVmDiskDescription13": "磁盘小范围寻道次数(< 64 个扇区)",
|
|
3624
|
+
"chartOptionsVmDiskDescription14": "磁盘中等范围寻道次数(64–1024 个扇区)",
|
|
3625
|
+
"chartOptionsVmDiskDescription15": "磁盘大范围寻道次数(> 1024 个扇区)",
|
|
3626
|
+
"networkTraffic": "网络流量",
|
|
3627
|
+
"bytesTransmitted2": "已发送字节数",
|
|
3628
|
+
"bytesReceived2": "已接收字节数",
|
|
3629
|
+
"transmitErrors": "发送错误数",
|
|
3630
|
+
"receiveErrors": "接收错误数",
|
|
3631
|
+
"packetsTransmitted2": "已发送数据包数",
|
|
3632
|
+
"packetsReceived2": "已接收数据包数",
|
|
3633
|
+
"transmitDrops": "发送丢弃数",
|
|
3634
|
+
"receiveDrops": "接收丢弃数",
|
|
3635
|
+
"broadcastTransmitted": "广播发送数",
|
|
3636
|
+
"broadcastReceived": "广播接收数",
|
|
3637
|
+
"multicastTransmitted": "组播发送数",
|
|
3638
|
+
"multicastReceived": "组播接收数",
|
|
3639
|
+
"chartOptionsVmNetworkDescription1": "所有 VM 接口聚合的总网络流量(TX + RX 字节)",
|
|
3640
|
+
"chartOptionsVmNetworkDescription2": "每个接口每秒发送的字节数",
|
|
3641
|
+
"chartOptionsVmNetworkDescription3": "每个接口每秒接收的字节数",
|
|
3642
|
+
"chartOptionsVmNetworkDescription4": "每个接口的发送错误数",
|
|
3643
|
+
"chartOptionsVmNetworkDescription5": "每个接口的接收错误数",
|
|
3644
|
+
"chartOptionsVmNetworkDescription6": "每个接口发送的数据包数",
|
|
3645
|
+
"chartOptionsVmNetworkDescription7": "每个接口接收的数据包数",
|
|
3646
|
+
"chartOptionsVmNetworkDescription8": "每个接口发送时丢弃的数据包数",
|
|
3647
|
+
"chartOptionsVmNetworkDescription9": "每个接口接收时丢弃的数据包数",
|
|
3648
|
+
"chartOptionsVmNetworkDescription10": "广播数据包发送数",
|
|
3649
|
+
"chartOptionsVmNetworkDescription11": "广播数据包接收数",
|
|
3650
|
+
"chartOptionsVmNetworkDescription12": "组播数据包发送数",
|
|
3651
|
+
"chartOptionsVmNetworkDescription13": "组播数据包接收数",
|
|
3652
|
+
"virtualMachineCpu": "虚拟机 CPU",
|
|
3653
|
+
"virtualMachineMemory": "虚拟机内存"
|
|
3293
3654
|
},
|
|
3294
3655
|
"inventoryTabs": {
|
|
3295
3656
|
"summary": "概括",
|
|
@@ -3331,7 +3692,9 @@
|
|
|
3331
3692
|
"snapshotHasNoDescriptionYet": "此快照尚无描述。",
|
|
3332
3693
|
"takeSnapshot": "快照",
|
|
3333
3694
|
"newSnapshot": "新快照",
|
|
3334
|
-
"editSnapshot": "编辑快照"
|
|
3695
|
+
"editSnapshot": "编辑快照",
|
|
3696
|
+
"revertLatestSnapshot": "回到上一张照片",
|
|
3697
|
+
"consolidateSnapshots": "合并快照"
|
|
3335
3698
|
},
|
|
3336
3699
|
"importVms": {
|
|
3337
3700
|
"selectSourceTooltipDesc": "Esxi用户权限必须对应于管理员角色. esxi和vSphere接受积分",
|
|
@@ -3346,7 +3709,9 @@
|
|
|
3346
3709
|
"liveMigrationDesc": "虚拟机在不中断服务的情况下实时迁移到新主机。用户和应用程序几乎不会感受到停机。",
|
|
3347
3710
|
"ramSuspendMigrationDesc": "虚拟机被挂起,其RAM内容被保存并传输到新主机。随后,它将从完全相同的状态继续运行。",
|
|
3348
3711
|
"offlineMigrationDesc": "虚拟机完全关闭,然后其状态和数据被传输到新主机。在迁移过程中,服务将不可用。",
|
|
3349
|
-
"strategyMigrationErrorDesc": "无法执行操作:虚拟机处于不支持状态。允许的状态被“电源关闭”(PowerOff)或“电源上的电源”(Poweron)。请将VM设置为这些状态之一,然后重试。"
|
|
3712
|
+
"strategyMigrationErrorDesc": "无法执行操作:虚拟机处于不支持状态。允许的状态被“电源关闭”(PowerOff)或“电源上的电源”(Poweron)。请将VM设置为这些状态之一,然后重试。",
|
|
3713
|
+
"changeComputeResourceStorageVirtualMachine": "更改虚拟机的计算资源或存储。",
|
|
3714
|
+
"reviewDetailsBeforeVmMigrated": "在迁移虚拟机之前,请检查详细信息。"
|
|
3350
3715
|
},
|
|
3351
3716
|
"storageAdapters": {
|
|
3352
3717
|
"none": "没有什么",
|
|
@@ -3380,7 +3745,14 @@
|
|
|
3380
3745
|
"second": "第二",
|
|
3381
3746
|
"third": "第三",
|
|
3382
3747
|
"fourth": "第四",
|
|
3383
|
-
"once": "一次"
|
|
3748
|
+
"once": "一次",
|
|
3749
|
+
"selectFrequency": "选择频率",
|
|
3750
|
+
"frequency": "频率",
|
|
3751
|
+
"delayMinutes": "延迟(分钟)",
|
|
3752
|
+
"selectPosition": "选择位置",
|
|
3753
|
+
"selectDay": "选择日期",
|
|
3754
|
+
"emails": "电子邮件",
|
|
3755
|
+
"taskDetails": "任务详情"
|
|
3384
3756
|
},
|
|
3385
3757
|
"license": {
|
|
3386
3758
|
"limits": "限制",
|
|
@@ -3543,7 +3915,11 @@
|
|
|
3543
3915
|
"metricsNotFound": "未找到指标",
|
|
3544
3916
|
"uploadFolder": "上传文件夹",
|
|
3545
3917
|
"uploadFiles": "上传文件",
|
|
3546
|
-
"clickForUse": "点击使用"
|
|
3918
|
+
"clickForUse": "点击使用",
|
|
3919
|
+
"tryingToConnect": "正在尝试连接到虚拟机...",
|
|
3920
|
+
"connectionTimedOut": "连接超时。",
|
|
3921
|
+
"connectionTimedOutDesc": "虚拟机正在使用中或已关闭",
|
|
3922
|
+
"connectionTimedOutBtn": "点击此处重新加载页面"
|
|
3547
3923
|
},
|
|
3548
3924
|
"vmWizard": {
|
|
3549
3925
|
"selectCreationType": "选择创建类型",
|
|
@@ -3607,7 +3983,9 @@
|
|
|
3607
3983
|
"rangeEndOutOfRange": "范围结束值 {0} 超出有效范围 (0-{1})",
|
|
3608
3984
|
"rangeDuplicate": "处理器 {0} 被多次指定",
|
|
3609
3985
|
"invalidFormat": "无效格式: \"{0}\"。请使用数字(例如 \"0\")或范围(例如 \"0-3\")",
|
|
3610
|
-
"encriptionPolicy": "加密策略"
|
|
3986
|
+
"encriptionPolicy": "加密策略",
|
|
3987
|
+
"maxParallel": "最大并行",
|
|
3988
|
+
"lastCloneSubtitle": "克隆虚拟机之前请查看详细信息。"
|
|
3611
3989
|
},
|
|
3612
3990
|
"feedback": {
|
|
3613
3991
|
"additionalDetailsHelp": "其他详细信息帮助",
|
|
@@ -3662,7 +4040,8 @@
|
|
|
3662
4040
|
"up": "向上"
|
|
3663
4041
|
},
|
|
3664
4042
|
"adapter": {
|
|
3665
|
-
"disable": "禁用"
|
|
4043
|
+
"disable": "禁用",
|
|
4044
|
+
"rescanAdapterTitle": "要激活,请选择一个适配器"
|
|
3666
4045
|
},
|
|
3667
4046
|
"bottomPanel": {
|
|
3668
4047
|
"failed": "失败的"
|
|
@@ -3674,7 +4053,181 @@
|
|
|
3674
4053
|
"noPrivilegesAdded": "没有特权。请添加一些查看。",
|
|
3675
4054
|
"pleaseMakeSureSelectRoleViewDetails": "请确保选择角色以查看其详细信息。",
|
|
3676
4055
|
"noRolesCreatedYet": "还没有角色信条。请添加一个新角色以开始。",
|
|
3677
|
-
"deleteRoleDesc": "确定要删除角色 {0} 吗? 此操作无法撤消。"
|
|
4056
|
+
"deleteRoleDesc": "确定要删除角色 {0} 吗? 此操作无法撤消。",
|
|
4057
|
+
"showBackup": "显示备份",
|
|
4058
|
+
"no_access": "无访问权限",
|
|
4059
|
+
"restrict_access": "限制访问",
|
|
4060
|
+
"read_only": "只读",
|
|
4061
|
+
"read_only_access": "只读访问权限",
|
|
4062
|
+
"administrator": "管理员",
|
|
4063
|
+
"full_access_rights": "完全访问权限",
|
|
4064
|
+
"rbac": "RBAC",
|
|
4065
|
+
"tasks": "任务",
|
|
4066
|
+
"event_console": "事件控制台",
|
|
4067
|
+
"identity_providers": "身份提供商",
|
|
4068
|
+
"metadata": "元数据",
|
|
4069
|
+
"show_backups": "显示备份",
|
|
4070
|
+
"show_events": "显示事件",
|
|
4071
|
+
"show_identity_providers": "显示身份提供商",
|
|
4072
|
+
"show_cluster": "显示集群",
|
|
4073
|
+
"show_templates": "显示模板",
|
|
4074
|
+
"show_network": "显示网络",
|
|
4075
|
+
"show_buckets": "显示存储桶",
|
|
4076
|
+
"show_rbac": "显示 RBAC",
|
|
4077
|
+
"show_zone": "显示区域",
|
|
4078
|
+
"show_ghydra": "显示 Ghydra",
|
|
4079
|
+
"show_datacenter": "显示数据中心",
|
|
4080
|
+
"show_tasks": "显示任务",
|
|
4081
|
+
"show_vm": "显示虚拟机",
|
|
4082
|
+
"show_snapshots": "显示快照",
|
|
4083
|
+
"show_scheduled_task": "显示计划任务",
|
|
4084
|
+
"show_datastore": "显示数据存储",
|
|
4085
|
+
"show_datastore_files": "显示数据存储文件",
|
|
4086
|
+
"show_host": "显示主机",
|
|
4087
|
+
"upload_file": "上传文件",
|
|
4088
|
+
"rename_item": "重命名项目",
|
|
4089
|
+
"delete_item": "删除项目",
|
|
4090
|
+
"enter_maintenance_mode": "进入维护模式",
|
|
4091
|
+
"move_datastore": "移动数据存储",
|
|
4092
|
+
"create_datastore": "创建数据存储",
|
|
4093
|
+
"remove_datastore": "删除数据存储",
|
|
4094
|
+
"new_folder": "新建文件夹",
|
|
4095
|
+
"make_empty_file": "创建空文件",
|
|
4096
|
+
"copy_item": "复制项目",
|
|
4097
|
+
"move_item": "移动项目",
|
|
4098
|
+
"exit_maintenance_mode": "退出维护模式",
|
|
4099
|
+
"erase_storage_devices": "擦除存储设备",
|
|
4100
|
+
"create_iscsi_adapter": "创建 iSCSI 适配器",
|
|
4101
|
+
"connect_host_console": "连接主机控制台",
|
|
4102
|
+
"remove_host": "删除主机",
|
|
4103
|
+
"move_host": "移动主机",
|
|
4104
|
+
"update_storage_devices": "更新存储设备",
|
|
4105
|
+
"update_iscsi_adapter": "更新 iSCSI 适配器",
|
|
4106
|
+
"delete_iscsi_adapter": "删除 iSCSI 适配器",
|
|
4107
|
+
"update_storage_adapters": "更新存储适配器",
|
|
4108
|
+
"power_on_vm": "启动虚拟机",
|
|
4109
|
+
"reset_vm": "重置虚拟机",
|
|
4110
|
+
"delete_snapshot": "删除快照",
|
|
4111
|
+
"migrate_host": "迁移主机",
|
|
4112
|
+
"create_vm": "创建虚拟机",
|
|
4113
|
+
"hard_stop_vm": "强制停止虚拟机",
|
|
4114
|
+
"clone_vm": "克隆虚拟机",
|
|
4115
|
+
"restore_backup": "恢复备份",
|
|
4116
|
+
"power_off_vm": "关闭虚拟机",
|
|
4117
|
+
"restart_guest": "重启客户机系统",
|
|
4118
|
+
"unmount_guest_tools": "卸载客户机工具",
|
|
4119
|
+
"update_scheduled_task": "更新计划任务",
|
|
4120
|
+
"create_backup": "创建备份",
|
|
4121
|
+
"delete_backup": "删除备份",
|
|
4122
|
+
"register_vm": "注册虚拟机",
|
|
4123
|
+
"delete_all_snapshots": "删除所有快照",
|
|
4124
|
+
"remove_from_disk": "从磁盘删除",
|
|
4125
|
+
"rename_vm": "重命名虚拟机",
|
|
4126
|
+
"convert_vm_to_template": "将虚拟机转换为模板",
|
|
4127
|
+
"delete_backups": "删除备份",
|
|
4128
|
+
"mount_guest_tools": "挂载客户机工具",
|
|
4129
|
+
"revert_snapshot": "还原快照",
|
|
4130
|
+
"move_vm": "移动虚拟机",
|
|
4131
|
+
"migrate_datastore": "迁移数据存储",
|
|
4132
|
+
"migrate_combined": "组合迁移",
|
|
4133
|
+
"import_esxi": "导入 ESXi",
|
|
4134
|
+
"resume_vm": "恢复虚拟机",
|
|
4135
|
+
"delete_scheduled_task": "删除计划任务",
|
|
4136
|
+
"update_vm": "更新虚拟机",
|
|
4137
|
+
"shutdown_guest": "关闭客户机系统",
|
|
4138
|
+
"update_snapshot": "更新快照",
|
|
4139
|
+
"remove_from_inventory": "从清单中移除",
|
|
4140
|
+
"connect_vm_console": "连接虚拟机控制台",
|
|
4141
|
+
"take_snapshot": "创建快照",
|
|
4142
|
+
"suspend_vm": "挂起虚拟机",
|
|
4143
|
+
"create_scheduled_task": "创建计划任务",
|
|
4144
|
+
"show_notebook": "显示笔记本",
|
|
4145
|
+
"update_notebook": "更新笔记本",
|
|
4146
|
+
"show_custom_attributes": "显示自定义属性",
|
|
4147
|
+
"create_custom_attribute": "创建自定义属性",
|
|
4148
|
+
"update_custom_attribute": "更新自定义属性",
|
|
4149
|
+
"delete_custom_attribute": "删除自定义属性",
|
|
4150
|
+
"update_retention_settings": "更新保留设置",
|
|
4151
|
+
"remove_identity_provider": "移除身份提供者",
|
|
4152
|
+
"set_default_identity_provider": "设置默认身份提供者",
|
|
4153
|
+
"update_user": "更新用户",
|
|
4154
|
+
"kick_user": "踢出用户",
|
|
4155
|
+
"confirm_two_factor_setup": "确认双因素设置",
|
|
4156
|
+
"reset_user_two_factor": "重置用户双因素",
|
|
4157
|
+
"create_identity_provider": "创建身份提供者",
|
|
4158
|
+
"block_user": "阻止用户",
|
|
4159
|
+
"revoke_user_tokens": "撤销用户令牌",
|
|
4160
|
+
"remove_user": "移除用户",
|
|
4161
|
+
"unblock_user": "解除阻止用户",
|
|
4162
|
+
"view_blocked_users": "查看被阻止用户",
|
|
4163
|
+
"update_security_policies": "更新安全策略",
|
|
4164
|
+
"create_user": "创建用户",
|
|
4165
|
+
"kick_user_session": "踢出用户会话",
|
|
4166
|
+
"change_user_password": "更改用户密码",
|
|
4167
|
+
"disable_two_factor": "禁用双因素认证",
|
|
4168
|
+
"create_group": "创建组",
|
|
4169
|
+
"remove_role": "删除角色",
|
|
4170
|
+
"update_group": "更新组",
|
|
4171
|
+
"create_role": "创建角色",
|
|
4172
|
+
"create_global_permission": "创建全局权限",
|
|
4173
|
+
"remove_global_permission": "删除全局权限",
|
|
4174
|
+
"update_object_permission": "更新对象权限",
|
|
4175
|
+
"clone_role": "克隆角色",
|
|
4176
|
+
"update_global_permission": "更新全局权限",
|
|
4177
|
+
"create_object_permission": "创建对象权限",
|
|
4178
|
+
"remove_object_permission": "删除对象权限",
|
|
4179
|
+
"remove_group": "删除组",
|
|
4180
|
+
"remove_group_member": "删除组成员",
|
|
4181
|
+
"update_role": "更新角色",
|
|
4182
|
+
"remove_ghydra_member": "删除Ghydra成员",
|
|
4183
|
+
"rename_folder": "重命名文件夹",
|
|
4184
|
+
"move_folder": "移动文件夹",
|
|
4185
|
+
"add_ghydra_member": "添加Ghydra成员",
|
|
4186
|
+
"change_ghydra_leader": "更改Ghydra领导者",
|
|
4187
|
+
"set_ghydra_standalone": "设置Ghydra独立运行",
|
|
4188
|
+
"create_zone": "创建区域",
|
|
4189
|
+
"rename_zone": "重命名区域",
|
|
4190
|
+
"remove_zone": "删除区域",
|
|
4191
|
+
"delete_folder": "删除文件夹",
|
|
4192
|
+
"init_ghydra": "初始化Ghydra",
|
|
4193
|
+
"create_cluster": "创建集群",
|
|
4194
|
+
"remove_cluster": "删除集群",
|
|
4195
|
+
"rename_cluster": "重命名集群",
|
|
4196
|
+
"add_hosts_to_cluster": "向集群添加主机",
|
|
4197
|
+
"update_drs_settings": "更新DRS设置",
|
|
4198
|
+
"schedule_update_drs": "安排DRS更新",
|
|
4199
|
+
"move_cluster": "移动集群",
|
|
4200
|
+
"update_ha_settings": "更新HA设置",
|
|
4201
|
+
"delete_template_from_inventory": "从库存删除模板",
|
|
4202
|
+
"delete_template_from_disk": "从磁盘删除模板",
|
|
4203
|
+
"rename_template": "重命名模板",
|
|
4204
|
+
"move_template": "移动模板",
|
|
4205
|
+
"deploy_vm_from_template": "从模板部署虚拟机",
|
|
4206
|
+
"convert_template_to_vm": "将模板转换为虚拟机",
|
|
4207
|
+
"create_switch": "创建交换机",
|
|
4208
|
+
"update_info_sysx": "更新Sysx信息",
|
|
4209
|
+
"remove_port_group": "删除端口组",
|
|
4210
|
+
"update_sysx": "更新Sysx",
|
|
4211
|
+
"move_network": "移动网络",
|
|
4212
|
+
"create_port_group": "创建端口组",
|
|
4213
|
+
"create_sysx": "创建Sysx",
|
|
4214
|
+
"remove_switch": "删除交换机",
|
|
4215
|
+
"remove_sysx": "删除Sysx",
|
|
4216
|
+
"update_port_group": "更新端口组",
|
|
4217
|
+
"update_switch": "更新交换机",
|
|
4218
|
+
"create_datacenter": "创建数据中心",
|
|
4219
|
+
"rename_datacenter": "重命名数据中心",
|
|
4220
|
+
"move_datacenter": "移动数据中心",
|
|
4221
|
+
"remove_datacenter": "删除数据中心",
|
|
4222
|
+
"add_host_to_datacenter": "向数据中心添加主机",
|
|
4223
|
+
"move_backup_storage": "移动备份存储",
|
|
4224
|
+
"create_backup_storage": "创建备份存储",
|
|
4225
|
+
"delete_backup_storage": "删除备份存储",
|
|
4226
|
+
"backup_enter_maintenance_mode": "备份进入维护模式",
|
|
4227
|
+
"backup_exit_maintenance_mode": "备份退出维护模式",
|
|
4228
|
+
"datacenters": "数据中心",
|
|
4229
|
+
"backup": "备份",
|
|
4230
|
+
"templates": "模板"
|
|
3678
4231
|
},
|
|
3679
4232
|
"backup": {
|
|
3680
4233
|
"selectName": "选择名称",
|
|
@@ -3698,13 +4251,13 @@
|
|
|
3698
4251
|
"backupCreationReview": "创建备份前请仔细核对详细信息。",
|
|
3699
4252
|
"restoreBackupReviewSubtitle": "在从备份恢复现有虚拟机之前,请查看详细信息。",
|
|
3700
4253
|
"diskCopyN": "磁盘(副本){0}",
|
|
3701
|
-
"createBackupCommonSubtitle": "
|
|
4254
|
+
"createBackupCommonSubtitle": "为备份指定唯一的名称和描述。",
|
|
3702
4255
|
"virtualMachineName": "虚拟机名称",
|
|
3703
4256
|
"restoreBackupSelectNameSubtitle": "为虚拟机指定唯一名称。",
|
|
3704
|
-
"nameValidationDescription": "
|
|
4257
|
+
"nameValidationDescription": "名称必须包含拉丁字母、数字、连字符“-”、“_”和句点“.”,且长度必须在 5 到 64 个字符之间。如果跳过此步骤,系统将自动生成名称。",
|
|
3705
4258
|
"vmNameExistInSelectedLocation": "已存在具有相同名称的虚拟机或模板。请输入其他名称。",
|
|
3706
4259
|
"noNetworksAvailable": "没有可用的网络",
|
|
3707
|
-
"restoreBackupSelectNetworkSubtitle": "请在 Procurator
|
|
4260
|
+
"restoreBackupSelectNetworkSubtitle": "请在 Procurator 中选择适配器类型和网络。",
|
|
3708
4261
|
"restoreVirtualMachine": "恢复虚拟机"
|
|
3709
4262
|
},
|
|
3710
4263
|
"ssoUsers": {
|
|
@@ -3768,7 +4321,7 @@
|
|
|
3768
4321
|
"notAvailable": "不可用",
|
|
3769
4322
|
"available": "可用",
|
|
3770
4323
|
"sphereHaIs": "Sphere HA 为 {0}",
|
|
3771
|
-
"runtimeInformationSphereHa": "
|
|
4324
|
+
"runtimeInformationSphereHa": "Sphere HA 的运行信息显示在以下位置:",
|
|
3772
4325
|
"sphereHaMonitoring": "Sphere HA 监控",
|
|
3773
4326
|
"proactiveHaIs": "Proactive HA 为 {0}",
|
|
3774
4327
|
"failureConditionsAndResponses": "故障条件和响应",
|
|
@@ -3780,8 +4333,8 @@
|
|
|
3780
4333
|
"failuresAndResponsesDesc": "您可以配置 Sphere HA 如何响应此集群中的故障情况。支持的故障类型包括:主机、主机隔离、VM 组件保护(具有 PDL 和 APD 的数据存储)、虚拟机和应用程序。",
|
|
3781
4334
|
"admissionControlDesc": "准入控制是 Sphere HA 用于确保集群内故障转移能力的策略。提高可能的主机故障数量将增加可用性限制和预留容量。",
|
|
3782
4335
|
"heartbeatDatastoreDesc": "当高可用性网络发生故障时,Sphere 使用数据存储来监控主机和虚拟机。Sphere 会根据下面指定的策略和数据存储首选项,为每个主机选择 2 个数据存储。",
|
|
3783
|
-
"advancedOptionsDesc": "您可以设置高级选项来影响
|
|
3784
|
-
"sphereHaMonitoringTooltipContent": "此集群中的
|
|
4336
|
+
"advancedOptionsDesc": "您可以设置高级选项来影响 Sphere HA 集群的行为。",
|
|
4337
|
+
"sphereHaMonitoringTooltipContent": "此集群中的 Procurator 主机之间会交换网络 heartbeat。执行可能导致隔离响应的网络维护时,请禁用此功能。",
|
|
3785
4338
|
"enableHostMonitoring": "启用主机监控",
|
|
3786
4339
|
"hostFailureResponse": "主机故障响应",
|
|
3787
4340
|
"failureResponse": "故障响应",
|
|
@@ -3922,7 +4475,14 @@
|
|
|
3922
4475
|
"cancelUpload": "取消上传",
|
|
3923
4476
|
"selectedItems": "已选项目",
|
|
3924
4477
|
"deleting": "正在删除...",
|
|
3925
|
-
"folders": "文件夹"
|
|
4478
|
+
"folders": "文件夹",
|
|
4479
|
+
"cancelUploadDescription": "您确定要取消文件“{0}”的上传吗?当前进度将丢失。",
|
|
4480
|
+
"incorrectFileSelected": "选择的文件不正确",
|
|
4481
|
+
"incorrectFileSelectedDescription": "所选文件与原始文件不匹配。请重新选择相同的文件以继续上传。",
|
|
4482
|
+
"reSelect": "重新选择",
|
|
4483
|
+
"nameContainsInvalidCharacters": "文件夹名称必须为 1 到 64 个字符,不能包含空格、'/'、'@'、'#'、控制字符,也不能是 '.' 或 '..'",
|
|
4484
|
+
"fileAlreadyExists": "文件已存在",
|
|
4485
|
+
"fileNameAlreadyExists": "名为“{0}”的文件已存在。"
|
|
3926
4486
|
},
|
|
3927
4487
|
"myPreferences": {
|
|
3928
4488
|
"twoFactorAuthentication": "双因素认证",
|
|
@@ -3937,9 +4497,11 @@
|
|
|
3937
4497
|
"backToLogin": "返回登录",
|
|
3938
4498
|
"qrcodeDescription": "使用您的身份验证器应用程序扫描此QR码,或手动输入其中一个代码。然后,通过输入下面的一次性代码来确认操作。",
|
|
3939
4499
|
"showNotification": "显示通知",
|
|
3940
|
-
"
|
|
4500
|
+
"notifications": "通知",
|
|
4501
|
+
"showNotificationDescription": "当出现问题时显示通知。",
|
|
3941
4502
|
"twoFactorMustBeEnabled": "必须启用双因素认证(2FA),否则您的账户将被锁定。",
|
|
3942
|
-
"twoFactorMustWarning": "您还剩 {0} 天时间来启用双因素认证(2FA),否则您的账户将被锁定(停用)。"
|
|
4503
|
+
"twoFactorMustWarning": "您还剩 {0} 天时间来启用双因素认证(2FA),否则您的账户将被锁定(停用)。",
|
|
4504
|
+
"switchInterfaceDescription": "切换到新的界面设计。"
|
|
3943
4505
|
},
|
|
3944
4506
|
"ssoConfiguration": {
|
|
3945
4507
|
"twoFactorPolicy": "双因素策略",
|
|
@@ -3987,7 +4549,7 @@
|
|
|
3987
4549
|
},
|
|
3988
4550
|
"configureSecurityProfile": {
|
|
3989
4551
|
"lockdownModeDesc": "启用锁定模式后,将阻止远程用户直接登录该主机 该主机只能通过本地控制台或授权的集中管理应用程序进行访问",
|
|
3990
|
-
"exceptionUsers": "
|
|
4552
|
+
"exceptionUsers": "例外用户",
|
|
3991
4553
|
"specifyHostLockdownMode": "指定主机锁定模式",
|
|
3992
4554
|
"exceptionUsersDesc": "当主机进入锁定模式时仍保留其权限的用户帐户列表。这些帐户由第三方解决方案和外部应用程序使用,它们必须在锁定模式下继续运行。为确保锁定模式的安全性,应仅添加与应用程序相关的用户帐户。",
|
|
3993
4555
|
"separateUsersWithCommas": "请使用逗号分隔用户"
|
|
@@ -4013,10 +4575,64 @@
|
|
|
4013
4575
|
"enableAutostart": "启用自动启动",
|
|
4014
4576
|
"disableAutostart": "禁用自动启动"
|
|
4015
4577
|
},
|
|
4016
|
-
"
|
|
4017
|
-
"
|
|
4018
|
-
"
|
|
4019
|
-
"
|
|
4020
|
-
"
|
|
4578
|
+
"dhcpServer": {
|
|
4579
|
+
"dhcpServer": "DHCP服务器",
|
|
4580
|
+
"leftIp": "已发出的IP地址",
|
|
4581
|
+
"totalIp": "总知识产权",
|
|
4582
|
+
"nameAndNetwork": "名称和网络",
|
|
4583
|
+
"dhcpServerNameRequiredAlert": "未指定DHCP服务器名称。 输入DHCP服务器名称。",
|
|
4584
|
+
"addDhcpServer": "添加DHCP服务器",
|
|
4585
|
+
"assignNetwork": "分配网络",
|
|
4586
|
+
"dhcpServerNetworkRequiredAlert": "选择列出的网络之一!",
|
|
4587
|
+
"configureIPv4": "配置IPv4",
|
|
4588
|
+
"subnet": "子网",
|
|
4589
|
+
"maskNotInRange": "网络位无效。 指定2到30之间的数字。",
|
|
4590
|
+
"maskInvalidCombination": "子网地址和网络位的组合不会创建有效的IP范围。 更改网络位。",
|
|
4591
|
+
"subnetIsInvalid": "无法验证子网地址,因为网络位中存在错误。",
|
|
4592
|
+
"subnetMustBeInRange": "无效的子网地址。 最后一个{zeroNumber}位必须为零。",
|
|
4593
|
+
"subnetMask": "子网掩码",
|
|
4594
|
+
"addressRange": "地址范围",
|
|
4595
|
+
"invalidGateway": "此网关地址不是有效的IP地址。",
|
|
4596
|
+
"invalidGatewayWithinSubnet": "网关地址'{gateway}'在指定子网'{subnet}'内无效。",
|
|
4597
|
+
"gatewayUnable": "无法验证网关地址,因为网络位中存在错误。",
|
|
4598
|
+
"invalidAddressForDns": "地址'{address}'不是DNS服务器的有效IP地址。",
|
|
4599
|
+
"invalidAddress": "DNS服务器'{address}'不是有效的IP地址。",
|
|
4600
|
+
"ipPool": "IP池",
|
|
4601
|
+
"ipPoolRange": "IP池范围",
|
|
4602
|
+
"invalidIpPool": "IP池范围'{address}'无效。",
|
|
4603
|
+
"withoutSubnetIpPool": "输入子网地址以启用IP池范围。",
|
|
4604
|
+
"ipPoolRangeUnable": "无法验证IP池范围,因为网络位中存在错误。",
|
|
4605
|
+
"gatewayOutsidePool": "网关地址'{address}'包含在IP池范围中。 输入在IP池范围之外的网关地址或更改IP池范围。",
|
|
4606
|
+
"viewRange": "查看范围",
|
|
4607
|
+
"hideRange": "隐藏范围",
|
|
4608
|
+
"nameAndNetworkAssignment": "名称和网络分配",
|
|
4609
|
+
"ipv4Configuration": "IPv4配置",
|
|
4610
|
+
"networkAssociation": "网络协会",
|
|
4611
|
+
"twoIpMessage": "您需要输入两个ip地址。",
|
|
4612
|
+
"subnetIsRequired": "子网地址不能为空。 输入子网地址。",
|
|
4613
|
+
"gatewayIsRequired": "网关地址不能为空。 输入网关地址。",
|
|
4614
|
+
"networkAlreadyExists": "具有此网络的DHCP服务器已经存在。 选择另一个网络!",
|
|
4615
|
+
"nameWithSpaceMessage": "名称不能包含空格。 输入有效名称。",
|
|
4616
|
+
"nameWithNotLatinMessage": "名称不能包含非拉丁字母。 输入有效名称。",
|
|
4617
|
+
"removeMessageForOne": "删除DHCP服务器'{name}'?",
|
|
4618
|
+
"removeMessageForSome": "删除标记的DHCP服务器:{names}?",
|
|
4619
|
+
"editDHCPServer": "编辑DHCP服务器"
|
|
4620
|
+
},
|
|
4621
|
+
"logs": {
|
|
4622
|
+
"logs": "事件日志",
|
|
4623
|
+
"log": "日志",
|
|
4624
|
+
"size": "大小",
|
|
4625
|
+
"entries": "{0} / {1} 条记录",
|
|
4626
|
+
"filteredBy": "筛选条件:",
|
|
4627
|
+
"noEntriesMatch": "没有与筛选条件匹配的日志条目",
|
|
4628
|
+
"loading": "加载中…",
|
|
4629
|
+
"more": "更多",
|
|
4630
|
+
"generate": "生成",
|
|
4631
|
+
"archiveDownloaded": "正在下载归档文件"
|
|
4632
|
+
},
|
|
4633
|
+
"timeConfiguration": {
|
|
4634
|
+
"policyLabel": "NTP服务启动策略",
|
|
4635
|
+
"policyValue1": "随主机启动和停止",
|
|
4636
|
+
"policyValue2": "手动启动和停止"
|
|
4021
4637
|
}
|
|
4022
4638
|
}
|