@mui/x-data-grid 5.13.0 → 5.15.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 +156 -6
- package/DataGrid/DataGrid.js +6 -0
- package/DataGrid/useDataGridComponent.js +1 -1
- package/DataGrid/useDataGridProps.js +1 -0
- 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.js +4 -2
- package/components/GridRow.js +5 -1
- package/components/base/GridOverlays.js +4 -1
- 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 +12 -1
- package/components/containers/GridRoot.js +4 -2
- package/components/containers/GridRootStyles.js +10 -0
- package/components/toolbar/GridToolbarExport.js +20 -10
- package/constants/gridClasses.d.ts +41 -1
- package/constants/gridClasses.js +1 -1
- package/constants/localeTextConstants.js +9 -2
- 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 +6 -1
- package/hooks/features/editRows/useGridCellEditing.new.d.ts +1 -1
- package/hooks/features/editRows/useGridCellEditing.new.js +7 -4
- 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 +3 -3
- package/hooks/features/export/utils.d.ts +1 -1
- package/hooks/features/export/utils.js +16 -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/keyboardNavigation/useGridKeyboardNavigation.d.ts +1 -1
- package/hooks/features/keyboardNavigation/useGridKeyboardNavigation.js +42 -34
- package/hooks/features/pagination/useGridPage.js +4 -3
- package/hooks/features/pagination/useGridPageSize.js +7 -4
- package/hooks/features/preferencesPanel/useGridPreferencesPanel.d.ts +1 -1
- package/hooks/features/preferencesPanel/useGridPreferencesPanel.js +12 -4
- 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 +5 -1
- 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/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 +28 -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 +42 -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.d.ts +3 -1
- package/hooks/features/virtualization/useGridVirtualScroller.js +46 -21
- package/hooks/utils/useGridApiEventHandler.d.ts +2 -2
- package/hooks/utils/useGridNativeEventListener.d.ts +1 -1
- package/hooks/utils/useGridNativeEventListener.js +1 -1
- package/index.js +1 -1
- package/internals/index.d.ts +6 -3
- package/internals/index.js +5 -2
- package/legacy/DataGrid/DataGrid.js +6 -0
- package/legacy/DataGrid/useDataGridComponent.js +1 -1
- package/legacy/DataGrid/useDataGridProps.js +1 -0
- 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 +4 -2
- package/legacy/components/GridRow.js +5 -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 +11 -1
- package/legacy/components/containers/GridRoot.js +4 -2
- package/legacy/components/containers/GridRootStyles.js +3 -3
- package/legacy/components/toolbar/GridToolbarExport.js +20 -10
- package/legacy/constants/gridClasses.js +1 -1
- package/legacy/constants/localeTextConstants.js +9 -2
- 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 +6 -1
- package/legacy/hooks/features/editRows/useGridCellEditing.new.js +7 -4
- 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 +3 -3
- package/legacy/hooks/features/export/utils.js +21 -2
- package/legacy/hooks/features/filter/gridFilterUtils.js +6 -0
- package/legacy/hooks/features/filter/useGridFilter.js +30 -5
- package/legacy/hooks/features/keyboardNavigation/useGridKeyboardNavigation.js +47 -34
- package/legacy/hooks/features/pagination/useGridPage.js +4 -3
- package/legacy/hooks/features/pagination/useGridPageSize.js +7 -4
- package/legacy/hooks/features/preferencesPanel/useGridPreferencesPanel.js +12 -4
- 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/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 +30 -12
- package/legacy/hooks/features/sorting/gridSortingUtils.js +11 -12
- package/legacy/hooks/features/sorting/useGridSorting.js +42 -6
- package/legacy/hooks/features/statePersistence/useGridStatePersistence.js +2 -1
- package/legacy/hooks/features/virtualization/useGridVirtualScroller.js +51 -25
- package/legacy/hooks/utils/useGridNativeEventListener.js +1 -1
- package/legacy/index.js +1 -1
- package/legacy/internals/index.js +5 -2
- package/legacy/locales/arSD.js +8 -1
- package/legacy/locales/bgBG.js +8 -1
- package/legacy/locales/csCZ.js +8 -1
- package/legacy/locales/daDK.js +8 -1
- package/legacy/locales/deDE.js +12 -5
- package/legacy/locales/elGR.js +8 -1
- package/legacy/locales/esES.js +8 -1
- package/legacy/locales/faIR.js +8 -1
- package/legacy/locales/fiFI.js +8 -1
- package/legacy/locales/frFR.js +18 -11
- package/legacy/locales/heIL.js +9 -2
- package/legacy/locales/huHU.js +8 -1
- package/legacy/locales/index.js +2 -1
- package/legacy/locales/itIT.js +8 -1
- package/legacy/locales/jaJP.js +11 -4
- package/legacy/locales/koKR.js +8 -1
- package/legacy/locales/nbNO.js +9 -2
- package/legacy/locales/nlNL.js +21 -14
- package/legacy/locales/plPL.js +8 -1
- package/legacy/locales/ptBR.js +17 -10
- package/legacy/locales/roRO.js +12 -5
- package/legacy/locales/ruRU.js +8 -1
- package/legacy/locales/skSK.js +9 -2
- package/legacy/locales/svSE.js +9 -2
- package/legacy/locales/trTR.js +8 -1
- package/legacy/locales/ukUA.js +8 -1
- package/legacy/locales/viVN.js +8 -1
- package/legacy/locales/zhCN.js +38 -27
- package/legacy/locales/zhTW.js +135 -0
- package/legacy/models/events/gridEvents.js +1 -0
- package/locales/arSD.js +8 -1
- package/locales/bgBG.js +8 -1
- package/locales/csCZ.js +8 -1
- package/locales/daDK.js +8 -1
- package/locales/deDE.js +12 -5
- package/locales/elGR.js +8 -1
- package/locales/esES.js +8 -1
- package/locales/faIR.js +8 -1
- package/locales/fiFI.js +8 -1
- package/locales/frFR.js +18 -11
- package/locales/heIL.js +9 -2
- package/locales/huHU.js +8 -1
- package/locales/index.d.ts +1 -0
- package/locales/index.js +2 -1
- package/locales/itIT.js +8 -1
- package/locales/jaJP.js +11 -4
- package/locales/koKR.js +8 -1
- package/locales/nbNO.js +9 -2
- package/locales/nlNL.js +21 -14
- package/locales/plPL.js +8 -1
- package/locales/ptBR.js +17 -10
- package/locales/roRO.js +12 -5
- package/locales/ruRU.js +8 -1
- package/locales/skSK.js +9 -2
- package/locales/svSE.js +9 -2
- package/locales/trTR.js +8 -1
- package/locales/ukUA.js +8 -1
- package/locales/viVN.js +8 -1
- package/locales/zhCN.js +34 -27
- 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 +15 -1
- package/models/params/gridCellParams.d.ts +4 -4
- package/models/props/DataGridProps.d.ts +5 -0
- package/modern/DataGrid/DataGrid.js +6 -0
- package/modern/DataGrid/useDataGridComponent.js +1 -1
- package/modern/DataGrid/useDataGridProps.js +1 -0
- 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 +4 -2
- package/modern/components/GridRow.js +5 -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 +12 -1
- package/modern/components/containers/GridRoot.js +4 -2
- package/modern/components/containers/GridRootStyles.js +10 -0
- package/modern/components/toolbar/GridToolbarExport.js +20 -10
- package/modern/constants/gridClasses.js +1 -1
- package/modern/constants/localeTextConstants.js +9 -2
- 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 +6 -1
- package/modern/hooks/features/editRows/useGridCellEditing.new.js +5 -4
- 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 +3 -3
- package/modern/hooks/features/export/utils.js +10 -2
- package/modern/hooks/features/filter/gridFilterUtils.js +6 -0
- package/modern/hooks/features/filter/useGridFilter.js +25 -4
- package/modern/hooks/features/keyboardNavigation/useGridKeyboardNavigation.js +42 -30
- package/modern/hooks/features/pagination/useGridPage.js +4 -3
- package/modern/hooks/features/pagination/useGridPageSize.js +7 -4
- package/modern/hooks/features/preferencesPanel/useGridPreferencesPanel.js +8 -4
- 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/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 +28 -10
- package/modern/hooks/features/sorting/gridSortingUtils.js +10 -11
- package/modern/hooks/features/sorting/useGridSorting.js +38 -6
- package/modern/hooks/features/statePersistence/useGridStatePersistence.js +2 -2
- package/modern/hooks/features/virtualization/useGridVirtualScroller.js +41 -20
- package/modern/hooks/utils/useGridNativeEventListener.js +1 -1
- package/modern/index.js +1 -1
- package/modern/internals/index.js +5 -2
- package/modern/locales/arSD.js +8 -1
- package/modern/locales/bgBG.js +8 -1
- package/modern/locales/csCZ.js +8 -1
- package/modern/locales/daDK.js +8 -1
- package/modern/locales/deDE.js +12 -5
- package/modern/locales/elGR.js +8 -1
- package/modern/locales/esES.js +8 -1
- package/modern/locales/faIR.js +8 -1
- package/modern/locales/fiFI.js +8 -1
- package/modern/locales/frFR.js +18 -11
- package/modern/locales/heIL.js +9 -2
- package/modern/locales/huHU.js +8 -1
- package/modern/locales/index.js +2 -1
- package/modern/locales/itIT.js +8 -1
- package/modern/locales/jaJP.js +11 -4
- package/modern/locales/koKR.js +8 -1
- package/modern/locales/nbNO.js +9 -2
- package/modern/locales/nlNL.js +21 -14
- package/modern/locales/plPL.js +8 -1
- package/modern/locales/ptBR.js +17 -10
- package/modern/locales/roRO.js +12 -5
- package/modern/locales/ruRU.js +8 -1
- package/modern/locales/skSK.js +9 -2
- package/modern/locales/svSE.js +9 -2
- package/modern/locales/trTR.js +8 -1
- package/modern/locales/ukUA.js +8 -1
- package/modern/locales/viVN.js +8 -1
- package/modern/locales/zhCN.js +34 -27
- package/modern/locales/zhTW.js +123 -0
- package/modern/models/events/gridEvents.js +1 -0
- package/node/DataGrid/DataGrid.js +6 -0
- package/node/DataGrid/useDataGridComponent.js +1 -1
- package/node/DataGrid/useDataGridProps.js +1 -0
- 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 +4 -2
- package/node/components/GridRow.js +5 -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 +12 -1
- package/node/components/containers/GridRoot.js +3 -1
- package/node/components/containers/GridRootStyles.js +10 -0
- package/node/components/toolbar/GridToolbarExport.js +16 -10
- package/node/constants/gridClasses.js +1 -1
- package/node/constants/localeTextConstants.js +9 -2
- 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 +7 -1
- package/node/hooks/features/editRows/useGridCellEditing.new.js +7 -4
- 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 +3 -3
- package/node/hooks/features/export/utils.js +17 -2
- package/node/hooks/features/filter/gridFilterUtils.js +7 -0
- package/node/hooks/features/filter/useGridFilter.js +30 -5
- package/node/hooks/features/keyboardNavigation/useGridKeyboardNavigation.js +43 -34
- package/node/hooks/features/pagination/useGridPage.js +4 -3
- package/node/hooks/features/pagination/useGridPageSize.js +8 -4
- package/node/hooks/features/preferencesPanel/useGridPreferencesPanel.js +12 -4
- 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/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 +28 -10
- package/node/hooks/features/sorting/gridSortingUtils.js +10 -11
- package/node/hooks/features/sorting/useGridSorting.js +42 -6
- package/node/hooks/features/statePersistence/useGridStatePersistence.js +2 -2
- package/node/hooks/features/virtualization/useGridVirtualScroller.js +46 -21
- package/node/hooks/utils/useGridNativeEventListener.js +1 -1
- package/node/index.js +1 -1
- package/node/internals/index.js +46 -0
- package/node/locales/arSD.js +8 -1
- package/node/locales/bgBG.js +8 -1
- package/node/locales/csCZ.js +8 -1
- package/node/locales/daDK.js +8 -1
- package/node/locales/deDE.js +12 -5
- package/node/locales/elGR.js +8 -1
- package/node/locales/esES.js +8 -1
- package/node/locales/faIR.js +8 -1
- package/node/locales/fiFI.js +8 -1
- package/node/locales/frFR.js +18 -11
- package/node/locales/heIL.js +9 -2
- package/node/locales/huHU.js +8 -1
- package/node/locales/index.js +13 -0
- package/node/locales/itIT.js +8 -1
- package/node/locales/jaJP.js +11 -4
- package/node/locales/koKR.js +8 -1
- package/node/locales/nbNO.js +9 -2
- package/node/locales/nlNL.js +21 -14
- package/node/locales/plPL.js +8 -1
- package/node/locales/ptBR.js +17 -10
- package/node/locales/roRO.js +12 -5
- package/node/locales/ruRU.js +8 -1
- package/node/locales/skSK.js +9 -2
- package/node/locales/svSE.js +9 -2
- package/node/locales/trTR.js +8 -1
- package/node/locales/ukUA.js +8 -1
- package/node/locales/viVN.js +8 -1
- package/node/locales/zhCN.js +34 -27
- package/node/locales/zhTW.js +133 -0
- package/node/models/events/gridEvents.js +1 -0
- package/package.json +2 -2
- package/utils/getGridLocalization.d.ts +1 -1
package/node/locales/faIR.js
CHANGED
|
@@ -30,7 +30,7 @@ const faIRGrid = {
|
|
|
30
30
|
toolbarFiltersTooltipShow: 'نمایش فیلترها',
|
|
31
31
|
toolbarFiltersTooltipActive: count => count !== 1 ? `${count} فیلترهای فعال` : `${count} فیلتر فعال`,
|
|
32
32
|
// Quick filter toolbar field
|
|
33
|
-
// toolbarQuickFilterPlaceholder: 'Search
|
|
33
|
+
// toolbarQuickFilterPlaceholder: 'Search…',
|
|
34
34
|
// toolbarQuickFilterLabel: 'Search',
|
|
35
35
|
// toolbarQuickFilterDeleteIconLabel: 'Clear',
|
|
36
36
|
// Export selector toolbar button text
|
|
@@ -120,6 +120,13 @@ const faIRGrid = {
|
|
|
120
120
|
expandDetailPanel: 'بازکردن پنل جزئیات',
|
|
121
121
|
collapseDetailPanel: 'بستن پنل جزئیات' // Row reordering text
|
|
122
122
|
// rowReorderingHeaderName: 'Row reordering',
|
|
123
|
+
// Aggregation
|
|
124
|
+
// aggregationMenuItemHeader: 'Aggregation',
|
|
125
|
+
// aggregationFunctionLabelSum: 'sum',
|
|
126
|
+
// aggregationFunctionLabelAvg: 'avg',
|
|
127
|
+
// aggregationFunctionLabelMin: 'min',
|
|
128
|
+
// aggregationFunctionLabelMax: 'max',
|
|
129
|
+
// aggregationFunctionLabelSize: 'size',
|
|
123
130
|
|
|
124
131
|
};
|
|
125
132
|
const faIR = (0, _getGridLocalization.getGridLocalization)(faIRGrid, _locale.faIR);
|
package/node/locales/fiFI.js
CHANGED
|
@@ -30,7 +30,7 @@ const fiFIGrid = {
|
|
|
30
30
|
toolbarFiltersTooltipShow: 'Näytä suodattimet',
|
|
31
31
|
toolbarFiltersTooltipActive: count => count !== 1 ? `${count} aktiivista suodatinta` : `${count} aktiivinen suodatin`,
|
|
32
32
|
// Quick filter toolbar field
|
|
33
|
-
// toolbarQuickFilterPlaceholder: 'Search
|
|
33
|
+
// toolbarQuickFilterPlaceholder: 'Search…',
|
|
34
34
|
// toolbarQuickFilterLabel: 'Search',
|
|
35
35
|
// toolbarQuickFilterDeleteIconLabel: 'Clear',
|
|
36
36
|
// Export selector toolbar button text
|
|
@@ -120,6 +120,13 @@ const fiFIGrid = {
|
|
|
120
120
|
// collapseDetailPanel: 'Collapse',
|
|
121
121
|
// Row reordering text
|
|
122
122
|
// rowReorderingHeaderName: 'Row reordering',
|
|
123
|
+
// Aggregation
|
|
124
|
+
// aggregationMenuItemHeader: 'Aggregation',
|
|
125
|
+
// aggregationFunctionLabelSum: 'sum',
|
|
126
|
+
// aggregationFunctionLabelAvg: 'avg',
|
|
127
|
+
// aggregationFunctionLabelMin: 'min',
|
|
128
|
+
// aggregationFunctionLabelMax: 'max',
|
|
129
|
+
// aggregationFunctionLabelSize: 'size',
|
|
123
130
|
|
|
124
131
|
};
|
|
125
132
|
const fiFI = (0, _getGridLocalization.getGridLocalization)(fiFIGrid, _locale.fiFI);
|
package/node/locales/frFR.js
CHANGED
|
@@ -30,7 +30,7 @@ const frFRGrid = {
|
|
|
30
30
|
toolbarFiltersTooltipShow: 'Afficher les filtres',
|
|
31
31
|
toolbarFiltersTooltipActive: count => count > 1 ? `${count} filtres actifs` : `${count} filtre actif`,
|
|
32
32
|
// Quick filter toolbar field
|
|
33
|
-
toolbarQuickFilterPlaceholder: 'Recherche
|
|
33
|
+
toolbarQuickFilterPlaceholder: 'Recherche…',
|
|
34
34
|
toolbarQuickFilterLabel: 'Recherche',
|
|
35
35
|
toolbarQuickFilterDeleteIconLabel: 'Supprimer',
|
|
36
36
|
// Export selector toolbar button text
|
|
@@ -38,7 +38,7 @@ const frFRGrid = {
|
|
|
38
38
|
toolbarExportLabel: 'Exporter',
|
|
39
39
|
toolbarExportCSV: 'Télécharger en CSV',
|
|
40
40
|
toolbarExportPrint: 'Imprimer',
|
|
41
|
-
|
|
41
|
+
toolbarExportExcel: 'Télécharger pour Excel',
|
|
42
42
|
// Columns panel text
|
|
43
43
|
columnsPanelTextFieldLabel: 'Chercher colonne',
|
|
44
44
|
columnsPanelTextFieldPlaceholder: 'Titre de la colonne',
|
|
@@ -94,10 +94,10 @@ const frFRGrid = {
|
|
|
94
94
|
footerTotalVisibleRows: (visibleCount, totalCount) => `${visibleCount.toLocaleString()} sur ${totalCount.toLocaleString()}`,
|
|
95
95
|
// Checkbox selection text
|
|
96
96
|
checkboxSelectionHeaderName: 'Sélection',
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
97
|
+
checkboxSelectionSelectAllRows: 'Sélectionner toutes les lignes',
|
|
98
|
+
checkboxSelectionUnselectAllRows: 'Désélectionner toutes les lignes',
|
|
99
|
+
checkboxSelectionSelectRow: 'Sélectionner la ligne',
|
|
100
|
+
checkboxSelectionUnselectRow: 'Désélectionner la ligne',
|
|
101
101
|
// Boolean cell text
|
|
102
102
|
booleanCellTrueLabel: 'vrai',
|
|
103
103
|
booleanCellFalseLabel: 'faux',
|
|
@@ -114,12 +114,19 @@ const frFRGrid = {
|
|
|
114
114
|
// Grouping columns
|
|
115
115
|
groupingColumnHeaderName: 'Groupe',
|
|
116
116
|
groupColumn: name => `Grouper par ${name}`,
|
|
117
|
-
unGroupColumn: name => `Arrêter de grouper par ${name}
|
|
118
|
-
//
|
|
119
|
-
|
|
120
|
-
|
|
117
|
+
unGroupColumn: name => `Arrêter de grouper par ${name}`,
|
|
118
|
+
// Master/detail
|
|
119
|
+
detailPanelToggle: 'Afficher/masquer les détails',
|
|
120
|
+
expandDetailPanel: 'Afficher',
|
|
121
|
+
collapseDetailPanel: 'Masquer',
|
|
121
122
|
// Row reordering text
|
|
122
|
-
|
|
123
|
+
rowReorderingHeaderName: 'Positionnement des lignes' // Aggregation
|
|
124
|
+
// aggregationMenuItemHeader: 'Aggregation',
|
|
125
|
+
// aggregationFunctionLabelSum: 'sum',
|
|
126
|
+
// aggregationFunctionLabelAvg: 'avg',
|
|
127
|
+
// aggregationFunctionLabelMin: 'min',
|
|
128
|
+
// aggregationFunctionLabelMax: 'max',
|
|
129
|
+
// aggregationFunctionLabelSize: 'size',
|
|
123
130
|
|
|
124
131
|
};
|
|
125
132
|
const frFR = (0, _getGridLocalization.getGridLocalization)(frFRGrid, _locale.frFR);
|
package/node/locales/heIL.js
CHANGED
|
@@ -30,7 +30,7 @@ const heILGrid = {
|
|
|
30
30
|
toolbarFiltersTooltipShow: 'הצג מסננים',
|
|
31
31
|
toolbarFiltersTooltipActive: count => count !== 1 ? `${count} מסננים פעילים` : `מסנן אחד פעיל`,
|
|
32
32
|
// Quick filter toolbar field
|
|
33
|
-
toolbarQuickFilterPlaceholder: '
|
|
33
|
+
toolbarQuickFilterPlaceholder: 'חיפוש…',
|
|
34
34
|
toolbarQuickFilterLabel: 'חיפוש',
|
|
35
35
|
toolbarQuickFilterDeleteIconLabel: 'ניקוי',
|
|
36
36
|
// Export selector toolbar button text
|
|
@@ -120,7 +120,14 @@ const heILGrid = {
|
|
|
120
120
|
expandDetailPanel: 'הרחב',
|
|
121
121
|
collapseDetailPanel: 'כווץ',
|
|
122
122
|
// Row reordering text
|
|
123
|
-
rowReorderingHeaderName: 'סידור שורות'
|
|
123
|
+
rowReorderingHeaderName: 'סידור שורות' // Aggregation
|
|
124
|
+
// aggregationMenuItemHeader: 'Aggregation',
|
|
125
|
+
// aggregationFunctionLabelSum: 'sum',
|
|
126
|
+
// aggregationFunctionLabelAvg: 'avg',
|
|
127
|
+
// aggregationFunctionLabelMin: 'min',
|
|
128
|
+
// aggregationFunctionLabelMax: 'max',
|
|
129
|
+
// aggregationFunctionLabelSize: 'size',
|
|
130
|
+
|
|
124
131
|
};
|
|
125
132
|
const heIL = (0, _getGridLocalization.getGridLocalization)(heILGrid, _locale.heIL);
|
|
126
133
|
exports.heIL = heIL;
|
package/node/locales/huHU.js
CHANGED
|
@@ -30,7 +30,7 @@ const huHUGrid = {
|
|
|
30
30
|
toolbarFiltersTooltipShow: 'Szűrők megjelenítése',
|
|
31
31
|
toolbarFiltersTooltipActive: count => `${count} aktív szűrő`,
|
|
32
32
|
// Quick filter toolbar field
|
|
33
|
-
// toolbarQuickFilterPlaceholder: 'Search
|
|
33
|
+
// toolbarQuickFilterPlaceholder: 'Search…',
|
|
34
34
|
// toolbarQuickFilterLabel: 'Search',
|
|
35
35
|
// toolbarQuickFilterDeleteIconLabel: 'Clear',
|
|
36
36
|
// Export selector toolbar button text
|
|
@@ -120,6 +120,13 @@ const huHUGrid = {
|
|
|
120
120
|
expandDetailPanel: 'Kibontás',
|
|
121
121
|
collapseDetailPanel: 'Összecsukás' // Row reordering text
|
|
122
122
|
// rowReorderingHeaderName: 'Row reordering',
|
|
123
|
+
// Aggregation
|
|
124
|
+
// aggregationMenuItemHeader: 'Aggregation',
|
|
125
|
+
// aggregationFunctionLabelSum: 'sum',
|
|
126
|
+
// aggregationFunctionLabelAvg: 'avg',
|
|
127
|
+
// aggregationFunctionLabelMin: 'min',
|
|
128
|
+
// aggregationFunctionLabelMax: 'max',
|
|
129
|
+
// aggregationFunctionLabelSize: 'size',
|
|
123
130
|
|
|
124
131
|
};
|
|
125
132
|
const huHU = (0, _getGridLocalization.getGridLocalization)(huHUGrid, _locale.huHU);
|
package/node/locales/index.js
CHANGED
|
@@ -366,4 +366,17 @@ Object.keys(_zhCN).forEach(function (key) {
|
|
|
366
366
|
return _zhCN[key];
|
|
367
367
|
}
|
|
368
368
|
});
|
|
369
|
+
});
|
|
370
|
+
|
|
371
|
+
var _zhTW = require("./zhTW");
|
|
372
|
+
|
|
373
|
+
Object.keys(_zhTW).forEach(function (key) {
|
|
374
|
+
if (key === "default" || key === "__esModule") return;
|
|
375
|
+
if (key in exports && exports[key] === _zhTW[key]) return;
|
|
376
|
+
Object.defineProperty(exports, key, {
|
|
377
|
+
enumerable: true,
|
|
378
|
+
get: function () {
|
|
379
|
+
return _zhTW[key];
|
|
380
|
+
}
|
|
381
|
+
});
|
|
369
382
|
});
|
package/node/locales/itIT.js
CHANGED
|
@@ -30,7 +30,7 @@ const itITGrid = {
|
|
|
30
30
|
toolbarFiltersTooltipShow: 'Mostra i filtri',
|
|
31
31
|
toolbarFiltersTooltipActive: count => count > 1 ? `${count} filtri attivi` : `${count} filtro attivo`,
|
|
32
32
|
// Quick filter toolbar field
|
|
33
|
-
// toolbarQuickFilterPlaceholder: 'Search
|
|
33
|
+
// toolbarQuickFilterPlaceholder: 'Search…',
|
|
34
34
|
// toolbarQuickFilterLabel: 'Search',
|
|
35
35
|
// toolbarQuickFilterDeleteIconLabel: 'Clear',
|
|
36
36
|
// Export selector toolbar button text
|
|
@@ -120,6 +120,13 @@ const itITGrid = {
|
|
|
120
120
|
// collapseDetailPanel: 'Collapse',
|
|
121
121
|
// Row reordering text
|
|
122
122
|
// rowReorderingHeaderName: 'Row reordering',
|
|
123
|
+
// Aggregation
|
|
124
|
+
// aggregationMenuItemHeader: 'Aggregation',
|
|
125
|
+
// aggregationFunctionLabelSum: 'sum',
|
|
126
|
+
// aggregationFunctionLabelAvg: 'avg',
|
|
127
|
+
// aggregationFunctionLabelMin: 'min',
|
|
128
|
+
// aggregationFunctionLabelMax: 'max',
|
|
129
|
+
// aggregationFunctionLabelSize: 'size',
|
|
123
130
|
|
|
124
131
|
};
|
|
125
132
|
const itIT = (0, _getGridLocalization.getGridLocalization)(itITGrid, _locale.itIT);
|
package/node/locales/jaJP.js
CHANGED
|
@@ -30,7 +30,7 @@ const jaJPGrid = {
|
|
|
30
30
|
toolbarFiltersTooltipShow: 'フィルター表示',
|
|
31
31
|
toolbarFiltersTooltipActive: count => `${count}件のフィルターを適用中`,
|
|
32
32
|
// Quick filter toolbar field
|
|
33
|
-
toolbarQuickFilterPlaceholder: '
|
|
33
|
+
toolbarQuickFilterPlaceholder: '検索…',
|
|
34
34
|
toolbarQuickFilterLabel: '検索',
|
|
35
35
|
toolbarQuickFilterDeleteIconLabel: 'クリア',
|
|
36
36
|
// Export selector toolbar button text
|
|
@@ -41,7 +41,7 @@ const jaJPGrid = {
|
|
|
41
41
|
toolbarExportExcel: 'Excelダウンロード',
|
|
42
42
|
// Columns panel text
|
|
43
43
|
columnsPanelTextFieldLabel: '列検索',
|
|
44
|
-
columnsPanelTextFieldPlaceholder: '
|
|
44
|
+
columnsPanelTextFieldPlaceholder: '検索クエリを入力…',
|
|
45
45
|
columnsPanelDragIconLabel: '列並べ替え',
|
|
46
46
|
columnsPanelShowAllButton: 'すべて表示',
|
|
47
47
|
columnsPanelHideAllButton: 'すべて非表示',
|
|
@@ -55,7 +55,7 @@ const jaJPGrid = {
|
|
|
55
55
|
filterPanelOperatorOr: 'Or',
|
|
56
56
|
filterPanelColumns: '列',
|
|
57
57
|
filterPanelInputLabel: '値',
|
|
58
|
-
filterPanelInputPlaceholder: '
|
|
58
|
+
filterPanelInputPlaceholder: '値を入力…',
|
|
59
59
|
// Filter operators text
|
|
60
60
|
filterOperatorContains: '...を含む',
|
|
61
61
|
filterOperatorEquals: '...に等しい',
|
|
@@ -120,7 +120,14 @@ const jaJPGrid = {
|
|
|
120
120
|
expandDetailPanel: '展開',
|
|
121
121
|
collapseDetailPanel: '折りたたみ',
|
|
122
122
|
// Row reordering text
|
|
123
|
-
rowReorderingHeaderName: '行並び替え'
|
|
123
|
+
rowReorderingHeaderName: '行並び替え' // Aggregation
|
|
124
|
+
// aggregationMenuItemHeader: 'Aggregation',
|
|
125
|
+
// aggregationFunctionLabelSum: 'sum',
|
|
126
|
+
// aggregationFunctionLabelAvg: 'avg',
|
|
127
|
+
// aggregationFunctionLabelMin: 'min',
|
|
128
|
+
// aggregationFunctionLabelMax: 'max',
|
|
129
|
+
// aggregationFunctionLabelSize: 'size',
|
|
130
|
+
|
|
124
131
|
};
|
|
125
132
|
const jaJP = (0, _getGridLocalization.getGridLocalization)(jaJPGrid, _locale.jaJP);
|
|
126
133
|
exports.jaJP = jaJP;
|
package/node/locales/koKR.js
CHANGED
|
@@ -30,7 +30,7 @@ const koKRGrid = {
|
|
|
30
30
|
toolbarFiltersTooltipShow: '필터 표시',
|
|
31
31
|
toolbarFiltersTooltipActive: count => `${count}건의 필터를 적용중`,
|
|
32
32
|
// Quick filter toolbar field
|
|
33
|
-
// toolbarQuickFilterPlaceholder: 'Search
|
|
33
|
+
// toolbarQuickFilterPlaceholder: 'Search…',
|
|
34
34
|
// toolbarQuickFilterLabel: 'Search',
|
|
35
35
|
// toolbarQuickFilterDeleteIconLabel: 'Clear',
|
|
36
36
|
// Export selector toolbar button text
|
|
@@ -120,6 +120,13 @@ const koKRGrid = {
|
|
|
120
120
|
// collapseDetailPanel: 'Collapse',
|
|
121
121
|
// Row reordering text
|
|
122
122
|
// rowReorderingHeaderName: 'Row reordering',
|
|
123
|
+
// Aggregation
|
|
124
|
+
// aggregationMenuItemHeader: 'Aggregation',
|
|
125
|
+
// aggregationFunctionLabelSum: 'sum',
|
|
126
|
+
// aggregationFunctionLabelAvg: 'avg',
|
|
127
|
+
// aggregationFunctionLabelMin: 'min',
|
|
128
|
+
// aggregationFunctionLabelMax: 'max',
|
|
129
|
+
// aggregationFunctionLabelSize: 'size',
|
|
123
130
|
|
|
124
131
|
};
|
|
125
132
|
const koKR = (0, _getGridLocalization.getGridLocalization)(koKRGrid, _locale.koKR);
|
package/node/locales/nbNO.js
CHANGED
|
@@ -30,7 +30,7 @@ const nbNOGrid = {
|
|
|
30
30
|
toolbarFiltersTooltipShow: 'Vis filter',
|
|
31
31
|
toolbarFiltersTooltipActive: count => count !== 1 ? `${count} aktive filter` : `${count} aktivt filter`,
|
|
32
32
|
// Quick filter toolbar field
|
|
33
|
-
toolbarQuickFilterPlaceholder: 'Søk
|
|
33
|
+
toolbarQuickFilterPlaceholder: 'Søk…',
|
|
34
34
|
toolbarQuickFilterLabel: 'Søk',
|
|
35
35
|
toolbarQuickFilterDeleteIconLabel: 'Slett',
|
|
36
36
|
// Export selector toolbar button text
|
|
@@ -120,7 +120,14 @@ const nbNOGrid = {
|
|
|
120
120
|
expandDetailPanel: 'Utvid',
|
|
121
121
|
collapseDetailPanel: 'Kollaps',
|
|
122
122
|
// Row reordering text
|
|
123
|
-
rowReorderingHeaderName: 'Rad reorganisering'
|
|
123
|
+
rowReorderingHeaderName: 'Rad reorganisering' // Aggregation
|
|
124
|
+
// aggregationMenuItemHeader: 'Aggregation',
|
|
125
|
+
// aggregationFunctionLabelSum: 'sum',
|
|
126
|
+
// aggregationFunctionLabelAvg: 'avg',
|
|
127
|
+
// aggregationFunctionLabelMin: 'min',
|
|
128
|
+
// aggregationFunctionLabelMax: 'max',
|
|
129
|
+
// aggregationFunctionLabelSize: 'size',
|
|
130
|
+
|
|
124
131
|
};
|
|
125
132
|
const nbNO = (0, _getGridLocalization.getGridLocalization)(nbNOGrid, _locale.nbNO);
|
|
126
133
|
exports.nbNO = nbNO;
|
package/node/locales/nlNL.js
CHANGED
|
@@ -30,15 +30,15 @@ const nlNLGrid = {
|
|
|
30
30
|
toolbarFiltersTooltipShow: 'Toon filters',
|
|
31
31
|
toolbarFiltersTooltipActive: count => count > 1 ? `${count} actieve filters` : `${count} filter actief`,
|
|
32
32
|
// Quick filter toolbar field
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
33
|
+
toolbarQuickFilterPlaceholder: 'Zoeken…',
|
|
34
|
+
toolbarQuickFilterLabel: 'Zoeken',
|
|
35
|
+
toolbarQuickFilterDeleteIconLabel: 'Wissen',
|
|
36
36
|
// Export selector toolbar button text
|
|
37
37
|
toolbarExport: 'Exporteren',
|
|
38
38
|
toolbarExportLabel: 'Exporteren',
|
|
39
39
|
toolbarExportCSV: 'Exporteer naar CSV',
|
|
40
40
|
toolbarExportPrint: 'Print',
|
|
41
|
-
|
|
41
|
+
toolbarExportExcel: 'Downloaden als Excel-bestand',
|
|
42
42
|
// Columns panel text
|
|
43
43
|
columnsPanelTextFieldLabel: 'Zoek kolom',
|
|
44
44
|
columnsPanelTextFieldPlaceholder: 'Kolomtitel',
|
|
@@ -48,7 +48,7 @@ const nlNLGrid = {
|
|
|
48
48
|
// Filter panel text
|
|
49
49
|
filterPanelAddFilter: 'Filter toevoegen',
|
|
50
50
|
filterPanelDeleteIconLabel: 'Verwijderen',
|
|
51
|
-
|
|
51
|
+
filterPanelLinkOperator: 'Logische operator',
|
|
52
52
|
filterPanelOperators: 'Operatoren',
|
|
53
53
|
// TODO v6: rename to filterPanelOperator
|
|
54
54
|
filterPanelOperatorAnd: 'En',
|
|
@@ -69,7 +69,7 @@ const nlNLGrid = {
|
|
|
69
69
|
filterOperatorOnOrBefore: 'is gelijk of er voor',
|
|
70
70
|
filterOperatorIsEmpty: 'is leeg',
|
|
71
71
|
filterOperatorIsNotEmpty: 'is niet leeg',
|
|
72
|
-
|
|
72
|
+
filterOperatorIsAnyOf: 'is een van',
|
|
73
73
|
// Filter values text
|
|
74
74
|
filterValueAny: 'alles',
|
|
75
75
|
filterValueTrue: 'waar',
|
|
@@ -94,10 +94,10 @@ const nlNLGrid = {
|
|
|
94
94
|
footerTotalVisibleRows: (visibleCount, totalCount) => `${visibleCount.toLocaleString()} van ${totalCount.toLocaleString()}`,
|
|
95
95
|
// Checkbox selection text
|
|
96
96
|
checkboxSelectionHeaderName: 'Checkbox selectie',
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
97
|
+
checkboxSelectionSelectAllRows: 'Alle rijen selecteren',
|
|
98
|
+
checkboxSelectionUnselectAllRows: 'Alle rijen de-selecteren',
|
|
99
|
+
checkboxSelectionSelectRow: 'Rij selecteren',
|
|
100
|
+
checkboxSelectionUnselectRow: 'Rij de-selecteren',
|
|
101
101
|
// Boolean cell text
|
|
102
102
|
booleanCellTrueLabel: 'waar',
|
|
103
103
|
booleanCellFalseLabel: 'onwaar',
|
|
@@ -114,12 +114,19 @@ const nlNLGrid = {
|
|
|
114
114
|
// Grouping columns
|
|
115
115
|
groupingColumnHeaderName: 'Groep',
|
|
116
116
|
groupColumn: name => `Groepeer op ${name}`,
|
|
117
|
-
unGroupColumn: name => `Stop groeperen op ${name}
|
|
117
|
+
unGroupColumn: name => `Stop groeperen op ${name}`,
|
|
118
|
+
// Master/detail
|
|
118
119
|
// detailPanelToggle: 'Detail panel toggle',
|
|
119
|
-
|
|
120
|
-
|
|
120
|
+
expandDetailPanel: 'Uitklappen',
|
|
121
|
+
collapseDetailPanel: 'Inklappen',
|
|
121
122
|
// Row reordering text
|
|
122
|
-
|
|
123
|
+
rowReorderingHeaderName: 'Rijen hersorteren' // Aggregation
|
|
124
|
+
// aggregationMenuItemHeader: 'Aggregation',
|
|
125
|
+
// aggregationFunctionLabelSum: 'sum',
|
|
126
|
+
// aggregationFunctionLabelAvg: 'avg',
|
|
127
|
+
// aggregationFunctionLabelMin: 'min',
|
|
128
|
+
// aggregationFunctionLabelMax: 'max',
|
|
129
|
+
// aggregationFunctionLabelSize: 'size',
|
|
123
130
|
|
|
124
131
|
};
|
|
125
132
|
const nlNL = (0, _getGridLocalization.getGridLocalization)(nlNLGrid, _locale.nlNL);
|
package/node/locales/plPL.js
CHANGED
|
@@ -30,7 +30,7 @@ const plPLGrid = {
|
|
|
30
30
|
toolbarFiltersTooltipShow: 'Pokaż filtry',
|
|
31
31
|
toolbarFiltersTooltipActive: count => `Liczba aktywnych filtrów: ${count}`,
|
|
32
32
|
// Quick filter toolbar field
|
|
33
|
-
// toolbarQuickFilterPlaceholder: 'Search
|
|
33
|
+
// toolbarQuickFilterPlaceholder: 'Search…',
|
|
34
34
|
// toolbarQuickFilterLabel: 'Search',
|
|
35
35
|
// toolbarQuickFilterDeleteIconLabel: 'Clear',
|
|
36
36
|
// Export selector toolbar button text
|
|
@@ -120,6 +120,13 @@ const plPLGrid = {
|
|
|
120
120
|
expandDetailPanel: 'Rozwiń',
|
|
121
121
|
collapseDetailPanel: 'Zwiń' // Row reordering text
|
|
122
122
|
// rowReorderingHeaderName: 'Row reordering',
|
|
123
|
+
// Aggregation
|
|
124
|
+
// aggregationMenuItemHeader: 'Aggregation',
|
|
125
|
+
// aggregationFunctionLabelSum: 'sum',
|
|
126
|
+
// aggregationFunctionLabelAvg: 'avg',
|
|
127
|
+
// aggregationFunctionLabelMin: 'min',
|
|
128
|
+
// aggregationFunctionLabelMax: 'max',
|
|
129
|
+
// aggregationFunctionLabelSize: 'size',
|
|
123
130
|
|
|
124
131
|
};
|
|
125
132
|
const plPL = (0, _getGridLocalization.getGridLocalization)(plPLGrid, _locale.plPL);
|
package/node/locales/ptBR.js
CHANGED
|
@@ -30,14 +30,14 @@ const ptBRGrid = {
|
|
|
30
30
|
toolbarFiltersTooltipShow: 'Exibir filtros',
|
|
31
31
|
toolbarFiltersTooltipActive: count => `${count} ${count !== 1 ? 'filtros' : 'filtro'} ${count !== 1 ? 'ativos' : 'ativo'}`,
|
|
32
32
|
// Quick filter toolbar field
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
33
|
+
toolbarQuickFilterPlaceholder: 'Procurar…',
|
|
34
|
+
toolbarQuickFilterLabel: 'Procurar',
|
|
35
|
+
toolbarQuickFilterDeleteIconLabel: 'Limpar',
|
|
36
36
|
// Export selector toolbar button text
|
|
37
37
|
toolbarExport: 'Exportar',
|
|
38
38
|
toolbarExportLabel: 'Exportar',
|
|
39
39
|
toolbarExportCSV: 'Baixar como CSV',
|
|
40
|
-
toolbarExportPrint: '
|
|
40
|
+
toolbarExportPrint: 'Imprimir',
|
|
41
41
|
toolbarExportExcel: 'Baixar como Excel',
|
|
42
42
|
// Columns panel text
|
|
43
43
|
columnsPanelTextFieldLabel: 'Localizar coluna',
|
|
@@ -69,7 +69,7 @@ const ptBRGrid = {
|
|
|
69
69
|
filterOperatorOnOrBefore: 'em ou antes de',
|
|
70
70
|
filterOperatorIsEmpty: 'está vazio',
|
|
71
71
|
filterOperatorIsNotEmpty: 'não está vazio',
|
|
72
|
-
|
|
72
|
+
filterOperatorIsAnyOf: 'é qualquer um dos',
|
|
73
73
|
// Filter values text
|
|
74
74
|
filterValueAny: 'qualquer',
|
|
75
75
|
filterValueTrue: 'verdadeiro',
|
|
@@ -108,9 +108,9 @@ const ptBRGrid = {
|
|
|
108
108
|
pinToRight: 'Fixar à direita',
|
|
109
109
|
unpin: 'Desafixar',
|
|
110
110
|
// Tree Data
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
111
|
+
treeDataGroupingHeaderName: 'Grupo',
|
|
112
|
+
treeDataExpand: 'mostrar filhos',
|
|
113
|
+
treeDataCollapse: 'esconder filhos',
|
|
114
114
|
// Grouping columns
|
|
115
115
|
groupingColumnHeaderName: 'Grupo',
|
|
116
116
|
groupColumn: name => `Agrupar por ${name}`,
|
|
@@ -118,8 +118,15 @@ const ptBRGrid = {
|
|
|
118
118
|
// Master/detail
|
|
119
119
|
detailPanelToggle: 'Painel de detalhes',
|
|
120
120
|
expandDetailPanel: 'Expandir',
|
|
121
|
-
collapseDetailPanel: 'Esconder'
|
|
122
|
-
//
|
|
121
|
+
collapseDetailPanel: 'Esconder',
|
|
122
|
+
// Row reordering text
|
|
123
|
+
rowReorderingHeaderName: 'Reorganizar linhas' // Aggregation
|
|
124
|
+
// aggregationMenuItemHeader: 'Aggregation',
|
|
125
|
+
// aggregationFunctionLabelSum: 'sum',
|
|
126
|
+
// aggregationFunctionLabelAvg: 'avg',
|
|
127
|
+
// aggregationFunctionLabelMin: 'min',
|
|
128
|
+
// aggregationFunctionLabelMax: 'max',
|
|
129
|
+
// aggregationFunctionLabelSize: 'size',
|
|
123
130
|
|
|
124
131
|
};
|
|
125
132
|
const ptBR = (0, _getGridLocalization.getGridLocalization)(ptBRGrid, _locale.ptBR);
|
package/node/locales/roRO.js
CHANGED
|
@@ -30,9 +30,9 @@ const roROGrid = {
|
|
|
30
30
|
toolbarFiltersTooltipShow: 'Afișează filtru',
|
|
31
31
|
toolbarFiltersTooltipActive: count => count !== 1 ? `${count} filtru activ` : `${count} filtru activ`,
|
|
32
32
|
// Quick filter toolbar field
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
33
|
+
toolbarQuickFilterPlaceholder: 'Căutare…',
|
|
34
|
+
toolbarQuickFilterLabel: 'Căutare',
|
|
35
|
+
toolbarQuickFilterDeleteIconLabel: 'Ștergere',
|
|
36
36
|
// Export selector toolbar button text
|
|
37
37
|
toolbarExport: 'Export',
|
|
38
38
|
toolbarExportLabel: 'Export',
|
|
@@ -116,11 +116,18 @@ const roROGrid = {
|
|
|
116
116
|
groupColumn: name => `Grupare după ${name}`,
|
|
117
117
|
unGroupColumn: name => `Anulare Grupare după ${name}`,
|
|
118
118
|
// Master/detail
|
|
119
|
-
|
|
119
|
+
detailPanelToggle: 'Comutare panou detalii',
|
|
120
120
|
expandDetailPanel: 'Extindere',
|
|
121
121
|
collapseDetailPanel: 'Restrângere',
|
|
122
122
|
// Row reordering text
|
|
123
|
-
rowReorderingHeaderName: 'Reordonare rânduri'
|
|
123
|
+
rowReorderingHeaderName: 'Reordonare rânduri' // Aggregation
|
|
124
|
+
// aggregationMenuItemHeader: 'Aggregation',
|
|
125
|
+
// aggregationFunctionLabelSum: 'sum',
|
|
126
|
+
// aggregationFunctionLabelAvg: 'avg',
|
|
127
|
+
// aggregationFunctionLabelMin: 'min',
|
|
128
|
+
// aggregationFunctionLabelMax: 'max',
|
|
129
|
+
// aggregationFunctionLabelSize: 'size',
|
|
130
|
+
|
|
124
131
|
};
|
|
125
132
|
const roRO = (0, _getGridLocalization.getGridLocalization)(roROGrid, _locale.roRO);
|
|
126
133
|
exports.roRO = roRO;
|
package/node/locales/ruRU.js
CHANGED
|
@@ -41,7 +41,7 @@ const ruRUGrid = {
|
|
|
41
41
|
return `${count} ${pluralForm}`;
|
|
42
42
|
},
|
|
43
43
|
// Quick filter toolbar field
|
|
44
|
-
toolbarQuickFilterPlaceholder: '
|
|
44
|
+
toolbarQuickFilterPlaceholder: 'Поиск…',
|
|
45
45
|
toolbarQuickFilterLabel: 'Поиск',
|
|
46
46
|
toolbarQuickFilterDeleteIconLabel: 'Очистить',
|
|
47
47
|
// Export selector toolbar button text
|
|
@@ -153,6 +153,13 @@ const ruRUGrid = {
|
|
|
153
153
|
expandDetailPanel: 'Развернуть',
|
|
154
154
|
collapseDetailPanel: 'Свернуть' // Row reordering text
|
|
155
155
|
// rowReorderingHeaderName: 'Row reordering',
|
|
156
|
+
// Aggregation
|
|
157
|
+
// aggregationMenuItemHeader: 'Aggregation',
|
|
158
|
+
// aggregationFunctionLabelSum: 'sum',
|
|
159
|
+
// aggregationFunctionLabelAvg: 'avg',
|
|
160
|
+
// aggregationFunctionLabelMin: 'min',
|
|
161
|
+
// aggregationFunctionLabelMax: 'max',
|
|
162
|
+
// aggregationFunctionLabelSize: 'size',
|
|
156
163
|
|
|
157
164
|
};
|
|
158
165
|
const ruRU = (0, _getGridLocalization.getGridLocalization)(ruRUGrid, _locale.ruRU);
|
package/node/locales/skSK.js
CHANGED
|
@@ -40,7 +40,7 @@ const skSKGrid = {
|
|
|
40
40
|
return `${count} ${pluralForm}`;
|
|
41
41
|
},
|
|
42
42
|
// Quick filter toolbar field
|
|
43
|
-
toolbarQuickFilterPlaceholder: 'Vyhľada
|
|
43
|
+
toolbarQuickFilterPlaceholder: 'Vyhľadať…',
|
|
44
44
|
toolbarQuickFilterLabel: 'Vyhľadať',
|
|
45
45
|
toolbarQuickFilterDeleteIconLabel: 'Vymazať',
|
|
46
46
|
// Export selector toolbar button text
|
|
@@ -155,7 +155,14 @@ const skSKGrid = {
|
|
|
155
155
|
expandDetailPanel: 'Rozbaliť',
|
|
156
156
|
collapseDetailPanel: 'Zbaliť',
|
|
157
157
|
// Row reordering text
|
|
158
|
-
rowReorderingHeaderName: 'Preusporiadávanie riadkov'
|
|
158
|
+
rowReorderingHeaderName: 'Preusporiadávanie riadkov' // Aggregation
|
|
159
|
+
// aggregationMenuItemHeader: 'Aggregation',
|
|
160
|
+
// aggregationFunctionLabelSum: 'sum',
|
|
161
|
+
// aggregationFunctionLabelAvg: 'avg',
|
|
162
|
+
// aggregationFunctionLabelMin: 'min',
|
|
163
|
+
// aggregationFunctionLabelMax: 'max',
|
|
164
|
+
// aggregationFunctionLabelSize: 'size',
|
|
165
|
+
|
|
159
166
|
};
|
|
160
167
|
const skSK = (0, _getGridLocalization.getGridLocalization)(skSKGrid, _locale.skSK);
|
|
161
168
|
exports.skSK = skSK;
|
package/node/locales/svSE.js
CHANGED
|
@@ -30,7 +30,7 @@ const svSEGrid = {
|
|
|
30
30
|
toolbarFiltersTooltipShow: 'Visa filter',
|
|
31
31
|
toolbarFiltersTooltipActive: count => count !== 1 ? `${count} aktiva filter` : `${count} aktivt filter`,
|
|
32
32
|
// Quick filter toolbar field
|
|
33
|
-
toolbarQuickFilterPlaceholder: 'Sök
|
|
33
|
+
toolbarQuickFilterPlaceholder: 'Sök…',
|
|
34
34
|
toolbarQuickFilterLabel: 'Sök',
|
|
35
35
|
toolbarQuickFilterDeleteIconLabel: 'Rensa',
|
|
36
36
|
// Export selector toolbar button text
|
|
@@ -120,7 +120,14 @@ const svSEGrid = {
|
|
|
120
120
|
expandDetailPanel: 'Expandera',
|
|
121
121
|
collapseDetailPanel: 'Kollapsa',
|
|
122
122
|
// Row reordering text
|
|
123
|
-
rowReorderingHeaderName: 'Ordna om rader'
|
|
123
|
+
rowReorderingHeaderName: 'Ordna om rader' // Aggregation
|
|
124
|
+
// aggregationMenuItemHeader: 'Aggregation',
|
|
125
|
+
// aggregationFunctionLabelSum: 'sum',
|
|
126
|
+
// aggregationFunctionLabelAvg: 'avg',
|
|
127
|
+
// aggregationFunctionLabelMin: 'min',
|
|
128
|
+
// aggregationFunctionLabelMax: 'max',
|
|
129
|
+
// aggregationFunctionLabelSize: 'size',
|
|
130
|
+
|
|
124
131
|
};
|
|
125
132
|
const svSE = (0, _getGridLocalization.getGridLocalization)(svSEGrid, _locale.svSE);
|
|
126
133
|
exports.svSE = svSE;
|
package/node/locales/trTR.js
CHANGED
|
@@ -30,7 +30,7 @@ const trTRGrid = {
|
|
|
30
30
|
toolbarFiltersTooltipShow: 'Filtreleri göster',
|
|
31
31
|
toolbarFiltersTooltipActive: count => `${count} aktif filtre`,
|
|
32
32
|
// Quick filter toolbar field
|
|
33
|
-
toolbarQuickFilterPlaceholder: 'Ara
|
|
33
|
+
toolbarQuickFilterPlaceholder: 'Ara…',
|
|
34
34
|
toolbarQuickFilterLabel: 'Ara',
|
|
35
35
|
toolbarQuickFilterDeleteIconLabel: 'Temizle',
|
|
36
36
|
// Export selector toolbar button text
|
|
@@ -120,6 +120,13 @@ const trTRGrid = {
|
|
|
120
120
|
expandDetailPanel: 'Genişlet',
|
|
121
121
|
collapseDetailPanel: 'Gizle' // Row reordering text
|
|
122
122
|
// rowReorderingHeaderName: 'Row reordering',
|
|
123
|
+
// Aggregation
|
|
124
|
+
// aggregationMenuItemHeader: 'Aggregation',
|
|
125
|
+
// aggregationFunctionLabelSum: 'sum',
|
|
126
|
+
// aggregationFunctionLabelAvg: 'avg',
|
|
127
|
+
// aggregationFunctionLabelMin: 'min',
|
|
128
|
+
// aggregationFunctionLabelMax: 'max',
|
|
129
|
+
// aggregationFunctionLabelSize: 'size',
|
|
123
130
|
|
|
124
131
|
};
|
|
125
132
|
const trTR = (0, _getGridLocalization.getGridLocalization)(trTRGrid, _locale.trTR);
|
package/node/locales/ukUA.js
CHANGED
|
@@ -47,7 +47,7 @@ const ukUAGrid = {
|
|
|
47
47
|
many: 'активних фільтрів'
|
|
48
48
|
}),
|
|
49
49
|
// Quick filter toolbar field
|
|
50
|
-
// toolbarQuickFilterPlaceholder: 'Search
|
|
50
|
+
// toolbarQuickFilterPlaceholder: 'Search…',
|
|
51
51
|
// toolbarQuickFilterLabel: 'Search',
|
|
52
52
|
// toolbarQuickFilterDeleteIconLabel: 'Clear',
|
|
53
53
|
// Export selector toolbar button text
|
|
@@ -145,6 +145,13 @@ const 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
|
const ukUA = (0, _getGridLocalization.getGridLocalization)(ukUAGrid, _locale.ukUA);
|
package/node/locales/viVN.js
CHANGED
|
@@ -30,7 +30,7 @@ const viVNGrid = {
|
|
|
30
30
|
toolbarFiltersTooltipShow: 'Hiện',
|
|
31
31
|
toolbarFiltersTooltipActive: count => count > 1 ? `${count} bộ lọc hoạt động` : `${count} bộ lọc hoạt động`,
|
|
32
32
|
// Quick filter toolbar field
|
|
33
|
-
// toolbarQuickFilterPlaceholder: 'Search
|
|
33
|
+
// toolbarQuickFilterPlaceholder: 'Search…',
|
|
34
34
|
// toolbarQuickFilterLabel: 'Search',
|
|
35
35
|
// toolbarQuickFilterDeleteIconLabel: 'Clear',
|
|
36
36
|
// Export selector toolbar button text
|
|
@@ -120,6 +120,13 @@ const viVNGrid = {
|
|
|
120
120
|
// collapseDetailPanel: 'Collapse',
|
|
121
121
|
// Row reordering text
|
|
122
122
|
// rowReorderingHeaderName: 'Row reordering',
|
|
123
|
+
// Aggregation
|
|
124
|
+
// aggregationMenuItemHeader: 'Aggregation',
|
|
125
|
+
// aggregationFunctionLabelSum: 'sum',
|
|
126
|
+
// aggregationFunctionLabelAvg: 'avg',
|
|
127
|
+
// aggregationFunctionLabelMin: 'min',
|
|
128
|
+
// aggregationFunctionLabelMax: 'max',
|
|
129
|
+
// aggregationFunctionLabelSize: 'size',
|
|
123
130
|
|
|
124
131
|
};
|
|
125
132
|
const viVN = (0, _getGridLocalization.getGridLocalization)(viVNGrid, _locale.viVN);
|