├── .circleci └── config.yml ├── .gitignore ├── LICENSE ├── README.md ├── index.js ├── package.json └── test ├── .gitignore ├── locales ├── de.json ├── en-GB.json ├── en.json └── fr.json ├── test.js └── views └── test.html /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funktionswerk/hapi-i18n/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funktionswerk/hapi-i18n/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funktionswerk/hapi-i18n/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funktionswerk/hapi-i18n/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funktionswerk/hapi-i18n/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funktionswerk/hapi-i18n/HEAD/package.json -------------------------------------------------------------------------------- /test/.gitignore: -------------------------------------------------------------------------------- 1 | database.json 2 | -------------------------------------------------------------------------------- /test/locales/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funktionswerk/hapi-i18n/HEAD/test/locales/de.json -------------------------------------------------------------------------------- /test/locales/en-GB.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funktionswerk/hapi-i18n/HEAD/test/locales/en-GB.json -------------------------------------------------------------------------------- /test/locales/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funktionswerk/hapi-i18n/HEAD/test/locales/en.json -------------------------------------------------------------------------------- /test/locales/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funktionswerk/hapi-i18n/HEAD/test/locales/fr.json -------------------------------------------------------------------------------- /test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funktionswerk/hapi-i18n/HEAD/test/test.js -------------------------------------------------------------------------------- /test/views/test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funktionswerk/hapi-i18n/HEAD/test/views/test.html --------------------------------------------------------------------------------