@mui/x-data-grid 5.12.3 → 5.14.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/CHANGELOG.md +147 -1
- package/DataGrid/DataGrid.js +4 -4
- package/DataGrid/useDataGridComponent.js +1 -1
- package/colDef/gridActionsColDef.js +2 -0
- package/colDef/gridBooleanColDef.js +3 -1
- package/colDef/gridCheckboxSelectionColDef.js +2 -0
- package/colDef/gridDateOperators.d.ts +1 -1
- package/colDef/gridDateOperators.js +4 -2
- package/colDef/gridNumericOperators.js +4 -2
- package/colDef/gridStringColDef.d.ts +3 -0
- package/colDef/gridStringColDef.js +6 -0
- package/colDef/gridStringOperators.d.ts +1 -1
- package/colDef/gridStringOperators.js +15 -8
- package/components/GridRow.js +1 -1
- package/components/base/GridOverlays.js +4 -1
- package/components/cell/GridActionsCellItem.d.ts +2 -2
- package/components/cell/GridBooleanCell.d.ts +5 -2
- package/components/cell/GridBooleanCell.js +93 -2
- package/components/cell/GridEditDateCell.js +5 -1
- package/components/cell/index.d.ts +1 -0
- package/components/cell/index.js +1 -0
- package/components/columnSelection/GridCellCheckboxRenderer.js +7 -1
- package/components/containers/GridRootStyles.js +10 -0
- package/components/panel/GridPanel.d.ts +1 -1
- package/components/panel/filterPanel/GridFilterForm.js +11 -4
- package/components/panel/filterPanel/GridFilterInputBoolean.js +1 -1
- package/components/panel/filterPanel/GridFilterInputDate.js +4 -2
- package/components/panel/filterPanel/GridFilterInputMultipleSingleSelect.d.ts +3 -8
- package/components/panel/filterPanel/GridFilterInputMultipleSingleSelect.js +30 -14
- package/components/panel/filterPanel/GridFilterInputMultipleValue.d.ts +3 -7
- package/components/panel/filterPanel/GridFilterInputMultipleValue.js +32 -14
- package/components/panel/filterPanel/GridFilterInputSingleSelect.js +8 -2
- package/components/panel/filterPanel/GridFilterInputValue.js +4 -2
- package/components/panel/filterPanel/GridFilterInputValueProps.d.ts +6 -3
- package/components/panel/filterPanel/filterPanelUtils.d.ts +1 -1
- package/components/toolbar/GridToolbarColumnsButton.d.ts +1 -1
- package/components/toolbar/GridToolbarDensitySelector.d.ts +1 -1
- package/components/toolbar/GridToolbarExport.js +20 -10
- package/components/toolbar/GridToolbarExportContainer.d.ts +1 -1
- package/components/toolbar/GridToolbarFilterButton.d.ts +1 -1
- package/constants/gridClasses.d.ts +25 -1
- package/constants/gridClasses.js +1 -1
- package/constants/localeTextConstants.js +8 -1
- package/hooks/core/pipeProcessing/gridPipeProcessingApi.d.ts +2 -1
- package/hooks/features/columns/useGridColumnSpanning.js +9 -7
- package/hooks/features/columns/useGridColumns.d.ts +1 -1
- package/hooks/features/columns/useGridColumns.js +13 -6
- package/hooks/features/dimensions/useGridDimensions.js +28 -15
- package/hooks/features/editRows/useGridCellEditing.new.js +7 -1
- package/hooks/features/editRows/useGridCellEditing.old.js +6 -0
- package/hooks/features/editRows/useGridRowEditing.new.js +7 -1
- package/hooks/features/editRows/useGridRowEditing.old.js +6 -0
- package/hooks/features/export/utils.d.ts +1 -1
- package/hooks/features/export/utils.js +9 -2
- package/hooks/features/filter/gridFilterUtils.js +6 -0
- package/hooks/features/filter/useGridFilter.d.ts +1 -1
- package/hooks/features/filter/useGridFilter.js +30 -5
- package/hooks/features/pagination/useGridPage.js +4 -3
- package/hooks/features/pagination/useGridPageSize.js +4 -3
- package/hooks/features/preferencesPanel/useGridPreferencesPanel.d.ts +1 -1
- package/hooks/features/preferencesPanel/useGridPreferencesPanel.js +12 -4
- package/hooks/features/rows/gridRowsUtils.d.ts +1 -1
- package/hooks/features/rows/useGridRows.js +1 -1
- package/hooks/features/rows/useGridRowsPreProcessors.js +1 -1
- package/hooks/features/selection/useGridSelection.js +24 -10
- package/hooks/features/sorting/gridSortingUtils.d.ts +1 -0
- package/hooks/features/sorting/gridSortingUtils.js +10 -11
- package/hooks/features/sorting/useGridSorting.d.ts +1 -1
- package/hooks/features/sorting/useGridSorting.js +34 -6
- package/hooks/features/statePersistence/gridStatePersistenceInterface.d.ts +12 -1
- package/hooks/features/statePersistence/index.d.ts +1 -1
- package/hooks/features/statePersistence/useGridStatePersistence.js +2 -2
- package/hooks/features/virtualization/useGridVirtualScroller.js +17 -7
- package/hooks/utils/useGridApiContext.js +1 -1
- package/hooks/utils/useGridApiEventHandler.d.ts +2 -2
- package/hooks/utils/useGridNativeEventListener.d.ts +1 -1
- package/hooks/utils/useGridNativeEventListener.js +1 -1
- package/hooks/utils/useGridRootProps.js +1 -1
- package/index.js +1 -1
- package/internals/index.d.ts +2 -2
- package/internals/index.js +2 -2
- package/legacy/DataGrid/DataGrid.js +4 -4
- package/legacy/DataGrid/useDataGridComponent.js +1 -1
- package/legacy/colDef/gridActionsColDef.js +2 -0
- package/legacy/colDef/gridBooleanColDef.js +3 -1
- package/legacy/colDef/gridCheckboxSelectionColDef.js +2 -0
- package/legacy/colDef/gridDateOperators.js +4 -2
- package/legacy/colDef/gridNumericOperators.js +4 -2
- package/legacy/colDef/gridStringColDef.js +6 -0
- package/legacy/colDef/gridStringOperators.js +17 -7
- package/legacy/components/GridRow.js +1 -1
- package/legacy/components/base/GridOverlays.js +4 -1
- package/legacy/components/cell/GridBooleanCell.js +93 -2
- package/legacy/components/cell/GridEditDateCell.js +5 -1
- package/legacy/components/cell/index.js +1 -0
- package/legacy/components/columnSelection/GridCellCheckboxRenderer.js +6 -1
- package/legacy/components/containers/GridRootStyles.js +3 -3
- package/legacy/components/panel/filterPanel/GridFilterForm.js +9 -4
- package/legacy/components/panel/filterPanel/GridFilterInputBoolean.js +1 -1
- package/legacy/components/panel/filterPanel/GridFilterInputDate.js +4 -2
- package/legacy/components/panel/filterPanel/GridFilterInputMultipleSingleSelect.js +22 -7
- package/legacy/components/panel/filterPanel/GridFilterInputMultipleValue.js +24 -7
- package/legacy/components/panel/filterPanel/GridFilterInputSingleSelect.js +8 -2
- package/legacy/components/panel/filterPanel/GridFilterInputValue.js +4 -2
- package/legacy/components/toolbar/GridToolbarExport.js +20 -10
- package/legacy/constants/gridClasses.js +1 -1
- package/legacy/constants/localeTextConstants.js +8 -1
- package/legacy/hooks/features/columns/useGridColumnSpanning.js +9 -7
- package/legacy/hooks/features/columns/useGridColumns.js +13 -8
- package/legacy/hooks/features/dimensions/useGridDimensions.js +27 -15
- package/legacy/hooks/features/editRows/useGridCellEditing.new.js +7 -1
- package/legacy/hooks/features/editRows/useGridCellEditing.old.js +16 -8
- package/legacy/hooks/features/editRows/useGridRowEditing.new.js +7 -1
- package/legacy/hooks/features/editRows/useGridRowEditing.old.js +22 -14
- package/legacy/hooks/features/export/utils.js +9 -2
- package/legacy/hooks/features/filter/gridFilterUtils.js +6 -0
- package/legacy/hooks/features/filter/useGridFilter.js +30 -5
- package/legacy/hooks/features/pagination/useGridPage.js +4 -3
- package/legacy/hooks/features/pagination/useGridPageSize.js +4 -3
- package/legacy/hooks/features/preferencesPanel/useGridPreferencesPanel.js +12 -4
- package/legacy/hooks/features/rows/useGridRows.js +1 -1
- package/legacy/hooks/features/rows/useGridRowsPreProcessors.js +1 -1
- package/legacy/hooks/features/selection/useGridSelection.js +26 -12
- package/legacy/hooks/features/sorting/gridSortingUtils.js +11 -12
- package/legacy/hooks/features/sorting/useGridSorting.js +34 -6
- package/legacy/hooks/features/statePersistence/useGridStatePersistence.js +2 -1
- package/legacy/hooks/features/virtualization/useGridVirtualScroller.js +22 -12
- package/legacy/hooks/utils/useGridApiContext.js +1 -1
- package/legacy/hooks/utils/useGridNativeEventListener.js +1 -1
- package/legacy/hooks/utils/useGridRootProps.js +1 -1
- package/legacy/index.js +1 -1
- package/legacy/internals/index.js +2 -2
- package/legacy/locales/arSD.js +7 -0
- package/legacy/locales/bgBG.js +7 -0
- package/legacy/locales/csCZ.js +7 -0
- package/legacy/locales/daDK.js +7 -0
- package/legacy/locales/deDE.js +12 -5
- package/legacy/locales/elGR.js +7 -0
- package/legacy/locales/esES.js +7 -0
- package/legacy/locales/faIR.js +7 -0
- package/legacy/locales/fiFI.js +7 -0
- package/legacy/locales/frFR.js +17 -10
- package/legacy/locales/heIL.js +8 -1
- package/legacy/locales/huHU.js +7 -0
- package/legacy/locales/index.js +4 -1
- package/legacy/locales/itIT.js +7 -0
- package/legacy/locales/jaJP.js +8 -1
- package/legacy/locales/koKR.js +7 -0
- package/legacy/locales/nbNO.js +8 -1
- package/legacy/locales/nlNL.js +21 -14
- package/legacy/locales/plPL.js +7 -0
- package/legacy/locales/ptBR.js +17 -10
- package/legacy/locales/roRO.js +135 -0
- package/legacy/locales/ruRU.js +7 -0
- package/legacy/locales/skSK.js +22 -15
- package/legacy/locales/svSE.js +8 -1
- package/legacy/locales/trTR.js +7 -0
- package/legacy/locales/ukUA.js +7 -0
- package/legacy/locales/viVN.js +7 -0
- package/legacy/locales/zhCN.js +7 -0
- package/legacy/locales/zhTW.js +135 -0
- package/legacy/models/events/gridEvents.js +1 -0
- package/legacy/utils/keyboardUtils.js +4 -3
- package/locales/arSD.js +7 -0
- package/locales/bgBG.js +7 -0
- package/locales/csCZ.js +7 -0
- package/locales/daDK.js +7 -0
- package/locales/deDE.js +12 -5
- package/locales/elGR.js +7 -0
- package/locales/esES.js +7 -0
- package/locales/faIR.js +7 -0
- package/locales/fiFI.js +7 -0
- package/locales/frFR.js +17 -10
- package/locales/heIL.js +8 -1
- package/locales/huHU.js +7 -0
- package/locales/index.d.ts +3 -0
- package/locales/index.js +4 -1
- package/locales/itIT.js +7 -0
- package/locales/jaJP.js +8 -1
- package/locales/koKR.js +7 -0
- package/locales/nbNO.js +8 -1
- package/locales/nlNL.js +21 -14
- package/locales/plPL.js +7 -0
- package/locales/ptBR.js +17 -10
- package/locales/roRO.d.ts +2 -0
- package/locales/roRO.js +123 -0
- package/locales/ruRU.js +7 -0
- package/locales/skSK.js +22 -15
- package/locales/svSE.js +8 -1
- package/locales/trTR.js +7 -0
- package/locales/ukUA.js +7 -0
- package/locales/viVN.js +7 -0
- package/locales/zhCN.js +7 -0
- package/locales/zhTW.d.ts +2 -0
- package/locales/zhTW.js +123 -0
- package/models/api/gridColumnSpanning.d.ts +2 -0
- package/models/api/gridLocaleTextApi.d.ts +8 -2
- package/models/api/gridSelectionApi.d.ts +6 -0
- package/models/events/gridEvents.d.ts +1 -0
- package/models/events/gridEvents.js +1 -0
- package/models/gridFilterOperator.d.ts +6 -0
- package/models/gridRows.d.ts +10 -1
- package/models/params/gridCellParams.d.ts +4 -4
- package/modern/DataGrid/DataGrid.js +4 -4
- package/modern/DataGrid/useDataGridComponent.js +1 -1
- package/modern/colDef/gridActionsColDef.js +2 -0
- package/modern/colDef/gridBooleanColDef.js +3 -1
- package/modern/colDef/gridCheckboxSelectionColDef.js +2 -0
- package/modern/colDef/gridDateOperators.js +4 -2
- package/modern/colDef/gridNumericOperators.js +4 -2
- package/modern/colDef/gridStringColDef.js +6 -0
- package/modern/colDef/gridStringOperators.js +15 -8
- package/modern/components/GridRow.js +1 -1
- package/modern/components/base/GridOverlays.js +4 -1
- package/modern/components/cell/GridBooleanCell.js +93 -2
- package/modern/components/cell/GridEditDateCell.js +5 -1
- package/modern/components/cell/index.js +1 -0
- package/modern/components/columnSelection/GridCellCheckboxRenderer.js +7 -1
- package/modern/components/containers/GridRootStyles.js +10 -0
- package/modern/components/panel/filterPanel/GridFilterForm.js +11 -4
- package/modern/components/panel/filterPanel/GridFilterInputBoolean.js +1 -1
- package/modern/components/panel/filterPanel/GridFilterInputDate.js +4 -2
- package/modern/components/panel/filterPanel/GridFilterInputMultipleSingleSelect.js +20 -8
- package/modern/components/panel/filterPanel/GridFilterInputMultipleValue.js +22 -8
- package/modern/components/panel/filterPanel/GridFilterInputSingleSelect.js +8 -2
- package/modern/components/panel/filterPanel/GridFilterInputValue.js +4 -2
- package/modern/components/toolbar/GridToolbarExport.js +20 -10
- package/modern/constants/gridClasses.js +1 -1
- package/modern/constants/localeTextConstants.js +8 -1
- package/modern/hooks/features/columns/useGridColumnSpanning.js +9 -7
- package/modern/hooks/features/columns/useGridColumns.js +10 -5
- package/modern/hooks/features/dimensions/useGridDimensions.js +28 -15
- package/modern/hooks/features/editRows/useGridCellEditing.new.js +7 -1
- package/modern/hooks/features/editRows/useGridCellEditing.old.js +6 -0
- package/modern/hooks/features/editRows/useGridRowEditing.new.js +7 -1
- package/modern/hooks/features/editRows/useGridRowEditing.old.js +6 -0
- package/modern/hooks/features/export/utils.js +5 -2
- package/modern/hooks/features/filter/gridFilterUtils.js +6 -0
- package/modern/hooks/features/filter/useGridFilter.js +25 -4
- package/modern/hooks/features/pagination/useGridPage.js +4 -3
- package/modern/hooks/features/pagination/useGridPageSize.js +4 -3
- package/modern/hooks/features/preferencesPanel/useGridPreferencesPanel.js +8 -4
- package/modern/hooks/features/rows/useGridRows.js +1 -1
- package/modern/hooks/features/rows/useGridRowsPreProcessors.js +1 -1
- package/modern/hooks/features/selection/useGridSelection.js +22 -10
- package/modern/hooks/features/sorting/gridSortingUtils.js +10 -11
- package/modern/hooks/features/sorting/useGridSorting.js +30 -6
- package/modern/hooks/features/statePersistence/useGridStatePersistence.js +2 -2
- package/modern/hooks/features/virtualization/useGridVirtualScroller.js +13 -7
- package/modern/hooks/utils/useGridApiContext.js +1 -1
- package/modern/hooks/utils/useGridNativeEventListener.js +1 -1
- package/modern/hooks/utils/useGridRootProps.js +1 -1
- package/modern/index.js +1 -1
- package/modern/internals/index.js +2 -2
- package/modern/locales/arSD.js +7 -0
- package/modern/locales/bgBG.js +7 -0
- package/modern/locales/csCZ.js +7 -0
- package/modern/locales/daDK.js +7 -0
- package/modern/locales/deDE.js +12 -5
- package/modern/locales/elGR.js +7 -0
- package/modern/locales/esES.js +7 -0
- package/modern/locales/faIR.js +7 -0
- package/modern/locales/fiFI.js +7 -0
- package/modern/locales/frFR.js +17 -10
- package/modern/locales/heIL.js +8 -1
- package/modern/locales/huHU.js +7 -0
- package/modern/locales/index.js +4 -1
- package/modern/locales/itIT.js +7 -0
- package/modern/locales/jaJP.js +8 -1
- package/modern/locales/koKR.js +7 -0
- package/modern/locales/nbNO.js +8 -1
- package/modern/locales/nlNL.js +21 -14
- package/modern/locales/plPL.js +7 -0
- package/modern/locales/ptBR.js +17 -10
- package/modern/locales/roRO.js +123 -0
- package/modern/locales/ruRU.js +7 -0
- package/modern/locales/skSK.js +22 -15
- package/modern/locales/svSE.js +8 -1
- package/modern/locales/trTR.js +7 -0
- package/modern/locales/ukUA.js +7 -0
- package/modern/locales/viVN.js +7 -0
- package/modern/locales/zhCN.js +7 -0
- package/modern/locales/zhTW.js +123 -0
- package/modern/models/events/gridEvents.js +1 -0
- package/modern/utils/keyboardUtils.js +4 -3
- package/node/DataGrid/DataGrid.js +4 -4
- package/node/DataGrid/useDataGridComponent.js +1 -1
- package/node/colDef/gridActionsColDef.js +2 -0
- package/node/colDef/gridBooleanColDef.js +3 -1
- package/node/colDef/gridCheckboxSelectionColDef.js +2 -0
- package/node/colDef/gridDateOperators.js +4 -2
- package/node/colDef/gridNumericOperators.js +4 -2
- package/node/colDef/gridStringColDef.js +5 -0
- package/node/colDef/gridStringOperators.js +15 -8
- package/node/components/GridRow.js +1 -1
- package/node/components/base/GridOverlays.js +4 -1
- package/node/components/cell/GridBooleanCell.js +93 -2
- package/node/components/cell/GridEditDateCell.js +7 -1
- package/node/components/cell/index.js +13 -0
- package/node/components/columnSelection/GridCellCheckboxRenderer.js +7 -1
- package/node/components/containers/GridRootStyles.js +10 -0
- package/node/components/panel/filterPanel/GridFilterForm.js +9 -4
- package/node/components/panel/filterPanel/GridFilterInputBoolean.js +1 -1
- package/node/components/panel/filterPanel/GridFilterInputDate.js +4 -2
- package/node/components/panel/filterPanel/GridFilterInputMultipleSingleSelect.js +31 -15
- package/node/components/panel/filterPanel/GridFilterInputMultipleValue.js +33 -15
- package/node/components/panel/filterPanel/GridFilterInputSingleSelect.js +8 -2
- package/node/components/panel/filterPanel/GridFilterInputValue.js +4 -2
- package/node/components/toolbar/GridToolbarExport.js +16 -10
- package/node/constants/gridClasses.js +1 -1
- package/node/constants/localeTextConstants.js +8 -1
- package/node/hooks/features/columns/useGridColumnSpanning.js +9 -7
- package/node/hooks/features/columns/useGridColumns.js +13 -6
- package/node/hooks/features/dimensions/useGridDimensions.js +28 -15
- package/node/hooks/features/editRows/useGridCellEditing.new.js +7 -1
- package/node/hooks/features/editRows/useGridCellEditing.old.js +6 -0
- package/node/hooks/features/editRows/useGridRowEditing.new.js +7 -1
- package/node/hooks/features/editRows/useGridRowEditing.old.js +6 -0
- package/node/hooks/features/export/utils.js +10 -2
- package/node/hooks/features/filter/gridFilterUtils.js +7 -0
- package/node/hooks/features/filter/useGridFilter.js +30 -5
- package/node/hooks/features/pagination/useGridPage.js +4 -3
- package/node/hooks/features/pagination/useGridPageSize.js +4 -3
- package/node/hooks/features/preferencesPanel/useGridPreferencesPanel.js +12 -4
- package/node/hooks/features/rows/useGridRows.js +1 -1
- package/node/hooks/features/rows/useGridRowsPreProcessors.js +1 -1
- package/node/hooks/features/selection/useGridSelection.js +24 -10
- package/node/hooks/features/sorting/gridSortingUtils.js +10 -11
- package/node/hooks/features/sorting/useGridSorting.js +34 -6
- package/node/hooks/features/statePersistence/useGridStatePersistence.js +2 -2
- package/node/hooks/features/virtualization/useGridVirtualScroller.js +17 -7
- package/node/hooks/utils/useGridApiContext.js +1 -1
- package/node/hooks/utils/useGridNativeEventListener.js +1 -1
- package/node/hooks/utils/useGridRootProps.js +1 -1
- package/node/index.js +1 -1
- package/node/internals/index.js +18 -0
- package/node/locales/arSD.js +7 -0
- package/node/locales/bgBG.js +7 -0
- package/node/locales/csCZ.js +7 -0
- package/node/locales/daDK.js +7 -0
- package/node/locales/deDE.js +12 -5
- package/node/locales/elGR.js +7 -0
- package/node/locales/esES.js +7 -0
- package/node/locales/faIR.js +7 -0
- package/node/locales/fiFI.js +7 -0
- package/node/locales/frFR.js +17 -10
- package/node/locales/heIL.js +8 -1
- package/node/locales/huHU.js +7 -0
- package/node/locales/index.js +39 -0
- package/node/locales/itIT.js +7 -0
- package/node/locales/jaJP.js +8 -1
- package/node/locales/koKR.js +7 -0
- package/node/locales/nbNO.js +8 -1
- package/node/locales/nlNL.js +21 -14
- package/node/locales/plPL.js +7 -0
- package/node/locales/ptBR.js +17 -10
- package/node/locales/roRO.js +133 -0
- package/node/locales/ruRU.js +7 -0
- package/node/locales/skSK.js +22 -15
- package/node/locales/svSE.js +8 -1
- package/node/locales/trTR.js +7 -0
- package/node/locales/ukUA.js +7 -0
- package/node/locales/viVN.js +7 -0
- package/node/locales/zhCN.js +7 -0
- package/node/locales/zhTW.js +133 -0
- package/node/models/events/gridEvents.js +1 -0
- package/node/utils/keyboardUtils.js +4 -3
- package/package.json +3 -3
- package/utils/getGridLocalization.d.ts +1 -1
- package/utils/keyboardUtils.js +4 -3
package/legacy/locales/itIT.js
CHANGED
|
@@ -123,6 +123,13 @@ var itITGrid = {
|
|
|
123
123
|
// collapseDetailPanel: 'Collapse',
|
|
124
124
|
// Row reordering text
|
|
125
125
|
// rowReorderingHeaderName: 'Row reordering',
|
|
126
|
+
// Aggregation
|
|
127
|
+
// aggregationMenuItemHeader: 'Aggregation',
|
|
128
|
+
// aggregationFunctionLabelSum: 'sum',
|
|
129
|
+
// aggregationFunctionLabelAvg: 'avg',
|
|
130
|
+
// aggregationFunctionLabelMin: 'min',
|
|
131
|
+
// aggregationFunctionLabelMax: 'max',
|
|
132
|
+
// aggregationFunctionLabelSize: 'size',
|
|
126
133
|
|
|
127
134
|
};
|
|
128
135
|
export var itIT = getGridLocalization(itITGrid, itITCore);
|
package/legacy/locales/jaJP.js
CHANGED
|
@@ -123,6 +123,13 @@ var jaJPGrid = {
|
|
|
123
123
|
expandDetailPanel: '展開',
|
|
124
124
|
collapseDetailPanel: '折りたたみ',
|
|
125
125
|
// Row reordering text
|
|
126
|
-
rowReorderingHeaderName: '行並び替え'
|
|
126
|
+
rowReorderingHeaderName: '行並び替え' // Aggregation
|
|
127
|
+
// aggregationMenuItemHeader: 'Aggregation',
|
|
128
|
+
// aggregationFunctionLabelSum: 'sum',
|
|
129
|
+
// aggregationFunctionLabelAvg: 'avg',
|
|
130
|
+
// aggregationFunctionLabelMin: 'min',
|
|
131
|
+
// aggregationFunctionLabelMax: 'max',
|
|
132
|
+
// aggregationFunctionLabelSize: 'size',
|
|
133
|
+
|
|
127
134
|
};
|
|
128
135
|
export var jaJP = getGridLocalization(jaJPGrid, jaJPCore);
|
package/legacy/locales/koKR.js
CHANGED
|
@@ -119,6 +119,13 @@ var koKRGrid = {
|
|
|
119
119
|
// collapseDetailPanel: 'Collapse',
|
|
120
120
|
// Row reordering text
|
|
121
121
|
// rowReorderingHeaderName: 'Row reordering',
|
|
122
|
+
// Aggregation
|
|
123
|
+
// aggregationMenuItemHeader: 'Aggregation',
|
|
124
|
+
// aggregationFunctionLabelSum: 'sum',
|
|
125
|
+
// aggregationFunctionLabelAvg: 'avg',
|
|
126
|
+
// aggregationFunctionLabelMin: 'min',
|
|
127
|
+
// aggregationFunctionLabelMax: 'max',
|
|
128
|
+
// aggregationFunctionLabelSize: 'size',
|
|
122
129
|
|
|
123
130
|
};
|
|
124
131
|
export var koKR = getGridLocalization(koKRGrid, koKRCore);
|
package/legacy/locales/nbNO.js
CHANGED
|
@@ -123,6 +123,13 @@ var nbNOGrid = {
|
|
|
123
123
|
expandDetailPanel: 'Utvid',
|
|
124
124
|
collapseDetailPanel: 'Kollaps',
|
|
125
125
|
// Row reordering text
|
|
126
|
-
rowReorderingHeaderName: 'Rad reorganisering'
|
|
126
|
+
rowReorderingHeaderName: 'Rad reorganisering' // Aggregation
|
|
127
|
+
// aggregationMenuItemHeader: 'Aggregation',
|
|
128
|
+
// aggregationFunctionLabelSum: 'sum',
|
|
129
|
+
// aggregationFunctionLabelAvg: 'avg',
|
|
130
|
+
// aggregationFunctionLabelMin: 'min',
|
|
131
|
+
// aggregationFunctionLabelMax: 'max',
|
|
132
|
+
// aggregationFunctionLabelSize: 'size',
|
|
133
|
+
|
|
127
134
|
};
|
|
128
135
|
export var nbNO = getGridLocalization(nbNOGrid, nbNOCore);
|
package/legacy/locales/nlNL.js
CHANGED
|
@@ -23,15 +23,15 @@ var nlNLGrid = {
|
|
|
23
23
|
return count > 1 ? "".concat(count, " actieve filters") : "".concat(count, " filter actief");
|
|
24
24
|
},
|
|
25
25
|
// Quick filter toolbar field
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
26
|
+
toolbarQuickFilterPlaceholder: 'Zoeken...',
|
|
27
|
+
toolbarQuickFilterLabel: 'Zoeken',
|
|
28
|
+
toolbarQuickFilterDeleteIconLabel: 'Wissen',
|
|
29
29
|
// Export selector toolbar button text
|
|
30
30
|
toolbarExport: 'Exporteren',
|
|
31
31
|
toolbarExportLabel: 'Exporteren',
|
|
32
32
|
toolbarExportCSV: 'Exporteer naar CSV',
|
|
33
33
|
toolbarExportPrint: 'Print',
|
|
34
|
-
|
|
34
|
+
toolbarExportExcel: 'Downloaden als Excel-bestand',
|
|
35
35
|
// Columns panel text
|
|
36
36
|
columnsPanelTextFieldLabel: 'Zoek kolom',
|
|
37
37
|
columnsPanelTextFieldPlaceholder: 'Kolomtitel',
|
|
@@ -41,7 +41,7 @@ var nlNLGrid = {
|
|
|
41
41
|
// Filter panel text
|
|
42
42
|
filterPanelAddFilter: 'Filter toevoegen',
|
|
43
43
|
filterPanelDeleteIconLabel: 'Verwijderen',
|
|
44
|
-
|
|
44
|
+
filterPanelLinkOperator: 'Logische operator',
|
|
45
45
|
filterPanelOperators: 'Operatoren',
|
|
46
46
|
// TODO v6: rename to filterPanelOperator
|
|
47
47
|
filterPanelOperatorAnd: 'En',
|
|
@@ -62,7 +62,7 @@ var nlNLGrid = {
|
|
|
62
62
|
filterOperatorOnOrBefore: 'is gelijk of er voor',
|
|
63
63
|
filterOperatorIsEmpty: 'is leeg',
|
|
64
64
|
filterOperatorIsNotEmpty: 'is niet leeg',
|
|
65
|
-
|
|
65
|
+
filterOperatorIsAnyOf: 'is een van',
|
|
66
66
|
// Filter values text
|
|
67
67
|
filterValueAny: 'alles',
|
|
68
68
|
filterValueTrue: 'waar',
|
|
@@ -93,10 +93,10 @@ var nlNLGrid = {
|
|
|
93
93
|
},
|
|
94
94
|
// Checkbox selection text
|
|
95
95
|
checkboxSelectionHeaderName: 'Checkbox selectie',
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
96
|
+
checkboxSelectionSelectAllRows: 'Alle rijen selecteren',
|
|
97
|
+
checkboxSelectionUnselectAllRows: 'Alle rijen de-selecteren',
|
|
98
|
+
checkboxSelectionSelectRow: 'Rij selecteren',
|
|
99
|
+
checkboxSelectionUnselectRow: 'Rij de-selecteren',
|
|
100
100
|
// Boolean cell text
|
|
101
101
|
booleanCellTrueLabel: 'waar',
|
|
102
102
|
booleanCellFalseLabel: 'onwaar',
|
|
@@ -117,12 +117,19 @@ var nlNLGrid = {
|
|
|
117
117
|
},
|
|
118
118
|
unGroupColumn: function unGroupColumn(name) {
|
|
119
119
|
return "Stop groeperen op ".concat(name);
|
|
120
|
-
}
|
|
120
|
+
},
|
|
121
|
+
// Master/detail
|
|
121
122
|
// detailPanelToggle: 'Detail panel toggle',
|
|
122
|
-
|
|
123
|
-
|
|
123
|
+
expandDetailPanel: 'Uitklappen',
|
|
124
|
+
collapseDetailPanel: 'Inklappen',
|
|
124
125
|
// Row reordering text
|
|
125
|
-
|
|
126
|
+
rowReorderingHeaderName: 'Rijen hersorteren' // Aggregation
|
|
127
|
+
// aggregationMenuItemHeader: 'Aggregation',
|
|
128
|
+
// aggregationFunctionLabelSum: 'sum',
|
|
129
|
+
// aggregationFunctionLabelAvg: 'avg',
|
|
130
|
+
// aggregationFunctionLabelMin: 'min',
|
|
131
|
+
// aggregationFunctionLabelMax: 'max',
|
|
132
|
+
// aggregationFunctionLabelSize: 'size',
|
|
126
133
|
|
|
127
134
|
};
|
|
128
135
|
export var nlNL = getGridLocalization(nlNLGrid, nlNLCore);
|
package/legacy/locales/plPL.js
CHANGED
|
@@ -123,6 +123,13 @@ var plPLGrid = {
|
|
|
123
123
|
expandDetailPanel: 'Rozwiń',
|
|
124
124
|
collapseDetailPanel: 'Zwiń' // Row reordering text
|
|
125
125
|
// rowReorderingHeaderName: 'Row reordering',
|
|
126
|
+
// Aggregation
|
|
127
|
+
// aggregationMenuItemHeader: 'Aggregation',
|
|
128
|
+
// aggregationFunctionLabelSum: 'sum',
|
|
129
|
+
// aggregationFunctionLabelAvg: 'avg',
|
|
130
|
+
// aggregationFunctionLabelMin: 'min',
|
|
131
|
+
// aggregationFunctionLabelMax: 'max',
|
|
132
|
+
// aggregationFunctionLabelSize: 'size',
|
|
126
133
|
|
|
127
134
|
};
|
|
128
135
|
export var plPL = getGridLocalization(plPLGrid, plPLCore);
|
package/legacy/locales/ptBR.js
CHANGED
|
@@ -23,14 +23,14 @@ 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
|
-
|
|
27
|
-
|
|
28
|
-
|
|
26
|
+
toolbarQuickFilterPlaceholder: 'Procurar...',
|
|
27
|
+
toolbarQuickFilterLabel: 'Procurar',
|
|
28
|
+
toolbarQuickFilterDeleteIconLabel: 'Limpar',
|
|
29
29
|
// Export selector toolbar button text
|
|
30
30
|
toolbarExport: 'Exportar',
|
|
31
31
|
toolbarExportLabel: 'Exportar',
|
|
32
32
|
toolbarExportCSV: 'Baixar como CSV',
|
|
33
|
-
toolbarExportPrint: '
|
|
33
|
+
toolbarExportPrint: 'Imprimir',
|
|
34
34
|
toolbarExportExcel: 'Baixar como Excel',
|
|
35
35
|
// Columns panel text
|
|
36
36
|
columnsPanelTextFieldLabel: 'Localizar coluna',
|
|
@@ -62,7 +62,7 @@ var ptBRGrid = {
|
|
|
62
62
|
filterOperatorOnOrBefore: 'em ou antes de',
|
|
63
63
|
filterOperatorIsEmpty: 'está vazio',
|
|
64
64
|
filterOperatorIsNotEmpty: 'não está vazio',
|
|
65
|
-
|
|
65
|
+
filterOperatorIsAnyOf: 'é qualquer um dos',
|
|
66
66
|
// Filter values text
|
|
67
67
|
filterValueAny: 'qualquer',
|
|
68
68
|
filterValueTrue: 'verdadeiro',
|
|
@@ -107,9 +107,9 @@ var ptBRGrid = {
|
|
|
107
107
|
pinToRight: 'Fixar à direita',
|
|
108
108
|
unpin: 'Desafixar',
|
|
109
109
|
// Tree Data
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
110
|
+
treeDataGroupingHeaderName: 'Grupo',
|
|
111
|
+
treeDataExpand: 'mostrar filhos',
|
|
112
|
+
treeDataCollapse: 'esconder filhos',
|
|
113
113
|
// Grouping columns
|
|
114
114
|
groupingColumnHeaderName: 'Grupo',
|
|
115
115
|
groupColumn: function groupColumn(name) {
|
|
@@ -121,8 +121,15 @@ var ptBRGrid = {
|
|
|
121
121
|
// Master/detail
|
|
122
122
|
detailPanelToggle: 'Painel de detalhes',
|
|
123
123
|
expandDetailPanel: 'Expandir',
|
|
124
|
-
collapseDetailPanel: 'Esconder'
|
|
125
|
-
//
|
|
124
|
+
collapseDetailPanel: 'Esconder',
|
|
125
|
+
// Row reordering text
|
|
126
|
+
rowReorderingHeaderName: 'Reorganizar linhas' // Aggregation
|
|
127
|
+
// aggregationMenuItemHeader: 'Aggregation',
|
|
128
|
+
// aggregationFunctionLabelSum: 'sum',
|
|
129
|
+
// aggregationFunctionLabelAvg: 'avg',
|
|
130
|
+
// aggregationFunctionLabelMin: 'min',
|
|
131
|
+
// aggregationFunctionLabelMax: 'max',
|
|
132
|
+
// aggregationFunctionLabelSize: 'size',
|
|
126
133
|
|
|
127
134
|
};
|
|
128
135
|
export var ptBR = getGridLocalization(ptBRGrid, ptBRCore);
|
|
@@ -0,0 +1,135 @@
|
|
|
1
|
+
import { roRO as roROCore } from '@mui/material/locale';
|
|
2
|
+
import { getGridLocalization } from '../utils/getGridLocalization';
|
|
3
|
+
var roROGrid = {
|
|
4
|
+
// Root
|
|
5
|
+
noRowsLabel: 'Lipsă date',
|
|
6
|
+
noResultsOverlayLabel: 'Nu au fost găsite rezultate.',
|
|
7
|
+
errorOverlayDefaultLabel: 'A apărut o eroare neașteptată.',
|
|
8
|
+
// Density selector toolbar button text
|
|
9
|
+
toolbarDensity: 'Înălțime rând',
|
|
10
|
+
toolbarDensityLabel: 'Înălțime rând',
|
|
11
|
+
toolbarDensityCompact: 'Compact',
|
|
12
|
+
toolbarDensityStandard: 'Standard',
|
|
13
|
+
toolbarDensityComfortable: 'Lat',
|
|
14
|
+
// Columns selector toolbar button text
|
|
15
|
+
toolbarColumns: 'Coloane',
|
|
16
|
+
toolbarColumnsLabel: 'Afișează selecție coloane',
|
|
17
|
+
// Filters toolbar button text
|
|
18
|
+
toolbarFilters: 'Filtru',
|
|
19
|
+
toolbarFiltersLabel: 'Afișează filtru',
|
|
20
|
+
toolbarFiltersTooltipHide: 'Ascunde filtru',
|
|
21
|
+
toolbarFiltersTooltipShow: 'Afișează filtru',
|
|
22
|
+
toolbarFiltersTooltipActive: function toolbarFiltersTooltipActive(count) {
|
|
23
|
+
return count !== 1 ? "".concat(count, " filtru activ") : "".concat(count, " filtru activ");
|
|
24
|
+
},
|
|
25
|
+
// Quick filter toolbar field
|
|
26
|
+
toolbarQuickFilterPlaceholder: 'Căutare...',
|
|
27
|
+
toolbarQuickFilterLabel: 'Căutare',
|
|
28
|
+
toolbarQuickFilterDeleteIconLabel: 'Ștergere',
|
|
29
|
+
// Export selector toolbar button text
|
|
30
|
+
toolbarExport: 'Export',
|
|
31
|
+
toolbarExportLabel: 'Export',
|
|
32
|
+
toolbarExportCSV: 'Download în format CSV',
|
|
33
|
+
toolbarExportPrint: 'Printare',
|
|
34
|
+
toolbarExportExcel: 'Download în format Excel',
|
|
35
|
+
// Columns panel text
|
|
36
|
+
columnsPanelTextFieldLabel: 'Găsește coloana',
|
|
37
|
+
columnsPanelTextFieldPlaceholder: 'Titlu coloană',
|
|
38
|
+
columnsPanelDragIconLabel: 'Resortare coloană',
|
|
39
|
+
columnsPanelShowAllButton: 'Afișează tot',
|
|
40
|
+
columnsPanelHideAllButton: 'Ascunde tot',
|
|
41
|
+
// Filter panel text
|
|
42
|
+
filterPanelAddFilter: 'Adăugare filtru',
|
|
43
|
+
filterPanelDeleteIconLabel: 'Ștergere',
|
|
44
|
+
filterPanelLinkOperator: 'Operatori logici',
|
|
45
|
+
filterPanelOperators: 'Operatori',
|
|
46
|
+
// TODO v6: rename to filterPanelOperator
|
|
47
|
+
filterPanelOperatorAnd: 'Și',
|
|
48
|
+
filterPanelOperatorOr: 'Sau',
|
|
49
|
+
filterPanelColumns: 'Coloane',
|
|
50
|
+
filterPanelInputLabel: 'Valoare',
|
|
51
|
+
filterPanelInputPlaceholder: 'Filtrare valoare',
|
|
52
|
+
// Filter operators text
|
|
53
|
+
filterOperatorContains: 'conține',
|
|
54
|
+
filterOperatorEquals: 'este egal cu',
|
|
55
|
+
filterOperatorStartsWith: 'începe cu',
|
|
56
|
+
filterOperatorEndsWith: 'se termină cu',
|
|
57
|
+
filterOperatorIs: 'este',
|
|
58
|
+
filterOperatorNot: 'nu este',
|
|
59
|
+
filterOperatorAfter: 'este după',
|
|
60
|
+
filterOperatorOnOrAfter: 'este la sau după',
|
|
61
|
+
filterOperatorBefore: 'este înainte de',
|
|
62
|
+
filterOperatorOnOrBefore: 'este la sau înainte de',
|
|
63
|
+
filterOperatorIsEmpty: 'este gol',
|
|
64
|
+
filterOperatorIsNotEmpty: 'nu este gol',
|
|
65
|
+
filterOperatorIsAnyOf: 'este una din valori',
|
|
66
|
+
// Filter values text
|
|
67
|
+
filterValueAny: 'Aleatoriu',
|
|
68
|
+
filterValueTrue: 'Da',
|
|
69
|
+
filterValueFalse: 'Nu',
|
|
70
|
+
// Column menu text
|
|
71
|
+
columnMenuLabel: 'Meniu',
|
|
72
|
+
columnMenuShowColumns: 'Afișează toate coloanele',
|
|
73
|
+
columnMenuFilter: 'Filtru',
|
|
74
|
+
columnMenuHideColumn: 'Ascunde',
|
|
75
|
+
columnMenuUnsort: 'Dezactivare sortare',
|
|
76
|
+
columnMenuSortAsc: 'Sortează crescător',
|
|
77
|
+
columnMenuSortDesc: 'Sortează descrescător',
|
|
78
|
+
// Column header text
|
|
79
|
+
columnHeaderFiltersTooltipActive: function columnHeaderFiltersTooltipActive(count) {
|
|
80
|
+
return count !== 1 ? "".concat(count, " filtru activ") : "".concat(count, " filtru activ");
|
|
81
|
+
},
|
|
82
|
+
columnHeaderFiltersLabel: 'Afișează filtru',
|
|
83
|
+
columnHeaderSortIconLabel: 'Sortare',
|
|
84
|
+
// Rows selected footer text
|
|
85
|
+
footerRowSelected: function footerRowSelected(count) {
|
|
86
|
+
return count !== 1 ? "".concat(count.toLocaleString(), " \xCEnregistr\u0103ri selectate") : "".concat(count.toLocaleString(), " \xCEnregistrare selectat\u0103");
|
|
87
|
+
},
|
|
88
|
+
// Total row amount footer text
|
|
89
|
+
footerTotalRows: 'Total:',
|
|
90
|
+
// Total visible row amount footer text
|
|
91
|
+
footerTotalVisibleRows: function footerTotalVisibleRows(visibleCount, totalCount) {
|
|
92
|
+
return "".concat(visibleCount.toLocaleString(), " din ").concat(totalCount.toLocaleString());
|
|
93
|
+
},
|
|
94
|
+
// Checkbox selection text
|
|
95
|
+
checkboxSelectionHeaderName: 'Checkbox Selecție',
|
|
96
|
+
checkboxSelectionSelectAllRows: 'Selectare toate rândurile',
|
|
97
|
+
checkboxSelectionUnselectAllRows: 'Deselectare toate rândurile',
|
|
98
|
+
checkboxSelectionSelectRow: 'Selectare rând',
|
|
99
|
+
checkboxSelectionUnselectRow: 'Deselectare rând',
|
|
100
|
+
// Boolean cell text
|
|
101
|
+
booleanCellTrueLabel: 'Da',
|
|
102
|
+
booleanCellFalseLabel: 'Nu',
|
|
103
|
+
// Actions cell more text
|
|
104
|
+
actionsCellMore: 'Mai multe',
|
|
105
|
+
// Column pinning text
|
|
106
|
+
pinToLeft: 'Fixare în stânga',
|
|
107
|
+
pinToRight: 'Fixare în dreapta',
|
|
108
|
+
unpin: 'Anulare fixare',
|
|
109
|
+
// Tree Data
|
|
110
|
+
treeDataGroupingHeaderName: 'Grup',
|
|
111
|
+
treeDataExpand: 'Afișare copii',
|
|
112
|
+
treeDataCollapse: 'Ascundere copii',
|
|
113
|
+
// Grouping columns
|
|
114
|
+
groupingColumnHeaderName: 'Grupare',
|
|
115
|
+
groupColumn: function groupColumn(name) {
|
|
116
|
+
return "Grupare dup\u0103 ".concat(name);
|
|
117
|
+
},
|
|
118
|
+
unGroupColumn: function unGroupColumn(name) {
|
|
119
|
+
return "Anulare Grupare dup\u0103 ".concat(name);
|
|
120
|
+
},
|
|
121
|
+
// Master/detail
|
|
122
|
+
detailPanelToggle: 'Comutare panou detalii',
|
|
123
|
+
expandDetailPanel: 'Extindere',
|
|
124
|
+
collapseDetailPanel: 'Restrângere',
|
|
125
|
+
// Row reordering text
|
|
126
|
+
rowReorderingHeaderName: 'Reordonare rânduri' // Aggregation
|
|
127
|
+
// aggregationMenuItemHeader: 'Aggregation',
|
|
128
|
+
// aggregationFunctionLabelSum: 'sum',
|
|
129
|
+
// aggregationFunctionLabelAvg: 'avg',
|
|
130
|
+
// aggregationFunctionLabelMin: 'min',
|
|
131
|
+
// aggregationFunctionLabelMax: 'max',
|
|
132
|
+
// aggregationFunctionLabelSize: 'size',
|
|
133
|
+
|
|
134
|
+
};
|
|
135
|
+
export var roRO = getGridLocalization(roROGrid, roROCore);
|
package/legacy/locales/ruRU.js
CHANGED
|
@@ -150,6 +150,13 @@ var ruRUGrid = {
|
|
|
150
150
|
expandDetailPanel: 'Развернуть',
|
|
151
151
|
collapseDetailPanel: 'Свернуть' // Row reordering text
|
|
152
152
|
// rowReorderingHeaderName: 'Row reordering',
|
|
153
|
+
// Aggregation
|
|
154
|
+
// aggregationMenuItemHeader: 'Aggregation',
|
|
155
|
+
// aggregationFunctionLabelSum: 'sum',
|
|
156
|
+
// aggregationFunctionLabelAvg: 'avg',
|
|
157
|
+
// aggregationFunctionLabelMin: 'min',
|
|
158
|
+
// aggregationFunctionLabelMax: 'max',
|
|
159
|
+
// aggregationFunctionLabelSize: 'size',
|
|
153
160
|
|
|
154
161
|
};
|
|
155
162
|
export var ruRU = getGridLocalization(ruRUGrid, ruRUCore);
|
package/legacy/locales/skSK.js
CHANGED
|
@@ -31,15 +31,15 @@ var skSKGrid = {
|
|
|
31
31
|
return "".concat(count, " ").concat(pluralForm);
|
|
32
32
|
},
|
|
33
33
|
// Quick filter toolbar field
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
34
|
+
toolbarQuickFilterPlaceholder: 'Vyhľadať...',
|
|
35
|
+
toolbarQuickFilterLabel: 'Vyhľadať',
|
|
36
|
+
toolbarQuickFilterDeleteIconLabel: 'Vymazať',
|
|
37
37
|
// Export selector toolbar button text
|
|
38
38
|
toolbarExport: 'Export',
|
|
39
39
|
toolbarExportLabel: 'Export',
|
|
40
40
|
toolbarExportCSV: 'Stiahnuť ako CSV',
|
|
41
41
|
toolbarExportPrint: 'Vytlačiť',
|
|
42
|
-
|
|
42
|
+
toolbarExportExcel: 'Stiahnuť ako Excel',
|
|
43
43
|
// Columns panel text
|
|
44
44
|
columnsPanelTextFieldLabel: 'Nájsť stĺpec',
|
|
45
45
|
columnsPanelTextFieldPlaceholder: 'Názov stĺpca',
|
|
@@ -49,7 +49,7 @@ var skSKGrid = {
|
|
|
49
49
|
// Filter panel text
|
|
50
50
|
filterPanelAddFilter: 'Pridať filter',
|
|
51
51
|
filterPanelDeleteIconLabel: 'Odstrániť',
|
|
52
|
-
|
|
52
|
+
filterPanelLinkOperator: 'Logický operátor',
|
|
53
53
|
filterPanelOperators: 'Operátory',
|
|
54
54
|
// TODO v6: rename to filterPanelOperator
|
|
55
55
|
filterPanelOperatorAnd: 'A',
|
|
@@ -70,7 +70,7 @@ var skSKGrid = {
|
|
|
70
70
|
filterOperatorOnOrBefore: 'je na alebo skôr',
|
|
71
71
|
filterOperatorIsEmpty: 'je prázdny',
|
|
72
72
|
filterOperatorIsNotEmpty: 'nie je prázdny',
|
|
73
|
-
|
|
73
|
+
filterOperatorIsAnyOf: 'je jeden z',
|
|
74
74
|
// Filter values text
|
|
75
75
|
filterValueAny: 'akýkoľvek',
|
|
76
76
|
filterValueTrue: 'áno',
|
|
@@ -120,10 +120,10 @@ var skSKGrid = {
|
|
|
120
120
|
},
|
|
121
121
|
// Checkbox selection text
|
|
122
122
|
checkboxSelectionHeaderName: 'Výber riadku',
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
123
|
+
checkboxSelectionSelectAllRows: 'Vybrať všetky riadky',
|
|
124
|
+
checkboxSelectionUnselectAllRows: 'Zrušiť výber všetkých riadkov',
|
|
125
|
+
checkboxSelectionSelectRow: 'Vyber riadok',
|
|
126
|
+
checkboxSelectionUnselectRow: 'Zruš výber riadku',
|
|
127
127
|
// Boolean cell text
|
|
128
128
|
booleanCellTrueLabel: 'áno',
|
|
129
129
|
booleanCellFalseLabel: 'nie',
|
|
@@ -144,12 +144,19 @@ var skSKGrid = {
|
|
|
144
144
|
},
|
|
145
145
|
unGroupColumn: function unGroupColumn(name) {
|
|
146
146
|
return "Presta\u0165 zoskupova\u0165 pod\u013Ea ".concat(name);
|
|
147
|
-
}
|
|
148
|
-
//
|
|
149
|
-
|
|
150
|
-
|
|
147
|
+
},
|
|
148
|
+
// Master/detail
|
|
149
|
+
detailPanelToggle: 'Prepnúť detail panelu',
|
|
150
|
+
expandDetailPanel: 'Rozbaliť',
|
|
151
|
+
collapseDetailPanel: 'Zbaliť',
|
|
151
152
|
// Row reordering text
|
|
152
|
-
|
|
153
|
+
rowReorderingHeaderName: 'Preusporiadávanie riadkov' // Aggregation
|
|
154
|
+
// aggregationMenuItemHeader: 'Aggregation',
|
|
155
|
+
// aggregationFunctionLabelSum: 'sum',
|
|
156
|
+
// aggregationFunctionLabelAvg: 'avg',
|
|
157
|
+
// aggregationFunctionLabelMin: 'min',
|
|
158
|
+
// aggregationFunctionLabelMax: 'max',
|
|
159
|
+
// aggregationFunctionLabelSize: 'size',
|
|
153
160
|
|
|
154
161
|
};
|
|
155
162
|
export var skSK = getGridLocalization(skSKGrid, skSKCore);
|
package/legacy/locales/svSE.js
CHANGED
|
@@ -123,6 +123,13 @@ var svSEGrid = {
|
|
|
123
123
|
expandDetailPanel: 'Expandera',
|
|
124
124
|
collapseDetailPanel: 'Kollapsa',
|
|
125
125
|
// Row reordering text
|
|
126
|
-
rowReorderingHeaderName: 'Ordna om rader'
|
|
126
|
+
rowReorderingHeaderName: 'Ordna om rader' // Aggregation
|
|
127
|
+
// aggregationMenuItemHeader: 'Aggregation',
|
|
128
|
+
// aggregationFunctionLabelSum: 'sum',
|
|
129
|
+
// aggregationFunctionLabelAvg: 'avg',
|
|
130
|
+
// aggregationFunctionLabelMin: 'min',
|
|
131
|
+
// aggregationFunctionLabelMax: 'max',
|
|
132
|
+
// aggregationFunctionLabelSize: 'size',
|
|
133
|
+
|
|
127
134
|
};
|
|
128
135
|
export var svSE = getGridLocalization(svSEGrid, svSECore);
|
package/legacy/locales/trTR.js
CHANGED
|
@@ -123,6 +123,13 @@ var trTRGrid = {
|
|
|
123
123
|
expandDetailPanel: 'Genişlet',
|
|
124
124
|
collapseDetailPanel: 'Gizle' // Row reordering text
|
|
125
125
|
// rowReorderingHeaderName: 'Row reordering',
|
|
126
|
+
// Aggregation
|
|
127
|
+
// aggregationMenuItemHeader: 'Aggregation',
|
|
128
|
+
// aggregationFunctionLabelSum: 'sum',
|
|
129
|
+
// aggregationFunctionLabelAvg: 'avg',
|
|
130
|
+
// aggregationFunctionLabelMin: 'min',
|
|
131
|
+
// aggregationFunctionLabelMax: 'max',
|
|
132
|
+
// aggregationFunctionLabelSize: 'size',
|
|
126
133
|
|
|
127
134
|
};
|
|
128
135
|
export var trTR = getGridLocalization(trTRGrid, trTRCore);
|
package/legacy/locales/ukUA.js
CHANGED
|
@@ -145,6 +145,13 @@ var ukUAGrid = {
|
|
|
145
145
|
// collapseDetailPanel: 'Collapse',
|
|
146
146
|
// Row reordering text
|
|
147
147
|
// rowReorderingHeaderName: 'Row reordering',
|
|
148
|
+
// Aggregation
|
|
149
|
+
// aggregationMenuItemHeader: 'Aggregation',
|
|
150
|
+
// aggregationFunctionLabelSum: 'sum',
|
|
151
|
+
// aggregationFunctionLabelAvg: 'avg',
|
|
152
|
+
// aggregationFunctionLabelMin: 'min',
|
|
153
|
+
// aggregationFunctionLabelMax: 'max',
|
|
154
|
+
// aggregationFunctionLabelSize: 'size',
|
|
148
155
|
|
|
149
156
|
};
|
|
150
157
|
export var ukUA = getGridLocalization(ukUAGrid, ukUACore);
|
package/legacy/locales/viVN.js
CHANGED
|
@@ -119,6 +119,13 @@ var viVNGrid = {
|
|
|
119
119
|
// collapseDetailPanel: 'Collapse',
|
|
120
120
|
// Row reordering text
|
|
121
121
|
// rowReorderingHeaderName: 'Row reordering',
|
|
122
|
+
// Aggregation
|
|
123
|
+
// aggregationMenuItemHeader: 'Aggregation',
|
|
124
|
+
// aggregationFunctionLabelSum: 'sum',
|
|
125
|
+
// aggregationFunctionLabelAvg: 'avg',
|
|
126
|
+
// aggregationFunctionLabelMin: 'min',
|
|
127
|
+
// aggregationFunctionLabelMax: 'max',
|
|
128
|
+
// aggregationFunctionLabelSize: 'size',
|
|
122
129
|
|
|
123
130
|
};
|
|
124
131
|
export var viVN = getGridLocalization(viVNGrid, viVNCore);
|
package/legacy/locales/zhCN.js
CHANGED
|
@@ -119,6 +119,13 @@ var zhCNGrid = {
|
|
|
119
119
|
// collapseDetailPanel: 'Collapse',
|
|
120
120
|
// Row reordering text
|
|
121
121
|
// rowReorderingHeaderName: 'Row reordering',
|
|
122
|
+
// Aggregation
|
|
123
|
+
// aggregationMenuItemHeader: 'Aggregation',
|
|
124
|
+
// aggregationFunctionLabelSum: 'sum',
|
|
125
|
+
// aggregationFunctionLabelAvg: 'avg',
|
|
126
|
+
// aggregationFunctionLabelMin: 'min',
|
|
127
|
+
// aggregationFunctionLabelMax: 'max',
|
|
128
|
+
// aggregationFunctionLabelSize: 'size',
|
|
122
129
|
|
|
123
130
|
};
|
|
124
131
|
export var zhCN = getGridLocalization(zhCNGrid, zhCNCore);
|
|
@@ -0,0 +1,135 @@
|
|
|
1
|
+
import { zhTW as zhTWCore } from '@mui/material/locale';
|
|
2
|
+
import { getGridLocalization } from '../utils/getGridLocalization';
|
|
3
|
+
var zhTWGrid = {
|
|
4
|
+
// Root
|
|
5
|
+
noRowsLabel: '沒有資料',
|
|
6
|
+
noResultsOverlayLabel: '沒有結果',
|
|
7
|
+
errorOverlayDefaultLabel: '發生錯誤',
|
|
8
|
+
// Density selector toolbar button text
|
|
9
|
+
toolbarDensity: '表格密度',
|
|
10
|
+
toolbarDensityLabel: '表格密度',
|
|
11
|
+
toolbarDensityCompact: '緊湊',
|
|
12
|
+
toolbarDensityStandard: '標準',
|
|
13
|
+
toolbarDensityComfortable: '舒適',
|
|
14
|
+
// Columns selector toolbar button text
|
|
15
|
+
toolbarColumns: '欄位',
|
|
16
|
+
toolbarColumnsLabel: '選擇欄位',
|
|
17
|
+
// Filters toolbar button text
|
|
18
|
+
toolbarFilters: '篩選器',
|
|
19
|
+
toolbarFiltersLabel: '顯示篩選器',
|
|
20
|
+
toolbarFiltersTooltipHide: '隱藏篩選器',
|
|
21
|
+
toolbarFiltersTooltipShow: '顯示篩選器',
|
|
22
|
+
toolbarFiltersTooltipActive: function toolbarFiltersTooltipActive(count) {
|
|
23
|
+
return "".concat(count, " \u500B\u7BE9\u9078\u5668");
|
|
24
|
+
},
|
|
25
|
+
// Quick filter toolbar field
|
|
26
|
+
toolbarQuickFilterPlaceholder: '搜尋...',
|
|
27
|
+
toolbarQuickFilterLabel: '搜尋',
|
|
28
|
+
toolbarQuickFilterDeleteIconLabel: '清除',
|
|
29
|
+
// Export selector toolbar button text
|
|
30
|
+
toolbarExport: '匯出',
|
|
31
|
+
toolbarExportLabel: '匯出',
|
|
32
|
+
toolbarExportCSV: '匯出 CSV',
|
|
33
|
+
toolbarExportPrint: '列印',
|
|
34
|
+
toolbarExportExcel: '匯出 Excel',
|
|
35
|
+
// Columns panel text
|
|
36
|
+
columnsPanelTextFieldLabel: '欄位搜尋',
|
|
37
|
+
columnsPanelTextFieldPlaceholder: '欄位名稱',
|
|
38
|
+
columnsPanelDragIconLabel: '排序欄位',
|
|
39
|
+
columnsPanelShowAllButton: '顯示所有',
|
|
40
|
+
columnsPanelHideAllButton: '隱藏所有',
|
|
41
|
+
// Filter panel text
|
|
42
|
+
filterPanelAddFilter: '增加篩選器',
|
|
43
|
+
filterPanelDeleteIconLabel: '刪除',
|
|
44
|
+
filterPanelLinkOperator: '邏輯運算子',
|
|
45
|
+
filterPanelOperators: '運算子',
|
|
46
|
+
// TODO v6: rename to filterPanelOperator
|
|
47
|
+
filterPanelOperatorAnd: '且',
|
|
48
|
+
filterPanelOperatorOr: '或',
|
|
49
|
+
filterPanelColumns: '欄位',
|
|
50
|
+
filterPanelInputLabel: '值',
|
|
51
|
+
filterPanelInputPlaceholder: '篩選值',
|
|
52
|
+
// Filter operators text
|
|
53
|
+
filterOperatorContains: '包含',
|
|
54
|
+
filterOperatorEquals: '等於',
|
|
55
|
+
filterOperatorStartsWith: '以...開頭',
|
|
56
|
+
filterOperatorEndsWith: '以...結束',
|
|
57
|
+
filterOperatorIs: '為',
|
|
58
|
+
filterOperatorNot: '不為',
|
|
59
|
+
filterOperatorAfter: '...之後',
|
|
60
|
+
filterOperatorOnOrAfter: '...(含)之後',
|
|
61
|
+
filterOperatorBefore: '...之前',
|
|
62
|
+
filterOperatorOnOrBefore: '...(含)之前',
|
|
63
|
+
filterOperatorIsEmpty: '為空',
|
|
64
|
+
filterOperatorIsNotEmpty: '不為空',
|
|
65
|
+
filterOperatorIsAnyOf: '是其中之一',
|
|
66
|
+
// Filter values text
|
|
67
|
+
filterValueAny: '任何值',
|
|
68
|
+
filterValueTrue: '真',
|
|
69
|
+
filterValueFalse: '假',
|
|
70
|
+
// Column menu text
|
|
71
|
+
columnMenuLabel: '選單',
|
|
72
|
+
columnMenuShowColumns: '顯示欄位',
|
|
73
|
+
columnMenuFilter: '篩選器',
|
|
74
|
+
columnMenuHideColumn: '隱藏',
|
|
75
|
+
columnMenuUnsort: '預設排序',
|
|
76
|
+
columnMenuSortAsc: '升序',
|
|
77
|
+
columnMenuSortDesc: '降序',
|
|
78
|
+
// Column header text
|
|
79
|
+
columnHeaderFiltersTooltipActive: function columnHeaderFiltersTooltipActive(count) {
|
|
80
|
+
return "".concat(count, " \u500B\u7BE9\u9078\u5668");
|
|
81
|
+
},
|
|
82
|
+
columnHeaderFiltersLabel: '顯示篩選器',
|
|
83
|
+
columnHeaderSortIconLabel: '排序',
|
|
84
|
+
// Rows selected footer text
|
|
85
|
+
footerRowSelected: function footerRowSelected(count) {
|
|
86
|
+
return "\u5DF2\u9078\u53D6 ".concat(count.toLocaleString(), " \u500B");
|
|
87
|
+
},
|
|
88
|
+
// Total row amount footer text
|
|
89
|
+
footerTotalRows: '總數:',
|
|
90
|
+
// Total visible row amount footer text
|
|
91
|
+
footerTotalVisibleRows: function footerTotalVisibleRows(visibleCount, totalCount) {
|
|
92
|
+
return "".concat(visibleCount.toLocaleString(), " / ").concat(totalCount.toLocaleString());
|
|
93
|
+
},
|
|
94
|
+
// Checkbox selection text
|
|
95
|
+
checkboxSelectionHeaderName: '核取方塊',
|
|
96
|
+
checkboxSelectionSelectAllRows: '全選',
|
|
97
|
+
checkboxSelectionUnselectAllRows: '取消全選',
|
|
98
|
+
checkboxSelectionSelectRow: '選取',
|
|
99
|
+
checkboxSelectionUnselectRow: '取消選取',
|
|
100
|
+
// Boolean cell text
|
|
101
|
+
booleanCellTrueLabel: '真',
|
|
102
|
+
booleanCellFalseLabel: '假',
|
|
103
|
+
// Actions cell more text
|
|
104
|
+
actionsCellMore: '查看更多',
|
|
105
|
+
// Column pinning text
|
|
106
|
+
pinToLeft: '釘選在左側',
|
|
107
|
+
pinToRight: '釘選在右側',
|
|
108
|
+
unpin: '取消釘選',
|
|
109
|
+
// Tree Data
|
|
110
|
+
treeDataGroupingHeaderName: '群組',
|
|
111
|
+
treeDataExpand: '查看子項目',
|
|
112
|
+
treeDataCollapse: '隱藏子項目',
|
|
113
|
+
// Grouping columns
|
|
114
|
+
groupingColumnHeaderName: '群組',
|
|
115
|
+
groupColumn: function groupColumn(name) {
|
|
116
|
+
return "\u4EE5 ".concat(name, " \u5206\u7D44");
|
|
117
|
+
},
|
|
118
|
+
unGroupColumn: function unGroupColumn(name) {
|
|
119
|
+
return "\u53D6\u6D88\u4EE5 ".concat(name, " \u5206\u7D44");
|
|
120
|
+
},
|
|
121
|
+
// Master/detail
|
|
122
|
+
detailPanelToggle: '切換顯示詳細資訊',
|
|
123
|
+
expandDetailPanel: '展開',
|
|
124
|
+
collapseDetailPanel: '摺疊',
|
|
125
|
+
// Row reordering text
|
|
126
|
+
rowReorderingHeaderName: '排序' // Aggregation
|
|
127
|
+
// aggregationMenuItemHeader: 'Aggregation',
|
|
128
|
+
// aggregationFunctionLabelSum: 'sum',
|
|
129
|
+
// aggregationFunctionLabelAvg: 'avg',
|
|
130
|
+
// aggregationFunctionLabelMin: 'min',
|
|
131
|
+
// aggregationFunctionLabelMax: 'max',
|
|
132
|
+
// aggregationFunctionLabelSize: 'size',
|
|
133
|
+
|
|
134
|
+
};
|
|
135
|
+
export var zhTW = getGridLocalization(zhTWGrid, zhTWCore);
|
|
@@ -54,6 +54,7 @@ var GridEvents;
|
|
|
54
54
|
GridEvents["pageChange"] = "pageChange";
|
|
55
55
|
GridEvents["pageSizeChange"] = "pageSizeChange";
|
|
56
56
|
GridEvents["rowGroupingModelChange"] = "rowGroupingModelChange";
|
|
57
|
+
GridEvents["aggregationModelChange"] = "aggregationModelChange";
|
|
57
58
|
GridEvents["rowsScroll"] = "rowsScroll";
|
|
58
59
|
GridEvents["rowsScrollEnd"] = "rowsScrollEnd";
|
|
59
60
|
GridEvents["columnSeparatorMouseDown"] = "columnSeparatorMouseDown";
|