mrp-i18n

1.2.0 • Public • Published

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

  1. create the locales directory with two JSON files (bundle.en.json, bundle.fr.json).

  2. 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

Package Sidebar

Install

npm i mrp-i18n

Weekly Downloads

1

Version

1.2.0

License

ISC

Last publish

Collaborators

  • mrporterdev