├── .babelrc ├── .editorconfig ├── .eslintignore ├── .eslintrc ├── .github ├── stale.yml └── workflows │ ├── deno.yml │ └── node.yml ├── .gitignore ├── .npmignore ├── CHANGELOG.md ├── README.md ├── example ├── angular │ ├── .browserslistrc │ ├── .editorconfig │ ├── .gitignore │ ├── README.md │ ├── angular.json │ ├── karma.conf.js │ ├── package.json │ ├── src │ │ ├── app │ │ │ ├── app.component.html │ │ │ ├── app.component.less │ │ │ ├── app.component.spec.ts │ │ │ ├── app.component.ts │ │ │ └── app.module.ts │ │ ├── assets │ │ │ └── .gitkeep │ │ ├── environments │ │ │ ├── environment.prod.ts │ │ │ └── environment.ts │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── locales │ │ │ ├── de │ │ │ │ └── translation.json │ │ │ └── en │ │ │ │ └── translation.json │ │ ├── main.ts │ │ ├── polyfills.ts │ │ ├── styles.less │ │ └── test.ts │ ├── tsconfig.app.json │ ├── tsconfig.json │ └── tsconfig.spec.json ├── deno │ ├── README.md │ ├── app.ts │ └── locales │ │ ├── de │ │ └── translation.json │ │ └── en │ │ └── translation.json ├── fallback │ ├── app.js │ ├── locales │ │ ├── de │ │ │ └── translation.json │ │ └── en │ │ │ └── translation.json │ └── package.json ├── i18next-vue │ ├── .gitignore │ ├── README.md │ ├── babel.config.js │ ├── package.json │ ├── public │ │ ├── favicon.ico │ │ ├── index.html │ │ └── locales │ │ │ ├── de │ │ │ └── translation.json │ │ │ └── en │ │ │ └── translation.json │ └── src │ │ ├── App.vue │ │ ├── Suspenser.vue │ │ ├── assets │ │ └── logo.png │ │ ├── components │ │ └── TranslationShowCase.vue │ │ ├── i18n.js │ │ └── main.js ├── jquery │ ├── index.html │ └── locales │ │ ├── de │ │ └── translation.json │ │ └── en │ │ └── translation.json ├── next │ ├── .gitignore │ ├── README.md │ ├── components │ │ ├── Footer.js │ │ └── Header.js │ ├── next-i18next.config.js │ ├── next.config.js │ ├── package.json │ ├── pages │ │ ├── _app.js │ │ ├── _document.js │ │ ├── client-page.js │ │ ├── index.js │ │ ├── lazy-reload-page.js │ │ └── second-page.js │ └── public │ │ ├── app.css │ │ └── locales │ │ ├── de │ │ ├── client-page.json │ │ ├── common.json │ │ ├── footer.json │ │ ├── lazy-reload-page.json │ │ └── second-page.json │ │ └── en │ │ ├── client-page.json │ │ ├── common.json │ │ ├── footer.json │ │ ├── lazy-reload-page.json │ │ └── second-page.json ├── node │ ├── app.js │ ├── locales │ │ ├── de │ │ │ └── translation.json │ │ └── en │ │ │ └── translation.json │ └── package.json ├── vue │ ├── .gitignore │ ├── README.md │ ├── babel.config.js │ ├── package.json │ ├── public │ │ ├── favicon.ico │ │ ├── index.html │ │ └── locales │ │ │ ├── de │ │ │ └── translation.json │ │ │ └── en │ │ │ └── translation.json │ └── src │ │ ├── App.vue │ │ ├── Suspenser.vue │ │ ├── assets │ │ └── logo.png │ │ ├── components │ │ └── TranslationShowCase.vue │ │ ├── i18n.js │ │ ├── main.js │ │ └── vue-i18next.js └── vue2 │ ├── app.js │ ├── index.html │ └── locales │ ├── de │ └── translation.json │ └── en │ └── translation.json ├── i18nextHttpBackend.js ├── i18nextHttpBackend.min.js ├── index.d.mts ├── index.d.ts ├── index.js ├── lib ├── index.js ├── request.js └── utils.js ├── licence ├── package.json ├── test ├── backendConnector.load.spec.js ├── deno │ ├── backendConnector.load.spec.js │ ├── fixtures │ │ └── server.js │ ├── http.spec.js │ └── request.spec.js ├── fixtures │ ├── server.js │ └── xmlHttpRequest.cjs ├── http.spec.js ├── request.spec.js └── typescript │ └── basic.test-d.ts ├── tsconfig.json └── tslint.json /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i18next/i18next-http-backend/HEAD/.babelrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i18next/i18next-http-backend/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i18next/i18next-http-backend/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i18next/i18next-http-backend/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i18next/i18next-http-backend/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.github/workflows/deno.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i18next/i18next-http-backend/HEAD/.github/workflows/deno.yml -------------------------------------------------------------------------------- /.github/workflows/node.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i18next/i18next-http-backend/HEAD/.github/workflows/node.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | node_modules 3 | package-lock.json 4 | cjs 5 | esm 6 | deno.lock -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i18next/i18next-http-backend/HEAD/.npmignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i18next/i18next-http-backend/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i18next/i18next-http-backend/HEAD/README.md -------------------------------------------------------------------------------- /example/angular/.browserslistrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i18next/i18next-http-backend/HEAD/example/angular/.browserslistrc -------------------------------------------------------------------------------- /example/angular/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i18next/i18next-http-backend/HEAD/example/angular/.editorconfig -------------------------------------------------------------------------------- /example/angular/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i18next/i18next-http-backend/HEAD/example/angular/.gitignore -------------------------------------------------------------------------------- /example/angular/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i18next/i18next-http-backend/HEAD/example/angular/README.md -------------------------------------------------------------------------------- /example/angular/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i18next/i18next-http-backend/HEAD/example/angular/angular.json -------------------------------------------------------------------------------- /example/angular/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i18next/i18next-http-backend/HEAD/example/angular/karma.conf.js -------------------------------------------------------------------------------- /example/angular/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i18next/i18next-http-backend/HEAD/example/angular/package.json -------------------------------------------------------------------------------- /example/angular/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i18next/i18next-http-backend/HEAD/example/angular/src/app/app.component.html -------------------------------------------------------------------------------- /example/angular/src/app/app.component.less: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/angular/src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i18next/i18next-http-backend/HEAD/example/angular/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /example/angular/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i18next/i18next-http-backend/HEAD/example/angular/src/app/app.component.ts -------------------------------------------------------------------------------- /example/angular/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i18next/i18next-http-backend/HEAD/example/angular/src/app/app.module.ts -------------------------------------------------------------------------------- /example/angular/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/angular/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /example/angular/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i18next/i18next-http-backend/HEAD/example/angular/src/environments/environment.ts -------------------------------------------------------------------------------- /example/angular/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i18next/i18next-http-backend/HEAD/example/angular/src/favicon.ico -------------------------------------------------------------------------------- /example/angular/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i18next/i18next-http-backend/HEAD/example/angular/src/index.html -------------------------------------------------------------------------------- /example/angular/src/locales/de/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i18next/i18next-http-backend/HEAD/example/angular/src/locales/de/translation.json -------------------------------------------------------------------------------- /example/angular/src/locales/en/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i18next/i18next-http-backend/HEAD/example/angular/src/locales/en/translation.json -------------------------------------------------------------------------------- /example/angular/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i18next/i18next-http-backend/HEAD/example/angular/src/main.ts -------------------------------------------------------------------------------- /example/angular/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i18next/i18next-http-backend/HEAD/example/angular/src/polyfills.ts -------------------------------------------------------------------------------- /example/angular/src/styles.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i18next/i18next-http-backend/HEAD/example/angular/src/styles.less -------------------------------------------------------------------------------- /example/angular/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i18next/i18next-http-backend/HEAD/example/angular/src/test.ts -------------------------------------------------------------------------------- /example/angular/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i18next/i18next-http-backend/HEAD/example/angular/tsconfig.app.json -------------------------------------------------------------------------------- /example/angular/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i18next/i18next-http-backend/HEAD/example/angular/tsconfig.json -------------------------------------------------------------------------------- /example/angular/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i18next/i18next-http-backend/HEAD/example/angular/tsconfig.spec.json -------------------------------------------------------------------------------- /example/deno/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i18next/i18next-http-backend/HEAD/example/deno/README.md -------------------------------------------------------------------------------- /example/deno/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i18next/i18next-http-backend/HEAD/example/deno/app.ts -------------------------------------------------------------------------------- /example/deno/locales/de/translation.json: -------------------------------------------------------------------------------- 1 | { 2 | "welcome": "hallo welt" 3 | } -------------------------------------------------------------------------------- /example/deno/locales/en/translation.json: -------------------------------------------------------------------------------- 1 | { 2 | "welcome": "hello world" 3 | } -------------------------------------------------------------------------------- /example/fallback/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i18next/i18next-http-backend/HEAD/example/fallback/app.js -------------------------------------------------------------------------------- /example/fallback/locales/de/translation.json: -------------------------------------------------------------------------------- 1 | { 2 | "welcome": "hallo welt" 3 | } -------------------------------------------------------------------------------- /example/fallback/locales/en/translation.json: -------------------------------------------------------------------------------- 1 | { 2 | "welcome": "hello world" 3 | } -------------------------------------------------------------------------------- /example/fallback/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i18next/i18next-http-backend/HEAD/example/fallback/package.json -------------------------------------------------------------------------------- /example/i18next-vue/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i18next/i18next-http-backend/HEAD/example/i18next-vue/.gitignore -------------------------------------------------------------------------------- /example/i18next-vue/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i18next/i18next-http-backend/HEAD/example/i18next-vue/README.md -------------------------------------------------------------------------------- /example/i18next-vue/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i18next/i18next-http-backend/HEAD/example/i18next-vue/babel.config.js -------------------------------------------------------------------------------- /example/i18next-vue/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i18next/i18next-http-backend/HEAD/example/i18next-vue/package.json -------------------------------------------------------------------------------- /example/i18next-vue/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i18next/i18next-http-backend/HEAD/example/i18next-vue/public/favicon.ico -------------------------------------------------------------------------------- /example/i18next-vue/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i18next/i18next-http-backend/HEAD/example/i18next-vue/public/index.html -------------------------------------------------------------------------------- /example/i18next-vue/public/locales/de/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i18next/i18next-http-backend/HEAD/example/i18next-vue/public/locales/de/translation.json -------------------------------------------------------------------------------- /example/i18next-vue/public/locales/en/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i18next/i18next-http-backend/HEAD/example/i18next-vue/public/locales/en/translation.json -------------------------------------------------------------------------------- /example/i18next-vue/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i18next/i18next-http-backend/HEAD/example/i18next-vue/src/App.vue -------------------------------------------------------------------------------- /example/i18next-vue/src/Suspenser.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i18next/i18next-http-backend/HEAD/example/i18next-vue/src/Suspenser.vue -------------------------------------------------------------------------------- /example/i18next-vue/src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i18next/i18next-http-backend/HEAD/example/i18next-vue/src/assets/logo.png -------------------------------------------------------------------------------- /example/i18next-vue/src/components/TranslationShowCase.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i18next/i18next-http-backend/HEAD/example/i18next-vue/src/components/TranslationShowCase.vue -------------------------------------------------------------------------------- /example/i18next-vue/src/i18n.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i18next/i18next-http-backend/HEAD/example/i18next-vue/src/i18n.js -------------------------------------------------------------------------------- /example/i18next-vue/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i18next/i18next-http-backend/HEAD/example/i18next-vue/src/main.js -------------------------------------------------------------------------------- /example/jquery/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i18next/i18next-http-backend/HEAD/example/jquery/index.html -------------------------------------------------------------------------------- /example/jquery/locales/de/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i18next/i18next-http-backend/HEAD/example/jquery/locales/de/translation.json -------------------------------------------------------------------------------- /example/jquery/locales/en/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i18next/i18next-http-backend/HEAD/example/jquery/locales/en/translation.json -------------------------------------------------------------------------------- /example/next/.gitignore: -------------------------------------------------------------------------------- 1 | .next -------------------------------------------------------------------------------- /example/next/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i18next/i18next-http-backend/HEAD/example/next/README.md -------------------------------------------------------------------------------- /example/next/components/Footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i18next/i18next-http-backend/HEAD/example/next/components/Footer.js -------------------------------------------------------------------------------- /example/next/components/Header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i18next/i18next-http-backend/HEAD/example/next/components/Header.js -------------------------------------------------------------------------------- /example/next/next-i18next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i18next/i18next-http-backend/HEAD/example/next/next-i18next.config.js -------------------------------------------------------------------------------- /example/next/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i18next/i18next-http-backend/HEAD/example/next/next.config.js -------------------------------------------------------------------------------- /example/next/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i18next/i18next-http-backend/HEAD/example/next/package.json -------------------------------------------------------------------------------- /example/next/pages/_app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i18next/i18next-http-backend/HEAD/example/next/pages/_app.js -------------------------------------------------------------------------------- /example/next/pages/_document.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i18next/i18next-http-backend/HEAD/example/next/pages/_document.js -------------------------------------------------------------------------------- /example/next/pages/client-page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i18next/i18next-http-backend/HEAD/example/next/pages/client-page.js -------------------------------------------------------------------------------- /example/next/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i18next/i18next-http-backend/HEAD/example/next/pages/index.js -------------------------------------------------------------------------------- /example/next/pages/lazy-reload-page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i18next/i18next-http-backend/HEAD/example/next/pages/lazy-reload-page.js -------------------------------------------------------------------------------- /example/next/pages/second-page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i18next/i18next-http-backend/HEAD/example/next/pages/second-page.js -------------------------------------------------------------------------------- /example/next/public/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i18next/i18next-http-backend/HEAD/example/next/public/app.css -------------------------------------------------------------------------------- /example/next/public/locales/de/client-page.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i18next/i18next-http-backend/HEAD/example/next/public/locales/de/client-page.json -------------------------------------------------------------------------------- /example/next/public/locales/de/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i18next/i18next-http-backend/HEAD/example/next/public/locales/de/common.json -------------------------------------------------------------------------------- /example/next/public/locales/de/footer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i18next/i18next-http-backend/HEAD/example/next/public/locales/de/footer.json -------------------------------------------------------------------------------- /example/next/public/locales/de/lazy-reload-page.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i18next/i18next-http-backend/HEAD/example/next/public/locales/de/lazy-reload-page.json -------------------------------------------------------------------------------- /example/next/public/locales/de/second-page.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i18next/i18next-http-backend/HEAD/example/next/public/locales/de/second-page.json -------------------------------------------------------------------------------- /example/next/public/locales/en/client-page.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i18next/i18next-http-backend/HEAD/example/next/public/locales/en/client-page.json -------------------------------------------------------------------------------- /example/next/public/locales/en/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i18next/i18next-http-backend/HEAD/example/next/public/locales/en/common.json -------------------------------------------------------------------------------- /example/next/public/locales/en/footer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i18next/i18next-http-backend/HEAD/example/next/public/locales/en/footer.json -------------------------------------------------------------------------------- /example/next/public/locales/en/lazy-reload-page.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i18next/i18next-http-backend/HEAD/example/next/public/locales/en/lazy-reload-page.json -------------------------------------------------------------------------------- /example/next/public/locales/en/second-page.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i18next/i18next-http-backend/HEAD/example/next/public/locales/en/second-page.json -------------------------------------------------------------------------------- /example/node/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i18next/i18next-http-backend/HEAD/example/node/app.js -------------------------------------------------------------------------------- /example/node/locales/de/translation.json: -------------------------------------------------------------------------------- 1 | { 2 | "welcome": "hallo welt" 3 | } -------------------------------------------------------------------------------- /example/node/locales/en/translation.json: -------------------------------------------------------------------------------- 1 | { 2 | "welcome": "hello world" 3 | } -------------------------------------------------------------------------------- /example/node/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i18next/i18next-http-backend/HEAD/example/node/package.json -------------------------------------------------------------------------------- /example/vue/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i18next/i18next-http-backend/HEAD/example/vue/.gitignore -------------------------------------------------------------------------------- /example/vue/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i18next/i18next-http-backend/HEAD/example/vue/README.md -------------------------------------------------------------------------------- /example/vue/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i18next/i18next-http-backend/HEAD/example/vue/babel.config.js -------------------------------------------------------------------------------- /example/vue/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i18next/i18next-http-backend/HEAD/example/vue/package.json -------------------------------------------------------------------------------- /example/vue/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i18next/i18next-http-backend/HEAD/example/vue/public/favicon.ico -------------------------------------------------------------------------------- /example/vue/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i18next/i18next-http-backend/HEAD/example/vue/public/index.html -------------------------------------------------------------------------------- /example/vue/public/locales/de/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i18next/i18next-http-backend/HEAD/example/vue/public/locales/de/translation.json -------------------------------------------------------------------------------- /example/vue/public/locales/en/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i18next/i18next-http-backend/HEAD/example/vue/public/locales/en/translation.json -------------------------------------------------------------------------------- /example/vue/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i18next/i18next-http-backend/HEAD/example/vue/src/App.vue -------------------------------------------------------------------------------- /example/vue/src/Suspenser.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i18next/i18next-http-backend/HEAD/example/vue/src/Suspenser.vue -------------------------------------------------------------------------------- /example/vue/src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i18next/i18next-http-backend/HEAD/example/vue/src/assets/logo.png -------------------------------------------------------------------------------- /example/vue/src/components/TranslationShowCase.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i18next/i18next-http-backend/HEAD/example/vue/src/components/TranslationShowCase.vue -------------------------------------------------------------------------------- /example/vue/src/i18n.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i18next/i18next-http-backend/HEAD/example/vue/src/i18n.js -------------------------------------------------------------------------------- /example/vue/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i18next/i18next-http-backend/HEAD/example/vue/src/main.js -------------------------------------------------------------------------------- /example/vue/src/vue-i18next.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i18next/i18next-http-backend/HEAD/example/vue/src/vue-i18next.js -------------------------------------------------------------------------------- /example/vue2/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i18next/i18next-http-backend/HEAD/example/vue2/app.js -------------------------------------------------------------------------------- /example/vue2/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i18next/i18next-http-backend/HEAD/example/vue2/index.html -------------------------------------------------------------------------------- /example/vue2/locales/de/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i18next/i18next-http-backend/HEAD/example/vue2/locales/de/translation.json -------------------------------------------------------------------------------- /example/vue2/locales/en/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i18next/i18next-http-backend/HEAD/example/vue2/locales/en/translation.json -------------------------------------------------------------------------------- /i18nextHttpBackend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i18next/i18next-http-backend/HEAD/i18nextHttpBackend.js -------------------------------------------------------------------------------- /i18nextHttpBackend.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i18next/i18next-http-backend/HEAD/i18nextHttpBackend.min.js -------------------------------------------------------------------------------- /index.d.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i18next/i18next-http-backend/HEAD/index.d.mts -------------------------------------------------------------------------------- /index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i18next/i18next-http-backend/HEAD/index.d.ts -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i18next/i18next-http-backend/HEAD/index.js -------------------------------------------------------------------------------- /lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i18next/i18next-http-backend/HEAD/lib/index.js -------------------------------------------------------------------------------- /lib/request.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i18next/i18next-http-backend/HEAD/lib/request.js -------------------------------------------------------------------------------- /lib/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i18next/i18next-http-backend/HEAD/lib/utils.js -------------------------------------------------------------------------------- /licence: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i18next/i18next-http-backend/HEAD/licence -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i18next/i18next-http-backend/HEAD/package.json -------------------------------------------------------------------------------- /test/backendConnector.load.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i18next/i18next-http-backend/HEAD/test/backendConnector.load.spec.js -------------------------------------------------------------------------------- /test/deno/backendConnector.load.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i18next/i18next-http-backend/HEAD/test/deno/backendConnector.load.spec.js -------------------------------------------------------------------------------- /test/deno/fixtures/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i18next/i18next-http-backend/HEAD/test/deno/fixtures/server.js -------------------------------------------------------------------------------- /test/deno/http.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i18next/i18next-http-backend/HEAD/test/deno/http.spec.js -------------------------------------------------------------------------------- /test/deno/request.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i18next/i18next-http-backend/HEAD/test/deno/request.spec.js -------------------------------------------------------------------------------- /test/fixtures/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i18next/i18next-http-backend/HEAD/test/fixtures/server.js -------------------------------------------------------------------------------- /test/fixtures/xmlHttpRequest.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i18next/i18next-http-backend/HEAD/test/fixtures/xmlHttpRequest.cjs -------------------------------------------------------------------------------- /test/http.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i18next/i18next-http-backend/HEAD/test/http.spec.js -------------------------------------------------------------------------------- /test/request.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i18next/i18next-http-backend/HEAD/test/request.spec.js -------------------------------------------------------------------------------- /test/typescript/basic.test-d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i18next/i18next-http-backend/HEAD/test/typescript/basic.test-d.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i18next/i18next-http-backend/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i18next/i18next-http-backend/HEAD/tslint.json --------------------------------------------------------------------------------