├── .babelrc ├── .eslintignore ├── .eslintrc ├── .gitignore ├── .npmignore ├── .travis.yml ├── History.md ├── LICENSE ├── README.md ├── gulpfile.js ├── package.json ├── setupJest.js ├── src ├── LocaleProvider.jsx ├── LocaleSwitch.jsx ├── Namespace.jsx ├── NamespaceContext.jsx ├── ProvideTranslate.jsx ├── Translate.jsx ├── Translate.test.jsx ├── TranslateContext.jsx ├── filters │ └── children.js └── index.js └── tempPolyfill.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creolingo/react-translate-maker/HEAD/.babelrc -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | dist 2 | node_modules 3 | coverage 4 | tests 5 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creolingo/react-translate-maker/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creolingo/react-translate-maker/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | coverage 2 | node_modules 3 | package-lock.json 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creolingo/react-translate-maker/HEAD/.travis.yml -------------------------------------------------------------------------------- /History.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creolingo/react-translate-maker/HEAD/History.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creolingo/react-translate-maker/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creolingo/react-translate-maker/HEAD/README.md -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creolingo/react-translate-maker/HEAD/gulpfile.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creolingo/react-translate-maker/HEAD/package.json -------------------------------------------------------------------------------- /setupJest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creolingo/react-translate-maker/HEAD/setupJest.js -------------------------------------------------------------------------------- /src/LocaleProvider.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creolingo/react-translate-maker/HEAD/src/LocaleProvider.jsx -------------------------------------------------------------------------------- /src/LocaleSwitch.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creolingo/react-translate-maker/HEAD/src/LocaleSwitch.jsx -------------------------------------------------------------------------------- /src/Namespace.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creolingo/react-translate-maker/HEAD/src/Namespace.jsx -------------------------------------------------------------------------------- /src/NamespaceContext.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creolingo/react-translate-maker/HEAD/src/NamespaceContext.jsx -------------------------------------------------------------------------------- /src/ProvideTranslate.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creolingo/react-translate-maker/HEAD/src/ProvideTranslate.jsx -------------------------------------------------------------------------------- /src/Translate.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creolingo/react-translate-maker/HEAD/src/Translate.jsx -------------------------------------------------------------------------------- /src/Translate.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creolingo/react-translate-maker/HEAD/src/Translate.test.jsx -------------------------------------------------------------------------------- /src/TranslateContext.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creolingo/react-translate-maker/HEAD/src/TranslateContext.jsx -------------------------------------------------------------------------------- /src/filters/children.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creolingo/react-translate-maker/HEAD/src/filters/children.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creolingo/react-translate-maker/HEAD/src/index.js -------------------------------------------------------------------------------- /tempPolyfill.js: -------------------------------------------------------------------------------- 1 | global.requestAnimationFrame = cb => setTimeout(cb, 0); 2 | --------------------------------------------------------------------------------