├── .editorconfig ├── .gitattributes ├── .gitignore ├── .remarkignore ├── .travis.yml ├── LICENSE ├── README.md ├── index.json ├── locales.js ├── package.json ├── test └── test.js └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladjs/i18n-locales/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | *.log 3 | .idea 4 | node_modules 5 | coverage 6 | .nyc_output 7 | -------------------------------------------------------------------------------- /.remarkignore: -------------------------------------------------------------------------------- 1 | test/snapshots/**/*.md 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladjs/i18n-locales/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladjs/i18n-locales/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladjs/i18n-locales/HEAD/README.md -------------------------------------------------------------------------------- /index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladjs/i18n-locales/HEAD/index.json -------------------------------------------------------------------------------- /locales.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladjs/i18n-locales/HEAD/locales.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladjs/i18n-locales/HEAD/package.json -------------------------------------------------------------------------------- /test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladjs/i18n-locales/HEAD/test/test.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladjs/i18n-locales/HEAD/yarn.lock --------------------------------------------------------------------------------