├── .cursor ├── mcp.json └── rules │ └── nx-rules.mdc ├── .editorconfig ├── .eslintignore ├── .eslintrc.json ├── .github ├── ISSUE_TEMPLATE │ ├── bug-report.yaml │ └── feature-request.yaml ├── actions │ └── step-setup │ │ └── action.yml ├── pull_request_template.md └── workflows │ ├── ci.yml │ ├── deploy-demo-app.yml │ ├── reviewdog.yml │ └── stale-issues.yml ├── .gitignore ├── .husky ├── commit-msg └── pre-commit ├── .lintstagedrc ├── .prettierignore ├── .prettierrc ├── .verdaccio └── config.yml ├── @types └── angular-globals │ └── index.d.ts ├── BREAKING_CHANGES.md ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── apps ├── .gitkeep ├── transloco-playground-e2e │ ├── .eslintrc.json │ ├── cypress.config.ts │ ├── project.json │ ├── src │ │ ├── fixtures │ │ │ └── example.json │ │ ├── integration │ │ │ ├── dynamic-translation.ts │ │ │ ├── full-cycle.spec.ts │ │ │ ├── home.ts │ │ │ ├── lazy.ts │ │ │ ├── locale.spec.ts │ │ │ ├── multi-lang.ts │ │ │ ├── scope-sharing.ts │ │ │ └── transpilers.ts │ │ ├── plugins │ │ │ └── index.ts │ │ └── support │ │ │ ├── commands.ts │ │ │ └── index.ts │ ├── tsconfig.e2e.json │ └── tsconfig.json └── transloco-playground │ ├── .eslintrc.json │ ├── index-html-transform.ts │ ├── karma.conf.js │ ├── project.json │ ├── src │ ├── app │ │ ├── app-src.directive.ts │ │ ├── app.component.html │ │ ├── app.component.scss │ │ ├── app.component.ts │ │ ├── app.conifg.ts │ │ ├── app.routes.ts │ │ ├── dynamic-translation │ │ │ ├── dynamic-translation.component.html │ │ │ ├── dynamic-translation.component.scss │ │ │ ├── dynamic-translation.component.ts │ │ │ └── dynamic-translation.routes.ts │ │ ├── getLang.ts │ │ ├── home │ │ │ ├── home.component.html │ │ │ ├── home.component.scss │ │ │ ├── home.component.spec.ts │ │ │ └── home.component.ts │ │ ├── inline-loaders │ │ │ ├── i18n │ │ │ │ ├── en.json │ │ │ │ └── es.json │ │ │ ├── inline-loaders.component.html │ │ │ ├── inline-loaders.component.scss │ │ │ ├── inline-loaders.component.ts │ │ │ └── inline-loaders.routes.ts │ │ ├── lazy-multiple-scopes │ │ │ ├── lazy-multiple-scopes.component.html │ │ │ ├── lazy-multiple-scopes.component.scss │ │ │ ├── lazy-multiple-scopes.component.ts │ │ │ └── lazy-multiple-scopes.routes.ts │ │ ├── lazy-scope-alias │ │ │ ├── lazy-scope-alias.component.html │ │ │ ├── lazy-scope-alias.component.scss │ │ │ ├── lazy-scope-alias.component.ts │ │ │ └── lazy-scope-alias.routes.ts │ │ ├── lazy │ │ │ ├── lazy.component.html │ │ │ ├── lazy.component.scss │ │ │ ├── lazy.component.spec.ts │ │ │ ├── lazy.component.ts │ │ │ └── lazy.routes.ts │ │ ├── locale │ │ │ ├── locale.component.html │ │ │ ├── locale.component.scss │ │ │ ├── locale.component.ts │ │ │ └── locale.routes.ts │ │ ├── multi-langs │ │ │ ├── multi-langs.component.html │ │ │ ├── multi-langs.component.scss │ │ │ ├── multi-langs.component.ts │ │ │ ├── multi-langs.routes.ts │ │ │ └── provider-lang │ │ │ │ ├── provider-lang.component.html │ │ │ │ ├── provider-lang.component.scss │ │ │ │ └── provider-lang.component.ts │ │ ├── preload.ts │ │ ├── scope-sharing │ │ │ ├── scope-sharing.component.html │ │ │ ├── scope-sharing.component.scss │ │ │ ├── scope-sharing.component.ts │ │ │ └── scope-sharing.routes.ts │ │ ├── transloco-loader.ts │ │ ├── transloco-testing.module.ts │ │ ├── transpilers │ │ │ ├── transpilers.component.html │ │ │ ├── transpilers.component.scss │ │ │ ├── transpilers.component.ts │ │ │ └── transpilers.routes.ts │ │ └── user.service.ts │ ├── assets │ │ ├── .gitkeep │ │ ├── i18n │ │ │ ├── admin-page │ │ │ │ ├── en.json │ │ │ │ └── es.json │ │ │ ├── en.json │ │ │ ├── es.json │ │ │ ├── lazy-page │ │ │ │ ├── en.json │ │ │ │ └── es.json │ │ │ ├── lazy-scope-alias │ │ │ │ ├── en.json │ │ │ │ └── es.json │ │ │ ├── todos-page │ │ │ │ ├── en.json │ │ │ │ └── es.json │ │ │ └── transpilers │ │ │ │ └── messageformat │ │ │ │ ├── en.json │ │ │ │ └── es.json │ │ └── images │ │ │ └── logo.svg │ ├── environments │ │ ├── environment.docs.ts │ │ ├── environment.prod.ts │ │ └── environment.ts │ ├── favicon.ico │ ├── index.html │ ├── main.ts │ ├── polyfills.ts │ ├── styles.scss │ └── test-setup.ts │ ├── tsconfig.app.json │ ├── tsconfig.json │ └── tsconfig.spec.json ├── changelog.config.js ├── commitlint.config.js ├── jest.config.ts ├── jest.preset.js ├── karma.conf.js ├── libs ├── .gitkeep ├── schematics-core │ ├── .eslintrc.json │ ├── index.ts │ ├── jest.config.ts │ ├── project.json │ ├── testing │ │ ├── create-workspace.ts │ │ ├── index.ts │ │ └── mocks.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ ├── tsconfig.spec.json │ └── utils │ │ ├── collections.ts │ │ ├── file.ts │ │ ├── find-module.ts │ │ ├── package.ts │ │ ├── schematic.ts │ │ ├── translation.ts │ │ ├── transloco.ts │ │ └── workspace.ts ├── transloco-locale │ ├── .eslintrc.json │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── karma.conf.js │ ├── ng-package.json │ ├── package.json │ ├── project.json │ ├── src │ │ ├── index.ts │ │ ├── lib │ │ │ ├── helpers.ts │ │ │ ├── locale-currency.ts │ │ │ ├── pipes │ │ │ │ ├── base-locale.pipe.ts │ │ │ │ ├── index.ts │ │ │ │ ├── transloco-currency.pipe.ts │ │ │ │ ├── transloco-date.pipe.ts │ │ │ │ ├── transloco-decimal.pipe.ts │ │ │ │ └── transloco-percent.pipe.ts │ │ │ ├── shared.ts │ │ │ ├── tests │ │ │ │ ├── mocks.ts │ │ │ │ ├── pipes │ │ │ │ │ ├── transloco-currency.pipe.spec.ts │ │ │ │ │ ├── transloco-date.pipe.spec.ts │ │ │ │ │ ├── transloco-decimal.pipe.spec.ts │ │ │ │ │ └── transloco-percent.pipe.spec.ts │ │ │ │ ├── transloco-locale.service.spec.ts │ │ │ │ └── utils.ts │ │ │ ├── transloco-locale.config.ts │ │ │ ├── transloco-locale.module.ts │ │ │ ├── transloco-locale.providers.ts │ │ │ ├── transloco-locale.service.ts │ │ │ ├── transloco-locale.transformers.ts │ │ │ └── transloco-locale.types.ts │ │ └── test-setup.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ ├── tsconfig.lib.prod.json │ └── tsconfig.spec.json ├── transloco-messageformat │ ├── .eslintrc.json │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── karma.conf.js │ ├── ng-package.json │ ├── package.json │ ├── project.json │ ├── src │ │ ├── index.ts │ │ ├── lib │ │ │ ├── messageformat.config.ts │ │ │ ├── messageformat.factory.ts │ │ │ ├── messageformat.providers.ts │ │ │ ├── messageformat.transpiler.spec.ts │ │ │ └── messageformat.transpiler.ts │ │ └── test-setup.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ ├── tsconfig.lib.prod.json │ └── tsconfig.spec.json ├── transloco-optimize │ ├── .babelrc │ ├── .eslintrc.json │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── karma.conf.js │ ├── package.json │ ├── project.json │ ├── src │ │ ├── index.ts │ │ ├── lib │ │ │ └── transloco-optimize.ts │ │ └── test-setup.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ └── tsconfig.spec.json ├── transloco-persist-lang │ ├── .eslintrc.json │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── karma.conf.js │ ├── ng-package.json │ ├── package.json │ ├── project.json │ ├── src │ │ ├── index.ts │ │ ├── lib │ │ │ ├── cookie-storage.ts │ │ │ ├── persist-lang.config.ts │ │ │ ├── persist-lang.providers.ts │ │ │ ├── persist-lang.service.ts │ │ │ ├── persist-lang.spec.ts │ │ │ └── persist-lang.types.ts │ │ └── test-setup.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ ├── tsconfig.lib.prod.json │ └── tsconfig.spec.json ├── transloco-persist-translations │ ├── .eslintrc.json │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── karma.conf.js │ ├── ng-package.json │ ├── package.json │ ├── project.json │ ├── src │ │ ├── index.ts │ │ ├── lib │ │ │ ├── helpers.ts │ │ │ ├── tests │ │ │ │ ├── mocks.ts │ │ │ │ └── transloco-persist-translations.spec.ts │ │ │ ├── transloco-persist-translations.config.ts │ │ │ ├── transloco-persist-translations.providers.ts │ │ │ ├── transloco-persist-translations.service.ts │ │ │ └── transloco.storage.ts │ │ └── test-setup.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ ├── tsconfig.lib.prod.json │ └── tsconfig.spec.json ├── transloco-preload-langs │ ├── .eslintrc.json │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── karma.conf.js │ ├── ng-package.json │ ├── package.json │ ├── project.json │ ├── src │ │ ├── index.ts │ │ ├── lib │ │ │ ├── preload-langs.providers.ts │ │ │ └── preload-langs.service.ts │ │ └── test-setup.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ ├── tsconfig.lib.prod.json │ └── tsconfig.spec.json ├── transloco-schematics │ ├── .babelrc │ ├── .eslintrc.json │ ├── CHANGELOG.md │ ├── LICENSE │ ├── jest.config.ts │ ├── package.json │ ├── project.json │ ├── schematics-core │ │ ├── index.ts │ │ ├── testing │ │ │ ├── create-workspace.ts │ │ │ ├── index.ts │ │ │ └── mocks.ts │ │ └── utils │ │ │ ├── collections.ts │ │ │ ├── file.ts │ │ │ ├── find-module.ts │ │ │ ├── package.ts │ │ │ ├── schematic.ts │ │ │ ├── translation.ts │ │ │ ├── transloco.ts │ │ │ └── workspace.ts │ ├── src │ │ ├── collection.json │ │ ├── join │ │ │ ├── __snapshots__ │ │ │ │ └── join.spec.ts.snap │ │ │ ├── index.ts │ │ │ ├── join.spec.ts │ │ │ ├── schema.json │ │ │ └── schema.ts │ │ ├── keys-manager │ │ │ ├── index.ts │ │ │ ├── schema.json │ │ │ └── schema.ts │ │ ├── ng-migrate │ │ │ ├── index.ts │ │ │ ├── ng-migrate.ts │ │ │ ├── schema.json │ │ │ └── schema.ts │ │ ├── ngx-migrate │ │ │ ├── index.ts │ │ │ ├── migration-matchers.ts │ │ │ ├── ngx-translate-migration.md │ │ │ ├── schema.json │ │ │ ├── schema.ts │ │ │ └── spec │ │ │ │ ├── ngx-migrate.spec.ts │ │ │ │ └── templates │ │ │ │ └── pipes │ │ │ │ ├── ngx-translate │ │ │ │ ├── 1.html │ │ │ │ ├── 2.html │ │ │ │ ├── 3.html │ │ │ │ ├── 4.html │ │ │ │ ├── 5.html │ │ │ │ └── 6.html │ │ │ │ └── transloco │ │ │ │ ├── 1.html │ │ │ │ ├── 2.html │ │ │ │ ├── 3.html │ │ │ │ ├── 4.html │ │ │ │ ├── 5.html │ │ │ │ └── 6.html │ │ ├── scope │ │ │ ├── index.ts │ │ │ ├── schema.json │ │ │ ├── schema.ts │ │ │ └── utils.ts │ │ └── split │ │ │ ├── index.ts │ │ │ ├── schema.json │ │ │ ├── schema.ts │ │ │ └── split.spec.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ ├── tsconfig.schematics.json │ └── tsconfig.spec.json ├── transloco-scoped-libs │ ├── .babelrc │ ├── .eslintrc.json │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── karma.conf.js │ ├── package.json │ ├── project.json │ ├── src │ │ ├── index.ts │ │ ├── lib │ │ │ ├── scoped-libs.types.ts │ │ │ ├── scoped-libs.utils.ts │ │ │ └── transloco-scoped-libs.ts │ │ └── test-setup.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ ├── tsconfig.spec.json │ └── webpack.plugin.ts ├── transloco-utils │ ├── .babelrc │ ├── .eslintrc.json │ ├── .gitignore │ ├── CHANGELOG.md │ ├── LICENSE │ ├── jest.config.js │ ├── karma.conf.js │ ├── package.json │ ├── project.json │ ├── src │ │ ├── index.ts │ │ ├── lib │ │ │ ├── transloco-utils.ts │ │ │ └── transloco-utils.types.ts │ │ └── test-setup.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ └── tsconfig.spec.json ├── transloco-validator │ ├── .babelrc │ ├── .eslintrc.json │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── karma.conf.js │ ├── package.json │ ├── project.json │ ├── src │ │ ├── index.ts │ │ ├── lib │ │ │ └── transloco-validator.ts │ │ └── test-setup.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ └── tsconfig.spec.json ├── transloco │ ├── .eslintrc.json │ ├── .gitignore │ ├── CHANGELOG.md │ ├── LICENSE │ ├── jest.config.schematics.ts │ ├── karma.conf.js │ ├── ng-package.json │ ├── package.json │ ├── project.json │ ├── schematics-core │ │ ├── index.ts │ │ ├── testing │ │ │ ├── create-workspace.ts │ │ │ ├── index.ts │ │ │ └── mocks.ts │ │ └── utils │ │ │ ├── collections.ts │ │ │ ├── file.ts │ │ │ ├── find-module.ts │ │ │ ├── package.ts │ │ │ ├── schematic.ts │ │ │ ├── translation.ts │ │ │ ├── transloco.ts │ │ │ └── workspace.ts │ ├── schematics │ │ ├── collection.json │ │ └── ng-add │ │ │ ├── files │ │ │ ├── transloco-loader │ │ │ │ └── transloco-loader.__ts__ │ │ │ └── transloco-module │ │ │ │ └── transloco-root.module.__ts__ │ │ │ ├── generators │ │ │ ├── http-loader.gen.ts │ │ │ └── root-module.gen.ts │ │ │ ├── index.ts │ │ │ ├── ng-add.spec.ts │ │ │ ├── schema.json │ │ │ └── schema.ts │ ├── src │ │ ├── index.ts │ │ ├── lib │ │ │ ├── get-fallbacks-loaders.ts │ │ │ ├── lang-resolver.ts │ │ │ ├── loader-component.component.ts │ │ │ ├── resolve-loader.ts │ │ │ ├── scope-resolver.ts │ │ │ ├── template-handler.ts │ │ │ ├── tests │ │ │ │ ├── default-missing-handler.spec.ts │ │ │ │ ├── directive │ │ │ │ │ ├── attribute.spec.ts │ │ │ │ │ ├── multi-scope-alias.spec.ts │ │ │ │ │ ├── scope-alias.spec.ts │ │ │ │ │ ├── shared.ts │ │ │ │ │ ├── structural-loading-tpl.spec.ts │ │ │ │ │ ├── structural-multilang.spec.ts │ │ │ │ │ └── structural.spec.ts │ │ │ │ ├── i18n-mocks │ │ │ │ │ ├── admin-page │ │ │ │ │ │ ├── en.json │ │ │ │ │ │ └── es.json │ │ │ │ │ ├── en.json │ │ │ │ │ ├── es.json │ │ │ │ │ ├── lazy-page │ │ │ │ │ │ ├── en.json │ │ │ │ │ │ └── es.json │ │ │ │ │ ├── lazy-scope-alias │ │ │ │ │ │ ├── en.json │ │ │ │ │ │ └── es.json │ │ │ │ │ ├── todos-page │ │ │ │ │ │ ├── en.json │ │ │ │ │ │ └── es.json │ │ │ │ │ └── transpilers │ │ │ │ │ │ └── messageformat │ │ │ │ │ │ ├── en.json │ │ │ │ │ │ └── es.json │ │ │ │ ├── inline-loaders.spec.ts │ │ │ │ ├── lang-resolver.spec.ts │ │ │ │ ├── mocks.ts │ │ │ │ ├── pipe │ │ │ │ │ ├── pipe-integration.spec.ts │ │ │ │ │ └── pipe.spec.ts │ │ │ │ ├── scope-resolver.spec.ts │ │ │ │ ├── service │ │ │ │ │ ├── custom-interceptor.spec.ts │ │ │ │ │ ├── default-loader.spec.ts │ │ │ │ │ ├── fallbacks.spec.ts │ │ │ │ │ ├── getTranslation.spec.ts │ │ │ │ │ ├── langChanges.spec.ts │ │ │ │ │ ├── load.spec.ts │ │ │ │ │ ├── missingHandler.spec.ts │ │ │ │ │ ├── selectTranslate.spec.ts │ │ │ │ │ ├── selectTranslateObject.spec.ts │ │ │ │ │ ├── selectTranslation.spec.ts │ │ │ │ │ ├── service-spec-utils.ts │ │ │ │ │ ├── setTranslation.spec.ts │ │ │ │ │ ├── setTranslationKey.spec.ts │ │ │ │ │ ├── translate.spec.ts │ │ │ │ │ └── translateObject.spec.ts │ │ │ │ ├── shared.spec.ts │ │ │ │ ├── signal.spec.ts │ │ │ │ └── transpiler.spec.ts │ │ │ ├── transloco-fallback-strategy.ts │ │ │ ├── transloco-lang.ts │ │ │ ├── transloco-loading-template.ts │ │ │ ├── transloco-missing-handler.ts │ │ │ ├── transloco-scope.ts │ │ │ ├── transloco-testing.module.ts │ │ │ ├── transloco.config.ts │ │ │ ├── transloco.directive.ts │ │ │ ├── transloco.interceptor.ts │ │ │ ├── transloco.loader.ts │ │ │ ├── transloco.module.ts │ │ │ ├── transloco.pipe.ts │ │ │ ├── transloco.providers.ts │ │ │ ├── transloco.service.ts │ │ │ ├── transloco.signal.ts │ │ │ ├── transloco.transpiler.ts │ │ │ ├── transloco.types.ts │ │ │ └── utils │ │ │ │ ├── browser.utils.ts │ │ │ │ ├── flat.utils.ts │ │ │ │ ├── lang.utils.ts │ │ │ │ ├── object.utils.ts │ │ │ │ ├── pipe.utils.ts │ │ │ │ ├── scope.utils.ts │ │ │ │ └── type.utils.ts │ │ └── test-setup.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ ├── tsconfig.lib.prod.json │ ├── tsconfig.schematics.json │ └── tsconfig.spec.json └── vscode-snippets │ ├── CHANGELOG.md │ ├── README.md │ ├── package.json │ └── snippets │ └── snippets.json ├── logo.svg ├── nx.json ├── package.json ├── project.json ├── scripts └── pre-commit.js ├── tsconfig.base.json ├── tsconfig.json └── tslint.json /.cursor/mcp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/.cursor/mcp.json -------------------------------------------------------------------------------- /.cursor/rules/nx-rules.mdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/.cursor/rules/nx-rules.mdc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/.github/ISSUE_TEMPLATE/bug-report.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature-request.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/.github/ISSUE_TEMPLATE/feature-request.yaml -------------------------------------------------------------------------------- /.github/actions/step-setup/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/.github/actions/step-setup/action.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/deploy-demo-app.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/.github/workflows/deploy-demo-app.yml -------------------------------------------------------------------------------- /.github/workflows/reviewdog.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/.github/workflows/reviewdog.yml -------------------------------------------------------------------------------- /.github/workflows/stale-issues.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/.github/workflows/stale-issues.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/commit-msg: -------------------------------------------------------------------------------- 1 | npx --no-install commitlint --edit $1 2 | -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | npm run pre-commit 2 | -------------------------------------------------------------------------------- /.lintstagedrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/.lintstagedrc -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "singleQuote": true 3 | } 4 | -------------------------------------------------------------------------------- /.verdaccio/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/.verdaccio/config.yml -------------------------------------------------------------------------------- /@types/angular-globals/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/@types/angular-globals/index.d.ts -------------------------------------------------------------------------------- /BREAKING_CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/BREAKING_CHANGES.md -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/README.md -------------------------------------------------------------------------------- /apps/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/transloco-playground-e2e/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/apps/transloco-playground-e2e/.eslintrc.json -------------------------------------------------------------------------------- /apps/transloco-playground-e2e/cypress.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/apps/transloco-playground-e2e/cypress.config.ts -------------------------------------------------------------------------------- /apps/transloco-playground-e2e/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/apps/transloco-playground-e2e/project.json -------------------------------------------------------------------------------- /apps/transloco-playground-e2e/src/fixtures/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/apps/transloco-playground-e2e/src/fixtures/example.json -------------------------------------------------------------------------------- /apps/transloco-playground-e2e/src/integration/dynamic-translation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/apps/transloco-playground-e2e/src/integration/dynamic-translation.ts -------------------------------------------------------------------------------- /apps/transloco-playground-e2e/src/integration/full-cycle.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/apps/transloco-playground-e2e/src/integration/full-cycle.spec.ts -------------------------------------------------------------------------------- /apps/transloco-playground-e2e/src/integration/home.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/apps/transloco-playground-e2e/src/integration/home.ts -------------------------------------------------------------------------------- /apps/transloco-playground-e2e/src/integration/lazy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/apps/transloco-playground-e2e/src/integration/lazy.ts -------------------------------------------------------------------------------- /apps/transloco-playground-e2e/src/integration/locale.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/apps/transloco-playground-e2e/src/integration/locale.spec.ts -------------------------------------------------------------------------------- /apps/transloco-playground-e2e/src/integration/multi-lang.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/apps/transloco-playground-e2e/src/integration/multi-lang.ts -------------------------------------------------------------------------------- /apps/transloco-playground-e2e/src/integration/scope-sharing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/apps/transloco-playground-e2e/src/integration/scope-sharing.ts -------------------------------------------------------------------------------- /apps/transloco-playground-e2e/src/integration/transpilers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/apps/transloco-playground-e2e/src/integration/transpilers.ts -------------------------------------------------------------------------------- /apps/transloco-playground-e2e/src/plugins/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/apps/transloco-playground-e2e/src/plugins/index.ts -------------------------------------------------------------------------------- /apps/transloco-playground-e2e/src/support/commands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/apps/transloco-playground-e2e/src/support/commands.ts -------------------------------------------------------------------------------- /apps/transloco-playground-e2e/src/support/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/apps/transloco-playground-e2e/src/support/index.ts -------------------------------------------------------------------------------- /apps/transloco-playground-e2e/tsconfig.e2e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/apps/transloco-playground-e2e/tsconfig.e2e.json -------------------------------------------------------------------------------- /apps/transloco-playground-e2e/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/apps/transloco-playground-e2e/tsconfig.json -------------------------------------------------------------------------------- /apps/transloco-playground/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/apps/transloco-playground/.eslintrc.json -------------------------------------------------------------------------------- /apps/transloco-playground/index-html-transform.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/apps/transloco-playground/index-html-transform.ts -------------------------------------------------------------------------------- /apps/transloco-playground/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/apps/transloco-playground/karma.conf.js -------------------------------------------------------------------------------- /apps/transloco-playground/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/apps/transloco-playground/project.json -------------------------------------------------------------------------------- /apps/transloco-playground/src/app/app-src.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/apps/transloco-playground/src/app/app-src.directive.ts -------------------------------------------------------------------------------- /apps/transloco-playground/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/apps/transloco-playground/src/app/app.component.html -------------------------------------------------------------------------------- /apps/transloco-playground/src/app/app.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/apps/transloco-playground/src/app/app.component.scss -------------------------------------------------------------------------------- /apps/transloco-playground/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/apps/transloco-playground/src/app/app.component.ts -------------------------------------------------------------------------------- /apps/transloco-playground/src/app/app.conifg.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/apps/transloco-playground/src/app/app.conifg.ts -------------------------------------------------------------------------------- /apps/transloco-playground/src/app/app.routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/apps/transloco-playground/src/app/app.routes.ts -------------------------------------------------------------------------------- /apps/transloco-playground/src/app/dynamic-translation/dynamic-translation.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/apps/transloco-playground/src/app/dynamic-translation/dynamic-translation.component.html -------------------------------------------------------------------------------- /apps/transloco-playground/src/app/dynamic-translation/dynamic-translation.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/transloco-playground/src/app/dynamic-translation/dynamic-translation.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/apps/transloco-playground/src/app/dynamic-translation/dynamic-translation.component.ts -------------------------------------------------------------------------------- /apps/transloco-playground/src/app/dynamic-translation/dynamic-translation.routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/apps/transloco-playground/src/app/dynamic-translation/dynamic-translation.routes.ts -------------------------------------------------------------------------------- /apps/transloco-playground/src/app/getLang.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/apps/transloco-playground/src/app/getLang.ts -------------------------------------------------------------------------------- /apps/transloco-playground/src/app/home/home.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/apps/transloco-playground/src/app/home/home.component.html -------------------------------------------------------------------------------- /apps/transloco-playground/src/app/home/home.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/apps/transloco-playground/src/app/home/home.component.scss -------------------------------------------------------------------------------- /apps/transloco-playground/src/app/home/home.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/apps/transloco-playground/src/app/home/home.component.spec.ts -------------------------------------------------------------------------------- /apps/transloco-playground/src/app/home/home.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/apps/transloco-playground/src/app/home/home.component.ts -------------------------------------------------------------------------------- /apps/transloco-playground/src/app/inline-loaders/i18n/en.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Inline Loaders English" 3 | } 4 | -------------------------------------------------------------------------------- /apps/transloco-playground/src/app/inline-loaders/i18n/es.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Inline Loaders Spanish" 3 | } 4 | -------------------------------------------------------------------------------- /apps/transloco-playground/src/app/inline-loaders/inline-loaders.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/apps/transloco-playground/src/app/inline-loaders/inline-loaders.component.html -------------------------------------------------------------------------------- /apps/transloco-playground/src/app/inline-loaders/inline-loaders.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/transloco-playground/src/app/inline-loaders/inline-loaders.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/apps/transloco-playground/src/app/inline-loaders/inline-loaders.component.ts -------------------------------------------------------------------------------- /apps/transloco-playground/src/app/inline-loaders/inline-loaders.routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/apps/transloco-playground/src/app/inline-loaders/inline-loaders.routes.ts -------------------------------------------------------------------------------- /apps/transloco-playground/src/app/lazy-multiple-scopes/lazy-multiple-scopes.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/apps/transloco-playground/src/app/lazy-multiple-scopes/lazy-multiple-scopes.component.html -------------------------------------------------------------------------------- /apps/transloco-playground/src/app/lazy-multiple-scopes/lazy-multiple-scopes.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/transloco-playground/src/app/lazy-multiple-scopes/lazy-multiple-scopes.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/apps/transloco-playground/src/app/lazy-multiple-scopes/lazy-multiple-scopes.component.ts -------------------------------------------------------------------------------- /apps/transloco-playground/src/app/lazy-multiple-scopes/lazy-multiple-scopes.routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/apps/transloco-playground/src/app/lazy-multiple-scopes/lazy-multiple-scopes.routes.ts -------------------------------------------------------------------------------- /apps/transloco-playground/src/app/lazy-scope-alias/lazy-scope-alias.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/apps/transloco-playground/src/app/lazy-scope-alias/lazy-scope-alias.component.html -------------------------------------------------------------------------------- /apps/transloco-playground/src/app/lazy-scope-alias/lazy-scope-alias.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/transloco-playground/src/app/lazy-scope-alias/lazy-scope-alias.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/apps/transloco-playground/src/app/lazy-scope-alias/lazy-scope-alias.component.ts -------------------------------------------------------------------------------- /apps/transloco-playground/src/app/lazy-scope-alias/lazy-scope-alias.routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/apps/transloco-playground/src/app/lazy-scope-alias/lazy-scope-alias.routes.ts -------------------------------------------------------------------------------- /apps/transloco-playground/src/app/lazy/lazy.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/apps/transloco-playground/src/app/lazy/lazy.component.html -------------------------------------------------------------------------------- /apps/transloco-playground/src/app/lazy/lazy.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/transloco-playground/src/app/lazy/lazy.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/apps/transloco-playground/src/app/lazy/lazy.component.spec.ts -------------------------------------------------------------------------------- /apps/transloco-playground/src/app/lazy/lazy.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/apps/transloco-playground/src/app/lazy/lazy.component.ts -------------------------------------------------------------------------------- /apps/transloco-playground/src/app/lazy/lazy.routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/apps/transloco-playground/src/app/lazy/lazy.routes.ts -------------------------------------------------------------------------------- /apps/transloco-playground/src/app/locale/locale.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/apps/transloco-playground/src/app/locale/locale.component.html -------------------------------------------------------------------------------- /apps/transloco-playground/src/app/locale/locale.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/apps/transloco-playground/src/app/locale/locale.component.scss -------------------------------------------------------------------------------- /apps/transloco-playground/src/app/locale/locale.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/apps/transloco-playground/src/app/locale/locale.component.ts -------------------------------------------------------------------------------- /apps/transloco-playground/src/app/locale/locale.routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/apps/transloco-playground/src/app/locale/locale.routes.ts -------------------------------------------------------------------------------- /apps/transloco-playground/src/app/multi-langs/multi-langs.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/apps/transloco-playground/src/app/multi-langs/multi-langs.component.html -------------------------------------------------------------------------------- /apps/transloco-playground/src/app/multi-langs/multi-langs.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/transloco-playground/src/app/multi-langs/multi-langs.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/apps/transloco-playground/src/app/multi-langs/multi-langs.component.ts -------------------------------------------------------------------------------- /apps/transloco-playground/src/app/multi-langs/multi-langs.routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/apps/transloco-playground/src/app/multi-langs/multi-langs.routes.ts -------------------------------------------------------------------------------- /apps/transloco-playground/src/app/multi-langs/provider-lang/provider-lang.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/apps/transloco-playground/src/app/multi-langs/provider-lang/provider-lang.component.html -------------------------------------------------------------------------------- /apps/transloco-playground/src/app/multi-langs/provider-lang/provider-lang.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/transloco-playground/src/app/multi-langs/provider-lang/provider-lang.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/apps/transloco-playground/src/app/multi-langs/provider-lang/provider-lang.component.ts -------------------------------------------------------------------------------- /apps/transloco-playground/src/app/preload.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/apps/transloco-playground/src/app/preload.ts -------------------------------------------------------------------------------- /apps/transloco-playground/src/app/scope-sharing/scope-sharing.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/apps/transloco-playground/src/app/scope-sharing/scope-sharing.component.html -------------------------------------------------------------------------------- /apps/transloco-playground/src/app/scope-sharing/scope-sharing.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/transloco-playground/src/app/scope-sharing/scope-sharing.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/apps/transloco-playground/src/app/scope-sharing/scope-sharing.component.ts -------------------------------------------------------------------------------- /apps/transloco-playground/src/app/scope-sharing/scope-sharing.routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/apps/transloco-playground/src/app/scope-sharing/scope-sharing.routes.ts -------------------------------------------------------------------------------- /apps/transloco-playground/src/app/transloco-loader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/apps/transloco-playground/src/app/transloco-loader.ts -------------------------------------------------------------------------------- /apps/transloco-playground/src/app/transloco-testing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/apps/transloco-playground/src/app/transloco-testing.module.ts -------------------------------------------------------------------------------- /apps/transloco-playground/src/app/transpilers/transpilers.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/apps/transloco-playground/src/app/transpilers/transpilers.component.html -------------------------------------------------------------------------------- /apps/transloco-playground/src/app/transpilers/transpilers.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/apps/transloco-playground/src/app/transpilers/transpilers.component.scss -------------------------------------------------------------------------------- /apps/transloco-playground/src/app/transpilers/transpilers.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/apps/transloco-playground/src/app/transpilers/transpilers.component.ts -------------------------------------------------------------------------------- /apps/transloco-playground/src/app/transpilers/transpilers.routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/apps/transloco-playground/src/app/transpilers/transpilers.routes.ts -------------------------------------------------------------------------------- /apps/transloco-playground/src/app/user.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/apps/transloco-playground/src/app/user.service.ts -------------------------------------------------------------------------------- /apps/transloco-playground/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/transloco-playground/src/assets/i18n/admin-page/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/apps/transloco-playground/src/assets/i18n/admin-page/en.json -------------------------------------------------------------------------------- /apps/transloco-playground/src/assets/i18n/admin-page/es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/apps/transloco-playground/src/assets/i18n/admin-page/es.json -------------------------------------------------------------------------------- /apps/transloco-playground/src/assets/i18n/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/apps/transloco-playground/src/assets/i18n/en.json -------------------------------------------------------------------------------- /apps/transloco-playground/src/assets/i18n/es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/apps/transloco-playground/src/assets/i18n/es.json -------------------------------------------------------------------------------- /apps/transloco-playground/src/assets/i18n/lazy-page/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/apps/transloco-playground/src/assets/i18n/lazy-page/en.json -------------------------------------------------------------------------------- /apps/transloco-playground/src/assets/i18n/lazy-page/es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/apps/transloco-playground/src/assets/i18n/lazy-page/es.json -------------------------------------------------------------------------------- /apps/transloco-playground/src/assets/i18n/lazy-scope-alias/en.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Lazy scope alias English" 3 | } 4 | -------------------------------------------------------------------------------- /apps/transloco-playground/src/assets/i18n/lazy-scope-alias/es.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Lazy scope alias Spanish" 3 | } 4 | -------------------------------------------------------------------------------- /apps/transloco-playground/src/assets/i18n/todos-page/en.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "My scope name was mapped! english" 3 | } 4 | -------------------------------------------------------------------------------- /apps/transloco-playground/src/assets/i18n/todos-page/es.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "My scope name was mapped! spanish" 3 | } 4 | -------------------------------------------------------------------------------- /apps/transloco-playground/src/assets/i18n/transpilers/messageformat/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/apps/transloco-playground/src/assets/i18n/transpilers/messageformat/en.json -------------------------------------------------------------------------------- /apps/transloco-playground/src/assets/i18n/transpilers/messageformat/es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/apps/transloco-playground/src/assets/i18n/transpilers/messageformat/es.json -------------------------------------------------------------------------------- /apps/transloco-playground/src/assets/images/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/apps/transloco-playground/src/assets/images/logo.svg -------------------------------------------------------------------------------- /apps/transloco-playground/src/environments/environment.docs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/apps/transloco-playground/src/environments/environment.docs.ts -------------------------------------------------------------------------------- /apps/transloco-playground/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true, 3 | baseUrl: '', 4 | }; 5 | -------------------------------------------------------------------------------- /apps/transloco-playground/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/apps/transloco-playground/src/environments/environment.ts -------------------------------------------------------------------------------- /apps/transloco-playground/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/apps/transloco-playground/src/favicon.ico -------------------------------------------------------------------------------- /apps/transloco-playground/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/apps/transloco-playground/src/index.html -------------------------------------------------------------------------------- /apps/transloco-playground/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/apps/transloco-playground/src/main.ts -------------------------------------------------------------------------------- /apps/transloco-playground/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/apps/transloco-playground/src/polyfills.ts -------------------------------------------------------------------------------- /apps/transloco-playground/src/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/apps/transloco-playground/src/styles.scss -------------------------------------------------------------------------------- /apps/transloco-playground/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/apps/transloco-playground/src/test-setup.ts -------------------------------------------------------------------------------- /apps/transloco-playground/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/apps/transloco-playground/tsconfig.app.json -------------------------------------------------------------------------------- /apps/transloco-playground/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/apps/transloco-playground/tsconfig.json -------------------------------------------------------------------------------- /apps/transloco-playground/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/apps/transloco-playground/tsconfig.spec.json -------------------------------------------------------------------------------- /changelog.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/changelog.config.js -------------------------------------------------------------------------------- /commitlint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/commitlint.config.js -------------------------------------------------------------------------------- /jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/jest.config.ts -------------------------------------------------------------------------------- /jest.preset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/jest.preset.js -------------------------------------------------------------------------------- /karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/karma.conf.js -------------------------------------------------------------------------------- /libs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/schematics-core/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/schematics-core/.eslintrc.json -------------------------------------------------------------------------------- /libs/schematics-core/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/schematics-core/index.ts -------------------------------------------------------------------------------- /libs/schematics-core/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/schematics-core/jest.config.ts -------------------------------------------------------------------------------- /libs/schematics-core/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/schematics-core/project.json -------------------------------------------------------------------------------- /libs/schematics-core/testing/create-workspace.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/schematics-core/testing/create-workspace.ts -------------------------------------------------------------------------------- /libs/schematics-core/testing/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/schematics-core/testing/index.ts -------------------------------------------------------------------------------- /libs/schematics-core/testing/mocks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/schematics-core/testing/mocks.ts -------------------------------------------------------------------------------- /libs/schematics-core/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/schematics-core/tsconfig.json -------------------------------------------------------------------------------- /libs/schematics-core/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/schematics-core/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/schematics-core/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/schematics-core/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/schematics-core/utils/collections.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/schematics-core/utils/collections.ts -------------------------------------------------------------------------------- /libs/schematics-core/utils/file.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/schematics-core/utils/file.ts -------------------------------------------------------------------------------- /libs/schematics-core/utils/find-module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/schematics-core/utils/find-module.ts -------------------------------------------------------------------------------- /libs/schematics-core/utils/package.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/schematics-core/utils/package.ts -------------------------------------------------------------------------------- /libs/schematics-core/utils/schematic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/schematics-core/utils/schematic.ts -------------------------------------------------------------------------------- /libs/schematics-core/utils/translation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/schematics-core/utils/translation.ts -------------------------------------------------------------------------------- /libs/schematics-core/utils/transloco.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/schematics-core/utils/transloco.ts -------------------------------------------------------------------------------- /libs/schematics-core/utils/workspace.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/schematics-core/utils/workspace.ts -------------------------------------------------------------------------------- /libs/transloco-locale/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-locale/.eslintrc.json -------------------------------------------------------------------------------- /libs/transloco-locale/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-locale/CHANGELOG.md -------------------------------------------------------------------------------- /libs/transloco-locale/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-locale/LICENSE -------------------------------------------------------------------------------- /libs/transloco-locale/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-locale/README.md -------------------------------------------------------------------------------- /libs/transloco-locale/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-locale/karma.conf.js -------------------------------------------------------------------------------- /libs/transloco-locale/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-locale/ng-package.json -------------------------------------------------------------------------------- /libs/transloco-locale/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-locale/package.json -------------------------------------------------------------------------------- /libs/transloco-locale/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-locale/project.json -------------------------------------------------------------------------------- /libs/transloco-locale/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-locale/src/index.ts -------------------------------------------------------------------------------- /libs/transloco-locale/src/lib/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-locale/src/lib/helpers.ts -------------------------------------------------------------------------------- /libs/transloco-locale/src/lib/locale-currency.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-locale/src/lib/locale-currency.ts -------------------------------------------------------------------------------- /libs/transloco-locale/src/lib/pipes/base-locale.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-locale/src/lib/pipes/base-locale.pipe.ts -------------------------------------------------------------------------------- /libs/transloco-locale/src/lib/pipes/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-locale/src/lib/pipes/index.ts -------------------------------------------------------------------------------- /libs/transloco-locale/src/lib/pipes/transloco-currency.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-locale/src/lib/pipes/transloco-currency.pipe.ts -------------------------------------------------------------------------------- /libs/transloco-locale/src/lib/pipes/transloco-date.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-locale/src/lib/pipes/transloco-date.pipe.ts -------------------------------------------------------------------------------- /libs/transloco-locale/src/lib/pipes/transloco-decimal.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-locale/src/lib/pipes/transloco-decimal.pipe.ts -------------------------------------------------------------------------------- /libs/transloco-locale/src/lib/pipes/transloco-percent.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-locale/src/lib/pipes/transloco-percent.pipe.ts -------------------------------------------------------------------------------- /libs/transloco-locale/src/lib/shared.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-locale/src/lib/shared.ts -------------------------------------------------------------------------------- /libs/transloco-locale/src/lib/tests/mocks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-locale/src/lib/tests/mocks.ts -------------------------------------------------------------------------------- /libs/transloco-locale/src/lib/tests/pipes/transloco-currency.pipe.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-locale/src/lib/tests/pipes/transloco-currency.pipe.spec.ts -------------------------------------------------------------------------------- /libs/transloco-locale/src/lib/tests/pipes/transloco-date.pipe.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-locale/src/lib/tests/pipes/transloco-date.pipe.spec.ts -------------------------------------------------------------------------------- /libs/transloco-locale/src/lib/tests/pipes/transloco-decimal.pipe.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-locale/src/lib/tests/pipes/transloco-decimal.pipe.spec.ts -------------------------------------------------------------------------------- /libs/transloco-locale/src/lib/tests/pipes/transloco-percent.pipe.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-locale/src/lib/tests/pipes/transloco-percent.pipe.spec.ts -------------------------------------------------------------------------------- /libs/transloco-locale/src/lib/tests/transloco-locale.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-locale/src/lib/tests/transloco-locale.service.spec.ts -------------------------------------------------------------------------------- /libs/transloco-locale/src/lib/tests/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-locale/src/lib/tests/utils.ts -------------------------------------------------------------------------------- /libs/transloco-locale/src/lib/transloco-locale.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-locale/src/lib/transloco-locale.config.ts -------------------------------------------------------------------------------- /libs/transloco-locale/src/lib/transloco-locale.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-locale/src/lib/transloco-locale.module.ts -------------------------------------------------------------------------------- /libs/transloco-locale/src/lib/transloco-locale.providers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-locale/src/lib/transloco-locale.providers.ts -------------------------------------------------------------------------------- /libs/transloco-locale/src/lib/transloco-locale.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-locale/src/lib/transloco-locale.service.ts -------------------------------------------------------------------------------- /libs/transloco-locale/src/lib/transloco-locale.transformers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-locale/src/lib/transloco-locale.transformers.ts -------------------------------------------------------------------------------- /libs/transloco-locale/src/lib/transloco-locale.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-locale/src/lib/transloco-locale.types.ts -------------------------------------------------------------------------------- /libs/transloco-locale/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-locale/src/test-setup.ts -------------------------------------------------------------------------------- /libs/transloco-locale/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-locale/tsconfig.json -------------------------------------------------------------------------------- /libs/transloco-locale/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-locale/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/transloco-locale/tsconfig.lib.prod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-locale/tsconfig.lib.prod.json -------------------------------------------------------------------------------- /libs/transloco-locale/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-locale/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/transloco-messageformat/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-messageformat/.eslintrc.json -------------------------------------------------------------------------------- /libs/transloco-messageformat/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-messageformat/CHANGELOG.md -------------------------------------------------------------------------------- /libs/transloco-messageformat/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-messageformat/LICENSE -------------------------------------------------------------------------------- /libs/transloco-messageformat/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-messageformat/README.md -------------------------------------------------------------------------------- /libs/transloco-messageformat/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-messageformat/karma.conf.js -------------------------------------------------------------------------------- /libs/transloco-messageformat/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-messageformat/ng-package.json -------------------------------------------------------------------------------- /libs/transloco-messageformat/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-messageformat/package.json -------------------------------------------------------------------------------- /libs/transloco-messageformat/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-messageformat/project.json -------------------------------------------------------------------------------- /libs/transloco-messageformat/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-messageformat/src/index.ts -------------------------------------------------------------------------------- /libs/transloco-messageformat/src/lib/messageformat.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-messageformat/src/lib/messageformat.config.ts -------------------------------------------------------------------------------- /libs/transloco-messageformat/src/lib/messageformat.factory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-messageformat/src/lib/messageformat.factory.ts -------------------------------------------------------------------------------- /libs/transloco-messageformat/src/lib/messageformat.providers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-messageformat/src/lib/messageformat.providers.ts -------------------------------------------------------------------------------- /libs/transloco-messageformat/src/lib/messageformat.transpiler.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-messageformat/src/lib/messageformat.transpiler.spec.ts -------------------------------------------------------------------------------- /libs/transloco-messageformat/src/lib/messageformat.transpiler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-messageformat/src/lib/messageformat.transpiler.ts -------------------------------------------------------------------------------- /libs/transloco-messageformat/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-messageformat/src/test-setup.ts -------------------------------------------------------------------------------- /libs/transloco-messageformat/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-messageformat/tsconfig.json -------------------------------------------------------------------------------- /libs/transloco-messageformat/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-messageformat/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/transloco-messageformat/tsconfig.lib.prod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-messageformat/tsconfig.lib.prod.json -------------------------------------------------------------------------------- /libs/transloco-messageformat/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-messageformat/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/transloco-optimize/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-optimize/.babelrc -------------------------------------------------------------------------------- /libs/transloco-optimize/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-optimize/.eslintrc.json -------------------------------------------------------------------------------- /libs/transloco-optimize/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-optimize/CHANGELOG.md -------------------------------------------------------------------------------- /libs/transloco-optimize/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-optimize/LICENSE -------------------------------------------------------------------------------- /libs/transloco-optimize/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-optimize/README.md -------------------------------------------------------------------------------- /libs/transloco-optimize/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-optimize/karma.conf.js -------------------------------------------------------------------------------- /libs/transloco-optimize/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-optimize/package.json -------------------------------------------------------------------------------- /libs/transloco-optimize/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-optimize/project.json -------------------------------------------------------------------------------- /libs/transloco-optimize/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-optimize/src/index.ts -------------------------------------------------------------------------------- /libs/transloco-optimize/src/lib/transloco-optimize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-optimize/src/lib/transloco-optimize.ts -------------------------------------------------------------------------------- /libs/transloco-optimize/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-optimize/src/test-setup.ts -------------------------------------------------------------------------------- /libs/transloco-optimize/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-optimize/tsconfig.json -------------------------------------------------------------------------------- /libs/transloco-optimize/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-optimize/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/transloco-optimize/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-optimize/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/transloco-persist-lang/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-persist-lang/.eslintrc.json -------------------------------------------------------------------------------- /libs/transloco-persist-lang/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-persist-lang/CHANGELOG.md -------------------------------------------------------------------------------- /libs/transloco-persist-lang/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-persist-lang/LICENSE -------------------------------------------------------------------------------- /libs/transloco-persist-lang/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-persist-lang/README.md -------------------------------------------------------------------------------- /libs/transloco-persist-lang/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-persist-lang/karma.conf.js -------------------------------------------------------------------------------- /libs/transloco-persist-lang/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-persist-lang/ng-package.json -------------------------------------------------------------------------------- /libs/transloco-persist-lang/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-persist-lang/package.json -------------------------------------------------------------------------------- /libs/transloco-persist-lang/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-persist-lang/project.json -------------------------------------------------------------------------------- /libs/transloco-persist-lang/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-persist-lang/src/index.ts -------------------------------------------------------------------------------- /libs/transloco-persist-lang/src/lib/cookie-storage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-persist-lang/src/lib/cookie-storage.ts -------------------------------------------------------------------------------- /libs/transloco-persist-lang/src/lib/persist-lang.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-persist-lang/src/lib/persist-lang.config.ts -------------------------------------------------------------------------------- /libs/transloco-persist-lang/src/lib/persist-lang.providers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-persist-lang/src/lib/persist-lang.providers.ts -------------------------------------------------------------------------------- /libs/transloco-persist-lang/src/lib/persist-lang.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-persist-lang/src/lib/persist-lang.service.ts -------------------------------------------------------------------------------- /libs/transloco-persist-lang/src/lib/persist-lang.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-persist-lang/src/lib/persist-lang.spec.ts -------------------------------------------------------------------------------- /libs/transloco-persist-lang/src/lib/persist-lang.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-persist-lang/src/lib/persist-lang.types.ts -------------------------------------------------------------------------------- /libs/transloco-persist-lang/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-persist-lang/src/test-setup.ts -------------------------------------------------------------------------------- /libs/transloco-persist-lang/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-persist-lang/tsconfig.json -------------------------------------------------------------------------------- /libs/transloco-persist-lang/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-persist-lang/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/transloco-persist-lang/tsconfig.lib.prod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-persist-lang/tsconfig.lib.prod.json -------------------------------------------------------------------------------- /libs/transloco-persist-lang/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-persist-lang/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/transloco-persist-translations/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-persist-translations/.eslintrc.json -------------------------------------------------------------------------------- /libs/transloco-persist-translations/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-persist-translations/CHANGELOG.md -------------------------------------------------------------------------------- /libs/transloco-persist-translations/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-persist-translations/LICENSE -------------------------------------------------------------------------------- /libs/transloco-persist-translations/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-persist-translations/README.md -------------------------------------------------------------------------------- /libs/transloco-persist-translations/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-persist-translations/karma.conf.js -------------------------------------------------------------------------------- /libs/transloco-persist-translations/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-persist-translations/ng-package.json -------------------------------------------------------------------------------- /libs/transloco-persist-translations/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-persist-translations/package.json -------------------------------------------------------------------------------- /libs/transloco-persist-translations/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-persist-translations/project.json -------------------------------------------------------------------------------- /libs/transloco-persist-translations/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-persist-translations/src/index.ts -------------------------------------------------------------------------------- /libs/transloco-persist-translations/src/lib/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-persist-translations/src/lib/helpers.ts -------------------------------------------------------------------------------- /libs/transloco-persist-translations/src/lib/tests/mocks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-persist-translations/src/lib/tests/mocks.ts -------------------------------------------------------------------------------- /libs/transloco-persist-translations/src/lib/tests/transloco-persist-translations.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-persist-translations/src/lib/tests/transloco-persist-translations.spec.ts -------------------------------------------------------------------------------- /libs/transloco-persist-translations/src/lib/transloco-persist-translations.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-persist-translations/src/lib/transloco-persist-translations.config.ts -------------------------------------------------------------------------------- /libs/transloco-persist-translations/src/lib/transloco-persist-translations.providers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-persist-translations/src/lib/transloco-persist-translations.providers.ts -------------------------------------------------------------------------------- /libs/transloco-persist-translations/src/lib/transloco-persist-translations.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-persist-translations/src/lib/transloco-persist-translations.service.ts -------------------------------------------------------------------------------- /libs/transloco-persist-translations/src/lib/transloco.storage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-persist-translations/src/lib/transloco.storage.ts -------------------------------------------------------------------------------- /libs/transloco-persist-translations/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-persist-translations/src/test-setup.ts -------------------------------------------------------------------------------- /libs/transloco-persist-translations/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-persist-translations/tsconfig.json -------------------------------------------------------------------------------- /libs/transloco-persist-translations/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-persist-translations/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/transloco-persist-translations/tsconfig.lib.prod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-persist-translations/tsconfig.lib.prod.json -------------------------------------------------------------------------------- /libs/transloco-persist-translations/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-persist-translations/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/transloco-preload-langs/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-preload-langs/.eslintrc.json -------------------------------------------------------------------------------- /libs/transloco-preload-langs/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-preload-langs/CHANGELOG.md -------------------------------------------------------------------------------- /libs/transloco-preload-langs/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-preload-langs/LICENSE -------------------------------------------------------------------------------- /libs/transloco-preload-langs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-preload-langs/README.md -------------------------------------------------------------------------------- /libs/transloco-preload-langs/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-preload-langs/karma.conf.js -------------------------------------------------------------------------------- /libs/transloco-preload-langs/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-preload-langs/ng-package.json -------------------------------------------------------------------------------- /libs/transloco-preload-langs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-preload-langs/package.json -------------------------------------------------------------------------------- /libs/transloco-preload-langs/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-preload-langs/project.json -------------------------------------------------------------------------------- /libs/transloco-preload-langs/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-preload-langs/src/index.ts -------------------------------------------------------------------------------- /libs/transloco-preload-langs/src/lib/preload-langs.providers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-preload-langs/src/lib/preload-langs.providers.ts -------------------------------------------------------------------------------- /libs/transloco-preload-langs/src/lib/preload-langs.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-preload-langs/src/lib/preload-langs.service.ts -------------------------------------------------------------------------------- /libs/transloco-preload-langs/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-preload-langs/src/test-setup.ts -------------------------------------------------------------------------------- /libs/transloco-preload-langs/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-preload-langs/tsconfig.json -------------------------------------------------------------------------------- /libs/transloco-preload-langs/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-preload-langs/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/transloco-preload-langs/tsconfig.lib.prod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-preload-langs/tsconfig.lib.prod.json -------------------------------------------------------------------------------- /libs/transloco-preload-langs/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-preload-langs/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/transloco-schematics/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-schematics/.babelrc -------------------------------------------------------------------------------- /libs/transloco-schematics/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-schematics/.eslintrc.json -------------------------------------------------------------------------------- /libs/transloco-schematics/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-schematics/CHANGELOG.md -------------------------------------------------------------------------------- /libs/transloco-schematics/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-schematics/LICENSE -------------------------------------------------------------------------------- /libs/transloco-schematics/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-schematics/jest.config.ts -------------------------------------------------------------------------------- /libs/transloco-schematics/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-schematics/package.json -------------------------------------------------------------------------------- /libs/transloco-schematics/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-schematics/project.json -------------------------------------------------------------------------------- /libs/transloco-schematics/schematics-core/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-schematics/schematics-core/index.ts -------------------------------------------------------------------------------- /libs/transloco-schematics/schematics-core/testing/create-workspace.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-schematics/schematics-core/testing/create-workspace.ts -------------------------------------------------------------------------------- /libs/transloco-schematics/schematics-core/testing/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-schematics/schematics-core/testing/index.ts -------------------------------------------------------------------------------- /libs/transloco-schematics/schematics-core/testing/mocks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-schematics/schematics-core/testing/mocks.ts -------------------------------------------------------------------------------- /libs/transloco-schematics/schematics-core/utils/collections.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-schematics/schematics-core/utils/collections.ts -------------------------------------------------------------------------------- /libs/transloco-schematics/schematics-core/utils/file.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-schematics/schematics-core/utils/file.ts -------------------------------------------------------------------------------- /libs/transloco-schematics/schematics-core/utils/find-module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-schematics/schematics-core/utils/find-module.ts -------------------------------------------------------------------------------- /libs/transloco-schematics/schematics-core/utils/package.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-schematics/schematics-core/utils/package.ts -------------------------------------------------------------------------------- /libs/transloco-schematics/schematics-core/utils/schematic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-schematics/schematics-core/utils/schematic.ts -------------------------------------------------------------------------------- /libs/transloco-schematics/schematics-core/utils/translation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-schematics/schematics-core/utils/translation.ts -------------------------------------------------------------------------------- /libs/transloco-schematics/schematics-core/utils/transloco.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-schematics/schematics-core/utils/transloco.ts -------------------------------------------------------------------------------- /libs/transloco-schematics/schematics-core/utils/workspace.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-schematics/schematics-core/utils/workspace.ts -------------------------------------------------------------------------------- /libs/transloco-schematics/src/collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-schematics/src/collection.json -------------------------------------------------------------------------------- /libs/transloco-schematics/src/join/__snapshots__/join.spec.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-schematics/src/join/__snapshots__/join.spec.ts.snap -------------------------------------------------------------------------------- /libs/transloco-schematics/src/join/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-schematics/src/join/index.ts -------------------------------------------------------------------------------- /libs/transloco-schematics/src/join/join.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-schematics/src/join/join.spec.ts -------------------------------------------------------------------------------- /libs/transloco-schematics/src/join/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-schematics/src/join/schema.json -------------------------------------------------------------------------------- /libs/transloco-schematics/src/join/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-schematics/src/join/schema.ts -------------------------------------------------------------------------------- /libs/transloco-schematics/src/keys-manager/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-schematics/src/keys-manager/index.ts -------------------------------------------------------------------------------- /libs/transloco-schematics/src/keys-manager/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-schematics/src/keys-manager/schema.json -------------------------------------------------------------------------------- /libs/transloco-schematics/src/keys-manager/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-schematics/src/keys-manager/schema.ts -------------------------------------------------------------------------------- /libs/transloco-schematics/src/ng-migrate/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-schematics/src/ng-migrate/index.ts -------------------------------------------------------------------------------- /libs/transloco-schematics/src/ng-migrate/ng-migrate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-schematics/src/ng-migrate/ng-migrate.ts -------------------------------------------------------------------------------- /libs/transloco-schematics/src/ng-migrate/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-schematics/src/ng-migrate/schema.json -------------------------------------------------------------------------------- /libs/transloco-schematics/src/ng-migrate/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-schematics/src/ng-migrate/schema.ts -------------------------------------------------------------------------------- /libs/transloco-schematics/src/ngx-migrate/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-schematics/src/ngx-migrate/index.ts -------------------------------------------------------------------------------- /libs/transloco-schematics/src/ngx-migrate/migration-matchers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-schematics/src/ngx-migrate/migration-matchers.ts -------------------------------------------------------------------------------- /libs/transloco-schematics/src/ngx-migrate/ngx-translate-migration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-schematics/src/ngx-migrate/ngx-translate-migration.md -------------------------------------------------------------------------------- /libs/transloco-schematics/src/ngx-migrate/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-schematics/src/ngx-migrate/schema.json -------------------------------------------------------------------------------- /libs/transloco-schematics/src/ngx-migrate/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-schematics/src/ngx-migrate/schema.ts -------------------------------------------------------------------------------- /libs/transloco-schematics/src/ngx-migrate/spec/ngx-migrate.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-schematics/src/ngx-migrate/spec/ngx-migrate.spec.ts -------------------------------------------------------------------------------- /libs/transloco-schematics/src/ngx-migrate/spec/templates/pipes/ngx-translate/1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-schematics/src/ngx-migrate/spec/templates/pipes/ngx-translate/1.html -------------------------------------------------------------------------------- /libs/transloco-schematics/src/ngx-migrate/spec/templates/pipes/ngx-translate/2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-schematics/src/ngx-migrate/spec/templates/pipes/ngx-translate/2.html -------------------------------------------------------------------------------- /libs/transloco-schematics/src/ngx-migrate/spec/templates/pipes/ngx-translate/3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-schematics/src/ngx-migrate/spec/templates/pipes/ngx-translate/3.html -------------------------------------------------------------------------------- /libs/transloco-schematics/src/ngx-migrate/spec/templates/pipes/ngx-translate/4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-schematics/src/ngx-migrate/spec/templates/pipes/ngx-translate/4.html -------------------------------------------------------------------------------- /libs/transloco-schematics/src/ngx-migrate/spec/templates/pipes/ngx-translate/5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-schematics/src/ngx-migrate/spec/templates/pipes/ngx-translate/5.html -------------------------------------------------------------------------------- /libs/transloco-schematics/src/ngx-migrate/spec/templates/pipes/ngx-translate/6.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-schematics/src/ngx-migrate/spec/templates/pipes/ngx-translate/6.html -------------------------------------------------------------------------------- /libs/transloco-schematics/src/ngx-migrate/spec/templates/pipes/transloco/1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-schematics/src/ngx-migrate/spec/templates/pipes/transloco/1.html -------------------------------------------------------------------------------- /libs/transloco-schematics/src/ngx-migrate/spec/templates/pipes/transloco/2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-schematics/src/ngx-migrate/spec/templates/pipes/transloco/2.html -------------------------------------------------------------------------------- /libs/transloco-schematics/src/ngx-migrate/spec/templates/pipes/transloco/3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-schematics/src/ngx-migrate/spec/templates/pipes/transloco/3.html -------------------------------------------------------------------------------- /libs/transloco-schematics/src/ngx-migrate/spec/templates/pipes/transloco/4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-schematics/src/ngx-migrate/spec/templates/pipes/transloco/4.html -------------------------------------------------------------------------------- /libs/transloco-schematics/src/ngx-migrate/spec/templates/pipes/transloco/5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-schematics/src/ngx-migrate/spec/templates/pipes/transloco/5.html -------------------------------------------------------------------------------- /libs/transloco-schematics/src/ngx-migrate/spec/templates/pipes/transloco/6.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-schematics/src/ngx-migrate/spec/templates/pipes/transloco/6.html -------------------------------------------------------------------------------- /libs/transloco-schematics/src/scope/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-schematics/src/scope/index.ts -------------------------------------------------------------------------------- /libs/transloco-schematics/src/scope/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-schematics/src/scope/schema.json -------------------------------------------------------------------------------- /libs/transloco-schematics/src/scope/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-schematics/src/scope/schema.ts -------------------------------------------------------------------------------- /libs/transloco-schematics/src/scope/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-schematics/src/scope/utils.ts -------------------------------------------------------------------------------- /libs/transloco-schematics/src/split/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-schematics/src/split/index.ts -------------------------------------------------------------------------------- /libs/transloco-schematics/src/split/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-schematics/src/split/schema.json -------------------------------------------------------------------------------- /libs/transloco-schematics/src/split/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-schematics/src/split/schema.ts -------------------------------------------------------------------------------- /libs/transloco-schematics/src/split/split.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-schematics/src/split/split.spec.ts -------------------------------------------------------------------------------- /libs/transloco-schematics/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-schematics/tsconfig.json -------------------------------------------------------------------------------- /libs/transloco-schematics/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-schematics/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/transloco-schematics/tsconfig.schematics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-schematics/tsconfig.schematics.json -------------------------------------------------------------------------------- /libs/transloco-schematics/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-schematics/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/transloco-scoped-libs/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-scoped-libs/.babelrc -------------------------------------------------------------------------------- /libs/transloco-scoped-libs/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-scoped-libs/.eslintrc.json -------------------------------------------------------------------------------- /libs/transloco-scoped-libs/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-scoped-libs/CHANGELOG.md -------------------------------------------------------------------------------- /libs/transloco-scoped-libs/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-scoped-libs/LICENSE -------------------------------------------------------------------------------- /libs/transloco-scoped-libs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-scoped-libs/README.md -------------------------------------------------------------------------------- /libs/transloco-scoped-libs/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-scoped-libs/karma.conf.js -------------------------------------------------------------------------------- /libs/transloco-scoped-libs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-scoped-libs/package.json -------------------------------------------------------------------------------- /libs/transloco-scoped-libs/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-scoped-libs/project.json -------------------------------------------------------------------------------- /libs/transloco-scoped-libs/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-scoped-libs/src/index.ts -------------------------------------------------------------------------------- /libs/transloco-scoped-libs/src/lib/scoped-libs.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-scoped-libs/src/lib/scoped-libs.types.ts -------------------------------------------------------------------------------- /libs/transloco-scoped-libs/src/lib/scoped-libs.utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-scoped-libs/src/lib/scoped-libs.utils.ts -------------------------------------------------------------------------------- /libs/transloco-scoped-libs/src/lib/transloco-scoped-libs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-scoped-libs/src/lib/transloco-scoped-libs.ts -------------------------------------------------------------------------------- /libs/transloco-scoped-libs/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-scoped-libs/src/test-setup.ts -------------------------------------------------------------------------------- /libs/transloco-scoped-libs/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-scoped-libs/tsconfig.json -------------------------------------------------------------------------------- /libs/transloco-scoped-libs/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-scoped-libs/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/transloco-scoped-libs/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-scoped-libs/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/transloco-scoped-libs/webpack.plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-scoped-libs/webpack.plugin.ts -------------------------------------------------------------------------------- /libs/transloco-utils/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-utils/.babelrc -------------------------------------------------------------------------------- /libs/transloco-utils/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-utils/.eslintrc.json -------------------------------------------------------------------------------- /libs/transloco-utils/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-utils/.gitignore -------------------------------------------------------------------------------- /libs/transloco-utils/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-utils/CHANGELOG.md -------------------------------------------------------------------------------- /libs/transloco-utils/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-utils/LICENSE -------------------------------------------------------------------------------- /libs/transloco-utils/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-utils/jest.config.js -------------------------------------------------------------------------------- /libs/transloco-utils/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-utils/karma.conf.js -------------------------------------------------------------------------------- /libs/transloco-utils/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-utils/package.json -------------------------------------------------------------------------------- /libs/transloco-utils/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-utils/project.json -------------------------------------------------------------------------------- /libs/transloco-utils/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-utils/src/index.ts -------------------------------------------------------------------------------- /libs/transloco-utils/src/lib/transloco-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-utils/src/lib/transloco-utils.ts -------------------------------------------------------------------------------- /libs/transloco-utils/src/lib/transloco-utils.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-utils/src/lib/transloco-utils.types.ts -------------------------------------------------------------------------------- /libs/transloco-utils/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-utils/src/test-setup.ts -------------------------------------------------------------------------------- /libs/transloco-utils/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-utils/tsconfig.json -------------------------------------------------------------------------------- /libs/transloco-utils/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-utils/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/transloco-utils/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-utils/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/transloco-validator/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-validator/.babelrc -------------------------------------------------------------------------------- /libs/transloco-validator/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-validator/.eslintrc.json -------------------------------------------------------------------------------- /libs/transloco-validator/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-validator/CHANGELOG.md -------------------------------------------------------------------------------- /libs/transloco-validator/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-validator/LICENSE -------------------------------------------------------------------------------- /libs/transloco-validator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-validator/README.md -------------------------------------------------------------------------------- /libs/transloco-validator/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-validator/karma.conf.js -------------------------------------------------------------------------------- /libs/transloco-validator/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-validator/package.json -------------------------------------------------------------------------------- /libs/transloco-validator/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-validator/project.json -------------------------------------------------------------------------------- /libs/transloco-validator/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-validator/src/index.ts -------------------------------------------------------------------------------- /libs/transloco-validator/src/lib/transloco-validator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-validator/src/lib/transloco-validator.ts -------------------------------------------------------------------------------- /libs/transloco-validator/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-validator/src/test-setup.ts -------------------------------------------------------------------------------- /libs/transloco-validator/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-validator/tsconfig.json -------------------------------------------------------------------------------- /libs/transloco-validator/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-validator/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/transloco-validator/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco-validator/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/transloco/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco/.eslintrc.json -------------------------------------------------------------------------------- /libs/transloco/.gitignore: -------------------------------------------------------------------------------- 1 | README.md 2 | -------------------------------------------------------------------------------- /libs/transloco/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco/CHANGELOG.md -------------------------------------------------------------------------------- /libs/transloco/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco/LICENSE -------------------------------------------------------------------------------- /libs/transloco/jest.config.schematics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco/jest.config.schematics.ts -------------------------------------------------------------------------------- /libs/transloco/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco/karma.conf.js -------------------------------------------------------------------------------- /libs/transloco/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco/ng-package.json -------------------------------------------------------------------------------- /libs/transloco/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco/package.json -------------------------------------------------------------------------------- /libs/transloco/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco/project.json -------------------------------------------------------------------------------- /libs/transloco/schematics-core/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco/schematics-core/index.ts -------------------------------------------------------------------------------- /libs/transloco/schematics-core/testing/create-workspace.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco/schematics-core/testing/create-workspace.ts -------------------------------------------------------------------------------- /libs/transloco/schematics-core/testing/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco/schematics-core/testing/index.ts -------------------------------------------------------------------------------- /libs/transloco/schematics-core/testing/mocks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco/schematics-core/testing/mocks.ts -------------------------------------------------------------------------------- /libs/transloco/schematics-core/utils/collections.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco/schematics-core/utils/collections.ts -------------------------------------------------------------------------------- /libs/transloco/schematics-core/utils/file.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco/schematics-core/utils/file.ts -------------------------------------------------------------------------------- /libs/transloco/schematics-core/utils/find-module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco/schematics-core/utils/find-module.ts -------------------------------------------------------------------------------- /libs/transloco/schematics-core/utils/package.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco/schematics-core/utils/package.ts -------------------------------------------------------------------------------- /libs/transloco/schematics-core/utils/schematic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco/schematics-core/utils/schematic.ts -------------------------------------------------------------------------------- /libs/transloco/schematics-core/utils/translation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco/schematics-core/utils/translation.ts -------------------------------------------------------------------------------- /libs/transloco/schematics-core/utils/transloco.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco/schematics-core/utils/transloco.ts -------------------------------------------------------------------------------- /libs/transloco/schematics-core/utils/workspace.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco/schematics-core/utils/workspace.ts -------------------------------------------------------------------------------- /libs/transloco/schematics/collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco/schematics/collection.json -------------------------------------------------------------------------------- /libs/transloco/schematics/ng-add/files/transloco-loader/transloco-loader.__ts__: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco/schematics/ng-add/files/transloco-loader/transloco-loader.__ts__ -------------------------------------------------------------------------------- /libs/transloco/schematics/ng-add/files/transloco-module/transloco-root.module.__ts__: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco/schematics/ng-add/files/transloco-module/transloco-root.module.__ts__ -------------------------------------------------------------------------------- /libs/transloco/schematics/ng-add/generators/http-loader.gen.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco/schematics/ng-add/generators/http-loader.gen.ts -------------------------------------------------------------------------------- /libs/transloco/schematics/ng-add/generators/root-module.gen.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco/schematics/ng-add/generators/root-module.gen.ts -------------------------------------------------------------------------------- /libs/transloco/schematics/ng-add/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco/schematics/ng-add/index.ts -------------------------------------------------------------------------------- /libs/transloco/schematics/ng-add/ng-add.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco/schematics/ng-add/ng-add.spec.ts -------------------------------------------------------------------------------- /libs/transloco/schematics/ng-add/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco/schematics/ng-add/schema.json -------------------------------------------------------------------------------- /libs/transloco/schematics/ng-add/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco/schematics/ng-add/schema.ts -------------------------------------------------------------------------------- /libs/transloco/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco/src/index.ts -------------------------------------------------------------------------------- /libs/transloco/src/lib/get-fallbacks-loaders.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco/src/lib/get-fallbacks-loaders.ts -------------------------------------------------------------------------------- /libs/transloco/src/lib/lang-resolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco/src/lib/lang-resolver.ts -------------------------------------------------------------------------------- /libs/transloco/src/lib/loader-component.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco/src/lib/loader-component.component.ts -------------------------------------------------------------------------------- /libs/transloco/src/lib/resolve-loader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco/src/lib/resolve-loader.ts -------------------------------------------------------------------------------- /libs/transloco/src/lib/scope-resolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco/src/lib/scope-resolver.ts -------------------------------------------------------------------------------- /libs/transloco/src/lib/template-handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco/src/lib/template-handler.ts -------------------------------------------------------------------------------- /libs/transloco/src/lib/tests/default-missing-handler.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco/src/lib/tests/default-missing-handler.spec.ts -------------------------------------------------------------------------------- /libs/transloco/src/lib/tests/directive/attribute.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco/src/lib/tests/directive/attribute.spec.ts -------------------------------------------------------------------------------- /libs/transloco/src/lib/tests/directive/multi-scope-alias.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco/src/lib/tests/directive/multi-scope-alias.spec.ts -------------------------------------------------------------------------------- /libs/transloco/src/lib/tests/directive/scope-alias.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco/src/lib/tests/directive/scope-alias.spec.ts -------------------------------------------------------------------------------- /libs/transloco/src/lib/tests/directive/shared.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco/src/lib/tests/directive/shared.ts -------------------------------------------------------------------------------- /libs/transloco/src/lib/tests/directive/structural-loading-tpl.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco/src/lib/tests/directive/structural-loading-tpl.spec.ts -------------------------------------------------------------------------------- /libs/transloco/src/lib/tests/directive/structural-multilang.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco/src/lib/tests/directive/structural-multilang.spec.ts -------------------------------------------------------------------------------- /libs/transloco/src/lib/tests/directive/structural.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco/src/lib/tests/directive/structural.spec.ts -------------------------------------------------------------------------------- /libs/transloco/src/lib/tests/i18n-mocks/admin-page/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco/src/lib/tests/i18n-mocks/admin-page/en.json -------------------------------------------------------------------------------- /libs/transloco/src/lib/tests/i18n-mocks/admin-page/es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco/src/lib/tests/i18n-mocks/admin-page/es.json -------------------------------------------------------------------------------- /libs/transloco/src/lib/tests/i18n-mocks/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco/src/lib/tests/i18n-mocks/en.json -------------------------------------------------------------------------------- /libs/transloco/src/lib/tests/i18n-mocks/es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco/src/lib/tests/i18n-mocks/es.json -------------------------------------------------------------------------------- /libs/transloco/src/lib/tests/i18n-mocks/lazy-page/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco/src/lib/tests/i18n-mocks/lazy-page/en.json -------------------------------------------------------------------------------- /libs/transloco/src/lib/tests/i18n-mocks/lazy-page/es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco/src/lib/tests/i18n-mocks/lazy-page/es.json -------------------------------------------------------------------------------- /libs/transloco/src/lib/tests/i18n-mocks/lazy-scope-alias/en.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Lazy scope alias English" 3 | } 4 | -------------------------------------------------------------------------------- /libs/transloco/src/lib/tests/i18n-mocks/lazy-scope-alias/es.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Lazy scope alias Spanish" 3 | } 4 | -------------------------------------------------------------------------------- /libs/transloco/src/lib/tests/i18n-mocks/todos-page/en.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "My scope name was mapped! english" 3 | } 4 | -------------------------------------------------------------------------------- /libs/transloco/src/lib/tests/i18n-mocks/todos-page/es.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "My scope name was mapped! spanish" 3 | } 4 | -------------------------------------------------------------------------------- /libs/transloco/src/lib/tests/i18n-mocks/transpilers/messageformat/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco/src/lib/tests/i18n-mocks/transpilers/messageformat/en.json -------------------------------------------------------------------------------- /libs/transloco/src/lib/tests/i18n-mocks/transpilers/messageformat/es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco/src/lib/tests/i18n-mocks/transpilers/messageformat/es.json -------------------------------------------------------------------------------- /libs/transloco/src/lib/tests/inline-loaders.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco/src/lib/tests/inline-loaders.spec.ts -------------------------------------------------------------------------------- /libs/transloco/src/lib/tests/lang-resolver.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco/src/lib/tests/lang-resolver.spec.ts -------------------------------------------------------------------------------- /libs/transloco/src/lib/tests/mocks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco/src/lib/tests/mocks.ts -------------------------------------------------------------------------------- /libs/transloco/src/lib/tests/pipe/pipe-integration.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco/src/lib/tests/pipe/pipe-integration.spec.ts -------------------------------------------------------------------------------- /libs/transloco/src/lib/tests/pipe/pipe.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco/src/lib/tests/pipe/pipe.spec.ts -------------------------------------------------------------------------------- /libs/transloco/src/lib/tests/scope-resolver.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco/src/lib/tests/scope-resolver.spec.ts -------------------------------------------------------------------------------- /libs/transloco/src/lib/tests/service/custom-interceptor.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco/src/lib/tests/service/custom-interceptor.spec.ts -------------------------------------------------------------------------------- /libs/transloco/src/lib/tests/service/default-loader.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco/src/lib/tests/service/default-loader.spec.ts -------------------------------------------------------------------------------- /libs/transloco/src/lib/tests/service/fallbacks.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco/src/lib/tests/service/fallbacks.spec.ts -------------------------------------------------------------------------------- /libs/transloco/src/lib/tests/service/getTranslation.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco/src/lib/tests/service/getTranslation.spec.ts -------------------------------------------------------------------------------- /libs/transloco/src/lib/tests/service/langChanges.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco/src/lib/tests/service/langChanges.spec.ts -------------------------------------------------------------------------------- /libs/transloco/src/lib/tests/service/load.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco/src/lib/tests/service/load.spec.ts -------------------------------------------------------------------------------- /libs/transloco/src/lib/tests/service/missingHandler.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco/src/lib/tests/service/missingHandler.spec.ts -------------------------------------------------------------------------------- /libs/transloco/src/lib/tests/service/selectTranslate.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco/src/lib/tests/service/selectTranslate.spec.ts -------------------------------------------------------------------------------- /libs/transloco/src/lib/tests/service/selectTranslateObject.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco/src/lib/tests/service/selectTranslateObject.spec.ts -------------------------------------------------------------------------------- /libs/transloco/src/lib/tests/service/selectTranslation.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco/src/lib/tests/service/selectTranslation.spec.ts -------------------------------------------------------------------------------- /libs/transloco/src/lib/tests/service/service-spec-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco/src/lib/tests/service/service-spec-utils.ts -------------------------------------------------------------------------------- /libs/transloco/src/lib/tests/service/setTranslation.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco/src/lib/tests/service/setTranslation.spec.ts -------------------------------------------------------------------------------- /libs/transloco/src/lib/tests/service/setTranslationKey.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco/src/lib/tests/service/setTranslationKey.spec.ts -------------------------------------------------------------------------------- /libs/transloco/src/lib/tests/service/translate.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco/src/lib/tests/service/translate.spec.ts -------------------------------------------------------------------------------- /libs/transloco/src/lib/tests/service/translateObject.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco/src/lib/tests/service/translateObject.spec.ts -------------------------------------------------------------------------------- /libs/transloco/src/lib/tests/shared.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco/src/lib/tests/shared.spec.ts -------------------------------------------------------------------------------- /libs/transloco/src/lib/tests/signal.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco/src/lib/tests/signal.spec.ts -------------------------------------------------------------------------------- /libs/transloco/src/lib/tests/transpiler.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco/src/lib/tests/transpiler.spec.ts -------------------------------------------------------------------------------- /libs/transloco/src/lib/transloco-fallback-strategy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco/src/lib/transloco-fallback-strategy.ts -------------------------------------------------------------------------------- /libs/transloco/src/lib/transloco-lang.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco/src/lib/transloco-lang.ts -------------------------------------------------------------------------------- /libs/transloco/src/lib/transloco-loading-template.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco/src/lib/transloco-loading-template.ts -------------------------------------------------------------------------------- /libs/transloco/src/lib/transloco-missing-handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco/src/lib/transloco-missing-handler.ts -------------------------------------------------------------------------------- /libs/transloco/src/lib/transloco-scope.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco/src/lib/transloco-scope.ts -------------------------------------------------------------------------------- /libs/transloco/src/lib/transloco-testing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco/src/lib/transloco-testing.module.ts -------------------------------------------------------------------------------- /libs/transloco/src/lib/transloco.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco/src/lib/transloco.config.ts -------------------------------------------------------------------------------- /libs/transloco/src/lib/transloco.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco/src/lib/transloco.directive.ts -------------------------------------------------------------------------------- /libs/transloco/src/lib/transloco.interceptor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco/src/lib/transloco.interceptor.ts -------------------------------------------------------------------------------- /libs/transloco/src/lib/transloco.loader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco/src/lib/transloco.loader.ts -------------------------------------------------------------------------------- /libs/transloco/src/lib/transloco.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco/src/lib/transloco.module.ts -------------------------------------------------------------------------------- /libs/transloco/src/lib/transloco.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco/src/lib/transloco.pipe.ts -------------------------------------------------------------------------------- /libs/transloco/src/lib/transloco.providers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco/src/lib/transloco.providers.ts -------------------------------------------------------------------------------- /libs/transloco/src/lib/transloco.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco/src/lib/transloco.service.ts -------------------------------------------------------------------------------- /libs/transloco/src/lib/transloco.signal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco/src/lib/transloco.signal.ts -------------------------------------------------------------------------------- /libs/transloco/src/lib/transloco.transpiler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco/src/lib/transloco.transpiler.ts -------------------------------------------------------------------------------- /libs/transloco/src/lib/transloco.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco/src/lib/transloco.types.ts -------------------------------------------------------------------------------- /libs/transloco/src/lib/utils/browser.utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco/src/lib/utils/browser.utils.ts -------------------------------------------------------------------------------- /libs/transloco/src/lib/utils/flat.utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco/src/lib/utils/flat.utils.ts -------------------------------------------------------------------------------- /libs/transloco/src/lib/utils/lang.utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco/src/lib/utils/lang.utils.ts -------------------------------------------------------------------------------- /libs/transloco/src/lib/utils/object.utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco/src/lib/utils/object.utils.ts -------------------------------------------------------------------------------- /libs/transloco/src/lib/utils/pipe.utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco/src/lib/utils/pipe.utils.ts -------------------------------------------------------------------------------- /libs/transloco/src/lib/utils/scope.utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco/src/lib/utils/scope.utils.ts -------------------------------------------------------------------------------- /libs/transloco/src/lib/utils/type.utils.ts: -------------------------------------------------------------------------------- 1 | export type HashMap = Record; 2 | -------------------------------------------------------------------------------- /libs/transloco/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco/src/test-setup.ts -------------------------------------------------------------------------------- /libs/transloco/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco/tsconfig.json -------------------------------------------------------------------------------- /libs/transloco/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/transloco/tsconfig.lib.prod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco/tsconfig.lib.prod.json -------------------------------------------------------------------------------- /libs/transloco/tsconfig.schematics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco/tsconfig.schematics.json -------------------------------------------------------------------------------- /libs/transloco/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/transloco/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/vscode-snippets/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/vscode-snippets/CHANGELOG.md -------------------------------------------------------------------------------- /libs/vscode-snippets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/vscode-snippets/README.md -------------------------------------------------------------------------------- /libs/vscode-snippets/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/vscode-snippets/package.json -------------------------------------------------------------------------------- /libs/vscode-snippets/snippets/snippets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/libs/vscode-snippets/snippets/snippets.json -------------------------------------------------------------------------------- /logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/logo.svg -------------------------------------------------------------------------------- /nx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/nx.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/package.json -------------------------------------------------------------------------------- /project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/project.json -------------------------------------------------------------------------------- /scripts/pre-commit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/scripts/pre-commit.js -------------------------------------------------------------------------------- /tsconfig.base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/tsconfig.base.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsverse/transloco/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- 1 | {} 2 | --------------------------------------------------------------------------------