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.
- package/assets/localization/local_be.json +131 -112
- package/assets/localization/local_en.json +131 -112
- package/assets/localization/local_hy.json +131 -112
- package/assets/localization/local_kk.json +131 -112
- package/assets/localization/local_ru.json +131 -112
- package/assets/localization/local_zh.json +131 -112
- package/components/atoms/TheIcon2.vue +1366 -1366
- package/components/atoms/datepicker/lib/config/datapicker.ts +1 -1
- package/components/common/adapterManager/AddAdapterModal.vue +1 -1
- package/components/common/adapterManager/NoConnectedActiveAdaptersModal.vue +1 -1
- package/components/common/adapterManager/ui/SecondTitle.vue +1 -1
- package/components/common/adapterManager/ui/actions/AddAdapterButton.vue +1 -1
- package/components/common/browse/Browse.vue +240 -240
- package/components/common/browse/blocks/Title.vue +91 -91
- package/components/common/browse/blocks/info/Date.vue +21 -21
- package/components/common/context/recursion/Recursion.vue +86 -86
- package/components/common/context/recursion/RecursionNew.vue +198 -198
- package/components/common/context/recursion/RecursionOld.vue +212 -212
- package/components/common/diagramMain/Header.vue +1 -1
- package/components/common/diagramMain/modals/editSettings/tabs/port/PortProperties.vue +1 -1
- package/components/common/diagramMain/modals/lib/config/adapterModal.ts +2 -2
- package/components/common/diagramMain/modals/lib/config/networkModal.ts +1 -1
- package/components/common/diagramMain/modals/lib/config/switchModal.ts +1 -1
- package/components/common/diagramMain/modals/lib/config/vCenterModal.ts +1 -1
- package/components/common/feedback/Buttons.vue +1 -1
- package/components/common/feedback/Message.vue +1 -1
- package/components/common/home/alertsTable/lib/config/config.ts +1 -1
- package/components/common/monitor/advanced/Advanced.vue +1 -1
- package/components/common/monitor/advanced/table/lib/config/performanceDatatable.ts +1 -1
- package/components/common/monitor/overview/filters/lib/config/filterOptions.ts +1 -1
- package/components/common/split/horizontal/HorizontalNew.vue +321 -321
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/VirtualHardware.vue +1 -1
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/browseView/BrowseView.vue +1 -1
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/cdDvdDrive/lib/config/fileTypes.ts +3 -3
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/cpu/Sa.vue +1 -1
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/newNetwork/adapterType/AdapterType.vue +1 -1
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/newNetwork/macAddress/lib/config/options.ts +3 -3
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/other/Other.vue +1 -1
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/videoCard/TotalVideoMemory.vue +1 -1
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/videoCard/lib/config/options.ts +1 -1
- package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/imgCompression/lib/config/config.ts +3 -3
- package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/jpegCompression/lib/config/config.ts +4 -4
- package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/sharePolicy/lib/config/config.ts +3 -3
- package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/zlibCompression/lib/config/config.ts +4 -4
- package/components/common/wizards/datastore/add/Add.vue +437 -437
- package/components/common/wizards/datastore/add/nfs/configuration/Configuration.vue +1 -1
- package/components/common/wizards/datastore/add/readyComplete/ReadyComplete.vue +95 -95
- package/components/common/wizards/network/add/Add.vue +1 -1
- package/components/common/wizards/network/add/lib/config/steps.ts +6 -6
- package/components/common/wizards/network/add/steps/PortProperties.vue +1 -1
- package/components/common/wizards/vm/migrate/select/computeResource/lib/config/tabsPannel.ts +1 -1
- package/components/common/wizards/vm/migrate/select/computeResource/tableView/lib/config/clusterTable.ts +3 -3
- package/components/common/wizards/vm/migrate/select/computeResource/tableView/lib/config/hostTable.ts +1 -1
- package/composables/productNameLocal.ts +9 -0
- package/lib/models/interfaces.ts +9 -0
- package/lib/models/types.ts +9 -0
- package/package.json +1 -1
- package/plugins/recursion.ts +293 -293
- package/store/tasks/mappers/recentTasks.ts +45 -45
|
@@ -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
|
}
|
package/components/common/vm/actions/common/customizeHardware/virtualHardware/other/Other.vue
CHANGED
|
@@ -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 />
|
|
@@ -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
|
}
|