@mui/x-data-grid 8.0.0-alpha.1 → 8.0.0-alpha.3
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 +330 -7
- package/DataGrid/DataGrid.js +9 -17
- 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 +7 -10
- package/components/columnSelection/GridCellCheckboxRenderer.js +2 -3
- package/components/columnSelection/GridHeaderCheckbox.js +6 -4
- 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 -4
- package/constants/localeTextConstants.js +0 -1
- package/hooks/core/strategyProcessing/gridStrategyProcessingApi.d.ts +25 -9
- package/hooks/core/strategyProcessing/gridStrategyProcessingApi.js +5 -1
- package/hooks/core/strategyProcessing/useGridStrategyProcessing.d.ts +3 -6
- package/hooks/core/strategyProcessing/useGridStrategyProcessing.js +7 -8
- package/hooks/features/columnResize/useGridColumnResize.js +2 -1
- package/hooks/features/dimensions/gridDimensionsApi.d.ts +0 -4
- package/hooks/features/dimensions/useGridDimensions.js +3 -19
- package/hooks/features/editing/useGridCellEditing.js +3 -3
- package/hooks/features/editing/useGridRowEditing.js +3 -3
- 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/rows/gridRowsInterfaces.d.ts +1 -8
- package/hooks/features/rows/gridRowsSelector.d.ts +0 -1
- package/hooks/features/rows/gridRowsSelector.js +0 -1
- package/hooks/features/rows/gridRowsUtils.js +0 -9
- package/hooks/features/rows/index.d.ts +1 -1
- package/hooks/features/rows/index.js +1 -1
- package/hooks/features/rows/useGridRows.js +12 -14
- package/hooks/features/rows/useGridRowsMeta.d.ts +1 -1
- 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 -1
- package/internals/index.js +1 -1
- package/locales/arSD.js +0 -1
- package/locales/beBY.js +0 -1
- package/locales/bgBG.js +0 -1
- package/locales/csCZ.js +0 -1
- package/locales/daDK.js +0 -1
- package/locales/deDE.js +10 -13
- package/locales/elGR.js +0 -1
- package/locales/esES.js +10 -13
- package/locales/faIR.js +0 -1
- package/locales/fiFI.js +0 -1
- package/locales/frFR.js +0 -1
- package/locales/heIL.js +14 -17
- package/locales/hrHR.js +0 -1
- package/locales/huHU.js +0 -1
- package/locales/isIS.js +0 -1
- package/locales/itIT.js +0 -1
- package/locales/jaJP.js +0 -1
- package/locales/koKR.js +0 -1
- package/locales/nbNO.js +0 -1
- package/locales/nlNL.js +0 -1
- package/locales/nnNO.js +0 -1
- package/locales/plPL.js +0 -1
- package/locales/ptBR.js +10 -13
- package/locales/ptPT.js +10 -13
- package/locales/roRO.js +0 -1
- package/locales/ruRU.js +0 -1
- package/locales/skSK.js +0 -1
- package/locales/svSE.js +0 -1
- package/locales/trTR.js +12 -15
- package/locales/ukUA.js +0 -1
- package/locales/urPK.js +0 -1
- package/locales/viVN.js +0 -1
- package/locales/zhCN.js +10 -13
- package/locales/zhHK.js +0 -1
- package/locales/zhTW.js +0 -1
- package/models/api/gridCoreApi.d.ts +1 -1
- package/models/api/gridLocaleTextApi.d.ts +0 -1
- package/models/colDef/gridColDef.d.ts +24 -24
- package/models/events/gridEventLookup.d.ts +1 -0
- package/models/gridDataSource.d.ts +1 -1
- package/models/props/DataGridProps.d.ts +9 -17
- package/modern/DataGrid/DataGrid.js +9 -17
- 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 +7 -10
- package/modern/components/columnSelection/GridCellCheckboxRenderer.js +2 -3
- package/modern/components/columnSelection/GridHeaderCheckbox.js +6 -4
- 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 -4
- package/modern/constants/localeTextConstants.js +0 -1
- package/modern/hooks/core/strategyProcessing/gridStrategyProcessingApi.js +5 -1
- package/modern/hooks/core/strategyProcessing/useGridStrategyProcessing.js +7 -8
- package/modern/hooks/features/columnResize/useGridColumnResize.js +2 -1
- package/modern/hooks/features/dimensions/useGridDimensions.js +3 -19
- package/modern/hooks/features/editing/useGridCellEditing.js +3 -3
- package/modern/hooks/features/editing/useGridRowEditing.js +3 -3
- 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/rows/gridRowsSelector.js +0 -1
- package/modern/hooks/features/rows/gridRowsUtils.js +0 -9
- package/modern/hooks/features/rows/index.js +1 -1
- package/modern/hooks/features/rows/useGridRows.js +12 -14
- package/modern/hooks/features/virtualization/useGridVirtualScroller.js +55 -15
- package/modern/index.js +1 -1
- package/modern/internals/index.js +1 -1
- package/modern/locales/arSD.js +0 -1
- package/modern/locales/beBY.js +0 -1
- package/modern/locales/bgBG.js +0 -1
- package/modern/locales/csCZ.js +0 -1
- package/modern/locales/daDK.js +0 -1
- package/modern/locales/deDE.js +10 -13
- package/modern/locales/elGR.js +0 -1
- package/modern/locales/esES.js +10 -13
- package/modern/locales/faIR.js +0 -1
- package/modern/locales/fiFI.js +0 -1
- package/modern/locales/frFR.js +0 -1
- package/modern/locales/heIL.js +14 -17
- package/modern/locales/hrHR.js +0 -1
- package/modern/locales/huHU.js +0 -1
- package/modern/locales/isIS.js +0 -1
- package/modern/locales/itIT.js +0 -1
- package/modern/locales/jaJP.js +0 -1
- package/modern/locales/koKR.js +0 -1
- package/modern/locales/nbNO.js +0 -1
- package/modern/locales/nlNL.js +0 -1
- package/modern/locales/nnNO.js +0 -1
- package/modern/locales/plPL.js +0 -1
- package/modern/locales/ptBR.js +10 -13
- package/modern/locales/ptPT.js +10 -13
- package/modern/locales/roRO.js +0 -1
- package/modern/locales/ruRU.js +0 -1
- package/modern/locales/skSK.js +0 -1
- package/modern/locales/svSE.js +0 -1
- package/modern/locales/trTR.js +12 -15
- package/modern/locales/ukUA.js +0 -1
- package/modern/locales/urPK.js +0 -1
- package/modern/locales/viVN.js +0 -1
- package/modern/locales/zhCN.js +10 -13
- package/modern/locales/zhHK.js +0 -1
- package/modern/locales/zhTW.js +0 -1
- package/node/DataGrid/DataGrid.js +9 -17
- 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 +7 -10
- package/node/components/columnSelection/GridCellCheckboxRenderer.js +2 -3
- package/node/components/columnSelection/GridHeaderCheckbox.js +6 -4
- 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 -4
- package/node/constants/localeTextConstants.js +0 -1
- package/node/hooks/core/strategyProcessing/gridStrategyProcessingApi.js +7 -1
- package/node/hooks/core/strategyProcessing/useGridStrategyProcessing.js +7 -8
- package/node/hooks/features/columnResize/useGridColumnResize.js +2 -1
- package/node/hooks/features/dimensions/useGridDimensions.js +2 -18
- package/node/hooks/features/editing/useGridCellEditing.js +2 -2
- package/node/hooks/features/editing/useGridRowEditing.js +2 -2
- 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/rows/gridRowsSelector.js +1 -2
- package/node/hooks/features/rows/gridRowsUtils.js +0 -9
- package/node/hooks/features/rows/index.js +0 -7
- package/node/hooks/features/rows/useGridRows.js +11 -13
- package/node/hooks/features/virtualization/useGridVirtualScroller.js +55 -15
- package/node/index.js +1 -1
- package/node/internals/index.js +7 -0
- package/node/locales/arSD.js +0 -1
- package/node/locales/beBY.js +0 -1
- package/node/locales/bgBG.js +0 -1
- package/node/locales/csCZ.js +0 -1
- package/node/locales/daDK.js +0 -1
- package/node/locales/deDE.js +10 -13
- package/node/locales/elGR.js +0 -1
- package/node/locales/esES.js +10 -13
- package/node/locales/faIR.js +0 -1
- package/node/locales/fiFI.js +0 -1
- package/node/locales/frFR.js +0 -1
- package/node/locales/heIL.js +14 -17
- package/node/locales/hrHR.js +0 -1
- package/node/locales/huHU.js +0 -1
- package/node/locales/isIS.js +0 -1
- package/node/locales/itIT.js +0 -1
- package/node/locales/jaJP.js +0 -1
- package/node/locales/koKR.js +0 -1
- package/node/locales/nbNO.js +0 -1
- package/node/locales/nlNL.js +0 -1
- package/node/locales/nnNO.js +0 -1
- package/node/locales/plPL.js +0 -1
- package/node/locales/ptBR.js +10 -13
- package/node/locales/ptPT.js +10 -13
- package/node/locales/roRO.js +0 -1
- package/node/locales/ruRU.js +0 -1
- package/node/locales/skSK.js +0 -1
- package/node/locales/svSE.js +0 -1
- package/node/locales/trTR.js +12 -15
- package/node/locales/ukUA.js +0 -1
- package/node/locales/urPK.js +0 -1
- package/node/locales/viVN.js +0 -1
- package/node/locales/zhCN.js +10 -13
- package/node/locales/zhHK.js +0 -1
- package/node/locales/zhTW.js +0 -1
- package/package.json +2 -2
package/node/locales/csCZ.js
CHANGED
|
@@ -42,7 +42,6 @@ const csCZGrid = {
|
|
|
42
42
|
// toolbarPromptControlWithRecordingPlaceholder: 'Type or record a prompt…',
|
|
43
43
|
// toolbarPromptControlRecordingPlaceholder: 'Listening for prompt…',
|
|
44
44
|
// toolbarPromptControlLabel: 'Prompt input',
|
|
45
|
-
// toolbarPromptControlDeleteIconLabel: 'Clear',
|
|
46
45
|
// toolbarPromptControlRecordButtonDefaultLabel: 'Record',
|
|
47
46
|
// toolbarPromptControlRecordButtonActiveLabel: 'Stop recording',
|
|
48
47
|
// toolbarPromptControlSendActionLabel: 'Send',
|
package/node/locales/daDK.js
CHANGED
|
@@ -34,7 +34,6 @@ const daDKGrid = {
|
|
|
34
34
|
// toolbarPromptControlWithRecordingPlaceholder: 'Type or record a prompt…',
|
|
35
35
|
// toolbarPromptControlRecordingPlaceholder: 'Listening for prompt…',
|
|
36
36
|
// toolbarPromptControlLabel: 'Prompt input',
|
|
37
|
-
// toolbarPromptControlDeleteIconLabel: 'Clear',
|
|
38
37
|
// toolbarPromptControlRecordButtonDefaultLabel: 'Record',
|
|
39
38
|
// toolbarPromptControlRecordButtonActiveLabel: 'Stop recording',
|
|
40
39
|
// toolbarPromptControlSendActionLabel: 'Send',
|
package/node/locales/deDE.js
CHANGED
|
@@ -30,17 +30,15 @@ const deDEGrid = {
|
|
|
30
30
|
toolbarQuickFilterLabel: 'Suchen',
|
|
31
31
|
toolbarQuickFilterDeleteIconLabel: 'Löschen',
|
|
32
32
|
// Prompt toolbar field
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
// toolbarPromptControlErrorMessage: 'An error occurred while processing the request. Please try again with a different prompt.',
|
|
43
|
-
|
|
33
|
+
toolbarPromptControlPlaceholder: 'Prompt eingeben…',
|
|
34
|
+
toolbarPromptControlWithRecordingPlaceholder: 'Prompt eingeben oder aufnehmen…',
|
|
35
|
+
toolbarPromptControlRecordingPlaceholder: 'Hört Prompteingabe zu…',
|
|
36
|
+
toolbarPromptControlLabel: 'Prompteingabe',
|
|
37
|
+
toolbarPromptControlRecordButtonDefaultLabel: 'Aufnahme starten',
|
|
38
|
+
toolbarPromptControlRecordButtonActiveLabel: 'Aufnahme stoppen',
|
|
39
|
+
toolbarPromptControlSendActionLabel: 'Senden',
|
|
40
|
+
toolbarPromptControlSendActionAriaLabel: 'Prompt senden',
|
|
41
|
+
toolbarPromptControlErrorMessage: 'Ein Fehler ist während der Bearbeitung der Anfrage aufgetreten. Bitte versuche es nochmal mit einem anderen Prompt.',
|
|
44
42
|
// Export selector toolbar button text
|
|
45
43
|
toolbarExport: 'Exportieren',
|
|
46
44
|
toolbarExportLabel: 'Exportieren',
|
|
@@ -52,8 +50,7 @@ const deDEGrid = {
|
|
|
52
50
|
columnsManagementNoColumns: 'Keine Spalten',
|
|
53
51
|
columnsManagementShowHideAllText: 'Alle anzeigen/verbergen',
|
|
54
52
|
columnsManagementReset: 'Zurücksetzen',
|
|
55
|
-
|
|
56
|
-
|
|
53
|
+
columnsManagementDeleteIconLabel: 'Löschen',
|
|
57
54
|
// Filter panel text
|
|
58
55
|
filterPanelAddFilter: 'Filter hinzufügen',
|
|
59
56
|
filterPanelRemoveAll: 'Alle entfernen',
|
package/node/locales/elGR.js
CHANGED
|
@@ -34,7 +34,6 @@ const elGRGrid = {
|
|
|
34
34
|
// toolbarPromptControlWithRecordingPlaceholder: 'Type or record a prompt…',
|
|
35
35
|
// toolbarPromptControlRecordingPlaceholder: 'Listening for prompt…',
|
|
36
36
|
// toolbarPromptControlLabel: 'Prompt input',
|
|
37
|
-
// toolbarPromptControlDeleteIconLabel: 'Clear',
|
|
38
37
|
// toolbarPromptControlRecordButtonDefaultLabel: 'Record',
|
|
39
38
|
// toolbarPromptControlRecordButtonActiveLabel: 'Stop recording',
|
|
40
39
|
// toolbarPromptControlSendActionLabel: 'Send',
|
package/node/locales/esES.js
CHANGED
|
@@ -30,17 +30,15 @@ const esESGrid = {
|
|
|
30
30
|
toolbarQuickFilterLabel: 'Buscar',
|
|
31
31
|
toolbarQuickFilterDeleteIconLabel: 'Limpiar',
|
|
32
32
|
// Prompt toolbar field
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
// toolbarPromptControlErrorMessage: 'An error occurred while processing the request. Please try again with a different prompt.',
|
|
43
|
-
|
|
33
|
+
toolbarPromptControlPlaceholder: 'Escriba un prompt…',
|
|
34
|
+
toolbarPromptControlWithRecordingPlaceholder: 'Escriba o grabe un prompt…',
|
|
35
|
+
toolbarPromptControlRecordingPlaceholder: 'Esperando por un prompt…',
|
|
36
|
+
toolbarPromptControlLabel: 'Introduzca un prompt',
|
|
37
|
+
toolbarPromptControlRecordButtonDefaultLabel: 'Grabar',
|
|
38
|
+
toolbarPromptControlRecordButtonActiveLabel: 'Parar de grabar',
|
|
39
|
+
toolbarPromptControlSendActionLabel: 'Enviar',
|
|
40
|
+
toolbarPromptControlSendActionAriaLabel: 'Enviar prompt',
|
|
41
|
+
toolbarPromptControlErrorMessage: 'Ocurrió un error mientras se procesaba la petición. Por favor, intente de nuevo con otro prompt.',
|
|
44
42
|
// Export selector toolbar button text
|
|
45
43
|
toolbarExport: 'Exportar',
|
|
46
44
|
toolbarExportLabel: 'Exportar',
|
|
@@ -52,8 +50,7 @@ const esESGrid = {
|
|
|
52
50
|
columnsManagementNoColumns: 'Sin columnas',
|
|
53
51
|
columnsManagementShowHideAllText: 'Mostrar/Ocultar todas',
|
|
54
52
|
columnsManagementReset: 'Restablecer',
|
|
55
|
-
|
|
56
|
-
|
|
53
|
+
columnsManagementDeleteIconLabel: 'Limpiar',
|
|
57
54
|
// Filter panel text
|
|
58
55
|
filterPanelAddFilter: 'Agregar filtro',
|
|
59
56
|
filterPanelRemoveAll: 'Remover todos',
|
package/node/locales/faIR.js
CHANGED
|
@@ -34,7 +34,6 @@ const faIRGrid = {
|
|
|
34
34
|
// toolbarPromptControlWithRecordingPlaceholder: 'Type or record a prompt…',
|
|
35
35
|
// toolbarPromptControlRecordingPlaceholder: 'Listening for prompt…',
|
|
36
36
|
// toolbarPromptControlLabel: 'Prompt input',
|
|
37
|
-
// toolbarPromptControlDeleteIconLabel: 'Clear',
|
|
38
37
|
// toolbarPromptControlRecordButtonDefaultLabel: 'Record',
|
|
39
38
|
// toolbarPromptControlRecordButtonActiveLabel: 'Stop recording',
|
|
40
39
|
// toolbarPromptControlSendActionLabel: 'Send',
|
package/node/locales/fiFI.js
CHANGED
|
@@ -34,7 +34,6 @@ const fiFIGrid = {
|
|
|
34
34
|
// toolbarPromptControlWithRecordingPlaceholder: 'Type or record a prompt…',
|
|
35
35
|
// toolbarPromptControlRecordingPlaceholder: 'Listening for prompt…',
|
|
36
36
|
// toolbarPromptControlLabel: 'Prompt input',
|
|
37
|
-
// toolbarPromptControlDeleteIconLabel: 'Clear',
|
|
38
37
|
// toolbarPromptControlRecordButtonDefaultLabel: 'Record',
|
|
39
38
|
// toolbarPromptControlRecordButtonActiveLabel: 'Stop recording',
|
|
40
39
|
// toolbarPromptControlSendActionLabel: 'Send',
|
package/node/locales/frFR.js
CHANGED
|
@@ -34,7 +34,6 @@ const frFRGrid = {
|
|
|
34
34
|
// toolbarPromptControlWithRecordingPlaceholder: 'Type or record a prompt…',
|
|
35
35
|
// toolbarPromptControlRecordingPlaceholder: 'Listening for prompt…',
|
|
36
36
|
// toolbarPromptControlLabel: 'Prompt input',
|
|
37
|
-
// toolbarPromptControlDeleteIconLabel: 'Clear',
|
|
38
37
|
// toolbarPromptControlRecordButtonDefaultLabel: 'Record',
|
|
39
38
|
// toolbarPromptControlRecordButtonActiveLabel: 'Stop recording',
|
|
40
39
|
// toolbarPromptControlSendActionLabel: 'Send',
|
package/node/locales/heIL.js
CHANGED
|
@@ -30,17 +30,15 @@ const heILGrid = {
|
|
|
30
30
|
toolbarQuickFilterLabel: 'חיפוש',
|
|
31
31
|
toolbarQuickFilterDeleteIconLabel: 'ניקוי',
|
|
32
32
|
// Prompt toolbar field
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
// toolbarPromptControlErrorMessage: 'An error occurred while processing the request. Please try again with a different prompt.',
|
|
43
|
-
|
|
33
|
+
toolbarPromptControlPlaceholder: 'הקלד ערך…',
|
|
34
|
+
toolbarPromptControlWithRecordingPlaceholder: 'הקלד או הקלט ערך…',
|
|
35
|
+
toolbarPromptControlRecordingPlaceholder: 'ממתין להנחיה…',
|
|
36
|
+
toolbarPromptControlLabel: 'הזן ערך',
|
|
37
|
+
toolbarPromptControlRecordButtonDefaultLabel: 'הקלטה',
|
|
38
|
+
toolbarPromptControlRecordButtonActiveLabel: 'הפסק הקלטה',
|
|
39
|
+
toolbarPromptControlSendActionLabel: 'שלח',
|
|
40
|
+
toolbarPromptControlSendActionAriaLabel: 'שלח ערך',
|
|
41
|
+
toolbarPromptControlErrorMessage: 'התרחשה שגיאה בזמן העיבוד של הבקשה. נסה שוב עם ערך אחר בבקשה.',
|
|
44
42
|
// Export selector toolbar button text
|
|
45
43
|
toolbarExport: 'ייצוא',
|
|
46
44
|
toolbarExportLabel: 'ייצוא',
|
|
@@ -52,8 +50,7 @@ const heILGrid = {
|
|
|
52
50
|
columnsManagementNoColumns: 'אין עמודות',
|
|
53
51
|
columnsManagementShowHideAllText: 'הצג/הסתר הכל',
|
|
54
52
|
columnsManagementReset: 'אתחול',
|
|
55
|
-
|
|
56
|
-
|
|
53
|
+
columnsManagementDeleteIconLabel: 'נקה',
|
|
57
54
|
// Filter panel text
|
|
58
55
|
filterPanelAddFilter: 'הוסף מסנן',
|
|
59
56
|
filterPanelRemoveAll: 'מחק הכל',
|
|
@@ -67,9 +64,9 @@ const heILGrid = {
|
|
|
67
64
|
filterPanelInputPlaceholder: 'ערך מסנן',
|
|
68
65
|
// Filter operators text
|
|
69
66
|
filterOperatorContains: 'מכיל',
|
|
70
|
-
|
|
67
|
+
filterOperatorDoesNotContain: 'לא מכיל',
|
|
71
68
|
filterOperatorEquals: 'שווה',
|
|
72
|
-
|
|
69
|
+
filterOperatorDoesNotEqual: 'לא שווה',
|
|
73
70
|
filterOperatorStartsWith: 'מתחיל ב-',
|
|
74
71
|
filterOperatorEndsWith: 'נגמר ב-',
|
|
75
72
|
filterOperatorIs: 'הינו',
|
|
@@ -89,9 +86,9 @@ const heILGrid = {
|
|
|
89
86
|
'filterOperator<=': '<=',
|
|
90
87
|
// Header filter operators text
|
|
91
88
|
headerFilterOperatorContains: 'מכיל',
|
|
92
|
-
|
|
89
|
+
headerFilterOperatorDoesNotContain: 'לא מכיל',
|
|
93
90
|
headerFilterOperatorEquals: 'שווה',
|
|
94
|
-
|
|
91
|
+
headerFilterOperatorDoesNotEqual: 'לא שווה',
|
|
95
92
|
headerFilterOperatorStartsWith: 'מתחיל ב-',
|
|
96
93
|
headerFilterOperatorEndsWith: 'נגמר ב-',
|
|
97
94
|
headerFilterOperatorIs: 'הינו',
|
package/node/locales/hrHR.js
CHANGED
|
@@ -42,7 +42,6 @@ const hrHRGrid = {
|
|
|
42
42
|
// toolbarPromptControlWithRecordingPlaceholder: 'Type or record a prompt…',
|
|
43
43
|
// toolbarPromptControlRecordingPlaceholder: 'Listening for prompt…',
|
|
44
44
|
// toolbarPromptControlLabel: 'Prompt input',
|
|
45
|
-
// toolbarPromptControlDeleteIconLabel: 'Clear',
|
|
46
45
|
// toolbarPromptControlRecordButtonDefaultLabel: 'Record',
|
|
47
46
|
// toolbarPromptControlRecordButtonActiveLabel: 'Stop recording',
|
|
48
47
|
// toolbarPromptControlSendActionLabel: 'Send',
|
package/node/locales/huHU.js
CHANGED
|
@@ -34,7 +34,6 @@ const huHUGrid = {
|
|
|
34
34
|
// toolbarPromptControlWithRecordingPlaceholder: 'Type or record a prompt…',
|
|
35
35
|
// toolbarPromptControlRecordingPlaceholder: 'Listening for prompt…',
|
|
36
36
|
// toolbarPromptControlLabel: 'Prompt input',
|
|
37
|
-
// toolbarPromptControlDeleteIconLabel: 'Clear',
|
|
38
37
|
// toolbarPromptControlRecordButtonDefaultLabel: 'Record',
|
|
39
38
|
// toolbarPromptControlRecordButtonActiveLabel: 'Stop recording',
|
|
40
39
|
// toolbarPromptControlSendActionLabel: 'Send',
|
package/node/locales/isIS.js
CHANGED
|
@@ -34,7 +34,6 @@ const isISGrid = {
|
|
|
34
34
|
// toolbarPromptControlWithRecordingPlaceholder: 'Type or record a prompt…',
|
|
35
35
|
// toolbarPromptControlRecordingPlaceholder: 'Listening for prompt…',
|
|
36
36
|
// toolbarPromptControlLabel: 'Prompt input',
|
|
37
|
-
// toolbarPromptControlDeleteIconLabel: 'Clear',
|
|
38
37
|
// toolbarPromptControlRecordButtonDefaultLabel: 'Record',
|
|
39
38
|
// toolbarPromptControlRecordButtonActiveLabel: 'Stop recording',
|
|
40
39
|
// toolbarPromptControlSendActionLabel: 'Send',
|
package/node/locales/itIT.js
CHANGED
|
@@ -34,7 +34,6 @@ const itITGrid = {
|
|
|
34
34
|
// toolbarPromptControlWithRecordingPlaceholder: 'Type or record a prompt…',
|
|
35
35
|
// toolbarPromptControlRecordingPlaceholder: 'Listening for prompt…',
|
|
36
36
|
// toolbarPromptControlLabel: 'Prompt input',
|
|
37
|
-
// toolbarPromptControlDeleteIconLabel: 'Clear',
|
|
38
37
|
// toolbarPromptControlRecordButtonDefaultLabel: 'Record',
|
|
39
38
|
// toolbarPromptControlRecordButtonActiveLabel: 'Stop recording',
|
|
40
39
|
// toolbarPromptControlSendActionLabel: 'Send',
|
package/node/locales/jaJP.js
CHANGED
|
@@ -34,7 +34,6 @@ const jaJPGrid = {
|
|
|
34
34
|
// toolbarPromptControlWithRecordingPlaceholder: 'Type or record a prompt…',
|
|
35
35
|
// toolbarPromptControlRecordingPlaceholder: 'Listening for prompt…',
|
|
36
36
|
// toolbarPromptControlLabel: 'Prompt input',
|
|
37
|
-
// toolbarPromptControlDeleteIconLabel: 'Clear',
|
|
38
37
|
// toolbarPromptControlRecordButtonDefaultLabel: 'Record',
|
|
39
38
|
// toolbarPromptControlRecordButtonActiveLabel: 'Stop recording',
|
|
40
39
|
// toolbarPromptControlSendActionLabel: 'Send',
|
package/node/locales/koKR.js
CHANGED
|
@@ -34,7 +34,6 @@ const koKRGrid = {
|
|
|
34
34
|
// toolbarPromptControlWithRecordingPlaceholder: 'Type or record a prompt…',
|
|
35
35
|
// toolbarPromptControlRecordingPlaceholder: 'Listening for prompt…',
|
|
36
36
|
// toolbarPromptControlLabel: 'Prompt input',
|
|
37
|
-
// toolbarPromptControlDeleteIconLabel: 'Clear',
|
|
38
37
|
// toolbarPromptControlRecordButtonDefaultLabel: 'Record',
|
|
39
38
|
// toolbarPromptControlRecordButtonActiveLabel: 'Stop recording',
|
|
40
39
|
// toolbarPromptControlSendActionLabel: 'Send',
|
package/node/locales/nbNO.js
CHANGED
|
@@ -34,7 +34,6 @@ const nbNOGrid = {
|
|
|
34
34
|
// toolbarPromptControlWithRecordingPlaceholder: 'Type or record a prompt…',
|
|
35
35
|
// toolbarPromptControlRecordingPlaceholder: 'Listening for prompt…',
|
|
36
36
|
// toolbarPromptControlLabel: 'Prompt input',
|
|
37
|
-
// toolbarPromptControlDeleteIconLabel: 'Clear',
|
|
38
37
|
// toolbarPromptControlRecordButtonDefaultLabel: 'Record',
|
|
39
38
|
// toolbarPromptControlRecordButtonActiveLabel: 'Stop recording',
|
|
40
39
|
// toolbarPromptControlSendActionLabel: 'Send',
|
package/node/locales/nlNL.js
CHANGED
|
@@ -34,7 +34,6 @@ const nlNLGrid = {
|
|
|
34
34
|
// toolbarPromptControlWithRecordingPlaceholder: 'Type or record a prompt…',
|
|
35
35
|
// toolbarPromptControlRecordingPlaceholder: 'Listening for prompt…',
|
|
36
36
|
// toolbarPromptControlLabel: 'Prompt input',
|
|
37
|
-
// toolbarPromptControlDeleteIconLabel: 'Clear',
|
|
38
37
|
// toolbarPromptControlRecordButtonDefaultLabel: 'Record',
|
|
39
38
|
// toolbarPromptControlRecordButtonActiveLabel: 'Stop recording',
|
|
40
39
|
// toolbarPromptControlSendActionLabel: 'Send',
|
package/node/locales/nnNO.js
CHANGED
|
@@ -34,7 +34,6 @@ const nnNOGrid = {
|
|
|
34
34
|
// toolbarPromptControlWithRecordingPlaceholder: 'Type or record a prompt…',
|
|
35
35
|
// toolbarPromptControlRecordingPlaceholder: 'Listening for prompt…',
|
|
36
36
|
// toolbarPromptControlLabel: 'Prompt input',
|
|
37
|
-
// toolbarPromptControlDeleteIconLabel: 'Clear',
|
|
38
37
|
// toolbarPromptControlRecordButtonDefaultLabel: 'Record',
|
|
39
38
|
// toolbarPromptControlRecordButtonActiveLabel: 'Stop recording',
|
|
40
39
|
// toolbarPromptControlSendActionLabel: 'Send',
|
package/node/locales/plPL.js
CHANGED
|
@@ -34,7 +34,6 @@ const plPLGrid = {
|
|
|
34
34
|
// toolbarPromptControlWithRecordingPlaceholder: 'Type or record a prompt…',
|
|
35
35
|
// toolbarPromptControlRecordingPlaceholder: 'Listening for prompt…',
|
|
36
36
|
// toolbarPromptControlLabel: 'Prompt input',
|
|
37
|
-
// toolbarPromptControlDeleteIconLabel: 'Clear',
|
|
38
37
|
// toolbarPromptControlRecordButtonDefaultLabel: 'Record',
|
|
39
38
|
// toolbarPromptControlRecordButtonActiveLabel: 'Stop recording',
|
|
40
39
|
// toolbarPromptControlSendActionLabel: 'Send',
|
package/node/locales/ptBR.js
CHANGED
|
@@ -30,17 +30,15 @@ const ptBRGrid = {
|
|
|
30
30
|
toolbarQuickFilterLabel: 'Procurar',
|
|
31
31
|
toolbarQuickFilterDeleteIconLabel: 'Limpar',
|
|
32
32
|
// Prompt toolbar field
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
// toolbarPromptControlErrorMessage: 'An error occurred while processing the request. Please try again with a different prompt.',
|
|
43
|
-
|
|
33
|
+
toolbarPromptControlPlaceholder: 'Digite um prompt…',
|
|
34
|
+
toolbarPromptControlWithRecordingPlaceholder: 'Digite ou grave um prompt…',
|
|
35
|
+
toolbarPromptControlRecordingPlaceholder: 'Ouvindo o prompt…',
|
|
36
|
+
toolbarPromptControlLabel: 'Entrada de prompt',
|
|
37
|
+
toolbarPromptControlRecordButtonDefaultLabel: 'Gravar',
|
|
38
|
+
toolbarPromptControlRecordButtonActiveLabel: 'Parar gravação',
|
|
39
|
+
toolbarPromptControlSendActionLabel: 'Enviar',
|
|
40
|
+
toolbarPromptControlSendActionAriaLabel: 'Enviar prompt',
|
|
41
|
+
toolbarPromptControlErrorMessage: 'Ocorreu um erro ao processar a solicitação. Por favor, tente novamente com um prompt diferente.',
|
|
44
42
|
// Export selector toolbar button text
|
|
45
43
|
toolbarExport: 'Exportar',
|
|
46
44
|
toolbarExportLabel: 'Exportar',
|
|
@@ -52,8 +50,7 @@ const ptBRGrid = {
|
|
|
52
50
|
columnsManagementNoColumns: 'Nenhuma coluna',
|
|
53
51
|
columnsManagementShowHideAllText: 'Mostrar/Ocultar Todas',
|
|
54
52
|
columnsManagementReset: 'Redefinir',
|
|
55
|
-
|
|
56
|
-
|
|
53
|
+
columnsManagementDeleteIconLabel: 'Limpar',
|
|
57
54
|
// Filter panel text
|
|
58
55
|
filterPanelAddFilter: 'Adicionar filtro',
|
|
59
56
|
filterPanelRemoveAll: 'Remover todos',
|
package/node/locales/ptPT.js
CHANGED
|
@@ -30,17 +30,15 @@ const ptPTGrid = {
|
|
|
30
30
|
toolbarQuickFilterLabel: 'Procurar',
|
|
31
31
|
toolbarQuickFilterDeleteIconLabel: 'Claro',
|
|
32
32
|
// Prompt toolbar field
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
// toolbarPromptControlErrorMessage: 'An error occurred while processing the request. Please try again with a different prompt.',
|
|
43
|
-
|
|
33
|
+
toolbarPromptControlPlaceholder: 'Digite um prompt…',
|
|
34
|
+
toolbarPromptControlWithRecordingPlaceholder: 'Digite ou grave um prompt…',
|
|
35
|
+
toolbarPromptControlRecordingPlaceholder: 'Ouvindo o prompt…',
|
|
36
|
+
toolbarPromptControlLabel: 'Entrada de prompt',
|
|
37
|
+
toolbarPromptControlRecordButtonDefaultLabel: 'Gravar',
|
|
38
|
+
toolbarPromptControlRecordButtonActiveLabel: 'Parar gravação',
|
|
39
|
+
toolbarPromptControlSendActionLabel: 'Enviar',
|
|
40
|
+
toolbarPromptControlSendActionAriaLabel: 'Enviar prompt',
|
|
41
|
+
toolbarPromptControlErrorMessage: 'Ocorreu um erro ao processar a solicitação. Por favor, tente novamente com um prompt diferente.',
|
|
44
42
|
// Export selector toolbar button text
|
|
45
43
|
toolbarExport: 'Exportar',
|
|
46
44
|
toolbarExportLabel: 'Exportar',
|
|
@@ -52,8 +50,7 @@ const ptPTGrid = {
|
|
|
52
50
|
columnsManagementNoColumns: 'Sem colunas',
|
|
53
51
|
columnsManagementShowHideAllText: 'Mostrar/Ocultar Todas',
|
|
54
52
|
columnsManagementReset: 'Repor',
|
|
55
|
-
|
|
56
|
-
|
|
53
|
+
columnsManagementDeleteIconLabel: 'Limpar',
|
|
57
54
|
// Filter panel text
|
|
58
55
|
filterPanelAddFilter: 'Adicionar filtro',
|
|
59
56
|
filterPanelRemoveAll: 'Excluir todos',
|
package/node/locales/roRO.js
CHANGED
|
@@ -34,7 +34,6 @@ const roROGrid = {
|
|
|
34
34
|
// toolbarPromptControlWithRecordingPlaceholder: 'Type or record a prompt…',
|
|
35
35
|
// toolbarPromptControlRecordingPlaceholder: 'Listening for prompt…',
|
|
36
36
|
// toolbarPromptControlLabel: 'Prompt input',
|
|
37
|
-
// toolbarPromptControlDeleteIconLabel: 'Clear',
|
|
38
37
|
// toolbarPromptControlRecordButtonDefaultLabel: 'Record',
|
|
39
38
|
// toolbarPromptControlRecordButtonActiveLabel: 'Stop recording',
|
|
40
39
|
// toolbarPromptControlSendActionLabel: 'Send',
|
package/node/locales/ruRU.js
CHANGED
|
@@ -49,7 +49,6 @@ const ruRUGrid = {
|
|
|
49
49
|
// toolbarPromptControlWithRecordingPlaceholder: 'Type or record a prompt…',
|
|
50
50
|
// toolbarPromptControlRecordingPlaceholder: 'Listening for prompt…',
|
|
51
51
|
// toolbarPromptControlLabel: 'Prompt input',
|
|
52
|
-
// toolbarPromptControlDeleteIconLabel: 'Clear',
|
|
53
52
|
// toolbarPromptControlRecordButtonDefaultLabel: 'Record',
|
|
54
53
|
// toolbarPromptControlRecordButtonActiveLabel: 'Stop recording',
|
|
55
54
|
// toolbarPromptControlSendActionLabel: 'Send',
|
package/node/locales/skSK.js
CHANGED
|
@@ -42,7 +42,6 @@ const skSKGrid = {
|
|
|
42
42
|
// toolbarPromptControlWithRecordingPlaceholder: 'Type or record a prompt…',
|
|
43
43
|
// toolbarPromptControlRecordingPlaceholder: 'Listening for prompt…',
|
|
44
44
|
// toolbarPromptControlLabel: 'Prompt input',
|
|
45
|
-
// toolbarPromptControlDeleteIconLabel: 'Clear',
|
|
46
45
|
// toolbarPromptControlRecordButtonDefaultLabel: 'Record',
|
|
47
46
|
// toolbarPromptControlRecordButtonActiveLabel: 'Stop recording',
|
|
48
47
|
// toolbarPromptControlSendActionLabel: 'Send',
|
package/node/locales/svSE.js
CHANGED
|
@@ -34,7 +34,6 @@ const svSEGrid = {
|
|
|
34
34
|
// toolbarPromptControlWithRecordingPlaceholder: 'Type or record a prompt…',
|
|
35
35
|
// toolbarPromptControlRecordingPlaceholder: 'Listening for prompt…',
|
|
36
36
|
// toolbarPromptControlLabel: 'Prompt input',
|
|
37
|
-
// toolbarPromptControlDeleteIconLabel: 'Clear',
|
|
38
37
|
// toolbarPromptControlRecordButtonDefaultLabel: 'Record',
|
|
39
38
|
// toolbarPromptControlRecordButtonActiveLabel: 'Stop recording',
|
|
40
39
|
// toolbarPromptControlSendActionLabel: 'Send',
|
package/node/locales/trTR.js
CHANGED
|
@@ -30,17 +30,15 @@ const trTRGrid = {
|
|
|
30
30
|
toolbarQuickFilterLabel: 'Ara',
|
|
31
31
|
toolbarQuickFilterDeleteIconLabel: 'Temizle',
|
|
32
32
|
// Prompt toolbar field
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
// toolbarPromptControlErrorMessage: 'An error occurred while processing the request. Please try again with a different prompt.',
|
|
43
|
-
|
|
33
|
+
toolbarPromptControlPlaceholder: 'Bir istem yazın…',
|
|
34
|
+
toolbarPromptControlWithRecordingPlaceholder: 'Bir istem yazın veya kaydedin…',
|
|
35
|
+
toolbarPromptControlRecordingPlaceholder: 'İstem dinleniyor…',
|
|
36
|
+
toolbarPromptControlLabel: 'İstem girişi',
|
|
37
|
+
toolbarPromptControlRecordButtonDefaultLabel: 'Kaydet',
|
|
38
|
+
toolbarPromptControlRecordButtonActiveLabel: 'Kaydı durdur',
|
|
39
|
+
toolbarPromptControlSendActionLabel: 'Gönder',
|
|
40
|
+
toolbarPromptControlSendActionAriaLabel: 'İstemi gönder',
|
|
41
|
+
toolbarPromptControlErrorMessage: 'İstek işlenirken bir hata oluştu. Lütfen farklı bir istemle tekrar deneyin.',
|
|
44
42
|
// Export selector toolbar button text
|
|
45
43
|
toolbarExport: 'Dışa aktar',
|
|
46
44
|
toolbarExportLabel: 'Dışa aktar',
|
|
@@ -52,8 +50,7 @@ const trTRGrid = {
|
|
|
52
50
|
columnsManagementNoColumns: 'Kolon yok',
|
|
53
51
|
columnsManagementShowHideAllText: 'Hepsini Göster/Gizle',
|
|
54
52
|
columnsManagementReset: 'Sıfırla',
|
|
55
|
-
|
|
56
|
-
|
|
53
|
+
columnsManagementDeleteIconLabel: 'Temizle',
|
|
57
54
|
// Filter panel text
|
|
58
55
|
filterPanelAddFilter: 'Filtre Ekle',
|
|
59
56
|
filterPanelRemoveAll: 'Hepsini kaldır',
|
|
@@ -67,9 +64,9 @@ const trTRGrid = {
|
|
|
67
64
|
filterPanelInputPlaceholder: 'Filtre değeri',
|
|
68
65
|
// Filter operators text
|
|
69
66
|
filterOperatorContains: 'içerir',
|
|
70
|
-
|
|
67
|
+
filterOperatorDoesNotContain: 'içermiyor',
|
|
71
68
|
filterOperatorEquals: 'eşittir',
|
|
72
|
-
|
|
69
|
+
filterOperatorDoesNotEqual: 'eşit değil',
|
|
73
70
|
filterOperatorStartsWith: 'ile başlar',
|
|
74
71
|
filterOperatorEndsWith: 'ile biter',
|
|
75
72
|
filterOperatorIs: 'eşittir',
|
package/node/locales/ukUA.js
CHANGED
|
@@ -49,7 +49,6 @@ const ukUAGrid = {
|
|
|
49
49
|
// toolbarPromptControlWithRecordingPlaceholder: 'Type or record a prompt…',
|
|
50
50
|
// toolbarPromptControlRecordingPlaceholder: 'Listening for prompt…',
|
|
51
51
|
// toolbarPromptControlLabel: 'Prompt input',
|
|
52
|
-
// toolbarPromptControlDeleteIconLabel: 'Clear',
|
|
53
52
|
// toolbarPromptControlRecordButtonDefaultLabel: 'Record',
|
|
54
53
|
// toolbarPromptControlRecordButtonActiveLabel: 'Stop recording',
|
|
55
54
|
// toolbarPromptControlSendActionLabel: 'Send',
|
package/node/locales/urPK.js
CHANGED
|
@@ -34,7 +34,6 @@ const urPKGrid = {
|
|
|
34
34
|
// toolbarPromptControlWithRecordingPlaceholder: 'Type or record a prompt…',
|
|
35
35
|
// toolbarPromptControlRecordingPlaceholder: 'Listening for prompt…',
|
|
36
36
|
// toolbarPromptControlLabel: 'Prompt input',
|
|
37
|
-
// toolbarPromptControlDeleteIconLabel: 'Clear',
|
|
38
37
|
// toolbarPromptControlRecordButtonDefaultLabel: 'Record',
|
|
39
38
|
// toolbarPromptControlRecordButtonActiveLabel: 'Stop recording',
|
|
40
39
|
// toolbarPromptControlSendActionLabel: 'Send',
|
package/node/locales/viVN.js
CHANGED
|
@@ -34,7 +34,6 @@ const viVNGrid = {
|
|
|
34
34
|
// toolbarPromptControlWithRecordingPlaceholder: 'Type or record a prompt…',
|
|
35
35
|
// toolbarPromptControlRecordingPlaceholder: 'Listening for prompt…',
|
|
36
36
|
// toolbarPromptControlLabel: 'Prompt input',
|
|
37
|
-
// toolbarPromptControlDeleteIconLabel: 'Clear',
|
|
38
37
|
// toolbarPromptControlRecordButtonDefaultLabel: 'Record',
|
|
39
38
|
// toolbarPromptControlRecordButtonActiveLabel: 'Stop recording',
|
|
40
39
|
// toolbarPromptControlSendActionLabel: 'Send',
|
package/node/locales/zhCN.js
CHANGED
|
@@ -30,17 +30,15 @@ const zhCNGrid = {
|
|
|
30
30
|
toolbarQuickFilterLabel: '搜索',
|
|
31
31
|
toolbarQuickFilterDeleteIconLabel: '清除',
|
|
32
32
|
// Prompt toolbar field
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
// toolbarPromptControlErrorMessage: 'An error occurred while processing the request. Please try again with a different prompt.',
|
|
43
|
-
|
|
33
|
+
toolbarPromptControlPlaceholder: '输入提示词',
|
|
34
|
+
toolbarPromptControlWithRecordingPlaceholder: '输入提示词或点击录音',
|
|
35
|
+
toolbarPromptControlRecordingPlaceholder: '正在录音…',
|
|
36
|
+
toolbarPromptControlLabel: '提示词输入',
|
|
37
|
+
toolbarPromptControlRecordButtonDefaultLabel: '录音',
|
|
38
|
+
toolbarPromptControlRecordButtonActiveLabel: '停止录音',
|
|
39
|
+
toolbarPromptControlSendActionLabel: '发送',
|
|
40
|
+
toolbarPromptControlSendActionAriaLabel: '发送提示词',
|
|
41
|
+
toolbarPromptControlErrorMessage: '处理请求时出现错误。请使用其他提示词再试。',
|
|
44
42
|
// Export selector toolbar button text
|
|
45
43
|
toolbarExport: '导出',
|
|
46
44
|
toolbarExportLabel: '导出',
|
|
@@ -52,8 +50,7 @@ const zhCNGrid = {
|
|
|
52
50
|
columnsManagementNoColumns: '没有列',
|
|
53
51
|
columnsManagementShowHideAllText: '显示/隐藏所有',
|
|
54
52
|
columnsManagementReset: '重置',
|
|
55
|
-
|
|
56
|
-
|
|
53
|
+
columnsManagementDeleteIconLabel: '清除',
|
|
57
54
|
// Filter panel text
|
|
58
55
|
filterPanelAddFilter: '添加筛选器',
|
|
59
56
|
filterPanelRemoveAll: '清除全部',
|
package/node/locales/zhHK.js
CHANGED
|
@@ -34,7 +34,6 @@ const zhHKGrid = {
|
|
|
34
34
|
// toolbarPromptControlWithRecordingPlaceholder: 'Type or record a prompt…',
|
|
35
35
|
// toolbarPromptControlRecordingPlaceholder: 'Listening for prompt…',
|
|
36
36
|
// toolbarPromptControlLabel: 'Prompt input',
|
|
37
|
-
// toolbarPromptControlDeleteIconLabel: 'Clear',
|
|
38
37
|
// toolbarPromptControlRecordButtonDefaultLabel: 'Record',
|
|
39
38
|
// toolbarPromptControlRecordButtonActiveLabel: 'Stop recording',
|
|
40
39
|
// toolbarPromptControlSendActionLabel: 'Send',
|
package/node/locales/zhTW.js
CHANGED
|
@@ -34,7 +34,6 @@ const zhTWGrid = {
|
|
|
34
34
|
// toolbarPromptControlWithRecordingPlaceholder: 'Type or record a prompt…',
|
|
35
35
|
// toolbarPromptControlRecordingPlaceholder: 'Listening for prompt…',
|
|
36
36
|
// toolbarPromptControlLabel: 'Prompt input',
|
|
37
|
-
// toolbarPromptControlDeleteIconLabel: 'Clear',
|
|
38
37
|
// toolbarPromptControlRecordButtonDefaultLabel: 'Record',
|
|
39
38
|
// toolbarPromptControlRecordButtonActiveLabel: 'Stop recording',
|
|
40
39
|
// toolbarPromptControlSendActionLabel: 'Send',
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mui/x-data-grid",
|
|
3
|
-
"version": "8.0.0-alpha.
|
|
3
|
+
"version": "8.0.0-alpha.3",
|
|
4
4
|
"description": "The Community plan edition of the Data Grid components (MUI X).",
|
|
5
5
|
"author": "MUI Team",
|
|
6
6
|
"main": "./node/index.js",
|
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
"clsx": "^2.1.1",
|
|
43
43
|
"prop-types": "^15.8.1",
|
|
44
44
|
"reselect": "^5.1.1",
|
|
45
|
-
"@mui/x-internals": "8.0.0-alpha.
|
|
45
|
+
"@mui/x-internals": "8.0.0-alpha.2"
|
|
46
46
|
},
|
|
47
47
|
"peerDependencies": {
|
|
48
48
|
"@emotion/react": "^11.9.0",
|