Snow 1d0b9c5323 增加了node环境 | il y a 1 mois | |
---|---|---|
.. | ||
test | il y a 1 mois | |
.npmignore | il y a 1 mois | |
.travis.yml | il y a 1 mois | |
README.md | il y a 1 mois | |
index.js | il y a 1 mois | |
package.json | il y a 1 mois |
Easy to use i18n utility. It does not contain express specific middlewares, etc.
var I18n = require('i18n-t');
var i18n = new I18n({
defaultLocale: 'en'
});
// Load locales from a directory
i18n.load('./locales');
// or using a pre-loaded objects
i18n.set({
en: {
HELLO: 'Hello {{name}}',
CATS: '{{0}} cats'
}
});
// Translate sentences
i18n.t('en', 'HELLO', { name: 'Samy' });
i18n.t('en', 'CATS', 10);