- v6.5.2Latest
- v6.5.1
- v6.5.0
- v6.4.3
- v6.4.2
- v6.4.1
- v6.4.0
- v6.3.1
- v6.3.0
- v6.2.3
- v6.2.2
- v6.2.0
- v6.1.1
- v6.1.0
- v6.0.1
- v6.0.0
- v5.1.5
- v5.1.4
- v5.1.3
- v5.1.2
- v5.1.1
- v5.1.0
- v5.0.1
- v5.0.0
- v4.3.0
- v4.2.8
- v4.2.7
- v4.2.6
- v4.2.5
- v4.2.4
- v4.2.3
- v4.2.2
- v4.2.1
- v4.2.0
- v4.1.10
- v4.1.9
- v4.1.8
- v4.1.7
- v4.1.6
- v4.1.5
- v4.1.4
- v4.1.3
- v4.1.2
- v4.1.2-rc.1
- v4.1.1
- v4.1.0
- v4.0.13
- v4.0.12
- v4.0.11
- v4.0.10
- v4.0.9
- v4.0.8
- v4.0.7
- v4.0.6
- v4.0.5
- v4.0.4
- v4.0.3
- v4.0.2
- v4.0.1
- v4.0.0
- v3.1.3
- v3.1.2
- v3.1.1
- v3.1.0
- v3.0.3
- v3.0.2
- v3.0.1
- v3.0.0
- v2.2.2
- v2.2.1
- v2.2.0
- v2.1.0
- v2.0.2
- v2.0.1
- v2.0.0
- v1.9.0
- v1.8.0
- v1.7.1
- v1.7.0
- v1.6.0
- v1.4.2
- v1.4.1
- v1.4.0
- v1.3.1
- v1.3.0
- v1.2.1
- v1.2.0
- v1.1.0
- v1.0.0
- v0.2.0
- v0.1.1
- v0.1.0
- v0.0.7
- v0.0.6
- v0.0.5
- v0.0.4
- v0.0.3
- v0.0.2
- v0.0.1
This is an i18next backend to be used for locize service. It will load resources from locize server using xhr.
It will allow you to save missing keys containing both default value and context information by calling:
i18next.t(key, defaultValue, tDescription);
i18next.t(key, { defaultValue, tDescription });
Troubleshooting
SaveMissing is not working
Per default only localhost
is allowed to send them (to avoid youâre using this feature accidentally in production. If youâre not using localhost
during development you will have to set the allowedAddOrUpdateHosts: ['localhost']
for the backend options.
Getting started
Source can be loaded via npm, bower or downloaded from this repo.
# npm package
$ npm install i18next-locize-backend
# bower
$ bower install i18next-locize-backend
Wiring up:
import i18next from 'i18next';
import Locize from 'i18next-locize-backend';
// or
const i18next = require('i18next');
const Locize = require('i18next-locize-backend');
i18next.use(Locize).init(i18nextOptions);
for Deno:
import i18next from 'https://deno.land/x/i18next/index.js'
import Backend from 'https://deno.land/x/i18next_locize_backend/index.js'
i18next.use(Backend).init(i18nextOptions);
- As with all modules you can either pass the constructor function (class) to the i18next.use or a concrete instance.
- If you donât use a module loader it will be added to
window.i18nextLocizeBackend
Backend Options
IMPORTANT make sure you do not add your apiKey in the production build to avoid misuse by strangers
{
// the id of your locize project
projectId: '[PROJECTID]',
// add an api key if you want to send missing keys
apiKey: '[APIKEY]',
// the reference language of your project
referenceLng: '[LNG]',
// version - defaults to latest
version: '[VERSION]',
// private - set to true if you version on locize is set to use private publish
private: false,
// hostnames that are allowed to create, update keys
// please keep those to your local system, staging, test servers (not production)
// can be array of allowed hosts or a function (hostname) => { return true; // or false if not allowed }
allowedAddOrUpdateHosts: ['localhost'],
// optional event triggered on saved to backend
onSaved: (lng, ns) => { ... }
}
To load translations only projectId
needs to be filled. To use the saveMissing feature of i18next additional to the projectId both apiKey
and referenceLng
have to be set.
Options can be passed in:
preferred - by setting options.backend in i18next.init:
import i18next from "i18next";
import Locize from "i18next-locize-backend";
i18next.use(Locize).init({
backend: options
});
on construction:
import Locize from "i18next-locize-backend";
const locize = new Locize(options);
via calling init:
import Locize from "i18next-locize-backend";
const locize = new Locize();
locize.init(options);
Additional API endpoints
backend.getLanguages
Will return a list of all languages in your project including percentage of translations done per version.
import Locize from "i18next-locize-backend";
const locize = new Locize(options);
locize.getLanguages((err, data) => {
/*
data is:
{
"en": {
"name": "English",
"nativeName": "English",
"isReferenceLanguage": true,
"translated": {
"latest": 1
}
},
"de": {
"name": "German",
"nativeName": "Deutsch",
"isReferenceLanguage": false,
"translated": {
"latest": 0.9
}
}
}
*/
});
// or
i18next.services.backendConnector.backend.getLanguages(callback);
backend.getOptions
Will return an object containing useful informations for the i18next init options.
import Locize from "i18next-locize-backend";
const locize = new Locize(options);
locize.getOptions((err, data) => {
/*
data is:
{
fallbackLng: 'en',
referenceLng: 'en',
supportedLngs: ['en', 'de'],
load: 'languageOnly|all' // depending on your supportedLngs has locals having region like en-US
}
*/
});
// or
i18next.services.backendConnector.backend.getOptions(callback);
You can set a threshold for languages to be added to supportedLngs by setting translatedPercentageThreshold in backend options (eg: 1 = 100% translated, 0.9 = 90% translated).
SPECIAL - let the backend determine some options to improve loading
You can load some information from the backend to eg. set supportedLngs for i18next just supporting languages you got in your locize project.
You will get i18next options for (same as above backend.getOptions):
- fallbackLng
- supportedLngs
- load
import i18next from "i18next";
import Locize from "i18next-locize-backend";
const locize = new Locize(
{
projectId: "[PROJECTID]",
apiKey: "[APIKEY]",
version: "[VERSION]"
// referenceLng -> not needed as will be loaded from API
},
(err, opts) => {
i18next.use(locize).init({ ...opts, ...yourOptions }); // yourOptions should not include backendOptions!
}
);
Please be aware IMPORTANT ADVICE FOR SERVERLESS environments - AWS lambda, Google Cloud Functions, Azure Functions, etcâŚ
Due to how serverless functions work, you cannot guarantee that a cached version of your data is available. Serverless functions are short-lived, and can shut down at any time, purging any in-memory or filesystem cache. This may be an acceptable trade-off, but sometimes it isnât acceptable.
Because of this we suggest to download the translations in your CI/CD pipeline (via cli or via api) and package them with your serverless function.
i18next-fs-backend
For example withimport i18next from 'i18next';
import Backend from 'i18next-fs-backend';
const backend = new Backend({
// path where resources get loaded from
loadPath: '/locales/{{lng}}/{{ns}}.json'
});
i18next
.use(backend)
.init({
// initImmediate: false, // setting initImediate to false, will load the resources synchronously
...opts,
...yourOptions
}); // yourOptions should not include backendOptions!
import/require your files directly
or justimport i18next from 'i18next';
import en from './locales/en.json'
import de from './locales/de.json'
i18next
.init({
...opts,
...yourOptions,
resources: {
en,
de
}
});