0.0.6 • Published 8 years ago

globalization-module v0.0.6

Weekly downloads
-
License
ISC
Repository
-
Last release
8 years ago

globalization-module

A package for NodeJS API, choose the language of your texts

Example

var user_preferred_lang = "en_US";
var Globalization = require('globalization-module');
var globalization = new Globalization(user_preferred_lang);

console.log(globalization.lang("default.test")); //print My sample test text!

globalization.setLang("pt_BR");
console.log(globalization.lang("default.test")); //print Meu texto de exemplo!

File: lang/en_US/default.json

{
  "test": "My sample test text!"
}

File: lang/pt_BR/default.json

{
  "test": "Meu texto de exemplo!"
}
0.0.6

8 years ago

0.0.5

8 years ago

0.0.4

8 years ago

0.0.3

8 years ago

0.0.2

8 years ago

0.0.1

8 years ago

1.0.0

8 years ago