About 50 results
Open links in new tab
  1. Introduction | react-i18next documentation

    Here you'll find a simple tutorial on how to best use react-i18next. Some basics of i18next and some cool possibilities on how to optimize your localization workflow.

  2. Getting started | react-i18next documentation

    Here you'll find a simple tutorial on how to best use react-i18next. Some basics of i18next and some cool possibilities on how to optimize your localization workflow.

  3. Quick start | react-i18next documentation

    Do you like to read a more complete step by step tutorial? Here you'll find a simple tutorial on how to best use react-i18next. Some basics of i18next and some cool possibilities on how to …

  4. Step by step guide | react-i18next documentation

    I18next is the core of the i18n functionality while react-i18next extends and glues it to react. Create a new file i18n.js beside your index.js containing following content:

  5. useTranslation (hook) | react-i18next documentation

    While most of the time you only need the t function to translate your content, you can also get the i18n instance (in order to change the language).

  6. i18next instance | react-i18next documentation

    import i18n from 'i18next'; import Backend from 'i18next-http-backend'; import LanguageDetector from 'i18next-browser-languagedetector'; import { initReactI18next } from 'react-i18next'; i18n …

  7. I18nextProvider | react-i18next documentation

    latest I18nextProvider What it does The I18nextProvider does take an i18next instance via prop i18n and passes that down using the context API.

  8. Trans Component | react-i18next documentation

    As long you have no React/HTML nodes integrated into a cohesive sentence (text formatting like strong, em, link components, maybe others), you won't need it - most of the times you will be …

  9. Multiple Translation Files | react-i18next documentation

    One of the advantages of react-i18next is based on i18next it supports the separation of translations into multiple files - which are called namespaces in i18next context -> as you're …

  10. react.i18next.com

    If you need to access the `t` function or the `i18next` instance from outside of a React component you can simply import your `./i18n.js` and use the exported i18next instance: