diff --git a/apps/material-react-table-docs/pages/changelog.mdx b/apps/material-react-table-docs/pages/changelog.mdx index d430c1b34..63abbe99d 100644 --- a/apps/material-react-table-docs/pages/changelog.mdx +++ b/apps/material-react-table-docs/pages/changelog.mdx @@ -9,6 +9,10 @@ import Head from 'next/head'; > Note: As of v2.12.0, the React and ReactDom peer dependencies have been moved back down to React v17 in order to help more people upgrade to MRT v2 without having to upgrade to React v18. +### Version 2.13.3 - 2024-09-04 + +- Fixed `no` locale + ### Version 2.13.2 - 2024-08-30 - Upgraded to TanStack Table v8.20.5 diff --git a/packages/material-react-table/package.json b/packages/material-react-table/package.json index 41a82f848..1561c5c16 100644 --- a/packages/material-react-table/package.json +++ b/packages/material-react-table/package.json @@ -1,5 +1,5 @@ { - "version": "2.13.2", + "version": "2.13.3", "license": "MIT", "name": "material-react-table", "description": "A fully featured Material UI V5 implementation of TanStack React Table V8, written from the ground up in TypeScript.", diff --git a/packages/material-react-table/src/locales/no.ts b/packages/material-react-table/src/locales/no.ts index c8d4a4cf5..a6455cef0 100644 --- a/packages/material-react-table/src/locales/no.ts +++ b/packages/material-react-table/src/locales/no.ts @@ -93,5 +93,6 @@ export const MRT_Localization_NO: MRT_Localization = { unpinAll: 'Løsne alle', ungroupByColumn: 'Oppgrupper etter {column}', - selectedCountOfRowCountRowsSelected: '{selectedCount} av {rowCount} rader valgt', + selectedCountOfRowCountRowsSelected: + '{selectedCount} av {rowCount} rader valgt', };