@mui/x-data-grid 8.11.3 → 8.12.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 +151 -6
- package/DataGrid/DataGrid.js +3 -1
- package/DataGrid/useDataGridComponent.js +2 -2
- package/colDef/gridActionsColDef.js +1 -0
- package/colDef/gridBooleanColDef.js +1 -0
- package/colDef/gridCheckboxSelectionColDef.js +1 -0
- package/colDef/gridStringColDef.js +1 -0
- package/components/cell/GridCell.js +7 -5
- package/constants/localeTextConstants.js +29 -0
- package/esm/DataGrid/DataGrid.js +3 -1
- package/esm/DataGrid/useDataGridComponent.js +2 -2
- package/esm/colDef/gridActionsColDef.js +1 -0
- package/esm/colDef/gridBooleanColDef.js +1 -0
- package/esm/colDef/gridCheckboxSelectionColDef.js +1 -0
- package/esm/colDef/gridStringColDef.js +1 -0
- package/esm/components/cell/GridCell.js +7 -5
- package/esm/constants/localeTextConstants.js +29 -0
- package/esm/hooks/features/columnResize/useGridColumnResize.js +2 -2
- package/esm/hooks/features/columns/useGridColumns.js +21 -4
- package/esm/hooks/features/filter/gridFilterSelector.d.ts +12 -4
- package/esm/hooks/features/filter/gridFilterSelector.js +21 -4
- package/esm/hooks/features/filter/gridFilterState.d.ts +3 -1
- package/esm/hooks/features/filter/gridFilterUtils.d.ts +3 -3
- package/esm/hooks/features/filter/gridFilterUtils.js +23 -13
- package/esm/hooks/features/filter/useGridFilter.d.ts +2 -1
- package/esm/hooks/features/filter/useGridFilter.js +7 -5
- package/esm/hooks/features/rows/gridRowsSelector.d.ts +3 -0
- package/esm/hooks/features/rows/gridRowsSelector.js +4 -0
- package/esm/hooks/features/rows/useGridParamsApi.js +16 -7
- package/esm/hooks/features/sorting/gridSortingUtils.d.ts +3 -1
- package/esm/hooks/features/sorting/gridSortingUtils.js +10 -4
- package/esm/hooks/features/sorting/useGridSorting.d.ts +2 -1
- package/esm/hooks/features/sorting/useGridSorting.js +4 -3
- package/esm/index.js +1 -1
- package/esm/internals/index.d.ts +1 -1
- package/esm/internals/index.js +1 -1
- package/esm/locales/arSD.js +31 -0
- package/esm/locales/beBY.js +31 -0
- package/esm/locales/bgBG.js +31 -0
- package/esm/locales/bnBD.js +31 -0
- package/esm/locales/csCZ.js +31 -0
- package/esm/locales/daDK.js +31 -0
- package/esm/locales/deDE.js +32 -0
- package/esm/locales/elGR.js +31 -0
- package/esm/locales/esES.js +31 -0
- package/esm/locales/faIR.js +31 -0
- package/esm/locales/fiFI.js +31 -0
- package/esm/locales/frFR.js +32 -2
- package/esm/locales/heIL.js +31 -0
- package/esm/locales/hrHR.js +31 -0
- package/esm/locales/huHU.js +31 -0
- package/esm/locales/hyAM.js +31 -0
- package/esm/locales/idID.d.ts +1 -1
- package/esm/locales/idID.js +32 -0
- package/esm/locales/isIS.js +31 -0
- package/esm/locales/itIT.js +31 -0
- package/esm/locales/jaJP.js +31 -0
- package/esm/locales/koKR.js +31 -0
- package/esm/locales/nbNO.js +31 -0
- package/esm/locales/nlNL.js +31 -0
- package/esm/locales/nnNO.js +32 -0
- package/esm/locales/plPL.js +31 -0
- package/esm/locales/ptBR.js +31 -0
- package/esm/locales/ptPT.js +31 -0
- package/esm/locales/roRO.js +31 -0
- package/esm/locales/ruRU.js +31 -0
- package/esm/locales/skSK.js +31 -0
- package/esm/locales/svSE.js +31 -0
- package/esm/locales/trTR.js +31 -0
- package/esm/locales/ukUA.js +31 -0
- package/esm/locales/urPK.js +31 -0
- package/esm/locales/viVN.js +31 -0
- package/esm/locales/zhCN.js +31 -0
- package/esm/locales/zhHK.js +31 -0
- package/esm/locales/zhTW.js +31 -0
- package/esm/material/augmentation.d.ts +8 -0
- package/esm/material/index.js +122 -24
- package/esm/models/api/gridLocaleTextApi.d.ts +27 -0
- package/esm/models/api/gridParamsApi.d.ts +5 -1
- package/esm/models/configuration/gridAggregationConfiguration.d.ts +25 -0
- package/esm/models/configuration/gridAggregationConfiguration.js +1 -0
- package/esm/models/configuration/gridConfiguration.d.ts +6 -9
- package/esm/models/gridBaseSlots.d.ts +15 -0
- package/esm/models/gridSlotsComponent.d.ts +10 -0
- package/esm/models/gridSlotsComponentsProps.d.ts +5 -1
- package/hooks/features/columnResize/useGridColumnResize.js +2 -2
- package/hooks/features/columns/useGridColumns.js +23 -6
- package/hooks/features/filter/gridFilterSelector.d.ts +12 -4
- package/hooks/features/filter/gridFilterSelector.js +22 -5
- package/hooks/features/filter/gridFilterState.d.ts +3 -1
- package/hooks/features/filter/gridFilterUtils.d.ts +3 -3
- package/hooks/features/filter/gridFilterUtils.js +23 -13
- package/hooks/features/filter/useGridFilter.d.ts +2 -1
- package/hooks/features/filter/useGridFilter.js +7 -5
- package/hooks/features/rows/gridRowsSelector.d.ts +3 -0
- package/hooks/features/rows/gridRowsSelector.js +4 -0
- package/hooks/features/rows/useGridParamsApi.js +16 -7
- package/hooks/features/sorting/gridSortingUtils.d.ts +3 -1
- package/hooks/features/sorting/gridSortingUtils.js +10 -4
- package/hooks/features/sorting/useGridSorting.d.ts +2 -1
- package/hooks/features/sorting/useGridSorting.js +4 -3
- package/index.js +1 -1
- package/internals/index.d.ts +1 -1
- package/internals/index.js +7 -0
- package/locales/arSD.js +31 -0
- package/locales/beBY.js +31 -0
- package/locales/bgBG.js +31 -0
- package/locales/bnBD.js +31 -0
- package/locales/csCZ.js +31 -0
- package/locales/daDK.js +31 -0
- package/locales/deDE.js +32 -0
- package/locales/elGR.js +31 -0
- package/locales/esES.js +31 -0
- package/locales/faIR.js +31 -0
- package/locales/fiFI.js +31 -0
- package/locales/frFR.js +32 -2
- package/locales/heIL.js +31 -0
- package/locales/hrHR.js +31 -0
- package/locales/huHU.js +31 -0
- package/locales/hyAM.js +31 -0
- package/locales/idID.d.ts +1 -1
- package/locales/idID.js +32 -0
- package/locales/isIS.js +31 -0
- package/locales/itIT.js +31 -0
- package/locales/jaJP.js +31 -0
- package/locales/koKR.js +31 -0
- package/locales/nbNO.js +31 -0
- package/locales/nlNL.js +31 -0
- package/locales/nnNO.js +32 -0
- package/locales/plPL.js +31 -0
- package/locales/ptBR.js +31 -0
- package/locales/ptPT.js +31 -0
- package/locales/roRO.js +31 -0
- package/locales/ruRU.js +31 -0
- package/locales/skSK.js +31 -0
- package/locales/svSE.js +31 -0
- package/locales/trTR.js +31 -0
- package/locales/ukUA.js +31 -0
- package/locales/urPK.js +31 -0
- package/locales/viVN.js +31 -0
- package/locales/zhCN.js +31 -0
- package/locales/zhHK.js +31 -0
- package/locales/zhTW.js +31 -0
- package/material/augmentation.d.ts +8 -0
- package/material/index.js +122 -24
- package/models/api/gridLocaleTextApi.d.ts +27 -0
- package/models/api/gridParamsApi.d.ts +5 -1
- package/models/configuration/gridAggregationConfiguration.d.ts +25 -0
- package/models/configuration/gridAggregationConfiguration.js +5 -0
- package/models/configuration/gridConfiguration.d.ts +6 -9
- package/models/gridBaseSlots.d.ts +15 -0
- package/models/gridSlotsComponent.d.ts +10 -0
- package/models/gridSlotsComponentsProps.d.ts +5 -1
- package/package.json +3 -3
package/locales/plPL.js
CHANGED
|
@@ -41,6 +41,9 @@ const plPLGrid = {
|
|
|
41
41
|
// Toolbar pivot button
|
|
42
42
|
// toolbarPivot: 'Pivot',
|
|
43
43
|
|
|
44
|
+
// Toolbar charts button
|
|
45
|
+
// toolbarCharts: 'Charts',
|
|
46
|
+
|
|
44
47
|
// Toolbar AI Assistant button
|
|
45
48
|
toolbarAssistant: 'Asystent AI',
|
|
46
49
|
// Columns management text
|
|
@@ -120,6 +123,7 @@ const plPLGrid = {
|
|
|
120
123
|
columnMenuSortAsc: 'Sortuj rosnąco',
|
|
121
124
|
columnMenuSortDesc: 'Sortuj malejąco',
|
|
122
125
|
// columnMenuManagePivot: 'Manage pivot',
|
|
126
|
+
// columnMenuManageCharts: 'Manage charts',
|
|
123
127
|
|
|
124
128
|
// Column header text
|
|
125
129
|
columnHeaderFiltersTooltipActive: count => `Liczba aktywnych filtrów: ${count}`,
|
|
@@ -189,6 +193,7 @@ const plPLGrid = {
|
|
|
189
193
|
rowReorderingHeaderName: 'Porządkowanie wierszy',
|
|
190
194
|
// Aggregation
|
|
191
195
|
aggregationMenuItemHeader: 'Agregacja',
|
|
196
|
+
// aggregationFunctionLabelNone: 'none',
|
|
192
197
|
aggregationFunctionLabelSum: 'suma',
|
|
193
198
|
aggregationFunctionLabelAvg: 'średnia',
|
|
194
199
|
aggregationFunctionLabelMin: 'minimum',
|
|
@@ -223,6 +228,32 @@ const plPLGrid = {
|
|
|
223
228
|
// pivotYearColumnHeaderName: '(Year)',
|
|
224
229
|
// pivotQuarterColumnHeaderName: '(Quarter)',
|
|
225
230
|
|
|
231
|
+
// Charts configuration panel
|
|
232
|
+
// chartsNoCharts: 'There are no charts available',
|
|
233
|
+
// chartsChartNotSelected: 'Select a chart type to configure its options',
|
|
234
|
+
// chartsTabChart: 'Chart',
|
|
235
|
+
// chartsTabFields: 'Fields',
|
|
236
|
+
// chartsTabCustomize: 'Customize',
|
|
237
|
+
// chartsCloseButton: 'Close charts configuration',
|
|
238
|
+
// chartsSyncButtonLabel: 'Sync chart',
|
|
239
|
+
// chartsSearchPlaceholder: 'Search fields',
|
|
240
|
+
// chartsSearchLabel: 'Search fields',
|
|
241
|
+
// chartsSearchClear: 'Clear search',
|
|
242
|
+
// chartsNoFields: 'No fields',
|
|
243
|
+
// chartsFieldBlocked: 'This field cannot be added to any section',
|
|
244
|
+
// chartsCategories: 'Categories',
|
|
245
|
+
// chartsSeries: 'Series',
|
|
246
|
+
// chartsMenuAddToDimensions: (dimensionLabel: string) => `Add to ${dimensionLabel}`,
|
|
247
|
+
// chartsMenuAddToValues: (valuesLabel: string) => `Add to ${valuesLabel}`,
|
|
248
|
+
// chartsMenuMoveUp: 'Move up',
|
|
249
|
+
// chartsMenuMoveDown: 'Move down',
|
|
250
|
+
// chartsMenuMoveToTop: 'Move to top',
|
|
251
|
+
// chartsMenuMoveToBottom: 'Move to bottom',
|
|
252
|
+
// chartsMenuOptions: 'Field options',
|
|
253
|
+
// chartsMenuRemove: 'Remove',
|
|
254
|
+
// chartsDragToDimensions: (dimensionLabel: string) => `Drag here to use column as ${dimensionLabel}`,
|
|
255
|
+
// chartsDragToValues: (valuesLabel: string) => `Drag here to use column as ${valuesLabel}`,
|
|
256
|
+
|
|
226
257
|
// AI Assistant panel
|
|
227
258
|
aiAssistantPanelTitle: 'Asystent AI',
|
|
228
259
|
aiAssistantPanelClose: 'Zamknij asystenta AI',
|
package/locales/ptBR.js
CHANGED
|
@@ -41,6 +41,9 @@ const ptBRGrid = {
|
|
|
41
41
|
// Toolbar pivot button
|
|
42
42
|
// toolbarPivot: 'Pivot',
|
|
43
43
|
|
|
44
|
+
// Toolbar charts button
|
|
45
|
+
// toolbarCharts: 'Charts',
|
|
46
|
+
|
|
44
47
|
// Toolbar AI Assistant button
|
|
45
48
|
// toolbarAssistant: 'AI Assistant',
|
|
46
49
|
|
|
@@ -122,6 +125,7 @@ const ptBRGrid = {
|
|
|
122
125
|
columnMenuSortAsc: 'Ordenar do menor para o maior',
|
|
123
126
|
columnMenuSortDesc: 'Ordenar do maior para o menor',
|
|
124
127
|
// columnMenuManagePivot: 'Manage pivot',
|
|
128
|
+
// columnMenuManageCharts: 'Manage charts',
|
|
125
129
|
|
|
126
130
|
// Column header text
|
|
127
131
|
columnHeaderFiltersTooltipActive: count => `${count} ${count !== 1 ? 'filtros' : 'filtro'} ${count !== 1 ? 'ativos' : 'ativo'}`,
|
|
@@ -191,6 +195,7 @@ const ptBRGrid = {
|
|
|
191
195
|
rowReorderingHeaderName: 'Reorganizar linhas',
|
|
192
196
|
// Aggregation
|
|
193
197
|
aggregationMenuItemHeader: 'Agrupar',
|
|
198
|
+
// aggregationFunctionLabelNone: 'none',
|
|
194
199
|
aggregationFunctionLabelSum: 'soma',
|
|
195
200
|
aggregationFunctionLabelAvg: 'média',
|
|
196
201
|
aggregationFunctionLabelMin: 'mín',
|
|
@@ -225,6 +230,32 @@ const ptBRGrid = {
|
|
|
225
230
|
// pivotYearColumnHeaderName: '(Year)',
|
|
226
231
|
// pivotQuarterColumnHeaderName: '(Quarter)',
|
|
227
232
|
|
|
233
|
+
// Charts configuration panel
|
|
234
|
+
// chartsNoCharts: 'There are no charts available',
|
|
235
|
+
// chartsChartNotSelected: 'Select a chart type to configure its options',
|
|
236
|
+
// chartsTabChart: 'Chart',
|
|
237
|
+
// chartsTabFields: 'Fields',
|
|
238
|
+
// chartsTabCustomize: 'Customize',
|
|
239
|
+
// chartsCloseButton: 'Close charts configuration',
|
|
240
|
+
// chartsSyncButtonLabel: 'Sync chart',
|
|
241
|
+
// chartsSearchPlaceholder: 'Search fields',
|
|
242
|
+
// chartsSearchLabel: 'Search fields',
|
|
243
|
+
// chartsSearchClear: 'Clear search',
|
|
244
|
+
// chartsNoFields: 'No fields',
|
|
245
|
+
// chartsFieldBlocked: 'This field cannot be added to any section',
|
|
246
|
+
// chartsCategories: 'Categories',
|
|
247
|
+
// chartsSeries: 'Series',
|
|
248
|
+
// chartsMenuAddToDimensions: (dimensionLabel: string) => `Add to ${dimensionLabel}`,
|
|
249
|
+
// chartsMenuAddToValues: (valuesLabel: string) => `Add to ${valuesLabel}`,
|
|
250
|
+
// chartsMenuMoveUp: 'Move up',
|
|
251
|
+
// chartsMenuMoveDown: 'Move down',
|
|
252
|
+
// chartsMenuMoveToTop: 'Move to top',
|
|
253
|
+
// chartsMenuMoveToBottom: 'Move to bottom',
|
|
254
|
+
// chartsMenuOptions: 'Field options',
|
|
255
|
+
// chartsMenuRemove: 'Remove',
|
|
256
|
+
// chartsDragToDimensions: (dimensionLabel: string) => `Drag here to use column as ${dimensionLabel}`,
|
|
257
|
+
// chartsDragToValues: (valuesLabel: string) => `Drag here to use column as ${valuesLabel}`,
|
|
258
|
+
|
|
228
259
|
// AI Assistant panel
|
|
229
260
|
// aiAssistantPanelTitle: 'AI Assistant',
|
|
230
261
|
// aiAssistantPanelClose: 'Close AI Assistant',
|
package/locales/ptPT.js
CHANGED
|
@@ -41,6 +41,9 @@ const ptPTGrid = {
|
|
|
41
41
|
// Toolbar pivot button
|
|
42
42
|
// toolbarPivot: 'Pivot',
|
|
43
43
|
|
|
44
|
+
// Toolbar charts button
|
|
45
|
+
// toolbarCharts: 'Charts',
|
|
46
|
+
|
|
44
47
|
// Toolbar AI Assistant button
|
|
45
48
|
// toolbarAssistant: 'AI Assistant',
|
|
46
49
|
|
|
@@ -122,6 +125,7 @@ const ptPTGrid = {
|
|
|
122
125
|
columnMenuSortAsc: 'Classificar por ordem crescente',
|
|
123
126
|
columnMenuSortDesc: 'Classificar por ordem decrescente',
|
|
124
127
|
// columnMenuManagePivot: 'Manage pivot',
|
|
128
|
+
// columnMenuManageCharts: 'Manage charts',
|
|
125
129
|
|
|
126
130
|
// Column header text
|
|
127
131
|
columnHeaderFiltersTooltipActive: count => count !== 1 ? `${count} filtros ativos` : `${count} filtro ativo`,
|
|
@@ -191,6 +195,7 @@ const ptPTGrid = {
|
|
|
191
195
|
rowReorderingHeaderName: 'Reordenação de linhas',
|
|
192
196
|
// Aggregation
|
|
193
197
|
aggregationMenuItemHeader: 'Agregação',
|
|
198
|
+
// aggregationFunctionLabelNone: 'none',
|
|
194
199
|
aggregationFunctionLabelSum: 'soma',
|
|
195
200
|
aggregationFunctionLabelAvg: 'média',
|
|
196
201
|
aggregationFunctionLabelMin: 'min',
|
|
@@ -225,6 +230,32 @@ const ptPTGrid = {
|
|
|
225
230
|
// pivotYearColumnHeaderName: '(Year)',
|
|
226
231
|
// pivotQuarterColumnHeaderName: '(Quarter)',
|
|
227
232
|
|
|
233
|
+
// Charts configuration panel
|
|
234
|
+
// chartsNoCharts: 'There are no charts available',
|
|
235
|
+
// chartsChartNotSelected: 'Select a chart type to configure its options',
|
|
236
|
+
// chartsTabChart: 'Chart',
|
|
237
|
+
// chartsTabFields: 'Fields',
|
|
238
|
+
// chartsTabCustomize: 'Customize',
|
|
239
|
+
// chartsCloseButton: 'Close charts configuration',
|
|
240
|
+
// chartsSyncButtonLabel: 'Sync chart',
|
|
241
|
+
// chartsSearchPlaceholder: 'Search fields',
|
|
242
|
+
// chartsSearchLabel: 'Search fields',
|
|
243
|
+
// chartsSearchClear: 'Clear search',
|
|
244
|
+
// chartsNoFields: 'No fields',
|
|
245
|
+
// chartsFieldBlocked: 'This field cannot be added to any section',
|
|
246
|
+
// chartsCategories: 'Categories',
|
|
247
|
+
// chartsSeries: 'Series',
|
|
248
|
+
// chartsMenuAddToDimensions: (dimensionLabel: string) => `Add to ${dimensionLabel}`,
|
|
249
|
+
// chartsMenuAddToValues: (valuesLabel: string) => `Add to ${valuesLabel}`,
|
|
250
|
+
// chartsMenuMoveUp: 'Move up',
|
|
251
|
+
// chartsMenuMoveDown: 'Move down',
|
|
252
|
+
// chartsMenuMoveToTop: 'Move to top',
|
|
253
|
+
// chartsMenuMoveToBottom: 'Move to bottom',
|
|
254
|
+
// chartsMenuOptions: 'Field options',
|
|
255
|
+
// chartsMenuRemove: 'Remove',
|
|
256
|
+
// chartsDragToDimensions: (dimensionLabel: string) => `Drag here to use column as ${dimensionLabel}`,
|
|
257
|
+
// chartsDragToValues: (valuesLabel: string) => `Drag here to use column as ${valuesLabel}`,
|
|
258
|
+
|
|
228
259
|
// AI Assistant panel
|
|
229
260
|
// aiAssistantPanelTitle: 'AI Assistant',
|
|
230
261
|
// aiAssistantPanelClose: 'Close AI Assistant',
|
package/locales/roRO.js
CHANGED
|
@@ -41,6 +41,9 @@ const roROGrid = {
|
|
|
41
41
|
// Toolbar pivot button
|
|
42
42
|
// toolbarPivot: 'Pivot',
|
|
43
43
|
|
|
44
|
+
// Toolbar charts button
|
|
45
|
+
// toolbarCharts: 'Charts',
|
|
46
|
+
|
|
44
47
|
// Toolbar AI Assistant button
|
|
45
48
|
// toolbarAssistant: 'AI Assistant',
|
|
46
49
|
|
|
@@ -122,6 +125,7 @@ const roROGrid = {
|
|
|
122
125
|
columnMenuSortAsc: 'Sortează crescător',
|
|
123
126
|
columnMenuSortDesc: 'Sortează descrescător',
|
|
124
127
|
// columnMenuManagePivot: 'Manage pivot',
|
|
128
|
+
// columnMenuManageCharts: 'Manage charts',
|
|
125
129
|
|
|
126
130
|
// Column header text
|
|
127
131
|
columnHeaderFiltersTooltipActive: count => count !== 1 ? `${count} filtru activ` : `${count} filtru activ`,
|
|
@@ -191,6 +195,7 @@ const roROGrid = {
|
|
|
191
195
|
rowReorderingHeaderName: 'Reordonare rânduri',
|
|
192
196
|
// Aggregation
|
|
193
197
|
aggregationMenuItemHeader: 'Agregare',
|
|
198
|
+
// aggregationFunctionLabelNone: 'none',
|
|
194
199
|
aggregationFunctionLabelSum: 'Sumă',
|
|
195
200
|
aggregationFunctionLabelAvg: 'Medie',
|
|
196
201
|
aggregationFunctionLabelMin: 'Minim',
|
|
@@ -225,6 +230,32 @@ const roROGrid = {
|
|
|
225
230
|
// pivotYearColumnHeaderName: '(Year)',
|
|
226
231
|
// pivotQuarterColumnHeaderName: '(Quarter)',
|
|
227
232
|
|
|
233
|
+
// Charts configuration panel
|
|
234
|
+
// chartsNoCharts: 'There are no charts available',
|
|
235
|
+
// chartsChartNotSelected: 'Select a chart type to configure its options',
|
|
236
|
+
// chartsTabChart: 'Chart',
|
|
237
|
+
// chartsTabFields: 'Fields',
|
|
238
|
+
// chartsTabCustomize: 'Customize',
|
|
239
|
+
// chartsCloseButton: 'Close charts configuration',
|
|
240
|
+
// chartsSyncButtonLabel: 'Sync chart',
|
|
241
|
+
// chartsSearchPlaceholder: 'Search fields',
|
|
242
|
+
// chartsSearchLabel: 'Search fields',
|
|
243
|
+
// chartsSearchClear: 'Clear search',
|
|
244
|
+
// chartsNoFields: 'No fields',
|
|
245
|
+
// chartsFieldBlocked: 'This field cannot be added to any section',
|
|
246
|
+
// chartsCategories: 'Categories',
|
|
247
|
+
// chartsSeries: 'Series',
|
|
248
|
+
// chartsMenuAddToDimensions: (dimensionLabel: string) => `Add to ${dimensionLabel}`,
|
|
249
|
+
// chartsMenuAddToValues: (valuesLabel: string) => `Add to ${valuesLabel}`,
|
|
250
|
+
// chartsMenuMoveUp: 'Move up',
|
|
251
|
+
// chartsMenuMoveDown: 'Move down',
|
|
252
|
+
// chartsMenuMoveToTop: 'Move to top',
|
|
253
|
+
// chartsMenuMoveToBottom: 'Move to bottom',
|
|
254
|
+
// chartsMenuOptions: 'Field options',
|
|
255
|
+
// chartsMenuRemove: 'Remove',
|
|
256
|
+
// chartsDragToDimensions: (dimensionLabel: string) => `Drag here to use column as ${dimensionLabel}`,
|
|
257
|
+
// chartsDragToValues: (valuesLabel: string) => `Drag here to use column as ${valuesLabel}`,
|
|
258
|
+
|
|
228
259
|
// AI Assistant panel
|
|
229
260
|
// aiAssistantPanelTitle: 'AI Assistant',
|
|
230
261
|
// aiAssistantPanelClose: 'Close AI Assistant',
|
package/locales/ruRU.js
CHANGED
|
@@ -56,6 +56,9 @@ const ruRUGrid = {
|
|
|
56
56
|
// Toolbar pivot button
|
|
57
57
|
// toolbarPivot: 'Pivot',
|
|
58
58
|
|
|
59
|
+
// Toolbar charts button
|
|
60
|
+
// toolbarCharts: 'Charts',
|
|
61
|
+
|
|
59
62
|
// Toolbar AI Assistant button
|
|
60
63
|
// toolbarAssistant: 'AI Assistant',
|
|
61
64
|
|
|
@@ -136,6 +139,7 @@ const ruRUGrid = {
|
|
|
136
139
|
columnMenuSortAsc: 'Сортировать по возрастанию',
|
|
137
140
|
columnMenuSortDesc: 'Сортировать по убыванию',
|
|
138
141
|
// columnMenuManagePivot: 'Manage pivot',
|
|
142
|
+
// columnMenuManageCharts: 'Manage charts',
|
|
139
143
|
|
|
140
144
|
// Column header text
|
|
141
145
|
columnHeaderFiltersTooltipActive: count => getPluralForm(count, {
|
|
@@ -213,6 +217,7 @@ const ruRUGrid = {
|
|
|
213
217
|
rowReorderingHeaderName: 'Изменение порядка строк',
|
|
214
218
|
// Aggregation
|
|
215
219
|
aggregationMenuItemHeader: 'Объединение данных',
|
|
220
|
+
// aggregationFunctionLabelNone: 'none',
|
|
216
221
|
aggregationFunctionLabelSum: 'сумм',
|
|
217
222
|
aggregationFunctionLabelAvg: 'срзнач',
|
|
218
223
|
aggregationFunctionLabelMin: 'мин',
|
|
@@ -247,6 +252,32 @@ const ruRUGrid = {
|
|
|
247
252
|
// pivotYearColumnHeaderName: '(Year)',
|
|
248
253
|
// pivotQuarterColumnHeaderName: '(Quarter)',
|
|
249
254
|
|
|
255
|
+
// Charts configuration panel
|
|
256
|
+
// chartsNoCharts: 'There are no charts available',
|
|
257
|
+
// chartsChartNotSelected: 'Select a chart type to configure its options',
|
|
258
|
+
// chartsTabChart: 'Chart',
|
|
259
|
+
// chartsTabFields: 'Fields',
|
|
260
|
+
// chartsTabCustomize: 'Customize',
|
|
261
|
+
// chartsCloseButton: 'Close charts configuration',
|
|
262
|
+
// chartsSyncButtonLabel: 'Sync chart',
|
|
263
|
+
// chartsSearchPlaceholder: 'Search fields',
|
|
264
|
+
// chartsSearchLabel: 'Search fields',
|
|
265
|
+
// chartsSearchClear: 'Clear search',
|
|
266
|
+
// chartsNoFields: 'No fields',
|
|
267
|
+
// chartsFieldBlocked: 'This field cannot be added to any section',
|
|
268
|
+
// chartsCategories: 'Categories',
|
|
269
|
+
// chartsSeries: 'Series',
|
|
270
|
+
// chartsMenuAddToDimensions: (dimensionLabel: string) => `Add to ${dimensionLabel}`,
|
|
271
|
+
// chartsMenuAddToValues: (valuesLabel: string) => `Add to ${valuesLabel}`,
|
|
272
|
+
// chartsMenuMoveUp: 'Move up',
|
|
273
|
+
// chartsMenuMoveDown: 'Move down',
|
|
274
|
+
// chartsMenuMoveToTop: 'Move to top',
|
|
275
|
+
// chartsMenuMoveToBottom: 'Move to bottom',
|
|
276
|
+
// chartsMenuOptions: 'Field options',
|
|
277
|
+
// chartsMenuRemove: 'Remove',
|
|
278
|
+
// chartsDragToDimensions: (dimensionLabel: string) => `Drag here to use column as ${dimensionLabel}`,
|
|
279
|
+
// chartsDragToValues: (valuesLabel: string) => `Drag here to use column as ${valuesLabel}`,
|
|
280
|
+
|
|
250
281
|
// AI Assistant panel
|
|
251
282
|
// aiAssistantPanelTitle: 'AI Assistant',
|
|
252
283
|
// aiAssistantPanelClose: 'Close AI Assistant',
|
package/locales/skSK.js
CHANGED
|
@@ -49,6 +49,9 @@ const skSKGrid = {
|
|
|
49
49
|
// Toolbar pivot button
|
|
50
50
|
// toolbarPivot: 'Pivot',
|
|
51
51
|
|
|
52
|
+
// Toolbar charts button
|
|
53
|
+
// toolbarCharts: 'Charts',
|
|
54
|
+
|
|
52
55
|
// Toolbar AI Assistant button
|
|
53
56
|
// toolbarAssistant: 'AI Assistant',
|
|
54
57
|
|
|
@@ -129,6 +132,7 @@ const skSKGrid = {
|
|
|
129
132
|
columnMenuSortAsc: 'Zoradiť vzostupne',
|
|
130
133
|
columnMenuSortDesc: 'Zoradiť zostupne',
|
|
131
134
|
// columnMenuManagePivot: 'Manage pivot',
|
|
135
|
+
// columnMenuManageCharts: 'Manage charts',
|
|
132
136
|
|
|
133
137
|
// Column header text
|
|
134
138
|
columnHeaderFiltersTooltipActive: count => {
|
|
@@ -219,6 +223,7 @@ const skSKGrid = {
|
|
|
219
223
|
rowReorderingHeaderName: 'Preusporiadávanie riadkov',
|
|
220
224
|
// Aggregation
|
|
221
225
|
aggregationMenuItemHeader: 'Agregácia',
|
|
226
|
+
// aggregationFunctionLabelNone: 'none',
|
|
222
227
|
aggregationFunctionLabelSum: 'suma',
|
|
223
228
|
aggregationFunctionLabelAvg: 'priemer',
|
|
224
229
|
aggregationFunctionLabelMin: 'min',
|
|
@@ -253,6 +258,32 @@ const skSKGrid = {
|
|
|
253
258
|
// pivotYearColumnHeaderName: '(Year)',
|
|
254
259
|
// pivotQuarterColumnHeaderName: '(Quarter)',
|
|
255
260
|
|
|
261
|
+
// Charts configuration panel
|
|
262
|
+
// chartsNoCharts: 'There are no charts available',
|
|
263
|
+
// chartsChartNotSelected: 'Select a chart type to configure its options',
|
|
264
|
+
// chartsTabChart: 'Chart',
|
|
265
|
+
// chartsTabFields: 'Fields',
|
|
266
|
+
// chartsTabCustomize: 'Customize',
|
|
267
|
+
// chartsCloseButton: 'Close charts configuration',
|
|
268
|
+
// chartsSyncButtonLabel: 'Sync chart',
|
|
269
|
+
// chartsSearchPlaceholder: 'Search fields',
|
|
270
|
+
// chartsSearchLabel: 'Search fields',
|
|
271
|
+
// chartsSearchClear: 'Clear search',
|
|
272
|
+
// chartsNoFields: 'No fields',
|
|
273
|
+
// chartsFieldBlocked: 'This field cannot be added to any section',
|
|
274
|
+
// chartsCategories: 'Categories',
|
|
275
|
+
// chartsSeries: 'Series',
|
|
276
|
+
// chartsMenuAddToDimensions: (dimensionLabel: string) => `Add to ${dimensionLabel}`,
|
|
277
|
+
// chartsMenuAddToValues: (valuesLabel: string) => `Add to ${valuesLabel}`,
|
|
278
|
+
// chartsMenuMoveUp: 'Move up',
|
|
279
|
+
// chartsMenuMoveDown: 'Move down',
|
|
280
|
+
// chartsMenuMoveToTop: 'Move to top',
|
|
281
|
+
// chartsMenuMoveToBottom: 'Move to bottom',
|
|
282
|
+
// chartsMenuOptions: 'Field options',
|
|
283
|
+
// chartsMenuRemove: 'Remove',
|
|
284
|
+
// chartsDragToDimensions: (dimensionLabel: string) => `Drag here to use column as ${dimensionLabel}`,
|
|
285
|
+
// chartsDragToValues: (valuesLabel: string) => `Drag here to use column as ${valuesLabel}`,
|
|
286
|
+
|
|
256
287
|
// AI Assistant panel
|
|
257
288
|
// aiAssistantPanelTitle: 'AI Assistant',
|
|
258
289
|
// aiAssistantPanelClose: 'Close AI Assistant',
|
package/locales/svSE.js
CHANGED
|
@@ -41,6 +41,9 @@ const svSEGrid = {
|
|
|
41
41
|
// Toolbar pivot button
|
|
42
42
|
// toolbarPivot: 'Pivot',
|
|
43
43
|
|
|
44
|
+
// Toolbar charts button
|
|
45
|
+
// toolbarCharts: 'Charts',
|
|
46
|
+
|
|
44
47
|
// Toolbar AI Assistant button
|
|
45
48
|
// toolbarAssistant: 'AI Assistant',
|
|
46
49
|
|
|
@@ -123,6 +126,7 @@ const svSEGrid = {
|
|
|
123
126
|
columnMenuSortAsc: 'Sortera stigande',
|
|
124
127
|
columnMenuSortDesc: 'Sortera fallande',
|
|
125
128
|
// columnMenuManagePivot: 'Manage pivot',
|
|
129
|
+
// columnMenuManageCharts: 'Manage charts',
|
|
126
130
|
|
|
127
131
|
// Column header text
|
|
128
132
|
columnHeaderFiltersTooltipActive: count => count !== 1 ? `${count} aktiva filter` : `${count} aktivt filter`,
|
|
@@ -192,6 +196,7 @@ const svSEGrid = {
|
|
|
192
196
|
rowReorderingHeaderName: 'Ordna om rader',
|
|
193
197
|
// Aggregation
|
|
194
198
|
aggregationMenuItemHeader: 'Aggregering',
|
|
199
|
+
// aggregationFunctionLabelNone: 'none',
|
|
195
200
|
aggregationFunctionLabelSum: 'summa',
|
|
196
201
|
aggregationFunctionLabelAvg: 'medel',
|
|
197
202
|
aggregationFunctionLabelMin: 'min',
|
|
@@ -227,6 +232,32 @@ const svSEGrid = {
|
|
|
227
232
|
// pivotYearColumnHeaderName: '(Year)',
|
|
228
233
|
// pivotQuarterColumnHeaderName: '(Quarter)',
|
|
229
234
|
|
|
235
|
+
// Charts configuration panel
|
|
236
|
+
// chartsNoCharts: 'There are no charts available',
|
|
237
|
+
// chartsChartNotSelected: 'Select a chart type to configure its options',
|
|
238
|
+
// chartsTabChart: 'Chart',
|
|
239
|
+
// chartsTabFields: 'Fields',
|
|
240
|
+
// chartsTabCustomize: 'Customize',
|
|
241
|
+
// chartsCloseButton: 'Close charts configuration',
|
|
242
|
+
// chartsSyncButtonLabel: 'Sync chart',
|
|
243
|
+
// chartsSearchPlaceholder: 'Search fields',
|
|
244
|
+
// chartsSearchLabel: 'Search fields',
|
|
245
|
+
// chartsSearchClear: 'Clear search',
|
|
246
|
+
// chartsNoFields: 'No fields',
|
|
247
|
+
// chartsFieldBlocked: 'This field cannot be added to any section',
|
|
248
|
+
// chartsCategories: 'Categories',
|
|
249
|
+
// chartsSeries: 'Series',
|
|
250
|
+
// chartsMenuAddToDimensions: (dimensionLabel: string) => `Add to ${dimensionLabel}`,
|
|
251
|
+
// chartsMenuAddToValues: (valuesLabel: string) => `Add to ${valuesLabel}`,
|
|
252
|
+
// chartsMenuMoveUp: 'Move up',
|
|
253
|
+
// chartsMenuMoveDown: 'Move down',
|
|
254
|
+
// chartsMenuMoveToTop: 'Move to top',
|
|
255
|
+
// chartsMenuMoveToBottom: 'Move to bottom',
|
|
256
|
+
// chartsMenuOptions: 'Field options',
|
|
257
|
+
// chartsMenuRemove: 'Remove',
|
|
258
|
+
// chartsDragToDimensions: (dimensionLabel: string) => `Drag here to use column as ${dimensionLabel}`,
|
|
259
|
+
// chartsDragToValues: (valuesLabel: string) => `Drag here to use column as ${valuesLabel}`,
|
|
260
|
+
|
|
230
261
|
// AI Assistant panel
|
|
231
262
|
// aiAssistantPanelTitle: 'AI Assistant',
|
|
232
263
|
// aiAssistantPanelClose: 'Close AI Assistant',
|
package/locales/trTR.js
CHANGED
|
@@ -41,6 +41,9 @@ const trTRGrid = {
|
|
|
41
41
|
// Toolbar pivot button
|
|
42
42
|
// toolbarPivot: 'Pivot',
|
|
43
43
|
|
|
44
|
+
// Toolbar charts button
|
|
45
|
+
// toolbarCharts: 'Charts',
|
|
46
|
+
|
|
44
47
|
// Toolbar AI Assistant button
|
|
45
48
|
// toolbarAssistant: 'AI Assistant',
|
|
46
49
|
|
|
@@ -122,6 +125,7 @@ const trTRGrid = {
|
|
|
122
125
|
columnMenuSortAsc: 'Sırala - Artan',
|
|
123
126
|
columnMenuSortDesc: 'Sırala - Azalan',
|
|
124
127
|
// columnMenuManagePivot: 'Manage pivot',
|
|
128
|
+
// columnMenuManageCharts: 'Manage charts',
|
|
125
129
|
|
|
126
130
|
// Column header text
|
|
127
131
|
columnHeaderFiltersTooltipActive: count => `${count} filtre aktif`,
|
|
@@ -191,6 +195,7 @@ const trTRGrid = {
|
|
|
191
195
|
rowReorderingHeaderName: 'Satırı yeniden sırala',
|
|
192
196
|
// Aggregation
|
|
193
197
|
aggregationMenuItemHeader: 'Toplama',
|
|
198
|
+
// aggregationFunctionLabelNone: 'none',
|
|
194
199
|
aggregationFunctionLabelSum: 'top',
|
|
195
200
|
aggregationFunctionLabelAvg: 'ort',
|
|
196
201
|
aggregationFunctionLabelMin: 'min',
|
|
@@ -225,6 +230,32 @@ const trTRGrid = {
|
|
|
225
230
|
// pivotYearColumnHeaderName: '(Year)',
|
|
226
231
|
// pivotQuarterColumnHeaderName: '(Quarter)',
|
|
227
232
|
|
|
233
|
+
// Charts configuration panel
|
|
234
|
+
// chartsNoCharts: 'There are no charts available',
|
|
235
|
+
// chartsChartNotSelected: 'Select a chart type to configure its options',
|
|
236
|
+
// chartsTabChart: 'Chart',
|
|
237
|
+
// chartsTabFields: 'Fields',
|
|
238
|
+
// chartsTabCustomize: 'Customize',
|
|
239
|
+
// chartsCloseButton: 'Close charts configuration',
|
|
240
|
+
// chartsSyncButtonLabel: 'Sync chart',
|
|
241
|
+
// chartsSearchPlaceholder: 'Search fields',
|
|
242
|
+
// chartsSearchLabel: 'Search fields',
|
|
243
|
+
// chartsSearchClear: 'Clear search',
|
|
244
|
+
// chartsNoFields: 'No fields',
|
|
245
|
+
// chartsFieldBlocked: 'This field cannot be added to any section',
|
|
246
|
+
// chartsCategories: 'Categories',
|
|
247
|
+
// chartsSeries: 'Series',
|
|
248
|
+
// chartsMenuAddToDimensions: (dimensionLabel: string) => `Add to ${dimensionLabel}`,
|
|
249
|
+
// chartsMenuAddToValues: (valuesLabel: string) => `Add to ${valuesLabel}`,
|
|
250
|
+
// chartsMenuMoveUp: 'Move up',
|
|
251
|
+
// chartsMenuMoveDown: 'Move down',
|
|
252
|
+
// chartsMenuMoveToTop: 'Move to top',
|
|
253
|
+
// chartsMenuMoveToBottom: 'Move to bottom',
|
|
254
|
+
// chartsMenuOptions: 'Field options',
|
|
255
|
+
// chartsMenuRemove: 'Remove',
|
|
256
|
+
// chartsDragToDimensions: (dimensionLabel: string) => `Drag here to use column as ${dimensionLabel}`,
|
|
257
|
+
// chartsDragToValues: (valuesLabel: string) => `Drag here to use column as ${valuesLabel}`,
|
|
258
|
+
|
|
228
259
|
// AI Assistant panel
|
|
229
260
|
// aiAssistantPanelTitle: 'AI Assistant',
|
|
230
261
|
// aiAssistantPanelClose: 'Close AI Assistant',
|
package/locales/ukUA.js
CHANGED
|
@@ -56,6 +56,9 @@ const ukUAGrid = {
|
|
|
56
56
|
// Toolbar pivot button
|
|
57
57
|
// toolbarPivot: 'Pivot',
|
|
58
58
|
|
|
59
|
+
// Toolbar charts button
|
|
60
|
+
// toolbarCharts: 'Charts',
|
|
61
|
+
|
|
59
62
|
// Toolbar AI Assistant button
|
|
60
63
|
// toolbarAssistant: 'AI Assistant',
|
|
61
64
|
|
|
@@ -136,6 +139,7 @@ const ukUAGrid = {
|
|
|
136
139
|
columnMenuSortAsc: 'Сортувати за зростанням',
|
|
137
140
|
columnMenuSortDesc: 'Сортувати за спаданням',
|
|
138
141
|
// columnMenuManagePivot: 'Manage pivot',
|
|
142
|
+
// columnMenuManageCharts: 'Manage charts',
|
|
139
143
|
|
|
140
144
|
// Column header text
|
|
141
145
|
columnHeaderFiltersTooltipActive: count => getPluralForm(count, {
|
|
@@ -213,6 +217,7 @@ const ukUAGrid = {
|
|
|
213
217
|
rowReorderingHeaderName: 'Порядок рядків',
|
|
214
218
|
// Aggregation
|
|
215
219
|
aggregationMenuItemHeader: 'Агрегація',
|
|
220
|
+
// aggregationFunctionLabelNone: 'none',
|
|
216
221
|
aggregationFunctionLabelSum: 'сума',
|
|
217
222
|
aggregationFunctionLabelAvg: 'сер',
|
|
218
223
|
aggregationFunctionLabelMin: 'мін',
|
|
@@ -247,6 +252,32 @@ const ukUAGrid = {
|
|
|
247
252
|
// pivotYearColumnHeaderName: '(Year)',
|
|
248
253
|
// pivotQuarterColumnHeaderName: '(Quarter)',
|
|
249
254
|
|
|
255
|
+
// Charts configuration panel
|
|
256
|
+
// chartsNoCharts: 'There are no charts available',
|
|
257
|
+
// chartsChartNotSelected: 'Select a chart type to configure its options',
|
|
258
|
+
// chartsTabChart: 'Chart',
|
|
259
|
+
// chartsTabFields: 'Fields',
|
|
260
|
+
// chartsTabCustomize: 'Customize',
|
|
261
|
+
// chartsCloseButton: 'Close charts configuration',
|
|
262
|
+
// chartsSyncButtonLabel: 'Sync chart',
|
|
263
|
+
// chartsSearchPlaceholder: 'Search fields',
|
|
264
|
+
// chartsSearchLabel: 'Search fields',
|
|
265
|
+
// chartsSearchClear: 'Clear search',
|
|
266
|
+
// chartsNoFields: 'No fields',
|
|
267
|
+
// chartsFieldBlocked: 'This field cannot be added to any section',
|
|
268
|
+
// chartsCategories: 'Categories',
|
|
269
|
+
// chartsSeries: 'Series',
|
|
270
|
+
// chartsMenuAddToDimensions: (dimensionLabel: string) => `Add to ${dimensionLabel}`,
|
|
271
|
+
// chartsMenuAddToValues: (valuesLabel: string) => `Add to ${valuesLabel}`,
|
|
272
|
+
// chartsMenuMoveUp: 'Move up',
|
|
273
|
+
// chartsMenuMoveDown: 'Move down',
|
|
274
|
+
// chartsMenuMoveToTop: 'Move to top',
|
|
275
|
+
// chartsMenuMoveToBottom: 'Move to bottom',
|
|
276
|
+
// chartsMenuOptions: 'Field options',
|
|
277
|
+
// chartsMenuRemove: 'Remove',
|
|
278
|
+
// chartsDragToDimensions: (dimensionLabel: string) => `Drag here to use column as ${dimensionLabel}`,
|
|
279
|
+
// chartsDragToValues: (valuesLabel: string) => `Drag here to use column as ${valuesLabel}`,
|
|
280
|
+
|
|
250
281
|
// AI Assistant panel
|
|
251
282
|
// aiAssistantPanelTitle: 'AI Assistant',
|
|
252
283
|
// aiAssistantPanelClose: 'Close AI Assistant',
|
package/locales/urPK.js
CHANGED
|
@@ -41,6 +41,9 @@ const urPKGrid = {
|
|
|
41
41
|
// Toolbar pivot button
|
|
42
42
|
// toolbarPivot: 'Pivot',
|
|
43
43
|
|
|
44
|
+
// Toolbar charts button
|
|
45
|
+
// toolbarCharts: 'Charts',
|
|
46
|
+
|
|
44
47
|
// Toolbar AI Assistant button
|
|
45
48
|
// toolbarAssistant: 'AI Assistant',
|
|
46
49
|
|
|
@@ -122,6 +125,7 @@ const urPKGrid = {
|
|
|
122
125
|
columnMenuSortAsc: 'ترتیب صعودی',
|
|
123
126
|
columnMenuSortDesc: 'ترتیب نزولی',
|
|
124
127
|
// columnMenuManagePivot: 'Manage pivot',
|
|
128
|
+
// columnMenuManageCharts: 'Manage charts',
|
|
125
129
|
|
|
126
130
|
// Column header text
|
|
127
131
|
columnHeaderFiltersTooltipActive: count => count !== 1 ? `${count} فعال فلٹرز` : `${count} فلٹرز فعال`,
|
|
@@ -192,6 +196,7 @@ const urPKGrid = {
|
|
|
192
196
|
|
|
193
197
|
// Aggregation
|
|
194
198
|
aggregationMenuItemHeader: 'ایگریگیشن',
|
|
199
|
+
// aggregationFunctionLabelNone: 'none',
|
|
195
200
|
aggregationFunctionLabelSum: 'کل',
|
|
196
201
|
aggregationFunctionLabelAvg: 'اوسط',
|
|
197
202
|
aggregationFunctionLabelMin: 'کم از کم',
|
|
@@ -227,6 +232,32 @@ const urPKGrid = {
|
|
|
227
232
|
// pivotYearColumnHeaderName: '(Year)',
|
|
228
233
|
// pivotQuarterColumnHeaderName: '(Quarter)',
|
|
229
234
|
|
|
235
|
+
// Charts configuration panel
|
|
236
|
+
// chartsNoCharts: 'There are no charts available',
|
|
237
|
+
// chartsChartNotSelected: 'Select a chart type to configure its options',
|
|
238
|
+
// chartsTabChart: 'Chart',
|
|
239
|
+
// chartsTabFields: 'Fields',
|
|
240
|
+
// chartsTabCustomize: 'Customize',
|
|
241
|
+
// chartsCloseButton: 'Close charts configuration',
|
|
242
|
+
// chartsSyncButtonLabel: 'Sync chart',
|
|
243
|
+
// chartsSearchPlaceholder: 'Search fields',
|
|
244
|
+
// chartsSearchLabel: 'Search fields',
|
|
245
|
+
// chartsSearchClear: 'Clear search',
|
|
246
|
+
// chartsNoFields: 'No fields',
|
|
247
|
+
// chartsFieldBlocked: 'This field cannot be added to any section',
|
|
248
|
+
// chartsCategories: 'Categories',
|
|
249
|
+
// chartsSeries: 'Series',
|
|
250
|
+
// chartsMenuAddToDimensions: (dimensionLabel: string) => `Add to ${dimensionLabel}`,
|
|
251
|
+
// chartsMenuAddToValues: (valuesLabel: string) => `Add to ${valuesLabel}`,
|
|
252
|
+
// chartsMenuMoveUp: 'Move up',
|
|
253
|
+
// chartsMenuMoveDown: 'Move down',
|
|
254
|
+
// chartsMenuMoveToTop: 'Move to top',
|
|
255
|
+
// chartsMenuMoveToBottom: 'Move to bottom',
|
|
256
|
+
// chartsMenuOptions: 'Field options',
|
|
257
|
+
// chartsMenuRemove: 'Remove',
|
|
258
|
+
// chartsDragToDimensions: (dimensionLabel: string) => `Drag here to use column as ${dimensionLabel}`,
|
|
259
|
+
// chartsDragToValues: (valuesLabel: string) => `Drag here to use column as ${valuesLabel}`,
|
|
260
|
+
|
|
230
261
|
// AI Assistant panel
|
|
231
262
|
// aiAssistantPanelTitle: 'AI Assistant',
|
|
232
263
|
// aiAssistantPanelClose: 'Close AI Assistant',
|
package/locales/viVN.js
CHANGED
|
@@ -41,6 +41,9 @@ const viVNGrid = {
|
|
|
41
41
|
// Toolbar pivot button
|
|
42
42
|
// toolbarPivot: 'Pivot',
|
|
43
43
|
|
|
44
|
+
// Toolbar charts button
|
|
45
|
+
// toolbarCharts: 'Charts',
|
|
46
|
+
|
|
44
47
|
// Toolbar AI Assistant button
|
|
45
48
|
// toolbarAssistant: 'AI Assistant',
|
|
46
49
|
|
|
@@ -123,6 +126,7 @@ const viVNGrid = {
|
|
|
123
126
|
columnMenuSortAsc: 'Sắp xếp tăng dần',
|
|
124
127
|
columnMenuSortDesc: 'Sắp xếp giảm dần',
|
|
125
128
|
// columnMenuManagePivot: 'Manage pivot',
|
|
129
|
+
// columnMenuManageCharts: 'Manage charts',
|
|
126
130
|
|
|
127
131
|
// Column header text
|
|
128
132
|
columnHeaderFiltersTooltipActive: count => count > 1 ? `${count} bộ lọc hoạt động` : `${count} bộ lọc hoạt động`,
|
|
@@ -192,6 +196,7 @@ const viVNGrid = {
|
|
|
192
196
|
rowReorderingHeaderName: 'Sắp xếp hàng',
|
|
193
197
|
// Aggregation
|
|
194
198
|
aggregationMenuItemHeader: 'Tổng hợp',
|
|
199
|
+
// aggregationFunctionLabelNone: 'none',
|
|
195
200
|
aggregationFunctionLabelSum: 'Tổng',
|
|
196
201
|
aggregationFunctionLabelAvg: 'Trung bình',
|
|
197
202
|
aggregationFunctionLabelMin: 'Tối thiểu',
|
|
@@ -227,6 +232,32 @@ const viVNGrid = {
|
|
|
227
232
|
// pivotYearColumnHeaderName: '(Year)',
|
|
228
233
|
// pivotQuarterColumnHeaderName: '(Quarter)',
|
|
229
234
|
|
|
235
|
+
// Charts configuration panel
|
|
236
|
+
// chartsNoCharts: 'There are no charts available',
|
|
237
|
+
// chartsChartNotSelected: 'Select a chart type to configure its options',
|
|
238
|
+
// chartsTabChart: 'Chart',
|
|
239
|
+
// chartsTabFields: 'Fields',
|
|
240
|
+
// chartsTabCustomize: 'Customize',
|
|
241
|
+
// chartsCloseButton: 'Close charts configuration',
|
|
242
|
+
// chartsSyncButtonLabel: 'Sync chart',
|
|
243
|
+
// chartsSearchPlaceholder: 'Search fields',
|
|
244
|
+
// chartsSearchLabel: 'Search fields',
|
|
245
|
+
// chartsSearchClear: 'Clear search',
|
|
246
|
+
// chartsNoFields: 'No fields',
|
|
247
|
+
// chartsFieldBlocked: 'This field cannot be added to any section',
|
|
248
|
+
// chartsCategories: 'Categories',
|
|
249
|
+
// chartsSeries: 'Series',
|
|
250
|
+
// chartsMenuAddToDimensions: (dimensionLabel: string) => `Add to ${dimensionLabel}`,
|
|
251
|
+
// chartsMenuAddToValues: (valuesLabel: string) => `Add to ${valuesLabel}`,
|
|
252
|
+
// chartsMenuMoveUp: 'Move up',
|
|
253
|
+
// chartsMenuMoveDown: 'Move down',
|
|
254
|
+
// chartsMenuMoveToTop: 'Move to top',
|
|
255
|
+
// chartsMenuMoveToBottom: 'Move to bottom',
|
|
256
|
+
// chartsMenuOptions: 'Field options',
|
|
257
|
+
// chartsMenuRemove: 'Remove',
|
|
258
|
+
// chartsDragToDimensions: (dimensionLabel: string) => `Drag here to use column as ${dimensionLabel}`,
|
|
259
|
+
// chartsDragToValues: (valuesLabel: string) => `Drag here to use column as ${valuesLabel}`,
|
|
260
|
+
|
|
230
261
|
// AI Assistant panel
|
|
231
262
|
// aiAssistantPanelTitle: 'AI Assistant',
|
|
232
263
|
// aiAssistantPanelClose: 'Close AI Assistant',
|