i18next instance
The instance is an initialized i18next instance. In the following code snippet, we add a backend to load translations from server and a language detector for detecting user language.
You can learn more about i18next and plugins on the i18next website.
All additional options for react in init options:
bindI18n
'languageChanged'
which events trigger a rerender, can be set to false or string of events separated by ""
bindI18nStore
''
transEmptyNodeValue
''
how to treat failed lookups in Trans component
transSupportBasicHtmlNodes
true
transKeepBasicHtmlNodesFor
['br', 'strong', 'i', 'p']
useSuspense
true
If using Suspense or not
keyPrefix
undefined
For more initialization options have look at the docs.
Last updated