bfg-common 1.5.998 → 1.6.0
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/vm/actions/common/select/storage/new/lib/config/table.ts +14 -16
- package/lib/models/store/tasks/enums.ts +1 -0
- package/package.json +1 -1
|
@@ -2642,7 +2642,8 @@
|
|
|
2642
2642
|
"vmci_device": "Прылада VMCI",
|
|
2643
2643
|
"controllers": "Кантролеры",
|
|
2644
2644
|
"scsi_adapters": "SCSI-адаптары",
|
|
2645
|
-
"canceled": "Скасавана"
|
|
2645
|
+
"canceled": "Скасавана",
|
|
2646
|
+
"retrying": "Паўторная спроба"
|
|
2646
2647
|
},
|
|
2647
2648
|
"auth": {
|
|
2648
2649
|
"welcomeTo": "Сардэчна запрашаем у",
|
|
@@ -2646,7 +2646,8 @@
|
|
|
2646
2646
|
"vmci_device": "VMCI Device",
|
|
2647
2647
|
"controllers": "Controllers",
|
|
2648
2648
|
"scsi_adapters": "SCSI Adapters",
|
|
2649
|
-
"canceled": "Canceled"
|
|
2649
|
+
"canceled": "Canceled",
|
|
2650
|
+
"retrying": "Retrying"
|
|
2650
2651
|
},
|
|
2651
2652
|
"auth": {
|
|
2652
2653
|
"welcomeTo": "Welcome to",
|
|
@@ -2646,7 +2646,8 @@
|
|
|
2646
2646
|
"vmci_device": "VMCI սարք",
|
|
2647
2647
|
"controllers": "Կառավարիչներ",
|
|
2648
2648
|
"scsi_adapters": "SCSI ցանցային քարտեր",
|
|
2649
|
-
"canceled": "Չեղարկված"
|
|
2649
|
+
"canceled": "Չեղարկված",
|
|
2650
|
+
"retrying": "Կրկնակի փորձ"
|
|
2650
2651
|
},
|
|
2651
2652
|
"auth": {
|
|
2652
2653
|
"welcomeTo": "Բարի գալուստ",
|
|
@@ -2645,7 +2645,8 @@
|
|
|
2645
2645
|
"vmci_device": "VMCI құрылғысы",
|
|
2646
2646
|
"controllers": "Контроллерлер",
|
|
2647
2647
|
"scsi_adapters": "SCSI-адаптерлер",
|
|
2648
|
-
"canceled": "Бас тартылды"
|
|
2648
|
+
"canceled": "Бас тартылды",
|
|
2649
|
+
"retrying": "Қайта әрекет ету"
|
|
2649
2650
|
},
|
|
2650
2651
|
"auth": {
|
|
2651
2652
|
"welcomeTo": "Қош келдіңіз",
|
|
@@ -2645,7 +2645,8 @@
|
|
|
2645
2645
|
"vmci_device": "Устройство VMCI",
|
|
2646
2646
|
"controllers": "Контроллеры",
|
|
2647
2647
|
"scsi_adapters": "Адаптеры SCSI",
|
|
2648
|
-
"canceled": "Отменено"
|
|
2648
|
+
"canceled": "Отменено",
|
|
2649
|
+
"retrying": "Повторная попытка"
|
|
2649
2650
|
},
|
|
2650
2651
|
"auth": {
|
|
2651
2652
|
"welcomeTo": "Добро пожаловать в",
|
|
@@ -9,16 +9,14 @@ import type { UI_I_StatusData } from '~/components/common/vm/actions/common/sele
|
|
|
9
9
|
import { datastoreLocalizationByState } from '~/components/common/lib/config/states'
|
|
10
10
|
import { getStatus } from '~/components/common/vm/actions/common/select/storage/new/lib/utils/utils'
|
|
11
11
|
|
|
12
|
-
export const tableDataFunc = (
|
|
13
|
-
localization: UI_I_Localization
|
|
14
|
-
): UI_I_DataTable => ({
|
|
12
|
+
export const tableDataFunc = (localization: UI_I_Localization): UI_I_DataTable => ({
|
|
15
13
|
id: 'select-storage',
|
|
16
14
|
header: [
|
|
17
15
|
{
|
|
18
16
|
col: 0,
|
|
19
17
|
colName: localization.common.name,
|
|
20
18
|
text: localization.common.name,
|
|
21
|
-
isSortable:
|
|
19
|
+
isSortable: true,
|
|
22
20
|
sort: 'asc',
|
|
23
21
|
sortColumn: true,
|
|
24
22
|
width: '160px',
|
|
@@ -31,7 +29,7 @@ export const tableDataFunc = (
|
|
|
31
29
|
text: localization.inventorySummary.state,
|
|
32
30
|
isSortable: false,
|
|
33
31
|
sort: 'asc',
|
|
34
|
-
sortColumn:
|
|
32
|
+
sortColumn: false,
|
|
35
33
|
width: '160px',
|
|
36
34
|
show: true,
|
|
37
35
|
filter: true,
|
|
@@ -42,7 +40,7 @@ export const tableDataFunc = (
|
|
|
42
40
|
text: localization.common.capacity,
|
|
43
41
|
isSortable: false,
|
|
44
42
|
sort: 'asc',
|
|
45
|
-
sortColumn:
|
|
43
|
+
sortColumn: false,
|
|
46
44
|
width: '150px',
|
|
47
45
|
show: true,
|
|
48
46
|
filter: true,
|
|
@@ -53,7 +51,7 @@ export const tableDataFunc = (
|
|
|
53
51
|
text: localization.common.provisioned,
|
|
54
52
|
isSortable: false,
|
|
55
53
|
sort: 'asc',
|
|
56
|
-
sortColumn:
|
|
54
|
+
sortColumn: false,
|
|
57
55
|
width: '150px',
|
|
58
56
|
show: true,
|
|
59
57
|
filter: true,
|
|
@@ -64,7 +62,7 @@ export const tableDataFunc = (
|
|
|
64
62
|
text: localization.common.free,
|
|
65
63
|
isSortable: false,
|
|
66
64
|
sort: 'asc',
|
|
67
|
-
sortColumn:
|
|
65
|
+
sortColumn: false,
|
|
68
66
|
width: '150px',
|
|
69
67
|
show: true,
|
|
70
68
|
filter: true,
|
|
@@ -75,7 +73,7 @@ export const tableDataFunc = (
|
|
|
75
73
|
text: localization.common.used,
|
|
76
74
|
isSortable: false,
|
|
77
75
|
sort: 'asc',
|
|
78
|
-
sortColumn:
|
|
76
|
+
sortColumn: false,
|
|
79
77
|
width: '150px',
|
|
80
78
|
show: true,
|
|
81
79
|
filter: true,
|
|
@@ -86,7 +84,7 @@ export const tableDataFunc = (
|
|
|
86
84
|
text: localization.common.type,
|
|
87
85
|
isSortable: false,
|
|
88
86
|
sort: 'asc',
|
|
89
|
-
sortColumn:
|
|
87
|
+
sortColumn: false,
|
|
90
88
|
width: '120px',
|
|
91
89
|
show: true,
|
|
92
90
|
filter: true,
|
|
@@ -97,7 +95,7 @@ export const tableDataFunc = (
|
|
|
97
95
|
text: localization.common.thinProvisioning,
|
|
98
96
|
isSortable: false,
|
|
99
97
|
sort: 'asc',
|
|
100
|
-
sortColumn:
|
|
98
|
+
sortColumn: false,
|
|
101
99
|
width: '160px',
|
|
102
100
|
show: true,
|
|
103
101
|
filter: true,
|
|
@@ -108,7 +106,7 @@ export const tableDataFunc = (
|
|
|
108
106
|
text: localization.common.access,
|
|
109
107
|
isSortable: false,
|
|
110
108
|
sort: 'asc',
|
|
111
|
-
sortColumn:
|
|
109
|
+
sortColumn: false,
|
|
112
110
|
width: '120px',
|
|
113
111
|
show: true,
|
|
114
112
|
filter: true,
|
|
@@ -119,7 +117,7 @@ export const tableDataFunc = (
|
|
|
119
117
|
text: localization.common.hardwareAcceleration,
|
|
120
118
|
isSortable: false,
|
|
121
119
|
sort: 'asc',
|
|
122
|
-
sortColumn:
|
|
120
|
+
sortColumn: false,
|
|
123
121
|
width: '200px',
|
|
124
122
|
show: true,
|
|
125
123
|
filter: true,
|
|
@@ -130,7 +128,7 @@ export const tableDataFunc = (
|
|
|
130
128
|
text: localization.common.driverType,
|
|
131
129
|
isSortable: false,
|
|
132
130
|
sort: 'asc',
|
|
133
|
-
sortColumn:
|
|
131
|
+
sortColumn: false,
|
|
134
132
|
width: '150px',
|
|
135
133
|
show: true,
|
|
136
134
|
filter: true,
|
|
@@ -141,7 +139,7 @@ export const tableDataFunc = (
|
|
|
141
139
|
text: localization.common.device,
|
|
142
140
|
isSortable: false,
|
|
143
141
|
sort: 'asc',
|
|
144
|
-
sortColumn:
|
|
142
|
+
sortColumn: false,
|
|
145
143
|
width: '150px',
|
|
146
144
|
show: true,
|
|
147
145
|
filter: true,
|
|
@@ -152,7 +150,7 @@ export const tableDataFunc = (
|
|
|
152
150
|
text: localization.common.storageIoControl,
|
|
153
151
|
isSortable: false,
|
|
154
152
|
sort: 'asc',
|
|
155
|
-
sortColumn:
|
|
153
|
+
sortColumn: false,
|
|
156
154
|
width: '180px',
|
|
157
155
|
show: true,
|
|
158
156
|
filter: true,
|