@mui/x-data-grid 6.18.7 → 6.19.1
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 +71 -0
- package/index.js +1 -1
- package/legacy/index.js +1 -1
- package/legacy/locales/hrHR.js +161 -0
- package/legacy/locales/index.js +4 -1
- package/legacy/locales/ptPT.js +161 -0
- package/legacy/locales/zhHK.js +161 -0
- package/locales/hrHR.d.ts +1 -0
- package/locales/hrHR.js +149 -0
- package/locales/index.d.ts +3 -0
- package/locales/index.js +4 -1
- package/locales/ptPT.d.ts +1 -0
- package/locales/ptPT.js +149 -0
- package/locales/zhHK.d.ts +1 -0
- package/locales/zhHK.js +149 -0
- package/modern/index.js +1 -1
- package/modern/locales/hrHR.js +149 -0
- package/modern/locales/index.js +4 -1
- package/modern/locales/ptPT.js +149 -0
- package/modern/locales/zhHK.js +149 -0
- package/node/index.js +1 -1
- package/node/locales/hrHR.js +155 -0
- package/node/locales/index.js +33 -0
- package/node/locales/ptPT.js +155 -0
- package/node/locales/zhHK.js +155 -0
- package/package.json +1 -1
|
@@ -0,0 +1,155 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.zhHK = void 0;
|
|
7
|
+
var _locale = require("@mui/material/locale");
|
|
8
|
+
var _getGridLocalization = require("../utils/getGridLocalization");
|
|
9
|
+
const zhHKGrid = {
|
|
10
|
+
// Root
|
|
11
|
+
noRowsLabel: '沒有行',
|
|
12
|
+
noResultsOverlayLabel: '未找到結果。',
|
|
13
|
+
// Density selector toolbar button text
|
|
14
|
+
toolbarDensity: '密度',
|
|
15
|
+
toolbarDensityLabel: '密度',
|
|
16
|
+
toolbarDensityCompact: '袖珍的',
|
|
17
|
+
toolbarDensityStandard: '標準',
|
|
18
|
+
toolbarDensityComfortable: '舒服的',
|
|
19
|
+
// Columns selector toolbar button text
|
|
20
|
+
toolbarColumns: '列',
|
|
21
|
+
toolbarColumnsLabel: '選擇列',
|
|
22
|
+
// Filters toolbar button text
|
|
23
|
+
toolbarFilters: '過濾器',
|
|
24
|
+
toolbarFiltersLabel: '顯示過濾器',
|
|
25
|
+
toolbarFiltersTooltipHide: '隱藏過濾器',
|
|
26
|
+
toolbarFiltersTooltipShow: '顯示過濾器',
|
|
27
|
+
toolbarFiltersTooltipActive: count => count !== 1 ? `${count} 個有效過濾器` : `${count} 個活動過濾器`,
|
|
28
|
+
// Quick filter toolbar field
|
|
29
|
+
toolbarQuickFilterPlaceholder: '搜尋…',
|
|
30
|
+
toolbarQuickFilterLabel: '搜尋',
|
|
31
|
+
toolbarQuickFilterDeleteIconLabel: '清除',
|
|
32
|
+
// Export selector toolbar button text
|
|
33
|
+
toolbarExport: '出口',
|
|
34
|
+
toolbarExportLabel: '出口',
|
|
35
|
+
toolbarExportCSV: '下載為 CSV',
|
|
36
|
+
toolbarExportPrint: '列印',
|
|
37
|
+
toolbarExportExcel: '下載為 Excel',
|
|
38
|
+
// Columns panel text
|
|
39
|
+
columnsPanelTextFieldLabel: '查找欄目',
|
|
40
|
+
columnsPanelTextFieldPlaceholder: '欄目標題',
|
|
41
|
+
columnsPanelDragIconLabel: '重新排序列',
|
|
42
|
+
columnsPanelShowAllButton: '顯示所有',
|
|
43
|
+
columnsPanelHideAllButton: '全部藏起來',
|
|
44
|
+
// Filter panel text
|
|
45
|
+
filterPanelAddFilter: '新增過濾器',
|
|
46
|
+
filterPanelRemoveAll: '移除所有',
|
|
47
|
+
filterPanelDeleteIconLabel: '刪除',
|
|
48
|
+
filterPanelLogicOperator: '邏輯運算符',
|
|
49
|
+
filterPanelOperator: '操作員',
|
|
50
|
+
filterPanelOperatorAnd: '和',
|
|
51
|
+
filterPanelOperatorOr: '或者',
|
|
52
|
+
filterPanelColumns: '列',
|
|
53
|
+
filterPanelInputLabel: '價值',
|
|
54
|
+
filterPanelInputPlaceholder: '過濾值',
|
|
55
|
+
// Filter operators text
|
|
56
|
+
filterOperatorContains: '包含',
|
|
57
|
+
filterOperatorEquals: '等於',
|
|
58
|
+
filterOperatorStartsWith: '以。。開始',
|
|
59
|
+
filterOperatorEndsWith: '以。。結束',
|
|
60
|
+
filterOperatorIs: '是',
|
|
61
|
+
filterOperatorNot: '不是',
|
|
62
|
+
filterOperatorAfter: '是在之後',
|
|
63
|
+
filterOperatorOnOrAfter: '是在或之後',
|
|
64
|
+
filterOperatorBefore: '是在之前',
|
|
65
|
+
filterOperatorOnOrBefore: '是在或之前',
|
|
66
|
+
filterOperatorIsEmpty: '是空的',
|
|
67
|
+
filterOperatorIsNotEmpty: '不為空',
|
|
68
|
+
filterOperatorIsAnyOf: '是以下任一個',
|
|
69
|
+
'filterOperator=': '=',
|
|
70
|
+
'filterOperator!=': '!=',
|
|
71
|
+
'filterOperator>': '>',
|
|
72
|
+
'filterOperator>=': '>=',
|
|
73
|
+
'filterOperator<': '<',
|
|
74
|
+
'filterOperator<=': '<=',
|
|
75
|
+
// Header filter operators text
|
|
76
|
+
headerFilterOperatorContains: '包含',
|
|
77
|
+
headerFilterOperatorEquals: '等於',
|
|
78
|
+
headerFilterOperatorStartsWith: '以。。開始',
|
|
79
|
+
headerFilterOperatorEndsWith: '以。。結束',
|
|
80
|
+
headerFilterOperatorIs: '是',
|
|
81
|
+
headerFilterOperatorNot: '不是',
|
|
82
|
+
headerFilterOperatorAfter: '是在之後',
|
|
83
|
+
headerFilterOperatorOnOrAfter: '是在或之後',
|
|
84
|
+
headerFilterOperatorBefore: '是之前',
|
|
85
|
+
headerFilterOperatorOnOrBefore: '是在或之前',
|
|
86
|
+
headerFilterOperatorIsEmpty: '是空的',
|
|
87
|
+
headerFilterOperatorIsNotEmpty: '不為空',
|
|
88
|
+
headerFilterOperatorIsAnyOf: '是以下任一個',
|
|
89
|
+
'headerFilterOperator=': '等於',
|
|
90
|
+
'headerFilterOperator!=': '不等於',
|
|
91
|
+
'headerFilterOperator>': '比...更棒',
|
|
92
|
+
'headerFilterOperator>=': '大於或等於',
|
|
93
|
+
'headerFilterOperator<': '少於',
|
|
94
|
+
'headerFilterOperator<=': '小於或等於',
|
|
95
|
+
// Filter values text
|
|
96
|
+
filterValueAny: '任何',
|
|
97
|
+
filterValueTrue: '真的',
|
|
98
|
+
filterValueFalse: '錯誤的',
|
|
99
|
+
// Column menu text
|
|
100
|
+
columnMenuLabel: '選單',
|
|
101
|
+
columnMenuShowColumns: '顯示欄目',
|
|
102
|
+
columnMenuManageColumns: '管理欄目',
|
|
103
|
+
columnMenuFilter: '篩選',
|
|
104
|
+
columnMenuHideColumn: '隱藏列',
|
|
105
|
+
columnMenuUnsort: '取消排序',
|
|
106
|
+
columnMenuSortAsc: '按升序排序',
|
|
107
|
+
columnMenuSortDesc: '按降序排序',
|
|
108
|
+
// Column header text
|
|
109
|
+
columnHeaderFiltersTooltipActive: count => count !== 1 ? `${count} 個有效過濾器` : `${count} 個活動過濾器`,
|
|
110
|
+
columnHeaderFiltersLabel: '顯示過濾器',
|
|
111
|
+
columnHeaderSortIconLabel: '種類',
|
|
112
|
+
// Rows selected footer text
|
|
113
|
+
footerRowSelected: count => count !== 1 ? `已選擇 ${count.toLocaleString()} 行` : `已選擇 ${count.toLocaleString()} 行`,
|
|
114
|
+
// Total row amount footer text
|
|
115
|
+
footerTotalRows: '總行數:',
|
|
116
|
+
// Total visible row amount footer text
|
|
117
|
+
footerTotalVisibleRows: (visibleCount, totalCount) => `${totalCount.toLocaleString()} 的 ${visibleCount.toLocaleString()}`,
|
|
118
|
+
// Checkbox selection text
|
|
119
|
+
checkboxSelectionHeaderName: '複選框選擇',
|
|
120
|
+
checkboxSelectionSelectAllRows: '選擇所有行',
|
|
121
|
+
checkboxSelectionUnselectAllRows: '取消選擇所有行',
|
|
122
|
+
checkboxSelectionSelectRow: '選擇行',
|
|
123
|
+
checkboxSelectionUnselectRow: '取消選擇行',
|
|
124
|
+
// Boolean cell text
|
|
125
|
+
booleanCellTrueLabel: '是的',
|
|
126
|
+
booleanCellFalseLabel: '不',
|
|
127
|
+
// Actions cell more text
|
|
128
|
+
actionsCellMore: '更多的',
|
|
129
|
+
// Column pinning text
|
|
130
|
+
pinToLeft: '固定到左側',
|
|
131
|
+
pinToRight: '固定到右側',
|
|
132
|
+
unpin: '取消固定',
|
|
133
|
+
// Tree Data
|
|
134
|
+
treeDataGroupingHeaderName: 'Group',
|
|
135
|
+
treeDataExpand: '看看孩子們',
|
|
136
|
+
treeDataCollapse: '隱藏孩子',
|
|
137
|
+
// Grouping columns
|
|
138
|
+
groupingColumnHeaderName: '團體',
|
|
139
|
+
groupColumn: name => `按 ${name} 分組`,
|
|
140
|
+
unGroupColumn: name => `停止以 ${name} 分組`,
|
|
141
|
+
// Master/detail
|
|
142
|
+
detailPanelToggle: '詳細資訊面板切換',
|
|
143
|
+
expandDetailPanel: '擴張',
|
|
144
|
+
collapseDetailPanel: '坍塌',
|
|
145
|
+
// Row reordering text
|
|
146
|
+
rowReorderingHeaderName: '行重新排序',
|
|
147
|
+
// Aggregation
|
|
148
|
+
aggregationMenuItemHeader: '聚合',
|
|
149
|
+
aggregationFunctionLabelSum: '和',
|
|
150
|
+
aggregationFunctionLabelAvg: '平均',
|
|
151
|
+
aggregationFunctionLabelMin: '分分鐘',
|
|
152
|
+
aggregationFunctionLabelMax: '最大限度',
|
|
153
|
+
aggregationFunctionLabelSize: '尺寸'
|
|
154
|
+
};
|
|
155
|
+
const zhHK = exports.zhHK = (0, _getGridLocalization.getGridLocalization)(zhHKGrid, _locale.zhHK);
|