English Messages for React-Admin
English messages for react-admin, the frontend framework for building admin applications on top of REST/GraphQL services.

Installation
npm install --save ra-language-english
Usage
import { Admin } from 'react-admin';
import englishMessages from 'ra-language-english';
import polyglotI18nProvider from 'ra-i18n-polyglot';
const messages = {
'en': englishMessages,
};
const i18nProvider = polyglotI18nProvider(locale => messages[locale]);
<Admin locale="en" i18nProvider={i18nProvider}>
...
</Admin>
License
This translation is licensed under the MIT License, and sponsored by marmelab.
v4.9.0
- Add ability to pass
null
to TrueIcon
or FalseIcon
in <BooleanField>
(#8760) (slax57)
- Improve
AppBar
Customization (#8681) (fzaninotto)
- Allow to customize how
<FilterListItem>
applies filters (#8676) (djhi)
- Introduce
withRefreshAuth
(#8574) (djhi)
- Add ability to change
<SelectArrayInput>
's size
prop and fix outlined
variant (#8562) (amilosmanli)
- Add server side validation support (#7938) (djhi)
- Add a codesandbox config for the tutorial (#8753) (djhi)
- Fix
<ReferenceManyCount>
rendering link incorrectly (#8752) (oleg-semyonov)
- [Doc] Update grammar in README.md (#8747) (tylertyssedal)
- [Doc] Fix
useRecordContext
explanation for forms (#8743) (fzaninotto )
- [Doc] Add Directus data and auth providers (#8759) (djhi)
We released ra-directus
that contains a DataProvider
and an AuthProvider
to work with Directus.
We also released new landing pages for both React-admin and the Enterprise Edition. Check them out!