@mui/x-data-grid 5.11.1 → 5.12.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +199 -20
- package/DataGrid/DataGrid.js +26 -1
- package/README.md +2 -2
- package/colDef/gridCheckboxSelectionColDef.d.ts +1 -0
- package/colDef/gridCheckboxSelectionColDef.js +2 -1
- package/colDef/gridDateOperators.d.ts +1 -1
- package/colDef/gridNumericColDef.js +1 -1
- package/components/GridRow.d.ts +1 -1
- package/components/GridRow.js +51 -12
- package/components/cell/GridActionsCellItem.d.ts +1 -1
- package/components/cell/GridCell.d.ts +2 -1
- package/components/cell/GridCell.js +12 -7
- package/components/columnHeaders/GridColumnHeaderItem.js +9 -6
- package/components/columnSelection/GridCellCheckboxRenderer.js +0 -1
- package/components/columnSelection/GridHeaderCheckbox.js +0 -1
- package/components/containers/GridRootStyles.js +8 -3
- package/components/menu/GridMenu.js +9 -2
- package/components/panel/GridColumnsPanel.js +12 -7
- package/components/panel/GridPanelWrapper.d.ts +1 -1
- package/components/panel/GridPanelWrapper.js +3 -3
- package/components/panel/filterPanel/GridFilterForm.d.ts +61 -4
- package/components/panel/filterPanel/GridFilterForm.js +88 -8
- package/components/panel/filterPanel/GridFilterInputMultipleSingleSelect.js +0 -1
- package/components/panel/filterPanel/GridFilterPanel.d.ts +8 -5
- package/components/panel/filterPanel/GridFilterPanel.js +26 -11
- package/components/toolbar/GridToolbarColumnsButton.js +0 -1
- package/components/toolbar/GridToolbarDensitySelector.js +0 -1
- package/components/toolbar/GridToolbarExportContainer.js +0 -1
- package/components/toolbar/GridToolbarFilterButton.d.ts +1 -1
- package/components/toolbar/GridToolbarFilterButton.js +0 -1
- package/components/toolbar/GridToolbarQuickFilter.d.ts +7 -0
- package/components/toolbar/GridToolbarQuickFilter.js +57 -4
- package/constants/defaultGridSlotsComponents.js +2 -1
- package/constants/gridClasses.d.ts +4 -0
- package/constants/gridClasses.js +1 -1
- package/constants/localeTextConstants.js +1 -0
- package/hooks/core/useGridStateInitialization.js +19 -6
- package/hooks/features/columnMenu/useGridColumnMenu.js +22 -0
- package/hooks/features/columns/gridColumnsInterfaces.d.ts +3 -0
- package/hooks/features/columns/useGridColumnSpanning.d.ts +1 -1
- package/hooks/features/columns/useGridColumnSpanning.js +1 -1
- package/hooks/features/columns/useGridColumns.d.ts +1 -1
- package/hooks/features/columns/useGridColumns.js +13 -15
- package/hooks/features/dimensions/gridDimensionsApi.d.ts +5 -0
- package/hooks/features/dimensions/useGridDimensions.js +9 -8
- package/hooks/features/editRows/useGridCellEditing.new.js +11 -4
- package/hooks/features/editRows/useGridEditing.old.js +1 -1
- package/hooks/features/editRows/useGridRowEditing.new.js +10 -4
- package/hooks/features/events/useGridEvents.d.ts +1 -1
- package/hooks/features/events/useGridEvents.js +2 -0
- package/hooks/features/filter/gridFilterSelector.d.ts +5 -0
- package/hooks/features/filter/gridFilterSelector.js +6 -0
- package/hooks/features/filter/gridFilterState.d.ts +1 -1
- package/hooks/features/filter/gridFilterUtils.d.ts +10 -2
- package/hooks/features/filter/gridFilterUtils.js +3 -6
- package/hooks/features/filter/useGridFilter.d.ts +1 -1
- package/hooks/features/filter/useGridFilter.js +29 -12
- package/hooks/features/pagination/useGridPage.js +1 -1
- package/hooks/features/pagination/useGridPageSize.js +1 -1
- package/hooks/features/rows/useGridRowsMeta.d.ts +1 -1
- package/hooks/features/rows/useGridRowsMeta.js +133 -67
- package/hooks/features/selection/useGridSelection.js +1 -1
- package/hooks/features/selection/useGridSelectionPreProcessors.js +8 -6
- package/hooks/features/sorting/useGridSorting.d.ts +1 -1
- package/hooks/features/sorting/useGridSorting.js +1 -1
- package/hooks/features/virtualization/useGridVirtualScroller.d.ts +2 -1
- package/hooks/features/virtualization/useGridVirtualScroller.js +65 -11
- package/index.js +1 -1
- package/internals/index.d.ts +1 -0
- package/legacy/DataGrid/DataGrid.js +26 -1
- package/legacy/colDef/gridCheckboxSelectionColDef.js +2 -1
- package/legacy/colDef/gridNumericColDef.js +1 -1
- package/legacy/components/GridRow.js +56 -12
- package/legacy/components/cell/GridCell.js +12 -7
- package/legacy/components/columnHeaders/GridColumnHeaderItem.js +11 -6
- package/legacy/components/columnSelection/GridCellCheckboxRenderer.js +0 -1
- package/legacy/components/columnSelection/GridHeaderCheckbox.js +0 -1
- package/legacy/components/containers/GridRootStyles.js +10 -7
- package/legacy/components/menu/GridMenu.js +9 -2
- package/legacy/components/panel/GridColumnsPanel.js +14 -7
- package/legacy/components/panel/GridPanelWrapper.js +3 -3
- package/legacy/components/panel/filterPanel/GridFilterForm.js +89 -8
- package/legacy/components/panel/filterPanel/GridFilterInputMultipleSingleSelect.js +0 -1
- package/legacy/components/panel/filterPanel/GridFilterPanel.js +28 -12
- package/legacy/components/toolbar/GridToolbarColumnsButton.js +0 -1
- package/legacy/components/toolbar/GridToolbarDensitySelector.js +0 -1
- package/legacy/components/toolbar/GridToolbarExportContainer.js +0 -1
- package/legacy/components/toolbar/GridToolbarFilterButton.js +0 -1
- package/legacy/components/toolbar/GridToolbarQuickFilter.js +67 -6
- package/legacy/constants/defaultGridSlotsComponents.js +2 -1
- package/legacy/constants/gridClasses.js +1 -1
- package/legacy/constants/localeTextConstants.js +1 -0
- package/legacy/hooks/core/useGridStateInitialization.js +18 -6
- package/legacy/hooks/features/columnMenu/useGridColumnMenu.js +22 -0
- package/legacy/hooks/features/columns/useGridColumnSpanning.js +1 -1
- package/legacy/hooks/features/columns/useGridColumns.js +13 -15
- package/legacy/hooks/features/dimensions/useGridDimensions.js +9 -8
- package/legacy/hooks/features/editRows/useGridCellEditing.new.js +14 -7
- package/legacy/hooks/features/editRows/useGridEditing.old.js +1 -1
- package/legacy/hooks/features/editRows/useGridRowEditing.new.js +10 -4
- package/legacy/hooks/features/events/useGridEvents.js +2 -0
- package/legacy/hooks/features/filter/gridFilterSelector.js +8 -0
- package/legacy/hooks/features/filter/gridFilterUtils.js +4 -7
- package/legacy/hooks/features/filter/useGridFilter.js +33 -12
- package/legacy/hooks/features/pagination/useGridPage.js +1 -1
- package/legacy/hooks/features/pagination/useGridPageSize.js +1 -1
- package/legacy/hooks/features/rows/useGridRowsMeta.js +133 -66
- package/legacy/hooks/features/selection/useGridSelection.js +1 -1
- package/legacy/hooks/features/selection/useGridSelectionPreProcessors.js +8 -6
- package/legacy/hooks/features/sorting/useGridSorting.js +1 -1
- package/legacy/hooks/features/virtualization/useGridVirtualScroller.js +84 -26
- package/legacy/index.js +1 -1
- package/legacy/locales/arSD.js +1 -0
- package/legacy/locales/bgBG.js +1 -0
- package/legacy/locales/csCZ.js +1 -0
- package/legacy/locales/daDK.js +1 -0
- package/legacy/locales/deDE.js +1 -0
- package/legacy/locales/elGR.js +1 -0
- package/legacy/locales/esES.js +1 -0
- package/legacy/locales/faIR.js +1 -0
- package/legacy/locales/fiFI.js +1 -0
- package/legacy/locales/frFR.js +1 -0
- package/legacy/locales/heIL.js +10 -9
- package/legacy/locales/huHU.js +1 -0
- package/legacy/locales/itIT.js +1 -0
- package/legacy/locales/jaJP.js +29 -24
- package/legacy/locales/koKR.js +1 -0
- package/legacy/locales/nbNO.js +128 -0
- package/legacy/locales/nlNL.js +1 -0
- package/legacy/locales/plPL.js +1 -0
- package/legacy/locales/ptBR.js +1 -0
- package/legacy/locales/ruRU.js +7 -6
- package/legacy/locales/skSK.js +1 -0
- package/legacy/locales/trTR.js +8 -7
- package/legacy/locales/ukUA.js +1 -0
- package/legacy/locales/viVN.js +1 -0
- package/legacy/locales/zhCN.js +1 -0
- package/legacy/models/events/gridEvents.js +2 -0
- package/legacy/models/gridApiCaches.js +1 -0
- package/legacy/models/params/gridMenuParams.js +1 -0
- package/legacy/models/params/index.js +2 -1
- package/locales/arSD.js +1 -0
- package/locales/bgBG.js +1 -0
- package/locales/csCZ.js +1 -0
- package/locales/daDK.js +1 -0
- package/locales/deDE.js +1 -0
- package/locales/elGR.js +1 -0
- package/locales/esES.js +1 -0
- package/locales/faIR.js +1 -0
- package/locales/fiFI.js +1 -0
- package/locales/frFR.js +1 -0
- package/locales/heIL.js +10 -9
- package/locales/huHU.js +1 -0
- package/locales/itIT.js +1 -0
- package/locales/jaJP.js +25 -24
- package/locales/koKR.js +1 -0
- package/locales/nbNO.d.ts +2 -0
- package/locales/nbNO.js +116 -0
- package/locales/nlNL.js +1 -0
- package/locales/plPL.js +1 -0
- package/locales/ptBR.js +1 -0
- package/locales/ruRU.js +7 -6
- package/locales/skSK.js +1 -0
- package/locales/trTR.js +8 -7
- package/locales/ukUA.js +1 -0
- package/locales/viVN.js +1 -0
- package/locales/zhCN.js +1 -0
- package/models/api/gridCallbackDetails.d.ts +6 -1
- package/models/api/gridCoreApi.d.ts +2 -6
- package/models/api/gridFilterApi.d.ts +8 -1
- package/models/api/gridLocaleTextApi.d.ts +1 -0
- package/models/api/gridRowsMetaApi.d.ts +24 -0
- package/models/api/gridStateApi.d.ts +14 -3
- package/models/colDef/gridColDef.d.ts +4 -4
- package/models/events/gridEventLookup.d.ts +16 -1
- package/models/events/gridEvents.d.ts +3 -1
- package/models/events/gridEvents.js +2 -0
- package/models/gridApiCaches.d.ts +6 -0
- package/models/gridApiCaches.js +1 -0
- package/models/gridIconSlotsComponent.d.ts +5 -0
- package/models/params/gridMenuParams.d.ts +7 -0
- package/models/params/gridMenuParams.js +1 -0
- package/models/params/gridRowParams.d.ts +1 -1
- package/models/params/index.d.ts +1 -0
- package/models/params/index.js +2 -1
- package/models/props/DataGridProps.d.ts +24 -2
- package/modern/DataGrid/DataGrid.js +26 -1
- package/modern/colDef/gridCheckboxSelectionColDef.js +2 -1
- package/modern/colDef/gridNumericColDef.js +1 -1
- package/modern/components/GridRow.js +51 -12
- package/modern/components/cell/GridCell.js +12 -7
- package/modern/components/columnHeaders/GridColumnHeaderItem.js +9 -6
- package/modern/components/columnSelection/GridCellCheckboxRenderer.js +0 -1
- package/modern/components/columnSelection/GridHeaderCheckbox.js +0 -1
- package/modern/components/containers/GridRootStyles.js +8 -3
- package/modern/components/menu/GridMenu.js +9 -2
- package/modern/components/panel/GridColumnsPanel.js +12 -7
- package/modern/components/panel/GridPanelWrapper.js +3 -3
- package/modern/components/panel/filterPanel/GridFilterForm.js +88 -8
- package/modern/components/panel/filterPanel/GridFilterInputMultipleSingleSelect.js +0 -1
- package/modern/components/panel/filterPanel/GridFilterPanel.js +26 -11
- package/modern/components/toolbar/GridToolbarColumnsButton.js +0 -1
- package/modern/components/toolbar/GridToolbarDensitySelector.js +0 -1
- package/modern/components/toolbar/GridToolbarExportContainer.js +0 -1
- package/modern/components/toolbar/GridToolbarFilterButton.js +0 -1
- package/modern/components/toolbar/GridToolbarQuickFilter.js +57 -4
- package/modern/constants/defaultGridSlotsComponents.js +2 -1
- package/modern/constants/gridClasses.js +1 -1
- package/modern/constants/localeTextConstants.js +1 -0
- package/modern/hooks/core/useGridStateInitialization.js +19 -6
- package/modern/hooks/features/columnMenu/useGridColumnMenu.js +22 -0
- package/modern/hooks/features/columns/useGridColumnSpanning.js +1 -1
- package/modern/hooks/features/columns/useGridColumns.js +12 -14
- package/modern/hooks/features/dimensions/useGridDimensions.js +9 -8
- package/modern/hooks/features/editRows/useGridCellEditing.new.js +10 -3
- package/modern/hooks/features/editRows/useGridEditing.old.js +1 -1
- package/modern/hooks/features/editRows/useGridRowEditing.new.js +9 -3
- package/modern/hooks/features/events/useGridEvents.js +2 -0
- package/modern/hooks/features/filter/gridFilterSelector.js +6 -0
- package/modern/hooks/features/filter/gridFilterUtils.js +3 -6
- package/modern/hooks/features/filter/useGridFilter.js +29 -12
- package/modern/hooks/features/pagination/useGridPage.js +1 -1
- package/modern/hooks/features/pagination/useGridPageSize.js +1 -1
- package/modern/hooks/features/rows/useGridRowsMeta.js +129 -59
- package/modern/hooks/features/selection/useGridSelection.js +1 -1
- package/modern/hooks/features/selection/useGridSelectionPreProcessors.js +8 -6
- package/modern/hooks/features/sorting/useGridSorting.js +1 -1
- package/modern/hooks/features/virtualization/useGridVirtualScroller.js +65 -11
- package/modern/index.js +1 -1
- package/modern/locales/arSD.js +1 -0
- package/modern/locales/bgBG.js +1 -0
- package/modern/locales/csCZ.js +1 -0
- package/modern/locales/daDK.js +1 -0
- package/modern/locales/deDE.js +1 -0
- package/modern/locales/elGR.js +1 -0
- package/modern/locales/esES.js +1 -0
- package/modern/locales/faIR.js +1 -0
- package/modern/locales/fiFI.js +1 -0
- package/modern/locales/frFR.js +1 -0
- package/modern/locales/heIL.js +10 -9
- package/modern/locales/huHU.js +1 -0
- package/modern/locales/itIT.js +1 -0
- package/modern/locales/jaJP.js +25 -24
- package/modern/locales/koKR.js +1 -0
- package/modern/locales/nbNO.js +116 -0
- package/modern/locales/nlNL.js +1 -0
- package/modern/locales/plPL.js +1 -0
- package/modern/locales/ptBR.js +1 -0
- package/modern/locales/ruRU.js +7 -6
- package/modern/locales/skSK.js +1 -0
- package/modern/locales/trTR.js +8 -7
- package/modern/locales/ukUA.js +1 -0
- package/modern/locales/viVN.js +1 -0
- package/modern/locales/zhCN.js +1 -0
- package/modern/models/events/gridEvents.js +2 -0
- package/modern/models/gridApiCaches.js +1 -0
- package/modern/models/params/gridMenuParams.js +1 -0
- package/modern/models/params/index.js +2 -1
- package/node/DataGrid/DataGrid.js +26 -1
- package/node/colDef/gridCheckboxSelectionColDef.js +4 -2
- package/node/colDef/gridNumericColDef.js +1 -1
- package/node/components/GridRow.js +53 -12
- package/node/components/cell/GridCell.js +12 -7
- package/node/components/columnHeaders/GridColumnHeaderItem.js +9 -6
- package/node/components/columnSelection/GridCellCheckboxRenderer.js +0 -1
- package/node/components/columnSelection/GridHeaderCheckbox.js +0 -1
- package/node/components/containers/GridRootStyles.js +8 -3
- package/node/components/menu/GridMenu.js +10 -2
- package/node/components/panel/GridColumnsPanel.js +12 -7
- package/node/components/panel/GridPanelWrapper.js +5 -3
- package/node/components/panel/filterPanel/GridFilterForm.js +91 -9
- package/node/components/panel/filterPanel/GridFilterInputMultipleSingleSelect.js +0 -1
- package/node/components/panel/filterPanel/GridFilterPanel.js +28 -11
- package/node/components/toolbar/GridToolbarColumnsButton.js +0 -1
- package/node/components/toolbar/GridToolbarDensitySelector.js +0 -1
- package/node/components/toolbar/GridToolbarExportContainer.js +0 -1
- package/node/components/toolbar/GridToolbarFilterButton.js +0 -1
- package/node/components/toolbar/GridToolbarQuickFilter.js +61 -4
- package/node/constants/defaultGridSlotsComponents.js +2 -1
- package/node/constants/gridClasses.js +1 -1
- package/node/constants/localeTextConstants.js +1 -0
- package/node/hooks/core/useGridStateInitialization.js +19 -6
- package/node/hooks/features/columnMenu/useGridColumnMenu.js +23 -0
- package/node/hooks/features/columns/useGridColumnSpanning.js +11 -16
- package/node/hooks/features/columns/useGridColumns.js +13 -15
- package/node/hooks/features/dimensions/useGridDimensions.js +9 -8
- package/node/hooks/features/editRows/useGridCellEditing.new.js +11 -4
- package/node/hooks/features/editRows/useGridEditing.old.js +1 -1
- package/node/hooks/features/editRows/useGridRowEditing.new.js +10 -4
- package/node/hooks/features/events/useGridEvents.js +2 -0
- package/node/hooks/features/filter/gridFilterSelector.js +9 -2
- package/node/hooks/features/filter/gridFilterUtils.js +4 -5
- package/node/hooks/features/filter/useGridFilter.js +28 -11
- package/node/hooks/features/pagination/useGridPage.js +1 -1
- package/node/hooks/features/pagination/useGridPageSize.js +1 -1
- package/node/hooks/features/rows/useGridRowsMeta.js +136 -69
- package/node/hooks/features/selection/useGridSelection.js +1 -1
- package/node/hooks/features/selection/useGridSelectionPreProcessors.js +7 -5
- package/node/hooks/features/sorting/useGridSorting.js +1 -1
- package/node/hooks/features/virtualization/useGridVirtualScroller.js +65 -12
- package/node/index.js +1 -1
- package/node/locales/arSD.js +1 -0
- package/node/locales/bgBG.js +1 -0
- package/node/locales/csCZ.js +1 -0
- package/node/locales/daDK.js +1 -0
- package/node/locales/deDE.js +1 -0
- package/node/locales/elGR.js +1 -0
- package/node/locales/esES.js +1 -0
- package/node/locales/faIR.js +1 -0
- package/node/locales/fiFI.js +1 -0
- package/node/locales/frFR.js +1 -0
- package/node/locales/heIL.js +10 -9
- package/node/locales/huHU.js +1 -0
- package/node/locales/itIT.js +1 -0
- package/node/locales/jaJP.js +25 -24
- package/node/locales/koKR.js +1 -0
- package/node/locales/nbNO.js +126 -0
- package/node/locales/nlNL.js +1 -0
- package/node/locales/plPL.js +1 -0
- package/node/locales/ptBR.js +1 -0
- package/node/locales/ruRU.js +7 -6
- package/node/locales/skSK.js +1 -0
- package/node/locales/trTR.js +8 -7
- package/node/locales/ukUA.js +1 -0
- package/node/locales/viVN.js +1 -0
- package/node/locales/zhCN.js +1 -0
- package/node/models/events/gridEvents.js +2 -0
- package/node/models/gridApiCaches.js +5 -0
- package/node/models/params/gridMenuParams.js +5 -0
- package/node/models/params/index.js +13 -0
- package/package.json +6 -5
package/legacy/locales/heIL.js
CHANGED
|
@@ -23,15 +23,15 @@ var heILGrid = {
|
|
|
23
23
|
return count !== 1 ? "".concat(count, " \u05DE\u05E1\u05E0\u05E0\u05D9\u05DD \u05E4\u05E2\u05D9\u05DC\u05D9\u05DD") : "\u05DE\u05E1\u05E0\u05DF \u05D0\u05D7\u05D3 \u05E4\u05E2\u05D9\u05DC";
|
|
24
24
|
},
|
|
25
25
|
// Quick filter toolbar field
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
26
|
+
toolbarQuickFilterPlaceholder: 'חיפוש...',
|
|
27
|
+
toolbarQuickFilterLabel: 'חיפוש',
|
|
28
|
+
toolbarQuickFilterDeleteIconLabel: 'ניקוי',
|
|
29
29
|
// Export selector toolbar button text
|
|
30
30
|
toolbarExport: 'ייצוא',
|
|
31
31
|
toolbarExportLabel: 'ייצוא',
|
|
32
|
-
toolbarExportCSV: '
|
|
32
|
+
toolbarExportCSV: 'ייצוא ל- CSV',
|
|
33
33
|
toolbarExportPrint: 'הדפסה',
|
|
34
|
-
|
|
34
|
+
toolbarExportExcel: 'ייצוא ל- Excel',
|
|
35
35
|
// Columns panel text
|
|
36
36
|
columnsPanelTextFieldLabel: 'חפש עמודה',
|
|
37
37
|
columnsPanelTextFieldPlaceholder: 'כותרת עמודה',
|
|
@@ -41,7 +41,7 @@ var heILGrid = {
|
|
|
41
41
|
// Filter panel text
|
|
42
42
|
filterPanelAddFilter: 'הוסף מסנן',
|
|
43
43
|
filterPanelDeleteIconLabel: 'מחק',
|
|
44
|
-
|
|
44
|
+
filterPanelLinkOperator: 'אופרטור לוגי',
|
|
45
45
|
filterPanelOperators: 'אופרטור',
|
|
46
46
|
// TODO v6: rename to filterPanelOperator
|
|
47
47
|
filterPanelOperatorAnd: 'וגם',
|
|
@@ -119,9 +119,10 @@ var heILGrid = {
|
|
|
119
119
|
return "\u05D4\u05E4\u05E1\u05E7 \u05DC\u05E7\u05D1\u05E5 \u05DC\u05E4\u05D9 ".concat(name);
|
|
120
120
|
},
|
|
121
121
|
// Master/detail
|
|
122
|
+
// detailPanelToggle: 'Detail panel toggle',
|
|
122
123
|
expandDetailPanel: 'הרחב',
|
|
123
|
-
collapseDetailPanel: 'כווץ'
|
|
124
|
-
//
|
|
125
|
-
|
|
124
|
+
collapseDetailPanel: 'כווץ',
|
|
125
|
+
// Row reordering text
|
|
126
|
+
rowReorderingHeaderName: 'סידור שורות'
|
|
126
127
|
};
|
|
127
128
|
export var heIL = getGridLocalization(heILGrid, heILCore);
|
package/legacy/locales/huHU.js
CHANGED
|
@@ -119,6 +119,7 @@ var huHUGrid = {
|
|
|
119
119
|
return "".concat(name, " szerinti csoportos\xEDt\xE1s t\xF6rl\xE9se");
|
|
120
120
|
},
|
|
121
121
|
// Master/detail
|
|
122
|
+
// detailPanelToggle: 'Detail panel toggle',
|
|
122
123
|
expandDetailPanel: 'Kibontás',
|
|
123
124
|
collapseDetailPanel: 'Összecsukás' // Row reordering text
|
|
124
125
|
// rowReorderingHeaderName: 'Row reordering',
|
package/legacy/locales/itIT.js
CHANGED
|
@@ -118,6 +118,7 @@ var itITGrid = {
|
|
|
118
118
|
unGroupColumn: function unGroupColumn(name) {
|
|
119
119
|
return "Annulla raggruppamento per ".concat(name);
|
|
120
120
|
} // Master/detail
|
|
121
|
+
// detailPanelToggle: 'Detail panel toggle',
|
|
121
122
|
// expandDetailPanel: 'Expand',
|
|
122
123
|
// collapseDetailPanel: 'Collapse',
|
|
123
124
|
// Row reordering text
|
package/legacy/locales/jaJP.js
CHANGED
|
@@ -23,15 +23,15 @@ var jaJPGrid = {
|
|
|
23
23
|
return "".concat(count, "\u4EF6\u306E\u30D5\u30A3\u30EB\u30BF\u30FC\u3092\u9069\u7528\u4E2D");
|
|
24
24
|
},
|
|
25
25
|
// Quick filter toolbar field
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
26
|
+
toolbarQuickFilterPlaceholder: '検索...',
|
|
27
|
+
toolbarQuickFilterLabel: '検索',
|
|
28
|
+
toolbarQuickFilterDeleteIconLabel: 'クリア',
|
|
29
29
|
// Export selector toolbar button text
|
|
30
30
|
toolbarExport: 'エクスポート',
|
|
31
31
|
toolbarExportLabel: 'エクスポート',
|
|
32
32
|
toolbarExportCSV: 'CSVダウンロード',
|
|
33
|
-
|
|
34
|
-
|
|
33
|
+
toolbarExportPrint: '印刷',
|
|
34
|
+
toolbarExportExcel: 'Excelダウンロード',
|
|
35
35
|
// Columns panel text
|
|
36
36
|
columnsPanelTextFieldLabel: '列検索',
|
|
37
37
|
columnsPanelTextFieldPlaceholder: '検索クエリを入力...',
|
|
@@ -62,7 +62,7 @@ var jaJPGrid = {
|
|
|
62
62
|
filterOperatorOnOrBefore: '...以前',
|
|
63
63
|
filterOperatorIsEmpty: '...空である',
|
|
64
64
|
filterOperatorIsNotEmpty: '...空でない',
|
|
65
|
-
|
|
65
|
+
filterOperatorIsAnyOf: '...のいずれか',
|
|
66
66
|
// Filter values text
|
|
67
67
|
// filterValueAny: 'any',
|
|
68
68
|
// filterValueTrue: 'true',
|
|
@@ -93,31 +93,36 @@ var jaJPGrid = {
|
|
|
93
93
|
},
|
|
94
94
|
// Checkbox selection text
|
|
95
95
|
checkboxSelectionHeaderName: 'チェックボックス',
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
96
|
+
checkboxSelectionSelectAllRows: 'すべての行を選択',
|
|
97
|
+
checkboxSelectionUnselectAllRows: 'すべての行選択を解除',
|
|
98
|
+
checkboxSelectionSelectRow: '行を選択',
|
|
99
|
+
checkboxSelectionUnselectRow: '行選択を解除',
|
|
100
100
|
// Boolean cell text
|
|
101
101
|
booleanCellTrueLabel: '真',
|
|
102
|
-
booleanCellFalseLabel: '偽'
|
|
102
|
+
booleanCellFalseLabel: '偽',
|
|
103
|
+
// Actions cell more text
|
|
103
104
|
// actionsCellMore: 'more',
|
|
104
105
|
// Column pinning text
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
106
|
+
pinToLeft: '左側に固定',
|
|
107
|
+
pinToRight: '右側に固定',
|
|
108
|
+
unpin: '固定解除',
|
|
108
109
|
// Tree Data
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
110
|
+
treeDataGroupingHeaderName: 'グループ',
|
|
111
|
+
treeDataExpand: '展開',
|
|
112
|
+
treeDataCollapse: '折りたたみ',
|
|
112
113
|
// Grouping columns
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
114
|
+
groupingColumnHeaderName: 'グループ',
|
|
115
|
+
groupColumn: function groupColumn(name) {
|
|
116
|
+
return "".concat(name, "\u3067\u30B0\u30EB\u30FC\u30D7\u5316");
|
|
117
|
+
},
|
|
118
|
+
unGroupColumn: function unGroupColumn(name) {
|
|
119
|
+
return "".concat(name, "\u306E\u30B0\u30EB\u30FC\u30D7\u3092\u89E3\u9664");
|
|
120
|
+
},
|
|
116
121
|
// Master/detail
|
|
117
|
-
//
|
|
118
|
-
|
|
122
|
+
// detailPanelToggle: 'Detail panel toggle',
|
|
123
|
+
expandDetailPanel: '展開',
|
|
124
|
+
collapseDetailPanel: '折りたたみ',
|
|
119
125
|
// Row reordering text
|
|
120
|
-
|
|
121
|
-
|
|
126
|
+
rowReorderingHeaderName: '行並び替え'
|
|
122
127
|
};
|
|
123
128
|
export var jaJP = getGridLocalization(jaJPGrid, jaJPCore);
|
package/legacy/locales/koKR.js
CHANGED
|
@@ -114,6 +114,7 @@ var koKRGrid = {
|
|
|
114
114
|
// groupColumn: name => `Group by ${name}`,
|
|
115
115
|
// unGroupColumn: name => `Stop grouping by ${name}`,
|
|
116
116
|
// Master/detail
|
|
117
|
+
// detailPanelToggle: 'Detail panel toggle',
|
|
117
118
|
// expandDetailPanel: 'Expand',
|
|
118
119
|
// collapseDetailPanel: 'Collapse',
|
|
119
120
|
// Row reordering text
|
|
@@ -0,0 +1,128 @@
|
|
|
1
|
+
import { nbNO as nbNOCore } from '@mui/material/locale';
|
|
2
|
+
import { getGridLocalization } from '../utils/getGridLocalization';
|
|
3
|
+
var nbNOGrid = {
|
|
4
|
+
// Root
|
|
5
|
+
noRowsLabel: 'Ingen rader',
|
|
6
|
+
noResultsOverlayLabel: 'Fant ingen resultat.',
|
|
7
|
+
errorOverlayDefaultLabel: 'Det skjedde en feil.',
|
|
8
|
+
// Density selector toolbar button text
|
|
9
|
+
toolbarDensity: 'Tetthet',
|
|
10
|
+
toolbarDensityLabel: 'Tetthet',
|
|
11
|
+
toolbarDensityCompact: 'Kompakt',
|
|
12
|
+
toolbarDensityStandard: 'Standard',
|
|
13
|
+
toolbarDensityComfortable: 'Komfortabelt',
|
|
14
|
+
// Columns selector toolbar button text
|
|
15
|
+
toolbarColumns: 'Kolonner',
|
|
16
|
+
toolbarColumnsLabel: 'Velg kolonner',
|
|
17
|
+
// Filters toolbar button text
|
|
18
|
+
toolbarFilters: 'Filter',
|
|
19
|
+
toolbarFiltersLabel: 'Vis filter',
|
|
20
|
+
toolbarFiltersTooltipHide: 'Skjul fitler',
|
|
21
|
+
toolbarFiltersTooltipShow: 'Vis filter',
|
|
22
|
+
toolbarFiltersTooltipActive: function toolbarFiltersTooltipActive(count) {
|
|
23
|
+
return count !== 1 ? "".concat(count, " aktive filter") : "".concat(count, " aktivt filter");
|
|
24
|
+
},
|
|
25
|
+
// Quick filter toolbar field
|
|
26
|
+
toolbarQuickFilterPlaceholder: 'Søk...',
|
|
27
|
+
toolbarQuickFilterLabel: 'Søk',
|
|
28
|
+
toolbarQuickFilterDeleteIconLabel: 'Slett',
|
|
29
|
+
// Export selector toolbar button text
|
|
30
|
+
toolbarExport: 'Eksporter',
|
|
31
|
+
toolbarExportLabel: 'Eksporter',
|
|
32
|
+
toolbarExportCSV: 'Last ned som CSV',
|
|
33
|
+
toolbarExportPrint: 'Skriv ut',
|
|
34
|
+
toolbarExportExcel: 'Last ned som Excel',
|
|
35
|
+
// Columns panel text
|
|
36
|
+
columnsPanelTextFieldLabel: 'Finn kolonne',
|
|
37
|
+
columnsPanelTextFieldPlaceholder: 'Kolonne tittel',
|
|
38
|
+
columnsPanelDragIconLabel: 'Reorganiser kolonne',
|
|
39
|
+
columnsPanelShowAllButton: 'Vis alle',
|
|
40
|
+
columnsPanelHideAllButton: 'Skjul alle',
|
|
41
|
+
// Filter panel text
|
|
42
|
+
filterPanelAddFilter: 'Legg til filter',
|
|
43
|
+
filterPanelDeleteIconLabel: 'Slett',
|
|
44
|
+
filterPanelLinkOperator: 'Logisk operator',
|
|
45
|
+
filterPanelOperators: 'Operatører',
|
|
46
|
+
// TODO v6: rename to filterPanelOperator
|
|
47
|
+
filterPanelOperatorAnd: 'Og',
|
|
48
|
+
filterPanelOperatorOr: 'Eller',
|
|
49
|
+
filterPanelColumns: 'Kolonner',
|
|
50
|
+
filterPanelInputLabel: 'Verdi',
|
|
51
|
+
filterPanelInputPlaceholder: 'Filter verdi',
|
|
52
|
+
// Filter operators text
|
|
53
|
+
filterOperatorContains: 'inneholder',
|
|
54
|
+
filterOperatorEquals: 'er lik',
|
|
55
|
+
filterOperatorStartsWith: 'starter med',
|
|
56
|
+
filterOperatorEndsWith: 'slutter med',
|
|
57
|
+
filterOperatorIs: 'er',
|
|
58
|
+
filterOperatorNot: 'er ikke',
|
|
59
|
+
filterOperatorAfter: 'er etter',
|
|
60
|
+
filterOperatorOnOrAfter: 'er på eller etter',
|
|
61
|
+
filterOperatorBefore: 'er før',
|
|
62
|
+
filterOperatorOnOrBefore: 'er på eller før',
|
|
63
|
+
filterOperatorIsEmpty: 'er tom',
|
|
64
|
+
filterOperatorIsNotEmpty: 'er ikke tom',
|
|
65
|
+
filterOperatorIsAnyOf: 'er en av',
|
|
66
|
+
// Filter values text
|
|
67
|
+
filterValueAny: 'noen',
|
|
68
|
+
filterValueTrue: 'sant',
|
|
69
|
+
filterValueFalse: 'usant',
|
|
70
|
+
// Column menu text
|
|
71
|
+
columnMenuLabel: 'Meny',
|
|
72
|
+
columnMenuShowColumns: 'Vis kolonner',
|
|
73
|
+
columnMenuFilter: 'Filter',
|
|
74
|
+
columnMenuHideColumn: 'Skjul',
|
|
75
|
+
columnMenuUnsort: 'Usorter',
|
|
76
|
+
columnMenuSortAsc: 'Sorter ØKENDE',
|
|
77
|
+
columnMenuSortDesc: 'Sorter SYNKENDE',
|
|
78
|
+
// Column header text
|
|
79
|
+
columnHeaderFiltersTooltipActive: function columnHeaderFiltersTooltipActive(count) {
|
|
80
|
+
return count !== 1 ? "".concat(count, " aktive filter") : "".concat(count, " aktivt filter");
|
|
81
|
+
},
|
|
82
|
+
columnHeaderFiltersLabel: 'Vis filter',
|
|
83
|
+
columnHeaderSortIconLabel: 'Sorter',
|
|
84
|
+
// Rows selected footer text
|
|
85
|
+
footerRowSelected: function footerRowSelected(count) {
|
|
86
|
+
return count !== 1 ? "".concat(count.toLocaleString(), " rader valgt") : "".concat(count.toLocaleString(), " rad valgt");
|
|
87
|
+
},
|
|
88
|
+
// Total row amount footer text
|
|
89
|
+
footerTotalRows: 'Totalt antall rader:',
|
|
90
|
+
// Total visible row amount footer text
|
|
91
|
+
footerTotalVisibleRows: function footerTotalVisibleRows(visibleCount, totalCount) {
|
|
92
|
+
return "".concat(visibleCount.toLocaleString(), " av ").concat(totalCount.toLocaleString());
|
|
93
|
+
},
|
|
94
|
+
// Checkbox selection text
|
|
95
|
+
checkboxSelectionHeaderName: 'Avmerkingsboks valgt',
|
|
96
|
+
checkboxSelectionSelectAllRows: 'Velg alle rader',
|
|
97
|
+
checkboxSelectionUnselectAllRows: 'Velg bort alle rader',
|
|
98
|
+
checkboxSelectionSelectRow: 'Velg rad',
|
|
99
|
+
checkboxSelectionUnselectRow: 'Velg bort rad',
|
|
100
|
+
// Boolean cell text
|
|
101
|
+
booleanCellTrueLabel: 'sant',
|
|
102
|
+
booleanCellFalseLabel: 'usant',
|
|
103
|
+
// Actions cell more text
|
|
104
|
+
actionsCellMore: 'mer',
|
|
105
|
+
// Column pinning text
|
|
106
|
+
pinToLeft: 'Fest til venstre',
|
|
107
|
+
pinToRight: 'Fest til høyre',
|
|
108
|
+
unpin: 'Løsne',
|
|
109
|
+
// Tree Data
|
|
110
|
+
treeDataGroupingHeaderName: 'Grupper',
|
|
111
|
+
treeDataExpand: 'se barn',
|
|
112
|
+
treeDataCollapse: 'skjul barn',
|
|
113
|
+
// Grouping columns
|
|
114
|
+
groupingColumnHeaderName: 'Grupper',
|
|
115
|
+
groupColumn: function groupColumn(name) {
|
|
116
|
+
return "Grupper p\xE5 ".concat(name);
|
|
117
|
+
},
|
|
118
|
+
unGroupColumn: function unGroupColumn(name) {
|
|
119
|
+
return "Stopp \xE5 grupper p\xE5 ".concat(name);
|
|
120
|
+
},
|
|
121
|
+
// Master/detail
|
|
122
|
+
// detailPanelToggle: 'Detail panel toggle',
|
|
123
|
+
expandDetailPanel: 'Utvid',
|
|
124
|
+
collapseDetailPanel: 'Kollaps',
|
|
125
|
+
// Row reordering text
|
|
126
|
+
rowReorderingHeaderName: 'Rad reorganisering'
|
|
127
|
+
};
|
|
128
|
+
export var nbNO = getGridLocalization(nbNOGrid, nbNOCore);
|
package/legacy/locales/nlNL.js
CHANGED
|
@@ -118,6 +118,7 @@ var nlNLGrid = {
|
|
|
118
118
|
unGroupColumn: function unGroupColumn(name) {
|
|
119
119
|
return "Stop groeperen op ".concat(name);
|
|
120
120
|
} // Master/detail
|
|
121
|
+
// detailPanelToggle: 'Detail panel toggle',
|
|
121
122
|
// expandDetailPanel: 'Expand',
|
|
122
123
|
// collapseDetailPanel: 'Collapse',
|
|
123
124
|
// Row reordering text
|
package/legacy/locales/plPL.js
CHANGED
|
@@ -119,6 +119,7 @@ var plPLGrid = {
|
|
|
119
119
|
return "Rozgrupuj ".concat(name);
|
|
120
120
|
},
|
|
121
121
|
// Master/detail
|
|
122
|
+
// detailPanelToggle: 'Detail panel toggle',
|
|
122
123
|
expandDetailPanel: 'Rozwiń',
|
|
123
124
|
collapseDetailPanel: 'Zwiń' // Row reordering text
|
|
124
125
|
// rowReorderingHeaderName: 'Row reordering',
|
package/legacy/locales/ptBR.js
CHANGED
|
@@ -119,6 +119,7 @@ var ptBRGrid = {
|
|
|
119
119
|
return "Parar agrupamento por ".concat(name);
|
|
120
120
|
},
|
|
121
121
|
// Master/detail
|
|
122
|
+
detailPanelToggle: 'Painel de detalhes',
|
|
122
123
|
expandDetailPanel: 'Expandir',
|
|
123
124
|
collapseDetailPanel: 'Esconder' // Row reordering text
|
|
124
125
|
// rowReorderingHeaderName: 'Row reordering',
|
package/legacy/locales/ruRU.js
CHANGED
|
@@ -40,7 +40,7 @@ var ruRUGrid = {
|
|
|
40
40
|
toolbarExportLabel: 'Экспорт',
|
|
41
41
|
toolbarExportCSV: 'Скачать в формате CSV',
|
|
42
42
|
toolbarExportPrint: 'Печать',
|
|
43
|
-
|
|
43
|
+
toolbarExportExcel: 'Скачать в формате Excel',
|
|
44
44
|
// Columns panel text
|
|
45
45
|
columnsPanelTextFieldLabel: 'Найти столбец',
|
|
46
46
|
columnsPanelTextFieldPlaceholder: 'Заголовок столбца',
|
|
@@ -71,7 +71,7 @@ var ruRUGrid = {
|
|
|
71
71
|
filterOperatorOnOrBefore: 'меньше или равно',
|
|
72
72
|
filterOperatorIsEmpty: 'пустой',
|
|
73
73
|
filterOperatorIsNotEmpty: 'не пустой',
|
|
74
|
-
|
|
74
|
+
filterOperatorIsAnyOf: 'любой из',
|
|
75
75
|
// Filter values text
|
|
76
76
|
filterValueAny: 'любой',
|
|
77
77
|
filterValueTrue: 'истина',
|
|
@@ -144,10 +144,11 @@ var ruRUGrid = {
|
|
|
144
144
|
},
|
|
145
145
|
unGroupColumn: function unGroupColumn(name) {
|
|
146
146
|
return "\u0420\u0430\u0437\u0433\u0440\u0443\u043F\u043F\u0438\u0440\u043E\u0432\u0430\u0442\u044C \u043F\u043E ".concat(name);
|
|
147
|
-
}
|
|
148
|
-
//
|
|
149
|
-
//
|
|
150
|
-
|
|
147
|
+
},
|
|
148
|
+
// Master/detail
|
|
149
|
+
// detailPanelToggle: 'Detail panel toggle',
|
|
150
|
+
expandDetailPanel: 'Развернуть',
|
|
151
|
+
collapseDetailPanel: 'Свернуть' // Row reordering text
|
|
151
152
|
// rowReorderingHeaderName: 'Row reordering',
|
|
152
153
|
|
|
153
154
|
};
|
package/legacy/locales/skSK.js
CHANGED
|
@@ -145,6 +145,7 @@ var skSKGrid = {
|
|
|
145
145
|
unGroupColumn: function unGroupColumn(name) {
|
|
146
146
|
return "Presta\u0165 zoskupova\u0165 pod\u013Ea ".concat(name);
|
|
147
147
|
} // Master/detail
|
|
148
|
+
// detailPanelToggle: 'Detail panel toggle',
|
|
148
149
|
// expandDetailPanel: 'Expand',
|
|
149
150
|
// collapseDetailPanel: 'Collapse',
|
|
150
151
|
// Row reordering text
|
package/legacy/locales/trTR.js
CHANGED
|
@@ -23,15 +23,15 @@ var trTRGrid = {
|
|
|
23
23
|
return "".concat(count, " aktif filtre");
|
|
24
24
|
},
|
|
25
25
|
// Quick filter toolbar field
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
26
|
+
toolbarQuickFilterPlaceholder: 'Ara...',
|
|
27
|
+
toolbarQuickFilterLabel: 'Ara',
|
|
28
|
+
toolbarQuickFilterDeleteIconLabel: 'Temizle',
|
|
29
29
|
// Export selector toolbar button text
|
|
30
30
|
toolbarExport: 'Dışa aktar',
|
|
31
31
|
toolbarExportLabel: 'Dışa aktar',
|
|
32
32
|
toolbarExportCSV: 'CSV olarak aktar',
|
|
33
33
|
toolbarExportPrint: 'Yazdır',
|
|
34
|
-
|
|
34
|
+
toolbarExportExcel: 'Excel olarak aktar',
|
|
35
35
|
// Columns panel text
|
|
36
36
|
columnsPanelTextFieldLabel: 'Sütun ara',
|
|
37
37
|
columnsPanelTextFieldPlaceholder: 'Sütun adı',
|
|
@@ -64,9 +64,9 @@ var trTRGrid = {
|
|
|
64
64
|
filterOperatorIsNotEmpty: 'dolu',
|
|
65
65
|
filterOperatorIsAnyOf: 'herhangi biri',
|
|
66
66
|
// Filter values text
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
67
|
+
filterValueAny: 'herhangi',
|
|
68
|
+
filterValueTrue: 'doğru',
|
|
69
|
+
filterValueFalse: 'yanlış',
|
|
70
70
|
// Column menu text
|
|
71
71
|
columnMenuLabel: 'Menü',
|
|
72
72
|
columnMenuShowColumns: 'Sütunları göster',
|
|
@@ -119,6 +119,7 @@ var trTRGrid = {
|
|
|
119
119
|
return "".concat(name, " i\xE7in gruplamay\u0131 kald\u0131r");
|
|
120
120
|
},
|
|
121
121
|
// Master/detail
|
|
122
|
+
// detailPanelToggle: 'Detail panel toggle',
|
|
122
123
|
expandDetailPanel: 'Genişlet',
|
|
123
124
|
collapseDetailPanel: 'Gizle' // Row reordering text
|
|
124
125
|
// rowReorderingHeaderName: 'Row reordering',
|
package/legacy/locales/ukUA.js
CHANGED
|
@@ -140,6 +140,7 @@ var ukUAGrid = {
|
|
|
140
140
|
// groupColumn: name => `Group by ${name}`,
|
|
141
141
|
// unGroupColumn: name => `Stop grouping by ${name}`,
|
|
142
142
|
// Master/detail
|
|
143
|
+
// detailPanelToggle: 'Detail panel toggle',
|
|
143
144
|
// expandDetailPanel: 'Expand',
|
|
144
145
|
// collapseDetailPanel: 'Collapse',
|
|
145
146
|
// Row reordering text
|
package/legacy/locales/viVN.js
CHANGED
|
@@ -114,6 +114,7 @@ var viVNGrid = {
|
|
|
114
114
|
// groupColumn: name => `Group by ${name}`,
|
|
115
115
|
// unGroupColumn: name => `Stop grouping by ${name}`,
|
|
116
116
|
// Master/detail
|
|
117
|
+
// detailPanelToggle: 'Detail panel toggle',
|
|
117
118
|
// expandDetailPanel: 'Expand',
|
|
118
119
|
// collapseDetailPanel: 'Collapse',
|
|
119
120
|
// Row reordering text
|
package/legacy/locales/zhCN.js
CHANGED
|
@@ -114,6 +114,7 @@ var zhCNGrid = {
|
|
|
114
114
|
// groupColumn: name => `Group by ${name}`,
|
|
115
115
|
// unGroupColumn: name => `Stop grouping by ${name}`,
|
|
116
116
|
// Master/detail
|
|
117
|
+
// detailPanelToggle: 'Detail panel toggle',
|
|
117
118
|
// expandDetailPanel: 'Expand',
|
|
118
119
|
// collapseDetailPanel: 'Collapse',
|
|
119
120
|
// Row reordering text
|
|
@@ -82,6 +82,8 @@ var GridEvents;
|
|
|
82
82
|
GridEvents["virtualScrollerTouchMove"] = "virtualScrollerTouchMove";
|
|
83
83
|
GridEvents["preferencePanelClose"] = "preferencePanelClose";
|
|
84
84
|
GridEvents["preferencePanelOpen"] = "preferencePanelOpen";
|
|
85
|
+
GridEvents["menuOpen"] = "menuOpen";
|
|
86
|
+
GridEvents["menuClose"] = "menuClose";
|
|
85
87
|
})(GridEvents || (GridEvents = {}));
|
|
86
88
|
|
|
87
89
|
export { GridEvents };
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -10,4 +10,5 @@ export * from './gridHeaderSelectionCheckboxParams';
|
|
|
10
10
|
export * from './gridValueOptionsParams';
|
|
11
11
|
export * from './gridCellParams';
|
|
12
12
|
export * from './gridSortModelParams';
|
|
13
|
-
export * from './gridPreferencePanelParams';
|
|
13
|
+
export * from './gridPreferencePanelParams';
|
|
14
|
+
export * from './gridMenuParams';
|
package/locales/arSD.js
CHANGED
|
@@ -107,6 +107,7 @@ const arSDGrid = {
|
|
|
107
107
|
groupColumn: name => `تجميع حسب ${name}`,
|
|
108
108
|
unGroupColumn: name => `إيقاف التجميع حسب ${name}`,
|
|
109
109
|
// Master/detail
|
|
110
|
+
// detailPanelToggle: 'Detail panel toggle',
|
|
110
111
|
expandDetailPanel: 'توسيع',
|
|
111
112
|
collapseDetailPanel: 'طوي' // Row reordering text
|
|
112
113
|
// rowReorderingHeaderName: 'Row reordering',
|
package/locales/bgBG.js
CHANGED
|
@@ -107,6 +107,7 @@ const bgBGGrid = {
|
|
|
107
107
|
groupColumn: name => `Групирай по ${name}`,
|
|
108
108
|
unGroupColumn: name => `Спри групиране по ${name}`,
|
|
109
109
|
// Master/detail
|
|
110
|
+
// detailPanelToggle: 'Detail panel toggle',
|
|
110
111
|
expandDetailPanel: 'Разгъване',
|
|
111
112
|
collapseDetailPanel: 'Свиване' // Row reordering text
|
|
112
113
|
// rowReorderingHeaderName: 'Row reordering',
|
package/locales/csCZ.js
CHANGED
|
@@ -141,6 +141,7 @@ const csCZGrid = {
|
|
|
141
141
|
groupingColumnHeaderName: 'Skupina',
|
|
142
142
|
groupColumn: name => `Zoskupit podle ${name}`,
|
|
143
143
|
unGroupColumn: name => `Přestat zoskupovat podle ${name}` // Master/detail
|
|
144
|
+
// detailPanelToggle: 'Detail panel toggle',
|
|
144
145
|
// expandDetailPanel: 'Expand',
|
|
145
146
|
// collapseDetailPanel: 'Collapse',
|
|
146
147
|
// Row reordering text
|
package/locales/daDK.js
CHANGED
|
@@ -107,6 +107,7 @@ const daDKGrid = {
|
|
|
107
107
|
groupColumn: name => `Gruppér efter ${name}`,
|
|
108
108
|
unGroupColumn: name => `Fjern gruppéring efter ${name}`,
|
|
109
109
|
// Master/detail
|
|
110
|
+
// detailPanelToggle: 'Detail panel toggle',
|
|
110
111
|
expandDetailPanel: 'Udvid',
|
|
111
112
|
collapseDetailPanel: 'Kollaps' // Row reordering text
|
|
112
113
|
// rowReorderingHeaderName: 'Row reordering',
|
package/locales/deDE.js
CHANGED
|
@@ -107,6 +107,7 @@ const deDEGrid = {
|
|
|
107
107
|
groupColumn: name => `Gruppieren nach ${name}`,
|
|
108
108
|
unGroupColumn: name => `Gruppierung nach ${name} aufheben`,
|
|
109
109
|
// Master/detail
|
|
110
|
+
// detailPanelToggle: 'Detail panel toggle',
|
|
110
111
|
expandDetailPanel: 'Aufklappen',
|
|
111
112
|
collapseDetailPanel: 'Zuklappen',
|
|
112
113
|
// Row reordering text
|
package/locales/elGR.js
CHANGED
|
@@ -105,6 +105,7 @@ const elGRGrid = {
|
|
|
105
105
|
// groupColumn: name => `Group by ${name}`,
|
|
106
106
|
// unGroupColumn: name => `Stop grouping by ${name}`,
|
|
107
107
|
// Master/detail
|
|
108
|
+
// detailPanelToggle: 'Detail panel toggle',
|
|
108
109
|
// expandDetailPanel: 'Expand',
|
|
109
110
|
// collapseDetailPanel: 'Collapse',
|
|
110
111
|
// Row reordering text
|
package/locales/esES.js
CHANGED
|
@@ -106,6 +106,7 @@ const esESGrid = {
|
|
|
106
106
|
// groupColumn: name => `Group by ${name}`,
|
|
107
107
|
// unGroupColumn: name => `Stop grouping by ${name}`,
|
|
108
108
|
// Master/detail
|
|
109
|
+
// detailPanelToggle: 'Detail panel toggle',
|
|
109
110
|
// expandDetailPanel: 'Expand',
|
|
110
111
|
// collapseDetailPanel: 'Collapse',
|
|
111
112
|
// Row reordering text
|
package/locales/faIR.js
CHANGED
|
@@ -107,6 +107,7 @@ const faIRGrid = {
|
|
|
107
107
|
groupColumn: name => `گروهبندی براساس ${name}`,
|
|
108
108
|
unGroupColumn: name => `لغو گروهبندی براساس ${name}`,
|
|
109
109
|
// Master/detail
|
|
110
|
+
// detailPanelToggle: 'Detail panel toggle',
|
|
110
111
|
expandDetailPanel: 'بازکردن پنل جزئیات',
|
|
111
112
|
collapseDetailPanel: 'بستن پنل جزئیات' // Row reordering text
|
|
112
113
|
// rowReorderingHeaderName: 'Row reordering',
|
package/locales/fiFI.js
CHANGED
|
@@ -106,6 +106,7 @@ const fiFIGrid = {
|
|
|
106
106
|
// groupColumn: name => `Group by ${name}`,
|
|
107
107
|
// unGroupColumn: name => `Stop grouping by ${name}`,
|
|
108
108
|
// Master/detail
|
|
109
|
+
// detailPanelToggle: 'Detail panel toggle',
|
|
109
110
|
// expandDetailPanel: 'Expand',
|
|
110
111
|
// collapseDetailPanel: 'Collapse',
|
|
111
112
|
// Row reordering text
|
package/locales/frFR.js
CHANGED
|
@@ -106,6 +106,7 @@ const frFRGrid = {
|
|
|
106
106
|
groupingColumnHeaderName: 'Groupe',
|
|
107
107
|
groupColumn: name => `Grouper par ${name}`,
|
|
108
108
|
unGroupColumn: name => `Arrêter de grouper par ${name}` // Master/detail
|
|
109
|
+
// detailPanelToggle: 'Detail panel toggle',
|
|
109
110
|
// expandDetailPanel: 'Expand',
|
|
110
111
|
// collapseDetailPanel: 'Collapse',
|
|
111
112
|
// Row reordering text
|
package/locales/heIL.js
CHANGED
|
@@ -21,15 +21,15 @@ const heILGrid = {
|
|
|
21
21
|
toolbarFiltersTooltipShow: 'הצג מסננים',
|
|
22
22
|
toolbarFiltersTooltipActive: count => count !== 1 ? `${count} מסננים פעילים` : `מסנן אחד פעיל`,
|
|
23
23
|
// Quick filter toolbar field
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
24
|
+
toolbarQuickFilterPlaceholder: 'חיפוש...',
|
|
25
|
+
toolbarQuickFilterLabel: 'חיפוש',
|
|
26
|
+
toolbarQuickFilterDeleteIconLabel: 'ניקוי',
|
|
27
27
|
// Export selector toolbar button text
|
|
28
28
|
toolbarExport: 'ייצוא',
|
|
29
29
|
toolbarExportLabel: 'ייצוא',
|
|
30
|
-
toolbarExportCSV: '
|
|
30
|
+
toolbarExportCSV: 'ייצוא ל- CSV',
|
|
31
31
|
toolbarExportPrint: 'הדפסה',
|
|
32
|
-
|
|
32
|
+
toolbarExportExcel: 'ייצוא ל- Excel',
|
|
33
33
|
// Columns panel text
|
|
34
34
|
columnsPanelTextFieldLabel: 'חפש עמודה',
|
|
35
35
|
columnsPanelTextFieldPlaceholder: 'כותרת עמודה',
|
|
@@ -39,7 +39,7 @@ const heILGrid = {
|
|
|
39
39
|
// Filter panel text
|
|
40
40
|
filterPanelAddFilter: 'הוסף מסנן',
|
|
41
41
|
filterPanelDeleteIconLabel: 'מחק',
|
|
42
|
-
|
|
42
|
+
filterPanelLinkOperator: 'אופרטור לוגי',
|
|
43
43
|
filterPanelOperators: 'אופרטור',
|
|
44
44
|
// TODO v6: rename to filterPanelOperator
|
|
45
45
|
filterPanelOperatorAnd: 'וגם',
|
|
@@ -107,9 +107,10 @@ const heILGrid = {
|
|
|
107
107
|
groupColumn: name => `קבץ לפי ${name}`,
|
|
108
108
|
unGroupColumn: name => `הפסק לקבץ לפי ${name}`,
|
|
109
109
|
// Master/detail
|
|
110
|
+
// detailPanelToggle: 'Detail panel toggle',
|
|
110
111
|
expandDetailPanel: 'הרחב',
|
|
111
|
-
collapseDetailPanel: 'כווץ'
|
|
112
|
-
//
|
|
113
|
-
|
|
112
|
+
collapseDetailPanel: 'כווץ',
|
|
113
|
+
// Row reordering text
|
|
114
|
+
rowReorderingHeaderName: 'סידור שורות'
|
|
114
115
|
};
|
|
115
116
|
export const heIL = getGridLocalization(heILGrid, heILCore);
|
package/locales/huHU.js
CHANGED
|
@@ -107,6 +107,7 @@ const huHUGrid = {
|
|
|
107
107
|
groupColumn: name => `Csoportosítás ${name} szerint`,
|
|
108
108
|
unGroupColumn: name => `${name} szerinti csoportosítás törlése`,
|
|
109
109
|
// Master/detail
|
|
110
|
+
// detailPanelToggle: 'Detail panel toggle',
|
|
110
111
|
expandDetailPanel: 'Kibontás',
|
|
111
112
|
collapseDetailPanel: 'Összecsukás' // Row reordering text
|
|
112
113
|
// rowReorderingHeaderName: 'Row reordering',
|
package/locales/itIT.js
CHANGED
|
@@ -106,6 +106,7 @@ const itITGrid = {
|
|
|
106
106
|
groupingColumnHeaderName: 'Gruppo',
|
|
107
107
|
groupColumn: name => `Raggruppa per ${name}`,
|
|
108
108
|
unGroupColumn: name => `Annulla raggruppamento per ${name}` // Master/detail
|
|
109
|
+
// detailPanelToggle: 'Detail panel toggle',
|
|
109
110
|
// expandDetailPanel: 'Expand',
|
|
110
111
|
// collapseDetailPanel: 'Collapse',
|
|
111
112
|
// Row reordering text
|