Migrating v9 to v10
v10 is a complete rewrite, taking the chance to clean up some complexity added from v1 to v9.
This means you will need to test your application more cautiously before release.
This is a specific migration guide regarding the complete react-i18next rewrite in v10. If you're looking for general release notes, please have a look in the CHANGELOG file.
New in v10
The most obvious change is the hook function for use inside functional components:
Components without replacement
The Interpolation component (which was marked as deprecated for a long time and replaced by the Trans Component) was removed finally. You will need to replace it with the Trans Component.
Migration
Replace your components like described below. If you don't have to use Suspense
in your existing App you can set useSuspense: false
in react.init options.react:
I18nextProvider changes
The I18nextProvider
no longer provides as many properties as before. Make the necessary changes in your codebase after migrating.
Components v9 -> v10
Type | <= v7 (v8) | v9 (v8) | v10 |
hook | - | useTranslation | |
HOC | translate | withNamespaces | withTranslation |
render prop | I18n | NamespacesConsumer | Translation |
i18next plugin | reactI18nextModule | reactI18nextModule | initReactI18next |
Provider | I18nextProvider | I18nextProvider | I18nextProvider |
Complex Translation | Trans | Trans | Trans |
Interpolations | Interpolate | Interpolate | Trans |
Last updated