bfg-common 1.5.943 → 1.5.944
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/localization/local_be.json +89 -18
- package/assets/localization/local_en.json +93 -22
- package/assets/localization/local_hy.json +89 -18
- package/assets/localization/local_kk.json +89 -18
- package/assets/localization/local_ru.json +97 -26
- package/assets/localization/local_zh.json +90 -19
- package/components/atoms/datepicker/Datepicker.vue +1 -5
- package/components/atoms/list/dragDropList/DragDropList.vue +14 -10
- package/components/atoms/table/dataGrid/DataGrid.vue +4 -0
- package/components/common/adapterManager/AdapterManagerNew.vue +39 -5
- package/components/common/adapterManager/addAdapterModal/AddAdapterModalNew.vue +3 -2
- package/components/common/adapterManager/addAdapterWarningModal/AddAdapterWarningModalNew.vue +3 -3
- 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 +15 -0
- package/components/common/adapterManager/ui/table/TableNew.vue +3 -2
- package/components/common/adapterManager/ui/table/adapters/AdaptersNew.vue +69 -36
- package/components/common/adapterManager/ui/table/header/HeaderNew.vue +5 -1
- package/components/common/configure/physicalAdapters/PhysicalAdapters.vue +184 -0
- package/components/common/configure/physicalAdapters/PhysicalAdaptersNew.vue +365 -0
- package/components/common/configure/physicalAdapters/PhysicalAdaptersOld.vue +305 -0
- package/components/common/configure/physicalAdapters/buttons/Buttons.vue +105 -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 +99 -0
- package/components/common/configure/physicalAdapters/modals/edit/EditNew.vue +203 -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 +12 -0
- package/components/common/configure/physicalAdapters/tableView/TableView.vue +43 -0
- package/components/common/configure/physicalAdapters/tableView/TableViewNew.vue +334 -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 +122 -0
- package/components/common/configure/physicalAdapters/tableView/lib/config/tableKeys.ts +14 -0
- package/components/common/configure/physicalAdapters/tableView/lib/models/interfaces.ts +30 -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/diagramMain/modals/editSettings/tabs/NetworkProperties.vue +8 -5
- package/components/common/diagramMain/modals/lib/config/vmKernelAdapter.ts +1 -1
- 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/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 +50 -15
- package/components/common/layout/theHeader/Old.vue +1 -5
- package/components/common/layout/theHeader/userMenu/modals/preferences/Old.vue +1 -0
- package/components/common/layout/theHeader/userMenu/modals/preferences/security/Security.vue +1 -0
- package/components/common/layout/theHeader/userMenu/modals/preferences/view/New.vue +20 -8
- package/components/common/layout/theHeader/userMenu/modals/preferences/view/Old.vue +7 -3
- package/components/common/layout/theHeader/userMenu/modals/preferences/view/View.vue +3 -0
- package/components/common/monitor/advanced/Advanced.vue +6 -0
- package/components/common/monitor/advanced/AdvancedNew.vue +4 -0
- package/components/common/monitor/advanced/AdvancedOld.vue +8 -1
- package/components/common/monitor/advanced/tools/Tools.vue +7 -1
- package/components/common/monitor/advanced/tools/ToolsNew.vue +4 -0
- package/components/common/monitor/advanced/tools/ToolsOld.vue +4 -0
- package/components/common/monitor/advanced/tools/chartOptionsModal/ChartOptionsModal.vue +8 -0
- package/components/common/monitor/advanced/tools/chartOptionsModal/ChartOptionsModalNew.vue +98 -79
- package/components/common/monitor/advanced/tools/chartOptionsModal/ChartOptionsModalOld.vue +7 -0
- package/components/common/monitor/advanced/tools/chartOptionsModal/counters/Counters.vue +10 -0
- package/components/common/monitor/advanced/tools/chartOptionsModal/counters/CountersNew.vue +17 -2
- package/components/common/monitor/advanced/tools/chartOptionsModal/counters/CountersOld.vue +7 -0
- 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 +388 -329
- 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 +4 -0
- package/components/common/monitor/advanced/tools/chartOptionsModal/counters/timespan/TimespanNew.vue +12 -0
- package/components/common/monitor/advanced/tools/chartOptionsModal/lib/utils/checkSubmit.ts +2 -0
- package/components/common/monitor/advanced/tools/chartOptionsModal/metrics/MetricsNew.vue +2 -0
- package/components/common/monitor/advanced/tools/chartOptionsModal/metrics/lib/config/optionsMetrics.ts +28 -0
- package/components/common/monitor/advanced/tools/lib/config/advancedToolbar.ts +17 -1
- 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/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/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/restore/New.vue +4 -0
- 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 +64 -148
- package/components/common/pages/hardwareHealth/HardwareHealthNew.vue +233 -0
- package/components/common/pages/hardwareHealth/HardwareHealthOld.vue +187 -0
- package/components/common/pages/hardwareHealth/historyTestimony/Graph.vue +200 -248
- package/components/common/pages/hardwareHealth/historyTestimony/GraphNew.vue +193 -0
- package/components/common/pages/hardwareHealth/historyTestimony/GraphOld.vue +209 -0
- package/components/common/pages/hardwareHealth/historyTestimony/tools/Tools.vue +79 -256
- package/components/common/pages/hardwareHealth/historyTestimony/tools/ToolsNew.vue +234 -0
- package/components/common/pages/hardwareHealth/historyTestimony/tools/ToolsOld.vue +296 -0
- package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/ChartOptionsModal.vue +91 -106
- package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/ChartOptionsModalNew.vue +172 -0
- package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/ChartOptionsModalOld.vue +166 -0
- package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/NotificationNew.vue +22 -0
- package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/actions/Actions.vue +30 -51
- package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/actions/ActionsNew.vue +121 -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 +1 -1
- package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/counters/Counters.vue +70 -49
- package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/counters/CountersNew.vue +109 -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 +57 -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 +169 -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/indicators/Indicators.vue +88 -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 +189 -0
- package/components/common/pages/hardwareHealth/tableView/new/lib/config/alertWarningTable.ts +97 -0
- package/components/common/pages/hardwareHealth/tableView/new/lib/config/historyTestimonyTable.ts +124 -0
- package/components/common/pages/hardwareHealth/tableView/new/lib/config/sensorTable.ts +159 -0
- package/components/common/pages/hardwareHealth/tableView/new/lib/config/storageSensorsTable.ts +83 -0
- package/components/common/pages/hardwareHealth/tableView/new/lib/config/systemLogTable.ts +69 -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 +58 -0
- 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 +4 -0
- package/components/common/pages/scheduledTasks/table/new/New.vue +316 -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/vm/actions/clone/new/New.vue +10 -4
- package/components/common/vm/actions/clone/old/Old.vue +10 -4
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/VirtualHardware.vue +1 -1
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/cpu/New.vue +2 -0
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/cpu/Old.vue +2 -0
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/cpu/shares/Shares.vue +2 -1
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/memory/New.vue +2 -0
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/memory/Old.vue +2 -0
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/newHardDisk/NewHardDisk.vue +4 -3
- 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/snapshots/modals/confirm/New.vue +1 -1
- package/components/common/vm/snapshots/modals/confirm/Old.vue +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 +86 -107
- package/components/common/wizards/network/add/AddNew.vue +49 -16
- 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 +21 -9
- package/components/common/wizards/network/add/lib/config/selectSwitch.ts +5 -4
- package/components/common/wizards/network/add/lib/config/steps.ts +3 -1
- 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 +6 -3
- 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 +90 -17
- package/components/common/wizards/network/add/steps/portProperties/PortProperties.vue +13 -9
- package/components/common/wizards/network/add/steps/portProperties/PortPropertiesNew.vue +35 -5
- package/components/common/wizards/network/add/steps/portProperties/PortPropertiesOld.vue +3 -2
- 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 +79 -16
- 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 +17 -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 +2 -1
- package/components/common/wizards/vm/migrate/Old.vue +1 -1
- package/components/common/wizards/vm/migrate/lib/config/steps.ts +1 -1
- package/components/common/wizards/vm/migrate/steps/computeResource/ComputeResource.vue +30 -9
- package/components/common/wizards/vm/migrate/steps/computeResource/New.vue +0 -1
- package/components/common/wizards/vm/migrate/steps/computeResource/Old.vue +0 -1
- package/lib/models/interfaces.ts +1 -0
- package/package.json +2 -2
- 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
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
<inspection_tool class="HtmlUnknownTag" enabled="true" level="WARNING" enabled_by_default="true">
|
|
5
5
|
<option name="myValues">
|
|
6
6
|
<value>
|
|
7
|
-
<list size="
|
|
7
|
+
<list size="40">
|
|
8
8
|
<item index="0" class="java.lang.String" itemvalue="nobr" />
|
|
9
9
|
<item index="1" class="java.lang.String" itemvalue="noembed" />
|
|
10
10
|
<item index="2" class="java.lang.String" itemvalue="comment" />
|
|
@@ -43,6 +43,8 @@
|
|
|
43
43
|
<item index="35" class="java.lang.String" itemvalue="common-wizards-vm-migrate-select-network-table-use-at" />
|
|
44
44
|
<item index="36" class="java.lang.String" itemvalue="common-wizards-vm-migrate-select-network-table-network" />
|
|
45
45
|
<item index="37" class="java.lang.String" itemvalue="common-monitor-advanced-tools-chart-options-modal-new" />
|
|
46
|
+
<item index="38" class="java.lang.String" itemvalue="common-pages-scheduled-tasks-table-expand-details-history-run" />
|
|
47
|
+
<item index="39" class="java.lang.String" itemvalue="common-pages-scheduled-tasks-modals-common-task-form" />
|
|
46
48
|
</list>
|
|
47
49
|
</value>
|
|
48
50
|
</option>
|
|
@@ -1059,8 +1059,11 @@
|
|
|
1059
1059
|
"noCertificatesAdded": "Сертыфікаты не дададзены.",
|
|
1060
1060
|
"noConfigurableDeviceIsSelected": "Наладжвальнае прылада не абрана.",
|
|
1061
1061
|
"noDataProvided": "Ніякіх дадзеных не прадастаўлена",
|
|
1062
|
+
"noDataProvidedMessage": "У цяперашні час няма дадзеных для адлюстравання.",
|
|
1062
1063
|
"noDhcpEnabledVmKernelNetAdapters": "Сеткавых адаптараў VMkernel з падтрымкай DHCP не існуе.",
|
|
1063
1064
|
"noFreeNetworkAdaptersAddSwitch": "Бясплатных сеткавых адаптараў для дадання да камутатара няма.",
|
|
1065
|
+
"noAdaptersTitle": "Няма бясплатных сеткавых адаптараў для дадання",
|
|
1066
|
+
"noAdaptersMessage": "У цяперашні час не засталося свабодных фізічных сеткавых адаптараў для дадання да гэтага камутатара.",
|
|
1064
1067
|
"noItemsDisplay": "Няма элементаў для адлюстравання",
|
|
1065
1068
|
"noItemSelected": "Элементы не выбраны",
|
|
1066
1069
|
"none": "Няма",
|
|
@@ -2176,7 +2179,8 @@
|
|
|
2176
2179
|
"zabbix": "Zabbix",
|
|
2177
2180
|
"loginZabbixAccount": "Увайдзіце на Сервер Zabbix",
|
|
2178
2181
|
"newView": "Новы выгляд",
|
|
2179
|
-
"
|
|
2182
|
+
"newInterface": "Новы інтэрфейс",
|
|
2183
|
+
"viewDesc": "Выберыце інтэрфейс і візуальныя настройкі для {trademark} Client.",
|
|
2180
2184
|
"emptyNameValidationDescription": "Імя не павінна быць пустым",
|
|
2181
2185
|
"kindValidationDescription": "Няправільны тып запісу",
|
|
2182
2186
|
"alert": "Трывога",
|
|
@@ -2217,6 +2221,7 @@
|
|
|
2217
2221
|
"sambaHelpDesc": "Samba Storage выкарыстоўвае пратакол SMBCIFS, забяспечвае доступ да платформы, гнуткія правы і інтэграцыю з Active Directory.",
|
|
2218
2222
|
"deviceType": "Тып прылады",
|
|
2219
2223
|
"selectDisksInvolvedBackup": "Выберыце дыскі, якія ўдзельнічаюць у рэзервовым капіраванні.",
|
|
2224
|
+
"selectDisksInvolvedBackupNotRequired": "Выберыце рэзервовыя дыскі для капіявання. Вы можаце прапусціць гэты крок, калі капіраванне не патрабуецца.",
|
|
2220
2225
|
"dateTime": "Дата Час",
|
|
2221
2226
|
"eventTypeDescription": "Апісанне тыпу падзеі",
|
|
2222
2227
|
"possibleCauses": "Магчымыя прычыны",
|
|
@@ -2283,7 +2288,7 @@
|
|
|
2283
2288
|
"lastRunResult": "Вынік апошняга запуску",
|
|
2284
2289
|
"nextRun": "Наступны запуск",
|
|
2285
2290
|
"removeScheduledTask": "Выдаліць запланаванае заданне",
|
|
2286
|
-
"removeScheduledTaskDesc": "
|
|
2291
|
+
"removeScheduledTaskDesc": "Вы ўпэўнены, што хочаце выдаліць гэтае запланаванае заданне?\\nЗапланаванае заданне «{taskName}» для ВМ «{vmName}» будзе назаўсёды выдалена, і ўсе яго будучыя выкананні будуць адменены.",
|
|
2287
2292
|
"neverShowThisMessageAgain": "Больш ніколі не паказваць гэта паведамленне",
|
|
2288
2293
|
"scheduleNewTasks": "Расклад новых задач",
|
|
2289
2294
|
"scheduleTaskEdit": "Рэдагаванне раскладу задач",
|
|
@@ -2585,7 +2590,24 @@
|
|
|
2585
2590
|
"datastoreExistsTheSelectedLocation": "Сховішча з такой жа назвай ужо існуе ў выбраным месцы. Увядзіце новую назву.",
|
|
2586
2591
|
"deleteConfirmation": "Пацвярджэнне выдалення",
|
|
2587
2592
|
"deleteItem": "Выдаліць элемент",
|
|
2588
|
-
"deleteItems": "Выдаліць элементы"
|
|
2593
|
+
"deleteItems": "Выдаліць элементы",
|
|
2594
|
+
"existingNetworkMessage": "Сетка з такой назвай ужо існуе.",
|
|
2595
|
+
"addNetworkingReadyCompleteSubtitle": "Азнаёмцеся з падрабязнасцямі, перш чым ўносіць змены.",
|
|
2596
|
+
"systemEvents": "Сістэмныя падзеі",
|
|
2597
|
+
"noComputeResourceSelected": "Рэсурс вылічэння не выбраны",
|
|
2598
|
+
"noItemsSelected": "Элементы не выбраны",
|
|
2599
|
+
"reconnectToServer": "Зноў падключыцеся да сервера",
|
|
2600
|
+
"connecting": "Злучэнне",
|
|
2601
|
+
"reconnecting": "Паўторнае падключэнне",
|
|
2602
|
+
"combinationIncorrect": "Няправільная камбінацыя імя карыстальніка і пароля.",
|
|
2603
|
+
"weekMon": "Пн",
|
|
2604
|
+
"weekTue": "Аў",
|
|
2605
|
+
"weekWed": "Ср",
|
|
2606
|
+
"weekThu": "Чц",
|
|
2607
|
+
"weekFri": "Пт",
|
|
2608
|
+
"weekSat": "Сб",
|
|
2609
|
+
"weekSun": "Нд",
|
|
2610
|
+
"raidConfiguration": "Канфігурацыя Raid"
|
|
2589
2611
|
},
|
|
2590
2612
|
"auth": {
|
|
2591
2613
|
"welcomeTo": "Сардэчна запрашаем у",
|
|
@@ -2851,7 +2873,9 @@
|
|
|
2851
2873
|
"selectedSourcesDifferentNetworks": "Выбраныя крыніцы размешчаны ў розных сетках.",
|
|
2852
2874
|
"thereAreNoSelectedDestinations": "Выбраных пунктаў прызначэння няма.",
|
|
2853
2875
|
"moreOneDestinationSelected": "Абрана больш аднаго пункта прызначэння.",
|
|
2854
|
-
"selectedDestinationDifferentNetwork": "Абраны пункт прызначэння знаходзіцца ў іншай сетцы."
|
|
2876
|
+
"selectedDestinationDifferentNetwork": "Абраны пункт прызначэння знаходзіцца ў іншай сетцы.",
|
|
2877
|
+
"numberOfVirtualFunctions": "Колькасць віртуальных функцый",
|
|
2878
|
+
"noSelectedAdaptersMessage": "Калі ласка, не забудзьцеся выбраць фізічны сеткавы адаптар, каб праглядзець яго падрабязную інфармацыю."
|
|
2855
2879
|
},
|
|
2856
2880
|
"vmOverrides": {
|
|
2857
2881
|
"vmOverrides": "Пераазначэнні ВМ",
|
|
@@ -3346,7 +3370,8 @@
|
|
|
3346
3370
|
"liveMigrationDesc": "Віртуальная машына пераносіцца на новы хост на ляту без спынення сэрвісаў. Карыстальнікі і праграмы амаль не адчуваюць прастою.",
|
|
3347
3371
|
"ramSuspendMigrationDesc": "Віртуальная машына прыпыняецца, змесціва яе RAM захоўваецца і пераносіцца на новы хост. Пасля гэтага яна працягвае працу з таго ж самага стану.",
|
|
3348
3372
|
"offlineMigrationDesc": "Віртуальная машына цалкам выключаецца, пасля чаго яе стан і дадзеныя пераносяцца на новы хост. Сэрвіс застаецца недаступным падчас пераносу.",
|
|
3349
|
-
"strategyMigrationErrorDesc": "Эксплуатацыя не можа быць выканана: віртуальная машына знаходзіцца ў непрацаваным стане. Дазволеныя дзяржавы \"выключаны\" (PowerOff) або \"ўключаны\" (Poweron). Калі ласка, усталюйце VM у адзін з гэтых дзяржаў і паспрабуйце яшчэ раз."
|
|
3373
|
+
"strategyMigrationErrorDesc": "Эксплуатацыя не можа быць выканана: віртуальная машына знаходзіцца ў непрацаваным стане. Дазволеныя дзяржавы \"выключаны\" (PowerOff) або \"ўключаны\" (Poweron). Калі ласка, усталюйце VM у адзін з гэтых дзяржаў і паспрабуйце яшчэ раз.",
|
|
3374
|
+
"changeComputeResourceStorageVirtualMachine": "Змяніць вылічальныя рэсурсы або сховішча віртуальнай машыны."
|
|
3350
3375
|
},
|
|
3351
3376
|
"storageAdapters": {
|
|
3352
3377
|
"none": "Няма",
|
|
@@ -3380,7 +3405,14 @@
|
|
|
3380
3405
|
"second": "Па-другое",
|
|
3381
3406
|
"third": "Трэці",
|
|
3382
3407
|
"fourth": "Па-чацвёртае",
|
|
3383
|
-
"once": "Адзін раз"
|
|
3408
|
+
"once": "Адзін раз",
|
|
3409
|
+
"selectFrequency": "Выберыце частату",
|
|
3410
|
+
"frequency": "Частата",
|
|
3411
|
+
"delayMinutes": "Затрымка (хвілін)",
|
|
3412
|
+
"selectPosition": "Выберыце пазіцыю",
|
|
3413
|
+
"selectDay": "Выберыце дзень",
|
|
3414
|
+
"emails": "Электронныя лісты",
|
|
3415
|
+
"taskDetails": "Падрабязнасці задання"
|
|
3384
3416
|
},
|
|
3385
3417
|
"license": {
|
|
3386
3418
|
"limits": "Мяжа",
|
|
@@ -3698,13 +3730,13 @@
|
|
|
3698
3730
|
"backupCreationReview": "Перад стварэннем рэзервовай копіі праглядзіце падрабязнасці.",
|
|
3699
3731
|
"restoreBackupReviewSubtitle": "Праверце падрабязнасці перад аднаўленнем існуючай віртуальнай машыны з рэзервовай копіі.",
|
|
3700
3732
|
"diskCopyN": "Дыск (Копія) {0}",
|
|
3701
|
-
"createBackupCommonSubtitle": "Укажыце ўнікальную назву і апісанне для рэзервовай
|
|
3733
|
+
"createBackupCommonSubtitle": "Укажыце ўнікальную назву і апісанне для рэзервовай копіі.",
|
|
3702
3734
|
"virtualMachineName": "Імя віртуальнай машыны",
|
|
3703
3735
|
"restoreBackupSelectNameSubtitle": "Укажыце ўнікальную назву для віртуальнай машыны.",
|
|
3704
|
-
"nameValidationDescription": "
|
|
3736
|
+
"nameValidationDescription": "Імя павінна ўтрымліваць лацінскія літары і лічбы, '-', '_', '.' і павінна ўтрымліваць ад 5 да 64 сімвалаў. Калі вы прапусціце гэты крок, сістэма згенеруе імя аўтаматычна.",
|
|
3705
3737
|
"vmNameExistInSelectedLocation": "Віртуальная машына або шаблон з такой назвай ужо існуе. Увядзіце іншую назву.",
|
|
3706
3738
|
"noNetworksAvailable": "Няма даступных сетак",
|
|
3707
|
-
"restoreBackupSelectNetworkSubtitle": "Выберыце тыпы адаптараў і сеткі ў Procurator",
|
|
3739
|
+
"restoreBackupSelectNetworkSubtitle": "Выберыце тыпы адаптараў і сеткі ў Procurator.",
|
|
3708
3740
|
"restoreVirtualMachine": "Аднавіць віртуальную машыну"
|
|
3709
3741
|
},
|
|
3710
3742
|
"ssoUsers": {
|
|
@@ -3780,8 +3812,8 @@
|
|
|
3780
3812
|
"failuresAndResponsesDesc": "Вы можаце наладзіць, як Sphere HA будзе рэагаваць на збоі ў гэтым кластары. Падтрымліваюцца наступныя тыпы збояў: хост, ізаляцыя хоста, абарона кампанентаў ВМ (сховішчы з PDL і APD), ВМ і прыкладанне.",
|
|
3781
3813
|
"admissionControlDesc": "Кантроль допуску — гэта палітыка Sphere HA для забеспячэння рэзерваў у кластары на выпадак збою. Павелічэнне колькасці магчымых збояў павышае патрабаванні да даступнасці і рэзерваў.",
|
|
3782
3814
|
"heartbeatDatastoreDesc": "Sphere выкарыстоўвае сховішчы дадзеных для маніторынгу хастоў і віртуальных машын у выпадку збою сеткі высокай даступнасці. Sphere выбірае 2 сховішчы дадзеных для кожнага хаста, выкарыстоўваючы палітыку і налады сховішча дадзеных, указаныя ніжэй.",
|
|
3783
|
-
"advancedOptionsDesc": "Вы можаце наладзіць пашыраныя параметры, што ўплываюць на паводзіны кластара
|
|
3784
|
-
"sphereHaMonitoringTooltipContent": "Хосты
|
|
3815
|
+
"advancedOptionsDesc": "Вы можаце наладзіць пашыраныя параметры, што ўплываюць на паводзіны кластара Sphere HA.",
|
|
3816
|
+
"sphereHaMonitoringTooltipContent": "Хосты Procurator у гэтым кластары абменьваюцца сеткавымі heartbeat-сігналамі. Адключыце гэтую функцыю падчас сеткавых прац, якія могуць выклікаць ізаляцыю.",
|
|
3785
3817
|
"enableHostMonitoring": "Уключыць маніторынг хостаў",
|
|
3786
3818
|
"hostFailureResponse": "Рэакцыя на збой хоста",
|
|
3787
3819
|
"failureResponse": "Рэакцыя на збой",
|
|
@@ -3937,9 +3969,11 @@
|
|
|
3937
3969
|
"backToLogin": "Вярнуцца да ўваходу",
|
|
3938
3970
|
"qrcodeDescription": "Скануйце гэты QR-код з дапамогай праграмы-аўтэнтыфікатара альбо ўвядзіце адзін з гэтых кодаў уручную. Пасля гэтага пацвердзіце дзеянне, увёўшы аднаразовы код ніжэй.",
|
|
3939
3971
|
"showNotification": "Паказваць апавяшчэнне",
|
|
3940
|
-
"
|
|
3972
|
+
"Notifications": "Апавяшчэнні",
|
|
3973
|
+
"showNotificationDescription": "Паказваць апавяшчэнне, калі нешта ідзе не так.",
|
|
3941
3974
|
"twoFactorMustBeEnabled": "Неабходна падключыць двухфактарную аўтэнтыфікацыю (2FA), інакш ваш акаўнт будзе заблакаваны.",
|
|
3942
|
-
"twoFactorMustWarning": "Вам засталося {0} дзён, каб падключыць двухфактарную аўтэнтыфікацыю (2FA), інакш ваш акаўнт будзе заблакаваны (адключаны)."
|
|
3975
|
+
"twoFactorMustWarning": "Вам засталося {0} дзён, каб падключыць двухфактарную аўтэнтыфікацыю (2FA), інакш ваш акаўнт будзе заблакаваны (адключаны).",
|
|
3976
|
+
"switchInterfaceDescription": "Пераключыцца на новы дызайн інтэрфейсу."
|
|
3943
3977
|
},
|
|
3944
3978
|
"ssoConfiguration": {
|
|
3945
3979
|
"twoFactorPolicy": "Палітыка двухфактарнай аўтэнтыфікацыі",
|
|
@@ -4013,10 +4047,47 @@
|
|
|
4013
4047
|
"enableAutostart": "Уключыць аўтазапуск",
|
|
4014
4048
|
"disableAutostart": "Адключыць аўтазапуск"
|
|
4015
4049
|
},
|
|
4016
|
-
"
|
|
4017
|
-
"
|
|
4018
|
-
"
|
|
4019
|
-
"
|
|
4020
|
-
"
|
|
4050
|
+
"dhcpServer": {
|
|
4051
|
+
"dhcpServer": "DHCP-сервер",
|
|
4052
|
+
"leftIp": "Выдадзеныя IP",
|
|
4053
|
+
"totalIp": "Агульны IP-адрас",
|
|
4054
|
+
"nameAndNetwork": "Імя і сетка",
|
|
4055
|
+
"dhcpServerNameRequiredAlert": "Імя DHCP-сервера не пазначана. Увядзіце імя сервера DHCP.",
|
|
4056
|
+
"addDhcpServer": "Дадаць DHCP-сервер",
|
|
4057
|
+
"assignNetwork": "Прызначыць сетку",
|
|
4058
|
+
"dhcpServerNetworkRequiredAlert": "Выберыце адну з пералічаных сетак!",
|
|
4059
|
+
"configureIPv4": "Налада IPv4",
|
|
4060
|
+
"subnet": "Падсець",
|
|
4061
|
+
"maskNotInRange": "Сеткавыя біты няслушныя. Пакажыце лік ад 2 да 30.",
|
|
4062
|
+
"maskInvalidCombination": "Камбінацыя адрасы падсеткі і сеткавых бітаў не дазваляе стварыць дапушчальны дыяпазон IP-адрасоў. Зменіце сеткавыя біты.",
|
|
4063
|
+
"subnetIsInvalid": "Не ўдаецца праверыць адрас падсеткі з-за памылкі ў сеткавых бітах.",
|
|
4064
|
+
"subnetMustBeInRange": "Недапушчальны адрас падсеткі. Апошнія біты {zeroNumber} павінны быць роўныя нулю.",
|
|
4065
|
+
"subnetMask": "Маска падсеткі",
|
|
4066
|
+
"addressRange": "Дыяпазон адрасоў",
|
|
4067
|
+
"invalidGateway": "Гэты адрас шлюза не з'яўляецца сапраўдным IP-адрасам.",
|
|
4068
|
+
"invalidGatewayWithinSubnet": "Адрас шлюза '{gateway}' недапушчальны ў межах названай падсеткі '{subnet}'.",
|
|
4069
|
+
"gatewayUnable": "Не ўдаецца праверыць адрас шлюза з-за памылкі ў сеткавых бітах.",
|
|
4070
|
+
"invalidAddressForDns": "Адрас '{address}' не з'яўляецца дапушчальным IP-адрасам для DNS-сервера.",
|
|
4071
|
+
"invalidAddress": "DNS-сервер '{address}' не з'яўляецца дапушчальным IP-адрасам.",
|
|
4072
|
+
"ipPool": "Пул IP-адрасоў",
|
|
4073
|
+
"ipPoolRange": "Дыяпазон IP-адрасоў пула",
|
|
4074
|
+
"invalidIpPool": "Дыяпазон IP-адрасоў пула '{address}' недапушчальны.",
|
|
4075
|
+
"withoutSubnetIpPool": "Увядзіце адрас падсеткі, каб уключыць дыяпазон пула IP-адрасоў.",
|
|
4076
|
+
"ipPoolRangeUnable": "Не ўдаецца праверыць дыяпазон пула IP-адрасоў з-за памылкі ў сеткавых бітах.",
|
|
4077
|
+
"gatewayOutsidePool": "Адрас шлюза '{address}' уключаны ў дыяпазоны пула IP-адрасоў. Увядзіце адрас шлюза, які знаходзіцца за межамі дыяпазону пула IP-адрасоў, або зменіце дыяпазоны пула IP-адрасоў.",
|
|
4078
|
+
"viewRange": "Дыяпазон агляду",
|
|
4079
|
+
"hideRange": "Схаваны дыяпазон",
|
|
4080
|
+
"nameAndNetworkAssignment": "Імя і сеткавае прызначэнне",
|
|
4081
|
+
"ipv4Configuration": "Канфігурацыя IPv4",
|
|
4082
|
+
"networkAssociation": "Сеткавая асацыяцыя",
|
|
4083
|
+
"twoIpMessage": "Вам трэба ўвесці два IP-адрасы.",
|
|
4084
|
+
"subnetIsRequired": "Адрас падсеткі не можа быць пустым. Увядзіце адрас падсеткі.",
|
|
4085
|
+
"gatewayIsRequired": "Адрас шлюза не можа быць пустым. Увядзіце адрас шлюза.",
|
|
4086
|
+
"networkAlreadyExists": "DHCP-сервер у гэтай сеткі ўжо існуе. Выберыце іншую сетку!",
|
|
4087
|
+
"nameWithSpaceMessage": "У імя не павінна быць прабелаў. Увядзіце дапушчальнае імя.",
|
|
4088
|
+
"nameWithNotLatinMessage": "Імя не павінна ўтрымліваць нелацінскіх літар. Увядзіце дапушчальнае імя.",
|
|
4089
|
+
"removeMessageForOne": "Выдаліць DHCP-сервер '{name}'?",
|
|
4090
|
+
"removeMessageForSome": "Выдаліце адзначаныя DHCP-серверы: {names}?",
|
|
4091
|
+
"editDHCPServer": "Рэдагаваць DHCP-сервер"
|
|
4021
4092
|
}
|
|
4022
4093
|
}
|
|
@@ -137,7 +137,7 @@
|
|
|
137
137
|
"availableCpu": "Available CPU",
|
|
138
138
|
"availableCpus": "Available CPUs",
|
|
139
139
|
"availableMemory": "Available Memory",
|
|
140
|
-
"availableServices": "Available
|
|
140
|
+
"availableServices": "Available Services",
|
|
141
141
|
"availableStorage": "Available Storage",
|
|
142
142
|
"average": "Average",
|
|
143
143
|
"averageBandwidth": "Average Bandwidth",
|
|
@@ -502,7 +502,7 @@
|
|
|
502
502
|
"enableBothOptions": "Enable both options",
|
|
503
503
|
"enableCpuHotAdd": "Enable CPU Hot Add",
|
|
504
504
|
"enabled": "Enabled",
|
|
505
|
-
"enabledServices": "Enabled
|
|
505
|
+
"enabledServices": "Enabled Services",
|
|
506
506
|
"enableFallback": "Enable fallback",
|
|
507
507
|
"enableIpv6SupportOnThisHost": "Enable IPv6 support on this host",
|
|
508
508
|
"enableMonitoringEvents": "Enable monitoring events",
|
|
@@ -1058,8 +1058,11 @@
|
|
|
1058
1058
|
"noCertificatesAdded": "No certificates added.",
|
|
1059
1059
|
"noConfigurableDeviceIsSelected": "No configurable device is selected.",
|
|
1060
1060
|
"noDataProvided": "No Data Provided",
|
|
1061
|
+
"noDataProvidedMessage": "There is currently no data to display.",
|
|
1061
1062
|
"noDhcpEnabledVmKernelNetAdapters": "There are no DHCP-enabled VMkernel network adapters.",
|
|
1062
1063
|
"noFreeNetworkAdaptersAddSwitch": "There are no free network adapters to add to the switch.",
|
|
1064
|
+
"noAdaptersTitle": "No Free Network Adapters to Add",
|
|
1065
|
+
"noAdaptersMessage": "There are currently no free physical network adapters left to add to this switch.",
|
|
1063
1066
|
"noItemsDisplay": "No items to display",
|
|
1064
1067
|
"noItemSelected": "No items selected",
|
|
1065
1068
|
"none": "None",
|
|
@@ -1713,7 +1716,7 @@
|
|
|
1713
1716
|
"virtualFlashHostSwapCache": "Virtual Flash Host Swap Cache",
|
|
1714
1717
|
"virtualFlashResource": "Virtual Flash Resource",
|
|
1715
1718
|
"virtualFlashResourceManagement": "Virtual Flash Resource Management",
|
|
1716
|
-
"virtualFunctions": "Virtual
|
|
1719
|
+
"virtualFunctions": "Virtual Functions",
|
|
1717
1720
|
"virtualFunctionsMustBe": "Virtual functions must be between 1 and 16.",
|
|
1718
1721
|
"virtualHardware": "Virtual Hardware",
|
|
1719
1722
|
"virtualMachine": "Virtual Machine",
|
|
@@ -1751,7 +1754,7 @@
|
|
|
1751
1754
|
"vMkernelAdapters": "VMkernel adapters",
|
|
1752
1755
|
"vmKernelGateway": "VMkernel gateway",
|
|
1753
1756
|
"vmKernelNetworkAdapter": "Internal Virtual Network Adapter",
|
|
1754
|
-
"vmKernelPortSettings": "Kernel
|
|
1757
|
+
"vmKernelPortSettings": "Kernel Port Settings",
|
|
1755
1758
|
"vMKernelTcpIpStackHandlesTraffic": "The TCP/IP stack processes traffic for Procurator platform services such as iSCSI, NFS, FCoE, vSan, host management, etc.",
|
|
1756
1759
|
"vmLocation": "VM Location",
|
|
1757
1760
|
"vmMonitoring": "VM Monitoring",
|
|
@@ -1892,7 +1895,7 @@
|
|
|
1892
1895
|
"browserOutDateDesc2": "You can also use the",
|
|
1893
1896
|
"browserOutDateDesc3": "mobile version of the website",
|
|
1894
1897
|
"theDateOnHostAndBrowserDifferent": "The date on the host and in the web browser is different",
|
|
1895
|
-
"selectMigrationType": "Select a
|
|
1898
|
+
"selectMigrationType": "Select a Migration Type",
|
|
1896
1899
|
"selectMigrationTypeDesc": "Change the virtual machines' compute resource, storage, or both.",
|
|
1897
1900
|
"selectComputeResourceDesc": "Select a cluster, host, or resource pool to run virtual machines.",
|
|
1898
1901
|
"selectNetworks": "Select Networks",
|
|
@@ -2179,7 +2182,8 @@
|
|
|
2179
2182
|
"zabbix": "Zabbix",
|
|
2180
2183
|
"loginZabbixAccount": "Login to Zabbix Server",
|
|
2181
2184
|
"newView": "New view",
|
|
2182
|
-
"
|
|
2185
|
+
"newInterface": "New Interface",
|
|
2186
|
+
"viewDesc": "Select interface and visual preferences for {trademark} Client.",
|
|
2183
2187
|
"emptyNameValidationDescription": "Name should not be empty",
|
|
2184
2188
|
"kindValidationDescription": "Invalid record kind",
|
|
2185
2189
|
"alert": "Alert",
|
|
@@ -2220,6 +2224,7 @@
|
|
|
2220
2224
|
"sambaHelpDesc": "Samba storage uses the SMBCIFS protocol, provides cross -platform access, flexible rights and integration with Active Directory.",
|
|
2221
2225
|
"deviceType": "Device type",
|
|
2222
2226
|
"selectDisksInvolvedBackup": "Select disks involved in the backup.",
|
|
2227
|
+
"selectDisksInvolvedBackupNotRequired": "Select backup disks for copy. You can skip this step if copying is not required.",
|
|
2223
2228
|
"dateTime": "Date Time",
|
|
2224
2229
|
"eventTypeDescription": "Event Type Description",
|
|
2225
2230
|
"possibleCauses": "Possible Causes",
|
|
@@ -2286,7 +2291,7 @@
|
|
|
2286
2291
|
"lastRunResult": "Last run result",
|
|
2287
2292
|
"nextRun": "Next run",
|
|
2288
2293
|
"removeScheduledTask": "Remove Scheduled Task",
|
|
2289
|
-
"removeScheduledTaskDesc": "
|
|
2294
|
+
"removeScheduledTaskDesc": "Are you sure you want to remove this scheduled task?\nThe scheduled task “{taskName}” for VM “{vmName}” will be permanently removed, and all its upcoming executions will be canceled.",
|
|
2290
2295
|
"neverShowThisMessageAgain": "Never show this message again",
|
|
2291
2296
|
"scheduleNewTasks": "Schedule New Tasks",
|
|
2292
2297
|
"scheduleTaskEdit": "Schedule Task Edit",
|
|
@@ -2515,7 +2520,7 @@
|
|
|
2515
2520
|
"existingSwitch": "Existing Switch",
|
|
2516
2521
|
"targetDevice": "Target Device",
|
|
2517
2522
|
"selectASwitch": "Select a switch",
|
|
2518
|
-
"switchEs": "switch(
|
|
2523
|
+
"switchEs": "switch(s)",
|
|
2519
2524
|
"networkS": "network(s)",
|
|
2520
2525
|
"datastoreMountedTheHostsListedBelow": "The datastore is mounted on the hosts listed below. For successful unmount, the selected hosts should not have any virtual machines residing on the datastore.",
|
|
2521
2526
|
"onceUnmountProgressDoNotPerform": "Once the unmount is in progress do not perform any configuration operations that might result in I/O to the datastore.",
|
|
@@ -2589,7 +2594,24 @@
|
|
|
2589
2594
|
"datastoreExistsTheSelectedLocation": "A datastore with the same name exists in the selected location. Enter a new name.",
|
|
2590
2595
|
"deleteConfirmation": "Delete Confirmation",
|
|
2591
2596
|
"deleteItem": "Delete Item",
|
|
2592
|
-
"deleteItems": "Delete Items"
|
|
2597
|
+
"deleteItems": "Delete Items",
|
|
2598
|
+
"existingNetworkMessage": "A network with this name already exists.",
|
|
2599
|
+
"addNetworkingReadyCompleteSubtitle": "Review the details before applying the changes.",
|
|
2600
|
+
"systemEvents": "System Events",
|
|
2601
|
+
"noComputeResourceSelected": "No compute resource selected",
|
|
2602
|
+
"noItemsSelected": "No items selected",
|
|
2603
|
+
"reconnectToServer": "Reconnect to Server",
|
|
2604
|
+
"connecting": "Connecting",
|
|
2605
|
+
"reconnecting": "Reconnecting",
|
|
2606
|
+
"combinationIncorrect": "The username and password combination is incorrect.",
|
|
2607
|
+
"weekMon": "Mon",
|
|
2608
|
+
"weekTue": "Tue",
|
|
2609
|
+
"weekWed": "Wed",
|
|
2610
|
+
"weekThu": "Thu",
|
|
2611
|
+
"weekFri": "Fri",
|
|
2612
|
+
"weekSat": "Sat",
|
|
2613
|
+
"weekSun": "Sun",
|
|
2614
|
+
"raidConfiguration": "Raid Configuration"
|
|
2593
2615
|
},
|
|
2594
2616
|
"auth": {
|
|
2595
2617
|
"welcomeTo": "Welcome to",
|
|
@@ -2855,7 +2877,9 @@
|
|
|
2855
2877
|
"selectedSourcesDifferentNetworks": "The selected sources are located on different networks.",
|
|
2856
2878
|
"thereAreNoSelectedDestinations": "There are no selected destinations.",
|
|
2857
2879
|
"moreOneDestinationSelected": "More than one destination selected.",
|
|
2858
|
-
"selectedDestinationDifferentNetwork": "The selected destination is on a different network."
|
|
2880
|
+
"selectedDestinationDifferentNetwork": "The selected destination is on a different network.",
|
|
2881
|
+
"numberOfVirtualFunctions": "Number of virtual functions",
|
|
2882
|
+
"noSelectedAdaptersMessage": "Please make sure to select a physical network adapter to view its details."
|
|
2859
2883
|
},
|
|
2860
2884
|
"vmOverrides": {
|
|
2861
2885
|
"vmOverrides": "VM Overrides",
|
|
@@ -3350,7 +3374,8 @@
|
|
|
3350
3374
|
"liveMigrationDesc": "The VM is moved to a new host on the fly without stopping services. Users and applications experience virtually no downtime.",
|
|
3351
3375
|
"ramSuspendMigrationDesc": "The VM is suspended, its RAM contents are saved and transferred to a new host. It is then resumed, continuing execution from the exact previous state.",
|
|
3352
3376
|
"offlineMigrationDesc": "The VM is completely powered off, then its state and data are transferred to a new host. The service remains unavailable during the transfer.",
|
|
3353
|
-
"strategyMigrationErrorDesc": "Operation cannot be performed: the virtual machine is in an unsupported state. Allowed states are “Powered Off” (PowerOff) or “Powered On” (PowerOn). Please set the VM to one of these states and try again."
|
|
3377
|
+
"strategyMigrationErrorDesc": "Operation cannot be performed: the virtual machine is in an unsupported state. Allowed states are “Powered Off” (PowerOff) or “Powered On” (PowerOn). Please set the VM to one of these states and try again.",
|
|
3378
|
+
"changeComputeResourceStorageVirtualMachine": "Change the compute resource or storage of the virtual machine."
|
|
3354
3379
|
},
|
|
3355
3380
|
"storageAdapters": {
|
|
3356
3381
|
"none": "None",
|
|
@@ -3384,7 +3409,14 @@
|
|
|
3384
3409
|
"second": "Second",
|
|
3385
3410
|
"third": "Third",
|
|
3386
3411
|
"fourth": "Fourth",
|
|
3387
|
-
"once": "Once"
|
|
3412
|
+
"once": "Once",
|
|
3413
|
+
"selectFrequency": "Select Frequency",
|
|
3414
|
+
"frequency": "Frequency",
|
|
3415
|
+
"delayMinutes": "Delay (Minutes)",
|
|
3416
|
+
"selectPosition": "Select Position",
|
|
3417
|
+
"selectDay": "Select Day",
|
|
3418
|
+
"emails": "Emails",
|
|
3419
|
+
"taskDetails": "Task Details"
|
|
3388
3420
|
},
|
|
3389
3421
|
"license": {
|
|
3390
3422
|
"limits": "Limits",
|
|
@@ -3705,7 +3737,7 @@
|
|
|
3705
3737
|
"createBackupCommonSubtitle": "Specify a unique name and a description for the backup.",
|
|
3706
3738
|
"virtualMachineName": "Virtual Machine Name",
|
|
3707
3739
|
"restoreBackupSelectNameSubtitle": "Specify a unique name for the virtual machine.",
|
|
3708
|
-
"nameValidationDescription": "The name must contain Latin letters and numbers, '-', '_', '.' and it must contain from 5 to 64 characters.",
|
|
3740
|
+
"nameValidationDescription": "The name must contain Latin letters and numbers, '-', '_', '.' and it must contain from 5 to 64 characters. If you skip this step, the system will generate the name automatically.",
|
|
3709
3741
|
"vmNameExistInSelectedLocation": "A virtual machine or template with the same name exists. Enter a different name.",
|
|
3710
3742
|
"noNetworksAvailable": "No networks available",
|
|
3711
3743
|
"restoreBackupSelectNetworkSubtitle": "Select adapter types and networks in Procurator.",
|
|
@@ -3784,8 +3816,8 @@
|
|
|
3784
3816
|
"failuresAndResponsesDesc": "You can configure how Sphere HA responds to the failure conditions on\n this cluster. The following failure conditions are supported: host, host\n isolation, VM component protection (datastore with PDL and APD), VM and\n application.",
|
|
3785
3817
|
"admissionControlDesc": "Admission control is a policy used by Sphere HA to ensure failover capacity within a cluster. Raising the number of potential host failures will increase the availability constraints and capacity reserved.",
|
|
3786
3818
|
"heartbeatDatastoreDesc": "Sphere uses datastores to monitor hosts and virtual machines when the HA network has failed. Sphere selects 2 datastores for each host using the policy and datastore preferences specified below.",
|
|
3787
|
-
"advancedOptionsDesc": "You can set advanced options that affect the behavior of your
|
|
3788
|
-
"sphereHaMonitoringTooltipContent": "
|
|
3819
|
+
"advancedOptionsDesc": "You can set advanced options that affect the behavior of your Sphere HA cluster.",
|
|
3820
|
+
"sphereHaMonitoringTooltipContent": "Procurator hosts in this cluster exchange network heartbeats. Disable this feature when performing network maintenance that may cause isolation responses.",
|
|
3789
3821
|
"enableHostMonitoring": "Enable Host Monitoring",
|
|
3790
3822
|
"hostFailureResponse": "Host Failure Response",
|
|
3791
3823
|
"failureResponse": "Failure Response",
|
|
@@ -3941,9 +3973,11 @@
|
|
|
3941
3973
|
"backToLogin": "Back to Login",
|
|
3942
3974
|
"qrcodeDescription": "Scan this QR code with your authenticator app, or enter one of these codes manually. After that, confirm the action by entering the one-time code below.",
|
|
3943
3975
|
"showNotification": "Show a notification",
|
|
3944
|
-
"
|
|
3976
|
+
"notifications": "Notifications",
|
|
3977
|
+
"showNotificationDescription": "Show a notification when something goes wrong.",
|
|
3945
3978
|
"twoFactorMustBeEnabled": "Two-factor authentication (2FA) must be enabled, otherwise your account will be blocked.",
|
|
3946
|
-
"twoFactorMustWarning": "You have {0} days left to enable two-factor authentication (2FA), otherwise your account will be blocked (disabled)."
|
|
3979
|
+
"twoFactorMustWarning": "You have {0} days left to enable two-factor authentication (2FA), otherwise your account will be blocked (disabled).",
|
|
3980
|
+
"switchInterfaceDescription": "Switch to the new interface design."
|
|
3947
3981
|
},
|
|
3948
3982
|
"ssoConfiguration": {
|
|
3949
3983
|
"twoFactorPolicy": "Two-factor policy",
|
|
@@ -4017,10 +4051,47 @@
|
|
|
4017
4051
|
"enableAutostart": "Enable autostart",
|
|
4018
4052
|
"disableAutostart": "Disable autostart"
|
|
4019
4053
|
},
|
|
4020
|
-
"
|
|
4021
|
-
"
|
|
4022
|
-
"
|
|
4023
|
-
"
|
|
4024
|
-
"
|
|
4054
|
+
"dhcpServer": {
|
|
4055
|
+
"dhcpServer": "DHCP Server",
|
|
4056
|
+
"leftIp": "Left IP",
|
|
4057
|
+
"totalIp": "Total IP",
|
|
4058
|
+
"nameAndNetwork": "Name and Network",
|
|
4059
|
+
"dhcpServerNameRequiredAlert": "No DHCP Server name is specified. Enter a DHCP Server name.",
|
|
4060
|
+
"addDhcpServer": "Add DHCP Server",
|
|
4061
|
+
"assignNetwork": "Assign Network",
|
|
4062
|
+
"dhcpServerNetworkRequiredAlert": "Choose one of the listed networks!",
|
|
4063
|
+
"configureIPv4": "Configure IPv4",
|
|
4064
|
+
"subnet": "Subnet",
|
|
4065
|
+
"maskNotInRange": "The network bits are invalid. Specify a number between 2 and 30.",
|
|
4066
|
+
"maskInvalidCombination": "The combination of subnet address and network bits does not create a valid IP range. Change the network bits.",
|
|
4067
|
+
"subnetIsInvalid": "Unable to validate subnet address because there is an error in the network bits.",
|
|
4068
|
+
"subnetMustBeInRange": "Invalid subnet address. The last {zeroNumber} bits must be zero.",
|
|
4069
|
+
"subnetMask": "Subnet mask",
|
|
4070
|
+
"addressRange": "Address range",
|
|
4071
|
+
"invalidGateway": "This gateway address is not a valid IP address.",
|
|
4072
|
+
"invalidGatewayWithinSubnet": "The gateway address '{gateway}' is not valid within the specified subnet '{subnet}'.",
|
|
4073
|
+
"gatewayUnable": "Unable to validate gateway address because there is an error in the network bits.",
|
|
4074
|
+
"invalidAddressForDns": "The address '{address}' is not a valid IP address for a DNS server.",
|
|
4075
|
+
"invalidAddress": "The DNS server '{address}' is not a valid IP address.",
|
|
4076
|
+
"ipPool": "IP pool",
|
|
4077
|
+
"ipPoolRange": "IP pool range",
|
|
4078
|
+
"invalidIpPool": "IP pool range '{address}' is not valid.",
|
|
4079
|
+
"withoutSubnetIpPool": "Enter a subnet address to enable IP pool range.",
|
|
4080
|
+
"ipPoolRangeUnable": "Unable to validate IP pool range because there is an error in the network bits.",
|
|
4081
|
+
"gatewayOutsidePool": "The gateway address '{address}' is included in the IP pool ranges. Enter a gateway address that is outside the IP pool range or change the IP pool ranges.",
|
|
4082
|
+
"viewRange": "View Range",
|
|
4083
|
+
"hideRange": "Hide Range",
|
|
4084
|
+
"nameAndNetworkAssignment": "Name and Network Assignment",
|
|
4085
|
+
"ipv4Configuration": "IPv4 Configuration",
|
|
4086
|
+
"networkAssociation": "Network association",
|
|
4087
|
+
"twoIpMessage": "You need to enter two IP addresses.",
|
|
4088
|
+
"subnetIsRequired": "The subnet address cannot be empty. Enter the subnet address.",
|
|
4089
|
+
"gatewayIsRequired": "The gateway address cannot be empty. Enter the gateway address.",
|
|
4090
|
+
"networkAlreadyExists": "DHCP Server with this network already exists. Choose another network!",
|
|
4091
|
+
"nameWithSpaceMessage": "The name cannot contain spaces. Enter a valid name.",
|
|
4092
|
+
"nameWithNotLatinMessage": "The name cannot contain non-Latin letters. Enter a valid name.",
|
|
4093
|
+
"removeMessageForOne": "Delete the DHCP Server '{name}'?",
|
|
4094
|
+
"removeMessageForSome": "Delete the marked DHCP Servers: {names}?",
|
|
4095
|
+
"editDHCPServer": "Edit DHCP Server"
|
|
4025
4096
|
}
|
|
4026
4097
|
}
|