mrp-i18n
v1.2.0
Published
Simple i18n
Downloads
2
Maintainers
Readme
i18n
Simple translation module for node.js
Install
npm install mrp-i18n
test
npm test
usage
Minimal example, just setup two locales and a project specific directory
create the locales directory with two JSON files (bundle.en.json, bundle.fr.json).
load and configure the module within your project
var i18n = require('i18n').configure({
locales:['en', 'fr'],
directory: __dirname + '/locales' // path to your locales directory
});
API
The module exposes a single method getCatalog
.
getCatalog
When a params of a valid local is given, the module will return the JSON object.
i18n.getCatalog('en')
// {'Hello': 'Hello World'}
When no params is given, the module will return the full catalog
i18n.getCatalog()
// { en: { 'Hello World': 'Hello World' },fr: { currency: '€', 'Hello World': 'Bonjour' } }
credit
Inspiration came from the i18n-node module: https://github.com/mashpie/i18n-node