@mui/x-data-grid 6.5.0 → 6.7.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 +150 -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/containers/GridRootStyles.js +8 -1
- 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 +16 -2
- package/components/panel/GridColumnsPanel.js +14 -0
- 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 -2
- package/components/panel/filterPanel/GridFilterInputBoolean.js +6 -7
- package/components/panel/filterPanel/GridFilterInputDate.d.ts +1 -2
- package/components/panel/filterPanel/GridFilterInputDate.js +1 -6
- 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 -2
- package/components/panel/filterPanel/GridFilterInputSingleSelect.js +6 -6
- package/components/panel/filterPanel/GridFilterInputValue.d.ts +1 -2
- 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/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/constants/gridClasses.d.ts +4 -0
- package/constants/gridClasses.js +1 -1
- package/constants/localeTextConstants.js +4 -4
- 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 +31 -10
- package/hooks/features/focus/useGridFocus.js +1 -0
- package/hooks/features/preferencesPanel/gridPreferencePanelState.d.ts +2 -0
- package/hooks/features/preferencesPanel/useGridPreferencesPanel.js +4 -2
- package/hooks/features/rows/useGridRowsMeta.js +12 -13
- package/hooks/features/sorting/useGridSorting.js +2 -1
- package/hooks/features/virtualization/useGridVirtualScroller.js +2 -2
- 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/containers/GridRootStyles.js +8 -4
- package/legacy/components/index.js +1 -2
- package/legacy/components/panel/GridColumnsPanel.js +14 -0
- package/legacy/components/panel/GridPreferencesPanel.js +3 -1
- 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 +7 -6
- package/legacy/components/panel/filterPanel/GridFilterInputValue.js +1 -5
- package/legacy/components/panel/filterPanel/GridFilterPanel.js +8 -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/constants/gridClasses.js +1 -1
- package/legacy/constants/localeTextConstants.js +4 -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 +31 -10
- package/legacy/hooks/features/focus/useGridFocus.js +1 -0
- package/legacy/hooks/features/preferencesPanel/useGridPreferencesPanel.js +4 -2
- package/legacy/hooks/features/rows/useGridRowsMeta.js +13 -21
- package/legacy/hooks/features/sorting/useGridSorting.js +2 -1
- package/legacy/hooks/features/virtualization/useGridVirtualScroller.js +2 -2
- 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 +25 -27
- package/legacy/locales/daDK.js +12 -12
- package/legacy/locales/deDE.js +25 -27
- 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 +18 -19
- 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/legacy/utils/EventManager.js +2 -2
- package/locales/arSD.js +12 -12
- package/locales/beBY.js +12 -12
- package/locales/bgBG.js +12 -12
- package/locales/csCZ.js +25 -27
- package/locales/daDK.js +12 -12
- package/locales/deDE.js +25 -27
- 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 +18 -19
- 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/events/gridEventLookup.d.ts +8 -0
- 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/containers/GridRootStyles.js +8 -1
- package/modern/components/index.js +1 -2
- package/modern/components/panel/GridColumnsPanel.js +14 -0
- package/modern/components/panel/GridPreferencesPanel.js +3 -1
- 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 +6 -6
- package/modern/components/panel/filterPanel/GridFilterInputValue.js +1 -6
- package/modern/components/panel/filterPanel/GridFilterPanel.js +8 -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/constants/gridClasses.js +1 -1
- package/modern/constants/localeTextConstants.js +4 -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 +31 -10
- package/modern/hooks/features/focus/useGridFocus.js +1 -0
- package/modern/hooks/features/preferencesPanel/useGridPreferencesPanel.js +4 -2
- package/modern/hooks/features/rows/useGridRowsMeta.js +12 -13
- package/modern/hooks/features/sorting/useGridSorting.js +2 -1
- package/modern/hooks/features/virtualization/useGridVirtualScroller.js +2 -2
- 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 +25 -27
- package/modern/locales/daDK.js +12 -12
- package/modern/locales/deDE.js +25 -27
- 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 +18 -19
- 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/modern/utils/EventManager.js +2 -2
- 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/containers/GridRootStyles.js +8 -1
- package/node/components/index.js +0 -11
- package/node/components/panel/GridColumnsPanel.js +14 -0
- package/node/components/panel/GridPreferencesPanel.js +3 -1
- 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 +6 -6
- package/node/components/panel/filterPanel/GridFilterInputValue.js +1 -6
- package/node/components/panel/filterPanel/GridFilterPanel.js +8 -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/constants/gridClasses.js +1 -1
- package/node/constants/localeTextConstants.js +4 -4
- 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 +35 -14
- package/node/hooks/features/focus/useGridFocus.js +1 -0
- package/node/hooks/features/preferencesPanel/useGridPreferencesPanel.js +4 -2
- package/node/hooks/features/rows/useGridRowsMeta.js +12 -13
- package/node/hooks/features/sorting/useGridSorting.js +2 -1
- package/node/hooks/features/virtualization/useGridVirtualScroller.js +2 -2
- 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 +25 -27
- package/node/locales/daDK.js +12 -12
- package/node/locales/deDE.js +25 -27
- 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 +18 -19
- 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/node/utils/EventManager.js +2 -2
- package/package.json +4 -4
- package/themeAugmentation/overrides.d.ts +1 -1
- package/utils/EventManager.js +2 -2
- 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/node/locales/frFR.js
CHANGED
|
@@ -66,34 +66,32 @@ const frFRGrid = {
|
|
|
66
66
|
filterOperatorIsEmpty: 'est vide',
|
|
67
67
|
filterOperatorIsNotEmpty: "n'est pas vide",
|
|
68
68
|
filterOperatorIsAnyOf: 'fait partie de',
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
69
|
+
'filterOperator=': '=',
|
|
70
|
+
'filterOperator!=': '!=',
|
|
71
|
+
'filterOperator>': '>',
|
|
72
|
+
'filterOperator>=': '>=',
|
|
73
|
+
'filterOperator<': '<',
|
|
74
|
+
'filterOperator<=': '<=',
|
|
76
75
|
// Header filter operators text
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
76
|
+
headerFilterOperatorContains: 'Contient',
|
|
77
|
+
headerFilterOperatorEquals: 'Est égal à',
|
|
78
|
+
headerFilterOperatorStartsWith: 'Commence par',
|
|
79
|
+
headerFilterOperatorEndsWith: 'Se termine par',
|
|
80
|
+
headerFilterOperatorIs: 'Est',
|
|
81
|
+
headerFilterOperatorNot: "N'est pas",
|
|
82
|
+
headerFilterOperatorAfter: 'Postérieur',
|
|
83
|
+
headerFilterOperatorOnOrAfter: 'Égal ou postérieur',
|
|
84
|
+
headerFilterOperatorBefore: 'Antérieur',
|
|
85
|
+
headerFilterOperatorOnOrBefore: 'Égal ou antérieur',
|
|
86
|
+
headerFilterOperatorIsEmpty: 'Est vide',
|
|
87
|
+
headerFilterOperatorIsNotEmpty: "N'est pas vide",
|
|
88
|
+
headerFilterOperatorIsAnyOf: 'Fait partie de',
|
|
89
|
+
'headerFilterOperator=': 'Est égal à',
|
|
90
|
+
'headerFilterOperator!=': "N'est pas égal à",
|
|
91
|
+
'headerFilterOperator>': 'Est supérieur à',
|
|
92
|
+
'headerFilterOperator>=': 'Est supérieur ou égal à',
|
|
93
|
+
'headerFilterOperator<': 'Est inférieur à',
|
|
94
|
+
'headerFilterOperator<=': 'Est inférieur ou égal à',
|
|
97
95
|
// Filter values text
|
|
98
96
|
filterValueAny: 'tous',
|
|
99
97
|
filterValueTrue: 'vrai',
|
package/node/locales/heIL.js
CHANGED
|
@@ -66,12 +66,12 @@ const heILGrid = {
|
|
|
66
66
|
filterOperatorIsEmpty: 'ריק',
|
|
67
67
|
filterOperatorIsNotEmpty: 'אינו ריק',
|
|
68
68
|
filterOperatorIsAnyOf: 'הוא אחד מ-',
|
|
69
|
-
// filterOperator
|
|
70
|
-
// filterOperator
|
|
71
|
-
// filterOperator
|
|
72
|
-
// filterOperator
|
|
73
|
-
// filterOperator
|
|
74
|
-
// filterOperator
|
|
69
|
+
// 'filterOperator=': '=',
|
|
70
|
+
// 'filterOperator!=': '!=',
|
|
71
|
+
// 'filterOperator>': '>',
|
|
72
|
+
// 'filterOperator>=': '>=',
|
|
73
|
+
// 'filterOperator<': '<',
|
|
74
|
+
// 'filterOperator<=': '<=',
|
|
75
75
|
|
|
76
76
|
// Header filter operators text
|
|
77
77
|
// headerFilterOperatorContains: 'Contains',
|
|
@@ -87,12 +87,12 @@ const heILGrid = {
|
|
|
87
87
|
// headerFilterOperatorIsEmpty: 'Is empty',
|
|
88
88
|
// headerFilterOperatorIsNotEmpty: 'Is not empty',
|
|
89
89
|
// headerFilterOperatorIsAnyOf: 'Is any of',
|
|
90
|
-
// headerFilterOperator
|
|
91
|
-
// headerFilterOperator
|
|
92
|
-
// headerFilterOperator
|
|
93
|
-
// headerFilterOperator
|
|
94
|
-
// headerFilterOperator
|
|
95
|
-
// headerFilterOperator
|
|
90
|
+
// 'headerFilterOperator=': 'Equals',
|
|
91
|
+
// 'headerFilterOperator!=': 'Not equals',
|
|
92
|
+
// 'headerFilterOperator>': 'Greater than',
|
|
93
|
+
// 'headerFilterOperator>=': 'Greater than or equal to',
|
|
94
|
+
// 'headerFilterOperator<': 'Less than',
|
|
95
|
+
// 'headerFilterOperator<=': 'Less than or equal to',
|
|
96
96
|
|
|
97
97
|
// Filter values text
|
|
98
98
|
filterValueAny: 'כל ערך',
|
package/node/locales/huHU.js
CHANGED
|
@@ -66,12 +66,12 @@ const huHUGrid = {
|
|
|
66
66
|
filterOperatorIsEmpty: 'üres',
|
|
67
67
|
filterOperatorIsNotEmpty: 'nem üres',
|
|
68
68
|
filterOperatorIsAnyOf: 'a következők egyike:',
|
|
69
|
-
// filterOperator
|
|
70
|
-
// filterOperator
|
|
71
|
-
// filterOperator
|
|
72
|
-
// filterOperator
|
|
73
|
-
// filterOperator
|
|
74
|
-
// filterOperator
|
|
69
|
+
// 'filterOperator=': '=',
|
|
70
|
+
// 'filterOperator!=': '!=',
|
|
71
|
+
// 'filterOperator>': '>',
|
|
72
|
+
// 'filterOperator>=': '>=',
|
|
73
|
+
// 'filterOperator<': '<',
|
|
74
|
+
// 'filterOperator<=': '<=',
|
|
75
75
|
|
|
76
76
|
// Header filter operators text
|
|
77
77
|
// headerFilterOperatorContains: 'Contains',
|
|
@@ -87,12 +87,12 @@ const huHUGrid = {
|
|
|
87
87
|
// headerFilterOperatorIsEmpty: 'Is empty',
|
|
88
88
|
// headerFilterOperatorIsNotEmpty: 'Is not empty',
|
|
89
89
|
// headerFilterOperatorIsAnyOf: 'Is any of',
|
|
90
|
-
// headerFilterOperator
|
|
91
|
-
// headerFilterOperator
|
|
92
|
-
// headerFilterOperator
|
|
93
|
-
// headerFilterOperator
|
|
94
|
-
// headerFilterOperator
|
|
95
|
-
// headerFilterOperator
|
|
90
|
+
// 'headerFilterOperator=': 'Equals',
|
|
91
|
+
// 'headerFilterOperator!=': 'Not equals',
|
|
92
|
+
// 'headerFilterOperator>': 'Greater than',
|
|
93
|
+
// 'headerFilterOperator>=': 'Greater than or equal to',
|
|
94
|
+
// 'headerFilterOperator<': 'Less than',
|
|
95
|
+
// 'headerFilterOperator<=': 'Less than or equal to',
|
|
96
96
|
|
|
97
97
|
// Filter values text
|
|
98
98
|
filterValueAny: 'bármilyen',
|
package/node/locales/itIT.js
CHANGED
|
@@ -66,12 +66,12 @@ const itITGrid = {
|
|
|
66
66
|
filterOperatorIsEmpty: 'è vuoto',
|
|
67
67
|
filterOperatorIsNotEmpty: 'non è vuoto',
|
|
68
68
|
filterOperatorIsAnyOf: 'è uno tra',
|
|
69
|
-
// filterOperator
|
|
70
|
-
// filterOperator
|
|
71
|
-
// filterOperator
|
|
72
|
-
// filterOperator
|
|
73
|
-
// filterOperator
|
|
74
|
-
// filterOperator
|
|
69
|
+
// 'filterOperator=': '=',
|
|
70
|
+
// 'filterOperator!=': '!=',
|
|
71
|
+
// 'filterOperator>': '>',
|
|
72
|
+
// 'filterOperator>=': '>=',
|
|
73
|
+
// 'filterOperator<': '<',
|
|
74
|
+
// 'filterOperator<=': '<=',
|
|
75
75
|
|
|
76
76
|
// Header filter operators text
|
|
77
77
|
// headerFilterOperatorContains: 'Contains',
|
|
@@ -87,12 +87,12 @@ const itITGrid = {
|
|
|
87
87
|
// headerFilterOperatorIsEmpty: 'Is empty',
|
|
88
88
|
// headerFilterOperatorIsNotEmpty: 'Is not empty',
|
|
89
89
|
// headerFilterOperatorIsAnyOf: 'Is any of',
|
|
90
|
-
// headerFilterOperator
|
|
91
|
-
// headerFilterOperator
|
|
92
|
-
// headerFilterOperator
|
|
93
|
-
// headerFilterOperator
|
|
94
|
-
// headerFilterOperator
|
|
95
|
-
// headerFilterOperator
|
|
90
|
+
// 'headerFilterOperator=': 'Equals',
|
|
91
|
+
// 'headerFilterOperator!=': 'Not equals',
|
|
92
|
+
// 'headerFilterOperator>': 'Greater than',
|
|
93
|
+
// 'headerFilterOperator>=': 'Greater than or equal to',
|
|
94
|
+
// 'headerFilterOperator<': 'Less than',
|
|
95
|
+
// 'headerFilterOperator<=': 'Less than or equal to',
|
|
96
96
|
|
|
97
97
|
// Filter values text
|
|
98
98
|
filterValueAny: 'qualunque',
|
package/node/locales/jaJP.js
CHANGED
|
@@ -66,12 +66,12 @@ const jaJPGrid = {
|
|
|
66
66
|
filterOperatorIsEmpty: '...空である',
|
|
67
67
|
filterOperatorIsNotEmpty: '...空でない',
|
|
68
68
|
filterOperatorIsAnyOf: '...のいずれか',
|
|
69
|
-
// filterOperator
|
|
70
|
-
// filterOperator
|
|
71
|
-
// filterOperator
|
|
72
|
-
// filterOperator
|
|
73
|
-
// filterOperator
|
|
74
|
-
// filterOperator
|
|
69
|
+
// 'filterOperator=': '=',
|
|
70
|
+
// 'filterOperator!=': '!=',
|
|
71
|
+
// 'filterOperator>': '>',
|
|
72
|
+
// 'filterOperator>=': '>=',
|
|
73
|
+
// 'filterOperator<': '<',
|
|
74
|
+
// 'filterOperator<=': '<=',
|
|
75
75
|
|
|
76
76
|
// Header filter operators text
|
|
77
77
|
// headerFilterOperatorContains: 'Contains',
|
|
@@ -87,12 +87,12 @@ const jaJPGrid = {
|
|
|
87
87
|
// headerFilterOperatorIsEmpty: 'Is empty',
|
|
88
88
|
// headerFilterOperatorIsNotEmpty: 'Is not empty',
|
|
89
89
|
// headerFilterOperatorIsAnyOf: 'Is any of',
|
|
90
|
-
// headerFilterOperator
|
|
91
|
-
// headerFilterOperator
|
|
92
|
-
// headerFilterOperator
|
|
93
|
-
// headerFilterOperator
|
|
94
|
-
// headerFilterOperator
|
|
95
|
-
// headerFilterOperator
|
|
90
|
+
// 'headerFilterOperator=': 'Equals',
|
|
91
|
+
// 'headerFilterOperator!=': 'Not equals',
|
|
92
|
+
// 'headerFilterOperator>': 'Greater than',
|
|
93
|
+
// 'headerFilterOperator>=': 'Greater than or equal to',
|
|
94
|
+
// 'headerFilterOperator<': 'Less than',
|
|
95
|
+
// 'headerFilterOperator<=': 'Less than or equal to',
|
|
96
96
|
|
|
97
97
|
// Filter values text
|
|
98
98
|
filterValueAny: 'いずれか',
|
package/node/locales/koKR.js
CHANGED
|
@@ -66,12 +66,12 @@ const koKRGrid = {
|
|
|
66
66
|
filterOperatorIsEmpty: '값이 없는',
|
|
67
67
|
filterOperatorIsNotEmpty: '값이 있는',
|
|
68
68
|
filterOperatorIsAnyOf: '값 중 하나인',
|
|
69
|
-
// filterOperator
|
|
70
|
-
// filterOperator
|
|
71
|
-
// filterOperator
|
|
72
|
-
// filterOperator
|
|
73
|
-
// filterOperator
|
|
74
|
-
// filterOperator
|
|
69
|
+
// 'filterOperator=': '=',
|
|
70
|
+
// 'filterOperator!=': '!=',
|
|
71
|
+
// 'filterOperator>': '>',
|
|
72
|
+
// 'filterOperator>=': '>=',
|
|
73
|
+
// 'filterOperator<': '<',
|
|
74
|
+
// 'filterOperator<=': '<=',
|
|
75
75
|
|
|
76
76
|
// Header filter operators text
|
|
77
77
|
// headerFilterOperatorContains: 'Contains',
|
|
@@ -87,12 +87,12 @@ const koKRGrid = {
|
|
|
87
87
|
// headerFilterOperatorIsEmpty: 'Is empty',
|
|
88
88
|
// headerFilterOperatorIsNotEmpty: 'Is not empty',
|
|
89
89
|
// headerFilterOperatorIsAnyOf: 'Is any of',
|
|
90
|
-
// headerFilterOperator
|
|
91
|
-
// headerFilterOperator
|
|
92
|
-
// headerFilterOperator
|
|
93
|
-
// headerFilterOperator
|
|
94
|
-
// headerFilterOperator
|
|
95
|
-
// headerFilterOperator
|
|
90
|
+
// 'headerFilterOperator=': 'Equals',
|
|
91
|
+
// 'headerFilterOperator!=': 'Not equals',
|
|
92
|
+
// 'headerFilterOperator>': 'Greater than',
|
|
93
|
+
// 'headerFilterOperator>=': 'Greater than or equal to',
|
|
94
|
+
// 'headerFilterOperator<': 'Less than',
|
|
95
|
+
// 'headerFilterOperator<=': 'Less than or equal to',
|
|
96
96
|
|
|
97
97
|
// Filter values text
|
|
98
98
|
filterValueAny: '아무값',
|
package/node/locales/nbNO.js
CHANGED
|
@@ -66,12 +66,12 @@ const nbNOGrid = {
|
|
|
66
66
|
filterOperatorIsEmpty: 'er tom',
|
|
67
67
|
filterOperatorIsNotEmpty: 'er ikke tom',
|
|
68
68
|
filterOperatorIsAnyOf: 'er en av',
|
|
69
|
-
// filterOperator
|
|
70
|
-
// filterOperator
|
|
71
|
-
// filterOperator
|
|
72
|
-
// filterOperator
|
|
73
|
-
// filterOperator
|
|
74
|
-
// filterOperator
|
|
69
|
+
// 'filterOperator=': '=',
|
|
70
|
+
// 'filterOperator!=': '!=',
|
|
71
|
+
// 'filterOperator>': '>',
|
|
72
|
+
// 'filterOperator>=': '>=',
|
|
73
|
+
// 'filterOperator<': '<',
|
|
74
|
+
// 'filterOperator<=': '<=',
|
|
75
75
|
|
|
76
76
|
// Header filter operators text
|
|
77
77
|
// headerFilterOperatorContains: 'Contains',
|
|
@@ -87,12 +87,12 @@ const nbNOGrid = {
|
|
|
87
87
|
// headerFilterOperatorIsEmpty: 'Is empty',
|
|
88
88
|
// headerFilterOperatorIsNotEmpty: 'Is not empty',
|
|
89
89
|
// headerFilterOperatorIsAnyOf: 'Is any of',
|
|
90
|
-
// headerFilterOperator
|
|
91
|
-
// headerFilterOperator
|
|
92
|
-
// headerFilterOperator
|
|
93
|
-
// headerFilterOperator
|
|
94
|
-
// headerFilterOperator
|
|
95
|
-
// headerFilterOperator
|
|
90
|
+
// 'headerFilterOperator=': 'Equals',
|
|
91
|
+
// 'headerFilterOperator!=': 'Not equals',
|
|
92
|
+
// 'headerFilterOperator>': 'Greater than',
|
|
93
|
+
// 'headerFilterOperator>=': 'Greater than or equal to',
|
|
94
|
+
// 'headerFilterOperator<': 'Less than',
|
|
95
|
+
// 'headerFilterOperator<=': 'Less than or equal to',
|
|
96
96
|
|
|
97
97
|
// Filter values text
|
|
98
98
|
filterValueAny: 'noen',
|
package/node/locales/nlNL.js
CHANGED
|
@@ -66,34 +66,32 @@ const nlNLGrid = {
|
|
|
66
66
|
filterOperatorIsEmpty: 'is leeg',
|
|
67
67
|
filterOperatorIsNotEmpty: 'is niet leeg',
|
|
68
68
|
filterOperatorIsAnyOf: 'is een van',
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
69
|
+
'filterOperator=': '=',
|
|
70
|
+
'filterOperator!=': '!=',
|
|
71
|
+
'filterOperator>': '>',
|
|
72
|
+
'filterOperator>=': '>=',
|
|
73
|
+
'filterOperator<': '<',
|
|
74
|
+
'filterOperator<=': '<=',
|
|
76
75
|
// Header filter operators text
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
76
|
+
headerFilterOperatorContains: 'Bevat',
|
|
77
|
+
headerFilterOperatorEquals: 'Gelijk aan',
|
|
78
|
+
headerFilterOperatorStartsWith: 'Begint met',
|
|
79
|
+
headerFilterOperatorEndsWith: 'Eindigt met',
|
|
80
|
+
headerFilterOperatorIs: 'Is',
|
|
81
|
+
headerFilterOperatorNot: 'Is niet',
|
|
82
|
+
headerFilterOperatorAfter: 'Is na',
|
|
83
|
+
headerFilterOperatorOnOrAfter: 'Is op of na',
|
|
84
|
+
headerFilterOperatorBefore: 'Is voor',
|
|
85
|
+
headerFilterOperatorOnOrBefore: 'Is op of voor',
|
|
86
|
+
headerFilterOperatorIsEmpty: 'Is leeg',
|
|
87
|
+
headerFilterOperatorIsNotEmpty: 'Is niet leeg',
|
|
88
|
+
headerFilterOperatorIsAnyOf: 'Is een van',
|
|
89
|
+
'headerFilterOperator=': 'Gelijk aan',
|
|
90
|
+
'headerFilterOperator!=': 'Niet gelijk aan',
|
|
91
|
+
'headerFilterOperator>': 'Is groter dan',
|
|
92
|
+
'headerFilterOperator>=': 'Is groter dan of gelijk aan',
|
|
93
|
+
'headerFilterOperator<': 'Is kleiner dan',
|
|
94
|
+
'headerFilterOperator<=': 'Is kleiner dan of gelijk aan',
|
|
97
95
|
// Filter values text
|
|
98
96
|
filterValueAny: 'alles',
|
|
99
97
|
filterValueTrue: 'waar',
|
package/node/locales/plPL.js
CHANGED
|
@@ -66,12 +66,12 @@ const plPLGrid = {
|
|
|
66
66
|
filterOperatorIsEmpty: 'jest pusty',
|
|
67
67
|
filterOperatorIsNotEmpty: 'nie jest pusty',
|
|
68
68
|
filterOperatorIsAnyOf: 'jest jednym z',
|
|
69
|
-
// filterOperator
|
|
70
|
-
// filterOperator
|
|
71
|
-
// filterOperator
|
|
72
|
-
// filterOperator
|
|
73
|
-
// filterOperator
|
|
74
|
-
// filterOperator
|
|
69
|
+
// 'filterOperator=': '=',
|
|
70
|
+
// 'filterOperator!=': '!=',
|
|
71
|
+
// 'filterOperator>': '>',
|
|
72
|
+
// 'filterOperator>=': '>=',
|
|
73
|
+
// 'filterOperator<': '<',
|
|
74
|
+
// 'filterOperator<=': '<=',
|
|
75
75
|
|
|
76
76
|
// Header filter operators text
|
|
77
77
|
// headerFilterOperatorContains: 'Contains',
|
|
@@ -87,12 +87,12 @@ const plPLGrid = {
|
|
|
87
87
|
// headerFilterOperatorIsEmpty: 'Is empty',
|
|
88
88
|
// headerFilterOperatorIsNotEmpty: 'Is not empty',
|
|
89
89
|
// headerFilterOperatorIsAnyOf: 'Is any of',
|
|
90
|
-
// headerFilterOperator
|
|
91
|
-
// headerFilterOperator
|
|
92
|
-
// headerFilterOperator
|
|
93
|
-
// headerFilterOperator
|
|
94
|
-
// headerFilterOperator
|
|
95
|
-
// headerFilterOperator
|
|
90
|
+
// 'headerFilterOperator=': 'Equals',
|
|
91
|
+
// 'headerFilterOperator!=': 'Not equals',
|
|
92
|
+
// 'headerFilterOperator>': 'Greater than',
|
|
93
|
+
// 'headerFilterOperator>=': 'Greater than or equal to',
|
|
94
|
+
// 'headerFilterOperator<': 'Less than',
|
|
95
|
+
// 'headerFilterOperator<=': 'Less than or equal to',
|
|
96
96
|
|
|
97
97
|
// Filter values text
|
|
98
98
|
filterValueAny: 'dowolny',
|
package/node/locales/ptBR.js
CHANGED
|
@@ -66,12 +66,12 @@ const ptBRGrid = {
|
|
|
66
66
|
filterOperatorIsEmpty: 'está vazio',
|
|
67
67
|
filterOperatorIsNotEmpty: 'não está vazio',
|
|
68
68
|
filterOperatorIsAnyOf: 'é qualquer um dos',
|
|
69
|
-
// filterOperator
|
|
70
|
-
// filterOperator
|
|
71
|
-
// filterOperator
|
|
72
|
-
// filterOperator
|
|
73
|
-
// filterOperator
|
|
74
|
-
// filterOperator
|
|
69
|
+
// 'filterOperator=': '=',
|
|
70
|
+
// 'filterOperator!=': '!=',
|
|
71
|
+
// 'filterOperator>': '>',
|
|
72
|
+
// 'filterOperator>=': '>=',
|
|
73
|
+
// 'filterOperator<': '<',
|
|
74
|
+
// 'filterOperator<=': '<=',
|
|
75
75
|
|
|
76
76
|
// Header filter operators text
|
|
77
77
|
// headerFilterOperatorContains: 'Contains',
|
|
@@ -87,12 +87,12 @@ const ptBRGrid = {
|
|
|
87
87
|
// headerFilterOperatorIsEmpty: 'Is empty',
|
|
88
88
|
// headerFilterOperatorIsNotEmpty: 'Is not empty',
|
|
89
89
|
// headerFilterOperatorIsAnyOf: 'Is any of',
|
|
90
|
-
// headerFilterOperator
|
|
91
|
-
// headerFilterOperator
|
|
92
|
-
// headerFilterOperator
|
|
93
|
-
// headerFilterOperator
|
|
94
|
-
// headerFilterOperator
|
|
95
|
-
// headerFilterOperator
|
|
90
|
+
// 'headerFilterOperator=': 'Equals',
|
|
91
|
+
// 'headerFilterOperator!=': 'Not equals',
|
|
92
|
+
// 'headerFilterOperator>': 'Greater than',
|
|
93
|
+
// 'headerFilterOperator>=': 'Greater than or equal to',
|
|
94
|
+
// 'headerFilterOperator<': 'Less than',
|
|
95
|
+
// 'headerFilterOperator<=': 'Less than or equal to',
|
|
96
96
|
|
|
97
97
|
// Filter values text
|
|
98
98
|
filterValueAny: 'qualquer',
|
package/node/locales/roRO.js
CHANGED
|
@@ -66,12 +66,12 @@ const roROGrid = {
|
|
|
66
66
|
filterOperatorIsEmpty: 'este gol',
|
|
67
67
|
filterOperatorIsNotEmpty: 'nu este gol',
|
|
68
68
|
filterOperatorIsAnyOf: 'este una din valori',
|
|
69
|
-
// filterOperator
|
|
70
|
-
// filterOperator
|
|
71
|
-
// filterOperator
|
|
72
|
-
// filterOperator
|
|
73
|
-
// filterOperator
|
|
74
|
-
// filterOperator
|
|
69
|
+
// 'filterOperator=': '=',
|
|
70
|
+
// 'filterOperator!=': '!=',
|
|
71
|
+
// 'filterOperator>': '>',
|
|
72
|
+
// 'filterOperator>=': '>=',
|
|
73
|
+
// 'filterOperator<': '<',
|
|
74
|
+
// 'filterOperator<=': '<=',
|
|
75
75
|
|
|
76
76
|
// Header filter operators text
|
|
77
77
|
// headerFilterOperatorContains: 'Contains',
|
|
@@ -87,12 +87,12 @@ const roROGrid = {
|
|
|
87
87
|
// headerFilterOperatorIsEmpty: 'Is empty',
|
|
88
88
|
// headerFilterOperatorIsNotEmpty: 'Is not empty',
|
|
89
89
|
// headerFilterOperatorIsAnyOf: 'Is any of',
|
|
90
|
-
// headerFilterOperator
|
|
91
|
-
// headerFilterOperator
|
|
92
|
-
// headerFilterOperator
|
|
93
|
-
// headerFilterOperator
|
|
94
|
-
// headerFilterOperator
|
|
95
|
-
// headerFilterOperator
|
|
90
|
+
// 'headerFilterOperator=': 'Equals',
|
|
91
|
+
// 'headerFilterOperator!=': 'Not equals',
|
|
92
|
+
// 'headerFilterOperator>': 'Greater than',
|
|
93
|
+
// 'headerFilterOperator>=': 'Greater than or equal to',
|
|
94
|
+
// 'headerFilterOperator<': 'Less than',
|
|
95
|
+
// 'headerFilterOperator<=': 'Less than or equal to',
|
|
96
96
|
|
|
97
97
|
// Filter values text
|
|
98
98
|
filterValueAny: 'Aleatoriu',
|
package/node/locales/ruRU.js
CHANGED
|
@@ -75,12 +75,12 @@ const ruRUGrid = {
|
|
|
75
75
|
filterOperatorIsEmpty: 'пустой',
|
|
76
76
|
filterOperatorIsNotEmpty: 'не пустой',
|
|
77
77
|
filterOperatorIsAnyOf: 'любой из',
|
|
78
|
-
// filterOperator
|
|
79
|
-
// filterOperator
|
|
80
|
-
// filterOperator
|
|
81
|
-
// filterOperator
|
|
82
|
-
// filterOperator
|
|
83
|
-
// filterOperator
|
|
78
|
+
// 'filterOperator=': '=',
|
|
79
|
+
// 'filterOperator!=': '!=',
|
|
80
|
+
// 'filterOperator>': '>',
|
|
81
|
+
// 'filterOperator>=': '>=',
|
|
82
|
+
// 'filterOperator<': '<',
|
|
83
|
+
// 'filterOperator<=': '<=',
|
|
84
84
|
|
|
85
85
|
// Header filter operators text
|
|
86
86
|
// headerFilterOperatorContains: 'Contains',
|
|
@@ -96,12 +96,12 @@ const ruRUGrid = {
|
|
|
96
96
|
// headerFilterOperatorIsEmpty: 'Is empty',
|
|
97
97
|
// headerFilterOperatorIsNotEmpty: 'Is not empty',
|
|
98
98
|
// headerFilterOperatorIsAnyOf: 'Is any of',
|
|
99
|
-
// headerFilterOperator
|
|
100
|
-
// headerFilterOperator
|
|
101
|
-
// headerFilterOperator
|
|
102
|
-
// headerFilterOperator
|
|
103
|
-
// headerFilterOperator
|
|
104
|
-
// headerFilterOperator
|
|
99
|
+
// 'headerFilterOperator=': 'Equals',
|
|
100
|
+
// 'headerFilterOperator!=': 'Not equals',
|
|
101
|
+
// 'headerFilterOperator>': 'Greater than',
|
|
102
|
+
// 'headerFilterOperator>=': 'Greater than or equal to',
|
|
103
|
+
// 'headerFilterOperator<': 'Less than',
|
|
104
|
+
// 'headerFilterOperator<=': 'Less than or equal to',
|
|
105
105
|
|
|
106
106
|
// Filter values text
|
|
107
107
|
filterValueAny: 'любой',
|
package/node/locales/skSK.js
CHANGED
|
@@ -74,12 +74,12 @@ const skSKGrid = {
|
|
|
74
74
|
filterOperatorIsEmpty: 'je prázdny',
|
|
75
75
|
filterOperatorIsNotEmpty: 'nie je prázdny',
|
|
76
76
|
filterOperatorIsAnyOf: 'je jeden z',
|
|
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 skSKGrid = {
|
|
|
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>': '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: 'akýkoľvek',
|
package/node/locales/svSE.js
CHANGED
|
@@ -66,12 +66,12 @@ const svSEGrid = {
|
|
|
66
66
|
filterOperatorIsEmpty: 'är tom',
|
|
67
67
|
filterOperatorIsNotEmpty: 'är inte tom',
|
|
68
68
|
filterOperatorIsAnyOf: 'är någon av',
|
|
69
|
-
// filterOperator
|
|
70
|
-
// filterOperator
|
|
71
|
-
// filterOperator
|
|
72
|
-
// filterOperator
|
|
73
|
-
// filterOperator
|
|
74
|
-
// filterOperator
|
|
69
|
+
// 'filterOperator=': '=',
|
|
70
|
+
// 'filterOperator!=': '!=',
|
|
71
|
+
// 'filterOperator>': '>',
|
|
72
|
+
// 'filterOperator>=': '>=',
|
|
73
|
+
// 'filterOperator<': '<',
|
|
74
|
+
// 'filterOperator<=': '<=',
|
|
75
75
|
|
|
76
76
|
// Header filter operators text
|
|
77
77
|
// headerFilterOperatorContains: 'Contains',
|
|
@@ -87,12 +87,12 @@ const svSEGrid = {
|
|
|
87
87
|
// headerFilterOperatorIsEmpty: 'Is empty',
|
|
88
88
|
// headerFilterOperatorIsNotEmpty: 'Is not empty',
|
|
89
89
|
// headerFilterOperatorIsAnyOf: 'Is any of',
|
|
90
|
-
// headerFilterOperator
|
|
91
|
-
// headerFilterOperator
|
|
92
|
-
// headerFilterOperator
|
|
93
|
-
// headerFilterOperator
|
|
94
|
-
// headerFilterOperator
|
|
95
|
-
// headerFilterOperator
|
|
90
|
+
// 'headerFilterOperator=': 'Equals',
|
|
91
|
+
// 'headerFilterOperator!=': 'Not equals',
|
|
92
|
+
// 'headerFilterOperator>': 'Greater than',
|
|
93
|
+
// 'headerFilterOperator>=': 'Greater than or equal to',
|
|
94
|
+
// 'headerFilterOperator<': 'Less than',
|
|
95
|
+
// 'headerFilterOperator<=': 'Less than or equal to',
|
|
96
96
|
|
|
97
97
|
// Filter values text
|
|
98
98
|
filterValueAny: 'något',
|