Object based, fast, lightweight (334 lines with comments) and reactive internationalization isomorphic driver for Meteor with support of placeholders, and user's locale auto-detection.
Not tied to Blaze, can be used with Vue.js, React.js or any other JS solution.
meteor add ostrio:i18n
import I18N from 'meteor/ostrio:i18n';
/* Isomorphic (Both Server and Client) */
const i18nConfig = {
settings: { //--> Config object
defaultLocale: "en",
ru: {
code: "ru",
isoCode: "ru-RU",
name: "Русский"
},
en: {
code: "en",
isoCode: "en-US",
name: "English"
}
},
ru:{ //--> Localization with key of country two-letter code
property: "value",
property2: {
nestedProp: "value"
},
dynamicProperty(){
return `<a href="/${this.currentLocale.get()}/info">info</a>`;
}
},
en:{ //--> Localization with key of country two-letter code
property: "value",
property2: {
nestedProp: "value"
},
dynamicProperty(){
return `<a href="/${this.currentLocale.get()}/info">info</a>`;
}
}
...
};
import I18N from 'meteor/ostrio:i18n';
const i18n = new I18N({i18n: i18nConfig});
import I18N from 'meteor/ostrio:i18n';
const i18n = new I18N(config);
config.i18n
{Object} - Internalization objectconfig.returnKey
{Boolean} - Return key if l10n value not found, default:true
config.helperName
{String} - Template helper name, default:i18n
config.helperSettingsName
{String} - Settings helper name, default:i18nSettings
locale
{String} - [Optional] Two-letter locale string, used to force locale, if not set current locale is usedkey
{String} - l10n key like:object.path.to.key
replacements..
{String|[String]|Object} - [Optional] Replacements for placeholders in l10n string
i18n.get('object.path.to.key'); // Current locale, no replacements
i18n.get(locale, param); // Force locale, no replacements
i18n.get('en', 'object.path.to.key');
i18n.get(param, replacements); // Current locale, with replacements
i18n.get('object.path.to.key', 'Michael'); // Hello {{username}} -> Hello Michael
i18n.get(locale, param, replacements); // Force locale, with replacements
i18n.get('en', 'object.path.to.key', 'John Doe'); // Hello {{username}} -> Hello John Doe
Determine whenever key is exists in configuration file(s).
locale
{String} - [Optional] Two-letter locale string, used to force locale, if not set current locale is usedkey
{String} - l10n key like:object.path.to.key
i18n.has('object.path.to.key'); // Current locale
i18n.has(locale, param); // Force locale
i18n.has('ca', 'object.path.to.key'); //false
i18n.has('en', 'object.path.to.key'); //true
locale
{String} - Two-letter locale code
i18n.setLocale(locale);
l10n
{Object} - Object with language set
i18n.addl10n({
en: { // <- Object's root is the language two-letter code
newKey: "New Value"
}
});
i18n.currentLocale.get(); // Reactive on Client
i18n.defaultLocale;
i18n.langugeSet();
/* Returns:
{
current: 'en', // Current locale
locales: ['ru', en], // List of locales
// All locales
all: [{
code: "ru",
isoCode: "ru-RU",
name: "Русский",
path: "i18n/ru/"
},{
code: "en",
isoCode: "en-US",
name: "English",
path: "i18n/en/"
}],
// All locales except current
other: [{
code: "ru",
isoCode: "ru-RU",
name: "Русский",
path: "i18n/ru/"
}],
}
*/
key
{String} - One of the keys:current
,all
,other
,locales
,currentISO
,currentName
,currentPath
i18n.getSetting('current'); // en
Usage in Blaze templating
i18n.userLocale; // en-US
Template helpers requires templating
package to be installed. i18n
helper - accepts locale
, key
and replacements
Change name of the helper via config object: config.helperName
i18nSettings
- accepts configuration object key, one of current
, all
, other
, locales
Change name of the helper via config object: config.helperSettingsName
Template.langSwitch.helpers({
currentLocale(){
return i18n.currentLocale.get()
}
});
Template.langSwitch.events({
'click [data-switch-language]'(e) {
e.preventDefault();
i18n.setLocale(e.currentTarget.dataset.switchLanguage);
return false;
}
});
Template helpers compare
, ==
, Session
and many more comes from: ostrio:templatehelpers
package.
- Sponsor via GitHub
- Support via PayPal
- Use ostr.io — Monitoring, Analytics, WebSec, Web-CRON and Pre-rendering for a website