@mui/x-data-grid 6.6.0 → 6.8.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +147 -13
- package/components/GridColumnHeaders.d.ts +2 -2
- package/components/GridColumnHeaders.js +3 -1
- package/components/GridRow.d.ts +2 -2
- package/components/GridRow.js +23 -69
- package/components/cell/GridCell.d.ts +24 -15
- package/components/cell/GridCell.js +422 -45
- package/components/cell/index.d.ts +2 -1
- package/components/cell/index.js +1 -1
- package/components/containers/GridRootStyles.js +38 -17
- package/components/menu/columnMenu/GridColumnHeaderMenu.js +1 -1
- package/components/panel/GridColumnsPanel.d.ts +14 -0
- package/components/panel/GridColumnsPanel.js +14 -0
- package/components/panel/filterPanel/GridFilterInputBoolean.d.ts +0 -1
- package/components/panel/filterPanel/GridFilterInputBoolean.js +6 -7
- package/components/panel/filterPanel/GridFilterInputDate.d.ts +0 -1
- package/components/panel/filterPanel/GridFilterInputDate.js +1 -6
- package/components/panel/filterPanel/GridFilterInputSingleSelect.d.ts +0 -1
- package/components/panel/filterPanel/GridFilterInputSingleSelect.js +5 -6
- package/components/panel/filterPanel/GridFilterInputValue.d.ts +0 -1
- package/components/panel/filterPanel/GridFilterInputValue.js +1 -6
- package/components/panel/filterPanel/GridFilterPanel.d.ts +8 -0
- package/components/panel/filterPanel/GridFilterPanel.js +8 -0
- package/components/toolbar/GridToolbar.js +2 -2
- package/components/virtualization/GridVirtualScroller.js +4 -9
- package/components/virtualization/GridVirtualScrollerContent.js +11 -20
- package/constants/defaultGridSlotsComponents.js +6 -2
- package/constants/gridClasses.d.ts +4 -0
- package/constants/gridClasses.js +1 -1
- package/constants/localeTextConstants.js +4 -4
- package/hooks/core/useGridApiInitialization.js +4 -1
- package/hooks/core/useGridStateInitialization.js +2 -9
- package/hooks/features/clipboard/useGridClipboard.js +1 -4
- package/hooks/features/columnHeaders/useGridColumnHeaders.js +9 -3
- package/hooks/features/editing/useGridCellEditing.js +5 -3
- package/hooks/features/editing/useGridRowEditing.js +14 -6
- package/hooks/features/filter/gridFilterUtils.d.ts +4 -1
- package/hooks/features/filter/gridFilterUtils.js +19 -13
- package/hooks/features/filter/useGridFilter.js +4 -2
- package/hooks/features/focus/useGridFocus.js +10 -4
- package/hooks/features/keyboardNavigation/useGridKeyboardNavigation.js +2 -3
- package/hooks/features/rows/useGridParamsApi.d.ts +2 -0
- package/hooks/features/rows/useGridParamsApi.js +7 -15
- package/hooks/features/rows/useGridRowsMeta.js +1 -1
- package/hooks/features/sorting/useGridSorting.js +2 -1
- package/hooks/features/virtualization/useGridVirtualScroller.d.ts +8 -816
- package/hooks/features/virtualization/useGridVirtualScroller.js +42 -40
- package/hooks/utils/index.d.ts +1 -1
- package/hooks/utils/index.js +1 -1
- package/hooks/utils/useGridSelector.d.ts +3 -1
- package/hooks/utils/useGridSelector.js +37 -6
- package/hooks/utils/useLazyRef.d.ts +2 -0
- package/hooks/utils/useLazyRef.js +9 -0
- package/hooks/utils/useOnMount.d.ts +2 -0
- package/hooks/utils/useOnMount.js +7 -0
- package/index.js +1 -1
- package/legacy/components/GridColumnHeaders.js +3 -1
- package/legacy/components/GridRow.js +25 -69
- package/legacy/components/cell/GridCell.js +425 -46
- package/legacy/components/cell/index.js +1 -1
- package/legacy/components/containers/GridRootStyles.js +25 -18
- package/legacy/components/menu/columnMenu/GridColumnHeaderMenu.js +1 -1
- package/legacy/components/panel/GridColumnsPanel.js +14 -0
- package/legacy/components/panel/filterPanel/GridFilterInputBoolean.js +7 -7
- package/legacy/components/panel/filterPanel/GridFilterInputDate.js +1 -5
- package/legacy/components/panel/filterPanel/GridFilterInputSingleSelect.js +6 -6
- package/legacy/components/panel/filterPanel/GridFilterInputValue.js +1 -5
- package/legacy/components/panel/filterPanel/GridFilterPanel.js +8 -0
- package/legacy/components/toolbar/GridToolbar.js +2 -2
- package/legacy/components/virtualization/GridVirtualScroller.js +4 -7
- package/legacy/components/virtualization/GridVirtualScrollerContent.js +10 -17
- package/legacy/constants/defaultGridSlotsComponents.js +6 -2
- package/legacy/constants/gridClasses.js +1 -1
- package/legacy/constants/localeTextConstants.js +4 -4
- package/legacy/hooks/core/useGridApiInitialization.js +4 -1
- package/legacy/hooks/core/useGridStateInitialization.js +2 -7
- package/legacy/hooks/features/clipboard/useGridClipboard.js +1 -4
- package/legacy/hooks/features/columnHeaders/useGridColumnHeaders.js +9 -3
- package/legacy/hooks/features/editing/useGridCellEditing.js +5 -3
- package/legacy/hooks/features/editing/useGridRowEditing.js +15 -7
- package/legacy/hooks/features/filter/gridFilterUtils.js +23 -19
- package/legacy/hooks/features/filter/useGridFilter.js +4 -2
- package/legacy/hooks/features/focus/useGridFocus.js +10 -4
- package/legacy/hooks/features/keyboardNavigation/useGridKeyboardNavigation.js +2 -3
- package/legacy/hooks/features/rows/useGridParamsApi.js +23 -15
- package/legacy/hooks/features/rows/useGridRowsMeta.js +1 -1
- package/legacy/hooks/features/sorting/useGridSorting.js +2 -1
- package/legacy/hooks/features/virtualization/useGridVirtualScroller.js +40 -36
- package/legacy/hooks/utils/index.js +1 -1
- package/legacy/hooks/utils/useGridSelector.js +43 -5
- package/legacy/hooks/utils/useLazyRef.js +9 -0
- package/legacy/hooks/utils/useOnMount.js +7 -0
- package/legacy/index.js +1 -1
- package/legacy/locales/arSD.js +4 -4
- package/legacy/locales/beBY.js +4 -4
- package/legacy/locales/bgBG.js +4 -4
- package/legacy/locales/csCZ.js +25 -27
- package/legacy/locales/daDK.js +4 -4
- package/legacy/locales/deDE.js +25 -27
- package/legacy/locales/elGR.js +70 -79
- package/legacy/locales/esES.js +4 -4
- package/legacy/locales/faIR.js +4 -4
- package/legacy/locales/fiFI.js +4 -4
- package/legacy/locales/heIL.js +4 -4
- package/legacy/locales/huHU.js +4 -4
- package/legacy/locales/itIT.js +4 -4
- package/legacy/locales/jaJP.js +4 -4
- package/legacy/locales/koKR.js +4 -4
- package/legacy/locales/nbNO.js +4 -4
- package/legacy/locales/plPL.js +4 -4
- package/legacy/locales/ptBR.js +4 -4
- package/legacy/locales/roRO.js +4 -4
- package/legacy/locales/ruRU.js +4 -4
- package/legacy/locales/skSK.js +4 -4
- package/legacy/locales/svSE.js +4 -4
- package/legacy/locales/trTR.js +16 -17
- package/legacy/locales/ukUA.js +4 -4
- package/legacy/locales/urPK.js +4 -4
- package/legacy/locales/viVN.js +4 -4
- package/legacy/locales/zhCN.js +4 -4
- package/legacy/locales/zhTW.js +4 -4
- package/legacy/utils/EventManager.js +2 -2
- package/legacy/utils/Store.js +34 -0
- package/legacy/utils/doesSupportPreventScroll.js +13 -0
- package/legacy/utils/fastMemo.js +5 -0
- package/legacy/utils/fastObjectShallowCompare.js +32 -0
- package/legacy/utils/keyboardUtils.js +4 -2
- package/locales/arSD.js +4 -4
- package/locales/beBY.js +4 -4
- package/locales/bgBG.js +4 -4
- package/locales/csCZ.js +25 -27
- package/locales/daDK.js +4 -4
- package/locales/deDE.js +25 -27
- package/locales/elGR.js +66 -79
- package/locales/esES.js +4 -4
- package/locales/faIR.js +4 -4
- package/locales/fiFI.js +4 -4
- package/locales/heIL.js +4 -4
- package/locales/huHU.js +4 -4
- package/locales/itIT.js +4 -4
- package/locales/jaJP.js +4 -4
- package/locales/koKR.js +4 -4
- package/locales/nbNO.js +4 -4
- package/locales/plPL.js +4 -4
- package/locales/ptBR.js +4 -4
- package/locales/roRO.js +4 -4
- package/locales/ruRU.js +4 -4
- package/locales/skSK.js +4 -4
- package/locales/svSE.js +4 -4
- package/locales/trTR.js +16 -17
- package/locales/ukUA.js +4 -4
- package/locales/urPK.js +4 -4
- package/locales/viVN.js +4 -4
- package/locales/zhCN.js +4 -4
- package/locales/zhTW.js +4 -4
- package/models/api/gridCoreApi.d.ts +6 -0
- package/models/colDef/gridColDef.d.ts +4 -3
- package/models/colDef/gridColType.d.ts +3 -1
- package/models/events/gridEventLookup.d.ts +11 -3
- package/modern/components/GridColumnHeaders.js +3 -1
- package/modern/components/GridRow.js +22 -69
- package/modern/components/cell/GridCell.js +421 -45
- package/modern/components/cell/index.js +1 -1
- package/modern/components/containers/GridRootStyles.js +38 -17
- package/modern/components/menu/columnMenu/GridColumnHeaderMenu.js +1 -1
- package/modern/components/panel/GridColumnsPanel.js +14 -0
- package/modern/components/panel/filterPanel/GridFilterInputBoolean.js +6 -7
- package/modern/components/panel/filterPanel/GridFilterInputDate.js +1 -6
- package/modern/components/panel/filterPanel/GridFilterInputSingleSelect.js +5 -6
- package/modern/components/panel/filterPanel/GridFilterInputValue.js +1 -6
- package/modern/components/panel/filterPanel/GridFilterPanel.js +8 -0
- package/modern/components/toolbar/GridToolbar.js +2 -2
- package/modern/components/virtualization/GridVirtualScroller.js +4 -9
- package/modern/components/virtualization/GridVirtualScrollerContent.js +10 -20
- package/modern/constants/defaultGridSlotsComponents.js +6 -2
- package/modern/constants/gridClasses.js +1 -1
- package/modern/constants/localeTextConstants.js +4 -4
- package/modern/hooks/core/useGridApiInitialization.js +4 -1
- package/modern/hooks/core/useGridStateInitialization.js +2 -9
- package/modern/hooks/features/clipboard/useGridClipboard.js +1 -4
- package/modern/hooks/features/columnHeaders/useGridColumnHeaders.js +9 -3
- package/modern/hooks/features/editing/useGridCellEditing.js +5 -3
- package/modern/hooks/features/editing/useGridRowEditing.js +14 -6
- package/modern/hooks/features/filter/gridFilterUtils.js +17 -12
- package/modern/hooks/features/filter/useGridFilter.js +4 -2
- package/modern/hooks/features/focus/useGridFocus.js +9 -4
- package/modern/hooks/features/keyboardNavigation/useGridKeyboardNavigation.js +2 -3
- package/modern/hooks/features/rows/useGridParamsApi.js +7 -15
- package/modern/hooks/features/rows/useGridRowsMeta.js +1 -1
- package/modern/hooks/features/sorting/useGridSorting.js +2 -1
- package/modern/hooks/features/virtualization/useGridVirtualScroller.js +42 -40
- package/modern/hooks/utils/index.js +1 -1
- package/modern/hooks/utils/useGridSelector.js +37 -6
- package/modern/hooks/utils/useLazyRef.js +9 -0
- package/modern/hooks/utils/useOnMount.js +7 -0
- package/modern/index.js +1 -1
- package/modern/locales/arSD.js +4 -4
- package/modern/locales/beBY.js +4 -4
- package/modern/locales/bgBG.js +4 -4
- package/modern/locales/csCZ.js +25 -27
- package/modern/locales/daDK.js +4 -4
- package/modern/locales/deDE.js +25 -27
- package/modern/locales/elGR.js +66 -79
- package/modern/locales/esES.js +4 -4
- package/modern/locales/faIR.js +4 -4
- package/modern/locales/fiFI.js +4 -4
- package/modern/locales/heIL.js +4 -4
- package/modern/locales/huHU.js +4 -4
- package/modern/locales/itIT.js +4 -4
- package/modern/locales/jaJP.js +4 -4
- package/modern/locales/koKR.js +4 -4
- package/modern/locales/nbNO.js +4 -4
- package/modern/locales/plPL.js +4 -4
- package/modern/locales/ptBR.js +4 -4
- package/modern/locales/roRO.js +4 -4
- package/modern/locales/ruRU.js +4 -4
- package/modern/locales/skSK.js +4 -4
- package/modern/locales/svSE.js +4 -4
- package/modern/locales/trTR.js +16 -17
- package/modern/locales/ukUA.js +4 -4
- package/modern/locales/urPK.js +4 -4
- package/modern/locales/viVN.js +4 -4
- package/modern/locales/zhCN.js +4 -4
- package/modern/locales/zhTW.js +4 -4
- package/modern/utils/EventManager.js +2 -2
- package/modern/utils/Store.js +24 -0
- package/modern/utils/doesSupportPreventScroll.js +13 -0
- package/modern/utils/fastMemo.js +5 -0
- package/modern/utils/fastObjectShallowCompare.js +32 -0
- package/modern/utils/keyboardUtils.js +4 -2
- package/node/components/GridColumnHeaders.js +4 -2
- package/node/components/GridRow.js +22 -69
- package/node/components/cell/GridCell.js +424 -47
- package/node/components/cell/index.js +17 -10
- package/node/components/containers/GridRootStyles.js +38 -17
- package/node/components/menu/columnMenu/GridColumnHeaderMenu.js +1 -1
- package/node/components/panel/GridColumnsPanel.js +14 -0
- package/node/components/panel/filterPanel/GridFilterInputBoolean.js +6 -7
- package/node/components/panel/filterPanel/GridFilterInputDate.js +1 -6
- package/node/components/panel/filterPanel/GridFilterInputSingleSelect.js +5 -6
- package/node/components/panel/filterPanel/GridFilterInputValue.js +1 -6
- package/node/components/panel/filterPanel/GridFilterPanel.js +8 -0
- package/node/components/toolbar/GridToolbar.js +2 -2
- package/node/components/virtualization/GridVirtualScroller.js +4 -9
- package/node/components/virtualization/GridVirtualScrollerContent.js +10 -20
- package/node/constants/defaultGridSlotsComponents.js +4 -1
- package/node/constants/gridClasses.js +1 -1
- package/node/constants/localeTextConstants.js +4 -4
- package/node/hooks/core/useGridApiInitialization.js +4 -1
- package/node/hooks/core/useGridStateInitialization.js +2 -9
- package/node/hooks/features/clipboard/useGridClipboard.js +1 -4
- package/node/hooks/features/columnHeaders/useGridColumnHeaders.js +8 -2
- package/node/hooks/features/editing/useGridCellEditing.js +5 -3
- package/node/hooks/features/editing/useGridRowEditing.js +14 -6
- package/node/hooks/features/filter/gridFilterUtils.js +17 -12
- package/node/hooks/features/filter/useGridFilter.js +7 -5
- package/node/hooks/features/focus/useGridFocus.js +9 -4
- package/node/hooks/features/keyboardNavigation/useGridKeyboardNavigation.js +2 -3
- package/node/hooks/features/rows/useGridParamsApi.js +9 -15
- package/node/hooks/features/rows/useGridRowsMeta.js +1 -1
- package/node/hooks/features/sorting/useGridSorting.js +2 -1
- package/node/hooks/features/virtualization/useGridVirtualScroller.js +42 -38
- package/node/hooks/utils/index.js +14 -10
- package/node/hooks/utils/useGridSelector.js +41 -7
- package/node/hooks/utils/useLazyRef.js +17 -0
- package/node/hooks/utils/useOnMount.js +15 -0
- package/node/index.js +1 -1
- package/node/locales/arSD.js +4 -4
- package/node/locales/beBY.js +4 -4
- package/node/locales/bgBG.js +4 -4
- package/node/locales/csCZ.js +25 -27
- package/node/locales/daDK.js +4 -4
- package/node/locales/deDE.js +25 -27
- package/node/locales/elGR.js +66 -79
- package/node/locales/esES.js +4 -4
- package/node/locales/faIR.js +4 -4
- package/node/locales/fiFI.js +4 -4
- package/node/locales/heIL.js +4 -4
- package/node/locales/huHU.js +4 -4
- package/node/locales/itIT.js +4 -4
- package/node/locales/jaJP.js +4 -4
- package/node/locales/koKR.js +4 -4
- package/node/locales/nbNO.js +4 -4
- package/node/locales/plPL.js +4 -4
- package/node/locales/ptBR.js +4 -4
- package/node/locales/roRO.js +4 -4
- package/node/locales/ruRU.js +4 -4
- package/node/locales/skSK.js +4 -4
- package/node/locales/svSE.js +4 -4
- package/node/locales/trTR.js +16 -17
- package/node/locales/ukUA.js +4 -4
- package/node/locales/urPK.js +4 -4
- package/node/locales/viVN.js +4 -4
- package/node/locales/zhCN.js +4 -4
- package/node/locales/zhTW.js +4 -4
- package/node/utils/EventManager.js +2 -2
- package/node/utils/Store.js +31 -0
- package/node/utils/doesSupportPreventScroll.js +19 -0
- package/node/utils/fastMemo.js +13 -0
- package/node/utils/fastObjectShallowCompare.js +38 -0
- package/node/utils/keyboardUtils.js +4 -2
- package/package.json +1 -1
- package/themeAugmentation/overrides.d.ts +1 -1
- package/utils/EventManager.js +2 -2
- package/utils/Store.d.ts +11 -0
- package/utils/Store.js +24 -0
- package/utils/doesSupportPreventScroll.d.ts +1 -0
- package/utils/doesSupportPreventScroll.js +13 -0
- package/utils/fastMemo.d.ts +1 -0
- package/utils/fastMemo.js +5 -0
- package/utils/fastObjectShallowCompare.d.ts +1 -0
- package/utils/fastObjectShallowCompare.js +32 -0
- package/utils/keyboardUtils.js +4 -2
package/modern/locales/elGR.js
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { elGR as elGRCore } from '@mui/material/locale';
|
|
1
2
|
import { getGridLocalization } from '../utils/getGridLocalization';
|
|
2
3
|
const elGRGrid = {
|
|
3
4
|
// Root
|
|
@@ -19,17 +20,15 @@ const elGRGrid = {
|
|
|
19
20
|
toolbarFiltersTooltipShow: 'Εμφάνιση φίλτρων',
|
|
20
21
|
toolbarFiltersTooltipActive: count => count !== 1 ? `${count} ενεργά φίλτρα` : `${count} ενεργό φίλτρο`,
|
|
21
22
|
// Quick filter toolbar field
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
23
|
+
toolbarQuickFilterPlaceholder: 'Αναζήτηση…',
|
|
24
|
+
toolbarQuickFilterLabel: 'Αναζήτηση',
|
|
25
|
+
toolbarQuickFilterDeleteIconLabel: 'Καθαρισμός',
|
|
26
26
|
// Export selector toolbar button text
|
|
27
27
|
toolbarExport: 'Εξαγωγή',
|
|
28
28
|
toolbarExportLabel: 'Εξαγωγή',
|
|
29
29
|
toolbarExportCSV: 'Λήψη ως CSV',
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
30
|
+
toolbarExportPrint: 'Εκτύπωση',
|
|
31
|
+
toolbarExportExcel: 'Λήψη ως Excel',
|
|
33
32
|
// Columns panel text
|
|
34
33
|
columnsPanelTextFieldLabel: 'Εύρεση στήλης',
|
|
35
34
|
columnsPanelTextFieldPlaceholder: 'Επικεφαλίδα στήλης',
|
|
@@ -38,9 +37,9 @@ const elGRGrid = {
|
|
|
38
37
|
columnsPanelHideAllButton: 'Απόκρυψη όλων',
|
|
39
38
|
// Filter panel text
|
|
40
39
|
filterPanelAddFilter: 'Προσθήκη φίλτρου',
|
|
41
|
-
|
|
40
|
+
filterPanelRemoveAll: 'Αφαίρεση όλων',
|
|
42
41
|
filterPanelDeleteIconLabel: 'Διαγραφή',
|
|
43
|
-
|
|
42
|
+
filterPanelLogicOperator: 'Λογικός τελεστής',
|
|
44
43
|
filterPanelOperator: 'Τελεστές',
|
|
45
44
|
filterPanelOperatorAnd: 'Καί',
|
|
46
45
|
filterPanelOperatorOr: 'Ή',
|
|
@@ -60,44 +59,41 @@ const elGRGrid = {
|
|
|
60
59
|
filterOperatorOnOrBefore: 'είναι ίσο ή πριν',
|
|
61
60
|
filterOperatorIsEmpty: 'είναι κενό',
|
|
62
61
|
filterOperatorIsNotEmpty: 'δεν είναι κενό',
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
62
|
+
filterOperatorIsAnyOf: 'είναι οποιοδήποτε από',
|
|
63
|
+
'filterOperator=': '=',
|
|
64
|
+
'filterOperator!=': '!=',
|
|
65
|
+
'filterOperator>': '>',
|
|
66
|
+
'filterOperator>=': '>=',
|
|
67
|
+
'filterOperator<': '<',
|
|
68
|
+
'filterOperator<=': '<=',
|
|
71
69
|
// Header filter operators text
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
70
|
+
headerFilterOperatorContains: 'Περιέχει',
|
|
71
|
+
headerFilterOperatorEquals: 'Ισούται',
|
|
72
|
+
headerFilterOperatorStartsWith: 'Ξεκινάει με',
|
|
73
|
+
headerFilterOperatorEndsWith: 'Τελειώνει με',
|
|
74
|
+
headerFilterOperatorIs: 'Είναι',
|
|
75
|
+
headerFilterOperatorNot: 'Δεν είναι',
|
|
76
|
+
headerFilterOperatorAfter: 'Είναι μετά',
|
|
77
|
+
headerFilterOperatorOnOrAfter: 'Είναι ίσο ή μετά',
|
|
78
|
+
headerFilterOperatorBefore: 'Είναι πριν',
|
|
79
|
+
headerFilterOperatorOnOrBefore: 'Είναι ίσο ή πριν',
|
|
80
|
+
headerFilterOperatorIsEmpty: 'Είναι κενό',
|
|
81
|
+
headerFilterOperatorIsNotEmpty: 'Δεν είναι κενό',
|
|
82
|
+
headerFilterOperatorIsAnyOf: 'Είναι οποιοδήποτε από',
|
|
83
|
+
'headerFilterOperator=': 'Ισούται',
|
|
84
|
+
'headerFilterOperator!=': 'Δεν ισούται',
|
|
85
|
+
'headerFilterOperator>': 'Μεγαλύτερο από',
|
|
86
|
+
'headerFilterOperator>=': 'Μεγαλύτερο ή ίσο με',
|
|
87
|
+
'headerFilterOperator<': 'Μικρότερο από',
|
|
88
|
+
'headerFilterOperator<=': 'Μικρότερο ή ίσο με',
|
|
92
89
|
// Filter values text
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
90
|
+
filterValueAny: 'οποιοδήποτε',
|
|
91
|
+
filterValueTrue: 'αληθές',
|
|
92
|
+
filterValueFalse: 'ψευδές',
|
|
97
93
|
// Column menu text
|
|
98
94
|
columnMenuLabel: 'Μενού',
|
|
99
95
|
columnMenuShowColumns: 'Εμφάνιση στηλών',
|
|
100
|
-
|
|
96
|
+
columnMenuManageColumns: 'Διαχείριση στηλών',
|
|
101
97
|
columnMenuFilter: 'Φίλτρο',
|
|
102
98
|
columnMenuHideColumn: 'Απόκρυψη',
|
|
103
99
|
columnMenuUnsort: 'Απενεργοποίηση ταξινόμησης',
|
|
@@ -114,49 +110,40 @@ const elGRGrid = {
|
|
|
114
110
|
// Total visible row amount footer text
|
|
115
111
|
footerTotalVisibleRows: (visibleCount, totalCount) => `${visibleCount.toLocaleString()} από ${totalCount.toLocaleString()}`,
|
|
116
112
|
// Checkbox selection text
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
113
|
+
checkboxSelectionHeaderName: 'Επιλογή πλαισίου ελέγχου',
|
|
114
|
+
checkboxSelectionSelectAllRows: 'Επιλέξτε όλες τις σειρές',
|
|
115
|
+
checkboxSelectionUnselectAllRows: 'Καταργήση επιλογής όλων των σειρών',
|
|
116
|
+
checkboxSelectionSelectRow: 'Επιλογή γραμμής',
|
|
117
|
+
checkboxSelectionUnselectRow: 'Καταργήση επιλογής γραμμής',
|
|
123
118
|
// Boolean cell text
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
119
|
+
booleanCellTrueLabel: 'ναί',
|
|
120
|
+
booleanCellFalseLabel: 'όχι',
|
|
127
121
|
// Actions cell more text
|
|
128
|
-
actionsCellMore: 'περισσότερα'
|
|
129
|
-
|
|
122
|
+
actionsCellMore: 'περισσότερα',
|
|
130
123
|
// Column pinning text
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
124
|
+
pinToLeft: 'Καρφιτσώμα στα αριστερά',
|
|
125
|
+
pinToRight: 'Καρφιτσώμα στα δεξιά',
|
|
126
|
+
unpin: 'Ξεκαρφίτσωμα',
|
|
135
127
|
// Tree Data
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
128
|
+
treeDataGroupingHeaderName: 'Ομαδοποίηση',
|
|
129
|
+
treeDataExpand: 'εμφάνιση περιεχομένων',
|
|
130
|
+
treeDataCollapse: 'απόκρυψη περιεχομένων',
|
|
140
131
|
// Grouping columns
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
132
|
+
groupingColumnHeaderName: 'Ομαδοποίηση',
|
|
133
|
+
groupColumn: name => `Ομαδοποίηση κατά ${name}`,
|
|
134
|
+
unGroupColumn: name => `Διακοπή ομαδοποίησης κατά ${name}`,
|
|
145
135
|
// Master/detail
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
136
|
+
detailPanelToggle: 'Εναλλαγή πίνακα λεπτομερειών',
|
|
137
|
+
expandDetailPanel: 'Ανάπτυξη',
|
|
138
|
+
collapseDetailPanel: 'Σύμπτυξη',
|
|
150
139
|
// Row reordering text
|
|
151
|
-
|
|
152
|
-
|
|
140
|
+
rowReorderingHeaderName: 'Αναδιάταξη γραμμών',
|
|
153
141
|
// Aggregation
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
142
|
+
aggregationMenuItemHeader: 'Συσσωμάτωση',
|
|
143
|
+
aggregationFunctionLabelSum: 'άθροισμα',
|
|
144
|
+
aggregationFunctionLabelAvg: 'μέση τιμή',
|
|
145
|
+
aggregationFunctionLabelMin: 'ελάχιστο',
|
|
146
|
+
aggregationFunctionLabelMax: 'μέγιστο',
|
|
147
|
+
aggregationFunctionLabelSize: 'μέγεθος'
|
|
160
148
|
};
|
|
161
|
-
|
|
162
|
-
export const elGR = getGridLocalization(elGRGrid);
|
|
149
|
+
export const elGR = getGridLocalization(elGRGrid, elGRCore);
|
package/modern/locales/esES.js
CHANGED
|
@@ -83,10 +83,10 @@ const esESGrid = {
|
|
|
83
83
|
// headerFilterOperatorIsAnyOf: 'Is any of',
|
|
84
84
|
// 'headerFilterOperator=': 'Equals',
|
|
85
85
|
// 'headerFilterOperator!=': 'Not equals',
|
|
86
|
-
// 'headerFilterOperator>': '
|
|
87
|
-
// 'headerFilterOperator>=': '
|
|
88
|
-
// 'headerFilterOperator<': '
|
|
89
|
-
// 'headerFilterOperator<=': '
|
|
86
|
+
// 'headerFilterOperator>': 'Greater than',
|
|
87
|
+
// 'headerFilterOperator>=': 'Greater than or equal to',
|
|
88
|
+
// 'headerFilterOperator<': 'Less than',
|
|
89
|
+
// 'headerFilterOperator<=': 'Less than or equal to',
|
|
90
90
|
|
|
91
91
|
// Filter values text
|
|
92
92
|
filterValueAny: 'cualquiera',
|
package/modern/locales/faIR.js
CHANGED
|
@@ -83,10 +83,10 @@ const faIRGrid = {
|
|
|
83
83
|
// headerFilterOperatorIsAnyOf: 'Is any of',
|
|
84
84
|
// 'headerFilterOperator=': 'Equals',
|
|
85
85
|
// 'headerFilterOperator!=': 'Not equals',
|
|
86
|
-
// 'headerFilterOperator>': '
|
|
87
|
-
// 'headerFilterOperator>=': '
|
|
88
|
-
// 'headerFilterOperator<': '
|
|
89
|
-
// 'headerFilterOperator<=': '
|
|
86
|
+
// 'headerFilterOperator>': 'Greater than',
|
|
87
|
+
// 'headerFilterOperator>=': 'Greater than or equal to',
|
|
88
|
+
// 'headerFilterOperator<': 'Less than',
|
|
89
|
+
// 'headerFilterOperator<=': 'Less than or equal to',
|
|
90
90
|
|
|
91
91
|
// Filter values text
|
|
92
92
|
filterValueAny: 'هرچیزی',
|
package/modern/locales/fiFI.js
CHANGED
|
@@ -83,10 +83,10 @@ const fiFIGrid = {
|
|
|
83
83
|
// headerFilterOperatorIsAnyOf: 'Is any of',
|
|
84
84
|
// 'headerFilterOperator=': 'Equals',
|
|
85
85
|
// 'headerFilterOperator!=': 'Not equals',
|
|
86
|
-
// 'headerFilterOperator>': '
|
|
87
|
-
// 'headerFilterOperator>=': '
|
|
88
|
-
// 'headerFilterOperator<': '
|
|
89
|
-
// 'headerFilterOperator<=': '
|
|
86
|
+
// 'headerFilterOperator>': 'Greater than',
|
|
87
|
+
// 'headerFilterOperator>=': 'Greater than or equal to',
|
|
88
|
+
// 'headerFilterOperator<': 'Less than',
|
|
89
|
+
// 'headerFilterOperator<=': 'Less than or equal to',
|
|
90
90
|
|
|
91
91
|
// Filter values text
|
|
92
92
|
filterValueAny: 'mikä tahansa',
|
package/modern/locales/heIL.js
CHANGED
|
@@ -83,10 +83,10 @@ const heILGrid = {
|
|
|
83
83
|
// headerFilterOperatorIsAnyOf: 'Is any of',
|
|
84
84
|
// 'headerFilterOperator=': 'Equals',
|
|
85
85
|
// 'headerFilterOperator!=': 'Not equals',
|
|
86
|
-
// 'headerFilterOperator>': '
|
|
87
|
-
// 'headerFilterOperator>=': '
|
|
88
|
-
// 'headerFilterOperator<': '
|
|
89
|
-
// 'headerFilterOperator<=': '
|
|
86
|
+
// 'headerFilterOperator>': 'Greater than',
|
|
87
|
+
// 'headerFilterOperator>=': 'Greater than or equal to',
|
|
88
|
+
// 'headerFilterOperator<': 'Less than',
|
|
89
|
+
// 'headerFilterOperator<=': 'Less than or equal to',
|
|
90
90
|
|
|
91
91
|
// Filter values text
|
|
92
92
|
filterValueAny: 'כל ערך',
|
package/modern/locales/huHU.js
CHANGED
|
@@ -83,10 +83,10 @@ const huHUGrid = {
|
|
|
83
83
|
// headerFilterOperatorIsAnyOf: 'Is any of',
|
|
84
84
|
// 'headerFilterOperator=': 'Equals',
|
|
85
85
|
// 'headerFilterOperator!=': 'Not equals',
|
|
86
|
-
// 'headerFilterOperator>': '
|
|
87
|
-
// 'headerFilterOperator>=': '
|
|
88
|
-
// 'headerFilterOperator<': '
|
|
89
|
-
// 'headerFilterOperator<=': '
|
|
86
|
+
// 'headerFilterOperator>': 'Greater than',
|
|
87
|
+
// 'headerFilterOperator>=': 'Greater than or equal to',
|
|
88
|
+
// 'headerFilterOperator<': 'Less than',
|
|
89
|
+
// 'headerFilterOperator<=': 'Less than or equal to',
|
|
90
90
|
|
|
91
91
|
// Filter values text
|
|
92
92
|
filterValueAny: 'bármilyen',
|
package/modern/locales/itIT.js
CHANGED
|
@@ -83,10 +83,10 @@ const itITGrid = {
|
|
|
83
83
|
// headerFilterOperatorIsAnyOf: 'Is any of',
|
|
84
84
|
// 'headerFilterOperator=': 'Equals',
|
|
85
85
|
// 'headerFilterOperator!=': 'Not equals',
|
|
86
|
-
// 'headerFilterOperator>': '
|
|
87
|
-
// 'headerFilterOperator>=': '
|
|
88
|
-
// 'headerFilterOperator<': '
|
|
89
|
-
// 'headerFilterOperator<=': '
|
|
86
|
+
// 'headerFilterOperator>': 'Greater than',
|
|
87
|
+
// 'headerFilterOperator>=': 'Greater than or equal to',
|
|
88
|
+
// 'headerFilterOperator<': 'Less than',
|
|
89
|
+
// 'headerFilterOperator<=': 'Less than or equal to',
|
|
90
90
|
|
|
91
91
|
// Filter values text
|
|
92
92
|
filterValueAny: 'qualunque',
|
package/modern/locales/jaJP.js
CHANGED
|
@@ -83,10 +83,10 @@ const jaJPGrid = {
|
|
|
83
83
|
// headerFilterOperatorIsAnyOf: 'Is any of',
|
|
84
84
|
// 'headerFilterOperator=': 'Equals',
|
|
85
85
|
// 'headerFilterOperator!=': 'Not equals',
|
|
86
|
-
// 'headerFilterOperator>': '
|
|
87
|
-
// 'headerFilterOperator>=': '
|
|
88
|
-
// 'headerFilterOperator<': '
|
|
89
|
-
// 'headerFilterOperator<=': '
|
|
86
|
+
// 'headerFilterOperator>': 'Greater than',
|
|
87
|
+
// 'headerFilterOperator>=': 'Greater than or equal to',
|
|
88
|
+
// 'headerFilterOperator<': 'Less than',
|
|
89
|
+
// 'headerFilterOperator<=': 'Less than or equal to',
|
|
90
90
|
|
|
91
91
|
// Filter values text
|
|
92
92
|
filterValueAny: 'いずれか',
|
package/modern/locales/koKR.js
CHANGED
|
@@ -83,10 +83,10 @@ const koKRGrid = {
|
|
|
83
83
|
// headerFilterOperatorIsAnyOf: 'Is any of',
|
|
84
84
|
// 'headerFilterOperator=': 'Equals',
|
|
85
85
|
// 'headerFilterOperator!=': 'Not equals',
|
|
86
|
-
// 'headerFilterOperator>': '
|
|
87
|
-
// 'headerFilterOperator>=': '
|
|
88
|
-
// 'headerFilterOperator<': '
|
|
89
|
-
// 'headerFilterOperator<=': '
|
|
86
|
+
// 'headerFilterOperator>': 'Greater than',
|
|
87
|
+
// 'headerFilterOperator>=': 'Greater than or equal to',
|
|
88
|
+
// 'headerFilterOperator<': 'Less than',
|
|
89
|
+
// 'headerFilterOperator<=': 'Less than or equal to',
|
|
90
90
|
|
|
91
91
|
// Filter values text
|
|
92
92
|
filterValueAny: '아무값',
|
package/modern/locales/nbNO.js
CHANGED
|
@@ -83,10 +83,10 @@ const nbNOGrid = {
|
|
|
83
83
|
// headerFilterOperatorIsAnyOf: 'Is any of',
|
|
84
84
|
// 'headerFilterOperator=': 'Equals',
|
|
85
85
|
// 'headerFilterOperator!=': 'Not equals',
|
|
86
|
-
// 'headerFilterOperator>': '
|
|
87
|
-
// 'headerFilterOperator>=': '
|
|
88
|
-
// 'headerFilterOperator<': '
|
|
89
|
-
// 'headerFilterOperator<=': '
|
|
86
|
+
// 'headerFilterOperator>': 'Greater than',
|
|
87
|
+
// 'headerFilterOperator>=': 'Greater than or equal to',
|
|
88
|
+
// 'headerFilterOperator<': 'Less than',
|
|
89
|
+
// 'headerFilterOperator<=': 'Less than or equal to',
|
|
90
90
|
|
|
91
91
|
// Filter values text
|
|
92
92
|
filterValueAny: 'noen',
|
package/modern/locales/plPL.js
CHANGED
|
@@ -83,10 +83,10 @@ const plPLGrid = {
|
|
|
83
83
|
// headerFilterOperatorIsAnyOf: 'Is any of',
|
|
84
84
|
// 'headerFilterOperator=': 'Equals',
|
|
85
85
|
// 'headerFilterOperator!=': 'Not equals',
|
|
86
|
-
// 'headerFilterOperator>': '
|
|
87
|
-
// 'headerFilterOperator>=': '
|
|
88
|
-
// 'headerFilterOperator<': '
|
|
89
|
-
// 'headerFilterOperator<=': '
|
|
86
|
+
// 'headerFilterOperator>': 'Greater than',
|
|
87
|
+
// 'headerFilterOperator>=': 'Greater than or equal to',
|
|
88
|
+
// 'headerFilterOperator<': 'Less than',
|
|
89
|
+
// 'headerFilterOperator<=': 'Less than or equal to',
|
|
90
90
|
|
|
91
91
|
// Filter values text
|
|
92
92
|
filterValueAny: 'dowolny',
|
package/modern/locales/ptBR.js
CHANGED
|
@@ -83,10 +83,10 @@ const ptBRGrid = {
|
|
|
83
83
|
// headerFilterOperatorIsAnyOf: 'Is any of',
|
|
84
84
|
// 'headerFilterOperator=': 'Equals',
|
|
85
85
|
// 'headerFilterOperator!=': 'Not equals',
|
|
86
|
-
// 'headerFilterOperator>': '
|
|
87
|
-
// 'headerFilterOperator>=': '
|
|
88
|
-
// 'headerFilterOperator<': '
|
|
89
|
-
// 'headerFilterOperator<=': '
|
|
86
|
+
// 'headerFilterOperator>': 'Greater than',
|
|
87
|
+
// 'headerFilterOperator>=': 'Greater than or equal to',
|
|
88
|
+
// 'headerFilterOperator<': 'Less than',
|
|
89
|
+
// 'headerFilterOperator<=': 'Less than or equal to',
|
|
90
90
|
|
|
91
91
|
// Filter values text
|
|
92
92
|
filterValueAny: 'qualquer',
|
package/modern/locales/roRO.js
CHANGED
|
@@ -83,10 +83,10 @@ const roROGrid = {
|
|
|
83
83
|
// headerFilterOperatorIsAnyOf: 'Is any of',
|
|
84
84
|
// 'headerFilterOperator=': 'Equals',
|
|
85
85
|
// 'headerFilterOperator!=': 'Not equals',
|
|
86
|
-
// 'headerFilterOperator>': '
|
|
87
|
-
// 'headerFilterOperator>=': '
|
|
88
|
-
// 'headerFilterOperator<': '
|
|
89
|
-
// 'headerFilterOperator<=': '
|
|
86
|
+
// 'headerFilterOperator>': 'Greater than',
|
|
87
|
+
// 'headerFilterOperator>=': 'Greater than or equal to',
|
|
88
|
+
// 'headerFilterOperator<': 'Less than',
|
|
89
|
+
// 'headerFilterOperator<=': 'Less than or equal to',
|
|
90
90
|
|
|
91
91
|
// Filter values text
|
|
92
92
|
filterValueAny: 'Aleatoriu',
|
package/modern/locales/ruRU.js
CHANGED
|
@@ -92,10 +92,10 @@ const ruRUGrid = {
|
|
|
92
92
|
// headerFilterOperatorIsAnyOf: 'Is any of',
|
|
93
93
|
// 'headerFilterOperator=': 'Equals',
|
|
94
94
|
// 'headerFilterOperator!=': 'Not equals',
|
|
95
|
-
// 'headerFilterOperator>': '
|
|
96
|
-
// 'headerFilterOperator>=': '
|
|
97
|
-
// 'headerFilterOperator<': '
|
|
98
|
-
// 'headerFilterOperator<=': '
|
|
95
|
+
// 'headerFilterOperator>': 'Greater than',
|
|
96
|
+
// 'headerFilterOperator>=': 'Greater than or equal to',
|
|
97
|
+
// 'headerFilterOperator<': 'Less than',
|
|
98
|
+
// 'headerFilterOperator<=': 'Less than or equal to',
|
|
99
99
|
|
|
100
100
|
// Filter values text
|
|
101
101
|
filterValueAny: 'любой',
|
package/modern/locales/skSK.js
CHANGED
|
@@ -91,10 +91,10 @@ const skSKGrid = {
|
|
|
91
91
|
// headerFilterOperatorIsAnyOf: 'Is any of',
|
|
92
92
|
// 'headerFilterOperator=': 'Equals',
|
|
93
93
|
// 'headerFilterOperator!=': 'Not equals',
|
|
94
|
-
// 'headerFilterOperator>': '
|
|
95
|
-
// 'headerFilterOperator>=': '
|
|
96
|
-
// 'headerFilterOperator<': '
|
|
97
|
-
// 'headerFilterOperator<=': '
|
|
94
|
+
// 'headerFilterOperator>': 'Greater than',
|
|
95
|
+
// 'headerFilterOperator>=': 'Greater than or equal to',
|
|
96
|
+
// 'headerFilterOperator<': 'Less than',
|
|
97
|
+
// 'headerFilterOperator<=': 'Less than or equal to',
|
|
98
98
|
|
|
99
99
|
// Filter values text
|
|
100
100
|
filterValueAny: 'akýkoľvek',
|
package/modern/locales/svSE.js
CHANGED
|
@@ -83,10 +83,10 @@ const svSEGrid = {
|
|
|
83
83
|
// headerFilterOperatorIsAnyOf: 'Is any of',
|
|
84
84
|
// 'headerFilterOperator=': 'Equals',
|
|
85
85
|
// 'headerFilterOperator!=': 'Not equals',
|
|
86
|
-
// 'headerFilterOperator>': '
|
|
87
|
-
// 'headerFilterOperator>=': '
|
|
88
|
-
// 'headerFilterOperator<': '
|
|
89
|
-
// 'headerFilterOperator<=': '
|
|
86
|
+
// 'headerFilterOperator>': 'Greater than',
|
|
87
|
+
// 'headerFilterOperator>=': 'Greater than or equal to',
|
|
88
|
+
// 'headerFilterOperator<': 'Less than',
|
|
89
|
+
// 'headerFilterOperator<=': 'Less than or equal to',
|
|
90
90
|
|
|
91
91
|
// Filter values text
|
|
92
92
|
filterValueAny: 'något',
|
package/modern/locales/trTR.js
CHANGED
|
@@ -60,18 +60,17 @@ const trTRGrid = {
|
|
|
60
60
|
filterOperatorIsEmpty: 'boş',
|
|
61
61
|
filterOperatorIsNotEmpty: 'dolu',
|
|
62
62
|
filterOperatorIsAnyOf: 'herhangi biri',
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
63
|
+
'filterOperator=': '=',
|
|
64
|
+
'filterOperator!=': '!=',
|
|
65
|
+
'filterOperator>': '>',
|
|
66
|
+
'filterOperator>=': '>=',
|
|
67
|
+
'filterOperator<': '<',
|
|
68
|
+
'filterOperator<=': '<=',
|
|
70
69
|
// Header filter operators text
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
70
|
+
headerFilterOperatorContains: 'Şunu içerir',
|
|
71
|
+
headerFilterOperatorEquals: 'Şuna eşittir',
|
|
72
|
+
headerFilterOperatorStartsWith: 'Şununla başlar',
|
|
73
|
+
headerFilterOperatorEndsWith: 'Şununla biter',
|
|
75
74
|
// headerFilterOperatorIs: 'Is',
|
|
76
75
|
// headerFilterOperatorNot: 'Is not',
|
|
77
76
|
// headerFilterOperatorAfter: 'Is after',
|
|
@@ -83,10 +82,10 @@ const trTRGrid = {
|
|
|
83
82
|
// headerFilterOperatorIsAnyOf: 'Is any of',
|
|
84
83
|
// 'headerFilterOperator=': 'Equals',
|
|
85
84
|
// 'headerFilterOperator!=': 'Not equals',
|
|
86
|
-
// 'headerFilterOperator>': '
|
|
87
|
-
// 'headerFilterOperator>=': '
|
|
88
|
-
// 'headerFilterOperator<': '
|
|
89
|
-
// 'headerFilterOperator<=': '
|
|
85
|
+
// 'headerFilterOperator>': 'Greater than',
|
|
86
|
+
// 'headerFilterOperator>=': 'Greater than or equal to',
|
|
87
|
+
// 'headerFilterOperator<': 'Less than',
|
|
88
|
+
// 'headerFilterOperator<=': 'Less than or equal to',
|
|
90
89
|
|
|
91
90
|
// Filter values text
|
|
92
91
|
filterValueAny: 'herhangi',
|
|
@@ -96,9 +95,9 @@ const trTRGrid = {
|
|
|
96
95
|
columnMenuLabel: 'Menü',
|
|
97
96
|
columnMenuShowColumns: 'Sütunları göster',
|
|
98
97
|
columnMenuManageColumns: 'Sütunları yönet',
|
|
99
|
-
columnMenuFilter: 'Filtre
|
|
98
|
+
columnMenuFilter: 'Filtre Ekle',
|
|
100
99
|
columnMenuHideColumn: 'Gizle',
|
|
101
|
-
columnMenuUnsort: 'Sıralama',
|
|
100
|
+
columnMenuUnsort: 'Varsayılan Sıralama',
|
|
102
101
|
columnMenuSortAsc: 'Sırala - Artan',
|
|
103
102
|
columnMenuSortDesc: 'Sırala - Azalan',
|
|
104
103
|
// Column header text
|
package/modern/locales/ukUA.js
CHANGED
|
@@ -97,10 +97,10 @@ const ukUAGrid = {
|
|
|
97
97
|
// headerFilterOperatorIsAnyOf: 'Is any of',
|
|
98
98
|
// 'headerFilterOperator=': 'Equals',
|
|
99
99
|
// 'headerFilterOperator!=': 'Not equals',
|
|
100
|
-
// 'headerFilterOperator>': '
|
|
101
|
-
// 'headerFilterOperator>=': '
|
|
102
|
-
// 'headerFilterOperator<': '
|
|
103
|
-
// 'headerFilterOperator<=': '
|
|
100
|
+
// 'headerFilterOperator>': 'Greater than',
|
|
101
|
+
// 'headerFilterOperator>=': 'Greater than or equal to',
|
|
102
|
+
// 'headerFilterOperator<': 'Less than',
|
|
103
|
+
// 'headerFilterOperator<=': 'Less than or equal to',
|
|
104
104
|
|
|
105
105
|
// Filter values text
|
|
106
106
|
filterValueAny: 'будь-який',
|
package/modern/locales/urPK.js
CHANGED
|
@@ -83,10 +83,10 @@ const urPKGrid = {
|
|
|
83
83
|
// headerFilterOperatorIsAnyOf: 'Is any of',
|
|
84
84
|
// 'headerFilterOperator=': 'Equals',
|
|
85
85
|
// 'headerFilterOperator!=': 'Not equals',
|
|
86
|
-
// 'headerFilterOperator>': '
|
|
87
|
-
// 'headerFilterOperator>=': '
|
|
88
|
-
// 'headerFilterOperator<': '
|
|
89
|
-
// 'headerFilterOperator<=': '
|
|
86
|
+
// 'headerFilterOperator>': 'Greater than',
|
|
87
|
+
// 'headerFilterOperator>=': 'Greater than or equal to',
|
|
88
|
+
// 'headerFilterOperator<': 'Less than',
|
|
89
|
+
// 'headerFilterOperator<=': 'Less than or equal to',
|
|
90
90
|
|
|
91
91
|
// Filter values text
|
|
92
92
|
filterValueAny: 'کوئی بھی',
|
package/modern/locales/viVN.js
CHANGED
|
@@ -83,10 +83,10 @@ const viVNGrid = {
|
|
|
83
83
|
// headerFilterOperatorIsAnyOf: 'Is any of',
|
|
84
84
|
// 'headerFilterOperator=': 'Equals',
|
|
85
85
|
// 'headerFilterOperator!=': 'Not equals',
|
|
86
|
-
// 'headerFilterOperator>': '
|
|
87
|
-
// 'headerFilterOperator>=': '
|
|
88
|
-
// 'headerFilterOperator<': '
|
|
89
|
-
// 'headerFilterOperator<=': '
|
|
86
|
+
// 'headerFilterOperator>': 'Greater than',
|
|
87
|
+
// 'headerFilterOperator>=': 'Greater than or equal to',
|
|
88
|
+
// 'headerFilterOperator<': 'Less than',
|
|
89
|
+
// 'headerFilterOperator<=': 'Less than or equal to',
|
|
90
90
|
|
|
91
91
|
// Filter values text
|
|
92
92
|
filterValueAny: 'bất kỳ giá trị nào',
|
package/modern/locales/zhCN.js
CHANGED
|
@@ -83,10 +83,10 @@ const zhCNGrid = {
|
|
|
83
83
|
// headerFilterOperatorIsAnyOf: 'Is any of',
|
|
84
84
|
// 'headerFilterOperator=': 'Equals',
|
|
85
85
|
// 'headerFilterOperator!=': 'Not equals',
|
|
86
|
-
// 'headerFilterOperator>': '
|
|
87
|
-
// 'headerFilterOperator>=': '
|
|
88
|
-
// 'headerFilterOperator<': '
|
|
89
|
-
// 'headerFilterOperator<=': '
|
|
86
|
+
// 'headerFilterOperator>': 'Greater than',
|
|
87
|
+
// 'headerFilterOperator>=': 'Greater than or equal to',
|
|
88
|
+
// 'headerFilterOperator<': 'Less than',
|
|
89
|
+
// 'headerFilterOperator<=': 'Less than or equal to',
|
|
90
90
|
|
|
91
91
|
// Filter values text
|
|
92
92
|
filterValueAny: '任何',
|
package/modern/locales/zhTW.js
CHANGED
|
@@ -83,10 +83,10 @@ const zhTWGrid = {
|
|
|
83
83
|
// headerFilterOperatorIsAnyOf: 'Is any of',
|
|
84
84
|
// 'headerFilterOperator=': 'Equals',
|
|
85
85
|
// 'headerFilterOperator!=': 'Not equals',
|
|
86
|
-
// 'headerFilterOperator>': '
|
|
87
|
-
// 'headerFilterOperator>=': '
|
|
88
|
-
// 'headerFilterOperator<': '
|
|
89
|
-
// 'headerFilterOperator<=': '
|
|
86
|
+
// 'headerFilterOperator>': 'Greater than',
|
|
87
|
+
// 'headerFilterOperator>=': 'Greater than or equal to',
|
|
88
|
+
// 'headerFilterOperator<': 'Less than',
|
|
89
|
+
// 'headerFilterOperator<=': 'Less than or equal to',
|
|
90
90
|
|
|
91
91
|
// Filter values text
|
|
92
92
|
filterValueAny: '任何值',
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
// the Node.js (https://nodejs.org/api/events.html) polyfill used by webpack.
|
|
4
4
|
export class EventManager {
|
|
5
5
|
constructor() {
|
|
6
|
-
this.maxListeners =
|
|
6
|
+
this.maxListeners = 20;
|
|
7
7
|
this.warnOnce = false;
|
|
8
8
|
this.events = {};
|
|
9
9
|
}
|
|
@@ -25,7 +25,7 @@ export class EventManager {
|
|
|
25
25
|
const collectionSize = collection.highPriority.size + collection.regular.size;
|
|
26
26
|
if (collectionSize > this.maxListeners && !this.warnOnce) {
|
|
27
27
|
this.warnOnce = true;
|
|
28
|
-
console.warn([`Possible EventEmitter memory leak detected. ${collectionSize} ${eventName} listeners added
|
|
28
|
+
console.warn([`Possible EventEmitter memory leak detected. ${collectionSize} ${eventName} listeners added.`].join('\n'));
|
|
29
29
|
}
|
|
30
30
|
}
|
|
31
31
|
}
|