├── .gitignore ├── .travis.yml ├── LICENSE.txt ├── README.md ├── i18n.js ├── package.js ├── tests ├── client │ ├── i18n.html │ └── i18n.js └── shared │ └── i18n.js └── versions.json /.gitignore: -------------------------------------------------------------------------------- 1 | .build* 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anticoders/meteor-i18n/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anticoders/meteor-i18n/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anticoders/meteor-i18n/HEAD/README.md -------------------------------------------------------------------------------- /i18n.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anticoders/meteor-i18n/HEAD/i18n.js -------------------------------------------------------------------------------- /package.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anticoders/meteor-i18n/HEAD/package.js -------------------------------------------------------------------------------- /tests/client/i18n.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anticoders/meteor-i18n/HEAD/tests/client/i18n.html -------------------------------------------------------------------------------- /tests/client/i18n.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anticoders/meteor-i18n/HEAD/tests/client/i18n.js -------------------------------------------------------------------------------- /tests/shared/i18n.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anticoders/meteor-i18n/HEAD/tests/shared/i18n.js -------------------------------------------------------------------------------- /versions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anticoders/meteor-i18n/HEAD/versions.json --------------------------------------------------------------------------------