@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/node/locales/esES.js
CHANGED
|
@@ -29,6 +29,18 @@ const esESGrid = {
|
|
|
29
29
|
toolbarQuickFilterPlaceholder: 'Buscar…',
|
|
30
30
|
toolbarQuickFilterLabel: 'Buscar',
|
|
31
31
|
toolbarQuickFilterDeleteIconLabel: 'Limpiar',
|
|
32
|
+
// Prompt toolbar field
|
|
33
|
+
// toolbarPromptControlPlaceholder: 'Type a prompt…',
|
|
34
|
+
// toolbarPromptControlWithRecordingPlaceholder: 'Type or record a prompt…',
|
|
35
|
+
// toolbarPromptControlRecordingPlaceholder: 'Listening for prompt…',
|
|
36
|
+
// toolbarPromptControlLabel: 'Prompt input',
|
|
37
|
+
// toolbarPromptControlDeleteIconLabel: 'Clear',
|
|
38
|
+
// toolbarPromptControlRecordButtonDefaultLabel: 'Record',
|
|
39
|
+
// toolbarPromptControlRecordButtonActiveLabel: 'Stop recording',
|
|
40
|
+
// toolbarPromptControlSendActionLabel: 'Send',
|
|
41
|
+
// toolbarPromptControlSendActionAriaLabel: 'Send prompt',
|
|
42
|
+
// toolbarPromptControlErrorMessage: 'An error occurred while processing the request. Please try again with a different prompt.',
|
|
43
|
+
|
|
32
44
|
// Export selector toolbar button text
|
|
33
45
|
toolbarExport: 'Exportar',
|
|
34
46
|
toolbarExportLabel: 'Exportar',
|
|
@@ -40,6 +52,8 @@ const esESGrid = {
|
|
|
40
52
|
columnsManagementNoColumns: 'Sin columnas',
|
|
41
53
|
columnsManagementShowHideAllText: 'Mostrar/Ocultar todas',
|
|
42
54
|
columnsManagementReset: 'Restablecer',
|
|
55
|
+
// columnsManagementDeleteIconLabel: 'Clear',
|
|
56
|
+
|
|
43
57
|
// Filter panel text
|
|
44
58
|
filterPanelAddFilter: 'Agregar filtro',
|
|
45
59
|
filterPanelRemoveAll: 'Remover todos',
|
|
@@ -53,9 +67,9 @@ const esESGrid = {
|
|
|
53
67
|
filterPanelInputPlaceholder: 'Valor de filtro',
|
|
54
68
|
// Filter operators text
|
|
55
69
|
filterOperatorContains: 'contiene',
|
|
56
|
-
|
|
70
|
+
filterOperatorDoesNotContain: 'no contiene',
|
|
57
71
|
filterOperatorEquals: 'es igual',
|
|
58
|
-
|
|
72
|
+
filterOperatorDoesNotEqual: 'es diferente a',
|
|
59
73
|
filterOperatorStartsWith: 'comienza con',
|
|
60
74
|
filterOperatorEndsWith: 'termina con',
|
|
61
75
|
filterOperatorIs: 'es',
|
|
@@ -75,9 +89,9 @@ const esESGrid = {
|
|
|
75
89
|
'filterOperator<=': '<=',
|
|
76
90
|
// Header filter operators text
|
|
77
91
|
headerFilterOperatorContains: 'Contiene',
|
|
78
|
-
|
|
92
|
+
headerFilterOperatorDoesNotContain: 'No contiene',
|
|
79
93
|
headerFilterOperatorEquals: 'Es igual a',
|
|
80
|
-
|
|
94
|
+
headerFilterOperatorDoesNotEqual: 'Es diferente a',
|
|
81
95
|
headerFilterOperatorStartsWith: 'Comienza con',
|
|
82
96
|
headerFilterOperatorEndsWith: 'Termina con',
|
|
83
97
|
headerFilterOperatorIs: 'Es',
|
package/node/locales/faIR.js
CHANGED
|
@@ -29,6 +29,18 @@ const faIRGrid = {
|
|
|
29
29
|
toolbarQuickFilterPlaceholder: 'جستجو...',
|
|
30
30
|
toolbarQuickFilterLabel: 'جستجو',
|
|
31
31
|
toolbarQuickFilterDeleteIconLabel: 'حذف',
|
|
32
|
+
// Prompt toolbar field
|
|
33
|
+
// toolbarPromptControlPlaceholder: 'Type a prompt…',
|
|
34
|
+
// toolbarPromptControlWithRecordingPlaceholder: 'Type or record a prompt…',
|
|
35
|
+
// toolbarPromptControlRecordingPlaceholder: 'Listening for prompt…',
|
|
36
|
+
// toolbarPromptControlLabel: 'Prompt input',
|
|
37
|
+
// toolbarPromptControlDeleteIconLabel: 'Clear',
|
|
38
|
+
// toolbarPromptControlRecordButtonDefaultLabel: 'Record',
|
|
39
|
+
// toolbarPromptControlRecordButtonActiveLabel: 'Stop recording',
|
|
40
|
+
// toolbarPromptControlSendActionLabel: 'Send',
|
|
41
|
+
// toolbarPromptControlSendActionAriaLabel: 'Send prompt',
|
|
42
|
+
// toolbarPromptControlErrorMessage: 'An error occurred while processing the request. Please try again with a different prompt.',
|
|
43
|
+
|
|
32
44
|
// Export selector toolbar button text
|
|
33
45
|
toolbarExport: 'خروجی',
|
|
34
46
|
toolbarExportLabel: 'خروجی',
|
|
@@ -40,6 +52,8 @@ const faIRGrid = {
|
|
|
40
52
|
columnsManagementNoColumns: 'بدون سطر',
|
|
41
53
|
columnsManagementShowHideAllText: 'نمایش/مخفی کردن همه',
|
|
42
54
|
columnsManagementReset: 'بازنشانی',
|
|
55
|
+
// columnsManagementDeleteIconLabel: 'Clear',
|
|
56
|
+
|
|
43
57
|
// Filter panel text
|
|
44
58
|
filterPanelAddFilter: 'افزودن فیلتر',
|
|
45
59
|
filterPanelRemoveAll: 'حذف همه',
|
package/node/locales/fiFI.js
CHANGED
|
@@ -29,6 +29,18 @@ const fiFIGrid = {
|
|
|
29
29
|
toolbarQuickFilterPlaceholder: 'Hae…',
|
|
30
30
|
toolbarQuickFilterLabel: 'Hae',
|
|
31
31
|
toolbarQuickFilterDeleteIconLabel: 'Tyhjennä',
|
|
32
|
+
// Prompt toolbar field
|
|
33
|
+
// toolbarPromptControlPlaceholder: 'Type a prompt…',
|
|
34
|
+
// toolbarPromptControlWithRecordingPlaceholder: 'Type or record a prompt…',
|
|
35
|
+
// toolbarPromptControlRecordingPlaceholder: 'Listening for prompt…',
|
|
36
|
+
// toolbarPromptControlLabel: 'Prompt input',
|
|
37
|
+
// toolbarPromptControlDeleteIconLabel: 'Clear',
|
|
38
|
+
// toolbarPromptControlRecordButtonDefaultLabel: 'Record',
|
|
39
|
+
// toolbarPromptControlRecordButtonActiveLabel: 'Stop recording',
|
|
40
|
+
// toolbarPromptControlSendActionLabel: 'Send',
|
|
41
|
+
// toolbarPromptControlSendActionAriaLabel: 'Send prompt',
|
|
42
|
+
// toolbarPromptControlErrorMessage: 'An error occurred while processing the request. Please try again with a different prompt.',
|
|
43
|
+
|
|
32
44
|
// Export selector toolbar button text
|
|
33
45
|
toolbarExport: 'Vie',
|
|
34
46
|
toolbarExportLabel: 'Vie',
|
|
@@ -40,6 +52,8 @@ const fiFIGrid = {
|
|
|
40
52
|
columnsManagementNoColumns: 'Ei sarakkeita näytettäväksi',
|
|
41
53
|
columnsManagementShowHideAllText: 'Näytä/Piilota kaikki',
|
|
42
54
|
columnsManagementReset: 'Palauta',
|
|
55
|
+
// columnsManagementDeleteIconLabel: 'Clear',
|
|
56
|
+
|
|
43
57
|
// Filter panel text
|
|
44
58
|
filterPanelAddFilter: 'Lisää suodatin',
|
|
45
59
|
filterPanelRemoveAll: 'Poista kaikki',
|
package/node/locales/frFR.js
CHANGED
|
@@ -29,6 +29,18 @@ const frFRGrid = {
|
|
|
29
29
|
toolbarQuickFilterPlaceholder: 'Rechercher…',
|
|
30
30
|
toolbarQuickFilterLabel: 'Recherche',
|
|
31
31
|
toolbarQuickFilterDeleteIconLabel: 'Supprimer',
|
|
32
|
+
// Prompt toolbar field
|
|
33
|
+
// toolbarPromptControlPlaceholder: 'Type a prompt…',
|
|
34
|
+
// toolbarPromptControlWithRecordingPlaceholder: 'Type or record a prompt…',
|
|
35
|
+
// toolbarPromptControlRecordingPlaceholder: 'Listening for prompt…',
|
|
36
|
+
// toolbarPromptControlLabel: 'Prompt input',
|
|
37
|
+
// toolbarPromptControlDeleteIconLabel: 'Clear',
|
|
38
|
+
// toolbarPromptControlRecordButtonDefaultLabel: 'Record',
|
|
39
|
+
// toolbarPromptControlRecordButtonActiveLabel: 'Stop recording',
|
|
40
|
+
// toolbarPromptControlSendActionLabel: 'Send',
|
|
41
|
+
// toolbarPromptControlSendActionAriaLabel: 'Send prompt',
|
|
42
|
+
// toolbarPromptControlErrorMessage: 'An error occurred while processing the request. Please try again with a different prompt.',
|
|
43
|
+
|
|
32
44
|
// Export selector toolbar button text
|
|
33
45
|
toolbarExport: 'Exporter',
|
|
34
46
|
toolbarExportLabel: 'Exporter',
|
|
@@ -40,6 +52,8 @@ const frFRGrid = {
|
|
|
40
52
|
columnsManagementNoColumns: 'Pas de colonnes',
|
|
41
53
|
columnsManagementShowHideAllText: 'Afficher/masquer toutes',
|
|
42
54
|
columnsManagementReset: 'Réinitialiser',
|
|
55
|
+
// columnsManagementDeleteIconLabel: 'Clear',
|
|
56
|
+
|
|
43
57
|
// Filter panel text
|
|
44
58
|
filterPanelAddFilter: 'Ajouter un filtre',
|
|
45
59
|
filterPanelRemoveAll: 'Tout supprimer',
|
package/node/locales/heIL.js
CHANGED
|
@@ -29,6 +29,18 @@ const heILGrid = {
|
|
|
29
29
|
toolbarQuickFilterPlaceholder: 'חיפוש…',
|
|
30
30
|
toolbarQuickFilterLabel: 'חיפוש',
|
|
31
31
|
toolbarQuickFilterDeleteIconLabel: 'ניקוי',
|
|
32
|
+
// Prompt toolbar field
|
|
33
|
+
// toolbarPromptControlPlaceholder: 'Type a prompt…',
|
|
34
|
+
// toolbarPromptControlWithRecordingPlaceholder: 'Type or record a prompt…',
|
|
35
|
+
// toolbarPromptControlRecordingPlaceholder: 'Listening for prompt…',
|
|
36
|
+
// toolbarPromptControlLabel: 'Prompt input',
|
|
37
|
+
// toolbarPromptControlDeleteIconLabel: 'Clear',
|
|
38
|
+
// toolbarPromptControlRecordButtonDefaultLabel: 'Record',
|
|
39
|
+
// toolbarPromptControlRecordButtonActiveLabel: 'Stop recording',
|
|
40
|
+
// toolbarPromptControlSendActionLabel: 'Send',
|
|
41
|
+
// toolbarPromptControlSendActionAriaLabel: 'Send prompt',
|
|
42
|
+
// toolbarPromptControlErrorMessage: 'An error occurred while processing the request. Please try again with a different prompt.',
|
|
43
|
+
|
|
32
44
|
// Export selector toolbar button text
|
|
33
45
|
toolbarExport: 'ייצוא',
|
|
34
46
|
toolbarExportLabel: 'ייצוא',
|
|
@@ -40,6 +52,8 @@ const heILGrid = {
|
|
|
40
52
|
columnsManagementNoColumns: 'אין עמודות',
|
|
41
53
|
columnsManagementShowHideAllText: 'הצג/הסתר הכל',
|
|
42
54
|
columnsManagementReset: 'אתחול',
|
|
55
|
+
// columnsManagementDeleteIconLabel: 'Clear',
|
|
56
|
+
|
|
43
57
|
// Filter panel text
|
|
44
58
|
filterPanelAddFilter: 'הוסף מסנן',
|
|
45
59
|
filterPanelRemoveAll: 'מחק הכל',
|
package/node/locales/hrHR.js
CHANGED
|
@@ -37,6 +37,18 @@ const hrHRGrid = {
|
|
|
37
37
|
toolbarQuickFilterPlaceholder: 'Traži…',
|
|
38
38
|
toolbarQuickFilterLabel: 'traži',
|
|
39
39
|
toolbarQuickFilterDeleteIconLabel: 'Obriši',
|
|
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
|
+
// toolbarPromptControlDeleteIconLabel: 'Clear',
|
|
46
|
+
// toolbarPromptControlRecordButtonDefaultLabel: 'Record',
|
|
47
|
+
// toolbarPromptControlRecordButtonActiveLabel: 'Stop recording',
|
|
48
|
+
// toolbarPromptControlSendActionLabel: 'Send',
|
|
49
|
+
// toolbarPromptControlSendActionAriaLabel: 'Send prompt',
|
|
50
|
+
// toolbarPromptControlErrorMessage: 'An error occurred while processing the request. Please try again with a different prompt.',
|
|
51
|
+
|
|
40
52
|
// Export selector toolbar button text
|
|
41
53
|
toolbarExport: 'Izvoz',
|
|
42
54
|
toolbarExportLabel: 'Izvoz',
|
|
@@ -48,6 +60,8 @@ const hrHRGrid = {
|
|
|
48
60
|
columnsManagementNoColumns: 'Nema stupaca',
|
|
49
61
|
columnsManagementShowHideAllText: 'Prikaži/Sakrij sve',
|
|
50
62
|
columnsManagementReset: 'Ponovno namjesti',
|
|
63
|
+
// columnsManagementDeleteIconLabel: 'Clear',
|
|
64
|
+
|
|
51
65
|
// Filter panel text
|
|
52
66
|
filterPanelAddFilter: 'Dodaj filter',
|
|
53
67
|
filterPanelRemoveAll: 'Ukloni sve',
|
package/node/locales/huHU.js
CHANGED
|
@@ -29,6 +29,18 @@ const huHUGrid = {
|
|
|
29
29
|
toolbarQuickFilterPlaceholder: 'Keresés…',
|
|
30
30
|
toolbarQuickFilterLabel: 'Keresés',
|
|
31
31
|
toolbarQuickFilterDeleteIconLabel: 'Törlés',
|
|
32
|
+
// Prompt toolbar field
|
|
33
|
+
// toolbarPromptControlPlaceholder: 'Type a prompt…',
|
|
34
|
+
// toolbarPromptControlWithRecordingPlaceholder: 'Type or record a prompt…',
|
|
35
|
+
// toolbarPromptControlRecordingPlaceholder: 'Listening for prompt…',
|
|
36
|
+
// toolbarPromptControlLabel: 'Prompt input',
|
|
37
|
+
// toolbarPromptControlDeleteIconLabel: 'Clear',
|
|
38
|
+
// toolbarPromptControlRecordButtonDefaultLabel: 'Record',
|
|
39
|
+
// toolbarPromptControlRecordButtonActiveLabel: 'Stop recording',
|
|
40
|
+
// toolbarPromptControlSendActionLabel: 'Send',
|
|
41
|
+
// toolbarPromptControlSendActionAriaLabel: 'Send prompt',
|
|
42
|
+
// toolbarPromptControlErrorMessage: 'An error occurred while processing the request. Please try again with a different prompt.',
|
|
43
|
+
|
|
32
44
|
// Export selector toolbar button text
|
|
33
45
|
toolbarExport: 'Exportálás',
|
|
34
46
|
toolbarExportLabel: 'Exportálás',
|
|
@@ -40,6 +52,8 @@ const huHUGrid = {
|
|
|
40
52
|
columnsManagementNoColumns: 'Nincsenek oszlopok',
|
|
41
53
|
columnsManagementShowHideAllText: 'Összes',
|
|
42
54
|
columnsManagementReset: 'Visszavon',
|
|
55
|
+
// columnsManagementDeleteIconLabel: 'Clear',
|
|
56
|
+
|
|
43
57
|
// Filter panel text
|
|
44
58
|
filterPanelAddFilter: 'Szűrő hozzáadása',
|
|
45
59
|
filterPanelRemoveAll: 'Összes törlése',
|
package/node/locales/isIS.js
CHANGED
|
@@ -29,6 +29,18 @@ const isISGrid = {
|
|
|
29
29
|
toolbarQuickFilterPlaceholder: 'Leita…',
|
|
30
30
|
toolbarQuickFilterLabel: 'Leita',
|
|
31
31
|
toolbarQuickFilterDeleteIconLabel: 'Eyða',
|
|
32
|
+
// Prompt toolbar field
|
|
33
|
+
// toolbarPromptControlPlaceholder: 'Type a prompt…',
|
|
34
|
+
// toolbarPromptControlWithRecordingPlaceholder: 'Type or record a prompt…',
|
|
35
|
+
// toolbarPromptControlRecordingPlaceholder: 'Listening for prompt…',
|
|
36
|
+
// toolbarPromptControlLabel: 'Prompt input',
|
|
37
|
+
// toolbarPromptControlDeleteIconLabel: 'Clear',
|
|
38
|
+
// toolbarPromptControlRecordButtonDefaultLabel: 'Record',
|
|
39
|
+
// toolbarPromptControlRecordButtonActiveLabel: 'Stop recording',
|
|
40
|
+
// toolbarPromptControlSendActionLabel: 'Send',
|
|
41
|
+
// toolbarPromptControlSendActionAriaLabel: 'Send prompt',
|
|
42
|
+
// toolbarPromptControlErrorMessage: 'An error occurred while processing the request. Please try again with a different prompt.',
|
|
43
|
+
|
|
32
44
|
// Export selector toolbar button text
|
|
33
45
|
toolbarExport: 'Flytja út',
|
|
34
46
|
toolbarExportLabel: 'Flytja út',
|
|
@@ -40,6 +52,7 @@ const isISGrid = {
|
|
|
40
52
|
// columnsManagementNoColumns: 'No columns',
|
|
41
53
|
// columnsManagementShowHideAllText: 'Show/Hide All',
|
|
42
54
|
// columnsManagementReset: 'Reset',
|
|
55
|
+
// columnsManagementDeleteIconLabel: 'Clear',
|
|
43
56
|
|
|
44
57
|
// Filter panel text
|
|
45
58
|
filterPanelAddFilter: 'Bæta síu',
|
package/node/locales/itIT.js
CHANGED
|
@@ -29,6 +29,18 @@ const itITGrid = {
|
|
|
29
29
|
toolbarQuickFilterPlaceholder: 'Cerca…',
|
|
30
30
|
toolbarQuickFilterLabel: 'Cerca',
|
|
31
31
|
toolbarQuickFilterDeleteIconLabel: 'Resetta',
|
|
32
|
+
// Prompt toolbar field
|
|
33
|
+
// toolbarPromptControlPlaceholder: 'Type a prompt…',
|
|
34
|
+
// toolbarPromptControlWithRecordingPlaceholder: 'Type or record a prompt…',
|
|
35
|
+
// toolbarPromptControlRecordingPlaceholder: 'Listening for prompt…',
|
|
36
|
+
// toolbarPromptControlLabel: 'Prompt input',
|
|
37
|
+
// toolbarPromptControlDeleteIconLabel: 'Clear',
|
|
38
|
+
// toolbarPromptControlRecordButtonDefaultLabel: 'Record',
|
|
39
|
+
// toolbarPromptControlRecordButtonActiveLabel: 'Stop recording',
|
|
40
|
+
// toolbarPromptControlSendActionLabel: 'Send',
|
|
41
|
+
// toolbarPromptControlSendActionAriaLabel: 'Send prompt',
|
|
42
|
+
// toolbarPromptControlErrorMessage: 'An error occurred while processing the request. Please try again with a different prompt.',
|
|
43
|
+
|
|
32
44
|
// Export selector toolbar button text
|
|
33
45
|
toolbarExport: 'Esporta',
|
|
34
46
|
toolbarExportLabel: 'Esporta',
|
|
@@ -40,6 +52,8 @@ const itITGrid = {
|
|
|
40
52
|
columnsManagementNoColumns: 'Nessuna colonna',
|
|
41
53
|
columnsManagementShowHideAllText: 'Mostra/Nascondi Tutto',
|
|
42
54
|
columnsManagementReset: 'Resetta',
|
|
55
|
+
// columnsManagementDeleteIconLabel: 'Clear',
|
|
56
|
+
|
|
43
57
|
// Filter panel text
|
|
44
58
|
filterPanelAddFilter: 'Aggiungi un filtro',
|
|
45
59
|
filterPanelRemoveAll: 'Rimuovi filtri',
|
package/node/locales/jaJP.js
CHANGED
|
@@ -29,6 +29,18 @@ const jaJPGrid = {
|
|
|
29
29
|
toolbarQuickFilterPlaceholder: '検索…',
|
|
30
30
|
toolbarQuickFilterLabel: '検索',
|
|
31
31
|
toolbarQuickFilterDeleteIconLabel: 'クリア',
|
|
32
|
+
// Prompt toolbar field
|
|
33
|
+
// toolbarPromptControlPlaceholder: 'Type a prompt…',
|
|
34
|
+
// toolbarPromptControlWithRecordingPlaceholder: 'Type or record a prompt…',
|
|
35
|
+
// toolbarPromptControlRecordingPlaceholder: 'Listening for prompt…',
|
|
36
|
+
// toolbarPromptControlLabel: 'Prompt input',
|
|
37
|
+
// toolbarPromptControlDeleteIconLabel: 'Clear',
|
|
38
|
+
// toolbarPromptControlRecordButtonDefaultLabel: 'Record',
|
|
39
|
+
// toolbarPromptControlRecordButtonActiveLabel: 'Stop recording',
|
|
40
|
+
// toolbarPromptControlSendActionLabel: 'Send',
|
|
41
|
+
// toolbarPromptControlSendActionAriaLabel: 'Send prompt',
|
|
42
|
+
// toolbarPromptControlErrorMessage: 'An error occurred while processing the request. Please try again with a different prompt.',
|
|
43
|
+
|
|
32
44
|
// Export selector toolbar button text
|
|
33
45
|
toolbarExport: 'エクスポート',
|
|
34
46
|
toolbarExportLabel: 'エクスポート',
|
|
@@ -40,6 +52,8 @@ const jaJPGrid = {
|
|
|
40
52
|
columnsManagementNoColumns: 'カラムなし',
|
|
41
53
|
columnsManagementShowHideAllText: 'すべて表示/非表示',
|
|
42
54
|
columnsManagementReset: 'リセット',
|
|
55
|
+
// columnsManagementDeleteIconLabel: 'Clear',
|
|
56
|
+
|
|
43
57
|
// Filter panel text
|
|
44
58
|
filterPanelAddFilter: 'フィルター追加',
|
|
45
59
|
filterPanelRemoveAll: 'すべて削除',
|
package/node/locales/koKR.js
CHANGED
|
@@ -29,6 +29,18 @@ const koKRGrid = {
|
|
|
29
29
|
toolbarQuickFilterPlaceholder: '검색…',
|
|
30
30
|
toolbarQuickFilterLabel: '검색',
|
|
31
31
|
toolbarQuickFilterDeleteIconLabel: '초기화',
|
|
32
|
+
// Prompt toolbar field
|
|
33
|
+
// toolbarPromptControlPlaceholder: 'Type a prompt…',
|
|
34
|
+
// toolbarPromptControlWithRecordingPlaceholder: 'Type or record a prompt…',
|
|
35
|
+
// toolbarPromptControlRecordingPlaceholder: 'Listening for prompt…',
|
|
36
|
+
// toolbarPromptControlLabel: 'Prompt input',
|
|
37
|
+
// toolbarPromptControlDeleteIconLabel: 'Clear',
|
|
38
|
+
// toolbarPromptControlRecordButtonDefaultLabel: 'Record',
|
|
39
|
+
// toolbarPromptControlRecordButtonActiveLabel: 'Stop recording',
|
|
40
|
+
// toolbarPromptControlSendActionLabel: 'Send',
|
|
41
|
+
// toolbarPromptControlSendActionAriaLabel: 'Send prompt',
|
|
42
|
+
// toolbarPromptControlErrorMessage: 'An error occurred while processing the request. Please try again with a different prompt.',
|
|
43
|
+
|
|
32
44
|
// Export selector toolbar button text
|
|
33
45
|
toolbarExport: '내보내기',
|
|
34
46
|
toolbarExportLabel: '내보내기',
|
|
@@ -40,6 +52,7 @@ const koKRGrid = {
|
|
|
40
52
|
// columnsManagementNoColumns: 'No columns',
|
|
41
53
|
// columnsManagementShowHideAllText: 'Show/Hide All',
|
|
42
54
|
// columnsManagementReset: 'Reset',
|
|
55
|
+
// columnsManagementDeleteIconLabel: 'Clear',
|
|
43
56
|
|
|
44
57
|
// Filter panel text
|
|
45
58
|
filterPanelAddFilter: '필터 추가',
|
package/node/locales/nbNO.js
CHANGED
|
@@ -29,6 +29,18 @@ const nbNOGrid = {
|
|
|
29
29
|
toolbarQuickFilterPlaceholder: 'Søk…',
|
|
30
30
|
toolbarQuickFilterLabel: 'Søk',
|
|
31
31
|
toolbarQuickFilterDeleteIconLabel: 'Slett',
|
|
32
|
+
// Prompt toolbar field
|
|
33
|
+
// toolbarPromptControlPlaceholder: 'Type a prompt…',
|
|
34
|
+
// toolbarPromptControlWithRecordingPlaceholder: 'Type or record a prompt…',
|
|
35
|
+
// toolbarPromptControlRecordingPlaceholder: 'Listening for prompt…',
|
|
36
|
+
// toolbarPromptControlLabel: 'Prompt input',
|
|
37
|
+
// toolbarPromptControlDeleteIconLabel: 'Clear',
|
|
38
|
+
// toolbarPromptControlRecordButtonDefaultLabel: 'Record',
|
|
39
|
+
// toolbarPromptControlRecordButtonActiveLabel: 'Stop recording',
|
|
40
|
+
// toolbarPromptControlSendActionLabel: 'Send',
|
|
41
|
+
// toolbarPromptControlSendActionAriaLabel: 'Send prompt',
|
|
42
|
+
// toolbarPromptControlErrorMessage: 'An error occurred while processing the request. Please try again with a different prompt.',
|
|
43
|
+
|
|
32
44
|
// Export selector toolbar button text
|
|
33
45
|
toolbarExport: 'Eksporter',
|
|
34
46
|
toolbarExportLabel: 'Eksporter',
|
|
@@ -40,6 +52,8 @@ const nbNOGrid = {
|
|
|
40
52
|
columnsManagementNoColumns: 'Ingen kolonner',
|
|
41
53
|
columnsManagementShowHideAllText: 'Vis/skjul alle',
|
|
42
54
|
columnsManagementReset: 'Nullstill',
|
|
55
|
+
// columnsManagementDeleteIconLabel: 'Clear',
|
|
56
|
+
|
|
43
57
|
// Filter panel text
|
|
44
58
|
filterPanelAddFilter: 'Legg til filter',
|
|
45
59
|
filterPanelRemoveAll: 'Fjern alle',
|
package/node/locales/nlNL.js
CHANGED
|
@@ -29,6 +29,18 @@ const nlNLGrid = {
|
|
|
29
29
|
toolbarQuickFilterPlaceholder: 'Zoeken…',
|
|
30
30
|
toolbarQuickFilterLabel: 'Zoeken',
|
|
31
31
|
toolbarQuickFilterDeleteIconLabel: 'Wissen',
|
|
32
|
+
// Prompt toolbar field
|
|
33
|
+
// toolbarPromptControlPlaceholder: 'Type a prompt…',
|
|
34
|
+
// toolbarPromptControlWithRecordingPlaceholder: 'Type or record a prompt…',
|
|
35
|
+
// toolbarPromptControlRecordingPlaceholder: 'Listening for prompt…',
|
|
36
|
+
// toolbarPromptControlLabel: 'Prompt input',
|
|
37
|
+
// toolbarPromptControlDeleteIconLabel: 'Clear',
|
|
38
|
+
// toolbarPromptControlRecordButtonDefaultLabel: 'Record',
|
|
39
|
+
// toolbarPromptControlRecordButtonActiveLabel: 'Stop recording',
|
|
40
|
+
// toolbarPromptControlSendActionLabel: 'Send',
|
|
41
|
+
// toolbarPromptControlSendActionAriaLabel: 'Send prompt',
|
|
42
|
+
// toolbarPromptControlErrorMessage: 'An error occurred while processing the request. Please try again with a different prompt.',
|
|
43
|
+
|
|
32
44
|
// Export selector toolbar button text
|
|
33
45
|
toolbarExport: 'Exporteren',
|
|
34
46
|
toolbarExportLabel: 'Exporteren',
|
|
@@ -40,6 +52,8 @@ const nlNLGrid = {
|
|
|
40
52
|
columnsManagementNoColumns: 'Geen kolommen',
|
|
41
53
|
columnsManagementShowHideAllText: 'Toon/Verberg Alle',
|
|
42
54
|
columnsManagementReset: 'Reset',
|
|
55
|
+
// columnsManagementDeleteIconLabel: 'Clear',
|
|
56
|
+
|
|
43
57
|
// Filter panel text
|
|
44
58
|
filterPanelAddFilter: 'Filter toevoegen',
|
|
45
59
|
filterPanelRemoveAll: 'Alles verwijderen',
|
package/node/locales/nnNO.js
CHANGED
|
@@ -29,6 +29,18 @@ const nnNOGrid = {
|
|
|
29
29
|
toolbarQuickFilterPlaceholder: 'Søk…',
|
|
30
30
|
toolbarQuickFilterLabel: 'Søk',
|
|
31
31
|
toolbarQuickFilterDeleteIconLabel: 'Slett',
|
|
32
|
+
// Prompt toolbar field
|
|
33
|
+
// toolbarPromptControlPlaceholder: 'Type a prompt…',
|
|
34
|
+
// toolbarPromptControlWithRecordingPlaceholder: 'Type or record a prompt…',
|
|
35
|
+
// toolbarPromptControlRecordingPlaceholder: 'Listening for prompt…',
|
|
36
|
+
// toolbarPromptControlLabel: 'Prompt input',
|
|
37
|
+
// toolbarPromptControlDeleteIconLabel: 'Clear',
|
|
38
|
+
// toolbarPromptControlRecordButtonDefaultLabel: 'Record',
|
|
39
|
+
// toolbarPromptControlRecordButtonActiveLabel: 'Stop recording',
|
|
40
|
+
// toolbarPromptControlSendActionLabel: 'Send',
|
|
41
|
+
// toolbarPromptControlSendActionAriaLabel: 'Send prompt',
|
|
42
|
+
// toolbarPromptControlErrorMessage: 'An error occurred while processing the request. Please try again with a different prompt.',
|
|
43
|
+
|
|
32
44
|
// Export selector toolbar button text
|
|
33
45
|
toolbarExport: 'Eksporter',
|
|
34
46
|
toolbarExportLabel: 'Eksporter',
|
|
@@ -40,6 +52,8 @@ const nnNOGrid = {
|
|
|
40
52
|
columnsManagementNoColumns: 'Ingen kolonner',
|
|
41
53
|
columnsManagementShowHideAllText: 'Vis/skjul alle',
|
|
42
54
|
columnsManagementReset: 'Nullstill',
|
|
55
|
+
// columnsManagementDeleteIconLabel: 'Clear',
|
|
56
|
+
|
|
43
57
|
// Filter panel text
|
|
44
58
|
filterPanelAddFilter: 'Legg til filter',
|
|
45
59
|
filterPanelRemoveAll: 'Fjern alle',
|
package/node/locales/plPL.js
CHANGED
|
@@ -29,6 +29,18 @@ const plPLGrid = {
|
|
|
29
29
|
toolbarQuickFilterPlaceholder: 'Wyszukaj…',
|
|
30
30
|
toolbarQuickFilterLabel: 'Szukaj',
|
|
31
31
|
toolbarQuickFilterDeleteIconLabel: 'Wyczyść',
|
|
32
|
+
// Prompt toolbar field
|
|
33
|
+
// toolbarPromptControlPlaceholder: 'Type a prompt…',
|
|
34
|
+
// toolbarPromptControlWithRecordingPlaceholder: 'Type or record a prompt…',
|
|
35
|
+
// toolbarPromptControlRecordingPlaceholder: 'Listening for prompt…',
|
|
36
|
+
// toolbarPromptControlLabel: 'Prompt input',
|
|
37
|
+
// toolbarPromptControlDeleteIconLabel: 'Clear',
|
|
38
|
+
// toolbarPromptControlRecordButtonDefaultLabel: 'Record',
|
|
39
|
+
// toolbarPromptControlRecordButtonActiveLabel: 'Stop recording',
|
|
40
|
+
// toolbarPromptControlSendActionLabel: 'Send',
|
|
41
|
+
// toolbarPromptControlSendActionAriaLabel: 'Send prompt',
|
|
42
|
+
// toolbarPromptControlErrorMessage: 'An error occurred while processing the request. Please try again with a different prompt.',
|
|
43
|
+
|
|
32
44
|
// Export selector toolbar button text
|
|
33
45
|
toolbarExport: 'Eksportuj',
|
|
34
46
|
toolbarExportLabel: 'Eksportuj',
|
|
@@ -40,6 +52,8 @@ const plPLGrid = {
|
|
|
40
52
|
columnsManagementNoColumns: 'Brak kolumn',
|
|
41
53
|
columnsManagementShowHideAllText: 'Wyświetl/Ukryj wszystkie',
|
|
42
54
|
columnsManagementReset: 'Resetuj',
|
|
55
|
+
// columnsManagementDeleteIconLabel: 'Clear',
|
|
56
|
+
|
|
43
57
|
// Filter panel text
|
|
44
58
|
filterPanelAddFilter: 'Dodaj filtr',
|
|
45
59
|
filterPanelRemoveAll: 'Usuń wszystkie',
|
package/node/locales/ptBR.js
CHANGED
|
@@ -29,6 +29,18 @@ const ptBRGrid = {
|
|
|
29
29
|
toolbarQuickFilterPlaceholder: 'Procurar…',
|
|
30
30
|
toolbarQuickFilterLabel: 'Procurar',
|
|
31
31
|
toolbarQuickFilterDeleteIconLabel: 'Limpar',
|
|
32
|
+
// Prompt toolbar field
|
|
33
|
+
// toolbarPromptControlPlaceholder: 'Type a prompt…',
|
|
34
|
+
// toolbarPromptControlWithRecordingPlaceholder: 'Type or record a prompt…',
|
|
35
|
+
// toolbarPromptControlRecordingPlaceholder: 'Listening for prompt…',
|
|
36
|
+
// toolbarPromptControlLabel: 'Prompt input',
|
|
37
|
+
// toolbarPromptControlDeleteIconLabel: 'Clear',
|
|
38
|
+
// toolbarPromptControlRecordButtonDefaultLabel: 'Record',
|
|
39
|
+
// toolbarPromptControlRecordButtonActiveLabel: 'Stop recording',
|
|
40
|
+
// toolbarPromptControlSendActionLabel: 'Send',
|
|
41
|
+
// toolbarPromptControlSendActionAriaLabel: 'Send prompt',
|
|
42
|
+
// toolbarPromptControlErrorMessage: 'An error occurred while processing the request. Please try again with a different prompt.',
|
|
43
|
+
|
|
32
44
|
// Export selector toolbar button text
|
|
33
45
|
toolbarExport: 'Exportar',
|
|
34
46
|
toolbarExportLabel: 'Exportar',
|
|
@@ -40,6 +52,8 @@ const ptBRGrid = {
|
|
|
40
52
|
columnsManagementNoColumns: 'Nenhuma coluna',
|
|
41
53
|
columnsManagementShowHideAllText: 'Mostrar/Ocultar Todas',
|
|
42
54
|
columnsManagementReset: 'Redefinir',
|
|
55
|
+
// columnsManagementDeleteIconLabel: 'Clear',
|
|
56
|
+
|
|
43
57
|
// Filter panel text
|
|
44
58
|
filterPanelAddFilter: 'Adicionar filtro',
|
|
45
59
|
filterPanelRemoveAll: 'Remover todos',
|
package/node/locales/ptPT.js
CHANGED
|
@@ -29,6 +29,18 @@ const ptPTGrid = {
|
|
|
29
29
|
toolbarQuickFilterPlaceholder: 'Procurar…',
|
|
30
30
|
toolbarQuickFilterLabel: 'Procurar',
|
|
31
31
|
toolbarQuickFilterDeleteIconLabel: 'Claro',
|
|
32
|
+
// Prompt toolbar field
|
|
33
|
+
// toolbarPromptControlPlaceholder: 'Type a prompt…',
|
|
34
|
+
// toolbarPromptControlWithRecordingPlaceholder: 'Type or record a prompt…',
|
|
35
|
+
// toolbarPromptControlRecordingPlaceholder: 'Listening for prompt…',
|
|
36
|
+
// toolbarPromptControlLabel: 'Prompt input',
|
|
37
|
+
// toolbarPromptControlDeleteIconLabel: 'Clear',
|
|
38
|
+
// toolbarPromptControlRecordButtonDefaultLabel: 'Record',
|
|
39
|
+
// toolbarPromptControlRecordButtonActiveLabel: 'Stop recording',
|
|
40
|
+
// toolbarPromptControlSendActionLabel: 'Send',
|
|
41
|
+
// toolbarPromptControlSendActionAriaLabel: 'Send prompt',
|
|
42
|
+
// toolbarPromptControlErrorMessage: 'An error occurred while processing the request. Please try again with a different prompt.',
|
|
43
|
+
|
|
32
44
|
// Export selector toolbar button text
|
|
33
45
|
toolbarExport: 'Exportar',
|
|
34
46
|
toolbarExportLabel: 'Exportar',
|
|
@@ -40,6 +52,8 @@ const ptPTGrid = {
|
|
|
40
52
|
columnsManagementNoColumns: 'Sem colunas',
|
|
41
53
|
columnsManagementShowHideAllText: 'Mostrar/Ocultar Todas',
|
|
42
54
|
columnsManagementReset: 'Repor',
|
|
55
|
+
// columnsManagementDeleteIconLabel: 'Clear',
|
|
56
|
+
|
|
43
57
|
// Filter panel text
|
|
44
58
|
filterPanelAddFilter: 'Adicionar filtro',
|
|
45
59
|
filterPanelRemoveAll: 'Excluir todos',
|
package/node/locales/roRO.js
CHANGED
|
@@ -29,6 +29,18 @@ const roROGrid = {
|
|
|
29
29
|
toolbarQuickFilterPlaceholder: 'Căutare…',
|
|
30
30
|
toolbarQuickFilterLabel: 'Căutare',
|
|
31
31
|
toolbarQuickFilterDeleteIconLabel: 'Ștergere',
|
|
32
|
+
// Prompt toolbar field
|
|
33
|
+
// toolbarPromptControlPlaceholder: 'Type a prompt…',
|
|
34
|
+
// toolbarPromptControlWithRecordingPlaceholder: 'Type or record a prompt…',
|
|
35
|
+
// toolbarPromptControlRecordingPlaceholder: 'Listening for prompt…',
|
|
36
|
+
// toolbarPromptControlLabel: 'Prompt input',
|
|
37
|
+
// toolbarPromptControlDeleteIconLabel: 'Clear',
|
|
38
|
+
// toolbarPromptControlRecordButtonDefaultLabel: 'Record',
|
|
39
|
+
// toolbarPromptControlRecordButtonActiveLabel: 'Stop recording',
|
|
40
|
+
// toolbarPromptControlSendActionLabel: 'Send',
|
|
41
|
+
// toolbarPromptControlSendActionAriaLabel: 'Send prompt',
|
|
42
|
+
// toolbarPromptControlErrorMessage: 'An error occurred while processing the request. Please try again with a different prompt.',
|
|
43
|
+
|
|
32
44
|
// Export selector toolbar button text
|
|
33
45
|
toolbarExport: 'Export',
|
|
34
46
|
toolbarExportLabel: 'Export',
|
|
@@ -40,6 +52,7 @@ const roROGrid = {
|
|
|
40
52
|
// columnsManagementNoColumns: 'No columns',
|
|
41
53
|
// columnsManagementShowHideAllText: 'Show/Hide All',
|
|
42
54
|
// columnsManagementReset: 'Reset',
|
|
55
|
+
// columnsManagementDeleteIconLabel: 'Clear',
|
|
43
56
|
|
|
44
57
|
// Filter panel text
|
|
45
58
|
filterPanelAddFilter: 'Adăugare filtru',
|
package/node/locales/ruRU.js
CHANGED
|
@@ -44,6 +44,18 @@ const ruRUGrid = {
|
|
|
44
44
|
toolbarQuickFilterPlaceholder: 'Поиск…',
|
|
45
45
|
toolbarQuickFilterLabel: 'Поиск',
|
|
46
46
|
toolbarQuickFilterDeleteIconLabel: 'Очистить',
|
|
47
|
+
// Prompt toolbar field
|
|
48
|
+
// toolbarPromptControlPlaceholder: 'Type a prompt…',
|
|
49
|
+
// toolbarPromptControlWithRecordingPlaceholder: 'Type or record a prompt…',
|
|
50
|
+
// toolbarPromptControlRecordingPlaceholder: 'Listening for prompt…',
|
|
51
|
+
// toolbarPromptControlLabel: 'Prompt input',
|
|
52
|
+
// toolbarPromptControlDeleteIconLabel: 'Clear',
|
|
53
|
+
// toolbarPromptControlRecordButtonDefaultLabel: 'Record',
|
|
54
|
+
// toolbarPromptControlRecordButtonActiveLabel: 'Stop recording',
|
|
55
|
+
// toolbarPromptControlSendActionLabel: 'Send',
|
|
56
|
+
// toolbarPromptControlSendActionAriaLabel: 'Send prompt',
|
|
57
|
+
// toolbarPromptControlErrorMessage: 'An error occurred while processing the request. Please try again with a different prompt.',
|
|
58
|
+
|
|
47
59
|
// Export selector toolbar button text
|
|
48
60
|
toolbarExport: 'Экспорт',
|
|
49
61
|
toolbarExportLabel: 'Экспорт',
|
|
@@ -55,6 +67,8 @@ const ruRUGrid = {
|
|
|
55
67
|
columnsManagementNoColumns: 'Нет столбцов',
|
|
56
68
|
columnsManagementShowHideAllText: 'Показать/Скрыть Всё',
|
|
57
69
|
columnsManagementReset: 'Сбросить',
|
|
70
|
+
// columnsManagementDeleteIconLabel: 'Clear',
|
|
71
|
+
|
|
58
72
|
// Filter panel text
|
|
59
73
|
filterPanelAddFilter: 'Добавить фильтр',
|
|
60
74
|
filterPanelRemoveAll: 'Очистить фильтр',
|
package/node/locales/skSK.js
CHANGED
|
@@ -37,6 +37,18 @@ const skSKGrid = {
|
|
|
37
37
|
toolbarQuickFilterPlaceholder: 'Vyhľadať…',
|
|
38
38
|
toolbarQuickFilterLabel: 'Vyhľadať',
|
|
39
39
|
toolbarQuickFilterDeleteIconLabel: 'Vymazať',
|
|
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
|
+
// toolbarPromptControlDeleteIconLabel: 'Clear',
|
|
46
|
+
// toolbarPromptControlRecordButtonDefaultLabel: 'Record',
|
|
47
|
+
// toolbarPromptControlRecordButtonActiveLabel: 'Stop recording',
|
|
48
|
+
// toolbarPromptControlSendActionLabel: 'Send',
|
|
49
|
+
// toolbarPromptControlSendActionAriaLabel: 'Send prompt',
|
|
50
|
+
// toolbarPromptControlErrorMessage: 'An error occurred while processing the request. Please try again with a different prompt.',
|
|
51
|
+
|
|
40
52
|
// Export selector toolbar button text
|
|
41
53
|
toolbarExport: 'Export',
|
|
42
54
|
toolbarExportLabel: 'Export',
|
|
@@ -48,6 +60,7 @@ const skSKGrid = {
|
|
|
48
60
|
columnsManagementNoColumns: 'Žiadne stĺpce',
|
|
49
61
|
columnsManagementShowHideAllText: 'Zobraziť/Skryť všetko',
|
|
50
62
|
// columnsManagementReset: 'Reset',
|
|
63
|
+
// columnsManagementDeleteIconLabel: 'Clear',
|
|
51
64
|
|
|
52
65
|
// Filter panel text
|
|
53
66
|
filterPanelAddFilter: 'Pridať filter',
|
package/node/locales/svSE.js
CHANGED
|
@@ -29,6 +29,18 @@ const svSEGrid = {
|
|
|
29
29
|
toolbarQuickFilterPlaceholder: 'Sök…',
|
|
30
30
|
toolbarQuickFilterLabel: 'Sök',
|
|
31
31
|
toolbarQuickFilterDeleteIconLabel: 'Rensa',
|
|
32
|
+
// Prompt toolbar field
|
|
33
|
+
// toolbarPromptControlPlaceholder: 'Type a prompt…',
|
|
34
|
+
// toolbarPromptControlWithRecordingPlaceholder: 'Type or record a prompt…',
|
|
35
|
+
// toolbarPromptControlRecordingPlaceholder: 'Listening for prompt…',
|
|
36
|
+
// toolbarPromptControlLabel: 'Prompt input',
|
|
37
|
+
// toolbarPromptControlDeleteIconLabel: 'Clear',
|
|
38
|
+
// toolbarPromptControlRecordButtonDefaultLabel: 'Record',
|
|
39
|
+
// toolbarPromptControlRecordButtonActiveLabel: 'Stop recording',
|
|
40
|
+
// toolbarPromptControlSendActionLabel: 'Send',
|
|
41
|
+
// toolbarPromptControlSendActionAriaLabel: 'Send prompt',
|
|
42
|
+
// toolbarPromptControlErrorMessage: 'An error occurred while processing the request. Please try again with a different prompt.',
|
|
43
|
+
|
|
32
44
|
// Export selector toolbar button text
|
|
33
45
|
toolbarExport: 'Exportera',
|
|
34
46
|
toolbarExportLabel: 'Exportera',
|
|
@@ -39,7 +51,8 @@ const svSEGrid = {
|
|
|
39
51
|
columnsManagementSearchTitle: 'Sök',
|
|
40
52
|
columnsManagementNoColumns: 'Inga kolumner',
|
|
41
53
|
columnsManagementShowHideAllText: 'Visa/Dölj alla',
|
|
42
|
-
|
|
54
|
+
columnsManagementReset: 'Återställ',
|
|
55
|
+
// columnsManagementDeleteIconLabel: 'Clear',
|
|
43
56
|
|
|
44
57
|
// Filter panel text
|
|
45
58
|
filterPanelAddFilter: 'Lägg till filter',
|
|
@@ -54,9 +67,9 @@ const svSEGrid = {
|
|
|
54
67
|
filterPanelInputPlaceholder: 'Filtervärde',
|
|
55
68
|
// Filter operators text
|
|
56
69
|
filterOperatorContains: 'innehåller',
|
|
57
|
-
|
|
70
|
+
filterOperatorDoesNotContain: 'innehåller inte',
|
|
58
71
|
filterOperatorEquals: 'lika med',
|
|
59
|
-
|
|
72
|
+
filterOperatorDoesNotEqual: 'inte lika med',
|
|
60
73
|
filterOperatorStartsWith: 'börjar med',
|
|
61
74
|
filterOperatorEndsWith: 'slutar med',
|
|
62
75
|
filterOperatorIs: 'är',
|
|
@@ -76,9 +89,9 @@ const svSEGrid = {
|
|
|
76
89
|
'filterOperator<=': '<=',
|
|
77
90
|
// Header filter operators text
|
|
78
91
|
headerFilterOperatorContains: 'Innehåller',
|
|
79
|
-
|
|
92
|
+
headerFilterOperatorDoesNotContain: 'Innehåller inte',
|
|
80
93
|
headerFilterOperatorEquals: 'Lika med',
|
|
81
|
-
|
|
94
|
+
headerFilterOperatorDoesNotEqual: 'Inte lika med',
|
|
82
95
|
headerFilterOperatorStartsWith: 'Börjar med',
|
|
83
96
|
headerFilterOperatorEndsWith: 'Slutar med',
|
|
84
97
|
headerFilterOperatorIs: 'Är',
|