Skip to content
+

Data Grid - Translated components

The data grid allows to support users from different locales, with formatting, and localized strings.

The default locale of MUI X is English (United States). If you want to use other locales, follow the instructions below.

Translation keys

You can use the localeText prop to pass in your own text and translations. You can find all the translation keys supported in the source in the GitHub repository. In the following example, the labels of the density selector are customized.

Press Enter to start editing

Locale text

The default locale of MUI X is English (United States).

You can use the theme to configure the locale text:

import { createTheme, ThemeProvider } from '@mui/material/styles';
import { DataGrid } from '@mui/x-data-grid';
import { bgBG } from '@mui/x-data-grid/locales';
// Or import { bgBG } from '@mui/x-data-grid-pro/locales';
// Or import { bgBG } from '@mui/x-data-grid-premium/locales';

const theme = createTheme(
  {
    palette: {
      primary: { main: '#1976d2' },
    },
  },
  bgBG,
);

<ThemeProvider theme={theme}>
  <DataGrid />
</ThemeProvider>;

Note that createTheme accepts any number of arguments. If you are already using the translations of the core components, you can add bgBG as a new argument. The same import works for DataGridPro as it's an extension of DataGrid.

import { createTheme, ThemeProvider } from '@mui/material/styles';
import { DataGrid } from '@mui/x-data-grid';
import { bgBG } from '@mui/x-data-grid/locales';
import { bgBG as pickersBgBG } from '@mui/x-date-pickers/locales';
import { bgBG as coreBgBG } from '@mui/material/locale';

const theme = createTheme(
  {
    palette: {
      primary: { main: '#1976d2' },
    },
  },
  bgBG, // x-data-grid translations
  pickersBgBG, // x-date-pickers translations
  coreBgBG, // core translations
);

<ThemeProvider theme={theme}>
  <DataGrid />
</ThemeProvider>;

If you want to pass language translations directly to the data grid without using createTheme and ThemeProvider, you can directly load the language translations from @mui/x-data-grid/locales.

import { DataGrid } from '@mui/x-data-grid';
import { nlNL } from '@mui/x-data-grid/locales';

<DataGrid localeText={nlNL.components.MuiDataGrid.defaultProps.localeText} />;

Supported locales

LocaleBCP 47 language tagImport nameCompletionSource file
Arabic (Sudan)ar-SDarSD
114/118
Edit
Belarusianbe-BYbeBY
88/118
Edit
Bulgarianbg-BGbgBG
114/118
Edit
Chinese (Hong Kong)zh-HKzhHK
114/118
Edit
Chinese (Simplified)zh-CNzhCN
114/118
Edit
Chinese (Taiwan)zh-TWzhTW
114/118
Edit
Croatianhr-HRhrHR
114/118
Edit
Czechcs-CZcsCZ
114/118
Edit
Danishda-DKdaDK
117/118
Edit
Dutchnl-NLnlNL
114/118
Edit
Finnishfi-FIfiFI
114/118
Edit
Frenchfr-FRfrFR
117/118
Edit
Germande-DEdeDE
117/118
Edit
Greekel-GRelGR
114/118
Edit
Hebrewhe-ILheIL
114/118
Edit
Hungarianhu-HUhuHU
112/118
Edit
Italianit-ITitIT
114/118
Edit
Japaneseja-JPjaJP
117/118
Edit
Koreanko-KRkoKR
87/118
Edit
Norwegian (Bokmål)nb-NOnbNO
89/118
Edit
Persianfa-IRfaIR
117/118
Edit
Polishpl-PLplPL
87/118
Edit
Portuguesept-PTptPT
114/118
Edit
Portuguese (Brazil)pt-BRptBR
117/118
Edit
Romanianro-ROroRO
114/118
Edit
Russianru-RUruRU
114/118
Edit
Slovaksk-SKskSK
117/118
Edit
Spanishes-ESesES
117/118
Edit
Swedishsv-SEsvSE
117/118
Edit
Turkishtr-TRtrTR
99/118
Edit
Ukrainianuk-UAukUA
114/118
Edit
Urdu (Pakistan)ur-PKurPK
114/118
Edit
Vietnamesevi-VNviVN
114/118
Edit

You can find the source in the GitHub repository.

To create your own translation or to customize the English text, copy this file to your project, make any changes needed and import the locale from there. Note that these translations of the Data Grid component depend on the Localization strategy of the whole library.

RTL Support

Right-to-left languages such as Arabic, Persian, or Hebrew are supported. Follow this guide to use them.

The example below demonstrates how to use an RTL language (Arabic) with the data grid.

Press Enter to start editing