bfg-common 1.3.602 → 1.3.603
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 +111 -128
- package/assets/localization/local_en.json +111 -128
- package/assets/localization/local_hy.json +111 -128
- package/assets/localization/local_kk.json +111 -128
- package/assets/localization/local_ru.json +111 -128
- package/assets/localization/local_zh.json +111 -128
- 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/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/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/nfs/configuration/Configuration.vue +1 -1
- 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 +2 -9
- package/lib/models/interfaces.ts +0 -9
- package/lib/models/types.ts +0 -9
- package/package.json +1 -1
|
@@ -55,7 +55,7 @@
|
|
|
55
55
|
|
|
56
56
|
<div class="edit-vmkernel-adapter-section">
|
|
57
57
|
<b class="property-label-group">
|
|
58
|
-
{{ localization.
|
|
58
|
+
{{ localization.availableServices }}
|
|
59
59
|
</b>
|
|
60
60
|
<template
|
|
61
61
|
v-for="(enabledService, key) in portPropertiesEnabledServices"
|
|
@@ -36,7 +36,7 @@ export const adapterViewSettingsFunc = (
|
|
|
36
36
|
type: 1,
|
|
37
37
|
rows: [
|
|
38
38
|
{
|
|
39
|
-
name: localization.
|
|
39
|
+
name: localization.adapter,
|
|
40
40
|
value: initialData.adapter?.trim(),
|
|
41
41
|
},
|
|
42
42
|
{
|
|
@@ -65,7 +65,7 @@ export const adapterViewSettingsFunc = (
|
|
|
65
65
|
: localization.disconnected,
|
|
66
66
|
},
|
|
67
67
|
{
|
|
68
|
-
name: localization.
|
|
68
|
+
name: localization.actualSpeedDuplex,
|
|
69
69
|
value: initialData.carrier
|
|
70
70
|
? `${getNicSpeed(initialData.speed || 0, localization)}, ${
|
|
71
71
|
initialData.duplex
|
|
@@ -130,7 +130,7 @@ export const networkViewSettingsFunc = (
|
|
|
130
130
|
type: 2,
|
|
131
131
|
rows: [
|
|
132
132
|
{
|
|
133
|
-
name: localization.
|
|
133
|
+
name: localization.averageBandwidth,
|
|
134
134
|
value: initialData.shapingPolicy?.[0].initialValue.value
|
|
135
135
|
? `${initialData.average_bw} ${localization.kbitS}`
|
|
136
136
|
: '--',
|
|
@@ -141,7 +141,7 @@ export const switchViewSettingsFunc = (
|
|
|
141
141
|
type: 2,
|
|
142
142
|
rows: [
|
|
143
143
|
{
|
|
144
|
-
name: localization.
|
|
144
|
+
name: localization.averageBandwidth,
|
|
145
145
|
value: initialData.shapingPolicy?.[0].initialValue.value
|
|
146
146
|
? `${initialData.average_bw} ${localization.kbitS}`
|
|
147
147
|
: '--',
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
</atoms-tooltip-error>
|
|
34
34
|
</div>
|
|
35
35
|
<div class="main-block">
|
|
36
|
-
<span class="text">{{ localization.
|
|
36
|
+
<span class="text">{{ localization.additionalDetails }} </span>
|
|
37
37
|
<button
|
|
38
38
|
v-if="!hasTakeScreenshot"
|
|
39
39
|
id="feedback-take-screenshot-button"
|
|
@@ -20,7 +20,7 @@ const getItems = (
|
|
|
20
20
|
): [string, boolean, string, string, string][] => {
|
|
21
21
|
return [
|
|
22
22
|
[localization.item, true, '34%', alertsTableKeys[0], ''],
|
|
23
|
-
[localization.
|
|
23
|
+
[localization.alerts, true, '33%', alertsTableKeys[1], 'error-outline'],
|
|
24
24
|
[localization.warnings, true, '33%', alertsTableKeys[2], 'warning-outline'],
|
|
25
25
|
]
|
|
26
26
|
}
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
<div class="routed-view-panel-layout">
|
|
4
4
|
<div class="settingsViewHeader">
|
|
5
5
|
<h3 class="settingsBlockTitle m-0">
|
|
6
|
-
{{ localization.
|
|
6
|
+
{{ localization.advancedPerformance }}
|
|
7
7
|
</h3>
|
|
8
8
|
</div>
|
|
9
9
|
<div v-if="props.isEmpty" class="empty-data">
|
|
@@ -36,7 +36,7 @@ const getItems = (
|
|
|
36
36
|
[localization.latest, true, widthCol, performanceTableKey[5]],
|
|
37
37
|
[localization.maximum, true, widthCol, performanceTableKey[6]],
|
|
38
38
|
[localization.minimum, true, widthCol, performanceTableKey[7]],
|
|
39
|
-
[localization.
|
|
39
|
+
[localization.average, true, widthCol, performanceTableKey[8]],
|
|
40
40
|
]
|
|
41
41
|
}
|
|
42
42
|
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import
|
|
2
|
-
import
|
|
1
|
+
import { UI_I_Localization } from '~/lib/models/interfaces'
|
|
2
|
+
import { UI_I_OptionItem } from '~/components/atoms/lib/models/interfaces'
|
|
3
3
|
|
|
4
4
|
export const fileTypesFunc = (
|
|
5
5
|
localization: UI_I_Localization
|
|
6
6
|
): UI_I_OptionItem[] => [
|
|
7
7
|
{ text: `${localization.isoImage} (*.iso)`, value: 'iso' },
|
|
8
|
-
{ text: `${localization.
|
|
8
|
+
{ text: `${localization.allFiles} (*.*)`, value: 'all' },
|
|
9
9
|
]
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import
|
|
2
|
-
import
|
|
1
|
+
import { UI_I_Localization } from '~/lib/models/interfaces'
|
|
2
|
+
import { 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.
|
|
9
|
+
{ text: localization.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.
|
|
13
|
+
<span>{{ localization.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.
|
|
8
|
+
{ text: localization.autoDetectSettings, value: 0 },
|
|
9
9
|
{ text: localization.specifyCustomSettings, value: 1 },
|
|
10
10
|
]
|
|
11
11
|
}
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import
|
|
2
|
-
import
|
|
1
|
+
import { UI_I_Localization } from '~/lib/models/interfaces'
|
|
2
|
+
import { 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.
|
|
8
|
+
{ text: `${localization.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
|
|
2
|
-
import
|
|
1
|
+
import { UI_I_Localization } from '~/lib/models/interfaces'
|
|
2
|
+
import { 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.
|
|
9
|
-
{ text: localization.
|
|
8
|
+
{ text: localization.auto, value: 'auto' },
|
|
9
|
+
{ text: localization.always, value: 'always' },
|
|
10
10
|
{ text: localization.never, value: 'never' },
|
|
11
11
|
]
|
|
12
12
|
}
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import
|
|
2
|
-
import
|
|
1
|
+
import { UI_I_Localization } from '~/lib/models/interfaces'
|
|
2
|
+
import { 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.
|
|
8
|
+
{ text: localization.allowExclusive, value: 'allow-exclusive' },
|
|
9
9
|
{ text: localization.forceShared, value: 'force-shared' },
|
|
10
10
|
]
|
|
11
11
|
}
|
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
import
|
|
2
|
-
import
|
|
1
|
+
import { UI_I_Localization } from '~/lib/models/interfaces'
|
|
2
|
+
import { 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.
|
|
9
|
-
{ text: localization.
|
|
8
|
+
{ text: localization.auto, value: 'auto' },
|
|
9
|
+
{ text: localization.always, value: 'always' },
|
|
10
10
|
{ text: localization.never, value: 'never' },
|
|
11
11
|
]
|
|
12
12
|
}
|
|
@@ -195,7 +195,7 @@ const localization = computed<UI_I_Localization>(() => useLocal())
|
|
|
195
195
|
|
|
196
196
|
const hostname = ref<string>('')
|
|
197
197
|
const title = computed<string>(
|
|
198
|
-
() => `${hostname.value} - ${localization.value.
|
|
198
|
+
() => `${hostname.value} - ${localization.value.addNetworking}`
|
|
199
199
|
)
|
|
200
200
|
|
|
201
201
|
const wizard: Wizard = new Wizard(
|
|
@@ -57,7 +57,7 @@ export const stepsFunc = (
|
|
|
57
57
|
{
|
|
58
58
|
id: 2,
|
|
59
59
|
title: localization.createStandardSwitch,
|
|
60
|
-
subTitle: localization.
|
|
60
|
+
subTitle: localization.assignFreePhysicalNetworkAdaptersToTheNewSwitch,
|
|
61
61
|
status: UI_E_WIZARD_STATUS.INACTIVE,
|
|
62
62
|
fields: {},
|
|
63
63
|
isValid: true,
|
|
@@ -128,8 +128,8 @@ export const stepsFunc = (
|
|
|
128
128
|
},
|
|
129
129
|
{
|
|
130
130
|
id: 6,
|
|
131
|
-
title: localization.
|
|
132
|
-
subTitle: localization.
|
|
131
|
+
title: localization.addPhysicalNetworkAdapter,
|
|
132
|
+
subTitle: localization.assignPhysicalNetworkAdaptersToTheSwitch,
|
|
133
133
|
status: UI_E_WIZARD_STATUS.INACTIVE,
|
|
134
134
|
fields: {},
|
|
135
135
|
isValid: true,
|
|
@@ -199,7 +199,7 @@ export const createThirdSchemeReadyCompleteFunc = (
|
|
|
199
199
|
value: connectionSettingsValues.networkLabel,
|
|
200
200
|
},
|
|
201
201
|
{
|
|
202
|
-
name: localization.
|
|
202
|
+
name: localization.assignedAdapters,
|
|
203
203
|
value: addedAdapters.join(', '),
|
|
204
204
|
},
|
|
205
205
|
{
|
|
@@ -303,7 +303,7 @@ const makeFirstColumnOfZeroAndFirstScheme = (
|
|
|
303
303
|
value: '--',
|
|
304
304
|
},
|
|
305
305
|
{
|
|
306
|
-
name: localization.
|
|
306
|
+
name: localization.assignedAdapters,
|
|
307
307
|
value: addedAdapters.join(', '),
|
|
308
308
|
},
|
|
309
309
|
{
|
|
@@ -447,7 +447,7 @@ export const createFourthSchemeReadyCompleteFunc = (
|
|
|
447
447
|
value: switchId,
|
|
448
448
|
},
|
|
449
449
|
{
|
|
450
|
-
name: localization.
|
|
450
|
+
name: localization.assignedAdapters,
|
|
451
451
|
value: assignedAdapters.join(', '),
|
|
452
452
|
},
|
|
453
453
|
],
|
|
@@ -16,9 +16,9 @@ const getItems = (
|
|
|
16
16
|
): [string, boolean, string, string][] => {
|
|
17
17
|
return [
|
|
18
18
|
[localization.common.name, true, '180px', clusterTableItemKeys[0]],
|
|
19
|
-
[localization.
|
|
20
|
-
[localization.
|
|
21
|
-
[localization.
|
|
19
|
+
[localization.availableCpu, true, '180px', clusterTableItemKeys[1]],
|
|
20
|
+
[localization.availableMemory, true, '180px', clusterTableItemKeys[2]],
|
|
21
|
+
[localization.availableStorage, true, '180px', clusterTableItemKeys[3]],
|
|
22
22
|
[localization.vSphere_DRS, true, '180px', clusterTableItemKeys[4]],
|
|
23
23
|
[localization.vSphere_HA, true, '180px', clusterTableItemKeys[5]],
|
|
24
24
|
[localization.totalCpu, false, '180px', clusterTableItemKeys[6]],
|
|
@@ -38,7 +38,7 @@ const getItems = (
|
|
|
38
38
|
[localization.cpus, false, '180px', hostTableItemKeys[10]],
|
|
39
39
|
[localization.nics, false, '180px', hostTableItemKeys[11]],
|
|
40
40
|
[localization.version, false, '180px', hostTableItemKeys[12]],
|
|
41
|
-
[localization.
|
|
41
|
+
[localization.alarmActions, false, '180px', hostTableItemKeys[13]],
|
|
42
42
|
]
|
|
43
43
|
}
|
|
44
44
|
|
|
@@ -36,20 +36,13 @@ const replaceProductNameRecursion = (
|
|
|
36
36
|
'networks',
|
|
37
37
|
'inventory',
|
|
38
38
|
'inventoryTabs',
|
|
39
|
-
'feedback',
|
|
40
|
-
'vms',
|
|
41
|
-
'hosts',
|
|
42
|
-
'datastores',
|
|
43
|
-
'contentLibraries',
|
|
44
|
-
'clusters',
|
|
45
|
-
'inventoryMonitor',
|
|
46
|
-
'logs',
|
|
47
|
-
'tagsAttributes',
|
|
48
39
|
]
|
|
49
40
|
if (localizationKeys.includes(key)) {
|
|
50
41
|
for (const key2 of Object.keys(item)) {
|
|
51
42
|
item[key2] = item[key2].replaceAll('{productName}', productName)
|
|
52
43
|
}
|
|
44
|
+
} else {
|
|
45
|
+
item[key] = item[key].replaceAll('{productName}', productName)
|
|
53
46
|
}
|
|
54
47
|
}
|
|
55
48
|
|
package/lib/models/interfaces.ts
CHANGED
|
@@ -28,15 +28,6 @@ export interface UI_I_Localization {
|
|
|
28
28
|
networks: UI_I_ArbitraryObject<string>
|
|
29
29
|
inventory: UI_I_ArbitraryObject<string>
|
|
30
30
|
inventoryTabs: UI_I_ArbitraryObject<string>
|
|
31
|
-
feedback: UI_I_ArbitraryObject<string>
|
|
32
|
-
vms: UI_I_ArbitraryObject<string>
|
|
33
|
-
hosts: UI_I_ArbitraryObject<string>
|
|
34
|
-
datastores: UI_I_ArbitraryObject<string>
|
|
35
|
-
contentLibraries: UI_I_ArbitraryObject<string>
|
|
36
|
-
clusters: UI_I_ArbitraryObject<string>
|
|
37
|
-
inventoryMonitor: UI_I_ArbitraryObject<string>
|
|
38
|
-
logs: UI_I_ArbitraryObject<string>
|
|
39
|
-
tagsAttributes: UI_I_ArbitraryObject<string>
|
|
40
31
|
}
|
|
41
32
|
export interface UI_I_SendTaskParams {
|
|
42
33
|
method: string
|
package/lib/models/types.ts
CHANGED