bfg-common 1.3.600 → 1.3.602

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 (59) hide show
  1. package/assets/localization/local_be.json +131 -112
  2. package/assets/localization/local_en.json +131 -112
  3. package/assets/localization/local_hy.json +131 -112
  4. package/assets/localization/local_kk.json +131 -112
  5. package/assets/localization/local_ru.json +131 -112
  6. package/assets/localization/local_zh.json +131 -112
  7. package/components/atoms/TheIcon2.vue +1366 -1366
  8. package/components/atoms/datepicker/lib/config/datapicker.ts +1 -1
  9. package/components/common/adapterManager/AddAdapterModal.vue +1 -1
  10. package/components/common/adapterManager/NoConnectedActiveAdaptersModal.vue +1 -1
  11. package/components/common/adapterManager/ui/SecondTitle.vue +1 -1
  12. package/components/common/adapterManager/ui/actions/AddAdapterButton.vue +1 -1
  13. package/components/common/browse/Browse.vue +240 -240
  14. package/components/common/browse/blocks/Title.vue +91 -91
  15. package/components/common/browse/blocks/info/Date.vue +21 -21
  16. package/components/common/context/recursion/Recursion.vue +86 -86
  17. package/components/common/context/recursion/RecursionNew.vue +198 -198
  18. package/components/common/context/recursion/RecursionOld.vue +212 -212
  19. package/components/common/diagramMain/Header.vue +1 -1
  20. package/components/common/diagramMain/modals/editSettings/tabs/port/PortProperties.vue +1 -1
  21. package/components/common/diagramMain/modals/lib/config/adapterModal.ts +2 -2
  22. package/components/common/diagramMain/modals/lib/config/networkModal.ts +1 -1
  23. package/components/common/diagramMain/modals/lib/config/switchModal.ts +1 -1
  24. package/components/common/diagramMain/modals/lib/config/vCenterModal.ts +1 -1
  25. package/components/common/feedback/Buttons.vue +1 -1
  26. package/components/common/feedback/Message.vue +1 -1
  27. package/components/common/home/alertsTable/lib/config/config.ts +1 -1
  28. package/components/common/monitor/advanced/Advanced.vue +1 -1
  29. package/components/common/monitor/advanced/table/lib/config/performanceDatatable.ts +1 -1
  30. package/components/common/monitor/overview/filters/lib/config/filterOptions.ts +1 -1
  31. package/components/common/split/horizontal/HorizontalNew.vue +321 -321
  32. package/components/common/vm/actions/common/customizeHardware/virtualHardware/VirtualHardware.vue +1 -1
  33. package/components/common/vm/actions/common/customizeHardware/virtualHardware/browseView/BrowseView.vue +1 -1
  34. package/components/common/vm/actions/common/customizeHardware/virtualHardware/cdDvdDrive/lib/config/fileTypes.ts +3 -3
  35. package/components/common/vm/actions/common/customizeHardware/virtualHardware/cpu/Sa.vue +1 -1
  36. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newNetwork/adapterType/AdapterType.vue +1 -1
  37. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newNetwork/macAddress/lib/config/options.ts +3 -3
  38. package/components/common/vm/actions/common/customizeHardware/virtualHardware/other/Other.vue +1 -1
  39. package/components/common/vm/actions/common/customizeHardware/virtualHardware/videoCard/TotalVideoMemory.vue +1 -1
  40. package/components/common/vm/actions/common/customizeHardware/virtualHardware/videoCard/lib/config/options.ts +1 -1
  41. package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/imgCompression/lib/config/config.ts +3 -3
  42. package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/jpegCompression/lib/config/config.ts +4 -4
  43. package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/sharePolicy/lib/config/config.ts +3 -3
  44. package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/zlibCompression/lib/config/config.ts +4 -4
  45. package/components/common/wizards/datastore/add/Add.vue +437 -437
  46. package/components/common/wizards/datastore/add/nfs/configuration/Configuration.vue +1 -1
  47. package/components/common/wizards/datastore/add/readyComplete/ReadyComplete.vue +95 -95
  48. package/components/common/wizards/network/add/Add.vue +1 -1
  49. package/components/common/wizards/network/add/lib/config/steps.ts +6 -6
  50. package/components/common/wizards/network/add/steps/PortProperties.vue +1 -1
  51. package/components/common/wizards/vm/migrate/select/computeResource/lib/config/tabsPannel.ts +1 -1
  52. package/components/common/wizards/vm/migrate/select/computeResource/tableView/lib/config/clusterTable.ts +3 -3
  53. package/components/common/wizards/vm/migrate/select/computeResource/tableView/lib/config/hostTable.ts +1 -1
  54. package/composables/productNameLocal.ts +9 -0
  55. package/lib/models/interfaces.ts +9 -0
  56. package/lib/models/types.ts +9 -0
  57. package/package.json +1 -1
  58. package/plugins/recursion.ts +293 -293
  59. package/store/tasks/mappers/recentTasks.ts +45 -45
@@ -2,7 +2,7 @@
2
2
  <div class="">
3
3
  <atoms-stack-block :has-children="false">
4
4
  <template #stackBlockKey>
5
- {{ localization.adapterType }}
5
+ {{ localization.networks.adapterType }}
6
6
  </template>
7
7
  <template #stackBlockContent>
8
8
  <atoms-tooltip-error
@@ -1,11 +1,11 @@
1
- import { UI_I_Localization } from '~/lib/models/interfaces'
2
- import { UI_I_OptionItem } from '~/components/atoms/lib/models/interfaces'
1
+ import type { UI_I_Localization } from '~/lib/models/interfaces'
2
+ import type { UI_I_OptionItem } from '~/components/atoms/lib/models/interfaces'
3
3
 
4
4
  export const macAddressOptionsFunc = (
5
5
  localization: UI_I_Localization
6
6
  ): UI_I_OptionItem[] => {
7
7
  return [
8
8
  { text: localization.manual, value: 'manual' },
9
- { text: localization.automatic, value: 'automatic' },
9
+ { text: localization.common.automatic, value: 'automatic' },
10
10
  ]
11
11
  }
@@ -10,7 +10,7 @@
10
10
  </div>
11
11
  </template>
12
12
  <template #stackBlockContent>
13
- <span>{{ localization.additionalHardware }}</span>
13
+ <span>{{ localization.vms.additionalHardware }}</span>
14
14
  </template>
15
15
  <template #stackChildren>
16
16
  <common-vm-actions-common-customize-hardware-virtual-hardware-other-input-devices />
@@ -13,7 +13,7 @@
13
13
  >
14
14
  <template #elem>
15
15
  <div v-show="props.disabled">
16
- {{ localization.automatic }}
16
+ {{ localization.common.automatic }}
17
17
  </div>
18
18
  <div v-show="!props.disabled" class="flex-align-center">
19
19
  <input
@@ -5,7 +5,7 @@ export const videoCardOptionsFunc = (
5
5
  localization: UI_I_Localization
6
6
  ): UI_I_OptionItem[] => {
7
7
  return [
8
- { text: localization.autoDetectSettings, value: 0 },
8
+ { text: localization.vms.autoDetectSettings, value: 0 },
9
9
  { text: localization.specifyCustomSettings, value: 1 },
10
10
  ]
11
11
  }
@@ -1,11 +1,11 @@
1
- import { UI_I_Localization } from '~/lib/models/interfaces'
2
- import { UI_I_OptionItem } from '~/components/atoms/lib/models/interfaces'
1
+ import type { UI_I_Localization } from '~/lib/models/interfaces'
2
+ import type { UI_I_OptionItem } from '~/components/atoms/lib/models/interfaces'
3
3
 
4
4
  export const imgCompressionOptionsFunc = (
5
5
  localization: UI_I_Localization
6
6
  ): UI_I_OptionItem[] => {
7
7
  return [
8
- { text: `${localization.auto} Glz`, value: 'auto_glz' },
8
+ { text: `${localization.common.auto} Glz`, value: 'auto_glz' },
9
9
  { text: 'Glz', value: 'glz' },
10
10
  { text: 'Lz', value: 'lz' },
11
11
  { text: 'Quic', value: 'quic' },
@@ -1,12 +1,12 @@
1
- import { UI_I_Localization } from '~/lib/models/interfaces'
2
- import { UI_I_OptionItem } from '~/components/atoms/lib/models/interfaces'
1
+ import type { UI_I_Localization } from '~/lib/models/interfaces'
2
+ import type { UI_I_OptionItem } from '~/components/atoms/lib/models/interfaces'
3
3
 
4
4
  export const jpegCompressionOptionsFunc = (
5
5
  localization: UI_I_Localization
6
6
  ): UI_I_OptionItem[] => {
7
7
  return [
8
- { text: localization.auto, value: 'auto' },
9
- { text: localization.always, value: 'always' },
8
+ { text: localization.common.auto, value: 'auto' },
9
+ { text: localization.common.always, value: 'always' },
10
10
  { text: localization.never, value: 'never' },
11
11
  ]
12
12
  }
@@ -1,11 +1,11 @@
1
- import { UI_I_Localization } from '~/lib/models/interfaces'
2
- import { UI_I_OptionItem } from '~/components/atoms/lib/models/interfaces'
1
+ import type { UI_I_Localization } from '~/lib/models/interfaces'
2
+ import type { UI_I_OptionItem } from '~/components/atoms/lib/models/interfaces'
3
3
 
4
4
  export const sharePolicyOptionsFunc = (
5
5
  localization: UI_I_Localization
6
6
  ): UI_I_OptionItem[] => {
7
7
  return [
8
- { text: localization.allowExclusive, value: 'allow-exclusive' },
8
+ { text: localization.vms.allowExclusive, value: 'allow-exclusive' },
9
9
  { text: localization.forceShared, value: 'force-shared' },
10
10
  ]
11
11
  }
@@ -1,12 +1,12 @@
1
- import { UI_I_Localization } from '~/lib/models/interfaces'
2
- import { UI_I_OptionItem } from '~/components/atoms/lib/models/interfaces'
1
+ import type { UI_I_Localization } from '~/lib/models/interfaces'
2
+ import type { UI_I_OptionItem } from '~/components/atoms/lib/models/interfaces'
3
3
 
4
4
  export const zlibCompressionOptionsFunc = (
5
5
  localization: UI_I_Localization
6
6
  ): UI_I_OptionItem[] => {
7
7
  return [
8
- { text: localization.auto, value: 'auto' },
9
- { text: localization.always, value: 'always' },
8
+ { text: localization.common.auto, value: 'auto' },
9
+ { text: localization.common.always, value: 'always' },
10
10
  { text: localization.never, value: 'never' },
11
11
  ]
12
12
  }