├── .gitignore ├── .travis.yml ├── README.md ├── index.js ├── lib ├── async.js └── readdir.js ├── package.json ├── plural-form.js ├── stores ├── dummy.js ├── file.js ├── gettext.js └── module.js └── test ├── i18n-data ├── messages.en.txt ├── messages.fr.txt └── messages.js ├── index.js └── test-file.js /.gitignore: -------------------------------------------------------------------------------- 1 | .project 2 | .settings 3 | node_modules 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naholyr/node-jus-i18n/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naholyr/node-jus-i18n/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naholyr/node-jus-i18n/HEAD/index.js -------------------------------------------------------------------------------- /lib/async.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naholyr/node-jus-i18n/HEAD/lib/async.js -------------------------------------------------------------------------------- /lib/readdir.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naholyr/node-jus-i18n/HEAD/lib/readdir.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naholyr/node-jus-i18n/HEAD/package.json -------------------------------------------------------------------------------- /plural-form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naholyr/node-jus-i18n/HEAD/plural-form.js -------------------------------------------------------------------------------- /stores/dummy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naholyr/node-jus-i18n/HEAD/stores/dummy.js -------------------------------------------------------------------------------- /stores/file.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naholyr/node-jus-i18n/HEAD/stores/file.js -------------------------------------------------------------------------------- /stores/gettext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naholyr/node-jus-i18n/HEAD/stores/gettext.js -------------------------------------------------------------------------------- /stores/module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naholyr/node-jus-i18n/HEAD/stores/module.js -------------------------------------------------------------------------------- /test/i18n-data/messages.en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naholyr/node-jus-i18n/HEAD/test/i18n-data/messages.en.txt -------------------------------------------------------------------------------- /test/i18n-data/messages.fr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naholyr/node-jus-i18n/HEAD/test/i18n-data/messages.fr.txt -------------------------------------------------------------------------------- /test/i18n-data/messages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naholyr/node-jus-i18n/HEAD/test/i18n-data/messages.js -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naholyr/node-jus-i18n/HEAD/test/index.js -------------------------------------------------------------------------------- /test/test-file.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naholyr/node-jus-i18n/HEAD/test/test-file.js --------------------------------------------------------------------------------