@mui/x-data-grid 5.17.20 → 5.17.21
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/CHANGELOG.md +38 -0
- package/components/cell/GridCell.js +3 -1
- package/components/panel/GridColumnsPanel.js +15 -5
- package/hooks/features/export/useGridPrintExport.js +7 -3
- package/index.js +1 -1
- package/legacy/components/cell/GridCell.js +3 -1
- package/legacy/components/panel/GridColumnsPanel.js +15 -9
- package/legacy/hooks/features/export/useGridPrintExport.js +8 -4
- package/legacy/index.js +1 -1
- package/legacy/lib/createDetectElementResize/index.js +5 -5
- package/legacy/locales/beBY.js +161 -0
- package/legacy/locales/coreLocales.js +67 -0
- package/legacy/locales/esES.js +18 -14
- package/legacy/locales/index.js +1 -0
- package/legacy/locales/jaJP.js +16 -16
- package/legacy/locales/skSK.js +8 -8
- package/legacy/locales/viVN.js +22 -18
- package/lib/createDetectElementResize/index.js +5 -5
- package/locales/beBY.d.ts +2 -0
- package/locales/beBY.js +149 -0
- package/locales/coreLocales.d.ts +3 -0
- package/locales/coreLocales.js +65 -0
- package/locales/esES.js +14 -14
- package/locales/index.d.ts +1 -0
- package/locales/index.js +1 -0
- package/locales/jaJP.js +16 -16
- package/locales/skSK.js +8 -8
- package/locales/viVN.js +18 -18
- package/modern/components/cell/GridCell.js +3 -1
- package/modern/components/panel/GridColumnsPanel.js +15 -5
- package/modern/hooks/features/export/useGridPrintExport.js +7 -3
- package/modern/index.js +1 -1
- package/modern/lib/createDetectElementResize/index.js +5 -5
- package/modern/locales/beBY.js +149 -0
- package/modern/locales/coreLocales.js +65 -0
- package/modern/locales/esES.js +14 -14
- package/modern/locales/index.js +1 -0
- package/modern/locales/jaJP.js +16 -16
- package/modern/locales/skSK.js +8 -8
- package/modern/locales/viVN.js +18 -18
- package/node/components/cell/GridCell.js +3 -1
- package/node/components/panel/GridColumnsPanel.js +13 -5
- package/node/hooks/features/export/useGridPrintExport.js +7 -3
- package/node/index.js +1 -1
- package/node/lib/createDetectElementResize/index.js +5 -5
- package/node/locales/beBY.js +158 -0
- package/node/locales/coreLocales.js +73 -0
- package/node/locales/esES.js +14 -14
- package/node/locales/index.js +13 -0
- package/node/locales/jaJP.js +16 -16
- package/node/locales/skSK.js +8 -8
- package/node/locales/viVN.js +18 -18
- package/package.json +1 -1
|
@@ -0,0 +1,158 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.beBY = void 0;
|
|
7
|
+
|
|
8
|
+
var _coreLocales = require("./coreLocales");
|
|
9
|
+
|
|
10
|
+
var _getGridLocalization = require("../utils/getGridLocalization");
|
|
11
|
+
|
|
12
|
+
const getPluralForm = (count, options) => {
|
|
13
|
+
let pluralForm = options.other;
|
|
14
|
+
const lastDigit = count % 10;
|
|
15
|
+
|
|
16
|
+
if (lastDigit > 1 && lastDigit < 5 && (count < 10 || count > 20)) {
|
|
17
|
+
pluralForm = options.twoToFour;
|
|
18
|
+
} else if (lastDigit === 1 && count % 100 !== 11) {
|
|
19
|
+
pluralForm = options.one;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
return `${count} ${pluralForm}`;
|
|
23
|
+
};
|
|
24
|
+
|
|
25
|
+
const beBYGrid = {
|
|
26
|
+
// Root
|
|
27
|
+
noRowsLabel: 'Няма радкоў',
|
|
28
|
+
noResultsOverlayLabel: 'Дадзеныя не знойдзены.',
|
|
29
|
+
// errorOverlayDefaultLabel: 'An error occurred.',
|
|
30
|
+
// Density selector toolbar button text
|
|
31
|
+
toolbarDensity: 'Вышыня радка',
|
|
32
|
+
toolbarDensityLabel: 'Вышыня радка',
|
|
33
|
+
toolbarDensityCompact: 'Кампактны',
|
|
34
|
+
toolbarDensityStandard: 'Стандартны',
|
|
35
|
+
toolbarDensityComfortable: 'Камфортны',
|
|
36
|
+
// Columns selector toolbar button text
|
|
37
|
+
toolbarColumns: 'Слупкі',
|
|
38
|
+
toolbarColumnsLabel: 'Выберыце слупкі',
|
|
39
|
+
// Filters toolbar button text
|
|
40
|
+
toolbarFilters: 'Фільтры',
|
|
41
|
+
toolbarFiltersLabel: 'Паказаць фільтры',
|
|
42
|
+
toolbarFiltersTooltipHide: 'Схаваць фільтры',
|
|
43
|
+
toolbarFiltersTooltipShow: 'Паказаць фільтры',
|
|
44
|
+
toolbarFiltersTooltipActive: count => getPluralForm(count, {
|
|
45
|
+
one: 'актыўны фільтр',
|
|
46
|
+
twoToFour: 'актыўных фільтра',
|
|
47
|
+
other: 'актыўных фільтраў'
|
|
48
|
+
}),
|
|
49
|
+
// Quick filter toolbar field
|
|
50
|
+
toolbarQuickFilterPlaceholder: 'Пошук…',
|
|
51
|
+
toolbarQuickFilterLabel: 'Пошук',
|
|
52
|
+
toolbarQuickFilterDeleteIconLabel: 'Ачысціць',
|
|
53
|
+
// Export selector toolbar button text
|
|
54
|
+
toolbarExport: 'Экспарт',
|
|
55
|
+
toolbarExportLabel: 'Экспарт',
|
|
56
|
+
toolbarExportCSV: 'Спампаваць у фармаце CSV',
|
|
57
|
+
toolbarExportPrint: 'Друк',
|
|
58
|
+
toolbarExportExcel: 'Спампаваць у фармаце Excel',
|
|
59
|
+
// Columns panel text
|
|
60
|
+
columnsPanelTextFieldLabel: 'Знайсці слупок',
|
|
61
|
+
columnsPanelTextFieldPlaceholder: 'Загаловак слупка',
|
|
62
|
+
columnsPanelDragIconLabel: 'Змяніць чарговасць слупкоў',
|
|
63
|
+
columnsPanelShowAllButton: 'Паказаць усе',
|
|
64
|
+
columnsPanelHideAllButton: 'Схаваць усе',
|
|
65
|
+
// Filter panel text
|
|
66
|
+
filterPanelAddFilter: 'Дадаць фільтр',
|
|
67
|
+
filterPanelDeleteIconLabel: 'Выдаліць',
|
|
68
|
+
filterPanelLinkOperator: 'Лагічныя аператары',
|
|
69
|
+
filterPanelOperators: 'Аператары',
|
|
70
|
+
// TODO v6: rename to filterPanelOperator
|
|
71
|
+
filterPanelOperatorAnd: 'І',
|
|
72
|
+
filterPanelOperatorOr: 'Або',
|
|
73
|
+
filterPanelColumns: 'Слупкі',
|
|
74
|
+
filterPanelInputLabel: 'Значэнне',
|
|
75
|
+
filterPanelInputPlaceholder: 'Значэнне фільтра',
|
|
76
|
+
// Filter operators text
|
|
77
|
+
filterOperatorContains: 'змяшчае',
|
|
78
|
+
filterOperatorEquals: 'роўны',
|
|
79
|
+
filterOperatorStartsWith: 'пачынаецца з',
|
|
80
|
+
filterOperatorEndsWith: 'скончваецца на',
|
|
81
|
+
filterOperatorIs: 'роўны',
|
|
82
|
+
filterOperatorNot: 'не роўны',
|
|
83
|
+
filterOperatorAfter: 'больш чым',
|
|
84
|
+
filterOperatorOnOrAfter: 'больш ці роўны',
|
|
85
|
+
filterOperatorBefore: 'меньш чым',
|
|
86
|
+
filterOperatorOnOrBefore: 'меньш ці роўны',
|
|
87
|
+
filterOperatorIsEmpty: 'пусты',
|
|
88
|
+
filterOperatorIsNotEmpty: 'не пусты',
|
|
89
|
+
filterOperatorIsAnyOf: 'усякі з',
|
|
90
|
+
// Filter values text
|
|
91
|
+
filterValueAny: 'усякі',
|
|
92
|
+
filterValueTrue: 'праўда',
|
|
93
|
+
filterValueFalse: 'няпраўда',
|
|
94
|
+
// Column menu text
|
|
95
|
+
columnMenuLabel: 'Меню',
|
|
96
|
+
columnMenuShowColumns: 'Паказаць слупкі',
|
|
97
|
+
columnMenuFilter: 'Фільтр',
|
|
98
|
+
columnMenuHideColumn: 'Схаваць',
|
|
99
|
+
columnMenuUnsort: 'Скасаваць сартыроўку',
|
|
100
|
+
columnMenuSortAsc: 'Сартыраваць па нарастанню',
|
|
101
|
+
columnMenuSortDesc: 'Сартыраваць па спаданню',
|
|
102
|
+
// Column header text
|
|
103
|
+
columnHeaderFiltersTooltipActive: count => getPluralForm(count, {
|
|
104
|
+
one: 'актыўны фільтр',
|
|
105
|
+
twoToFour: 'актыўных фільтра',
|
|
106
|
+
other: 'актыўных фільтраў'
|
|
107
|
+
}),
|
|
108
|
+
columnHeaderFiltersLabel: 'Паказаць фільтры',
|
|
109
|
+
columnHeaderSortIconLabel: 'Сартыраваць',
|
|
110
|
+
// Rows selected footer text
|
|
111
|
+
footerRowSelected: count => getPluralForm(count, {
|
|
112
|
+
one: 'абраны радок',
|
|
113
|
+
twoToFour: 'абраных радка',
|
|
114
|
+
other: 'абраных радкоў'
|
|
115
|
+
}),
|
|
116
|
+
// Total row amount footer text
|
|
117
|
+
footerTotalRows: 'Усяго радкоў:',
|
|
118
|
+
// Total visible row amount footer text
|
|
119
|
+
footerTotalVisibleRows: (visibleCount, totalCount) => `${visibleCount.toLocaleString()} з ${totalCount.toLocaleString()}`,
|
|
120
|
+
// Checkbox selection text
|
|
121
|
+
checkboxSelectionHeaderName: 'Выбар сцяжка',
|
|
122
|
+
checkboxSelectionSelectAllRows: 'Абраць усе радкі',
|
|
123
|
+
checkboxSelectionUnselectAllRows: 'Скасаваць выбар усіх радкоў',
|
|
124
|
+
checkboxSelectionSelectRow: 'Абраць радок',
|
|
125
|
+
checkboxSelectionUnselectRow: 'Скасаваць выбар радка',
|
|
126
|
+
// Boolean cell text
|
|
127
|
+
booleanCellTrueLabel: 'праўда',
|
|
128
|
+
booleanCellFalseLabel: 'няпраўда',
|
|
129
|
+
// Actions cell more text
|
|
130
|
+
actionsCellMore: 'больш',
|
|
131
|
+
// Column pinning text
|
|
132
|
+
pinToLeft: 'Замацаваць злева',
|
|
133
|
+
pinToRight: 'Замацаваць справа',
|
|
134
|
+
unpin: 'Адмацаваць',
|
|
135
|
+
// Tree Data
|
|
136
|
+
treeDataGroupingHeaderName: 'Група',
|
|
137
|
+
treeDataExpand: 'паказаць даччыныя элементы',
|
|
138
|
+
treeDataCollapse: 'схаваць даччыныя элементы',
|
|
139
|
+
// Grouping columns
|
|
140
|
+
groupingColumnHeaderName: 'Група',
|
|
141
|
+
groupColumn: name => `Групаваць па ${name}`,
|
|
142
|
+
unGroupColumn: name => `Разгрупаваць па ${name}`,
|
|
143
|
+
// Master/detail
|
|
144
|
+
detailPanelToggle: 'Дэталі',
|
|
145
|
+
expandDetailPanel: 'Разгарнуць',
|
|
146
|
+
collapseDetailPanel: 'Згарнуць',
|
|
147
|
+
// Row reordering text
|
|
148
|
+
rowReorderingHeaderName: 'Змяненне чарговасці радкоў',
|
|
149
|
+
// Aggregation
|
|
150
|
+
aggregationMenuItemHeader: "Аб'яднанне дадзеных",
|
|
151
|
+
aggregationFunctionLabelSum: 'сума',
|
|
152
|
+
aggregationFunctionLabelAvg: 'сярэдняе',
|
|
153
|
+
aggregationFunctionLabelMin: 'мінімум',
|
|
154
|
+
aggregationFunctionLabelMax: 'максімум',
|
|
155
|
+
aggregationFunctionLabelSize: 'памер'
|
|
156
|
+
};
|
|
157
|
+
const beBY = (0, _getGridLocalization.getGridLocalization)(beBYGrid, _coreLocales.beBYCore);
|
|
158
|
+
exports.beBY = beBY;
|
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.urPKCore = exports.beBYCore = void 0;
|
|
7
|
+
// This file contains copies of the core locales for `MuiTablePagination` released
|
|
8
|
+
// after the `@mui/material` package `v5.4.1` (peer dependency of `@mui/x-data-grid`).
|
|
9
|
+
// This allows not to bump the minimal version of `@mui/material` in peerDependencies which results
|
|
10
|
+
// in broader compatibility between the packages.
|
|
11
|
+
// See https://github.com/mui/mui-x/pull/7646#issuecomment-1404605556 for additional context.
|
|
12
|
+
const beBYCore = {
|
|
13
|
+
components: {
|
|
14
|
+
MuiTablePagination: {
|
|
15
|
+
defaultProps: {
|
|
16
|
+
getItemAriaLabel: type => {
|
|
17
|
+
if (type === 'first') {
|
|
18
|
+
return 'Перайсці на першую старонку';
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
if (type === 'last') {
|
|
22
|
+
return 'Перайсці на апошнюю старонку';
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
if (type === 'next') {
|
|
26
|
+
return 'Перайсці на наступную старонку';
|
|
27
|
+
} // if (type === 'previous') {
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
return 'Перайсці на папярэднюю старонку';
|
|
31
|
+
},
|
|
32
|
+
labelRowsPerPage: 'Радкоў на старонцы:',
|
|
33
|
+
labelDisplayedRows: ({
|
|
34
|
+
from,
|
|
35
|
+
to,
|
|
36
|
+
count
|
|
37
|
+
}) => `${from}–${to} з ${count !== -1 ? count : `больш чым ${to}`}`
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
};
|
|
42
|
+
exports.beBYCore = beBYCore;
|
|
43
|
+
const urPKCore = {
|
|
44
|
+
components: {
|
|
45
|
+
MuiTablePagination: {
|
|
46
|
+
defaultProps: {
|
|
47
|
+
getItemAriaLabel: type => {
|
|
48
|
+
if (type === 'first') {
|
|
49
|
+
return 'پہلے صفحے پر جائیں';
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
if (type === 'last') {
|
|
53
|
+
return 'آخری صفحے پر جائیں';
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
if (type === 'next') {
|
|
57
|
+
return 'اگلے صفحے پر جائیں';
|
|
58
|
+
} // if (type === 'previous') {
|
|
59
|
+
|
|
60
|
+
|
|
61
|
+
return 'پچھلے صفحے پر جائیں';
|
|
62
|
+
},
|
|
63
|
+
labelRowsPerPage: 'ایک صفحے پر قطاریں:',
|
|
64
|
+
labelDisplayedRows: ({
|
|
65
|
+
from,
|
|
66
|
+
to,
|
|
67
|
+
count
|
|
68
|
+
}) => `${count !== -1 ? `${count} میں سے` : `${to} سے ذیادہ میں سے`} ${from} سے ${to} قطاریں`
|
|
69
|
+
}
|
|
70
|
+
}
|
|
71
|
+
}
|
|
72
|
+
};
|
|
73
|
+
exports.urPKCore = urPKCore;
|
package/node/locales/esES.js
CHANGED
|
@@ -108,26 +108,26 @@ const esESGrid = {
|
|
|
108
108
|
pinToRight: 'Anclar a la derecha',
|
|
109
109
|
unpin: 'Desanclar',
|
|
110
110
|
// Tree Data
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
111
|
+
treeDataGroupingHeaderName: 'Grupo',
|
|
112
|
+
treeDataExpand: 'mostrar hijos',
|
|
113
|
+
treeDataCollapse: 'ocultar hijos',
|
|
114
114
|
// Grouping columns
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
115
|
+
groupingColumnHeaderName: 'Grupo',
|
|
116
|
+
groupColumn: name => `Agrupar por ${name}`,
|
|
117
|
+
unGroupColumn: name => `No agrupar por ${name}`,
|
|
118
118
|
// Master/detail
|
|
119
|
-
|
|
119
|
+
detailPanelToggle: 'Alternar detalle',
|
|
120
120
|
expandDetailPanel: 'Expandir',
|
|
121
|
-
collapseDetailPanel: '
|
|
121
|
+
collapseDetailPanel: 'Contraer',
|
|
122
122
|
// Row reordering text
|
|
123
|
-
|
|
123
|
+
rowReorderingHeaderName: 'Reordenar filas',
|
|
124
124
|
// Aggregation
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
125
|
+
aggregationMenuItemHeader: 'Agregación',
|
|
126
|
+
aggregationFunctionLabelSum: 'sum',
|
|
127
|
+
aggregationFunctionLabelAvg: 'avg',
|
|
128
128
|
aggregationFunctionLabelMin: 'min',
|
|
129
|
-
aggregationFunctionLabelMax: 'max'
|
|
130
|
-
|
|
129
|
+
aggregationFunctionLabelMax: 'max',
|
|
130
|
+
aggregationFunctionLabelSize: 'tamaño'
|
|
131
131
|
};
|
|
132
132
|
const esES = (0, _getGridLocalization.getGridLocalization)(esESGrid, _locale.esES);
|
|
133
133
|
exports.esES = esES;
|
package/node/locales/index.js
CHANGED
|
@@ -17,6 +17,19 @@ Object.keys(_arSD).forEach(function (key) {
|
|
|
17
17
|
});
|
|
18
18
|
});
|
|
19
19
|
|
|
20
|
+
var _beBY = require("./beBY");
|
|
21
|
+
|
|
22
|
+
Object.keys(_beBY).forEach(function (key) {
|
|
23
|
+
if (key === "default" || key === "__esModule") return;
|
|
24
|
+
if (key in exports && exports[key] === _beBY[key]) return;
|
|
25
|
+
Object.defineProperty(exports, key, {
|
|
26
|
+
enumerable: true,
|
|
27
|
+
get: function () {
|
|
28
|
+
return _beBY[key];
|
|
29
|
+
}
|
|
30
|
+
});
|
|
31
|
+
});
|
|
32
|
+
|
|
20
33
|
var _bgBG = require("./bgBG");
|
|
21
34
|
|
|
22
35
|
Object.keys(_bgBG).forEach(function (key) {
|
package/node/locales/jaJP.js
CHANGED
|
@@ -19,7 +19,7 @@ const jaJPGrid = {
|
|
|
19
19
|
toolbarDensityLabel: '行間隔',
|
|
20
20
|
toolbarDensityCompact: 'コンパクト',
|
|
21
21
|
toolbarDensityStandard: '標準',
|
|
22
|
-
toolbarDensityComfortable: '
|
|
22
|
+
toolbarDensityComfortable: '広め',
|
|
23
23
|
// Columns selector toolbar button text
|
|
24
24
|
toolbarColumns: '列一覧',
|
|
25
25
|
toolbarColumnsLabel: '列選択',
|
|
@@ -48,8 +48,8 @@ const jaJPGrid = {
|
|
|
48
48
|
// Filter panel text
|
|
49
49
|
filterPanelAddFilter: 'フィルター追加',
|
|
50
50
|
filterPanelDeleteIconLabel: '削除',
|
|
51
|
-
|
|
52
|
-
filterPanelOperators: '
|
|
51
|
+
filterPanelLinkOperator: '論理演算子',
|
|
52
|
+
filterPanelOperators: '演算子',
|
|
53
53
|
// TODO v6: rename to filterPanelOperator
|
|
54
54
|
filterPanelOperatorAnd: 'And',
|
|
55
55
|
filterPanelOperatorOr: 'Or',
|
|
@@ -71,9 +71,9 @@ const jaJPGrid = {
|
|
|
71
71
|
filterOperatorIsNotEmpty: '...空でない',
|
|
72
72
|
filterOperatorIsAnyOf: '...のいずれか',
|
|
73
73
|
// Filter values text
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
74
|
+
filterValueAny: 'いずれか',
|
|
75
|
+
filterValueTrue: '真',
|
|
76
|
+
filterValueFalse: '偽',
|
|
77
77
|
// Column menu text
|
|
78
78
|
columnMenuLabel: 'メニュー',
|
|
79
79
|
columnMenuShowColumns: '列表示',
|
|
@@ -102,7 +102,7 @@ const jaJPGrid = {
|
|
|
102
102
|
booleanCellTrueLabel: '真',
|
|
103
103
|
booleanCellFalseLabel: '偽',
|
|
104
104
|
// Actions cell more text
|
|
105
|
-
|
|
105
|
+
actionsCellMore: 'もっと見る',
|
|
106
106
|
// Column pinning text
|
|
107
107
|
pinToLeft: '左側に固定',
|
|
108
108
|
pinToRight: '右側に固定',
|
|
@@ -116,18 +116,18 @@ const jaJPGrid = {
|
|
|
116
116
|
groupColumn: name => `${name}でグループ化`,
|
|
117
117
|
unGroupColumn: name => `${name}のグループを解除`,
|
|
118
118
|
// Master/detail
|
|
119
|
-
|
|
119
|
+
detailPanelToggle: '詳細パネルの切り替え',
|
|
120
120
|
expandDetailPanel: '展開',
|
|
121
121
|
collapseDetailPanel: '折りたたみ',
|
|
122
122
|
// Row reordering text
|
|
123
|
-
rowReorderingHeaderName: '行並び替え'
|
|
124
|
-
//
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
123
|
+
rowReorderingHeaderName: '行並び替え',
|
|
124
|
+
// Aggregation
|
|
125
|
+
aggregationMenuItemHeader: '合計',
|
|
126
|
+
aggregationFunctionLabelSum: '和',
|
|
127
|
+
aggregationFunctionLabelAvg: '平均',
|
|
128
|
+
aggregationFunctionLabelMin: '最小値',
|
|
129
|
+
aggregationFunctionLabelMax: '最大値',
|
|
130
|
+
aggregationFunctionLabelSize: 'サイズ'
|
|
131
131
|
};
|
|
132
132
|
const jaJP = (0, _getGridLocalization.getGridLocalization)(jaJPGrid, _locale.jaJP);
|
|
133
133
|
exports.jaJP = jaJP;
|
package/node/locales/skSK.js
CHANGED
|
@@ -155,14 +155,14 @@ const skSKGrid = {
|
|
|
155
155
|
expandDetailPanel: 'Rozbaliť',
|
|
156
156
|
collapseDetailPanel: 'Zbaliť',
|
|
157
157
|
// Row reordering text
|
|
158
|
-
rowReorderingHeaderName: 'Preusporiadávanie riadkov'
|
|
159
|
-
//
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
158
|
+
rowReorderingHeaderName: 'Preusporiadávanie riadkov',
|
|
159
|
+
// Aggregation
|
|
160
|
+
aggregationMenuItemHeader: 'Agregácia',
|
|
161
|
+
aggregationFunctionLabelSum: 'suma',
|
|
162
|
+
aggregationFunctionLabelAvg: 'priemer',
|
|
163
|
+
aggregationFunctionLabelMin: 'min',
|
|
164
|
+
aggregationFunctionLabelMax: 'max',
|
|
165
|
+
aggregationFunctionLabelSize: 'počet'
|
|
166
166
|
};
|
|
167
167
|
const skSK = (0, _getGridLocalization.getGridLocalization)(skSKGrid, _locale.skSK);
|
|
168
168
|
exports.skSK = skSK;
|
package/node/locales/viVN.js
CHANGED
|
@@ -30,15 +30,15 @@ const viVNGrid = {
|
|
|
30
30
|
toolbarFiltersTooltipShow: 'Hiện',
|
|
31
31
|
toolbarFiltersTooltipActive: count => count > 1 ? `${count} bộ lọc hoạt động` : `${count} bộ lọc hoạt động`,
|
|
32
32
|
// Quick filter toolbar field
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
33
|
+
toolbarQuickFilterPlaceholder: 'Tìm kiếm…',
|
|
34
|
+
toolbarQuickFilterLabel: 'Tìm kiếm',
|
|
35
|
+
toolbarQuickFilterDeleteIconLabel: 'Xóa tìm kiếm',
|
|
36
36
|
// Export selector toolbar button text
|
|
37
37
|
toolbarExport: 'Xuất',
|
|
38
38
|
toolbarExportLabel: 'Xuất',
|
|
39
39
|
toolbarExportCSV: 'Xuất CSV',
|
|
40
40
|
toolbarExportPrint: 'In',
|
|
41
|
-
|
|
41
|
+
toolbarExportExcel: 'Xuất Excel',
|
|
42
42
|
// Columns panel text
|
|
43
43
|
columnsPanelTextFieldLabel: 'Tìm kiếm',
|
|
44
44
|
columnsPanelTextFieldPlaceholder: 'Tiêu đề cột',
|
|
@@ -48,7 +48,7 @@ const viVNGrid = {
|
|
|
48
48
|
// Filter panel text
|
|
49
49
|
filterPanelAddFilter: 'Thêm bộ lọc',
|
|
50
50
|
filterPanelDeleteIconLabel: 'Xóa',
|
|
51
|
-
|
|
51
|
+
filterPanelLinkOperator: 'Toán tử logic',
|
|
52
52
|
filterPanelOperators: 'Toán tử',
|
|
53
53
|
// TODO v6: rename to filterPanelOperator
|
|
54
54
|
filterPanelOperatorAnd: 'Và',
|
|
@@ -94,10 +94,10 @@ const viVNGrid = {
|
|
|
94
94
|
footerTotalVisibleRows: (visibleCount, totalCount) => `${visibleCount.toLocaleString()} / ${totalCount.toLocaleString()}`,
|
|
95
95
|
// Checkbox selection text
|
|
96
96
|
checkboxSelectionHeaderName: 'Tích vào ô trống',
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
97
|
+
checkboxSelectionSelectAllRows: 'Chọn tất cả hàng',
|
|
98
|
+
checkboxSelectionUnselectAllRows: 'Bỏ chọn tất cả hàng',
|
|
99
|
+
checkboxSelectionSelectRow: 'Chọn hàng',
|
|
100
|
+
checkboxSelectionUnselectRow: 'Bỏ chọn hàng',
|
|
101
101
|
// Boolean cell text
|
|
102
102
|
booleanCellTrueLabel: 'Có',
|
|
103
103
|
booleanCellFalseLabel: 'Không',
|
|
@@ -110,17 +110,17 @@ const viVNGrid = {
|
|
|
110
110
|
// Tree Data
|
|
111
111
|
treeDataGroupingHeaderName: 'Nhóm',
|
|
112
112
|
treeDataExpand: 'mở rộng',
|
|
113
|
-
treeDataCollapse: 'ẩn đi'
|
|
114
|
-
//
|
|
115
|
-
|
|
116
|
-
|
|
113
|
+
treeDataCollapse: 'ẩn đi',
|
|
114
|
+
// Grouping columns
|
|
115
|
+
groupingColumnHeaderName: 'Nhóm',
|
|
116
|
+
groupColumn: name => `Nhóm theo ${name}`,
|
|
117
|
+
unGroupColumn: name => `Hủy nhóm theo ${name}`,
|
|
117
118
|
// Master/detail
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
119
|
+
detailPanelToggle: 'Ẩn/hiện chi tiết',
|
|
120
|
+
expandDetailPanel: 'Mở rộng',
|
|
121
|
+
collapseDetailPanel: 'Thu nhỏ',
|
|
121
122
|
// Row reordering text
|
|
122
|
-
|
|
123
|
-
// Aggregation
|
|
123
|
+
rowReorderingHeaderName: 'Sắp xếp hàng' // Aggregation
|
|
124
124
|
// aggregationMenuItemHeader: 'Aggregation',
|
|
125
125
|
// aggregationFunctionLabelSum: 'sum',
|
|
126
126
|
// aggregationFunctionLabelAvg: 'avg',
|