├── .editorconfig ├── .gitignore ├── .jshintrc ├── .travis.yml ├── CHANGELOG.md ├── Gruntfile.js ├── LICENSE ├── README.md ├── docs ├── README.template.md ├── node-gettext-logo.png ├── templates │ ├── params-list.hbs │ └── scope.hbs └── v1 │ └── README.md ├── lib ├── gettext.js └── plurals.js ├── package.json └── test ├── fixtures ├── latin13.json ├── latin13.mo └── latin13.po └── gettext-test.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderwallin/node-gettext/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderwallin/node-gettext/HEAD/.gitignore -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderwallin/node-gettext/HEAD/.jshintrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderwallin/node-gettext/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderwallin/node-gettext/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderwallin/node-gettext/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderwallin/node-gettext/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderwallin/node-gettext/HEAD/README.md -------------------------------------------------------------------------------- /docs/README.template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderwallin/node-gettext/HEAD/docs/README.template.md -------------------------------------------------------------------------------- /docs/node-gettext-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderwallin/node-gettext/HEAD/docs/node-gettext-logo.png -------------------------------------------------------------------------------- /docs/templates/params-list.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderwallin/node-gettext/HEAD/docs/templates/params-list.hbs -------------------------------------------------------------------------------- /docs/templates/scope.hbs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/v1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderwallin/node-gettext/HEAD/docs/v1/README.md -------------------------------------------------------------------------------- /lib/gettext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderwallin/node-gettext/HEAD/lib/gettext.js -------------------------------------------------------------------------------- /lib/plurals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderwallin/node-gettext/HEAD/lib/plurals.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderwallin/node-gettext/HEAD/package.json -------------------------------------------------------------------------------- /test/fixtures/latin13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderwallin/node-gettext/HEAD/test/fixtures/latin13.json -------------------------------------------------------------------------------- /test/fixtures/latin13.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderwallin/node-gettext/HEAD/test/fixtures/latin13.mo -------------------------------------------------------------------------------- /test/fixtures/latin13.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderwallin/node-gettext/HEAD/test/fixtures/latin13.po -------------------------------------------------------------------------------- /test/gettext-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderwallin/node-gettext/HEAD/test/gettext-test.js --------------------------------------------------------------------------------