@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/hrHR.js
CHANGED
|
@@ -49,6 +49,9 @@ const hrHRGrid = {
|
|
|
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 Asistent',
|
|
54
57
|
// Columns management text
|
|
@@ -128,6 +131,7 @@ const hrHRGrid = {
|
|
|
128
131
|
columnMenuSortAsc: 'Poredaj uzlazno',
|
|
129
132
|
columnMenuSortDesc: 'Poredaj silazno',
|
|
130
133
|
// columnMenuManagePivot: 'Manage pivot',
|
|
134
|
+
// columnMenuManageCharts: 'Manage charts',
|
|
131
135
|
|
|
132
136
|
// Column header text
|
|
133
137
|
columnHeaderFiltersTooltipActive: count => {
|
|
@@ -213,6 +217,7 @@ const hrHRGrid = {
|
|
|
213
217
|
rowReorderingHeaderName: 'Promjena redoslijeda',
|
|
214
218
|
// Aggregation
|
|
215
219
|
aggregationMenuItemHeader: 'Agregacija',
|
|
220
|
+
// aggregationFunctionLabelNone: 'none',
|
|
216
221
|
aggregationFunctionLabelSum: 'iznos',
|
|
217
222
|
aggregationFunctionLabelAvg: 'prosj',
|
|
218
223
|
aggregationFunctionLabelMin: 'min',
|
|
@@ -247,6 +252,32 @@ const hrHRGrid = {
|
|
|
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 Asistent',
|
|
252
283
|
// aiAssistantPanelClose: 'Close AI Assistant',
|
package/locales/huHU.js
CHANGED
|
@@ -41,6 +41,9 @@ const huHUGrid = {
|
|
|
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
|
|
|
@@ -121,6 +124,7 @@ const huHUGrid = {
|
|
|
121
124
|
columnMenuSortAsc: 'Növekvő sorrendbe',
|
|
122
125
|
columnMenuSortDesc: 'Csökkenő sorrendbe',
|
|
123
126
|
// columnMenuManagePivot: 'Manage pivot',
|
|
127
|
+
// columnMenuManageCharts: 'Manage charts',
|
|
124
128
|
|
|
125
129
|
// Column header text
|
|
126
130
|
columnHeaderFiltersTooltipActive: count => `${count} aktív szűrő`,
|
|
@@ -190,6 +194,7 @@ const huHUGrid = {
|
|
|
190
194
|
rowReorderingHeaderName: 'Sorok újrarendezése',
|
|
191
195
|
// Aggregation
|
|
192
196
|
aggregationMenuItemHeader: 'Összesítés',
|
|
197
|
+
// aggregationFunctionLabelNone: 'none',
|
|
193
198
|
aggregationFunctionLabelSum: 'Összeg',
|
|
194
199
|
aggregationFunctionLabelAvg: 'Átlag',
|
|
195
200
|
aggregationFunctionLabelMin: 'Minimum',
|
|
@@ -225,6 +230,32 @@ const huHUGrid = {
|
|
|
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/hyAM.js
CHANGED
|
@@ -49,6 +49,9 @@ const hyAMGrid = {
|
|
|
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
|
|
|
@@ -130,6 +133,7 @@ const hyAMGrid = {
|
|
|
130
133
|
columnMenuSortAsc: 'Աճման կարգով դասավորել',
|
|
131
134
|
columnMenuSortDesc: 'Նվազման կարգով դասավորել',
|
|
132
135
|
// columnMenuManagePivot: 'Manage pivot',
|
|
136
|
+
// columnMenuManageCharts: 'Manage charts',
|
|
133
137
|
|
|
134
138
|
// Column header text
|
|
135
139
|
columnHeaderFiltersTooltipActive: count => {
|
|
@@ -216,6 +220,7 @@ const hyAMGrid = {
|
|
|
216
220
|
rowReorderingHeaderName: 'Տողերի վերադասավորում',
|
|
217
221
|
// Aggregation
|
|
218
222
|
aggregationMenuItemHeader: 'Ագրեգացում',
|
|
223
|
+
// aggregationFunctionLabelNone: 'none',
|
|
219
224
|
aggregationFunctionLabelSum: 'գումար',
|
|
220
225
|
aggregationFunctionLabelAvg: 'միջին',
|
|
221
226
|
aggregationFunctionLabelMin: 'մինիմում',
|
|
@@ -251,6 +256,32 @@ const hyAMGrid = {
|
|
|
251
256
|
// pivotYearColumnHeaderName: '(Year)',
|
|
252
257
|
// pivotQuarterColumnHeaderName: '(Quarter)',
|
|
253
258
|
|
|
259
|
+
// Charts configuration panel
|
|
260
|
+
// chartsNoCharts: 'There are no charts available',
|
|
261
|
+
// chartsChartNotSelected: 'Select a chart type to configure its options',
|
|
262
|
+
// chartsTabChart: 'Chart',
|
|
263
|
+
// chartsTabFields: 'Fields',
|
|
264
|
+
// chartsTabCustomize: 'Customize',
|
|
265
|
+
// chartsCloseButton: 'Close charts configuration',
|
|
266
|
+
// chartsSyncButtonLabel: 'Sync chart',
|
|
267
|
+
// chartsSearchPlaceholder: 'Search fields',
|
|
268
|
+
// chartsSearchLabel: 'Search fields',
|
|
269
|
+
// chartsSearchClear: 'Clear search',
|
|
270
|
+
// chartsNoFields: 'No fields',
|
|
271
|
+
// chartsFieldBlocked: 'This field cannot be added to any section',
|
|
272
|
+
// chartsCategories: 'Categories',
|
|
273
|
+
// chartsSeries: 'Series',
|
|
274
|
+
// chartsMenuAddToDimensions: (dimensionLabel: string) => `Add to ${dimensionLabel}`,
|
|
275
|
+
// chartsMenuAddToValues: (valuesLabel: string) => `Add to ${valuesLabel}`,
|
|
276
|
+
// chartsMenuMoveUp: 'Move up',
|
|
277
|
+
// chartsMenuMoveDown: 'Move down',
|
|
278
|
+
// chartsMenuMoveToTop: 'Move to top',
|
|
279
|
+
// chartsMenuMoveToBottom: 'Move to bottom',
|
|
280
|
+
// chartsMenuOptions: 'Field options',
|
|
281
|
+
// chartsMenuRemove: 'Remove',
|
|
282
|
+
// chartsDragToDimensions: (dimensionLabel: string) => `Drag here to use column as ${dimensionLabel}`,
|
|
283
|
+
// chartsDragToValues: (valuesLabel: string) => `Drag here to use column as ${valuesLabel}`,
|
|
284
|
+
|
|
254
285
|
// AI Assistant panel
|
|
255
286
|
// aiAssistantPanelTitle: 'AI Assistant',
|
|
256
287
|
// aiAssistantPanelClose: 'Close AI Assistant',
|
package/locales/idID.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import { GridLocaleText } from "../models/api/gridLocaleTextApi.js";
|
|
2
2
|
import { Localization } from "../utils/getGridLocalization.js";
|
|
3
|
-
export declare const idIDGrid: GridLocaleText
|
|
3
|
+
export declare const idIDGrid: Partial<GridLocaleText>;
|
|
4
4
|
export declare const idID: Localization;
|
package/locales/idID.js
CHANGED
|
@@ -39,6 +39,9 @@ const idIDGrid = exports.idIDGrid = {
|
|
|
39
39
|
toolbarExportExcel: 'Unduh sebagai Excel',
|
|
40
40
|
// Toolbar pivot button
|
|
41
41
|
toolbarPivot: 'Pivot',
|
|
42
|
+
// Toolbar charts button
|
|
43
|
+
// toolbarCharts: 'Charts',
|
|
44
|
+
|
|
42
45
|
// Toolbar AI Assistant button
|
|
43
46
|
toolbarAssistant: 'Asisten AI',
|
|
44
47
|
// Columns management text
|
|
@@ -118,6 +121,8 @@ const idIDGrid = exports.idIDGrid = {
|
|
|
118
121
|
columnMenuSortAsc: 'Urutkan menaik',
|
|
119
122
|
columnMenuSortDesc: 'Urutkan menurun',
|
|
120
123
|
columnMenuManagePivot: 'Kelola pivot',
|
|
124
|
+
// columnMenuManageCharts: 'Manage charts',
|
|
125
|
+
|
|
121
126
|
// Column header text
|
|
122
127
|
columnHeaderFiltersTooltipActive: count => `${count} filter aktif`,
|
|
123
128
|
columnHeaderFiltersLabel: 'Tampilkan filter',
|
|
@@ -186,6 +191,7 @@ const idIDGrid = exports.idIDGrid = {
|
|
|
186
191
|
rowReorderingHeaderName: 'Pengurutan ulang baris',
|
|
187
192
|
// Aggregation
|
|
188
193
|
aggregationMenuItemHeader: 'Agregasi',
|
|
194
|
+
// aggregationFunctionLabelNone: 'none',
|
|
189
195
|
aggregationFunctionLabelSum: 'jumlah',
|
|
190
196
|
aggregationFunctionLabelAvg: 'rata-rata',
|
|
191
197
|
aggregationFunctionLabelMin: 'min',
|
|
@@ -219,6 +225,32 @@ const idIDGrid = exports.idIDGrid = {
|
|
|
219
225
|
pivotDragToValues: 'Seret ke sini untuk membuat nilai',
|
|
220
226
|
pivotYearColumnHeaderName: '(Tahun)',
|
|
221
227
|
pivotQuarterColumnHeaderName: '(Kuartal)',
|
|
228
|
+
// Charts configuration panel
|
|
229
|
+
// chartsNoCharts: 'There are no charts available',
|
|
230
|
+
// chartsChartNotSelected: 'Select a chart type to configure its options',
|
|
231
|
+
// chartsTabChart: 'Chart',
|
|
232
|
+
// chartsTabFields: 'Fields',
|
|
233
|
+
// chartsTabCustomize: 'Customize',
|
|
234
|
+
// chartsCloseButton: 'Close charts configuration',
|
|
235
|
+
// chartsSyncButtonLabel: 'Sync chart',
|
|
236
|
+
// chartsSearchPlaceholder: 'Search fields',
|
|
237
|
+
// chartsSearchLabel: 'Search fields',
|
|
238
|
+
// chartsSearchClear: 'Clear search',
|
|
239
|
+
// chartsNoFields: 'No fields',
|
|
240
|
+
// chartsFieldBlocked: 'This field cannot be added to any section',
|
|
241
|
+
// chartsCategories: 'Categories',
|
|
242
|
+
// chartsSeries: 'Series',
|
|
243
|
+
// chartsMenuAddToDimensions: (dimensionLabel: string) => `Add to ${dimensionLabel}`,
|
|
244
|
+
// chartsMenuAddToValues: (valuesLabel: string) => `Add to ${valuesLabel}`,
|
|
245
|
+
// chartsMenuMoveUp: 'Move up',
|
|
246
|
+
// chartsMenuMoveDown: 'Move down',
|
|
247
|
+
// chartsMenuMoveToTop: 'Move to top',
|
|
248
|
+
// chartsMenuMoveToBottom: 'Move to bottom',
|
|
249
|
+
// chartsMenuOptions: 'Field options',
|
|
250
|
+
// chartsMenuRemove: 'Remove',
|
|
251
|
+
// chartsDragToDimensions: (dimensionLabel: string) => `Drag here to use column as ${dimensionLabel}`,
|
|
252
|
+
// chartsDragToValues: (valuesLabel: string) => `Drag here to use column as ${valuesLabel}`,
|
|
253
|
+
|
|
222
254
|
// AI Assistant panel
|
|
223
255
|
aiAssistantPanelTitle: 'Asisten AI',
|
|
224
256
|
aiAssistantPanelClose: 'Tutup Asisten AI',
|
package/locales/isIS.js
CHANGED
|
@@ -41,6 +41,9 @@ const isISGrid = {
|
|
|
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 isISGrid = {
|
|
|
123
126
|
columnMenuSortAsc: 'Raða hækkandi',
|
|
124
127
|
columnMenuSortDesc: 'Raða lækkandi',
|
|
125
128
|
// columnMenuManagePivot: 'Manage pivot',
|
|
129
|
+
// columnMenuManageCharts: 'Manage charts',
|
|
126
130
|
|
|
127
131
|
// Column header text
|
|
128
132
|
columnHeaderFiltersTooltipActive: count => count !== 1 ? `${count} virkar síur` : `Ein virk sía`,
|
|
@@ -192,6 +196,7 @@ const isISGrid = {
|
|
|
192
196
|
rowReorderingHeaderName: 'Endurröðun raða',
|
|
193
197
|
// Aggregation
|
|
194
198
|
aggregationMenuItemHeader: 'Samsafn',
|
|
199
|
+
// aggregationFunctionLabelNone: 'none',
|
|
195
200
|
aggregationFunctionLabelSum: 'sum',
|
|
196
201
|
aggregationFunctionLabelAvg: 'avg',
|
|
197
202
|
aggregationFunctionLabelMin: 'min',
|
|
@@ -227,6 +232,32 @@ const isISGrid = {
|
|
|
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/itIT.js
CHANGED
|
@@ -41,6 +41,9 @@ const itITGrid = {
|
|
|
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 itITGrid = {
|
|
|
123
126
|
columnMenuSortAsc: 'Ordinamento crescente',
|
|
124
127
|
columnMenuSortDesc: 'Ordinamento decrescente',
|
|
125
128
|
// columnMenuManagePivot: 'Manage pivot',
|
|
129
|
+
// columnMenuManageCharts: 'Manage charts',
|
|
126
130
|
|
|
127
131
|
// Column header text
|
|
128
132
|
columnHeaderFiltersTooltipActive: count => count > 1 ? `${count} filtri attivi` : `${count} filtro attivo`,
|
|
@@ -192,6 +196,7 @@ const itITGrid = {
|
|
|
192
196
|
rowReorderingHeaderName: 'Riordinamento righe',
|
|
193
197
|
// Aggregation
|
|
194
198
|
aggregationMenuItemHeader: 'aggregazione',
|
|
199
|
+
// aggregationFunctionLabelNone: 'none',
|
|
195
200
|
aggregationFunctionLabelSum: 'somma',
|
|
196
201
|
aggregationFunctionLabelAvg: 'media',
|
|
197
202
|
aggregationFunctionLabelMin: 'minimo',
|
|
@@ -227,6 +232,32 @@ const itITGrid = {
|
|
|
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/jaJP.js
CHANGED
|
@@ -41,6 +41,9 @@ const jaJPGrid = {
|
|
|
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 jaJPGrid = {
|
|
|
123
126
|
columnMenuSortAsc: '昇順ソート',
|
|
124
127
|
columnMenuSortDesc: '降順ソート',
|
|
125
128
|
// columnMenuManagePivot: 'Manage pivot',
|
|
129
|
+
// columnMenuManageCharts: 'Manage charts',
|
|
126
130
|
|
|
127
131
|
// Column header text
|
|
128
132
|
columnHeaderFiltersTooltipActive: count => `${count}件のフィルターを適用中`,
|
|
@@ -192,6 +196,7 @@ const jaJPGrid = {
|
|
|
192
196
|
rowReorderingHeaderName: '行並び替え',
|
|
193
197
|
// Aggregation
|
|
194
198
|
aggregationMenuItemHeader: '合計',
|
|
199
|
+
// aggregationFunctionLabelNone: 'none',
|
|
195
200
|
aggregationFunctionLabelSum: '和',
|
|
196
201
|
aggregationFunctionLabelAvg: '平均',
|
|
197
202
|
aggregationFunctionLabelMin: '最小値',
|
|
@@ -227,6 +232,32 @@ const jaJPGrid = {
|
|
|
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/koKR.js
CHANGED
|
@@ -39,6 +39,9 @@ const koKRGrid = {
|
|
|
39
39
|
toolbarExportExcel: 'Excel로 내보내기',
|
|
40
40
|
// Toolbar pivot button
|
|
41
41
|
toolbarPivot: '피벗',
|
|
42
|
+
// Toolbar charts button
|
|
43
|
+
// toolbarCharts: 'Charts',
|
|
44
|
+
|
|
42
45
|
// Toolbar AI Assistant button
|
|
43
46
|
toolbarAssistant: 'AI 어시스턴트',
|
|
44
47
|
// Columns management text
|
|
@@ -118,6 +121,7 @@ const koKRGrid = {
|
|
|
118
121
|
columnMenuSortAsc: '오름차순 정렬',
|
|
119
122
|
columnMenuSortDesc: '내림차순 정렬',
|
|
120
123
|
// columnMenuManagePivot: 'Manage pivot',
|
|
124
|
+
// columnMenuManageCharts: 'Manage charts',
|
|
121
125
|
|
|
122
126
|
// Column header text
|
|
123
127
|
columnHeaderFiltersTooltipActive: count => `${count}건의 필터를 적용중`,
|
|
@@ -187,6 +191,7 @@ const koKRGrid = {
|
|
|
187
191
|
rowReorderingHeaderName: '행 재배치',
|
|
188
192
|
// Aggregation
|
|
189
193
|
aggregationMenuItemHeader: '집계',
|
|
194
|
+
// aggregationFunctionLabelNone: 'none',
|
|
190
195
|
aggregationFunctionLabelSum: '합',
|
|
191
196
|
aggregationFunctionLabelAvg: '평균',
|
|
192
197
|
aggregationFunctionLabelMin: '최소값',
|
|
@@ -220,6 +225,32 @@ const koKRGrid = {
|
|
|
220
225
|
pivotDragToValues: '값 생성',
|
|
221
226
|
pivotYearColumnHeaderName: '(년)',
|
|
222
227
|
pivotQuarterColumnHeaderName: '(분기)',
|
|
228
|
+
// Charts configuration panel
|
|
229
|
+
// chartsNoCharts: 'There are no charts available',
|
|
230
|
+
// chartsChartNotSelected: 'Select a chart type to configure its options',
|
|
231
|
+
// chartsTabChart: 'Chart',
|
|
232
|
+
// chartsTabFields: 'Fields',
|
|
233
|
+
// chartsTabCustomize: 'Customize',
|
|
234
|
+
// chartsCloseButton: 'Close charts configuration',
|
|
235
|
+
// chartsSyncButtonLabel: 'Sync chart',
|
|
236
|
+
// chartsSearchPlaceholder: 'Search fields',
|
|
237
|
+
// chartsSearchLabel: 'Search fields',
|
|
238
|
+
// chartsSearchClear: 'Clear search',
|
|
239
|
+
// chartsNoFields: 'No fields',
|
|
240
|
+
// chartsFieldBlocked: 'This field cannot be added to any section',
|
|
241
|
+
// chartsCategories: 'Categories',
|
|
242
|
+
// chartsSeries: 'Series',
|
|
243
|
+
// chartsMenuAddToDimensions: (dimensionLabel: string) => `Add to ${dimensionLabel}`,
|
|
244
|
+
// chartsMenuAddToValues: (valuesLabel: string) => `Add to ${valuesLabel}`,
|
|
245
|
+
// chartsMenuMoveUp: 'Move up',
|
|
246
|
+
// chartsMenuMoveDown: 'Move down',
|
|
247
|
+
// chartsMenuMoveToTop: 'Move to top',
|
|
248
|
+
// chartsMenuMoveToBottom: 'Move to bottom',
|
|
249
|
+
// chartsMenuOptions: 'Field options',
|
|
250
|
+
// chartsMenuRemove: 'Remove',
|
|
251
|
+
// chartsDragToDimensions: (dimensionLabel: string) => `Drag here to use column as ${dimensionLabel}`,
|
|
252
|
+
// chartsDragToValues: (valuesLabel: string) => `Drag here to use column as ${valuesLabel}`,
|
|
253
|
+
|
|
223
254
|
// AI Assistant panel
|
|
224
255
|
aiAssistantPanelTitle: 'AI 어시스턴트',
|
|
225
256
|
aiAssistantPanelClose: 'AI 어시스턴트 닫기',
|
package/locales/nbNO.js
CHANGED
|
@@ -41,6 +41,9 @@ const nbNOGrid = {
|
|
|
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
|
|
|
@@ -121,6 +124,7 @@ const nbNOGrid = {
|
|
|
121
124
|
columnMenuSortAsc: 'Sorter ØKENDE',
|
|
122
125
|
columnMenuSortDesc: 'Sorter SYNKENDE',
|
|
123
126
|
// columnMenuManagePivot: 'Manage pivot',
|
|
127
|
+
// columnMenuManageCharts: 'Manage charts',
|
|
124
128
|
|
|
125
129
|
// Column header text
|
|
126
130
|
columnHeaderFiltersTooltipActive: count => count !== 1 ? `${count} aktive filter` : `${count} aktivt filter`,
|
|
@@ -190,6 +194,7 @@ const nbNOGrid = {
|
|
|
190
194
|
rowReorderingHeaderName: 'Radreorganisering',
|
|
191
195
|
// Aggregation
|
|
192
196
|
aggregationMenuItemHeader: 'Aggregering',
|
|
197
|
+
// aggregationFunctionLabelNone: 'none',
|
|
193
198
|
aggregationFunctionLabelSum: 'sum',
|
|
194
199
|
aggregationFunctionLabelAvg: 'snitt',
|
|
195
200
|
aggregationFunctionLabelMin: 'min',
|
|
@@ -225,6 +230,32 @@ const nbNOGrid = {
|
|
|
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/nlNL.js
CHANGED
|
@@ -41,6 +41,9 @@ const nlNLGrid = {
|
|
|
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 nlNLGrid = {
|
|
|
122
125
|
columnMenuSortAsc: 'Oplopend sorteren',
|
|
123
126
|
columnMenuSortDesc: 'Aflopend sorteren',
|
|
124
127
|
// columnMenuManagePivot: 'Manage pivot',
|
|
128
|
+
// columnMenuManageCharts: 'Manage charts',
|
|
125
129
|
|
|
126
130
|
// Column header text
|
|
127
131
|
columnHeaderFiltersTooltipActive: count => count > 1 ? `${count} actieve filters` : `${count} filter actief`,
|
|
@@ -191,6 +195,7 @@ const nlNLGrid = {
|
|
|
191
195
|
rowReorderingHeaderName: 'Rijen hersorteren',
|
|
192
196
|
// Aggregation
|
|
193
197
|
aggregationMenuItemHeader: 'Aggregatie',
|
|
198
|
+
// aggregationFunctionLabelNone: 'none',
|
|
194
199
|
aggregationFunctionLabelSum: 'som',
|
|
195
200
|
aggregationFunctionLabelAvg: 'gem',
|
|
196
201
|
aggregationFunctionLabelMin: 'min',
|
|
@@ -226,6 +231,32 @@ const nlNLGrid = {
|
|
|
226
231
|
// pivotYearColumnHeaderName: '(Year)',
|
|
227
232
|
// pivotQuarterColumnHeaderName: '(Quarter)',
|
|
228
233
|
|
|
234
|
+
// Charts configuration panel
|
|
235
|
+
// chartsNoCharts: 'There are no charts available',
|
|
236
|
+
// chartsChartNotSelected: 'Select a chart type to configure its options',
|
|
237
|
+
// chartsTabChart: 'Chart',
|
|
238
|
+
// chartsTabFields: 'Fields',
|
|
239
|
+
// chartsTabCustomize: 'Customize',
|
|
240
|
+
// chartsCloseButton: 'Close charts configuration',
|
|
241
|
+
// chartsSyncButtonLabel: 'Sync chart',
|
|
242
|
+
// chartsSearchPlaceholder: 'Search fields',
|
|
243
|
+
// chartsSearchLabel: 'Search fields',
|
|
244
|
+
// chartsSearchClear: 'Clear search',
|
|
245
|
+
// chartsNoFields: 'No fields',
|
|
246
|
+
// chartsFieldBlocked: 'This field cannot be added to any section',
|
|
247
|
+
// chartsCategories: 'Categories',
|
|
248
|
+
// chartsSeries: 'Series',
|
|
249
|
+
// chartsMenuAddToDimensions: (dimensionLabel: string) => `Add to ${dimensionLabel}`,
|
|
250
|
+
// chartsMenuAddToValues: (valuesLabel: string) => `Add to ${valuesLabel}`,
|
|
251
|
+
// chartsMenuMoveUp: 'Move up',
|
|
252
|
+
// chartsMenuMoveDown: 'Move down',
|
|
253
|
+
// chartsMenuMoveToTop: 'Move to top',
|
|
254
|
+
// chartsMenuMoveToBottom: 'Move to bottom',
|
|
255
|
+
// chartsMenuOptions: 'Field options',
|
|
256
|
+
// chartsMenuRemove: 'Remove',
|
|
257
|
+
// chartsDragToDimensions: (dimensionLabel: string) => `Drag here to use column as ${dimensionLabel}`,
|
|
258
|
+
// chartsDragToValues: (valuesLabel: string) => `Drag here to use column as ${valuesLabel}`,
|
|
259
|
+
|
|
229
260
|
// AI Assistant panel
|
|
230
261
|
// aiAssistantPanelTitle: 'AI Assistant',
|
|
231
262
|
// aiAssistantPanelClose: 'Close AI Assistant',
|
package/locales/nnNO.js
CHANGED
|
@@ -39,6 +39,9 @@ const nnNOGrid = {
|
|
|
39
39
|
toolbarExportExcel: 'Last ned som Excel',
|
|
40
40
|
// Toolbar pivot button
|
|
41
41
|
toolbarPivot: 'Pivot',
|
|
42
|
+
// Toolbar charts button
|
|
43
|
+
// toolbarCharts: 'Charts',
|
|
44
|
+
|
|
42
45
|
// Toolbar AI Assistant button
|
|
43
46
|
toolbarAssistant: 'AI Assistent',
|
|
44
47
|
// Columns management text
|
|
@@ -118,6 +121,8 @@ const nnNOGrid = {
|
|
|
118
121
|
columnMenuSortAsc: 'Sorter AUKANDE',
|
|
119
122
|
columnMenuSortDesc: 'Sorter SYNKANDE',
|
|
120
123
|
columnMenuManagePivot: 'Behandle pivot',
|
|
124
|
+
// columnMenuManageCharts: 'Manage charts',
|
|
125
|
+
|
|
121
126
|
// Column header text
|
|
122
127
|
columnHeaderFiltersTooltipActive: count => count !== 1 ? `${count} aktive filter` : `${count} aktivt filter`,
|
|
123
128
|
columnHeaderFiltersLabel: 'Vis filter',
|
|
@@ -186,6 +191,7 @@ const nnNOGrid = {
|
|
|
186
191
|
rowReorderingHeaderName: 'Radreorganisering',
|
|
187
192
|
// Aggregation
|
|
188
193
|
aggregationMenuItemHeader: 'Aggregering',
|
|
194
|
+
// aggregationFunctionLabelNone: 'none',
|
|
189
195
|
aggregationFunctionLabelSum: 'sum',
|
|
190
196
|
aggregationFunctionLabelAvg: 'snitt',
|
|
191
197
|
aggregationFunctionLabelMin: 'min',
|
|
@@ -219,6 +225,32 @@ const nnNOGrid = {
|
|
|
219
225
|
pivotDragToValues: 'Dra hit for å opprette verdiar',
|
|
220
226
|
pivotYearColumnHeaderName: '(År)',
|
|
221
227
|
pivotQuarterColumnHeaderName: '(Kvartal)',
|
|
228
|
+
// Charts configuration panel
|
|
229
|
+
// chartsNoCharts: 'There are no charts available',
|
|
230
|
+
// chartsChartNotSelected: 'Select a chart type to configure its options',
|
|
231
|
+
// chartsTabChart: 'Chart',
|
|
232
|
+
// chartsTabFields: 'Fields',
|
|
233
|
+
// chartsTabCustomize: 'Customize',
|
|
234
|
+
// chartsCloseButton: 'Close charts configuration',
|
|
235
|
+
// chartsSyncButtonLabel: 'Sync chart',
|
|
236
|
+
// chartsSearchPlaceholder: 'Search fields',
|
|
237
|
+
// chartsSearchLabel: 'Search fields',
|
|
238
|
+
// chartsSearchClear: 'Clear search',
|
|
239
|
+
// chartsNoFields: 'No fields',
|
|
240
|
+
// chartsFieldBlocked: 'This field cannot be added to any section',
|
|
241
|
+
// chartsCategories: 'Categories',
|
|
242
|
+
// chartsSeries: 'Series',
|
|
243
|
+
// chartsMenuAddToDimensions: (dimensionLabel: string) => `Add to ${dimensionLabel}`,
|
|
244
|
+
// chartsMenuAddToValues: (valuesLabel: string) => `Add to ${valuesLabel}`,
|
|
245
|
+
// chartsMenuMoveUp: 'Move up',
|
|
246
|
+
// chartsMenuMoveDown: 'Move down',
|
|
247
|
+
// chartsMenuMoveToTop: 'Move to top',
|
|
248
|
+
// chartsMenuMoveToBottom: 'Move to bottom',
|
|
249
|
+
// chartsMenuOptions: 'Field options',
|
|
250
|
+
// chartsMenuRemove: 'Remove',
|
|
251
|
+
// chartsDragToDimensions: (dimensionLabel: string) => `Drag here to use column as ${dimensionLabel}`,
|
|
252
|
+
// chartsDragToValues: (valuesLabel: string) => `Drag here to use column as ${valuesLabel}`,
|
|
253
|
+
|
|
222
254
|
// AI Assistant panel
|
|
223
255
|
aiAssistantPanelTitle: 'AI Assistent',
|
|
224
256
|
aiAssistantPanelClose: 'Lukk AI Assistent',
|