bfg-common 1.3.570 → 1.3.572
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 +2 -1
- package/assets/localization/local_en.json +2 -1
- package/assets/localization/local_hy.json +2 -1
- package/assets/localization/local_kk.json +2 -1
- package/assets/localization/local_ru.json +2 -1
- package/assets/localization/local_zh.json +2 -1
- package/components/common/wizards/datastore/add/readyComplete/lib/config/propertiesDetails.ts +15 -9
- package/package.json +1 -1
|
@@ -2416,5 +2416,6 @@
|
|
|
2416
2416
|
"networkNameFromVmware": "Імя сеткі ад vmware",
|
|
2417
2417
|
"networkInProcurator": "Сетка ў пракуратары",
|
|
2418
2418
|
"editMultiPathing": "Рэдагаваць Multipathing",
|
|
2419
|
-
"deleteCountFiles": "Выдаліць {0} файлаў?"
|
|
2419
|
+
"deleteCountFiles": "Выдаліць {0} файлаў?",
|
|
2420
|
+
"sourceVmName": "Зыходная назва ВМ"
|
|
2420
2421
|
}
|
|
@@ -2420,5 +2420,6 @@
|
|
|
2420
2420
|
"networkNameFromVmware": "Network name from vmware",
|
|
2421
2421
|
"networkInProcurator": "Network in procurator",
|
|
2422
2422
|
"editMultiPathing": "Edit Multipathing",
|
|
2423
|
-
"deleteCountFiles": "Delete {0} files?"
|
|
2423
|
+
"deleteCountFiles": "Delete {0} files?",
|
|
2424
|
+
"sourceVmName": "Source VM name"
|
|
2424
2425
|
}
|
|
@@ -2420,5 +2420,6 @@
|
|
|
2420
2420
|
"networkNameFromVmware": "Ցանցի անունը vmware-ից",
|
|
2421
2421
|
"networkInProcurator": "Ցանց Պրակուրատրում",
|
|
2422
2422
|
"editMultiPathing": "Խմբագրել Multipathing-ը",
|
|
2423
|
-
"deleteCountFiles": "Ջնջե՞լ {0} ֆայլ"
|
|
2423
|
+
"deleteCountFiles": "Ջնջե՞լ {0} ֆայլ",
|
|
2424
|
+
"sourceVmName": "Աղբյուր VM անունը"
|
|
2424
2425
|
}
|
|
@@ -2419,5 +2419,6 @@
|
|
|
2419
2419
|
"networkNameFromVmware": "Vmware жүйесінен желі атауы",
|
|
2420
2420
|
"networkInProcurator": "Прокурордағы желі",
|
|
2421
2421
|
"editMultiPathing": "Көп жолды өңдеу",
|
|
2422
|
-
"deleteCountFiles": "{0} файлды жою қажет пе?"
|
|
2422
|
+
"deleteCountFiles": "{0} файлды жою қажет пе?",
|
|
2423
|
+
"sourceVmName": "Бастапқы VM атауы"
|
|
2423
2424
|
}
|
|
@@ -2425,5 +2425,6 @@
|
|
|
2425
2425
|
"networkNameFromVmware": "Имя сети из vmware",
|
|
2426
2426
|
"networkInProcurator": "Сеть в прокураторе",
|
|
2427
2427
|
"editMultiPathing": "Редактировать многопутевой доступ",
|
|
2428
|
-
"deleteCountFiles": "Удалить {0} файлов?"
|
|
2428
|
+
"deleteCountFiles": "Удалить {0} файлов?",
|
|
2429
|
+
"sourceVmName": "Имя исходной ВМ"
|
|
2429
2430
|
}
|
package/components/common/wizards/datastore/add/readyComplete/lib/config/propertiesDetails.ts
CHANGED
|
@@ -27,12 +27,13 @@ const nfsDetailsFunc = (
|
|
|
27
27
|
{
|
|
28
28
|
label: localization.vmfsVersion,
|
|
29
29
|
value: '',
|
|
30
|
+
testId: 'view-vmfs-version',
|
|
30
31
|
items: [
|
|
31
32
|
{
|
|
32
33
|
label: localization.version,
|
|
33
34
|
value: version.toUpperCase(),
|
|
34
|
-
items: [],
|
|
35
35
|
testId: 'view-selected-nfs-version-in-complete',
|
|
36
|
+
items: [],
|
|
36
37
|
},
|
|
37
38
|
],
|
|
38
39
|
actions: [],
|
|
@@ -40,24 +41,25 @@ const nfsDetailsFunc = (
|
|
|
40
41
|
{
|
|
41
42
|
label: localization.nameAndConfiguration,
|
|
42
43
|
value: '',
|
|
44
|
+
testId: 'view-name-and-configuration',
|
|
43
45
|
items: [
|
|
44
46
|
{
|
|
45
47
|
label: localization.datastoreName,
|
|
46
48
|
value: name,
|
|
47
|
-
items: [],
|
|
48
49
|
testId: 'view-storage-name-in-complete',
|
|
50
|
+
items: [],
|
|
49
51
|
},
|
|
50
52
|
{
|
|
51
53
|
label: localization.server,
|
|
52
54
|
value: server,
|
|
53
|
-
items: [],
|
|
54
55
|
testId: 'view-server-name-in-complete',
|
|
56
|
+
items: [],
|
|
55
57
|
},
|
|
56
58
|
{
|
|
57
59
|
label: localization.folder,
|
|
58
60
|
value: folder,
|
|
59
|
-
items: [],
|
|
60
61
|
testId: 'view-folder-name-in-complete',
|
|
62
|
+
items: [],
|
|
61
63
|
},
|
|
62
64
|
// {
|
|
63
65
|
// label: localization.accessMode,
|
|
@@ -73,11 +75,13 @@ const nfsDetailsFunc = (
|
|
|
73
75
|
details.push({
|
|
74
76
|
label: localization.hostsAccessibility,
|
|
75
77
|
value: '',
|
|
78
|
+
testId: 'view-hosts-accessibility',
|
|
76
79
|
items: [
|
|
77
80
|
{
|
|
78
81
|
label: localization.hosts,
|
|
79
82
|
value: '',
|
|
80
83
|
data: hosts,
|
|
84
|
+
testId: 'view-hosts',
|
|
81
85
|
items: [],
|
|
82
86
|
},
|
|
83
87
|
],
|
|
@@ -97,12 +101,13 @@ const localDetailsFunc = (
|
|
|
97
101
|
{
|
|
98
102
|
label: localization.selectName,
|
|
99
103
|
value: '',
|
|
104
|
+
testId: 'view-select-name',
|
|
100
105
|
items: [
|
|
101
106
|
{
|
|
102
107
|
label: localization.datastoreName,
|
|
103
108
|
value: isSphereWizard ? event.name : event,
|
|
104
|
-
items: [],
|
|
105
109
|
testId: 'view-storage-name-in-complete',
|
|
110
|
+
items: [],
|
|
106
111
|
},
|
|
107
112
|
],
|
|
108
113
|
actions: [],
|
|
@@ -113,8 +118,8 @@ const localDetailsFunc = (
|
|
|
113
118
|
data[0].items.push({
|
|
114
119
|
label: localization.host,
|
|
115
120
|
value: event.host,
|
|
121
|
+
testId: 'view-host',
|
|
116
122
|
items: [],
|
|
117
|
-
testId: '',
|
|
118
123
|
})
|
|
119
124
|
}
|
|
120
125
|
return data
|
|
@@ -130,18 +135,19 @@ const sharedStormDetailsFunc = (
|
|
|
130
135
|
{
|
|
131
136
|
label: localization.nameAndDeviceSelection,
|
|
132
137
|
value: '',
|
|
138
|
+
testId: 'name-and-device-selection',
|
|
133
139
|
items: [
|
|
134
140
|
{
|
|
135
141
|
label: localization.datastoreName,
|
|
136
142
|
value: name,
|
|
137
|
-
items: [],
|
|
138
143
|
testId: 'view-storage-name-in-complete',
|
|
144
|
+
items: [],
|
|
139
145
|
},
|
|
140
146
|
{
|
|
141
147
|
label: localization.diskLun,
|
|
142
148
|
value: constructLunDiskItems(lunDisk),
|
|
143
|
-
items: [],
|
|
144
149
|
testId: 'view-selected-lun-disks-in-complete',
|
|
150
|
+
items: [],
|
|
145
151
|
},
|
|
146
152
|
],
|
|
147
153
|
actions: [],
|
|
@@ -183,7 +189,7 @@ export const constructDataReadyViewFunc = <T>(
|
|
|
183
189
|
isSphereWizard: boolean
|
|
184
190
|
): UI_I_DetailsItem[] => {
|
|
185
191
|
const details = {
|
|
186
|
-
local: localDetailsFunc,
|
|
192
|
+
local: localDetailsFunc, // TODO remove
|
|
187
193
|
'shared-storm': sharedStormDetailsFunc,
|
|
188
194
|
nfs: nfsDetailsFunc,
|
|
189
195
|
}
|