Getting started
Last updated
Last updated
i18next can be added to your project using npm or yarn:
The default export is UMD compatible (commonjs, requirejs, global).
In the /dist
folder you may find additional builds for commonjs, es6 modules. Optimized to load i18next in webpack, rollup, ... or node.js. The correct entry points are already configured in the package.json so there should be no extra setup to get the best build option.
i18next can be imported like this:
In you can check out how this works.
You can also directly add a script tag loading i18next from one of the CDNs providing it:
unpkg.com
esm or cjs:
cdnjs.com
jsdelivr.com
The downside of this is that your keys must not be in natural language β the names of the keys are not used as fallback content and the key names must not include reserved characters :
and .
since those are used by i18next.
Or using callback init signature:
Or using Promises:
Or using async/await:
As you might see, this basic sample provides only one language directly added on init⦠let's extend this to have buttons to change language from English to German:
This is a working sample showing translated text. To learn more, have a look at the following extended sample:
You should now have an idea about how to achieve the basic setup. It's time to learn more about:
Make sure to use a fixed version in production like as passing no version will redirect to latest version which might contain breaking changes in future.
Before we dive into the first sample, please note the following: By default, i18next uses a key-based notation to look up translations, which comes with the benefit of for your translation files.
If you prefer using natural language in keys, please read the .
Please be aware these samples are just showing basic usage of the core functionality. For production usage please consider using one of our to get better and simpler integrations (Setting innerHTML is just done to show how it works).
if you are , you may need to wait for i18next to have finished to initialize.
Do you quickly want to translate your resources to other languages? Try:
The extended sample adds the language detector for our browser and the http-backend to load translation files from this documentation's .
The translation functions like , and .
Find an , eg. react-i18next, jquery-i18next and others. Using those wrappers around i18next makes using i18next a lot simpler in your project. Most of such modules come with extended examples.
Find out more about the .
Add a to detect the preferred language of your user
Add a to load the translations from the server or filesystem
Connect i18next with a smart , like in