Hebrew messages for react-admin, the frontend framework for building admin applications on top of REST/GraphQL services
npm install ra-language-hebrew-ilHebrew translations for React-Admin, the frontend framework for building admin applications on top of REST/GraphQL services.

update to latest version https://github.com/marmelab/react-admin/blob/master/packages/ra-language-english/src/index.ts
``sh`
npm install --save ra-language-hebrew-il
`js
import HebrewMessages from 'ra-language-hebrew-il';
const messages = {
he: HebrewMessages,
};
const i18nProvider = (locale) => messages[locale];
...
`
Material UI is already supprting RTL, so we can add its support to react admin using these 2 steps:
1. Change dir property to rtl in your root elements (like body). You can also connect this property to redux.
2. Define a theme and set direction to rtl.
`javascript
import { createMuiTheme } from '@material-ui/core/styles';
const theme = createMuiTheme({
direction: 'rtl',
});
const App = () =>
`
_public/index.html_
`html``
This translation is licensed under the MIT License.