Localization library written in JavaScript highly inspired on Laravel's Lang.
Notice: This repository host the JavaScript library used for Laravel JS Localization. If you are already using Laravel JS Localization you don't need to use this too as it come automatically bundled.
Different installation methods:
- Bower:
bower install lang.js
- NPM:
npm install lang.js
- Manually: Download latest release
var lang = new Lang({
messages: source,
locale: 'fr',
fallback: 'zn'
});
To use Lang.js
we need to specify at least the messages sources. This can be done during instantiation as shown in the previous code or later using the setMessages()
method.
The messages source format looks like:
{
"locale1.name": {
"key1": "value1",
"key2": "value2",
// ... and more key-value pairs.
},
"locale2.name": {
"key1": "value1",
"key2": "value2",
// ... and more key-value pairs.
},
// ... and more locales.
}
See the sample used in tests located at: test/fixture/messages.json
.
Set messages source. Check messages source format.
var lang = new Lang();
lang.setMessages(source);
Get the current locale, if none set, the default locale will be returned (en
).
var lang = new Lang();
lang.getLocale();
// > "en"
lang.setLocale('fr');
lang.getLocale();
// > "fr"
Set the current locale.
var lang = new Lang();
lang.setLocale('ht');
lang.getLocale();
// > "ht"
Get the fallback locale.
var lang = new Lang();
lang.getFallback();
// > undefined
lang.setFallback('de');
lang.getFallback();
// > "de"
Set the fallback locale. When retrieving a message (using get()
or has()
) which is not defined in the specified locale, then it will try to find a message with the fallback locale (if set).
var lang = new Lang({
messages: {
'en.greetings': {
'hi': 'Hi',
'hello': 'Hello'
},
'it.greetings': {
'hi': 'Salve'
}
}
});
lang.setLocale('it');
lang.get('greetings.hello');
// > "greetings.hello"
lang.setFallback('en');
lang.get('greetings.hello');
// > "Hello"
Indicate if a given key is defined on the messages source. Return true
if the key is defined on the messages source, otherwise false
. This method will try to get a message for the specified locale, if not found, then it will return a message for the fallback locale, if not found, then false
will be returned.
var lang = new Lang({
messages: {
'en.greetings': {
'hi': 'Hi'
}
}
});
lang.has('greetings.hi');
// > true
lang.has('greetings.hello');
// > false
Get a translation message if found, otherwise return the given key. This method will try to get a message for the specified locale, if not found, then it will return a message for the fallback locale, if not found, then the given key will be returned.
var lang = new Lang({
messages: {
'en.greetings': {
'hi': 'Hi'
}
}
});
lang.get('greetings.hi');
// > "Hi"
lang.get('greetings.hello');
// > "greetings.hello"
This method act as an alias of get()
.
Get the plural or singular form of the message specified based on an integer value.
var lang = new Lang({
messages: {
'en.fruits': {
'apple': 'apple|apples'
}
}
});
lang.get('fruits.apple', 1);
// > "apple"
lang.get('fruits.apple', 4);
// > "apples"
This method act as an alias of choice()
.
- Fork this repository and clone it.
- Create a branch from develop:
git checkout -b feature/xxxxxxx
- Submit a PR to be merge into develop branch.
To run the tests use the following commands:
- Single run:
npm run test
- Run on changes:
npm run test:watch