diff --git a/docusaurus/docs/intro.md b/docusaurus/docs/intro.md index 230096a3..478be759 100644 --- a/docusaurus/docs/intro.md +++ b/docusaurus/docs/intro.md @@ -36,7 +36,7 @@ npm install react-native-paper-dates --save ### Supported -React-Native-Paper-Dates currently supports `ar/ca/de/en/en-GB/es/fr/he/hi/it/ko/nl/pl/pt/tr/zh/zh-TW` translations. Ideally you would do this somewhere before react-native-paper-dates is used. For example, you might add the follow to your `index.js` or `app.js`. +React-Native-Paper-Dates currently supports `ar/ca/de/en/en-GB/es/fr/he/hi/it/ko/nl/pl/pt/tr/zh/zh-TW/cs/el/ru` translations. Ideally you would do this somewhere before react-native-paper-dates is used. For example, you might add the follow to your `index.js` or `app.js`. ```javascript import { enGB, registerTranslation } from 'react-native-paper-dates' diff --git a/example/src/App.tsx b/example/src/App.tsx index 3c1a6f8f..675256a2 100644 --- a/example/src/App.tsx +++ b/example/src/App.tsx @@ -48,6 +48,9 @@ import { tr, zh, zhTW, + cs, + el, + ru, } from 'react-native-paper-dates' import { useCallback, useState } from 'react' @@ -69,6 +72,9 @@ const locales: [string, TranslationsType][] = [ ['tr', tr], ['zh', zh], ['zh-TW', zhTW], + ['cs', cs], + ['el', el], + ['ru', ru], ] locales.forEach((locale) => { diff --git a/src/index.tsx b/src/index.tsx index 293d02da..c1ee0c43 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -25,3 +25,6 @@ export { default as pt } from './translations/pt' export { default as tr } from './translations/tr' export { default as zh } from './translations/zh' export { default as zhTW } from './translations/zhTW' +export { default as cs } from './translations/cs' +export { default as el } from './translations/el' +export { default as ru } from './translations/ru'