@mui/x-data-grid 6.5.0 → 6.6.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 +78 -2
- package/DataGrid/DataGrid.js +10 -3
- package/README.md +2 -2
- package/components/GridColumnHeaders.js +4 -9
- package/components/GridHeader.d.ts +2 -2
- package/components/base/GridBody.d.ts +1 -1
- package/components/base/GridFooterPlaceholder.d.ts +2 -2
- package/components/base/GridOverlays.d.ts +2 -2
- package/components/cell/GridActionsCell.d.ts +3 -3
- package/components/cell/GridActionsCell.js +3 -3
- package/components/cell/GridBooleanCell.d.ts +1 -1
- package/components/cell/GridEditBooleanCell.d.ts +2 -2
- package/components/cell/GridEditDateCell.d.ts +2 -2
- package/components/cell/GridEditInputCell.d.ts +1 -1
- package/components/cell/GridEditSingleSelectCell.d.ts +3 -3
- package/components/cell/GridEditSingleSelectCell.js +5 -5
- package/components/cell/GridSkeletonCell.d.ts +1 -1
- package/components/columnHeaders/ColumnHeaderMenuIcon.d.ts +1 -1
- package/components/columnHeaders/ColumnHeaderMenuIcon.js +3 -3
- package/components/columnHeaders/GridColumnGroupHeader.d.ts +2 -2
- package/components/columnHeaders/GridColumnHeaderFilterIconButton.d.ts +1 -1
- package/components/columnHeaders/GridColumnHeaderFilterIconButton.js +13 -4
- package/components/columnHeaders/GridColumnHeaderItem.d.ts +2 -2
- package/components/columnHeaders/GridColumnHeaderSeparator.d.ts +1 -1
- package/components/columnHeaders/GridColumnHeaderSortIcon.d.ts +1 -1
- package/components/columnHeaders/GridColumnHeaderTitle.d.ts +1 -1
- package/components/containers/GridRoot.js +1 -3
- package/components/index.d.ts +0 -1
- package/components/index.js +1 -2
- package/components/menu/GridMenu.d.ts +1 -1
- package/components/menu/columnMenu/GridColumnHeaderMenu.d.ts +1 -1
- package/components/menu/columnMenu/menuItems/GridColumnMenuColumnsItem.d.ts +2 -2
- package/components/menu/columnMenu/menuItems/GridColumnMenuFilterItem.d.ts +2 -2
- package/components/menu/columnMenu/menuItems/GridColumnMenuHideItem.d.ts +2 -2
- package/components/menu/columnMenu/menuItems/GridColumnMenuManageItem.d.ts +2 -2
- package/components/menu/columnMenu/menuItems/GridColumnMenuSortItem.d.ts +2 -2
- package/components/panel/GridColumnsPanel.d.ts +2 -2
- package/components/panel/GridPanelContent.d.ts +1 -1
- package/components/panel/GridPanelFooter.d.ts +1 -1
- package/components/panel/GridPanelHeader.d.ts +1 -1
- package/components/panel/GridPreferencesPanel.js +3 -1
- package/components/panel/filterPanel/GridFilterInputBoolean.d.ts +1 -1
- package/components/panel/filterPanel/GridFilterInputDate.d.ts +1 -1
- package/components/panel/filterPanel/GridFilterInputMultipleSingleSelect.d.ts +2 -2
- package/components/panel/filterPanel/GridFilterInputMultipleValue.d.ts +2 -2
- package/components/panel/filterPanel/GridFilterInputSingleSelect.d.ts +1 -1
- package/components/panel/filterPanel/GridFilterInputSingleSelect.js +1 -0
- package/components/panel/filterPanel/GridFilterInputValue.d.ts +1 -1
- package/components/toolbar/GridToolbarColumnsButton.js +11 -6
- package/components/toolbar/GridToolbarDensitySelector.js +2 -2
- package/components/toolbar/GridToolbarExport.d.ts +2 -2
- package/components/toolbar/GridToolbarExportContainer.js +7 -7
- package/components/toolbar/GridToolbarFilterButton.js +11 -4
- package/components/toolbar/GridToolbarQuickFilter.d.ts +2 -2
- package/context/GridContextProvider.d.ts +1 -1
- package/hooks/core/strategyProcessing/gridStrategyProcessingApi.d.ts +10 -2
- package/hooks/core/strategyProcessing/useGridStrategyProcessing.js +2 -1
- package/hooks/features/columnHeaders/useGridColumnHeaders.d.ts +1 -1
- package/hooks/features/filter/gridFilterSelector.d.ts +2 -2
- package/hooks/features/filter/gridFilterSelector.js +2 -2
- package/hooks/features/filter/gridFilterState.d.ts +6 -6
- package/hooks/features/filter/gridFilterState.js +6 -0
- package/hooks/features/filter/useGridFilter.js +29 -9
- package/hooks/features/preferencesPanel/gridPreferencePanelState.d.ts +2 -0
- package/hooks/features/preferencesPanel/useGridPreferencesPanel.js +4 -2
- package/hooks/features/rows/useGridRowsMeta.js +11 -12
- package/index.js +1 -1
- package/internals/utils/useProps.js +21 -1
- package/legacy/DataGrid/DataGrid.js +10 -3
- package/legacy/components/GridColumnHeaders.js +4 -9
- package/legacy/components/cell/GridActionsCell.js +3 -3
- package/legacy/components/cell/GridEditSingleSelectCell.js +5 -5
- package/legacy/components/columnHeaders/ColumnHeaderMenuIcon.js +3 -3
- package/legacy/components/columnHeaders/GridColumnHeaderFilterIconButton.js +13 -4
- package/legacy/components/containers/GridRoot.js +1 -3
- package/legacy/components/index.js +1 -2
- package/legacy/components/panel/GridPreferencesPanel.js +3 -1
- package/legacy/components/panel/filterPanel/GridFilterInputSingleSelect.js +1 -0
- package/legacy/components/toolbar/GridToolbarColumnsButton.js +11 -5
- package/legacy/components/toolbar/GridToolbarDensitySelector.js +2 -2
- package/legacy/components/toolbar/GridToolbarExportContainer.js +7 -7
- package/legacy/components/toolbar/GridToolbarFilterButton.js +11 -4
- package/legacy/hooks/core/strategyProcessing/useGridStrategyProcessing.js +2 -1
- package/legacy/hooks/features/filter/gridFilterSelector.js +4 -4
- package/legacy/hooks/features/filter/gridFilterState.js +6 -0
- package/legacy/hooks/features/filter/useGridFilter.js +29 -9
- package/legacy/hooks/features/preferencesPanel/useGridPreferencesPanel.js +4 -2
- package/legacy/hooks/features/rows/useGridRowsMeta.js +12 -20
- package/legacy/index.js +1 -1
- package/legacy/internals/utils/useProps.js +23 -1
- package/legacy/locales/arSD.js +12 -12
- package/legacy/locales/beBY.js +12 -12
- package/legacy/locales/bgBG.js +12 -12
- package/legacy/locales/csCZ.js +12 -12
- package/legacy/locales/daDK.js +12 -12
- package/legacy/locales/deDE.js +12 -12
- package/legacy/locales/elGR.js +12 -12
- package/legacy/locales/esES.js +12 -12
- package/legacy/locales/faIR.js +12 -12
- package/legacy/locales/fiFI.js +12 -12
- package/legacy/locales/frFR.js +25 -27
- package/legacy/locales/heIL.js +12 -12
- package/legacy/locales/huHU.js +12 -12
- package/legacy/locales/itIT.js +12 -12
- package/legacy/locales/jaJP.js +12 -12
- package/legacy/locales/koKR.js +12 -12
- package/legacy/locales/nbNO.js +12 -12
- package/legacy/locales/nlNL.js +25 -27
- package/legacy/locales/plPL.js +12 -12
- package/legacy/locales/ptBR.js +12 -12
- package/legacy/locales/roRO.js +12 -12
- package/legacy/locales/ruRU.js +12 -12
- package/legacy/locales/skSK.js +12 -12
- package/legacy/locales/svSE.js +12 -12
- package/legacy/locales/trTR.js +12 -12
- package/legacy/locales/ukUA.js +12 -12
- package/legacy/locales/urPK.js +12 -12
- package/legacy/locales/viVN.js +12 -12
- package/legacy/locales/zhCN.js +12 -12
- package/legacy/locales/zhTW.js +12 -12
- package/legacy/models/gridFilterItem.js +1 -1
- package/locales/arSD.js +12 -12
- package/locales/beBY.js +12 -12
- package/locales/bgBG.js +12 -12
- package/locales/csCZ.js +12 -12
- package/locales/daDK.js +12 -12
- package/locales/deDE.js +12 -12
- package/locales/elGR.js +12 -12
- package/locales/esES.js +12 -12
- package/locales/faIR.js +12 -12
- package/locales/fiFI.js +12 -12
- package/locales/frFR.js +25 -27
- package/locales/heIL.js +12 -12
- package/locales/huHU.js +12 -12
- package/locales/itIT.js +12 -12
- package/locales/jaJP.js +12 -12
- package/locales/koKR.js +12 -12
- package/locales/nbNO.js +12 -12
- package/locales/nlNL.js +25 -27
- package/locales/plPL.js +12 -12
- package/locales/ptBR.js +12 -12
- package/locales/roRO.js +12 -12
- package/locales/ruRU.js +12 -12
- package/locales/skSK.js +12 -12
- package/locales/svSE.js +12 -12
- package/locales/trTR.js +12 -12
- package/locales/ukUA.js +12 -12
- package/locales/urPK.js +12 -12
- package/locales/viVN.js +12 -12
- package/locales/zhCN.js +12 -12
- package/locales/zhTW.js +12 -12
- package/material/components/MUISelectOption.d.ts +2 -2
- package/models/api/gridFilterApi.d.ts +3 -1
- package/models/api/gridPreferencesPanelApi.d.ts +3 -1
- package/models/gridFilterItem.d.ts +1 -1
- package/models/gridFilterItem.js +1 -1
- package/models/gridFilterOperator.d.ts +1 -1
- package/models/gridStateCommunity.d.ts +2 -0
- package/models/props/DataGridProps.d.ts +5 -0
- package/modern/DataGrid/DataGrid.js +10 -3
- package/modern/components/GridColumnHeaders.js +4 -9
- package/modern/components/cell/GridActionsCell.js +3 -3
- package/modern/components/cell/GridEditSingleSelectCell.js +5 -5
- package/modern/components/columnHeaders/ColumnHeaderMenuIcon.js +3 -3
- package/modern/components/columnHeaders/GridColumnHeaderFilterIconButton.js +13 -4
- package/modern/components/containers/GridRoot.js +1 -3
- package/modern/components/index.js +1 -2
- package/modern/components/panel/GridPreferencesPanel.js +3 -1
- package/modern/components/panel/filterPanel/GridFilterInputSingleSelect.js +1 -0
- package/modern/components/toolbar/GridToolbarColumnsButton.js +11 -6
- package/modern/components/toolbar/GridToolbarDensitySelector.js +2 -2
- package/modern/components/toolbar/GridToolbarExportContainer.js +7 -7
- package/modern/components/toolbar/GridToolbarFilterButton.js +11 -4
- package/modern/hooks/core/strategyProcessing/useGridStrategyProcessing.js +2 -1
- package/modern/hooks/features/filter/gridFilterSelector.js +2 -2
- package/modern/hooks/features/filter/gridFilterState.js +6 -0
- package/modern/hooks/features/filter/useGridFilter.js +29 -9
- package/modern/hooks/features/preferencesPanel/useGridPreferencesPanel.js +4 -2
- package/modern/hooks/features/rows/useGridRowsMeta.js +11 -12
- package/modern/index.js +1 -1
- package/modern/internals/utils/useProps.js +20 -1
- package/modern/locales/arSD.js +12 -12
- package/modern/locales/beBY.js +12 -12
- package/modern/locales/bgBG.js +12 -12
- package/modern/locales/csCZ.js +12 -12
- package/modern/locales/daDK.js +12 -12
- package/modern/locales/deDE.js +12 -12
- package/modern/locales/elGR.js +12 -12
- package/modern/locales/esES.js +12 -12
- package/modern/locales/faIR.js +12 -12
- package/modern/locales/fiFI.js +12 -12
- package/modern/locales/frFR.js +25 -27
- package/modern/locales/heIL.js +12 -12
- package/modern/locales/huHU.js +12 -12
- package/modern/locales/itIT.js +12 -12
- package/modern/locales/jaJP.js +12 -12
- package/modern/locales/koKR.js +12 -12
- package/modern/locales/nbNO.js +12 -12
- package/modern/locales/nlNL.js +25 -27
- package/modern/locales/plPL.js +12 -12
- package/modern/locales/ptBR.js +12 -12
- package/modern/locales/roRO.js +12 -12
- package/modern/locales/ruRU.js +12 -12
- package/modern/locales/skSK.js +12 -12
- package/modern/locales/svSE.js +12 -12
- package/modern/locales/trTR.js +12 -12
- package/modern/locales/ukUA.js +12 -12
- package/modern/locales/urPK.js +12 -12
- package/modern/locales/viVN.js +12 -12
- package/modern/locales/zhCN.js +12 -12
- package/modern/locales/zhTW.js +12 -12
- package/modern/models/gridFilterItem.js +1 -1
- package/node/DataGrid/DataGrid.js +10 -3
- package/node/components/GridColumnHeaders.js +3 -8
- package/node/components/cell/GridActionsCell.js +3 -3
- package/node/components/cell/GridEditSingleSelectCell.js +5 -5
- package/node/components/columnHeaders/ColumnHeaderMenuIcon.js +3 -3
- package/node/components/columnHeaders/GridColumnHeaderFilterIconButton.js +12 -3
- package/node/components/containers/GridRoot.js +1 -3
- package/node/components/index.js +0 -11
- package/node/components/panel/GridPreferencesPanel.js +3 -1
- package/node/components/panel/filterPanel/GridFilterInputSingleSelect.js +1 -0
- package/node/components/toolbar/GridToolbarColumnsButton.js +11 -6
- package/node/components/toolbar/GridToolbarDensitySelector.js +2 -2
- package/node/components/toolbar/GridToolbarExportContainer.js +7 -7
- package/node/components/toolbar/GridToolbarFilterButton.js +10 -3
- package/node/hooks/core/strategyProcessing/useGridStrategyProcessing.js +2 -1
- package/node/hooks/features/filter/gridFilterSelector.js +2 -2
- package/node/hooks/features/filter/gridFilterState.js +6 -0
- package/node/hooks/features/filter/useGridFilter.js +30 -10
- package/node/hooks/features/preferencesPanel/useGridPreferencesPanel.js +4 -2
- package/node/hooks/features/rows/useGridRowsMeta.js +11 -12
- package/node/index.js +1 -1
- package/node/internals/utils/useProps.js +20 -1
- package/node/locales/arSD.js +12 -12
- package/node/locales/beBY.js +12 -12
- package/node/locales/bgBG.js +12 -12
- package/node/locales/csCZ.js +12 -12
- package/node/locales/daDK.js +12 -12
- package/node/locales/deDE.js +12 -12
- package/node/locales/elGR.js +12 -12
- package/node/locales/esES.js +12 -12
- package/node/locales/faIR.js +12 -12
- package/node/locales/fiFI.js +12 -12
- package/node/locales/frFR.js +25 -27
- package/node/locales/heIL.js +12 -12
- package/node/locales/huHU.js +12 -12
- package/node/locales/itIT.js +12 -12
- package/node/locales/jaJP.js +12 -12
- package/node/locales/koKR.js +12 -12
- package/node/locales/nbNO.js +12 -12
- package/node/locales/nlNL.js +25 -27
- package/node/locales/plPL.js +12 -12
- package/node/locales/ptBR.js +12 -12
- package/node/locales/roRO.js +12 -12
- package/node/locales/ruRU.js +12 -12
- package/node/locales/skSK.js +12 -12
- package/node/locales/svSE.js +12 -12
- package/node/locales/trTR.js +12 -12
- package/node/locales/ukUA.js +12 -12
- package/node/locales/urPK.js +12 -12
- package/node/locales/viVN.js +12 -12
- package/node/locales/zhCN.js +12 -12
- package/node/locales/zhTW.js +12 -12
- package/node/models/gridFilterItem.js +1 -1
- package/package.json +4 -4
- package/components/GridScrollArea.d.ts +0 -10
- package/components/GridScrollArea.js +0 -117
- package/legacy/components/GridScrollArea.js +0 -119
- package/legacy/lib/createDetectElementResize/index.js +0 -145
- package/lib/createDetectElementResize/index.d.ts +0 -18
- package/lib/createDetectElementResize/index.js +0 -145
- package/lib/createDetectElementResize/types.d.ts +0 -9
- package/modern/components/GridScrollArea.js +0 -117
- package/modern/lib/createDetectElementResize/index.js +0 -145
- package/node/components/GridScrollArea.js +0 -126
- package/node/lib/createDetectElementResize/index.js +0 -151
package/locales/arSD.js
CHANGED
|
@@ -60,12 +60,12 @@ const arSDGrid = {
|
|
|
60
60
|
filterOperatorIsEmpty: 'خالي',
|
|
61
61
|
filterOperatorIsNotEmpty: 'غير خالي',
|
|
62
62
|
filterOperatorIsAnyOf: 'أي من',
|
|
63
|
-
// filterOperator
|
|
64
|
-
// filterOperator
|
|
65
|
-
// filterOperator
|
|
66
|
-
// filterOperator
|
|
67
|
-
// filterOperator
|
|
68
|
-
// filterOperator
|
|
63
|
+
// 'filterOperator=': '=',
|
|
64
|
+
// 'filterOperator!=': '!=',
|
|
65
|
+
// 'filterOperator>': '>',
|
|
66
|
+
// 'filterOperator>=': '>=',
|
|
67
|
+
// 'filterOperator<': '<',
|
|
68
|
+
// 'filterOperator<=': '<=',
|
|
69
69
|
|
|
70
70
|
// Header filter operators text
|
|
71
71
|
// headerFilterOperatorContains: 'Contains',
|
|
@@ -81,12 +81,12 @@ const arSDGrid = {
|
|
|
81
81
|
// headerFilterOperatorIsEmpty: 'Is empty',
|
|
82
82
|
// headerFilterOperatorIsNotEmpty: 'Is not empty',
|
|
83
83
|
// headerFilterOperatorIsAnyOf: 'Is any of',
|
|
84
|
-
// headerFilterOperator
|
|
85
|
-
// headerFilterOperator
|
|
86
|
-
// headerFilterOperator
|
|
87
|
-
// headerFilterOperator
|
|
88
|
-
// headerFilterOperator
|
|
89
|
-
// headerFilterOperator
|
|
84
|
+
// 'headerFilterOperator=': 'Equals',
|
|
85
|
+
// 'headerFilterOperator!=': 'Not equals',
|
|
86
|
+
// 'headerFilterOperator>': 'Is greater than',
|
|
87
|
+
// 'headerFilterOperator>=': 'Is greater than or equal to',
|
|
88
|
+
// 'headerFilterOperator<': 'Is less than',
|
|
89
|
+
// 'headerFilterOperator<=': 'Is less than or equal to',
|
|
90
90
|
|
|
91
91
|
// Filter values text
|
|
92
92
|
filterValueAny: 'أي',
|
package/locales/beBY.js
CHANGED
|
@@ -74,12 +74,12 @@ const beBYGrid = {
|
|
|
74
74
|
filterOperatorIsEmpty: 'пусты',
|
|
75
75
|
filterOperatorIsNotEmpty: 'не пусты',
|
|
76
76
|
filterOperatorIsAnyOf: 'усякі з',
|
|
77
|
-
// filterOperator
|
|
78
|
-
// filterOperator
|
|
79
|
-
// filterOperator
|
|
80
|
-
// filterOperator
|
|
81
|
-
// filterOperator
|
|
82
|
-
// filterOperator
|
|
77
|
+
// 'filterOperator=': '=',
|
|
78
|
+
// 'filterOperator!=': '!=',
|
|
79
|
+
// 'filterOperator>': '>',
|
|
80
|
+
// 'filterOperator>=': '>=',
|
|
81
|
+
// 'filterOperator<': '<',
|
|
82
|
+
// 'filterOperator<=': '<=',
|
|
83
83
|
|
|
84
84
|
// Header filter operators text
|
|
85
85
|
// headerFilterOperatorContains: 'Contains',
|
|
@@ -95,12 +95,12 @@ const beBYGrid = {
|
|
|
95
95
|
// headerFilterOperatorIsEmpty: 'Is empty',
|
|
96
96
|
// headerFilterOperatorIsNotEmpty: 'Is not empty',
|
|
97
97
|
// headerFilterOperatorIsAnyOf: 'Is any of',
|
|
98
|
-
// headerFilterOperator
|
|
99
|
-
// headerFilterOperator
|
|
100
|
-
// headerFilterOperator
|
|
101
|
-
// headerFilterOperator
|
|
102
|
-
// headerFilterOperator
|
|
103
|
-
// headerFilterOperator
|
|
98
|
+
// 'headerFilterOperator=': 'Equals',
|
|
99
|
+
// 'headerFilterOperator!=': 'Not equals',
|
|
100
|
+
// 'headerFilterOperator>': 'Is greater than',
|
|
101
|
+
// 'headerFilterOperator>=': 'Is greater than or equal to',
|
|
102
|
+
// 'headerFilterOperator<': 'Is less than',
|
|
103
|
+
// 'headerFilterOperator<=': 'Is less than or equal to',
|
|
104
104
|
|
|
105
105
|
// Filter values text
|
|
106
106
|
filterValueAny: 'усякі',
|
package/locales/bgBG.js
CHANGED
|
@@ -60,12 +60,12 @@ const bgBGGrid = {
|
|
|
60
60
|
filterOperatorIsEmpty: 'е празен',
|
|
61
61
|
filterOperatorIsNotEmpty: 'не е празен',
|
|
62
62
|
filterOperatorIsAnyOf: 'е някой от',
|
|
63
|
-
// filterOperator
|
|
64
|
-
// filterOperator
|
|
65
|
-
// filterOperator
|
|
66
|
-
// filterOperator
|
|
67
|
-
// filterOperator
|
|
68
|
-
// filterOperator
|
|
63
|
+
// 'filterOperator=': '=',
|
|
64
|
+
// 'filterOperator!=': '!=',
|
|
65
|
+
// 'filterOperator>': '>',
|
|
66
|
+
// 'filterOperator>=': '>=',
|
|
67
|
+
// 'filterOperator<': '<',
|
|
68
|
+
// 'filterOperator<=': '<=',
|
|
69
69
|
|
|
70
70
|
// Header filter operators text
|
|
71
71
|
// headerFilterOperatorContains: 'Contains',
|
|
@@ -81,12 +81,12 @@ const bgBGGrid = {
|
|
|
81
81
|
// headerFilterOperatorIsEmpty: 'Is empty',
|
|
82
82
|
// headerFilterOperatorIsNotEmpty: 'Is not empty',
|
|
83
83
|
// headerFilterOperatorIsAnyOf: 'Is any of',
|
|
84
|
-
// headerFilterOperator
|
|
85
|
-
// headerFilterOperator
|
|
86
|
-
// headerFilterOperator
|
|
87
|
-
// headerFilterOperator
|
|
88
|
-
// headerFilterOperator
|
|
89
|
-
// headerFilterOperator
|
|
84
|
+
// 'headerFilterOperator=': 'Equals',
|
|
85
|
+
// 'headerFilterOperator!=': 'Not equals',
|
|
86
|
+
// 'headerFilterOperator>': 'Is greater than',
|
|
87
|
+
// 'headerFilterOperator>=': 'Is greater than or equal to',
|
|
88
|
+
// 'headerFilterOperator<': 'Is less than',
|
|
89
|
+
// 'headerFilterOperator<=': 'Is less than or equal to',
|
|
90
90
|
|
|
91
91
|
// Filter values text
|
|
92
92
|
filterValueAny: 'всякакви',
|
package/locales/csCZ.js
CHANGED
|
@@ -68,12 +68,12 @@ const csCZGrid = {
|
|
|
68
68
|
filterOperatorIsEmpty: 'je prázdný',
|
|
69
69
|
filterOperatorIsNotEmpty: 'není prázdný',
|
|
70
70
|
filterOperatorIsAnyOf: 'je jeden z',
|
|
71
|
-
// filterOperator
|
|
72
|
-
// filterOperator
|
|
73
|
-
// filterOperator
|
|
74
|
-
// filterOperator
|
|
75
|
-
// filterOperator
|
|
76
|
-
// filterOperator
|
|
71
|
+
// 'filterOperator=': '=',
|
|
72
|
+
// 'filterOperator!=': '!=',
|
|
73
|
+
// 'filterOperator>': '>',
|
|
74
|
+
// 'filterOperator>=': '>=',
|
|
75
|
+
// 'filterOperator<': '<',
|
|
76
|
+
// 'filterOperator<=': '<=',
|
|
77
77
|
|
|
78
78
|
// Header filter operators text
|
|
79
79
|
// headerFilterOperatorContains: 'Contains',
|
|
@@ -89,12 +89,12 @@ const csCZGrid = {
|
|
|
89
89
|
// headerFilterOperatorIsEmpty: 'Is empty',
|
|
90
90
|
// headerFilterOperatorIsNotEmpty: 'Is not empty',
|
|
91
91
|
// headerFilterOperatorIsAnyOf: 'Is any of',
|
|
92
|
-
// headerFilterOperator
|
|
93
|
-
// headerFilterOperator
|
|
94
|
-
// headerFilterOperator
|
|
95
|
-
// headerFilterOperator
|
|
96
|
-
// headerFilterOperator
|
|
97
|
-
// headerFilterOperator
|
|
92
|
+
// 'headerFilterOperator=': 'Equals',
|
|
93
|
+
// 'headerFilterOperator!=': 'Not equals',
|
|
94
|
+
// 'headerFilterOperator>': 'Is greater than',
|
|
95
|
+
// 'headerFilterOperator>=': 'Is greater than or equal to',
|
|
96
|
+
// 'headerFilterOperator<': 'Is less than',
|
|
97
|
+
// 'headerFilterOperator<=': 'Is less than or equal to',
|
|
98
98
|
|
|
99
99
|
// Filter values text
|
|
100
100
|
filterValueAny: 'jakýkoliv',
|
package/locales/daDK.js
CHANGED
|
@@ -60,12 +60,12 @@ const daDKGrid = {
|
|
|
60
60
|
filterOperatorIsEmpty: 'Indeholder ikke data',
|
|
61
61
|
filterOperatorIsNotEmpty: 'Indeholder data',
|
|
62
62
|
filterOperatorIsAnyOf: 'indeholder en af',
|
|
63
|
-
// filterOperator
|
|
64
|
-
// filterOperator
|
|
65
|
-
// filterOperator
|
|
66
|
-
// filterOperator
|
|
67
|
-
// filterOperator
|
|
68
|
-
// filterOperator
|
|
63
|
+
// 'filterOperator=': '=',
|
|
64
|
+
// 'filterOperator!=': '!=',
|
|
65
|
+
// 'filterOperator>': '>',
|
|
66
|
+
// 'filterOperator>=': '>=',
|
|
67
|
+
// 'filterOperator<': '<',
|
|
68
|
+
// 'filterOperator<=': '<=',
|
|
69
69
|
|
|
70
70
|
// Header filter operators text
|
|
71
71
|
// headerFilterOperatorContains: 'Contains',
|
|
@@ -81,12 +81,12 @@ const daDKGrid = {
|
|
|
81
81
|
// headerFilterOperatorIsEmpty: 'Is empty',
|
|
82
82
|
// headerFilterOperatorIsNotEmpty: 'Is not empty',
|
|
83
83
|
// headerFilterOperatorIsAnyOf: 'Is any of',
|
|
84
|
-
// headerFilterOperator
|
|
85
|
-
// headerFilterOperator
|
|
86
|
-
// headerFilterOperator
|
|
87
|
-
// headerFilterOperator
|
|
88
|
-
// headerFilterOperator
|
|
89
|
-
// headerFilterOperator
|
|
84
|
+
// 'headerFilterOperator=': 'Equals',
|
|
85
|
+
// 'headerFilterOperator!=': 'Not equals',
|
|
86
|
+
// 'headerFilterOperator>': 'Is greater than',
|
|
87
|
+
// 'headerFilterOperator>=': 'Is greater than or equal to',
|
|
88
|
+
// 'headerFilterOperator<': 'Is less than',
|
|
89
|
+
// 'headerFilterOperator<=': 'Is less than or equal to',
|
|
90
90
|
|
|
91
91
|
// Filter values text
|
|
92
92
|
filterValueAny: 'hvilken som helst',
|
package/locales/deDE.js
CHANGED
|
@@ -60,12 +60,12 @@ const deDEGrid = {
|
|
|
60
60
|
filterOperatorIsEmpty: 'ist leer',
|
|
61
61
|
filterOperatorIsNotEmpty: 'ist nicht leer',
|
|
62
62
|
filterOperatorIsAnyOf: 'ist einer der Werte',
|
|
63
|
-
// filterOperator
|
|
64
|
-
// filterOperator
|
|
65
|
-
// filterOperator
|
|
66
|
-
// filterOperator
|
|
67
|
-
// filterOperator
|
|
68
|
-
// filterOperator
|
|
63
|
+
// 'filterOperator=': '=',
|
|
64
|
+
// 'filterOperator!=': '!=',
|
|
65
|
+
// 'filterOperator>': '>',
|
|
66
|
+
// 'filterOperator>=': '>=',
|
|
67
|
+
// 'filterOperator<': '<',
|
|
68
|
+
// 'filterOperator<=': '<=',
|
|
69
69
|
|
|
70
70
|
// Header filter operators text
|
|
71
71
|
// headerFilterOperatorContains: 'Contains',
|
|
@@ -81,12 +81,12 @@ const deDEGrid = {
|
|
|
81
81
|
// headerFilterOperatorIsEmpty: 'Is empty',
|
|
82
82
|
// headerFilterOperatorIsNotEmpty: 'Is not empty',
|
|
83
83
|
// headerFilterOperatorIsAnyOf: 'Is any of',
|
|
84
|
-
// headerFilterOperator
|
|
85
|
-
// headerFilterOperator
|
|
86
|
-
// headerFilterOperator
|
|
87
|
-
// headerFilterOperator
|
|
88
|
-
// headerFilterOperator
|
|
89
|
-
// headerFilterOperator
|
|
84
|
+
// 'headerFilterOperator=': 'Equals',
|
|
85
|
+
// 'headerFilterOperator!=': 'Not equals',
|
|
86
|
+
// 'headerFilterOperator>': 'Is greater than',
|
|
87
|
+
// 'headerFilterOperator>=': 'Is greater than or equal to',
|
|
88
|
+
// 'headerFilterOperator<': 'Is less than',
|
|
89
|
+
// 'headerFilterOperator<=': 'Is less than or equal to',
|
|
90
90
|
|
|
91
91
|
// Filter values text
|
|
92
92
|
filterValueAny: 'Beliebig',
|
package/locales/elGR.js
CHANGED
|
@@ -61,12 +61,12 @@ const elGRGrid = {
|
|
|
61
61
|
filterOperatorIsEmpty: 'είναι κενό',
|
|
62
62
|
filterOperatorIsNotEmpty: 'δεν είναι κενό',
|
|
63
63
|
// filterOperatorIsAnyOf: 'is any of',
|
|
64
|
-
// filterOperator
|
|
65
|
-
// filterOperator
|
|
66
|
-
// filterOperator
|
|
67
|
-
// filterOperator
|
|
68
|
-
// filterOperator
|
|
69
|
-
// filterOperator
|
|
64
|
+
// 'filterOperator=': '=',
|
|
65
|
+
// 'filterOperator!=': '!=',
|
|
66
|
+
// 'filterOperator>': '>',
|
|
67
|
+
// 'filterOperator>=': '>=',
|
|
68
|
+
// 'filterOperator<': '<',
|
|
69
|
+
// 'filterOperator<=': '<=',
|
|
70
70
|
|
|
71
71
|
// Header filter operators text
|
|
72
72
|
// headerFilterOperatorContains: 'Contains',
|
|
@@ -82,12 +82,12 @@ const elGRGrid = {
|
|
|
82
82
|
// headerFilterOperatorIsEmpty: 'Is empty',
|
|
83
83
|
// headerFilterOperatorIsNotEmpty: 'Is not empty',
|
|
84
84
|
// headerFilterOperatorIsAnyOf: 'Is any of',
|
|
85
|
-
// headerFilterOperator
|
|
86
|
-
// headerFilterOperator
|
|
87
|
-
// headerFilterOperator
|
|
88
|
-
// headerFilterOperator
|
|
89
|
-
// headerFilterOperator
|
|
90
|
-
// headerFilterOperator
|
|
85
|
+
// 'headerFilterOperator=': 'Equals',
|
|
86
|
+
// 'headerFilterOperator!=': 'Not equals',
|
|
87
|
+
// 'headerFilterOperator>': 'Is greater than',
|
|
88
|
+
// 'headerFilterOperator>=': 'Is greater than or equal to',
|
|
89
|
+
// 'headerFilterOperator<': 'Is less than',
|
|
90
|
+
// 'headerFilterOperator<=': 'Is less than or equal to',
|
|
91
91
|
|
|
92
92
|
// Filter values text
|
|
93
93
|
// filterValueAny: 'any',
|
package/locales/esES.js
CHANGED
|
@@ -60,12 +60,12 @@ const esESGrid = {
|
|
|
60
60
|
filterOperatorIsEmpty: 'está vacío',
|
|
61
61
|
filterOperatorIsNotEmpty: 'no esta vacío',
|
|
62
62
|
filterOperatorIsAnyOf: 'es cualquiera de',
|
|
63
|
-
// filterOperator
|
|
64
|
-
// filterOperator
|
|
65
|
-
// filterOperator
|
|
66
|
-
// filterOperator
|
|
67
|
-
// filterOperator
|
|
68
|
-
// filterOperator
|
|
63
|
+
// 'filterOperator=': '=',
|
|
64
|
+
// 'filterOperator!=': '!=',
|
|
65
|
+
// 'filterOperator>': '>',
|
|
66
|
+
// 'filterOperator>=': '>=',
|
|
67
|
+
// 'filterOperator<': '<',
|
|
68
|
+
// 'filterOperator<=': '<=',
|
|
69
69
|
|
|
70
70
|
// Header filter operators text
|
|
71
71
|
// headerFilterOperatorContains: 'Contains',
|
|
@@ -81,12 +81,12 @@ const esESGrid = {
|
|
|
81
81
|
// headerFilterOperatorIsEmpty: 'Is empty',
|
|
82
82
|
// headerFilterOperatorIsNotEmpty: 'Is not empty',
|
|
83
83
|
// headerFilterOperatorIsAnyOf: 'Is any of',
|
|
84
|
-
// headerFilterOperator
|
|
85
|
-
// headerFilterOperator
|
|
86
|
-
// headerFilterOperator
|
|
87
|
-
// headerFilterOperator
|
|
88
|
-
// headerFilterOperator
|
|
89
|
-
// headerFilterOperator
|
|
84
|
+
// 'headerFilterOperator=': 'Equals',
|
|
85
|
+
// 'headerFilterOperator!=': 'Not equals',
|
|
86
|
+
// 'headerFilterOperator>': 'Is greater than',
|
|
87
|
+
// 'headerFilterOperator>=': 'Is greater than or equal to',
|
|
88
|
+
// 'headerFilterOperator<': 'Is less than',
|
|
89
|
+
// 'headerFilterOperator<=': 'Is less than or equal to',
|
|
90
90
|
|
|
91
91
|
// Filter values text
|
|
92
92
|
filterValueAny: 'cualquiera',
|
package/locales/faIR.js
CHANGED
|
@@ -60,12 +60,12 @@ const faIRGrid = {
|
|
|
60
60
|
filterOperatorIsEmpty: 'خالی است',
|
|
61
61
|
filterOperatorIsNotEmpty: 'خالی نیست',
|
|
62
62
|
filterOperatorIsAnyOf: 'هر یک از',
|
|
63
|
-
// filterOperator
|
|
64
|
-
// filterOperator
|
|
65
|
-
// filterOperator
|
|
66
|
-
// filterOperator
|
|
67
|
-
// filterOperator
|
|
68
|
-
// filterOperator
|
|
63
|
+
// 'filterOperator=': '=',
|
|
64
|
+
// 'filterOperator!=': '!=',
|
|
65
|
+
// 'filterOperator>': '>',
|
|
66
|
+
// 'filterOperator>=': '>=',
|
|
67
|
+
// 'filterOperator<': '<',
|
|
68
|
+
// 'filterOperator<=': '<=',
|
|
69
69
|
|
|
70
70
|
// Header filter operators text
|
|
71
71
|
// headerFilterOperatorContains: 'Contains',
|
|
@@ -81,12 +81,12 @@ const faIRGrid = {
|
|
|
81
81
|
// headerFilterOperatorIsEmpty: 'Is empty',
|
|
82
82
|
// headerFilterOperatorIsNotEmpty: 'Is not empty',
|
|
83
83
|
// headerFilterOperatorIsAnyOf: 'Is any of',
|
|
84
|
-
// headerFilterOperator
|
|
85
|
-
// headerFilterOperator
|
|
86
|
-
// headerFilterOperator
|
|
87
|
-
// headerFilterOperator
|
|
88
|
-
// headerFilterOperator
|
|
89
|
-
// headerFilterOperator
|
|
84
|
+
// 'headerFilterOperator=': 'Equals',
|
|
85
|
+
// 'headerFilterOperator!=': 'Not equals',
|
|
86
|
+
// 'headerFilterOperator>': 'Is greater than',
|
|
87
|
+
// 'headerFilterOperator>=': 'Is greater than or equal to',
|
|
88
|
+
// 'headerFilterOperator<': 'Is less than',
|
|
89
|
+
// 'headerFilterOperator<=': 'Is less than or equal to',
|
|
90
90
|
|
|
91
91
|
// Filter values text
|
|
92
92
|
filterValueAny: 'هرچیزی',
|
package/locales/fiFI.js
CHANGED
|
@@ -60,12 +60,12 @@ const fiFIGrid = {
|
|
|
60
60
|
filterOperatorIsEmpty: 'on tyhjä',
|
|
61
61
|
filterOperatorIsNotEmpty: 'ei ole tyhjä',
|
|
62
62
|
filterOperatorIsAnyOf: 'mikä tahansa seuraavista',
|
|
63
|
-
// filterOperator
|
|
64
|
-
// filterOperator
|
|
65
|
-
// filterOperator
|
|
66
|
-
// filterOperator
|
|
67
|
-
// filterOperator
|
|
68
|
-
// filterOperator
|
|
63
|
+
// 'filterOperator=': '=',
|
|
64
|
+
// 'filterOperator!=': '!=',
|
|
65
|
+
// 'filterOperator>': '>',
|
|
66
|
+
// 'filterOperator>=': '>=',
|
|
67
|
+
// 'filterOperator<': '<',
|
|
68
|
+
// 'filterOperator<=': '<=',
|
|
69
69
|
|
|
70
70
|
// Header filter operators text
|
|
71
71
|
// headerFilterOperatorContains: 'Contains',
|
|
@@ -81,12 +81,12 @@ const fiFIGrid = {
|
|
|
81
81
|
// headerFilterOperatorIsEmpty: 'Is empty',
|
|
82
82
|
// headerFilterOperatorIsNotEmpty: 'Is not empty',
|
|
83
83
|
// headerFilterOperatorIsAnyOf: 'Is any of',
|
|
84
|
-
// headerFilterOperator
|
|
85
|
-
// headerFilterOperator
|
|
86
|
-
// headerFilterOperator
|
|
87
|
-
// headerFilterOperator
|
|
88
|
-
// headerFilterOperator
|
|
89
|
-
// headerFilterOperator
|
|
84
|
+
// 'headerFilterOperator=': 'Equals',
|
|
85
|
+
// 'headerFilterOperator!=': 'Not equals',
|
|
86
|
+
// 'headerFilterOperator>': 'Is greater than',
|
|
87
|
+
// 'headerFilterOperator>=': 'Is greater than or equal to',
|
|
88
|
+
// 'headerFilterOperator<': 'Is less than',
|
|
89
|
+
// 'headerFilterOperator<=': 'Is less than or equal to',
|
|
90
90
|
|
|
91
91
|
// Filter values text
|
|
92
92
|
filterValueAny: 'mikä tahansa',
|
package/locales/frFR.js
CHANGED
|
@@ -60,34 +60,32 @@ const frFRGrid = {
|
|
|
60
60
|
filterOperatorIsEmpty: 'est vide',
|
|
61
61
|
filterOperatorIsNotEmpty: "n'est pas vide",
|
|
62
62
|
filterOperatorIsAnyOf: 'fait partie de',
|
|
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
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
70
|
+
headerFilterOperatorContains: 'Contient',
|
|
71
|
+
headerFilterOperatorEquals: 'Est égal à',
|
|
72
|
+
headerFilterOperatorStartsWith: 'Commence par',
|
|
73
|
+
headerFilterOperatorEndsWith: 'Se termine par',
|
|
74
|
+
headerFilterOperatorIs: 'Est',
|
|
75
|
+
headerFilterOperatorNot: "N'est pas",
|
|
76
|
+
headerFilterOperatorAfter: 'Postérieur',
|
|
77
|
+
headerFilterOperatorOnOrAfter: 'Égal ou postérieur',
|
|
78
|
+
headerFilterOperatorBefore: 'Antérieur',
|
|
79
|
+
headerFilterOperatorOnOrBefore: 'Égal ou antérieur',
|
|
80
|
+
headerFilterOperatorIsEmpty: 'Est vide',
|
|
81
|
+
headerFilterOperatorIsNotEmpty: "N'est pas vide",
|
|
82
|
+
headerFilterOperatorIsAnyOf: 'Fait partie de',
|
|
83
|
+
'headerFilterOperator=': 'Est égal à',
|
|
84
|
+
'headerFilterOperator!=': "N'est pas égal à",
|
|
85
|
+
'headerFilterOperator>': 'Est supérieur à',
|
|
86
|
+
'headerFilterOperator>=': 'Est supérieur ou égal à',
|
|
87
|
+
'headerFilterOperator<': 'Est inférieur à',
|
|
88
|
+
'headerFilterOperator<=': 'Est inférieur ou égal à',
|
|
91
89
|
// Filter values text
|
|
92
90
|
filterValueAny: 'tous',
|
|
93
91
|
filterValueTrue: 'vrai',
|
package/locales/heIL.js
CHANGED
|
@@ -60,12 +60,12 @@ const heILGrid = {
|
|
|
60
60
|
filterOperatorIsEmpty: 'ריק',
|
|
61
61
|
filterOperatorIsNotEmpty: 'אינו ריק',
|
|
62
62
|
filterOperatorIsAnyOf: 'הוא אחד מ-',
|
|
63
|
-
// filterOperator
|
|
64
|
-
// filterOperator
|
|
65
|
-
// filterOperator
|
|
66
|
-
// filterOperator
|
|
67
|
-
// filterOperator
|
|
68
|
-
// filterOperator
|
|
63
|
+
// 'filterOperator=': '=',
|
|
64
|
+
// 'filterOperator!=': '!=',
|
|
65
|
+
// 'filterOperator>': '>',
|
|
66
|
+
// 'filterOperator>=': '>=',
|
|
67
|
+
// 'filterOperator<': '<',
|
|
68
|
+
// 'filterOperator<=': '<=',
|
|
69
69
|
|
|
70
70
|
// Header filter operators text
|
|
71
71
|
// headerFilterOperatorContains: 'Contains',
|
|
@@ -81,12 +81,12 @@ const heILGrid = {
|
|
|
81
81
|
// headerFilterOperatorIsEmpty: 'Is empty',
|
|
82
82
|
// headerFilterOperatorIsNotEmpty: 'Is not empty',
|
|
83
83
|
// headerFilterOperatorIsAnyOf: 'Is any of',
|
|
84
|
-
// headerFilterOperator
|
|
85
|
-
// headerFilterOperator
|
|
86
|
-
// headerFilterOperator
|
|
87
|
-
// headerFilterOperator
|
|
88
|
-
// headerFilterOperator
|
|
89
|
-
// headerFilterOperator
|
|
84
|
+
// 'headerFilterOperator=': 'Equals',
|
|
85
|
+
// 'headerFilterOperator!=': 'Not equals',
|
|
86
|
+
// 'headerFilterOperator>': 'Is greater than',
|
|
87
|
+
// 'headerFilterOperator>=': 'Is greater than or equal to',
|
|
88
|
+
// 'headerFilterOperator<': 'Is less than',
|
|
89
|
+
// 'headerFilterOperator<=': 'Is less than or equal to',
|
|
90
90
|
|
|
91
91
|
// Filter values text
|
|
92
92
|
filterValueAny: 'כל ערך',
|
package/locales/huHU.js
CHANGED
|
@@ -60,12 +60,12 @@ const huHUGrid = {
|
|
|
60
60
|
filterOperatorIsEmpty: 'üres',
|
|
61
61
|
filterOperatorIsNotEmpty: 'nem üres',
|
|
62
62
|
filterOperatorIsAnyOf: 'a következők egyike:',
|
|
63
|
-
// filterOperator
|
|
64
|
-
// filterOperator
|
|
65
|
-
// filterOperator
|
|
66
|
-
// filterOperator
|
|
67
|
-
// filterOperator
|
|
68
|
-
// filterOperator
|
|
63
|
+
// 'filterOperator=': '=',
|
|
64
|
+
// 'filterOperator!=': '!=',
|
|
65
|
+
// 'filterOperator>': '>',
|
|
66
|
+
// 'filterOperator>=': '>=',
|
|
67
|
+
// 'filterOperator<': '<',
|
|
68
|
+
// 'filterOperator<=': '<=',
|
|
69
69
|
|
|
70
70
|
// Header filter operators text
|
|
71
71
|
// headerFilterOperatorContains: 'Contains',
|
|
@@ -81,12 +81,12 @@ const huHUGrid = {
|
|
|
81
81
|
// headerFilterOperatorIsEmpty: 'Is empty',
|
|
82
82
|
// headerFilterOperatorIsNotEmpty: 'Is not empty',
|
|
83
83
|
// headerFilterOperatorIsAnyOf: 'Is any of',
|
|
84
|
-
// headerFilterOperator
|
|
85
|
-
// headerFilterOperator
|
|
86
|
-
// headerFilterOperator
|
|
87
|
-
// headerFilterOperator
|
|
88
|
-
// headerFilterOperator
|
|
89
|
-
// headerFilterOperator
|
|
84
|
+
// 'headerFilterOperator=': 'Equals',
|
|
85
|
+
// 'headerFilterOperator!=': 'Not equals',
|
|
86
|
+
// 'headerFilterOperator>': 'Is greater than',
|
|
87
|
+
// 'headerFilterOperator>=': 'Is greater than or equal to',
|
|
88
|
+
// 'headerFilterOperator<': 'Is less than',
|
|
89
|
+
// 'headerFilterOperator<=': 'Is less than or equal to',
|
|
90
90
|
|
|
91
91
|
// Filter values text
|
|
92
92
|
filterValueAny: 'bármilyen',
|
package/locales/itIT.js
CHANGED
|
@@ -60,12 +60,12 @@ const itITGrid = {
|
|
|
60
60
|
filterOperatorIsEmpty: 'è vuoto',
|
|
61
61
|
filterOperatorIsNotEmpty: 'non è vuoto',
|
|
62
62
|
filterOperatorIsAnyOf: 'è uno tra',
|
|
63
|
-
// filterOperator
|
|
64
|
-
// filterOperator
|
|
65
|
-
// filterOperator
|
|
66
|
-
// filterOperator
|
|
67
|
-
// filterOperator
|
|
68
|
-
// filterOperator
|
|
63
|
+
// 'filterOperator=': '=',
|
|
64
|
+
// 'filterOperator!=': '!=',
|
|
65
|
+
// 'filterOperator>': '>',
|
|
66
|
+
// 'filterOperator>=': '>=',
|
|
67
|
+
// 'filterOperator<': '<',
|
|
68
|
+
// 'filterOperator<=': '<=',
|
|
69
69
|
|
|
70
70
|
// Header filter operators text
|
|
71
71
|
// headerFilterOperatorContains: 'Contains',
|
|
@@ -81,12 +81,12 @@ const itITGrid = {
|
|
|
81
81
|
// headerFilterOperatorIsEmpty: 'Is empty',
|
|
82
82
|
// headerFilterOperatorIsNotEmpty: 'Is not empty',
|
|
83
83
|
// headerFilterOperatorIsAnyOf: 'Is any of',
|
|
84
|
-
// headerFilterOperator
|
|
85
|
-
// headerFilterOperator
|
|
86
|
-
// headerFilterOperator
|
|
87
|
-
// headerFilterOperator
|
|
88
|
-
// headerFilterOperator
|
|
89
|
-
// headerFilterOperator
|
|
84
|
+
// 'headerFilterOperator=': 'Equals',
|
|
85
|
+
// 'headerFilterOperator!=': 'Not equals',
|
|
86
|
+
// 'headerFilterOperator>': 'Is greater than',
|
|
87
|
+
// 'headerFilterOperator>=': 'Is greater than or equal to',
|
|
88
|
+
// 'headerFilterOperator<': 'Is less than',
|
|
89
|
+
// 'headerFilterOperator<=': 'Is less than or equal to',
|
|
90
90
|
|
|
91
91
|
// Filter values text
|
|
92
92
|
filterValueAny: 'qualunque',
|
package/locales/jaJP.js
CHANGED
|
@@ -60,12 +60,12 @@ const jaJPGrid = {
|
|
|
60
60
|
filterOperatorIsEmpty: '...空である',
|
|
61
61
|
filterOperatorIsNotEmpty: '...空でない',
|
|
62
62
|
filterOperatorIsAnyOf: '...のいずれか',
|
|
63
|
-
// filterOperator
|
|
64
|
-
// filterOperator
|
|
65
|
-
// filterOperator
|
|
66
|
-
// filterOperator
|
|
67
|
-
// filterOperator
|
|
68
|
-
// filterOperator
|
|
63
|
+
// 'filterOperator=': '=',
|
|
64
|
+
// 'filterOperator!=': '!=',
|
|
65
|
+
// 'filterOperator>': '>',
|
|
66
|
+
// 'filterOperator>=': '>=',
|
|
67
|
+
// 'filterOperator<': '<',
|
|
68
|
+
// 'filterOperator<=': '<=',
|
|
69
69
|
|
|
70
70
|
// Header filter operators text
|
|
71
71
|
// headerFilterOperatorContains: 'Contains',
|
|
@@ -81,12 +81,12 @@ const jaJPGrid = {
|
|
|
81
81
|
// headerFilterOperatorIsEmpty: 'Is empty',
|
|
82
82
|
// headerFilterOperatorIsNotEmpty: 'Is not empty',
|
|
83
83
|
// headerFilterOperatorIsAnyOf: 'Is any of',
|
|
84
|
-
// headerFilterOperator
|
|
85
|
-
// headerFilterOperator
|
|
86
|
-
// headerFilterOperator
|
|
87
|
-
// headerFilterOperator
|
|
88
|
-
// headerFilterOperator
|
|
89
|
-
// headerFilterOperator
|
|
84
|
+
// 'headerFilterOperator=': 'Equals',
|
|
85
|
+
// 'headerFilterOperator!=': 'Not equals',
|
|
86
|
+
// 'headerFilterOperator>': 'Is greater than',
|
|
87
|
+
// 'headerFilterOperator>=': 'Is greater than or equal to',
|
|
88
|
+
// 'headerFilterOperator<': 'Is less than',
|
|
89
|
+
// 'headerFilterOperator<=': 'Is less than or equal to',
|
|
90
90
|
|
|
91
91
|
// Filter values text
|
|
92
92
|
filterValueAny: 'いずれか',
|