@mui/x-data-grid 8.0.0-alpha.0 → 8.0.0-alpha.1
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 +429 -5
- package/README.md +2 -2
- package/components/GridLoadingOverlay.d.ts +2 -2
- package/components/GridLoadingOverlay.js +4 -4
- package/components/cell/GridCell.js +3 -0
- package/components/columnsManagement/GridColumnsManagement.d.ts +2 -0
- package/components/columnsManagement/GridColumnsManagement.js +53 -6
- package/constants/gridClasses.d.ts +24 -0
- package/constants/gridClasses.js +1 -1
- package/constants/localeTextConstants.js +12 -0
- package/hooks/features/columnHeaders/useGridColumnHeaders.js +2 -2
- 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 +13 -0
- package/locales/beBY.js +13 -0
- package/locales/bgBG.js +14 -0
- package/locales/csCZ.js +14 -0
- package/locales/daDK.js +14 -0
- package/locales/deDE.js +14 -0
- package/locales/elGR.js +13 -0
- package/locales/esES.js +18 -4
- package/locales/faIR.js +14 -0
- package/locales/fiFI.js +14 -0
- package/locales/frFR.js +14 -0
- package/locales/heIL.js +14 -0
- package/locales/hrHR.js +14 -0
- package/locales/huHU.js +14 -0
- package/locales/isIS.js +13 -0
- package/locales/itIT.js +14 -0
- package/locales/jaJP.js +14 -0
- package/locales/koKR.js +13 -0
- package/locales/nbNO.js +14 -0
- package/locales/nlNL.js +14 -0
- package/locales/nnNO.js +14 -0
- package/locales/plPL.js +14 -0
- package/locales/ptBR.js +14 -0
- package/locales/ptPT.js +14 -0
- package/locales/roRO.js +13 -0
- package/locales/ruRU.js +14 -0
- package/locales/skSK.js +13 -0
- package/locales/svSE.js +18 -5
- package/locales/trTR.js +14 -0
- package/locales/ukUA.js +13 -0
- package/locales/urPK.js +13 -0
- package/locales/viVN.js +14 -0
- package/locales/zhCN.js +18 -4
- package/locales/zhHK.js +13 -0
- package/locales/zhTW.js +13 -0
- package/models/api/gridLocaleTextApi.d.ts +11 -0
- package/models/colDef/gridColDef.d.ts +4 -0
- package/models/gridDataSource.d.ts +12 -12
- package/modern/components/GridLoadingOverlay.js +4 -4
- package/modern/components/cell/GridCell.js +3 -0
- package/modern/components/columnsManagement/GridColumnsManagement.js +53 -6
- package/modern/constants/gridClasses.js +1 -1
- package/modern/constants/localeTextConstants.js +12 -0
- package/modern/hooks/features/columnHeaders/useGridColumnHeaders.js +2 -2
- 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 +13 -0
- package/modern/locales/beBY.js +13 -0
- package/modern/locales/bgBG.js +14 -0
- package/modern/locales/csCZ.js +14 -0
- package/modern/locales/daDK.js +14 -0
- package/modern/locales/deDE.js +14 -0
- package/modern/locales/elGR.js +13 -0
- package/modern/locales/esES.js +18 -4
- package/modern/locales/faIR.js +14 -0
- package/modern/locales/fiFI.js +14 -0
- package/modern/locales/frFR.js +14 -0
- package/modern/locales/heIL.js +14 -0
- package/modern/locales/hrHR.js +14 -0
- package/modern/locales/huHU.js +14 -0
- package/modern/locales/isIS.js +13 -0
- package/modern/locales/itIT.js +14 -0
- package/modern/locales/jaJP.js +14 -0
- package/modern/locales/koKR.js +13 -0
- package/modern/locales/nbNO.js +14 -0
- package/modern/locales/nlNL.js +14 -0
- package/modern/locales/nnNO.js +14 -0
- package/modern/locales/plPL.js +14 -0
- package/modern/locales/ptBR.js +14 -0
- package/modern/locales/ptPT.js +14 -0
- package/modern/locales/roRO.js +13 -0
- package/modern/locales/ruRU.js +14 -0
- package/modern/locales/skSK.js +13 -0
- package/modern/locales/svSE.js +18 -5
- package/modern/locales/trTR.js +14 -0
- package/modern/locales/ukUA.js +13 -0
- package/modern/locales/urPK.js +13 -0
- package/modern/locales/viVN.js +14 -0
- package/modern/locales/zhCN.js +18 -4
- package/modern/locales/zhHK.js +13 -0
- package/modern/locales/zhTW.js +13 -0
- package/node/components/GridLoadingOverlay.js +4 -4
- package/node/components/cell/GridCell.js +3 -0
- package/node/components/columnsManagement/GridColumnsManagement.js +53 -6
- package/node/constants/gridClasses.js +1 -1
- package/node/constants/localeTextConstants.js +12 -0
- package/node/hooks/features/columnHeaders/useGridColumnHeaders.js +2 -2
- 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 +13 -0
- package/node/locales/beBY.js +13 -0
- package/node/locales/bgBG.js +14 -0
- package/node/locales/csCZ.js +14 -0
- package/node/locales/daDK.js +14 -0
- package/node/locales/deDE.js +14 -0
- package/node/locales/elGR.js +13 -0
- package/node/locales/esES.js +18 -4
- package/node/locales/faIR.js +14 -0
- package/node/locales/fiFI.js +14 -0
- package/node/locales/frFR.js +14 -0
- package/node/locales/heIL.js +14 -0
- package/node/locales/hrHR.js +14 -0
- package/node/locales/huHU.js +14 -0
- package/node/locales/isIS.js +13 -0
- package/node/locales/itIT.js +14 -0
- package/node/locales/jaJP.js +14 -0
- package/node/locales/koKR.js +13 -0
- package/node/locales/nbNO.js +14 -0
- package/node/locales/nlNL.js +14 -0
- package/node/locales/nnNO.js +14 -0
- package/node/locales/plPL.js +14 -0
- package/node/locales/ptBR.js +14 -0
- package/node/locales/ptPT.js +14 -0
- package/node/locales/roRO.js +13 -0
- package/node/locales/ruRU.js +14 -0
- package/node/locales/skSK.js +13 -0
- package/node/locales/svSE.js +18 -5
- package/node/locales/trTR.js +14 -0
- package/node/locales/ukUA.js +13 -0
- package/node/locales/urPK.js +13 -0
- package/node/locales/viVN.js +14 -0
- package/node/locales/zhCN.js +18 -4
- package/node/locales/zhHK.js +13 -0
- package/node/locales/zhTW.js +13 -0
- package/package.json +4 -4
package/locales/itIT.js
CHANGED
|
@@ -23,6 +23,18 @@ 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
|
+
// toolbarPromptControlDeleteIconLabel: 'Clear',
|
|
32
|
+
// toolbarPromptControlRecordButtonDefaultLabel: 'Record',
|
|
33
|
+
// toolbarPromptControlRecordButtonActiveLabel: 'Stop recording',
|
|
34
|
+
// toolbarPromptControlSendActionLabel: 'Send',
|
|
35
|
+
// toolbarPromptControlSendActionAriaLabel: 'Send prompt',
|
|
36
|
+
// toolbarPromptControlErrorMessage: 'An error occurred while processing the request. Please try again with a different prompt.',
|
|
37
|
+
|
|
26
38
|
// Export selector toolbar button text
|
|
27
39
|
toolbarExport: 'Esporta',
|
|
28
40
|
toolbarExportLabel: 'Esporta',
|
|
@@ -34,6 +46,8 @@ const itITGrid = {
|
|
|
34
46
|
columnsManagementNoColumns: 'Nessuna colonna',
|
|
35
47
|
columnsManagementShowHideAllText: 'Mostra/Nascondi Tutto',
|
|
36
48
|
columnsManagementReset: 'Resetta',
|
|
49
|
+
// columnsManagementDeleteIconLabel: 'Clear',
|
|
50
|
+
|
|
37
51
|
// Filter panel text
|
|
38
52
|
filterPanelAddFilter: 'Aggiungi un filtro',
|
|
39
53
|
filterPanelRemoveAll: 'Rimuovi filtri',
|
package/locales/jaJP.js
CHANGED
|
@@ -23,6 +23,18 @@ 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
|
+
// toolbarPromptControlDeleteIconLabel: 'Clear',
|
|
32
|
+
// toolbarPromptControlRecordButtonDefaultLabel: 'Record',
|
|
33
|
+
// toolbarPromptControlRecordButtonActiveLabel: 'Stop recording',
|
|
34
|
+
// toolbarPromptControlSendActionLabel: 'Send',
|
|
35
|
+
// toolbarPromptControlSendActionAriaLabel: 'Send prompt',
|
|
36
|
+
// toolbarPromptControlErrorMessage: 'An error occurred while processing the request. Please try again with a different prompt.',
|
|
37
|
+
|
|
26
38
|
// Export selector toolbar button text
|
|
27
39
|
toolbarExport: 'エクスポート',
|
|
28
40
|
toolbarExportLabel: 'エクスポート',
|
|
@@ -34,6 +46,8 @@ const jaJPGrid = {
|
|
|
34
46
|
columnsManagementNoColumns: 'カラムなし',
|
|
35
47
|
columnsManagementShowHideAllText: 'すべて表示/非表示',
|
|
36
48
|
columnsManagementReset: 'リセット',
|
|
49
|
+
// columnsManagementDeleteIconLabel: 'Clear',
|
|
50
|
+
|
|
37
51
|
// Filter panel text
|
|
38
52
|
filterPanelAddFilter: 'フィルター追加',
|
|
39
53
|
filterPanelRemoveAll: 'すべて削除',
|
package/locales/koKR.js
CHANGED
|
@@ -23,6 +23,18 @@ 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
|
+
// toolbarPromptControlDeleteIconLabel: 'Clear',
|
|
32
|
+
// toolbarPromptControlRecordButtonDefaultLabel: 'Record',
|
|
33
|
+
// toolbarPromptControlRecordButtonActiveLabel: 'Stop recording',
|
|
34
|
+
// toolbarPromptControlSendActionLabel: 'Send',
|
|
35
|
+
// toolbarPromptControlSendActionAriaLabel: 'Send prompt',
|
|
36
|
+
// toolbarPromptControlErrorMessage: 'An error occurred while processing the request. Please try again with a different prompt.',
|
|
37
|
+
|
|
26
38
|
// Export selector toolbar button text
|
|
27
39
|
toolbarExport: '내보내기',
|
|
28
40
|
toolbarExportLabel: '내보내기',
|
|
@@ -34,6 +46,7 @@ const koKRGrid = {
|
|
|
34
46
|
// columnsManagementNoColumns: 'No columns',
|
|
35
47
|
// columnsManagementShowHideAllText: 'Show/Hide All',
|
|
36
48
|
// columnsManagementReset: 'Reset',
|
|
49
|
+
// columnsManagementDeleteIconLabel: 'Clear',
|
|
37
50
|
|
|
38
51
|
// Filter panel text
|
|
39
52
|
filterPanelAddFilter: '필터 추가',
|
package/locales/nbNO.js
CHANGED
|
@@ -23,6 +23,18 @@ 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
|
+
// toolbarPromptControlDeleteIconLabel: 'Clear',
|
|
32
|
+
// toolbarPromptControlRecordButtonDefaultLabel: 'Record',
|
|
33
|
+
// toolbarPromptControlRecordButtonActiveLabel: 'Stop recording',
|
|
34
|
+
// toolbarPromptControlSendActionLabel: 'Send',
|
|
35
|
+
// toolbarPromptControlSendActionAriaLabel: 'Send prompt',
|
|
36
|
+
// toolbarPromptControlErrorMessage: 'An error occurred while processing the request. Please try again with a different prompt.',
|
|
37
|
+
|
|
26
38
|
// Export selector toolbar button text
|
|
27
39
|
toolbarExport: 'Eksporter',
|
|
28
40
|
toolbarExportLabel: 'Eksporter',
|
|
@@ -34,6 +46,8 @@ const nbNOGrid = {
|
|
|
34
46
|
columnsManagementNoColumns: 'Ingen kolonner',
|
|
35
47
|
columnsManagementShowHideAllText: 'Vis/skjul alle',
|
|
36
48
|
columnsManagementReset: 'Nullstill',
|
|
49
|
+
// columnsManagementDeleteIconLabel: 'Clear',
|
|
50
|
+
|
|
37
51
|
// Filter panel text
|
|
38
52
|
filterPanelAddFilter: 'Legg til filter',
|
|
39
53
|
filterPanelRemoveAll: 'Fjern alle',
|
package/locales/nlNL.js
CHANGED
|
@@ -23,6 +23,18 @@ 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
|
+
// toolbarPromptControlDeleteIconLabel: 'Clear',
|
|
32
|
+
// toolbarPromptControlRecordButtonDefaultLabel: 'Record',
|
|
33
|
+
// toolbarPromptControlRecordButtonActiveLabel: 'Stop recording',
|
|
34
|
+
// toolbarPromptControlSendActionLabel: 'Send',
|
|
35
|
+
// toolbarPromptControlSendActionAriaLabel: 'Send prompt',
|
|
36
|
+
// toolbarPromptControlErrorMessage: 'An error occurred while processing the request. Please try again with a different prompt.',
|
|
37
|
+
|
|
26
38
|
// Export selector toolbar button text
|
|
27
39
|
toolbarExport: 'Exporteren',
|
|
28
40
|
toolbarExportLabel: 'Exporteren',
|
|
@@ -34,6 +46,8 @@ const nlNLGrid = {
|
|
|
34
46
|
columnsManagementNoColumns: 'Geen kolommen',
|
|
35
47
|
columnsManagementShowHideAllText: 'Toon/Verberg Alle',
|
|
36
48
|
columnsManagementReset: 'Reset',
|
|
49
|
+
// columnsManagementDeleteIconLabel: 'Clear',
|
|
50
|
+
|
|
37
51
|
// Filter panel text
|
|
38
52
|
filterPanelAddFilter: 'Filter toevoegen',
|
|
39
53
|
filterPanelRemoveAll: 'Alles verwijderen',
|
package/locales/nnNO.js
CHANGED
|
@@ -23,6 +23,18 @@ 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
|
+
// toolbarPromptControlDeleteIconLabel: 'Clear',
|
|
32
|
+
// toolbarPromptControlRecordButtonDefaultLabel: 'Record',
|
|
33
|
+
// toolbarPromptControlRecordButtonActiveLabel: 'Stop recording',
|
|
34
|
+
// toolbarPromptControlSendActionLabel: 'Send',
|
|
35
|
+
// toolbarPromptControlSendActionAriaLabel: 'Send prompt',
|
|
36
|
+
// toolbarPromptControlErrorMessage: 'An error occurred while processing the request. Please try again with a different prompt.',
|
|
37
|
+
|
|
26
38
|
// Export selector toolbar button text
|
|
27
39
|
toolbarExport: 'Eksporter',
|
|
28
40
|
toolbarExportLabel: 'Eksporter',
|
|
@@ -34,6 +46,8 @@ const nnNOGrid = {
|
|
|
34
46
|
columnsManagementNoColumns: 'Ingen kolonner',
|
|
35
47
|
columnsManagementShowHideAllText: 'Vis/skjul alle',
|
|
36
48
|
columnsManagementReset: 'Nullstill',
|
|
49
|
+
// columnsManagementDeleteIconLabel: 'Clear',
|
|
50
|
+
|
|
37
51
|
// Filter panel text
|
|
38
52
|
filterPanelAddFilter: 'Legg til filter',
|
|
39
53
|
filterPanelRemoveAll: 'Fjern alle',
|
package/locales/plPL.js
CHANGED
|
@@ -23,6 +23,18 @@ const plPLGrid = {
|
|
|
23
23
|
toolbarQuickFilterPlaceholder: 'Wyszukaj…',
|
|
24
24
|
toolbarQuickFilterLabel: 'Szukaj',
|
|
25
25
|
toolbarQuickFilterDeleteIconLabel: 'Wyczyść',
|
|
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
|
+
// toolbarPromptControlDeleteIconLabel: 'Clear',
|
|
32
|
+
// toolbarPromptControlRecordButtonDefaultLabel: 'Record',
|
|
33
|
+
// toolbarPromptControlRecordButtonActiveLabel: 'Stop recording',
|
|
34
|
+
// toolbarPromptControlSendActionLabel: 'Send',
|
|
35
|
+
// toolbarPromptControlSendActionAriaLabel: 'Send prompt',
|
|
36
|
+
// toolbarPromptControlErrorMessage: 'An error occurred while processing the request. Please try again with a different prompt.',
|
|
37
|
+
|
|
26
38
|
// Export selector toolbar button text
|
|
27
39
|
toolbarExport: 'Eksportuj',
|
|
28
40
|
toolbarExportLabel: 'Eksportuj',
|
|
@@ -34,6 +46,8 @@ const plPLGrid = {
|
|
|
34
46
|
columnsManagementNoColumns: 'Brak kolumn',
|
|
35
47
|
columnsManagementShowHideAllText: 'Wyświetl/Ukryj wszystkie',
|
|
36
48
|
columnsManagementReset: 'Resetuj',
|
|
49
|
+
// columnsManagementDeleteIconLabel: 'Clear',
|
|
50
|
+
|
|
37
51
|
// Filter panel text
|
|
38
52
|
filterPanelAddFilter: 'Dodaj filtr',
|
|
39
53
|
filterPanelRemoveAll: 'Usuń wszystkie',
|
package/locales/ptBR.js
CHANGED
|
@@ -23,6 +23,18 @@ const ptBRGrid = {
|
|
|
23
23
|
toolbarQuickFilterPlaceholder: 'Procurar…',
|
|
24
24
|
toolbarQuickFilterLabel: 'Procurar',
|
|
25
25
|
toolbarQuickFilterDeleteIconLabel: 'Limpar',
|
|
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
|
+
// toolbarPromptControlDeleteIconLabel: 'Clear',
|
|
32
|
+
// toolbarPromptControlRecordButtonDefaultLabel: 'Record',
|
|
33
|
+
// toolbarPromptControlRecordButtonActiveLabel: 'Stop recording',
|
|
34
|
+
// toolbarPromptControlSendActionLabel: 'Send',
|
|
35
|
+
// toolbarPromptControlSendActionAriaLabel: 'Send prompt',
|
|
36
|
+
// toolbarPromptControlErrorMessage: 'An error occurred while processing the request. Please try again with a different prompt.',
|
|
37
|
+
|
|
26
38
|
// Export selector toolbar button text
|
|
27
39
|
toolbarExport: 'Exportar',
|
|
28
40
|
toolbarExportLabel: 'Exportar',
|
|
@@ -34,6 +46,8 @@ const ptBRGrid = {
|
|
|
34
46
|
columnsManagementNoColumns: 'Nenhuma coluna',
|
|
35
47
|
columnsManagementShowHideAllText: 'Mostrar/Ocultar Todas',
|
|
36
48
|
columnsManagementReset: 'Redefinir',
|
|
49
|
+
// columnsManagementDeleteIconLabel: 'Clear',
|
|
50
|
+
|
|
37
51
|
// Filter panel text
|
|
38
52
|
filterPanelAddFilter: 'Adicionar filtro',
|
|
39
53
|
filterPanelRemoveAll: 'Remover todos',
|
package/locales/ptPT.js
CHANGED
|
@@ -23,6 +23,18 @@ const ptPTGrid = {
|
|
|
23
23
|
toolbarQuickFilterPlaceholder: 'Procurar…',
|
|
24
24
|
toolbarQuickFilterLabel: 'Procurar',
|
|
25
25
|
toolbarQuickFilterDeleteIconLabel: 'Claro',
|
|
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
|
+
// toolbarPromptControlDeleteIconLabel: 'Clear',
|
|
32
|
+
// toolbarPromptControlRecordButtonDefaultLabel: 'Record',
|
|
33
|
+
// toolbarPromptControlRecordButtonActiveLabel: 'Stop recording',
|
|
34
|
+
// toolbarPromptControlSendActionLabel: 'Send',
|
|
35
|
+
// toolbarPromptControlSendActionAriaLabel: 'Send prompt',
|
|
36
|
+
// toolbarPromptControlErrorMessage: 'An error occurred while processing the request. Please try again with a different prompt.',
|
|
37
|
+
|
|
26
38
|
// Export selector toolbar button text
|
|
27
39
|
toolbarExport: 'Exportar',
|
|
28
40
|
toolbarExportLabel: 'Exportar',
|
|
@@ -34,6 +46,8 @@ const ptPTGrid = {
|
|
|
34
46
|
columnsManagementNoColumns: 'Sem colunas',
|
|
35
47
|
columnsManagementShowHideAllText: 'Mostrar/Ocultar Todas',
|
|
36
48
|
columnsManagementReset: 'Repor',
|
|
49
|
+
// columnsManagementDeleteIconLabel: 'Clear',
|
|
50
|
+
|
|
37
51
|
// Filter panel text
|
|
38
52
|
filterPanelAddFilter: 'Adicionar filtro',
|
|
39
53
|
filterPanelRemoveAll: 'Excluir todos',
|
package/locales/roRO.js
CHANGED
|
@@ -23,6 +23,18 @@ const roROGrid = {
|
|
|
23
23
|
toolbarQuickFilterPlaceholder: 'Căutare…',
|
|
24
24
|
toolbarQuickFilterLabel: 'Căutare',
|
|
25
25
|
toolbarQuickFilterDeleteIconLabel: 'Ștergere',
|
|
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
|
+
// toolbarPromptControlDeleteIconLabel: 'Clear',
|
|
32
|
+
// toolbarPromptControlRecordButtonDefaultLabel: 'Record',
|
|
33
|
+
// toolbarPromptControlRecordButtonActiveLabel: 'Stop recording',
|
|
34
|
+
// toolbarPromptControlSendActionLabel: 'Send',
|
|
35
|
+
// toolbarPromptControlSendActionAriaLabel: 'Send prompt',
|
|
36
|
+
// toolbarPromptControlErrorMessage: 'An error occurred while processing the request. Please try again with a different prompt.',
|
|
37
|
+
|
|
26
38
|
// Export selector toolbar button text
|
|
27
39
|
toolbarExport: 'Export',
|
|
28
40
|
toolbarExportLabel: 'Export',
|
|
@@ -34,6 +46,7 @@ const roROGrid = {
|
|
|
34
46
|
// columnsManagementNoColumns: 'No columns',
|
|
35
47
|
// columnsManagementShowHideAllText: 'Show/Hide All',
|
|
36
48
|
// columnsManagementReset: 'Reset',
|
|
49
|
+
// columnsManagementDeleteIconLabel: 'Clear',
|
|
37
50
|
|
|
38
51
|
// Filter panel text
|
|
39
52
|
filterPanelAddFilter: 'Adăugare filtru',
|
package/locales/ruRU.js
CHANGED
|
@@ -38,6 +38,18 @@ const ruRUGrid = {
|
|
|
38
38
|
toolbarQuickFilterPlaceholder: 'Поиск…',
|
|
39
39
|
toolbarQuickFilterLabel: 'Поиск',
|
|
40
40
|
toolbarQuickFilterDeleteIconLabel: 'Очистить',
|
|
41
|
+
// Prompt toolbar field
|
|
42
|
+
// toolbarPromptControlPlaceholder: 'Type a prompt…',
|
|
43
|
+
// toolbarPromptControlWithRecordingPlaceholder: 'Type or record a prompt…',
|
|
44
|
+
// toolbarPromptControlRecordingPlaceholder: 'Listening for prompt…',
|
|
45
|
+
// toolbarPromptControlLabel: 'Prompt input',
|
|
46
|
+
// toolbarPromptControlDeleteIconLabel: 'Clear',
|
|
47
|
+
// toolbarPromptControlRecordButtonDefaultLabel: 'Record',
|
|
48
|
+
// toolbarPromptControlRecordButtonActiveLabel: 'Stop recording',
|
|
49
|
+
// toolbarPromptControlSendActionLabel: 'Send',
|
|
50
|
+
// toolbarPromptControlSendActionAriaLabel: 'Send prompt',
|
|
51
|
+
// toolbarPromptControlErrorMessage: 'An error occurred while processing the request. Please try again with a different prompt.',
|
|
52
|
+
|
|
41
53
|
// Export selector toolbar button text
|
|
42
54
|
toolbarExport: 'Экспорт',
|
|
43
55
|
toolbarExportLabel: 'Экспорт',
|
|
@@ -49,6 +61,8 @@ const ruRUGrid = {
|
|
|
49
61
|
columnsManagementNoColumns: 'Нет столбцов',
|
|
50
62
|
columnsManagementShowHideAllText: 'Показать/Скрыть Всё',
|
|
51
63
|
columnsManagementReset: 'Сбросить',
|
|
64
|
+
// columnsManagementDeleteIconLabel: 'Clear',
|
|
65
|
+
|
|
52
66
|
// Filter panel text
|
|
53
67
|
filterPanelAddFilter: 'Добавить фильтр',
|
|
54
68
|
filterPanelRemoveAll: 'Очистить фильтр',
|
package/locales/skSK.js
CHANGED
|
@@ -31,6 +31,18 @@ const skSKGrid = {
|
|
|
31
31
|
toolbarQuickFilterPlaceholder: 'Vyhľadať…',
|
|
32
32
|
toolbarQuickFilterLabel: 'Vyhľadať',
|
|
33
33
|
toolbarQuickFilterDeleteIconLabel: 'Vymazať',
|
|
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
|
+
// toolbarPromptControlDeleteIconLabel: 'Clear',
|
|
40
|
+
// toolbarPromptControlRecordButtonDefaultLabel: 'Record',
|
|
41
|
+
// toolbarPromptControlRecordButtonActiveLabel: 'Stop recording',
|
|
42
|
+
// toolbarPromptControlSendActionLabel: 'Send',
|
|
43
|
+
// toolbarPromptControlSendActionAriaLabel: 'Send prompt',
|
|
44
|
+
// toolbarPromptControlErrorMessage: 'An error occurred while processing the request. Please try again with a different prompt.',
|
|
45
|
+
|
|
34
46
|
// Export selector toolbar button text
|
|
35
47
|
toolbarExport: 'Export',
|
|
36
48
|
toolbarExportLabel: 'Export',
|
|
@@ -42,6 +54,7 @@ const skSKGrid = {
|
|
|
42
54
|
columnsManagementNoColumns: 'Žiadne stĺpce',
|
|
43
55
|
columnsManagementShowHideAllText: 'Zobraziť/Skryť všetko',
|
|
44
56
|
// columnsManagementReset: 'Reset',
|
|
57
|
+
// columnsManagementDeleteIconLabel: 'Clear',
|
|
45
58
|
|
|
46
59
|
// Filter panel text
|
|
47
60
|
filterPanelAddFilter: 'Pridať filter',
|
package/locales/svSE.js
CHANGED
|
@@ -23,6 +23,18 @@ const svSEGrid = {
|
|
|
23
23
|
toolbarQuickFilterPlaceholder: 'Sök…',
|
|
24
24
|
toolbarQuickFilterLabel: 'Sök',
|
|
25
25
|
toolbarQuickFilterDeleteIconLabel: 'Rensa',
|
|
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
|
+
// toolbarPromptControlDeleteIconLabel: 'Clear',
|
|
32
|
+
// toolbarPromptControlRecordButtonDefaultLabel: 'Record',
|
|
33
|
+
// toolbarPromptControlRecordButtonActiveLabel: 'Stop recording',
|
|
34
|
+
// toolbarPromptControlSendActionLabel: 'Send',
|
|
35
|
+
// toolbarPromptControlSendActionAriaLabel: 'Send prompt',
|
|
36
|
+
// toolbarPromptControlErrorMessage: 'An error occurred while processing the request. Please try again with a different prompt.',
|
|
37
|
+
|
|
26
38
|
// Export selector toolbar button text
|
|
27
39
|
toolbarExport: 'Exportera',
|
|
28
40
|
toolbarExportLabel: 'Exportera',
|
|
@@ -33,7 +45,8 @@ const svSEGrid = {
|
|
|
33
45
|
columnsManagementSearchTitle: 'Sök',
|
|
34
46
|
columnsManagementNoColumns: 'Inga kolumner',
|
|
35
47
|
columnsManagementShowHideAllText: 'Visa/Dölj alla',
|
|
36
|
-
|
|
48
|
+
columnsManagementReset: 'Återställ',
|
|
49
|
+
// columnsManagementDeleteIconLabel: 'Clear',
|
|
37
50
|
|
|
38
51
|
// Filter panel text
|
|
39
52
|
filterPanelAddFilter: 'Lägg till filter',
|
|
@@ -48,9 +61,9 @@ const svSEGrid = {
|
|
|
48
61
|
filterPanelInputPlaceholder: 'Filtervärde',
|
|
49
62
|
// Filter operators text
|
|
50
63
|
filterOperatorContains: 'innehåller',
|
|
51
|
-
|
|
64
|
+
filterOperatorDoesNotContain: 'innehåller inte',
|
|
52
65
|
filterOperatorEquals: 'lika med',
|
|
53
|
-
|
|
66
|
+
filterOperatorDoesNotEqual: 'inte lika med',
|
|
54
67
|
filterOperatorStartsWith: 'börjar med',
|
|
55
68
|
filterOperatorEndsWith: 'slutar med',
|
|
56
69
|
filterOperatorIs: 'är',
|
|
@@ -70,9 +83,9 @@ const svSEGrid = {
|
|
|
70
83
|
'filterOperator<=': '<=',
|
|
71
84
|
// Header filter operators text
|
|
72
85
|
headerFilterOperatorContains: 'Innehåller',
|
|
73
|
-
|
|
86
|
+
headerFilterOperatorDoesNotContain: 'Innehåller inte',
|
|
74
87
|
headerFilterOperatorEquals: 'Lika med',
|
|
75
|
-
|
|
88
|
+
headerFilterOperatorDoesNotEqual: 'Inte lika med',
|
|
76
89
|
headerFilterOperatorStartsWith: 'Börjar med',
|
|
77
90
|
headerFilterOperatorEndsWith: 'Slutar med',
|
|
78
91
|
headerFilterOperatorIs: 'Är',
|
package/locales/trTR.js
CHANGED
|
@@ -23,6 +23,18 @@ const trTRGrid = {
|
|
|
23
23
|
toolbarQuickFilterPlaceholder: 'Ara…',
|
|
24
24
|
toolbarQuickFilterLabel: 'Ara',
|
|
25
25
|
toolbarQuickFilterDeleteIconLabel: 'Temizle',
|
|
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
|
+
// toolbarPromptControlDeleteIconLabel: 'Clear',
|
|
32
|
+
// toolbarPromptControlRecordButtonDefaultLabel: 'Record',
|
|
33
|
+
// toolbarPromptControlRecordButtonActiveLabel: 'Stop recording',
|
|
34
|
+
// toolbarPromptControlSendActionLabel: 'Send',
|
|
35
|
+
// toolbarPromptControlSendActionAriaLabel: 'Send prompt',
|
|
36
|
+
// toolbarPromptControlErrorMessage: 'An error occurred while processing the request. Please try again with a different prompt.',
|
|
37
|
+
|
|
26
38
|
// Export selector toolbar button text
|
|
27
39
|
toolbarExport: 'Dışa aktar',
|
|
28
40
|
toolbarExportLabel: 'Dışa aktar',
|
|
@@ -34,6 +46,8 @@ const trTRGrid = {
|
|
|
34
46
|
columnsManagementNoColumns: 'Kolon yok',
|
|
35
47
|
columnsManagementShowHideAllText: 'Hepsini Göster/Gizle',
|
|
36
48
|
columnsManagementReset: 'Sıfırla',
|
|
49
|
+
// columnsManagementDeleteIconLabel: 'Clear',
|
|
50
|
+
|
|
37
51
|
// Filter panel text
|
|
38
52
|
filterPanelAddFilter: 'Filtre Ekle',
|
|
39
53
|
filterPanelRemoveAll: 'Hepsini kaldır',
|
package/locales/ukUA.js
CHANGED
|
@@ -38,6 +38,18 @@ const ukUAGrid = {
|
|
|
38
38
|
toolbarQuickFilterPlaceholder: 'Пошук…',
|
|
39
39
|
toolbarQuickFilterLabel: 'Пошук',
|
|
40
40
|
toolbarQuickFilterDeleteIconLabel: 'Очистити',
|
|
41
|
+
// Prompt toolbar field
|
|
42
|
+
// toolbarPromptControlPlaceholder: 'Type a prompt…',
|
|
43
|
+
// toolbarPromptControlWithRecordingPlaceholder: 'Type or record a prompt…',
|
|
44
|
+
// toolbarPromptControlRecordingPlaceholder: 'Listening for prompt…',
|
|
45
|
+
// toolbarPromptControlLabel: 'Prompt input',
|
|
46
|
+
// toolbarPromptControlDeleteIconLabel: 'Clear',
|
|
47
|
+
// toolbarPromptControlRecordButtonDefaultLabel: 'Record',
|
|
48
|
+
// toolbarPromptControlRecordButtonActiveLabel: 'Stop recording',
|
|
49
|
+
// toolbarPromptControlSendActionLabel: 'Send',
|
|
50
|
+
// toolbarPromptControlSendActionAriaLabel: 'Send prompt',
|
|
51
|
+
// toolbarPromptControlErrorMessage: 'An error occurred while processing the request. Please try again with a different prompt.',
|
|
52
|
+
|
|
41
53
|
// Export selector toolbar button text
|
|
42
54
|
toolbarExport: 'Експорт',
|
|
43
55
|
toolbarExportLabel: 'Експорт',
|
|
@@ -49,6 +61,7 @@ const ukUAGrid = {
|
|
|
49
61
|
// columnsManagementNoColumns: 'No columns',
|
|
50
62
|
// columnsManagementShowHideAllText: 'Show/Hide All',
|
|
51
63
|
// columnsManagementReset: 'Reset',
|
|
64
|
+
// columnsManagementDeleteIconLabel: 'Clear',
|
|
52
65
|
|
|
53
66
|
// Filter panel text
|
|
54
67
|
filterPanelAddFilter: 'Додати фільтр',
|
package/locales/urPK.js
CHANGED
|
@@ -23,6 +23,18 @@ const urPKGrid = {
|
|
|
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
|
+
// toolbarPromptControlDeleteIconLabel: 'Clear',
|
|
32
|
+
// toolbarPromptControlRecordButtonDefaultLabel: 'Record',
|
|
33
|
+
// toolbarPromptControlRecordButtonActiveLabel: 'Stop recording',
|
|
34
|
+
// toolbarPromptControlSendActionLabel: 'Send',
|
|
35
|
+
// toolbarPromptControlSendActionAriaLabel: 'Send prompt',
|
|
36
|
+
// toolbarPromptControlErrorMessage: 'An error occurred while processing the request. Please try again with a different prompt.',
|
|
37
|
+
|
|
26
38
|
// Export selector toolbar button text
|
|
27
39
|
toolbarExport: 'ایکسپورٹ',
|
|
28
40
|
toolbarExportLabel: 'ایکسپورٹ',
|
|
@@ -34,6 +46,7 @@ const urPKGrid = {
|
|
|
34
46
|
// columnsManagementNoColumns: 'No columns',
|
|
35
47
|
// columnsManagementShowHideAllText: 'Show/Hide All',
|
|
36
48
|
// columnsManagementReset: 'Reset',
|
|
49
|
+
// columnsManagementDeleteIconLabel: 'Clear',
|
|
37
50
|
|
|
38
51
|
// Filter panel text
|
|
39
52
|
filterPanelAddFilter: 'نیا فلٹر',
|
package/locales/viVN.js
CHANGED
|
@@ -23,6 +23,18 @@ const viVNGrid = {
|
|
|
23
23
|
toolbarQuickFilterPlaceholder: 'Tìm kiếm…',
|
|
24
24
|
toolbarQuickFilterLabel: 'Tìm kiếm',
|
|
25
25
|
toolbarQuickFilterDeleteIconLabel: 'Xóa tìm kiếm',
|
|
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
|
+
// toolbarPromptControlDeleteIconLabel: 'Clear',
|
|
32
|
+
// toolbarPromptControlRecordButtonDefaultLabel: 'Record',
|
|
33
|
+
// toolbarPromptControlRecordButtonActiveLabel: 'Stop recording',
|
|
34
|
+
// toolbarPromptControlSendActionLabel: 'Send',
|
|
35
|
+
// toolbarPromptControlSendActionAriaLabel: 'Send prompt',
|
|
36
|
+
// toolbarPromptControlErrorMessage: 'An error occurred while processing the request. Please try again with a different prompt.',
|
|
37
|
+
|
|
26
38
|
// Export selector toolbar button text
|
|
27
39
|
toolbarExport: 'Xuất',
|
|
28
40
|
toolbarExportLabel: 'Xuất',
|
|
@@ -34,6 +46,8 @@ const viVNGrid = {
|
|
|
34
46
|
columnsManagementNoColumns: 'Không có cột',
|
|
35
47
|
columnsManagementShowHideAllText: 'Hiện/Ẩn Tất cả',
|
|
36
48
|
columnsManagementReset: 'Đặt lại',
|
|
49
|
+
// columnsManagementDeleteIconLabel: 'Clear',
|
|
50
|
+
|
|
37
51
|
// Filter panel text
|
|
38
52
|
filterPanelAddFilter: 'Thêm bộ lọc',
|
|
39
53
|
filterPanelRemoveAll: 'Xóa tất cả',
|
package/locales/zhCN.js
CHANGED
|
@@ -23,6 +23,18 @@ const zhCNGrid = {
|
|
|
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
|
+
// toolbarPromptControlDeleteIconLabel: 'Clear',
|
|
32
|
+
// toolbarPromptControlRecordButtonDefaultLabel: 'Record',
|
|
33
|
+
// toolbarPromptControlRecordButtonActiveLabel: 'Stop recording',
|
|
34
|
+
// toolbarPromptControlSendActionLabel: 'Send',
|
|
35
|
+
// toolbarPromptControlSendActionAriaLabel: 'Send prompt',
|
|
36
|
+
// toolbarPromptControlErrorMessage: 'An error occurred while processing the request. Please try again with a different prompt.',
|
|
37
|
+
|
|
26
38
|
// Export selector toolbar button text
|
|
27
39
|
toolbarExport: '导出',
|
|
28
40
|
toolbarExportLabel: '导出',
|
|
@@ -34,6 +46,8 @@ const zhCNGrid = {
|
|
|
34
46
|
columnsManagementNoColumns: '没有列',
|
|
35
47
|
columnsManagementShowHideAllText: '显示/隐藏所有',
|
|
36
48
|
columnsManagementReset: '重置',
|
|
49
|
+
// columnsManagementDeleteIconLabel: 'Clear',
|
|
50
|
+
|
|
37
51
|
// Filter panel text
|
|
38
52
|
filterPanelAddFilter: '添加筛选器',
|
|
39
53
|
filterPanelRemoveAll: '清除全部',
|
|
@@ -47,9 +61,9 @@ const zhCNGrid = {
|
|
|
47
61
|
filterPanelInputPlaceholder: '筛选值',
|
|
48
62
|
// Filter operators text
|
|
49
63
|
filterOperatorContains: '包含',
|
|
50
|
-
|
|
64
|
+
filterOperatorDoesNotContain: '不包含',
|
|
51
65
|
filterOperatorEquals: '等于',
|
|
52
|
-
|
|
66
|
+
filterOperatorDoesNotEqual: '不等于',
|
|
53
67
|
filterOperatorStartsWith: '开始于',
|
|
54
68
|
filterOperatorEndsWith: '结束于',
|
|
55
69
|
filterOperatorIs: '是',
|
|
@@ -69,9 +83,9 @@ const zhCNGrid = {
|
|
|
69
83
|
'filterOperator<=': '<=',
|
|
70
84
|
// Header filter operators text
|
|
71
85
|
headerFilterOperatorContains: '包含',
|
|
72
|
-
|
|
86
|
+
headerFilterOperatorDoesNotContain: '不包含',
|
|
73
87
|
headerFilterOperatorEquals: '等于',
|
|
74
|
-
|
|
88
|
+
headerFilterOperatorDoesNotEqual: '不等于',
|
|
75
89
|
headerFilterOperatorStartsWith: '开始于',
|
|
76
90
|
headerFilterOperatorEndsWith: '结束于',
|
|
77
91
|
headerFilterOperatorIs: '是',
|
package/locales/zhHK.js
CHANGED
|
@@ -23,6 +23,18 @@ const zhHKGrid = {
|
|
|
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
|
+
// toolbarPromptControlDeleteIconLabel: 'Clear',
|
|
32
|
+
// toolbarPromptControlRecordButtonDefaultLabel: 'Record',
|
|
33
|
+
// toolbarPromptControlRecordButtonActiveLabel: 'Stop recording',
|
|
34
|
+
// toolbarPromptControlSendActionLabel: 'Send',
|
|
35
|
+
// toolbarPromptControlSendActionAriaLabel: 'Send prompt',
|
|
36
|
+
// toolbarPromptControlErrorMessage: 'An error occurred while processing the request. Please try again with a different prompt.',
|
|
37
|
+
|
|
26
38
|
// Export selector toolbar button text
|
|
27
39
|
toolbarExport: '出口',
|
|
28
40
|
toolbarExportLabel: '出口',
|
|
@@ -34,6 +46,7 @@ const zhHKGrid = {
|
|
|
34
46
|
// columnsManagementNoColumns: 'No columns',
|
|
35
47
|
// columnsManagementShowHideAllText: 'Show/Hide All',
|
|
36
48
|
// columnsManagementReset: 'Reset',
|
|
49
|
+
// columnsManagementDeleteIconLabel: 'Clear',
|
|
37
50
|
|
|
38
51
|
// Filter panel text
|
|
39
52
|
filterPanelAddFilter: '新增過濾器',
|
package/locales/zhTW.js
CHANGED
|
@@ -23,6 +23,18 @@ const zhTWGrid = {
|
|
|
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
|
+
// toolbarPromptControlDeleteIconLabel: 'Clear',
|
|
32
|
+
// toolbarPromptControlRecordButtonDefaultLabel: 'Record',
|
|
33
|
+
// toolbarPromptControlRecordButtonActiveLabel: 'Stop recording',
|
|
34
|
+
// toolbarPromptControlSendActionLabel: 'Send',
|
|
35
|
+
// toolbarPromptControlSendActionAriaLabel: 'Send prompt',
|
|
36
|
+
// toolbarPromptControlErrorMessage: 'An error occurred while processing the request. Please try again with a different prompt.',
|
|
37
|
+
|
|
26
38
|
// Export selector toolbar button text
|
|
27
39
|
toolbarExport: '匯出',
|
|
28
40
|
toolbarExportLabel: '匯出',
|
|
@@ -34,6 +46,7 @@ const zhTWGrid = {
|
|
|
34
46
|
// columnsManagementNoColumns: 'No columns',
|
|
35
47
|
// columnsManagementShowHideAllText: 'Show/Hide All',
|
|
36
48
|
// columnsManagementReset: 'Reset',
|
|
49
|
+
// columnsManagementDeleteIconLabel: 'Clear',
|
|
37
50
|
|
|
38
51
|
// Filter panel text
|
|
39
52
|
filterPanelAddFilter: '增加篩選器',
|
|
@@ -26,6 +26,16 @@ export interface GridLocaleText {
|
|
|
26
26
|
toolbarQuickFilterPlaceholder: string;
|
|
27
27
|
toolbarQuickFilterLabel: string;
|
|
28
28
|
toolbarQuickFilterDeleteIconLabel: string;
|
|
29
|
+
toolbarPromptControlPlaceholder: string;
|
|
30
|
+
toolbarPromptControlWithRecordingPlaceholder: string;
|
|
31
|
+
toolbarPromptControlRecordingPlaceholder: string;
|
|
32
|
+
toolbarPromptControlLabel: string;
|
|
33
|
+
toolbarPromptControlDeleteIconLabel: string;
|
|
34
|
+
toolbarPromptControlRecordButtonDefaultLabel: string;
|
|
35
|
+
toolbarPromptControlRecordButtonActiveLabel: string;
|
|
36
|
+
toolbarPromptControlSendActionLabel: string;
|
|
37
|
+
toolbarPromptControlSendActionAriaLabel: string;
|
|
38
|
+
toolbarPromptControlErrorMessage: string;
|
|
29
39
|
toolbarExport: React.ReactNode;
|
|
30
40
|
toolbarExportLabel: string;
|
|
31
41
|
toolbarExportCSV: React.ReactNode;
|
|
@@ -35,6 +45,7 @@ export interface GridLocaleText {
|
|
|
35
45
|
columnsManagementNoColumns: string;
|
|
36
46
|
columnsManagementShowHideAllText: string;
|
|
37
47
|
columnsManagementReset: string;
|
|
48
|
+
columnsManagementDeleteIconLabel: string;
|
|
38
49
|
filterPanelAddFilter: React.ReactNode;
|
|
39
50
|
filterPanelRemoveAll: React.ReactNode;
|
|
40
51
|
filterPanelDeleteIconLabel: string;
|