0.0.1 • Published 8 years ago

hadron-i18n v0.0.1

Weekly downloads
1
License
Apache-2.0
Repository
-
Last release
8 years ago

hadron-i18n

Extremely simple i18n support for hadron applications.

Installation

npm install --save hadron-i18n

Usage

Translations should be in .yml with the filenames all lowercase. Use camelcasing of keys for the ability to use dot notation.

myapp:
  toolbar:
    text: "Testing"
const I18n = require('hadron-i18n');
new I18n('de', 'en-GB').load('/path/to/my/locales', (error, i18n) => {
  global.t = i18n.t;
});

console.log(global.t.myapp.toolbar.text);

License

Apache 2.0