Package Exports
- @bicstone/ra-language-japanese
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@bicstone/ra-language-japanese) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
Japanese Messages for React-Admin
Japanese messages for react-admin.
直訳せず、読みさすさとシンプルさを優先した意訳をしています。
翻訳の提案がございましたら、お気軽に issue か Pull request をください 🙇
Installation
npm install --save @bicstone/ra-language-japanese
Usage
v3
import japaneseMessages from 'ra-language-japanese';
import polyglotI18nProvider from 'ra-i18n-polyglot';
const messages = {
'ja': japaneseMessages,
};
const i18nProvider = polyglotI18nProvider(locale => messages[locale]);
<Admin locale="ja" i18nProvider={i18nProvider}>
...
</Admin>
v2
import englishMessages from 'ra-language-japanese';
const messages = {
'ja': japaneseMessages,
};
const i18nProvider = locale => messages[locale];
<Admin locale="ja" i18nProvider={i18nProvider}>
...
</Admin>
License
This translation is licensed under the MIT License.