Localization (i18n) Guide
Material React Table has full support for localization (i18n). Some locales are included by default, but if your language is not yet supported, you can still easily add your own custom translations to the localization
prop.
Relevant Props
# | Prop Name | Type | Default Value | More Info Links | |
---|---|---|---|---|---|
1 |
| Localization (i18n) Guide | |||
Built-in Locales
The following locales are included and can be imported from 'material-react-table/locales/'
:
cs
, de
, en
, es
, fa
, fr
, it
, nl
, ja
, pl
, pt
, pt-BR
, ro
, ru
, tr
, vi
, zh-Hans
, zh-Hant
If your language is not yet supported, please consider making a PR to add it to the library! See here on GitHub.
Built-in Locale Examples
Scroll and find your language below to see an example of how to use it.
Custom Non-Built-In Translations
If you want to use a language that is not included in the library, you can still easily add your own custom translations to the localization
prop.
<MaterialReactTablecolumns={columns}data={data}localization={{actions: 'Ações',and: 'e',cancel: 'Cancelar',changeFilterMode: 'Alterar o modo de filtro',changeSearchMode: 'Alterar o modo de pesquisa',clearFilter: 'Limpar filtros',clearSearch: 'Limpar pesquisa',clearSort: 'Limpar classificações',clickToCopy: 'Clique para copiar',// ... and many more - see link below for full list of translation keys}}/>
For a full list of all available translation keys, see here
If you end up fully translating MRT into another language that is not yet supported, please consider making a PR to add it to the library so that everyone can use it!