dragon image みちのぶのねぐら

MUI の DataGrid の "Rows per page" をローカライズする

Update: 2021-11-23

MUIDataGrid のフッタに表示される "Rows per page" を日本語にしようとしたのですが、 https://github.com/mui-org/material-ui-x/blob/HEAD/packages/grid/_modules_/grid/constants/localeTextConstants.ts には無いようです。

とりあえずの回避策 はうまくいきました。

私の場合、こんな感じで。 t('Rows per page') のところはローカライズの仕組みに合わせて。

<DataGrid
  componentsProps={ {
    pagination: {
      labelRowsPerPage: t('Rows per page')
    }
  }}
/>

Tag: nodejs react mui