bfg-common 1.3.597 → 1.3.598
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/components/atoms/table/simpleTable/SimpleTable.vue +1 -1
- package/components/common/adapterManager/AdapterManager.vue +1 -1
- package/components/common/diagramMain/modals/editSettings/tabs/TrafficShaping.vue +1 -1
- package/components/common/diagramMain/modals/lib/config/adapterModal.ts +5 -5
- package/components/common/diagramMain/modals/lib/config/networkModal.ts +1 -1
- package/components/common/diagramMain/modals/lib/config/portModal.ts +1 -1
- package/components/common/diagramMain/modals/lib/config/switchModal.ts +1 -1
- package/components/common/feedback/Message.vue +2 -2
- package/components/common/feedback/lib/config/drawingPanel.ts +1 -1
- package/components/common/home/servicesTable/lib/config/config.ts +1 -1
- package/components/common/layout/theHeader/helpMenu/About.vue +1 -1
- package/components/common/monitor/advanced/table/lib/config/performanceDatatable.ts +1 -1
- package/components/common/monitor/advanced/tools/chartOptionsModal/counters/table/lib/config/tableConfig.ts +1 -1
- package/components/common/pages/hardwareHealth/tableView/TableView.vue +1 -1
- package/components/common/pages/hardwareHealth/tableView/lib/config/alertWarningTable.ts +1 -1
- package/components/common/pages/hardwareHealth/tableView/lib/config/sensorTable.ts +1 -1
- package/components/common/pages/hardwareHealth/tableView/lib/config/storageSensorTable.ts +1 -1
- package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/mouseMode/lib/config/config.ts +3 -3
- package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/streamingMode/lib/config/config.ts +3 -3
- package/components/common/vm/actions/common/select/storage/lib/config/config.ts +1 -1
- package/components/common/wizards/datastore/add/nfs/configuration/Configuration.vue +2 -2
- package/components/common/wizards/datastore/add/readyComplete/lib/config/propertiesDetails.ts +2 -2
- package/components/common/wizards/datastore/add/sharedStorm/deviceSelection/DeviceSelection.vue +1 -1
- package/components/common/wizards/datastore/add/sharedStorm/deviceSelection/hostTable/lib/config/hostsTable.ts +1 -1
- package/components/common/wizards/network/add/lib/config/selectSwitch.ts +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/components/common/wizards/vm/migrate/select/computeResource/tableView/lib/config/resourcePoolTable.ts +1 -1
- package/components/common/wizards/vm/migrate/select/computeResource/tableView/lib/config/vappsTable.ts +1 -1
- package/components/common/wizards/vm/migrate/select/storage/table/datastore/lib/config/config.ts +1 -1
- package/components/common/wizards/vm/migrate/select/storage/table/disk/lib/config/config.ts +1 -1
- package/package.json +1 -1
|
@@ -57,7 +57,7 @@
|
|
|
57
57
|
<div class="space"></div>
|
|
58
58
|
<div class="table-footer">
|
|
59
59
|
<span v-if="presentBodyItems.length"
|
|
60
|
-
>{{ presentBodyItems.length }} {{ localization.items }}</span
|
|
60
|
+
>{{ presentBodyItems.length }} {{ localization.common.items }}</span
|
|
61
61
|
>
|
|
62
62
|
<span v-else>{{ localization.noItemsDisplay }}</span>
|
|
63
63
|
</div>
|
|
@@ -119,7 +119,7 @@
|
|
|
119
119
|
modal-name="add-adapter-modal"
|
|
120
120
|
view-name="add-adapter"
|
|
121
121
|
:show="isShowAddAdapterModal"
|
|
122
|
-
:title="localization.warning"
|
|
122
|
+
:title="localization.common.warning"
|
|
123
123
|
@hide="onHideAddAdapterModal"
|
|
124
124
|
/>
|
|
125
125
|
<common-adapter-manager-no-connected-active-adapters-modal
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
<form id="traffic-shaping-form" action="">
|
|
12
12
|
<div class="horizontal-flex-container">
|
|
13
13
|
<span class="flex-property-label-group large">
|
|
14
|
-
{{ localization.status }}
|
|
14
|
+
{{ localization.common.status }}
|
|
15
15
|
</span>
|
|
16
16
|
|
|
17
17
|
<div class="flex-property-value-group overridable-dropdown">
|
|
@@ -6,7 +6,7 @@ export const adapterViewSettingsModalTabsFunc = (
|
|
|
6
6
|
localization: UI_I_Localization
|
|
7
7
|
) => [
|
|
8
8
|
{
|
|
9
|
-
text: localization.all,
|
|
9
|
+
text: localization.common.all,
|
|
10
10
|
value: 0,
|
|
11
11
|
testId: 'tab-item-all',
|
|
12
12
|
},
|
|
@@ -40,7 +40,7 @@ export const adapterViewSettingsFunc = (
|
|
|
40
40
|
value: initialData.adapter?.trim(),
|
|
41
41
|
},
|
|
42
42
|
{
|
|
43
|
-
name: localization.name,
|
|
43
|
+
name: localization.common.name,
|
|
44
44
|
value: initialData.name,
|
|
45
45
|
},
|
|
46
46
|
{
|
|
@@ -54,12 +54,12 @@ export const adapterViewSettingsFunc = (
|
|
|
54
54
|
],
|
|
55
55
|
},
|
|
56
56
|
{
|
|
57
|
-
title: localization.status,
|
|
57
|
+
title: localization.common.status,
|
|
58
58
|
id: 2,
|
|
59
59
|
type: 1,
|
|
60
60
|
rows: [
|
|
61
61
|
{
|
|
62
|
-
name: localization.status,
|
|
62
|
+
name: localization.common.status,
|
|
63
63
|
value: initialData.carrier
|
|
64
64
|
? localization.connected
|
|
65
65
|
: localization.disconnected,
|
|
@@ -95,7 +95,7 @@ export const adapterViewSettingsFunc = (
|
|
|
95
95
|
type: 1,
|
|
96
96
|
rows: [
|
|
97
97
|
{
|
|
98
|
-
name: localization.status,
|
|
98
|
+
name: localization.common.status,
|
|
99
99
|
value: !initialData.srIov ? localization.notSupported : '',
|
|
100
100
|
},
|
|
101
101
|
],
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<div class="message">
|
|
3
3
|
<div class="main-block">
|
|
4
|
-
<span class="text">{{ localization.description }}</span>
|
|
4
|
+
<span class="text">{{ localization.common.description }}</span>
|
|
5
5
|
<textarea
|
|
6
6
|
id="feedback-message-textarea"
|
|
7
7
|
v-model="descriptionLocal"
|
|
@@ -106,7 +106,7 @@
|
|
|
106
106
|
data-id="clear-all-button"
|
|
107
107
|
@click="clearAll"
|
|
108
108
|
>
|
|
109
|
-
{{ localization.clearAll }}</a
|
|
109
|
+
{{ localization.common.clearAll }}</a
|
|
110
110
|
>
|
|
111
111
|
</div>
|
|
112
112
|
<div class="main-block main-block__last">
|
|
@@ -19,7 +19,7 @@ const getItems = (
|
|
|
19
19
|
): [string, boolean, string, string][] => {
|
|
20
20
|
return [
|
|
21
21
|
[localization.item, true, '34%', servicesTableKeys[0]],
|
|
22
|
-
[localization.status, true, '33%', servicesTableKeys[1]],
|
|
22
|
+
[localization.common.status, true, '33%', servicesTableKeys[1]],
|
|
23
23
|
[localization.version, true, '33%', servicesTableKeys[2]],
|
|
24
24
|
]
|
|
25
25
|
}
|
|
@@ -29,7 +29,7 @@ const getItems = (
|
|
|
29
29
|
const widthCol = '113px'
|
|
30
30
|
return [
|
|
31
31
|
[localization.key, true, widthCol, performanceTableKey[0]],
|
|
32
|
-
[localization.object, true, widthCol, performanceTableKey[1]],
|
|
32
|
+
[localization.common.object, true, widthCol, performanceTableKey[1]],
|
|
33
33
|
[localization.measurement, true, widthCol, performanceTableKey[2]],
|
|
34
34
|
[localization.rollup, true, widthCol, performanceTableKey[3]],
|
|
35
35
|
[localization.units, true, widthCol, performanceTableKey[4]],
|
|
@@ -22,7 +22,7 @@ const getItems = (
|
|
|
22
22
|
localization: UI_I_Localization
|
|
23
23
|
): [string, boolean, string, string][] => {
|
|
24
24
|
return [
|
|
25
|
-
[localization.name, true, '140px', countersTableKey[0]],
|
|
25
|
+
[localization.common.name, true, '140px', countersTableKey[0]],
|
|
26
26
|
[localization.common.description, true, '140px', countersTableKey[1]],
|
|
27
27
|
[localization.measurement, true, '140px', countersTableKey[2]],
|
|
28
28
|
[localization.units, true, '140px', countersTableKey[3]],
|
|
@@ -21,7 +21,7 @@ const getItems = (
|
|
|
21
21
|
): [string, boolean, string, string][] => {
|
|
22
22
|
return [
|
|
23
23
|
[localization.sensors, true, '330px', hardwareHealthSensorTableKeys[0]],
|
|
24
|
-
[localization.status, true, '140px', hardwareHealthSensorTableKeys[1]],
|
|
24
|
+
[localization.common.status, true, '140px', hardwareHealthSensorTableKeys[1]],
|
|
25
25
|
[localization.reading, true, '115px', hardwareHealthSensorTableKeys[2]],
|
|
26
26
|
[localization.categories, true, '130px', hardwareHealthSensorTableKeys[3]],
|
|
27
27
|
[localization.lastUpdated, true, '195px', hardwareHealthSensorTableKeys[4]],
|
|
@@ -15,7 +15,7 @@ const getItems = (
|
|
|
15
15
|
localization: UI_I_Localization
|
|
16
16
|
): [string, boolean, string, string][] => {
|
|
17
17
|
return [
|
|
18
|
-
[localization.name, true, '230px', hardwareHealthStorageSensorTableKeys[0]],
|
|
18
|
+
[localization.common.name, true, '230px', hardwareHealthStorageSensorTableKeys[0]],
|
|
19
19
|
[
|
|
20
20
|
localization.health,
|
|
21
21
|
true,
|
|
@@ -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 mouseModeOptionsFunc = (
|
|
5
5
|
localization: UI_I_Localization
|
|
6
6
|
): UI_I_OptionItem[] => {
|
|
7
7
|
return [
|
|
8
8
|
{ text: localization.client, value: 'client' },
|
|
9
|
-
{ text: localization.server, value: 'server' },
|
|
9
|
+
{ text: localization.common.server, value: 'server' },
|
|
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 streamingModeOptionsFunc = (
|
|
5
5
|
localization: UI_I_Localization
|
|
6
6
|
): UI_I_OptionItem[] => {
|
|
7
7
|
return [
|
|
8
|
-
{ text: localization.all, value: 'all' },
|
|
8
|
+
{ text: localization.common.all, value: 'all' },
|
|
9
9
|
{ text: localization.off, value: 'off' },
|
|
10
10
|
{ text: localization.filter, value: 'filter' },
|
|
11
11
|
]
|
|
@@ -35,7 +35,7 @@ const getItems = (
|
|
|
35
35
|
localization: UI_I_Localization
|
|
36
36
|
): [string, boolean, string, string][] => {
|
|
37
37
|
return [
|
|
38
|
-
[localization.name, true, '96px', storageTableKeys[0]],
|
|
38
|
+
[localization.common.name, true, '96px', storageTableKeys[0]],
|
|
39
39
|
[localization.state, true, '138px', storageTableKeys[1]],
|
|
40
40
|
[localization.capacity, true, '110px', storageTableKeys[2]],
|
|
41
41
|
[localization.provisioned, true, '128px', storageTableKeys[3]],
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
|
|
21
21
|
<div class="clr-form-control clr-row">
|
|
22
22
|
<label for="" class="clr-control-label clr-col-md-2">
|
|
23
|
-
{{ localization.name }}
|
|
23
|
+
{{ localization.common.name }}
|
|
24
24
|
</label>
|
|
25
25
|
|
|
26
26
|
<div
|
|
@@ -81,7 +81,7 @@
|
|
|
81
81
|
|
|
82
82
|
<div class="nd-mt-0 clr-form-control clr-row">
|
|
83
83
|
<label class="clr-control-label clr-col-md-2">
|
|
84
|
-
{{ localization.server }}
|
|
84
|
+
{{ localization.common.server }}
|
|
85
85
|
</label>
|
|
86
86
|
|
|
87
87
|
<div
|
package/components/common/wizards/datastore/add/readyComplete/lib/config/propertiesDetails.ts
CHANGED
|
@@ -50,7 +50,7 @@ const nfsDetailsFunc = (
|
|
|
50
50
|
items: [],
|
|
51
51
|
},
|
|
52
52
|
{
|
|
53
|
-
label: localization.server,
|
|
53
|
+
label: localization.common.server,
|
|
54
54
|
value: server,
|
|
55
55
|
testId: 'view-server-name-in-complete',
|
|
56
56
|
items: [],
|
|
@@ -78,7 +78,7 @@ const nfsDetailsFunc = (
|
|
|
78
78
|
testId: 'view-hosts-accessibility',
|
|
79
79
|
items: [
|
|
80
80
|
{
|
|
81
|
-
label: localization.hosts,
|
|
81
|
+
label: localization.common.hosts,
|
|
82
82
|
value: '',
|
|
83
83
|
data: hosts,
|
|
84
84
|
testId: 'view-hosts',
|
|
@@ -15,7 +15,7 @@ const getItems = (
|
|
|
15
15
|
localization: UI_I_Localization
|
|
16
16
|
): [string, boolean, string, string][] => {
|
|
17
17
|
return [
|
|
18
|
-
[localization.name, true, '180px', hostTableItemsKeys[0]],
|
|
18
|
+
[localization.common.name, true, '180px', hostTableItemsKeys[0]],
|
|
19
19
|
[localization.identifier, false, '96px', hostTableItemsKeys[1]],
|
|
20
20
|
[localization.lun, true, '96px', hostTableItemsKeys[2]],
|
|
21
21
|
[localization.capacity, true, '96px', hostTableItemsKeys[3]],
|
|
@@ -4,7 +4,7 @@ import { UI_I_TableHead } from '~/components/common/wizards/network/add/lib/mode
|
|
|
4
4
|
export const selectNetworkTableHeadFunc = (
|
|
5
5
|
localization: UI_I_Localization
|
|
6
6
|
): UI_I_TableHead[] => [
|
|
7
|
-
{ text: localization.name },
|
|
7
|
+
{ text: localization.common.name },
|
|
8
8
|
{ text: localization.nsxPortGroupId },
|
|
9
9
|
{ text: localization.discoveredIssues },
|
|
10
10
|
]
|
|
@@ -15,7 +15,7 @@ const getItems = (
|
|
|
15
15
|
localization: UI_I_Localization
|
|
16
16
|
): [string, boolean, string, string][] => {
|
|
17
17
|
return [
|
|
18
|
-
[localization.name, true, '180px', clusterTableItemKeys[0]],
|
|
18
|
+
[localization.common.name, true, '180px', clusterTableItemKeys[0]],
|
|
19
19
|
[localization.availableCpu, true, '180px', clusterTableItemKeys[1]],
|
|
20
20
|
[localization.availableMemory, true, '180px', clusterTableItemKeys[2]],
|
|
21
21
|
[localization.availableStorage, true, '180px', clusterTableItemKeys[3]],
|
|
@@ -24,8 +24,8 @@ const getItems = (
|
|
|
24
24
|
[localization.totalCpu, false, '180px', clusterTableItemKeys[6]],
|
|
25
25
|
[localization.totalMemory, false, '180px', clusterTableItemKeys[7]],
|
|
26
26
|
[localization.totalStorage, false, '180px', clusterTableItemKeys[8]],
|
|
27
|
-
[localization.vms, false, '180px', clusterTableItemKeys[9]],
|
|
28
|
-
[localization.hosts, false, '180px', clusterTableItemKeys[10]],
|
|
27
|
+
[localization.common.vms, false, '180px', clusterTableItemKeys[9]],
|
|
28
|
+
[localization.common.hosts, false, '180px', clusterTableItemKeys[10]],
|
|
29
29
|
[localization.cpus, false, '180px', clusterTableItemKeys[11]],
|
|
30
30
|
[localization.datastores, false, '180px', clusterTableItemKeys[12]],
|
|
31
31
|
[localization.vSAN, false, '180px', clusterTableItemKeys[13]],
|
|
@@ -20,7 +20,7 @@ const getItems = (
|
|
|
20
20
|
localization: UI_I_Localization
|
|
21
21
|
): [string, boolean, string, string][] => {
|
|
22
22
|
return [
|
|
23
|
-
[localization.name, true, '180px', hostTableItemKeys[0]],
|
|
23
|
+
[localization.common.name, true, '180px', hostTableItemKeys[0]],
|
|
24
24
|
[localization.state, true, '96px', hostTableItemKeys[1]],
|
|
25
25
|
[localization.cluster, true, '180px', hostTableItemKeys[2]],
|
|
26
26
|
[localization.faultDomain, false, '180px', hostTableItemKeys[3]],
|
|
@@ -14,7 +14,7 @@ const getItems = (
|
|
|
14
14
|
localization: UI_I_Localization
|
|
15
15
|
): [string, boolean, string, string][] => {
|
|
16
16
|
return [
|
|
17
|
-
[localization.name, true, '90px', resourcePoolsTableItemKeys[0]],
|
|
17
|
+
[localization.common.name, true, '90px', resourcePoolsTableItemKeys[0]],
|
|
18
18
|
[
|
|
19
19
|
localization.cpuReservationMhz,
|
|
20
20
|
true,
|
|
@@ -17,7 +17,7 @@ const getItems = (
|
|
|
17
17
|
localization: UI_I_Localization
|
|
18
18
|
): [string, boolean, string, string][] => {
|
|
19
19
|
return [
|
|
20
|
-
[localization.name, true, '180px', vAppsTableItemKeys[0]],
|
|
20
|
+
[localization.common.name, true, '180px', vAppsTableItemKeys[0]],
|
|
21
21
|
[localization.cpuShares, true, '180px', vAppsTableItemKeys[1]],
|
|
22
22
|
[localization.cpuSharesValue, true, '180px', vAppsTableItemKeys[2]],
|
|
23
23
|
[localization.memoryShares, true, '180px', vAppsTableItemKeys[3]],
|
package/components/common/wizards/vm/migrate/select/storage/table/datastore/lib/config/config.ts
CHANGED
|
@@ -35,7 +35,7 @@ const getItems = (
|
|
|
35
35
|
localization: UI_I_Localization
|
|
36
36
|
): [string, boolean, string, string][] => {
|
|
37
37
|
return [
|
|
38
|
-
[localization.name, true, '96px', storageTableKeys[0]],
|
|
38
|
+
[localization.common.name, true, '96px', storageTableKeys[0]],
|
|
39
39
|
[localization.state, true, '138px', storageTableKeys[1]],
|
|
40
40
|
[localization.capacity, true, '110px', storageTableKeys[2]],
|
|
41
41
|
[localization.provisioned, true, '128px', storageTableKeys[3]],
|
|
@@ -21,7 +21,7 @@ const getItems = (
|
|
|
21
21
|
[localization.storage, true, '120px', vmMigrateDiskTableItemKeys[3]],
|
|
22
22
|
[localization.diskFormat, true, '180px', vmMigrateDiskTableItemKeys[4]],
|
|
23
23
|
[localization.sharing, true, '120px', vmMigrateDiskTableItemKeys[5]],
|
|
24
|
-
[localization.target, true, '120px', vmMigrateDiskTableItemKeys[6]],
|
|
24
|
+
[localization.common.target, true, '120px', vmMigrateDiskTableItemKeys[6]],
|
|
25
25
|
[localization.cache, true, '120px', vmMigrateDiskTableItemKeys[7]],
|
|
26
26
|
[localization.ioControl, true, '120px', vmMigrateDiskTableItemKeys[8]],
|
|
27
27
|
[localization.discard, true, '120px', vmMigrateDiskTableItemKeys[9]],
|