API
Last updated
Last updated
i18next.init(options, callback) // -> returns a Promise
The default export of the i18next module is an i18next instance ready to be initialized by calling init
. You can create additional instances using the function.
Please read the for details on configuration options.
The callback will be called after all translations were loaded or with an error when failed (in case of using a backend).
So you should wait for init to complete (wait for the callback or promise resolution) before using the t
function!
Do not call init multiple times. To change language use . If you need complete different configs use or .
An error can occur if for example there was a loading issue when using a plugin.
i18next.use(module)
The use function is there to load additional plugins to i18next.
i18next.t(keys, options)
You can specify either one key as a String
or multiple keys as an Array
of String
. The first one that resolves will be returned.
i18next.exists(key, options)
Uses the same resolve functionality as the t
function and returns true if a key exists.
i18next.getFixedT(lng, ns, keyPrefix)
Returns a t
function that defaults to given language or namespace.
All arguments can be optional/null.
lng
and ns
params could be arrays of languages or namespaces and will be treated as fallbacks in that case.
The optional keyPrefix
will be automatically applied to the returned t function. i.e.
Do not use the keyPrefix
option if you want to use keys with prefixed namespace notation:
i.e.
On the returned function you can like in the t
function override the languages or namespaces by passing them in options or by prepending namespace.
i18next.changeLanguage(lng, callback) // -> returns a Promise
Changes the language. The callback will be called as soon translations were loaded or an error occurs while loading.
HINT: For easy testing—setting lng
to 'cimode' will cause the t
function to always return the key.
i18next.language
Is set to the current detected or set language.
i18next.languages
Is set to an array of language codes that will be used to look up the translation value.
When the language is set, this array is populated with the new language codes. Unless overridden, this array is populated with less-specific versions of that code for fallback purposes, followed by the list of fallback languages.
i18next.resolvedLanguage
Is set to the current resolved language. It can be used as primary used language, for example in a language switcher.
(introduced in v21.0.0)
i18next.hasLoadedNamespace(ns, options) // -> returns true or false
i18next.loadNamespaces(ns, callback) // -> returns a Promise
Loads additional namespaces not defined in init options.
i18next.loadLanguages(lngs, callback) // -> returns a Promise
Loads additional languages not defined in init options (preload).
i18next.reloadResources() // -> returns a Promise
Reloads resources on given state. Optionally you can pass an array of languages and namespaces as params if you don't want to reload all.
i18next.setDefaultNamespace(ns)
Changes the default namespace.
i18next.dir(lng)
Returns rtl
or ltr
depending on languages read direction.
i18next.format(data, format, lng)
introduced in v8.4.0 and legacy since v21.3.0
Exposes interpolation.format
t function added on init.
i18next.createInstance(options, callback)
Will return a new i18next instance.
Providing a callback will automatically call init.
The callback will be called after all translations were loaded or with an error when failed (in case of using a backend).
i18next.cloneInstance(options)
Creates a clone of the current instance. Shares store, plugins and initial configuration. Can be used to create an instance sharing storage but being independent on set language or default namespaces.
By setting the forkResourceStore option to true, it will not shares the store.
i18next.on('initialized', function(options) {})
Gets fired after initialization.
i18next.on('languageChanged', function(lng) {})
Gets fired when changeLanguage got called.
i18next.on('loaded', function(loaded) {})
Gets fired on loaded resources.
i18next.on('failedLoading', function(lng, ns, msg) {})
Gets fired if loading resources failed (after the in-built retry algorithm).
i18next.on('missingKey', function(lngs, namespace, key, res) {})
Please be aware the i18next.store
is only available on i18next after the init call.
i18next.store.on('added', function(lng, ns) {})
Gets fired when resources got added.
i18next.store.on('removed', function(lng, ns) {})
Gets fired when resources got removed.
Can be accessed on i18next
or i18next.services.resourceStore
.
i18next.getResource(lng, ns, key, options)
Gets one value by given key.
options:
option
default
description
keySeparator
"."
char to separate keys, or false if no separator is preferred
ignoreJSONStructure
true
if a key is not found as nested key, it will try to lookup as flat key
i18next.addResource(lng, ns, key, value, options)
Adds one key/value.
options:
option
default
description
keySeparator
"."
char to separate keys, or false if no separator is preferred
silent
false
if set to true adding will not emit an added event
i18next.addResources(lng, ns, resources)
Adds multiple key/values.
i18next.addResourceBundle(lng, ns, resources, deep, overwrite)
Adds a complete bundle.
Setting deep (default false) param to true will extend existing translations in that file. Setting deep and overwrite (default false) to true it will overwrite existing translations in that file.
So omitting deep and overwrite will overwrite all existing translations with the one provided in resources. Using deep you can choose to keep existing nested translation and to overwrite those with the new ones.
i18next.hasResourceBundle(lng, ns)
Checks if a resource bundle exists.
i18next.getDataByLanguage(lng)
Returns a resource data by language.
i18next.getResourceBundle(lng, ns)
Returns a resource bundle.
i18next.removeResourceBundle(lng, ns)
Removes an existing bundle.
For available module see the and don't forget to read the documentation of the plugin.
Please have a look at the translation functions like , and for more details on using it.
Calling changeLanguage
without lng
uses the to choose the language to set.
If you need the primary used language depending on your configuration (supportedLngs, load) you will prefer using or .
Checks if namespace has loaded yet. i.e. used by
For formatting used in translation files checkout the .
Please read the for details on configuration options.
Gets fired on accessing a key not existing. Needs set to true.