react-i18next 9.0.9 → 9.0.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +4 -0
- package/README.md +1 -1
- package/package.json +1 -1
- package/src/index.d.ts +1 -0
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -54,7 +54,7 @@ Head over to the **interactive playground** at [codesandbox](https://codesandbox
|
|
|
54
54
|
- [Ultimate Localization of React (Mobx) App with i18next](https://itnext.io/ultimate-localization-of-react-mobx-app-with-i18next-efab77712149) via itnext.io by Viktor Shevchenko
|
|
55
55
|
- [Internationalization for react done right Using the i18next i18n ecosystem](https://reactjsexample.com/internationalization-for-react-done-right-using-the-i18next-i18n-ecosystem/) via reactjsexample.com
|
|
56
56
|
- [Using i18next to translate React.js application](https://codetain.co/2018/05/using-i18next-to-translate-reactjs-application/) via codetain.co by Kasia Dadek
|
|
57
|
-
- [Building i18n with Gatsby](https://www.gatsbyjs.org/blog/2017-10-17-building-i18n-with-gatsby/) via
|
|
57
|
+
- [Building i18n with Gatsby](https://www.gatsbyjs.org/blog/2017-10-17-building-i18n-with-gatsby/) via gatsbyjs.org by Samuel Goudie
|
|
58
58
|
- [Get your react.js application translated with style](https://medium.com/@jamuhl/get-your-react-js-application-translated-with-style-4ad090aefc2c) by Jan Mühlemann
|
|
59
59
|
- [Translate your expo.io / react-native mobile application](https://medium.com/@jamuhl/translate-your-expo-io-react-native-mobile-application-aa220b2362d2) by Jan Mühlemann
|
|
60
60
|
- you're welcome to share your story...
|
package/package.json
CHANGED
package/src/index.d.ts
CHANGED
|
@@ -89,6 +89,7 @@ export const NamespacesConsumer: React.ComponentClass<NamespacesConsumerProps>;
|
|
|
89
89
|
export interface I18nextProviderProps {
|
|
90
90
|
i18n: i18next.i18n;
|
|
91
91
|
defaultNS?: string;
|
|
92
|
+
reportNS?: (ns: string) => void;
|
|
92
93
|
initialI18nStore?: {};
|
|
93
94
|
initialLanguage?: string;
|
|
94
95
|
}
|