├── .github └── FUNDING.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── README.md ├── index.d.ts ├── index.js ├── package.json ├── vendor └── i18n.js └── yarn.lock /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcarpentier/ex-react-native-i18n/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcarpentier/ex-react-native-i18n/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcarpentier/ex-react-native-i18n/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcarpentier/ex-react-native-i18n/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcarpentier/ex-react-native-i18n/HEAD/README.md -------------------------------------------------------------------------------- /index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcarpentier/ex-react-native-i18n/HEAD/index.d.ts -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcarpentier/ex-react-native-i18n/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcarpentier/ex-react-native-i18n/HEAD/package.json -------------------------------------------------------------------------------- /vendor/i18n.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcarpentier/ex-react-native-i18n/HEAD/vendor/i18n.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcarpentier/ex-react-native-i18n/HEAD/yarn.lock --------------------------------------------------------------------------------