@mui/x-data-grid 7.16.0 → 7.18.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 +184 -4
- package/DataGrid/DataGrid.js +11 -1
- package/DataGrid/useDataGridComponent.js +3 -0
- package/DataGrid/useDataGridProps.js +2 -1
- package/colDef/gridStringOperators.js +49 -33
- package/components/GridRow.js +1 -0
- package/components/cell/GridCell.js +30 -5
- package/components/columnHeaders/GridColumnHeaderItem.d.ts +2 -0
- package/components/columnHeaders/GridColumnHeaderItem.js +9 -2
- package/components/columnHeaders/GridColumnHeaderTitle.js +3 -1
- package/components/columnHeaders/GridGenericColumnHeaderItem.js +1 -2
- package/components/containers/GridRootStyles.js +3 -7
- package/components/panel/filterPanel/GridFilterForm.js +1 -1
- package/constants/gridClasses.d.ts +10 -0
- package/constants/gridClasses.js +1 -1
- package/constants/localeTextConstants.js +4 -0
- package/hooks/features/columnHeaders/useGridColumnHeaders.d.ts +0 -1
- package/hooks/features/columnHeaders/useGridColumnHeaders.js +17 -12
- package/hooks/features/columnResize/useGridColumnResize.js +6 -6
- package/hooks/features/dimensions/gridDimensionsApi.d.ts +4 -0
- package/hooks/features/dimensions/useGridDimensions.d.ts +1 -1
- package/hooks/features/dimensions/useGridDimensions.js +4 -1
- package/hooks/features/editing/useGridCellEditing.js +3 -19
- package/hooks/features/editing/useGridRowEditing.js +7 -2
- package/hooks/features/editing/utils.d.ts +2 -0
- package/hooks/features/editing/utils.js +15 -0
- package/hooks/features/export/serializers/csvSerializer.js +1 -1
- package/hooks/features/export/useGridPrintExport.js +2 -1
- package/hooks/features/filter/gridFilterUtils.js +1 -1
- package/hooks/features/focus/useGridFocus.js +2 -1
- package/hooks/features/keyboardNavigation/useGridKeyboardNavigation.js +10 -46
- package/hooks/features/keyboardNavigation/utils.d.ts +17 -0
- package/hooks/features/keyboardNavigation/utils.js +58 -0
- package/hooks/features/rows/gridRowSpanningSelectors.d.ts +4 -0
- package/hooks/features/rows/gridRowSpanningSelectors.js +5 -0
- package/hooks/features/rows/gridRowSpanningUtils.d.ts +10 -0
- package/hooks/features/rows/gridRowSpanningUtils.js +42 -0
- package/hooks/features/rows/useGridRowSpanning.d.ts +27 -0
- package/hooks/features/rows/useGridRowSpanning.js +257 -0
- package/hooks/features/sorting/gridSortingUtils.js +1 -1
- package/hooks/features/virtualization/useGridVirtualScroller.d.ts +1 -1
- package/hooks/features/virtualization/useGridVirtualScroller.js +17 -7
- package/hooks/utils/useGridApiEventHandler.js +0 -1
- package/hooks/utils/useGridSelector.js +1 -1
- package/index.js +1 -1
- package/internals/index.d.ts +1 -0
- package/internals/index.js +1 -0
- package/internals/utils/index.d.ts +0 -1
- package/internals/utils/index.js +1 -2
- package/internals/utils/propValidation.js +1 -1
- package/locales/arSD.js +4 -0
- package/locales/beBY.js +4 -0
- package/locales/bgBG.js +4 -0
- package/locales/csCZ.js +4 -0
- package/locales/daDK.js +4 -0
- package/locales/deDE.js +4 -0
- package/locales/elGR.js +4 -0
- package/locales/esES.js +4 -0
- package/locales/faIR.js +4 -0
- package/locales/fiFI.js +4 -0
- package/locales/frFR.js +4 -0
- package/locales/heIL.js +4 -0
- package/locales/hrHR.js +4 -0
- package/locales/huHU.js +11 -8
- package/locales/isIS.js +4 -0
- package/locales/itIT.js +4 -0
- package/locales/jaJP.js +4 -0
- package/locales/koKR.js +4 -0
- package/locales/nbNO.js +4 -0
- package/locales/nlNL.js +4 -0
- package/locales/nnNO.js +4 -0
- package/locales/plPL.js +4 -0
- package/locales/ptBR.js +4 -0
- package/locales/ptPT.js +4 -0
- package/locales/roRO.js +4 -0
- package/locales/ruRU.js +4 -0
- package/locales/skSK.js +4 -0
- package/locales/svSE.js +4 -0
- package/locales/trTR.js +4 -0
- package/locales/ukUA.js +4 -0
- package/locales/urPK.js +4 -0
- package/locales/viVN.js +4 -0
- package/locales/zhCN.js +4 -0
- package/locales/zhHK.js +4 -0
- package/locales/zhTW.js +4 -0
- package/models/api/gridLocaleTextApi.d.ts +4 -0
- package/models/colDef/gridColDef.d.ts +4 -0
- package/models/gridStateCommunity.d.ts +2 -0
- package/models/props/DataGridProps.d.ts +10 -0
- package/modern/DataGrid/DataGrid.js +11 -1
- package/modern/DataGrid/useDataGridComponent.js +3 -0
- package/modern/DataGrid/useDataGridProps.js +2 -1
- package/modern/colDef/gridStringOperators.js +49 -33
- package/modern/components/GridRow.js +1 -0
- package/modern/components/cell/GridCell.js +30 -5
- package/modern/components/columnHeaders/GridColumnHeaderItem.js +9 -2
- package/modern/components/columnHeaders/GridColumnHeaderTitle.js +3 -1
- package/modern/components/columnHeaders/GridGenericColumnHeaderItem.js +1 -2
- package/modern/components/containers/GridRootStyles.js +3 -7
- package/modern/components/panel/filterPanel/GridFilterForm.js +1 -1
- package/modern/constants/gridClasses.js +1 -1
- package/modern/constants/localeTextConstants.js +4 -0
- package/modern/hooks/features/columnHeaders/useGridColumnHeaders.js +17 -12
- package/modern/hooks/features/columnResize/useGridColumnResize.js +6 -6
- package/modern/hooks/features/dimensions/useGridDimensions.js +4 -1
- package/modern/hooks/features/editing/useGridCellEditing.js +3 -19
- package/modern/hooks/features/editing/useGridRowEditing.js +7 -2
- package/modern/hooks/features/editing/utils.js +15 -0
- package/modern/hooks/features/export/serializers/csvSerializer.js +1 -1
- package/modern/hooks/features/export/useGridPrintExport.js +2 -1
- package/modern/hooks/features/filter/gridFilterUtils.js +1 -1
- package/modern/hooks/features/focus/useGridFocus.js +2 -1
- package/modern/hooks/features/keyboardNavigation/useGridKeyboardNavigation.js +10 -46
- package/modern/hooks/features/keyboardNavigation/utils.js +58 -0
- package/modern/hooks/features/rows/gridRowSpanningSelectors.js +5 -0
- package/modern/hooks/features/rows/gridRowSpanningUtils.js +42 -0
- package/modern/hooks/features/rows/useGridRowSpanning.js +257 -0
- package/modern/hooks/features/sorting/gridSortingUtils.js +1 -1
- package/modern/hooks/features/virtualization/useGridVirtualScroller.js +17 -7
- package/modern/hooks/utils/useGridApiEventHandler.js +0 -1
- package/modern/hooks/utils/useGridSelector.js +1 -1
- package/modern/index.js +1 -1
- package/modern/internals/index.js +1 -0
- package/modern/internals/utils/index.js +1 -2
- package/modern/internals/utils/propValidation.js +1 -1
- package/modern/locales/arSD.js +4 -0
- package/modern/locales/beBY.js +4 -0
- package/modern/locales/bgBG.js +4 -0
- package/modern/locales/csCZ.js +4 -0
- package/modern/locales/daDK.js +4 -0
- package/modern/locales/deDE.js +4 -0
- package/modern/locales/elGR.js +4 -0
- package/modern/locales/esES.js +4 -0
- package/modern/locales/faIR.js +4 -0
- package/modern/locales/fiFI.js +4 -0
- package/modern/locales/frFR.js +4 -0
- package/modern/locales/heIL.js +4 -0
- package/modern/locales/hrHR.js +4 -0
- package/modern/locales/huHU.js +11 -8
- package/modern/locales/isIS.js +4 -0
- package/modern/locales/itIT.js +4 -0
- package/modern/locales/jaJP.js +4 -0
- package/modern/locales/koKR.js +4 -0
- package/modern/locales/nbNO.js +4 -0
- package/modern/locales/nlNL.js +4 -0
- package/modern/locales/nnNO.js +4 -0
- package/modern/locales/plPL.js +4 -0
- package/modern/locales/ptBR.js +4 -0
- package/modern/locales/ptPT.js +4 -0
- package/modern/locales/roRO.js +4 -0
- package/modern/locales/ruRU.js +4 -0
- package/modern/locales/skSK.js +4 -0
- package/modern/locales/svSE.js +4 -0
- package/modern/locales/trTR.js +4 -0
- package/modern/locales/ukUA.js +4 -0
- package/modern/locales/urPK.js +4 -0
- package/modern/locales/viVN.js +4 -0
- package/modern/locales/zhCN.js +4 -0
- package/modern/locales/zhHK.js +4 -0
- package/modern/locales/zhTW.js +4 -0
- package/modern/utils/createSelector.js +1 -1
- package/modern/utils/domUtils.js +12 -12
- package/node/DataGrid/DataGrid.js +11 -1
- package/node/DataGrid/useDataGridComponent.js +3 -0
- package/node/DataGrid/useDataGridProps.js +2 -1
- package/node/colDef/gridStringOperators.js +49 -33
- package/node/components/GridRow.js +1 -0
- package/node/components/cell/GridCell.js +30 -5
- package/node/components/columnHeaders/GridColumnHeaderItem.js +9 -2
- package/node/components/columnHeaders/GridColumnHeaderTitle.js +3 -1
- package/node/components/columnHeaders/GridGenericColumnHeaderItem.js +1 -2
- package/node/components/containers/GridRootStyles.js +3 -7
- package/node/components/panel/filterPanel/GridFilterForm.js +1 -1
- package/node/constants/gridClasses.js +1 -1
- package/node/constants/localeTextConstants.js +4 -0
- package/node/hooks/features/columnHeaders/useGridColumnHeaders.js +17 -12
- package/node/hooks/features/columnResize/useGridColumnResize.js +6 -6
- package/node/hooks/features/dimensions/useGridDimensions.js +4 -1
- package/node/hooks/features/editing/useGridCellEditing.js +3 -19
- package/node/hooks/features/editing/useGridRowEditing.js +7 -2
- package/node/hooks/features/editing/utils.js +22 -0
- package/node/hooks/features/export/serializers/csvSerializer.js +1 -1
- package/node/hooks/features/export/useGridPrintExport.js +2 -1
- package/node/hooks/features/filter/gridFilterUtils.js +1 -1
- package/node/hooks/features/focus/useGridFocus.js +2 -1
- package/node/hooks/features/keyboardNavigation/useGridKeyboardNavigation.js +16 -53
- package/node/hooks/features/keyboardNavigation/utils.js +68 -0
- package/node/hooks/features/rows/gridRowSpanningSelectors.js +11 -0
- package/node/hooks/features/rows/gridRowSpanningUtils.js +52 -0
- package/node/hooks/features/rows/useGridRowSpanning.js +267 -0
- package/node/hooks/features/sorting/gridSortingUtils.js +1 -1
- package/node/hooks/features/virtualization/useGridVirtualScroller.js +17 -7
- package/node/hooks/utils/useGridApiEventHandler.js +0 -1
- package/node/hooks/utils/useGridSelector.js +1 -1
- package/node/index.js +1 -1
- package/node/internals/index.js +15 -0
- package/node/internals/utils/index.js +0 -11
- package/node/internals/utils/propValidation.js +1 -1
- package/node/locales/arSD.js +4 -0
- package/node/locales/beBY.js +4 -0
- package/node/locales/bgBG.js +4 -0
- package/node/locales/csCZ.js +4 -0
- package/node/locales/daDK.js +4 -0
- package/node/locales/deDE.js +4 -0
- package/node/locales/elGR.js +4 -0
- package/node/locales/esES.js +4 -0
- package/node/locales/faIR.js +4 -0
- package/node/locales/fiFI.js +4 -0
- package/node/locales/frFR.js +4 -0
- package/node/locales/heIL.js +4 -0
- package/node/locales/hrHR.js +4 -0
- package/node/locales/huHU.js +11 -8
- package/node/locales/isIS.js +4 -0
- package/node/locales/itIT.js +4 -0
- package/node/locales/jaJP.js +4 -0
- package/node/locales/koKR.js +4 -0
- package/node/locales/nbNO.js +4 -0
- package/node/locales/nlNL.js +4 -0
- package/node/locales/nnNO.js +4 -0
- package/node/locales/plPL.js +4 -0
- package/node/locales/ptBR.js +4 -0
- package/node/locales/ptPT.js +4 -0
- package/node/locales/roRO.js +4 -0
- package/node/locales/ruRU.js +4 -0
- package/node/locales/skSK.js +4 -0
- package/node/locales/svSE.js +4 -0
- package/node/locales/trTR.js +4 -0
- package/node/locales/ukUA.js +4 -0
- package/node/locales/urPK.js +4 -0
- package/node/locales/viVN.js +4 -0
- package/node/locales/zhCN.js +4 -0
- package/node/locales/zhHK.js +4 -0
- package/node/locales/zhTW.js +4 -0
- package/node/utils/createSelector.js +1 -1
- package/node/utils/domUtils.js +12 -12
- package/package.json +3 -3
- package/utils/createSelector.js +1 -1
- package/utils/domUtils.d.ts +4 -4
- package/utils/domUtils.js +12 -12
- package/internals/utils/warning.d.ts +0 -2
- package/internals/utils/warning.js +0 -21
- package/modern/internals/utils/warning.js +0 -21
- package/node/internals/utils/warning.js +0 -28
package/modern/locales/arSD.js
CHANGED
|
@@ -48,7 +48,9 @@ const arSDGrid = {
|
|
|
48
48
|
filterPanelInputPlaceholder: 'ترشِيح قيمة',
|
|
49
49
|
// Filter operators text
|
|
50
50
|
filterOperatorContains: 'يحتوي',
|
|
51
|
+
// filterOperatorDoesNotContain: 'does not contain',
|
|
51
52
|
filterOperatorEquals: 'يساوي',
|
|
53
|
+
// filterOperatorDoesNotEqual: 'does not equal',
|
|
52
54
|
filterOperatorStartsWith: 'يبدأ بـ',
|
|
53
55
|
filterOperatorEndsWith: 'ينتهي بـ',
|
|
54
56
|
filterOperatorIs: 'يكون',
|
|
@@ -68,7 +70,9 @@ const arSDGrid = {
|
|
|
68
70
|
'filterOperator<=': '<=',
|
|
69
71
|
// Header filter operators text
|
|
70
72
|
headerFilterOperatorContains: 'يحتوي على',
|
|
73
|
+
// headerFilterOperatorDoesNotContain: 'Does not contain',
|
|
71
74
|
headerFilterOperatorEquals: 'يساوي',
|
|
75
|
+
// headerFilterOperatorDoesNotEqual: 'Does not equal',
|
|
72
76
|
headerFilterOperatorStartsWith: 'يبدأ ب',
|
|
73
77
|
headerFilterOperatorEndsWith: 'ينتهي ب',
|
|
74
78
|
headerFilterOperatorIs: 'هو',
|
package/modern/locales/beBY.js
CHANGED
|
@@ -62,7 +62,9 @@ const beBYGrid = {
|
|
|
62
62
|
filterPanelInputPlaceholder: 'Значэнне фільтра',
|
|
63
63
|
// Filter operators text
|
|
64
64
|
filterOperatorContains: 'змяшчае',
|
|
65
|
+
// filterOperatorDoesNotContain: 'does not contain',
|
|
65
66
|
filterOperatorEquals: 'роўны',
|
|
67
|
+
// filterOperatorDoesNotEqual: 'does not equal',
|
|
66
68
|
filterOperatorStartsWith: 'пачынаецца з',
|
|
67
69
|
filterOperatorEndsWith: 'скончваецца на',
|
|
68
70
|
filterOperatorIs: 'роўны',
|
|
@@ -83,7 +85,9 @@ const beBYGrid = {
|
|
|
83
85
|
|
|
84
86
|
// Header filter operators text
|
|
85
87
|
// headerFilterOperatorContains: 'Contains',
|
|
88
|
+
// headerFilterOperatorDoesNotContain: 'Does not contain',
|
|
86
89
|
// headerFilterOperatorEquals: 'Equals',
|
|
90
|
+
// headerFilterOperatorDoesNotEqual: 'Does not equal',
|
|
87
91
|
// headerFilterOperatorStartsWith: 'Starts with',
|
|
88
92
|
// headerFilterOperatorEndsWith: 'Ends with',
|
|
89
93
|
// headerFilterOperatorIs: 'Is',
|
package/modern/locales/bgBG.js
CHANGED
|
@@ -48,7 +48,9 @@ const bgBGGrid = {
|
|
|
48
48
|
filterPanelInputPlaceholder: 'Стойност на филтъра',
|
|
49
49
|
// Filter operators text
|
|
50
50
|
filterOperatorContains: 'съдържа',
|
|
51
|
+
// filterOperatorDoesNotContain: 'does not contain',
|
|
51
52
|
filterOperatorEquals: 'равно',
|
|
53
|
+
// filterOperatorDoesNotEqual: 'does not equal',
|
|
52
54
|
filterOperatorStartsWith: 'започва с',
|
|
53
55
|
filterOperatorEndsWith: 'завършва с',
|
|
54
56
|
filterOperatorIs: 'е',
|
|
@@ -68,7 +70,9 @@ const bgBGGrid = {
|
|
|
68
70
|
'filterOperator<=': '<=',
|
|
69
71
|
// Header filter operators text
|
|
70
72
|
headerFilterOperatorContains: 'Съдържа',
|
|
73
|
+
// headerFilterOperatorDoesNotContain: 'Does not contain',
|
|
71
74
|
headerFilterOperatorEquals: 'Равнo',
|
|
75
|
+
// headerFilterOperatorDoesNotEqual: 'Does not equal',
|
|
72
76
|
headerFilterOperatorStartsWith: 'Започва с',
|
|
73
77
|
headerFilterOperatorEndsWith: 'Завършва с',
|
|
74
78
|
headerFilterOperatorIs: 'Равно е на',
|
package/modern/locales/csCZ.js
CHANGED
|
@@ -55,7 +55,9 @@ const csCZGrid = {
|
|
|
55
55
|
filterPanelInputPlaceholder: 'Hodnota filtru',
|
|
56
56
|
// Filter operators text
|
|
57
57
|
filterOperatorContains: 'obsahuje',
|
|
58
|
+
// filterOperatorDoesNotContain: 'does not contain',
|
|
58
59
|
filterOperatorEquals: 'rovná se',
|
|
60
|
+
// filterOperatorDoesNotEqual: 'does not equal',
|
|
59
61
|
filterOperatorStartsWith: 'začíná na',
|
|
60
62
|
filterOperatorEndsWith: 'končí na',
|
|
61
63
|
filterOperatorIs: 'je',
|
|
@@ -75,7 +77,9 @@ const csCZGrid = {
|
|
|
75
77
|
'filterOperator<=': '<=',
|
|
76
78
|
// Header filter operators text
|
|
77
79
|
headerFilterOperatorContains: 'Obsahuje',
|
|
80
|
+
// headerFilterOperatorDoesNotContain: 'Does not contain',
|
|
78
81
|
headerFilterOperatorEquals: 'Rovná se',
|
|
82
|
+
// headerFilterOperatorDoesNotEqual: 'Does not equal',
|
|
79
83
|
headerFilterOperatorStartsWith: 'Začíná na',
|
|
80
84
|
headerFilterOperatorEndsWith: 'Končí na',
|
|
81
85
|
headerFilterOperatorIs: 'Je',
|
package/modern/locales/daDK.js
CHANGED
|
@@ -48,7 +48,9 @@ const daDKGrid = {
|
|
|
48
48
|
filterPanelInputPlaceholder: 'Filterværdi',
|
|
49
49
|
// Filter operators text
|
|
50
50
|
filterOperatorContains: 'indeholder',
|
|
51
|
+
// filterOperatorDoesNotContain: 'does not contain',
|
|
51
52
|
filterOperatorEquals: 'lig med',
|
|
53
|
+
// filterOperatorDoesNotEqual: 'does not equal',
|
|
52
54
|
filterOperatorStartsWith: 'begynder med',
|
|
53
55
|
filterOperatorEndsWith: 'ender med',
|
|
54
56
|
filterOperatorIs: 'er lig med',
|
|
@@ -68,7 +70,9 @@ const daDKGrid = {
|
|
|
68
70
|
'filterOperator<=': '<=',
|
|
69
71
|
// Header filter operators text
|
|
70
72
|
headerFilterOperatorContains: 'Indeholder',
|
|
73
|
+
// headerFilterOperatorDoesNotContain: 'Does not contain',
|
|
71
74
|
headerFilterOperatorEquals: 'Lig med',
|
|
75
|
+
// headerFilterOperatorDoesNotEqual: 'Does not equal',
|
|
72
76
|
headerFilterOperatorStartsWith: 'Begynder med',
|
|
73
77
|
headerFilterOperatorEndsWith: 'Ender med',
|
|
74
78
|
headerFilterOperatorIs: 'Er lig med',
|
package/modern/locales/deDE.js
CHANGED
|
@@ -47,7 +47,9 @@ const deDEGrid = {
|
|
|
47
47
|
filterPanelInputPlaceholder: 'Wert filtern',
|
|
48
48
|
// Filter operators text
|
|
49
49
|
filterOperatorContains: 'enthält',
|
|
50
|
+
// filterOperatorDoesNotContain: 'does not contain',
|
|
50
51
|
filterOperatorEquals: 'ist gleich',
|
|
52
|
+
// filterOperatorDoesNotEqual: 'does not equal',
|
|
51
53
|
filterOperatorStartsWith: 'beginnt mit',
|
|
52
54
|
filterOperatorEndsWith: 'endet mit',
|
|
53
55
|
filterOperatorIs: 'ist',
|
|
@@ -67,7 +69,9 @@ const deDEGrid = {
|
|
|
67
69
|
'filterOperator<=': '<=',
|
|
68
70
|
// Header filter operators text
|
|
69
71
|
headerFilterOperatorContains: 'Enthält',
|
|
72
|
+
// headerFilterOperatorDoesNotContain: 'Does not contain',
|
|
70
73
|
headerFilterOperatorEquals: 'Gleich',
|
|
74
|
+
// headerFilterOperatorDoesNotEqual: 'Does not equal',
|
|
71
75
|
headerFilterOperatorStartsWith: 'Beginnt mit',
|
|
72
76
|
headerFilterOperatorEndsWith: 'Endet mit',
|
|
73
77
|
headerFilterOperatorIs: 'Ist',
|
package/modern/locales/elGR.js
CHANGED
|
@@ -48,7 +48,9 @@ const elGRGrid = {
|
|
|
48
48
|
filterPanelInputPlaceholder: 'Τιμή φίλτρου',
|
|
49
49
|
// Filter operators text
|
|
50
50
|
filterOperatorContains: 'περιέχει',
|
|
51
|
+
// filterOperatorDoesNotContain: 'does not contain',
|
|
51
52
|
filterOperatorEquals: 'ισούται',
|
|
53
|
+
// filterOperatorDoesNotEqual: 'does not equal',
|
|
52
54
|
filterOperatorStartsWith: 'ξεκινάει με',
|
|
53
55
|
filterOperatorEndsWith: 'τελειώνει με',
|
|
54
56
|
filterOperatorIs: 'είναι',
|
|
@@ -68,7 +70,9 @@ const elGRGrid = {
|
|
|
68
70
|
'filterOperator<=': '<=',
|
|
69
71
|
// Header filter operators text
|
|
70
72
|
headerFilterOperatorContains: 'Περιέχει',
|
|
73
|
+
// headerFilterOperatorDoesNotContain: 'Does not contain',
|
|
71
74
|
headerFilterOperatorEquals: 'Ισούται',
|
|
75
|
+
// headerFilterOperatorDoesNotEqual: 'Does not equal',
|
|
72
76
|
headerFilterOperatorStartsWith: 'Ξεκινάει με',
|
|
73
77
|
headerFilterOperatorEndsWith: 'Τελειώνει με',
|
|
74
78
|
headerFilterOperatorIs: 'Είναι',
|
package/modern/locales/esES.js
CHANGED
|
@@ -47,7 +47,9 @@ const esESGrid = {
|
|
|
47
47
|
filterPanelInputPlaceholder: 'Valor de filtro',
|
|
48
48
|
// Filter operators text
|
|
49
49
|
filterOperatorContains: 'contiene',
|
|
50
|
+
// filterOperatorDoesNotContain: 'does not contain',
|
|
50
51
|
filterOperatorEquals: 'es igual',
|
|
52
|
+
// filterOperatorDoesNotEqual: 'does not equal',
|
|
51
53
|
filterOperatorStartsWith: 'comienza con',
|
|
52
54
|
filterOperatorEndsWith: 'termina con',
|
|
53
55
|
filterOperatorIs: 'es',
|
|
@@ -67,7 +69,9 @@ const esESGrid = {
|
|
|
67
69
|
'filterOperator<=': '<=',
|
|
68
70
|
// Header filter operators text
|
|
69
71
|
headerFilterOperatorContains: 'Contiene',
|
|
72
|
+
// headerFilterOperatorDoesNotContain: 'Does not contain',
|
|
70
73
|
headerFilterOperatorEquals: 'Es igual a',
|
|
74
|
+
// headerFilterOperatorDoesNotEqual: 'Does not equal',
|
|
71
75
|
headerFilterOperatorStartsWith: 'Comienza con',
|
|
72
76
|
headerFilterOperatorEndsWith: 'Termina con',
|
|
73
77
|
headerFilterOperatorIs: 'Es',
|
package/modern/locales/faIR.js
CHANGED
|
@@ -47,7 +47,9 @@ const faIRGrid = {
|
|
|
47
47
|
filterPanelInputPlaceholder: 'فیلتر مقدار',
|
|
48
48
|
// Filter operators text
|
|
49
49
|
filterOperatorContains: 'شامل',
|
|
50
|
+
// filterOperatorDoesNotContain: 'does not contain',
|
|
50
51
|
filterOperatorEquals: 'مساوی',
|
|
52
|
+
// filterOperatorDoesNotEqual: 'does not equal',
|
|
51
53
|
filterOperatorStartsWith: 'شروع با',
|
|
52
54
|
filterOperatorEndsWith: 'پایان با',
|
|
53
55
|
filterOperatorIs: 'هست',
|
|
@@ -67,7 +69,9 @@ const faIRGrid = {
|
|
|
67
69
|
'filterOperator<=': '<=',
|
|
68
70
|
// Header filter operators text
|
|
69
71
|
headerFilterOperatorContains: 'شامل',
|
|
72
|
+
// headerFilterOperatorDoesNotContain: 'Does not contain',
|
|
70
73
|
headerFilterOperatorEquals: 'مساوی',
|
|
74
|
+
// headerFilterOperatorDoesNotEqual: 'Does not equal',
|
|
71
75
|
headerFilterOperatorStartsWith: 'شروع با',
|
|
72
76
|
headerFilterOperatorEndsWith: 'پایان با',
|
|
73
77
|
headerFilterOperatorIs: 'هست',
|
package/modern/locales/fiFI.js
CHANGED
|
@@ -47,7 +47,9 @@ const fiFIGrid = {
|
|
|
47
47
|
filterPanelInputPlaceholder: 'Suodattimen arvo',
|
|
48
48
|
// Filter operators text
|
|
49
49
|
filterOperatorContains: 'sisältää',
|
|
50
|
+
// filterOperatorDoesNotContain: 'does not contain',
|
|
50
51
|
filterOperatorEquals: 'on yhtä suuri kuin',
|
|
52
|
+
// filterOperatorDoesNotEqual: 'does not equal',
|
|
51
53
|
filterOperatorStartsWith: 'alkaa',
|
|
52
54
|
filterOperatorEndsWith: 'päättyy',
|
|
53
55
|
filterOperatorIs: 'on',
|
|
@@ -67,7 +69,9 @@ const fiFIGrid = {
|
|
|
67
69
|
'filterOperator<=': '<=',
|
|
68
70
|
// Header filter operators text
|
|
69
71
|
headerFilterOperatorContains: 'Sisältää',
|
|
72
|
+
// headerFilterOperatorDoesNotContain: 'Does not contain',
|
|
70
73
|
headerFilterOperatorEquals: 'On yhtä suuri kuin',
|
|
74
|
+
// headerFilterOperatorDoesNotEqual: 'Does not equal',
|
|
71
75
|
headerFilterOperatorStartsWith: 'Alkaa',
|
|
72
76
|
headerFilterOperatorEndsWith: 'Päättyy',
|
|
73
77
|
headerFilterOperatorIs: 'On',
|
package/modern/locales/frFR.js
CHANGED
|
@@ -47,7 +47,9 @@ const frFRGrid = {
|
|
|
47
47
|
filterPanelInputPlaceholder: 'Filtrer la valeur',
|
|
48
48
|
// Filter operators text
|
|
49
49
|
filterOperatorContains: 'contient',
|
|
50
|
+
// filterOperatorDoesNotContain: 'does not contain',
|
|
50
51
|
filterOperatorEquals: 'est égal à',
|
|
52
|
+
// filterOperatorDoesNotEqual: 'does not equal',
|
|
51
53
|
filterOperatorStartsWith: 'commence par',
|
|
52
54
|
filterOperatorEndsWith: 'se termine par',
|
|
53
55
|
filterOperatorIs: 'est',
|
|
@@ -67,7 +69,9 @@ const frFRGrid = {
|
|
|
67
69
|
'filterOperator<=': '<=',
|
|
68
70
|
// Header filter operators text
|
|
69
71
|
headerFilterOperatorContains: 'Contient',
|
|
72
|
+
// headerFilterOperatorDoesNotContain: 'Does not contain',
|
|
70
73
|
headerFilterOperatorEquals: 'Est égal à',
|
|
74
|
+
// headerFilterOperatorDoesNotEqual: 'Does not equal',
|
|
71
75
|
headerFilterOperatorStartsWith: 'Commence par',
|
|
72
76
|
headerFilterOperatorEndsWith: 'Se termine par',
|
|
73
77
|
headerFilterOperatorIs: 'Est',
|
package/modern/locales/heIL.js
CHANGED
|
@@ -47,7 +47,9 @@ const heILGrid = {
|
|
|
47
47
|
filterPanelInputPlaceholder: 'ערך מסנן',
|
|
48
48
|
// Filter operators text
|
|
49
49
|
filterOperatorContains: 'מכיל',
|
|
50
|
+
// filterOperatorDoesNotContain: 'does not contain',
|
|
50
51
|
filterOperatorEquals: 'שווה',
|
|
52
|
+
// filterOperatorDoesNotEqual: 'does not equal',
|
|
51
53
|
filterOperatorStartsWith: 'מתחיל ב-',
|
|
52
54
|
filterOperatorEndsWith: 'נגמר ב-',
|
|
53
55
|
filterOperatorIs: 'הינו',
|
|
@@ -67,7 +69,9 @@ const heILGrid = {
|
|
|
67
69
|
'filterOperator<=': '<=',
|
|
68
70
|
// Header filter operators text
|
|
69
71
|
headerFilterOperatorContains: 'מכיל',
|
|
72
|
+
// headerFilterOperatorDoesNotContain: 'Does not contain',
|
|
70
73
|
headerFilterOperatorEquals: 'שווה',
|
|
74
|
+
// headerFilterOperatorDoesNotEqual: 'Does not equal',
|
|
71
75
|
headerFilterOperatorStartsWith: 'מתחיל ב-',
|
|
72
76
|
headerFilterOperatorEndsWith: 'נגמר ב-',
|
|
73
77
|
headerFilterOperatorIs: 'הינו',
|
package/modern/locales/hrHR.js
CHANGED
|
@@ -48,7 +48,9 @@ const hrHRGrid = {
|
|
|
48
48
|
filterPanelInputPlaceholder: 'Vrijednost filtra',
|
|
49
49
|
// Filter operators text
|
|
50
50
|
filterOperatorContains: 'sadrži',
|
|
51
|
+
// filterOperatorDoesNotContain: 'does not contain',
|
|
51
52
|
filterOperatorEquals: 'jednaki',
|
|
53
|
+
// filterOperatorDoesNotEqual: 'does not equal',
|
|
52
54
|
filterOperatorStartsWith: 'počinje sa',
|
|
53
55
|
filterOperatorEndsWith: 'završava sa',
|
|
54
56
|
filterOperatorIs: 'je',
|
|
@@ -68,7 +70,9 @@ const hrHRGrid = {
|
|
|
68
70
|
'filterOperator<=': '<=',
|
|
69
71
|
// Header filter operators text
|
|
70
72
|
headerFilterOperatorContains: 'Sadrži',
|
|
73
|
+
// headerFilterOperatorDoesNotContain: 'Does not contain',
|
|
71
74
|
headerFilterOperatorEquals: 'Jednako',
|
|
75
|
+
// headerFilterOperatorDoesNotEqual: 'Does not equal',
|
|
72
76
|
headerFilterOperatorStartsWith: 'Počinje sa',
|
|
73
77
|
headerFilterOperatorEndsWith: 'Završava s',
|
|
74
78
|
headerFilterOperatorIs: 'Je',
|
package/modern/locales/huHU.js
CHANGED
|
@@ -30,11 +30,10 @@ const huHUGrid = {
|
|
|
30
30
|
toolbarExportPrint: 'Nyomtatás',
|
|
31
31
|
toolbarExportExcel: 'Mentés Excel fájlként',
|
|
32
32
|
// Columns management text
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
33
|
+
columnsManagementSearchTitle: 'Keresés',
|
|
34
|
+
columnsManagementNoColumns: 'Nincsenek oszlopok',
|
|
35
|
+
columnsManagementShowHideAllText: 'Összes',
|
|
36
|
+
columnsManagementReset: 'Visszavon',
|
|
38
37
|
// Filter panel text
|
|
39
38
|
filterPanelAddFilter: 'Szűrő hozzáadása',
|
|
40
39
|
filterPanelRemoveAll: 'Összes törlése',
|
|
@@ -48,7 +47,9 @@ const huHUGrid = {
|
|
|
48
47
|
filterPanelInputPlaceholder: 'Érték szűrése',
|
|
49
48
|
// Filter operators text
|
|
50
49
|
filterOperatorContains: 'tartalmazza:',
|
|
50
|
+
// filterOperatorDoesNotContain: 'does not contain',
|
|
51
51
|
filterOperatorEquals: 'egyenlő ezzel:',
|
|
52
|
+
// filterOperatorDoesNotEqual: 'does not equal',
|
|
52
53
|
filterOperatorStartsWith: 'ezzel kezdődik:',
|
|
53
54
|
filterOperatorEndsWith: 'ezzel végződik:',
|
|
54
55
|
filterOperatorIs: 'a következő:',
|
|
@@ -68,13 +69,15 @@ const huHUGrid = {
|
|
|
68
69
|
'filterOperator<=': '<=',
|
|
69
70
|
// Header filter operators text
|
|
70
71
|
headerFilterOperatorContains: 'Tartalmazza:',
|
|
72
|
+
// headerFilterOperatorDoesNotContain: 'Does not contain',
|
|
71
73
|
headerFilterOperatorEquals: 'Egyenlő ezzel:',
|
|
74
|
+
// headerFilterOperatorDoesNotEqual: 'Does not equal',
|
|
72
75
|
headerFilterOperatorStartsWith: 'Ezzel kezdődik:',
|
|
73
76
|
headerFilterOperatorEndsWith: 'Ezzel végződik:',
|
|
74
77
|
// headerFilterOperatorIs: 'Is',
|
|
75
78
|
// headerFilterOperatorNot: 'Is not',
|
|
76
79
|
headerFilterOperatorAfter: 'Ezutáni:',
|
|
77
|
-
headerFilterOperatorOnOrAfter: '
|
|
80
|
+
headerFilterOperatorOnOrAfter: 'Ekkori vagy ezutáni:',
|
|
78
81
|
headerFilterOperatorBefore: 'Ezelőtti:',
|
|
79
82
|
headerFilterOperatorOnOrBefore: 'Ekkori vagy ezelőtti:',
|
|
80
83
|
headerFilterOperatorIsEmpty: 'Üres',
|
|
@@ -84,8 +87,8 @@ const huHUGrid = {
|
|
|
84
87
|
'headerFilterOperator!=': 'Nem egyenlő',
|
|
85
88
|
'headerFilterOperator>': 'Nagyobb mint',
|
|
86
89
|
'headerFilterOperator>=': 'Nagyobb vagy egyenlő',
|
|
87
|
-
'headerFilterOperator<': '
|
|
88
|
-
'headerFilterOperator<=': '
|
|
90
|
+
'headerFilterOperator<': 'Kisebb mint',
|
|
91
|
+
'headerFilterOperator<=': 'Kisebb vagy egyenlő',
|
|
89
92
|
// Filter values text
|
|
90
93
|
filterValueAny: 'bármilyen',
|
|
91
94
|
filterValueTrue: 'igaz',
|
package/modern/locales/isIS.js
CHANGED
|
@@ -48,7 +48,9 @@ const isISGrid = {
|
|
|
48
48
|
filterPanelInputPlaceholder: 'Síu gildi',
|
|
49
49
|
// Filter operators text
|
|
50
50
|
filterOperatorContains: 'inniheldur',
|
|
51
|
+
// filterOperatorDoesNotContain: 'does not contain',
|
|
51
52
|
filterOperatorEquals: 'jafnt og',
|
|
53
|
+
// filterOperatorDoesNotEqual: 'does not equal',
|
|
52
54
|
filterOperatorStartsWith: 'byrjar með',
|
|
53
55
|
filterOperatorEndsWith: 'endar með',
|
|
54
56
|
filterOperatorIs: 'er líka með',
|
|
@@ -68,7 +70,9 @@ const isISGrid = {
|
|
|
68
70
|
'filterOperator<=': '<=',
|
|
69
71
|
// Header filter operators text
|
|
70
72
|
headerFilterOperatorContains: 'Inniheldur',
|
|
73
|
+
// headerFilterOperatorDoesNotContain: 'Does not contain',
|
|
71
74
|
headerFilterOperatorEquals: 'Jafnt og',
|
|
75
|
+
// headerFilterOperatorDoesNotEqual: 'Does not equal',
|
|
72
76
|
headerFilterOperatorStartsWith: 'Byrjar með',
|
|
73
77
|
headerFilterOperatorEndsWith: 'Endar með',
|
|
74
78
|
headerFilterOperatorIs: 'Er jafnt og',
|
package/modern/locales/itIT.js
CHANGED
|
@@ -48,7 +48,9 @@ const itITGrid = {
|
|
|
48
48
|
filterPanelInputPlaceholder: 'Filtra il valore',
|
|
49
49
|
// Filter operators text
|
|
50
50
|
filterOperatorContains: 'contiene',
|
|
51
|
+
// filterOperatorDoesNotContain: 'does not contain',
|
|
51
52
|
filterOperatorEquals: 'uguale a',
|
|
53
|
+
// filterOperatorDoesNotEqual: 'does not equal',
|
|
52
54
|
filterOperatorStartsWith: 'comincia per',
|
|
53
55
|
filterOperatorEndsWith: 'termina per',
|
|
54
56
|
filterOperatorIs: 'uguale a',
|
|
@@ -68,7 +70,9 @@ const itITGrid = {
|
|
|
68
70
|
'filterOperator<=': '<=',
|
|
69
71
|
// Header filter operators text
|
|
70
72
|
headerFilterOperatorContains: 'Contiene',
|
|
73
|
+
// headerFilterOperatorDoesNotContain: 'Does not contain',
|
|
71
74
|
headerFilterOperatorEquals: 'uguale a',
|
|
75
|
+
// headerFilterOperatorDoesNotEqual: 'Does not equal',
|
|
72
76
|
headerFilterOperatorStartsWith: 'comincia per',
|
|
73
77
|
headerFilterOperatorEndsWith: 'termina per',
|
|
74
78
|
headerFilterOperatorIs: 'uguale a',
|
package/modern/locales/jaJP.js
CHANGED
|
@@ -48,7 +48,9 @@ const jaJPGrid = {
|
|
|
48
48
|
filterPanelInputPlaceholder: '値を入力…',
|
|
49
49
|
// Filter operators text
|
|
50
50
|
filterOperatorContains: '...を含む',
|
|
51
|
+
// filterOperatorDoesNotContain: 'does not contain',
|
|
51
52
|
filterOperatorEquals: '...に等しい',
|
|
53
|
+
// filterOperatorDoesNotEqual: 'does not equal',
|
|
52
54
|
filterOperatorStartsWith: '...で始まる',
|
|
53
55
|
filterOperatorEndsWith: '...で終わる',
|
|
54
56
|
filterOperatorIs: '...である',
|
|
@@ -68,7 +70,9 @@ const jaJPGrid = {
|
|
|
68
70
|
'filterOperator<=': '<=',
|
|
69
71
|
// Header filter operators text
|
|
70
72
|
headerFilterOperatorContains: '含む',
|
|
73
|
+
// headerFilterOperatorDoesNotContain: 'Does not contain',
|
|
71
74
|
headerFilterOperatorEquals: '等しい',
|
|
75
|
+
// headerFilterOperatorDoesNotEqual: 'Does not equal',
|
|
72
76
|
headerFilterOperatorStartsWith: 'で始まる',
|
|
73
77
|
headerFilterOperatorEndsWith: 'で終わる',
|
|
74
78
|
headerFilterOperatorIs: 'である',
|
package/modern/locales/koKR.js
CHANGED
|
@@ -48,7 +48,9 @@ const koKRGrid = {
|
|
|
48
48
|
filterPanelInputPlaceholder: '값 입력',
|
|
49
49
|
// Filter operators text
|
|
50
50
|
filterOperatorContains: '포함하는',
|
|
51
|
+
// filterOperatorDoesNotContain: 'does not contain',
|
|
51
52
|
filterOperatorEquals: '값이 같은',
|
|
53
|
+
// filterOperatorDoesNotEqual: 'does not equal',
|
|
52
54
|
filterOperatorStartsWith: '시작하는',
|
|
53
55
|
filterOperatorEndsWith: '끝나는',
|
|
54
56
|
filterOperatorIs: '~인',
|
|
@@ -69,7 +71,9 @@ const koKRGrid = {
|
|
|
69
71
|
|
|
70
72
|
// Header filter operators text
|
|
71
73
|
// headerFilterOperatorContains: 'Contains',
|
|
74
|
+
// headerFilterOperatorDoesNotContain: 'Does not contain',
|
|
72
75
|
// headerFilterOperatorEquals: 'Equals',
|
|
76
|
+
// headerFilterOperatorDoesNotEqual: 'Does not equal',
|
|
73
77
|
// headerFilterOperatorStartsWith: 'Starts with',
|
|
74
78
|
// headerFilterOperatorEndsWith: 'Ends with',
|
|
75
79
|
// headerFilterOperatorIs: 'Is',
|
package/modern/locales/nbNO.js
CHANGED
|
@@ -47,7 +47,9 @@ const nbNOGrid = {
|
|
|
47
47
|
filterPanelInputPlaceholder: 'Filter verdi',
|
|
48
48
|
// Filter operators text
|
|
49
49
|
filterOperatorContains: 'inneholder',
|
|
50
|
+
// filterOperatorDoesNotContain: 'does not contain',
|
|
50
51
|
filterOperatorEquals: 'er lik',
|
|
52
|
+
// filterOperatorDoesNotEqual: 'does not equal',
|
|
51
53
|
filterOperatorStartsWith: 'starter med',
|
|
52
54
|
filterOperatorEndsWith: 'slutter med',
|
|
53
55
|
filterOperatorIs: 'er',
|
|
@@ -67,7 +69,9 @@ const nbNOGrid = {
|
|
|
67
69
|
'filterOperator<=': '<=',
|
|
68
70
|
// Header filter operators text
|
|
69
71
|
headerFilterOperatorContains: 'Inneholder',
|
|
72
|
+
// headerFilterOperatorDoesNotContain: 'Does not contain',
|
|
70
73
|
headerFilterOperatorEquals: 'Lik',
|
|
74
|
+
// headerFilterOperatorDoesNotEqual: 'Does not equal',
|
|
71
75
|
headerFilterOperatorStartsWith: 'Starter på',
|
|
72
76
|
headerFilterOperatorEndsWith: 'Slutter på',
|
|
73
77
|
headerFilterOperatorIs: 'Er',
|
package/modern/locales/nlNL.js
CHANGED
|
@@ -47,7 +47,9 @@ const nlNLGrid = {
|
|
|
47
47
|
filterPanelInputPlaceholder: 'Filter waarde',
|
|
48
48
|
// Filter operators text
|
|
49
49
|
filterOperatorContains: 'bevat',
|
|
50
|
+
// filterOperatorDoesNotContain: 'does not contain',
|
|
50
51
|
filterOperatorEquals: 'gelijk aan',
|
|
52
|
+
// filterOperatorDoesNotEqual: 'does not equal',
|
|
51
53
|
filterOperatorStartsWith: 'begint met',
|
|
52
54
|
filterOperatorEndsWith: 'eindigt met',
|
|
53
55
|
filterOperatorIs: 'is',
|
|
@@ -67,7 +69,9 @@ const nlNLGrid = {
|
|
|
67
69
|
'filterOperator<=': '<=',
|
|
68
70
|
// Header filter operators text
|
|
69
71
|
headerFilterOperatorContains: 'Bevat',
|
|
72
|
+
// headerFilterOperatorDoesNotContain: 'Does not contain',
|
|
70
73
|
headerFilterOperatorEquals: 'Gelijk aan',
|
|
74
|
+
// headerFilterOperatorDoesNotEqual: 'Does not equal',
|
|
71
75
|
headerFilterOperatorStartsWith: 'Begint met',
|
|
72
76
|
headerFilterOperatorEndsWith: 'Eindigt met',
|
|
73
77
|
headerFilterOperatorIs: 'Is',
|
package/modern/locales/nnNO.js
CHANGED
|
@@ -47,7 +47,9 @@ const nnNOGrid = {
|
|
|
47
47
|
filterPanelInputPlaceholder: 'Filter verdi',
|
|
48
48
|
// Filter operators text
|
|
49
49
|
filterOperatorContains: 'inneheld',
|
|
50
|
+
// filterOperatorDoesNotContain: 'does not contain',
|
|
50
51
|
filterOperatorEquals: 'er lik',
|
|
52
|
+
// filterOperatorDoesNotEqual: 'does not equal',
|
|
51
53
|
filterOperatorStartsWith: 'startar med',
|
|
52
54
|
filterOperatorEndsWith: 'sluttar med',
|
|
53
55
|
filterOperatorIs: 'er',
|
|
@@ -67,7 +69,9 @@ const nnNOGrid = {
|
|
|
67
69
|
'filterOperator<=': '<=',
|
|
68
70
|
// Header filter operators text
|
|
69
71
|
headerFilterOperatorContains: 'Inneheld',
|
|
72
|
+
// headerFilterOperatorDoesNotContain: 'Does not contain',
|
|
70
73
|
headerFilterOperatorEquals: 'Lik',
|
|
74
|
+
// headerFilterOperatorDoesNotEqual: 'Does not equal',
|
|
71
75
|
headerFilterOperatorStartsWith: 'Startar på',
|
|
72
76
|
headerFilterOperatorEndsWith: 'Sluttar på',
|
|
73
77
|
headerFilterOperatorIs: 'Er',
|
package/modern/locales/plPL.js
CHANGED
|
@@ -48,7 +48,9 @@ const plPLGrid = {
|
|
|
48
48
|
filterPanelInputPlaceholder: 'Filtrowana wartość',
|
|
49
49
|
// Filter operators text
|
|
50
50
|
filterOperatorContains: 'zawiera',
|
|
51
|
+
// filterOperatorDoesNotContain: 'does not contain',
|
|
51
52
|
filterOperatorEquals: 'równa się',
|
|
53
|
+
// filterOperatorDoesNotEqual: 'does not equal',
|
|
52
54
|
filterOperatorStartsWith: 'zaczyna się od',
|
|
53
55
|
filterOperatorEndsWith: 'kończy się na',
|
|
54
56
|
filterOperatorIs: 'równa się',
|
|
@@ -69,7 +71,9 @@ const plPLGrid = {
|
|
|
69
71
|
|
|
70
72
|
// Header filter operators text
|
|
71
73
|
headerFilterOperatorContains: 'Zawiera',
|
|
74
|
+
// headerFilterOperatorDoesNotContain: 'Does not contain',
|
|
72
75
|
headerFilterOperatorEquals: 'Równa się',
|
|
76
|
+
// headerFilterOperatorDoesNotEqual: 'Does not equal',
|
|
73
77
|
headerFilterOperatorStartsWith: 'Zaczyna się od',
|
|
74
78
|
headerFilterOperatorEndsWith: 'Kończy się na',
|
|
75
79
|
// headerFilterOperatorIs: 'Is',
|
package/modern/locales/ptBR.js
CHANGED
|
@@ -47,7 +47,9 @@ const ptBRGrid = {
|
|
|
47
47
|
filterPanelInputPlaceholder: 'Filtrar valor',
|
|
48
48
|
// Filter operators text
|
|
49
49
|
filterOperatorContains: 'contém',
|
|
50
|
+
// filterOperatorDoesNotContain: 'does not contain',
|
|
50
51
|
filterOperatorEquals: 'é igual a',
|
|
52
|
+
// filterOperatorDoesNotEqual: 'does not equal',
|
|
51
53
|
filterOperatorStartsWith: 'começa com',
|
|
52
54
|
filterOperatorEndsWith: 'termina com',
|
|
53
55
|
filterOperatorIs: 'é',
|
|
@@ -67,7 +69,9 @@ const ptBRGrid = {
|
|
|
67
69
|
'filterOperator<=': 'menor ou igual que',
|
|
68
70
|
// Header filter operators text
|
|
69
71
|
headerFilterOperatorContains: 'Contém',
|
|
72
|
+
// headerFilterOperatorDoesNotContain: 'Does not contain',
|
|
70
73
|
headerFilterOperatorEquals: 'Igual',
|
|
74
|
+
// headerFilterOperatorDoesNotEqual: 'Does not equal',
|
|
71
75
|
headerFilterOperatorStartsWith: 'Começa com',
|
|
72
76
|
headerFilterOperatorEndsWith: 'Termina com',
|
|
73
77
|
headerFilterOperatorIs: 'É',
|
package/modern/locales/ptPT.js
CHANGED
|
@@ -47,7 +47,9 @@ const ptPTGrid = {
|
|
|
47
47
|
filterPanelInputPlaceholder: 'Valor do filtro',
|
|
48
48
|
// Filter operators text
|
|
49
49
|
filterOperatorContains: 'contém',
|
|
50
|
+
// filterOperatorDoesNotContain: 'does not contain',
|
|
50
51
|
filterOperatorEquals: 'é igual a',
|
|
52
|
+
// filterOperatorDoesNotEqual: 'does not equal',
|
|
51
53
|
filterOperatorStartsWith: 'começa com',
|
|
52
54
|
filterOperatorEndsWith: 'termina com',
|
|
53
55
|
filterOperatorIs: 'é',
|
|
@@ -67,7 +69,9 @@ const ptPTGrid = {
|
|
|
67
69
|
'filterOperator<=': '<=',
|
|
68
70
|
// Header filter operators text
|
|
69
71
|
headerFilterOperatorContains: 'Contém',
|
|
72
|
+
// headerFilterOperatorDoesNotContain: 'Does not contain',
|
|
70
73
|
headerFilterOperatorEquals: 'É igual a',
|
|
74
|
+
// headerFilterOperatorDoesNotEqual: 'Does not equal',
|
|
71
75
|
headerFilterOperatorStartsWith: 'Começa com',
|
|
72
76
|
headerFilterOperatorEndsWith: 'Termina com',
|
|
73
77
|
headerFilterOperatorIs: 'É',
|
package/modern/locales/roRO.js
CHANGED
|
@@ -48,7 +48,9 @@ const roROGrid = {
|
|
|
48
48
|
filterPanelInputPlaceholder: 'Filtrare valoare',
|
|
49
49
|
// Filter operators text
|
|
50
50
|
filterOperatorContains: 'conține',
|
|
51
|
+
// filterOperatorDoesNotContain: 'does not contain',
|
|
51
52
|
filterOperatorEquals: 'este egal cu',
|
|
53
|
+
// filterOperatorDoesNotEqual: 'does not equal',
|
|
52
54
|
filterOperatorStartsWith: 'începe cu',
|
|
53
55
|
filterOperatorEndsWith: 'se termină cu',
|
|
54
56
|
filterOperatorIs: 'este',
|
|
@@ -68,7 +70,9 @@ const roROGrid = {
|
|
|
68
70
|
'filterOperator<=': '<=',
|
|
69
71
|
// Header filter operators text
|
|
70
72
|
headerFilterOperatorContains: 'Conține',
|
|
73
|
+
// headerFilterOperatorDoesNotContain: 'Does not contain',
|
|
71
74
|
headerFilterOperatorEquals: 'Egal cu',
|
|
75
|
+
// headerFilterOperatorDoesNotEqual: 'Does not equal',
|
|
72
76
|
headerFilterOperatorStartsWith: 'Începe cu',
|
|
73
77
|
headerFilterOperatorEndsWith: 'Se termină cu',
|
|
74
78
|
headerFilterOperatorIs: 'Este',
|
package/modern/locales/ruRU.js
CHANGED
|
@@ -62,7 +62,9 @@ const ruRUGrid = {
|
|
|
62
62
|
filterPanelInputPlaceholder: 'Значение фильтра',
|
|
63
63
|
// Filter operators text
|
|
64
64
|
filterOperatorContains: 'содержит',
|
|
65
|
+
// filterOperatorDoesNotContain: 'does not contain',
|
|
65
66
|
filterOperatorEquals: 'равен',
|
|
67
|
+
// filterOperatorDoesNotEqual: 'does not equal',
|
|
66
68
|
filterOperatorStartsWith: 'начинается с',
|
|
67
69
|
filterOperatorEndsWith: 'заканчивается на',
|
|
68
70
|
filterOperatorIs: 'равен',
|
|
@@ -82,7 +84,9 @@ const ruRUGrid = {
|
|
|
82
84
|
'filterOperator<=': '<=',
|
|
83
85
|
// Header filter operators text
|
|
84
86
|
headerFilterOperatorContains: 'содержит',
|
|
87
|
+
// headerFilterOperatorDoesNotContain: 'Does not contain',
|
|
85
88
|
headerFilterOperatorEquals: 'равен',
|
|
89
|
+
// headerFilterOperatorDoesNotEqual: 'Does not equal',
|
|
86
90
|
headerFilterOperatorStartsWith: 'начинается с',
|
|
87
91
|
headerFilterOperatorEndsWith: 'заканчивается на',
|
|
88
92
|
headerFilterOperatorIs: 'равен',
|
package/modern/locales/skSK.js
CHANGED
|
@@ -56,7 +56,9 @@ const skSKGrid = {
|
|
|
56
56
|
filterPanelInputPlaceholder: 'Hodnota filtra',
|
|
57
57
|
// Filter operators text
|
|
58
58
|
filterOperatorContains: 'obsahuje',
|
|
59
|
+
// filterOperatorDoesNotContain: 'does not contain',
|
|
59
60
|
filterOperatorEquals: 'rovná sa',
|
|
61
|
+
// filterOperatorDoesNotEqual: 'does not equal',
|
|
60
62
|
filterOperatorStartsWith: 'začína s',
|
|
61
63
|
filterOperatorEndsWith: 'končí na',
|
|
62
64
|
filterOperatorIs: 'je',
|
|
@@ -76,7 +78,9 @@ const skSKGrid = {
|
|
|
76
78
|
'filterOperator<=': '<=',
|
|
77
79
|
// Header filter operators text
|
|
78
80
|
headerFilterOperatorContains: 'Obsahuje',
|
|
81
|
+
// headerFilterOperatorDoesNotContain: 'Does not contain',
|
|
79
82
|
headerFilterOperatorEquals: 'Rovná sa',
|
|
83
|
+
// headerFilterOperatorDoesNotEqual: 'Does not equal',
|
|
80
84
|
headerFilterOperatorStartsWith: 'Začína s',
|
|
81
85
|
headerFilterOperatorEndsWith: 'Končí na',
|
|
82
86
|
headerFilterOperatorIs: 'Je',
|
package/modern/locales/svSE.js
CHANGED
|
@@ -48,7 +48,9 @@ const svSEGrid = {
|
|
|
48
48
|
filterPanelInputPlaceholder: 'Filtervärde',
|
|
49
49
|
// Filter operators text
|
|
50
50
|
filterOperatorContains: 'innehåller',
|
|
51
|
+
// filterOperatorDoesNotContain: 'does not contain',
|
|
51
52
|
filterOperatorEquals: 'lika med',
|
|
53
|
+
// filterOperatorDoesNotEqual: 'does not equal',
|
|
52
54
|
filterOperatorStartsWith: 'börjar med',
|
|
53
55
|
filterOperatorEndsWith: 'slutar med',
|
|
54
56
|
filterOperatorIs: 'är',
|
|
@@ -68,7 +70,9 @@ const svSEGrid = {
|
|
|
68
70
|
'filterOperator<=': '<=',
|
|
69
71
|
// Header filter operators text
|
|
70
72
|
headerFilterOperatorContains: 'Innehåller',
|
|
73
|
+
// headerFilterOperatorDoesNotContain: 'Does not contain',
|
|
71
74
|
headerFilterOperatorEquals: 'Lika med',
|
|
75
|
+
// headerFilterOperatorDoesNotEqual: 'Does not equal',
|
|
72
76
|
headerFilterOperatorStartsWith: 'Börjar med',
|
|
73
77
|
headerFilterOperatorEndsWith: 'Slutar med',
|
|
74
78
|
headerFilterOperatorIs: 'Är',
|
package/modern/locales/trTR.js
CHANGED
|
@@ -47,7 +47,9 @@ const trTRGrid = {
|
|
|
47
47
|
filterPanelInputPlaceholder: 'Filtre değeri',
|
|
48
48
|
// Filter operators text
|
|
49
49
|
filterOperatorContains: 'içerir',
|
|
50
|
+
// filterOperatorDoesNotContain: 'does not contain',
|
|
50
51
|
filterOperatorEquals: 'eşittir',
|
|
52
|
+
// filterOperatorDoesNotEqual: 'does not equal',
|
|
51
53
|
filterOperatorStartsWith: 'ile başlar',
|
|
52
54
|
filterOperatorEndsWith: 'ile biter',
|
|
53
55
|
filterOperatorIs: 'eşittir',
|
|
@@ -67,7 +69,9 @@ const trTRGrid = {
|
|
|
67
69
|
'filterOperator<=': '<=',
|
|
68
70
|
// Header filter operators text
|
|
69
71
|
headerFilterOperatorContains: 'Şunu içerir',
|
|
72
|
+
// headerFilterOperatorDoesNotContain: 'Does not contain',
|
|
70
73
|
headerFilterOperatorEquals: 'Şuna eşittir',
|
|
74
|
+
// headerFilterOperatorDoesNotEqual: 'Does not equal',
|
|
71
75
|
headerFilterOperatorStartsWith: 'Şununla başlar',
|
|
72
76
|
headerFilterOperatorEndsWith: 'Şununla biter',
|
|
73
77
|
headerFilterOperatorIs: 'Eşittir',
|