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.
Files changed (498) hide show
  1. package/.idea/inspectionProfiles/Project_Default.xml +3 -1
  2. package/assets/img/icons/icons-sprite-dark-5.svg +15 -2
  3. package/assets/img/icons/icons-sprite-light-5.svg +18 -5
  4. package/assets/localization/local_be.json +667 -51
  5. package/assets/localization/local_en.json +690 -73
  6. package/assets/localization/local_hy.json +670 -54
  7. package/assets/localization/local_kk.json +668 -52
  8. package/assets/localization/local_ru.json +704 -88
  9. package/assets/localization/local_zh.json +667 -51
  10. package/assets/scss/clarity/local_ar.json +12 -12
  11. package/assets/scss/common/global.scss +11 -0
  12. package/assets/scss/common/normalize.scss +3 -0
  13. package/assets/scss/common/theme.scss +2 -2
  14. package/components/atoms/dropdown/dropdown/Dropdown.vue +10 -8
  15. package/components/atoms/dropdown/dropdown/lib/models/interfaces.ts +1 -0
  16. package/components/atoms/list/dragDropList/DragDropList.vue +14 -10
  17. package/components/atoms/stack/StackBlock.vue +1 -1
  18. package/components/atoms/table/dataGrid/DataGrid.vue +4 -0
  19. package/components/atoms/table/dataGrid/DataGridColumnSwitch.vue +2 -2
  20. package/components/atoms/tooltip/TooltipError.vue +3 -0
  21. package/components/common/adapterManager/AdapterManagerNew.vue +128 -6
  22. package/components/common/adapterManager/addAdapterModal/AddAdapterModalNew.vue +64 -31
  23. package/components/common/adapterManager/addAdapterWarningModal/AddAdapterWarningModalNew.vue +3 -4
  24. package/components/common/adapterManager/ui/actions/bar/Bar.vue +2 -0
  25. package/components/common/adapterManager/ui/actions/bar/BarNew.vue +3 -2
  26. package/components/common/adapterManager/ui/actions/moveDownAdapterButton/MoveDownAdapterButtonNew.vue +1 -0
  27. package/components/common/adapterManager/ui/actions/moveUpAdapterButton/MoveUpAdapterButtonNew.vue +1 -0
  28. package/components/common/adapterManager/ui/noSelectedAdapter/NoSelectedAdapterNew.vue +10 -4
  29. package/components/common/adapterManager/ui/secondTitle/SecondTitleNew.vue +16 -1
  30. package/components/common/adapterManager/ui/table/TableNew.vue +3 -2
  31. package/components/common/adapterManager/ui/table/adapters/AdaptersNew.vue +70 -36
  32. package/components/common/adapterManager/ui/table/header/HeaderNew.vue +5 -1
  33. package/components/common/certificate/Certificate.vue +16 -6
  34. package/components/common/certificate/Info/Info.vue +61 -0
  35. package/components/common/certificate/{CertificateInfo.vue → Info/Old.vue} +6 -28
  36. package/components/common/certificate/Info/new/New.vue +285 -0
  37. package/components/common/certificate/Info/new/lib/config/index.ts +59 -0
  38. package/components/common/certificate/Info/new/lib/models/interfaces.ts +3 -0
  39. package/components/common/certificate/Info/new/lib/utils/index.ts +10 -0
  40. package/components/common/certificate/Old.vue +27 -0
  41. package/components/common/certificate/new/New.vue +30 -0
  42. package/components/common/certificate/new/Skeleton.vue +155 -0
  43. package/components/common/certificate/tools/New.vue +48 -0
  44. package/components/common/certificate/tools/Old.vue +39 -0
  45. package/components/common/certificate/{Tools.vue → tools/Tools.vue} +18 -23
  46. package/components/common/certificate/tools/lib/config/tabsPannel.ts +20 -0
  47. package/components/common/configure/physicalAdapters/PhysicalAdapters.vue +190 -0
  48. package/components/common/configure/physicalAdapters/PhysicalAdaptersNew.vue +392 -0
  49. package/components/common/configure/physicalAdapters/PhysicalAdaptersOld.vue +307 -0
  50. package/components/common/configure/physicalAdapters/buttons/Buttons.vue +106 -0
  51. package/components/common/configure/physicalAdapters/emptyBlock/EmptyBlock.vue +17 -0
  52. package/components/common/configure/physicalAdapters/emptyBlock/EmptyBlockNew.vue +37 -0
  53. package/components/common/configure/physicalAdapters/emptyBlock/EmptyBlockOld.vue +26 -0
  54. package/components/common/configure/physicalAdapters/modals/edit/Edit.vue +124 -0
  55. package/components/common/configure/physicalAdapters/modals/edit/EditNew.vue +232 -0
  56. package/components/common/configure/physicalAdapters/modals/edit/EditOld.vue +170 -0
  57. package/components/common/configure/physicalAdapters/modals/edit/lib/config/config.ts +59 -0
  58. package/components/common/configure/physicalAdapters/modals/edit/lib/models/interfaces.ts +17 -0
  59. package/components/common/configure/physicalAdapters/modals/edit/lib/validations/validations.ts +19 -0
  60. package/components/common/configure/physicalAdapters/tableView/TableView.vue +43 -0
  61. package/components/common/configure/physicalAdapters/tableView/TableViewNew.vue +345 -0
  62. package/components/common/configure/physicalAdapters/tableView/TableViewOld.vue +334 -0
  63. package/components/common/configure/physicalAdapters/tableView/lib/config/physicalAdaptersTableConfig.ts +177 -0
  64. package/components/common/configure/physicalAdapters/tableView/lib/config/physicalAdaptersTableConfigNew.ts +191 -0
  65. package/components/common/configure/physicalAdapters/tableView/lib/config/settings.ts +129 -0
  66. package/components/common/configure/physicalAdapters/tableView/lib/config/tableKeys.ts +14 -0
  67. package/components/common/configure/physicalAdapters/tableView/lib/models/interfaces.ts +33 -0
  68. package/components/common/configure/physicalAdapters/tableView/lib/models/types.ts +11 -0
  69. package/components/common/configure/physicalAdapters/tableView/mappers/mappers.ts +43 -0
  70. package/components/common/context/recursion/RecursionNew.vue +1 -2
  71. package/components/common/context/recursion/RecursionOld.vue +2 -2
  72. package/components/common/diagramMain/Diagram.vue +169 -85
  73. package/components/common/diagramMain/DiagramMain.vue +40 -10
  74. package/components/common/diagramMain/header/Header.vue +49 -0
  75. package/components/common/diagramMain/header/HeaderNew.vue +155 -0
  76. package/components/common/diagramMain/{Header.vue → header/HeaderOld.vue} +78 -67
  77. package/components/common/diagramMain/modals/Modals.vue +5 -5
  78. package/components/common/diagramMain/modals/UnsavedChangesModal.vue +32 -0
  79. package/components/common/diagramMain/modals/editSettings/EditSettings.vue +104 -102
  80. package/components/common/diagramMain/modals/editSettings/EditSettingsNew.vue +285 -0
  81. package/components/common/diagramMain/modals/editSettings/EditSettingsOld.vue +254 -0
  82. package/components/common/diagramMain/modals/editSettings/confirmTeamingSettingsModal/ConfirmTeamingSettingsModal.vue +31 -0
  83. package/components/common/diagramMain/modals/editSettings/confirmTeamingSettingsModal/ConfirmTeamingSettingsModalNew.vue +82 -0
  84. package/components/common/diagramMain/modals/editSettings/{ConfirmTeamingSettingsModal.vue → confirmTeamingSettingsModal/ConfirmTeamingSettingsModalOld.vue} +2 -5
  85. package/components/common/diagramMain/modals/editSettings/lib/config/config.ts +15 -0
  86. package/components/common/diagramMain/modals/editSettings/lib/models/interfaces.ts +6 -0
  87. package/components/common/diagramMain/modals/editSettings/lib/utils/utils.ts +177 -0
  88. package/components/common/diagramMain/modals/editSettings/modal/EditSettingsModal.vue +137 -0
  89. package/components/common/diagramMain/modals/editSettings/modal/EditSettingsModalNew.vue +91 -0
  90. package/components/common/diagramMain/modals/editSettings/{EditSettingsModal.vue → modal/EditSettingsModalOld.vue} +12 -51
  91. package/components/common/diagramMain/modals/editSettings/tabs/networkProperties/NetworkProperties.vue +158 -0
  92. package/components/common/diagramMain/modals/editSettings/tabs/networkProperties/NetworkPropertiesNew.vue +262 -0
  93. package/components/common/diagramMain/modals/editSettings/tabs/{NetworkProperties.vue → networkProperties/NetworkPropertiesOld.vue} +12 -110
  94. package/components/common/diagramMain/modals/editSettings/tabs/port/ipvFourSettings/IpvFourSettings.vue +192 -0
  95. package/components/common/diagramMain/modals/editSettings/tabs/port/ipvFourSettings/IpvFourSettingsNew.vue +388 -0
  96. package/components/common/diagramMain/modals/editSettings/tabs/port/{IpvFourSettings.vue → ipvFourSettings/IpvFourSettingsOld.vue} +11 -152
  97. package/components/common/diagramMain/modals/editSettings/tabs/port/portProperties/PortProperties.vue +139 -0
  98. package/components/common/diagramMain/modals/editSettings/tabs/port/portProperties/PortPropertiesNew.vue +286 -0
  99. package/components/common/diagramMain/modals/editSettings/tabs/port/{PortProperties.vue → portProperties/PortPropertiesOld.vue} +12 -103
  100. package/components/common/diagramMain/modals/editSettings/tabs/security/Security.vue +209 -0
  101. package/components/common/diagramMain/modals/editSettings/tabs/security/SecurityNew.vue +233 -0
  102. package/components/common/diagramMain/modals/editSettings/tabs/{Security.vue → security/SecurityOld.vue} +25 -48
  103. package/components/common/diagramMain/modals/editSettings/tabs/switchProperties/SwitchProperties.vue +128 -0
  104. package/components/common/diagramMain/modals/editSettings/tabs/switchProperties/SwitchPropertiesNew.vue +235 -0
  105. package/components/common/diagramMain/modals/editSettings/tabs/{SwitchProperties.vue → switchProperties/SwitchPropertiesOld.vue} +12 -89
  106. package/components/common/diagramMain/modals/editSettings/tabs/teamingFailover/TeamingFailover.vue +99 -0
  107. package/components/common/diagramMain/modals/editSettings/tabs/teamingFailover/TeamingFailoverNew.vue +319 -0
  108. package/components/common/diagramMain/modals/editSettings/tabs/{TeamingFailover.vue → teamingFailover/TeamingFailoverOld.vue} +11 -48
  109. package/components/common/diagramMain/modals/editSettings/tabs/trafficShaping/TrafficShaping.vue +173 -0
  110. package/components/common/diagramMain/modals/editSettings/tabs/trafficShaping/TrafficShapingNew.vue +348 -0
  111. package/components/common/diagramMain/modals/editSettings/tabs/{TrafficShaping.vue → trafficShaping/TrafficShapingOld.vue} +12 -134
  112. package/components/common/diagramMain/modals/lib/config/adapterModal.ts +9 -9
  113. package/components/common/diagramMain/modals/lib/config/diagramConfig.ts +43 -2
  114. package/components/common/diagramMain/modals/lib/config/index.ts +2 -1
  115. package/components/common/diagramMain/modals/lib/config/networkModal.ts +15 -15
  116. package/components/common/diagramMain/modals/lib/config/portModal.ts +12 -12
  117. package/components/common/diagramMain/modals/lib/config/vCenterModal.ts +2 -2
  118. package/components/common/diagramMain/modals/lib/config/vmKernelAdapter.ts +1 -1
  119. package/components/common/diagramMain/modals/lib/utils/index.ts +34 -4
  120. package/components/common/diagramMain/modals/managePhysicalAdapters/ManagePhysicalAdapters.vue +164 -0
  121. package/components/common/diagramMain/modals/managePhysicalAdapters/ManagePhysicalAdaptersNew.vue +306 -0
  122. package/components/common/diagramMain/modals/{ManagePhysicalAdaptersModal.vue → managePhysicalAdapters/ManagePhysicalAdaptersOld.vue} +33 -119
  123. package/components/common/diagramMain/modals/migrateVmkernelAdapter/MigrateVmkernelAdapter.vue +2 -2
  124. package/components/common/diagramMain/modals/migrateVmkernelAdapter/steps/ConnectionSettings.vue +3 -2
  125. package/components/common/diagramMain/modals/migrateVmkernelAdapter/validations/common.ts +8 -3
  126. package/components/common/diagramMain/modals/migrateVmkernelAdapter/validations/connectionSettings.ts +2 -2
  127. package/components/common/diagramMain/modals/remove/RemoveModalNew.vue +67 -16
  128. package/components/common/diagramMain/modals/viewSettings/info/InfoNew.vue +17 -0
  129. package/components/common/diagramMain/modals/viewSettings/viewSettings/ViewSettings.vue +3 -0
  130. package/components/common/diagramMain/modals/viewSettings/viewSettings/ViewSettingsNew.vue +66 -20
  131. package/components/common/diagramMain/modals/viewSettings/viewSettingsModal/ViewSettingsModalNew.vue +8 -0
  132. package/components/common/diagramMain/skeleton/Header.vue +31 -0
  133. package/components/common/diagramMain/skeleton/Switch.vue +75 -0
  134. package/components/common/layout/theHeader/Old.vue +1 -5
  135. package/components/common/layout/theHeader/ThemeSwitch.vue +1 -1
  136. package/components/common/layout/theHeader/modals/reconnect/New.vue +38 -30
  137. package/components/common/layout/theHeader/userMenu/modals/changePassword/ChangePassword.vue +16 -10
  138. package/components/common/layout/theHeader/userMenu/modals/changePassword/New.vue +8 -9
  139. package/components/common/layout/theHeader/userMenu/modals/preferences/New.vue +7 -0
  140. package/components/common/layout/theHeader/userMenu/modals/preferences/Old.vue +10 -2
  141. package/components/common/layout/theHeader/userMenu/modals/preferences/changeLanguage/ChangeLanguage.vue +12 -8
  142. package/components/common/layout/theHeader/userMenu/modals/preferences/defaultConsole/DefaultConsole.vue +7 -1
  143. package/components/common/layout/theHeader/userMenu/modals/preferences/defaultConsole/lib/config/consoleOptions.ts +8 -5
  144. package/components/common/layout/theHeader/userMenu/modals/preferences/security/Security.vue +48 -28
  145. package/components/common/layout/theHeader/userMenu/modals/preferences/timeFormat/TimeFormat.vue +9 -5
  146. package/components/common/layout/theHeader/userMenu/modals/preferences/timeFormat/lib/config/formatOptions.ts +1 -1
  147. package/components/common/layout/theHeader/userMenu/modals/preferences/view/New.vue +20 -8
  148. package/components/common/layout/theHeader/userMenu/modals/preferences/view/Old.vue +11 -11
  149. package/components/common/layout/theHeader/userMenu/modals/preferences/view/View.vue +12 -6
  150. package/components/common/mainNavigationPanel/MainNavigationPanelNew.vue +3 -1
  151. package/components/common/modals/Rename.vue +3 -1
  152. package/components/common/modals/newFolder/new/Location.vue +21 -1
  153. package/components/common/monitor/advanced/Advanced.vue +8 -5
  154. package/components/common/monitor/advanced/AdvancedNew.vue +4 -2
  155. package/components/common/monitor/advanced/AdvancedOld.vue +8 -3
  156. package/components/common/monitor/advanced/table/lib/models/interfaces.ts +1 -0
  157. package/components/common/monitor/advanced/table/lib/models/types.ts +1 -4
  158. package/components/common/monitor/advanced/table/tableNew/TableNew.vue +1 -0
  159. package/components/common/monitor/advanced/table/tableNew/lib/config/options.ts +8 -38
  160. package/components/common/monitor/advanced/table/tableNew/lib/utils/constructBody.ts +5 -7
  161. package/components/common/monitor/advanced/table/tableOld/lib/config/performanceDatatable.ts +27 -31
  162. package/components/common/monitor/advanced/tools/Tools.vue +17 -13
  163. package/components/common/monitor/advanced/tools/ToolsNew.vue +4 -2
  164. package/components/common/monitor/advanced/tools/ToolsOld.vue +4 -2
  165. package/components/common/monitor/advanced/tools/chartOptionsModal/ChartOptionsModal.vue +38 -18
  166. package/components/common/monitor/advanced/tools/chartOptionsModal/ChartOptionsModalNew.vue +99 -80
  167. package/components/common/monitor/advanced/tools/chartOptionsModal/ChartOptionsModalOld.vue +9 -2
  168. package/components/common/monitor/advanced/tools/chartOptionsModal/actions/ActionsOld.vue +1 -1
  169. package/components/common/monitor/advanced/tools/chartOptionsModal/actions/lib/utils/optionsActions.ts +2 -2
  170. package/components/common/monitor/advanced/tools/chartOptionsModal/counters/Counters.vue +13 -3
  171. package/components/common/monitor/advanced/tools/chartOptionsModal/counters/CountersNew.vue +22 -4
  172. package/components/common/monitor/advanced/tools/chartOptionsModal/counters/CountersOld.vue +9 -2
  173. package/components/common/monitor/advanced/tools/chartOptionsModal/counters/table/Table.vue +7 -3
  174. package/components/common/monitor/advanced/tools/chartOptionsModal/counters/table/lib/config/utils.ts +1901 -493
  175. package/components/common/monitor/advanced/tools/chartOptionsModal/counters/table/lib/models/interfaces.ts +5 -0
  176. package/components/common/monitor/advanced/tools/chartOptionsModal/counters/table/tableNew/TableNew.vue +9 -0
  177. package/components/common/monitor/advanced/tools/chartOptionsModal/counters/table/tableOld/lib/config/tableConfig.ts +4 -4
  178. package/components/common/monitor/advanced/tools/chartOptionsModal/counters/timespan/Timespan.vue +3 -3
  179. package/components/common/monitor/advanced/tools/chartOptionsModal/counters/timespan/TimespanNew.vue +14 -2
  180. package/components/common/monitor/advanced/tools/chartOptionsModal/counters/timespan/TimespanOld.vue +2 -2
  181. package/components/common/monitor/advanced/tools/chartOptionsModal/counters/timespan/object/Object.vue +22 -21
  182. package/components/common/monitor/advanced/tools/chartOptionsModal/lib/config/index.ts +2 -0
  183. package/components/common/monitor/advanced/tools/chartOptionsModal/lib/utils/checkSubmit.ts +11 -4
  184. package/components/common/monitor/advanced/tools/chartOptionsModal/metrics/MetricsNew.vue +2 -0
  185. package/components/common/monitor/advanced/tools/chartOptionsModal/metrics/lib/config/optionsMetrics.ts +34 -1
  186. package/components/common/monitor/advanced/tools/lib/config/advancedToolbar.ts +80 -11
  187. package/components/common/monitor/lib/utils/local_be.json +714 -0
  188. package/components/common/monitor/lib/utils/local_en.json +714 -0
  189. package/components/common/monitor/lib/utils/local_hy.json +714 -0
  190. package/components/common/monitor/lib/utils/local_kk.json +714 -0
  191. package/components/common/monitor/lib/utils/local_ru.json +714 -0
  192. package/components/common/monitor/lib/utils/local_zh.json +714 -0
  193. package/components/common/monitor/lib/utils/localization.ts +43 -0
  194. package/components/common/monitor/overview/filters/lib/config/filterOptions.ts +3 -1
  195. package/components/common/monitor/utilization/Old.vue +120 -0
  196. package/components/common/monitor/utilization/Utilization.vue +65 -0
  197. package/components/common/monitor/utilization/infoBlock/InfoBlock.vue +146 -0
  198. package/components/common/monitor/utilization/infoBlock/New.vue +185 -0
  199. package/components/common/monitor/utilization/infoBlock/Old.vue +190 -0
  200. package/components/common/monitor/utilization/infoBlock/progressBar/New.vue +64 -0
  201. package/components/common/monitor/utilization/infoBlock/progressBar/Old.vue +65 -0
  202. package/components/common/monitor/utilization/infoBlock/progressBar/ProgressBar.vue +84 -0
  203. package/components/common/monitor/utilization/infoBlock/progressBar/lib/models/interfaces.ts +10 -0
  204. package/components/common/monitor/utilization/lib/models/interfaces.ts +27 -0
  205. package/components/common/monitor/utilization/lib/models/types.ts +1 -0
  206. package/components/common/monitor/utilization/lib/utils/index.ts +112 -0
  207. package/components/common/monitor/utilization/new/New.vue +195 -0
  208. package/components/common/monitor/utilization/new/Portlet.vue +42 -0
  209. package/components/common/monitor/utilization/new/Skeleton.vue +120 -0
  210. package/components/common/monitor/utilization/new/lib/utils/newPortlet.ts +7 -0
  211. package/components/common/noDataProvided/NoDataProvided.vue +17 -0
  212. package/components/common/noDataProvided/NoDataProvidedNew.vue +66 -0
  213. package/components/common/noDataProvided/NoDataProvidedOld.vue +18 -0
  214. package/components/common/pages/auth/TheFooter.vue +9 -0
  215. package/components/common/pages/backups/lib/models/interfaces.ts +1 -0
  216. package/components/common/pages/backups/modals/Modals.vue +1 -0
  217. package/components/common/pages/backups/modals/createBackup/New.vue +4 -0
  218. package/components/common/pages/backups/modals/createBackup/Old.vue +1 -1
  219. package/components/common/pages/backups/modals/createBackup/datastores/tableView/new/lib/config/table.ts +4 -4
  220. package/components/common/pages/backups/modals/createBackup/datastores/tableView/old/lib/config/table.ts +4 -4
  221. package/components/common/pages/backups/modals/createBackup/disks/tableView/new/TableView.vue +0 -1
  222. package/components/common/pages/backups/modals/createBackup/disks/tableView/new/lib/config/table.ts +1 -1
  223. package/components/common/pages/backups/modals/createBackup/general/General.vue +1 -0
  224. package/components/common/pages/backups/modals/createBackup/general/GeneralNew.vue +1 -1
  225. package/components/common/pages/backups/modals/createBackup/general/GeneralOld.vue +59 -9
  226. package/components/common/pages/backups/modals/lib/config/restore.ts +1 -0
  227. package/components/common/pages/backups/modals/lib/models/interfaces.ts +1 -0
  228. package/components/common/pages/backups/modals/restore/New.vue +40 -35
  229. package/components/common/pages/backups/modals/restore/Restore.vue +4 -5
  230. package/components/common/pages/backups/modals/restore/disks/tableView/new/Table.vue +6 -1
  231. package/components/common/pages/backups/modals/restore/disks/tableView/new/lib/config/table.ts +1 -0
  232. package/components/common/pages/backups/modals/restore/lib/config/steps.ts +1 -1
  233. package/components/common/pages/backups/modals/restore/name/NameNew.vue +3 -0
  234. package/components/common/pages/backups/modals/restore/networks/table/new/Table.vue +7 -0
  235. package/components/common/pages/hardwareHealth/HardwareHealth.vue +69 -148
  236. package/components/common/pages/hardwareHealth/HardwareHealthNew.vue +252 -0
  237. package/components/common/pages/hardwareHealth/HardwareHealthOld.vue +192 -0
  238. package/components/common/pages/hardwareHealth/historyTestimony/Graph.vue +204 -251
  239. package/components/common/pages/hardwareHealth/historyTestimony/GraphNew.vue +211 -0
  240. package/components/common/pages/hardwareHealth/historyTestimony/GraphOld.vue +212 -0
  241. package/components/common/pages/hardwareHealth/historyTestimony/tools/Tools.vue +96 -248
  242. package/components/common/pages/hardwareHealth/historyTestimony/tools/ToolsNew.vue +227 -0
  243. package/components/common/pages/hardwareHealth/historyTestimony/tools/ToolsOld.vue +289 -0
  244. package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/ChartOptionsModal.vue +110 -112
  245. package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/ChartOptionsModalNew.vue +173 -0
  246. package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/ChartOptionsModalOld.vue +168 -0
  247. package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/NotificationNew.vue +22 -0
  248. package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/actions/Actions.vue +34 -55
  249. package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/actions/ActionsNew.vue +145 -0
  250. package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/actions/ActionsOld.vue +81 -0
  251. package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/actions/{SaveOptionsModal.vue → saveOptionsModal/SaveOptionsModal.vue} +2 -2
  252. package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/counters/Counters.vue +70 -49
  253. package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/counters/CountersNew.vue +108 -0
  254. package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/counters/CountersOld.vue +93 -0
  255. package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/counters/table/Table.vue +25 -78
  256. package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/counters/table/lib/models/interfaces.ts +13 -0
  257. package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/counters/table/tableNew/TableNew.vue +58 -0
  258. package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/counters/table/tableNew/lib/config/options.ts +19 -0
  259. package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/counters/table/tableNew/lib/config/tableData.ts +73 -0
  260. package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/counters/table/tableNew/lib/utils/constructTable.ts +31 -0
  261. package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/counters/table/tableOld/TableOld.vue +103 -0
  262. package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/counters/table/{lib → tableOld/lib}/config/tableConfig.ts +3 -1
  263. package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/counters/timespan/Timespan.vue +50 -33
  264. package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/counters/timespan/TimespanNew.vue +177 -0
  265. package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/counters/timespan/TimespanOld.vue +65 -0
  266. package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/metrics/Metrics.vue +15 -9
  267. package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/metrics/MetricsNew.vue +121 -0
  268. package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/metrics/MetricsOld.vue +22 -0
  269. package/components/common/pages/hardwareHealth/historyTestimony/tools/lib/config/toolbar.ts +68 -5
  270. package/components/common/pages/hardwareHealth/indicators/Indicators.vue +96 -0
  271. package/components/common/pages/hardwareHealth/indicators/lib/models/interfaces.ts +5 -0
  272. package/components/common/pages/hardwareHealth/lib/config/status.ts +14 -0
  273. package/components/common/pages/hardwareHealth/lib/config/tabsPannel.ts +38 -0
  274. package/components/common/pages/hardwareHealth/lib/models/enums.ts +1 -1
  275. package/components/common/pages/hardwareHealth/tableView/new/New.vue +230 -0
  276. package/components/common/pages/hardwareHealth/tableView/new/lib/config/alertWarningTable.ts +99 -0
  277. package/components/common/pages/hardwareHealth/tableView/new/lib/config/historyTestimonyTable.ts +126 -0
  278. package/components/common/pages/hardwareHealth/tableView/new/lib/config/sensorTable.ts +164 -0
  279. package/components/common/pages/hardwareHealth/tableView/new/lib/config/storageSensorsTable.ts +88 -0
  280. package/components/common/pages/hardwareHealth/tableView/new/lib/config/systemLogTable.ts +74 -0
  281. package/components/common/pages/hardwareHealth/tableView/{TableView.vue → old/Old.vue} +16 -7
  282. package/components/common/pages/hardwareHealth/tableView/{lib → old/lib}/config/alertWarningTable.ts +2 -2
  283. package/components/common/pages/hardwareHealth/tableView/{lib → old/lib}/config/historyTestimonyTable.ts +2 -2
  284. package/components/common/pages/hardwareHealth/tableView/{lib → old/lib}/config/sensorTable.ts +2 -2
  285. package/components/common/pages/hardwareHealth/tableView/{lib → old/lib}/config/storageSensorTable.ts +2 -2
  286. package/components/common/pages/hardwareHealth/tableView/{lib → old/lib}/config/systemLogTable.ts +2 -2
  287. package/components/common/pages/hardwareHealth/tableView/{lib → old/lib}/config/tableKeys.ts +1 -1
  288. package/components/common/pages/hardwareHealth/tableView/{modal → old/modal}/SensorWarning.vue +3 -0
  289. package/components/common/pages/hardwareHealth/tooltip/Tooltip.vue +73 -0
  290. package/components/common/pages/licensing/listView/lib/config/list.ts +1 -1
  291. package/components/common/pages/scheduledTasks/lib/models/interfaces.ts +6 -0
  292. package/components/common/pages/scheduledTasks/modals/common/frequency/Frequency.vue +51 -42
  293. package/components/common/pages/scheduledTasks/modals/common/frequency/afterStartup/AfterStartup.vue +20 -48
  294. package/components/common/pages/scheduledTasks/modals/common/frequency/afterStartup/New.vue +73 -0
  295. package/components/common/pages/scheduledTasks/modals/common/frequency/afterStartup/Old.vue +65 -0
  296. package/components/common/pages/scheduledTasks/modals/common/frequency/end/End.vue +18 -69
  297. package/components/common/pages/scheduledTasks/modals/common/frequency/end/New.vue +104 -0
  298. package/components/common/pages/scheduledTasks/modals/common/frequency/end/Old.vue +112 -0
  299. package/components/common/pages/scheduledTasks/modals/common/frequency/interval/Interval.vue +22 -53
  300. package/components/common/pages/scheduledTasks/modals/common/frequency/interval/New.vue +79 -0
  301. package/components/common/pages/scheduledTasks/modals/common/frequency/interval/Old.vue +68 -0
  302. package/components/common/pages/scheduledTasks/modals/common/frequency/lib/utils.ts +1 -1
  303. package/components/common/pages/scheduledTasks/modals/common/frequency/on/New.vue +170 -0
  304. package/components/common/pages/scheduledTasks/modals/common/frequency/on/Old.vue +234 -0
  305. package/components/common/pages/scheduledTasks/modals/common/frequency/on/On.vue +30 -168
  306. package/components/common/pages/scheduledTasks/modals/common/frequency/on/lib/config/options.ts +17 -0
  307. package/components/common/pages/scheduledTasks/modals/common/frequency/on/selectWeek/New.vue +66 -0
  308. package/components/common/pages/scheduledTasks/modals/common/frequency/on/selectWeek/Old.vue +44 -0
  309. package/components/common/pages/scheduledTasks/modals/common/frequency/on/selectWeek/SelectWeek.vue +17 -28
  310. package/components/common/pages/scheduledTasks/modals/common/frequency/on/selectWeek/lib/config/weekOptions.ts +20 -50
  311. package/components/common/pages/scheduledTasks/modals/common/frequency/startOn/New.vue +83 -0
  312. package/components/common/pages/scheduledTasks/modals/common/frequency/startOn/Old.vue +77 -0
  313. package/components/common/pages/scheduledTasks/modals/common/frequency/startOn/StartOn.vue +20 -51
  314. package/components/common/pages/scheduledTasks/modals/common/taskForm/New.vue +338 -0
  315. package/components/common/pages/scheduledTasks/modals/common/{newTaskForm/NewTaskForm.vue → taskForm/Old.vue} +12 -69
  316. package/components/common/pages/scheduledTasks/modals/common/taskForm/TaskForm.vue +129 -0
  317. package/components/common/pages/scheduledTasks/table/Table.vue +27 -81
  318. package/components/common/pages/scheduledTasks/table/expandDetails/ExpandDetails.vue +2 -2
  319. package/components/common/pages/scheduledTasks/table/expandDetails/New.vue +47 -17
  320. package/components/common/pages/scheduledTasks/table/expandDetails/Old.vue +4 -9
  321. package/components/common/pages/scheduledTasks/table/expandDetails/historyRun/HistoryRun.vue +16 -54
  322. package/components/common/pages/scheduledTasks/table/expandDetails/historyRun/new/New.vue +146 -0
  323. package/components/common/pages/scheduledTasks/table/expandDetails/historyRun/new/lib/config/historyRunsTable.ts +161 -0
  324. package/components/common/pages/scheduledTasks/table/expandDetails/historyRun/old/Old.vue +68 -0
  325. package/components/common/pages/scheduledTasks/table/expandDetails/historyRun/{lib → old/lib}/config/historyRunsTable.ts +4 -4
  326. package/components/common/pages/scheduledTasks/table/expandDetails/historyRun/{lib → old/lib}/config/tableKeys.ts +1 -1
  327. package/components/common/pages/scheduledTasks/table/expandDetails/lib/config/expandDetails.ts +7 -5
  328. package/components/common/pages/scheduledTasks/table/expandDetails/lib/models/interfaces.ts +8 -0
  329. package/components/common/pages/scheduledTasks/table/lib/models/enums.ts +13 -0
  330. package/components/common/pages/scheduledTasks/table/new/New.vue +318 -0
  331. package/components/common/pages/scheduledTasks/table/new/lib/config/scheduledTasksTable.ts +192 -0
  332. package/components/common/pages/scheduledTasks/table/new/lib/models/enums.ts +14 -0
  333. package/components/common/pages/scheduledTasks/table/old/Old.vue +93 -0
  334. package/components/common/pages/scheduledTasks/table/{lib → old/lib}/config/scheduledTasksTable.ts +13 -9
  335. package/components/common/pages/scheduledTasks/table/{lib → old/lib}/config/tableKeys.ts +1 -1
  336. package/components/common/pages/shortcuts/Shortcuts.vue +1 -1
  337. package/components/common/pages/shortcuts/category/CategoryNew.vue +1 -0
  338. package/components/common/pages/shortcuts/category/CategoryOld.vue +1 -0
  339. package/components/common/pages/shortcuts/lib/models/interfaces.ts +2 -0
  340. package/components/common/pages/tasks/Tasks.vue +4 -1
  341. package/components/common/pages/tasks/table/Table.vue +25 -23
  342. package/components/common/readyToComplete/New.vue +1 -0
  343. package/components/common/spiceConsole/SpiceConsole.vue +38 -0
  344. package/components/common/spiceConsole/keyboard/Keyboard.vue +5 -2
  345. package/components/common/split/horizontal/New.vue +6 -3
  346. package/components/common/split/horizontal/Old.vue +1 -1
  347. package/components/common/split/vertical/New.vue +42 -8
  348. package/components/common/split/vertical/Old.vue +31 -2
  349. package/components/common/split/vertical/Vertical.vue +4 -0
  350. package/components/common/tools/Actions.vue +8 -3
  351. package/components/common/tools/lib/models/interfaces.ts +2 -0
  352. package/components/common/tooltip/Help.vue +28 -28
  353. package/components/common/vm/actions/add/New.vue +21 -6
  354. package/components/common/vm/actions/clone/Clone.vue +78 -68
  355. package/components/common/vm/actions/clone/lib/config/steps.ts +8 -8
  356. package/components/common/vm/actions/clone/new/New.vue +71 -36
  357. package/components/common/vm/actions/clone/new/SkeletonName.vue +22 -0
  358. package/components/common/vm/actions/clone/old/Old.vue +10 -4
  359. package/components/common/vm/actions/common/customizeHardware/virtualHardware/VirtualHardware.vue +6 -3
  360. package/components/common/vm/actions/common/customizeHardware/virtualHardware/cdDvdDrive/CdDvdDrive.vue +4 -0
  361. package/components/common/vm/actions/common/customizeHardware/virtualHardware/cdDvdDrive/New.vue +2 -1
  362. package/components/common/vm/actions/common/customizeHardware/virtualHardware/cdDvdDrive/Old.vue +6 -3
  363. package/components/common/vm/actions/common/customizeHardware/virtualHardware/cdDvdDrive/media/Media.vue +14 -1
  364. package/components/common/vm/actions/common/customizeHardware/virtualHardware/cdDvdDrive/media/New.vue +5 -0
  365. package/components/common/vm/actions/common/customizeHardware/virtualHardware/cdDvdDrive/media/Old.vue +1 -0
  366. package/components/common/vm/actions/common/customizeHardware/virtualHardware/cpu/Cpu.vue +30 -9
  367. package/components/common/vm/actions/common/customizeHardware/virtualHardware/cpu/New.vue +7 -2
  368. package/components/common/vm/actions/common/customizeHardware/virtualHardware/cpu/Old.vue +6 -2
  369. package/components/common/vm/actions/common/customizeHardware/virtualHardware/cpu/coresPerSocket/CoresPerSocket.vue +29 -7
  370. package/components/common/vm/actions/common/customizeHardware/virtualHardware/cpu/shares/Shares.vue +2 -1
  371. package/components/common/vm/actions/common/customizeHardware/virtualHardware/limit/Limit.vue +3 -2
  372. package/components/common/vm/actions/common/customizeHardware/virtualHardware/limit/lib/config/options.ts +6 -3
  373. package/components/common/vm/actions/common/customizeHardware/virtualHardware/memory/Memory.vue +12 -0
  374. package/components/common/vm/actions/common/customizeHardware/virtualHardware/memory/New.vue +6 -1
  375. package/components/common/vm/actions/common/customizeHardware/virtualHardware/memory/Old.vue +6 -2
  376. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newHardDisk/NewHardDisk.vue +6 -4
  377. package/components/common/vm/actions/common/customizeHardware/virtualHardware/reservation/New.vue +2 -0
  378. package/components/common/vm/actions/common/customizeHardware/virtualHardware/reservation/Reservation.vue +9 -12
  379. package/components/common/vm/actions/common/customizeHardware/vmoptions/bootOptions/order/Order.vue +11 -3
  380. package/components/common/vm/actions/common/select/createType/lib/config/items.ts +1 -1
  381. package/components/common/vm/actions/common/select/options/New.vue +56 -48
  382. package/components/common/vm/actions/common/select/options/Old.vue +42 -24
  383. package/components/common/vm/actions/common/select/options/Options.vue +33 -2
  384. package/components/common/vm/actions/common/select/storage/Old.vue +0 -1
  385. package/components/common/vm/actions/common/select/storage/Storage.vue +2 -3
  386. package/components/common/vm/actions/common/select/storage/new/New.vue +13 -10
  387. package/components/common/vm/actions/common/select/storage/new/lib/config/table.ts +13 -15
  388. package/components/common/vm/actions/confirm/Confirm.vue +3 -0
  389. package/components/common/vm/actions/consolidate/New.vue +1 -1
  390. package/components/common/vm/actions/consolidate/Old.vue +2 -2
  391. package/components/common/vm/actions/editSettings/EditSettings.vue +20 -1
  392. package/components/common/vm/actions/register/New.vue +55 -27
  393. package/components/common/vm/actions/register/lib/config/steps.ts +1 -1
  394. package/components/common/vm/actions/rename/New.vue +11 -1
  395. package/components/common/vm/actions/rename/Old.vue +1 -0
  396. package/components/common/vm/actions/rename/Rename.vue +6 -0
  397. package/components/common/vm/snapshots/DetailView.vue +6 -6
  398. package/components/common/vm/snapshots/lib/models/types.ts +1 -0
  399. package/components/common/vm/snapshots/modals/confirm/New.vue +3 -2
  400. package/components/common/vm/snapshots/modals/confirm/Old.vue +3 -3
  401. package/components/common/vm/snapshots/modals/confirm/lib/models/enums.ts +2 -0
  402. package/components/common/vm/snapshots/modals/lib/config/modalTexts.ts +1 -0
  403. package/components/common/wizards/common/steps/name/New.vue +56 -35
  404. package/components/common/wizards/datastore/add/New.vue +6 -0
  405. package/components/common/wizards/datastore/add/lib/config/steps.ts +1 -1
  406. package/components/common/wizards/datastore/add/steps/_vmfsVersion/lib/config/versionOptions.ts +2 -2
  407. package/components/common/wizards/datastore/add/steps/nameAndDevice/NameAndDeviceNew.vue +60 -42
  408. package/components/common/wizards/datastore/add/steps/nameAndDevice/advancedOptions/AdvancedOptions.vue +7 -1
  409. package/components/common/wizards/datastore/add/steps/nameAndDevice/advancedOptions/New.vue +53 -76
  410. package/components/common/wizards/datastore/add/steps/nameAndDevice/advancedOptions/Old.vue +13 -61
  411. package/components/common/wizards/datastore/add/steps/nameAndDevice/advancedOptions/lib/config/raidOptions.ts +35 -0
  412. package/components/common/wizards/network/add/Add.vue +99 -109
  413. package/components/common/wizards/network/add/AddNew.vue +50 -21
  414. package/components/common/wizards/network/add/AddOld.vue +2 -2
  415. package/components/common/wizards/network/add/lib/config/config.ts +1 -1
  416. package/components/common/wizards/network/add/lib/config/initialData.ts +23 -9
  417. package/components/common/wizards/network/add/lib/config/selectSwitch.ts +5 -4
  418. package/components/common/wizards/network/add/lib/config/steps.ts +4 -2
  419. package/components/common/wizards/network/add/lib/models/interfaces.ts +1 -0
  420. package/components/common/wizards/network/add/lib/utils/utils.ts +8 -3
  421. package/components/common/wizards/network/add/mappers/mappers.ts +12 -5
  422. package/components/common/wizards/network/add/steps/connectionSettings/ConnectionSettings.vue +19 -13
  423. package/components/common/wizards/network/add/steps/connectionSettings/ConnectionSettingsNew.vue +10 -2
  424. package/components/common/wizards/network/add/steps/connectionSettings/ConnectionSettingsOld.vue +11 -4
  425. package/components/common/wizards/network/add/steps/createStandardSwitch/CreateStandardSwitch.vue +8 -26
  426. package/components/common/wizards/network/add/steps/ipFourSettings/IpFourSettings.vue +25 -16
  427. package/components/common/wizards/network/add/steps/ipFourSettings/IpFourSettingsNew.vue +84 -17
  428. package/components/common/wizards/network/add/steps/ipFourSettings/IpFourSettingsOld.vue +3 -0
  429. package/components/common/wizards/network/add/steps/portProperties/PortProperties.vue +13 -9
  430. package/components/common/wizards/network/add/steps/portProperties/PortPropertiesNew.vue +29 -5
  431. package/components/common/wizards/network/add/steps/portProperties/PortPropertiesOld.vue +8 -3
  432. package/components/common/wizards/network/add/steps/readyComplete/ReadyComplete.vue +8 -6
  433. package/components/common/wizards/network/add/steps/readyComplete/ReadyCompleteNew.vue +16 -7
  434. package/components/common/wizards/network/add/steps/selectConnectionType/SelectConnectionType.vue +7 -8
  435. package/components/common/wizards/network/add/steps/selectConnectionType/SelectConnectionTypeNew.vue +4 -0
  436. package/components/common/wizards/network/add/steps/selectTargetDevice/SelectTargetDevice.vue +11 -12
  437. package/components/common/wizards/network/add/steps/selectTargetDevice/SelectTargetDeviceNew.vue +89 -19
  438. package/components/common/wizards/network/add/steps/selectTargetDevice/SelectTargetDeviceOld.vue +4 -0
  439. package/components/common/wizards/network/add/steps/selectTargetDevice/modals/SelectNetwork.vue +8 -9
  440. package/components/common/wizards/network/add/steps/selectTargetDevice/modals/SelectStandardSwitch.vue +8 -9
  441. package/components/common/wizards/network/add/steps/selectTargetDevice/modals/SelectSwitch.vue +9 -10
  442. package/components/common/wizards/network/add/steps/selectTargetDevice/modals/new/SelectNetwork.vue +21 -0
  443. package/components/common/wizards/network/add/steps/selectTargetDevice/modals/new/SelectStandardSwitch.vue +18 -1
  444. package/components/common/wizards/network/add/steps/selectTargetDevice/modals/new/SelectSwitch.vue +18 -1
  445. package/components/common/wizards/network/add/validations/common.ts +8 -3
  446. package/components/common/wizards/network/add/validations/connectionSettings.ts +2 -2
  447. package/components/common/wizards/network/add/validations/networkValidation.ts +2 -2
  448. package/components/common/wizards/network/add/validations/portProperties.ts +2 -2
  449. package/components/common/wizards/vm/migrate/New.vue +15 -4
  450. package/components/common/wizards/vm/migrate/Old.vue +1 -1
  451. package/components/common/wizards/vm/migrate/lib/config/constructDataReady.ts +5 -0
  452. package/components/common/wizards/vm/migrate/lib/config/steps.ts +3 -2
  453. package/components/common/wizards/vm/migrate/steps/computeResource/ComputeResource.vue +30 -9
  454. package/components/common/wizards/vm/migrate/steps/computeResource/New.vue +2 -2
  455. package/components/common/wizards/vm/migrate/steps/computeResource/Old.vue +0 -1
  456. package/components/common/wizards/vm/migrate/steps/computeResource/tableView/new/New.vue +40 -21
  457. package/components/common/wizards/vm/migrate/steps/computeResource/tableView/new/lib/config/clusterTable.ts +340 -0
  458. package/components/common/wizards/vm/migrate/steps/computeResource/tableView/new/lib/config/hostTable.ts +44 -14
  459. package/components/common/wizards/vm/migrate/steps/computeResource/tableView/new/lib/models/enums.ts +4 -0
  460. package/components/common/wizards/vm/migrate/steps/priority/New.vue +7 -2
  461. package/components/common/wizards/vm/migrate/steps/selectStorage/New.vue +22 -7
  462. package/components/common/wizards/vm/migrate/steps/selectStorage/configure/batch/New.vue +6 -0
  463. package/components/common/wizards/vm/migrate/steps/selectStorage/configure/batch/table/new/New.vue +4 -1
  464. package/components/common/wizards/vm/migrate/steps/selectStorage/configure/batch/table/new/lib/config/datastoreTable.ts +12 -16
  465. package/components/common/wizards/vm/migrate/steps/selectStorage/configure/disk/table/new/New.vue +10 -5
  466. package/components/common/wizards/vm/migrate/steps/selectStorage/configure/disk/table/new/lib/config/diskTable.ts +16 -11
  467. package/components/common/wizards/vm/migrate/steps/selectStorage/configure/disk/table/old/lib/config/diskTable.ts +7 -1
  468. package/components/common/wizards/vm/migrate/steps/selectStorage/selectedPerDisk/New.vue +17 -10
  469. package/components/common/wizards/vm/migrate/steps/type/TypeNew.vue +1 -0
  470. package/components/common/wizards/vm/migrate/vmOrigin/New.vue +35 -15
  471. package/composables/useLocalStorage.ts +1 -1
  472. package/lib/models/interfaces.ts +3 -0
  473. package/lib/models/store/tasks/enums.ts +3 -0
  474. package/lib/models/store/tasks/types.ts +7 -6
  475. package/lib/utils/validation.ts +3 -2
  476. package/package.json +3 -3
  477. package/plugins/directives.ts +3 -5
  478. package/public/spice-console/application/WorkerProcess.js +411 -303
  479. package/public/spice-console/application/agent.js +18 -17
  480. package/public/spice-console/application/application.js +7 -6
  481. package/public/spice-console/lib/graphic.js +55 -11
  482. package/public/spice-console/process/mainprocess.js +10 -2
  483. package/public/spice-console/run.js +19 -8
  484. package/public/spice-console-minify/WorkerProcess.min.js +1 -1
  485. package/public/spice-console-minify/run.min.js +1 -1
  486. package/store/tasks/actions.ts +26 -8
  487. package/store/tasks/mappers/recentTasks.ts +1 -0
  488. package/components/common/certificate/lib/config/tabsPannel.ts +0 -22
  489. package/components/common/pages/scheduledTasks/table/lib/config/schedulerStatus.ts +0 -4
  490. package/components/common/pages/scheduledTasks/table/lib/models/interfaces.ts +0 -11
  491. /package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/{Notification.vue → NotificationOld.vue} +0 -0
  492. /package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/counters/table/{lib → tableOld/lib}/models/types.ts +0 -0
  493. /package/components/common/pages/hardwareHealth/tableView/{lib → old/lib}/models/interfaces.ts +0 -0
  494. /package/components/common/pages/hardwareHealth/tableView/{lib → old/lib}/models/types.ts +0 -0
  495. /package/components/common/pages/scheduledTasks/modals/common/{newTaskForm → taskForm}/lib/models/interfaces.ts +0 -0
  496. /package/components/common/pages/scheduledTasks/modals/common/{newTaskForm → taskForm}/lib/utils.ts +0 -0
  497. /package/components/common/pages/scheduledTasks/table/expandDetails/historyRun/{lib → old/lib}/models/types.ts +0 -0
  498. /package/components/common/pages/scheduledTasks/table/{lib → old/lib}/models/types.ts +0 -0
@@ -42,8 +42,8 @@
42
42
  "accessible": "Accessible",
43
43
  "active-backup": "Use explicit failover order",
44
44
  "activePolicy": "Active policy",
45
- "actualSpeedDuplex": "Actual speed, Duplex",
46
- "actualSpeed": "Actual speed",
45
+ "actualSpeedDuplex": "Actual Speed, Duplex",
46
+ "actualSpeed": "Actual Speed",
47
47
  "adapter": "Adapter",
48
48
  "adapterStatus": "Adapter Status",
49
49
  "adapterType": "Adapter Type",
@@ -137,11 +137,11 @@
137
137
  "availableCpu": "Available CPU",
138
138
  "availableCpus": "Available CPUs",
139
139
  "availableMemory": "Available Memory",
140
- "availableServices": "Available services",
140
+ "availableServices": "Available Services",
141
141
  "availableStorage": "Available Storage",
142
142
  "average": "Average",
143
143
  "averageBandwidth": "Average Bandwidth",
144
- "averageBandwidthKbit": "Average bandwidth (kbit/s)",
144
+ "averageBandwidthKbit": "Average Bandwidth (kbit/s)",
145
145
  "averageBigInvalidError": "The average bandwidth must not be greater than 9007199254740991.",
146
146
  "averageInvalidError": "The average bandwidth must be a positive integer number.",
147
147
  "back": "back",
@@ -172,7 +172,7 @@
172
172
  "burstSize": "Burst Size",
173
173
  "burstSizeBigInvalidError": "The burst size must not be greater than 9007199254740991.",
174
174
  "burstSizeInvalidError": "The burst size must be a positive integer number.",
175
- "burstSizeKb": "Burst size (KB)",
175
+ "burstSizeKb": "Burst Size (KB)",
176
176
  "bus": "Bus",
177
177
  "busLocation": "Bus Location",
178
178
  "cache": "Cache",
@@ -258,8 +258,8 @@
258
258
  "configurationNotWorkingNormally": "Configuration is not working normally.",
259
259
  "configureActiveDirectory": "Configure Active Directory over LADP/LDAPS connection to allow searching for users and groups.",
260
260
  "configureContentLibrary": "Configure content library",
261
- "configuredSpeedDuplex": "Configured speed, Duplex",
262
- "configuredSpeed": "Configured speed",
261
+ "configuredSpeedDuplex": "Configured Speed, Duplex",
262
+ "configuredSpeed": "Configured Speed",
263
263
  "configuredType": "Configured Type",
264
264
  "configureMainIdentityProvider": "Configure Main Identity Provider",
265
265
  "configureSettings": "Configure settings",
@@ -270,7 +270,7 @@
270
270
  "confirm": "Confirm",
271
271
  "confirmDeletion": "Confirm Deletion",
272
272
  "confirmDeletionDatastoreBodyFirst": "This operation will permanetly delete all the files associated with the virtual machines on the datastore.",
273
- "confirmDeletionDatastoreBodySecond": "Force mounted VMFS datastores will be removed from the inventory, but the data on them will not be deleted.",
273
+ "confirmDeletionDatastoreBodySecond": "Force mounted STORMFS datastores will be removed from the inventory, but the data on them will not be deleted.",
274
274
  "confirmDeletionDatastoreBodyThird": "Delete the selected datastore(s)?",
275
275
  "confirmDeletionDatastoreTitle": "Confirm Delete Datastore",
276
276
  "confirmDeletionInput": "To confirm, type \"{title}\" in the box bellow",
@@ -309,6 +309,7 @@
309
309
  "convertTemplateVirtualMachine": "Convert template to virtual machine",
310
310
  "copyPaste": "Copy & Paste",
311
311
  "copyTo": "Copy to",
312
+ "copyTo2": "Copy to",
312
313
  "copyUrl": "Copy Url",
313
314
  "coresPerSocket": "Cores per Socket",
314
315
  "counters": "Counters",
@@ -330,7 +331,8 @@
330
331
  "creationDate": "Creation date",
331
332
  "currentDisplayLimited": "Current settings limit the display to no more than {0} entries.",
332
333
  "currentEvcMode": "Current EVC Mode",
333
- "currentPassword": "Current password",
334
+ "current_evc_mode": "Current CPU Mode",
335
+ "currentPassword": "Current Password",
334
336
  "currentSettings": "Current settings",
335
337
  "custom": "Custom",
336
338
  "customAttributes": "Custom Attributes",
@@ -370,6 +372,7 @@
370
372
  "deleteClusterText": "Deleting a cluster also removes all the cluster's hosts and virtual machines from the inventory. If the cluster has been enabled with Workload Management, it will also remove namespaces and all the Kubernetes workloads.",
371
373
  "deleteClusterText2": "Are you sure you want to delete the cluster “{0}”? This action will also remove all its hosts and virtual machines from the inventory. If Workload Management is enabled, all namespaces and Kubernetes workloads will also be removed.",
372
374
  "deleteCustomAttribute": "Delete Custom Attribute",
375
+ "deleteCustomAttributes": "Delete Custom Attributes",
373
376
  "deleteDatacenter": "Delete Datacenter",
374
377
  "deleteDatacenterText": "Deleting a datacenter also deletes all the datacenter's alarms and removes all the datacenter's hosts and virtual machines from the inventory. Delete this datacenter?",
375
378
  "deleteDatastore": "Delete Datastore",
@@ -502,7 +505,7 @@
502
505
  "enableBothOptions": "Enable both options",
503
506
  "enableCpuHotAdd": "Enable CPU Hot Add",
504
507
  "enabled": "Enabled",
505
- "enabledServices": "Enabled services",
508
+ "enabledServices": "Enabled Services",
506
509
  "enableFallback": "Enable fallback",
507
510
  "enableIpv6SupportOnThisHost": "Enable IPv6 support on this host",
508
511
  "enableMonitoringEvents": "Enable monitoring events",
@@ -582,11 +585,12 @@
582
585
  "exposeHardwareAssistedVirtualizationGuestOs": "Expose hardware assisted virtualization to the guest OS",
583
586
  "extent": "Extent 0",
584
587
  "failback": "Failback",
585
- "failoverOrder": "Failover order",
588
+ "failoverOrder": "Failover Order",
586
589
  "fallbackNtpServers": "Fallback NTP servers",
587
590
  "faultDomain": "Fault Domain",
588
591
  "faults": "Faults",
589
592
  "faultTolerance": "Fault Tolerance",
593
+ "fault_tolerance": "Fault Tolerance",
590
594
  "faultToleranceLogging": "Fault Tolerance logging",
591
595
  "february": "February",
592
596
  "feedbackHelp": "Feedback Help",
@@ -744,6 +748,7 @@
744
748
  "init": "Initialization",
745
749
  "inputContainsInvalidCharacters": "The input contains invalid characters",
746
750
  "inputDevices": "Input Devices",
751
+ "input_devices": "Input Devices",
747
752
  "installDate": "Install Date",
748
753
  "installed": "Installed",
749
754
  "installedOn": "Installed on",
@@ -846,7 +851,7 @@
846
851
  "localContentLibrary": "Local content library",
847
852
  "localDesc": "Create a local storage on a host filesystem",
848
853
  "localLibrariesCanBePublishedDesc": "Local libraries can be published externally. Subscribed libraries come from other published libraries.",
849
- "localVmfs": "Local (VMFS)",
854
+ "localVmfs": "Local (STORMFS)",
850
855
  "lockdownMode": "Lockdown Mode",
851
856
  "lockdownNormal": "The host is accessible only through the local console or Sphere Zone",
852
857
  "lockdownStrict": "The host is accessible only through the Sphere Zone. The direct console UI server is stopped.",
@@ -967,6 +972,7 @@
967
972
  "moveDown": "Move Down",
968
973
  "moveFolder": "Move to Folder",
969
974
  "moveTo": "Move to",
975
+ "moveTo2": "Move to",
970
976
  "moveToWithDots": "Move To...",
971
977
  "moveUp": "Move Up",
972
978
  "ms": "ms",
@@ -1058,8 +1064,11 @@
1058
1064
  "noCertificatesAdded": "No certificates added.",
1059
1065
  "noConfigurableDeviceIsSelected": "No configurable device is selected.",
1060
1066
  "noDataProvided": "No Data Provided",
1067
+ "noDataProvidedMessage": "There is currently no data to display.",
1061
1068
  "noDhcpEnabledVmKernelNetAdapters": "There are no DHCP-enabled VMkernel network adapters.",
1062
1069
  "noFreeNetworkAdaptersAddSwitch": "There are no free network adapters to add to the switch.",
1070
+ "noAdaptersTitle": "No Free Network Adapters to Add",
1071
+ "noAdaptersMessage": "There are currently no free physical network adapters left to add to this switch.",
1063
1072
  "noItemsDisplay": "No items to display",
1064
1073
  "noItemSelected": "No items selected",
1065
1074
  "none": "None",
@@ -1080,14 +1089,14 @@
1080
1089
  "notInstalled": "not installed",
1081
1090
  "notRunning": "Not running",
1082
1091
  "notScheduled": "Not scheduled",
1083
- "notSupported": "Not supported",
1092
+ "notSupported": "Not Supported",
1084
1093
  "november": "November",
1085
1094
  "noVmKernelNetworkAdapterSelectedForMigration": "No VMkernel network adapter selected for migration. Select a VMkernel network adapter from the list to proceed.",
1086
1095
  "nsx": "NSX",
1087
1096
  "nsxPortGroupId": "NSX Port Group ID",
1088
1097
  "nTPServers": "NTP Servers",
1089
1098
  "numberDisplays": "Number of Displays",
1090
- "numberOfPorts": "Number of ports",
1099
+ "numberOfPorts": "Number of Ports",
1091
1100
  "numericCharacters": "numeric characters",
1092
1101
  "nvidiaGridGpuProfile": "NVIDIA GRID vGPU Profile",
1093
1102
  "nvmEOverRDMA": "NVMe over RDMA",
@@ -1154,7 +1163,7 @@
1154
1163
  "pCIDevices": "PCI Devices",
1155
1164
  "pCIPassthrough": "PCI passthrough",
1156
1165
  "peakBandwidth": "Peak Bandwidth",
1157
- "peakBandwidthKbit": "Peak bandwidth (kbit/s)",
1166
+ "peakBandwidthKbit": "Peak Bandwidth (kbit/s)",
1158
1167
  "peakBigInvalidError": "The peak bandwidth must not be greater than 9007199254740991.",
1159
1168
  "peakInvalidError": "The peak bandwidth must be a positive integer number.",
1160
1169
  "perenniallyReserved": "Perennially Reserved",
@@ -1167,6 +1176,7 @@
1167
1176
  "persistent": "Persistent",
1168
1177
  "persistentMemory": "Persistent Memory",
1169
1178
  "physicalAdapters": "Physical Adapters",
1179
+ "physical_adapters": "Physical Adapters",
1170
1180
  "physicalCpus": "physical CPUs",
1171
1181
  "physicalLocation": "Physical Location",
1172
1182
  "physicalNetworkAdapter": "Physical Network Adapter",
@@ -1336,8 +1346,8 @@
1336
1346
  "save": "Save",
1337
1347
  "scanForNewStorage": "Scan for new Storage Devices",
1338
1348
  "scanForNewStorageDesc": "Rescan all host bus adapters for new storage devices. Rescanning all adapters can be slow.",
1339
- "scanForNewVmsVolumes": "Scan for new VMFS Volumes",
1340
- "scanForNewVmsVolumesDesc": "Rescan all known storage devices for new VMFS volumes that have been added since the last scan. Rescanning known storage for new file systems is faster than rescanning for new storage.",
1349
+ "scanForNewVmsVolumes": "Scan for new STORMFS Volumes",
1350
+ "scanForNewVmsVolumesDesc": "Rescan all known storage devices for new STORMFS volumes that have been added since the last scan. Rescanning known storage for new file systems is faster than rescanning for new storage.",
1341
1351
  "scheduledTasks": "Scheduled Tasks",
1342
1352
  "schedulingAffinity": "Scheduling Affinity",
1343
1353
  "schedulingAffinityHelpDescription1": "Select physical processor affinity for this virtual machine.",
@@ -1530,6 +1540,7 @@
1530
1540
  "sunday": "Sunday",
1531
1541
  "support": "Support",
1532
1542
  "supportedEvcModes": "Supported EVC Modes",
1543
+ "supported_evc_modes": "Supported CPU Modes",
1533
1544
  "suspend": "Suspend",
1534
1545
  "suspended": "Suspended",
1535
1546
  "suspending": "Suspending",
@@ -1560,7 +1571,7 @@
1560
1571
  "tcpConfiguration": "TCP/IP configuration",
1561
1572
  "tcpIpStack": "TCP/IP Stack",
1562
1573
  "tcpPorts": "TCP ports",
1563
- "teamingAndFailover": "Teaming and failover",
1574
+ "teamingAndFailover": "Teaming and Failover",
1564
1575
  "technicalSupport": "Technical support",
1565
1576
  "technology": "Technology",
1566
1577
  "tellUsWhatYouEnjoyedSo": "Tell us what you enjoyed so that we can keep up the good work",
@@ -1612,7 +1623,7 @@
1612
1623
  "totalVideoMemory": "Total video memory",
1613
1624
  "totalVideoMemoryMustBetween": "Total video memory must be between {0} and {1}.",
1614
1625
  "tpm": "TPM",
1615
- "trafficShaping": "Traffic shaping",
1626
+ "trafficShaping": "Traffic Shaping",
1616
1627
  "transport": "Transport",
1617
1628
  "triggeredAlarms": "Triggered Alarms",
1618
1629
  "tuesday": "Tuesday",
@@ -1712,8 +1723,9 @@
1712
1723
  "virtualFlash": "Virtual Flash",
1713
1724
  "virtualFlashHostSwapCache": "Virtual Flash Host Swap Cache",
1714
1725
  "virtualFlashResource": "Virtual Flash Resource",
1726
+ "virtual_flash_resourcevirtual_flash_resource": "Virtual Flash Resource",
1715
1727
  "virtualFlashResourceManagement": "Virtual Flash Resource Management",
1716
- "virtualFunctions": "Virtual functions",
1728
+ "virtualFunctions": "Virtual Functions",
1717
1729
  "virtualFunctionsMustBe": "Virtual functions must be between 1 and 16.",
1718
1730
  "virtualHardware": "Virtual Hardware",
1719
1731
  "virtualMachine": "Virtual Machine",
@@ -1739,19 +1751,19 @@
1739
1751
  "vMCustomizationSpecifications": "VM Customization Specifications",
1740
1752
  "vmDrsScore": "VM DRS Score",
1741
1753
  "vmFolders": "VM Folders",
1742
- "vmfs": "VMFS",
1743
- "vmfsDesc": "Create a VMFS datastore on a disk/LUN.",
1744
- "vmfsDetails": "VMFS Details",
1745
- "vmfsVersion": "VMFS version",
1746
- "vmfsVersionDesc": "Specify the VMFS version for the datastore.",
1747
- "vmfsVersionDesc1": "VMFS 6 enables advanced format (512e) and automatic space reclamation support.",
1748
- "vmfsVersionDesc2": "VMFS 5 enables 2+TB LUN support.",
1754
+ "vmfs": "STORMFS",
1755
+ "vmfsDesc": "Create a STORMFS datastore on a disk/LUN.",
1756
+ "vmfsDetails": "STORMFS Details",
1757
+ "vmfsVersion": "STORMFS version",
1758
+ "vmfsVersionDesc": "Specify the STORMFS version for the datastore.",
1759
+ "vmfsVersionDesc1": "STORMFS 6 enables advanced format (512e) and automatic space reclamation support.",
1760
+ "vmfsVersionDesc2": "STORMFS 5 enables 2+TB LUN support.",
1749
1761
  "vmHardware": "VM Hardware",
1750
1762
  "vMIsSuccessfullyStarted": "VM is successfully started with Deployment Name:",
1751
1763
  "vMkernelAdapters": "VMkernel adapters",
1752
1764
  "vmKernelGateway": "VMkernel gateway",
1753
1765
  "vmKernelNetworkAdapter": "Internal Virtual Network Adapter",
1754
- "vmKernelPortSettings": "Kernel port settings",
1766
+ "vmKernelPortSettings": "Kernel Port Settings",
1755
1767
  "vMKernelTcpIpStackHandlesTraffic": "The TCP/IP stack processes traffic for Procurator platform services such as iSCSI, NFS, FCoE, vSan, host management, etc.",
1756
1768
  "vmLocation": "VM Location",
1757
1769
  "vmMonitoring": "VM Monitoring",
@@ -1771,8 +1783,9 @@
1771
1783
  "vmTemplates": "VM Templates",
1772
1784
  "inodeVmTemplates": "InodeVm Templates",
1773
1785
  "vmVersion": "VM version",
1786
+ "vm_version": "VM version",
1774
1787
  "vMwareSharedVirtualGraphics": "{trademark} shared virtual graphics",
1775
- "vSAN": "vSAN",
1788
+ "vSAN": "SAN",
1776
1789
  "vSphere_DRS": "Procurator DRS",
1777
1790
  "vSphere_HA": "Procurator HA",
1778
1791
  "vSphereBackupNFC": "NFC Procurator Backup",
@@ -1892,7 +1905,7 @@
1892
1905
  "browserOutDateDesc2": "You can also use the",
1893
1906
  "browserOutDateDesc3": "mobile version of the website",
1894
1907
  "theDateOnHostAndBrowserDifferent": "The date on the host and in the web browser is different",
1895
- "selectMigrationType": "Select a migration type",
1908
+ "selectMigrationType": "Select a Migration Type",
1896
1909
  "selectMigrationTypeDesc": "Change the virtual machines' compute resource, storage, or both.",
1897
1910
  "selectComputeResourceDesc": "Select a cluster, host, or resource pool to run virtual machines.",
1898
1911
  "selectNetworks": "Select Networks",
@@ -1912,7 +1925,7 @@
1912
1925
  "diskFormat": "Disk Format",
1913
1926
  "replicationGroup": "Replication Group",
1914
1927
  "allSelectedObjects": "All Selected Objects",
1915
- "selectVirtualDiskFormat": "Select virtual disk format",
1928
+ "selectVirtualDiskFormat": "Virtual disk format",
1916
1929
  "migrateCompleteStepDesc": "Verify that the information is correct and click Finish to start the migration.",
1917
1930
  "migrationType": "Migration Type",
1918
1931
  "changeComputeResourceOriginalStorage": "Change compute resource. Leave VM on the original storage",
@@ -2126,7 +2139,7 @@
2126
2139
  "ignoreBackupWindowFirstBackup": "Ignore backup window for first backup",
2127
2140
  "exportToXml": "Export to xml",
2128
2141
  "storageSensorsAlert": "The Small Footprint CIM Broker Daemon (SFCBD) is not running. Storage health data is reported by this daemon. Please see { link } for information on enabling this service.",
2129
- "thisKbArticle": "this KB article",
2142
+ "thisKbArticle": "this article",
2130
2143
  "noAlertOrWarningOutOfSensors": "No alerts or warnings out of {sensors} sensors.",
2131
2144
  "eventLogEntries": "Event log entries",
2132
2145
  "dataLock": "Data Lock",
@@ -2179,7 +2192,8 @@
2179
2192
  "zabbix": "Zabbix",
2180
2193
  "loginZabbixAccount": "Login to Zabbix Server",
2181
2194
  "newView": "New view",
2182
- "viewDesc": "Select view to be used by {trademark} Client",
2195
+ "newInterface": "New Interface",
2196
+ "viewDesc": "Select interface and visual preferences for {trademark} Client.",
2183
2197
  "emptyNameValidationDescription": "Name should not be empty",
2184
2198
  "kindValidationDescription": "Invalid record kind",
2185
2199
  "alert": "Alert",
@@ -2220,6 +2234,7 @@
2220
2234
  "sambaHelpDesc": "Samba storage uses the SMBCIFS protocol, provides cross -platform access, flexible rights and integration with Active Directory.",
2221
2235
  "deviceType": "Device type",
2222
2236
  "selectDisksInvolvedBackup": "Select disks involved in the backup.",
2237
+ "selectDisksInvolvedBackupNotRequired": "Select backup disks for copy. You can skip this step if copying is not required.",
2223
2238
  "dateTime": "Date Time",
2224
2239
  "eventTypeDescription": "Event Type Description",
2225
2240
  "possibleCauses": "Possible Causes",
@@ -2255,7 +2270,7 @@
2255
2270
  "embedded": "Embedded",
2256
2271
  "offUser": "Off User",
2257
2272
  "addingStorage": "Adding Storage",
2258
- "historyTestimony": "History of testimony",
2273
+ "historyTestimony": "History of Testimony",
2259
2274
  "alarmName": "Alarm Name",
2260
2275
  "objectType": "Object type",
2261
2276
  "lastModified": "Last modified",
@@ -2286,7 +2301,7 @@
2286
2301
  "lastRunResult": "Last run result",
2287
2302
  "nextRun": "Next run",
2288
2303
  "removeScheduledTask": "Remove Scheduled Task",
2289
- "removeScheduledTaskDesc": "If a scheduled task is removed, all upcoming tasks in it will be cancelled.Are you sure you want to remove the scheduled task ({taskName}) for {vmName}?",
2304
+ "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
2305
  "neverShowThisMessageAgain": "Never show this message again",
2291
2306
  "scheduleNewTasks": "Schedule New Tasks",
2292
2307
  "scheduleTaskEdit": "Schedule Task Edit",
@@ -2365,6 +2380,7 @@
2365
2380
  "allActive": "All active",
2366
2381
  "text": "Text",
2367
2382
  "vApp": "vApp",
2383
+ "vapp": "Apps",
2368
2384
  "contentLibrary": "Content Library",
2369
2385
  "libraryItem": "Library Item",
2370
2386
  "removeTagDialog": "Are you sure you want to remove tag “{tagName}” from “{selectedItemName}”?",
@@ -2388,12 +2404,13 @@
2388
2404
  "viewObject": "View Object",
2389
2405
  "eventDetails": "Event Details",
2390
2406
  "noResultsFound": "No results found",
2391
- "confirmNetworkRemoval": "Confirm Network Removal",
2392
- "confirmPortRemoval": "Confirm Port Removal",
2393
- "confirmSwitchRemoval": "Confirm Switch Removal",
2394
- "confirmNetworkRemovalMessage": "Are you sure you want to remove the \"{networkName}\" network from virtual switch \"{switchName}\"?",
2395
- "confirmPortRemovalMessage": "Are you sure you want to remove the \"{portName}\" port from virtual switch \"{switchName}\"?",
2396
- "confirmSwitchRemovalMessage": "Are you sure you want to remove the \"{switchName}\" virtual switch from host \"{hostName}\"?",
2407
+ "confirmNetworkRemoval": "Remove Port Group",
2408
+ "confirmPortRemoval": "Remove VMkernel Adapter",
2409
+ "confirmSwitchRemoval": "Remove Standard Switch",
2410
+ "confirmNetworkRemovalMessage": "Are you sure you want to remove the port group \"{networkName}\" from the virtual switch \"{switchName}\"?",
2411
+ "confirmPortRemovalMessage1": "Removing a VMkernel adapter makes all services that use it unavailable.",
2412
+ "confirmPortRemovalMessage2": "Are you sure you want to remove the VMkernel adapter \"{portName}\" from the virtual switch \"{switchName}\"?",
2413
+ "confirmSwitchRemovalMessage": "Are you sure you want to remove the switch \"{switchName}\" from the host \"{hostName}\"?",
2397
2414
  "dnsDomainNameIsInvalid": "DNS domain name is invalid",
2398
2415
  "fieldCannotContainSpaces": "This field cannot contain only spaces",
2399
2416
  "fieldMustBeBetweenCharacters": "This field must be between 5 and 64 characters long",
@@ -2404,9 +2421,11 @@
2404
2421
  "deleteNotesMessage": "Are you sure you want to delete notes from \"{name}\"?",
2405
2422
  "passwordContainsInvalidCharacters": "Password contains invalid characters",
2406
2423
  "fieldInvalidCharacters": "This field must contain from 3 to 64 characters and can include only Latin letters, numbers, and symbols '_', '-', '.'",
2424
+ "errorInvalidCharacters": "The file name does not meet the requirements. Use only Latin letters, numbers, and the characters \"_\", \"-\", \".\" (from 3 to 64 characters).",
2407
2425
  "rowsPerPage": "Rows per page",
2408
2426
  "unsavedChanges": "Unsaved Changes!",
2409
2427
  "unsavedChangesDescription": "Are you sure you want to leave this page? Unsaved changes will be lost.",
2428
+ "unsavedChangesModalDescription": "Are you sure you want to close this window? Unsaved changes will be lost.",
2410
2429
  "leave": "Leave",
2411
2430
  "export": "Export",
2412
2431
  "allRowsCount": "All rows ({0})",
@@ -2452,6 +2471,7 @@
2452
2471
  "incompleteProcess": "Incomplete Process!",
2453
2472
  "incompleteProcessMessage": "Are you sure you want to leave this page? Your progress will be lost, and you’ll need to start over.",
2454
2473
  "notAvailable": "Not Available",
2474
+ "not_available": "Not Available",
2455
2475
  "strict": "Strict",
2456
2476
  "incorrectOrMissingValuesBelow": "There are incorrect or missing values below",
2457
2477
  "vmtVersioningDesc": "Versioning information is only available for templates in a Published or Local Content Library. To add a template to an existing content library, select a VM and select \"Clone as Template to Library\".",
@@ -2514,7 +2534,7 @@
2514
2534
  "existingSwitch": "Existing Switch",
2515
2535
  "targetDevice": "Target Device",
2516
2536
  "selectASwitch": "Select a switch",
2517
- "switchEs": "switch(es)",
2537
+ "switchEs": "switch(s)",
2518
2538
  "networkS": "network(s)",
2519
2539
  "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.",
2520
2540
  "onceUnmountProgressDoNotPerform": "Once the unmount is in progress do not perform any configuration operations that might result in I/O to the datastore.",
@@ -2575,9 +2595,9 @@
2575
2595
  "backupStorageDirectory": "Backup Storage Directory",
2576
2596
  "sphereServerSettings": "Sphere Server Settings",
2577
2597
  "database": "Database",
2578
- "eventCleanup": "Event cleanup",
2579
- "eventRetentionDays": "Event retention (days)",
2580
- "editSphereGeneralSettings": "Edit Sphere general settings",
2598
+ "eventCleanup": "Event Cleanup",
2599
+ "eventRetentionDays": "Event Retention (Days)",
2600
+ "editSphereGeneralSettings": "Edit Sphere General Settings",
2581
2601
  "eventRetentionDaysDecreaseAlertText": "Decreasing the retention days will not trigger an immediate cleanup. Events will be removed during the next scheduled cleanup (every 24 hours).",
2582
2602
  "enterDatabaseSettingsDesc": "Enter database settings. Use tasks and events retention settings to limit the growth of the database.",
2583
2603
  "lettersLengthError": "Enter no more than {0} letters.",
@@ -2588,7 +2608,66 @@
2588
2608
  "datastoreExistsTheSelectedLocation": "A datastore with the same name exists in the selected location. Enter a new name.",
2589
2609
  "deleteConfirmation": "Delete Confirmation",
2590
2610
  "deleteItem": "Delete Item",
2591
- "deleteItems": "Delete Items"
2611
+ "deleteItems": "Delete Items",
2612
+ "existingNetworkMessage": "A network with this name already exists.",
2613
+ "addNetworkingReadyCompleteSubtitle": "Review the details before applying the changes.",
2614
+ "systemEvents": "System Events",
2615
+ "noComputeResourceSelected": "No compute resource selected",
2616
+ "noItemsSelected": "No items selected",
2617
+ "reconnectToServer": "Reconnect to Server",
2618
+ "connecting": "Connecting",
2619
+ "reconnecting": "Reconnecting",
2620
+ "combinationIncorrect": "The username and password combination is incorrect.",
2621
+ "weekMon": "Mon",
2622
+ "weekTue": "Tue",
2623
+ "weekWed": "Wed",
2624
+ "weekThu": "Thu",
2625
+ "weekFri": "Fri",
2626
+ "weekSat": "Sat",
2627
+ "weekSun": "Sun",
2628
+ "raidConfiguration": "Raid Configuration",
2629
+ "enterValidNumber": "Enter a valid number.",
2630
+ "virtualmachines": "Virtual Machines",
2631
+ "total_vmotion_migrations": "Total VM migrations",
2632
+ "ip_addresses": "IP addresses",
2633
+ "url": "URL",
2634
+ "backup_count": "Backups count",
2635
+ "last_backup": "Last backup",
2636
+ "resource_pools": "Resource Pools",
2637
+ "cluster_service_health": "Cluster Service Health",
2638
+ "healthy": "Healthy",
2639
+ "evc_mode": "VM Compatibility",
2640
+ "cpu_cores": "CPU Cores",
2641
+ "cores_per_socket": "Cores per Socket",
2642
+ "datastore_clusters": "Datastore Clusters",
2643
+ "sphere_ha_state": "Sphere HA State",
2644
+ "ft_logging_nic": "FT Logging NIC",
2645
+ "not_configured": "Not configured",
2646
+ "vmotion_nic": "Migration Adapter",
2647
+ "evc_not_supported": "EVC not supported",
2648
+ "memory_hot_add": "Memory Hot Add",
2649
+ "vmci_device": "VMCI Device",
2650
+ "controllers": "Controllers",
2651
+ "scsi_adapters": "SCSI Adapters",
2652
+ "canceled": "Canceled",
2653
+ "retrying": "Retrying",
2654
+ "timeFormatDesc1": "Select time format",
2655
+ "languageDesc1": "Select display language",
2656
+ "remoteConsoleVmrc1": "Remote Console (VMRC)",
2657
+ "viewDesc1": "Select interface and visual preferences",
2658
+ "thisLdapConnectionNotSecured": "This LDAP connection is not secured. To secure this LDAP connection, upload an SSL certificate.",
2659
+ "ha": "HA",
2660
+ "not_configurable": "Not configurable",
2661
+ "no_label": "No label",
2662
+ "valid": "Valid",
2663
+ "empty_address": "Empty address",
2664
+ "empty_credentials": "Empty credentials",
2665
+ "connection_failed": "Connection failed",
2666
+ "noStorageSelected": "No storage selected",
2667
+ "noActiveAdaptersAssigned": "No Active Adapters Assigned",
2668
+ "noActiveAdaptersAssignedMessage1": "No active adapters are assigned in Teaming and Failover settings.",
2669
+ "noActiveAdaptersAssignedMessage2": "Click Save to proceed without resolving this issue, or Cancel to review your changes.",
2670
+ "action": "Action"
2592
2671
  },
2593
2672
  "auth": {
2594
2673
  "welcomeTo": "Welcome to",
@@ -2618,7 +2697,8 @@
2618
2697
  "recentTask": "Recent Tasks",
2619
2698
  "taskName": "Task Name",
2620
2699
  "moreTasks": "More Tasks",
2621
- "vmUpdateSteps": "VM Update Steps"
2700
+ "vmUpdateSteps": "VM Update Steps",
2701
+ "waitingTime": "Waiting Time"
2622
2702
  },
2623
2703
  "layout": {
2624
2704
  "alarms": "Alarms",
@@ -2738,7 +2818,20 @@
2738
2818
  "actionsSameInfoDesc": "Actions are same as Alarm Rule 1 due to same severity level",
2739
2819
  "systemStack": "System stack",
2740
2820
  "localSubnet": "Local Subnet",
2741
- "renewCertificateConfirm": "Renew Certificate Confirmation",
2821
+ "renewCertificateConfirm": "Renew Certificate",
2822
+ "elapsed": "Elapsed",
2823
+ "expiring": "Expiring",
2824
+ "expiringSoon": "Expiring soon",
2825
+ "certificateExpiration": "{0} days remaining until expiration",
2826
+ "locality": "Locality",
2827
+ "serialNumber": "Serial Number",
2828
+ "commonName": "Common Name",
2829
+ "organizationalUnit": "Organizational Unit",
2830
+ "organization": "Organization",
2831
+ "state": "State",
2832
+ "country": "Country",
2833
+ "validPeriod": "Valid Period",
2834
+ "certificateActiveDates": "Certificate Active Dates",
2742
2835
  "renewCertificateConfirmDesc": "Are you sure you want to renew the certificate for the host “{0}”?",
2743
2836
  "refreshCACertificatesConfirm": "Refresh CA Certificates Confirmation",
2744
2837
  "refreshCACertificatesConfirmDesc": "Are you sure you want to refresh the CA certificates on the host “{0}”?",
@@ -2848,13 +2941,22 @@
2848
2941
  "existsSessionName": "A session with this name already exists. Enter a unique session name.",
2849
2942
  "removePortMirroringSession": "Remove port mirroring session {name}?",
2850
2943
  "editPortMirroringSession": "Edit Port Mirroring Session",
2851
- "reno": "New Reno",
2944
+ "reno": "Reno",
2852
2945
  "cubic": "CUBIC",
2853
2946
  "thereAreNoSelectedSources": "There are no selected sources.",
2854
2947
  "selectedSourcesDifferentNetworks": "The selected sources are located on different networks.",
2855
2948
  "thereAreNoSelectedDestinations": "There are no selected destinations.",
2856
2949
  "moreOneDestinationSelected": "More than one destination selected.",
2857
- "selectedDestinationDifferentNetwork": "The selected destination is on a different network."
2950
+ "selectedDestinationDifferentNetwork": "The selected destination is on a different network.",
2951
+ "numberOfVirtualFunctions": "Number of virtual functions",
2952
+ "noSelectedAdaptersMessage": "Please make sure to select a physical network adapter to view its details.",
2953
+ "vfNotNegativeMessage": "The number of virtual functions is invalid. Enter a number between 1 and 63.",
2954
+ "vfRequiredMessage": "Specify the number of virtual functions!",
2955
+ "noVirtualSwitchesTitle": "No virtual switches",
2956
+ "noVirtualSwitchesMessage": "Virtual switches will appear here once added.",
2957
+ "versionRaw": "Version Raw",
2958
+ "configSupported": "Config Supported",
2959
+ "configApplied": "Config Applied"
2858
2960
  },
2859
2961
  "vmOverrides": {
2860
2962
  "vmOverrides": "VM Overrides",
@@ -2946,7 +3048,28 @@
2946
3048
  "fieldNotContainSpecialCharacters": "The field must not contain special characters",
2947
3049
  "noObjectsFound": "No objects found",
2948
3050
  "cpuS": "CPU(s)",
2949
- "vmAutomation": "VM Automation"
3051
+ "vmAutomation": "VM Automation",
3052
+ "connect": "Connection",
3053
+ "image_profile": "Image Profile",
3054
+ "shares": "Shares",
3055
+ "reservation": "Reservation",
3056
+ "limit": "Limit",
3057
+ "capacity": "Capacity",
3058
+ "adapter_type": "Adapter Type",
3059
+ "mac_address": "MAC Address",
3060
+ "video_card": "Video Card",
3061
+ "total_video_memory": "Total Video Memory",
3062
+ "number_of_displays": "Number of Displays",
3063
+ "other_hardware": "Other Hardware",
3064
+ "template": "Templates",
3065
+ "drive_cdrom": "Drive CD-ROM",
3066
+ "drive_disk": "Drive Disk",
3067
+ "network_adapter": "Network Adapter",
3068
+ "week": "week",
3069
+ "days": "days",
3070
+ "hours": "hours",
3071
+ "minutes": "minutes",
3072
+ "datacenter": "Datacenter"
2950
3073
  },
2951
3074
  "contextMenu": {
2952
3075
  "actionsMenuPower": "Power",
@@ -3232,6 +3355,8 @@
3232
3355
  "dateTimeIsoFormat": "Date and time are in ISO 8601 format.",
3233
3356
  "deleteConfirmationChartOption": "Delete Confirmation",
3234
3357
  "deleteConfirmationChartOptionDesc": "Are you sure you want to remove chart options “{0}” from “Default”.",
3358
+ "deleteChartOption": "Delete Chart Option",
3359
+ "deleteChartOptionDesc": "Are you sure you want to delete the chart option “{0}” from “{1}”.",
3235
3360
  "from": "From",
3236
3361
  "memoryUsage": "Memory Usage",
3237
3362
  "memoryFree": "Memory Free",
@@ -3292,7 +3417,243 @@
3292
3417
  "pagesPerSecond": "pages per second",
3293
3418
  "kilobytes": "KB",
3294
3419
  "faultsPerSecond": "faults per second",
3295
- "memory": "Memory"
3420
+ "memory": "Memory",
3421
+ "readThroughput": "Read throughput",
3422
+ "readOperationLatency": "Read operation latency",
3423
+ "numberOfReadRequests": "Number of read requests",
3424
+ "readCommandsIssued": "Read commands issued",
3425
+ "readCommandsLatency": "Read commands latency",
3426
+ "writeThroughput": "Write throughput",
3427
+ "writeOperationLatency": "Write operation latency",
3428
+ "numberOfWriteRequests": "Number of write requests",
3429
+ "kbs": "KB/s",
3430
+ "ms": "ms",
3431
+ "item": "pcs",
3432
+ "avgCommandsSec": "Avg commands/sec",
3433
+ "itemSec": "pcs/sec",
3434
+ "avgReadReqSec": "Avg read req/sec",
3435
+ "avgWriteReqSec": "Avg write req/sec",
3436
+ "readOpsSec": "Read ops/sec",
3437
+ "opsSec": "ops/sec",
3438
+ "readThroughput2": "Read throughput",
3439
+ "bS": "B/s",
3440
+ "readRetransSec": "Read retrans/sec",
3441
+ "readTimeoutsSec": "Read timeouts/sec",
3442
+ "avgReadExecTime": "Avg read exec time",
3443
+ "avgReadRtt": "Avg read RTT",
3444
+ "writeOpsSec": "Write ops/sec",
3445
+ "writeThroughput2": "Write throughput",
3446
+ "writeRetransSec": "Write retrans/sec",
3447
+ "writeTimeoutsSec": "Write timeouts/sec",
3448
+ "avgWriteExecTime": "Avg write exec time",
3449
+ "avgWriteRtt": "Avg write RTT",
3450
+ "getAttributesSec": "Get attributes/sec",
3451
+ "lookupOpsSec": "Lookup ops/sec",
3452
+ "accessCheckSec": "Access check/sec",
3453
+ "totalOpsSec": "Total ops/sec",
3454
+ "totalThroughput": "Total throughput",
3455
+ "totalRetransSec": "Total retrans/sec",
3456
+ "totalTimeoutsSec": "Total timeouts/sec",
3457
+ "avgTotalExecTime": "Avg total exec time",
3458
+ "avgTotalRtt": "Avg total RTT",
3459
+ "rpcCallsSec": "RPC calls/sec",
3460
+ "rpcRetransSec": "RPC retrans/sec",
3461
+ "rpcAuthRefreshSec": "RPC auth refresh/sec",
3462
+ "nullOpsSec": "NULL ops/sec",
3463
+ "compoundOpsSec": "COMPOUND ops/sec",
3464
+ "openOpsSec": "OPEN ops/sec",
3465
+ "openConfirmSec": "OPEN_CONFIRM/sec",
3466
+ "openNoattrSec": "OPEN_NOATTR/sec",
3467
+ "openDowngradeSec": "OPEN_DOWNGRADE/sec",
3468
+ "closeOpsSec": "CLOSE ops/sec",
3469
+ "setattrOpsSec": "SETATTR ops/sec",
3470
+ "fsinfoOpsSec": "FSINFO ops/sec",
3471
+ "renewOpsSec": "RENEW ops/sec",
3472
+ "setclientidSec": "SETCLIENTID/sec",
3473
+ "setclientidConfirmSec": "SETCLIENTID_CONFIRM/sec",
3474
+ "lockOpsSec": "LOCK ops/sec",
3475
+ "locktOpsSec": "LOCKT ops/sec",
3476
+ "lockuOpsSec": "LOCKU ops/sec",
3477
+ "accessOpsSec": "ACCESS ops/sec",
3478
+ "getattrOpsSec": "GETATTR ops/sec",
3479
+ "lookupRootSec": "LOOKUP_ROOT/sec",
3480
+ "readOpsSec2": "READ ops/sec",
3481
+ "readdirOpsSec": "READDIR ops/sec",
3482
+ "readlinkSec": "READLINK/sec",
3483
+ "removeOpsSec": "REMOVE ops/sec",
3484
+ "renameOpsSec": "RENAME ops/sec",
3485
+ "linkOpsSec": "LINK ops/sec",
3486
+ "symlinkSec": "SYMLINK/sec",
3487
+ "createopsSec": "CREATE ops/sec",
3488
+ "pathconfSec": "PATHCONF/sec",
3489
+ "statfsSec": "STATFS/sec",
3490
+ "writeOpsSec2": "WRITE ops/sec",
3491
+ "commitSec": "COMMIT/sec",
3492
+ "delegreturnSec": "DELEGRETURN/sec",
3493
+ "getfhSec": "GETFH/sec",
3494
+ "secinfoSec": "SECINFO/sec",
3495
+ "restorefhSec": "RESTOREFH/sec",
3496
+ "savefhSec": "SAVEFH/sec",
3497
+ "chooseSettings": "Choose settings",
3498
+ "deleteOptionSettings": "Delete option/settings",
3499
+ "totalIOSpeed": "Total I/O speed",
3500
+ "custom": "Custom",
3501
+ "chartColor": "Chart color",
3502
+ "metricName": "Metric name",
3503
+ "metricDescription": "Metric description",
3504
+ "unitOfMeasurement": "Unit of measurement",
3505
+ "cpuUsage": "CPU Usage",
3506
+ "vCpus": "vCPUs",
3507
+ "cpuUsed": "CPU Used",
3508
+ "coresPerSocket": "Cores per Socket",
3509
+ "totalCpuTime": "Total CPU Time",
3510
+ "provisionedMhz2": "Provisioned MHz",
3511
+ "cpuLimit": "CPU Limit",
3512
+ "userTime": "User Time",
3513
+ "systemTime": "System Time",
3514
+ "childrenUserTime": "Children User Time",
3515
+ "childrenSystemTime": "Children System Time",
3516
+ "coStopTime": "Co-stop Time",
3517
+ "throttledTime": "Throttled Time",
3518
+ "cpuLatency": "CPU Latency",
3519
+ "swapWait": "Swap Wait",
3520
+ "hypervisorOverlap": "Hypervisor Overlap",
3521
+ "cpuDemand2": "CPU Demand",
3522
+ "cpuEntitlement": "CPU Entitlement",
3523
+ "numaNode": "NUMA Node",
3524
+ "ticks": "ticks",
3525
+ "affinityViolations": "Affinity Violations",
3526
+ "chartOptionsVmCpuDescription1": "CPU usage as a percentage during the interval",
3527
+ "chartOptionsVmCpuDescription2": "CPU usage in megahertz",
3528
+ "chartOptionsVmCpuDescription3": "Current number of virtual CPUs assigned",
3529
+ "chartOptionsVmCpuDescription4": "Number of CPU cores per socket",
3530
+ "chartOptionsVmCpuDescription5": "Total CPU time consumed by VM process",
3531
+ "chartOptionsVmCpuDescription6": "Provisioned MHz allocated to VM",
3532
+ "chartOptionsVmCpuDescription7": "CPU limit in MHz (resource limit)",
3533
+ "chartOptionsVmCpuDescription8": "CPU time spent in user space",
3534
+ "chartOptionsVmCpuDescription9": "CPU time spent in kernel space",
3535
+ "chartOptionsVmCpuDescription10": "CPU time of child processes in user space",
3536
+ "chartOptionsVmCpuDescription11": "CPU time of child processes in kernel space",
3537
+ "chartOptionsVmCpuDescription12": "Co-stop time — vCPU halted due to SMP synchronization overhead",
3538
+ "chartOptionsVmCpuDescription13": "CPU time limited by MHz cap (cgroup/resource limit throttling)",
3539
+ "chartOptionsVmCpuDescription14": "Scheduling latency — vCPU wait time on scheduler run queue (/proc/schedstat)",
3540
+ "chartOptionsVmCpuDescription15": "CPU wait time due to swap I/O operations",
3541
+ "chartOptionsVmCpuDescription16": "CPU time consumed by hypervisor servicing the VM (system time proxy)",
3542
+ "chartOptionsVmCpuDescription17": "Current CPU demand in MHz (actual resource consumption)",
3543
+ "chartOptionsVmCpuDescription18": "CPU entitlement — MHz the VM is entitled to use (limit or proportional share)",
3544
+ "chartOptionsVmCpuDescription19": "NUMA node where the VM process is currently running",
3545
+ "chartOptionsVmCpuDescription20": "Count of times the VM ran on a CPU outside its allowed affinity set",
3546
+ "virtualMemory": "Virtual Memory",
3547
+ "physicalMemoryRss": "Physical Memory (RSS)",
3548
+ "sharedPages2": "Shared Pages",
3549
+ "codeSegment": "Code Segment",
3550
+ "sharedLibraries": "Shared Libraries",
3551
+ "dataStack2": "Data + Stack",
3552
+ "dirtyPages2": "Dirty Pages",
3553
+ "balloonCurrent": "Balloon Current",
3554
+ "balloonMax": "Balloon Max",
3555
+ "balloonRss": "Balloon RSS",
3556
+ "vmSwap": "VM Swap",
3557
+ "peakVirtualMemory": "Peak Virtual Memory",
3558
+ "peakPhysicalMemory": "Peak Physical Memory",
3559
+ "memoryConsumed": "Memory Consumed",
3560
+ "memoryOverhead": "Memory Overhead",
3561
+ "memoryGranted": "Memory Granted",
3562
+ "activeMemory": "Active Memory",
3563
+ "activeWriteMemory": "Active Write Memory",
3564
+ "compressedMemory": "Compressed Memory",
3565
+ "compressionRate": "Compression Rate",
3566
+ "memorySwapped": "Memory Swapped",
3567
+ "swapInRate": "Swap In Rate",
3568
+ "swapOutRate": "Swap Out Rate",
3569
+ "memoryLatency": "Memory Latency",
3570
+ "memoryEntitlement": "Memory Entitlement",
3571
+ "numaLocalRatio": "NUMA Local Ratio",
3572
+ "chartOptionsVmMemoryDescription1": "Total virtual memory size of the VM process",
3573
+ "chartOptionsVmMemoryDescription2": "Resident set size — physical memory actually used",
3574
+ "chartOptionsVmMemoryDescription3": "Shared memory pages (shared libraries, mmap)",
3575
+ "chartOptionsVmMemoryDescription4": "Code segment size (executable code pages)",
3576
+ "chartOptionsVmMemoryDescription5": "Shared library memory size",
3577
+ "chartOptionsVmMemoryDescription6": "Data + stack segment size",
3578
+ "chartOptionsVmMemoryDescription7": "Pages modified in memory but not yet written to disk",
3579
+ "chartOptionsVmMemoryDescription8": "Current balloon device size — memory reclaimed from guest via balloon",
3580
+ "chartOptionsVmMemoryDescription9": "Maximum balloon size — upper limit for balloon inflation",
3581
+ "chartOptionsVmMemoryDescription10": "Balloon RSS — physical memory used by balloon device",
3582
+ "chartOptionsVmMemoryDescription11": "Swap space used by VM process (VmSwap from /proc/status)",
3583
+ "chartOptionsVmMemoryDescription12": "Peak virtual memory size of VM process (VmPeak)",
3584
+ "chartOptionsVmMemoryDescription13": "High water mark of RSS (VmHWM) — peak physical memory used",
3585
+ "chartOptionsVmMemoryDescription14": "Memory consumed by VM (RSS) — actual physical memory usage",
3586
+ "chartOptionsVmMemoryDescription15": "Memory overhead (VmSize - RSS) — virtual memory not backed by physical",
3587
+ "chartOptionsVmMemoryDescription16": "Memory granted to guest via balloon device (BalloonCurrent)",
3588
+ "chartOptionsVmMemoryDescription17": "Active physical memory (RSS) — pages currently in use",
3589
+ "chartOptionsVmMemoryDescription18": "Active write memory — dirty anonymous pages (RssAnon)",
3590
+ "chartOptionsVmMemoryDescription19": "Compressed memory in zswap/zram used by VM",
3591
+ "chartOptionsVmMemoryDescription20": "Memory compression ratio (VmSwap / BalloonMaximum × 100)",
3592
+ "chartOptionsVmMemoryDescription21": "Swap memory used by VM process",
3593
+ "chartOptionsVmMemoryDescription22": "Swap in rate — read bytes from /proc/[pid]/io per collection",
3594
+ "chartOptionsVmMemoryDescription23": "Swap out rate — write bytes from /proc/[pid]/io per collection",
3595
+ "chartOptionsVmMemoryDescription24": "Memory access latency indicator (major page faults as proxy)",
3596
+ "chartOptionsVmMemoryDescription25": "Memory entitlement — BalloonMaximum, max memory VM can use",
3597
+ "chartOptionsVmMemoryDescription26": "Ratio of NUMA-local memory allocations to total",
3598
+ "chartOptionsVmMemoryDescription27": "Low-level swap used by VM process (VmSwap)",
3599
+ "diskRead": "Disk Read",
3600
+ "diskWrite": "Disk Write",
3601
+ "readOperations": "Read Operations",
3602
+ "writeOperations": "Write Operations",
3603
+ "maxDiskLatency": "Max Disk Latency",
3604
+ "readIOPS": "Read IOPS",
3605
+ "writeIOPS": "Write IOPS",
3606
+ "queueDepth": "Queue Depth",
3607
+ "pendingReads": "Pending Reads",
3608
+ "pendingWrites": "Pending Writes",
3609
+ "readLatency2": "Read Latency",
3610
+ "writeLatency2": "Write Latency",
3611
+ "smallSeeks": "Small Seeks",
3612
+ "mediumSeeks": "Medium Seeks",
3613
+ "largeSeeks": "Large Seeks",
3614
+ "chartOptionsVmDiskDescription1": "Disk read throughput — bytes read per second",
3615
+ "chartOptionsVmDiskDescription2": "Disk write throughput — bytes written per second",
3616
+ "chartOptionsVmDiskDescription3": "Number of read operations per interval",
3617
+ "chartOptionsVmDiskDescription4": "Number of write operations per interval",
3618
+ "chartOptionsVmDiskDescription5": "Maximum of average read/write latency",
3619
+ "chartOptionsVmDiskDescription6": "Read IOPS — syscall read operations from /proc/[pid]/io",
3620
+ "chartOptionsVmDiskDescription7": "Write IOPS — syscall write operations from /proc/[pid]/io",
3621
+ "chartOptionsVmDiskDescription8": "Approximated I/O queue depth (Little's law: IOPS × latency)",
3622
+ "chartOptionsVmDiskDescription9": "Read outstanding I/O — pending reads (bytes/ops/4096)",
3623
+ "chartOptionsVmDiskDescription10": "Write outstanding I/O — pending writes (bytes/ops/4096)",
3624
+ "chartOptionsVmDiskDescription11": "Read load — average read latency per I/O operation",
3625
+ "chartOptionsVmDiskDescription12": "Write load — average write latency per I/O operation",
3626
+ "chartOptionsVmDiskDescription13": "Count of small disk seeks (< 64 sectors)",
3627
+ "chartOptionsVmDiskDescription14": "Count of medium disk seeks (64–1024 sectors)",
3628
+ "chartOptionsVmDiskDescription15": "Count of large disk seeks (> 1024 sectors)",
3629
+ "networkTraffic": "Network Traffic",
3630
+ "bytesTransmitted2": "Bytes Transmitted",
3631
+ "bytesReceived2": "Bytes Received",
3632
+ "transmitErrors": "Transmit Errors",
3633
+ "receiveErrors": "Receive Errors",
3634
+ "packetsTransmitted2": "Packets Transmitted",
3635
+ "packetsReceived2": "Packets Received",
3636
+ "transmitDrops": "Transmit Drops",
3637
+ "receiveDrops": "Receive Drops",
3638
+ "broadcastTransmitted": "Broadcast Transmitted",
3639
+ "broadcastReceived": "Broadcast Received",
3640
+ "multicastTransmitted": "Multicast Transmitted",
3641
+ "multicastReceived": "Multicast Received",
3642
+ "chartOptionsVmNetworkDescription1": "Total network traffic (TX + RX bytes) aggregated across all VM interfaces",
3643
+ "chartOptionsVmNetworkDescription2": "Bytes transmitted per second per interface",
3644
+ "chartOptionsVmNetworkDescription3": "Bytes received per second per interface",
3645
+ "chartOptionsVmNetworkDescription4": "Transmit errors per interface",
3646
+ "chartOptionsVmNetworkDescription5": "Receive errors per interface",
3647
+ "chartOptionsVmNetworkDescription6": "Packets transmitted per interface",
3648
+ "chartOptionsVmNetworkDescription7": "Packets received per interface",
3649
+ "chartOptionsVmNetworkDescription8": "Dropped packets on transmit per interface",
3650
+ "chartOptionsVmNetworkDescription9": "Dropped packets on receive per interface",
3651
+ "chartOptionsVmNetworkDescription10": "Broadcast packets transmitted",
3652
+ "chartOptionsVmNetworkDescription11": "Broadcast packets received",
3653
+ "chartOptionsVmNetworkDescription12": "Multicast packets transmitted",
3654
+ "chartOptionsVmNetworkDescription13": "Multicast packets received",
3655
+ "virtualMachineCpu": "Virtual Machine CPU",
3656
+ "virtualMachineMemory": "Virtual Machine Memory"
3296
3657
  },
3297
3658
  "inventoryTabs": {
3298
3659
  "summary": "Summary",
@@ -3334,22 +3695,26 @@
3334
3695
  "snapshotHasNoDescriptionYet": "This snapshot has no description yet.",
3335
3696
  "takeSnapshot": "Take Snapshot",
3336
3697
  "newSnapshot": "New Snapshot",
3337
- "editSnapshot": "Edit snapshot"
3698
+ "editSnapshot": "Edit snapshot",
3699
+ "revertLatestSnapshot": "Revert to Latest Snapshot",
3700
+ "consolidateSnapshots": "Consolidate Snapshots"
3338
3701
  },
3339
3702
  "importVms": {
3340
- "selectSourceTooltipDesc": "No Trusted infrastructure Administrator, credits are accepted from esxi and vSphere",
3703
+ "selectSourceTooltipDesc": "VMware user credentials must have Administrator privileges. Credentials for ESXi and vCenter Server are supported",
3341
3704
  "selectNetworksSubtitle": "Select adapter types and networks in Procurator for the virtual machine migration.",
3342
3705
  "reviewImportVmDetails": "Review the details before importing the VM."
3343
3706
  },
3344
3707
  "migrateVm": {
3345
- "migrationStrategy": "Migration strategy",
3708
+ "migrationStrategy": "Migration Strategy",
3346
3709
  "liveMigration": "Live Migration (No Downtime)",
3347
3710
  "ramSuspendMigration": "RAM Suspend Migration",
3348
3711
  "offlineMigration": "Offline Migration",
3349
3712
  "liveMigrationDesc": "The VM is moved to a new host on the fly without stopping services. Users and applications experience virtually no downtime.",
3350
3713
  "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.",
3351
3714
  "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.",
3352
- "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."
3715
+ "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.",
3716
+ "changeComputeResourceStorageVirtualMachine": "Change the compute resource or storage of the virtual machine.",
3717
+ "reviewDetailsBeforeVmMigrated": "Review the details before the virtual machine is migrated."
3353
3718
  },
3354
3719
  "storageAdapters": {
3355
3720
  "none": "None",
@@ -3383,7 +3748,14 @@
3383
3748
  "second": "Second",
3384
3749
  "third": "Third",
3385
3750
  "fourth": "Fourth",
3386
- "once": "Once"
3751
+ "once": "Once",
3752
+ "selectFrequency": "Select Frequency",
3753
+ "frequency": "Frequency",
3754
+ "delayMinutes": "Delay (Minutes)",
3755
+ "selectPosition": "Select Position",
3756
+ "selectDay": "Select Day",
3757
+ "emails": "Emails",
3758
+ "taskDetails": "Task Details"
3387
3759
  },
3388
3760
  "license": {
3389
3761
  "limits": "Limits",
@@ -3546,7 +3918,11 @@
3546
3918
  "metricsNotFound": "Metrics not found",
3547
3919
  "uploadFolder": "Upload folder",
3548
3920
  "uploadFiles": "Upload files",
3549
- "clickForUse": "Click for use"
3921
+ "clickForUse": "Click for use",
3922
+ "tryingToConnect": "TRYING TO CONNECT TO VIRTUAL MACHINE...",
3923
+ "connectionTimedOut": "CONNECTION TIMED OUT.",
3924
+ "connectionTimedOutDesc": "VM is already in use or is down",
3925
+ "connectionTimedOutBtn": "Click here to reload page"
3550
3926
  },
3551
3927
  "vmWizard": {
3552
3928
  "selectCreationType": "Select a Creation Type",
@@ -3610,7 +3986,9 @@
3610
3986
  "rangeEndOutOfRange": "Range end {0} is out of valid range (0-{1})",
3611
3987
  "rangeDuplicate": "Processor {0} is specified more than once",
3612
3988
  "invalidFormat": "Invalid format: \"{0}\". Use numbers (e.g., \"0\") or ranges (e.g., \"0-3\")",
3613
- "encriptionPolicy": "Encription Policy"
3989
+ "encriptionPolicy": "Encription Policy",
3990
+ "maxParallel": "Max parallel",
3991
+ "lastCloneSubtitle": "Review the details before the virtual machine is cloned."
3614
3992
  },
3615
3993
  "feedback": {
3616
3994
  "additionalDetailsHelp": "Additional Details Help",
@@ -3665,7 +4043,8 @@
3665
4043
  "up": "Up"
3666
4044
  },
3667
4045
  "adapter": {
3668
- "disable": "Disable"
4046
+ "disable": "Disable",
4047
+ "rescanAdapterTitle": "To activate, select an adapter"
3669
4048
  },
3670
4049
  "bottomPanel": {
3671
4050
  "failed": "Failed"
@@ -3677,7 +4056,182 @@
3677
4056
  "noPrivilegesAdded": "No privileges added. Please add some to view.",
3678
4057
  "pleaseMakeSureSelectRoleViewDetails": "Please make sure to select a role to view its details.",
3679
4058
  "noRolesCreatedYet": "No roles created yet. Please add a new role to get started.",
3680
- "deleteRoleDesc": "Are you sure you want to delete the role “{0}”? This action cannot be undone."
4059
+ "deleteRoleDesc": "Are you sure you want to delete the role “{0}”? This action cannot be undone.",
4060
+ "showBackup": "Show Backup",
4061
+ "no_access": "No Access",
4062
+ "restrict_access": "Restrict Access",
4063
+ "read_only": "Read Only",
4064
+ "read_only_access": "Read Only Access",
4065
+ "administrator": "Administrator",
4066
+ "full_access_rights": "Full Access Rights",
4067
+ "rbac": "RBAC",
4068
+ "tasks": "Tasks",
4069
+ "event_console": "Event Console",
4070
+ "identity_providers": "Identity Providers",
4071
+ "metadata": "Metadata",
4072
+ "show_backups": "Show Backups",
4073
+ "show_events": "Show Events",
4074
+ "show_identity_providers": "Show Identity Providers",
4075
+ "show_cluster": "Show Cluster",
4076
+ "show_templates": "Show Templates",
4077
+ "show_network": "Show Network",
4078
+ "show_buckets": "Show Buckets",
4079
+ "show_rbac": "Show RBAC",
4080
+ "show_zone": "Show Zone",
4081
+ "show_ghydra": "Show Ghydra",
4082
+ "show_datacenter": "Show Datacenter",
4083
+ "show_tasks": "Show Tasks",
4084
+ "show_vm": "Show Vm",
4085
+ "show_snapshots": "Show Snapshots",
4086
+ "show_scheduled_task": "Show Scheduled Task",
4087
+ "show_datastore": "Show Datastore",
4088
+ "show_datastore_files": "Show Datastore Files",
4089
+ "show_host": "Show Host",
4090
+ "upload_file": "Upload File",
4091
+ "rename_item": "Rename Item",
4092
+ "delete_item": "Delete Item",
4093
+ "enter_maintenance_mode": "Enter Maintenance Mode",
4094
+ "move_datastore": "Move Datastore",
4095
+ "create_datastore": "Create Datastore",
4096
+ "remove_datastore": "Remove Datastore",
4097
+ "new_folder": "New Folder",
4098
+ "make_empty_file": "Make Empty File",
4099
+ "copy_item": "Copy Item",
4100
+ "move_item": "Move Item",
4101
+ "exit_maintenance_mode": "Exit Maintenance Mode",
4102
+ "erase_storage_devices": "Erase Storage Devices",
4103
+ "create_iscsi_adapter": "Create iSCSI Adapter",
4104
+ "connect_host_console": "Connect Host Console",
4105
+ "remove_host": "Remove Host",
4106
+ "move_host": "Move Host",
4107
+ "update_storage_devices": "Update Storage Devices",
4108
+ "update_iscsi_adapter": "Update iSCSI Adapter",
4109
+ "delete_iscsi_adapter": "Delete iSCSI Adapter",
4110
+ "update_storage_adapters": "Update Storage Adapters",
4111
+ "power_on_vm": "Power On Vm",
4112
+ "reset_vm": "Reset Vm",
4113
+ "delete_snapshot": "Delete Snapshot",
4114
+ "migrate_host": "Migrate Host",
4115
+ "create_vm": "Create Vm",
4116
+ "hard_stop_vm": "Hard Stop Vm",
4117
+ "clone_vm": "Clone Vm",
4118
+ "restore_backup": "Restore Backup",
4119
+ "power_off_vm": "Power Off Vm",
4120
+ "restart_guest": "Restart Guest",
4121
+ "unmount_guest_tools": "Unmount Guest Tools",
4122
+ "update_scheduled_task": "Update Scheduled Task",
4123
+ "create_backup": "Create Backup",
4124
+ "delete_backup": "Delete Backup",
4125
+ "register_vm": "Register Vm",
4126
+ "delete_all_snapshots": "Delete All Snapshots",
4127
+ "remove_from_disk": "Remove From Disk",
4128
+ "rename_vm": "Rename Vm",
4129
+ "convert_vm_to_template": "Convert Vm To Template",
4130
+ "delete_backups": "Delete Backups",
4131
+ "mount_guest_tools": "Mount Guest Tools",
4132
+ "revert_snapshot": "Revert Snapshot",
4133
+ "move_vm": "Move Vm",
4134
+ "migrate_datastore": "Migrate Datastore",
4135
+ "migrate_combined": "Migrate Combined",
4136
+ "import_esxi": "Import ESXi",
4137
+ "resume_vm": "Resume Vm",
4138
+ "delete_scheduled_task": "Delete Scheduled Task",
4139
+ "update_vm": "Update Vm",
4140
+ "shutdown_guest": "Shutdown Guest",
4141
+ "update_snapshot": "Update Snapshot",
4142
+ "remove_from_inventory": "Remove From Inventory",
4143
+ "connect_vm_console": "Connect Vm Console",
4144
+ "take_snapshot": "Take Snapshot",
4145
+ "suspend_vm": "Suspend Vm",
4146
+ "create_scheduled_task": "Create Scheduled Task",
4147
+ "show_notebook": "Show Notebook",
4148
+ "update_notebook": "Update Notebook",
4149
+ "show_custom_attributes": "Show Custom Attributes",
4150
+ "create_custom_attribute": "Create Custom Attribute",
4151
+ "update_custom_attribute": "Update Custom Attribute",
4152
+ "delete_custom_attribute": "Delete Custom Attribute",
4153
+ "update_retention_settings": "Update Retention Settings",
4154
+ "remove_identity_provider": "Remove Identity Provider",
4155
+ "set_default_identity_provider": "Set Default Identity Provider",
4156
+ "update_user": "Update User",
4157
+ "kick_user": "Kick User",
4158
+ "confirm_two_factor_setup": "Confirm Two-Factor Setup",
4159
+ "reset_user_two_factor": "Reset User Two-Factor",
4160
+ "create_identity_provider": "Create Identity Provider",
4161
+ "block_user": "Block User",
4162
+ "revoke_user_tokens": "Revoke User Tokens",
4163
+ "remove_user": "Remove User",
4164
+ "unblock_user": "Unblock User",
4165
+ "view_blocked_users": "View Blocked Users",
4166
+ "update_security_policies": "Update Security Policies",
4167
+ "create_user": "Create User",
4168
+ "kick_user_session": "Kick User Session",
4169
+ "change_user_password": "Change User Password",
4170
+ "disable_two_factor": "Disable Two-Factor",
4171
+ "create_group": "Create Group",
4172
+ "remove_role": "Remove Role",
4173
+ "update_group": "Update Group",
4174
+ "create_role": "Create Role",
4175
+ "create_global_permission": "Create Global Permission",
4176
+ "remove_global_permission": "Remove Global Permission",
4177
+ "update_object_permission": "Update Object Permission",
4178
+ "clone_role": "Clone Role",
4179
+ "update_global_permission": "Update Global Permission",
4180
+ "create_object_permission": "Create Object Permission",
4181
+ "remove_object_permission": "Remove Object Permission",
4182
+ "remove_group": "Remove Group",
4183
+ "remove_group_member": "Remove Group Member",
4184
+ "update_role": "Update Role",
4185
+ "remove_ghydra_member": "Remove Ghydra Member",
4186
+ "rename_folder": "Rename Folder",
4187
+ "move_folder": "Move Folder",
4188
+ "add_ghydra_member": "Add Ghydra Member",
4189
+ "change_ghydra_leader": "Change Ghydra Leader",
4190
+ "set_ghydra_standalone": "Set Ghydra Standalone",
4191
+ "create_zone": "Create Zone",
4192
+ "rename_zone": "Rename Zone",
4193
+ "remove_zone": "Remove Zone",
4194
+ "delete_folder": "Delete Folder",
4195
+ "init_ghydra": "Init Ghydra",
4196
+
4197
+ "create_cluster": "Create Cluster",
4198
+ "remove_cluster": "Remove Cluster",
4199
+ "rename_cluster": "Rename Cluster",
4200
+ "add_hosts_to_cluster": "Add Hosts To Cluster",
4201
+ "update_drs_settings": "Update DRS Settings",
4202
+ "schedule_update_drs": "Schedule Update DRS",
4203
+ "move_cluster": "Move Cluster",
4204
+ "update_ha_settings": "Update HA Settings",
4205
+ "delete_template_from_inventory": "Delete Template From Inventory",
4206
+ "delete_template_from_disk": "Delete Template From Disk",
4207
+ "rename_template": "Rename Template",
4208
+ "move_template": "Move Template",
4209
+ "deploy_vm_from_template": "Deploy Vm From Template",
4210
+ "convert_template_to_vm": "Convert Template To Vm",
4211
+ "create_switch": "Create Switch",
4212
+ "update_info_sysx": "Update Info Sysx",
4213
+ "remove_port_group": "Remove Port Group",
4214
+ "update_sysx": "Update Sysx",
4215
+ "move_network": "Move Network",
4216
+ "create_port_group": "Create Port Group",
4217
+ "create_sysx": "Create Sysx",
4218
+ "remove_switch": "Remove Switch",
4219
+ "remove_sysx": "Remove Sysx",
4220
+ "update_port_group": "Update Port Group",
4221
+ "update_switch": "Update Switch",
4222
+ "create_datacenter": "Create Datacenter",
4223
+ "rename_datacenter": "Rename Datacenter",
4224
+ "move_datacenter": "Move Datacenter",
4225
+ "remove_datacenter": "Remove Datacenter",
4226
+ "add_host_to_datacenter": "Add Host To Datacenter",
4227
+ "move_backup_storage": "Move Backup Storage",
4228
+ "create_backup_storage": "Create Backup Storage",
4229
+ "delete_backup_storage": "Delete Backup Storage",
4230
+ "backup_enter_maintenance_mode": "Backup Enter Maintenance Mode",
4231
+ "backup_exit_maintenance_mode": "Backup Exit Maintenance Mode",
4232
+ "datacenters": "Datacenters",
4233
+ "backup": "Backup",
4234
+ "templates": "Templates"
3681
4235
  },
3682
4236
  "backup": {
3683
4237
  "selectName": "Select a Name",
@@ -3704,7 +4258,7 @@
3704
4258
  "createBackupCommonSubtitle": "Specify a unique name and a description for the backup.",
3705
4259
  "virtualMachineName": "Virtual Machine Name",
3706
4260
  "restoreBackupSelectNameSubtitle": "Specify a unique name for the virtual machine.",
3707
- "nameValidationDescription": "The name must contain Latin letters and numbers, '-', '_', '.' and it must contain from 5 to 64 characters.",
4261
+ "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.",
3708
4262
  "vmNameExistInSelectedLocation": "A virtual machine or template with the same name exists. Enter a different name.",
3709
4263
  "noNetworksAvailable": "No networks available",
3710
4264
  "restoreBackupSelectNetworkSubtitle": "Select adapter types and networks in Procurator.",
@@ -3771,7 +4325,7 @@
3771
4325
  "notAvailable": "not available",
3772
4326
  "available": "available",
3773
4327
  "sphereHaIs": "Sphere HA is {0}",
3774
- "runtimeInformationSphereHa": "Runtime information for vSphere HA is reported under",
4328
+ "runtimeInformationSphereHa": "Runtime information for Sphere HA is reported under",
3775
4329
  "sphereHaMonitoring": "Sphere HA Monitoring",
3776
4330
  "proactiveHaIs": "Proactive HA is {0}",
3777
4331
  "failureConditionsAndResponses": "Failure conditions and responses",
@@ -3783,8 +4337,8 @@
3783
4337
  "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.",
3784
4338
  "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.",
3785
4339
  "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.",
3786
- "advancedOptionsDesc": "You can set advanced options that affect the behavior of your vSphere HA cluster.",
3787
- "sphereHaMonitoringTooltipContent": "ESX/ESXi hosts in this cluster exchange network heartbeats. Disable this feature when performing network maintenance that may cause isolation responses.",
4340
+ "advancedOptionsDesc": "You can set advanced options that affect the behavior of your Sphere HA cluster.",
4341
+ "sphereHaMonitoringTooltipContent": "Procurator hosts in this cluster exchange network heartbeats. Disable this feature when performing network maintenance that may cause isolation responses.",
3788
4342
  "enableHostMonitoring": "Enable Host Monitoring",
3789
4343
  "hostFailureResponse": "Host Failure Response",
3790
4344
  "failureResponse": "Failure Response",
@@ -3925,7 +4479,14 @@
3925
4479
  "cancelUpload": "Cancel Upload",
3926
4480
  "selectedItems": "Selected items",
3927
4481
  "deleting": "Deleting...",
3928
- "folders": "Folders"
4482
+ "folders": "Folders",
4483
+ "cancelUploadDescription": "Are you sure you want to cancel the upload for the file “{0}”? Your progress will be lost.",
4484
+ "incorrectFileSelected": "Incorrect File Selected",
4485
+ "incorrectFileSelectedDescription": "The selected file does not match the original. Please re-select the same file to continue the upload.",
4486
+ "reSelect": "Re-select",
4487
+ "nameContainsInvalidCharacters": "Folder name must be between 1 and 64 characters and cannot contain spaces, '/', '@', '#', control characters, or be '.' / '..'",
4488
+ "fileAlreadyExists": "File Already Exists",
4489
+ "fileNameAlreadyExists": "A file named “{0}” already exists."
3929
4490
  },
3930
4491
  "myPreferences": {
3931
4492
  "twoFactorAuthentication": "Two-Factor Authentication",
@@ -3940,9 +4501,11 @@
3940
4501
  "backToLogin": "Back to Login",
3941
4502
  "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.",
3942
4503
  "showNotification": "Show a notification",
3943
- "showNotificationDescription": "Show a notification when something goes wrong",
4504
+ "notifications": "Notifications",
4505
+ "showNotificationDescription": "Show a notification when something goes wrong.",
3944
4506
  "twoFactorMustBeEnabled": "Two-factor authentication (2FA) must be enabled, otherwise your account will be blocked.",
3945
- "twoFactorMustWarning": "You have {0} days left to enable two-factor authentication (2FA), otherwise your account will be blocked (disabled)."
4507
+ "twoFactorMustWarning": "You have {0} days left to enable two-factor authentication (2FA), otherwise your account will be blocked (disabled).",
4508
+ "switchInterfaceDescription": "Switch to the new interface design."
3946
4509
  },
3947
4510
  "ssoConfiguration": {
3948
4511
  "twoFactorPolicy": "Two-factor policy",
@@ -4016,10 +4579,64 @@
4016
4579
  "enableAutostart": "Enable autostart",
4017
4580
  "disableAutostart": "Disable autostart"
4018
4581
  },
4019
- "temp": {
4020
- "title": "Virtual metro storage cluster",
4021
- "stepTitle": "Select source host",
4022
- "serverAddress": "Server Address",
4023
- "fqdnOrIpAddress": "FQDN or IP address"
4582
+ "dhcpServer": {
4583
+ "dhcpServer": "DHCP Server",
4584
+ "leftIp": "Left IP",
4585
+ "totalIp": "Total IP",
4586
+ "nameAndNetwork": "Name and Network",
4587
+ "dhcpServerNameRequiredAlert": "No DHCP Server name is specified. Enter a DHCP Server name.",
4588
+ "addDhcpServer": "Add DHCP Server",
4589
+ "assignNetwork": "Assign Network",
4590
+ "dhcpServerNetworkRequiredAlert": "Choose one of the listed networks!",
4591
+ "configureIPv4": "Configure IPv4",
4592
+ "subnet": "Subnet",
4593
+ "maskNotInRange": "The network bits are invalid. Specify a number between 2 and 30.",
4594
+ "maskInvalidCombination": "The combination of subnet address and network bits does not create a valid IP range. Change the network bits.",
4595
+ "subnetIsInvalid": "Unable to validate subnet address because there is an error in the network bits.",
4596
+ "subnetMustBeInRange": "Invalid subnet address. The last {zeroNumber} bits must be zero.",
4597
+ "subnetMask": "Subnet mask",
4598
+ "addressRange": "Address range",
4599
+ "invalidGateway": "This gateway address is not a valid IP address.",
4600
+ "invalidGatewayWithinSubnet": "The gateway address '{gateway}' is not valid within the specified subnet '{subnet}'.",
4601
+ "gatewayUnable": "Unable to validate gateway address because there is an error in the network bits.",
4602
+ "invalidAddressForDns": "The address '{address}' is not a valid IP address for a DNS server.",
4603
+ "invalidAddress": "The DNS server '{address}' is not a valid IP address.",
4604
+ "ipPool": "IP pool",
4605
+ "ipPoolRange": "IP pool range",
4606
+ "invalidIpPool": "IP pool range '{address}' is not valid.",
4607
+ "withoutSubnetIpPool": "Enter a subnet address to enable IP pool range.",
4608
+ "ipPoolRangeUnable": "Unable to validate IP pool range because there is an error in the network bits.",
4609
+ "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.",
4610
+ "viewRange": "View Range",
4611
+ "hideRange": "Hide Range",
4612
+ "nameAndNetworkAssignment": "Name and Network Assignment",
4613
+ "ipv4Configuration": "IPv4 Configuration",
4614
+ "networkAssociation": "Network association",
4615
+ "twoIpMessage": "You need to enter two IP addresses.",
4616
+ "subnetIsRequired": "The subnet address cannot be empty. Enter the subnet address.",
4617
+ "gatewayIsRequired": "The gateway address cannot be empty. Enter the gateway address.",
4618
+ "networkAlreadyExists": "DHCP Server with this network already exists. Choose another network!",
4619
+ "nameWithSpaceMessage": "The name cannot contain spaces. Enter a valid name.",
4620
+ "nameWithNotLatinMessage": "The name cannot contain non-Latin letters. Enter a valid name.",
4621
+ "removeMessageForOne": "Delete the DHCP Server '{name}'?",
4622
+ "removeMessageForSome": "Delete the marked DHCP Servers: {names}?",
4623
+ "editDHCPServer": "Edit DHCP Server"
4624
+ },
4625
+ "logs": {
4626
+ "logs": "Logs",
4627
+ "log": "Log",
4628
+ "size": "Size",
4629
+ "entries": "{0} / {1} entries",
4630
+ "filteredBy": "Filtered by:",
4631
+ "noEntriesMatch": "No log entries match your filters",
4632
+ "loading": "Loading…",
4633
+ "more": "More",
4634
+ "generate": "Generate",
4635
+ "archiveDownloaded": "Archive is being downloaded"
4636
+ },
4637
+ "timeConfiguration": {
4638
+ "policyLabel": "NTP service startup policy",
4639
+ "policyValue1": "Start and stop with host",
4640
+ "policyValue2": "Start and stop manually"
4024
4641
  }
4025
4642
  }