@mui/x-data-grid 5.14.0 → 5.15.2
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 +147 -5
- package/DataGrid/DataGrid.js +7 -1
- package/DataGrid/useDataGridProps.js +1 -0
- package/colDef/gridStringColDef.js +1 -1
- package/components/GridRow.js +5 -1
- package/components/base/GridOverlays.js +2 -2
- package/components/cell/GridEditInputCell.d.ts +2 -5
- package/components/cell/GridEditInputCell.js +13 -14
- package/components/cell/GridEditSingleSelectCell.d.ts +4 -0
- package/components/cell/GridEditSingleSelectCell.js +11 -4
- package/components/columnSelection/GridCellCheckboxRenderer.js +5 -0
- package/components/containers/GridRoot.js +4 -2
- package/components/toolbar/GridToolbarDensitySelector.js +13 -4
- package/components/toolbar/GridToolbarExportContainer.js +13 -2
- package/constants/envConstants.d.ts +1 -1
- package/constants/envConstants.js +2 -11
- package/constants/gridClasses.d.ts +16 -0
- package/constants/gridClasses.js +1 -1
- package/constants/localeTextConstants.js +1 -1
- package/hooks/features/dimensions/useGridDimensions.js +6 -1
- package/hooks/features/editRows/useGridCellEditing.new.d.ts +1 -1
- package/hooks/features/editRows/useGridCellEditing.new.js +26 -16
- package/hooks/features/editRows/useGridCellEditing.old.js +2 -2
- package/hooks/features/editRows/useGridEditing.new.d.ts +1 -1
- package/hooks/features/editRows/useGridEditing.new.js +4 -0
- package/hooks/features/editRows/useGridEditing.old.js +1 -1
- package/hooks/features/editRows/useGridRowEditing.new.d.ts +1 -1
- package/hooks/features/editRows/useGridRowEditing.new.js +16 -10
- package/hooks/features/export/utils.js +8 -1
- package/hooks/features/filter/gridFilterState.d.ts +12 -1
- package/hooks/features/filter/gridFilterUtils.d.ts +8 -5
- package/hooks/features/filter/gridFilterUtils.js +74 -43
- package/hooks/features/filter/useGridFilter.js +16 -3
- package/hooks/features/focus/useGridFocus.js +11 -6
- package/hooks/features/keyboardNavigation/useGridKeyboardNavigation.d.ts +1 -1
- package/hooks/features/keyboardNavigation/useGridKeyboardNavigation.js +42 -34
- package/hooks/features/pagination/useGridPageSize.js +3 -1
- package/hooks/features/rows/gridRowsSelector.d.ts +14 -0
- package/hooks/features/rows/gridRowsSelector.js +20 -1
- package/hooks/features/rows/gridRowsState.d.ts +8 -1
- package/hooks/features/rows/gridRowsUtils.d.ts +4 -0
- package/hooks/features/rows/gridRowsUtils.js +21 -3
- package/hooks/features/rows/index.d.ts +1 -1
- package/hooks/features/rows/index.js +1 -1
- package/hooks/features/rows/useGridRows.js +5 -2
- package/hooks/features/rows/useGridRowsMeta.js +19 -4
- package/hooks/features/rows/useGridRowsPreProcessors.js +2 -1
- package/hooks/features/scroll/useGridScroll.js +7 -2
- package/hooks/features/selection/useGridSelection.js +7 -3
- package/hooks/features/sorting/useGridSorting.js +8 -0
- package/hooks/features/statePersistence/gridStatePersistenceInterface.d.ts +3 -0
- package/hooks/features/virtualization/useGridVirtualScroller.d.ts +3 -1
- package/hooks/features/virtualization/useGridVirtualScroller.js +31 -16
- package/index.js +1 -1
- package/internals/index.d.ts +5 -1
- package/internals/index.js +4 -0
- package/legacy/DataGrid/DataGrid.js +7 -1
- package/legacy/DataGrid/useDataGridProps.js +1 -0
- package/legacy/colDef/gridStringColDef.js +1 -1
- package/legacy/components/GridRow.js +5 -1
- package/legacy/components/base/GridOverlays.js +2 -2
- package/legacy/components/cell/GridEditInputCell.js +13 -14
- package/legacy/components/cell/GridEditSingleSelectCell.js +11 -3
- package/legacy/components/columnSelection/GridCellCheckboxRenderer.js +5 -0
- package/legacy/components/containers/GridRoot.js +4 -2
- package/legacy/components/toolbar/GridToolbarDensitySelector.js +14 -5
- package/legacy/components/toolbar/GridToolbarExportContainer.js +15 -2
- package/legacy/constants/envConstants.js +2 -11
- package/legacy/constants/gridClasses.js +1 -1
- package/legacy/constants/localeTextConstants.js +1 -1
- package/legacy/hooks/features/dimensions/useGridDimensions.js +6 -1
- package/legacy/hooks/features/editRows/useGridCellEditing.new.js +27 -17
- package/legacy/hooks/features/editRows/useGridCellEditing.old.js +2 -2
- package/legacy/hooks/features/editRows/useGridEditing.new.js +4 -0
- package/legacy/hooks/features/editRows/useGridEditing.old.js +1 -1
- package/legacy/hooks/features/editRows/useGridRowEditing.new.js +16 -10
- package/legacy/hooks/features/export/utils.js +13 -1
- package/legacy/hooks/features/filter/gridFilterUtils.js +84 -55
- package/legacy/hooks/features/filter/useGridFilter.js +16 -3
- package/legacy/hooks/features/focus/useGridFocus.js +11 -6
- package/legacy/hooks/features/keyboardNavigation/useGridKeyboardNavigation.js +47 -34
- package/legacy/hooks/features/pagination/useGridPageSize.js +3 -1
- package/legacy/hooks/features/rows/gridRowsSelector.js +23 -0
- package/legacy/hooks/features/rows/gridRowsUtils.js +21 -3
- package/legacy/hooks/features/rows/index.js +1 -1
- package/legacy/hooks/features/rows/useGridRows.js +5 -2
- package/legacy/hooks/features/rows/useGridRowsMeta.js +19 -4
- package/legacy/hooks/features/rows/useGridRowsPreProcessors.js +2 -1
- package/legacy/hooks/features/scroll/useGridScroll.js +7 -2
- package/legacy/hooks/features/selection/useGridSelection.js +7 -3
- package/legacy/hooks/features/sorting/useGridSorting.js +8 -0
- package/legacy/hooks/features/virtualization/useGridVirtualScroller.js +32 -16
- package/legacy/index.js +1 -1
- package/legacy/internals/index.js +4 -0
- package/legacy/locales/arSD.js +1 -1
- package/legacy/locales/bgBG.js +1 -1
- package/legacy/locales/csCZ.js +1 -1
- package/legacy/locales/daDK.js +1 -1
- package/legacy/locales/deDE.js +9 -9
- package/legacy/locales/elGR.js +1 -1
- package/legacy/locales/esES.js +1 -1
- package/legacy/locales/faIR.js +1 -1
- package/legacy/locales/fiFI.js +1 -1
- package/legacy/locales/frFR.js +1 -1
- package/legacy/locales/heIL.js +1 -1
- package/legacy/locales/huHU.js +1 -1
- package/legacy/locales/itIT.js +15 -15
- package/legacy/locales/jaJP.js +3 -3
- package/legacy/locales/koKR.js +34 -30
- package/legacy/locales/nbNO.js +1 -1
- package/legacy/locales/nlNL.js +1 -1
- package/legacy/locales/plPL.js +1 -1
- package/legacy/locales/ptBR.js +1 -1
- package/legacy/locales/roRO.js +1 -1
- package/legacy/locales/ruRU.js +1 -1
- package/legacy/locales/skSK.js +1 -1
- package/legacy/locales/svSE.js +1 -1
- package/legacy/locales/trTR.js +1 -1
- package/legacy/locales/ukUA.js +1 -1
- package/legacy/locales/viVN.js +1 -1
- package/legacy/locales/zhCN.js +37 -33
- package/legacy/locales/zhTW.js +1 -1
- package/legacy/utils/keyboardUtils.js +8 -5
- package/locales/arSD.js +1 -1
- package/locales/bgBG.js +1 -1
- package/locales/csCZ.js +1 -1
- package/locales/daDK.js +1 -1
- package/locales/deDE.js +9 -9
- package/locales/elGR.js +1 -1
- package/locales/esES.js +1 -1
- package/locales/faIR.js +1 -1
- package/locales/fiFI.js +1 -1
- package/locales/frFR.js +1 -1
- package/locales/heIL.js +1 -1
- package/locales/huHU.js +1 -1
- package/locales/itIT.js +15 -15
- package/locales/jaJP.js +3 -3
- package/locales/koKR.js +30 -30
- package/locales/nbNO.js +1 -1
- package/locales/nlNL.js +1 -1
- package/locales/plPL.js +1 -1
- package/locales/ptBR.js +1 -1
- package/locales/roRO.js +1 -1
- package/locales/ruRU.js +1 -1
- package/locales/skSK.js +1 -1
- package/locales/svSE.js +1 -1
- package/locales/trTR.js +1 -1
- package/locales/ukUA.js +1 -1
- package/locales/viVN.js +1 -1
- package/locales/zhCN.js +33 -33
- package/locales/zhTW.js +1 -1
- package/models/gridRows.d.ts +5 -0
- package/models/props/DataGridProps.d.ts +8 -3
- package/modern/DataGrid/DataGrid.js +7 -1
- package/modern/DataGrid/useDataGridProps.js +1 -0
- package/modern/colDef/gridStringColDef.js +1 -1
- package/modern/components/GridRow.js +5 -1
- package/modern/components/base/GridOverlays.js +2 -2
- package/modern/components/cell/GridEditInputCell.js +13 -14
- package/modern/components/cell/GridEditSingleSelectCell.js +11 -4
- package/modern/components/columnSelection/GridCellCheckboxRenderer.js +5 -0
- package/modern/components/containers/GridRoot.js +4 -2
- package/modern/components/toolbar/GridToolbarDensitySelector.js +11 -4
- package/modern/components/toolbar/GridToolbarExportContainer.js +11 -2
- package/modern/constants/envConstants.js +2 -11
- package/modern/constants/gridClasses.js +1 -1
- package/modern/constants/localeTextConstants.js +1 -1
- package/modern/hooks/features/dimensions/useGridDimensions.js +6 -1
- package/modern/hooks/features/editRows/useGridCellEditing.new.js +24 -16
- package/modern/hooks/features/editRows/useGridCellEditing.old.js +2 -2
- package/modern/hooks/features/editRows/useGridEditing.new.js +4 -0
- package/modern/hooks/features/editRows/useGridEditing.old.js +1 -1
- package/modern/hooks/features/editRows/useGridRowEditing.new.js +16 -10
- package/modern/hooks/features/export/utils.js +6 -1
- package/modern/hooks/features/filter/gridFilterUtils.js +73 -42
- package/modern/hooks/features/filter/useGridFilter.js +16 -3
- package/modern/hooks/features/focus/useGridFocus.js +11 -6
- package/modern/hooks/features/keyboardNavigation/useGridKeyboardNavigation.js +42 -30
- package/modern/hooks/features/pagination/useGridPageSize.js +3 -1
- package/modern/hooks/features/rows/gridRowsSelector.js +18 -1
- package/modern/hooks/features/rows/gridRowsUtils.js +19 -3
- package/modern/hooks/features/rows/index.js +1 -1
- package/modern/hooks/features/rows/useGridRows.js +5 -2
- package/modern/hooks/features/rows/useGridRowsMeta.js +17 -4
- package/modern/hooks/features/rows/useGridRowsPreProcessors.js +2 -1
- package/modern/hooks/features/scroll/useGridScroll.js +5 -2
- package/modern/hooks/features/selection/useGridSelection.js +7 -1
- package/modern/hooks/features/sorting/useGridSorting.js +8 -0
- package/modern/hooks/features/virtualization/useGridVirtualScroller.js +30 -15
- package/modern/index.js +1 -1
- package/modern/internals/index.js +4 -0
- package/modern/locales/arSD.js +1 -1
- package/modern/locales/bgBG.js +1 -1
- package/modern/locales/csCZ.js +1 -1
- package/modern/locales/daDK.js +1 -1
- package/modern/locales/deDE.js +9 -9
- package/modern/locales/elGR.js +1 -1
- package/modern/locales/esES.js +1 -1
- package/modern/locales/faIR.js +1 -1
- package/modern/locales/fiFI.js +1 -1
- package/modern/locales/frFR.js +1 -1
- package/modern/locales/heIL.js +1 -1
- package/modern/locales/huHU.js +1 -1
- package/modern/locales/itIT.js +15 -15
- package/modern/locales/jaJP.js +3 -3
- package/modern/locales/koKR.js +30 -30
- package/modern/locales/nbNO.js +1 -1
- package/modern/locales/nlNL.js +1 -1
- package/modern/locales/plPL.js +1 -1
- package/modern/locales/ptBR.js +1 -1
- package/modern/locales/roRO.js +1 -1
- package/modern/locales/ruRU.js +1 -1
- package/modern/locales/skSK.js +1 -1
- package/modern/locales/svSE.js +1 -1
- package/modern/locales/trTR.js +1 -1
- package/modern/locales/ukUA.js +1 -1
- package/modern/locales/viVN.js +1 -1
- package/modern/locales/zhCN.js +33 -33
- package/modern/locales/zhTW.js +1 -1
- package/modern/utils/keyboardUtils.js +7 -2
- package/node/DataGrid/DataGrid.js +7 -1
- package/node/DataGrid/useDataGridProps.js +1 -0
- package/node/colDef/gridStringColDef.js +1 -1
- package/node/components/GridRow.js +5 -1
- package/node/components/base/GridOverlays.js +2 -2
- package/node/components/cell/GridEditInputCell.js +15 -16
- package/node/components/cell/GridEditSingleSelectCell.js +10 -4
- package/node/components/columnSelection/GridCellCheckboxRenderer.js +5 -0
- package/node/components/containers/GridRoot.js +3 -1
- package/node/components/toolbar/GridToolbarDensitySelector.js +13 -4
- package/node/components/toolbar/GridToolbarExportContainer.js +13 -2
- package/node/constants/envConstants.js +2 -13
- package/node/constants/gridClasses.js +1 -1
- package/node/constants/localeTextConstants.js +1 -1
- package/node/hooks/features/dimensions/useGridDimensions.js +7 -1
- package/node/hooks/features/editRows/useGridCellEditing.new.js +26 -16
- package/node/hooks/features/editRows/useGridCellEditing.old.js +2 -2
- package/node/hooks/features/editRows/useGridEditing.new.js +4 -0
- package/node/hooks/features/editRows/useGridEditing.old.js +1 -1
- package/node/hooks/features/editRows/useGridRowEditing.new.js +16 -10
- package/node/hooks/features/export/utils.js +7 -0
- package/node/hooks/features/filter/gridFilterUtils.js +81 -47
- package/node/hooks/features/filter/useGridFilter.js +15 -2
- package/node/hooks/features/focus/useGridFocus.js +11 -6
- package/node/hooks/features/keyboardNavigation/useGridKeyboardNavigation.js +43 -34
- package/node/hooks/features/pagination/useGridPageSize.js +4 -1
- package/node/hooks/features/rows/gridRowsSelector.js +24 -2
- package/node/hooks/features/rows/gridRowsUtils.js +23 -2
- package/node/hooks/features/rows/index.js +70 -12
- package/node/hooks/features/rows/useGridRows.js +5 -2
- package/node/hooks/features/rows/useGridRowsMeta.js +20 -4
- package/node/hooks/features/rows/useGridRowsPreProcessors.js +2 -1
- package/node/hooks/features/scroll/useGridScroll.js +7 -1
- package/node/hooks/features/selection/useGridSelection.js +7 -3
- package/node/hooks/features/sorting/useGridSorting.js +8 -0
- package/node/hooks/features/virtualization/useGridVirtualScroller.js +31 -16
- package/node/index.js +1 -1
- package/node/internals/index.js +36 -0
- package/node/locales/arSD.js +1 -1
- package/node/locales/bgBG.js +1 -1
- package/node/locales/csCZ.js +1 -1
- package/node/locales/daDK.js +1 -1
- package/node/locales/deDE.js +9 -9
- package/node/locales/elGR.js +1 -1
- package/node/locales/esES.js +1 -1
- package/node/locales/faIR.js +1 -1
- package/node/locales/fiFI.js +1 -1
- package/node/locales/frFR.js +1 -1
- package/node/locales/heIL.js +1 -1
- package/node/locales/huHU.js +1 -1
- package/node/locales/itIT.js +15 -15
- package/node/locales/jaJP.js +3 -3
- package/node/locales/koKR.js +30 -30
- package/node/locales/nbNO.js +1 -1
- package/node/locales/nlNL.js +1 -1
- package/node/locales/plPL.js +1 -1
- package/node/locales/ptBR.js +1 -1
- package/node/locales/roRO.js +1 -1
- package/node/locales/ruRU.js +1 -1
- package/node/locales/skSK.js +1 -1
- package/node/locales/svSE.js +1 -1
- package/node/locales/trTR.js +1 -1
- package/node/locales/ukUA.js +1 -1
- package/node/locales/viVN.js +1 -1
- package/node/locales/zhCN.js +33 -33
- package/node/locales/zhTW.js +1 -1
- package/node/utils/keyboardUtils.js +10 -4
- package/package.json +1 -1
- package/utils/keyboardUtils.d.ts +2 -2
- package/utils/keyboardUtils.js +7 -2
package/legacy/locales/daDK.js
CHANGED
|
@@ -23,7 +23,7 @@ var daDKGrid = {
|
|
|
23
23
|
return count !== 1 ? "".concat(count, " aktive filtre") : "".concat(count, " aktivt filter");
|
|
24
24
|
},
|
|
25
25
|
// Quick filter toolbar field
|
|
26
|
-
// toolbarQuickFilterPlaceholder: 'Search
|
|
26
|
+
// toolbarQuickFilterPlaceholder: 'Search…',
|
|
27
27
|
// toolbarQuickFilterLabel: 'Search',
|
|
28
28
|
// toolbarQuickFilterDeleteIconLabel: 'Clear',
|
|
29
29
|
// Export selector toolbar button text
|
package/legacy/locales/deDE.js
CHANGED
|
@@ -23,7 +23,7 @@ var deDEGrid = {
|
|
|
23
23
|
return count !== 1 ? "".concat(count, " aktive Filter") : "".concat(count, " aktiver Filter");
|
|
24
24
|
},
|
|
25
25
|
// Quick filter toolbar field
|
|
26
|
-
toolbarQuickFilterPlaceholder: 'Suchen
|
|
26
|
+
toolbarQuickFilterPlaceholder: 'Suchen…',
|
|
27
27
|
toolbarQuickFilterLabel: 'Suchen',
|
|
28
28
|
toolbarQuickFilterDeleteIconLabel: 'Löschen',
|
|
29
29
|
// Export selector toolbar button text
|
|
@@ -123,13 +123,13 @@ var deDEGrid = {
|
|
|
123
123
|
expandDetailPanel: 'Aufklappen',
|
|
124
124
|
collapseDetailPanel: 'Zuklappen',
|
|
125
125
|
// Row reordering text
|
|
126
|
-
rowReorderingHeaderName: 'Reihen neu ordnen'
|
|
127
|
-
//
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
126
|
+
rowReorderingHeaderName: 'Reihen neu ordnen',
|
|
127
|
+
// Aggregation
|
|
128
|
+
aggregationMenuItemHeader: 'Aggregation',
|
|
129
|
+
aggregationFunctionLabelSum: 'Summe',
|
|
130
|
+
aggregationFunctionLabelAvg: 'Mittelwert',
|
|
131
|
+
aggregationFunctionLabelMin: 'Minimum',
|
|
132
|
+
aggregationFunctionLabelMax: 'Maximum',
|
|
133
|
+
aggregationFunctionLabelSize: 'Anzahl'
|
|
134
134
|
};
|
|
135
135
|
export var deDE = getGridLocalization(deDEGrid, deDECore);
|
package/legacy/locales/elGR.js
CHANGED
|
@@ -22,7 +22,7 @@ var elGRGrid = {
|
|
|
22
22
|
return count !== 1 ? "".concat(count, " \u03B5\u03BD\u03B5\u03C1\u03B3\u03AC \u03C6\u03AF\u03BB\u03C4\u03C1\u03B1") : "".concat(count, " \u03B5\u03BD\u03B5\u03C1\u03B3\u03CC \u03C6\u03AF\u03BB\u03C4\u03C1\u03BF");
|
|
23
23
|
},
|
|
24
24
|
// Quick filter toolbar field
|
|
25
|
-
// toolbarQuickFilterPlaceholder: 'Search
|
|
25
|
+
// toolbarQuickFilterPlaceholder: 'Search…',
|
|
26
26
|
// toolbarQuickFilterLabel: 'Search',
|
|
27
27
|
// toolbarQuickFilterDeleteIconLabel: 'Clear',
|
|
28
28
|
// Export selector toolbar button text
|
package/legacy/locales/esES.js
CHANGED
|
@@ -23,7 +23,7 @@ var esESGrid = {
|
|
|
23
23
|
return count > 1 ? "".concat(count, " filtros activos") : "".concat(count, " filtro activo");
|
|
24
24
|
},
|
|
25
25
|
// Quick filter toolbar field
|
|
26
|
-
// toolbarQuickFilterPlaceholder: 'Search
|
|
26
|
+
// toolbarQuickFilterPlaceholder: 'Search…',
|
|
27
27
|
// toolbarQuickFilterLabel: 'Search',
|
|
28
28
|
// toolbarQuickFilterDeleteIconLabel: 'Clear',
|
|
29
29
|
// Export selector toolbar button text
|
package/legacy/locales/faIR.js
CHANGED
|
@@ -23,7 +23,7 @@ var faIRGrid = {
|
|
|
23
23
|
return count !== 1 ? "".concat(count, " \u0641\u06CC\u0644\u062A\u0631\u0647\u0627\u06CC \u0641\u0639\u0627\u0644") : "".concat(count, " \u0641\u06CC\u0644\u062A\u0631 \u0641\u0639\u0627\u0644");
|
|
24
24
|
},
|
|
25
25
|
// Quick filter toolbar field
|
|
26
|
-
// toolbarQuickFilterPlaceholder: 'Search
|
|
26
|
+
// toolbarQuickFilterPlaceholder: 'Search…',
|
|
27
27
|
// toolbarQuickFilterLabel: 'Search',
|
|
28
28
|
// toolbarQuickFilterDeleteIconLabel: 'Clear',
|
|
29
29
|
// Export selector toolbar button text
|
package/legacy/locales/fiFI.js
CHANGED
|
@@ -23,7 +23,7 @@ var fiFIGrid = {
|
|
|
23
23
|
return count !== 1 ? "".concat(count, " aktiivista suodatinta") : "".concat(count, " aktiivinen suodatin");
|
|
24
24
|
},
|
|
25
25
|
// Quick filter toolbar field
|
|
26
|
-
// toolbarQuickFilterPlaceholder: 'Search
|
|
26
|
+
// toolbarQuickFilterPlaceholder: 'Search…',
|
|
27
27
|
// toolbarQuickFilterLabel: 'Search',
|
|
28
28
|
// toolbarQuickFilterDeleteIconLabel: 'Clear',
|
|
29
29
|
// Export selector toolbar button text
|
package/legacy/locales/frFR.js
CHANGED
|
@@ -23,7 +23,7 @@ var frFRGrid = {
|
|
|
23
23
|
return count > 1 ? "".concat(count, " filtres actifs") : "".concat(count, " filtre actif");
|
|
24
24
|
},
|
|
25
25
|
// Quick filter toolbar field
|
|
26
|
-
toolbarQuickFilterPlaceholder: 'Recherche
|
|
26
|
+
toolbarQuickFilterPlaceholder: 'Recherche…',
|
|
27
27
|
toolbarQuickFilterLabel: 'Recherche',
|
|
28
28
|
toolbarQuickFilterDeleteIconLabel: 'Supprimer',
|
|
29
29
|
// Export selector toolbar button text
|
package/legacy/locales/heIL.js
CHANGED
|
@@ -23,7 +23,7 @@ var heILGrid = {
|
|
|
23
23
|
return count !== 1 ? "".concat(count, " \u05DE\u05E1\u05E0\u05E0\u05D9\u05DD \u05E4\u05E2\u05D9\u05DC\u05D9\u05DD") : "\u05DE\u05E1\u05E0\u05DF \u05D0\u05D7\u05D3 \u05E4\u05E2\u05D9\u05DC";
|
|
24
24
|
},
|
|
25
25
|
// Quick filter toolbar field
|
|
26
|
-
toolbarQuickFilterPlaceholder: '
|
|
26
|
+
toolbarQuickFilterPlaceholder: 'חיפוש…',
|
|
27
27
|
toolbarQuickFilterLabel: 'חיפוש',
|
|
28
28
|
toolbarQuickFilterDeleteIconLabel: 'ניקוי',
|
|
29
29
|
// Export selector toolbar button text
|
package/legacy/locales/huHU.js
CHANGED
|
@@ -23,7 +23,7 @@ var huHUGrid = {
|
|
|
23
23
|
return "".concat(count, " akt\xEDv sz\u0171r\u0151");
|
|
24
24
|
},
|
|
25
25
|
// Quick filter toolbar field
|
|
26
|
-
// toolbarQuickFilterPlaceholder: 'Search
|
|
26
|
+
// toolbarQuickFilterPlaceholder: 'Search…',
|
|
27
27
|
// toolbarQuickFilterLabel: 'Search',
|
|
28
28
|
// toolbarQuickFilterDeleteIconLabel: 'Clear',
|
|
29
29
|
// Export selector toolbar button text
|
package/legacy/locales/itIT.js
CHANGED
|
@@ -23,15 +23,15 @@ var itITGrid = {
|
|
|
23
23
|
return count > 1 ? "".concat(count, " filtri attivi") : "".concat(count, " filtro attivo");
|
|
24
24
|
},
|
|
25
25
|
// Quick filter toolbar field
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
26
|
+
toolbarQuickFilterPlaceholder: 'Cerca…',
|
|
27
|
+
toolbarQuickFilterLabel: 'Cerca',
|
|
28
|
+
toolbarQuickFilterDeleteIconLabel: 'Resetta',
|
|
29
29
|
// Export selector toolbar button text
|
|
30
30
|
toolbarExport: 'Esporta',
|
|
31
31
|
toolbarExportLabel: 'Esporta',
|
|
32
32
|
toolbarExportCSV: 'Esporta in CSV',
|
|
33
33
|
toolbarExportPrint: 'Stampa',
|
|
34
|
-
|
|
34
|
+
toolbarExportExcel: 'Scarica come Excel',
|
|
35
35
|
// Columns panel text
|
|
36
36
|
columnsPanelTextFieldLabel: 'Cerca colonna',
|
|
37
37
|
columnsPanelTextFieldPlaceholder: 'Titolo della colonna',
|
|
@@ -41,7 +41,7 @@ var itITGrid = {
|
|
|
41
41
|
// Filter panel text
|
|
42
42
|
filterPanelAddFilter: 'Aggiungi un filtro',
|
|
43
43
|
filterPanelDeleteIconLabel: 'Rimuovi',
|
|
44
|
-
|
|
44
|
+
filterPanelLinkOperator: 'Operatore logico',
|
|
45
45
|
filterPanelOperators: 'Operatori',
|
|
46
46
|
// TODO v6: rename to filterPanelOperator
|
|
47
47
|
filterPanelOperatorAnd: 'E (and)',
|
|
@@ -93,10 +93,10 @@ var itITGrid = {
|
|
|
93
93
|
},
|
|
94
94
|
// Checkbox selection text
|
|
95
95
|
checkboxSelectionHeaderName: 'Seleziona',
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
96
|
+
checkboxSelectionSelectAllRows: 'Seleziona tutte le righe',
|
|
97
|
+
checkboxSelectionUnselectAllRows: 'Deseleziona tutte le righe',
|
|
98
|
+
checkboxSelectionSelectRow: 'Seleziona riga',
|
|
99
|
+
checkboxSelectionUnselectRow: 'Deseleziona riga',
|
|
100
100
|
// Boolean cell text
|
|
101
101
|
booleanCellTrueLabel: 'vero',
|
|
102
102
|
booleanCellFalseLabel: 'falso',
|
|
@@ -117,13 +117,13 @@ var itITGrid = {
|
|
|
117
117
|
},
|
|
118
118
|
unGroupColumn: function unGroupColumn(name) {
|
|
119
119
|
return "Annulla raggruppamento per ".concat(name);
|
|
120
|
-
}
|
|
121
|
-
//
|
|
122
|
-
|
|
123
|
-
|
|
120
|
+
},
|
|
121
|
+
// Master/detail
|
|
122
|
+
detailPanelToggle: 'Abilita pannello dettagli',
|
|
123
|
+
expandDetailPanel: 'Espandi',
|
|
124
|
+
collapseDetailPanel: 'Comprimi',
|
|
124
125
|
// Row reordering text
|
|
125
|
-
|
|
126
|
-
// Aggregation
|
|
126
|
+
rowReorderingHeaderName: 'Riordinamento righe' // Aggregation
|
|
127
127
|
// aggregationMenuItemHeader: 'Aggregation',
|
|
128
128
|
// aggregationFunctionLabelSum: 'sum',
|
|
129
129
|
// aggregationFunctionLabelAvg: 'avg',
|
package/legacy/locales/jaJP.js
CHANGED
|
@@ -23,7 +23,7 @@ var jaJPGrid = {
|
|
|
23
23
|
return "".concat(count, "\u4EF6\u306E\u30D5\u30A3\u30EB\u30BF\u30FC\u3092\u9069\u7528\u4E2D");
|
|
24
24
|
},
|
|
25
25
|
// Quick filter toolbar field
|
|
26
|
-
toolbarQuickFilterPlaceholder: '
|
|
26
|
+
toolbarQuickFilterPlaceholder: '検索…',
|
|
27
27
|
toolbarQuickFilterLabel: '検索',
|
|
28
28
|
toolbarQuickFilterDeleteIconLabel: 'クリア',
|
|
29
29
|
// Export selector toolbar button text
|
|
@@ -34,7 +34,7 @@ var jaJPGrid = {
|
|
|
34
34
|
toolbarExportExcel: 'Excelダウンロード',
|
|
35
35
|
// Columns panel text
|
|
36
36
|
columnsPanelTextFieldLabel: '列検索',
|
|
37
|
-
columnsPanelTextFieldPlaceholder: '
|
|
37
|
+
columnsPanelTextFieldPlaceholder: '検索クエリを入力…',
|
|
38
38
|
columnsPanelDragIconLabel: '列並べ替え',
|
|
39
39
|
columnsPanelShowAllButton: 'すべて表示',
|
|
40
40
|
columnsPanelHideAllButton: 'すべて非表示',
|
|
@@ -48,7 +48,7 @@ var jaJPGrid = {
|
|
|
48
48
|
filterPanelOperatorOr: 'Or',
|
|
49
49
|
filterPanelColumns: '列',
|
|
50
50
|
filterPanelInputLabel: '値',
|
|
51
|
-
filterPanelInputPlaceholder: '
|
|
51
|
+
filterPanelInputPlaceholder: '値を入力…',
|
|
52
52
|
// Filter operators text
|
|
53
53
|
filterOperatorContains: '...を含む',
|
|
54
54
|
filterOperatorEquals: '...に等しい',
|
package/legacy/locales/koKR.js
CHANGED
|
@@ -6,8 +6,8 @@ var koKRGrid = {
|
|
|
6
6
|
noResultsOverlayLabel: '결과값이 없습니다.',
|
|
7
7
|
errorOverlayDefaultLabel: '오류가 발생했습니다.',
|
|
8
8
|
// Density selector toolbar button text
|
|
9
|
-
toolbarDensity: '
|
|
10
|
-
toolbarDensityLabel: '
|
|
9
|
+
toolbarDensity: '행 간격',
|
|
10
|
+
toolbarDensityLabel: '행 간격',
|
|
11
11
|
toolbarDensityCompact: '좁게',
|
|
12
12
|
toolbarDensityStandard: '기본',
|
|
13
13
|
toolbarDensityComfortable: '넓게',
|
|
@@ -23,15 +23,15 @@ var koKRGrid = {
|
|
|
23
23
|
return "".concat(count, "\uAC74\uC758 \uD544\uD130\uB97C \uC801\uC6A9\uC911");
|
|
24
24
|
},
|
|
25
25
|
// Quick filter toolbar field
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
26
|
+
toolbarQuickFilterPlaceholder: '검색…',
|
|
27
|
+
toolbarQuickFilterLabel: '검색',
|
|
28
|
+
toolbarQuickFilterDeleteIconLabel: '초기화',
|
|
29
29
|
// Export selector toolbar button text
|
|
30
30
|
toolbarExport: '내보내기',
|
|
31
31
|
toolbarExportLabel: '내보내기',
|
|
32
|
-
toolbarExportCSV: 'CSV
|
|
32
|
+
toolbarExportCSV: 'CSV로 내보내기',
|
|
33
33
|
toolbarExportPrint: '프린트',
|
|
34
|
-
|
|
34
|
+
toolbarExportExcel: 'Excel로 내보내기',
|
|
35
35
|
// Columns panel text
|
|
36
36
|
columnsPanelTextFieldLabel: '열 검색',
|
|
37
37
|
columnsPanelTextFieldPlaceholder: '열 이름',
|
|
@@ -41,7 +41,7 @@ var koKRGrid = {
|
|
|
41
41
|
// Filter panel text
|
|
42
42
|
filterPanelAddFilter: '필터 추가',
|
|
43
43
|
filterPanelDeleteIconLabel: '삭제',
|
|
44
|
-
|
|
44
|
+
filterPanelLinkOperator: '논리 연산자',
|
|
45
45
|
filterPanelOperators: '연산자',
|
|
46
46
|
// TODO v6: rename to filterPanelOperator
|
|
47
47
|
filterPanelOperatorAnd: '그리고',
|
|
@@ -93,39 +93,43 @@ var koKRGrid = {
|
|
|
93
93
|
},
|
|
94
94
|
// Checkbox selection text
|
|
95
95
|
checkboxSelectionHeaderName: '선택',
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
96
|
+
checkboxSelectionSelectAllRows: '모든 행 선택',
|
|
97
|
+
checkboxSelectionUnselectAllRows: '모든 행 선택 해제',
|
|
98
|
+
checkboxSelectionSelectRow: '행 선택',
|
|
99
|
+
checkboxSelectionUnselectRow: '행 선택 해제',
|
|
100
100
|
// Boolean cell text
|
|
101
101
|
booleanCellTrueLabel: '참',
|
|
102
102
|
booleanCellFalseLabel: '거짓',
|
|
103
103
|
// Actions cell more text
|
|
104
104
|
actionsCellMore: '더보기',
|
|
105
105
|
// Column pinning text
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
106
|
+
pinToLeft: '왼쪽에 고정',
|
|
107
|
+
pinToRight: '오른쪽에 고정',
|
|
108
|
+
unpin: '고정 해제',
|
|
109
109
|
// Tree Data
|
|
110
110
|
treeDataGroupingHeaderName: '그룹',
|
|
111
111
|
treeDataExpand: '하위노드 펼치기',
|
|
112
|
-
treeDataCollapse: '하위노드 접기'
|
|
113
|
-
//
|
|
114
|
-
|
|
115
|
-
|
|
112
|
+
treeDataCollapse: '하위노드 접기',
|
|
113
|
+
// Grouping columns
|
|
114
|
+
groupingColumnHeaderName: '그룹',
|
|
115
|
+
groupColumn: function groupColumn(name) {
|
|
116
|
+
return "".concat(name, " \uAC12\uC73C\uB85C \uADF8\uB8F9 \uC0DD\uC131");
|
|
117
|
+
},
|
|
118
|
+
unGroupColumn: function unGroupColumn(name) {
|
|
119
|
+
return "".concat(name, " \uAC12\uC73C\uB85C \uADF8\uB8F9 \uD574\uC81C");
|
|
120
|
+
},
|
|
116
121
|
// Master/detail
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
122
|
+
detailPanelToggle: '상세 패널 토글',
|
|
123
|
+
expandDetailPanel: '열기',
|
|
124
|
+
collapseDetailPanel: '접기',
|
|
120
125
|
// Row reordering text
|
|
121
|
-
|
|
126
|
+
rowReorderingHeaderName: '행 재배치',
|
|
122
127
|
// Aggregation
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
128
|
+
aggregationMenuItemHeader: '총계',
|
|
129
|
+
aggregationFunctionLabelSum: '합',
|
|
130
|
+
aggregationFunctionLabelAvg: '평균',
|
|
131
|
+
aggregationFunctionLabelMin: '최소값',
|
|
132
|
+
aggregationFunctionLabelMax: '최대값',
|
|
133
|
+
aggregationFunctionLabelSize: '크기'
|
|
130
134
|
};
|
|
131
135
|
export var koKR = getGridLocalization(koKRGrid, koKRCore);
|
package/legacy/locales/nbNO.js
CHANGED
|
@@ -23,7 +23,7 @@ var nbNOGrid = {
|
|
|
23
23
|
return count !== 1 ? "".concat(count, " aktive filter") : "".concat(count, " aktivt filter");
|
|
24
24
|
},
|
|
25
25
|
// Quick filter toolbar field
|
|
26
|
-
toolbarQuickFilterPlaceholder: 'Søk
|
|
26
|
+
toolbarQuickFilterPlaceholder: 'Søk…',
|
|
27
27
|
toolbarQuickFilterLabel: 'Søk',
|
|
28
28
|
toolbarQuickFilterDeleteIconLabel: 'Slett',
|
|
29
29
|
// Export selector toolbar button text
|
package/legacy/locales/nlNL.js
CHANGED
|
@@ -23,7 +23,7 @@ var nlNLGrid = {
|
|
|
23
23
|
return count > 1 ? "".concat(count, " actieve filters") : "".concat(count, " filter actief");
|
|
24
24
|
},
|
|
25
25
|
// Quick filter toolbar field
|
|
26
|
-
toolbarQuickFilterPlaceholder: 'Zoeken
|
|
26
|
+
toolbarQuickFilterPlaceholder: 'Zoeken…',
|
|
27
27
|
toolbarQuickFilterLabel: 'Zoeken',
|
|
28
28
|
toolbarQuickFilterDeleteIconLabel: 'Wissen',
|
|
29
29
|
// Export selector toolbar button text
|
package/legacy/locales/plPL.js
CHANGED
|
@@ -23,7 +23,7 @@ var plPLGrid = {
|
|
|
23
23
|
return "Liczba aktywnych filtr\xF3w: ".concat(count);
|
|
24
24
|
},
|
|
25
25
|
// Quick filter toolbar field
|
|
26
|
-
// toolbarQuickFilterPlaceholder: 'Search
|
|
26
|
+
// toolbarQuickFilterPlaceholder: 'Search…',
|
|
27
27
|
// toolbarQuickFilterLabel: 'Search',
|
|
28
28
|
// toolbarQuickFilterDeleteIconLabel: 'Clear',
|
|
29
29
|
// Export selector toolbar button text
|
package/legacy/locales/ptBR.js
CHANGED
|
@@ -23,7 +23,7 @@ var ptBRGrid = {
|
|
|
23
23
|
return "".concat(count, " ").concat(count !== 1 ? 'filtros' : 'filtro', " ").concat(count !== 1 ? 'ativos' : 'ativo');
|
|
24
24
|
},
|
|
25
25
|
// Quick filter toolbar field
|
|
26
|
-
toolbarQuickFilterPlaceholder: 'Procurar
|
|
26
|
+
toolbarQuickFilterPlaceholder: 'Procurar…',
|
|
27
27
|
toolbarQuickFilterLabel: 'Procurar',
|
|
28
28
|
toolbarQuickFilterDeleteIconLabel: 'Limpar',
|
|
29
29
|
// Export selector toolbar button text
|
package/legacy/locales/roRO.js
CHANGED
|
@@ -23,7 +23,7 @@ var roROGrid = {
|
|
|
23
23
|
return count !== 1 ? "".concat(count, " filtru activ") : "".concat(count, " filtru activ");
|
|
24
24
|
},
|
|
25
25
|
// Quick filter toolbar field
|
|
26
|
-
toolbarQuickFilterPlaceholder: 'Căutare
|
|
26
|
+
toolbarQuickFilterPlaceholder: 'Căutare…',
|
|
27
27
|
toolbarQuickFilterLabel: 'Căutare',
|
|
28
28
|
toolbarQuickFilterDeleteIconLabel: 'Ștergere',
|
|
29
29
|
// Export selector toolbar button text
|
package/legacy/locales/ruRU.js
CHANGED
|
@@ -32,7 +32,7 @@ var ruRUGrid = {
|
|
|
32
32
|
return "".concat(count, " ").concat(pluralForm);
|
|
33
33
|
},
|
|
34
34
|
// Quick filter toolbar field
|
|
35
|
-
toolbarQuickFilterPlaceholder: '
|
|
35
|
+
toolbarQuickFilterPlaceholder: 'Поиск…',
|
|
36
36
|
toolbarQuickFilterLabel: 'Поиск',
|
|
37
37
|
toolbarQuickFilterDeleteIconLabel: 'Очистить',
|
|
38
38
|
// Export selector toolbar button text
|
package/legacy/locales/skSK.js
CHANGED
|
@@ -31,7 +31,7 @@ var skSKGrid = {
|
|
|
31
31
|
return "".concat(count, " ").concat(pluralForm);
|
|
32
32
|
},
|
|
33
33
|
// Quick filter toolbar field
|
|
34
|
-
toolbarQuickFilterPlaceholder: 'Vyhľada
|
|
34
|
+
toolbarQuickFilterPlaceholder: 'Vyhľadať…',
|
|
35
35
|
toolbarQuickFilterLabel: 'Vyhľadať',
|
|
36
36
|
toolbarQuickFilterDeleteIconLabel: 'Vymazať',
|
|
37
37
|
// Export selector toolbar button text
|
package/legacy/locales/svSE.js
CHANGED
|
@@ -23,7 +23,7 @@ var svSEGrid = {
|
|
|
23
23
|
return count !== 1 ? "".concat(count, " aktiva filter") : "".concat(count, " aktivt filter");
|
|
24
24
|
},
|
|
25
25
|
// Quick filter toolbar field
|
|
26
|
-
toolbarQuickFilterPlaceholder: 'Sök
|
|
26
|
+
toolbarQuickFilterPlaceholder: 'Sök…',
|
|
27
27
|
toolbarQuickFilterLabel: 'Sök',
|
|
28
28
|
toolbarQuickFilterDeleteIconLabel: 'Rensa',
|
|
29
29
|
// Export selector toolbar button text
|
package/legacy/locales/trTR.js
CHANGED
|
@@ -23,7 +23,7 @@ var trTRGrid = {
|
|
|
23
23
|
return "".concat(count, " aktif filtre");
|
|
24
24
|
},
|
|
25
25
|
// Quick filter toolbar field
|
|
26
|
-
toolbarQuickFilterPlaceholder: 'Ara
|
|
26
|
+
toolbarQuickFilterPlaceholder: 'Ara…',
|
|
27
27
|
toolbarQuickFilterLabel: 'Ara',
|
|
28
28
|
toolbarQuickFilterDeleteIconLabel: 'Temizle',
|
|
29
29
|
// Export selector toolbar button text
|
package/legacy/locales/ukUA.js
CHANGED
|
@@ -41,7 +41,7 @@ var ukUAGrid = {
|
|
|
41
41
|
});
|
|
42
42
|
},
|
|
43
43
|
// Quick filter toolbar field
|
|
44
|
-
// toolbarQuickFilterPlaceholder: 'Search
|
|
44
|
+
// toolbarQuickFilterPlaceholder: 'Search…',
|
|
45
45
|
// toolbarQuickFilterLabel: 'Search',
|
|
46
46
|
// toolbarQuickFilterDeleteIconLabel: 'Clear',
|
|
47
47
|
// Export selector toolbar button text
|
package/legacy/locales/viVN.js
CHANGED
|
@@ -23,7 +23,7 @@ var viVNGrid = {
|
|
|
23
23
|
return count > 1 ? "".concat(count, " b\u1ED9 l\u1ECDc ho\u1EA1t \u0111\u1ED9ng") : "".concat(count, " b\u1ED9 l\u1ECDc ho\u1EA1t \u0111\u1ED9ng");
|
|
24
24
|
},
|
|
25
25
|
// Quick filter toolbar field
|
|
26
|
-
// toolbarQuickFilterPlaceholder: 'Search
|
|
26
|
+
// toolbarQuickFilterPlaceholder: 'Search…',
|
|
27
27
|
// toolbarQuickFilterLabel: 'Search',
|
|
28
28
|
// toolbarQuickFilterDeleteIconLabel: 'Clear',
|
|
29
29
|
// Export selector toolbar button text
|
package/legacy/locales/zhCN.js
CHANGED
|
@@ -23,15 +23,15 @@ var zhCNGrid = {
|
|
|
23
23
|
return "".concat(count, " \u4E2A\u7B5B\u9009\u5668");
|
|
24
24
|
},
|
|
25
25
|
// Quick filter toolbar field
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
26
|
+
toolbarQuickFilterPlaceholder: '搜索…',
|
|
27
|
+
toolbarQuickFilterLabel: '搜索',
|
|
28
|
+
toolbarQuickFilterDeleteIconLabel: '清除',
|
|
29
29
|
// Export selector toolbar button text
|
|
30
30
|
toolbarExport: '导出',
|
|
31
31
|
toolbarExportLabel: '导出',
|
|
32
32
|
toolbarExportCSV: '导出至CSV',
|
|
33
|
-
|
|
34
|
-
|
|
33
|
+
toolbarExportPrint: '打印',
|
|
34
|
+
toolbarExportExcel: '导出至Excel',
|
|
35
35
|
// Columns panel text
|
|
36
36
|
columnsPanelTextFieldLabel: '搜索列',
|
|
37
37
|
columnsPanelTextFieldPlaceholder: '列名',
|
|
@@ -41,7 +41,7 @@ var zhCNGrid = {
|
|
|
41
41
|
// Filter panel text
|
|
42
42
|
filterPanelAddFilter: '添加筛选器',
|
|
43
43
|
filterPanelDeleteIconLabel: '删除',
|
|
44
|
-
|
|
44
|
+
filterPanelLinkOperator: '逻辑操作器',
|
|
45
45
|
filterPanelOperators: '操作器',
|
|
46
46
|
// TODO v6: rename to filterPanelOperator
|
|
47
47
|
filterPanelOperatorAnd: '与',
|
|
@@ -62,7 +62,7 @@ var zhCNGrid = {
|
|
|
62
62
|
filterOperatorOnOrBefore: '正在前面',
|
|
63
63
|
filterOperatorIsEmpty: '为空',
|
|
64
64
|
filterOperatorIsNotEmpty: '不为空',
|
|
65
|
-
|
|
65
|
+
filterOperatorIsAnyOf: '属于',
|
|
66
66
|
// Filter values text
|
|
67
67
|
filterValueAny: '任何',
|
|
68
68
|
filterValueTrue: '真',
|
|
@@ -93,39 +93,43 @@ var zhCNGrid = {
|
|
|
93
93
|
},
|
|
94
94
|
// Checkbox selection text
|
|
95
95
|
checkboxSelectionHeaderName: '多选框',
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
96
|
+
checkboxSelectionSelectAllRows: '全选行',
|
|
97
|
+
checkboxSelectionUnselectAllRows: '反选所有行',
|
|
98
|
+
checkboxSelectionSelectRow: '选择行',
|
|
99
|
+
checkboxSelectionUnselectRow: '反选行',
|
|
100
100
|
// Boolean cell text
|
|
101
101
|
booleanCellTrueLabel: '真',
|
|
102
|
-
booleanCellFalseLabel: '假'
|
|
103
|
-
//
|
|
102
|
+
booleanCellFalseLabel: '假',
|
|
103
|
+
// Actions cell more text
|
|
104
|
+
actionsCellMore: '更多',
|
|
104
105
|
// Column pinning text
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
106
|
+
pinToLeft: '固定到左侧',
|
|
107
|
+
pinToRight: '固定到右侧',
|
|
108
|
+
unpin: '取消固定',
|
|
108
109
|
// Tree Data
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
110
|
+
treeDataGroupingHeaderName: '组',
|
|
111
|
+
treeDataExpand: '查看子项目',
|
|
112
|
+
treeDataCollapse: '隐藏子项目',
|
|
112
113
|
// Grouping columns
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
114
|
+
groupingColumnHeaderName: '组',
|
|
115
|
+
groupColumn: function groupColumn(name) {
|
|
116
|
+
return "\u7528".concat(name, "\u5206\u7EC4");
|
|
117
|
+
},
|
|
118
|
+
unGroupColumn: function unGroupColumn(name) {
|
|
119
|
+
return "\u4E0D\u518D\u7528".concat(name, "\u5206\u7EC4");
|
|
120
|
+
},
|
|
116
121
|
// Master/detail
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
122
|
+
detailPanelToggle: '详细信息',
|
|
123
|
+
expandDetailPanel: '显示',
|
|
124
|
+
collapseDetailPanel: '折叠',
|
|
120
125
|
// Row reordering text
|
|
121
|
-
|
|
126
|
+
rowReorderingHeaderName: '重新排列行',
|
|
122
127
|
// Aggregation
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
128
|
+
aggregationMenuItemHeader: '集合',
|
|
129
|
+
aggregationFunctionLabelSum: '总数',
|
|
130
|
+
aggregationFunctionLabelAvg: '平均',
|
|
131
|
+
aggregationFunctionLabelMin: '最小',
|
|
132
|
+
aggregationFunctionLabelMax: '最大',
|
|
133
|
+
aggregationFunctionLabelSize: '大小'
|
|
130
134
|
};
|
|
131
135
|
export var zhCN = getGridLocalization(zhCNGrid, zhCNCore);
|
package/legacy/locales/zhTW.js
CHANGED
|
@@ -23,7 +23,7 @@ var zhTWGrid = {
|
|
|
23
23
|
return "".concat(count, " \u500B\u7BE9\u9078\u5668");
|
|
24
24
|
},
|
|
25
25
|
// Quick filter toolbar field
|
|
26
|
-
toolbarQuickFilterPlaceholder: '
|
|
26
|
+
toolbarQuickFilterPlaceholder: '搜尋…',
|
|
27
27
|
toolbarQuickFilterLabel: '搜尋',
|
|
28
28
|
toolbarQuickFilterDeleteIconLabel: '清除',
|
|
29
29
|
// Export selector toolbar button text
|
|
@@ -26,18 +26,21 @@ export var isDeleteKeys = function isDeleteKeys(key) {
|
|
|
26
26
|
return key === 'Delete' || key === 'Backspace';
|
|
27
27
|
}; // Non printable keys have a name, e.g. "ArrowRight", see the whole list:
|
|
28
28
|
// https://developer.mozilla.org/en-US/docs/Web/API/UI_Events/Keyboard_event_key_values
|
|
29
|
+
// We need to ignore shortcuts, for example: select all:
|
|
30
|
+
// - Windows: Ctrl+A, event.ctrlKey is true
|
|
31
|
+
// - macOS: ⌘ Command+A, event.metaKey is true
|
|
29
32
|
|
|
30
|
-
export
|
|
31
|
-
return key.length === 1;
|
|
32
|
-
}
|
|
33
|
+
export function isPrintableKey(event) {
|
|
34
|
+
return event.key.length === 1 && event.ctrlKey === false && event.metaKey === false;
|
|
35
|
+
}
|
|
33
36
|
export var GRID_MULTIPLE_SELECTION_KEYS = ['Meta', 'Control', 'Shift'];
|
|
34
37
|
export var GRID_CELL_EXIT_EDIT_MODE_KEYS = ['Enter', 'Escape', 'Tab'];
|
|
35
38
|
export var GRID_CELL_EDIT_COMMIT_KEYS = ['Enter', 'Tab'];
|
|
36
39
|
export var isMultipleKey = function isMultipleKey(key) {
|
|
37
40
|
return GRID_MULTIPLE_SELECTION_KEYS.indexOf(key) > -1;
|
|
38
41
|
};
|
|
39
|
-
export var isCellEnterEditModeKeys = function isCellEnterEditModeKeys(
|
|
40
|
-
return isEnterKey(key) || isDeleteKeys(key) || isPrintableKey(
|
|
42
|
+
export var isCellEnterEditModeKeys = function isCellEnterEditModeKeys(event) {
|
|
43
|
+
return isEnterKey(event.key) || isDeleteKeys(event.key) || isPrintableKey(event);
|
|
41
44
|
};
|
|
42
45
|
export var isCellExitEditModeKeys = function isCellExitEditModeKeys(key) {
|
|
43
46
|
return GRID_CELL_EXIT_EDIT_MODE_KEYS.indexOf(key) > -1;
|
package/locales/arSD.js
CHANGED
|
@@ -21,7 +21,7 @@ const arSDGrid = {
|
|
|
21
21
|
toolbarFiltersTooltipShow: 'اظهر المرشِحات',
|
|
22
22
|
toolbarFiltersTooltipActive: count => count !== 1 ? `${count} من المرشِحات النشطة` : `مرشِح نشط`,
|
|
23
23
|
// Quick filter toolbar field
|
|
24
|
-
// toolbarQuickFilterPlaceholder: 'Search
|
|
24
|
+
// toolbarQuickFilterPlaceholder: 'Search…',
|
|
25
25
|
// toolbarQuickFilterLabel: 'Search',
|
|
26
26
|
// toolbarQuickFilterDeleteIconLabel: 'Clear',
|
|
27
27
|
// Export selector toolbar button text
|
package/locales/bgBG.js
CHANGED
|
@@ -21,7 +21,7 @@ const bgBGGrid = {
|
|
|
21
21
|
toolbarFiltersTooltipShow: 'Покажи Филтрите',
|
|
22
22
|
toolbarFiltersTooltipActive: count => `${count} активни филтри`,
|
|
23
23
|
// Quick filter toolbar field
|
|
24
|
-
// toolbarQuickFilterPlaceholder: 'Search
|
|
24
|
+
// toolbarQuickFilterPlaceholder: 'Search…',
|
|
25
25
|
// toolbarQuickFilterLabel: 'Search',
|
|
26
26
|
// toolbarQuickFilterDeleteIconLabel: 'Clear',
|
|
27
27
|
// Export selector toolbar button text
|
package/locales/csCZ.js
CHANGED
|
@@ -31,7 +31,7 @@ const csCZGrid = {
|
|
|
31
31
|
return `${count} ${pluralForm}`;
|
|
32
32
|
},
|
|
33
33
|
// Quick filter toolbar field
|
|
34
|
-
// toolbarQuickFilterPlaceholder: 'Search
|
|
34
|
+
// toolbarQuickFilterPlaceholder: 'Search…',
|
|
35
35
|
// toolbarQuickFilterLabel: 'Search',
|
|
36
36
|
// toolbarQuickFilterDeleteIconLabel: 'Clear',
|
|
37
37
|
// Export selector toolbar button text
|
package/locales/daDK.js
CHANGED
|
@@ -21,7 +21,7 @@ const daDKGrid = {
|
|
|
21
21
|
toolbarFiltersTooltipShow: 'Vis filtre',
|
|
22
22
|
toolbarFiltersTooltipActive: count => count !== 1 ? `${count} aktive filtre` : `${count} aktivt filter`,
|
|
23
23
|
// Quick filter toolbar field
|
|
24
|
-
// toolbarQuickFilterPlaceholder: 'Search
|
|
24
|
+
// toolbarQuickFilterPlaceholder: 'Search…',
|
|
25
25
|
// toolbarQuickFilterLabel: 'Search',
|
|
26
26
|
// toolbarQuickFilterDeleteIconLabel: 'Clear',
|
|
27
27
|
// Export selector toolbar button text
|