A module, which provides the i18n function to get the translator function, which can be used to translate key words from JSON files. For each language one wants to support, there should be a JSON file, which is then fetched from a URL – based on the (current) language. By default the URL and language are set to work within the context of a dizmo.
The default location to fetch JSON files from is:
url: (language) => {
return `assets/locales/translation.${language}.json`;
}while the default language is the current language of the viewer:
language: () => {
return viewer.getAttribute('settings/language');
}The translator function takes a key string (plus an optional separator) and returns a translated value by performing a deep lookup from within the JSON file (for the current language). The separator can be a string or a regular expression (with a default of /\/|\./, i.e. a forward slash or a period).
npm install @dizmo/i18n --saveconst i18n = require('@dizmo/i18n');i18n((error, translate) => {
if (error) {
return console.error(error);
}
const value_a = translate('my/example/key/a');
const value_b = translate('my.example.key.b');
const value_c = translate('my:example:key:c', /:/);
const value_d = translate('my|example|key|d', '|');
});try {
const translate = await i18n();
const value = translate('my/example/key/a');
} catch (error) {
console.error(error);
}i18n((error, translate) => {
if (error) {
return console.error(error);
}
const value = translate('my/example/key/a');
}, {
url: (language) => {
return `https://domain.tld/translation.${language}.json`,
},
language: () => {
return 'en';
}
});try {
const translate = await i18n(null, {
url: (language) => {
return `https://domain.tld/translation.${language}.json`,
},
language: () => {
return 'en';
}
});
const value = translate('my/example/key/a');
} catch (error) {
console.error(error);
}npm run cleannpm run buildnpm run -- build --no-lint --no-cleannpm run -- build --prepacknpm run -- build --prepack --no-minifynpm run lintnpm run -- lint --fixnpm run testnpm run -- test --no-lint --no-clean --no-buildnpm run covernpm run -- cover --no-lint --no-clean --no-buildnpm run docsnpm publishnpm publish --access=public© dizmo AG, Switzerland