@mui/x-data-grid 8.0.0-alpha.0 → 8.0.0-alpha.2
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 +651 -6
- package/DataGrid/DataGrid.js +9 -9
- package/README.md +2 -2
- package/components/GridLoadingOverlay.d.ts +2 -2
- package/components/GridLoadingOverlay.js +4 -4
- package/components/GridPagination.js +2 -1
- package/components/base/GridOverlays.d.ts +4 -3
- package/components/base/GridOverlays.js +2 -24
- package/components/base/index.d.ts +0 -1
- package/components/base/index.js +1 -2
- package/components/cell/GridCell.js +10 -10
- package/components/columnSelection/GridCellCheckboxRenderer.js +2 -3
- package/components/columnSelection/GridHeaderCheckbox.js +2 -3
- package/components/columnsManagement/GridColumnsManagement.d.ts +2 -0
- package/components/columnsManagement/GridColumnsManagement.js +53 -6
- package/components/toolbar/GridToolbarColumnsButton.js +3 -4
- package/components/toolbar/GridToolbarDensitySelector.js +3 -4
- package/components/toolbar/GridToolbarExportContainer.js +3 -4
- package/components/toolbar/GridToolbarFilterButton.d.ts +2 -0
- package/components/toolbar/GridToolbarFilterButton.js +7 -6
- package/components/toolbar/GridToolbarQuickFilter.js +1 -0
- package/components/virtualization/GridVirtualScroller.js +5 -3
- package/constants/dataGridPropsDefaultValues.js +2 -3
- package/constants/gridClasses.d.ts +24 -0
- package/constants/gridClasses.js +1 -1
- package/constants/localeTextConstants.js +11 -0
- package/hooks/features/columnHeaders/useGridColumnHeaders.js +2 -2
- package/hooks/features/dimensions/gridDimensionsApi.d.ts +0 -4
- package/hooks/features/dimensions/useGridDimensions.js +3 -19
- package/hooks/features/index.d.ts +1 -0
- package/hooks/features/index.js +1 -0
- package/hooks/features/listView/gridListViewSelectors.d.ts +3 -1
- package/hooks/features/listView/gridListViewSelectors.js +3 -1
- package/hooks/features/listView/index.d.ts +1 -0
- package/hooks/features/listView/index.js +1 -0
- package/hooks/features/overlays/useGridOverlays.d.ts +7 -4
- package/hooks/features/overlays/useGridOverlays.js +19 -1
- package/hooks/features/rowSelection/useGridRowSelection.js +0 -9
- package/hooks/features/rowSelection/utils.js +2 -2
- package/hooks/features/virtualization/useGridVirtualScroller.d.ts +1 -1
- package/hooks/features/virtualization/useGridVirtualScroller.js +55 -15
- package/index.js +1 -1
- package/internals/index.d.ts +1 -0
- package/internals/index.js +1 -0
- package/joy/joySlots.js +7 -2
- package/locales/arSD.js +12 -0
- package/locales/beBY.js +12 -0
- package/locales/bgBG.js +13 -0
- package/locales/csCZ.js +13 -0
- package/locales/daDK.js +13 -0
- package/locales/deDE.js +11 -0
- package/locales/elGR.js +12 -0
- package/locales/esES.js +15 -4
- package/locales/faIR.js +13 -0
- package/locales/fiFI.js +13 -0
- package/locales/frFR.js +13 -0
- package/locales/heIL.js +13 -0
- package/locales/hrHR.js +13 -0
- package/locales/huHU.js +13 -0
- package/locales/isIS.js +12 -0
- package/locales/itIT.js +13 -0
- package/locales/jaJP.js +13 -0
- package/locales/koKR.js +12 -0
- package/locales/nbNO.js +13 -0
- package/locales/nlNL.js +13 -0
- package/locales/nnNO.js +13 -0
- package/locales/plPL.js +13 -0
- package/locales/ptBR.js +11 -0
- package/locales/ptPT.js +11 -0
- package/locales/roRO.js +12 -0
- package/locales/ruRU.js +13 -0
- package/locales/skSK.js +12 -0
- package/locales/svSE.js +17 -5
- package/locales/trTR.js +13 -0
- package/locales/ukUA.js +12 -0
- package/locales/urPK.js +12 -0
- package/locales/viVN.js +13 -0
- package/locales/zhCN.js +15 -4
- package/locales/zhHK.js +12 -0
- package/locales/zhTW.js +12 -0
- package/models/api/gridCoreApi.d.ts +1 -1
- package/models/api/gridLocaleTextApi.d.ts +10 -0
- package/models/colDef/gridColDef.d.ts +28 -24
- package/models/gridDataSource.d.ts +12 -12
- package/models/props/DataGridProps.d.ts +9 -9
- package/modern/DataGrid/DataGrid.js +9 -9
- package/modern/components/GridLoadingOverlay.js +4 -4
- package/modern/components/GridPagination.js +2 -1
- package/modern/components/base/GridOverlays.js +2 -24
- package/modern/components/base/index.js +1 -2
- package/modern/components/cell/GridCell.js +10 -10
- package/modern/components/columnSelection/GridCellCheckboxRenderer.js +2 -3
- package/modern/components/columnSelection/GridHeaderCheckbox.js +2 -3
- package/modern/components/columnsManagement/GridColumnsManagement.js +53 -6
- package/modern/components/toolbar/GridToolbarColumnsButton.js +3 -4
- package/modern/components/toolbar/GridToolbarDensitySelector.js +3 -4
- package/modern/components/toolbar/GridToolbarExportContainer.js +3 -4
- package/modern/components/toolbar/GridToolbarFilterButton.js +7 -6
- package/modern/components/toolbar/GridToolbarQuickFilter.js +1 -0
- package/modern/components/virtualization/GridVirtualScroller.js +5 -3
- package/modern/constants/dataGridPropsDefaultValues.js +2 -3
- package/modern/constants/gridClasses.js +1 -1
- package/modern/constants/localeTextConstants.js +11 -0
- package/modern/hooks/features/columnHeaders/useGridColumnHeaders.js +2 -2
- package/modern/hooks/features/dimensions/useGridDimensions.js +3 -19
- package/modern/hooks/features/index.js +1 -0
- package/modern/hooks/features/listView/gridListViewSelectors.js +3 -1
- package/modern/hooks/features/listView/index.js +1 -0
- package/modern/hooks/features/overlays/useGridOverlays.js +19 -1
- package/modern/hooks/features/rowSelection/useGridRowSelection.js +0 -9
- package/modern/hooks/features/rowSelection/utils.js +2 -2
- package/modern/hooks/features/virtualization/useGridVirtualScroller.js +55 -15
- package/modern/index.js +1 -1
- package/modern/internals/index.js +1 -0
- package/modern/joy/joySlots.js +7 -2
- package/modern/locales/arSD.js +12 -0
- package/modern/locales/beBY.js +12 -0
- package/modern/locales/bgBG.js +13 -0
- package/modern/locales/csCZ.js +13 -0
- package/modern/locales/daDK.js +13 -0
- package/modern/locales/deDE.js +11 -0
- package/modern/locales/elGR.js +12 -0
- package/modern/locales/esES.js +15 -4
- package/modern/locales/faIR.js +13 -0
- package/modern/locales/fiFI.js +13 -0
- package/modern/locales/frFR.js +13 -0
- package/modern/locales/heIL.js +13 -0
- package/modern/locales/hrHR.js +13 -0
- package/modern/locales/huHU.js +13 -0
- package/modern/locales/isIS.js +12 -0
- package/modern/locales/itIT.js +13 -0
- package/modern/locales/jaJP.js +13 -0
- package/modern/locales/koKR.js +12 -0
- package/modern/locales/nbNO.js +13 -0
- package/modern/locales/nlNL.js +13 -0
- package/modern/locales/nnNO.js +13 -0
- package/modern/locales/plPL.js +13 -0
- package/modern/locales/ptBR.js +11 -0
- package/modern/locales/ptPT.js +11 -0
- package/modern/locales/roRO.js +12 -0
- package/modern/locales/ruRU.js +13 -0
- package/modern/locales/skSK.js +12 -0
- package/modern/locales/svSE.js +17 -5
- package/modern/locales/trTR.js +13 -0
- package/modern/locales/ukUA.js +12 -0
- package/modern/locales/urPK.js +12 -0
- package/modern/locales/viVN.js +13 -0
- package/modern/locales/zhCN.js +15 -4
- package/modern/locales/zhHK.js +12 -0
- package/modern/locales/zhTW.js +12 -0
- package/node/DataGrid/DataGrid.js +9 -9
- package/node/components/GridLoadingOverlay.js +4 -4
- package/node/components/GridPagination.js +2 -1
- package/node/components/base/GridOverlays.js +2 -24
- package/node/components/base/index.js +0 -11
- package/node/components/cell/GridCell.js +10 -10
- package/node/components/columnSelection/GridCellCheckboxRenderer.js +2 -3
- package/node/components/columnSelection/GridHeaderCheckbox.js +2 -3
- package/node/components/columnsManagement/GridColumnsManagement.js +53 -6
- package/node/components/toolbar/GridToolbarColumnsButton.js +3 -4
- package/node/components/toolbar/GridToolbarDensitySelector.js +3 -4
- package/node/components/toolbar/GridToolbarExportContainer.js +3 -4
- package/node/components/toolbar/GridToolbarFilterButton.js +7 -6
- package/node/components/toolbar/GridToolbarQuickFilter.js +1 -0
- package/node/components/virtualization/GridVirtualScroller.js +5 -3
- package/node/constants/dataGridPropsDefaultValues.js +2 -3
- package/node/constants/gridClasses.js +1 -1
- package/node/constants/localeTextConstants.js +11 -0
- package/node/hooks/features/columnHeaders/useGridColumnHeaders.js +2 -2
- package/node/hooks/features/dimensions/useGridDimensions.js +2 -18
- package/node/hooks/features/index.js +11 -0
- package/node/hooks/features/listView/gridListViewSelectors.js +3 -1
- package/node/hooks/features/listView/index.js +16 -0
- package/node/hooks/features/overlays/useGridOverlays.js +21 -1
- package/node/hooks/features/rowSelection/useGridRowSelection.js +0 -9
- package/node/hooks/features/rowSelection/utils.js +2 -2
- package/node/hooks/features/virtualization/useGridVirtualScroller.js +55 -15
- package/node/index.js +1 -1
- package/node/internals/index.js +9 -2
- package/node/joy/joySlots.js +7 -2
- package/node/locales/arSD.js +12 -0
- package/node/locales/beBY.js +12 -0
- package/node/locales/bgBG.js +13 -0
- package/node/locales/csCZ.js +13 -0
- package/node/locales/daDK.js +13 -0
- package/node/locales/deDE.js +11 -0
- package/node/locales/elGR.js +12 -0
- package/node/locales/esES.js +15 -4
- package/node/locales/faIR.js +13 -0
- package/node/locales/fiFI.js +13 -0
- package/node/locales/frFR.js +13 -0
- package/node/locales/heIL.js +13 -0
- package/node/locales/hrHR.js +13 -0
- package/node/locales/huHU.js +13 -0
- package/node/locales/isIS.js +12 -0
- package/node/locales/itIT.js +13 -0
- package/node/locales/jaJP.js +13 -0
- package/node/locales/koKR.js +12 -0
- package/node/locales/nbNO.js +13 -0
- package/node/locales/nlNL.js +13 -0
- package/node/locales/nnNO.js +13 -0
- package/node/locales/plPL.js +13 -0
- package/node/locales/ptBR.js +11 -0
- package/node/locales/ptPT.js +11 -0
- package/node/locales/roRO.js +12 -0
- package/node/locales/ruRU.js +13 -0
- package/node/locales/skSK.js +12 -0
- package/node/locales/svSE.js +17 -5
- package/node/locales/trTR.js +13 -0
- package/node/locales/ukUA.js +12 -0
- package/node/locales/urPK.js +12 -0
- package/node/locales/viVN.js +13 -0
- package/node/locales/zhCN.js +15 -4
- package/node/locales/zhHK.js +12 -0
- package/node/locales/zhTW.js +12 -0
- package/package.json +4 -4
|
@@ -5,6 +5,7 @@ export { GridHeaders } from "../components/GridHeaders.js";
|
|
|
5
5
|
export { GridBaseColumnHeaders } from "../components/columnHeaders/GridBaseColumnHeaders.js";
|
|
6
6
|
export { DATA_GRID_DEFAULT_SLOTS_COMPONENTS } from "../constants/defaultGridSlotsComponents.js";
|
|
7
7
|
export { getGridFilter } from "../components/panel/filterPanel/GridFilterPanel.js";
|
|
8
|
+
export { getValueOptions } from "../components/panel/filterPanel/filterPanelUtils.js";
|
|
8
9
|
export { useGridRegisterPipeProcessor } from "../hooks/core/pipeProcessing/index.js";
|
|
9
10
|
export { useGridRegisterStrategyProcessor, GRID_DEFAULT_STRATEGY } from "../hooks/core/strategyProcessing/index.js";
|
|
10
11
|
export { useGridInitialization } from "../hooks/core/useGridInitialization.js";
|
package/modern/joy/joySlots.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import _extends from "@babel/runtime/helpers/esm/extends";
|
|
2
2
|
import _objectWithoutPropertiesLoose from "@babel/runtime/helpers/esm/objectWithoutPropertiesLoose";
|
|
3
|
-
const _excluded = ["slotProps", "variant", "color", "sx"],
|
|
3
|
+
const _excluded = ["slotProps", "variant", "color", "sx", "anchorOrigin"],
|
|
4
4
|
_excluded2 = ["touchRippleRef", "inputProps", "onChange", "color", "size", "checked", "sx", "value", "inputRef"],
|
|
5
5
|
_excluded3 = ["onChange", "label", "placeholder", "value", "inputRef", "type", "size", "variant"],
|
|
6
6
|
_excluded4 = ["startIcon", "color", "endIcon", "size", "sx", "variant"],
|
|
@@ -64,10 +64,15 @@ function convertVariant(variant, defaultVariant = 'plain') {
|
|
|
64
64
|
const Badge = /*#__PURE__*/React.forwardRef((_ref, ref) => {
|
|
65
65
|
let {
|
|
66
66
|
color,
|
|
67
|
-
sx
|
|
67
|
+
sx,
|
|
68
|
+
anchorOrigin
|
|
68
69
|
} = _ref,
|
|
69
70
|
props = _objectWithoutPropertiesLoose(_ref, _excluded);
|
|
70
71
|
return /*#__PURE__*/_jsx(JoyBadge, _extends({}, props, {
|
|
72
|
+
anchorOrigin: anchorOrigin?.horizontal && anchorOrigin?.vertical ? anchorOrigin : {
|
|
73
|
+
vertical: 'top',
|
|
74
|
+
horizontal: 'right'
|
|
75
|
+
},
|
|
71
76
|
color: convertColor(color),
|
|
72
77
|
variant: "plain",
|
|
73
78
|
sx: sx,
|
package/modern/locales/arSD.js
CHANGED
|
@@ -23,6 +23,17 @@ const arSDGrid = {
|
|
|
23
23
|
toolbarQuickFilterPlaceholder: 'بحث...',
|
|
24
24
|
toolbarQuickFilterLabel: 'بحث',
|
|
25
25
|
toolbarQuickFilterDeleteIconLabel: 'أزال',
|
|
26
|
+
// Prompt toolbar field
|
|
27
|
+
// toolbarPromptControlPlaceholder: 'Type a prompt…',
|
|
28
|
+
// toolbarPromptControlWithRecordingPlaceholder: 'Type or record a prompt…',
|
|
29
|
+
// toolbarPromptControlRecordingPlaceholder: 'Listening for prompt…',
|
|
30
|
+
// toolbarPromptControlLabel: 'Prompt input',
|
|
31
|
+
// toolbarPromptControlRecordButtonDefaultLabel: 'Record',
|
|
32
|
+
// toolbarPromptControlRecordButtonActiveLabel: 'Stop recording',
|
|
33
|
+
// toolbarPromptControlSendActionLabel: 'Send',
|
|
34
|
+
// toolbarPromptControlSendActionAriaLabel: 'Send prompt',
|
|
35
|
+
// toolbarPromptControlErrorMessage: 'An error occurred while processing the request. Please try again with a different prompt.',
|
|
36
|
+
|
|
26
37
|
// Export selector toolbar button text
|
|
27
38
|
toolbarExport: 'تصدير',
|
|
28
39
|
toolbarExportLabel: 'تصدير',
|
|
@@ -34,6 +45,7 @@ const arSDGrid = {
|
|
|
34
45
|
// columnsManagementNoColumns: 'No columns',
|
|
35
46
|
// columnsManagementShowHideAllText: 'Show/Hide All',
|
|
36
47
|
// columnsManagementReset: 'Reset',
|
|
48
|
+
// columnsManagementDeleteIconLabel: 'Clear',
|
|
37
49
|
|
|
38
50
|
// Filter panel text
|
|
39
51
|
filterPanelAddFilter: 'إضافة مرشِح',
|
package/modern/locales/beBY.js
CHANGED
|
@@ -37,6 +37,17 @@ const beBYGrid = {
|
|
|
37
37
|
toolbarQuickFilterPlaceholder: 'Пошук…',
|
|
38
38
|
toolbarQuickFilterLabel: 'Пошук',
|
|
39
39
|
toolbarQuickFilterDeleteIconLabel: 'Ачысціць',
|
|
40
|
+
// Prompt toolbar field
|
|
41
|
+
// toolbarPromptControlPlaceholder: 'Type a prompt…',
|
|
42
|
+
// toolbarPromptControlWithRecordingPlaceholder: 'Type or record a prompt…',
|
|
43
|
+
// toolbarPromptControlRecordingPlaceholder: 'Listening for prompt…',
|
|
44
|
+
// toolbarPromptControlLabel: 'Prompt input',
|
|
45
|
+
// toolbarPromptControlRecordButtonDefaultLabel: 'Record',
|
|
46
|
+
// toolbarPromptControlRecordButtonActiveLabel: 'Stop recording',
|
|
47
|
+
// toolbarPromptControlSendActionLabel: 'Send',
|
|
48
|
+
// toolbarPromptControlSendActionAriaLabel: 'Send prompt',
|
|
49
|
+
// toolbarPromptControlErrorMessage: 'An error occurred while processing the request. Please try again with a different prompt.',
|
|
50
|
+
|
|
40
51
|
// Export selector toolbar button text
|
|
41
52
|
toolbarExport: 'Экспарт',
|
|
42
53
|
toolbarExportLabel: 'Экспарт',
|
|
@@ -48,6 +59,7 @@ const beBYGrid = {
|
|
|
48
59
|
// columnsManagementNoColumns: 'No columns',
|
|
49
60
|
// columnsManagementShowHideAllText: 'Show/Hide All',
|
|
50
61
|
// columnsManagementReset: 'Reset',
|
|
62
|
+
// columnsManagementDeleteIconLabel: 'Clear',
|
|
51
63
|
|
|
52
64
|
// Filter panel text
|
|
53
65
|
filterPanelAddFilter: 'Дадаць фільтр',
|
package/modern/locales/bgBG.js
CHANGED
|
@@ -23,6 +23,17 @@ const bgBGGrid = {
|
|
|
23
23
|
toolbarQuickFilterPlaceholder: 'Търси…',
|
|
24
24
|
toolbarQuickFilterLabel: 'Търсене',
|
|
25
25
|
toolbarQuickFilterDeleteIconLabel: 'Изчисти',
|
|
26
|
+
// Prompt toolbar field
|
|
27
|
+
// toolbarPromptControlPlaceholder: 'Type a prompt…',
|
|
28
|
+
// toolbarPromptControlWithRecordingPlaceholder: 'Type or record a prompt…',
|
|
29
|
+
// toolbarPromptControlRecordingPlaceholder: 'Listening for prompt…',
|
|
30
|
+
// toolbarPromptControlLabel: 'Prompt input',
|
|
31
|
+
// toolbarPromptControlRecordButtonDefaultLabel: 'Record',
|
|
32
|
+
// toolbarPromptControlRecordButtonActiveLabel: 'Stop recording',
|
|
33
|
+
// toolbarPromptControlSendActionLabel: 'Send',
|
|
34
|
+
// toolbarPromptControlSendActionAriaLabel: 'Send prompt',
|
|
35
|
+
// toolbarPromptControlErrorMessage: 'An error occurred while processing the request. Please try again with a different prompt.',
|
|
36
|
+
|
|
26
37
|
// Export selector toolbar button text
|
|
27
38
|
toolbarExport: 'Изтегли',
|
|
28
39
|
toolbarExportLabel: 'Изтегли',
|
|
@@ -34,6 +45,8 @@ const bgBGGrid = {
|
|
|
34
45
|
columnsManagementNoColumns: 'Няма колони',
|
|
35
46
|
columnsManagementShowHideAllText: 'Покажи/Скрий Всичко',
|
|
36
47
|
columnsManagementReset: 'Нулирай',
|
|
48
|
+
// columnsManagementDeleteIconLabel: 'Clear',
|
|
49
|
+
|
|
37
50
|
// Filter panel text
|
|
38
51
|
filterPanelAddFilter: 'Добави Филтър',
|
|
39
52
|
filterPanelRemoveAll: 'Премахни всички',
|
package/modern/locales/csCZ.js
CHANGED
|
@@ -31,6 +31,17 @@ const csCZGrid = {
|
|
|
31
31
|
toolbarQuickFilterPlaceholder: 'Hledat…',
|
|
32
32
|
toolbarQuickFilterLabel: 'Hledat',
|
|
33
33
|
toolbarQuickFilterDeleteIconLabel: 'Vymazat',
|
|
34
|
+
// Prompt toolbar field
|
|
35
|
+
// toolbarPromptControlPlaceholder: 'Type a prompt…',
|
|
36
|
+
// toolbarPromptControlWithRecordingPlaceholder: 'Type or record a prompt…',
|
|
37
|
+
// toolbarPromptControlRecordingPlaceholder: 'Listening for prompt…',
|
|
38
|
+
// toolbarPromptControlLabel: 'Prompt input',
|
|
39
|
+
// toolbarPromptControlRecordButtonDefaultLabel: 'Record',
|
|
40
|
+
// toolbarPromptControlRecordButtonActiveLabel: 'Stop recording',
|
|
41
|
+
// toolbarPromptControlSendActionLabel: 'Send',
|
|
42
|
+
// toolbarPromptControlSendActionAriaLabel: 'Send prompt',
|
|
43
|
+
// toolbarPromptControlErrorMessage: 'An error occurred while processing the request. Please try again with a different prompt.',
|
|
44
|
+
|
|
34
45
|
// Export selector toolbar button text
|
|
35
46
|
toolbarExport: 'Export',
|
|
36
47
|
toolbarExportLabel: 'Export',
|
|
@@ -42,6 +53,8 @@ const csCZGrid = {
|
|
|
42
53
|
columnsManagementNoColumns: 'Žádné sloupce',
|
|
43
54
|
columnsManagementShowHideAllText: 'Zobrazit/skrýt vše',
|
|
44
55
|
columnsManagementReset: 'Resetovat',
|
|
56
|
+
// columnsManagementDeleteIconLabel: 'Clear',
|
|
57
|
+
|
|
45
58
|
// Filter panel text
|
|
46
59
|
filterPanelAddFilter: 'Přidat filtr',
|
|
47
60
|
filterPanelRemoveAll: 'Odstranit vše',
|
package/modern/locales/daDK.js
CHANGED
|
@@ -23,6 +23,17 @@ const daDKGrid = {
|
|
|
23
23
|
toolbarQuickFilterPlaceholder: 'Søg…',
|
|
24
24
|
toolbarQuickFilterLabel: 'Søg',
|
|
25
25
|
toolbarQuickFilterDeleteIconLabel: 'Ryd',
|
|
26
|
+
// Prompt toolbar field
|
|
27
|
+
// toolbarPromptControlPlaceholder: 'Type a prompt…',
|
|
28
|
+
// toolbarPromptControlWithRecordingPlaceholder: 'Type or record a prompt…',
|
|
29
|
+
// toolbarPromptControlRecordingPlaceholder: 'Listening for prompt…',
|
|
30
|
+
// toolbarPromptControlLabel: 'Prompt input',
|
|
31
|
+
// toolbarPromptControlRecordButtonDefaultLabel: 'Record',
|
|
32
|
+
// toolbarPromptControlRecordButtonActiveLabel: 'Stop recording',
|
|
33
|
+
// toolbarPromptControlSendActionLabel: 'Send',
|
|
34
|
+
// toolbarPromptControlSendActionAriaLabel: 'Send prompt',
|
|
35
|
+
// toolbarPromptControlErrorMessage: 'An error occurred while processing the request. Please try again with a different prompt.',
|
|
36
|
+
|
|
26
37
|
// Export selector toolbar button text
|
|
27
38
|
toolbarExport: 'Eksport',
|
|
28
39
|
toolbarExportLabel: 'Eksporter',
|
|
@@ -34,6 +45,8 @@ const daDKGrid = {
|
|
|
34
45
|
columnsManagementNoColumns: 'Ingen søjler',
|
|
35
46
|
columnsManagementShowHideAllText: 'Vis/Skjul Alle',
|
|
36
47
|
columnsManagementReset: 'Nulstil',
|
|
48
|
+
// columnsManagementDeleteIconLabel: 'Clear',
|
|
49
|
+
|
|
37
50
|
// Filter panel text
|
|
38
51
|
filterPanelAddFilter: 'Tilføj filter',
|
|
39
52
|
filterPanelRemoveAll: 'Fjern alle',
|
package/modern/locales/deDE.js
CHANGED
|
@@ -23,6 +23,16 @@ const deDEGrid = {
|
|
|
23
23
|
toolbarQuickFilterPlaceholder: 'Suchen…',
|
|
24
24
|
toolbarQuickFilterLabel: 'Suchen',
|
|
25
25
|
toolbarQuickFilterDeleteIconLabel: 'Löschen',
|
|
26
|
+
// Prompt toolbar field
|
|
27
|
+
toolbarPromptControlPlaceholder: 'Prompt eingeben…',
|
|
28
|
+
toolbarPromptControlWithRecordingPlaceholder: 'Prompt eingeben oder aufnehmen…',
|
|
29
|
+
toolbarPromptControlRecordingPlaceholder: 'Hört Prompteingabe zu…',
|
|
30
|
+
toolbarPromptControlLabel: 'Prompteingabe',
|
|
31
|
+
toolbarPromptControlRecordButtonDefaultLabel: 'Aufnahme starten',
|
|
32
|
+
toolbarPromptControlRecordButtonActiveLabel: 'Aufnahme stoppen',
|
|
33
|
+
toolbarPromptControlSendActionLabel: 'Senden',
|
|
34
|
+
toolbarPromptControlSendActionAriaLabel: 'Prompt senden',
|
|
35
|
+
toolbarPromptControlErrorMessage: 'Ein Fehler ist während der Bearbeitung der Anfrage aufgetreten. Bitte versuche es nochmal mit einem anderen Prompt.',
|
|
26
36
|
// Export selector toolbar button text
|
|
27
37
|
toolbarExport: 'Exportieren',
|
|
28
38
|
toolbarExportLabel: 'Exportieren',
|
|
@@ -34,6 +44,7 @@ const deDEGrid = {
|
|
|
34
44
|
columnsManagementNoColumns: 'Keine Spalten',
|
|
35
45
|
columnsManagementShowHideAllText: 'Alle anzeigen/verbergen',
|
|
36
46
|
columnsManagementReset: 'Zurücksetzen',
|
|
47
|
+
columnsManagementDeleteIconLabel: 'Löschen',
|
|
37
48
|
// Filter panel text
|
|
38
49
|
filterPanelAddFilter: 'Filter hinzufügen',
|
|
39
50
|
filterPanelRemoveAll: 'Alle entfernen',
|
package/modern/locales/elGR.js
CHANGED
|
@@ -23,6 +23,17 @@ const elGRGrid = {
|
|
|
23
23
|
toolbarQuickFilterPlaceholder: 'Αναζήτηση…',
|
|
24
24
|
toolbarQuickFilterLabel: 'Αναζήτηση',
|
|
25
25
|
toolbarQuickFilterDeleteIconLabel: 'Καθαρισμός',
|
|
26
|
+
// Prompt toolbar field
|
|
27
|
+
// toolbarPromptControlPlaceholder: 'Type a prompt…',
|
|
28
|
+
// toolbarPromptControlWithRecordingPlaceholder: 'Type or record a prompt…',
|
|
29
|
+
// toolbarPromptControlRecordingPlaceholder: 'Listening for prompt…',
|
|
30
|
+
// toolbarPromptControlLabel: 'Prompt input',
|
|
31
|
+
// toolbarPromptControlRecordButtonDefaultLabel: 'Record',
|
|
32
|
+
// toolbarPromptControlRecordButtonActiveLabel: 'Stop recording',
|
|
33
|
+
// toolbarPromptControlSendActionLabel: 'Send',
|
|
34
|
+
// toolbarPromptControlSendActionAriaLabel: 'Send prompt',
|
|
35
|
+
// toolbarPromptControlErrorMessage: 'An error occurred while processing the request. Please try again with a different prompt.',
|
|
36
|
+
|
|
26
37
|
// Export selector toolbar button text
|
|
27
38
|
toolbarExport: 'Εξαγωγή',
|
|
28
39
|
toolbarExportLabel: 'Εξαγωγή',
|
|
@@ -34,6 +45,7 @@ const elGRGrid = {
|
|
|
34
45
|
// columnsManagementNoColumns: 'No columns',
|
|
35
46
|
// columnsManagementShowHideAllText: 'Show/Hide All',
|
|
36
47
|
// columnsManagementReset: 'Reset',
|
|
48
|
+
// columnsManagementDeleteIconLabel: 'Clear',
|
|
37
49
|
|
|
38
50
|
// Filter panel text
|
|
39
51
|
filterPanelAddFilter: 'Προσθήκη φίλτρου',
|
package/modern/locales/esES.js
CHANGED
|
@@ -23,6 +23,16 @@ const esESGrid = {
|
|
|
23
23
|
toolbarQuickFilterPlaceholder: 'Buscar…',
|
|
24
24
|
toolbarQuickFilterLabel: 'Buscar',
|
|
25
25
|
toolbarQuickFilterDeleteIconLabel: 'Limpiar',
|
|
26
|
+
// Prompt toolbar field
|
|
27
|
+
toolbarPromptControlPlaceholder: 'Escriba un prompt…',
|
|
28
|
+
toolbarPromptControlWithRecordingPlaceholder: 'Escriba o grabe un prompt…',
|
|
29
|
+
toolbarPromptControlRecordingPlaceholder: 'Esperando por un prompt…',
|
|
30
|
+
toolbarPromptControlLabel: 'Introduzca un prompt',
|
|
31
|
+
toolbarPromptControlRecordButtonDefaultLabel: 'Grabar',
|
|
32
|
+
toolbarPromptControlRecordButtonActiveLabel: 'Parar de grabar',
|
|
33
|
+
toolbarPromptControlSendActionLabel: 'Enviar',
|
|
34
|
+
toolbarPromptControlSendActionAriaLabel: 'Enviar prompt',
|
|
35
|
+
toolbarPromptControlErrorMessage: 'Ocurrió un error mientras se procesaba la petición. Por favor, intente de nuevo con otro prompt.',
|
|
26
36
|
// Export selector toolbar button text
|
|
27
37
|
toolbarExport: 'Exportar',
|
|
28
38
|
toolbarExportLabel: 'Exportar',
|
|
@@ -34,6 +44,7 @@ const esESGrid = {
|
|
|
34
44
|
columnsManagementNoColumns: 'Sin columnas',
|
|
35
45
|
columnsManagementShowHideAllText: 'Mostrar/Ocultar todas',
|
|
36
46
|
columnsManagementReset: 'Restablecer',
|
|
47
|
+
columnsManagementDeleteIconLabel: 'Limpiar',
|
|
37
48
|
// Filter panel text
|
|
38
49
|
filterPanelAddFilter: 'Agregar filtro',
|
|
39
50
|
filterPanelRemoveAll: 'Remover todos',
|
|
@@ -47,9 +58,9 @@ const esESGrid = {
|
|
|
47
58
|
filterPanelInputPlaceholder: 'Valor de filtro',
|
|
48
59
|
// Filter operators text
|
|
49
60
|
filterOperatorContains: 'contiene',
|
|
50
|
-
|
|
61
|
+
filterOperatorDoesNotContain: 'no contiene',
|
|
51
62
|
filterOperatorEquals: 'es igual',
|
|
52
|
-
|
|
63
|
+
filterOperatorDoesNotEqual: 'es diferente a',
|
|
53
64
|
filterOperatorStartsWith: 'comienza con',
|
|
54
65
|
filterOperatorEndsWith: 'termina con',
|
|
55
66
|
filterOperatorIs: 'es',
|
|
@@ -69,9 +80,9 @@ const esESGrid = {
|
|
|
69
80
|
'filterOperator<=': '<=',
|
|
70
81
|
// Header filter operators text
|
|
71
82
|
headerFilterOperatorContains: 'Contiene',
|
|
72
|
-
|
|
83
|
+
headerFilterOperatorDoesNotContain: 'No contiene',
|
|
73
84
|
headerFilterOperatorEquals: 'Es igual a',
|
|
74
|
-
|
|
85
|
+
headerFilterOperatorDoesNotEqual: 'Es diferente a',
|
|
75
86
|
headerFilterOperatorStartsWith: 'Comienza con',
|
|
76
87
|
headerFilterOperatorEndsWith: 'Termina con',
|
|
77
88
|
headerFilterOperatorIs: 'Es',
|
package/modern/locales/faIR.js
CHANGED
|
@@ -23,6 +23,17 @@ const faIRGrid = {
|
|
|
23
23
|
toolbarQuickFilterPlaceholder: 'جستجو...',
|
|
24
24
|
toolbarQuickFilterLabel: 'جستجو',
|
|
25
25
|
toolbarQuickFilterDeleteIconLabel: 'حذف',
|
|
26
|
+
// Prompt toolbar field
|
|
27
|
+
// toolbarPromptControlPlaceholder: 'Type a prompt…',
|
|
28
|
+
// toolbarPromptControlWithRecordingPlaceholder: 'Type or record a prompt…',
|
|
29
|
+
// toolbarPromptControlRecordingPlaceholder: 'Listening for prompt…',
|
|
30
|
+
// toolbarPromptControlLabel: 'Prompt input',
|
|
31
|
+
// toolbarPromptControlRecordButtonDefaultLabel: 'Record',
|
|
32
|
+
// toolbarPromptControlRecordButtonActiveLabel: 'Stop recording',
|
|
33
|
+
// toolbarPromptControlSendActionLabel: 'Send',
|
|
34
|
+
// toolbarPromptControlSendActionAriaLabel: 'Send prompt',
|
|
35
|
+
// toolbarPromptControlErrorMessage: 'An error occurred while processing the request. Please try again with a different prompt.',
|
|
36
|
+
|
|
26
37
|
// Export selector toolbar button text
|
|
27
38
|
toolbarExport: 'خروجی',
|
|
28
39
|
toolbarExportLabel: 'خروجی',
|
|
@@ -34,6 +45,8 @@ const faIRGrid = {
|
|
|
34
45
|
columnsManagementNoColumns: 'بدون سطر',
|
|
35
46
|
columnsManagementShowHideAllText: 'نمایش/مخفی کردن همه',
|
|
36
47
|
columnsManagementReset: 'بازنشانی',
|
|
48
|
+
// columnsManagementDeleteIconLabel: 'Clear',
|
|
49
|
+
|
|
37
50
|
// Filter panel text
|
|
38
51
|
filterPanelAddFilter: 'افزودن فیلتر',
|
|
39
52
|
filterPanelRemoveAll: 'حذف همه',
|
package/modern/locales/fiFI.js
CHANGED
|
@@ -23,6 +23,17 @@ const fiFIGrid = {
|
|
|
23
23
|
toolbarQuickFilterPlaceholder: 'Hae…',
|
|
24
24
|
toolbarQuickFilterLabel: 'Hae',
|
|
25
25
|
toolbarQuickFilterDeleteIconLabel: 'Tyhjennä',
|
|
26
|
+
// Prompt toolbar field
|
|
27
|
+
// toolbarPromptControlPlaceholder: 'Type a prompt…',
|
|
28
|
+
// toolbarPromptControlWithRecordingPlaceholder: 'Type or record a prompt…',
|
|
29
|
+
// toolbarPromptControlRecordingPlaceholder: 'Listening for prompt…',
|
|
30
|
+
// toolbarPromptControlLabel: 'Prompt input',
|
|
31
|
+
// toolbarPromptControlRecordButtonDefaultLabel: 'Record',
|
|
32
|
+
// toolbarPromptControlRecordButtonActiveLabel: 'Stop recording',
|
|
33
|
+
// toolbarPromptControlSendActionLabel: 'Send',
|
|
34
|
+
// toolbarPromptControlSendActionAriaLabel: 'Send prompt',
|
|
35
|
+
// toolbarPromptControlErrorMessage: 'An error occurred while processing the request. Please try again with a different prompt.',
|
|
36
|
+
|
|
26
37
|
// Export selector toolbar button text
|
|
27
38
|
toolbarExport: 'Vie',
|
|
28
39
|
toolbarExportLabel: 'Vie',
|
|
@@ -34,6 +45,8 @@ const fiFIGrid = {
|
|
|
34
45
|
columnsManagementNoColumns: 'Ei sarakkeita näytettäväksi',
|
|
35
46
|
columnsManagementShowHideAllText: 'Näytä/Piilota kaikki',
|
|
36
47
|
columnsManagementReset: 'Palauta',
|
|
48
|
+
// columnsManagementDeleteIconLabel: 'Clear',
|
|
49
|
+
|
|
37
50
|
// Filter panel text
|
|
38
51
|
filterPanelAddFilter: 'Lisää suodatin',
|
|
39
52
|
filterPanelRemoveAll: 'Poista kaikki',
|
package/modern/locales/frFR.js
CHANGED
|
@@ -23,6 +23,17 @@ const frFRGrid = {
|
|
|
23
23
|
toolbarQuickFilterPlaceholder: 'Rechercher…',
|
|
24
24
|
toolbarQuickFilterLabel: 'Recherche',
|
|
25
25
|
toolbarQuickFilterDeleteIconLabel: 'Supprimer',
|
|
26
|
+
// Prompt toolbar field
|
|
27
|
+
// toolbarPromptControlPlaceholder: 'Type a prompt…',
|
|
28
|
+
// toolbarPromptControlWithRecordingPlaceholder: 'Type or record a prompt…',
|
|
29
|
+
// toolbarPromptControlRecordingPlaceholder: 'Listening for prompt…',
|
|
30
|
+
// toolbarPromptControlLabel: 'Prompt input',
|
|
31
|
+
// toolbarPromptControlRecordButtonDefaultLabel: 'Record',
|
|
32
|
+
// toolbarPromptControlRecordButtonActiveLabel: 'Stop recording',
|
|
33
|
+
// toolbarPromptControlSendActionLabel: 'Send',
|
|
34
|
+
// toolbarPromptControlSendActionAriaLabel: 'Send prompt',
|
|
35
|
+
// toolbarPromptControlErrorMessage: 'An error occurred while processing the request. Please try again with a different prompt.',
|
|
36
|
+
|
|
26
37
|
// Export selector toolbar button text
|
|
27
38
|
toolbarExport: 'Exporter',
|
|
28
39
|
toolbarExportLabel: 'Exporter',
|
|
@@ -34,6 +45,8 @@ const frFRGrid = {
|
|
|
34
45
|
columnsManagementNoColumns: 'Pas de colonnes',
|
|
35
46
|
columnsManagementShowHideAllText: 'Afficher/masquer toutes',
|
|
36
47
|
columnsManagementReset: 'Réinitialiser',
|
|
48
|
+
// columnsManagementDeleteIconLabel: 'Clear',
|
|
49
|
+
|
|
37
50
|
// Filter panel text
|
|
38
51
|
filterPanelAddFilter: 'Ajouter un filtre',
|
|
39
52
|
filterPanelRemoveAll: 'Tout supprimer',
|
package/modern/locales/heIL.js
CHANGED
|
@@ -23,6 +23,17 @@ const heILGrid = {
|
|
|
23
23
|
toolbarQuickFilterPlaceholder: 'חיפוש…',
|
|
24
24
|
toolbarQuickFilterLabel: 'חיפוש',
|
|
25
25
|
toolbarQuickFilterDeleteIconLabel: 'ניקוי',
|
|
26
|
+
// Prompt toolbar field
|
|
27
|
+
// toolbarPromptControlPlaceholder: 'Type a prompt…',
|
|
28
|
+
// toolbarPromptControlWithRecordingPlaceholder: 'Type or record a prompt…',
|
|
29
|
+
// toolbarPromptControlRecordingPlaceholder: 'Listening for prompt…',
|
|
30
|
+
// toolbarPromptControlLabel: 'Prompt input',
|
|
31
|
+
// toolbarPromptControlRecordButtonDefaultLabel: 'Record',
|
|
32
|
+
// toolbarPromptControlRecordButtonActiveLabel: 'Stop recording',
|
|
33
|
+
// toolbarPromptControlSendActionLabel: 'Send',
|
|
34
|
+
// toolbarPromptControlSendActionAriaLabel: 'Send prompt',
|
|
35
|
+
// toolbarPromptControlErrorMessage: 'An error occurred while processing the request. Please try again with a different prompt.',
|
|
36
|
+
|
|
26
37
|
// Export selector toolbar button text
|
|
27
38
|
toolbarExport: 'ייצוא',
|
|
28
39
|
toolbarExportLabel: 'ייצוא',
|
|
@@ -34,6 +45,8 @@ const heILGrid = {
|
|
|
34
45
|
columnsManagementNoColumns: 'אין עמודות',
|
|
35
46
|
columnsManagementShowHideAllText: 'הצג/הסתר הכל',
|
|
36
47
|
columnsManagementReset: 'אתחול',
|
|
48
|
+
// columnsManagementDeleteIconLabel: 'Clear',
|
|
49
|
+
|
|
37
50
|
// Filter panel text
|
|
38
51
|
filterPanelAddFilter: 'הוסף מסנן',
|
|
39
52
|
filterPanelRemoveAll: 'מחק הכל',
|
package/modern/locales/hrHR.js
CHANGED
|
@@ -31,6 +31,17 @@ const hrHRGrid = {
|
|
|
31
31
|
toolbarQuickFilterPlaceholder: 'Traži…',
|
|
32
32
|
toolbarQuickFilterLabel: 'traži',
|
|
33
33
|
toolbarQuickFilterDeleteIconLabel: 'Obriši',
|
|
34
|
+
// Prompt toolbar field
|
|
35
|
+
// toolbarPromptControlPlaceholder: 'Type a prompt…',
|
|
36
|
+
// toolbarPromptControlWithRecordingPlaceholder: 'Type or record a prompt…',
|
|
37
|
+
// toolbarPromptControlRecordingPlaceholder: 'Listening for prompt…',
|
|
38
|
+
// toolbarPromptControlLabel: 'Prompt input',
|
|
39
|
+
// toolbarPromptControlRecordButtonDefaultLabel: 'Record',
|
|
40
|
+
// toolbarPromptControlRecordButtonActiveLabel: 'Stop recording',
|
|
41
|
+
// toolbarPromptControlSendActionLabel: 'Send',
|
|
42
|
+
// toolbarPromptControlSendActionAriaLabel: 'Send prompt',
|
|
43
|
+
// toolbarPromptControlErrorMessage: 'An error occurred while processing the request. Please try again with a different prompt.',
|
|
44
|
+
|
|
34
45
|
// Export selector toolbar button text
|
|
35
46
|
toolbarExport: 'Izvoz',
|
|
36
47
|
toolbarExportLabel: 'Izvoz',
|
|
@@ -42,6 +53,8 @@ const hrHRGrid = {
|
|
|
42
53
|
columnsManagementNoColumns: 'Nema stupaca',
|
|
43
54
|
columnsManagementShowHideAllText: 'Prikaži/Sakrij sve',
|
|
44
55
|
columnsManagementReset: 'Ponovno namjesti',
|
|
56
|
+
// columnsManagementDeleteIconLabel: 'Clear',
|
|
57
|
+
|
|
45
58
|
// Filter panel text
|
|
46
59
|
filterPanelAddFilter: 'Dodaj filter',
|
|
47
60
|
filterPanelRemoveAll: 'Ukloni sve',
|
package/modern/locales/huHU.js
CHANGED
|
@@ -23,6 +23,17 @@ const huHUGrid = {
|
|
|
23
23
|
toolbarQuickFilterPlaceholder: 'Keresés…',
|
|
24
24
|
toolbarQuickFilterLabel: 'Keresés',
|
|
25
25
|
toolbarQuickFilterDeleteIconLabel: 'Törlés',
|
|
26
|
+
// Prompt toolbar field
|
|
27
|
+
// toolbarPromptControlPlaceholder: 'Type a prompt…',
|
|
28
|
+
// toolbarPromptControlWithRecordingPlaceholder: 'Type or record a prompt…',
|
|
29
|
+
// toolbarPromptControlRecordingPlaceholder: 'Listening for prompt…',
|
|
30
|
+
// toolbarPromptControlLabel: 'Prompt input',
|
|
31
|
+
// toolbarPromptControlRecordButtonDefaultLabel: 'Record',
|
|
32
|
+
// toolbarPromptControlRecordButtonActiveLabel: 'Stop recording',
|
|
33
|
+
// toolbarPromptControlSendActionLabel: 'Send',
|
|
34
|
+
// toolbarPromptControlSendActionAriaLabel: 'Send prompt',
|
|
35
|
+
// toolbarPromptControlErrorMessage: 'An error occurred while processing the request. Please try again with a different prompt.',
|
|
36
|
+
|
|
26
37
|
// Export selector toolbar button text
|
|
27
38
|
toolbarExport: 'Exportálás',
|
|
28
39
|
toolbarExportLabel: 'Exportálás',
|
|
@@ -34,6 +45,8 @@ const huHUGrid = {
|
|
|
34
45
|
columnsManagementNoColumns: 'Nincsenek oszlopok',
|
|
35
46
|
columnsManagementShowHideAllText: 'Összes',
|
|
36
47
|
columnsManagementReset: 'Visszavon',
|
|
48
|
+
// columnsManagementDeleteIconLabel: 'Clear',
|
|
49
|
+
|
|
37
50
|
// Filter panel text
|
|
38
51
|
filterPanelAddFilter: 'Szűrő hozzáadása',
|
|
39
52
|
filterPanelRemoveAll: 'Összes törlése',
|
package/modern/locales/isIS.js
CHANGED
|
@@ -23,6 +23,17 @@ const isISGrid = {
|
|
|
23
23
|
toolbarQuickFilterPlaceholder: 'Leita…',
|
|
24
24
|
toolbarQuickFilterLabel: 'Leita',
|
|
25
25
|
toolbarQuickFilterDeleteIconLabel: 'Eyða',
|
|
26
|
+
// Prompt toolbar field
|
|
27
|
+
// toolbarPromptControlPlaceholder: 'Type a prompt…',
|
|
28
|
+
// toolbarPromptControlWithRecordingPlaceholder: 'Type or record a prompt…',
|
|
29
|
+
// toolbarPromptControlRecordingPlaceholder: 'Listening for prompt…',
|
|
30
|
+
// toolbarPromptControlLabel: 'Prompt input',
|
|
31
|
+
// toolbarPromptControlRecordButtonDefaultLabel: 'Record',
|
|
32
|
+
// toolbarPromptControlRecordButtonActiveLabel: 'Stop recording',
|
|
33
|
+
// toolbarPromptControlSendActionLabel: 'Send',
|
|
34
|
+
// toolbarPromptControlSendActionAriaLabel: 'Send prompt',
|
|
35
|
+
// toolbarPromptControlErrorMessage: 'An error occurred while processing the request. Please try again with a different prompt.',
|
|
36
|
+
|
|
26
37
|
// Export selector toolbar button text
|
|
27
38
|
toolbarExport: 'Flytja út',
|
|
28
39
|
toolbarExportLabel: 'Flytja út',
|
|
@@ -34,6 +45,7 @@ const isISGrid = {
|
|
|
34
45
|
// columnsManagementNoColumns: 'No columns',
|
|
35
46
|
// columnsManagementShowHideAllText: 'Show/Hide All',
|
|
36
47
|
// columnsManagementReset: 'Reset',
|
|
48
|
+
// columnsManagementDeleteIconLabel: 'Clear',
|
|
37
49
|
|
|
38
50
|
// Filter panel text
|
|
39
51
|
filterPanelAddFilter: 'Bæta síu',
|
package/modern/locales/itIT.js
CHANGED
|
@@ -23,6 +23,17 @@ const itITGrid = {
|
|
|
23
23
|
toolbarQuickFilterPlaceholder: 'Cerca…',
|
|
24
24
|
toolbarQuickFilterLabel: 'Cerca',
|
|
25
25
|
toolbarQuickFilterDeleteIconLabel: 'Resetta',
|
|
26
|
+
// Prompt toolbar field
|
|
27
|
+
// toolbarPromptControlPlaceholder: 'Type a prompt…',
|
|
28
|
+
// toolbarPromptControlWithRecordingPlaceholder: 'Type or record a prompt…',
|
|
29
|
+
// toolbarPromptControlRecordingPlaceholder: 'Listening for prompt…',
|
|
30
|
+
// toolbarPromptControlLabel: 'Prompt input',
|
|
31
|
+
// toolbarPromptControlRecordButtonDefaultLabel: 'Record',
|
|
32
|
+
// toolbarPromptControlRecordButtonActiveLabel: 'Stop recording',
|
|
33
|
+
// toolbarPromptControlSendActionLabel: 'Send',
|
|
34
|
+
// toolbarPromptControlSendActionAriaLabel: 'Send prompt',
|
|
35
|
+
// toolbarPromptControlErrorMessage: 'An error occurred while processing the request. Please try again with a different prompt.',
|
|
36
|
+
|
|
26
37
|
// Export selector toolbar button text
|
|
27
38
|
toolbarExport: 'Esporta',
|
|
28
39
|
toolbarExportLabel: 'Esporta',
|
|
@@ -34,6 +45,8 @@ const itITGrid = {
|
|
|
34
45
|
columnsManagementNoColumns: 'Nessuna colonna',
|
|
35
46
|
columnsManagementShowHideAllText: 'Mostra/Nascondi Tutto',
|
|
36
47
|
columnsManagementReset: 'Resetta',
|
|
48
|
+
// columnsManagementDeleteIconLabel: 'Clear',
|
|
49
|
+
|
|
37
50
|
// Filter panel text
|
|
38
51
|
filterPanelAddFilter: 'Aggiungi un filtro',
|
|
39
52
|
filterPanelRemoveAll: 'Rimuovi filtri',
|
package/modern/locales/jaJP.js
CHANGED
|
@@ -23,6 +23,17 @@ const jaJPGrid = {
|
|
|
23
23
|
toolbarQuickFilterPlaceholder: '検索…',
|
|
24
24
|
toolbarQuickFilterLabel: '検索',
|
|
25
25
|
toolbarQuickFilterDeleteIconLabel: 'クリア',
|
|
26
|
+
// Prompt toolbar field
|
|
27
|
+
// toolbarPromptControlPlaceholder: 'Type a prompt…',
|
|
28
|
+
// toolbarPromptControlWithRecordingPlaceholder: 'Type or record a prompt…',
|
|
29
|
+
// toolbarPromptControlRecordingPlaceholder: 'Listening for prompt…',
|
|
30
|
+
// toolbarPromptControlLabel: 'Prompt input',
|
|
31
|
+
// toolbarPromptControlRecordButtonDefaultLabel: 'Record',
|
|
32
|
+
// toolbarPromptControlRecordButtonActiveLabel: 'Stop recording',
|
|
33
|
+
// toolbarPromptControlSendActionLabel: 'Send',
|
|
34
|
+
// toolbarPromptControlSendActionAriaLabel: 'Send prompt',
|
|
35
|
+
// toolbarPromptControlErrorMessage: 'An error occurred while processing the request. Please try again with a different prompt.',
|
|
36
|
+
|
|
26
37
|
// Export selector toolbar button text
|
|
27
38
|
toolbarExport: 'エクスポート',
|
|
28
39
|
toolbarExportLabel: 'エクスポート',
|
|
@@ -34,6 +45,8 @@ const jaJPGrid = {
|
|
|
34
45
|
columnsManagementNoColumns: 'カラムなし',
|
|
35
46
|
columnsManagementShowHideAllText: 'すべて表示/非表示',
|
|
36
47
|
columnsManagementReset: 'リセット',
|
|
48
|
+
// columnsManagementDeleteIconLabel: 'Clear',
|
|
49
|
+
|
|
37
50
|
// Filter panel text
|
|
38
51
|
filterPanelAddFilter: 'フィルター追加',
|
|
39
52
|
filterPanelRemoveAll: 'すべて削除',
|
package/modern/locales/koKR.js
CHANGED
|
@@ -23,6 +23,17 @@ const koKRGrid = {
|
|
|
23
23
|
toolbarQuickFilterPlaceholder: '검색…',
|
|
24
24
|
toolbarQuickFilterLabel: '검색',
|
|
25
25
|
toolbarQuickFilterDeleteIconLabel: '초기화',
|
|
26
|
+
// Prompt toolbar field
|
|
27
|
+
// toolbarPromptControlPlaceholder: 'Type a prompt…',
|
|
28
|
+
// toolbarPromptControlWithRecordingPlaceholder: 'Type or record a prompt…',
|
|
29
|
+
// toolbarPromptControlRecordingPlaceholder: 'Listening for prompt…',
|
|
30
|
+
// toolbarPromptControlLabel: 'Prompt input',
|
|
31
|
+
// toolbarPromptControlRecordButtonDefaultLabel: 'Record',
|
|
32
|
+
// toolbarPromptControlRecordButtonActiveLabel: 'Stop recording',
|
|
33
|
+
// toolbarPromptControlSendActionLabel: 'Send',
|
|
34
|
+
// toolbarPromptControlSendActionAriaLabel: 'Send prompt',
|
|
35
|
+
// toolbarPromptControlErrorMessage: 'An error occurred while processing the request. Please try again with a different prompt.',
|
|
36
|
+
|
|
26
37
|
// Export selector toolbar button text
|
|
27
38
|
toolbarExport: '내보내기',
|
|
28
39
|
toolbarExportLabel: '내보내기',
|
|
@@ -34,6 +45,7 @@ const koKRGrid = {
|
|
|
34
45
|
// columnsManagementNoColumns: 'No columns',
|
|
35
46
|
// columnsManagementShowHideAllText: 'Show/Hide All',
|
|
36
47
|
// columnsManagementReset: 'Reset',
|
|
48
|
+
// columnsManagementDeleteIconLabel: 'Clear',
|
|
37
49
|
|
|
38
50
|
// Filter panel text
|
|
39
51
|
filterPanelAddFilter: '필터 추가',
|
package/modern/locales/nbNO.js
CHANGED
|
@@ -23,6 +23,17 @@ const nbNOGrid = {
|
|
|
23
23
|
toolbarQuickFilterPlaceholder: 'Søk…',
|
|
24
24
|
toolbarQuickFilterLabel: 'Søk',
|
|
25
25
|
toolbarQuickFilterDeleteIconLabel: 'Slett',
|
|
26
|
+
// Prompt toolbar field
|
|
27
|
+
// toolbarPromptControlPlaceholder: 'Type a prompt…',
|
|
28
|
+
// toolbarPromptControlWithRecordingPlaceholder: 'Type or record a prompt…',
|
|
29
|
+
// toolbarPromptControlRecordingPlaceholder: 'Listening for prompt…',
|
|
30
|
+
// toolbarPromptControlLabel: 'Prompt input',
|
|
31
|
+
// toolbarPromptControlRecordButtonDefaultLabel: 'Record',
|
|
32
|
+
// toolbarPromptControlRecordButtonActiveLabel: 'Stop recording',
|
|
33
|
+
// toolbarPromptControlSendActionLabel: 'Send',
|
|
34
|
+
// toolbarPromptControlSendActionAriaLabel: 'Send prompt',
|
|
35
|
+
// toolbarPromptControlErrorMessage: 'An error occurred while processing the request. Please try again with a different prompt.',
|
|
36
|
+
|
|
26
37
|
// Export selector toolbar button text
|
|
27
38
|
toolbarExport: 'Eksporter',
|
|
28
39
|
toolbarExportLabel: 'Eksporter',
|
|
@@ -34,6 +45,8 @@ const nbNOGrid = {
|
|
|
34
45
|
columnsManagementNoColumns: 'Ingen kolonner',
|
|
35
46
|
columnsManagementShowHideAllText: 'Vis/skjul alle',
|
|
36
47
|
columnsManagementReset: 'Nullstill',
|
|
48
|
+
// columnsManagementDeleteIconLabel: 'Clear',
|
|
49
|
+
|
|
37
50
|
// Filter panel text
|
|
38
51
|
filterPanelAddFilter: 'Legg til filter',
|
|
39
52
|
filterPanelRemoveAll: 'Fjern alle',
|
package/modern/locales/nlNL.js
CHANGED
|
@@ -23,6 +23,17 @@ const nlNLGrid = {
|
|
|
23
23
|
toolbarQuickFilterPlaceholder: 'Zoeken…',
|
|
24
24
|
toolbarQuickFilterLabel: 'Zoeken',
|
|
25
25
|
toolbarQuickFilterDeleteIconLabel: 'Wissen',
|
|
26
|
+
// Prompt toolbar field
|
|
27
|
+
// toolbarPromptControlPlaceholder: 'Type a prompt…',
|
|
28
|
+
// toolbarPromptControlWithRecordingPlaceholder: 'Type or record a prompt…',
|
|
29
|
+
// toolbarPromptControlRecordingPlaceholder: 'Listening for prompt…',
|
|
30
|
+
// toolbarPromptControlLabel: 'Prompt input',
|
|
31
|
+
// toolbarPromptControlRecordButtonDefaultLabel: 'Record',
|
|
32
|
+
// toolbarPromptControlRecordButtonActiveLabel: 'Stop recording',
|
|
33
|
+
// toolbarPromptControlSendActionLabel: 'Send',
|
|
34
|
+
// toolbarPromptControlSendActionAriaLabel: 'Send prompt',
|
|
35
|
+
// toolbarPromptControlErrorMessage: 'An error occurred while processing the request. Please try again with a different prompt.',
|
|
36
|
+
|
|
26
37
|
// Export selector toolbar button text
|
|
27
38
|
toolbarExport: 'Exporteren',
|
|
28
39
|
toolbarExportLabel: 'Exporteren',
|
|
@@ -34,6 +45,8 @@ const nlNLGrid = {
|
|
|
34
45
|
columnsManagementNoColumns: 'Geen kolommen',
|
|
35
46
|
columnsManagementShowHideAllText: 'Toon/Verberg Alle',
|
|
36
47
|
columnsManagementReset: 'Reset',
|
|
48
|
+
// columnsManagementDeleteIconLabel: 'Clear',
|
|
49
|
+
|
|
37
50
|
// Filter panel text
|
|
38
51
|
filterPanelAddFilter: 'Filter toevoegen',
|
|
39
52
|
filterPanelRemoveAll: 'Alles verwijderen',
|
package/modern/locales/nnNO.js
CHANGED
|
@@ -23,6 +23,17 @@ const nnNOGrid = {
|
|
|
23
23
|
toolbarQuickFilterPlaceholder: 'Søk…',
|
|
24
24
|
toolbarQuickFilterLabel: 'Søk',
|
|
25
25
|
toolbarQuickFilterDeleteIconLabel: 'Slett',
|
|
26
|
+
// Prompt toolbar field
|
|
27
|
+
// toolbarPromptControlPlaceholder: 'Type a prompt…',
|
|
28
|
+
// toolbarPromptControlWithRecordingPlaceholder: 'Type or record a prompt…',
|
|
29
|
+
// toolbarPromptControlRecordingPlaceholder: 'Listening for prompt…',
|
|
30
|
+
// toolbarPromptControlLabel: 'Prompt input',
|
|
31
|
+
// toolbarPromptControlRecordButtonDefaultLabel: 'Record',
|
|
32
|
+
// toolbarPromptControlRecordButtonActiveLabel: 'Stop recording',
|
|
33
|
+
// toolbarPromptControlSendActionLabel: 'Send',
|
|
34
|
+
// toolbarPromptControlSendActionAriaLabel: 'Send prompt',
|
|
35
|
+
// toolbarPromptControlErrorMessage: 'An error occurred while processing the request. Please try again with a different prompt.',
|
|
36
|
+
|
|
26
37
|
// Export selector toolbar button text
|
|
27
38
|
toolbarExport: 'Eksporter',
|
|
28
39
|
toolbarExportLabel: 'Eksporter',
|
|
@@ -34,6 +45,8 @@ const nnNOGrid = {
|
|
|
34
45
|
columnsManagementNoColumns: 'Ingen kolonner',
|
|
35
46
|
columnsManagementShowHideAllText: 'Vis/skjul alle',
|
|
36
47
|
columnsManagementReset: 'Nullstill',
|
|
48
|
+
// columnsManagementDeleteIconLabel: 'Clear',
|
|
49
|
+
|
|
37
50
|
// Filter panel text
|
|
38
51
|
filterPanelAddFilter: 'Legg til filter',
|
|
39
52
|
filterPanelRemoveAll: 'Fjern alle',
|